From ab4dc1288768112d6d0203e7f87dbb38e33f18a1 Mon Sep 17 00:00:00 2001 From: Ujjwal Verma Date: Thu, 23 Jul 2026 18:20:11 +0530 Subject: [PATCH 1/5] feat: add @stdlib/math/base/special/besselj1f --- .../math/base/special/besselj1f/README.md | 224 +++++++++++ .../special/besselj1f/benchmark/benchmark.js | 52 +++ .../besselj1f/benchmark/benchmark.native.js | 62 +++ .../special/besselj1f/benchmark/c/Makefile | 127 ++++++ .../special/besselj1f/benchmark/c/benchmark.c | 146 +++++++ .../besselj1f/benchmark/c/cephes/Makefile | 113 ++++++ .../besselj1f/benchmark/c/cephes/benchmark.c | 140 +++++++ .../besselj1f/benchmark/c/native/Makefile | 146 +++++++ .../besselj1f/benchmark/c/native/benchmark.c | 136 +++++++ .../besselj1f/benchmark/cpp/boost/Makefile | 110 ++++++ .../benchmark/cpp/boost/benchmark.cpp | 132 +++++++ .../special/besselj1f/benchmark/julia/REQUIRE | 2 + .../besselj1f/benchmark/julia/benchmark.jl | 144 +++++++ .../benchmark/python/scipy/benchmark.py | 97 +++++ .../special/besselj1f/benchmark/r/DESCRIPTION | 9 + .../special/besselj1f/benchmark/r/benchmark.R | 109 ++++++ .../math/base/special/besselj1f/binding.gyp | 170 ++++++++ .../equation_bessel_first_kind_order_one.svg | 69 ++++ .../math/base/special/besselj1f/docs/repl.txt | 30 ++ .../special/besselj1f/docs/types/index.d.ts | 56 +++ .../base/special/besselj1f/docs/types/test.ts | 44 +++ .../special/besselj1f/examples/c/Makefile | 146 +++++++ .../special/besselj1f/examples/c/example.c | 31 ++ .../base/special/besselj1f/examples/index.js | 30 ++ .../math/base/special/besselj1f/include.gypi | 53 +++ .../stdlib/math/base/special/besselj1f.h | 38 ++ .../math/base/special/besselj1f/lib/index.js | 52 +++ .../math/base/special/besselj1f/lib/main.js | 58 +++ .../math/base/special/besselj1f/lib/native.js | 59 +++ .../special/besselj1f/lib/rational_p1q1.js | 64 +++ .../special/besselj1f/lib/rational_p2q2.js | 64 +++ .../special/besselj1f/lib/rational_pcqc.js | 64 +++ .../special/besselj1f/lib/rational_psqs.js | 64 +++ .../math/base/special/besselj1f/manifest.json | 84 ++++ .../math/base/special/besselj1f/package.json | 141 +++++++ .../special/besselj1f/scripts/evalrational.js | 219 +++++++++++ .../math/base/special/besselj1f/src/Makefile | 70 ++++ .../math/base/special/besselj1f/src/addon.c | 22 ++ .../math/base/special/besselj1f/src/main.c | 34 ++ .../besselj1f/test/fixtures/julia/REQUIRE | 3 + .../test/fixtures/julia/huge_positive.json | 1 + .../test/fixtures/julia/large_positive.json | 1 + .../test/fixtures/julia/medium_positive.json | 1 + .../test/fixtures/julia/negative_gamut.json | 1 + .../test/fixtures/julia/positive_gamut.json | 1 + .../besselj1f/test/fixtures/julia/runner.jl | 109 ++++++ .../test/fixtures/julia/small_negative.json | 1 + .../test/fixtures/julia/small_positive.json | 1 + .../test/fixtures/julia/smaller.json | 1 + .../test/fixtures/julia/subnormal.json | 1 + .../test/fixtures/julia/tiny_positive.json | 1 + .../fixtures/julia/very_large_positive.json | 1 + .../math/base/special/besselj1f/test/test.js | 359 +++++++++++++++++ .../special/besselj1f/test/test.native.js | 368 ++++++++++++++++++ 54 files changed, 4261 insertions(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/README.md create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/benchmark.js create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/benchmark.native.js create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/benchmark.c create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/cephes/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/cephes/benchmark.c create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/native/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/native/benchmark.c create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/cpp/boost/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/cpp/boost/benchmark.cpp create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/julia/REQUIRE create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/julia/benchmark.jl create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/python/scipy/benchmark.py create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/r/DESCRIPTION create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/r/benchmark.R create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/binding.gyp create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/docs/img/equation_bessel_first_kind_order_one.svg create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/docs/repl.txt create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/docs/types/index.d.ts create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/docs/types/test.ts create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/examples/c/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/examples/c/example.c create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/examples/index.js create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/include.gypi create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/include/stdlib/math/base/special/besselj1f.h create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/lib/index.js create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/lib/main.js create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/lib/native.js create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/lib/rational_p1q1.js create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/lib/rational_p2q2.js create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/lib/rational_pcqc.js create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/lib/rational_psqs.js create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/manifest.json create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/package.json create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/scripts/evalrational.js create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/src/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/src/addon.c create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/src/main.c create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/REQUIRE create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/huge_positive.json create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/large_positive.json create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/medium_positive.json create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/negative_gamut.json create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/positive_gamut.json create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/runner.jl create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/small_negative.json create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/small_positive.json create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/smaller.json create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/subnormal.json create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/tiny_positive.json create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/very_large_positive.json create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.js create mode 100644 lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.native.js diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/README.md b/lib/node_modules/@stdlib/math/base/special/besselj1f/README.md new file mode 100644 index 000000000000..5fbd45fd3aec --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/README.md @@ -0,0 +1,224 @@ + + +# j1 + +> Compute the [Bessel function of the first kind][bessel-first-kind] of order one. + +
+ +The [Bessel function of the first kind][bessel-first-kind] of order one is defined as + + + +```math +J_1 (x) = \frac{1}{2 \pi} \int_{-\pi}^\pi e^{i(\tau - x \sin(\tau))} \,d\tau +``` + + + + + +
+ + + +
+ +## Usage + +```javascript +var j1 = require( '@stdlib/math/base/special/besselj1f' ); +``` + +#### j1( x ) + +Computes the [Bessel function of the first kind][bessel-first-kind] of order one at `x`. + +```javascript +var v = j1( 0.0 ); +// returns 0.0 + +v = j1( 1.0 ); +// returns ~0.440 + +v = j1( Infinity ); +// returns 0.0 + +v = j1( -Infinity ); +// returns 0.0 + +v = j1( NaN ); +// returns NaN +``` + +
+ + + +
+ +## Examples + + + +```javascript +var uniform = require( '@stdlib/random/array/uniform' ); +var logEachMap = require( '@stdlib/console/log-each-map' ); +var besselj1 = require( '@stdlib/math/base/special/besselj1f' ); + +var opts = { + 'dtype': 'float32' +}; +var x = uniform( 100, 0.0, 100.0, opts ); + +logEachMap( 'besselj1f(%0.4f) = %0.4f', x, besselj1 ); +``` + +
+ + + + + +* * * + +
+ +## C APIs + + + +
+ +
+ + + + + +
+ +### Usage + +```c +#include "stdlib/math/base/special/besselj1f.h" +``` + +#### stdlib_base_besselj1f( x ) + +Computes the [Bessel function of the first kind][bessel-first-kind] of order one at `x`. + +```c +double out = stdlib_base_besselj1f( 0.0 ); +// returns 0.0 + +out = stdlib_base_besselj1f( 1.0 ); +// returns ~0.440 +``` + +The function accepts the following arguments: + +- **x**: `[in] double` input value. + +```c +double stdlib_base_besselj1f( const double x ); +``` + +
+ + + + + +
+ +
+ + + + + +
+ +### Examples + +```c +#include "stdlib/math/base/special/besselj1f.h" +#include + +int main( void ) { + const double x[] = { 0.0, 0.005, 3.14, 10.0, 51.125, 99.99, 100.0 }; + double v; + int i; + + for ( i = 0; i < 7; i++ ) { + v = stdlib_base_besselj1f( x[ i ] ); + printf( "besselj1f(%lf) = %lf\n", x[ i ], v ); + } +} +``` + +
+ + + +
+ + + + + + + + + + + + + + diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/benchmark.js new file mode 100644 index 000000000000..12ec22f5c46e --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/benchmark.js @@ -0,0 +1,52 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2018 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var bench = require( '@stdlib/bench' ); +var uniform = require( '@stdlib/random/array/uniform' ); +var isnan = require( '@stdlib/math/base/assert/is-nan' ); +var pkg = require( './../package.json' ).name; +var j1 = require( './../lib' ); + + +// MAIN // + +bench( pkg, function benchmark( b ) { + var x; + var y; + var i; + + x = uniform( 100, 0.0, 100000.0 ); + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + y = j1( x[ i % x.length ] ); + if ( isnan( y ) ) { + b.fail( 'should not return NaN' ); + } + } + b.toc(); + if ( isnan( y ) ) { + b.fail( 'should not return NaN' ); + } + b.pass( 'benchmark finished' ); + b.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/benchmark.native.js new file mode 100644 index 000000000000..1e4e0167e88f --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/benchmark.native.js @@ -0,0 +1,62 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var resolve = require( 'path' ).resolve; +var bench = require( '@stdlib/bench' ); +var uniform = require( '@stdlib/random/array/uniform' ); +var isnan = require( '@stdlib/math/base/assert/is-nan' ); +var tryRequire = require( '@stdlib/utils/try-require' ); +var format = require( '@stdlib/string/format' ); +var pkg = require( './../package.json' ).name; + + +// VARIABLES // + +var j1 = tryRequire( resolve( __dirname, './../lib/native.js' ) ); +var opts = { + 'skip': ( j1 instanceof Error ) +}; + + +// MAIN // + +bench( format( '%s::native', pkg ), opts, function benchmark( b ) { + var x; + var y; + var i; + + x = uniform( 100, 0.0, 100000.0 ); + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + y = j1( x[ i % x.length ] ); + if ( isnan( y ) ) { + b.fail( 'should not return NaN' ); + } + } + b.toc(); + if ( isnan( y ) ) { + b.fail( 'should not return NaN' ); + } + b.pass( 'benchmark finished' ); + b.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/Makefile b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/Makefile new file mode 100644 index 000000000000..e64c0050f3da --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/Makefile @@ -0,0 +1,127 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2018 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + + +# VARIABLES # + +ifndef VERBOSE + QUIET := @ +else + QUIET := +endif + +# Determine the OS ([1][1], [2][2]). +# +# [1]: https://en.wikipedia.org/wiki/Uname#Examples +# [2]: http://stackoverflow.com/a/27776822/2225624 +OS ?= $(shell uname) +ifneq (, $(findstring MINGW,$(OS))) + OS := WINNT +else +ifneq (, $(findstring MSYS,$(OS))) + OS := WINNT +else +ifneq (, $(findstring CYGWIN,$(OS))) + OS := WINNT +else +ifneq (, $(findstring Windows_NT,$(OS))) + OS := WINNT +endif +endif +endif +endif + +# Define the program used for compiling C source files: +ifdef C_COMPILER + CC := $(C_COMPILER) +else + CC := gcc +endif + +# Define the command-line options when compiling C files: +CFLAGS ?= \ + -std=c99 \ + -O3 \ + -Wall \ + -pedantic + +# Determine whether to generate position independent code ([1][1], [2][2]). +# +# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options +# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option +ifeq ($(OS), WINNT) + fPIC ?= +else + fPIC ?= -fPIC +endif + +# List of C targets: +c_targets := benchmark.out + + +# RULES # + +#/ +# Compiles C source files. +# +# @param {string} [C_COMPILER] - C compiler +# @param {string} [CFLAGS] - C compiler flags +# @param {(string|void)} [fPIC] - compiler flag indicating whether to generate position independent code +# +# @example +# make +# +# @example +# make all +#/ +all: $(c_targets) + +.PHONY: all + +#/ +# Compiles C source files. +# +# @private +# @param {string} CC - C compiler +# @param {string} CFLAGS - C compiler flags +# @param {(string|void)} fPIC - compiler flag indicating whether to generate position independent code +#/ +$(c_targets): %.out: %.c + $(QUIET) $(CC) $(CFLAGS) $(fPIC) -o $@ $< -lm + +#/ +# Runs compiled benchmarks. +# +# @example +# make run +#/ +run: $(c_targets) + $(QUIET) ./$< + +.PHONY: run + +#/ +# Removes generated files. +# +# @example +# make clean +#/ +clean: + $(QUIET) -rm -f *.o *.out + +.PHONY: clean diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/benchmark.c b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/benchmark.c new file mode 100644 index 000000000000..1564b2aef170 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/benchmark.c @@ -0,0 +1,146 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2018 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +/** +* Benchmark `besselj1`. +* +* ## Notes +* +* * We assume the [GNU C library][2], which provides additional exotic functions. +* +* [1]: http://en.cppreference.com/w/c/numeric/math +* [2]: https://www.gnu.org/software/libc/manual/html_node/Special-Functions.html +*/ + +#include +#include +#include +#include +#include + +#define NAME "besselj1" +#define ITERATIONS 1000000 +#define REPEATS 3 + +/** +* Prints the TAP version. +*/ +static void print_version( void ) { + printf( "TAP version 13\n" ); +} + +/** +* Prints the TAP summary. +* +* @param total total number of tests +* @param passing total number of passing tests +*/ +static void print_summary( int total, int passing ) { + printf( "#\n" ); + printf( "1..%d\n", total ); // TAP plan + printf( "# total %d\n", total ); + printf( "# pass %d\n", passing ); + printf( "#\n" ); + printf( "# ok\n" ); +} + +/** +* Prints benchmarks results. +* +* @param elapsed elapsed time in seconds +*/ +static void print_results( double elapsed ) { + double rate = (double)ITERATIONS / elapsed; + printf( " ---\n" ); + printf( " iterations: %d\n", ITERATIONS ); + printf( " elapsed: %0.9f\n", elapsed ); + printf( " rate: %0.9f\n", rate ); + printf( " ...\n" ); +} + +/** +* Returns a clock time. +* +* @return clock time +*/ +static double tic( void ) { + struct timeval now; + gettimeofday( &now, NULL ); + return (double)now.tv_sec + (double)now.tv_usec/1.0e6; +} + +/** +* Generates a random number on the interval [0,1). +* +* @return random number +*/ +static double rand_double( void ) { + int r = rand(); + return (double)r / ( (double)RAND_MAX + 1.0 ); +} + +/** +* Runs a benchmark. +* +* @return elapsed time in seconds +*/ +static double benchmark( void ) { + float x[ 100 ]; + double elapsed; + float y; + double t; + int i; + + for ( i = 0; i < 100; i++ ) { + x[ i ] = rand_double() * 100000.0; + } + + t = tic(); + for ( i = 0; i < ITERATIONS; i++ ) { + y = j1f( (float)x[ i%100 ] ); + if ( y != y ) { + printf( "should not return NaN\n" ); + break; + } + } + elapsed = tic() - t; + if ( y != y ) { + printf( "should not return NaN\n" ); + } + return elapsed; +} + +/** +* Main execution sequence. +*/ +int main( void ) { + double elapsed; + int i; + + // Use the current time to seed the random number generator: + srand( time( NULL ) ); + + print_version(); + for ( i = 0; i < REPEATS; i++ ) { + printf( "# c::%s\n", NAME ); + elapsed = benchmark(); + print_results( elapsed ); + printf( "ok %d benchmark finished\n", i+1 ); + } + print_summary( REPEATS, REPEATS ); +} diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/cephes/Makefile b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/cephes/Makefile new file mode 100644 index 000000000000..60e93ff57ffd --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/cephes/Makefile @@ -0,0 +1,113 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2018 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + + +# VARIABLES # + +ifndef VERBOSE + QUIET := @ +endif + +# Specify the path to Cephes: +CEPHES ?= + +# Specify a list of Cephes source files: +CEPHES_SRC ?= + +# Determine the OS: +# +# [1]: https://en.wikipedia.org/wiki/Uname#Examples +# [2]: http://stackoverflow.com/a/27776822/2225624 +OS ?= $(shell uname) +ifneq (, $(findstring MINGW,$(OS))) + OS := WINNT +else +ifneq (, $(findstring MSYS,$(OS))) + OS := WINNT +else +ifneq (, $(findstring CYGWIN,$(OS))) + OS := WINNT +endif +endif +endif + +# Define the program used for compiling C source files: +ifdef C_COMPILER + CC := $(C_COMPILER) +else + CC := gcc +endif + +# Define the command-line options when compiling C files: +CFLAGS ?= \ + -std=c99 \ + -O3 \ + -Wall \ + -pedantic + +# Determine whether to generate [position independent code][1]: +# +# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options +# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option +ifeq ($(OS), WINNT) + fPIC ?= +else + fPIC ?= -fPIC +endif + +# List of C targets: +c_targets := benchmark.out + + +# TARGETS # + +# Default target. +# +# This target is the default target. + +all: $(c_targets) + +.PHONY: all + + +# Compile C source. +# +# This target compiles C source files. + +$(c_targets): %.out: %.c + $(QUIET) $(CC) $(CFLAGS) $(fPIC) -o $@ $(CEPHES_SRC) $< -lm + + +# Run a benchmark. +# +# This target runs a benchmark. + +run: $(c_targets) + $(QUIET) ./$< + +.PHONY: run + + +# Perform clean-up. +# +# This target removes generated files. + +clean: + $(QUIET) -rm -f *.o *.out + +.PHONY: clean diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/cephes/benchmark.c b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/cephes/benchmark.c new file mode 100644 index 000000000000..73b74fd765cc --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/cephes/benchmark.c @@ -0,0 +1,140 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2018 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include +#include +#include +#include +#include + +#define NAME "besselj1" +#define ITERATIONS 1000000 +#define REPEATS 3 + +/** +* Define prototypes for external functions. +*/ +extern double j1( double x ); + +/** +* Prints the TAP version. +*/ +static void print_version( void ) { + printf( "TAP version 13\n" ); +} + +/** +* Prints the TAP summary. +* +* @param total total number of tests +* @param passing total number of passing tests +*/ +static void print_summary( int total, int passing ) { + printf( "#\n" ); + printf( "1..%d\n", total ); // TAP plan + printf( "# total %d\n", total ); + printf( "# pass %d\n", passing ); + printf( "#\n" ); + printf( "# ok\n" ); +} + +/** +* Prints benchmarks results. +* +* @param elapsed elapsed time in seconds +*/ +static void print_results( double elapsed ) { + double rate = (double)ITERATIONS / elapsed; + printf( " ---\n" ); + printf( " iterations: %d\n", ITERATIONS ); + printf( " elapsed: %0.9f\n", elapsed ); + printf( " rate: %0.9f\n", rate ); + printf( " ...\n" ); +} + +/** +* Returns a clock time. +* +* @return clock time +*/ +static double tic( void ) { + struct timeval now; + gettimeofday( &now, NULL ); + return (double)now.tv_sec + (double)now.tv_usec/1.0e6; +} + +/** +* Generates a random number on the interval [0,1). +* +* @return random number +*/ +static double rand_double( void ) { + int r = rand(); + return (double)r / ( (double)RAND_MAX + 1.0 ); +} + +/** +* Runs a benchmark. +* +* @return elapsed time in seconds +*/ +static double benchmark( void ) { + double x[ 100 ]; + double elapsed; + double y; + double t; + int i; + + for ( i = 0; i < 100; i++ ) { + x[ i ] = rand_double() * 100000.0; + } + + t = tic(); + for ( i = 0; i < ITERATIONS; i++ ) { + y = j1( x[ i%100 ] ); + if ( y != y ) { + printf( "should not return NaN\n" ); + break; + } + } + elapsed = tic() - t; + if ( y != y ) { + printf( "should not return NaN\n" ); + } + return elapsed; +} + +/** +* Main execution sequence. +*/ +int main( void ) { + double elapsed; + int i; + + // Use the current time to seed the random number generator: + srand( time( NULL ) ); + + print_version(); + for ( i = 0; i < REPEATS; i++ ) { + printf( "# c::cephes::%s\n", NAME ); + elapsed = benchmark(); + print_results( elapsed ); + printf( "ok %d benchmark finished\n", i+1 ); + } + print_summary( REPEATS, REPEATS ); +} diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/native/Makefile b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/native/Makefile new file mode 100644 index 000000000000..f69e9da2b4d3 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/native/Makefile @@ -0,0 +1,146 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2024 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + +# VARIABLES # + +ifndef VERBOSE + QUIET := @ +else + QUIET := +endif + +# Determine the OS ([1][1], [2][2]). +# +# [1]: https://en.wikipedia.org/wiki/Uname#Examples +# [2]: http://stackoverflow.com/a/27776822/2225624 +OS ?= $(shell uname) +ifneq (, $(findstring MINGW,$(OS))) + OS := WINNT +else +ifneq (, $(findstring MSYS,$(OS))) + OS := WINNT +else +ifneq (, $(findstring CYGWIN,$(OS))) + OS := WINNT +else +ifneq (, $(findstring Windows_NT,$(OS))) + OS := WINNT +endif +endif +endif +endif + +# Define the program used for compiling C source files: +ifdef C_COMPILER + CC := $(C_COMPILER) +else + CC := gcc +endif + +# Define the command-line options when compiling C files: +CFLAGS ?= \ + -std=c99 \ + -O3 \ + -Wall \ + -pedantic + +# Determine whether to generate position independent code ([1][1], [2][2]). +# +# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options +# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option +ifeq ($(OS), WINNT) + fPIC ?= +else + fPIC ?= -fPIC +endif + +# List of includes (e.g., `-I /foo/bar -I /beep/boop/include`): +INCLUDE ?= + +# List of source files: +SOURCE_FILES ?= + +# List of libraries (e.g., `-lopenblas -lpthread`): +LIBRARIES ?= + +# List of library paths (e.g., `-L /foo/bar -L /beep/boop`): +LIBPATH ?= + +# List of C targets: +c_targets := benchmark.out + + +# RULES # + +#/ +# Compiles source files. +# +# @param {string} [C_COMPILER] - C compiler (e.g., `gcc`) +# @param {string} [CFLAGS] - C compiler options +# @param {(string|void)} [fPIC] - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} [INCLUDE] - list of includes (e.g., `-I /foo/bar -I /beep/boop/include`) +# @param {string} [SOURCE_FILES] - list of source files +# @param {string} [LIBPATH] - list of library paths (e.g., `-L /foo/bar -L /beep/boop`) +# @param {string} [LIBRARIES] - list of libraries (e.g., `-lopenblas -lpthread`) +# +# @example +# make +# +# @example +# make all +#/ +all: $(c_targets) + +.PHONY: all + +#/ +# Compiles C source files. +# +# @private +# @param {string} CC - C compiler (e.g., `gcc`) +# @param {string} CFLAGS - C compiler options +# @param {(string|void)} fPIC - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} INCLUDE - list of includes (e.g., `-I /foo/bar`) +# @param {string} SOURCE_FILES - list of source files +# @param {string} LIBPATH - list of library paths (e.g., `-L /foo/bar`) +# @param {string} LIBRARIES - list of libraries (e.g., `-lopenblas`) +#/ +$(c_targets): %.out: %.c + $(QUIET) $(CC) $(CFLAGS) $(fPIC) $(INCLUDE) -o $@ $(SOURCE_FILES) $< $(LIBPATH) -lm $(LIBRARIES) + +#/ +# Runs compiled benchmarks. +# +# @example +# make run +#/ +run: $(c_targets) + $(QUIET) ./$< + +.PHONY: run + +#/ +# Removes generated files. +# +# @example +# make clean +#/ +clean: + $(QUIET) -rm -f *.o *.out + +.PHONY: clean diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/native/benchmark.c new file mode 100644 index 000000000000..c8c61b79c1a5 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/native/benchmark.c @@ -0,0 +1,136 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include "stdlib/math/base/special/besselj1f.h" +#include +#include +#include +#include +#include + +#define NAME "besselj1" +#define ITERATIONS 1000000 +#define REPEATS 3 + +/** +* Prints the TAP version. +*/ +static void print_version( void ) { + printf( "TAP version 13\n" ); +} + +/** +* Prints the TAP summary. +* +* @param total total number of tests +* @param passing total number of passing tests +*/ +static void print_summary( int total, int passing ) { + printf( "#\n" ); + printf( "1..%d\n", total ); // TAP plan + printf( "# total %d\n", total ); + printf( "# pass %d\n", passing ); + printf( "#\n" ); + printf( "# ok\n" ); +} + +/** +* Prints benchmarks results. +* +* @param elapsed elapsed time in seconds +*/ +static void print_results( double elapsed ) { + double rate = (double)ITERATIONS / elapsed; + printf( " ---\n" ); + printf( " iterations: %d\n", ITERATIONS ); + printf( " elapsed: %0.9f\n", elapsed ); + printf( " rate: %0.9f\n", rate ); + printf( " ...\n" ); +} + +/** +* Returns a clock time. +* +* @return clock time +*/ +static double tic( void ) { + struct timeval now; + gettimeofday( &now, NULL ); + return (double)now.tv_sec + (double)now.tv_usec/1.0e6; +} + +/** +* Generates a random number on the interval [0,1]. +* +* @return random number +*/ +static double rand_double( void ) { + int r = rand(); + return (double)r / ( (double)RAND_MAX + 1.0 ); +} + +/** +* Runs a benchmark. +* +* @return elapsed time in seconds +*/ +static double benchmark( void ) { + float x[ 100 ]; + double elapsed; + float y; + double t; + int i; + + for ( i = 0; i < 100; i++ ) { + x[ i ] = 100000.0 * rand_double(); + } + + t = tic(); + for ( i = 0; i < ITERATIONS; i++ ) { + y = stdlib_base_besselj1f( x[ i%100 ] ); + if ( y != y ) { + printf( "should not return NaN\n" ); + break; + } + } + elapsed = tic() - t; + if ( y != y ) { + printf( "should not return NaN\n" ); + } + return elapsed; +} + +/** +* Main execution sequence. +*/ +int main( void ) { + double elapsed; + int i; + + // Use the current time to seed the random number generator: + srand( time( NULL ) ); + + print_version(); + for ( i = 0; i < REPEATS; i++ ) { + printf( "# c::native::%s\n", NAME ); + elapsed = benchmark(); + print_results( elapsed ); + printf( "ok %d benchmark finished\n", i+1 ); + } + print_summary( REPEATS, REPEATS ); +} diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/cpp/boost/Makefile b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/cpp/boost/Makefile new file mode 100644 index 000000000000..ba3ed4330d65 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/cpp/boost/Makefile @@ -0,0 +1,110 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2018 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + + +# VARIABLES # + +ifndef VERBOSE + QUIET := @ +endif + +# Specify the path to Boost: +BOOST ?= + +# Determine the OS: +# +# [1]: https://en.wikipedia.org/wiki/Uname#Examples +# [2]: http://stackoverflow.com/a/27776822/2225624 +OS ?= $(shell uname) +ifneq (, $(findstring MINGW,$(OS))) + OS := WINNT +else +ifneq (, $(findstring MSYS,$(OS))) + OS := WINNT +else +ifneq (, $(findstring CYGWIN,$(OS))) + OS := WINNT +endif +endif +endif + +# Define the program used for compiling C++ source files: +ifdef CXX_COMPILER + CXX := $(CXX_COMPILER) +else + CXX := g++ +endif + +# Define the command-line options when compiling C++ files: +CXXFLAGS ?= \ + -std=c++11 \ + -O3 \ + -Wall \ + -pedantic + +# Determine whether to generate [position independent code][1]: +# +# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options +# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option +ifeq ($(OS), WINNT) + fPIC ?= +else + fPIC ?= -fPIC +endif + +# List of C++ targets: +cxx_targets := benchmark.out + + +# TARGETS # + +# Default target. +# +# This target is the default target. + +all: $(cxx_targets) + +.PHONY: all + + +# Compile C++ source. +# +# This target compiles C++ source files. + +$(cxx_targets): %.out: %.cpp $(BOOST) + $(QUIET) $(CXX) $(CXXFLAGS) $(fPIC) -I $(BOOST) -o $@ $< -lm + + +# Run a benchmark. +# +# This target runs a benchmark. + +run: $(cxx_targets) + $(QUIET) ./$< + +.PHONY: run + + +# Perform clean-up. +# +# This target removes generated files. + +clean: + $(QUIET) -rm -f *.o *.out + +.PHONY: clean diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/cpp/boost/benchmark.cpp b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/cpp/boost/benchmark.cpp new file mode 100644 index 000000000000..b7af257886ae --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/cpp/boost/benchmark.cpp @@ -0,0 +1,132 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2018 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include +#include +#include +#include +#include +#include +#include +#include + +using boost::random::uniform_real_distribution; +using boost::random::mt19937; + +#define NAME "besselj1" +#define ITERATIONS 1000000 +#define REPEATS 3 + +/** +* Prints the TAP version. +*/ +void print_version() { + printf( "TAP version 13\n" ); +} + +/** +* Prints the TAP summary. +* +* @param total total number of tests +* @param passing total number of passing tests +*/ +void print_summary( int total, int passing ) { + printf( "#\n" ); + printf( "1..%d\n", total ); // TAP plan + printf( "# total %d\n", total ); + printf( "# pass %d\n", passing ); + printf( "#\n" ); + printf( "# ok\n" ); +} + +/** +* Prints benchmarks results. +* +* @param elapsed elapsed time in seconds +*/ +void print_results( double elapsed ) { + double rate = (double)ITERATIONS / elapsed; + printf( " ---\n" ); + printf( " iterations: %d\n", ITERATIONS ); + printf( " elapsed: %0.9f\n", elapsed ); + printf( " rate: %0.9f\n", rate ); + printf( " ...\n" ); +} + +/** +* Returns a clock time. +* +* @return clock time +*/ +double tic() { + struct timeval now; + gettimeofday( &now, NULL ); + return (double)now.tv_sec + (double)now.tv_usec/1.0e6; +} + +/** +* Runs a benchmark. +* +* @return elapsed time in seconds +*/ +double benchmark() { + double elapsed; + double x; + double y; + double t; + int i; + + // Define a new pseudorandom number generator: + mt19937 rng; + + // Define a uniform distribution for generating pseudorandom numbers as "doubles" between a minimum value (inclusive) and a maximum value (exclusive): + uniform_real_distribution<> randu( 0.0, 100000.0 ); + + t = tic(); + for ( i = 0; i < ITERATIONS; i++ ) { + x = randu( rng ); + y = boost::math::cyl_bessel_j( 1, x ); + if ( y != y ) { + printf( "should not return NaN\n" ); + break; + } + } + elapsed = tic() - t; + if ( y != y ) { + printf( "should not return NaN\n" ); + } + return elapsed; +} + +/** +* Main execution sequence. +*/ +int main( void ) { + double elapsed; + int i; + + print_version(); + for ( i = 0; i < REPEATS; i++ ) { + printf( "# cpp::boost::%s\n", NAME ); + elapsed = benchmark(); + print_results( elapsed ); + printf( "ok %d benchmark finished\n", i+1 ); + } + print_summary( REPEATS, REPEATS ); + return 0; +} diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/julia/REQUIRE new file mode 100644 index 000000000000..98645e192e41 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/julia/REQUIRE @@ -0,0 +1,2 @@ +julia 1.5 +BenchmarkTools 0.5.0 diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/julia/benchmark.jl b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/julia/benchmark.jl new file mode 100644 index 000000000000..970aafa8bffe --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/julia/benchmark.jl @@ -0,0 +1,144 @@ +#!/usr/bin/env julia +# +# @license Apache-2.0 +# +# Copyright (c) 2018 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import BenchmarkTools +using Printf + +# Benchmark variables: +name = "besselj1"; +repeats = 3; + +""" + print_version() + +Prints the TAP version. + +# Examples + +``` julia +julia> print_version() +``` +""" +function print_version() + @printf( "TAP version 13\n" ); +end + +""" + print_summary( total, passing ) + +Print the benchmark summary. + +# Arguments + +* `total`: total number of tests +* `passing`: number of passing tests + +# Examples + +``` julia +julia> print_summary( 3, 3 ) +``` +""" +function print_summary( total, passing ) + @printf( "#\n" ); + @printf( "1..%d\n", total ); # TAP plan + @printf( "# total %d\n", total ); + @printf( "# pass %d\n", passing ); + @printf( "#\n" ); + @printf( "# ok\n" ); +end + +""" + print_results( iterations, elapsed ) + +Print benchmark results. + +# Arguments + +* `iterations`: number of iterations +* `elapsed`: elapsed time (in seconds) + +# Examples + +``` julia +julia> print_results( 1000000, 0.131009101868 ) +``` +""" +function print_results( iterations, elapsed ) + rate = iterations / elapsed + + @printf( " ---\n" ); + @printf( " iterations: %d\n", iterations ); + @printf( " elapsed: %0.9f\n", elapsed ); + @printf( " rate: %0.9f\n", rate ); + @printf( " ...\n" ); +end + +""" + benchmark() + +Run a benchmark. + +# Notes + +* Benchmark results are returned as a two-element array: [ iterations, elapsed ]. +* The number of iterations is not the true number of iterations. Instead, an 'iteration' is defined as a 'sample', which is a computed estimate for a single evaluation. +* The elapsed time is in seconds. + +# Examples + +``` julia +julia> out = benchmark(); +``` +""" +function benchmark() + t = BenchmarkTools.@benchmark besselj1( rand()*100000.0 ) samples=1e6 + + # Compute the total "elapsed" time and convert from nanoseconds to seconds: + s = sum( t.times ) / 1.0e9; + + # Determine the number of "iterations": + iter = length( t.times ); + + # Return the results: + [ iter, s ]; +end + +""" + main() + +Run benchmarks. + +# Examples + +``` julia +julia> main(); +``` +""" +function main() + print_version(); + for i in 1:repeats + @printf( "# julia::%s\n", name ); + results = benchmark(); + print_results( results[ 1 ], results[ 2 ] ); + @printf( "ok %d benchmark finished\n", i ); + end + print_summary( repeats, repeats ); +end + +main(); diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/python/scipy/benchmark.py b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/python/scipy/benchmark.py new file mode 100644 index 000000000000..52a08d9bf073 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/python/scipy/benchmark.py @@ -0,0 +1,97 @@ +#!/usr/bin/env python +# +# @license Apache-2.0 +# +# Copyright (c) 2018 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Benchmark scipy.special.j1.""" + +from __future__ import print_function +import timeit + +NAME = "besselj1" +REPEATS = 3 +ITERATIONS = 1000000 + + +def print_version(): + """Print the TAP version.""" + print("TAP version 13") + + +def print_summary(total, passing): + """Print the benchmark summary. + + # Arguments + + * `total`: total number of tests + * `passing`: number of passing tests + + """ + print("#") + print("1.." + str(total)) # TAP plan + print("# total " + str(total)) + print("# pass " + str(passing)) + print("#") + print("# ok") + + +def print_results(elapsed): + """Print benchmark results. + + # Arguments + + * `elapsed`: elapsed time (in seconds) + + # Examples + + ``` python + python> print_results(0.131009101868) + ``` + """ + rate = ITERATIONS / elapsed + + print(" ---") + print(" iterations: " + str(ITERATIONS)) + print(" elapsed: " + str(elapsed)) + print(" rate: " + str(rate)) + print(" ...") + + +def benchmark(): + """Run the benchmark and print benchmark results.""" + setup = "from scipy.special import j1; from random import random;" + stmt = "y = j1(random()*100000.0)" + + t = timeit.Timer(stmt, setup=setup) + + print_version() + + for i in range(REPEATS): + print("# python::scipy::" + NAME) + elapsed = t.timeit(number=ITERATIONS) + print_results(elapsed) + print("ok " + str(i+1) + " benchmark finished") + + print_summary(REPEATS, REPEATS) + + +def main(): + """Run the benchmark.""" + benchmark() + + +if __name__ == "__main__": + main() diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/r/DESCRIPTION b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/r/DESCRIPTION new file mode 100644 index 000000000000..fb4ddd5bdb70 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/r/DESCRIPTION @@ -0,0 +1,9 @@ +Package: besselj1-benchmarks +Title: Benchmarks +Version: 0.0.0 +Authors@R: person("stdlib", "js", role = c("aut","cre")) +Description: Benchmarks. +Depends: R (>=3.4.0) +Imports: + microbenchmark +LazyData: true diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/r/benchmark.R b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/r/benchmark.R new file mode 100644 index 000000000000..20de4680a68d --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/r/benchmark.R @@ -0,0 +1,109 @@ +#!/usr/bin/env Rscript +# +# @license Apache-2.0 +# +# Copyright (c) 2018 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Set the precision to 16 digits: +options( digits = 16L ); + +#' Run benchmarks. +#' +#' @examples +#' main(); +main <- function() { + # Define benchmark parameters: + name <- "besselj1"; + iterations <- 1000000L; + repeats <- 3L; + + #' Print the TAP version. + #' + #' @examples + #' print_version(); + print_version <- function() { + cat( "TAP version 13\n" ); + } + + #' Print the TAP summary. + #' + #' @param total Total number of tests. + #' @param passing Total number of passing tests. + #' + #' @examples + #' print_summary( 3, 3 ); + print_summary <- function( total, passing ) { + cat( "#\n" ); + cat( paste0( "1..", total, "\n" ) ); # TAP plan + cat( paste0( "# total ", total, "\n" ) ); + cat( paste0( "# pass ", passing, "\n" ) ); + cat( "#\n" ); + cat( "# ok\n" ); + } + + #' Print benchmark results. + #' + #' @param iterations Number of iterations. + #' @param elapsed Elapsed time in seconds. + #' + #' @examples + #' print_results( 10000L, 0.131009101868 ); + print_results <- function( iterations, elapsed ) { + rate <- iterations / elapsed; + cat( " ---\n" ); + cat( paste0( " iterations: ", iterations, "\n" ) ); + cat( paste0( " elapsed: ", elapsed, "\n" ) ); + cat( paste0( " rate: ", rate, "\n" ) ); + cat( " ...\n" ); + } + + #' Run a benchmark. + #' + #' ## Notes + #' + #' * We compute and return a total "elapsed" time, rather than the minimum + #' evaluation time, to match benchmark results in other languages (e.g., + #' Python). + #' + #' + #' @param iterations Number of Iterations. + #' @return Elapsed time in seconds. + #' + #' @examples + #' elapsed <- benchmark( 10000L ); + benchmark <- function( iterations ) { + # Run the benchmarks: + results <- microbenchmark::microbenchmark( besselJ( runif(1)*100000, 1 ), times = iterations ); + + # Sum all the raw timing results to get a total "elapsed" time: + elapsed <- sum( results$time ); + + # Convert the elapsed time from nanoseconds to seconds: + elapsed <- elapsed / 1.0e9; + + return( elapsed ); + } + + print_version(); + for ( i in 1:repeats ) { + cat( paste0( "# r::", name, "\n" ) ); + elapsed <- benchmark( iterations ); + print_results( iterations, elapsed ); + cat( paste0( "ok ", i, " benchmark finished", "\n" ) ); + } + print_summary( repeats, repeats ); +} + +main(); diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/binding.gyp b/lib/node_modules/@stdlib/math/base/special/besselj1f/binding.gyp new file mode 100644 index 000000000000..ec3992233442 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/binding.gyp @@ -0,0 +1,170 @@ +# @license Apache-2.0 +# +# Copyright (c) 2024 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# A `.gyp` file for building a Node.js native add-on. +# +# [1]: https://gyp.gsrc.io/docs/InputFormatReference.md +# [2]: https://gyp.gsrc.io/docs/UserDocumentation.md +{ + # List of files to include in this file: + 'includes': [ + './include.gypi', + ], + + # Define variables to be used throughout the configuration for all targets: + 'variables': { + # Target name should match the add-on export name: + 'addon_target_name%': 'addon', + + # Set variables based on the host OS: + 'conditions': [ + [ + 'OS=="win"', + { + # Define the object file suffix: + 'obj': 'obj', + }, + { + # Define the object file suffix: + 'obj': 'o', + } + ], # end condition (OS=="win") + ], # end conditions + }, # end variables + + # Define compile targets: + 'targets': [ + + # Target to generate an add-on: + { + # The target name should match the add-on export name: + 'target_name': '<(addon_target_name)', + + # Define dependencies: + 'dependencies': [], + + # Define directories which contain relevant include headers: + 'include_dirs': [ + # Local include directory: + '<@(include_dirs)', + ], + + # List of source files: + 'sources': [ + '<@(src_files)', + ], + + # Settings which should be applied when a target's object files are used as linker input: + 'link_settings': { + # Define libraries: + 'libraries': [ + '<@(libraries)', + ], + + # Define library directories: + 'library_dirs': [ + '<@(library_dirs)', + ], + }, + + # C/C++ compiler flags: + 'cflags': [ + # Enable commonly used warning options: + '-Wall', + + # Aggressive optimization: + '-O3', + ], + + # C specific compiler flags: + 'cflags_c': [ + # Specify the C standard to which a program is expected to conform: + '-std=c99', + ], + + # C++ specific compiler flags: + 'cflags_cpp': [ + # Specify the C++ standard to which a program is expected to conform: + '-std=c++11', + ], + + # Linker flags: + 'ldflags': [], + + # Apply conditions based on the host OS: + 'conditions': [ + [ + 'OS=="mac"', + { + # Linker flags: + 'ldflags': [ + '-undefined dynamic_lookup', + '-Wl,-no-pie', + '-Wl,-search_paths_first', + ], + }, + ], # end condition (OS=="mac") + [ + 'OS!="win"', + { + # C/C++ flags: + 'cflags': [ + # Generate platform-independent code: + '-fPIC', + ], + }, + ], # end condition (OS!="win") + ], # end conditions + }, # end target <(addon_target_name) + + # Target to copy a generated add-on to a standard location: + { + 'target_name': 'copy_addon', + + # Declare that the output of this target is not linked: + 'type': 'none', + + # Define dependencies: + 'dependencies': [ + # Require that the add-on be generated before building this target: + '<(addon_target_name)', + ], + + # Define a list of actions: + 'actions': [ + { + 'action_name': 'copy_addon', + 'message': 'Copying addon...', + + # Explicitly list the inputs in the command-line invocation below: + 'inputs': [], + + # Declare the expected outputs: + 'outputs': [ + '<(addon_output_dir)/<(addon_target_name).node', + ], + + # Define the command-line invocation: + 'action': [ + 'cp', + '<(PRODUCT_DIR)/<(addon_target_name).node', + '<(addon_output_dir)/<(addon_target_name).node', + ], + }, + ], # end actions + }, # end target copy_addon + ], # end targets +} diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/docs/img/equation_bessel_first_kind_order_one.svg b/lib/node_modules/@stdlib/math/base/special/besselj1f/docs/img/equation_bessel_first_kind_order_one.svg new file mode 100644 index 000000000000..b1daaae90aed --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/docs/img/equation_bessel_first_kind_order_one.svg @@ -0,0 +1,69 @@ + +upper J 1 left-parenthesis x right-parenthesis equals StartFraction 1 Over 2 pi EndFraction integral Subscript negative pi Superscript pi Baseline e Superscript i left-parenthesis tau minus x sine left-parenthesis tau right-parenthesis right-parenthesis Baseline d tau + + + \ No newline at end of file diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/docs/repl.txt b/lib/node_modules/@stdlib/math/base/special/besselj1f/docs/repl.txt new file mode 100644 index 000000000000..58d9db0c5e98 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/docs/repl.txt @@ -0,0 +1,30 @@ + +{{alias}}( x ) + Computes the Bessel function of the first kind of order one. + + Parameters + ---------- + x: number + Input value. + + Returns + ------- + y: number + Function value. + + Examples + -------- + > var y = {{alias}}( 0.0 ) + 0.0 + > y = {{alias}}( 1.0 ) + ~0.440 + > y = {{alias}}( {{alias:@stdlib/constants/float64/pinf}} ) + 0.0 + > y = {{alias}}( {{alias:@stdlib/constants/float64/ninf}} ) + 0.0 + > y = {{alias}}( NaN ) + NaN + + See Also + -------- + diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/besselj1f/docs/types/index.d.ts new file mode 100644 index 000000000000..e1ccebb2d976 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/docs/types/index.d.ts @@ -0,0 +1,56 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2019 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +// TypeScript Version: 4.1 + +/** +* Computes the Bessel function of the first kind of order one. +* +* ## Notes +* +* - Accuracy for subnormal `x` is very poor. Full accuracy is achieved at `1.0e-308` but trends progressively to zero at `5e-324`. This suggests that underflow (or overflow, perhaps due to a reciprocal) is effectively cutting off digits of precision until the computation loses all accuracy at `5e-324`. +* +* @param x - input value +* @returns evaluated Bessel function +* +* @example +* var v = j1( 0.0 ); +* // returns 0.0 +* +* @example +* var v = j1( 1.0 ); +* // returns ~0.440 +* +* @example +* var v = j1( Infinity ); +* // returns 0.0 +* +* @example +* var v = j1( -Infinity ); +* // returns 0.0 +* +* @example +* var v = j1( NaN ); +* // returns NaN +*/ +declare function j1( x: number ): number; + + +// EXPORTS // + +export = j1; diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/docs/types/test.ts b/lib/node_modules/@stdlib/math/base/special/besselj1f/docs/types/test.ts new file mode 100644 index 000000000000..c7795461b7d5 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/docs/types/test.ts @@ -0,0 +1,44 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2019 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +import j1 = require( './index' ); + + +// TESTS // + +// The function returns a number... +{ + j1( 8 ); // $ExpectType number +} + +// The compiler throws an error if the function is provided a value other than a number... +{ + j1( true ); // $ExpectError + j1( false ); // $ExpectError + j1( null ); // $ExpectError + j1( undefined ); // $ExpectError + j1( '5' ); // $ExpectError + j1( [] ); // $ExpectError + j1( {} ); // $ExpectError + j1( ( x: number ): number => x ); // $ExpectError +} + +// The compiler throws an error if the function is provided insufficient arguments... +{ + j1(); // $ExpectError +} diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/examples/c/Makefile b/lib/node_modules/@stdlib/math/base/special/besselj1f/examples/c/Makefile new file mode 100644 index 000000000000..6aed70daf167 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/examples/c/Makefile @@ -0,0 +1,146 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2024 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + +# VARIABLES # + +ifndef VERBOSE + QUIET := @ +else + QUIET := +endif + +# Determine the OS ([1][1], [2][2]). +# +# [1]: https://en.wikipedia.org/wiki/Uname#Examples +# [2]: http://stackoverflow.com/a/27776822/2225624 +OS ?= $(shell uname) +ifneq (, $(findstring MINGW,$(OS))) + OS := WINNT +else +ifneq (, $(findstring MSYS,$(OS))) + OS := WINNT +else +ifneq (, $(findstring CYGWIN,$(OS))) + OS := WINNT +else +ifneq (, $(findstring Windows_NT,$(OS))) + OS := WINNT +endif +endif +endif +endif + +# Define the program used for compiling C source files: +ifdef C_COMPILER + CC := $(C_COMPILER) +else + CC := gcc +endif + +# Define the command-line options when compiling C files: +CFLAGS ?= \ + -std=c99 \ + -O3 \ + -Wall \ + -pedantic + +# Determine whether to generate position independent code ([1][1], [2][2]). +# +# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options +# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option +ifeq ($(OS), WINNT) + fPIC ?= +else + fPIC ?= -fPIC +endif + +# List of includes (e.g., `-I /foo/bar -I /beep/boop/include`): +INCLUDE ?= + +# List of source files: +SOURCE_FILES ?= + +# List of libraries (e.g., `-lopenblas -lpthread`): +LIBRARIES ?= + +# List of library paths (e.g., `-L /foo/bar -L /beep/boop`): +LIBPATH ?= + +# List of C targets: +c_targets := example.out + + +# RULES # + +#/ +# Compiles source files. +# +# @param {string} [C_COMPILER] - C compiler (e.g., `gcc`) +# @param {string} [CFLAGS] - C compiler options +# @param {(string|void)} [fPIC] - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} [INCLUDE] - list of includes (e.g., `-I /foo/bar -I /beep/boop/include`) +# @param {string} [SOURCE_FILES] - list of source files +# @param {string} [LIBPATH] - list of library paths (e.g., `-L /foo/bar -L /beep/boop`) +# @param {string} [LIBRARIES] - list of libraries (e.g., `-lopenblas -lpthread`) +# +# @example +# make +# +# @example +# make all +#/ +all: $(c_targets) + +.PHONY: all + +#/ +# Compiles C source files. +# +# @private +# @param {string} CC - C compiler (e.g., `gcc`) +# @param {string} CFLAGS - C compiler options +# @param {(string|void)} fPIC - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} INCLUDE - list of includes (e.g., `-I /foo/bar`) +# @param {string} SOURCE_FILES - list of source files +# @param {string} LIBPATH - list of library paths (e.g., `-L /foo/bar`) +# @param {string} LIBRARIES - list of libraries (e.g., `-lopenblas`) +#/ +$(c_targets): %.out: %.c + $(QUIET) $(CC) $(CFLAGS) $(fPIC) $(INCLUDE) -o $@ $(SOURCE_FILES) $< $(LIBPATH) -lm $(LIBRARIES) + +#/ +# Runs compiled examples. +# +# @example +# make run +#/ +run: $(c_targets) + $(QUIET) ./$< + +.PHONY: run + +#/ +# Removes generated files. +# +# @example +# make clean +#/ +clean: + $(QUIET) -rm -f *.o *.out + +.PHONY: clean diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/examples/c/example.c b/lib/node_modules/@stdlib/math/base/special/besselj1f/examples/c/example.c new file mode 100644 index 000000000000..c0b81d889708 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/examples/c/example.c @@ -0,0 +1,31 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include "stdlib/math/base/special/besselj1f.h" +#include + +int main( void ) { + const float x[] = { 0.0f, 0.005f, 3.14f, 10.0f, 51.125f, 99.99f, 100.0f }; + float v; + int i; + + for ( i = 0; i < 7; i++ ) { + v = stdlib_base_besselj1f( x[ i ] ); + printf( "besselj1f(%f) = %f\n", x[ i ], v ); + } +} diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/examples/index.js b/lib/node_modules/@stdlib/math/base/special/besselj1f/examples/index.js new file mode 100644 index 000000000000..3163c7ddacf2 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/examples/index.js @@ -0,0 +1,30 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2018 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +var uniform = require( '@stdlib/random/array/uniform' ); +var logEachMap = require( '@stdlib/console/log-each-map' ); +var besselj1 = require( './../lib' ); + +var opts = { + 'dtype': 'float32' +}; +var x = uniform( 100, 0.0, 100.0, opts ); + +logEachMap( 'besselj1f(%0.4f) = %0.4f', x, besselj1 ); diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/include.gypi b/lib/node_modules/@stdlib/math/base/special/besselj1f/include.gypi new file mode 100644 index 000000000000..575cb043c0bf --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/include.gypi @@ -0,0 +1,53 @@ +# @license Apache-2.0 +# +# Copyright (c) 2024 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# A GYP include file for building a Node.js native add-on. +# +# Main documentation: +# +# [1]: https://gyp.gsrc.io/docs/InputFormatReference.md +# [2]: https://gyp.gsrc.io/docs/UserDocumentation.md +{ + # Define variables to be used throughout the configuration for all targets: + 'variables': { + # Source directory: + 'src_dir': './src', + + # Include directories: + 'include_dirs': [ + '=0.10.0", + "npm": ">2.7.0" + }, + "os": [ + "aix", + "darwin", + "freebsd", + "linux", + "macos", + "openbsd", + "sunos", + "win32", + "windows" + ], + "keywords": [ + "stdlib", + "stdmath", + "mathematics", + "math", + "special", + "bessel", + "j1", + "number" + ], + "__stdlib__": { + "scaffold": { + "$schema": "math/base@v1.0", + "base_alias": "besselj1", + "alias": "besselj1", + "pkg_desc": "compute the Bessel function of the first kind of order one for a single-precision floating-point number", + "desc": "computes the Bessel function of the first kind of order one for a single-precision floating-point number", + "short_desc": "Bessel function of the first kind of order one", + "parameters": [ + { + "name": "x", + "desc": "input value", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "double", + "dtype": "float32" + }, + "domain": [ + { + "min": "-infinity", + "max": "infinity" + } + ], + "rand": { + "prng": "random/base/uniform", + "parameters": [ + -100, + 100 + ] + }, + "example_values": [ + 0.2, + -0.87, + 4.1, + -6.3, + 12.7, + -2.25, + 50.9, + -99.4, + 8.2, + -3.6, + 0, + 31.4, + -15.9, + 72.3, + -41.2, + 1.07, + -250.8, + 5.5, + -27.3, + 1000 + ] + } + ], + "output_policy": "real_floating_point_and_generic", + "returns": { + "desc": "evaluated Bessel function", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "double", + "dtype": "float32" + } + }, + "keywords": [ + "bessel", + "j1" + ], + "extra_keywords": [] + } + } +} diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/scripts/evalrational.js b/lib/node_modules/@stdlib/math/base/special/besselj1f/scripts/evalrational.js new file mode 100644 index 000000000000..b1491704e3f5 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/scripts/evalrational.js @@ -0,0 +1,219 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2018 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +/* +* This script compiles modules for evaluating polynomial functions. If any polynomial coefficients change, this script should be rerun to update the compiled files. +*/ +'use strict'; + +// MODULES // + +var resolve = require( 'path' ).resolve; +var readFileSync = require( '@stdlib/fs/read-file' ).sync; +var writeFileSync = require( '@stdlib/fs/write-file' ).sync; +var currentYear = require( '@stdlib/time/current-year' ); +var licenseHeader = require( '@stdlib/_tools/licenses/header' ); +var compile = require( '@stdlib/math/base/tools/evalrational-compile' ); +var compileC = require( '@stdlib/math/base/tools/evalrational-compile-c' ); +var substringBefore = require( '@stdlib/string/substring-before' ); +var substringAfter = require( '@stdlib/string/substring-after' ); +var format = require( '@stdlib/string/format' ); + + +// VARIABLES // + +// Polynomial coefficients ordered in ascending degree... +var P1 = [ + -1.4258509801366645672e+11, + 6.6781041261492395835e+09, + -1.1548696764841276794e+08, + 9.8062904098958257677e+05, + -4.4615792982775076130e+03, + 1.0650724020080236441e+01, + -1.0767857011487300348e-02 +]; + +var Q1 = [ + 4.1868604460820175290e+12, + 4.2091902282580133541e+10, + 2.0228375140097033958e+08, + 5.9117614494174794095e+05, + 1.0742272239517380498e+03, + 1.0, + 0.0 +]; + +var P2 = [ + -1.7527881995806511112e+16, + 1.6608531731299018674e+15, + -3.6658018905416665164e+13, + 3.5580665670910619166e+11, + -1.8113931269860667829e+09, + 5.0793266148011179143e+06, + -7.5023342220781607561e+03, + 4.6179191852758252278e+00 +]; + +var Q2 = [ + 1.7253905888447681194e+18, + 1.7128800897135812012e+16, + 8.4899346165481429307e+13, + 2.7622777286244082666e+11, + 6.4872502899596389593e+08, + 1.1267125065029138050e+06, + 1.3886978985861357615e+03, + 1.0 +]; + +var PC = [ + -4.4357578167941278571e+06, + -9.9422465050776411957e+06, + -6.6033732483649391093e+06, + -1.5235293511811373833e+06, + -1.0982405543459346727e+05, + -1.6116166443246101165e+03, + 0.0 +]; + +var QC = [ + -4.4357578167941278568e+06, + -9.9341243899345856590e+06, + -6.5853394797230870728e+06, + -1.5118095066341608816e+06, + -1.0726385991103820119e+05, + -1.4550094401904961825e+03, + 1.0 +]; + +var PS = [ + 3.3220913409857223519e+04, + 8.5145160675335701966e+04, + 6.6178836581270835179e+04, + 1.8494262873223866797e+04, + 1.7063754290207680021e+03, + 3.5265133846636032186e+01, + 0.0 +]; + +var QS = [ + 7.0871281941028743574e+05, + 1.8194580422439972989e+06, + 1.4194606696037208929e+06, + 4.0029443582266975117e+05, + 3.7890229745772202641e+04, + 8.6383677696049909675e+02, + 1.0 +]; + +// Header to add to output files: +var header = licenseHeader( 'Apache-2.0', 'js', { + 'year': currentYear(), + 'copyright': 'The Stdlib Authors' +}); +header += '\n/* This is a generated file. Do not edit directly. */\n'; + + +// FUNCTIONS // + +/** +* Inserts a compiled function into file content. +* +* @private +* @param {string} text - source content +* @param {string} id - function identifier +* @param {string} str - function string +* @returns {string} updated content +*/ +function insert( text, id, str ) { + var before; + var after; + var begin; + var end; + + begin = '// BEGIN: '+id; + end = '// END: '+id; + + before = substringBefore( text, begin ); + after = substringAfter( text, end ); + + return format( '%s// BEGIN: %s\n\n%s\n%s%s', before, id, str, end, after ); +} + + +// MAIN // + +/** +* Main execution sequence. +* +* @private +*/ +function main() { + var fpath; + var copts; + var opts; + var file; + var str; + + opts = { + 'encoding': 'utf8' + }; + + fpath = resolve( __dirname, '..', 'lib', 'rational_p1q1.js' ); + str = header + compile( P1, Q1 ); + writeFileSync( fpath, str, opts ); + + fpath = resolve( __dirname, '..', 'lib', 'rational_p2q2.js' ); + str = header + compile( P2, Q2 ); + writeFileSync( fpath, str, opts ); + + fpath = resolve( __dirname, '..', 'lib', 'rational_pcqc.js' ); + str = header + compile( PC, QC ); + writeFileSync( fpath, str, opts ); + + fpath = resolve( __dirname, '..', 'lib', 'rational_psqs.js' ); + str = header + compile( PS, QS ); + writeFileSync( fpath, str, opts ); + + copts = { + 'dtype': 'double', + 'name': '' + }; + + fpath = resolve( __dirname, '..', 'src', 'main.c' ); + file = readFileSync( fpath, opts ); + + copts.name = 'rational_p1q1'; + str = compileC( P1, Q1, copts ); + file = insert( file, copts.name, str ); + + copts.name = 'rational_p2q2'; + str = compileC( P2, Q2, copts ); + file = insert( file, copts.name, str ); + + copts.name = 'rational_pcqc'; + str = compileC( PC, QC, copts ); + file = insert( file, copts.name, str ); + + copts.name = 'rational_psqs'; + str = compileC( PS, QS, copts ); + file = insert( file, copts.name, str ); + + writeFileSync( fpath, file, opts ); +} + +main(); diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/src/Makefile b/lib/node_modules/@stdlib/math/base/special/besselj1f/src/Makefile new file mode 100644 index 000000000000..bcf18aa46655 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/src/Makefile @@ -0,0 +1,70 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2024 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + +# VARIABLES # + +ifndef VERBOSE + QUIET := @ +else + QUIET := +endif + +# Determine the OS ([1][1], [2][2]). +# +# [1]: https://en.wikipedia.org/wiki/Uname#Examples +# [2]: http://stackoverflow.com/a/27776822/2225624 +OS ?= $(shell uname) +ifneq (, $(findstring MINGW,$(OS))) + OS := WINNT +else +ifneq (, $(findstring MSYS,$(OS))) + OS := WINNT +else +ifneq (, $(findstring CYGWIN,$(OS))) + OS := WINNT +else +ifneq (, $(findstring Windows_NT,$(OS))) + OS := WINNT +endif +endif +endif +endif + + +# RULES # + +#/ +# Removes generated files for building an add-on. +# +# @example +# make clean-addon +#/ +clean-addon: + $(QUIET) -rm -f *.o *.node + +.PHONY: clean-addon + +#/ +# Removes generated files. +# +# @example +# make clean +#/ +clean: clean-addon + +.PHONY: clean diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/src/addon.c b/lib/node_modules/@stdlib/math/base/special/besselj1f/src/addon.c new file mode 100644 index 000000000000..e01ab1db3558 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/src/addon.c @@ -0,0 +1,22 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include "stdlib/math/base/special/besselj1f.h" +#include "stdlib/math/base/napi/unary.h" + +STDLIB_MATH_BASE_NAPI_MODULE_D_D( stdlib_base_besselj1 ) diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/src/main.c b/lib/node_modules/@stdlib/math/base/special/besselj1f/src/main.c new file mode 100644 index 000000000000..a016f37d0a40 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/src/main.c @@ -0,0 +1,34 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include "stdlib/math/base/special/besselj1f.h" +#include "stdlib/math/base/special/besselj1.h" + +/** +* Computes the Bessel function of the first kind of order one for a single-precision floating-point number. +* +* @param x input value +* @return evaluated Bessel function +* +* @example +* float out = stdlib_base_besselj1f( 1.0f ); +* // returns ~0.440f +*/ +float stdlib_base_besselj1f( const float x ) { + return (float)stdlib_base_besselj1( (double)x ); +} diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/REQUIRE new file mode 100644 index 000000000000..06bfe7391215 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/REQUIRE @@ -0,0 +1,3 @@ +julia 1.5 +JSON 0.21 +SpecialFunctions 0.10.3 diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/huge_positive.json b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/huge_positive.json new file mode 100644 index 000000000000..a6d758c7df86 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/huge_positive.json @@ -0,0 +1 @@ +{"expected":[-1.3681360450342481e-151,-5.641136800498603e-153,3.229995504589554e-153,-1.0884621484082098e-153,-7.307947020773311e-154,1.9201212555874555e-153,6.809537363878625e-155,-1.260350718668138e-153,4.019784339941161e-154,-1.8145108510832855e-153,-1.5038999459036662e-153,-1.67893331944164e-154,-1.3096353686020517e-153,1.3993615005684738e-153,4.042581316629457e-154,1.075061034447323e-153,1.4045052842736563e-153,-5.0179973513102446e-154,5.900941339293172e-154,-1.2945336512616078e-153,1.0697358002796348e-153,1.1002667723979466e-154,-7.36088221111382e-154,1.1557377452533779e-153,-3.1914061247167105e-154,-8.255659139231104e-154,1.0392280116684484e-153,-6.580434849238295e-154,-4.641533675490522e-154,1.0476882758294352e-153,-8.785168231408027e-154,-8.109669369166554e-155,6.029131050375785e-154,-7.438080436216761e-154,2.768318737668967e-154,6.916069222167765e-154,-8.861647561956791e-154,5.690181373063991e-154,-8.355918620440257e-155,-9.032365044724793e-154,7.651513981601457e-154,4.9984915359820346e-154,-8.024012857313021e-154,2.8375992967022093e-154,1.963216660547177e-154,-6.044858291450685e-154,8.154125865086685e-154,-7.677801268720239e-154,-3.407012296706847e-154,6.785521672685648e-154,-3.878705514881983e-154,-4.84575521955148e-155,7.765228618046533e-154,-5.963049683554343e-154,-5.267179949775748e-154,7.379879465953803e-154,-7.15120882063347e-154,4.694278009264448e-154,-8.144842869653778e-155,-3.861639951823926e-154,-1.1245408618790444e-155,-7.222751778835455e-154,-6.550900348215871e-154,2.4696571964681608e-154,1.4989313746758584e-154,1.9454110833485015e-154,6.780382693151787e-154,5.437013201736992e-154,-6.81341904267513e-154,-5.629072283076521e-155,-3.3879722002775724e-154,-5.52275306383425e-154,6.613448306520597e-154,-6.107779634265707e-154,2.110651478001017e-154,6.288905034113262e-154,-4.6892971812427175e-154,4.1319340773412197e-154,5.144006152760908e-154,-3.4378274657769235e-154,5.528229623186452e-154,-6.269870232917216e-154,-5.041268055314232e-154,-3.94836513617802e-154,1.1954177355415117e-154,1.8110768429934603e-154,5.914073635359002e-154,5.609884694447e-154,3.738332096492159e-154,4.910314206629303e-154,-3.083755665049517e-154,4.512338716558057e-155,3.286834116767175e-154,-4.6384880352317315e-154,-3.830700418484248e-154,1.2780629559499258e-154,-5.526454320352564e-154,5.6032557881614586e-154,5.225701051246694e-154,-5.651057514219551e-154,1.2435438521419326e-155,-2.7793822555556028e-154,5.7750450097048604e-155,2.125466200886741e-154,-4.293004580183533e-154,-3.735868973869692e-154,3.7856809178782894e-154,4.173663239840859e-154,-1.9906501817584114e-154,4.8944771688634054e-154,-5.371475580287555e-154,-4.527366743829473e-154,5.319853675743389e-154,6.920141307855071e-155,1.886807146551222e-154,5.023587321709867e-154,-1.2427393750667051e-154,3.4994375350044986e-154,5.903671543149629e-155,5.166198128578307e-154,4.603618179427643e-154,-5.127642459512705e-154,-1.6518806658052267e-155,-3.094264152082952e-154,7.969513955850505e-155,-4.9248368365668094e-154,-3.3476860858984966e-154,-1.0550199018063178e-154,3.2438928893511005e-154,3.96941735589959e-154,-2.061993834260059e-154,-4.279377335626142e-154,2.1668815938879963e-154,-3.9877902649480236e-154,-1.5857659336281756e-154,8.938999979100124e-155,-4.6909284447624135e-154,4.673792694524712e-154,-8.840673399595048e-155,2.0225356865121793e-154,2.8366820459219304e-155,4.7522572567160546e-154,-4.1726999570067545e-154,2.5959548173449645e-154,4.389491364288421e-154,-3.047854735626558e-154,9.840404883736743e-155,3.446031953765619e-154,-1.5376129108965017e-154,-3.7850771123611756e-154,2.0597688446421045e-154,1.4841953000675552e-155,-2.3064107917600114e-154,4.2482845743960075e-155,1.7813824155191597e-154,-9.840016515803509e-155,-1.2353272053050008e-154,3.14395784949784e-154,6.769459888415423e-155,-2.698179410088331e-154,4.059053237871147e-154,-4.4370690159882324e-154,-3.771740388314331e-154,-1.704871665422006e-154,3.429054322063231e-154,2.612521768035779e-154,4.167643439581947e-154,4.160130509098879e-154,-4.277811780329644e-154,3.3677467024186207e-154,-1.6544833356912117e-154,-3.6626490177468484e-154,2.1298791162395215e-154,-9.46021018158717e-156,-2.5664981818159176e-154,6.27478228136261e-155,2.9580194723753915e-154,-1.1444923457734468e-154,-9.336379815803923e-155,1.6378087133113606e-154,4.073041046732853e-155,-2.3432783064120964e-154,1.1958093641579965e-155,1.878744663610168e-154,-3.415005509799999e-154,-1.3898864341660466e-154,3.0738873473900536e-154,8.845519815307247e-155,3.9791989581599034e-154,3.836933159039355e-154,2.2648512137637373e-154,-3.605046088002853e-154,4.0724012831393427e-154,-3.559226920269506e-154,-4.023007981317372e-154,3.756943999758415e-154,-2.5898684430799694e-154,8.066688831414132e-155,-3.739318193700911e-154,3.968495536538296e-154,-3.2432895519458996e-154,1.7426509035967786e-154,1.6913658899481278e-155,-2.1663916566156773e-154,3.274281730057977e-155,1.5811960985902822e-154,-8.140242231380792e-155,-2.894076721672053e-154,1.2831787646563522e-154,6.2824721573405484e-155,3.813470413580453e-154,3.551020375172223e-154,1.96547609922008e-154,-3.310077146746089e-154,-1.5244476390468377e-154,3.019567788350547e-154,1.0636563853523566e-154,-2.6844749440698473e-154,-2.6112534486699085e-154,-3.7392567842467285e-154,-3.467462500318927e-154,3.786162431210133e-154,3.229415756357241e-154,-3.7733586915602514e-154,3.408256465890281e-154,-2.2258826320572132e-154,5.139364960066865e-155,2.576796690676915e-154,-9.713281413489322e-155,-2.8842753991006817e-154,-3.7130094620981557e-154,-3.4923393821567144e-154,-1.821824405267693e-154,6.76684741072987e-156,2.202060583106207e-154,-5.278360863837845e-155,-1.2661151565485773e-154,2.7482378967863692e-154,8.207819248187648e-155,-2.4126314071422846e-154,3.41807177984053e-154,1.8081450906250194e-154,2.912472511881119e-154,-1.6424830413841734e-154,-3.1474044661733745e-154,1.9209163043866724e-154,-2.681868804280856e-154,-2.278627867043056e-154,2.3508125874099148e-154,-3.347575632788331e-154,3.535842739023677e-154,-2.8736054858240652e-154,-3.554565063307767e-154,3.1022391498683804e-154,-1.906132824190851e-154,2.566196174546709e-155,2.2559936591971564e-154,3.4058583014074053e-154,-1.0298982285324676e-154,2.4989343946754866e-154,5.9877079526863695e-155,-2.162837386287143e-154,-3.059487333891373e-154,-3.466019338657814e-154,-2.7485589291380707e-155,-1.4026070406726482e-154,7.036706102442785e-155,9.907764390327577e-155,-2.440749656431013e-154,3.298668705725876e-154,2.1088028331522413e-154,-3.138542560481515e-154,3.410099699317053e-154,2.9254772095573718e-155,-3.40583242961118e-154,3.060893839505785e-154,-1.9814614162960347e-154,4.296466228081504e-155,-3.238472177054171e-154,-8.44470250519434e-155,3.0787549642232594e-154,-3.356775832081178e-154,-3.1723738854624334e-154,-1.619386304769023e-154,2.685001451512136e-156,1.5665428961086005e-154,3.167353374299919e-154,-2.282597250010039e-154,8.522093374161954e-155,7.780827780105493e-155,-2.2156993530181897e-154,3.1157296921757406e-154,-3.2636699757065845e-154,2.6265334038512622e-154,-1.523332190171981e-154,2.7231161039389488e-154,2.2632022266554036e-154,-8.598792916230152e-155,-2.0484047145153646e-154,2.1661810629501733e-154,-3.06141388707235e-154,3.217683942396095e-154,-2.5998794148209616e-154,1.3590824933700026e-154,-2.67060379527319e-154,3.2135465102712814e-154,-2.9821333862253458e-154,2.034527535272279e-154,-6.00871032216102e-155,-9.725978593709917e-155,-3.173626193681021e-154,-3.082724727287112e-154,-1.3582771426721614e-154,-1.8058128925019401e-155,1.6711151288470817e-154,2.947089490271997e-154,-2.021396590288462e-154,6.1263028598230035e-155,9.389925146616681e-155,-3.4757517921111096e-155,3.033468704893548e-154,-3.0751995882617216e-154,1.575023013863811e-155,-1.6301533773283633e-154,2.706305842097103e-154,-3.128447462111181e-154,-6.241562175523705e-155,-1.7942289533948505e-154,3.6302009084319207e-155,-2.9860428663079343e-154,3.037300765330414e-154,-2.3581051511662634e-154,1.5905608999822542e-154,-2.6592179696665522e-154,3.085270882265472e-154,2.7743332855191258e-154,1.786471043317057e-154,-3.78098975367303e-155,-1.1170143587222552e-154,2.339122536933093e-154,2.3396377390270512e-154,-1.1177909778785203e-154,-3.692564324670527e-155,1.763172114269298e-154,-2.7290624285548782e-154,-1.7791591165588768e-154,-2.6118806885454835e-154,1.0839564240653153e-154,-2.295844560722677e-154,2.9521912907440537e-154,1.1216619285900443e-154,2.144931128429769e-154,-1.7244057007494928e-154,2.68530676830638e-154,-2.9977614026672514e-154,2.588468462366673e-154,-1.5578800856914337e-154,1.5555900380320331e-155,-2.9106553714441226e-154,2.8655939574858797e-154,-2.13156009787423e-154,1.6868236349684343e-154,5.6745733394531806e-155,2.9609092973208344e-154,-2.56594394094563e-154,-2.9361406736542676e-154,-1.7289583258046436e-155,-1.2470252851838794e-154,-2.835517044211642e-154,2.1187582477364254e-154,-8.944158487807758e-155,-5.417137644068849e-155,6.542635283976318e-155,-2.6988166148578794e-154,2.9026130018622718e-154,-2.407826009845394e-154,1.2147411578175862e-154,2.8064660859994643e-154,2.870458888262296e-154,9.017679841520417e-155,5.166431760893205e-155,-6.6490445688763485e-155,2.6595420930291313e-154,1.9854327975201956e-154,2.389999045820966e-154,-1.3362889755335711e-154,2.2848706813792068e-154,-2.8340464131366186e-154,-2.417021897851644e-154,-1.917347428761561e-154,6.753605091766367e-155,7.25869957525805e-155,-1.948949141476894e-154,-2.3728085611863864e-154,1.337374203181772e-154,1.707790209619976e-156,2.798730155686234e-154,2.3794735019877855e-154,1.9092350698602307e-154,2.5814020498577695e-154,-6.99796244757464e-155,1.9134652790459733e-154,-2.6639071732834723e-154,-1.3385508827672719e-154,-2.2127641811716294e-154,1.332650839005527e-154,-2.342968615978526e-154,2.787288842082374e-154,-2.5601401651772862e-154,6.74360737736851e-155,-4.643602539761542e-155,-8.977109106667586e-155,-2.744316460221947e-154,2.199651525557554e-154,-1.3020990400519721e-154,-2.1368796759270147e-155,-2.7553965549118575e-154,2.5395420202292434e-154,2.7600397601172355e-154,4.7711367266019275e-155,8.709757131028111e-155,2.7176436734300983e-154,-2.186986877379314e-154,1.1315646711430303e-154,1.9353388016120086e-155,-1.4689611973721347e-154,2.38806859053573e-154,-2.730628292547141e-154,-4.89630298503979e-155,-1.5202848430034735e-154,1.9730473735195462e-154,-2.624030136998413e-154,2.6423480050634556e-154,-1.7381652981831113e-155,9.221062301500212e-155,-2.3545690224422278e-154,-1.6230404776494415e-154,-2.398742262276563e-154,1.5191856401260843e-154,-1.9405450508988483e-154,2.5924095238358303e-154,-2.6192287051667318e-154,2.0159690902298778e-154,-9.2915895519231e-155,2.3219052821378515e-154,1.592521040071624e-154,2.3823807638637102e-154,2.664501668041591e-154,2.9076912380741872e-155,-2.561587909975072e-154,-2.0541571487154753e-154,-2.007183390126276e-154,-2.5332895418145942e-154,3.5774344606109757e-155,-1.5627065439320576e-154,-5.7636184053484884e-155,-2.639029272896363e-154,-3.05046262774195e-155,-9.779635983102466e-155,2.022930036545634e-154,1.9986841807931424e-154,-9.4300673977312e-155,-1.8435391081778833e-154,1.5335632005964044e-154,5.540111536285148e-155,-1.7035389686590338e-154,3.190613205067717e-155,9.526136157978365e-155,-9.929615840962198e-156,2.5507205761732808e-154,2.1225455714478428e-154,1.837908987671295e-154,-1.5050594868498365e-154,-5.321180153392215e-155,1.674384905246559e-154,2.2279206382354666e-154,-1.33069083931568e-154,1.1523845891879267e-155,1.136867726407752e-154,-2.092704989260809e-154,-1.832473775304616e-154,-2.4009812293003923e-154,5.1066272940738846e-155,-1.6458578121844076e-154,2.3827781367471752e-154,1.3326281731131573e-154,-1.3088802499064862e-155,-1.141303543459344e-154,-1.9592939015810307e-154,1.827221466601924e-154,2.384771975366363e-154,2.5434386479360565e-154,5.5031086880748254e-155,6.968605929151956e-155,2.5235637996364075e-154,1.462559916795796e-155,1.1457063258881072e-154,1.952053240601417e-154,-1.8221408577245895e-154,-2.3689560097514784e-154,-2.5195598391333556e-154,-5.6143169069301954e-155,-6.747303701106249e-155,-2.502638692420569e-154,-1.613528159066538e-155,-1.1500748355764646e-154,-1.9450184017642605e-154,1.2361870102738687e-154,2.3535133115339015e-154,2.496202531163017e-154,-2.268798156632595e-154,6.530185504062064e-155,-1.7189181635297742e-154,2.369211316310349e-154,1.1544079398184863e-154,1.9381776297092368e-154,2.3971493916533587e-154,-2.3384251190218103e-154,-2.47334221824694e-154,2.255780800747866e-154,2.474374766966629e-154,1.692255853085407e-154,-2.343650405365828e-154,-1.83445726082867e-154,-1.9315199111803714e-154,-2.380689314572999e-154,2.2421269148337586e-155,2.4509558935165585e-154,2.169181384263624e-154,-2.4534137515812745e-154,-3.90299939425063e-155,2.3185997800240868e-154,1.808133949940111e-154,1.9250349171769312e-154,2.3645815100792375e-154,-2.0642478253619292e-155,-2.429021934667327e-154,-2.143414443832897e-154,2.4328783712129128e-154,2.2289530740329863e-154,-2.2940370010290155e-154,-1.7823038626551244e-154,-9.74223130820799e-155,-2.348809173881292e-154,1.8893936257819237e-155,-7.908874959133596e-155,2.118134155838066e-154,-2.4127493103002578e-154,-2.2042391005970083e-154,-7.639838272701167e-155,1.7569466699037968e-154,9.5181681271969e-155,-1.06212012793049e-156,2.3641896595841624e-154,7.992368498150346e-155,3.7195993632393116e-155,-1.45155773405576e-154,2.1799816611341776e-154,1.3311292215687795e-154,-1.7320432045067067e-154,-9.297961329083757e-155,2.6116797456317266e-156,-2.3424660738368088e-154,-8.074700515268e-155,-3.5362083151035487e-155,1.427575256670672e-154,-2.1561617218645104e-154,2.3646974586416615e-154,1.7075753781264308e-154,1.1616526650046148e-154,-4.136632266601205e-156,-1.086908973912911e-154,8.15589592736915e-155,3.3557940370009116e-155,2.174123701984982e-154,2.1327613141045892e-154,4.31075195793119e-155,1.996378342652644e-154,-1.1659210221905649e-154,5.637773995148507e-156,1.0648154329462965e-154,-8.235978446017994e-155,-3.1782545417838478e-155,-2.1631103736751882e-154,1.4804387217285676e-154,-4.427371463227912e-155,-1.9889820004583163e-154,1.1701440731407134e-154,-7.115859147477043e-156,-1.0430805193285753e-154,-1.7508576894137127e-154,3.003493264799268e-155,2.1523018553279136e-154,-1.4808501436593039e-154,4.542282486265288e-155,1.9817303753329912e-154,-1.6486354217949125e-154,8.571602659077073e-156,1.0216913708584573e-154,1.7475287158113297e-154,-2.8314187014586877e-155,-2.1416884936718376e-154,1.4812771461174596e-154,-4.655531353835403e-155,-1.9746160061231233e-154,1.625775151423162e-154,-2.19827389004574e-154,-1.0006358000570985e-154,-1.744273100539829e-154,-2.268223098294656e-154,2.131261157061036e-154,-1.4817170854853434e-154,2.0496669616322477e-154,6.41347678703064e-155,-1.603272721288063e-154,2.1778640605389533e-154,-2.2274986728299836e-154,1.7410861223551393e-154,2.2497163610263638e-154,-2.6784191582530366e-155,1.4821674692457063e-154,-2.0282173500821558e-154,2.2612665222532658e-154,1.5811151701238768e-154,-2.1577740451396213e-154,2.2143141432221092e-154,-1.737963316036415e-154,-2.2315001034653304e-154,2.5128620016680934e-155,-1.4826259456676918e-154,2.0070959974741958e-154,-2.2455473186731174e-154,-1.5592901961632253e-154,2.1379915195838696e-154,-2.201338066301456e-154,9.55318848531123e-155,-8.517458423541113e-155,-2.349682118621461e-155,1.2634395290771684e-154,-1.986290697795922e-154,2.230068780515689e-154,-1.936864786603712e-154,-2.1185047834983328e-154,2.1885615366415632e-154,-9.354466264799415e-155,8.592020442741186e-155,2.188808350412921e-155,-1.2426284268985863e-154,-1.4687984663786585e-154,-2.214821169348669e-154,1.9305306862039505e-154,-1.1821453239131288e-154,-2.175976098822457e-154,9.158558347576544e-155,-1.7601582090787835e-154,-2.0301729697929107e-155,1.2221117458655542e-154,1.4694564564710691e-154,2.1997952323941772e-154,-1.9242935822147734e-154,1.186173671063663e-154,-1.6374614439171646e-155,-8.965375120194556e-155,1.739489322316838e-154,1.8737114737419597e-155,-1.2018798422260687e-154,-1.4701115413319072e-154,5.2266975006364e-155,5.491219877738394e-155,-1.1901518360606826e-154,1.7685726687217315e-155,8.774831248722219e-155,-1.7191048284556153e-154,-8.639326485553503e-155,1.1819235328193565e-154,1.4707620441680099e-154,-5.329500094736307e-155,-5.317201009515664e-155,1.1940797648597167e-154,-1.8979384814538008e-155,2.1348745233695793e-154,1.698995076166671e-154,8.711643661447957e-155,2.046488574602112e-154,-1.471406377312948e-154,5.430951176238962e-155,5.145487823686501e-155,-1.1979574153673778e-154,2.02560296586315e-155,-2.1231390613465902e-154,-1.6791508685655648e-154,-8.7830193561774e-155,-2.037567741602058e-154,1.4720430366754773e-154,-5.531080050503403e-155,-4.976014180457718e-155,1.4270593063506864e-154,-2.0117805420744815e-154,2.1115556651775257e-154,-1.703070084318393e-154,8.853468245097993e-155,2.028761209352017e-154,-1.1376785871079799e-154,5.629914745666802e-155,4.808716945277641e-155,1.885037590936092e-154,1.994181378316226e-154,-2.100118143190108e-154,1.7005349710503272e-154,-8.92300441104674e-155,-2.0200638780161746e-154,1.1187303836449606e-154,-1.8373416875954113e-154,2.112806252884934e-154,-1.8794582474349186e-154,-1.9768009075757368e-154,2.0888205917234253e-154,-1.6980278725321203e-154,1.631015858090697e-154,1.1496400700500698e-155,-1.1000175161209278e-154,1.8189934005681062e-154,-2.0992461024774653e-154,1.8739431001174346e-154,1.959631645176273e-154,-2.0776573787822933e-154,1.695546344578214e-154,-1.612195320674587e-154,-1.0059105970670997e-155,1.0815330620369065e-154,-1.8008658384119312e-154,2.0858457571461382e-154,-1.8684886758796503e-154,1.2017862864305453e-154,-2.4678896632435666e-155,-1.693088059010284e-154,1.5935992093815962e-154,-2.036285632795624e-154,-1.0632704034411e-154,1.782951866565832e-154,-2.072599286175073e-154,1.8630916617323028e-154,-1.2055195693090252e-154,2.587284257544825e-155,7.49051569522784e-155,-1.575220588362642e-154,2.0212082534582547e-154,-1.9801990081481905e-154,-1.7652446642555767e-154,-5.939198456502931e-155,-4.1664058944414735e-155,1.2092006632065805e-154,-2.705225612846265e-155,-7.320091566307287e-155,1.5570528235891878e-154,-2.0062988632016435e-154,7.535510992629504e-156,1.7477377075929486e-154,6.0320734085087855e-155,4.010350162061654e-155,-1.2128296502649683e-154,2.8217450604968234e-155,7.151640998072355e-155,1.6751591784265232e-154,1.9915517021785914e-154,-6.157471563552392e-156,1.4641106763891588e-154,-6.1238069588749895e-155,-3.856103673315321e-155,1.289504703290069e-154,-2.9368726470197433e-155,-6.985112254338243e-155,-1.6729331389542788e-154,-1.9769612588685272e-154,4.795500102381821e-156,-1.4647795968674225e-154,6.21441951661677e-155,3.703621941136948e-155,-1.2717614387466886e-154,-1.2058331316297635e-154,6.820455755702014e-155,1.6707182752863634e-154,-9.294817096035125e-155,-3.4492317418788623e-156,1.4654276050621821e-154,-1.7041685977780803e-154,-3.5528623090643185e-155,1.2542104776003506e-154,1.2094544913367162e-154,-6.657623968964696e-155,-1.6685128886538836e-154,9.358062007547378e-155,2.1183164005118328e-156,-1.4660538996323133e-154,1.687465843630567e-154,-1.996062316380683e-154,-1.2368465253179178e-154,-1.2130225061181684e-154,-1.9899729329791904e-154,1.6663153562226996e-154,-9.420494532416922e-155,1.9368330960128673e-154,9.549813529943118e-155,-1.6709334832082798e-154,1.9838687694251622e-154,1.2196645042805612e-154,1.2165373165470584e-154,1.9799378227132172e-154,-6.487959688848173e-155,9.482124328443888e-155,-1.9229224170601496e-154,1.9201813304726008e-154,1.6545665030620868e-154,-1.971788383441889e-154,1.81408731510167e-154,-1.219999062911473e-154,3.3303239668414666e-155,6.329961312999257e-155,-9.542960713720715e-155,1.909142681958105e-154,-1.912756028399713e-154,-1.6383600935617233e-154,1.9598172015685586e-154,-1.809228289598945e-154,1.2234078851193983e-154,-3.4386873377230165e-155,-6.173615676991273e-155,1.4288524228966313e-154,-1.8954896603549435e-154,1.9053877065825935e-154,-1.4567154227912508e-154,-1.9479514287065454e-154,1.804398946685504e-154,-1.1813221545004991e-154,3.545830414431971e-155,6.018884001185434e-155,-1.4123614981295347e-154,1.881959292878641e-154,-1.8980737331969598e-154,1.4573677984480795e-154,-6.664482011356592e-155,-1.7995973041955353e-154,1.1648320637784791e-154,-1.7643608619245962e-154,-5.865729016935442e-155,1.3960277794624997e-154,9.576513680582013e-155,1.8908115844125397e-154,-1.4579929129493793e-154,6.747930437792785e-155,2.6988564071696863e-155,-1.1485008381070277e-154,1.749676956760697e-154,5.714114894828648e-155,-1.3798471008562902e-154,-9.635540529408882e-155,-1.883598839183368e-154,8.709292689785776e-155,-6.8304003687024306e-155,-2.559933567390616e-155,1.1323245048534797e-154,-1.73512146231216e-154,-3.7028234346161024e-155,1.3638154582241902e-154,9.6938048243414e-155,-6.43139362825872e-156,-8.551853392248615e-155,6.9119060039798436e-155,2.4224196833024867e-155,-1.1162992442214835e-154,1.7206906511452163e-154,3.80627141161493e-155,1.6398805945628088e-154,-9.751314455068856e-155,7.645703265015713e-156,8.395907719112708e-155,-1.5525264829884102e-154,-2.2862860141507714e-155,-1.773975682721635e-154,-1.7063809401298705e-154,-3.9085950445209555e-155,-1.637831647944281e-154,9.808077053324199e-155,-8.84744859484314e-156,-8.241421550730337e-155,1.5373781158872974e-154,-1.879802737939676e-154,1.7694224606731925e-154,1.6921888837956994e-154,4.009812843025827e-155,1.6357763437632957e-154,-1.326964518961397e-154,1.003685901523861e-155,-1.851150278267848e-154,1.4499813623545718e-154,1.8686875933440407e-154,-1.7648852187116682e-154,1.236434909385602e-154,-4.10994265530745e-155,-5.124438521375229e-155,1.3115227106950249e-154,-1.1214155615300164e-155,1.8442800804502343e-154,-1.4505680827325282e-154,-1.8576511418427096e-154,1.76036250956141e-154,-1.2395037417354866e-154,1.6702720218474262e-154,4.981021889452071e-155,-1.2962113639302494e-154,1.7814748663878923e-154,-1.8374452769818338e-154,1.4511230935108245e-154,1.8466907666339628e-154,-1.7558529436108143e-154,1.2425199125133364e-154,-1.6564845513317923e-154,-4.838929553114264e-155,1.2810273136164827e-154,-1.768978441159642e-154,1.8306440745382972e-154,1.4780258159937015e-154,7.2367910558266056e-155,1.7767291950474706e-155,-1.0352867995675807e-154,4.403973338557727e-155,4.698135022139625e-155,1.6192279026009497e-154,-9.947232440880309e-155,1.3148155778941975e-155,1.4521366152074612e-154,-7.312978742432663e-155,-1.7468679557922496e-154,1.2483949068445385e-154,-1.6292190417063567e-154,1.8454348945491237e-154,-1.617259237206789e-154,1.2614675134674784e-154,-1.4286611281640114e-155,1.4490505092464186e-154,7.388292191359517e-155,1.5199949320517645e-155,-1.0052985699358018e-154,-1.2394671147188838e-154,4.420338123796485e-155,1.6152777711764735e-154,-1.0053740395920501e-154,1.541391443737535e-155,1.4530193486005051e-154,-7.462741982749432e-155,1.8051861778331712e-154,9.904888468580884e-155,-1.6023477896986565e-154,1.82790663038496e-154,-4.427070284692746e-155,1.2319991032945286e-154,-1.723943505236961e-154,1.4205117200896759e-154,7.53633835178214e-155,1.268005695452231e-155,-9.757985294046367e-155,-1.2452773516923242e-154,4.634638493291238e-155,4.2908581848713574e-155,-1.0157438298949703e-154,1.7635775432997026e-155,1.4537689598774154e-154,-1.4150695287354216e-154,1.7842133499697525e-154,-1.7235426179946704e-154,-1.5758501967252295e-154,1.8105580714905325e-154,-4.155823786192006e-155,1.2029805737562712e-154,-1.7000297773250826e-154,-1.7241119261898653e-155,1.4011044086789013e-154,1.0205983424895518e-155,-9.46766101370452e-155,-1.2508769003495775e-154,4.819482860031114e-155,-1.80136565416678e-154,1.5996395450345884e-154,1.6881840470397108e-154,-1.7809026099574852e-154,-1.3872374721991806e-154,1.7634773322178695e-154,-1.7148892338206055e-154,9.445439462295717e-155,1.79337539517767e-154,-3.889203272674466e-155,1.1743920560599815e-154,-1.6764096192252646e-154,-1.94142672020155e-155,1.3734664219467853e-154,7.685762314918534e-155,1.7105656139240672e-154,-1.2562671224280893e-154,5.000548491634784e-155,-1.784475225656132e-154,1.595760714160392e-154,-1.023152775078685e-154,-1.7679758190098327e-154,-1.3597890412508023e-154,1.7429630960533316e-154,-1.7062428133009843e-154,9.161858075430328e-155,-1.530645344806999e-154,-3.627046270979845e-155,1.1462150535363094e-154,1.02807411219171e-154,-2.1546662247527627e-155,-6.481982268817038e-155,7.825931293824644e-155,6.844226122944333e-156,-1.2614493435197456e-154,5.1779325094701816e-155,-1.7677274076556933e-154,1.5918086164060396e-154,-1.0329283294123482e-154,1.6460312546203354e-154,1.4461932705323002e-154,1.7226566771864195e-154,-5.660907709773041e-156,8.882479358489314e-155,-1.5052810243683008e-154,-5.124160232155092e-155,-3.5096887566415444e-155,1.0377159301647757e-154,-2.3639462531369188e-155,-6.210467095312774e-155,7.962916549082743e-155,4.4878223170887244e-156,1.688548802470772e-154,5.351725907590238e-155,-1.751110882368311e-154,1.5877791727618874e-154,-1.0424374041059123e-154,1.6232296913036212e-154,-1.7399572929216506e-154,-1.3148927196693482e-154,-3.3248169361411174e-156,8.607142946540068e-155,-1.4802180378581706e-154,-5.297918028795857e-155,-3.2552890021113556e-155,1.1016785887539867e-154,-2.5693752176411074e-155,-5.943072858229271e-155,8.096781730413453e-155,2.1717435287953935e-156,1.6801220771903767e-154,-1.2607662311691424e-154,-1.7346151336849252e-154,1.583668632146961e-154,-1.0881350677090426e-154,1.6006658216698677e-154,-1.7274385541176745e-154,5.942472476496985e-155,1.6852411284906916e-154,8.335699119225701e-155,-1.4554421144375366e-154,-5.46819710126404e-155,-3.0049213781473314e-155,1.0746799640379871e-154,1.0444073335240705e-154,-5.679658959209062e-155,-1.4385129034551866e-154,-1.675428754383865e-154,1.6716756122567446e-154,-1.2655590257069758e-154,1.4502098473517524e-154,1.5794735461657208e-154,-1.0613115642511467e-154,1.5783270906154355e-154,-1.7149623545903133e-154,5.68065371651116e-155,1.6656569820954195e-154,-1.8575771521505783e-157,-1.4309399465101484e-154,-5.635075891213938e-155,-2.758461801521971e-155,-1.5709952838366078e-154,1.0534782373336419e-154,-2.828684578258477e-155,-1.4388165754405202e-154,-1.655924540340437e-154,1.6632040830328403e-154,-1.2701459383878904e-154,1.4259518094854295e-154,-1.7024731758591667e-154,1.5689574373790454e-154,1.5562017953923078e-154,-1.702521577680109e-154,5.422609113797938e-155,-1.2459424388111992e-154,2.0452837117850463e-156,7.924775442165528e-155,-5.798628145356548e-155,-2.5157940711805807e-155,-1.56689608356968e-154,1.0622930154080743e-154,-3.0245404787336683e-155,1.6945789455919175e-154,-1.4308361154374586e-154,1.6547025625351234e-154,-1.2745282609637038e-154,1.401946107833725e-154,-1.6864747182778e-154,1.5648108963923926e-154,-1.0193848804279035e-154,3.121155891641233e-155,5.168219697397341e-155,-1.220614770582886e-154,4.2397696787061515e-156,7.664200894481173e-155,1.2669188928409285e-154,-2.276809287868925e-155,-1.5627015638128065e-154,1.0708549799335993e-154,-3.2169098242359432e-155,1.682385799340493e-154,-1.4310617339323229e-154,-1.6204673007739876e-154,-7.535183392914579e-155,1.3781816207396337e-154,-1.6705582548366358e-154,1.5605677872755375e-154,-1.075042147607617e-154,-1.0639074835763567e-154,4.9173740183735396e-155,-1.1955654731142846e-154,1.610995342060554e-154,-1.6382868552423128e-154,1.2712134557328711e-154,-5.984783866053498e-155,9.70028014361995e-155,9.807942298483496e-155,-1.5071169986411426e-154,1.6702089315932602e-154,-1.4311322210917862e-154,8.477861401840945e-155,-6.088565147972475e-156,1.3546479592487942e-154,-1.6547165641586054e-154,1.5562257726444923e-154,-1.0832307515024953e-154,-1.0722990524548382e-154,3.3634453627464524e-155,-1.1707838949294135e-154,1.5921456451084826e-154,-1.6299041458965458e-154,1.2753040501170713e-154,-6.140396684666179e-155,-1.9445387308377856e-155,9.554410768433185e-155,-1.4857900700914584e-154,1.6580429571587427e-154,-1.431047174357753e-154,8.597864523178801e-155,-8.206303186174487e-156,-7.147432613047202e-155,-1.6389429251124923e-154,1.551782715939499e-154,1.5463375289556728e-154,-1.0804434273476559e-154,3.5487974684711474e-155,4.554836819841067e-155,-1.1555152307419459e-154,-1.6214737115771323e-154,1.2791919600003092e-154,-6.2929276639081185e-155,-1.7152660635038807e-155,9.30375371956537e-155,9.411339808304642e-155,1.6458828778035726e-154,-1.4308062698468726e-154,8.715072985690393e-155,8.59632157643709e-155,-6.898146003440576e-155,1.315818971531844e-154,1.547236667723879e-154,1.5420059298694563e-154,-1.088343478777524e-154,3.7309172811854544e-155,4.3136225221121985e-155,-1.131305377962039e-154,1.5583444081798625e-154,1.2828784412414194e-154,-6.442432231626366e-155,-1.4892971744673254e-155,-1.622632845535405e-155,9.163772413953692e-155,-1.4492790815745856e-154,-1.4304092572802835e-154,8.82952844982692e-155,8.712588220050985e-155,-6.651864363874822e-155,1.2930179959501724e-154,-1.609084707845975e-154,1.5375667006939264e-154,-1.0960019479941738e-154,3.909869563760269e-155,4.075559335979617e-155,-1.1073327762297128e-154,1.5399831880404343e-154,-1.601586070570905e-154,-6.5889627754070796e-155,-1.2665524992583336e-155,-1.3991434887128955e-155,8.918878086936392e-155,-1.4285537935520954e-154,1.6209095783158004e-154,8.941270448310214e-155,8.826128209528174e-155,-1.3027916654998221e-155,1.2704099329281819e-154,-1.5936511714409917e-154,1.5330183131247717e-154,1.5281083798419314e-154,4.085715410683475e-155,3.840566255647982e-155,-1.0835893002287182e-154,-1.0929528552297452e-154,1.525460394053445e-154,1.2811127117735022e-154,-1.0469571986572308e-155,-1.1787964670292963e-155,8.676575265911123e-155,-1.4079700222656314e-154,1.6089285026411146e-154,-1.4224359672274606e-154,8.936979629259117e-155,-1.5026537550332385e-155,1.2479874154578527e-154,-1.5782601055942228e-154,-1.5800020103435135e-154,1.5236556384431973e-154,-1.1005924166305326e-154,3.6085671585257346e-155,-1.060067340747636e-154,-1.0694908626799694e-154,1.507432424321863e-154,1.2844048202143853e-154,-6.751387924338522e-155,-9.615213049635822e-156,8.436787476099811e-155,-1.3875213679121123e-154,1.5969337436479615e-154,-1.4217757046440208e-154,-1.4151805027173404e-154,8.933073231522344e-155,1.2257435526643627e-154,-1.5629068954583724e-154,-1.5648154720901652e-154,1.5190885033780098e-154,-1.1077328131801182e-154,4.300581542748632e-155,-1.036759770750415e-154,-1.0462409261886145e-154,1.4894864021646759e-154,-1.5738401504610477e-154,-6.890858928777842e-155,-6.770154894815858e-155,8.199442995494203e-155,-1.3672018542153014e-154,1.5849219533416044e-154,-1.4209566771944895e-154,-1.4145648897393744e-154,9.040406028464128e-155,-1.7630270616159642e-155,-1.5475872524939197e-154,-1.549659596806756e-154,1.5144059307863896e-154,-1.1146399042804956e-154,4.468770482690303e-155,3.279322992250621e-155,-1.0231964097696818e-154,1.4716173766997766e-154,-1.5654468566921702e-154,-7.027532023086964e-155,-6.908384751979834e-155,-6.653291622520648e-156,8.072982573235568e-155,1.572890036983533e-154,-1.4199790041553335e-154,-1.4137884076449487e-154,9.145142736716166e-155,-1.954897882986134e-155,1.1898005720839997e-154,-1.5345304651426084e-154,1.5096069946850574e-154,-1.121315959742485e-154,4.634063430294738e-155,3.0554412812503707e-155,3.1807399563052434e-155,-1.0098656953954882e-154,-1.5569818821349574e-154,1.2852720805481479e-154,-7.043850661729623e-155,-4.5612243486215287e-156,7.84053218345518e-155,-1.3331919400366484e-154,-1.4188428524505467e-154,-1.4128512819694503e-154,9.247315054878572e-155,-2.1438684076184214e-155,-5.470207396610583e-155,1.1761686007317087e-154,1.5046908800367727e-154,-1.1277631627895834e-154,4.796506727243048e-155,2.834280129379252e-155,2.95913181096079e-155,-9.872662193115524e-155,1.4404407238876757e-154,1.287971305788852e-154,-7.176591247583804e-155,-2.4973684741363065e-156,7.610316351649454e-155,-1.3133375998186245e-154,1.5490809735279086e-154,-1.41175377993909e-154,9.34695323342744e-155,-2.3299889771898527e-155,-5.242548982197943e-155,1.1547394921070199e-154,-1.5067814330968265e-154,-1.1339836160908492e-154,4.956144265537956e-155,2.6157835243853795e-155,2.7401764265462423e-155,-9.648524740149887e-155,1.4229104564808654e-154,-1.538103147434202e-154,-7.306643218076443e-155,-4.612002142075905e-157,7.382279772425901e-155,-1.2935896457113018e-154,1.537144167460843e-154,1.537538040812644e-154,9.444086170666216e-155,-2.5133071695909463e-155,-5.017311922297734e-155,1.133455936324452e-154,-1.4918654364562354e-154,1.4908867806007423e-154,-1.1310225546804423e-154,2.3998987280048746e-155,2.523821151286189e-155,-9.42619384912688e-155,1.4054379487737027e-154,-1.529596546023939e-154,1.2854582230947967e-154,1.547774570987648e-156,7.156370556803629e-155,-1.2739438949416913e-154,1.5251745122362143e-154,1.525738241385774e-154,-1.4035807312235266e-154,9.436418895470213e-155,-4.794444849788267e-155,1.1123134025779458e-154,-1.4769605525802852e-154,1.4858046418353656e-154,-1.1369775678115079e-154,5.147112689325382e-155,2.3100164038826513e-155,-9.205622008222693e-155,1.3880198015869677e-154,-1.5210098221715134e-154,1.2877629008917497e-154,-7.446936296553886e-155,6.9325400234130585e-155,-1.2543964507870994e-154,1.5131700162428802e-154,1.5139010788431873e-154,-1.4021948868549266e-154,9.53030576623061e-155,-2.7477657813422814e-155,-4.691305667238054e-155,1.0995686878866582e-154,1.4806008588446693e-154,-1.1427104193928088e-154,5.299881926853473e-155,5.1808637536480345e-155,-8.98676474469158e-155,1.3706528621361573e-154,-1.5123418696734926e-154,1.2898737646039112e-154,1.2828423930693302e-154,4.239436060094303e-156,-1.2349436856011297e-154,-1.2416425578369381e-154,1.5020247809475426e-154,-1.4006482111622523e-154,9.621758106574e-155,-2.9239931980982853e-155,-4.472852304610613e-155,1.0787688667512229e-154,1.4752751293801741e-154,-1.1482229756137083e-154,5.44999881860591e-155,5.332275652300755e-155,2.012101091725946e-155,1.3533342096631117e-154,-1.503591705150166e-154,1.2917919924267425e-154,1.2849461043943829e-154,6.177466923306392e-156,6.5999697080171884e-155,-1.2223797279566252e-154,1.4901077354252078e-154,-1.398941193290006e-154,9.710800498133087e-155,-3.0975879329631307e-155,-4.256617603781566e-155,-4.373269895043442e-155,1.4698272277943376e-154,-1.1535170444452133e-154,5.597497276802466e-155,5.481068842564635e-155,1.8051773904207582e-155,-8.651750495486996e-155,1.3410822406612916e-154,-1.4938234159570046e-154,1.2868568158996878e-154,-7.702566329390503e-155,6.382204324680788e-155,-1.203202692444491e-154,-1.2100103094731355e-154,-1.3970743519827069e-154,9.797456540779335e-155,-3.26858617405177e-155,-4.042561613204992e-155,-4.159015413588374e-155,1.045943993692063e-154,-1.1585943797338629e-154,-1.1504625313215607e-154,5.627275677181519e-155,1.600621560879592e-155,-8.438190147795834e-155,1.3239724197739806e-154,-1.4850783946088815e-154,1.2885757124293836e-154,-7.820152552290407e-155,6.166333642804421e-155,-1.1841085751198353e-154,-1.1910113900599201e-154,1.4674217305791627e-154,9.881748916383427e-155,-3.437022216787968e-155,-3.317170653652837e-155,-3.946887251179337e-155,1.025582669319429e-154,1.4559541678242147e-154,-1.1555002181581484e-154,5.7709269293610804e-155,1.3983968854800911e-155,-8.226173399073954e-155,1.3069010018257701e-154,-1.4762466941013306e-154,-1.475554200779421e-154,-7.935254875905901e-155,1.0626315858905995e-155,6.061103265283187e-155,-1.1720904128682194e-154,1.4555303326252035e-154,-1.3883910560656292e-154,-3.602928577887917e-155,-3.4841351734085563e-155,-3.7368502768374546e-155,1.0053365363549553e-154,-1.3945467352221345e-154,-1.1603234070671437e-154,-1.152468043922534e-154,1.198468764376647e-155,-8.015668736886103e-155,1.289865903794229e-154,-1.4673277958693161e-154,-1.4668034981121397e-154,1.2852406498314975e-154,1.2472989464191393e-155,5.848973724637732e-155,-1.1532449426529175e-154,1.4435909003889587e-154,-1.3862280630955996e-154,9.95199262163771e-155,-3.6486049335293482e-155,-3.5288714902097283e-155,9.852028806519894e-155,-1.3799277904417807e-154,-1.1649337348171109e-154,-1.1572510321141814e-154,5.939093755272008e-155,-7.80664676060291e-155,1.2728652147213553e-154,1.2782630614660749e-154,-1.4579630612987459e-154,1.2865689844023449e-154,-8.055745267958686e-155,5.63862294521258e-155,-1.1344727305190814e-154,1.4316025333155435e-154,-1.3839059169774181e-154,1.0030941127194999e-154,-3.810609223090662e-155,-3.6937642319136584e-155,9.651791832125585e-155,-1.3652995836039664e-154,1.436486754581867e-154,-1.1618216936547084e-154,6.076532371851092e-155,9.242910566414437e-156,1.2558971863775303e-154,1.261406965270229e-154,-1.4490325825695293e-154,1.2877087611926026e-154,-8.165009602643233e-155,1.4904705133901981e-155,-1.1157717037080797e-154,1.4195644439842506e-154,-1.3814252975715272e-154,1.010760158842236e-154,1.0018871226006444e-154,-3.854388876338698e-155,-3.2339216304577557e-155,-1.350660916217034e-154,1.4306478516726166e-154,-1.1661816045662997e-154,6.211524988965517e-155,7.305103205356749e-156,-7.49215642522301e-155,1.244579679203359e-154,-1.4400118353879438e-154,1.2886611375957778e-154,-8.271882518400058e-155,1.6688576324577961e-155,5.331618632592485e-155,-1.1044057704078193e-154,-1.3787869074508279e-154,1.0181993066554186e-154,1.0094861306642293e-154,-4.012606567338963e-155,-3.0316682598546397e-155,9.341564121253702e-155,1.4246833396718204e-154,1.4227489430345519e-154,6.344095860379983e-155,5.388954770172085e-156,-7.2877154819759615e-155,1.227779783251504e-154,1.2334199889275605e-154,1.2894272630548991e-154,-8.376385629322499e-155,1.844940756549845e-155,1.7275343301264905e-155,-1.0859245904257756e-154,1.3974199671790035e-154,1.0254133997794018e-154,1.0168594261184093e-154,-4.168442391004476e-155,-2.831345913859473e-155,9.14505761842115e-155,-1.325321888722656e-154,1.416827361493453e-154,6.474268145601592e-155,3.4942090740267535e-156,-7.084639704969882e-155,-7.18387164167574e-155,1.2167525530551874e-154,-1.421888355263125e-154,-8.47853969776683e-155,2.0187448963817784e-155,1.9021609658622307e-155,-1.0675071982856035e-154,1.3853727360416775e-154,-1.3695315737481234e-154,1.0240088063623211e-154,-4.321920189323578e-155,-2.632930694379709e-155,8.949547089100246e-155,-1.3107715041280349e-154,-1.314779748924561e-154,-1.1711017887561384e-154,1.62062478500338e-156,-6.88290881707863e-155,-6.982407595167782e-155,1.2001078962974794e-154,-1.4127527077055763e-154,1.2851665155402295e-154,2.1902937188496084e-155,2.0745401391413196e-155,4.8290833494361155e-155,1.3732715706113377e-154,-1.3665945991275445e-154,1.030936013157005e-154,-4.473062632768979e-155,-2.436400204386941e-155,8.755015835021207e-155,-1.296204936108114e-154,-1.3003375776564494e-154,1.4030753629277566e-154,6.623240552239409e-155,-6.68250403775321e-155,-6.782251194871194e-155,1.1834850131296652e-154,-1.4035246898220846e-154,1.2855505626428667e-154,-8.581732504044247e-155,2.2446941901559645e-155,4.628785114200683e-155,1.3611161940805377e-154,-1.3635013546889558e-154,-1.3602420248618741e-154,1.0294973830358924e-154,-4.511214748583091e-155,8.561448547691427e-155,-1.281621588494139e-154,-1.2858765099643698e-154,1.3969382467948946e-154,6.747623360372302e-155,-9.102405632819556e-157,-6.58338526758734e-155,1.1668830137708185e-154,-1.3942044500558547e-154,1.285751663502657e-154,-8.67839546862625e-155,-8.585157514495142e-155,4.43006861346102e-155,-1.0202107038767117e-154,-1.3602526671889119e-154,-1.35716068987148e-154,1.0361413534438859e-154,-4.658822522604144e-155,-2.1618250394287894e-155,-1.2670209628026462e-154,-1.271396070556408e-154,1.3906741437007172e-154,-1.175094094592422e-154,-2.7277095608249107e-156,-1.580566896376228e-156,1.1503011183464878e-154,-1.3847921968530654e-154,1.2857709584052092e-154,-8.772782357135588e-155,-8.680973125281948e-155,2.4650887707737774e-155,-1.0021092108107295e-154,-1.3568493820346124e-154,-1.3539232812423205e-154,1.0425674886230413e-154,-4.804160978987114e-155,-1.970488580091124e-155,8.266672134150429e-155,-1.256895876004263e-154,1.3842836290238925e-154,-1.1783464742579472e-154,-4.524956573194584e-156,-3.383844935497756e-156,-6.289367123328476e-155,-1.3752881960648839e-154,1.2856095845157078e-154,-8.864910443247599e-155,-8.77452758583661e-155,2.6295386758911457e-155,4.144788409481521e-155,-9.917245597026688e-155,-1.3505306786116449e-154,1.0487773494872437e-154,-4.947248710498272e-155,-1.7809472125789296e-155,8.076377200490814e-155,8.1657577152233e-155,1.3777673145193763e-154,-1.1813977755041677e-154,7.0073854551091285e-155,-5.167185806920065e-156,-6.094472690413682e-155,1.1234555562093531e-154,-1.366699582822635e-154,-8.954796414622952e-155,-8.865837613709369e-155,2.7918492037538093e-155,3.950635348047316e-155,-9.738049156705956e-155,1.317771035572905e-154,1.0547724568258861e-154,-5.0881034375073155e-155,-1.593185023261116e-155,7.886978363410219e-155,7.976812325024372e-155,-1.2324726177367728e-154,-1.184249342893721e-154,7.123889104283306e-155,-6.930755609362628e-156,-5.900795062183426e-155,1.1070230301811284e-154,-1.3571588964083727e-154,1.2804269645178117e-154,-8.95491937067876e-155,2.952037275217809e-155,3.75798650927996e-155,-9.559375987499332e-155,1.3056047132651083e-154,-1.340756910091058e-154,-5.226742058674972e-155,-1.4071871680500334e-155,7.698466431411442e-155,7.788734834588213e-155,-1.2180246804063216e-154,1.3636929784110982e-154,7.238148969451148e-155,7.140688912400385e-155,-5.708323241670129e-155,1.0906064615367648e-154,-1.3475257740837764e-154,1.2798929414339643e-154,1.2756489564454368e-154,3.1101189144735613e-155,3.5668293850888463e-155,-9.381220121821444e-155,1.2933802664370138e-154,-1.3370644432568374e-154,1.058838877124766e-154,-1.2229398144662686e-155,7.510833217688284e-155,7.601517235313034e-155,-1.2035542991304427e-154,1.3569568921821226e-154,-1.1835971604996682e-154,7.253985324435862e-155,-5.517047247631944e-155,1.074205562058132e-154,-1.3378007042441686e-154,1.2791816366813007e-154,1.2750989854151535e-154,-9.041191367734074e-155,3.377152466429557e-155,-9.203576503143346e-155,1.2810979546987297e-154,-1.3332190755030636e-154,1.0643506383792562e-154,-5.394043123784083e-155,-1.1509735266381713e-155,7.415152467296674e-155,-1.1890615058896304e-154,1.3500961909016513e-154,-1.1860157715230367e-154,7.365070099611049e-155,7.269696391542402e-155,1.0578201241234179e-154,-1.3279842208872538e-154,1.2782941925629409e-154,1.274371752322667e-154,-9.125088291637403e-155,3.3117383638747925e-155,-9.026440941025429e-155,-9.105745317481465e-155,1.272048719589678e-154,1.0696528399519167e-154,-5.5272193949825325e-155,-9.697840917796145e-156,-1.0797940901683836e-155,-1.1745464007203123e-154,1.3431116631590754e-154,-1.1882390091814273e-154,7.473957852573058e-155,7.379842273895802e-155,-5.238426852971391e-155,-1.318076901817162e-154,-1.3197046637471146e-154,1.2734684079417276e-154,-9.206814620596288e-155,3.464471076327567e-155,3.10867888200296e-155,-8.929738128356702e-155,1.2597760187579952e-154,1.0747468429595627e-154,-5.658244094868045e-155,-7.902963658891392e-156,-8.999011732009764e-156,7.136249231267386e-155,1.336004126422905e-154,-1.1902681417406717e-154,-1.1849017809843641e-154,7.487806466803393e-155,-1.3264060989960288e-155,1.031808930100408e-154,-1.3098446499988502e-154,1.2723901034748043e-154,-9.286384220318603e-155,3.6151608394375845e-155,2.9232208967919397e-155,-8.754213935308207e-155,-8.834109595600365e-155,-1.3189479603087684e-154,-5.787130618856212e-155,-6.125001710504313e-156,-7.216869570533497e-156,6.95276412199381e-155,-1.1506553874345545e-154,-1.1921044249153668e-154,-1.1868936803311282e-154,7.59360251612234e-155,-1.492532584261562e-155,1.0155513345430566e-154,-1.2998933549255777e-154,-1.3017054609010278e-154,-9.363810579872133e-155,3.7638198140157784e-155,2.739191131998723e-155,-8.57917105954954e-155,-8.659664289803554e-155,1.2386278215761104e-154,-5.91389178793432e-155,-5.81454823774968e-155,-5.45142156169982e-156,6.770094114366506e-155,-1.1361768249890713e-154,1.321564896606437e-154,-1.1886931635249964e-154,7.697243496451807e-155,-1.6567934195640345e-155,9.993071829424456e-155,-1.2898514899637622e-154,-1.2917982912560874e-154,1.2663364712111273e-154,3.910459528236862e-155,2.5565824754730746e-155,2.662302463145316e-155,-8.48568050819336e-155,1.2263004387114205e-154,-1.3086024792788586e-154,-5.9402954197109074e-155,-3.7025820882122845e-156,6.588236375129287e-155,-1.121675081258934e-154,1.3142381196305372e-154,-1.1903014678747753e-154,7.798742040754086e-155,-4.494739046377e-155,9.83076631745896e-155,9.899602294188548e-155,-1.2817996059387459e-154,1.2648949142891368e-154,-9.434831978138275e-155,3.951073530233399e-155,2.4809152488599984e-155,2.5862170643931677e-155,-1.3056209429645323e-154,1.0867649679001276e-154,-6.063945438995715e-155,-5.966446468236465e-155,-3.0481272506894203e-156,6.499308264656037e-155,-1.1125791932224941e-154,-1.191719821263205e-154,7.898110368419424e-155,-1.979756753990525e-155,-4.412030134909616e-155,9.738208265982682e-155,9.807121456808934e-155,-9.583359981298741e-155,4.1977243419871874e-155,2.1956036015156196e-155,2.300922430376538e-155,-8.139097538055572e-155,1.2014699200004386e-154,-1.299574719864024e-154,1.084760803860218e-154,-6.089108507218098e-155,-5.992347123893733e-155,-2.400353609725525e-156,6.4113038782383825e-155,1.2997050709990407e-154,-2.244742641009089e-155,-4.129717750487848e-155,9.506572528915398e-155,9.576936382222304e-155,-1.2615308999111424e-154,1.2614987364827666e-154,-9.577664378192297e-155,4.236174854880037e-155,2.122319079847177e-155,2.2272162189649625e-155,-8.048613980558483e-155,1.192925690532997e-154,1.0889274485678091e-154,-6.209699524705845e-155,3.76422412529688e-157,6.1402124789089056e-155,-1.0836570439900406e-154,1.2921587159371064e-154,8.090503341783396e-155,-2.2953672244742085e-155,-4.049312012253304e-155,9.415790056174933e-155,9.486215448952571e-155,-1.2536453721940924e-154,1.2566983665016304e-154,4.375763198067325e-155,1.94510088009074e-155,-7.794366885823058e-155,1.1764095410781164e-154,-1.2899577323523446e-154,1.0928937644794778e-154,1.086891903890441e-154,-6.233658362406019e-155,1.000955368646879e-156,6.054352803065907e-155,-1.0748015637039935e-154,-1.190474754179075e-154,8.099031619433343e-155,-3.869618523557341e-155,9.254773216655408e-155,-1.240906095373541e-154,1.2574262636904842e-154,-9.712165800854672e-155,4.513388520712528e-155,4.41279116815862e-155,1.873698802085019e-155,-7.70583004653411e-155,1.167977317773009e-154,-1.2839781051080553e-154,1.0908048178986185e-154,1.0848779388198253e-154,5.784277889722852e-155,-1.0546426340229138e-154,1.2767084205485661e-154,8.27451287743075e-155,-2.6036869398687215e-155,-3.6910332803843562e-155,-3.791124230558057e-155,9.165753919838708e-155,-1.2330975133582376e-154,1.2525912083655324e-154,-9.705168509564013e-155,4.5493871087994005e-155,4.449458719862369e-155,1.1511252315006384e-154,-1.2797603847005515e-154,1.1002301844850318e-154,1.0945192898851115e-154,-6.466782266036675e-155,4.338125442149771e-156,5.7004955264335674e-155,-1.0459271253320988e-154,-1.051678111891596e-154,8.281403543162514e-155,-2.651633208864067e-155,-3.613625598033959e-155,-3.713400103097531e-155,1.2526868966034453e-154,-9.838428782161277e-155,4.782783030290801e-155,4.6840431039924566e-155,1.5256380999944688e-155,-7.3648527379474646e-155,1.1428012134737956e-154,-1.2737826225123577e-154,-1.2730325087279719e-154,1.092398888712819e-154,-6.488642966672219e-155,4.934269322366287e-156,-1.0314551908843943e-154,1.2618726429814514e-154,-2.9047699951489908e-155,-3.337184331597422e-155,-3.437218222960602e-155,8.845775066219498e-155,-1.2121980930440853e-154,1.247817709184125e-154,-9.830090697825768e-155,-9.761052211861895e-155,4.718689166703125e-155,1.4571390387871378e-155,-7.279038449210076e-155,-1.268469897026427e-154,1.1013575675524346e-154,-6.691792781606799e-155,7.611515655288249e-156,5.349742926578116e-155,-1.0169610954992469e-154,-1.0228910467380163e-154,1.2550051895285705e-154,-2.9506012098300347e-155,-3.2619022990131852e-155,-3.361613352357947e-155,8.759240259597931e-155,-1.2045375890058701e-154,-9.889503532742622e-155,4.947564598192119e-155,1.1830156827347128e-155,-7.025710707544047e-155,1.1174042524967006e-154,-1.2630154042993219e-154,-1.2625494539002077e-154,1.0991334189924917e-154,-6.711835960839537e-155,8.186082720834931e-156,5.268752924381076e-155,-1.0084623876453013e-154,-1.0144079227991545e-154,-3.0974082806628127e-155,-3.0876784737224123e-155,8.526324207394684e-155,-1.1909551131319206e-154,1.24238739162028e-154,-9.946898441878783e-155,-9.88058622000802e-155,4.9802444471225025e-155,1.1166532710648773e-155,-6.9416875571176116e-155,1.1092619589243558e-154,-1.2570945818061543e-154,-6.908758595699221e-155,1.0821411366422596e-155,5.0021135769714e-155,5.0955138631240855e-155,-9.940114039205855e-155,1.2389234859190592e-154,-1.1854436509475643e-154,-3.141777894566711e-155,-3.014133617739653e-155,8.441351648204031e-155,-1.1833634277552658e-154,1.23752943805364e-154,-9.937333677855595e-155,8.458205306836831e-156,-6.688439766370947e-155,1.0917938286231636e-154,1.0965325300864621e-154,-1.2514990712963854e-154,1.1050906301839634e-154,-6.927032201650289e-155,1.1374986006080444e-155,4.923045343681281e-155,5.016233853410117e-155,-9.8565475673266e-155,1.2321519503506593e-154,-3.2857969862447112e-155,8.20745314997121e-155,-1.1693769906058264e-154,1.2363098615589107e-154,1.2345537086389789e-154,-9.992081871242146e-155,5.23417618413521e-155,7.815373432581812e-156,-6.606158538920219e-155,1.0837500060601354e-154,1.0885133192057798e-154,-1.2456307966253006e-154,1.1027850541237545e-154,-6.945124051937439e-155,4.751351280579277e-155,-9.650459429934297e-155,1.222382792927717e-154,-1.1853047017051338e-154,8.628813075513248e-155,-2.6709721405982563e-155,8.124000301129924e-155,-1.161852124055907e-154,1.231417571496089e-154,1.2297211922117024e-154,-9.981952612933758e-155,5.264646974911726e-155,7.178462314018998e-156,1.070915420782529e-154,-1.2398909804884765e-154,1.1102794862220611e-154,-7.134292960155037e-155,1.4501158949966635e-155,4.5804359570181605e-155,4.67393356784975e-155,-9.568123686506764e-155,1.2156415604987826e-154,-1.1816785432350698e-154,-3.4700215912670903e-155,-2.600083264083271e-155,8.04129486336958e-155,1.2281222476361865e-154,-1.009562099752129e-154,5.480531164185206e-155,4.5179092051912625e-156,-6.272497629423327e-155,1.0580298345523769e-154,1.0629903765482434e-154,-1.234019880476538e-154,1.1078749106207852e-154,-7.150673345705129e-155,1.5029382875094398e-155,1.40174698540882e-155,1.205392617859243e-154,-1.1844539360555802e-154,8.783655659318594e-155,8.710080035241245e-155,7.807247518287292e-155,-1.1400127118823265e-154,1.2246689644682625e-154,1.223254414839582e-154,-1.0084239070354718e-154,5.5091533391705925e-155,3.900974075830942e-156,-6.192626823886413e-155,-6.278409980861218e-155,1.1147088471670219e-154,-7.3336758023931915e-155,1.7564726660902907e-155,1.6559077934674878e-155,4.3347021700709e-155,-9.278883430745796e-155,1.1986808851234752e-154,-1.1807598010663918e-154,8.785762702642297e-155,-2.2631819811641544e-155,7.725991490447105e-155,-1.1326167209506603e-154,1.2197837935818836e-154,5.719351962982107e-155,1.274192191480118e-156,-5.940756615370214e-155,-6.027329968946384e-155,1.0372611374535731e-154,-1.2218611132303695e-154,1.1122076653946182e-154,-7.348386236860572e-155,1.8073251762336087e-155,1.7072691315858247e-155,4.25976403700118e-155,-9.198444268023751e-155,1.1920253365948294e-154,8.859465472648455e-155,7.49115969382671e-155,-1.1178545721313642e-154,-1.1216076072570358e-154,1.216156667242149e-154,-1.0178679142334724e-154,5.746169857752741e-155,6.767555353216377e-157,-5.8625104710170646e-155,-5.9489600457217215e-155,1.0294941208947356e-154,-1.2160352669806672e-154,2.0565766034167714e-155,1.957190859368051e-155,3.998581549278603e-155,-8.988907125347553e-155,1.1812798536906325e-154,-1.179140331105623e-154,-1.1763383643907806e-154,8.860796787513991e-155,7.411319358637731e-155,-1.1105196811804247e-154,-1.114303428847297e-154,1.2112932610167996e-154,-1.0166148155951306e-154,-5.610992298924369e-155,-5.698175972747257e-155,1.0113346256041966e-154,-1.2091645871401451e-154,1.115792030217068e-154,-7.53831487353745e-155,-7.4580593592735845e-155,2.0066282412425765e-155,3.9253878652983055e-155,-8.909612148861863e-155,1.1746511614115065e-154,-1.1754082988678509e-154,-1.1726675201031386e-154,-1.0953874107651718e-154,-1.0993541890214023e-154,1.2084378903612285e-154,-1.026535011232218e-154,5.975732906266405e-155,-2.494059252022185e-156,-1.4980342264209094e-156,-5.6213837059763875e-155,1.003654860437411e-154,-1.2033345103487318e-154,1.1132146188220245e-154,-7.551248536085512e-155,-7.471646693858971e-155,-8.698279202297754e-155,1.1634486448847144e-154,-1.1768295794823422e-154,-1.1743058283437553e-154,9.000864611875445e-155,-4.0929260842524575e-155,-1.0881123953034965e-154,-1.0921082407765944e-154,1.2035397507378986e-154,-1.0251627121229206e-154,6.000543923311735e-155,-3.067400576464283e-156,-2.075658570305376e-156,-1.1959405750539439e-154,1.1186366778720433e-154,-7.720508925215516e-155,-7.642513196173334e-155,2.299823807750349e-155,3.5941312587715166e-155,-8.620104637220742e-155,1.1568464075927476e-154,-1.1730321358398294e-154,-1.1705680436789621e-154,9.000724842431424e-155,7.0195422890725185e-155,7.097916297054528e-155,-1.0344328253713947e-154,6.197875964874285e-155,-5.61129547584177e-156,-4.623472679275693e-156,-5.295746062303389e-155,9.776260049893585e-155,-1.1901065851992743e-154,1.1159669441663705e-154,-7.731859118159696e-155,-7.654509283690348e-155,2.3469598914898194e-155,3.52324113515284e-155,1.1477858497611792e-154,-1.1715884078799182e-154,9.133140874062998e-155,-4.352706550875269e-155,-1.4735163497220477e-155,-1.0696068547502722e-154,1.1951762624874127e-154,-1.0329440814928025e-154,6.220977419602096e-155,-6.166221865622829e-156,-5.18271032768389e-156,-5.221114690241893e-155,9.700917053503797e-155,1.117069246128252e-154,-7.819291975627651e-155,2.5868518750409444e-155,3.2660479478485898e-155,-8.330012268045226e-155,1.1386216184799516e-154,1.1412468830742372e-154,-1.1677853676999182e-154,9.131609090350037e-155,-4.388011856467627e-155,6.786995083982304e-155,-1.0624735713958808e-154,1.1902799468733254e-154,6.328435216008551e-155,-7.695617526963737e-156,-4.9721160384128704e-155,9.51417466569946e-155,-1.1763620242101715e-154,1.117990408478117e-154,-7.90481734845702e-155,2.728051034162223e-155,3.103214050556214e-155,2.5361455189371976e-155,3.290138410772589e-155,-8.321720314754093e-155,1.1347568551247704e-154,-4.60564346603057e-155,-1.1531787132967847e-155,6.6318194156988856e-155,-1.051138630016939e-154,1.1858556472561751e-154,-1.0350108972759201e-154,6.350472613277889e-155,-8.236840282168157e-156,-4.898974381406111e-155,9.439650481921662e-155,-1.1705668948049002e-154,1.1152473619081389e-154,2.8473669650072487e-155,2.7724680803603566e-155,3.034783159587599e-155,-8.108837175565596e-155,1.1228405205495738e-154,-1.1643289902903189e-154,9.254792923876018e-155,-4.639191035075071e-155,-1.0913023457112791e-155,1.1815096896806723e-154,-1.0440858921892674e-154,1.180976407424371e-154,-1.0334788832645365e-154,-4.650565982655436e-155,9.250394492699944e-155,-1.1621115322029546e-154,1.119293624871713e-154,-8.070167555743672e-155,3.0058140434974843e-155,2.779999076082526e-155,2.816498664512873e-155,2.966903314580281e-155,-8.033480836124972e-155,1.116373310583071e-154,-1.1604874072675862e-154,9.251867219775782e-155,6.322092280230764e-155,-1.0282518268264291e-154,1.1765632063211632e-154,-1.041544073870695e-154,6.558243665896452e-155,-1.1237772477561977e-155,-4.578887469763226e-155,9.176677145870694e-155,-1.1563120572942098e-154,1.1164623431453681e-154,-8.078333928421013e-155,3.0484629650509296e-155,-7.933453671381539e-155,-7.819093635657486e-155,1.1040303372877866e-154,-1.1602084815735403e-154,9.370334760526671e-155,-4.883570583959717e-155,-7.770122374192863e-156,6.248079907402048e-155,-1.0212514296556241e-154,1.1716498446205333e-154,-1.0398997999643078e-154,6.578427159821129e-155,-1.1756953451055221e-155,-4.507767895317418e-155,1.1198852362280634e-154,-8.227952905040085e-155,3.2773875821662713e-155,-8.086380399473957e-155,3.090742349380164e-155,2.6468706373941133e-155,-7.744765755923337e-155,1.0975860196192467e-154,-1.1563043964750752e-154,9.366081789681306e-155,-4.915102695192468e-155,-7.173198198824525e-156,6.17463021652749e-155,-1.0473318329784028e-154,6.758735142397018e-155,-1.418520613639381e-155,-4.260931550416684e-155,8.912103423774431e-155,-1.1415627798040104e-154,1.1169678315811576e-154,-8.234642757361697e-155,3.318301588640313e-155,-8.094306214717966e-155,3.13265691578575e-155,2.581091735514847e-155,-1.1554334945783968e-154,9.478292484085482e-155,-5.121155692888184e-155,-4.670890190149965e-156,5.9405027039791994e-155,-9.981365033203889e-155,1.1617413808434883e-154,-1.0455777980450368e-154,6.777318428196449e-155,-1.468722517739167e-155,-4.191229945814971e-155,8.839709408770343e-155,-1.1357984283185843e-154,3.5427591032727277e-155,-8.241220389027767e-155,3.3588619239029136e-155,2.3301065818979656e-155,-7.4556768603242474e-155,1.0784062596717213e-154,-1.1514685941651973e-154,9.472740135570588e-155,-5.151011404902082e-155,-4.0904516324174735e-156,5.868275996749402e-155,-9.912366853127874e-155,1.1568264360147692e-154,-1.7078819438216313e-155,-3.945186761321968e-155,8.646038065998015e-155,-1.1263301701670323e-154,1.1167724806005311e-154,-8.383458680427769e-155,1.1111794830581053e-154,-8.247684923324434e-155,3.3990728951239513e-155,2.2658623111484303e-155,-7.382894973926363e-155,1.0720283796342062e-154,-1.1475268599128055e-154,-1.615837003921136e-156,5.63390642672102e-155,-9.74752456061234e-155,5.796581796169707e-155,-1.0505201566995194e-154,6.968984210838077e-155,-1.7563970811401266e-155,-3.87688197569804e-155,8.574414182235882e-155,-1.1205616418692325e-154,1.1137864773528155e-154,-8.388596577081073e-155,3.6208411269539017e-155,2.0166795875088676e-155,-7.166318260342614e-155,1.0588454940019717e-154,-1.1459897439906188e-154,9.571898914571192e-155,-5.380159939780306e-155,-1.051617663473918e-156,5.562886346219152e-155,-9.679026979656755e-155,1.1463141097848132e-154,-1.0486654097298192e-154,6.9858094275423885e-155,8.378592004275127e-155,-1.1106254969563547e-154,1.1158850089942085e-154,-8.524822278489504e-155,1.1108153542592727e-154,-8.39362841450413e-155,3.659377890141508e-155,1.9539468736475687e-155,-7.094520738639214e-155,1.052489630706922e-154,-1.141988366050713e-154,9.565052320343844e-155,-5.408105324743683e-155,-4.918263053019952e-157,5.4923803434541715e-155,-9.610990670374613e-155,7.153445810247203e-155,-2.03868331246158e-155,-3.5648081443191652e-155,8.30773182698301e-155,-1.1048535954623222e-154,1.1128167759652014e-154,-8.528548429423903e-155,1.1078585612147482e-154,-8.398553246312831e-155,3.697583619027295e-155,1.0389153636224963e-154,-1.1398776928596092e-154,9.663614830179905e-155,-5.602549491751946e-155,1.9427571581851413e-156,5.25855859925852e-155,6.3601913239919125e-158,5.422379286233523e-155,-1.0527745654115876e-154,7.168739885347658e-155,-2.0851576473823565e-155,-3.4983725647246634e-155,8.237354702208477e-155,-1.0991174837886443e-154,1.1097632115029611e-154,-8.532175083766516e-155,3.913552761908684e-155,1.6454175169703605e-155,-6.805973269092511e-155,1.0325819358691603e-154,-1.1358183780649745e-154,9.655525640049506e-155,-5.628889433773814e-155,2.4867421349443223e-156,5.1892271083487445e-155,6.14730027855186e-157,1.1302926970350367e-154,-2.315544206607698e-155,-3.2550944222205217e-155,8.039776536282522e-155,-1.0886857725148142e-154,1.1111657768296155e-154,-1.0934163284065092e-154,1.1067237833965408e-154,-8.535701204570186e-155,3.950125370774792e-155,1.58463294596432e-155,-6.735637812707383e-155,9.747944834911303e-155,-5.818180593748499e-155,4.892112231012358e-156,4.955391903286515e-155,3.0265236998629213e-156,5.120383707508287e-155,-9.308446446026525e-155,7.344514431896075e-155,-2.360399964421918e-155,-3.1900016812997877e-155,7.970142786596053e-155,-1.082946169733924e-154,1.1080318021658184e-154,-8.663363335882208e-155,4.161577526061947e-155,1.3403478296133359e-155,-6.5173620135864325e-155,1.0123171834503408e-154,-1.1290268552600336e-154,9.738638097177965e-155,-5.8429420150297275e-155,5.420513544941927e-156,-5.680818494389773e-155,3.562160498080756e-156,5.052020045680162e-155,-1.0541092458826923e-154,-2.9478283326082905e-155,7.770664244045083e-155,-1.0720698078671215e-154,1.1088423445139936e-154,-1.0772405829119391e-154,1.1049117745704153e-154,-8.665516869396762e-155,4.1965425665786786e-155,1.2810177887397565e-155,-6.447977277315576e-155,1.006045490251163e-154,-1.124932383035446e-154,9.729314256355341e-155,-5.867463061356296e-155,5.944862034824398e-156,4.819525634822422e-155,-9.071030495080359e-155,1.1136890839596575e-154,-2.6302026051682084e-155,-2.884063177525478e-155,7.701770698219615e-155,-1.0663276791428209e-154,7.832243825605529e-155,-1.0715682398178633e-154,1.1018051944064521e-154,1.0388126317792277e-155,-6.2287980127678665e-155,9.917074191173798e-155,-1.1216238750526016e-154,9.814446420103404e-155,-6.050262013093868e-155,8.308901673667344e-156,-5.891745457633878e-155,6.465212267868076e-156,4.75229288782841e-155,-9.004807478055327e-155,7.52530342992312e-155,-2.673114190049706e-155,-1.0550174841720076e-154,7.633322320652072e-155,-1.060618673707548e-154,1.1024313593296409e-154,-8.788038028884883e-155,4.436813372261394e-155,9.809197305740592e-156,-6.160357691111975e-155,9.854581519026953e-155,-1.117474461514435e-154,9.803932655959173e-155,-6.073240195060444e-155,8.818016899602999e-156,4.519908417519707e-155,-8.831279964748387e-155,1.1014724141689929e-154,-1.0545382475686593e-154,-2.580647226040073e-155,7.432356995550014e-155,-1.049273844228746e-154,7.565310976685273e-155,-1.0549420545177662e-154,1.0992460276011033e-154,-8.788754300084277e-155,4.469904487499862e-155,9.234477039509148e-156,-1.1136196378582181e-154,9.883008009194952e-155,-6.25084832930738e-155,9.793402598557211e-155,-6.095989444734273e-155,9.323272152601805e-156,4.4537974005208705e-155,-8.765520618740258e-155,1.0965158107510474e-154,-2.935877140971554e-155,-2.5186328828328147e-155,7.364633559919583e-155,-1.0435624802382632e-154,1.0992914716497623e-154,-8.903302969400703e-155,4.6709157402432495e-155,6.844158659683609e-156,-5.872892608838924e-155,9.645386909992247e-155,-1.1094170206115755e-154,9.871327905472689e-155,-6.27230771369501e-155,9.782853898451217e-155,-6.118511242628534e-155,9.824716860171982e-156,4.388128889400087e-155,-1.0563177041148975e-154,7.695932211994345e-155,7.162021594329866e-155,-2.457049164735105e-155,7.297334455071565e-155,-1.0378826885497566e-154,1.096029393257643e-154,-8.902701726652792e-155,4.702457530546168e-155,6.283510642700144e-156,-5.80582746368107e-155,9.583485122322008e-155,-6.444700039125063e-155,9.85963453849527e-155,-6.293547324980781e-155,1.213572175603419e-155,4.156639232761396e-155,-8.524026144028255e-155,1.0837466470058148e-154,-1.054075538530465e-154,-2.219117791412094e-155,7.095022639177693e-155,-2.3958897330072985e-155,7.2304521880838055e-155,-1.0322337851832878e-154,4.898827633701338e-155,3.9158393825471797e-156,-5.58569673837827e-155,9.432995068175902e-155,-1.1007703942924364e-154,9.931557723671147e-155,-6.4646637500270025e-155,9.847925573286611e-155,-6.314568457471875e-155,1.2622378203309045e-155,4.0920710061969184e-155,-8.459120559823266e-155,1.0787859811645554e-154,-3.232631179566402e-155,-2.1588077946277608e-155,7.028435985406097e-155,-1.0204022037083521e-154,1.0921643297879565e-154,-9.009455430739941e-155,4.9288415486979115e-155,3.369121963392535e-156,-5.519553910259816e-155,9.371322723880324e-155,-1.0965356303882593e-154,9.918723937693908e-155,-1.0969251005234265e-154,1.490193966380885e-155,3.860924927214672e-155,-8.280449296185419e-155,1.0704669326448472e-154,-1.0550674123254466e-154,7.856513822567295e-155,6.824611549811324e-155,-2.0989090287960384e-155,6.962254531859651e-155,-1.014750532534898e-154,1.088840017117435e-154,-9.007479247987396e-155,-5.298885779535389e-155,9.217531295506234e-155,-1.0915450480604164e-154,9.984680838701535e-155,-1.0923196587370872e-154,9.9058774096042e-155,-6.503958903653899e-155,1.5373969407871303e-155,3.797450685636763e-155,-8.21600539707916e-155,1.065478114229681e-154,-1.0527350543741495e-154,7.865356541288377e-155,6.758738379557504e-155,-1.0025127951983462e-154,1.0876600020098193e-154,-9.109054613760159e-155,5.149033804720147e-155,4.921031875220256e-157,-5.233662711665144e-155,9.15609701451833e-155,-1.0872602266650864e-154,9.970729100953706e-155,-1.0881219732023255e-154,9.893015892627828e-155,-6.52329257109382e-155,-8.034916487938087e-155,1.0566881731650735e-154,-1.0553771718750494e-154,7.999691114986656e-155,-3.520518366510991e-155,-1.8046036895487498e-155,6.6932593838463656e-155,-9.968595816658553e-155,1.0842627808121155e-154,-9.105812036534987e-155,5.177282573517584e-155,-3.7046995575648205e-158,-5.168844371717863e-155,1.0030757104108186e-154,-1.0829938675013695e-154,9.956767308193666e-155,-6.686679584410026e-155,1.8078858466017412e-155,3.5043761050132927e-155,-7.970939991155613e-155,1.0516727440945799e-154,-1.0529513211975316e-154,8.007156047267547e-155,-3.557888508757449e-155,-1.7463496327085905e-155,6.628168010904502e-155,-9.201539508733967e-155,5.3630120602090225e-155,-2.346751970079582e-156,-4.948271239917661e-155,8.93793505207587e-155,-1.0774184800766953e-154,9.034227149353582e-155,-1.0787454833672571e-154,9.942793234966133e-155,-6.704563878246802e-155,1.8533003065422886e-155,3.4423890251762134e-155,-7.907323371190334e-155,8.13588054785274e-155,-3.763685181647657e-155,-1.513069054926637e-155,6.423591240905616e-155,-9.78573294215004e-155,1.0790575580882624e-154,-9.197052726822288e-155,5.389782143702396e-155,-2.8623385325283117e-156,-4.884359877239029e-155,8.877074923900585e-155,-1.0731035273985202e-154,1.000065439515205e-154,-6.8627283023099175e-155,2.0736415195353255e-155,3.212955920020019e-155,-7.72405242952648e-155,1.0373815319257937e-154,-1.0524953095830493e-154,8.141989244410138e-155,-3.7995840189475265e-155,-1.456046434048974e-155,6.359194584939876e-155,-9.729479954930845e-155,1.0756012626084613e-154,-5.146650074907123e-156,-4.663497491725662e-155,8.71696502380255e-155,-1.0670211349367823e-154,8.816535691102007e-155,-1.0688062543523453e-154,9.98558956101268e-155,-6.879183432878289e-155,2.1176333285820375e-155,3.152041860050454e-155,-7.660900629404371e-155,1.0323640401601368e-154,-1.049983428239285e-154,8.147962394870717e-155,-3.835191281794852e-155,-9.599041548408097e-155,1.0732337773462567e-154,-9.281242272263195e-155,5.596064619244678e-155,-5.648780197006421e-156,-4.600492730398407e-155,8.65635408057741e-155,-1.0626593915176007e-154,8.7563114615469e-155,-1.0645262047876807e-154,9.970512870498209e-155,2.923299110084835e-155,-7.475471729605703e-155,1.0226162704193836e-154,-1.0513748567220006e-154,8.269876019478413e-155,-4.03570527422468e-155,8.153799808682372e-155,6.0896770099523975e-155,-9.542792667694906e-155,1.069708419709352e-154,-9.275463926109157e-155,5.621135790584499e-155,8.49331617364489e-155,-4.537865511498298e-155,8.596056665898148e-155,-1.058315047705627e-154,1.0021465024676217e-154,-7.047149391878412e-155,2.3771834289285396e-155,2.863454874928075e-155,-7.41279209599331e-155,1.0175748794706197e-154,-1.0487737688975309e-154,8.274519586092462e-155,-4.069866371468696e-155,-1.1131706984109425e-155,1.0668010093692068e-154,-9.358422949890217e-155,5.796108623626218e-155,-8.395573027913066e-156,-4.317362089304579e-155,8.432964899780382e-155,-4.4756103407580145e-155,8.536067159845243e-155,-1.0539876642933637e-154,1.000532152896421e-154,-7.062009090937811e-155,2.4194482896245047e-155,1.007388881915539e-154,-1.0495979446830507e-154,8.390837514409546e-155,-4.26620961415626e-155,8.279032971776218e-155,-4.10374752292854e-155,-9.352416525092001e-155,1.0632085692571252e-154,-9.351447420183654e-155,5.819745300059403e-155,-8.88094146975377e-156,-4.255632130281961e-155,8.372920170947166e-155,-1.0472827639302903e-154,1.0050481228485744e-154,-7.208461073564694e-155,2.6318877836151533e-155,2.5767378993801622e-155,-7.1631281217876445e-155,1.0023252221359066e-154,-1.0469097311836086e-154,8.394171767360469e-155,-1.0435866816892568e-154,8.283415925226212e-155,-4.137351127241829e-155,-9.296450328599002e-155,5.989893833792118e-155,-1.110192236545685e-155,-4.0350874095160935e-155,8.207038017638748e-155,-4.194264870613553e-155,8.31317662583388e-155,-1.0429098883719166e-154,1.0033292059606735e-154,-7.221936880262655e-155,2.672764480037107e-155,2.5183232724960315e-155,-7.101257616567157e-155,9.97283222514276e-155,-1.044226718315345e-154,8.39738112176252e-155,-4.331397694112001e-155,-7.760187971366742e-156,1.0561114264012808e-154,-9.420486589408577e-155,6.012112864763332e-155,-1.157412155673584e-155,-3.974256123394141e-155,8.147257231707068e-155,-4.13325524060075e-155,8.253729043054016e-155,-7.363119086169431e-155,2.881684316146079e-155,2.2920007381344194e-155,-6.912039762958645e-155,9.866271376416841e-155,-1.0443994361324261e-154,8.506941058212344e-155,-1.0415486285205709e-154,8.400465261729199e-155,-4.363586801692809e-155,-9.102539246067988e-155,1.0524650694111098e-154,-9.412271968409124e-155,-3.7537883184190476e-155,-1.2043046016843664e-155,-3.91377866527979e-155,8.087771255981492e-155,-1.0313039260728081e-154,1.0054487383457229e-154,-7.375229276301777e-155,2.9211840483748377e-155,2.2346423540785723e-155,-6.850650245833548e-155,9.815641452605574e-155,-1.041631441246011e-154,8.5088660061745e-155,-4.55341727024831e-155,-4.969780436873482e-156,5.425968572312898e-155,-9.48262637244332e-155,6.198218860491766e-155,-1.4226151214230727e-155,-3.693857657178107e-155,-1.2508730364422608e-155,-3.853650232659015e-155,8.028575107349722e-155,-1.0269034903044477e-154,1.0036266650996435e-154,-7.3871668948060565e-155,-6.659658690552437e-155,9.704928196331124e-155,-1.0412511619865305e-154,9.765220002223671e-155,-1.0388684507143573e-154,8.510670713149266e-155,-4.584205297766716e-155,-4.4463964033106635e-156,1.0447172938100113e-154,-9.473259508102798e-155,6.218821615136961e-155,-1.4682076083322676e-155,-3.634272402602541e-155,7.85998327853459e-155,-1.019180965755825e-154,1.0068972043150753e-154,-7.521887897070612e-155,3.1646452796294763e-155,1.9530500125191528e-155,-6.5987592738757915e-155,9.654105244640152e-155,-1.0384002443823176e-154,9.715002752636773e-155,-1.0361102016031826e-154,8.512354821757613e-155,5.156980861374417e-155,-8.849561173324458e-155,6.378045035737623e-155,-1.6836243508809965e-155,-3.414556900565555e-155,-1.513484639659183e-155,-3.5750280044384735e-155,7.80105084067908e-155,-1.01473854370498e-154,1.0049749498421279e-154,-7.532483654906835e-155,3.2024903921709317e-155,1.8970872464700948e-155,-1.0374733478551127e-154,9.603487409443852e-155,-1.0355544109267055e-154,8.61405529456247e-155,-4.7991644513006195e-155,-1.699181055087675e-156,5.0964015580501226e-155,-9.527414412124108e-155,6.397269099208061e-155,-1.7279241163836437e-155,6.259386743447272e-155,-1.558449382597776e-155,-3.51612002578698e-155,1.0076812258610506e-154,-7.661915928608886e-155,3.403087540974058e-155,1.6736560906306427e-155,-6.34571727068103e-155,9.488346926667115e-155,-1.0345415608058224e-154,9.553070589185764e-155,-1.0327134055703498e-154,8.614483744070994e-155,-4.828312440132612e-155,-1.1908778287703476e-156,5.036145363497372e-155,-1.9403620604878052e-155,6.41628587982724e-155,-1.77191656696107e-155,-3.2975096307426108e-155,7.571289537787235e-155,-1.0020698098336099e-154,1.0056608436801806e-154,-7.67118708637096e-155,3.4395843213715373e-155,1.618740246003106e-155,-6.2856211349567205e-155,9.437549975668829e-155,-6.417902869388272e-155,8.710643726732566e-155,-5.008423449882128e-155,1.0157248145711293e-156,4.828087134019558e-155,-8.593638389485991e-155,6.569435231520987e-155,-1.983375897667416e-155,6.435096390897285e-155,-1.8156046721949799e-155,-3.239481436577393e-155,7.51290747547174e-155,-9.976026091645307e-155,3.6364514057780133e-155,1.3965699757089339e-155,-6.091657212344825e-155,9.318490996066835e-155,-6.225824258025075e-155,9.386951038750151e-155,-1.02869322670126e-154,8.709835127494291e-155,-5.036202902837483e-155,1.5123284423395513e-156,4.76852031506446e-155,-8.538519524024377e-155,6.587094810809887e-155,-2.0260901717960885e-155,-3.0212159878228173e-155,7.339425160302419e-155,-9.889087626988483e-155,1.00569113065109e-154,-7.803281757108654e-155,3.671609269341991e-155,1.3427014753606153e-155,-6.032064455872675e-155,9.267532361726683e-155,-6.1663223150476955e-155,9.336546279945986e-155,-1.0257761879528162e-154,3.6973639627563206e-156,4.559885669769269e-155,-8.38999156226901e-155,1.0198772939121172e-154,-9.551400096770475e-155,6.604554270562576e-155,-2.0685076671845543e-155,-2.9640716279809526e-155,7.2813272404421305e-155,-9.844031863395314e-155,1.0035744288471237e-154,-7.811089784460525e-155,3.7064961636229158e-155,9.144663085917885e-155,-5.972765132319985e-155,9.216768918831755e-155,-1.0240582572693515e-154,8.798435269457565e-155,-5.2383657306063626e-155,4.182292604527715e-156,4.501015765223631e-155,-8.334931223764063e-155,1.0160783628459195e-154,-9.539624076872544e-155,6.621814500534506e-155,7.105592265787738e-155,-9.752670119309045e-155,1.0050727739890626e-154,-7.928774032866163e-155,3.898506787194645e-155,1.0690801151231855e-155,-5.7776334705512005e-155,1.2359237140357426e-155,-5.913755120321276e-155,9.16619698412667e-155,-1.0210626540950308e-154,8.796300465422222e-155,-5.264551895158218e-155,-8.183349797014901e-155,1.01031930032789e-154,-9.589860684921331e-155,6.767744334319826e-155,-2.3170805075128965e-155,-2.6900115070609696e-155,7.047791881433225e-155,-9.707249757870476e-155,1.0028622229018198e-154,-7.9352962421105e-155,3.932070741034864e-155,1.0165736124290003e-155,-5.71884245467591e-155,9.042650168941375e-155,-1.0188172608077263e-154,8.880312359895324e-155,-5.434762858565179e-155,6.818063132907332e-156,4.233761018071933e-155,-8.12836389477967e-155,1.006463017100124e-154,-9.577001786922103e-155,6.783673675583344e-155,-2.357946060718469e-155,-2.634066617094937e-155,6.990251881625743e-155,-8.047672157771813e-155,4.120219905522321e-155,7.97984621747341e-156,-5.522461977297899e-155,9.64377603943347e-156,-5.660335419218123e-155,8.991928984473565e-155,-1.0157451402594311e-154,8.876981248644508e-155,-5.45961023394218e-155,7.28832316693349e-156,4.175895727127647e-155,-8.073603900636144e-155,1.0026164895776655e-154,-2.5612466222198158e-155,-2.4174215336283167e-155,6.812436706242829e-155,-9.565797304443275e-155,1.0015105429215952e-154,-8.052924872584377e-155,4.1524693801408584e-155,7.465206294980654e-156,-5.464190275709855e-155,9.124887977280772e-156,-5.602108532734629e-155,8.94139335694753e-155,-5.625357937174687e-155,9.418699123384045e-156,3.966885225427669e-155,-7.918950612294926e-155,9.963092504413297e-155,-9.607755074493806e-155,6.9392647106886496e-155,-2.6008593523948917e-155,-2.362363272688824e-155,6.755203544078614e-155,-9.520177061338595e-155,9.992081556038763e-155,5.295226220255917e-156,4.184463253768866e-155,6.953605827948316e-156,-5.406197499542465e-155,8.813869439437957e-155,-1.0098325829949369e-154,8.950987061005668e-155,-5.648877581384286e-155,9.877390163222556e-156,3.9097271503351165e-155,-7.864277849887297e-155,9.924073736117795e-155,-9.593781533329724e-155,-2.146421620468849e-155,6.575397455091791e-155,-9.419793341906978e-155,9.99526716802896e-155,-8.163985718159787e-155,4.367636455330403e-155,4.791028516951907e-156,4.216203348761017e-155,6.44501367426539e-156,-5.348479996069782e-155,8.763200416638722e-155,-1.0066907230313091e-154,8.946377581172939e-155,3.7005172950404243e-155,-7.706825189869315e-155,9.856277082722126e-155,-9.63193736112635e-155,9.885149772629717e-155,-2.839295561135499e-155,-2.092255242481781e-155,6.518485188710788e-155,-9.373845903414128e-155,9.971347193254128e-155,-8.167844253761788e-155,4.398330255961041e-155,4.289807854589848e-156,-5.151475721044313e-155,8.632146540220843e-155,-1.0033340935041932e-154,9.018349961000707e-155,-5.8323192041139624e-155,1.2430406089175199e-155,3.6440750692729003e-155,-7.652256110213365e-155,9.816725112787013e-155,-7.755586282877181e-155,9.846318078915536e-155,-2.8773886186852257e-155,-9.26935798974435e-155,9.969182618110604e-155,-8.268490873052132e-155,4.57751805766821e-155,2.144272016905064e-156,4.428776335620785e-155,3.791534769217333e-156,-5.094279348441076e-155,8.581362462315344e-155,-1.0001199121145168e-154,9.012583744647557e-155,-5.854304651569781e-155,1.2874681655713357e-155,9.744291891474001e-155,-7.597903196190114e-155,9.777267942418763e-155,-9.601858492641054e-155,-1.8238620083410435e-155,6.280233090382075e-155,-9.223102912456481e-155,9.94438669550757e-155,-8.271116589758224e-155,4.606919549554598e-155,1.653453438733213e-156,4.4589763557104264e-155,3.2961804794206573e-156,-9.962589578787673e-155,9.079104097147781e-155,-6.009902297418535e-155,1.4946452377016144e-155,3.379068252691259e-155,-7.437673319755363e-155,9.704227071789078e-155,-7.543763185525752e-155,9.737903120254654e-155,-9.586744055197227e-155,-1.7708832137547015e-155,6.223900729248747e-155,-9.176988166317943e-155,4.782062083823219e-155,-8.273605899469989e-155,4.636079126185581e-155,1.1655244972910887e-156,-4.839641114779447e-155,8.396008789119006e-155,-9.929745079845697e-155,9.072198784219438e-155,-6.030587049141098e-155,1.537924149972468e-155,3.3236312335651892e-155,-7.383437907164933e-155,9.664257102550952e-155,-9.617483966753916e-155,7.255103018617281e-155,6.040583794036764e-155,-9.068069547695111e-155,9.911277150867777e-155,-8.367863239750312e-155,4.8101788857872015e-155,-8.275958796723423e-155,4.6649983351494186e-155,6.804579532220694e-157,-4.783240820328891e-155,8.34530450638539e-155,-9.89694788869908e-155,1.7424624430387839e-155,3.1148350190616636e-155,-7.220664722866929e-155,3.2684716146348426e-155,-7.329412757441154e-155,9.62437961385828e-155,-9.601353201148242e-155,-1.50522122479062e-155,5.9845974478824145e-155,-9.0216659144591e-155,9.885629506114696e-155,-8.36913979114505e-155,4.838059343095414e-155,-1.4319552108985145e-156,-4.584699707105001e-155,8.207269625306468e-155,-9.852639753565566e-155,9.125258943716141e-155,-6.200990500037379e-155,1.7845933603860107e-155,3.060126977854301e-155,-7.166563709159158e-155,3.213586341281397e-155,-7.2755948217397765e-155,9.58459229692166e-155,-3.373429803719051e-155,-8.908868479865733e-155,9.872097581612287e-155,-8.458100521992612e-155,5.0080579386617875e-155,-8.370284150494957e-155,4.865704896962648e-155,-1.9067047982218553e-156,-4.528840533599496e-155,8.156485645088753e-155,-9.819161522646887e-155,9.117142630427375e-155,-6.220179267107611e-155,-7.001366109094193e-155,3.0056917912166807e-155,-7.112670482170124e-155,9.50585725240433e-155,-9.60956156817184e-155,7.399513340955584e-155,5.744048429224467e-155,-8.862195791618233e-155,9.845616221522593e-155,-8.458179922279886e-155,9.834340348035276e-155,-8.371296278280402e-155,4.893116959464671e-155,8.015276083055435e-155,-9.769979538072057e-155,9.17180266032139e-155,-6.365486211338034e-155,2.027386709297996e-155,2.7975334552031477e-155,-6.9474165019442186e-155,2.9515265516614023e-155,-7.058982120452168e-155,9.465578058759041e-155,-9.592387810423538e-155,7.4095711259871585e-155,9.826928949531251e-155,-8.541846993987647e-155,9.819139328884537e-155,-8.458131216723414e-155,5.0610455375097526e-155,-4.4642569245076165e-156,-4.274283704042163e-155,7.964431196613049e-155,-9.735840898817465e-155,9.162585888707873e-155,-6.383399938904831e-155,2.068103340286093e-155,2.7438322910561407e-155,-6.893672362302013e-155,9.382447229858909e-155,-9.611428733782141e-155,7.526166800150237e-155,-3.6294351599876445e-155,-8.698701723792849e-155,9.79963406502152e-155,-8.54074483283449e-155,9.792665451841929e-155,-8.457954329650242e-155,5.0871961748893666e-155,-4.925925994145162e-156,-4.219230404421791e-155,9.211870596153347e-155,-6.524047567202864e-155,2.266216714169785e-155,2.535977930013606e-155,2.108555213588787e-155,2.690396890313172e-155,-6.840130890789581e-155,9.34169680440343e-155,-9.593279470932901e-155,7.534980171967751e-155,-3.6630758956203853e-155,-8.651915375759025e-155,9.772345557796646e-155,-8.539518528729332e-155,5.250971812831421e-155,-6.991160948284661e-156,-4.0197043770015256e-155,7.769273192319525e-155,-9.647084206296228e-155,9.201570865309399e-155,-6.540696338060513e-155,2.305791399038803e-155,2.4830204695893955e-155,2.148744351923713e-155,2.6372245494055163e-155,-6.786789355886046e-155,7.646549552444134e-155,-3.845581015896659e-155,-8.801671038281506e-156,9.747765985199692e-155,-8.605262120272518e-155,9.745062009779591e-155,-8.538167973666992e-155,5.275867856618563e-155,-7.442499488010661e-156,-3.9652136492194785e-155,7.718555488148858e-155,-9.612354656741062e-155,9.191187884043295e-155,2.2755869384230823e-155,2.3451062759959915e-155,2.4303247916418283e-155,-6.619177675321189e-155,9.213061270386832e-155,-9.587910669156878e-155,7.654131248430755e-155,-3.8780118980068655e-155,-8.30710100547359e-156,9.71968608597609e-155,-8.558739628018127e-155,9.717782041725037e-155,-9.48639360192784e-156,-3.7652362280284515e-155,7.571144435053399e-155,-9.55299136228424e-155,9.234140504332335e-155,-6.692044080458397e-155,2.539430504854713e-155,2.2233829308227042e-155,2.384163254118434e-155,2.3778883219369096e-155,-6.5659984912182344e-155,9.171949413749615e-155,-9.568763713743349e-155,-6.225464752192479e-156,5.150726848370132e-155,-8.437409384583503e-155,9.691613075387817e-155,-8.611958092704264e-155,5.459085678866089e-155,-9.92736781771322e-156,-3.7113208368332655e-155,7.520402463395595e-155,-9.517644024223246e-155,9.222695365093242e-155,-6.7072474242060205e-155,2.5776083735047135e-155,2.1714369160239215e-155,-6.396259397943119e-155,9.079785639186583e-155,-9.57634532143189e-155,7.767022596150318e-155,-4.088133081818838e-155,-5.739927162096787e-156,5.096546885275862e-155,-8.390656439683477e-155,9.66354560725342e-155,-8.609328683517456e-155,5.48251648100211e-155,-1.0365723605696238e-155,-9.453663993121793e-155,9.260340040543072e-155,-6.837421103051769e-155,2.7689366120522447e-155,-6.722260938051369e-155,2.615532987494595e-155,2.119746442736639e-155,-6.3432601674174285e-155,9.038244532071962e-155,-9.55626361571607e-155,7.773228106178576e-155,-4.119119520915988e-155,-8.2658242816194e-155,9.632403665586333e-155,-8.67934794698405e-155,5.636805535865752e-155,-1.2379522551815744e-155,-3.457685242586142e-155,7.319431337897969e-155,-9.417719700437283e-155,9.247850247259244e-155,-6.851384075925588e-155,2.805977456942342e-155,-6.737085326932147e-155,2.6532061107907133e-155,8.941985506407524e-155,-9.558649513506518e-155,7.873654859781743e-155,-4.293374492753058e-155,-3.1960054856098087e-156,4.85428351240114e-155,-8.218861195151877e-155,9.603568958210776e-155,-8.675579351519251e-155,5.658999941926978e-155,-1.2807522937246455e-155,-3.4045980224321603e-155,7.268848849162831e-155,-6.976807715920625e-155,2.99422754200762e-155,-6.865161576572165e-155,2.8427695118385924e-155,1.862924742482373e-155,-6.11871167718432e-155,8.900036045894403e-155,-9.537652151616795e-155,7.87865831478967e-155,-4.323162334010158e-155,-2.7221418628332905e-156,4.800720452230167e-155,-8.172026151945433e-155,5.808985602166361e-155,-1.4797971307177696e-155,-3.2044395995458434e-155,7.1157763472482316e-155,-9.312685068158753e-155,9.26670014079514e-155,-6.989540314171124e-155,9.22263814193669e-155,-6.8787542508723345e-155,2.8793144423652295e-155,1.8122401821294777e-155,-6.066102222319919e-155,8.858174854044019e-155,-4.493673303100076e-155,-6.764719927037854e-157,4.611368286028539e-155,-8.043481263935444e-155,9.537939137905097e-155,-8.735470808164908e-155,5.829950335393187e-155,-1.5215580637606062e-155,-3.151950520828486e-155,7.065207021691696e-155,-9.276215576306884e-155,9.253109069401944e-155,-7.0020916669975985e-155,3.0657907022305996e-155,1.6075480992853021e-155,-5.8924905535814855e-155,8.757440994080848e-155,-9.512997655897886e-155,7.977845277435828e-155,-4.522265795932886e-155,-2.1174101161701926e-157,4.558216376624496e-155,-7.996456338139614e-155,9.508365720691117e-155,-8.730464994231003e-155,-2.951716023149925e-155,6.909572321252241e-155,-9.202645174041393e-155,9.279294989563822e-155,-7.121698941105969e-155,9.239443266450045e-155,-7.014462365587032e-155,3.1012071157209785e-155,1.5576266167092887e-155,-5.840094939758764e-155,8.715193061955369e-155,-9.491069575560118e-155,7.981510397759826e-155,4.367937975229845e-155,2.504744920620674e-157,4.505279084481958e-155,-8.789031235920045e-155,5.995328243640873e-155,-1.7588921521470146e-155,-2.8998380811476605e-155,6.859035488151712e-155,-9.165621906848499e-155,9.264697565201188e-155,-7.1330340922315435e-155,9.225702214649542e-155,-7.02665299332061e-155,-5.664734504701314e-155,8.610577753315777e-155,-9.48237064224569e-155,8.070794648831421e-155,-4.716369338611571e-155,2.2730793431335125e-156,4.315212853686432e-155,7.101941982231723e-157,4.452554194611534e-155,-8.782920601013994e-155,6.0148667088650156e-155,-1.7993627152812439e-155,-2.848192443169086e-155,9.285687079151122e-155,-9.128649304866091e-155,9.25002848476893e-155,-7.144192644400897e-155,3.318804056667488e-155,1.3045922422914165e-155,-5.612570562335363e-155,8.567964153522541e-155,-9.45956790430905e-155,8.073287121816254e-155,-4.743546154279381e-155,2.726126808732762e-156,4.262700400035327e-155,-7.770382357509847e-155,6.155096659366301e-155,-1.992658814445763e-155,-2.648392109491647e-155,6.650469645633482e-155,-9.050150728335924e-155,9.270100996172817e-155,-9.091725919060203e-155,9.235287229423152e-155,-7.155175131656492e-155,3.3528542837316762e-155,1.2556855740399178e-155,-9.44584379769143e-155,8.15751461046703e-155,-4.905414665780432e-155,4.731211959650317e-156,4.071846349742588e-155,3.176712147643304e-156,4.2103984954240985e-155,-7.72343816720274e-155,6.173423196987833e-155,-2.03208699535122e-155,-2.5973681247433544e-155,6.600144902000457e-155,-9.012646794099935e-155,9.254446284198138e-155,-7.26793058194043e-155,3.5320272629342878e-155,1.0532597587682904e-155,-5.383666915621089e-155,8.41660786255069e-155,-9.422185727943913e-155,8.158847289464557e-155,-4.931406871444829e-155,5.175020467525931e-156,-4.7972335038038075e-155,3.6248536654400416e-156,4.158305070106845e-155,-2.2227641497692515e-155,-2.397743228358868e-155,6.439645357024388e-155,-8.929910399870193e-155,9.269374102152691e-155,-8.975193493964424e-155,9.23872242447996e-155,-7.277714762390481e-155,3.5649523759985803e-155,1.0051338573860275e-155,-5.3319385838396925e-155,8.373738468743852e-155,-9.39849771024771e-155,7.161565013805959e-156,-4.957180541220092e-155,5.616399144033496e-156,3.9679114315547335e-155,-7.540828668861787e-155,6.326342524801501e-155,-2.261146429925445e-155,-2.3473539668374172e-155,6.389391317241013e-155,-8.891896301739697e-155,6.499968365905218e-155,-8.937789461783953e-155,9.222928916304926e-155,8.037506694231612e-156,-5.153521855506375e-155,8.26124517355657e-155,-9.378998001916274e-155,8.238201762796288e-155,-5.1141568014748956e-155,7.596064475793223e-156,-4.982736755664733e-155,6.055365397810478e-156,3.916255208155284e-155,-7.493858467547845e-155,6.343269402924656e-155,6.2266988898081816e-155,-8.805010849649124e-155,6.3392951068682355e-155,-8.853934278303385e-155,9.236062771266313e-155,-7.394260071871951e-155,3.772600675664758e-155,7.564158384364379e-156,-5.102059809963969e-155,8.218053278826418e-155,-9.354476623377296e-155,8.238249923027264e-155,-5.1387530807143905e-155,8.028165115482664e-156,3.725229026070778e-155,-7.355084184632053e-155,9.213011869807775e-155,-2.4864491397447336e-155,-2.098279677067077e-155,6.176535030710002e-155,-8.766507829788085e-155,6.289354897875797e-155,-8.816023007302007e-155,9.219307363366483e-155,-7.402687998129715e-155,3.804171885235046e-155,8.101998276216362e-155,-9.330081839037655e-155,8.311363994324509e-155,-5.29174249541485e-155,8.23816050857399e-155,-5.163135663734719e-155,8.457883490818038e-156,3.674025941438811e-155,-7.307986416497146e-155,9.181362245794919e-155,-2.5235465640122245e-155,-2.0487615892214543e-155,6.126528623328574e-155,-8.72805834840216e-155,9.227365614092113e-155,-7.504801853487099e-155,3.975725645008137e-155,5.096516627230449e-156,-4.871095352228032e-155,8.05850516521155e-155,-9.304746622361529e-155,8.31028201024491e-155,-5.315164808929199e-155,8.237933653147947e-155,-5.187305549145602e-155,-7.1663357718223906e-155,9.123696188535642e-155,-8.883750182745992e-155,6.504867949953151e-155,-2.560409865670733e-155,-1.99946513182873e-155,6.076677912546813e-155,-7.603083866567121e-155,6.1899353909856315e-155,3.1068227095979364e-156,9.185594654307755e-155,7.938990517911609e-155,3.866633483171726e-155,8.378350045962372e-155,-5.464112953576435e-155,8.309065975557923e-155,-5.3383770801839325e-155,1.0831335545478884e-155,3.4317527569063824e-155,-7.119131229134872e-155,-1.6518720711710195e-155,-8.874117956338748e-155,-1.8014145792598486e-155,-2.597040440878876e-155,-8.597677309732469e-155,6.0269811854361e-155,-7.609333537020604e-155,6.1404526529986975e-155,2.649601190567823e-156,9.168636441115997e-155,7.8952175227992e-155,-9.249387078451827e-155,8.376151125559798e-155,3.0974649438466904e-155,8.307715999979439e-155,8.996949450131494e-155,1.1249396770544456e-155,6.75097132456043e-155,-7.072048329261669e-155,-1.603464736856989e-155,-8.864385152345267e-155,-1.7527748286659081e-155,-2.6334396578052466e-155,-8.55881549733362e-155,5.977436770263684e-155,-7.615422576840955e-155,4.203583536036227e-155,2.1946717057615698e-156,-4.588488576664732e-155,7.851534513444076e-155,-5.631219672321655e-155,8.373821615781815e-155,3.0473121961888365e-155,8.306232197070927e-155,8.963357191147627e-155,1.16651352537738e-155,6.764336901694934e-155,-7.025085538468092e-155,-1.5552768945937926e-155,5.695292889077804e-155,-1.7043530776702943e-155,5.812486231892371e-155,-8.520006269567714e-155,9.175378112652596e-155,-7.621351353332054e-155,4.232690507935254e-155,1.7420182664856582e-156,-4.5379740276021545e-155,7.807940111685726e-155,-5.6523049960334486e-155,8.371361604752478e-155,2.9973623273856743e-155,-6.780355053036614e-155,8.929782981359409e-155,-8.928547717378552e-155,6.7775195837927934e-155,-2.995190089501396e-155,-1.5073068949100215e-155,-2.850717247051703e-155,-1.656147674912051e-155,5.763050672655043e-155,-8.4812484543911e-155,9.156629482505506e-155,-7.627120231657997e-155,4.261578030150515e-155,8.493870995924048e-155,-9.161555024460187e-155,8.432446462125098e-155,-5.673187301891732e-155,1.5486839265373491e-155,2.9476136783304124e-155,-6.73299940134322e-155,8.896225855397938e-155,-8.916866704788785e-155,6.790519969131618e-155,-3.0297311535282465e-155,-8.32385372821212e-155,-2.8858494275475907e-155,-7.80035366557702e-155,5.713765760630365e-155,-2.1773711516348967e-156,9.137818689396177e-155,7.557922697544979e-155,4.29024718051833e-155,8.489478516402896e-155,-9.134609233740607e-155,8.428889681932255e-155,-5.6938674241611996e-155,1.5886106554199467e-155,7.0053554761532744e-155,-6.68576638454494e-155,-1.1139407918560199e-155,-8.90509152228834e-155,-1.2631877612265062e-155,-3.064046850287887e-155,-8.28412709833297e-155,-2.9207558141358444e-155,-7.804145361282308e-155,5.6646299670535295e-155,-2.6158195844362925e-156,9.118945308523421e-155,7.513746156802306e-155,-9.094430943073875e-155,7.596761085893688e-155,2.5625095657007635e-155,8.42520585909861e-155,8.75090616173338e-155,1.6283103076544873e-155,7.016383764629192e-155,-6.6386545837654845e-155,-1.0671345249690676e-155,-8.893221984265594e-155,-1.216114984414585e-155,-3.098138389380243e-155,-8.244456260521794e-155,9.124755504602972e-155,-7.8077837344979e-155,4.611214492214966e-155,-3.052035589569655e-156,-4.073166010806581e-155,7.469660397181682e-155,-9.066735633566036e-155,7.55308576595626e-155,2.513609958379162e-155,8.421395072087801e-155,8.71616083730281e-155,1.6677842236899967e-155,7.027236080357975e-155,-3.4138670014848476e-155,6.928747030496777e-155,-3.273343483987938e-155,-1.1692552460260923e-155,5.329163399515188e-155,-8.204840120580047e-155,9.10422056118736e-155,-7.811269092108418e-155,4.637871759467901e-155,-3.486033402735826e-156,-4.0234834292548005e-155,7.425664171689821e-155,-5.986792668338457e-155,2.0013655667432338e-155,2.4649092764860108e-155,-6.3365253336774275e-155,8.681436778603485e-155,-8.935437310365257e-155,7.0379129457685375e-155,-3.446305562495578e-155,6.940225871786748e-155,-3.3063909595449133e-155,-1.1226070715752785e-155,5.280155465426294e-155,-8.165277613775779e-155,9.08362925025184e-155,7.207177097540477e-155,4.6643168592762064e-155,7.295477331230838e-155,-3.973976370542044e-155,8.525683449872477e-155,-6.00516495088203e-155,2.039385806364246e-155,2.416406035241499e-155,-6.289225675505618e-155,8.64673310443579e-155,-8.921683915701508e-155,7.048414877559067e-155,-3.4785243989460604e-155,-7.992880173767479e-155,-3.339218206110374e-155,-7.968859031218804e-155,5.231296880639655e-155,-7.329129133373968e-156,9.062981157549508e-155,7.162592937558081e-155,4.690550741983661e-155,7.251268868829483e-155,-3.9246433861058e-155,8.519853253739282e-155,-6.023342382861601e-155,2.0771838237763297e-155,7.245307007856186e-155,-6.242048526252715e-155,7.15296938393717e-155,-8.90784242005626e-155,-7.338233043825702e-156,-3.510524603315635e-155,-7.95243406688429e-155,-3.371826329826619e-155,-7.970249909193696e-155,5.182586270161416e-155,-7.748513231681583e-156,9.042275884542168e-155,7.1181018705867984e-155,-3.741460161825229e-155,7.207149955697117e-155,2.032289519540925e-155,8.513902657830057e-155,8.483654547465516e-155,2.114760835330501e-155,7.253860144844651e-155,-6.1949926069327394e-155,7.1623243400936825e-155,-8.893912639278886e-155,-6.883610234435452e-156,-3.5423072476339194e-155,-7.912046027470793e-155,9.028896252512887e-155,-7.971494439333728e-155,4.994996890777954e-155,-8.165718170434829e-156,-3.5573976107679608e-155,7.073702740133984e-155,-3.6924802748613524e-155,7.163119452059731e-155,1.98469844947769e-155,8.507831715271687e-155,8.447848248372757e-155,-8.930210671260233e-155,7.26224443613347e-155,-8.90625228216058e-155,7.171508138314115e-155,-3.710459086942537e-155,-6.431074336173807e-156,4.840717388407979e-155,-7.871715063581706e-155,9.00659776816144e-155,-7.97259288041735e-155,5.019219318005451e-155,-8.580756643174054e-156,-3.5086152839869923e-155,8.598304451791637e-155,-3.6436727718421117e-155,2.4764753847891364e-155,1.9373029347739656e-155,-5.883497410808041e-155,8.412066607935681e-155,-8.914544703613776e-155,7.2704603349651465e-155,-8.891364083375193e-155,7.180521253003293e-155,-3.741194082112589e-155,-5.980612170131283e-156,4.792215019296261e-155,-1.1936325838232991e-155,8.984248240402887e-155,-1.0466027905701621e-155,5.043236347328828e-155,6.893094217610762e-155,-3.4600064179669055e-155,8.590383185535312e-155,-3.5950363280761623e-155,2.5123459513164134e-155,1.890101645850111e-155,-5.836338458099427e-155,8.376308824674879e-155,-8.898796782941236e-155,-2.5846329146130357e-156,-8.876390506393734e-155,-7.644884118371746e-155,-3.771715119896731e-155,-8.108798058207405e-155,4.7438611694022626e-155,-1.2338498519842166e-155,8.961847284394555e-155,-1.0872543462801584e-155,5.067048819666645e-155,6.8486181026227414e-155,-3.411569712802414e-155,8.582347939297538e-155,8.233115847381425e-155,2.547999963430479e-155,8.287980955496187e-155,-5.789302293399843e-155,7.372810566089536e-155,-8.882966720969174e-155,-2.1444894670547352e-156,-8.861331385870918e-155,-7.603811067467397e-155,-3.8020231831043065e-155,-8.107846283445359e-155,4.695654602567742e-155,-1.2738528372175718e-155,-3.0904681996123686e-155,-1.1276922324254246e-155,-3.227357372220117e-155,6.804233031459997e-155,-8.741892492363515e-155,8.574198742974124e-155,8.196312738248405e-155,2.5834385047668345e-155,8.251718374588415e-155,-5.7423877649356955e-155,7.379730804237014e-155,-8.867054340331385e-155,-1.7064067384715108e-156,4.396547547502008e-155,-7.562798613096352e-155,8.907291148470641e-155,-8.10675487433823e-155,5.354478939001601e-155,-1.313642696724522e-155,-3.0424816308011017e-155,-1.1679176118990076e-155,-3.1793093237041814e-155,6.75993797565118e-155,-8.71201811463971e-155,8.565935632538373e-155,8.159538601885125e-155,-8.884096680125686e-155,8.215481077524422e-155,-8.868775061415651e-155,7.3864866880128155e-155,-4.126053000564392e-155,-1.2703726801529688e-156,4.348479864383738e-155,-7.521845858300459e-155,8.883314806182021e-155,-8.10552405204394e-155,5.376282229568455e-155,-1.3532205643077264e-155,-2.994668112852621e-155,8.637047400648065e-155,-3.1314320443780315e-155,2.9330416781611277e-155,-8.682129573564683e-155,-5.422602189726455e-155,8.122792689918025e-155,-8.866509436227627e-155,8.17926833470709e-155,-8.85194061518642e-155,7.393078633110259e-155,-4.154475530338815e-155,-8.223520598880147e-155,4.300561417710865e-155,-1.6813360145801862e-155,8.859292743463236e-155,-1.537134186747081e-155,5.397886470744596e-155,6.4785208682332944e-155,5.2797636043698705e-155,8.626984451056827e-155,-3.0837243452558603e-155,2.9667484798631614e-155,1.3699212865340153e-155,-5.375669214062243e-155,7.560118594824028e-155,-8.848846119052382e-155,2.515196442800564e-156,-8.835026725018958e-155,-7.281099990632295e-155,-4.182689925579249e-155,-8.220418990431341e-155,4.252791069224347e-155,-1.7195850239704484e-155,8.835224606679109e-155,-1.5758428109411293e-155,5.419292409813211e-155,6.433867805773363e-155,-8.555611821265917e-155,8.616813841252487e-155,-6.603245301502115e-155,3.0002439320139654e-155,7.989642475455465e-155,-5.32885966378198e-155,7.564808839357351e-155,-5.443156922297565e-155,2.938334299481712e-156,-8.818033234476754e-155,-7.239493390699762e-155,-4.210697062399076e-155,-8.217184071938149e-155,5.6696618146641474e-155,-1.7576242130154547e-155,5.55580559829164e-155,-1.6143421313456182e-155,-2.714855282840736e-155,6.389307576539609e-155,-8.524440933462359e-155,8.606535590421645e-155,-6.616328241086488e-155,3.033529002533923e-155,7.952464505914022e-155,-5.282172502734466e-155,7.569340907183201e-155,-4.493203097728419e-155,3.3594465171529907e-156,3.901185009663341e-155,-7.197950150466444e-155,8.76078563848094e-155,-8.213816033286702e-155,5.689256673196136e-155,-1.795454616943435e-155,5.576111848511383e-155,-1.652633188462567e-155,-2.6678082498452165e-155,6.344839254187968e-155,-8.493261086856428e-155,-5.001922216009713e-155,7.85237992918379e-155,-5.119486315440591e-155,7.915315579201279e-155,-8.804611857479378e-155,7.573715167929191e-155,-4.519517857203352e-155,3.7785438894818506e-156,3.853779885934067e-155,-7.156469461093101e-155,8.735218420512976e-155,-8.210315066936484e-155,5.708657813206976e-155,6.0979008185807375e-155,5.59622314599255e-155,8.64810863820504e-155,-2.620930774123506e-155,3.370288324331079e-155,-8.462071787556092e-155,-4.955175450525443e-155,7.81476404473184e-155,-5.0728838340845994e-155,7.878195036394396e-155,-8.785910919541766e-155,7.577931989508126e-155,-4.54562914126355e-155,-8.309351464669475e-155,3.80652381628375e-155,-8.259122523458019e-155,8.70961082674672e-155,-2.0119536213523117e-155,5.727865911832022e-155,6.053066290479231e-155,5.616140180978071e-155,8.635975341978438e-155,-2.5742217882858537e-155,3.401818374724189e-155,-8.43087255892231e-155,-4.908554017107356e-155,7.726702449593516e-155,-5.026403753003065e-155,7.493799527281638e-156,-8.767136426286754e-155,-6.902782576938241e-155,-4.57153774710642e-155,-8.304021452711338e-155,3.759415778181471e-155,-8.254574032319425e-155,8.683962535913647e-155,-2.04869081170008e-155,5.746881636540449e-155,6.008327503638299e-155,-8.317680039819673e-155,8.623740603002764e-155,-6.853298504128116e-155,3.4331418993837725e-155,8.128248767201818e-156,-4.862056960450726e-155,7.72904635389988e-155,-4.980045126865221e-155,7.899514107746182e-156,-8.748288233878862e-155,-6.860736545712842e-155,-4.597244458799111e-155,-8.29856452013921e-155,5.981771000037189e-155,-8.249895892817155e-155,5.874507979656533e-155,-2.0852226777210012e-155,-2.205234201944404e-155,5.963683602350825e-155,-8.285291489247503e-155,8.611404435570437e-155,-6.863979416243006e-155,3.4642597655575577e-155,7.635088094301077e-155,-8.734891715865473e-155,7.731238472635283e-155,-4.866292587339395e-155,8.303234302709761e-156,3.4046052489984168e-155,-6.818756851008729e-155,8.590266091993411e-155,-8.29298083504431e-155,8.612575853028214e-155,-8.245088290312638e-155,5.892429946130749e-155,-2.1215501525897656e-155,-2.1592569791667397e-155,3.757938145320973e-155,-8.252898732135839e-155,-4.528905544584544e-155,-6.874486214395325e-155,-4.649827354051516e-155,7.597122537855634e-155,-8.714473134920328e-155,7.733279135968137e-155,-4.8902936860564305e-155,8.704969798241549e-156,3.357940609579822e-155,-6.776842765605708e-155,8.563196346935379e-155,-2.4352140856639927e-155,8.586151449306868e-155,5.662880826928864e-155,5.910162715081533e-155,8.632024249229524e-155,-2.113448444170704e-155,3.787482777393945e-155,-8.220501324031118e-155,3.6571465546446028e-155,-6.8848193905787345e-155,-4.603580900896901e-155,7.559189346729637e-155,-8.69398700874243e-155,-6.5536655948210435e-155,-4.914096553105312e-155,-8.367452628140508e-155,3.311425156783891e-155,-8.3255606208825e-155,8.536091609680567e-155,-2.4701552307206733e-155,8.559688619050606e-155,5.618049909293344e-155,5.9277069060090066e-155,8.617893629433085e-155,-2.0678076383967072e-155,3.816824605935623e-155,3.527091617359286e-156,3.68707477111685e-155,4.95317912542465e-156,-4.557458089647269e-155,1.2340768985865548e-155,-8.673433198834977e-155,-6.511204639062361e-155,-4.937701904498067e-155,-8.35995729507535e-155,3.2650579723129554e-155,-8.318830820782295e-155,8.508951591946148e-155,-2.504893860545941e-155,-1.7447662578596828e-155,5.573316929252014e-155,-8.059014875730791e-155,8.603667719865166e-155,-7.076591032273564e-155,3.845964424479319e-155,3.0993671073296503e-156,3.716800782174109e-155,7.865659047414122e-155,-4.511458071499422e-155,1.2728654733645672e-155,-8.652811576855084e-155,-6.468813860596667e-155,8.425112088989122e-155,-6.561060604655203e-155,8.454595755620973e-155,-8.311977657489086e-155,6.168024710678391e-155,-2.5394308304450363e-155,-1.6997579302421204e-155,5.528681118789302e-155,-8.025502284726138e-155,8.589346534731153e-155,-7.084904504479553e-155,3.874903012934641e-155,2.673495961767078e-156,-8.621241589364133e-155,7.865561381488149e-155,-5.216178058637386e-155,1.3114574204971306e-155,2.9081226976461426e-155,-6.4264925879853944e-155,8.396658849608504e-155,-6.519065010710908e-155,8.426759788294114e-155,-8.305001299467595e-155,6.18358166210835e-155,-2.573766979691422e-155,-1.6549185890399604e-155,4.156596488578756e-155,-7.991990335031738e-155,4.030635142069638e-155,-7.093049832575916e-155,-4.175771332855779e-155,2.2494691893119597e-156,-8.599114899620478e-155,7.865318468442464e-155,-5.237870532511616e-155,1.3498536110366886e-155,2.862275997998237e-155,-8.373353650150628e-155,8.368176321107714e-155,-2.8779607910940333e-155,8.398891136572239e-155,5.219534620542108e-155,6.198954950456559e-155,8.589379869041697e-155,-1.6102473528117937e-155,4.183938961756218e-155,-7.958478629856136e-155,4.058579641607675e-155,-7.10102746144712e-155,-4.129966789186276e-155,1.6674439333472082e-155,-8.576926524041446e-155,-6.150368266193511e-155,-5.259369777479125e-155,-6.247080454320194e-155,2.816578883770299e-155,-8.364623690072188e-155,8.33966423553903e-155,-2.9108744975160765e-155,8.370989547991106e-155,5.1747987264880575e-155,6.214145135439607e-155,8.573326772685647e-155,-7.266924493223864e-155,4.211082981584558e-155,-7.188836467859685e-155,4.086325400612138e-155,-6.206962778991571e-159,-4.084287366858293e-155,1.7046055175456687e-155,-8.554676342094827e-155,-6.107654373554576e-155,-5.280676440040265e-155,-6.20465944098118e-155,2.7710305304027538e-155,-8.3557764253552e-155,6.422693018014664e-155,-2.9435891860983365e-155,-1.2434733883213587e-155,5.130163175096196e-155,-7.780705794406777e-155,8.557184506301107e-155,-7.273070050716193e-155,4.238029264128784e-155,-7.1957322109705615e-155,4.113873141478194e-155,-4.217903014171555e-157,-4.0387323045523904e-155,1.741572231348209e-155,2.458142650028666e-155,-6.0650139271431566e-155,2.592268278307702e-155,-6.16230866618873e-155,8.247755166902959e-155,-8.346812009359552e-155,6.4360852764505325e-155,-2.9761056281285182e-155,-1.1996704017209092e-155,5.08562727846665e-155,-7.746163889682699e-155,8.540953087946606e-155,-7.279052885622222e-155,-3.744056836523089e-155,-7.2024633754401296e-155,-8.483088162826532e-155,-8.355490969165837e-157,-5.542399674265338e-155,1.7783448757111096e-155,2.413039614441131e-155,-6.022446326748011e-155,2.5470838771961957e-155,-6.120027541272699e-155,8.21856001956025e-155,-8.337730599361784e-155,6.44929872663469e-155,8.538626145951676e-155,-1.1560359650101577e-155,8.53278338415746e-155,-7.711627569478896e-155,4.413179043595784e-155,-7.284873406726381e-155,-3.6986521547493593e-155,-7.209030381612592e-155,-8.459337965905287e-155,7.970028264389841e-155,-5.561790781422011e-155,1.8149242359825083e-155,2.3680875425705727e-155,-8.38753349586629e-155,2.5020481815188208e-155,-3.3024279828076467e-155,8.189337701498294e-155,4.769193949403215e-155,6.462333883531638e-155,8.520810416228636e-155,-1.1125692856159423e-155,8.515668550326646e-155,-7.677096482707517e-155,4.438927985144148e-155,-7.290532020384246e-155,-3.653374974144704e-155,6.872167458864899e-155,-8.435531964392597e-155,1.98824345550073e-155,-5.580993479852981e-155,-5.8377294152384354e-155,2.323285675640288e-155,-8.376745881391571e-155,2.4571604381980184e-155,-3.3332911563080087e-155,8.160087992393499e-155,4.724644389690474e-155,6.475191256694831e-155,8.502911610486305e-155,-7.438890728725374e-155,8.498467636516375e-155,-7.368441673069353e-155,4.464482255085832e-155,-4.862135199945264e-156,-3.6082245942596254e-155,6.832937926782315e-155,-8.411670057378716e-155,2.023996187664977e-155,-5.600008356860068e-155,-5.79511151602904e-155,2.2786332732244905e-155,-8.365847140865927e-155,6.667407542446823e-155,-3.3639586049668e-155,-7.487245765046996e-156,4.680197756092537e-155,-7.483872890945665e-155,8.484929746705072e-155,-7.442739125754221e-155,8.481180674414916e-155,-7.373034737166634e-155,4.489842508423494e-155,-5.262266200137567e-156,-5.827267929369118e-155,6.7937482428904e-155,1.9647763211221058e-155,2.0595571668912107e-155,2.0997677321373366e-155,-5.752567372329344e-155,8.019426313089289e-155,-8.354837420920448e-155,6.678475020325549e-155,-3.3944310270169986e-155,-7.061923982565808e-156,4.635853433751952e-155,-7.448397425388041e-155,4.750300735949574e-155,-7.51199585438015e-155,-3.2645916256172705e-155,-7.377468948880267e-155,-8.321274356868278e-155,-5.660584600224583e-156,-5.844551695343866e-155,2.230023579721625e-155,1.9206428243513573e-155,2.094927118418886e-155,2.0555170248574426e-155,-5.710096460029474e-155,7.988963896576887e-155,4.357570903047851e-155,6.689368987211756e-155,8.44658833264698e-155,-6.638285305976927e-156,8.448797157139337e-155,-7.412932579907892e-155,4.774039081264118e-155,-7.477002048996763e-155,-3.219797302973266e-155,-7.381744695391356e-155,-8.295986940208506e-155,-6.057097689315244e-156,-5.8616511981087374e-155,-5.461301573249526e-155,-5.759548545706585e-155,-8.375191360849757e-155,2.011415855456858e-155,-3.7078400016903725e-155,7.958479885208751e-155,4.313192434484612e-155,6.700089915150035e-155,8.42699952497596e-155,-6.216322600205698e-156,8.429884914611861e-155,-7.3774780470182244e-155,4.7975860742921485e-155,-9.217672882541481e-156,-3.175132251569564e-155,6.506600928047009e-155,-8.270649635828933e-155,8.042875605520493e-155,-5.878566981387543e-155,-5.418504435127641e-155,-5.777143726282195e-155,-8.362414347498355e-155,1.967463547648474e-155,-3.736631881474525e-155,7.927974090429795e-155,4.268920188897846e-155,-7.2059931862802065e-155,8.407333756276283e-155,-7.275013794212103e-155,4.934868877214359e-155,-1.0980293457524996e-155,-3.0023438357265964e-155,6.378892989780968e-155,4.7057608212952016e-155,-8.224995149376558e-156,-3.257943068136999e-155,2.4667864794283493e-155,-8.269515849473039e-155,-5.375785179214973e-155,7.802252148031256e-155,-8.349532370087873e-155,6.8862670389882305e-155,-3.765231177991374e-155,-2.6171585653414674e-156,4.224753601657057e-155,-7.1696648164414475e-155,8.387591054165752e-155,-7.585659170084269e-155,4.957407965326264e-155,-1.1360796506258127e-155,-2.9579513213461438e-155,6.338852121903868e-155,-8.19271758784802e-155,-8.612697923858461e-156,-6.010359314350012e-155,2.500476392436627e-155,1.6107026506083695e-155,-5.333143325309911e-155,7.770631490039222e-155,-8.336545572630881e-155,6.895036558755208e-155,-3.79363852622937e-155,-2.2051834552227995e-156,4.180692124331558e-155,-7.13335246798774e-155,-2.654749798617035e-155,-7.587101094077514e-155,4.979757942164741e-155,-1.1739485840042054e-155,-2.9136887178688597e-155,6.298858404241584e-155,-8.166624047798328e-155,-8.99861051242856e-156,-6.0260456056828545e-155,2.533977388207324e-155,1.567460868058275e-155,-4.066577748323847e-155,7.73899504632102e-155,3.8968760397819185e-155,6.9036377847557824e-155,8.32995986075272e-155,-1.7948905790324027e-156,5.222064644810784e-155,-7.097055862091199e-155,-2.6106947193828093e-155,-7.588392120765783e-155,5.001919383342947e-155,-1.2116368063064143e-155,-2.8695554396675097e-155,6.25891146715506e-155,-8.14048349424864e-155,8.061551592233433e-155,-6.041551258245231e-155,-8.33686475483315e-155,1.524369600948836e-155,-4.0934703225297835e-155,7.70734264851689e-155,3.852862511902695e-155,6.912071153690327e-155,8.308678699984392e-155,-1.386273502962003e-156,5.242767640131931e-155,-1.5206653739995057e-155,-2.5667732043462827e-155,-7.589532600850759e-155,5.023892856459138e-155,-1.2491449645421389e-155,-2.825550916678842e-155,6.2190109549732944e-155,-8.114295871315693e-155,-4.990720206593254e-155,-6.05687677876162e-155,-8.322168895116807e-155,1.4814282416119827e-155,-4.120172761548257e-155,1.7641620637299535e-156,3.8089579974728305e-155,-6.876329452821933e-155,8.287326719674985e-155,-7.702566467104693e-155,5.263284264054143e-155,-1.5572226531021188e-155,-2.522984685476179e-155,-7.5905228844014e-155,5.04567892128471e-155,-1.28647369259951e-155,-2.7816745940861476e-155,6.179156525722441e-155,1.168639771498197e-155,-4.947995007196506e-155,7.53513331855138e-155,-8.30737424000654e-155,7.079169661731876e-155,-4.14668565507536e-155,2.1638592475548e-156,3.76516199354068e-155,-6.8392565198344846e-155,8.265903959110482e-155,-7.70194909704868e-155,5.283615060183352e-155,-1.593598988075018e-155,-2.4793286097115114e-155,-7.591363320895993e-155,-7.994981570698201e-155,-1.3236236115261838e-155,-6.272363016775551e-155,6.139347850860911e-155,1.1263284527685892e-155,-4.905350963791543e-155,7.50242745285551e-155,-8.292480934305585e-155,7.0856709166078705e-155,-4.173009583641896e-155,2.561868022350025e-156,5.5132673930933504e-155,-6.802204770201407e-155,-2.1744407798571747e-155,-7.701186156598497e-155,5.303760565059826e-155,-1.6297949902687047e-155,-2.43580443865627e-155,-7.59205425926332e-155,-7.967492359035578e-155,-1.3605953298042013e-155,-6.285784420077901e-155,2.956371072226679e-155,1.084169294530029e-155,-4.433859018535361e-155,7.46971147614415e-155,3.4330914004702425e-155,7.092009053286778e-155,8.189517015734262e-155,2.9581943326256156e-156,5.5319382708399714e-155,-6.765173965017462e-155,8.222846289144481e-155,-7.700277977481225e-155,5.323721308326548e-155,-1.6658112589409584e-155,-2.3924116482808284e-155,5.873707752639741e-155,-7.93996215380595e-155,8.093959033381887e-155,-6.299029704065885e-155,-8.273143180500603e-155,1.0421617366135212e-155,-4.4586438460565445e-155,7.436985250850209e-155,3.3895323361157597e-155,7.098184479764412e-155,8.166626214731273e-155,3.3528439925674396e-156,5.5504261307331055e-155,-1.9676753950638268e-155,8.201211492755768e-155,-7.699224891426618e-155,5.343497812893902e-155,-1.701648381516579e-155,-2.3491497286299106e-155,5.833442697035503e-155,-7.91239092028709e-155,8.085718579404945e-155,-6.3120993387738085e-155,-8.256601366358713e-155,1.0003052324493801e-155,-4.483241563058546e-155,6.459328215665305e-156,3.3460851734340272e-155,-6.531566247680271e-155,8.143670774564075e-155,-7.794566562617931e-155,5.568731481374261e-155,-2.002511604635514e-155,8.179506141914333e-155,-7.698027230196144e-155,5.3630905951007645e-155,-1.7373069338414543e-155,-6.498210634161817e-155,5.793228407864847e-155,6.89034647351855e-156,8.07735517478763e-155,7.249598837833264e-155,-8.239966950885183e-155,7.246072683911138e-155,-4.5076527113309515e-155,6.844461410024009e-156,3.3027494652206604e-155,-6.4938468255854824e-155,8.120650747720112e-155,-7.791786198945747e-155,5.586854825330057e-155,-2.0371678939277778e-155,-2.002281000234299e-155,-7.696685325611323e-155,-7.776010828404733e-155,-1.7727874804310921e-155,-6.509556193809363e-155,5.753064600733163e-155,6.478767573478989e-156,-4.470509605121036e-155,7.215903346964867e-155,-8.223240082469442e-155,7.250338394763629e-155,8.05043883803855e-155,7.227905809940981e-156,5.801963528925804e-155,-6.456153821324537e-155,8.097566193531648e-155,-7.788865944778219e-155,5.604796659279279e-155,-6.6172558220457235e-155,-1.959577232454069e-155,-7.695199509581523e-155,-7.747216415779728e-155,-1.8080905747137746e-155,-6.5207296931193585e-155,3.3612637964327762e-155,6.06872128919044e-156,-4.780074060425122e-155,7.18220348294731e-155,2.9675387383979063e-155,7.254446154593276e-155,8.026081540605132e-155,7.609666800501105e-156,5.8184194840149335e-155,-6.4184870335067915e-155,8.074417178063534e-155,-7.785806117151377e-155,5.622557474156756e-155,-2.1059429272467875e-155,-1.917006978075398e-155,5.477523008705524e-155,-7.718387083357373e-155,8.10031314942663e-155,-6.531731575509788e-155,3.3907432214704084e-155,5.660202574716139e-156,-4.8027389811258446e-155,7.1484991378775955e-155,2.924522657248083e-155,7.2583963485015e-155,8.001665772049896e-155,-7.865057473221552e-155,5.83469630215062e-155,-6.380846271830356e-155,8.051203774003363e-155,-7.782607033673475e-155,5.640137755294118e-155,-2.140062752673236e-155,-1.874569780900247e-155,5.436991592440715e-155,-7.689522817721393e-155,8.090064747635775e-155,-6.54256228080605e-155,3.420038761407766e-155,7.384773966424878e-155,-4.825219786128388e-155,1.1043657386628169e-155,2.8816214360462483e-155,-6.172923181931309e-155,7.977191592373094e-155,-7.860299112850629e-155,5.850794456580102e-155,-6.3432313568753904e-155,8.027926060553964e-155,-7.779269012542332e-155,5.657537982557555e-155,-2.1740048210739807e-155,-6.712626450390848e-155,5.396515693496097e-155,2.1648695870537459e-156,8.079699399679631e-155,6.9467669590068375e-155,-8.147955875275838e-155,7.386993139356569e-155,-4.8475169765242786e-155,1.1413653154413709e-155,2.8388346777688135e-155,-6.134655866042104e-155,7.952659068363658e-155,-7.855406262626792e-155,5.866714415573998e-155,-6.305642119901811e-155,-1.528087794438303e-155,-7.775792372562305e-155,-7.53679244186742e-155,-2.2077696477759265e-155,-6.7217398158128984e-155,5.356095068226132e-155,1.7655231055402378e-156,8.069217353599779e-155,6.912178461494495e-155,2.5440335441806313e-155,7.389059180507441e-155,7.866321053296303e-155,1.178195931866705e-155,2.796161997586885e-155,-6.096420264161956e-155,7.92806827348807e-155,-7.850379228122825e-155,5.882456642551617e-155,-6.26807840265125e-155,-1.486284813920009e-155,-7.772177433160854e-155,-7.506784829827183e-155,8.093148694610529e-155,-6.730685663291836e-155,3.747860542250188e-155,1.3677206993897353e-156,-3.9876655541240945e-155,6.877591387103114e-155,2.5015295031449917e-155,7.390972458053396e-155,7.84051910146241e-155,1.2148580774787344e-155,2.7536030226238055e-155,-6.058216209962999e-155,7.903419287781605e-155,-7.845218315950798e-155,5.898021596203617e-155,-2.531075390802368e-155,-1.444617526363881e-155,5.071645548188249e-155,-7.476748426861349e-155,8.081067386826024e-155,-6.739464410919934e-155,3.775379467368028e-155,9.714578131899278e-157,-5.125189518958138e-155,6.84300565629106e-155,2.4591436868599936e-155,-5.840392108515e-155,7.814664944552032e-155,-7.906878325811962e-155,2.7111573917177907e-155,-6.020043547447595e-155,7.878712197741805e-155,-7.839923833769929e-155,5.913409730612049e-155,-2.5634344883519172e-155,-1.4030855234190373e-155,5.0309458881533595e-155,-7.4466832407088826e-155,8.068874939358064e-155,6.663175125435458e-155,3.802716355656831e-155,7.50195483233646e-155,-5.145544513511458e-155,1.5506508230364675e-155,2.416875731962135e-155,-5.801638645722233e-155,7.788758657786071e-155,1.2876788632550336e-155,2.6688247551895406e-155,-5.981902130757011e-155,7.853947096224177e-155,-7.834496090294216e-155,-7.309454495074789e-155,-2.5956166310848896e-155,-6.901870483317812e-155,4.990306547282103e-155,-2.478261607732536e-156,8.056571595957819e-155,6.627783807833505e-155,3.829871688671268e-155,7.502008214141544e-155,-5.165718859282737e-155,1.5860819387270343e-155,2.3747252863795544e-155,-5.762922386189904e-155,7.762800322976956e-155,1.3238384319794387e-155,6.122839895405211e-155,-5.943791823984032e-155,-1.0580075743496892e-155,-7.828935395299884e-155,-7.278349743514377e-155,-2.6276222918228e-155,-6.908775267463349e-155,4.949727319352854e-155,-2.8647001323121033e-156,8.04415760325328e-155,6.592399822709972e-155,-8.011870766803862e-155,7.501913710253095e-155,7.66089579891729e-155,1.6213440047908408e-155,2.332692009107468e-155,-5.7242431863830875e-155,7.736790028421362e-155,1.3598313874321837e-155,6.136390005592045e-155,-5.905712500989469e-155,-1.0171839366033414e-155,-7.823242059632642e-155,-7.247222362809374e-155,8.050694957424201e-155,-6.915517113175389e-155,4.1154178296359795e-155,-3.2495829923575333e-156,-3.5429739403831234e-155,6.557023108658867e-155,2.036361707036495e-155,7.501671674865427e-155,7.633737546848549e-155,1.6564374681857373e-155,2.290775569988256e-155,-5.6856009125569984e-155,7.710727868795106e-155,-7.878814819855948e-155,6.149766622064202e-155,-2.940297954949245e-155,-9.764981891301297e-156,4.657372119209893e-155,-7.2160723738880856e-155,8.036730169959101e-155,-6.922096418368801e-155,4.140951308767031e-155,-3.632914312967235e-156,-3.501076810675011e-155,6.521653613051972e-155,1.9946919658000432e-155,-5.458075644626687e-155,-5.225162588860472e-155,1.6913627667771874e-155,2.2489756494960695e-155,-5.646995440576062e-155,7.684613945050191e-155,-7.87147861684456e-155,6.162970173283534e-155,-2.970855948644619e-155,-9.359499659210578e-156,4.616602070069164e-155,-6.653150404559619e-156,8.02266035182139e-155,6.329915250343605e-155,4.166304625622373e-155,7.593325423294808e-155,-3.4592717285036142e-155,1.9837643771387657e-155,1.9531431044907017e-155,-5.418967013838664e-155,-5.244618897539531e-155,1.7261203295321422e-155,2.2072919385258613e-155,-5.608426655736688e-155,-6.331833555852545e-156,-7.86401488650317e-155,-7.033876100564791e-155,-3.0012378114332987e-155,-7.0658617003755215e-155,4.575897175821136e-155,-7.027601305331607e-156,8.00848574766662e-155,6.293820848410117e-155,4.191478227941611e-155,7.591255397441626e-155,-3.4175584501366688e-155,2.0175751683994117e-155,1.9117148110723455e-155,-5.3799009374888316e-155,7.55198785923776e-155,1.7607105767089408e-155,6.354937387898636e-155,-5.569894452593625e-155,-5.932751362090211e-156,-7.856423932989556e-155,-7.001740107351104e-155,-3.0314439797159244e-155,-7.070584993179447e-155,4.535257264419258e-155,-7.400481283501122e-156,-3.1368940850892186e-155,6.257739644258533e-155,-7.871186476367415e-155,7.58904279338225e-155,-5.479625073063066e-155,2.051216843890116e-155,1.870406783536286e-155,-5.34087730283011e-155,7.52464664355532e-155,1.7951339200433272e-155,6.366306435828352e-155,-5.531398734789818e-155,-5.535073325119194e-156,4.276818097950117e-155,-6.969587697536577e-155,7.98364286491549e-155,-7.075149988596651e-155,4.463245721202205e-155,-7.77179417811173e-156,-3.0952829591714678e-155,6.221671602370509e-155,-7.849346875907584e-155,7.5866879552418e-155],"x":[1.0e300,1.9993002998800478e304,3.998500599760096e304,5.997700899640144e304,7.996901199520193e304,9.996101499400241e304,1.1995301799280287e305,1.3994502099160336e305,1.5993702399040382e305,1.7992902698920432e305,1.999210299880048e305,2.199130329868053e305,2.3990503598560575e305,2.5989703898440625e305,2.798890419832067e305,2.9988104498200722e305,3.198730479808077e305,3.398650509796082e305,3.5985705397840865e305,3.7984905697720915e305,3.998410599760096e305,4.198330629748101e305,4.398250659736105e305,4.59817068972411e305,4.798090719712115e305,4.99801074970012e305,5.197930779688125e305,5.397850809676129e305,5.5977708396641344e305,5.7976908696521394e305,5.997610899640144e305,6.197530929628149e305,6.397450959616153e305,6.597370989604159e305,6.797291019592163e305,6.997211049580168e305,7.197131079568173e305,7.397051109556177e305,7.596971139544182e305,7.796891169532187e305,7.996811199520192e305,8.196731229508197e305,8.396651259496202e305,8.596571289484207e305,8.796491319472212e305,8.996411349460216e305,9.19633137944822e305,9.396251409436224e305,9.59617143942423e305,9.796091469412234e305,9.99601149940024e305,1.0195931529388245e306,1.039585155937625e306,1.0595771589364255e306,1.079569161935226e306,1.0995611649340265e306,1.1195531679328269e306,1.1395451709316273e306,1.1595371739304277e306,1.1795291769292285e306,1.1995211799280289e306,1.219513182926829e306,1.2395051859256297e306,1.2594971889244303e306,1.2794891919232307e306,1.299481194922031e306,1.3194731979208316e306,1.3394652009196323e306,1.3594572039184328e306,1.3794492069172329e306,1.3994412099160336e306,1.4194332129148343e306,1.4394252159136346e306,1.459417218912435e306,1.4794092219112355e306,1.499401224910036e306,1.5193932279088363e306,1.539385230907637e306,1.5593772339064375e306,1.579369236905238e306,1.5993612399040383e306,1.6193532429028386e306,1.6393452459016395e306,1.65933724890044e306,1.6793292518992403e306,1.6993212548980406e306,1.7193132578968412e306,1.739305260895642e306,1.759297263894442e306,1.7792892668932426e306,1.7992812698920432e306,1.819273272890844e306,1.839265275889644e306,1.8592572788884446e306,1.8792492818872452e306,1.8992412848860455e306,1.919233287884846e306,1.9392252908836463e306,1.9592172938824472e306,1.9792092968812475e306,1.999201299880048e306,2.0191933028788483e306,2.0391853058776492e306,2.0591773088764495e306,2.0791693118752498e306,2.0991613148740503e306,2.119153317872851e306,2.1391453208716515e306,2.1591373238704518e306,2.1791293268692523e306,2.1991213298680526e306,2.2191133328668535e306,2.2391053358656538e306,2.2590973388644544e306,2.2790893418632546e306,2.2990813448620552e306,2.3190733478608558e306,2.339065350859656e306,2.359057353858457e306,2.3790493568572575e306,2.3990413598560575e306,2.4190333628548578e306,2.4390253658536583e306,2.4590173688524592e306,2.4790093718512595e306,2.49900137485006e306,2.518993377848861e306,2.538985380847661e306,2.5589773838464612e306,2.5789693868452618e306,2.598961389844062e306,2.618953392842863e306,2.6389453958416635e306,2.6589373988404638e306,2.6789294018392647e306,2.6989214048380646e306,2.7189134078368652e306,2.7389054108356655e306,2.758897413834466e306,2.778889416833267e306,2.7988814198320672e306,2.818873422830868e306,2.838865425829668e306,2.8588574288284683e306,2.878849431827269e306,2.8988414348260695e306,2.91883343782487e306,2.9388254408236707e306,2.958817443822471e306,2.978809446821272e306,2.998801449820072e306,3.0187934528188724e306,3.0387854558176726e306,3.0587774588164735e306,3.078769461815274e306,3.0987614648140747e306,3.118753467812875e306,3.138745470811675e306,3.158737473810476e306,3.1787294768092764e306,3.1987214798080766e306,3.218713482806877e306,3.238705485805678e306,3.258697488804479e306,3.278689491803279e306,3.2986814948020786e306,3.3186734978008795e306,3.3386655007996804e306,3.3586575037984807e306,3.378649506797281e306,3.398641509796081e306,3.418633512794882e306,3.4386255157936824e306,3.4586175187924826e306,3.4786095217912835e306,3.498601524790084e306,3.5185935277888847e306,3.538585530787685e306,3.558577533786485e306,3.578569536785286e306,3.5985615397840864e306,3.6185535427828866e306,3.6385455457816875e306,3.658537548780488e306,3.678529551779288e306,3.698521554778089e306,3.718513557776889e306,3.73850556077569e306,3.75849756377449e306,3.7784895667732907e306,3.7984815697720916e306,3.818473572770892e306,3.838465575769692e306,3.8584575787684924e306,3.878449581767293e306,3.8984415847660935e306,3.918433587764894e306,3.938425590763694e306,3.9584175937624956e306,3.978409596761296e306,3.998401599760096e306,4.0183936027588964e306,4.0383856057576967e306,4.0583776087564975e306,4.078369611755298e306,4.098361614754098e306,4.118353617752899e306,4.1383456207517e306,4.1583376237505e306,4.1783296267493004e306,4.1983216297481e306,4.218313632746901e306,4.238305635745702e306,4.258297638744502e306,4.278289641743303e306,4.298281644742103e306,4.318273647740904e306,4.3382656507397044e306,4.358257653738504e306,4.378249656737305e306,4.398241659736106e306,4.418233662734906e306,4.438225665733707e306,4.458217668732507e306,4.4782096717313076e306,4.498201674730108e306,4.518193677728908e306,4.538185680727709e306,4.558177683726509e306,4.57816968672531e306,4.598161689724111e306,4.61815369272291e306,4.6381456957217116e306,4.658137698720512e306,4.678129701719313e306,4.698121704718113e306,4.718113707716913e306,4.7381057107157135e306,4.7580977137145144e306,4.778089716713315e306,4.798081719712115e306,4.8180737227109165e306,4.8380657257097155e306,4.858057728708517e306,4.8780497317073167e306,4.898041734706117e306,4.9180337377049185e306,4.938025740703718e306,4.9580177437025196e306,4.97800974670132e306,4.99800174970012e306,5.0179937526989204e306,5.037985755697721e306,5.0579777586965216e306,5.077969761695322e306,5.097961764694122e306,5.117953767692923e306,5.137945770691724e306,5.1579377736905235e306,5.177929776689324e306,5.197921779688125e306,5.217913782686925e306,5.2379057856857265e306,5.2578977886845255e306,5.277889791683327e306,5.297881794682127e306,5.317873797680928e306,5.3378658006797285e306,5.357857803678529e306,5.377849806677329e306,5.39784180967613e306,5.41783381267493e306,5.4378258156737304e306,5.457817818672532e306,5.4778098216713316e306,5.497801824670132e306,5.517793827668932e306,5.5377858306677324e306,5.557777833666534e306,5.5777698366653335e306,5.597761839664135e306,5.6177538426629353e306,5.637745845661734e306,5.657737848660536e306,5.677729851659336e306,5.697721854658136e306,5.717713857656938e306,5.737705860655738e306,5.757697863654538e306,5.777689866653339e306,5.797681869652139e306,5.817673872650939e306,5.83766587564974e306,5.85765787864854e306,5.877649881647341e306,5.897641884646142e306,5.917633887644943e306,5.937625890643743e306,5.957617893642542e306,5.977609896641344e306,5.997601899640144e306,6.017593902638944e306,6.037585905637745e306,6.057577908636545e306,6.077569911635347e306,6.097561914634147e306,6.117553917632947e306,6.137545920631747e306,6.157537923630548e306,6.177529926629348e306,6.197521929628149e306,6.217513932626948e306,6.23750593562575e306,6.25749793862455e306,6.27748994162335e306,6.297481944622152e306,6.317473947620952e306,6.337465950619752e306,6.357457953618553e306,6.377449956617352e306,6.397441959616153e306,6.417433962614954e306,6.437425965613755e306,6.457417968612555e306,6.477409971611356e306,6.497401974610156e306,6.517393977608957e306,6.537385980607756e306,6.557377983606557e306,6.577369986605358e306,6.597361989604158e306,6.617353992602959e306,6.63734599560176e306,6.65733799860056e306,6.677330001599361e306,6.69732200459816e306,6.717314007596961e306,6.737306010595762e306,6.757298013594562e306,6.777290016593362e306,6.797282019592164e306,6.817274022590964e306,6.837266025589764e306,6.857258028588564e306,6.877250031587365e306,6.897242034586166e306,6.917234037584965e306,6.937226040583767e306,6.957218043582567e306,6.977210046581367e306,6.997202049580169e306,7.017194052578968e306,7.037186055577769e306,7.05717805857657e306,7.07717006157537e306,7.09716206457417e306,7.11715406757297e306,7.137146070571771e306,7.157138073570572e306,7.177130076569372e306,7.197122079568173e306,7.217114082566974e306,7.237106085565773e306,7.257098088564575e306,7.277090091563375e306,7.297082094562174e306,7.317074097560976e306,7.337066100559776e306,7.357058103558577e306,7.377050106557378e306,7.397042109556178e306,7.417034112554978e306,7.437026115553777e306,7.457018118552579e306,7.477010121551379e306,7.497002124550179e306,7.516994127548981e306,7.536986130547782e306,7.556978133546581e306,7.576970136545383e306,7.596962139544183e306,7.616954142542982e306,7.636946145541784e306,7.656938148540583e306,7.676930151539384e306,7.696922154538184e306,7.716914157536986e306,7.736906160535786e306,7.756898163534585e306,7.776890166533387e306,7.796882169532187e306,7.816874172530987e306,7.836866175529788e306,7.856858178528589e306,7.87685018152739e306,7.89684218452619e306,7.916834187524991e306,7.93682619052379e306,7.956818193522592e306,7.976810196521391e306,7.996802199520192e306,8.016794202518993e306,8.036786205517793e306,8.056778208516594e306,8.076770211515393e306,8.096762214514195e306,8.116754217512995e306,8.136746220511795e306,8.156738223510596e306,8.176730226509397e306,8.196722229508196e306,8.216714232506996e306,8.236706235505798e306,8.256698238504598e306,8.2766902415034e306,8.296682244502199e306,8.316674247501e306,8.3366662504998e306,8.3566582534986e306,8.376650256497401e306,8.396642259496201e306,8.416634262495003e306,8.436626265493803e306,8.456618268492603e306,8.476610271491404e306,8.496602274490204e306,8.516594277489004e306,8.536586280487804e306,8.556578283486606e306,8.576570286485405e306,8.596562289484207e306,8.616554292483007e306,8.636546295481807e306,8.656538298480609e306,8.676530301479408e306,8.696522304478209e306,8.716514307477008e306,8.73650631047581e306,8.75649831347461e306,8.776490316473411e306,8.796482319472212e306,8.816474322471012e306,8.836466325469812e306,8.856458328468613e306,8.876450331467414e306,8.896442334466213e306,8.916434337465015e306,8.936426340463814e306,8.956418343462615e306,8.976410346461417e306,8.996402349460216e306,9.016394352459017e306,9.036386355457816e306,9.056378358456618e306,9.076370361455418e306,9.096362364454217e306,9.116354367453019e306,9.13634637045182e306,9.15633837345062e306,9.17633037644942e306,9.196322379448222e306,9.216314382447022e306,9.236306385445821e306,9.256298388444623e306,9.276290391443422e306,9.296282394442222e306,9.316274397441025e306,9.336266400439825e306,9.356258403438624e306,9.376250406437426e306,9.396242409436225e306,9.416234412435026e306,9.436226415433828e306,9.456218418432627e306,9.476210421431427e306,9.496202424430229e306,9.516194427429029e306,9.536186430427829e306,9.556178433426628e306,9.57617043642543e306,9.596162439424231e306,9.61615444242303e306,9.636146445421832e306,9.656138448420632e306,9.676130451419432e306,9.696122454418234e306,9.716114457417034e306,9.736106460415833e306,9.756098463414632e306,9.776090466413436e306,9.796082469412235e306,9.816074472411034e306,9.836066475409836e306,9.856058478408636e306,9.876050481407437e306,9.896042484406239e306,9.916034487405038e306,9.936026490403837e306,9.956018493402641e306,9.97601049640144e306,9.996002499400239e306,1.001599450239904e307,1.0035986505397841e307,1.0055978508396642e307,1.0075970511395444e307,1.0095962514394243e307,1.0115954517393042e307,1.0135946520391843e307,1.0155938523390645e307,1.0175930526389444e307,1.0195922529388244e307,1.0215914532387046e307,1.0235906535385846e307,1.0255898538384646e307,1.0275890541383448e307,1.0295882544382247e307,1.0315874547381046e307,1.033586655037985e307,1.0355858553378649e307,1.0375850556377449e307,1.0395842559376248e307,1.0415834562375051e307,1.0435826565373851e307,1.045581856837265e307,1.0475810571371452e307,1.0495802574370251e307,1.0515794577369052e307,1.0535786580367854e307,1.0555778583366653e307,1.0575770586365453e307,1.0595762589364255e307,1.0615754592363056e307,1.0635746595361855e307,1.0655738598360657e307,1.0675730601359456e307,1.0695722604358257e307,1.0715714607357059e307,1.0735706610355858e307,1.0755698613354658e307,1.0775690616353457e307,1.0795682619352261e307,1.081567462235106e307,1.0835666625349859e307,1.085565862834866e307,1.0875650631347462e307,1.0895642634346261e307,1.0915634637345063e307,1.0935626640343863e307,1.0955618643342662e307,1.0975610646341465e307,1.0995602649340265e307,1.1015594652339064e307,1.1035586655337863e307,1.1055578658336665e307,1.1075570661335466e307,1.1095562664334266e307,1.1115554667333067e307,1.1135546670331867e307,1.1155538673330668e307,1.117553067632947e307,1.1195522679328269e307,1.1215514682327068e307,1.123550668532587e307,1.125549868832467e307,1.127549069132347e307,1.1295482694322271e307,1.1315474697321072e307,1.1335466700319872e307,1.1355458703318675e307,1.1375450706317473e307,1.1395442709316273e307,1.1415434712315073e307,1.1435426715313876e307,1.1455418718312676e307,1.1475410721311474e307,1.1495402724310277e307,1.1515394727309074e307,1.1535386730307877e307,1.1555378733306677e307,1.1575370736305478e307,1.1595362739304278e307,1.161535474230308e307,1.163534674530188e307,1.165533874830068e307,1.167533075129948e307,1.169532275429828e307,1.1715314757297082e307,1.1735306760295882e307,1.1755298763294683e307,1.1775290766293483e307,1.179528276929228e307,1.1815274772291086e307,1.1835266775289884e307,1.1855258778288684e307,1.1875250781287484e307,1.1895242784286287e307,1.1915234787285085e307,1.1935226790283888e307,1.1955218793282688e307,1.1975210796281486e307,1.199520279928029e307,1.2015194802279089e307,1.203518680527789e307,1.205517880827669e307,1.2075170811275492e307,1.209516281427429e307,1.211515481727309e307,1.2135146820271893e307,1.215513882327069e307,1.2175130826269493e307,1.2195122829268294e307,1.2215114832267094e307,1.2235106835265892e307,1.2255098838264694e307,1.2275090841263495e307,1.2295082844262295e307,1.2315074847261095e307,1.2335066850259895e307,1.2355058853258698e307,1.2375050856257496e307,1.2395042859256299e307,1.2415034862255096e307,1.2435026865253897e307,1.24550188682527e307,1.24750108712515e307,1.24950028742503e307,1.25149948772491e307,1.2534986880247903e307,1.25549788832467e307,1.2574970886245504e307,1.2594962889244301e307,1.2614954892243102e307,1.2634946895241904e307,1.2654938898240705e307,1.2674930901239505e307,1.2694922904238303e307,1.2714914907237106e307,1.2734906910235906e307,1.2754898913234706e307,1.2774890916233506e307,1.2794882919232307e307,1.2814874922231107e307,1.283486692522991e307,1.285485892822871e307,1.2874850931227508e307,1.289484293422631e307,1.291483493722511e307,1.293482694022391e307,1.2954818943222709e307,1.2974810946221512e307,1.2994802949220312e307,1.3014794952219112e307,1.3034786955217915e307,1.3054778958216713e307,1.3074770961215513e307,1.3094762964214316e307,1.3114754967213116e307,1.3134746970211914e307,1.3154738973210716e307,1.3174730976209517e307,1.3194722979208317e307,1.3214714982207117e307,1.3234706985205917e307,1.3254698988204718e307,1.327469099120352e307,1.329468299420232e307,1.3314674997201119e307,1.333466700019992e307,1.335465900319872e307,1.3374651006197522e307,1.3394643009196322e307,1.3414635012195122e307,1.3434627015193923e307,1.345461901819272e307,1.3474611021191526e307,1.3494603024190323e307,1.3514595027189124e307,1.3534587030187924e307,1.3554579033186727e307,1.3574571036185527e307,1.3594563039184325e307,1.3614555042183128e307,1.3634547045181925e307,1.3654539048180728e307,1.3674531051179528e307,1.3694523054178329e307,1.371451505717713e307,1.3734507060175932e307,1.3754499063174732e307,1.377449106617353e307,1.3794483069172332e307,1.381447507217113e307,1.3834467075169933e307,1.3854459078168733e307,1.3874451081167534e307,1.3894443084166334e307,1.3914435087165134e307,1.3934427090163934e307,1.3954419093162735e307,1.3974411096161535e307,1.3994403099160335e307,1.4014395102159138e307,1.4034387105157936e307,1.4054379108156738e307,1.4074371111155539e307,1.4094363114154337e307,1.411435511715314e307,1.413434712015194e307,1.415433912315074e307,1.417433112614954e307,1.4194323129148343e307,1.421431513214714e307,1.423430713514594e307,1.425429913814474e307,1.4274291141143541e307,1.4294283144142344e307,1.4314275147141144e307,1.4334267150139945e307,1.4354259153138743e307,1.4374251156137545e307,1.4394243159136346e307,1.4414235162135146e307,1.4434227165133946e307,1.4454219168132746e307,1.447421117113155e307,1.449420317413035e307,1.451419517712915e307,1.4534187180127947e307,1.455417918312675e307,1.457417118612555e307,1.459416318912435e307,1.461415519212315e307,1.4634147195121951e307,1.4654139198120752e307,1.4674131201119552e307,1.4694123204118355e307,1.4714115207117152e307,1.4734107210115953e307,1.4754099213114755e307,1.4774091216113556e307,1.4794083219112356e307,1.4814075222111156e307,1.4834067225109956e307,1.4854059228108757e307,1.4874051231107557e307,1.4894043234106357e307,1.4914035237105158e307,1.4934027240103958e307,1.495401924310276e307,1.4974011246101558e307,1.4994003249100359e307,1.5013995252099161e307,1.5033987255097962e307,1.5053979258096762e307,1.5073971261095562e307,1.5093963264094362e307,1.511395526709316e307,1.5133947270091965e307,1.5153939273090763e307,1.5173931276089563e307,1.5193923279088366e307,1.5213915282087167e307,1.5233907285085967e307,1.5253899288084765e307,1.5273891291083567e307,1.5293883294082365e307,1.5313875297081168e307,1.5333867300079968e307,1.5353859303078768e307,1.5373851306077569e307,1.5393843309076371e307,1.5413835312075172e307,1.543382731507397e307,1.5453819318072772e307,1.547381132107157e307,1.5493803324070373e307,1.5513795327069173e307,1.5533787330067973e307,1.5553779333066774e307,1.5573771336065571e307,1.5593763339064377e307,1.5613755342063174e307,1.5633747345061975e307,1.5653739348060775e307,1.5673731351059578e307,1.5693723354058375e307,1.5713715357057178e307,1.5733707360055978e307,1.5753699363054776e307,1.5773691366053582e307,1.579368336905238e307,1.581367537205118e307,1.583366737504998e307,1.5853659378048783e307,1.587365138104758e307,1.589364338404638e307,1.5913635387045183e307,1.593362739004398e307,1.5953619393042784e307,1.5973611396041584e307,1.5993603399040384e307,1.6013595402039182e307,1.6033587405037985e307,1.6053579408036785e307,1.6073571411035586e307,1.6093563414034388e307,1.6113555417033186e307,1.613354742003199e307,1.6153539423030787e307,1.617353142602959e307,1.6193523429028387e307,1.6213515432027187e307,1.623350743502599e307,1.625349943802479e307,1.627349144102359e307,1.629348344402239e307,1.6313475447021191e307,1.6333467450019992e307,1.6353459453018794e307,1.6373451456017592e307,1.6393443459016392e307,1.6413435462015195e307,1.6433427465013995e307,1.6453419468012796e307,1.6473411471011596e307,1.6493403474010396e307,1.6513395477009196e307,1.6533387480007997e307,1.6553379483006797e307,1.6573371486005597e307,1.6593363489004398e307,1.66133554920032e307,1.6633347495002e307,1.6653339498000798e307,1.66733315009996e307,1.6693323503998401e307,1.6713315506997202e307,1.6733307509996002e307,1.6753299512994802e307,1.6773291515993602e307,1.6793283518992403e307,1.6813275521991205e307,1.6833267524990003e307,1.6853259527988804e307,1.6873251530987606e307,1.6893243533986407e307,1.6913235536985204e307,1.6933227539984007e307,1.6953219542982807e307,1.6973211545981608e307,1.6993203548980408e307,1.7013195551979208e307,1.7033187554978008e307,1.705317955797681e307,1.7073171560975611e307,1.709316356397441e307,1.7113155566973212e307,1.713314756997201e307,1.7153139572970813e307,1.7173131575969613e307,1.7193123578968413e307,1.7213115581967213e307,1.723310758496601e307,1.7253099587964816e307,1.7273091590963614e307,1.7293083593962414e307,1.7313075596961215e307,1.7333067599960017e307,1.7353059602958818e307,1.7373051605957618e307,1.7393043608956418e307,1.7413035611955216e307,1.743302761495402e307,1.745301961795282e307,1.747301162095162e307,1.749300362395042e307,1.751299562694922e307,1.7532987629948023e307,1.755297963294682e307,1.7572971635945623e307,1.759296363894442e307,1.7612955641943224e307,1.7632947644942024e307,1.7652939647940824e307,1.7672931650939625e307,1.7692923653938425e307,1.7712915656937225e307,1.7732907659936025e307,1.7752899662934828e307,1.7772891665933626e307,1.7792883668932429e307,1.7812875671931226e307,1.783286767493003e307,1.7852859677928827e307,1.7872851680927627e307,1.789284368392643e307,1.791283568692523e307,1.793282768992403e307,1.795281969292283e307,1.797281169592163e307,1.7992803698920431e307,1.8012795701919234e307,1.8032787704918032e307,1.8052779707916832e307,1.8072771710915635e307,1.8092763713914435e307,1.8112755716913235e307,1.8132747719912033e307,1.8152739722910836e307,1.8172731725909636e307,1.8192723728908436e307,1.8212715731907237e307,1.8232707734906037e307,1.825269973790484e307,1.827269174090364e307,1.829268374390244e307,1.8312675746901238e307,1.833266774990004e307,1.835265975289884e307,1.8372651755897641e307,1.8392643758896442e307,1.8412635761895244e307,1.8432627764894042e307,1.8452619767892842e307,1.8472611770891643e307,1.8492603773890445e307,1.8512595776889246e307,1.8532587779888044e307,1.8552579782886844e307,1.8572571785885644e307,1.8592563788884447e307,1.8612555791883247e307,1.863254779488205e307,1.865253979788085e307,1.8672531800879648e307,1.8692523803878448e307,1.8712515806877248e307,1.8732507809876046e307,1.875249981287485e307,1.8772491815873654e307,1.8792483818872452e307,1.8812475821871252e307,1.8832467824870053e307,1.885245982786885e307,1.8872451830867656e307,1.8892443833866453e307,1.8912435836865254e307,1.8932427839864054e307,1.8952419842862857e307,1.8972411845861657e307,1.8992403848860455e307,1.9012395851859257e307,1.9032387854858058e307,1.9052379857856858e307,1.9072371860855656e307,1.9092363863854456e307,1.9112355866853256e307,1.9132347869852064e307,1.9152339872850862e307,1.9172331875849662e307,1.9192323878848462e307,1.921231588184726e307,1.923230788484606e307,1.925229988784486e307,1.9272291890843663e307,1.9292283893842464e307,1.9312275896841266e307,1.9332267899840064e307,1.9352259902838865e307,1.9372251905837665e307,1.9392243908836468e307,1.9412235911835268e307,1.9432227914834066e307,1.9452219917832866e307,1.9472211920831666e307,1.9492203923830464e307,1.951219592682927e307,1.9532187929828072e307,1.9552179932826872e307,1.957217193582567e307,1.959216393882447e307,1.9612155941823268e307,1.9632147944822068e307,1.965213994782087e307,1.9672131950819671e307,1.9692123953818474e307,1.9712115956817274e307,1.9732107959816075e307,1.9752099962814872e307,1.9772091965813678e307,1.9792083968812475e307,1.9812075971811276e307,1.9832067974810076e307,1.9852059977808874e307,1.987205198080768e307,1.9892043983806477e307,1.991203598680528e307,1.993202798980408e307,1.995201999280288e307,1.9972011995801678e307,1.9992003998800478e307,2.0011996001799278e307,2.003198800479808e307,2.0051980007796884e307,2.0071972010795684e307,2.0091964013794484e307,2.0111956016793282e307,2.0131948019792082e307,2.0151940022790885e307,2.0171932025789686e307,2.0191924028788483e307,2.0211916031787284e307,2.0231908034786084e307,2.0251900037784887e307,2.0271892040783687e307,2.029188404378249e307,2.031187604678129e307,2.0331868049780088e307,2.0351860052778888e307,2.0371852055777688e307,2.0391844058776486e307,2.041183606177529e307,2.0431828064774094e307,2.0451820067772892e307,2.0471812070771692e307,2.0491804073770492e307,2.051179607676929e307,2.053178807976809e307,2.0551780082766893e307,2.0571772085765693e307,2.0591764088764494e307,2.0611756091763296e307,2.0631748094762097e307,2.0651740097760894e307,2.06717321007597e307,2.0691724103758497e307,2.0711716106757298e307,2.0731708109756098e307,2.0751700112754896e307,2.0771692115753696e307,2.07916841187525e307,2.0811676121751302e307,2.0831668124750102e307,2.0851660127748902e307,2.08716521307477e307,2.08916441337465e307,2.09116361367453e307,2.0931628139744103e307,2.0951620142742903e307,2.0971612145741706e307,2.0991604148740507e307,2.1011596151739304e307,2.1031588154738105e307,2.1051580157736907e307,2.1071572160735708e307,2.1091564163734505e307,2.1111556166733306e307,2.1131548169732106e307,2.1151540172730904e307,2.117153217572971e307,2.1191524178728512e307,2.1211516181727312e307,2.123150818472611e307,2.125150018772491e307,2.127149219072371e307,2.1291484193722508e307,2.1311476196721313e307,2.133146819972011e307,2.1351460202718914e307,2.1371452205717714e307,2.1391444208716514e307,2.1411436211715312e307,2.1431428214714117e307,2.1451420217712915e307,2.1471412220711715e307,2.1491404223710516e307,2.1511396226709313e307,2.1531388229708119e307,2.1551380232706917e307,2.1571372235705722e307,2.159136423870452e307,2.161135624170332e307,2.1631348244702118e307,2.1651340247700918e307,2.1671332250699718e307,2.169132425369852e307,2.1711316256697324e307,2.1731308259696124e307,2.1751300262694924e307,2.1771292265693722e307,2.1791284268692522e307,2.1811276271691323e307,2.1831268274690125e307,2.1851260277688926e307,2.1871252280687723e307,2.1891244283686524e307,2.1911236286685326e307,2.1931228289684127e307,2.195122029268293e307,2.197121229568173e307,2.1991204298680527e307,2.2011196301679328e307,2.2031188304678128e307,2.2051180307676926e307,2.2071172310675726e307,2.2091164313674534e307,2.2111156316673334e307,2.2131148319672132e307,2.2151140322670932e307,2.2171132325669732e307,2.219112432866853e307,2.2211116331667333e307,2.2231108334666133e307,2.2251100337664933e307,2.2271092340663736e307,2.2291084343662536e307,2.2311076346661334e307,2.233106834966014e307,2.2351060352658937e307,2.2371052355657738e307,2.2391044358656538e307,2.2411036361655336e307,2.2431028364654136e307,2.2451020367652939e307,2.2471012370651741e307,2.249100437365054e307,2.251099637664934e307,2.253098837964814e307,2.255098038264694e307,2.257097238564574e307,2.2590964388644543e307,2.2610956391643343e307,2.2630948394642143e307,2.2650940397640944e307,2.2670932400639744e307,2.2690924403638544e307,2.271091640663735e307,2.2730908409636145e307,2.2750900412634945e307,2.2770892415633745e307,2.2790884418632546e307,2.2810876421631346e307,2.2830868424630146e307,2.285086042762895e307,2.287085243062775e307,2.289084443362655e307,2.291083643662535e307,2.293082843962415e307,2.295082044262295e307,2.2970812445621753e307,2.2990804448620553e307,2.3010796451619354e307,2.3030788454618154e307,2.3050780457616954e307,2.3070772460615754e307,2.3090764463614555e307,2.3110756466613355e307,2.3130748469612155e307,2.3150740472610955e307,2.3170732475609756e307,2.3190724478608556e307,2.3210716481607356e307,2.323070848460616e307,2.325070048760496e307,2.3270692490603757e307,2.3290684493602557e307,2.331067649660136e307,2.333066849960016e307,2.335066050259896e307,2.3370652505597763e307,2.3390644508596564e307,2.3410636511595364e307,2.3430628514594164e307,2.3450620517592964e307,2.347061252059176e307,2.3490604523590565e307,2.3510596526589365e307,2.3530588529588166e307,2.355058053258696e307,2.3570572535585766e307,2.3590564538584566e307,2.361055654158337e307,2.3630548544582167e307,2.3650540547580967e307,2.3670532550579767e307,2.369052455357857e307,2.371051655657737e307,2.373050855957617e307,2.3750500562574974e307,2.3770492565573774e307,2.3790484568572574e307,2.381047657157137e307,2.383046857457017e307,2.385046057756897e307,2.3870452580567775e307,2.3890444583566575e307,2.391043658656537e307,2.3930428589564176e307,2.3950420592562976e307,2.3970412595561776e307,2.3990404598560577e307,2.4010396601559377e307,2.4030388604558177e307,2.405038060755698e307,2.407037261055578e307,2.409036461355458e307,2.411035661655338e307,2.4130348619552184e307,2.4150340622550984e307,2.417033262554978e307,2.419032462854858e307,2.421031663154738e307,2.423030863454618e307,2.4250300637544985e307,2.427029264054378e307,2.429028464354258e307,2.4310276646541386e307,2.4330268649540186e307,2.4350260652538987e307,2.437025265553778e307,2.4390244658536587e307,2.4410236661535387e307,2.443022866453419e307,2.4450220667532983e307,2.4470212670531783e307,2.449020467353059e307,2.4510196676529394e307,2.453018867952819e307,2.455018068252699e307,2.457017268552579e307,2.459016468852459e307,2.461015669152339e307,2.463014869452219e307,2.465014069752099e307,2.4670132700519796e307,2.4690124703518596e307,2.471011670651739e307,2.473010870951619e307,2.475010071251499e307,2.4770092715513797e307,2.4790084718512597e307,2.4810076721511393e307,2.4830068724510193e307,2.4850060727509e307,2.48700527305078e307,2.48900447335066e307,2.49100367365054e307,2.49300287395042e307,2.4950020742503e307,2.49700127455018e307,2.4990004748500595e307,2.5009996751499395e307,2.5029988754498206e307,2.5049980757497006e307,2.50699727604958e307,2.50899647634946e307,2.51099567664934e307,2.51299487694922e307,2.5149940772491007e307,2.5169932775489803e307,2.5189924778488603e307,2.5209916781487403e307,2.522990878448621e307,2.5249900787485004e307,2.526989279048381e307,2.528988479348261e307,2.530987679648141e307,2.532986879948021e307,2.5349860802479005e307,2.5369852805477805e307,2.5389844808476606e307,2.5409836811475416e307,2.542982881447421e307,2.544982081747301e307,2.546981282047181e307,2.548980482347061e307,2.550979682646941e307,2.552978882946821e307,2.5549780832467013e307,2.5569772835465813e307,2.558976483846462e307,2.5609756841463413e307,2.5629748844462214e307,2.5649740847461014e307,2.566973285045982e307,2.568972485345862e307,2.5709716856457415e307,2.5729708859456215e307,2.5749700862455015e307,2.576969286545382e307,2.578968486845262e307,2.580967687145142e307,2.582966887445022e307,2.584966087744902e307,2.586965288044782e307,2.5889644883446617e307,2.5909636886445417e307,2.5929628889444223e307,2.5949620892443023e307,2.5969612895441823e307,2.5989604898440624e307,2.6009596901439424e307,2.6029588904438224e307,2.604958090743703e307,2.6069572910435825e307,2.6089564913434625e307,2.6109556916433425e307,2.6129548919432225e307,2.6149540922431026e307,2.616953292542983e307,2.618952492842863e307,2.620951693142743e307,2.622950893442623e307,2.6249500937425027e307,2.6269492940423827e307,2.628948494342263e307,2.6309476946421433e307,2.6329468949420233e307,2.6349460952419033e307,2.6369452955417834e307,2.6389444958416634e307,2.6409436961415434e307,2.6429428964414234e307,2.6449420967413035e307,2.6469412970411835e307,2.6489404973410635e307,2.6509396976409436e307,2.6529388979408236e307,2.654938098240704e307,2.656937298540584e307,2.658936498840464e307,2.6609356991403437e307,2.6629348994402237e307,2.6649340997401037e307,2.666933300039984e307,2.6689325003398643e307,2.6709317006397443e307,2.6729309009396243e307,2.6749301012395044e307,2.6769293015393844e307,2.678928501839264e307,2.6809277021391445e307,2.6829269024390245e307,2.6849261027389045e307,2.6869253030387845e307,2.6889245033386646e307,2.6909237036385446e307,2.6929229039384246e307,2.694922104238305e307,2.6969213045381847e307,2.6989205048380647e307,2.7009197051379447e307,2.7029189054378247e307,2.704918105737705e307,2.7069173060375853e307,2.7089165063374653e307,2.7109157066373454e307,2.7129149069372254e307,2.714914107237105e307,2.716913307536985e307,2.718912507836865e307,2.7209117081367455e307,2.7229109084366255e307,2.7249101087365055e307,2.7269093090363856e307,2.7289085093362656e307,2.7309077096361456e307,2.7329069099360257e307,2.7349061102359057e307,2.7369053105357857e307,2.7389045108356657e307,2.740903711135546e307,2.742902911435426e307,2.7449021117353063e307,2.7469013120351863e307,2.7489005123350664e307,2.750899712634946e307,2.752898912934826e307,2.754898113234706e307,2.756897313534586e307,2.758896513834466e307,2.760895714134346e307,2.7628949144342266e307,2.7648941147341066e307,2.7668933150339866e307,2.768892515333866e307,2.7708917156337467e307,2.7728909159336267e307,2.7748901162335067e307,2.7768893165333867e307,2.7788885168332663e307,2.780887717133147e307,2.7828869174330273e307,2.784886117732907e307,2.786885318032787e307,2.788884518332667e307,2.790883718632547e307,2.792882918932427e307,2.794882119232307e307,2.796881319532187e307,2.7988805198320675e307,2.8008797201319476e307,2.8028789204318276e307,2.804878120731707e307,2.806877321031587e307,2.8088765213314677e307,2.8108757216313477e307,2.8128749219312277e307,2.8148741222311073e307,2.816873322530988e307,2.818872522830868e307,2.820871723130748e307,2.822870923430628e307,2.824870123730508e307,2.826869324030388e307,2.828868524330268e307,2.830867724630148e307,2.8328669249300275e307,2.8348661252299085e307,2.8368653255297885e307,2.8388645258296686e307,2.840863726129548e307,2.842862926429428e307,2.844862126729308e307,2.846861327029188e307,2.848860527329068e307,2.850859727628948e307,2.8528589279288283e307,2.854858128228709e307,2.856857328528589e307,2.8588565288284683e307,2.860855729128349e307,2.862854929428229e307,2.864854129728109e307,2.866853330027989e307,2.8688525303278685e307,2.8708517306277485e307,2.8728509309276295e307,2.874850131227509e307,2.876849331527389e307,2.878848531827269e307,2.880847732127149e307,2.882846932427029e307,2.884846132726909e307,2.886845333026789e307,2.888844533326669e307,2.89084373362655e307,2.89284293392643e307,2.8948421342263093e307,2.8968413345261893e307,2.89884053482607e307,2.90083973512595e307,2.9028389354258294e307,2.9048381357257095e307,2.9068373360255895e307,2.90883653632547e307,2.91083573662535e307,2.91283493692523e307,2.91483413722511e307,2.91683333752499e307,2.91883253782487e307,2.92083173812475e307,2.9228309384246297e307,2.92483013872451e307,2.9268293390243903e307,2.9288285393242703e307,2.9308277396241503e307,2.9328269399240303e307,2.9348261402239104e307,2.936825340523791e307,2.9388245408236704e307,2.9408237411235504e307,2.9428229414234305e307,2.9448221417233105e307,2.946821342023191e307,2.9488205423230705e307,2.950819742622951e307,2.952818942922831e307,2.954818143222711e307,2.956817343522591e307,2.9588165438224707e307,2.9608157441223507e307,2.962814944422231e307,2.9648141447221113e307,2.9668133450219913e307,2.9688125453218713e307,2.9708117456217513e307,2.9728109459216314e307,2.9748101462215114e307,2.9768093465213914e307,2.9788085468212714e307,2.9808077471211515e307,2.982806947421032e307,2.9848061477209115e307,2.9868053480207916e307,2.988804548320672e307,2.990803748620552e307,2.9928029489204316e307,2.9948021492203117e307,2.9968013495201917e307,2.9988005498200717e307,3.000799750119952e307,3.0027989504198323e307,3.0047981507197123e307,3.0067973510195923e307,3.0087965513194724e307,3.0107957516193524e307,3.012794951919232e307,3.0147941522191124e307,3.0167933525189925e307,3.0187925528188725e307,3.0207917531187525e307,3.0227909534186325e307,3.0247901537185126e307,3.026789354018393e307,3.0287885543182726e307,3.0307877546181526e307,3.0327869549180327e307,3.0347861552179127e307,3.0367853555177927e307,3.0387845558176733e307,3.0407837561175533e307,3.0427829564174333e307,3.0447821567173133e307,3.046781357017193e307,3.048780557317073e307,3.050779757616953e307,3.0527789579168334e307,3.0547781582167135e307,3.0567773585165935e307,3.0587765588164735e307,3.0607757591163535e307,3.0627749594162336e307,3.0647741597161136e307,3.0667733600159936e307,3.0687725603158737e307,3.0707717606157537e307,3.0727709609156337e307,3.0747701612155137e307,3.076769361515394e307,3.0787685618152743e307,3.0807677621151543e307,3.082766962415034e307,3.084766162714914e307,3.086765363014794e307,3.088764563314674e307,3.0907637636145544e307,3.092762963914434e307,3.0947621642143145e307,3.0967613645141945e307,3.0987605648140746e307,3.1007597651139546e307,3.102758965413834e307,3.1047581657137146e307,3.1067573660135947e307,3.1087565663134747e307,3.110755766613354e307,3.1127549669132347e307,3.114754167213115e307,3.1167533675129953e307,3.118752567812875e307,3.120751768112755e307,3.122750968412635e307,3.124750168712515e307,3.126749369012395e307,3.128748569312275e307,3.1307477696121555e307,3.1327469699120355e307,3.1347461702119155e307,3.136745370511795e307,3.138744570811675e307,3.140743771111555e307,3.1427429714114356e307,3.1447421717113157e307,3.146741372011195e307,3.1487405723110757e307,3.150739772610956e307,3.152738972910836e307,3.154738173210716e307,3.156737373510596e307,3.158736573810476e307,3.160735774110356e307,3.162734974410236e307,3.1647341747101154e307,3.166733375009996e307,3.1687325753098765e307,3.1707317756097565e307,3.172730975909636e307,3.174730176209516e307,3.176729376509396e307,3.178728576809276e307,3.1807277771091567e307,3.182726977409036e307,3.184726177708916e307,3.1867253780087967e307,3.188724578308677e307,3.190723778608557e307,3.192722978908437e307,3.194722179208317e307,3.196721379508197e307,3.198720579808077e307,3.2007197801079564e307,3.2027189804078365e307,3.204718180707717e307,3.2067173810075975e307,3.208716581307477e307,3.210715781607357e307,3.212714981907237e307,3.214714182207117e307,3.216713382506997e307,3.218712582806877e307,3.220711783106757e307,3.2227109834066377e307,3.2247101837065177e307,3.2267093840063973e307,3.2287085843062773e307,3.2307077846061573e307,3.232706984906038e307,3.234706185205918e307,3.2367053855057974e307,3.2387045858056774e307,3.240703786105558e307,3.242702986405438e307,3.244702186705318e307,3.246701387005198e307,3.248700587305078e307,3.250699787604958e307,3.252698987904838e307,3.2546981882047176e307,3.256697388504598e307,3.258696588804478e307,3.2606957891043587e307,3.2626949894042383e307,3.2646941897041183e307,3.2666933900039983e307,3.2686925903038783e307,3.270691790603759e307,3.2726909909036384e307,3.2746901912035184e307,3.2766893915033984e307,3.278688591803279e307,3.2806877921031585e307,3.282686992403039e307,3.284686192702919e307,3.286685393002799e307,3.288684593302679e307,3.2906837936025586e307,3.2926829939024387e307,3.294682194202319e307,3.2966813945021997e307,3.298680594802079e307,3.3006797951019593e307,3.3026789954018393e307,3.3046781957017193e307,3.3066773960015993e307,3.3086765963014794e307,3.3106757966013594e307,3.3126749969012394e307,3.31467419720112e307,3.3166733975009995e307,3.3186725978008795e307,3.32067179810076e307,3.32267099840064e307,3.32467019870052e307,3.3266693990003996e307,3.3286685993002796e307,3.3306677996001597e307,3.3326669999000397e307,3.33466620019992e307,3.3366654004998e307,3.3386646007996803e307,3.3406638010995603e307,3.3426630013994403e307,3.34466220169932e307,3.3466614019992004e307,3.3486606022990804e307,3.3506598025989604e307,3.3526590028988405e307,3.3546582031987205e307,3.3566574034986005e307,3.3586566037984805e307,3.360655804098361e307,3.3626550043982406e307,3.3646542046981206e307,3.3666534049980007e307,3.3686526052978807e307,3.3706518055977607e307,3.372651005897641e307,3.3746502061975213e307,3.3766494064974013e307,3.3786486067972813e307,3.380647807097161e307,3.382647007397041e307,3.3846462076969214e307,3.3866454079968014e307,3.3886446082966814e307,3.3906438085965615e307,3.3926430088964415e307,3.3946422091963215e307,3.3966414094962016e307,3.3986406097960816e307,3.4006398100959616e307,3.4026390103958416e307,3.4046382106957217e307,3.4066374109956017e307,3.4086366112954817e307,3.410635811595362e307,3.4126350118952423e307,3.4146342121951223e307,3.416633412495002e307,3.418632612794882e307,3.420631813094762e307,3.4226310133946424e307,3.424630213694522e307,3.4266294139944025e307,3.4286286142942825e307,3.4306278145941625e307,3.4326270148940425e307,3.434626215193922e307,3.4366254154938026e307,3.4386246157936826e307,3.4406238160935626e307,3.4426230163934427e307,3.4446222166933227e307,3.4466214169932027e307,3.448620617293083e307,3.4506198175929633e307,3.452619017892843e307,3.454618218192723e307,3.456617418492603e307,3.458616618792483e307,3.460615819092363e307,3.4626150193922434e307,3.4646142196921235e307,3.4666134199920035e307,3.4686126202918835e307,3.470611820591763e307,3.472611020891643e307,3.4746102211915236e307,3.4766094214914036e307,3.4786086217912837e307,3.4806078220911637e307,3.4826070223910437e307,3.4846062226909237e307,3.486605422990804e307,3.488604623290684e307,3.490603823590564e307,3.492603023890444e307,3.494602224190324e307,3.496601424490204e307,3.4986006247900834e307,3.5005998250899644e307,3.5025990253898445e307,3.5045982256897245e307,3.506597425989604e307,3.508596626289484e307,3.510595826589364e307,3.5125950268892446e307,3.514594227189124e307,3.516593427489004e307,3.5185926277888847e307,3.5205918280887647e307,3.5225910283886447e307,3.5245902286885243e307,3.526589428988405e307,3.528588629288285e307,3.530587829588165e307,3.532587029888045e307,3.5345862301879244e307,3.536585430487805e307,3.5385846307876855e307,3.540583831087565e307,3.542583031387445e307,3.544582231687325e307,3.546581431987205e307,3.548580632287085e307,3.550579832586965e307,3.552579032886845e307,3.5545782331867257e307,3.5565774334866057e307,3.5585766337864857e307,3.5605758340863653e307,3.5625750343862453e307,3.564574234686126e307,3.566573434986006e307,3.5685726352858854e307,3.5705718355857654e307,3.5725710358856454e307,3.574570236185526e307,3.576569436485406e307,3.578568636785286e307,3.580567837085166e307,3.582567037385046e307,3.584566237684926e307,3.586565437984806e307,3.5885646382846856e307,3.590563838584566e307,3.5925630388844467e307,3.5945622391843267e307,3.596561439484206e307,3.5985606397840863e307,3.6005598400839663e307,3.602559040383847e307,3.6045582406837263e307,3.6065574409836064e307,3.6085566412834864e307,3.610555841583367e307,3.612555041883247e307,3.6145542421831265e307,3.616553442483007e307,3.618552642782887e307,3.620551843082767e307,3.622551043382647e307,3.6245502436825266e307,3.6265494439824066e307,3.6285486442822877e307,3.630547844582167e307,3.632547044882047e307,3.634546245181927e307,3.6365454454818073e307,3.6385446457816873e307,3.6405438460815673e307,3.6425430463814474e307,3.6445422466813274e307,3.646541446981208e307,3.648540647281088e307,3.6505398475809675e307,3.6525390478808475e307,3.654538248180728e307,3.656537448480608e307,3.6585366487804876e307,3.6605358490803676e307,3.6625350493802476e307,3.6645342496801276e307,3.666533449980008e307,3.668532650279888e307,3.670531850579768e307,3.6725310508796483e307,3.6745302511795283e307,3.6765294514794083e307,3.6785286517792883e307,3.680527852079169e307,3.682527052379049e307,3.6845262526789284e307,3.6865254529788084e307,3.6885246532786885e307,3.6905238535785685e307,3.6925230538784485e307,3.6945222541783285e307,3.696521454478208e307,3.698520654778089e307,3.700519855077969e307,3.702519055377849e307,3.7045182556777287e307,3.7065174559776087e307,3.7085166562774887e307,3.710515856577369e307,3.7125150568772493e307,3.7145142571771293e307,3.7165134574770093e307,3.7185126577768894e307,3.7205118580767694e307,3.722511058376649e307,3.72451025867653e307,3.72650945897641e307,3.72850865927629e307,3.7305078595761695e307,3.7325070598760496e307,3.7345062601759296e307,3.7365054604758096e307,3.7385046607756896e307,3.7405038610755697e307,3.742503061375449e307,3.744502261675329e307,3.746501461975209e307,3.74850066227509e307,3.750499862574971e307,3.752499062874851e307,3.754498263174731e307,3.7564974634746104e307,3.7584966637744904e307,3.7604958640743704e307,3.7624950643742505e307,3.7644942646741305e307,3.7664934649740105e307,3.76849266527389e307,3.77049186557377e307,3.77249106587365e307,3.7744902661735306e307,3.7764894664734106e307,3.7784886667732907e307,3.7804878670731707e307,3.7824870673730507e307,3.784486267672931e307,3.7864854679728113e307,3.7884846682726913e307,3.7904838685725713e307,3.7924830688724514e307,3.794482269172331e307,3.796481469472211e307,3.798480669772091e307,3.8004798700719715e307,3.8024790703718515e307,3.8044782706717315e307,3.8064774709716115e307,3.8084766712714916e307,3.8104758715713716e307,3.812475071871251e307,3.814474272171131e307,3.816473472471011e307,3.818472672770891e307,3.820471873070771e307,3.822471073370652e307,3.824470273670532e307,3.8264694739704123e307,3.8284686742702923e307,3.8304678745701724e307,3.8324670748700524e307,3.8344662751699324e307,3.8364654754698124e307,3.838464675769692e307,3.840463876069572e307,3.842463076369452e307,3.844462276669332e307,3.846461476969212e307,3.848460677269092e307,3.8504598775689716e307,3.8524590778688527e307,3.8544582781687327e307,3.8564574784686127e307,3.858456678768493e307,3.8604558790683733e307,3.8624550793682533e307,3.864454279668133e307,3.866453479968013e307,3.868452680267893e307,3.870451880567773e307,3.872451080867653e307,3.874450281167533e307,3.8764494814674125e307,3.8784486817672935e307,3.8804478820671735e307,3.8824470823670536e307,3.884446282666933e307,3.886445482966813e307,3.888444683266693e307,3.890443883566573e307,3.892443083866453e307,3.8944422841663327e307,3.896441484466214e307,3.898440684766094e307,3.900439885065974e307,3.9024390853658533e307,3.9044382856657344e307,3.9064374859656144e307,3.9084366862654944e307,3.910435886565374e307,3.912435086865254e307,3.914434287165134e307,3.916433487465014e307,3.918432687764894e307,3.9204318880647736e307,3.9224310883646536e307,3.9244302886645336e307,3.9264294889644137e307,3.928428689264294e307,3.930427889564174e307,3.932427089864055e307,3.9344262901639353e307,3.936425490463815e307,3.938424690763695e307,3.940423891063575e307,3.942423091363455e307,3.944422291663335e307,3.9464214919632144e307,3.9484206922630945e307,3.9504198925629745e307,3.9524190928628545e307,3.954418293162735e307,3.956417493462615e307,3.958416693762495e307,3.960415894062375e307,3.962415094362255e307,3.964414294662135e307,3.9664134949620147e307,3.9684126952618947e307,3.9704118955617757e307,3.972411095861656e307,3.9744102961615353e307,3.9764094964614153e307,3.9784086967612954e307,3.980407897061176e307,3.982407097361056e307,3.984406297660936e307,3.986405497960816e307,3.988404698260696e307,3.990403898560576e307,3.9924030988604555e307,3.9944022991603356e307,3.9964014994602156e307,3.9984006997600956e307,4.0003999000599756e307,4.0023991003598557e307,4.004398300659735e307,4.0063975009596167e307,4.008396701259497e307,4.010395901559377e307,4.012395101859257e307,4.014394302159137e307,4.016393502459017e307,4.0183927027588964e307,4.0203919030587764e307,4.0223911033586564e307,4.0243903036585365e307,4.0263895039584165e307,4.0283887042582965e307,4.030387904558177e307,4.032387104858057e307,4.034386305157937e307,4.0363855054578166e307,4.0383847057576967e307,4.0403839060575767e307,4.0423831063574567e307,4.044382306657337e307,4.0463815069572173e307,4.0483807072570973e307,4.0503799075569773e307,4.0523791078568573e307,4.0543783081567374e307,4.056377508456618e307,4.058376708756498e307,4.060375909056378e307,4.0623751093562575e307,4.0643743096561375e307,4.0663735099560175e307,4.0683727102558976e307,4.0703719105557776e307,4.0723711108556576e307,4.074370311155537e307,4.076369511455417e307,4.078368711755297e307,4.080367912055178e307,4.0823671123550587e307,4.084366312654939e307,4.086365512954819e307,4.0883647132546983e307,4.0903639135545784e307,4.0923631138544584e307,4.0943623141543384e307,4.0963615144542184e307,4.0983607147540985e307,4.100359915053978e307,4.102359115353858e307,4.104358315653738e307,4.106357515953618e307,4.1083567162534986e307,4.1103559165533786e307,4.1123551168532587e307,4.1143543171531387e307,4.1163535174530187e307,4.118352717752899e307,4.1203519180527793e307,4.1223511183526593e307,4.1243503186525393e307,4.126349518952419e307,4.128348719252299e307,4.130347919552179e307,4.132347119852059e307,4.1343463201519394e307,4.1363455204518195e307,4.1383447207516995e307,4.1403439210515795e307,4.1423431213514596e307,4.1443423216513396e307,4.146341521951219e307,4.148340722251099e307,4.150339922550979e307,4.152339122850859e307,4.1543383231507397e307,4.1563375234506197e307,4.1583367237505e307,4.1603359240503803e307,4.1623351243502603e307,4.1643343246501403e307,4.1663335249500204e307,4.1683327252499004e307,4.1703319255497804e307,4.17233112584966e307,4.17433032614954e307,4.17632952644942e307,4.1783287267493e307,4.18032792704918e307,4.1823271273490596e307,4.1843263276489406e307,4.1863255279488206e307,4.1883247282487007e307,4.19032392854858e307,4.192323128848461e307,4.194322329148341e307,4.1963215294482213e307,4.198320729748101e307,4.200319930047981e307,4.202319130347861e307,4.204318330647741e307,4.206317530947621e307,4.2083167312475004e307,4.2103159315473815e307,4.2123151318472615e307,4.2143143321471415e307,4.216313532447021e307,4.218312732746901e307,4.220311933046781e307,4.222311133346661e307,4.224310333646541e307,4.226309533946421e307,4.2283087342463017e307,4.2303079345461817e307,4.232307134846062e307,4.234306335145942e307,4.2363055354458223e307,4.2383047357457023e307,4.2403039360455824e307,4.242303136345462e307,4.244302336645342e307,4.246301536945222e307,4.248300737245102e307,4.250299937544982e307,4.252299137844862e307,4.2542983381447416e307,4.2562975384446216e307,4.2582967387445016e307,4.2602959390443816e307,4.262295139344262e307,4.264294339644143e307,4.266293539944023e307,4.2682927402439027e307,4.270291940543783e307,4.272291140843663e307,4.274290341143543e307,4.276289541443423e307,4.278288741743303e307,4.2802879420431824e307,4.2822871423430624e307,4.2842863426429425e307,4.2862855429428235e307,4.288284743242703e307,4.290283943542583e307,4.292283143842463e307,4.294282344142343e307,4.296281544442223e307,4.2982807447421026e307,4.3002799450419827e307,4.3022791453418637e307,4.3042783456417437e307,4.3062775459416233e307,4.3082767462415033e307,4.3102759465413833e307,4.3122751468412643e307,4.314274347141144e307,4.316273547441024e307,4.318272747740904e307,4.320271948040784e307,4.322271148340664e307,4.3242703486405435e307,4.3262695489404235e307,4.3282687492403035e307,4.3302679495401836e307,4.3322671498400636e307,4.3342663501399436e307,4.336265550439823e307,4.338264750739705e307,4.3402639510395847e307,4.3422631513394647e307,4.344262351639345e307,4.346261551939225e307,4.348260752239105e307,4.3502599525389843e307,4.3522591528388644e307,4.3542583531387444e307,4.3562575534386244e307,4.3582567537385044e307,4.3602559540383845e307,4.362255154338264e307,4.364254354638145e307,4.366253554938025e307,4.368252755237905e307,4.3702519555377846e307,4.3722511558376646e307,4.3742503561375447e307,4.3762495564374257e307,4.378248756737305e307,4.380247957037185e307,4.3822471573370653e307,4.3842463576369453e307,4.3862455579368253e307,4.388244758236705e307,4.390243958536586e307,4.392243158836466e307,4.394242359136346e307,4.3962415594362255e307,4.3982407597361055e307,4.4002399600359855e307,4.4022391603358655e307,4.4042383606357456e307,4.4062375609356256e307,4.408236761235505e307,4.410235961535385e307,4.412235161835266e307,4.4142343621351457e307,4.4162335624350267e307,4.418232762734907e307,4.420231963034787e307,4.4222311633346663e307,4.4242303636345463e307,4.4262295639344264e307,4.4282287642343064e307,4.4302279645341864e307,4.4322271648340664e307,4.434226365133946e307,4.436225565433826e307,4.438224765733706e307,4.4402239660335865e307,4.4422231663334666e307,4.4442223666333466e307,4.4462215669332266e307,4.4482207672331067e307,4.450219967532987e307,4.452219167832867e307,4.454218368132747e307,4.4562175684326273e307,4.4582167687325073e307,4.460215969032387e307,4.462215169332267e307,4.464214369632147e307,4.4662135699320274e307,4.4682127702319074e307,4.4702119705317874e307,4.4722111708316675e307,4.4742103711315475e307,4.4762095714314275e307,4.478208771731307e307,4.480207972031187e307,4.482207172331067e307,4.484206372630947e307,4.4862055729308277e307,4.4882047732307077e307,4.4902039735305877e307,4.492203173830468e307,4.4942023741303483e307,4.496201574430228e307,4.498200774730108e307,4.500199975029988e307,4.502199175329868e307,4.504198375629748e307,4.506197575929628e307,4.508196776229508e307,4.510195976529387e307,4.512195176829268e307,4.514194377129148e307,4.516193577429028e307,4.518192777728909e307,4.520191978028789e307,4.522191178328669e307,4.524190378628549e307,4.526189578928429e307,4.528188779228309e307,4.530187979528189e307,4.532187179828069e307,4.534186380127949e307,4.536185580427829e307,4.538184780727709e307,4.540183981027589e307,4.54218318132747e307,4.544182381627349e307,4.546181581927229e307,4.548180782227109e307,4.550179982526989e307,4.552179182826869e307,4.554178383126749e307,4.556177583426629e307,4.558176783726509e307,4.56017598402639e307,4.562175184326269e307,4.564174384626149e307,4.566173584926029e307,4.56817278522591e307,4.57017198552579e307,4.57217118582567e307,4.57417038612555e307,4.57616958642543e307,4.57816878672531e307,4.58016798702519e307,4.582167187325069e307,4.584166387624949e307,4.58616558792483e307,4.58816478822471e307,4.59016398852459e307,4.59216318882447e307,4.594162389124351e307,4.596161589424231e307,4.598160789724111e307,4.600159990023991e307,4.602159190323871e307,4.604158390623751e307,4.606157590923631e307,4.608156791223511e307,4.610155991523391e307,4.612155191823271e307,4.614154392123151e307,4.616153592423031e307,4.61815279272291e307,4.620151993022791e307,4.622151193322671e307,4.624150393622551e307,4.626149593922431e307,4.628148794222311e307,4.630147994522191e307,4.632147194822071e307,4.634146395121951e307,4.636145595421831e307,4.638144795721711e307,4.640143996021591e307,4.642143196321471e307,4.644142396621351e307,4.646141596921232e307,4.648140797221112e307,4.650139997520992e307,4.652139197820871e307,4.654138398120751e307,4.656137598420631e307,4.658136798720511e307,4.660135999020391e307,4.662135199320272e307,4.664134399620152e307,4.666133599920032e307,4.668132800219912e307,4.670132000519792e307,4.672131200819673e307,4.674130401119553e307,4.676129601419433e307,4.678128801719313e307,4.680128002019193e307,4.682127202319073e307,4.684126402618953e307,4.686125602918833e307,4.688124803218713e307,4.690124003518592e307,4.692123203818472e307,4.694122404118352e307,4.696121604418233e307,4.698120804718113e307,4.700120005017993e307,4.702119205317873e307,4.704118405617753e307,4.706117605917633e307,4.708116806217513e307,4.710116006517393e307,4.712115206817273e307,4.714114407117153e307,4.716113607417033e307,4.718112807716913e307,4.720112008016793e307,4.722111208316674e307,4.724110408616553e307,4.726109608916433e307,4.728108809216313e307,4.730108009516193e307,4.732107209816073e307,4.734106410115953e307,4.736105610415834e307,4.738104810715714e307,4.740104011015594e307,4.742103211315474e307,4.744102411615354e307,4.746101611915234e307,4.748100812215115e307,4.750100012514995e307,4.752099212814875e307,4.754098413114755e307,4.756097613414635e307,4.758096813714515e307,4.760096014014394e307,4.762095214314274e307,4.764094414614154e307,4.766093614914034e307,4.768092815213914e307,4.770092015513794e307,4.772091215813674e307,4.774090416113555e307,4.776089616413435e307,4.778088816713315e307,4.780088017013194e307,4.782087217313075e307,4.784086417612955e307,4.786085617912835e307,4.788084818212715e307,4.790084018512595e307,4.792083218812475e307,4.794082419112355e307,4.796081619412235e307,4.798080819712115e307,4.800080020011995e307,4.802079220311875e307,4.804078420611755e307,4.806077620911635e307,4.808076821211515e307,4.810076021511396e307,4.812075221811276e307,4.814074422111156e307,4.816073622411036e307,4.818072822710916e307,4.820072023010796e307,4.822071223310676e307,4.824070423610557e307,4.826069623910437e307,4.828068824210317e307,4.830068024510197e307,4.832067224810076e307,4.834066425109956e307,4.836065625409836e307,4.838064825709716e307,4.840064026009596e307,4.842063226309476e307,4.844062426609356e307,4.846061626909236e307,4.848060827209116e307,4.850060027508996e307,4.852059227808876e307,4.854058428108756e307,4.856057628408637e307,4.858056828708517e307,4.860056029008397e307,4.862055229308277e307,4.864054429608157e307,4.866053629908037e307,4.868052830207917e307,4.870052030507796e307,4.872051230807676e307,4.874050431107556e307,4.876049631407437e307,4.878048831707317e307,4.880048032007197e307,4.882047232307077e307,4.8840464326069575e307,4.886045632906838e307,4.888044833206717e307,4.890044033506597e307,4.892043233806478e307,4.894042434106358e307,4.896041634406238e307,4.898040834706118e307,4.900040035005998e307,4.902039235305878e307,4.904038435605758e307,4.906037635905638e307,4.908036836205518e307,4.910036036505398e307,4.912035236805278e307,4.914034437105158e307,4.916033637405038e307,4.918032837704918e307,4.920032038004798e307,4.922031238304678e307,4.924030438604558e307,4.926029638904437e307,4.928028839204318e307,4.930028039504199e307,4.932027239804079e307,4.934026440103959e307,4.936025640403839e307,4.938024840703719e307,4.940024041003598e307,4.942023241303478e307,4.944022441603358e307,4.946021641903238e307,4.948020842203118e307,4.950020042502998e307,4.952019242802879e307,4.954018443102759e307,4.956017643402639e307,4.958016843702519e307,4.960016044002399e307,4.962015244302279e307,4.964014444602159e307,4.96601364490204e307,4.96801284520192e307,4.9700120455018e307,4.97201124580168e307,4.97401044610156e307,4.97600964640144e307,4.97800884670132e307,4.9800080470012e307,4.98200724730108e307,4.98400644760096e307,4.98600564790084e307,4.98800484820072e307,4.9900040485006e307,4.99200324880048e307,4.99400244910036e307,4.996001649400239e307,4.998000849700119e307,5.000000049999999e307,5.00199925029988e307,5.003998450599761e307,5.005997650899641e307,5.007996851199521e307,5.009996051499401e307,5.01199525179928e307,5.01399445209916e307,5.01599365239904e307,5.01799285269892e307,5.0199920529988e307,5.02199125329868e307,5.02399045359856e307,5.02598965389844e307,5.02798885419832e307,5.0299880544982e307,5.03198725479808e307,5.033986455097961e307,5.035985655397841e307,5.037984855697721e307,5.039984055997602e307,5.041983256297482e307,5.043982456597362e307,5.045981656897242e307,5.047980857197121e307,5.049980057497001e307,5.051979257796881e307,5.053978458096762e307,5.055977658396642e307,5.057976858696522e307,5.059976058996402e307,5.061975259296282e307,5.063974459596162e307,5.065973659896042e307,5.067972860195921e307,5.069972060495801e307,5.071971260795681e307,5.073970461095561e307,5.075969661395442e307,5.077968861695322e307,5.079968061995203e307,5.081967262295082e307,5.083966462594962e307,5.085965662894842e307,5.087964863194722e307,5.089964063494602e307,5.091963263794482e307,5.093962464094362e307,5.095961664394242e307,5.097960864694122e307,5.099960064994002e307,5.101959265293882e307,5.103958465593762e307,5.105957665893642e307,5.107956866193523e307,5.109956066493403e307,5.111955266793283e307,5.113954467093164e307,5.115953667393044e307,5.117952867692924e307,5.119952067992803e307,5.121951268292683e307,5.123950468592563e307,5.125949668892443e307,5.127948869192323e307,5.129948069492203e307,5.131947269792084e307,5.133946470091964e307,5.135945670391844e307,5.137944870691723e307,5.139944070991603e307,5.141943271291483e307,5.143942471591363e307,5.145941671891243e307,5.147940872191123e307,5.149940072491004e307,5.151939272790884e307,5.153938473090764e307,5.155937673390644e307,5.157936873690524e307,5.159936073990404e307,5.161935274290284e307,5.163934474590164e307,5.165933674890044e307,5.167932875189924e307,5.169932075489804e307,5.171931275789684e307,5.173930476089564e307,5.175929676389443e307,5.177928876689323e307,5.179928076989203e307,5.181927277289083e307,5.183926477588965e307,5.185925677888845e307,5.187924878188726e307,5.189924078488605e307,5.191923278788485e307,5.193922479088365e307,5.195921679388245e307,5.197920879688125e307,5.199920079988005e307,5.201919280287885e307,5.203918480587765e307,5.205917680887645e307,5.207916881187526e307,5.209916081487405e307,5.211915281787285e307,5.213914482087165e307,5.215913682387045e307,5.217912882686925e307,5.219912082986805e307,5.221911283286685e307,5.223910483586566e307,5.225909683886446e307,5.227908884186325e307,5.229908084486205e307,5.231907284786085e307,5.233906485085966e307,5.235905685385846e307,5.237904885685726e307,5.239904085985606e307,5.241903286285486e307,5.243902486585366e307,5.245901686885246e307,5.247900887185125e307,5.249900087485005e307,5.251899287784885e307,5.253898488084765e307,5.255897688384645e307,5.257896888684526e307,5.259896088984407e307,5.261895289284287e307,5.263894489584167e307,5.265893689884047e307,5.267892890183927e307,5.269892090483807e307,5.271891290783687e307,5.273890491083567e307,5.275889691383447e307,5.277888891683327e307,5.279888091983207e307,5.281887292283087e307,5.283886492582966e307,5.285885692882847e307,5.287884893182727e307,5.289884093482607e307,5.291883293782487e307,5.293882494082367e307,5.295881694382247e307,5.297880894682128e307,5.299880094982007e307,5.301879295281887e307,5.303878495581767e307,5.305877695881647e307,5.307876896181527e307,5.309876096481408e307,5.311875296781288e307,5.313874497081168e307,5.315873697381048e307,5.317872897680927e307,5.319872097980807e307,5.321871298280687e307,5.323870498580567e307,5.325869698880447e307,5.327868899180327e307,5.329868099480207e307,5.331867299780088e307,5.333866500079968e307,5.335865700379849e307,5.337864900679729e307,5.339864100979609e307,5.341863301279489e307,5.343862501579369e307,5.345861701879249e307,5.347860902179129e307,5.349860102479009e307,5.351859302778889e307,5.353858503078769e307,5.355857703378648e307,5.357856903678528e307,5.359856103978408e307,5.361855304278289e307,5.363854504578169e307,5.365853704878049e307,5.367852905177929e307,5.369852105477809e307,5.371851305777689e307,5.373850506077569e307,5.375849706377449e307,5.377848906677329e307,5.379848106977209e307,5.381847307277089e307,5.383846507576969e307,5.385845707876849e307,5.38784490817673e307,5.389844108476609e307,5.391843308776489e307,5.393842509076369e307,5.395841709376249e307,5.397840909676129e307,5.399840109976009e307,5.401839310275889e307,5.403838510575769e307,5.405837710875649e307,5.40783691117553e307,5.40983611147541e307,5.41183531177529e307,5.413834512075171e307,5.415833712375051e307,5.417832912674931e307,5.419832112974811e307,5.421831313274691e307,5.423830513574571e307,5.42582971387445e307,5.42782891417433e307,5.42982811447421e307,5.43182731477409e307,5.43382651507397e307,5.43582571537385e307,5.43782491567373e307,5.439824115973611e307,5.441823316273491e307,5.443822516573371e307,5.445821716873251e307,5.447820917173131e307,5.449820117473011e307,5.451819317772891e307,5.453818518072771e307,5.455817718372651e307,5.457816918672531e307,5.459816118972411e307,5.461815319272291e307,5.463814519572171e307,5.465813719872051e307,5.467812920171931e307,5.469812120471811e307,5.471811320771691e307,5.473810521071571e307,5.475809721371451e307,5.477808921671331e307,5.479808121971211e307,5.481807322271092e307,5.483806522570972e307,5.485805722870852e307,5.487804923170732e307,5.489804123470613e307,5.491803323770493e307,5.493802524070373e307,5.495801724370253e307,5.497800924670132e307,5.499800124970012e307,5.501799325269892e307,5.503798525569772e307,5.505797725869652e307,5.507796926169532e307,5.509796126469412e307,5.511795326769292e307,5.513794527069172e307,5.515793727369052e307,5.517792927668932e307,5.519792127968813e307,5.521791328268693e307,5.523790528568573e307,5.525789728868453e307,5.527788929168333e307,5.529788129468213e307,5.531787329768093e307,5.533786530067973e307,5.535785730367852e307,5.537784930667732e307,5.539784130967612e307,5.541783331267493e307,5.543782531567373e307,5.545781731867253e307,5.547780932167133e307,5.549780132467013e307,5.551779332766893e307,5.553778533066772e307,5.555777733366654e307,5.557776933666534e307,5.559776133966414e307,5.561775334266294e307,5.563774534566174e307,5.565773734866055e307,5.567772935165934e307,5.569772135465814e307,5.571771335765694e307,5.573770536065574e307,5.575769736365454e307,5.577768936665334e307,5.579768136965214e307,5.581767337265094e307,5.583766537564974e307,5.585765737864854e307,5.587764938164734e307,5.589764138464614e307,5.591763338764494e307,5.593762539064375e307,5.595761739364255e307,5.597760939664135e307,5.599760139964015e307,5.601759340263895e307,5.603758540563775e307,5.605757740863654e307,5.607756941163534e307,5.609756141463414e307,5.611755341763294e307,5.613754542063174e307,5.615753742363054e307,5.617752942662935e307,5.619752142962815e307,5.621751343262695e307,5.623750543562575e307,5.625749743862454e307,5.627748944162334e307,5.6297481444622155e307,5.631747344762096e307,5.633746545061976e307,5.635745745361856e307,5.637744945661736e307,5.639744145961616e307,5.641743346261496e307,5.643742546561376e307,5.645741746861256e307,5.647740947161136e307,5.649740147461016e307,5.651739347760896e307,5.653738548060776e307,5.655737748360656e307,5.657736948660536e307,5.659736148960416e307,5.661735349260295e307,5.663734549560175e307,5.665733749860055e307,5.667732950159936e307,5.669732150459817e307,5.671731350759697e307,5.673730551059577e307,5.675729751359457e307,5.677728951659336e307,5.679728151959216e307,5.681727352259096e307,5.683726552558976e307,5.685725752858856e307,5.687724953158736e307,5.689724153458616e307,5.691723353758496e307,5.693722554058376e307,5.695721754358256e307,5.697720954658136e307,5.699720154958016e307,5.701719355257896e307,5.703718555557777e307,5.705717755857658e307,5.707716956157538e307,5.709716156457418e307,5.711715356757298e307,5.713714557057178e307,5.715713757357057e307,5.717712957656937e307,5.719712157956818e307,5.721711358256698e307,5.723710558556578e307,5.725709758856458e307,5.727708959156338e307,5.729708159456218e307,5.731707359756098e307,5.733706560055977e307,5.735705760355857e307,5.737704960655737e307,5.739704160955618e307,5.741703361255498e307,5.743702561555378e307,5.745701761855259e307,5.747700962155138e307,5.749700162455018e307,5.751699362754898e307,5.753698563054778e307,5.755697763354658e307,5.757696963654538e307,5.759696163954418e307,5.761695364254298e307,5.763694564554178e307,5.765693764854058e307,5.767692965153938e307,5.769692165453818e307,5.771691365753698e307,5.773690566053578e307,5.775689766353458e307,5.777688966653339e307,5.77968816695322e307,5.7816873672531e307,5.78368656755298e307,5.785685767852859e307,5.787684968152739e307,5.789684168452619e307,5.791683368752499e307,5.793682569052379e307,5.795681769352259e307,5.79768096965214e307,5.79968016995202e307,5.8016793702519e307,5.803678570551779e307,5.805677770851659e307,5.807676971151539e307,5.809676171451419e307,5.811675371751299e307,5.81367457205118e307,5.81567377235106e307,5.81767297265094e307,5.81967217295082e307,5.8216713732507e307,5.82367057355058e307,5.82566977385046e307,5.82766897415034e307,5.82966817445022e307,5.8316673747501e307,5.83366657504998e307,5.83566577534986e307,5.83766497564974e307,5.83966417594962e307,5.841663376249499e307,5.843662576549379e307,5.845661776849259e307,5.84766097714914e307,5.84966017744902e307,5.851659377748901e307,5.853658578048782e307,5.855657778348662e307,5.857656978648541e307,5.859656178948421e307,5.861655379248301e307,5.863654579548181e307,5.865653779848061e307,5.867652980147941e307,5.869652180447821e307,5.871651380747701e307,5.873650581047582e307,5.875649781347461e307,5.877648981647341e307,5.879648181947221e307,5.881647382247101e307,5.883646582546981e307,5.885645782846861e307,5.887644983146742e307,5.889644183446622e307,5.891643383746502e307,5.893642584046381e307,5.895641784346261e307,5.897640984646141e307,5.899640184946022e307,5.901639385245902e307,5.903638585545782e307,5.905637785845662e307,5.907636986145542e307,5.909636186445422e307,5.911635386745302e307,5.913634587045181e307,5.915633787345061e307,5.917632987644941e307,5.919632187944821e307,5.921631388244701e307,5.923630588544581e307,5.925629788844463e307,5.927628989144342e307,5.929628189444223e307,5.931627389744103e307,5.933626590043983e307,5.935625790343863e307,5.937624990643743e307,5.939624190943623e307,5.941623391243503e307,5.943622591543383e307,5.945621791843263e307,5.947620992143143e307,5.949620192443022e307,5.951619392742903e307,5.953618593042783e307,5.955617793342663e307,5.957616993642543e307,5.959616193942423e307,5.961615394242304e307,5.963614594542184e307,5.965613794842063e307,5.967612995141943e307,5.969612195441823e307,5.971611395741703e307,5.973610596041583e307,5.975609796341464e307,5.977608996641344e307,5.979608196941224e307,5.981607397241104e307,5.983606597540983e307,5.985605797840863e307,5.987604998140743e307,5.989604198440623e307,5.991603398740503e307,5.993602599040383e307,5.995601799340263e307,5.997600999640143e307,5.999600199940024e307,6.001599400239904e307,6.003598600539785e307,6.005597800839665e307,6.007597001139545e307,6.009596201439425e307,6.011595401739305e307,6.013594602039185e307,6.015593802339065e307,6.017593002638945e307,6.019592202938825e307,6.021591403238704e307,6.023590603538584e307,6.025589803838464e307,6.027589004138345e307,6.029588204438225e307,6.031587404738105e307,6.033586605037985e307,6.035585805337865e307,6.037585005637745e307,6.039584205937625e307,6.041583406237505e307,6.043582606537385e307,6.045581806837265e307,6.047581007137145e307,6.049580207437025e307,6.051579407736905e307,6.053578608036786e307,6.055577808336665e307,6.057577008636545e307,6.059576208936425e307,6.061575409236305e307,6.063574609536185e307,6.065573809836065e307,6.067573010135945e307,6.069572210435825e307,6.071571410735705e307,6.073570611035585e307,6.075569811335465e307,6.077569011635347e307,6.079568211935227e307,6.081567412235107e307,6.083566612534987e307,6.085565812834867e307,6.087565013134747e307,6.089564213434627e307,6.091563413734506e307,6.093562614034386e307,6.095561814334266e307,6.097561014634146e307,6.099560214934026e307,6.101559415233906e307,6.103558615533787e307,6.105557815833667e307,6.107557016133547e307,6.109556216433427e307,6.111555416733307e307,6.113554617033187e307,6.115553817333067e307,6.117553017632947e307,6.119552217932827e307,6.121551418232707e307,6.123550618532587e307,6.125549818832467e307,6.127549019132347e307,6.129548219432227e307,6.131547419732107e307,6.133546620031987e307,6.135545820331867e307,6.137545020631747e307,6.139544220931627e307,6.141543421231507e307,6.143542621531387e307,6.145541821831267e307,6.147541022131147e307,6.149540222431027e307,6.151539422730907e307,6.153538623030788e307,6.155537823330669e307,6.157537023630549e307,6.159536223930429e307,6.161535424230309e307,6.163534624530188e307,6.165533824830068e307,6.167533025129948e307,6.169532225429828e307,6.171531425729708e307,6.173530626029588e307,6.175529826329468e307,6.177529026629348e307,6.179528226929228e307,6.181527427229108e307,6.183526627528989e307,6.185525827828869e307,6.187525028128749e307,6.189524228428629e307,6.191523428728509e307,6.193522629028389e307,6.195521829328269e307,6.197521029628149e307,6.199520229928029e307,6.201519430227908e307,6.203518630527788e307,6.205517830827668e307,6.207517031127549e307,6.209516231427429e307,6.211515431727309e307,6.213514632027189e307,6.215513832327069e307,6.217513032626949e307,6.219512232926829e307,6.221511433226709e307,6.223510633526589e307,6.225509833826469e307,6.22750903412635e307,6.22950823442623e307,6.231507434726111e307,6.23350663502599e307,6.23550583532587e307,6.23750503562575e307,6.23950423592563e307,6.24150343622551e307,6.24350263652539e307,6.24550183682527e307,6.24750103712515e307,6.24950023742503e307,6.25149943772491e307,6.25349863802479e307,6.25549783832467e307,6.257497038624551e307,6.259496238924431e307,6.261495439224311e307,6.263494639524191e307,6.265493839824071e307,6.267493040123951e307,6.269492240423831e307,6.27149144072371e307,6.27349064102359e307,6.27548984132347e307,6.27748904162335e307,6.27948824192323e307,6.28148744222311e307,6.283486642522991e307,6.285485842822871e307,6.287485043122751e307,6.289484243422631e307,6.29148344372251e307,6.293482644022391e307,6.295481844322271e307,6.297481044622151e307,6.299480244922031e307,6.301479445221912e307,6.303478645521792e307,6.305477845821672e307,6.307477046121552e307,6.309476246421432e307,6.311475446721312e307,6.313474647021192e307,6.315473847321072e307,6.317473047620952e307,6.319472247920832e307,6.321471448220712e307,6.323470648520592e307,6.325469848820472e307,6.327469049120351e307,6.329468249420231e307,6.331467449720112e307,6.333466650019993e307,6.335465850319873e307,6.337465050619753e307,6.339464250919633e307,6.341463451219513e307,6.343462651519392e307,6.345461851819272e307,6.347461052119152e307,6.349460252419032e307,6.351459452718912e307,6.353458653018792e307,6.355457853318672e307,6.357457053618552e307,6.359456253918433e307,6.361455454218312e307,6.363454654518192e307,6.365453854818072e307,6.367453055117953e307,6.369452255417833e307,6.371451455717713e307,6.373450656017593e307,6.3754498563174735e307,6.377449056617354e307,6.379448256917234e307,6.381447457217113e307,6.383446657516993e307,6.385445857816874e307,6.387445058116754e307,6.389444258416634e307,6.391443458716514e307,6.393442659016394e307,6.395441859316274e307,6.397441059616154e307,6.399440259916033e307,6.401439460215913e307,6.403438660515793e307,6.405437860815674e307,6.407437061115554e307,6.409436261415434e307,6.411435461715315e307,6.413434662015194e307,6.415433862315074e307,6.417433062614954e307,6.419432262914834e307,6.421431463214714e307,6.423430663514594e307,6.425429863814474e307,6.427429064114354e307,6.429428264414234e307,6.431427464714114e307,6.433426665013994e307,6.435425865313874e307,6.437425065613754e307,6.439424265913634e307,6.441423466213515e307,6.443422666513395e307,6.445421866813275e307,6.447421067113155e307,6.449420267413035e307,6.451419467712915e307,6.453418668012795e307,6.455417868312675e307,6.457417068612555e307,6.459416268912435e307,6.461415469212315e307,6.463414669512196e307,6.465413869812076e307,6.467413070111956e307,6.469412270411835e307,6.471411470711715e307,6.473410671011595e307,6.475409871311475e307,6.477409071611356e307,6.479408271911236e307,6.481407472211116e307,6.483406672510996e307,6.485405872810876e307,6.487405073110756e307,6.489404273410636e307,6.491403473710516e307,6.493402674010396e307,6.495401874310276e307,6.497401074610156e307,6.499400274910036e307,6.501399475209916e307,6.503398675509796e307,6.505397875809676e307,6.507397076109555e307,6.509396276409435e307,6.511395476709315e307,6.513394677009196e307,6.515393877309077e307,6.517393077608957e307,6.519392277908837e307,6.521391478208717e307,6.523390678508596e307,6.525389878808477e307,6.527389079108357e307,6.529388279408237e307,6.531387479708117e307,6.533386680007997e307,6.535385880307877e307,6.537385080607757e307,6.539384280907638e307,6.541383481207517e307,6.543382681507397e307,6.545381881807277e307,6.547381082107157e307,6.549380282407037e307,6.551379482706918e307,6.553378683006798e307,6.555377883306678e307,6.557377083606558e307,6.559376283906437e307,6.561375484206317e307,6.563374684506197e307,6.565373884806078e307,6.567373085105958e307,6.569372285405838e307,6.571371485705718e307,6.573370686005598e307,6.575369886305478e307,6.577369086605358e307,6.579368286905237e307,6.581367487205117e307,6.583366687504997e307,6.585365887804877e307,6.587365088104757e307,6.589364288404639e307,6.591363488704519e307,6.593362689004398e307,6.595361889304278e307,6.597361089604158e307,6.599360289904039e307,6.601359490203919e307,6.603358690503799e307,6.605357890803679e307,6.607357091103559e307,6.609356291403439e307,6.611355491703319e307,6.613354692003199e307,6.615353892303079e307,6.617353092602959e307,6.619352292902839e307,6.621351493202719e307,6.623350693502599e307,6.62534989380248e307,6.62734909410236e307,6.62934829440224e307,6.631347494702119e307,6.633346695001999e307,6.635345895301879e307,6.637345095601759e307,6.639344295901639e307,6.64134349620152e307,6.6433426965014e307,6.64534189680128e307,6.64734109710116e307,6.649340297401039e307,6.651339497700919e307,6.653338698000799e307,6.655337898300679e307,6.657337098600559e307,6.659336298900439e307,6.661335499200319e307,6.6633346995002e307,6.66533389980008e307,6.66733310009996e307,6.66933230039984e307,6.67133150069972e307,6.6733307009996e307,6.675329901299481e307,6.677329101599361e307,6.679328301899241e307,6.681327502199121e307,6.683326702499001e307,6.685325902798881e307,6.68732510309876e307,6.68932430339864e307,6.69132350369852e307,6.693322703998401e307,6.695321904298281e307,6.697321104598161e307,6.699320304898042e307,6.701319505197921e307,6.703318705497801e307,6.705317905797681e307,6.707317106097561e307,6.709316306397441e307,6.711315506697321e307,6.713314706997201e307,6.715313907297081e307,6.717313107596961e307,6.719312307896842e307,6.721311508196721e307,6.723310708496601e307,6.725309908796481e307,6.727309109096361e307,6.729308309396241e307,6.731307509696121e307,6.733306709996001e307,6.735305910295881e307,6.737305110595762e307,6.739304310895641e307,6.741303511195521e307,6.743302711495402e307,6.745301911795282e307,6.747301112095162e307,6.749300312395043e307,6.751299512694923e307,6.753298712994803e307,6.755297913294683e307,6.757297113594563e307,6.759296313894442e307,6.761295514194322e307,6.763294714494202e307,6.765293914794082e307,6.767293115093962e307,6.769292315393843e307,6.771291515693723e307,6.773290715993603e307,6.775289916293483e307,6.777289116593363e307,6.779288316893243e307,6.781287517193123e307,6.783286717493003e307,6.785285917792883e307,6.787285118092763e307,6.789284318392643e307,6.791283518692523e307,6.793282718992403e307,6.795281919292283e307,6.797281119592163e307,6.799280319892043e307,6.801279520191923e307,6.803278720491803e307,6.805277920791683e307,6.807277121091563e307,6.809276321391443e307,6.811275521691323e307,6.813274721991203e307,6.815273922291083e307,6.817273122590963e307,6.819272322890843e307,6.821271523190724e307,6.823270723490605e307,6.825269923790485e307,6.827269124090365e307,6.829268324390244e307,6.831267524690124e307,6.833266724990004e307,6.835265925289884e307,6.837265125589764e307,6.839264325889644e307,6.841263526189524e307,6.843262726489404e307,6.845261926789285e307,6.847261127089165e307,6.849260327389045e307,6.851259527688925e307,6.853258727988805e307,6.855257928288685e307,6.857257128588565e307,6.859256328888445e307,6.861255529188325e307,6.863254729488205e307,6.865253929788085e307,6.867253130087964e307,6.869252330387844e307,6.871251530687725e307,6.873250730987605e307,6.875249931287485e307,6.877249131587365e307,6.879248331887245e307,6.881247532187125e307,6.883246732487005e307,6.885245932786885e307,6.887245133086765e307,6.889244333386645e307,6.891243533686525e307,6.893242733986405e307,6.895241934286285e307,6.897241134586166e307,6.899240334886047e307,6.901239535185926e307,6.903238735485806e307,6.905237935785686e307,6.907237136085566e307,6.909236336385446e307,6.911235536685326e307,6.913234736985206e307,6.915233937285086e307,6.917233137584966e307,6.919232337884846e307,6.921231538184726e307,6.923230738484607e307,6.925229938784487e307,6.927229139084367e307,6.929228339384247e307,6.931227539684127e307,6.933226739984007e307,6.935225940283887e307,6.937225140583766e307,6.939224340883646e307,6.941223541183526e307,6.943222741483406e307,6.945221941783286e307,6.947221142083166e307,6.949220342383047e307,6.951219542682927e307,6.953218742982807e307,6.955217943282687e307,6.957217143582567e307,6.959216343882447e307,6.961215544182327e307,6.963214744482207e307,6.965213944782087e307,6.967213145081967e307,6.969212345381847e307,6.971211545681727e307,6.973210745981608e307,6.975209946281488e307,6.977209146581368e307,6.979208346881248e307,6.981207547181128e307,6.983206747481008e307,6.985205947780888e307,6.987205148080768e307,6.989204348380648e307,6.991203548680528e307,6.993202748980408e307,6.995201949280288e307,6.997201149580168e307,6.999200349880049e307,7.001199550179929e307,7.003198750479809e307,7.005197950779689e307,7.007197151079569e307,7.009196351379448e307,7.011195551679328e307,7.013194751979208e307,7.015193952279088e307,7.017193152578968e307,7.019192352878848e307,7.021191553178728e307,7.023190753478608e307,7.025189953778489e307,7.027189154078368e307,7.029188354378248e307,7.031187554678129e307,7.033186754978009e307,7.035185955277889e307,7.037185155577769e307,7.039184355877649e307,7.041183556177529e307,7.043182756477409e307,7.045181956777289e307,7.047181157077169e307,7.049180357377049e307,7.05117955767693e307,7.05317875797681e307,7.05517795827669e307,7.05717715857657e307,7.05917635887645e307,7.06117555917633e307,7.06317475947621e307,7.065173959776089e307,7.067173160075969e307,7.06917236037585e307,7.07117156067573e307,7.07317076097561e307,7.07516996127549e307,7.077169161575371e307,7.07916836187525e307,7.08116756217513e307,7.08316676247501e307,7.08516596277489e307,7.08716516307477e307,7.08916436337465e307,7.09116356367453e307,7.09316276397441e307,7.09516196427429e307,7.09716116457417e307,7.09916036487405e307,7.10115956517393e307,7.10315876547381e307,7.105157965773691e307,7.107157166073571e307,7.109156366373451e307,7.111155566673331e307,7.113154766973211e307,7.115153967273091e307,7.11715316757297e307,7.11915236787285e307,7.121151568172731e307,7.123150768472611e307,7.125149968772491e307,7.127149169072372e307,7.129148369372252e307,7.131147569672132e307,7.133146769972012e307,7.135145970271892e307,7.137145170571771e307,7.139144370871651e307,7.141143571171531e307,7.143142771471412e307,7.145141971771292e307,7.147141172071172e307,7.149140372371052e307,7.151139572670932e307,7.153138772970812e307,7.155137973270692e307,7.157137173570572e307,7.159136373870452e307,7.161135574170332e307,7.163134774470212e307,7.165133974770092e307,7.167133175069972e307,7.169132375369852e307,7.171131575669732e307,7.173130775969611e307,7.175129976269491e307,7.177129176569371e307,7.179128376869253e307,7.181127577169133e307,7.183126777469013e307,7.185125977768893e307,7.187125178068773e307,7.189124378368652e307,7.191123578668532e307,7.193122778968412e307,7.195121979268292e307,7.197121179568173e307,7.199120379868053e307,7.201119580167933e307,7.203118780467813e307,7.205117980767694e307,7.207117181067573e307,7.209116381367453e307,7.211115581667333e307,7.213114781967213e307,7.215113982267094e307,7.217113182566974e307,7.219112382866854e307,7.221111583166734e307,7.223110783466614e307,7.225109983766493e307,7.227109184066373e307,7.229108384366253e307,7.231107584666134e307,7.233106784966014e307,7.235105985265894e307,7.237105185565774e307,7.239104385865654e307,7.241103586165534e307,7.243102786465414e307,7.245101986765293e307,7.247101187065173e307,7.249100387365053e307,7.251099587664933e307,7.253098787964814e307,7.255097988264695e307,7.257097188564575e307,7.259096388864454e307,7.261095589164334e307,7.263094789464214e307,7.265093989764094e307,7.267093190063974e307,7.269092390363854e307,7.271091590663735e307,7.273090790963615e307,7.275089991263495e307,7.277089191563375e307,7.279088391863255e307,7.281087592163135e307,7.283086792463015e307,7.285085992762895e307,7.287085193062775e307,7.289084393362656e307,7.291083593662536e307,7.293082793962416e307,7.295081994262296e307,7.297081194562175e307,7.299080394862055e307,7.301079595161935e307,7.303078795461815e307,7.305077995761695e307,7.307077196061576e307,7.309076396361456e307,7.311075596661336e307,7.313074796961216e307,7.315073997261095e307,7.317073197560975e307,7.319072397860855e307,7.321071598160735e307,7.323070798460615e307,7.325069998760495e307,7.327069199060376e307,7.329068399360256e307,7.331067599660136e307,7.333066799960016e307,7.335066000259896e307,7.337065200559776e307,7.339064400859656e307,7.341063601159536e307,7.343062801459416e307,7.345062001759297e307,7.347061202059177e307,7.349060402359057e307,7.351059602658937e307,7.353058802958816e307,7.355058003258696e307,7.357057203558577e307,7.359056403858457e307,7.361055604158337e307,7.363054804458217e307,7.365054004758097e307,7.367053205057977e307,7.369052405357857e307,7.371051605657738e307,7.373050805957616e307,7.375050006257498e307,7.377049206557376e307,7.379048406857258e307,7.381047607157136e307,7.383046807457018e307,7.385046007756898e307,7.387045208056777e307,7.389044408356657e307,7.391043608656537e307,7.393042808956417e307,7.395042009256297e307,7.397041209556179e307,7.399040409856057e307,7.401039610155938e307,7.403038810455817e307,7.405038010755698e307,7.407037211055577e307,7.409036411355458e307,7.411035611655336e307,7.413034811955218e307,7.415034012255096e307,7.417033212554978e307,7.419032412854858e307,7.421031613154739e307,7.42303081345462e307,7.425030013754498e307,7.42702921405438e307,7.429028414354258e307,7.43102761465414e307,7.433026814954018e307,7.4350260152539e307,7.437025215553778e307,7.439024415853659e307,7.441023616153538e307,7.443022816453419e307,7.445022016753298e307,7.447021217053179e307,7.449020417353059e307,7.451019617652939e307,7.453018817952819e307,7.455018018252699e307,7.45701721855258e307,7.459016418852459e307,7.46101561915234e307,7.463014819452218e307,7.4650140197521e307,7.467013220051978e307,7.46901242035186e307,7.471011620651738e307,7.47301082095162e307,7.4750100212515e307,7.477009221551379e307,7.479008421851259e307,7.481007622151139e307,7.483006822451019e307,7.485006022750899e307,7.487005223050779e307,7.489004423350659e307,7.491003623650539e307,7.493002823950419e307,7.495002024250301e307,7.49700122455018e307,7.499000424850061e307,7.500999625149941e307,7.502998825449821e307,7.504998025749701e307,7.506997226049581e307,7.508996426349461e307,7.510995626649341e307,7.51299482694922e307,7.5149940272491e307,7.51699322754898e307,7.51899242784886e307,7.52099162814874e307,7.52299082844862e307,7.5249900287485e307,7.526989229048382e307,7.528988429348261e307,7.530987629648141e307,7.532986829948021e307,7.534986030247901e307,7.536985230547781e307,7.538984430847661e307,7.540983631147541e307,7.542982831447421e307,7.544982031747301e307,7.546981232047181e307,7.548980432347062e307,7.55097963264694e307,7.552978832946822e307,7.5549780332467e307,7.556977233546582e307,7.55897643384646e307,7.560975634146342e307,7.56297483444622e307,7.564974034746102e307,7.566973235045981e307,7.568972435345862e307,7.570971635645742e307,7.572970835945622e307,7.574970036245504e307,7.576969236545382e307,7.578968436845264e307,7.580967637145142e307,7.582966837445023e307,7.584966037744902e307,7.586965238044783e307,7.588964438344661e307,7.590963638644543e307,7.592962838944421e307,7.594962039244303e307,7.596961239544181e307,7.598960439844063e307,7.600959640143943e307,7.602958840443822e307,7.604958040743704e307,7.606957241043582e307,7.608956441343464e307,7.610955641643342e307,7.612954841943224e307,7.614954042243102e307,7.616953242542984e307,7.618952442842862e307,7.620951643142743e307,7.622950843442622e307,7.624950043742503e307,7.626949244042383e307,7.628948444342263e307,7.630947644642143e307,7.632946844942023e307,7.634946045241903e307,7.636945245541783e307,7.638944445841663e307,7.640943646141542e307,7.642942846441424e307,7.644942046741303e307,7.646941247041185e307,7.648940447341063e307,7.650939647640945e307,7.652938847940825e307,7.654938048240704e307,7.656937248540584e307,7.658936448840464e307,7.660935649140344e307,7.662934849440224e307,7.664934049740104e307,7.666933250039984e307,7.668932450339864e307,7.670931650639744e307,7.672930850939624e307,7.674930051239504e307,7.676929251539385e307,7.678928451839265e307,7.680927652139145e307,7.682926852439025e307,7.684926052738905e307,7.686925253038785e307,7.688924453338665e307,7.690923653638545e307,7.692922853938424e307,7.694922054238304e307,7.696921254538184e307,7.698920454838064e307,7.700919655137944e307,7.702918855437824e307,7.704918055737706e307,7.706917256037584e307,7.708916456337465e307,7.710915656637344e307,7.712914856937225e307,7.714914057237105e307,7.716913257536985e307,7.718912457836866e307,7.720911658136746e307,7.722910858436626e307,7.724910058736506e307,7.726909259036386e307,7.728908459336266e307,7.730907659636147e307,7.732906859936025e307,7.734906060235907e307,7.736905260535785e307,7.738904460835667e307,7.740903661135545e307,7.742902861435427e307,7.744902061735305e307,7.746901262035186e307,7.748900462335065e307,7.750899662634946e307,7.752898862934826e307,7.754898063234706e307,7.756897263534588e307,7.758896463834466e307,7.760895664134347e307,7.762894864434226e307,7.764894064734107e307,7.766893265033986e307,7.768892465333867e307,7.770891665633745e307,7.772890865933627e307,7.774890066233505e307,7.776889266533387e307,7.778888466833265e307,7.780887667133147e307,7.782886867433026e307,7.784886067732906e307,7.786885268032788e307,7.788884468332666e307,7.790883668632548e307,7.792882868932427e307,7.794882069232309e307,7.796881269532187e307,7.798880469832068e307,7.800879670131947e307,7.802878870431828e307,7.804878070731707e307,7.806877271031588e307,7.808876471331468e307,7.810875671631348e307,7.812874871931228e307,7.814874072231108e307,7.816873272530988e307,7.818872472830868e307,7.820871673130747e307,7.822870873430627e307,7.824870073730509e307,7.826869274030387e307,7.828868474330269e307,7.830867674630149e307,7.832866874930029e307,7.834866075229908e307,7.836865275529788e307,7.838864475829668e307,7.840863676129548e307,7.842862876429428e307,7.844862076729308e307,7.846861277029188e307,7.848860477329068e307,7.850859677628948e307,7.852858877928828e307,7.854858078228708e307,7.856857278528589e307,7.858856478828467e307,7.860855679128349e307,7.862854879428229e307,7.864854079728109e307,7.8668532800279895e307,7.86885248032787e307,7.87085168062775e307,7.872850880927629e307,7.874850081227509e307,7.876849281527389e307,7.878848481827269e307,7.880847682127149e307,7.882846882427031e307,7.884846082726909e307,7.88684528302679e307,7.888844483326669e307,7.89084368362655e307,7.892842883926429e307,7.89484208422631e307,7.896841284526188e307,7.89884048482607e307,7.90083968512595e307,7.90283888542583e307,7.90483808572571e307,7.90683728602559e307,7.908836486325471e307,7.910835686625349e307,7.912834886925231e307,7.914834087225109e307,7.916833287524991e307,7.918832487824869e307,7.920831688124751e307,7.922830888424629e307,7.92483008872451e307,7.926829289024389e307,7.92882848932427e307,7.930827689624149e307,7.93282688992403e307,7.934826090223912e307,7.93682529052379e307,7.938824490823671e307,7.94082369112355e307,7.942822891423432e307,7.944822091723311e307,7.946821292023192e307,7.94882049232307e307,7.950819692622952e307,7.95281889292283e307,7.954818093222712e307,7.95681729352259e307,7.958816493822472e307,7.960815694122352e307,7.962814894422231e307,7.964814094722111e307,7.966813295021991e307,7.968812495321871e307,7.970811695621751e307,7.972810895921633e307,7.974810096221511e307,7.976809296521392e307,7.978808496821271e307,7.980807697121152e307,7.982806897421031e307,7.984806097720912e307,7.986805298020792e307,7.988804498320672e307,7.990803698620552e307,7.992802898920432e307,7.994802099220312e307,7.996801299520192e307,7.998800499820072e307,8.000799700119951e307,8.002798900419831e307,8.004798100719711e307,8.006797301019591e307,8.008796501319471e307,8.010795701619353e307,8.012794901919233e307,8.014794102219112e307,8.016793302518993e307,8.018792502818873e307,8.020791703118753e307,8.022790903418633e307,8.024790103718513e307,8.026789304018393e307,8.028788504318273e307,8.030787704618153e307,8.032786904918033e307,8.034786105217913e307,8.036785305517793e307,8.038784505817674e307,8.040783706117552e307,8.042782906417434e307,8.044782106717312e307,8.046781307017194e307,8.048780507317074e307,8.050779707616954e307,8.052778907916833e307,8.054778108216713e307,8.056777308516593e307,8.058776508816473e307,8.060775709116355e307,8.062774909416233e307,8.064774109716115e307,8.066773310015993e307,8.068772510315874e307,8.070771710615753e307,8.072770910915634e307,8.074770111215512e307,8.076769311515394e307,8.078768511815272e307,8.080767712115154e307,8.082766912415034e307,8.084766112714914e307,8.086765313014795e307,8.088764513314674e307,8.090763713614556e307,8.092762913914434e307,8.094762114214316e307,8.096761314514194e307,8.098760514814076e307,8.100759715113954e307,8.102758915413836e307,8.104758115713714e307,8.106757316013595e307,8.108756516313474e307,8.110755716613355e307,8.112754916913235e307,8.114754117213115e307,8.116753317512995e307,8.118752517812875e307,8.120751718112756e307,8.122750918412635e307,8.124750118712516e307,8.126749319012394e307,8.128748519312276e307,8.130747719612154e307,8.132746919912036e307,8.134746120211914e307,8.136745320511796e307,8.138744520811676e307,8.140743721111556e307,8.142742921411435e307,8.144742121711315e307,8.146741322011195e307,8.148740522311075e307,8.150739722610955e307,8.152738922910835e307,8.154738123210715e307,8.156737323510595e307,8.158736523810476e307,8.160735724110355e307,8.162734924410236e307,8.164734124710116e307,8.166733325009997e307,8.168732525309877e307,8.170731725609757e307,8.172730925909637e307,8.174730126209517e307,8.176729326509397e307,8.178728526809277e307,8.180727727109156e307,8.182726927409036e307,8.184726127708916e307,8.186725328008796e307,8.188724528308676e307,8.190723728608558e307,8.192722928908438e307,8.194722129208317e307,8.196721329508197e307,8.198720529808077e307,8.200719730107957e307,8.202718930407837e307,8.204718130707717e307,8.206717331007597e307,8.208716531307477e307,8.210715731607357e307,8.212714931907237e307,8.214714132207117e307,8.216713332506998e307,8.218712532806876e307,8.220711733106758e307,8.222710933406636e307,8.224710133706518e307,8.226709334006396e307,8.228708534306278e307,8.230707734606158e307,8.232706934906037e307,8.234706135205917e307,8.236705335505797e307,8.238704535805677e307,8.240703736105558e307,8.24270293640544e307,8.244702136705318e307,8.246701337005199e307,8.248700537305078e307,8.250699737604959e307,8.252698937904838e307,8.254698138204719e307,8.256697338504597e307,8.258696538804479e307,8.260695739104357e307,8.262694939404239e307,8.264694139704117e307,8.266693340003999e307,8.26869254030388e307,8.270691740603758e307,8.27269094090364e307,8.274690141203518e307,8.2766893415034e307,8.278688541803278e307,8.28068774210316e307,8.282686942403038e307,8.284686142702919e307,8.286685343002798e307,8.288684543302679e307,8.290683743602558e307,8.292682943902439e307,8.294682144202319e307,8.296681344502199e307,8.298680544802079e307,8.300679745101959e307,8.302678945401839e307,8.304678145701719e307,8.3066773460016e307,8.308676546301478e307,8.31067574660136e307,8.312674946901238e307,8.314674147201121e307,8.316673347500999e307,8.318672547800881e307,8.320671748100761e307,8.32267094840064e307,8.32467014870052e307,8.3266693490004e307,8.32866854930028e307,8.33066774960016e307,8.33266694990004e307,8.33466615019992e307,8.3366653504998e307,8.33866455079968e307,8.340663751099561e307,8.342662951399441e307,8.344662151699321e307,8.346661351999201e307,8.348660552299081e307,8.350659752598961e307,8.352658952898841e307,8.354658153198721e307,8.356657353498601e307,8.35865655379848e307,8.36065575409836e307,8.36265495439824e307,8.36465415469812e307,8.366653354998e307,8.368652555297882e307,8.37065175559776e307,8.372650955897642e307,8.37465015619752e307,8.376649356497401e307,8.378648556797281e307,8.380647757097161e307,8.382646957397041e307,8.384646157696921e307,8.386645357996801e307,8.3886445582966815e307,8.390643758596562e307,8.392642958896442e307,8.394642159196323e307,8.396641359496201e307,8.398640559796083e307,8.400639760095961e307,8.402638960395843e307,8.404638160695721e307,8.406637360995603e307,8.408636561295481e307,8.410635761595362e307,8.412634961895241e307,8.414634162195122e307,8.416633362495002e307,8.418632562794882e307,8.420631763094764e307,8.422630963394642e307,8.424630163694524e307,8.426629363994402e307,8.428628564294283e307,8.430627764594162e307,8.432626964894043e307,8.434626165193921e307,8.436625365493803e307,8.438624565793681e307,8.440623766093563e307,8.442622966393441e307,8.444622166693323e307,8.446621366993203e307,8.448620567293082e307,8.450619767592962e307,8.452618967892842e307,8.454618168192724e307,8.456617368492602e307,8.458616568792484e307,8.460615769092362e307,8.462614969392244e307,8.464614169692123e307,8.466613369992004e307,8.468612570291883e307,8.470611770591764e307,8.472610970891644e307,8.474610171191524e307,8.476609371491404e307,8.478608571791284e307,8.480607772091164e307,8.482606972391044e307,8.484606172690924e307,8.486605372990803e307,8.488604573290685e307,8.490603773590563e307,8.492602973890445e307,8.494602174190323e307,8.496601374490205e307,8.498600574790085e307,8.500599775089964e307,8.502598975389844e307,8.504598175689724e307,8.506597375989604e307,8.508596576289484e307,8.510595776589364e307,8.512594976889244e307,8.514594177189124e307,8.516593377489004e307,8.518592577788884e307,8.520591778088764e307,8.522590978388644e307,8.524590178688525e307,8.526589378988405e307,8.528588579288285e307,8.530587779588165e307,8.532586979888045e307,8.534586180187925e307,8.536585380487805e307,8.538584580787685e307,8.540583781087565e307,8.542582981387445e307,8.544582181687325e307,8.546581381987205e307,8.548580582287085e307,8.550579782586967e307,8.552578982886845e307,8.554578183186726e307,8.556577383486605e307,8.558576583786486e307,8.560575784086365e307,8.562574984386246e307,8.564574184686126e307,8.566573384986006e307,8.568572585285886e307,8.570571785585766e307,8.572570985885647e307,8.574570186185526e307,8.576569386485407e307,8.578568586785285e307,8.580567787085167e307,8.582566987385045e307,8.584566187684927e307,8.586565387984805e307,8.588564588284687e307,8.590563788584565e307,8.592562988884446e307,8.594562189184325e307,8.596561389484206e307,8.598560589784088e307,8.600559790083966e307,8.602558990383848e307,8.604558190683726e307,8.606557390983607e307,8.608556591283486e307,8.610555791583367e307,8.612554991883247e307,8.614554192183128e307,8.616553392483006e307,8.618552592782888e307,8.620551793082766e307,8.622550993382648e307,8.624550193682528e307,8.626549393982408e307,8.628548594282287e307,8.630547794582167e307,8.632546994882047e307,8.634546195181927e307,8.636545395481809e307,8.638544595781687e307,8.640543796081569e307,8.642542996381447e307,8.644542196681328e307,8.646541396981207e307,8.648540597281088e307,8.650539797580968e307,8.652538997880848e307,8.654538198180728e307,8.656537398480608e307,8.658536598780488e307,8.660535799080368e307,8.662534999380248e307,8.664534199680128e307,8.666533399980007e307,8.668532600279887e307,8.670531800579767e307,8.672531000879647e307,8.674530201179529e307,8.676529401479409e307,8.678528601779289e307,8.680527802079168e307,8.682527002379048e307,8.684526202678928e307,8.686525402978808e307,8.688524603278689e307,8.690523803578569e307,8.692523003878449e307,8.694522204178329e307,8.696521404478209e307,8.698520604778089e307,8.700519805077969e307,8.70251900537785e307,8.704518205677728e307,8.70651740597761e307,8.708516606277488e307,8.71051580657737e307,8.71251500687725e307,8.71451420717713e307,8.71651340747701e307,8.718512607776889e307,8.720511808076769e307,8.722511008376649e307,8.724510208676529e307,8.726509408976409e307,8.728508609276291e307,8.730507809576169e307,8.73250700987605e307,8.734506210175929e307,8.73650541047581e307,8.738504610775689e307,8.74050381107557e307,8.742503011375448e307,8.74450221167533e307,8.74650141197521e307,8.74850061227509e307,8.75049981257497e307,8.75249901287485e307,8.754498213174731e307,8.756497413474609e307,8.758496613774491e307,8.760495814074369e307,8.762495014374252e307,8.76449421467413e307,8.766493414974012e307,8.76849261527389e307,8.770491815573771e307,8.77249101587365e307,8.774490216173531e307,8.77648941647341e307,8.778488616773291e307,8.780487817073171e307,8.782487017373051e307,8.784486217672932e307,8.786485417972811e307,8.788484618272692e307,8.790483818572571e307,8.792483018872452e307,8.79448221917233e307,8.796481419472212e307,8.79848061977209e307,8.800479820071972e307,8.80247902037185e307,8.804478220671732e307,8.806477420971612e307,8.808476621271491e307,8.810475821571371e307,8.812475021871251e307,8.814474222171131e307,8.816473422471011e307,8.818472622770891e307,8.820471823070771e307,8.822471023370652e307,8.824470223670531e307,8.826469423970412e307,8.828468624270291e307,8.830467824570172e307,8.832467024870052e307,8.834466225169932e307,8.836465425469813e307,8.838464625769693e307,8.840463826069573e307,8.842463026369453e307,8.844462226669333e307,8.846461426969212e307,8.848460627269092e307,8.850459827568972e307,8.852459027868852e307,8.854458228168734e307,8.856457428468612e307,8.858456628768494e307,8.860455829068373e307,8.862455029368253e307,8.864454229668133e307,8.866453429968013e307,8.868452630267893e307,8.870451830567773e307,8.872451030867653e307,8.874450231167533e307,8.876449431467413e307,8.878448631767293e307,8.880447832067174e307,8.882447032367052e307,8.884446232666934e307,8.886445432966812e307,8.888444633266694e307,8.890443833566572e307,8.892443033866454e307,8.894442234166334e307,8.896441434466214e307,8.898440634766093e307,8.900439835065973e307,8.902439035365853e307,8.904438235665733e307,8.906437435965615e307,8.908436636265493e307,8.910435836565375e307,8.912435036865254e307,8.914434237165135e307,8.916433437465014e307,8.918432637764895e307,8.920431838064773e307,8.922431038364655e307,8.924430238664533e307,8.926429438964415e307,8.928428639264293e307,8.930427839564175e307,8.932427039864056e307,8.934426240163934e307,8.936425440463816e307,8.938424640763694e307,8.940423841063576e307,8.942423041363454e307,8.944422241663336e307,8.946421441963214e307,8.948420642263096e307,8.950419842562974e307,8.952419042862855e307,8.954418243162734e307,8.956417443462615e307,8.958416643762495e307,8.960415844062375e307,8.962415044362255e307,8.964414244662135e307,8.966413444962015e307,8.968412645261895e307,8.970411845561776e307,8.972411045861654e307,8.974410246161536e307,8.976409446461414e307,8.978408646761296e307,8.980407847061174e307,8.982407047361056e307,8.984406247660936e307,8.986405447960817e307,8.988404648260696e307,8.990403848560577e307,8.992403048860457e307,8.994402249160337e307,8.996401449460217e307,8.998400649760095e307,9.000399850059975e307,9.002399050359855e307,9.004398250659737e307,9.006397450959615e307,9.008396651259497e307,9.010395851559377e307,9.012395051859257e307,9.014394252159137e307,9.016393452459017e307,9.018392652758897e307,9.020391853058777e307,9.022391053358657e307,9.024390253658537e307,9.026389453958417e307,9.028388654258297e307,9.030387854558177e307,9.032387054858057e307,9.034386255157937e307,9.036385455457817e307,9.038384655757695e307,9.040383856057577e307,9.042383056357457e307,9.044382256657337e307,9.046381456957217e307,9.048380657257097e307,9.050379857556977e307,9.052379057856857e307,9.054378258156737e307,9.056377458456617e307,9.058376658756497e307,9.060375859056378e307,9.06237505935626e307,9.064374259656138e307,9.066373459956018e307,9.068372660255898e307,9.070371860555778e307,9.072371060855658e307,9.074370261155538e307,9.076369461455416e307,9.078368661755298e307,9.080367862055178e307,9.082367062355058e307,9.08436626265494e307,9.086365462954818e307,9.0883646632547e307,9.090363863554578e307,9.09236306385446e307,9.094362264154338e307,9.09636146445422e307,9.098360664754098e307,9.10035986505398e307,9.102359065353858e307,9.104358265653738e307,9.106357465953618e307,9.108356666253498e307,9.110355866553378e307,9.112355066853258e307,9.114354267153138e307,9.116353467453018e307,9.1183526677529e307,9.120351868052778e307,9.12235106835266e307,9.124350268652538e307,9.12634946895242e307,9.128348669252298e307,9.13034786955218e307,9.132347069852058e307,9.13434627015194e307,9.13634547045182e307,9.1383446707517e307,9.140343871051579e307,9.142343071351459e307,9.144342271651339e307,9.146341471951219e307,9.148340672251099e307,9.150339872550979e307,9.15233907285086e307,9.154338273150739e307,9.15633747345062e307,9.158336673750499e307,9.16033587405038e307,9.16233507435026e307,9.16433427465014e307,9.16633347495002e307,9.1683326752499e307,9.17033187554978e307,9.172331075849661e307,9.174330276149541e307,9.176329476449421e307,9.1783286767493e307,9.18032787704918e307,9.18232707734906e307,9.18432627764894e307,9.18632547794882e307,9.188324678248701e307,9.190323878548581e307,9.192323078848461e307,9.194322279148341e307,9.196321479448221e307,9.198320679748101e307,9.200319880047981e307,9.202319080347861e307,9.204318280647741e307,9.206317480947621e307,9.208316681247501e307,9.210315881547382e307,9.212315081847262e307,9.214314282147142e307,9.21631348244702e307,9.218312682746902e307,9.22031188304678e307,9.222311083346662e307,9.22431028364654e307,9.226309483946422e307,9.228308684246302e307,9.230307884546182e307,9.232307084846062e307,9.234306285145942e307,9.236305485445822e307,9.238304685745702e307,9.240303886045584e307,9.242303086345462e307,9.244302286645344e307,9.246301486945222e307,9.248300687245102e307,9.250299887544982e307,9.252299087844862e307,9.25429828814474e307,9.256297488444622e307,9.2582966887445e307,9.260295889044382e307,9.262295089344262e307,9.264294289644142e307,9.266293489944024e307,9.268292690243902e307,9.270291890543784e307,9.272291090843662e307,9.274290291143544e307,9.276289491443422e307,9.278288691743304e307,9.280287892043182e307,9.282287092343062e307,9.284286292642943e307,9.286285492942823e307,9.288284693242703e307,9.290283893542583e307,9.292283093842463e307,9.294282294142343e307,9.296281494442223e307,9.298280694742103e307,9.300279895041985e307,9.302279095341863e307,9.304278295641745e307,9.306277495941623e307,9.308276696241505e307,9.310275896541383e307,9.312275096841265e307,9.314274297141143e307,9.316273497441025e307,9.318272697740905e307,9.320271898040783e307,9.322271098340663e307,9.324270298640543e307,9.326269498940423e307,9.328268699240303e307,9.330267899540183e307,9.332267099840063e307,9.334266300139943e307,9.336265500439823e307,9.338264700739705e307,9.340263901039583e307,9.342263101339465e307,9.344262301639345e307,9.346261501939225e307,9.348260702239105e307,9.350259902538985e307,9.352259102838865e307,9.354258303138745e307,9.356257503438625e307,9.358256703738504e307,9.360255904038384e307,9.362255104338264e307,9.364254304638144e307,9.366253504938026e307,9.368252705237904e307,9.370251905537786e307,9.372251105837664e307,9.374250306137546e307,9.376249506437426e307,9.378248706737306e307,9.380247907037186e307,9.382247107337066e307,9.384246307636946e307,9.386245507936826e307,9.388244708236706e307,9.390243908536586e307,9.392243108836466e307,9.394242309136346e307,9.396241509436226e307,9.398240709736104e307,9.400239910035986e307,9.402239110335864e307,9.404238310635746e307,9.406237510935624e307,9.408236711235506e307,9.410235911535386e307,9.412235111835266e307,9.414234312135146e307,9.416233512435026e307,9.418232712734908e307,9.420231913034786e307,9.422231113334668e307,9.424230313634546e307,9.426229513934426e307,9.428228714234306e307,9.430227914534186e307,9.432227114834064e307,9.434226315133947e307,9.436225515433825e307,9.438224715733707e307,9.440223916033585e307,9.442223116333467e307,9.444222316633347e307,9.446221516933227e307,9.448220717233109e307,9.450219917532987e307,9.452219117832869e307,9.454218318132747e307,9.456217518432629e307,9.458216718732507e307,9.460215919032389e307,9.462215119332267e307,9.464214319632147e307,9.466213519932027e307,9.468212720231907e307,9.470211920531787e307,9.472211120831667e307,9.474210321131547e307,9.476209521431427e307,9.478208721731307e307,9.480207922031187e307,9.482207122331067e307,9.484206322630947e307,9.48620552293083e307,9.488204723230707e307,9.49020392353059e307,9.492203123830467e307,9.49420232413035e307,9.49620152443023e307,9.49820072473011e307,9.500199925029987e307,9.502199125329867e307,9.504198325629747e307,9.506197525929627e307,9.508196726229508e307,9.510195926529388e307,9.512195126829268e307,9.514194327129148e307,9.516193527429028e307,9.518192727728908e307,9.520191928028788e307,9.52219112832867e307,9.52419032862855e307,9.52618952892843e307,9.52818872922831e307,9.53018792952819e307,9.53218712982807e307,9.53418633012795e307,9.53618553042783e307,9.538184730727708e307,9.540183931027588e307,9.542183131327468e307,9.544182331627348e307,9.546181531927228e307,9.54818073222711e307,9.550179932526988e307,9.55217913282687e307,9.554178333126748e307,9.55617753342663e307,9.55817673372651e307,9.56017593402639e307,9.56217513432627e307,9.56417433462615e307,9.56617353492603e307,9.56817273522591e307,9.57017193552579e307,9.57217113582567e307,9.57417033612555e307,9.576169536425428e307,9.57816873672531e307,9.580167937025188e307,9.58216713732507e307,9.584166337624949e307,9.58616553792483e307,9.588164738224709e307,9.59016393852459e307,9.592163138824469e307,9.59416233912435e307,9.596161539424233e307,9.59816073972411e307,9.600159940023993e307,9.60215914032387e307,9.60415834062375e307,9.60615754092363e307,9.60815674122351e307,9.61015594152339e307,9.61215514182327e307,9.614154342123149e307,9.61615354242303e307,9.618152742722909e307,9.620151943022791e307,9.622151143322671e307,9.624150343622551e307,9.626149543922431e307,9.628148744222311e307,9.630147944522191e307,9.632147144822071e307,9.634146345121953e307,9.636145545421831e307,9.638144745721713e307,9.640143946021591e307,9.642143146321471e307,9.644142346621351e307,9.646141546921231e307,9.648140747221111e307,9.650139947520991e307,9.652139147820871e307,9.654138348120751e307,9.656137548420631e307,9.658136748720512e307,9.660135949020392e307,9.662135149320272e307,9.664134349620152e307,9.666133549920032e307,9.668132750219914e307,9.670131950519792e307,9.672131150819674e307,9.674130351119554e307,9.676129551419434e307,9.678128751719314e307,9.680127952019192e307,9.682127152319072e307,9.684126352618952e307,9.686125552918832e307,9.688124753218712e307,9.690123953518592e307,9.692123153818472e307,9.694122354118352e307,9.696121554418232e307,9.698120754718112e307,9.700119955017994e307,9.702119155317872e307,9.704118355617754e307,9.706117555917634e307,9.708116756217514e307,9.710115956517394e307,9.712115156817274e307,9.714114357117154e307,9.716113557417032e307,9.718112757716912e307,9.720111958016792e307,9.722111158316672e307,9.724110358616552e307,9.726109558916434e307,9.728108759216312e307,9.730107959516194e307,9.732107159816073e307,9.734106360115955e307,9.736105560415833e307,9.738104760715715e307,9.740103961015593e307,9.742103161315475e307,9.744102361615355e307,9.746101561915235e307,9.748100762215115e307,9.750099962514995e307,9.752099162814875e307,9.754098363114753e307,9.756097563414635e307,9.758096763714513e307,9.760095964014395e307,9.762095164314273e307,9.764094364614155e307,9.766093564914033e307,9.768092765213915e307,9.770091965513793e307,9.772091165813675e307,9.774090366113553e307,9.776089566413435e307,9.778088766713315e307,9.780087967013195e307,9.782087167313077e307,9.784086367612955e307,9.786085567912835e307,9.788084768212715e307,9.790083968512595e307,9.792083168812473e307,9.794082369112355e307,9.796081569412233e307,9.798080769712115e307,9.800079970011993e307,9.802079170311875e307,9.804078370611755e307,9.806077570911636e307,9.808076771211516e307,9.810075971511396e307,9.812075171811276e307,9.814074372111156e307,9.816073572411038e307,9.818072772710916e307,9.820071973010798e307,9.822071173310676e307,9.824070373610556e307,9.826069573910436e307,9.828068774210316e307,9.830067974510196e307,9.832067174810076e307,9.834066375109956e307,9.836065575409836e307,9.838064775709716e307,9.840063976009596e307,9.842063176309476e307,9.844062376609356e307,9.846061576909236e307,9.848060777209116e307,9.850059977508996e307,9.852059177808876e307,9.854058378108758e307,9.856057578408638e307,9.858056778708516e307,9.860055979008396e307,9.862055179308276e307,9.864054379608156e307,9.866053579908036e307,9.868052780207916e307,9.870051980507796e307,9.872051180807676e307,9.874050381107556e307,9.876049581407436e307,9.878048781707318e307,9.880047982007197e307,9.882047182307079e307,9.884046382606957e307,9.886045582906839e307,9.888044783206717e307,9.890043983506599e307,9.892043183806479e307,9.894042384106359e307,9.896041584406237e307,9.898040784706117e307,9.900039985005997e307,9.902039185305877e307,9.904038385605759e307,9.906037585905637e307,9.908036786205519e307,9.910035986505397e307,9.912035186805279e307,9.914034387105157e307,9.916033587405039e307,9.918032787704917e307,9.9200319880048e307,9.922031188304677e307,9.92403038860456e307,9.926029588904437e307,9.92802878920432e307,9.9300279895042e307,9.93202718980408e307,9.93402639010396e307,9.936025590403837e307,9.93802479070372e307,9.940023991003597e307,9.94202319130348e307,9.944022391603357e307,9.94602159190324e307,9.948020792203117e307,9.950019992503e307,9.952019192802877e307,9.95401839310276e307,9.95601759340264e307,9.95801679370252e307,9.9600159940024e307,9.96201519430228e307,9.96401439460216e307,9.96601359490204e307,9.96801279520192e307,9.9700119955018e307,9.97201119580168e307,9.974010396101558e307,9.97600959640144e307,9.978008796701318e307,9.9800079970012e307,9.98200719730108e307,9.98400639760096e307,9.98600559790084e307,9.98800479820072e307,9.9900039985006e307,9.99200319880048e307,9.99400239910036e307,9.99600159940024e307,9.99800079970012e307,1.0e308]} diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/large_positive.json b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/large_positive.json new file mode 100644 index 000000000000..a86c180a2a19 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/large_positive.json @@ -0,0 +1 @@ +{"expected":[0.06683312417585004,0.0678134775985492,0.06879110429825934,0.06976597010310019,0.07073804094983234,0.07170728288503521,0.07267366206628675,0.07363714476333481,0.07459769735926831,0.07555528635167792,0.07650987835381812,0.07746144009576149,0.0784099384255519,0.0793553403103474,0.0802976128375643,0.08123672321601356,0.08217263877703511,0.08310532697562291,0.08403475539154998,0.08496089173048668,0.08588370382511344,0.08680315963623202,0.08771922725386615,0.08863187489836281,0.0895410709214851,0.09044678380750373,0.09134898217427778,0.09224763477433605,0.0931427104959498,0.09403417836420391,0.09492200754205726,0.09580616733140332,0.09668662717412249,0.09756335665313207,0.09843632549342578,0.09930550356311325,0.10017086087445144,0.10103236758487062,0.10188999399799752,0.10274371056466788,0.10359348788393867,0.10443929670409142,0.10528110792363338,0.1061188925922877,0.10695262191198321,0.10778226723783535,0.10860780007912448,0.10942919210026333,0.1102464151217639,0.11105944112119519,0.11186824223413831,0.11267279075513063,0.11347305913860928,0.11426901999984569,0.11506064611587438,0.11584791042641866,0.11663078603480453,0.11740924620887407,0.11818326438188971,0.11895281415343467,0.11971786929030351,0.12047840372739016,0.1212343915685677,0.12198580708756417,0.12273262472882773,0.12347481910839016,0.12421236501472094,0.12494523740957816,0.12567341142884803,0.1263968623833828,0.12711556575983002,0.12782949722145506,0.12853863260895926,0.12924294794128782,0.12994241941643464,0.13063702341223854,0.13132673648717513,0.13201153538113808,0.13269139701621757,0.1333662984974699,0.13403621711368272,0.13470113033812925,0.13536101582932017,0.13601585143174572,0.13666561517661419,0.13731028528257874,0.1379498401564621,0.1385842583939715,0.13921351878040789,0.13983760029136874,0.14045648209344133,0.14107014354489217,0.14167856419634695,0.14228172379146684,0.14287960226761226,0.143472179756505,0.14405943658488,0.14464135327513236,0.1452179105459541,0.14578908931296664,0.14635487068934444,0.14691523598643355,0.14747016671435909,0.14801964458262953,0.14856365150073125,0.14910216957871666,0.149635181127786,0.15016266866085895,0.15068461489314203,0.1512010027426865,0.15171181533094158,0.15221703598329578,0.15271664822961545,0.153210635804773,0.1536989826491701,0.15418167290924972,0.1546586909380048,0.1551300212954766,0.15559564874924767,0.15605555827492482,0.1565097350566167,0.15695816448740307,0.15740083216979597,0.15783772391619502,0.15826882574933263,0.15869412390271356,0.15911360482104608,0.1595272551606664,0.15993506178995337,0.16033701178973814,0.1607330924537038,0.1611232912887799,0.1615075960155262,0.1618859945685112,0.16225847509668195,0.1626250259637268,0.16298563574842878,0.163340293245013,0.16368898746348584,0.1640317076299655,0.16436844318700652,0.16469918379391424,0.16502391932705324,0.1653426398801475,0.16565533576457267,0.16596199750964022,0.166262615862874,0.16655718179027929,0.16684568647660394,0.16712812132559074,0.16740447796022329,0.16767474822296252,0.16793892417597783,0.16819699810136668,0.1684489625013696,0.1686948100985756,0.16893453383612023,0.16916812687787575,0.1693955826086329,0.1696168946342757,0.16983205678194685,0.17004106310020742,0.17024390785918622,0.17044058555072306,0.17063109088850295,0.17081541880818335,0.17099356446751254,0.17116552324644055,0.1713312907472221,0.17149086279451178,0.17164423543545101,0.1717914049397472,0.1719323677997446,0.17206712073048813,0.1721956606697783,0.1723179847782186,0.17243409043925517,0.17254397525920792,0.17264763706729475,0.17274507391564634,0.1728362840793143,0.17292126605627126,0.17300001856740202,0.17307254055648788,0.1731388311901826,0.17319888985798026,0.17325271617217572,0.1733003099678166,0.1733416713026478,0.17337680045704762,0.1734056979339566,0.17342836445879806,0.17344480097939066,0.17345500866585342,0.17345898891050254,0.17345674332774072,0.17344827375393798,0.17343358224730526,0.1734126710877602,0.17338554277678406,0.17335220003727206,0.1733126458133753,0.17326688327033465,0.1732149157943074,0.17315674699218525,0.17309238069140565,0.17302182093975427,0.17294507200516018,0.1728621383754832,0.17277302475829365,0.17267773608064393,0.17257627748883292,0.1724686543481616,0.1723548722426827,0.17223493697494072,0.17210885456570568,0.17197663125369794,0.1718382734953071,0.171693787964301,0.171543181551529,0.17138646136461672,0.17122363472765265,0.1710547091808686,0.17087969248031132,0.17069859259750692,0.1705114177191173,0.1703181762465904,0.17011887679580112,0.16991352819668581,0.1697021394928687,0.16948471994128145,0.16926127901177465,0.16903182638672215,0.1687963719606174,0.16855492583966317,0.16830749834135358,0.16805409999404816,0.1677947415365394,0.16752943391761183,0.1672581882955951,0.16698101603790882,0.16669792872060005,0.1664089381278738,0.16611405625161635,0.16581329529091107,0.16550666765154715,0.16519418594552043,0.1648758629905284,0.1645517118094569,0.1642217456298601,0.16388597788343248,0.16354442220547558,0.16319709243435587,0.16284400261095613,0.16248516697812015,0.16212059998008918,0.1617503162619335,0.16137433066897475,0.16099265824620285,0.1606053142376844,0.16021231408596667,0.1598136734314718,0.15940940811188642,0.1589995341615422,0.15858406781079248,0.1581630254853792,0.157736423805795,0.1573042795866368,0.15686660983595516,0.15642343175459433,0.15597476273552724,0.15552062036318348,0.1550610224127692,0.15459598684958373,0.15412553182832617,0.15364967569239746,0.15316843697319427,0.15268183438939903,0.15218988684626059,0.15169261343487064,0.15119003343143117,0.15068216629651918,0.1501690316743418,0.1496506493919867,0.14912703945866448,0.14859822206494824,0.148064217582003,0.14752504656081117,0.1469807297313916,0.14643128800201066,0.14587674245839063,0.14531711436290878,0.14475242515379216,0.14418269644430434,0.14360795002192978,0.1430282078475486,0.14244349205460732,0.14185382494828178,0.1412592290046379,0.14065972686978245,0.14005534135901082,0.13944609545594616,0.13883201231167688,0.13821311524388463,0.1375894277359682,0.13696097343616218,0.13632777615664765,0.13568985987266147,0.1350472487215957,0.13439996700209442,0.13374803917314196,0.13309148985315047,0.1324303438190372,0.13176462600529945,0.13109436150308149,0.13041957555923994,0.12974029357540037,0.1290565411070106,0.12836834386238632,0.1276757277017562,0.1269787186362968,0.1262773428271654,0.12557162658452684,0.12486159636657404,0.12414727877854696,0.12342870057174307,0.12270588864252495,0.12197887003132035,0.12124767192162218,0.12051232163897889,0.11977284664998294,0.11902927456125155,0.1182816331184077,0.11752995020505126,0.11677425384172901,0.11601457218489658,0.11525093352588084,0.11448336628983291,0.11371189903467938,0.11293656045006852,0.11215737935631026,0.11137438470331597,0.11058760556952989,0.1097970711608582,0.10900281080959197,0.10820485397332986,0.10740323023389203,0.10659796929623333,0.10578910098734873,0.10497665525517999,0.10416066216751348,0.10334115191087652,0.10251815478942737,0.10169170122384598,0.10086182175021581,0.10002854701890458,0.09919190779344113,0.09835193494938597,0.09750865947320327,0.09666211246112404,0.09581232511800894,0.09495932875620425,0.0941031547943993,0.09324383475647581,0.0923814002703563,0.09151588306684647,0.0906473149784787,0.08977572793834801,0.0889011539789471,0.08802362523099529,0.08714317392226939,0.08625983237642647,0.08537363301182577,0.0844846083403477,0.08359279096620732,0.08269821358476993,0.08180090898135843,0.0809009100300611,0.07999824969253318,0.07909296101680119,0.0781850771360589,0.07727463126746391,0.07636165671092839,0.07544618684791234,0.07452825514020921,0.07360789512873188,0.07268514043229313,0.07176002474638887,0.0708325818419737,0.06990284556423682,0.06897084983137526,0.0680366286333628,0.06710021603072125,0.0661616461532848,0.0652209531989652,0.06427817143251129,0.06333333518427249,0.062386478848954506,0.061437636884376166,0.06048684381022145,0.059534134206794743,0.058579542713769014,0.05762310402893546,0.056664852906947866,0.05570482415807122,0.05474305264692267,0.05377957329121389,0.05281442106049205,0.05184763097487592,0.050879238103796715,0.04990927756473149,0.04893778452193871,0.047964794185189015,0.04699034180850029,0.046014462688866095,0.045037192164985855,0.044058565615990905,0.043078618460174786,0.04209738615371704,0.04111490418940919,0.04013120809537641,0.03914633343380403,0.03816031579965734,0.03717319081940342,0.03618499414973234,0.035195761476274366,0.03420552851232271,0.03321433099754946,0.03222220469672457,0.031229185398430677,0.03023530891378339,0.02924061107514504,0.02824512773484171,0.027248894763876288,0.02625194805064698,0.025254323499659833,0.02425605703024432,0.023257184575265405,0.022257742079841183,0.021257765500054607,0.02025729080166804,0.0192563539588379,0.018254990952826188,0.017253237770718226,0.016251130404134426,0.015248704847945873,0.014245997098986487,0.013243043154771471,0.012239879012210044,0.011236540666322108,0.010233064108951757,0.00922948532748718,0.008225840303575045,0.0072221650118390645,0.006218495418595486,0.00521486748057522,0.004211317143640651,0.003207880341506119,0.0022045929944592133,0.0012014910080798392,0.00019861027196611458,-0.0008040133415448079,-0.001806343978651398,-0.002808345805364993,-0.0038099830087800724,-0.004811219798349403,-0.0058120204071545,-0.0068123490931784715,-0.007812170140571753,-0.008811447860922488,-0.009810146594522664,-0.010808230711632899,-0.01180566461374881,-0.012802412734860004,-0.013798439542713557,-0.014793709540072376,-0.01578818726597555,-0.016781837296991238,-0.017774624248473703,-0.01876651277581522,-0.01975746757569969,-0.020747453387348652,-0.021736434993771248,-0.02272437722300893,-0.023711244949381607,-0.024697003094726125,-0.02568161662963846,-0.026665050574711035,-0.027647270001767886,-0.028628240035100668,-0.029607925852696566,-0.030586292687469884,-0.03156330582848783,-0.03253893062219752,-0.033513132473644805,-0.03448587684769646,-0.03545712927025653,-0.036426855329483594,-0.037395020676999874,-0.03836159102910328,-0.0393265321679737,-0.04028980994287987,-0.041251390271377864,-0.042211239140512655,-0.043169322608013955,-0.04412560680348926,-0.04508005792961689,-0.04603264226333047,-0.046983326157006004,-0.04793207603964287,-0.04887885841804473,-0.049823639877992223,-0.050766387085417766,-0.05170706678757411,-0.052645645814202925,-0.05358209107869458,-0.05451636957925033,-0.055448448400037695,-0.05637829471234595,-0.05730587577573263,-0.05823115893917207,-0.059154111642197874,-0.06007470141604167,-0.06099289588477126,-0.0619086627664195,-0.06282196987411519,-0.06373278511720701,-0.06464107650238668,-0.06554681213480353,-0.0664499602191802,-0.06735048906092155,-0.06824836706722275,-0.06914356274816813,-0.07003604471783176,-0.07092578169537031,-0.07181274250611554,-0.07269689608265711,-0.07357821146592683,-0.07445665780627607,-0.07533220436454889,-0.07620482051315366,-0.07707447573712534,-0.0779411396351884,-0.07880478192081271,-0.0796653724232677,-0.08052288108866748,-0.08137727798101621,-0.0822285332832463,-0.08307661729825487,-0.08392150044993103,-0.08476315328418313,-0.08560154646995859,-0.0864366508002624,-0.08726843719316552,-0.08809687669281366,-0.08892194047042906,-0.08974359982530723,-0.0905618261858115,-0.09137659111035765,-0.0921878662883988,-0.09299562354140227,-0.0937998348238243,-0.09460047222407549,-0.09539750796548517,-0.09619091440725884,-0.09698066404543243,-0.0977667295138175,-0.09854908358494557,-0.09932769917100447,-0.10010254932477257,-0.10087360724054269,-0.10164084625504587,-0.10240423984836705,-0.10316376164485573,-0.10391938541403346,-0.10467108507149125,-0.10541883467978641,-0.1061626084493307,-0.10690238073927642,-0.10763812605839174,-0.10836981906593543,-0.10909743457252315,-0.10982094754099093,-0.11054033308724837,-0.11125556648113086,-0.11196662314724322,-0.11267347866580031,-0.11337610877345779,-0.11407448936414086,-0.11476859648986563,-0.11545840636155444,-0.11614389534984715,-0.11682503998590277,-0.11750181696219922,-0.1181742031333243,-0.11884217551676393,-0.1195057112936792,-0.12016478780968268,-0.12081938257560525,-0.12146947326825985,-0.12211503773119489,-0.12275605397544552,-0.12339250018027657,-0.12402435469392135,-0.12465159603431052,-0.12527420288979876,-0.12589215411988286,-0.12650542875591392,-0.12711400600180497,-0.12771786523472858,-0.12831698600581162,-0.12891134804082183,-0.12950093124084983,-0.1300857156829813,-0.13066568162096606,-0.13124080948587935,-0.13181107988677718,-0.1323764736113434,-0.13293697162653262,-0.13349255507920485,-0.13404320529675579,-0.13458890378773664,-0.1351296322424712,-0.13566537253366462,-0.13619610671700488,-0.13672181703175998,-0.1372424859013651,-0.13775809593400548,-0.13826862992319194,-0.13877407084833024,-0.13927440187528173,-0.13976960635691926,-0.14025966783367524,-0.14074457003408425,-0.14122429687531612,-0.14169883246370465,-0.14216816109526834,-0.1426322672562255,-0.14309113562349957,-0.1435447510652208,-0.14399309864121906,-0.14443616360351008,-0.1448739313967757,-0.14530638765883505,-0.1457335182211107,-0.14615530910908656,-0.14657174654276048,-0.1469828169370867,-0.14738850690241462,-0.14778880324491794,-0.148183692967019,-0.14857316326780345,-0.14895720154342987,-0.14933579538753117,-0.14970893259161006,-0.1500766011454252,-0.1504387892373725,-0.15079548525485792,-0.15114667778466312,-0.15149235561330526,-0.1518325077273871,-0.1521671233139423,-0.15249619176077212,-0.1528197026567757,-0.1531376457922721,-0.1534500111593158,-0.15375678895200484,-0.1540579695667821,-0.15435354360272785,-0.15464350186184658,-0.1549278353493455,-0.155206535273907,-0.15547959304795184,-0.15574700028789654,-0.15600874881440316,-0.15626483065262106,-0.15651523803242287,-0.15675996338863055,-0.15699899936123665,-0.15723233879561663,-0.15745997474273493,-0.15768190045934216,-0.1578981094081663,-0.15810859525809573,-0.1583133518843558,-0.15851237336867627,-0.15870565399945316,-0.15889318827190188,-0.15907497088820427,-0.15925099675764673,-0.1594212609967517,-0.15958575892940213,-0.15974448608695757,-0.15989743820836375,-0.16004461124025396,-0.1601860013370435,-0.16032160486101624,-0.1604514183824049,-0.16057543867946197,-0.16069366273852487,-0.16080608775407296,-0.16091271112877725,-0.16101353047354272,-0.16110854360754273,-0.1611977485582468,-0.1612811435614405,-0.16135872706123788,-0.16143049771008644,-0.16149645436876484,-0.16155659610637324,-0.16161092220031598,-0.16165943213627681,-0.16170212560818703,-0.16173900251818588,-0.1617700629765738,-0.16179530730175776,-0.16181473602019,-0.16182834986629852,-0.1618361497824107,-0.16183813691866947,-0.1618343126329419,-0.16182467849072027,-0.16180923626501642,-0.16178798793624793,-0.16176093569211747,-0.16172808192748453,-0.16168942924422988,-0.16164498045111256,-0.16159473856361986,-0.16153870680380958,-0.161476888600145,-0.16140928758732281,-0.1613359076060934,-0.16125675270307432,-0.1611718271305557,-0.1610811353462988,-0.16098468201332775,-0.16088247199971303,-0.16077451037834858,-0.16066080242672084,-0.1605413536266714,-0.1604161696641518,-0.1602852564289713,-0.16014862001453772,-0.16000626671759005,-0.15985820303792567,-0.15970443567811857,-0.15954497154323155,-0.1593798177405205,-0.1592089815791326,-0.15903247056979608,-0.15885029242450385,-0.1586624550561895,-0.15846896657839654,-0.15826983530494032,-0.15806506974956314,-0.15785467862558175,-0.1576386708455287,-0.15741705552078594,-0.15718984196121158,-0.15695703967475996,-0.15671865836709414,-0.15647470794119228,-0.15622519849694616,-0.1559701403307538,-0.15570954393510358,-0.15544341999815345,-0.15517177940330185,-0.15489463322875238,-0.15461199274707063,-0.15432386942473625,-0.15403027492168597,-0.15373122109085133,-0.15342671997768847,-0.15311678381970253,-0.15280142504596417,-0.15248065627661975,-0.1521544903223952,-0.15182294018409181,-0.15148601905207779,-0.15114374030577088,-0.15079611751311559,-0.15044316443005296,-0.15008489499998484,-0.1497213233532311,-0.14935246380647982,-0.14897833086223106,-0.14859893920823541,-0.1482143037169245,-0.1478244394448357,-0.1474293616320304,-0.14702908570150525,-0.14662362725859884,-0.14621300209038954,-0.1457972261650891,-0.14537631563142786,-0.14495028681803615,-0.14451915623281752,-0.14408294056231652,-0.14364165667107884,-0.1431953216010086,-0.14274395257071562,-0.14228756697485911,-0.1418261823834834,-0.14135981654134974,-0.14088848736726,-0.14041221295337525,-0.13993101156452867,-0.1394449016375307,-0.13895390178047123,-0.13845803077201285,-0.1379573075606802,-0.13745175126414133,-0.13694138116848645,-0.1364262167274976,-0.1359062775619144,-0.13538158345869236,-0.1348521543702581,-0.13431801041375635,-0.13377917187029234,-0.13323565918416758,-0.13268749296211219,-0.13213469397250885,-0.1315772831446134,-0.13101528156776854,-0.13044871049061146,-0.129877591320279,-0.1293019456216037,-0.12872179511630663,-0.1281371616821831,-0.12754806735228574,-0.12695453431409942,-0.12635658490871243,-0.12575424162998072,-0.12514752712369007,-0.12453646418670954,-0.1239210757661421,-0.12330138495846768,-0.12267741500868476,-0.12204918930944327,-0.12141673140017449,-0.1207800649662152,-0.12013921383792589,-0.11949420198980688,-0.11884505353960656,-0.11819179274742632,-0.11753444401481848,-0.11687303188388361,-0.1162075810363588,-0.11553811629270343,-0.11486466261117809,-0.11418724508692274,-0.11350588895102606,-0.11282061956959265,-0.11213146244280316,-0.11143844320397413,-0.11074158761860872,-0.11004092158344571,-0.10933647112550328,-0.10862826240111689,-0.10791632169497653,-0.10720067541915576,-0.1064813501121386,-0.10575837243783989,-0.10503176918462549,-0.10430156726432403,-0.10356779371123724,-0.10283047568114297,-0.1020896404502993,-0.10134531541443946,-0.10059752808776595,-0.09984630610193729,-0.0990916772050561,-0.0983336692606481,-0.09757231024664001,-0.09680762825433299,-0.09603965148737074,-0.09526840826070765,-0.09449392699956924,-0.09371623623841124,-0.09293536461987253,-0.09215134089372887,-0.09136419391583847,-0.09057395264708708,-0.08978064615232625,-0.08898430359931324,-0.0881849542576426,-0.08738262749767729,-0.08657735278947347,-0.08576915970170701,-0.08495807790059157,-0.08414413714879605,-0.08332736730435901,-0.0825077983195972,-0.08168546024001601,-0.08086038320321193,-0.08003259743777483,-0.07920213326218468,-0.07836902108370952,-0.07753329139729634,-0.07669497478446152,-0.07585410191217569,-0.07501070353175078,-0.07416481047771925,-0.0733164536667136,-0.07246566409634023,-0.07161247284405577,-0.07075691106603557,-0.06989900999604244,-0.06903880094429261,-0.06817631529631692,-0.06731158451182441,-0.06644464012355868,-0.06557551373615496,-0.06470423702499137,-0.0638308417350437,-0.06295535967973243,-0.06207782273977064,-0.0611982628620068,-0.060316712058270765,-0.05943320240421213,-0.05854776603814021,-0.05766043515985847,-0.056771242029502476,-0.05588021896637067,-0.05498739834775599,-0.05409281260777553,-0.05319649423619596,-0.05229847577726246,-0.051398789828520565,-0.05049746903963983,-0.049594546111232395,-0.04869005379367556,-0.047784024885927354,-0.04687649223434404,-0.04596748873149278,-0.04505704731496837,-0.04414520096620329,-0.04323198270927969,-0.04231742560973681,-0.04140156277338266,-0.040484427345099154,-0.039566052507648664,-0.03864647148047977,-0.03772571751852891,-0.036803823911026844,-0.035880823980298404,-0.034956751080564785,-0.034031638596741624,-0.03310551994324176,-0.0321784285627717,-0.03125039792513069,-0.030321461526005705,-0.029391652885771405,-0.028461005548283857,-0.027529553079677107,-0.02659732906715584,-0.025664367117793088,-0.024730700857322034,-0.023796363928930142,-0.022861389992052956,-0.02192581272116476,-0.02098966580457459,-0.020052982943216505,-0.01911579784944291,-0.018178144245814428,-0.017240055863895386,-0.016301566443043453,-0.015362709729202792,-0.014423519473693863,-0.013484029432008843,-0.012544273362601619,-0.011604285025681286,-0.010664098182002549,-0.009723746591661867,-0.00878326401288841,-0.007842684200838092,-0.006902040906387965,-0.005961367874928328,-0.005020698845160794,-0.004080067547891328,-0.003139507704827197,-0.002199053027371146,-0.0012587372154217995,-0.0003185939561691625,0.0006213430771058038,0.0015610402262341812,0.0025004638493557226,0.0034395803221201958,0.004378356038884482,0.0053167574139120904,0.0062547508825661225,0.007192302902506773,0.008129379954884995,0.009065948545535068,0.01000197520616875,0.010937426495562744,0.011872269000750448,0.012806469338209113,0.013739994155048979,0.014672810130195576,0.015604883975576099,0.016536182437301032,0.01746667229684764,0.018396320372236367,0.019325093519211207,0.020252958632415143,0.021179882646567262,0.02210583253763263,0.023030775323996014,0.02395467806763094,0.024877507875267102,0.025799231899558506,0.02671981734024435,0.027639231445313356,0.02855744151216287,0.02947441488875922,0.030390118974790555,0.03130452122282299,0.03221758913945146,0.03312929028645143,0.0340395922819232,0.034948462801439144,0.03585586957918563,0.036761780409105556,0.03766616314603332,0.038568985706832676,0.039470216071529424,0.040369822284441595,0.04126777245530979,0.04216403476041954,0.043058577443726466,0.04395136881797544,0.04484237726582033,0.045731571240935714,0.04661891926913104,0.047504389949458756,0.048387951955322896,0.049269574035579314,0.05014922501563844,0.05102687379856166,0.05190248936615809,0.05277604078007281,0.0536474971828774,0.054516827799154795,0.055384001936580676,0.05624898898700458,0.05711175842752232,0.05797227982155058,0.058830522819894766,0.05968645716181682,0.06054005267609449,0.06139127928208208,0.06224010699076502,0.06308650590581368,0.06393044622462853,0.06477189823938727,0.06561083233808467,0.06644721900557211,0.06728102882458863,0.06811223247679267,0.06894080074378808,0.06976670450814619,0.07058991475442639,0.07141040257018796,0.07222813914700321,0.0730430957814631,0.0738552438761825,0.0746645549407963,0.075471000592956,0.07627455255932006,0.07707518267654224,0.07787286289225154,0.07866756526603254,0.07945926197039868,0.08024792529176404,0.08103352763140642,0.08181604150643046,0.08259543955072422,0.08337169451591148,0.08414477927230173,0.08491466680983131,0.08568133023900446,0.08644474279182723,0.08720487782273974,0.08796170880953882,0.08871520935430129,0.0894653531842991,0.09021211415291318,0.09095546624053774,0.09169538355548426,0.0924318403348783,0.09316481094555401,0.09389426988493932,0.09462019178194093,0.09534255139782188,0.09606132362707448,0.09677648349829038,0.09748800617502121,0.09819586695663873,0.09890004127918721,0.09960050471623334,0.10029723297970683,0.10099020192074006,0.10167938753050014,0.10236476594101816,0.10304631342600909,0.10372400640169095,0.10439782142759585,0.10506773520737653,0.10573372458960935,0.10639576656858747,0.10705383828511354,0.1077079170272836,0.10835798023126875,0.1090040054820868,0.10964597051437298,0.11028385321314202,0.11091763161454789,0.11154728390663325,0.11217278843007789,0.11279412367893882,0.11341126830138716,0.11402420110043557,0.11463290103466366,0.11523734721893591,0.1158375189251139,0.11643339558276453,0.11702495677985876,0.11761218226346827,0.11819505194045404,0.11877354587815137,0.11934764430504521,0.11991732761144328,0.12048257635014126,0.12104337123708396,0.12159969315201694,0.12215152313913587,0.1226988424077278,0.12324163233280813,0.12377987445574834,0.12431355048490111,0.12484264229621758,0.12536713193385832,0.12588700161079985,0.12640223370943232,0.12691281078215322,0.12741871555195378,0.12791993091300063,0.12841643993120846,0.12890822584480904,0.1293952720649125,0.12987756217606394,0.13035507993679074,0.13082780928014684,0.13129573431424826,0.13175883932280447,0.13221710876564058,0.1326705272792153,0.133119079677132,0.1335627509506428,0.13400152626914738,0.1344353909806832,0.13486433061241124,0.1352883308710944,0.13570737764357016,0.13612145699721478,0.13653055518040308,0.13693465862296034,0.13733375393660913,0.13772782791540678,0.13811686753617933,0.13850085995894662,0.13887979252734264,0.13925365276902693,0.13962242839609137,0.13998610730545927,0.14034467757927785,0.14069812748530497,0.14104644547728726,0.14138962019533308,0.14172764046627812,0.14206049530404533,0.14238817390999559,0.14271066567327434,0.14302796017114958,0.14334004716934476,0.14364691662236265,0.14394855867380435,0.14424496365668021,0.14453612209371566,0.14482202469764732,0.14510266237151503,0.14537802620894547,0.14564810749442952,0.14591289770359292,0.14617238850345884,0.14642657175270501,0.1466754395019131,0.14691898399381206,0.14715719766351307,0.14739007313873856,0.14761760324004464,0.14783978098103606,0.14805659956857367,0.14826805240297625,0.14847413307821383,0.14867483538209628,0.14887015329645203,0.1490600809973021,0.14924461285502647,0.14942374343452294,0.14959746749536026,0.14976577999192253,0.14992867607354793,0.15008615108466017,0.15023820056489318,0.15038482024920757,0.15052600606800173,0.1506617541472148,0.15079206080842347,0.15091692256893072,0.1510363361418483,0.15115029843617236,0.15125880655685148,0.1513618578048479,0.15145944967719188,0.1515515798670288,0.15163824626365957,0.15171944695257383,0.15179518021547594,0.15186544453030432,0.15193023857124335,0.15198956120872906,0.15204341150944659,0.15209178873632184,0.15213469234850516,0.15217212200134886,0.1522040775463768,0.15223055903124813,0.1522515666997126,0.1522671009915604,0.15227716254256382,0.1522817521844124,0.1522808709446411,0.15227452004655165,0.15226270090912625,0.15224541514693513,0.15222266457003678,0.1521944511838709,0.15216077718914492,0.15212164498171332,0.15207705715245015,0.152027016487114,0.1519715259662071,0.15191058876482677,0.15184420825250966,0.1517723879930701,0.1516951317444305,0.1516124434584456,0.15152432728071932,0.15143078755041503,0.15133182880005885,0.15122745575533586,0.1511176733348801,0.1510024866500569,0.15088190100473886,0.1507559218950749,0.15062455500925256,0.15048780622725347,0.15034568162060166,0.15019818745210553,0.15004533017559296,0.14988711643563962,0.14972355306729035,0.14955464709577382,0.14938040573621075,0.14920083639331522,0.14901594666108914,0.14882574432251022,0.14863023734921296,0.14842943390116356,0.14822334232632745,0.1480119711603308,0.1477953291261146,0.14757342513358326,0.14734626827924557,0.14711386784584968,0.14687623330201074,0.1466333743018334,0.14638530068452624,0.14613202247401058,0.14587354987852205,0.14560989329020685,0.14534106328471036,0.14506707062075958,0.14478792623973957,0.14450364126526255,0.1442142270027318,0.14391969493889833,0.14362005674141123,0.1433153242583611,0.14300550951781926,0.14269062472736777,0.14237068227362557,0.14204569472176592,0.14171567481503036,0.14138063547423407,0.14104058979726633,0.1406955510585834,0.14034553270869732,0.13999054837365663,0.13963061185452147,0.13926573712683324,0.13889593834007644,0.13852122981713685,0.13814162605375147,0.13775714171795383,0.1373677916495112,0.13697359085935937,0.13657455452902761,0.13617069801006032,0.1357620368234308,0.13534858665895083,0.1349303633746735,0.13450738299628992,0.13407966171651967,0.1336472158944976,0.1332100620551521,0.13276821688857923,0.13232169724941065,0.1318705201561748,0.13141470279065487,0.13095426249723857,0.1304892167822635,0.13001958331335564,0.12954537991876458,0.1290666245866906,0.12858333546460807,0.1280955308585809,0.12760322923257605,0.12710644920776845,0.1266052095618417,0.12609952922828263,0.12558942729567193,0.125074923006968,0.12455603575878549,0.12403278510066976,0.1235051907343633,0.12297327251307097,0.12243705044071637,0.1218965446711946,0.12135177550761879,0.12080276340156357,0.12024952895230101,0.11969209290603311,0.1191304761551169,0.11856469973728843,0.11799478483487791,0.11742075277402177,0.11684262502386848,0.11626042319578174,0.11567416904253615,0.11508388445750938,0.11448959147386956,0.11389131226375614,0.11328906913745922,0.11268288454259104,0.11207278106325416,0.11145878141920389,0.11084090846500819,0.11021918518920061,0.10959363471343028,0.10896428029160474,0.10833114530903272,0.10769425328155788,0.10705362785469096,0.1064092928027349,0.10576127202790918,0.10510958955946621,0.10445426955280543,0.10379533628858263,0.10313281417181323,0.10246672773097548,0.10179710161710509,0.10112396060288827,0.10044732958174812,0.09976723356693101,0.09908369769058482,0.09839674720283535,0.09770640747085652,0.0970127039779406,0.09631566232256017,0.095615308217429,0.09491166748855627,0.09420476607430117,0.09349463002441931,0.09278128549910812,0.09206475876804755,0.09134507620943574,0.09062226430902465,0.08989634965914822,0.08916735895774937,0.08843531900740062,0.08770025671432584,0.08696219908741386,0.08622117323723148,0.08547720637503024,0.0847303258117542,0.08398055895704007,0.08322793331821608,0.08247247649929779,0.08171421619997805,0.08095318021461868,0.0801893964312341,0.0794228928304747,0.07865369748460435,0.07788183855647945,0.07710734429852037,0.07633024305168247,0.07555056324442178,0.07476833339166183,0.07398358209375379,0.07319633803543552,0.07240662998478595,0.07161448679218078,0.07081993738924107,0.0700230107877814,0.06922373607875525,0.06842214243119563,0.06761825909115775,0.06681211538065436,0.06600374069659161,0.06519316450969932,0.06438041636346403,0.06356552587305435,0.06274852272424726,0.06192943667234916,0.061108297541119176,0.06028513522168583,0.05945997967146415,0.058632860913067734,0.05780380903322373,0.05697285418168073,0.05614002657011711,0.05530535647104739,0.05446887421672423,0.053630610198043244,0.05279059486344141,0.05194885871779611,0.05110543232131977,0.05026034628845759,0.049413631286778587,0.048565318035867916,0.04771543730621469,0.046864019918103024,0.04601109674049667,0.04515669868992509,0.04430085672936505,0.043443601867125745,0.04258496515572762,0.0417249776907823,0.040863670609871144,0.0400010750914201,0.039137222353578284,0.03827214365309048,0.03740587028417131,0.0365384335773754,0.03566986489847144,0.03480019564731033,0.03392945725669515,0.03305768119124724,0.03218489894627654,0.0313111420466458,0.03043644204563718,0.02956083052381487,0.028684339087892207,0.027806999369592807,0.02692884302451382,0.026049901730988326,0.025170207188944728,0.024289791118770693,0.023408685260171484,0.02252692137103086,0.021644531226268523,0.020761546616702316,0.01987799934790495,0.01899392123906348,0.018109344121835458,0.017224299839210085,0.01633882024436392,0.015452937199519646,0.014566682574801579,0.01368008824709637,0.012793186098908426,0.011906008017218035,0.01101858589233954,0.010130951616776964,0.009243137084085088,0.008355174187725458,0.007467094819925772,0.006578930870536371,0.0056907142258923295,0.004802476767670642,0.00391425037175094,0.0030260669070735174,0.002137958234503074,0.001249956205687721,0.0003620926619217143,-0.0005256005669943827,-0.0014130916638876274,-0.002300348825351213,-0.003187340262879624,-0.004074034204003038,-0.004960398893423545,-0.005846402594145275,-0.006732013588608905,-0.0076172001798220645,-0.008501930692491966,-0.009386173474151749,-0.010269896896291044,-0.011153069355482315,-0.012035659274509197,-0.01291763510348845,-0.013798965320995955,-0.01467961843518829,-0.01555956298492621,-0.016438767540891512,-0.017317200706707857,-0.01819483112005747,-0.01907162745379647,-0.0199475584170713,-0.02082259275642844,-0.02169669925692774,-0.022569846743251076,-0.0234420040808124,-0.024313140176861033,-0.025183223981588353,-0.026052224489229617,-0.0269201107391671,-0.027786851817026278,-0.028652416855775256,-0.029516775036819126,-0.030379895591095624,-0.031241747800163488,-0.032102300997294046,-0.032961524568558075,-0.03381938795391065,-0.03467586064827634,-0.03553091220262712,-0.036384512225063156,-0.037236630381888354,-0.038087236398686546,-0.038936300061390344,-0.03978379121735268,-0.04062967977641289,-0.04147393571196335,-0.0423165290620086,-0.043157429930227066,-0.043996608487027085,-0.04483403497060335,-0.04566967968798585,-0.04650351301609098,-0.047335505402767465,-0.048165627367839706,-0.048993849504150595,-0.049820142478596674,-0.05064447703316546,-0.0514668239859667,-0.05228715423226392,-0.05310543874549787,-0.053921648578311956,-0.054735754863571795,-0.0555477288153844,-0.05635754173010967,-0.057165164987373354,-0.057970570051074054,-0.05877372847038991,-0.05957461188077709,-0.06037319200497005,-0.06116944065397581,-0.061963329728065016,-0.06275483121776204,-0.06354391720482679,-0.06433055986323777,-0.06511473146016902,-0.0658964043569662,-0.06667555101011435,-0.06745214397220685,-0.06822615589290812,-0.06899755951991496,-0.06976632769991005,-0.07053243337951601,-0.07129584960624331,-0.07205654952943667,-0.07281450640121316,-0.07356969357740162,-0.07432208451847484,-0.07507165279047882,-0.07581837206595962,-0.07656221612488208,-0.07730315885554893,-0.07804117425551324,-0.07877623643248909,-0.07950831960525416,-0.08023739810455237,-0.08096344637398963,-0.08168643897092813,-0.08240635056737193,-0.08312315595085268,-0.0838368300253085,-0.08454734781196088,-0.08525468445018321,-0.0859588151983689,-0.08665971543479319,-0.08735736065847038,-0.08805172649000875,-0.08874278867245655,-0.08943052307214805,-0.09011490567954197,-0.09079591261005823,-0.09147352010490589,-0.09214770453191021,-0.09281844238633291,-0.09348571029169002,-0.09414948500056095,-0.09480974339539669,-0.09546646248932114,-0.09611961942692963,-0.09676919148507872,-0.09741515607367514,-0.09805749073645796,-0.09869617315177545,-0.0993311811333592,-0.09996249263108947,-0.10059008573175905,-0.10121393865982996,-0.10183402977818734,-0.10245033758888451,-0.10306284073388666,-0.10367151799580697,-0.10427634829863999,-0.104877310708486,-0.10547438443427398,-0.10606754882847699,-0.10665678338782429,-0.10724206775400508,-0.10782338171436995,-0.10840070520262546,-0.10897401829952347,-0.10954330123354641,-0.1101085343815841,-0.1106696982696084,-0.11122677357334029,-0.11177974111891345,-0.11232858188352934,-0.11287327699610947,-0.11341380773794071,-0.11395015554331664,-0.11448230200017019,-0.11501022885070386,-0.11553391799201236,-0.11605335147670154,-0.11656851151349841,-0.11707938046785855,-0.11758594086256657,-0.11808817537833029,-0.11858606685437115,-0.11907959828900547,-0.11956875284022328,-0.12005351382625909,-0.12053386472615892,-0.1210097891803385,-0.12148127099113827,-0.12194829412337108,-0.12241084270486544,-0.12286890102699989,-0.12332245354523493,-0.12377148487963613,-0.12421597981539403,-0.12465592330333468,-0.12509130046042702,-0.12552209657028277,-0.12594829708365066,-0.12636988761890514,-0.1267868539625273,-0.12719918206958164,-0.12760685806418526,-0.12800986823997268,-0.12840819906055187,-0.12880183715995636,-0.12919076934309015,-0.12957498258616762,-0.1299544640371446,-0.13032920101614612,-0.13069918101588596,-0.13106439170208192,-0.1314248209138617,-0.13178045666416585,-0.13213128714014225,-0.1324773007035351,-0.132818485891068,-0.13315483141481915,-0.13348632616259185,-0.13381295919827782,-0.13413471976221486,-0.1344515972715367,-0.13476358132051783,-0.1350706616809114,-0.13537282830228128,-0.13567007131232625,-0.13596238101719904,-0.1362497479018188,-0.13653216263017703,-0.13680961604563613,-0.137082099171223,-0.13734960320991488,-0.13761211954491945,-0.13786963973994873,-0.1381221555394846,-0.1383696588690403,-0.13861214183541382,-0.13884959672693528,-0.13908201601370754,-0.1393093923478403,-0.13953171856367783,-0.1397489876780204,-0.13996119289033815,-0.14016832758297929,-0.14037038532137144,-0.14056735985421637,-0.14075924511367827,-0.140946035215565,-0.1411277244595034,-0.14130430732910695,-0.14147577849213874,-0.14164213280066523,-0.14180336529120552,-0.14195947118487287,-0.14211044588751026,-0.14225628498981854,-0.1423969842674788,-0.14253253968126706,-0.14266294737716403,-0.1427882036864558,-0.1429083051258302,-0.143023248397465,-0.1431330303891102,-0.14323764817416346,-0.14333709901173863,-0.14343138034672803,-0.14352048980985788,-0.14360442521773698,-0.1436831845728989,-0.14375676606383733,-0.14382516806503512,-0.14388838913698626,-0.14394642802621122,-0.14399928366526607,-0.14404695517274427,-0.14408944185327274,-0.14412674319750005,-0.14415885888207908,-0.14418578876964247,-0.14420753290877142,-0.14422409153395788,-0.14423546506556056,-0.1442416541097534,-0.1442426594584681,-0.14423848208933,-0.14422912316558686,-0.14421458403603143,-0.14419486623491715,-0.14416997148186766,-0.14413990168177895,-0.14410465892471552,-0.14406424548579994,-0.14401866382509532,-0.14396791658748148,-0.1439120066025249,-0.1438509368843412,-0.14378471063145198,-0.1437133312266344,-0.14363680223676464,-0.14355512741265458,-0.143468310688882,-0.143376356183614,-0.14327926819842457,-0.1431770512181046,-0.14306970991046655,-0.1429572491261414,-0.14283967389837007,-0.14271698944278782,-0.14258920115720258,-0.14245631462136601,-0.14231833559673915,-0.14217527002625077,-0.14202712403404982,-0.14187390392525104,-0.14171561618567427,-0.14155226748157762,-0.14138386465938385,-0.14121041474540075,-0.1410319249455341,-0.1408484026449963,-0.14065985540800646,-0.14046629097748553,-0.14026771727474413,-0.14006414239916537,-0.1398555746278799,-0.1396420224154357,-0.13942349439346066,-0.13919999937032032,-0.13897154633076778,-0.13873814443558816,-0.13849980302123713,-0.13825653159947196,-0.1380083398569782,-0.13775523765498868,-0.137497235028897,-0.1372343421878642,-0.13696656951442074,-0.1366939275640608,-0.13641642706483129,-0.1361340789169139,-0.13584689419220294,-0.13555488413387504,-0.13525806015595393,-0.13495643384286854,-0.1346500169490062,-0.1343388213982584,-0.13402285928356192,-0.133702142866433,-0.13337668457649549,-0.13304649701100443,-0.1327115929343623,-0.13237198527763017,-0.13202768713803176,-0.13167871177845397,-0.13132507262693938,-0.1309667832761739,-0.1306038574829681,-0.13023630916773388,-0.12986415241395421,-0.12948740146764778,-0.12910607073682687,-0.1287201747909517,-0.12832972836037715,-0.12793474633579413,-0.12753524376766653,-0.12713123586566025,-0.12672273799806977,-0.12630976569123625,-0.12589233462896213,-0.12547046065191805,-0.12504415975704716,-0.1246134480969615,-0.12417834197933417,-0.1237388578662847,-0.12329501237376157,-0.12284682227091664,-0.12239430447947615,-0.12193747607310408,-0.12147635427676375,-0.12101095646607063,-0.12054130016664179,-0.12006740305343987,-0.11958928295011045,-0.11910695782831707,-0.11862044580706824,-0.11812976515204106,-0.11763493427489775,-0.11713597173260051,-0.11663289622671777,-0.11612572660272753,-0.11561448184931393,-0.11509918109766162,-0.11457984362074206,-0.11405648883259734,-0.11352913628761627,-0.11299780567980955,-0.11246251684207652,-0.11192328974546854,-0.11138014449844812,-0.11083310134614104,-0.11028218066958724,-0.10972740298498382,-0.10916878894292514,-0.10860635932763638,-0.10804013505620569,-0.10747013717780834,-0.10689638687292878,-0.10631890545257523,-0.10573771435749407,-0.10515283515737572,-0.10456428955005824,-0.10397209936072464,-0.1033762865410991,-0.10277687316863503,-0.10217388144570129,-0.10156733369876318,-0.10095725237755816,-0.10034366005427028,-0.09972657942269718,-0.09910603329741499,-0.09848204461293669,-0.09785463642287016,-0.09722383189906843,-0.09658965433077818,-0.09595212712378157,-0.09531127379953837,-0.09466711799431982,-0.0940196834583412,-0.09336899405488801,-0.0927150737594421,-0.09205794665880015,-0.0913976369501903,-0.09073416894038483,-0.09006756704480733,-0.08939785578664003,-0.08872505979592327,-0.08804920380865405,-0.08737031266587837,-0.08668841131278392,-0.08600352479778524,-0.08531567827160796,-0.08462489698636702,-0.08393120629464505,-0.08323463164856418,-0.08253519859885594,-0.08183293279392612,-0.08112785997891983,-0.08042000599477951,-0.07970939677730174,-0.07899605835619056,-0.0782800168541058,-0.07756129848571236,-0.07683992955672209,-0.07611593646293527,-0.07538934568927635,-0.07466018380883105,-0.07392847748187616,-0.07319425345490893,-0.07245753855967113,-0.07171835971217436,-0.07097674391171822,-0.07023271823990859,-0.06948630985967005,-0.06873754601426024,-0.06798645402627729,-0.06723306129666631,-0.06647739530372362,-0.06571948360209637,-0.06495935382178342,-0.06419703366712975,-0.06343255091582115,-0.0626659334178733,-0.0618972090946234,-0.0611264059377147,-0.060353552008081464,-0.05957867543492897,-0.058801804414715685,-0.05802296721012877,-0.057242192149060185,-0.05645950762357769,-0.05567494208889855,-0.05488852406235656,-0.05410028212236908,-0.053310244907402396,-0.05251844111493274,-0.05172489950040978,-0.050929648876213936,-0.05013271811061438,-0.04933413612672255,-0.04853393190144856,-0.04773213446445114,-0.046928772897088765,-0.04612387633136626,-0.04531747394888454,-0.04450959497978394,-0.04370026870168902,-0.042889524438648886,-0.04207739156008079,-0.04126389947970767,-0.04044907765449648,-0.03963295558359542,-0.03881556280726721,-0.03799692890582605,-0.0371770834985685,-0.036356056242706006,-0.0355338768322934,-0.03471057499716117,-0.033886180501841646,-0.03306072314449725,-0.03223423275584466,-0.03140673919808304,-0.03057827236381619,-0.02974886217497712,-0.028918538581748462,-0.02808733156148724,-0.02725527111764382,-0.0264223872786826,-0.02558871009700155,-0.02475426964785107,-0.02391909602825323,-0.023083219355915428,-0.02224666976815348,-0.021409477420804277,-0.02057167248714293,-0.01973328515679846,-0.01889434563466919,-0.018054884139837687,-0.01721493090448647,-0.01637451617280844,-0.01553367019992702,-0.014692423250806186,-0.013850805599165263,-0.013008847526392706,-0.012166579320459689,-0.011324031274833743,-0.01048123368739237,-0.009638216859337703,-0.008795011094106223,-0.007951646696288627,-0.007108153970539823,-0.006264563220494158,-0.005420904747679847,-0.004577208850433696,-0.003733505822816121,-0.002889825953527545,-0.002046199524820153,-0.0012026568114201091,-0.00035922807944020865,0.00048405641470194093,0.0013271664253661987,0.00217007171877159,0.0030127420740773845,0.0038551472844635046,0.0046972571582092485,0.005539041519776257,0.006380470210880727,0.007221513091574795,0.008062140041322061,0.008902320960073252,0.009742025769340915,0.01058122441327317,0.01141988685972546,0.012257983101336217,0.013095483156591516,0.01393235707089853,0.014768574917652884,0.015604106799305783,0.016438922848429932,0.017272993228784127,0.018106288136376623,0.01893877780052609,0.019770432484926156,0.02060122248869863,0.0214311181474552,0.02226008983435258,0.02308810796114723,0.023915142979248454,0.02474116538076981,0.025566145699578064,0.026390054512345183,0.027212862439588918,0.02803454014672139,0.02885505834509093,0.02967438779302321,0.0304924992968603,0.031309363711998016,0.032124951943921155,0.03293923494923593,0.033752183736705105,0.03456376936827147,0.03537396296008887,0.036182735683546303,0.036990058766290766,0.03779590349324797,0.038600241207640724,0.03940304331200425,0.040204281269203786,0.041003926603440384,0.04180195090126394,0.042598325812578906,0.04339302305164853,0.04418601439809676,0.044977271697907474,0.04576676686442109,0.046554471879327916,0.04734035879366328,0.048124399728790776,0.04890656687739215,0.04968683250444978,0.05046516894822733,0.05124154862124751,0.05201594401126713,0.0527883276822484,0.05355867227533168,0.054326950509796364,0.05509313518402786,0.055857199176476906,0.05661911544661701,0.05737885703589852,0.0581363970686997,0.05889170875327479,0.05964476538269787,0.06039554033580787,0.06114400707814173,0.06189013916287298,0.06263391023174253,0.06337529401598709,0.06411426433726433,0.06485079510857444,0.0655848603351774,0.06631643411551132,0.06704549064209839,0.06777200420245608,0.06849594918000038,0.06921730005494642,0.06993603140520523,0.07065211790727718,0.0713655343371414,0.07207625557114095,0.07278425658686803,0.07348951246403748,0.07419199838536449,0.07489168963743446,0.07558856161156986,0.07628258980469287,0.07697374982018454,0.07766201736873889,0.07834736826921697,0.07902977844948926,0.07970922394728143,0.08038568091101261,0.08105912560062999,0.08172953438843933,0.08239688375993148,0.08306115031460436,0.08372231076678024,0.08438034194642267,0.08503522079994094,0.08568692439099847,0.08633542990131281,0.08698071463145181,0.08762275600162592,0.08826153155247546,0.0888970189458531,0.08952919596560546,0.09015804051834284,0.0907835306342115,0.09140564446765831,0.09202436029819089,0.0926396565311336,0.09325151169837873,0.09385990445913275,0.09446481360065785,0.09506621803901161,0.09566409681977499,0.09625842911878311,0.09684919424284713,0.09743637163047225,0.0980199408525708,0.09859988161317072,0.09917617375011795,0.09974879723577794,0.1003177321777247,0.10088295881943267,0.1014444575409589,0.1020022088596221,0.10255619343067597,0.10310639204797781,0.10365278564465161,0.10419535529374598,0.10473408220888976,0.10526894774493607,0.10579993339860795,0.10632702080913499,0.10685019175888608,0.10736942817399643,0.1078847121249895,0.10839602582739306,0.10890335164235293,0.10940667207723538,0.10990596978623018,0.11040122757094542,0.11089242838099722,0.11137955531459447,0.11186259161911784,0.11234152069169338,0.11281632607976015,0.11328699148163535,0.11375350074706779,0.11421583787779226,0.11467398702807477,0.11512793250525324,0.11557765877027258,0.11602315043821397,0.11646439227881879,0.11690136921700614,0.11733406633338753,0.11776246886477051,0.11818656220466212,0.11860633190376366,0.1190217636704604,0.11943284337130587,0.11983955703149983,0.12024189083536047,0.120639831126793,0.12103336440974775,0.12142247734867717,0.12180715676898457,0.12218738965746771,0.12256316316275624,0.12293446459574364,0.12330128143001272,0.12366360130225536,0.12402141201268828,0.12437470152545835,0.12472345796904653,0.1250676696366638,0.12540732498664112,0.12574241264281386,0.12607292139489984,0.12639884019887138,0.12672015817732313,0.12703686461982958,0.12734894898330118,0.1276564008923317,0.12795921013954048,0.12825736668590823,0.12855086066110707,0.12883968236382398,0.1291238222620786,0.12940327099353557,0.12967801936580828,0.12994805835675935,0.1302133791147935,0.13047397295914426,0.13072983138015518,0.13098094603955399,0.13122730877072103,0.13146891157895255,0.13170574664171505,0.13193780630889612,0.132165083103048,0.13238756971962473,0.13260525902721326,0.13281814406775874,0.13302621805678258,0.13322947438359528,0.13342790661150297,0.13362150847800605,0.13381027389499392,0.13399419694893175,0.13417327190104184,0.1343474931874781,0.13451685541949465,0.13468135338360768,0.1348409820417523,0.13499573653143063,0.13514561216585586,0.13529060443408936,0.1354307090011706,0.1355659217082419,0.13569623857266636,0.1358216557881391,0.13594216972479278,0.13605777692929708,0.13616847412494992,0.13627425821176517,0.13637512626655154,0.1364710755429868,0.13656210347168452,0.1366482076602554,0.13672938589336134,0.13680563613276403,0.13687695651736645,0.13694334536324848,0.137004801163696,0.13706132258922377,0.13711290848759164,0.13715955788381468,0.1372012699801671,0.1372380441561794,0.13726987996862952,0.13729677715152738,0.1373187356160934,0.13733575545073023,0.13734783692098881,0.13735498046952727,0.13735718671606412,0.13735445645732486,0.13734679066698235,0.13733419049559067,0.13731665727051293,0.13729419249584246,0.1372667978523181,0.13723447519723267,0.13719722656433547,0.13715505416372842,0.13710796038175596,0.13705594778088825,0.13699901909959875,0.1369371772522352,0.136870425328884,0.13679876659522874,0.13672220449240258,0.13664074263683373,0.13655438482008556,0.13646313500868937,0.1363669973439722,0.1362659761418774,0.13616007589277948,0.13604930126129233,0.1359336570860718,0.13581314837961186,0.13568778032803402,0.13555755829087168,0.13542248780084687,0.13528257456364248,0.135137824457667,0.13498824353381367,0.13483383801521348,0.13467461429698196,0.13451057894595975,0.13434173870044772,0.1341681004699343,0.13398967133481937,0.13380645854612971,0.1336184695252295,0.13342571186352437,0.13322819332216,0.133025921831714,0.132818905491882,0.13260715257115824,0.13239067150650874,0.13216947090304088,0.1319435595336645,0.13171294633874883,0.13147764042577234,0.1312376510689676,0.13099298770895926,0.13074365995239756,0.13048967757158333,0.13023105050409092,0.1299677888523819,0.12969990288341454,0.12942740302824712,0.12915029988163562,0.1288686042016251,0.128582326909136,0.12829147908754465,0.12799607198225604,0.1276961170002749,0.12739162570976728,0.127082609839618,0.12676908127898268,0.12645105207683321,0.12612853444149863,0.12580154074019959,0.12547008349857647,0.12513417540021468,0.12479382928616148,0.12444905815443848,0.12409987515954843,0.12374629361197668,0.12338832697768692,0.12302598887761133,0.1226592930871362,0.12228825353557932,0.1219128843056668,0.12153319963299967,0.1211492139055178,0.12076094166295746,0.12036839759630416,0.11997159654723942,0.11957055350758336,0.11916528361872951,0.11875580217107866,0.11834212460346322,0.11792426650256874,0.11750224360234927,0.11707607178343805,0.11664576707255295,0.11621134564189636,0.11577282380855121,0.1153302180338687,0.11488354492285638,0.11443282122355608,0.11397806382641945,0.11351928976367755,0.11305651620870603,0.11258976047538519,0.11211904001745547,0.11164437242786539,0.1111657754381203,0.11068326691762068,0.11019686487299797,0.10970658744744591,0.10921245292004618,0.10871447970508982,0.10821268635139394,0.10770709154161401,0.10719771409154875,0.10668457294944625,0.10616768719529951,0.10564707604014038,0.10512275882532829,0.10459475502183437,0.10406308422952129,0.10352776617641903,0.10298882071799302,0.10244626783641425,0.1019001276398187,0.10135042036156529,0.10079716635948915,0.1002403861151504,0.09968010023307859,0.09911632944001286,0.0985490945841389,0.09797841663431754,0.09740431667931676,0.09682681592703216,0.096245935703707,0.09566169745314729,0.09507412273593299,0.09448323322862494,0.09388905072296855,0.09329159712509014,0.09269089445469612,0.09208696484426132,0.09147983053821702,0.09086951389213425,0.09025603737190321,0.08963942355290919,0.08901969511920428,0.08839687486267642,0.0877709856822109,0.0871420505828555,0.08651009267497466,0.08587513517340371,0.08523720139659866,0.0845963147657827,0.08395249880408882,0.08330577713569987,0.08265617348498133,0.08200371167561825,0.0813484156297411,0.08069030936705218,0.0800294170039478,0.07936576275263714,0.07869937092025793,0.07803026590798884,0.07735847221015942,0.07668401441335283,0.07600691719551352,0.07532720532504371,0.07464490365990079,0.0739600371466909,0.07327263081975947,0.0725827098002787,0.07189029929533305,0.07119542459699765,0.07049811108142191,0.06979838420790223,0.0690962695179559,0.06839179263439144,0.06768497926037616,0.06697585517850096,0.06626444624984255,0.0655507784130238,0.06483487768326715,0.064116770151454,0.06339648198317328,0.06267403941777126,0.06194946876739843,0.061222796416053854,0.060494048818626904,0.059763252499937886,0.0590304340537715,0.05829562014191708,0.05755883749319763,0.056820112902501135,0.05607947322980863,0.055336945399220204,0.05459255639797894,0.05384633327549258,0.05309830314235411,0.05234849316935591,0.051596930586510846,0.050843642682062276,0.05008865680149684,0.04933200034655443,0.04857370077423612,0.04781378559581059,0.04705228237581938,0.04628921873107615,0.045524622329673026,0.04475852088997641,0.04399094217962564,0.0432219140145291,0.04245146425785887,0.041679620819043646,0.040906411652760516,0.04013186475792582,0.03935600817668029,0.03857886999338186,0.03780047833358795,0.03702086136304112,0.03624004728665248,0.035458064347483824,0.034674940825728674,0.03389070503769298,0.033105385334770206,0.032319010102424384,0.03153160775916311,0.030743206755513935,0.02995383557299902,0.02916352272310875,0.02837229674627448,0.02758018621084044,0.026787219712035678,0.025993425870940667,0.025198833333462345,0.024403470769299218,0.023607366870910414,0.022810550352483153,0.022013049948899577,0.02121489441470311,0.02041611252306516,0.019616733064746573,0.018816784847068193,0.01801629669287143,0.017215297439483256,0.01641381593767985,0.015611881050649987,0.014809521652958119,0.01400676662950726,0.013203644874502563,0.012400185290410062,0.011596416786924704,0.01079236827992892,0.009988068690455766,0.009183546943651182,0.00837883196773625,0.00757395269296954,0.006768938050610469,0.005963816971878077,0.005158618386919474,0.004353371223768984,0.0035481044073123118,0.0027428468582500125,0.00193762749206132,0.0011324752179683165,0.0003274189379004967,-0.00047751245453926807,-0.0012822900751130728,-0.002086885049976272,-0.002891268516714766,-0.0036954116253769347,-0.004499285539505911,-0.005302861437171195,-0.006106110511999575,-0.006909003974204364,-0.0077115130516186466,-0.00851360899071817,-0.009315263057652965,-0.010116446539273271,-0.010917130744155557,-0.01171728700362755,-0.012516886672792306,-0.013315901131551238,-0.014114301785625153,-0.014912060067578932,-0.015709147437835573,-0.0165055353856986,-0.017301195430368458,-0.018096099121958687,-0.018890218042510742,-0.019683523807007594,-0.020475988064384963,-0.02126758249854587,-0.02205827882936445,-0.022848048813697595,-0.02363686424639049,-0.024424696961281533,-0.025211518832205664,-0.025997301773996142,-0.02678201774348467,-0.027565638740498884,-0.028348136808862827,-0.02912948403738639,-0.029909652560862202,-0.030688614561056177,-0.031466342267697046,-0.03224280795946403,-0.03301798396497259,-0.03379184266375736,-0.034564356487257614,-0.03533549791979156,-0.03610523949953779,-0.03687355381950992,-0.03764041352853023,-0.03840579133220098,-0.03916965999387354,-0.039931992335615375,-0.04069276123917384,-0.04145193964694209,-0.04220950056291375,-0.04296541705364428,-0.043719662249205225,-0.04447220934413711,-0.04522303159839987,-0.04597210233832063,-0.046719394957538254,-0.04746488291794959,-0.048208539750644396,-0.04895033905684636,-0.04969025450884713,-0.050428259850938406,-0.051164328900341546,-0.05189843554813402,-0.052630553760173386,-0.05336065757801754,-0.054088721119846236,-0.054814718581371165,-0.05553862423675184,-0.05626041243950411,-0.056980057623406466,-0.057697534303403485,-0.05841281707650619,-0.05912588062268828,-0.059836699705783765,-0.06054524917437269,-0.06125150396267245,-0.06195543909142136,-0.06265702966876004,-0.06335625089110941,-0.06405307804404542,-0.06474748650317039,-0.06543945173498035,-0.0661289492977327,-0.06681595484230268,-0.0675004441130443,-0.06818239294864369,-0.06886177728296992,-0.06953857314592216,-0.07021275666427308,-0.07088430406250827,-0.07155319166366565,-0.07221939589016328,-0.0728828932646317,-0.07354366041073813,-0.0742016740540082,-0.07485691102264347,-0.07550934824833545,-0.0761589627670755,-0.07680573171996034,-0.07744963235399745,-0.07809064202289856,-0.07872873818787744,-0.07936389841843933,-0.07999610039316749,-0.08062532190050534,-0.08125154083953502,-0.08187473522075071,-0.08249488316683172,-0.08311196291340393,-0.08372595280980469,-0.08433683131983945,-0.08494457702253522,-0.08554916861288969,-0.08615058490261593,-0.086748804820883,-0.08734380741505143,-0.08793557185140782,-0.08852407741588804,-0.08910930351480316,-0.08969122967555734,-0.09026983554736188,-0.09084510090194506,-0.09141700563425713,-0.09198552976317041,-0.09255065343217803,-0.09311235691008131,-0.09367062059167941,-0.09422542499845094,-0.0947767507792316,-0.09532457871088701,-0.09586888969898107,-0.09640966477843953,-0.09694688511420789,-0.09748053200190834,-0.0980105868684848,-0.09853703127285006,-0.0990598469065248,-0.09957901559427215,-0.1000945192947276,-0.10060634010102402,-0.10111446024141103,-0.10161886207987242,-0.10211952811673283,-0.10261644098926508,-0.10310958347228985,-0.10359893847877083,-0.10408448906040454,-0.10456621840820567,-0.10504410985308658,-0.10551814686643184,-0.10598831306067007,-0.10645459218983498,-0.10691696815012713,-0.10737542498046741,-0.10782994686304603,-0.10828051812386641,-0.10872712323328344,-0.10916974680653642,-0.10960837360427884,-0.11004298853309828,-0.11047357664603558,-0.11090012314309632,-0.11132261337175772,-0.11174103282746976,-0.1121553671541511,-0.11256560214467971,-0.11297172374137729,-0.11337371803649116,-0.11377157127266535,-0.11416526984341137,-0.11455480029357092,-0.11494014931977387,-0.11532130377089017,-0.11569825064847693,-0.11607097710721896,-0.11643947045536626,-0.11680371815516132,-0.1171637078232654,-0.11751942723117706,-0.11787086430564525,-0.11821800712907697,-0.11856084393993932,-0.1188993631331557,-0.1192335532604961,-0.11956340303096387,-0.11988890131117208,-0.12021003712571918,-0.12052679965755622,-0.12083917824834896,-0.12114716239883416,-0.12145074176917045,-0.12174990617928232,-0.12204464560920104,-0.12233495019939565,-0.12262081025110168,-0.12290221622664257,-0.12317915874974544,-0.12345162860585125,-0.12371961674241846,-0.1239831142692219,-0.12424211245864442,-0.12449660274596493,-0.12474657672963697,-0.12499202617156492,-0.12523294299737253,-0.12546931929666577,-0.12570114732328982,-0.1259284194955803,-0.1261511283966083,-0.1263692667744202,-0.12658282754226988,-0.12679180377884686,-0.1269961887284973,-0.12719597580143951,-0.1273911585739734,-0.1275817307886838,-0.12776768635463784,-0.12794901934757638,-0.1281257240101,-0.1282977947518473,-0.12846522614966924,-0.12862801294779613,-0.12878615005799898,-0.1289396325597451,-0.129088455700347,-0.1292326148951057,-0.12937210572744873,-0.12950692394905997,-0.12963706548000556,-0.1297625264088531,-0.12988330299278403,-0.1299993916577011,-0.13011078899832906,-0.13021749177830946,-0.13031949693028932,-0.13041680155600402,-0.13050940292635366,-0.13059729848147378,-0.13068048583079947,-0.13075896275312426,-0.130832727196652,-0.13090177727904326,-0.13096611128745522,-0.13102572767857623,-0.1310806250786532,-0.13113080228351381,-0.1311762582585823,-0.13121699213888913,-0.13125300322907463,-0.13128429100338657,-0.13131085510567178,-0.13133269534936132,-0.13134981171745008,-0.1313622043624699,-0.13136987360645672,-0.1313728199409119,-0.13137104402675712,-0.13136454669428338,-0.13135332894309396,-0.1313373919420414,-0.13131673702915816,-0.13129136571158154,-0.13126127966547219,-0.13122648073592696,-0.13118697093688567,-0.13114275245103124,-0.13109382762968474,-0.13104019899269373,-0.1309818692283148,-0.13091884119308986,-0.1308511179117172,-0.13077870257691532,-0.1307015985492819,-0.130619809357146,-0.13053333869641473,-0.1304421904304138,-0.13034636858972182,-0.1302458773719992,-0.13014072114181044,-0.13003090443044116,-0.12991643193570865,-0.12979730852176663,-0.1296735392189041,-0.12954512922333838,-0.1294120838970019,-0.12927440876732382,-0.12913210952700432,-0.1289851920337851,-0.1288336623102119,-0.12867752654339265,-0.12851679108474887,-0.12835146244976162,-0.12818154731771178,-0.12800705253141376,-0.12782798509694465,-0.12764435218336562,-0.1274561611224401,-0.1272634194083438,-0.12706613469737038,-0.1268643148076307,-0.12665796771874663,-0.1264471015715391,-0.12623172466771024,-0.12601184546951946,-0.12578747259945533,-0.12555861483989983,-0.1253252811327883,-0.12508748057926275,-0.12484522243932054,-0.12459851613145653,-0.12434737123229998,-0.12409179747624641,-0.12383180475508164,-0.12356740311760415,-0.12329860276923803,-0.12302541407164251,-0.12274784754231524,-0.12246591385419027,-0.12217962383523052,-0.12188898846801494,-0.12159401888931859,-0.12129472638969077,-0.12099112241302412,-0.12068321855612013,-0.1203710265682487,-0.1200545583507027,-0.11973382595634656,-0.11940884158916015,-0.11907961760377722,-0.11874616650501685,-0.11840850094741322,-0.1180666337347365,-0.11772057781951017,-0.11737034630252291,-0.11701595243233492,-0.11665740960477945,-0.1162947313624593,-0.11592793139423584,-0.11555702353471775,-0.1151820217637395,-0.11480294020583764,-0.11441979312972099,-0.11403259494773597,-0.11364136021532707,-0.11324610363049183,-0.11284684003323155,-0.11244358440499475,-0.11203635186812,-0.11162515768526941,-0.11121001725885936,-0.11079094613048586,-0.11036795998034513,-0.10994107462664919,-0.10951030602503704,-0.10907567026797865,-0.10863718358417904,-0.10819486233797271,-0.10774872302871552,-0.1072987822901717,-0.10684505688989587,-0.10638756372861038,-0.10592631983957809,-0.10546134238797111,-0.1049926486702317,-0.10452025611343493,-0.10404418227464028,-0.10356444484024195,-0.1030810616253145,-0.10259405057295283,-0.1021034297536089,-0.10160921736442359,-0.10111143172855212,-0.10061009129448999,-0.10010521463538942,-0.09959682044837392,-0.0990849275538481,-0.0985695548948031,-0.09805072153611792,-0.0975284466638563,-0.09700274958455993,-0.09647364972453458,-0.09594116662913811,-0.09540531996205823,-0.09486612950458885,-0.09432361515490245,-0.09377779692731755,-0.09322869495156287,-0.09267632947203731,-0.09212072084706362,-0.09156188954814377,-0.09099985615920449,-0.09043464137584167,-0.08986626600456069,-0.08929475096201238,-0.0887201172742257,-0.08814238607583613,-0.08756157860931134,-0.08697771622416943,-0.08639082037620047,-0.08580091262667752,-0.08520801464156719,-0.08461214819073613,-0.08401333514715387,-0.08341159748609203,-0.08280695728432065,-0.0821994367192976,-0.08158905806836153,-0.08097584370791426,-0.08035981611260336,-0.07974099785450044,-0.07911941160227638,-0.07849508012037303,-0.07786802626817144,-0.07723827299915809,-0.0766058433600835,-0.07597076049012565,-0.07533304762004239,-0.07469272807132454,-0.07404982525534519,-0.07340436267250589,-0.07275636391137963,-0.07210585264785183,-0.07145285264425422,-0.07079738774850369,-0.07013948189323024,-0.0694791590949062,-0.06881644345297157,-0.06815135914895651,-0.06748393044560128,-0.06681418168597308,-0.06614213729258121,-0.06546782176648543,-0.06479125968640946,-0.06411247570784422,-0.06343149456215211,-0.06274834105566804,-0.06206304006879804,-0.06137561655511505,-0.060686095540453344,-0.05999450212199633,-0.059300861467369924,-0.05860519881372565,-0.05790753946682532,-0.0572079088001226,-0.0565063322538423,-0.05580283533405738,-0.055097443611763885,-0.05439018272195424,-0.05368107836268457,-0.05297015629414797,-0.052257442337737534,-0.051542962375111405,-0.05082674234725495,-0.05010880825354114,-0.049389186150788675,-0.04866790215231938,-0.04794498242700921,-0.047220453198346085,-0.04649434074347728,-0.04576667139225942,-0.04503747152630572,-0.044306767578031724,-0.04357458602969922,-0.04284095341245853,-0.04210589630539012,-0.041369441334540236,-0.04063161517196375,-0.03989244453475688,-0.039151956184092486,-0.038410176924253525,-0.03766713360166472,-0.03692285310392308,-0.03617736235882789,-0.035430688333405014,-0.03468285803293882,-0.033933898499993974,-0.033183836813440545,-0.03243270008747697,-0.031680515470652044,-0.0309273101448857,-0.030173111324488824,-0.02941794625518293,-0.028661842213114394,-0.02790482650387668,-0.027146926461522707,-0.02638816944758089,-0.025628582850069345,-0.02486819408250944,-0.024107030582938383,-0.023345119812922227,-0.022582489256563438,-0.021819166419517037,-0.021055178827996943,-0.02029055402778634,-0.01952531958324651,-0.018759503076325273,-0.017993132105564812,-0.017226234285109155,-0.016458837243712127,-0.015690968623740385,-0.014922656080185183,-0.014153927279664818,-0.013384809899431277,-0.012615331626375818,-0.011845520156034291,-0.01107540319159237,-0.0103050084428915,-0.009534363625430291,-0.008763496459374893,-0.007992434668560299,-0.007221205979496206,-0.0064498381203720034,-0.005678358820061906,-0.004906795807130155,-0.004135176808836426,-0.0033635295501423376,-0.002591881752713622,-0.0018202611339317044,-0.0010486954058964648,-0.00027721227443388733,0.0004941605618967967,0.001265395412795582,0.0020364645972136947,0.0028073404443442083,0.0035779952946167017,0.004348401500682235,0.005118531428406863,0.005888357457859954,0.006657851984302778,0.007426987419176374,0.008195736191088694,0.008964070746800992,0.009731963552212498,0.010499387093348772,0.011266313877340135,0.012032716433408277,0.012798567313847325,0.013563839095004932,0.014328504378262264,0.015092535791013006,0.015855905987640327,0.01661858765049732,0.01738055349087714,0.018141776249991137,0.018902228699941084,0.01966188364469123,0.020420713921038884,0.02117869239958383,0.021935791985696253,0.022691985620482472,0.023447246281753677,0.024201546984984244,0.0249548607842775,0.025707160773325546,0.02645842008636829,0.027208611899151004,0.027957709429880167,0.028705685940176775,0.029452514736032387,0.030198169168754542,0.030942622635919344,0.031685848582317724,0.0324278205009008,0.033168511933723346,0.03390789647288534,0.03464594776147169,0.03538263949448891,0.03611794541980434,0.036851839339074544,0.03758429510868026,0.03831528664065508,0.03904478790361269,0.039772772923672026,0.040499215785380266,0.041224090632632555,0.04194737166959397,0.04266903316161049,0.04338904943612617,0.04410739488359382,0.04482404395838392,0.04553897117969126,0.04625215113243918,0.04696355846818114,0.04767316790599897,0.048380954233402815,0.04908689230722019,0.049790957054490506,0.050493123473353066,0.05119336663393304,0.05189166167922472,0.0525879838259722,0.053282308365546226,0.05397461066482247,0.05466486616704871,0.05535305039271748,0.056039138940431464,0.056723107487767,0.05740493179213458,0.05808458769163618,0.05876205110591985,0.05943729803703025,0.06011030457026017,0.06078104687499079,0.06144950120553727,0.06211564390198646,0.06277945139103278,0.06344090018681066,0.06409996689172362,0.06475662819726952,0.06541086088486608,0.0660626418266657,0.06671194798637411,0.06735875642006227,0.06800304427697525,0.06864478880033784,0.06928396732815661,0.06992055729401837,0.07055453622788446,0.07118588175688523,0.07181457160610318,0.07244058359936029,0.07306389565999766,0.07368448581165254,0.07430233217903118,0.07491741298867846,0.07552970656974255,0.07613919135473986,0.07674584588030846,0.07734964878796528,0.07795057882485562,0.07854861484449949,0.07914373580753409,0.07973592078245223,0.08032514894633702,0.08091139958559143,0.08149465209666786,0.08207488598678608,0.08265208087465455,0.08322621649118397,0.08379727268019725,0.0843652293991356,0.08493006671976026,0.08549176482884936,0.08605030402889398,0.08660566473878323,0.08715782749449168,0.08770677294975929,0.08825248187676754,0.08879493516681118,0.0893341138309659,0.08986999900075114,0.09040257192878841,0.09093181398945778,0.09145770667954384,0.0919802316188837,0.0924993705510069,0.09301510534377172,0.0935274179899968,0.0940362906080883,0.09454170544266166,0.09504364486516215,0.09554209137447404,0.0960370275975321,0.0965284362899245,0.09701630033649218,0.09750060275192324,0.09798132668134277,0.0984584554008975,0.09893197231833588,0.0994018609735853,0.09986810503931937,0.10033068832152596,0.10078959476006726,0.10124480842923589,0.1016963135383059,0.10214409443207889,0.10258813559142453,0.10302842163381916,0.10346493731387353,0.10389766752386137,0.10432659729424008,0.10475171179416684,0.1051729963320098,0.10559043635585408,0.10600401745400287,0.10641372535547282,0.10681954593048665,0.10722146519095595,0.10761946929096357,0.10801354452723842,0.10840367733962572,0.10878985431155176,0.10917206217048364,0.10955028778838338,0.10992451818215891,0.11029474051410518,0.1106609420923448,0.11102311037126102,0.11138123295192562,0.11173529758252179,0.1120852921587615,0.11243120472429755,0.11277302347112998,0.1131107367400088,0.11344433302082765,0.11377380095301583,0.11409912932592307,0.11442030707919919,0.11473732330316831,0.11505016723919742,0.11535882828005965,0.1156632959702933,0.11596356000655206,0.11625961023795316,0.11655143666641836,0.11683902944700979,0.11712237888826002,0.11740147545249685,0.11767630975616226,0.11794687257012579,0.11821315481999364,0.11847514758640913,0.11873284210535076,0.11898622976842298,0.11923530212314173,0.11948005087321426,0.11972046787881344,0.11995654515684608,0.12018827488121675,0.1204156493830837,0.12063866115111124,0.12085730283171564,0.12107156722930507,0.12128144730651422,0.12148693618443314,0.1216880271428303,0.1218847136203695,0.12207698921482274,0.12226484768327452,0.12244828294232299,0.12262728906827397,0.12280186029732988,0.12297199102577236,0.12313767581013937,0.12329890936739661,0.12345568657510349,0.12360800247157204,0.12375585225602156,0.12389923128872661,0.12403813509115942,0.12417255934612655,0.12430249989789956,0.12442795275234017,0.12454891407701912,0.12466538020133028,0.1247773476165971,0.12488481297617512,0.1249877730955476,0.1250862249524156,0.12518016568678222,0.12526959260103107,0.12535450315999866,0.12543489499104152,0.12551076588409654,0.1255821137917364,0.1256489368292187,0.1257112332745295,0.12576900156842044,0.12582224031444086,0.12587094827896347,0.12591512439120425,0.125954767743237,0.12598987759000113,0.12602045334930462,0.12604649460182035,0.12606800109107708,0.12608497272344435,0.1260974095681117,0.12610531185706167,0.1261086799850378,0.1261075145095057,0.1261018161506092,0.1260915857911202,0.12607682447638288,0.12605753341425194,0.12603371397502527,0.12600536769137033,0.12597249625824564,0.12593510153281504,0.12589318553435772,0.12584675044417118,0.12579579860546922,0.12574033252327374,0.12568035486430074,0.12561586845684072,0.1255468762906334,0.12547338151673618,0.12539538744738715,0.1253128975558628,0.12522591547632908,0.12513444500368726,0.12503849009341408,0.1249380548613958,0.12483314358375677,0.1247237606966827,0.12460991079623697,0.12449159863817284,0.12436882913773864,0.12424160736947801,0.12410993856702433,0.123973828122889,0.12383328158824496,0.12368830467270374,0.12353890324408676,0.12338508332819209,0.12322685110855479,0.1230642129262012,0.12289717527939858,0.12272574482339842,0.12254992837017467,0.12236973288815604,0.12218516550195306,0.12199623349207851,0.12180294429466451,0.12160530550117168,0.12140332485809437,0.12119701026665938,0.12098636978251989,0.12077141161544358,0.12055214412899556,0.1203285758402145,0.12010071541928592,0.11986857168920761,0.11963215362545056,0.11939147035561452,0.1191465311590782,0.1188973454666436,0.11864392286017567,0.11838627307223626,0.11812440598571167,0.11785833163343752,0.11758806019781563,0.1173136020104268,0.11703496755163832,0.1167521674502057,0.11646521248286976,0.11617411357394826,0.11587888179492097,0.11557952836401279,0.11527606464576821,0.1149685021506224,0.11465685253446659,0.11434112759820876,0.11402133928732847,0.11369749969142738,0.1133696210437743,0.11303771572084383,0.11270179624185343,0.11236187526829171,0.11201796560344354,0.11167008019190991,0.11131823211912267,0.1109624346108543,0.11060270103272309,0.11023904488969151,0.1098714798255636,0.10950001962247317,0.10912467820036978,0.10874546961649871,0.10836240806487656,0.1079755078757618,0.1075847835151208,0.10719024958408895,0.1067919208184254,0.1063898120879672,0.10598393839607438,0.10557431487907223,0.10516095680568896,0.10474387957648824,0.10432309872329738,0.10389862990863082,0.10347048892510936,0.10303869169487252,0.10260325426899128,0.10216419282687114,0.10172152367565349,0.10127526324961147,0.100825428109542,0.10037203494215287,0.09991510055944607,0.09945464189809407,0.09899067601881716,0.09852322010575097,0.09805229146581226,0.09757790752806014,0.09710008584305257,0.09661884408219906,0.09613420003710887,0.09564617161893559,0.09515477685771458,0.09466003390170233,0.09416196101670549,0.09366057658540905,0.0931558991066993,0.09264794719498357,0.09213673957950505,0.09162229510365479,0.09110463272427632,0.09058377151097267,0.09005973064540318,0.08953252942057938,0.08900218724015654,0.08846872361772135,0.08793215817607562,0.0873925106465162,0.08684980086811182,0.08630404878697306,0.08575527445552468,0.08520349803176824,0.08464873977854384,0.08409102006278785,0.08353035935478703,0.08296677822742872,0.08240029735544861,0.08183093751467113,0.08125871958125351,0.0806836645309191,0.08010579343819126,0.07952512747562233,0.07894168791302004,0.07835549611666993,0.07776657354855462,0.07717494176557053,0.07658062241873784,0.07598363725241392,0.0753840081034968,0.07478175690062891,0.0741769056633968,0.07356947650152779,0.07295949161408356,0.07234697328865132,0.07173194390052826,0.07111442591191026,0.07049444187107048,0.06987201441153831,0.06924716625127497,0.06861992019184601,0.06799029911759095,0.06735832599479012,0.06672402387082954,0.06608741587335891,0.06544852520945472,0.06480737516477306,0.06416398910270314,0.06351839046351795,0.06287060276352187,0.062220649594195716,0.06156855462134028,0.06091434158421309,0.06025803429467061,0.05959965663630023,0.05893923256355349,0.05827678610087643,0.05761234134183722,0.05694592244825159,0.0562775536493061,0.05560725924067958,0.05493506358365853,0.05426099110425833,0.053585066292334074,0.05290731370069348,0.052227757944206525,0.051546423698913456,0.05086333570113026,0.05017851874655325,0.0494919976893574,0.04880379744130093,0.048113942970819855,0.04742245930212453,0.04672937151429369,0.046034704740366604,0.04533848416643337,0.044640735030723494,0.04394148262269354,0.04324075228210888,0.04253856939813221,0.041834959408401935,0.04112994779811326,0.0404235600990968,0.03971582188889564,0.03900675878984095,0.03829639646812681,0.037584760632879716,0.03687187703523472,0.03615777146740197,0.03544246976173611,0.03472599778980357,0.03400838146144843,0.03328964672385724,0.03256981956062245,0.03184892599080567,0.03112699206799547,0.030404043879372563,0.02968010754476548,0.028955209215709377,0.028229375074503054,0.027502631333265016,0.026775004232988512,0.026046520042596617,0.025317205057992134,0.02458708560111524,0.023856188018991732,0.023124538682784832,0.022392163986845435,0.021659090347761534,0.020925344203407137,0.02019095201199045,0.019455940251102408,0.018720335416760228,0.017984164022459212,0.017247452598215262,0.01651022768961143,0.01577251585684301,0.015034343673762378,0.014295737726923425,0.013556724614626517,0.012817330945958853,0.012077583339843288,0.01133750842407819,0.01059713283438151,0.009856483213433813,0.009115586209921195,0.008374468477578138,0.007633156674230281,0.0068916774608381364,0.006150057500536336,0.005408323457681807,0.004666501996893214,0.003924619782094929,0.003182703475560276,0.0024407797369549915,0.001698875222380892,0.0009570165834207054,0.0002152304661787859,-0.0005264564896690309,-0.0012680176518340108,-0.002009426396368297,-0.002750656108619134,-0.003491680184182627,-0.004232472029856984,-0.004973005064595242,-0.0057132527204565246,-0.006453188443561082,-0.0071927856950359395,-0.00793201795196862,-0.008670858708355782,-0.009409281476052,-0.010147259785717764,-0.010884767187766651,-0.011621777253310832,-0.012358263575109999,-0.013094199768510716,-0.013829559472393494,-0.014564316350114589,-0.015298444090447595,-0.01603191640852405,-0.01676470704677292,-0.017496789775858983,-0.018228138395619216,-0.018958726736002334,-0.019688528657998396,-0.020417518054575923,-0.02114566885161335,-0.021872955008830006,-0.022599350520715794,-0.0233248294174595,-0.024049365765874776,-0.024772933670329043,-0.02549550727366223,-0.02621706075811272,-0.026937568346237332,-0.027657004301830677,-0.02837534293084285,-0.029092558582295498,-0.029808625649196233,-0.030523518569450462,-0.03123721182677569,-0.03194967995160567,-0.032660897522001145,-0.033370839164554494,-0.03407947955529343,-0.034786793420582815,-0.03549275553802437,-0.036197340737353825,-0.03690052390134005,-0.03760227996667394,-0.038302583924863506,-0.039001410823122695,-0.03969873576525905,-0.040394533912559025,-0.04108878048467126,-0.04178145076048754,-0.042472520079020804,-0.043161963840284784,-0.0438497575061634,-0.04453587660128568,-0.04522029671389458,-0.04590299349671389,-0.04658394266781281,-0.04726312001146828,-0.04794050137902359,-0.048616062689748905,-0.04928977993169086,-0.04996162916252782,-0.05063158651041849,-0.05129962817484842,-0.05196573042747424,-0.05262986961296495,-0.05329202214984038,-0.053952164531306364,-0.05461027332609079,-0.055266325179269174,-0.05592029681309506,-0.05657216502782383,-0.057221906702534,-0.05786949879594609,-0.05851491834723805,-0.059158142476857224,-0.059799148387332954,-0.060437913364078576,-0.06107441477619788,-0.06170863007728471,-0.06234053680622015,-0.06297011258796657,-0.06359733513435845,-0.06422218224488985,-0.06484463180749818,-0.06546466179934822,-0.06608225028760521,-0.06669737543021252,-0.06731001547666168,-0.06792014876876025,-0.06852775374139594,-0.06913280892329739,-0.06973529293779081,-0.0703351845035567,-0.07093246243537575,-0.0715271056448785,-0.07211909314128774,-0.07270840403215818,-0.07329501752411219,-0.07387891292357221,-0.07446006963748927,-0.0750384671740673,-0.07561408514348675,-0.07618690325861814,-0.07675690133573823,-0.07732405929523929,-0.07788835716233478,-0.07844977506776175,-0.07900829324847891,-0.07956389204836023,-0.08011655191888804,-0.0806662534198355,-0.08121297721995162,-0.081756704097639,-0.08229741494162836,-0.08283509075164877,-0.08336971263909407,-0.08390126182768483,-0.08442971965412603,-0.08495506756876327,-0.08547728713622893,-0.08599636003609001,-0.08651226806348915,-0.08702499312978146,-0.08753451726316755,-0.08804082260932194,-0.08854389143201691,-0.08904370611374465,-0.08954024915632948,-0.0900335031815413,-0.09052345093170185,-0.09101007527028727,-0.09149335918252609,-0.09197328577599256,-0.09244983828119603,-0.09292300005216482,-0.0933927545670286,-0.0938590854285905,-0.09432197636490046,-0.09478141122982099,-0.09523737400358913,-0.09568984879337346,-0.09613881983382691,-0.09658427148763404,-0.09702618824605652,-0.09746455472946833,-0.09789935568789213,-0.09833057600152743,-0.09875820068127543,-0.09918221486925834,-0.0996026038393344,-0.10001935299760793,-0.1004324478829341,-0.1008418741674213,-0.1012476176569237,-0.10164966429153412,-0.10204800014606923,-0.10244261143055038,-0.10283348449067979,-0.10322060580831156,-0.1036039620019173,-0.10398353982704911,-0.10435932617679314,-0.1047313080822224,-0.1050994727128427,-0.10546380737703355,-0.10582429952248447,-0.10618093673662601,-0.10653370674705549,-0.10688259742195771,-0.1072275967705223,-0.10756869294335197,-0.10790587423286958,-0.10823912907371816,-0.10856844604315623,-0.10889381386144771,-0.10921522139224694,-0.10953265764297798,-0.10984611176521046,-0.11015557305502664,-0.11046103095338708,-0.11076247504648873,-0.1110598950661187,-0.11135328089000245,-0.11164262254214653,-0.11192791019317662,-0.11220913416066913,-0.11248628490947998,-0.11275935305206397,-0.1130283293487927,-0.11329320470826497,-0.11355397018761296,-0.11381061699280198,-0.11406313647892563,-0.11431152015049505,-0.11455575966172407,-0.11479584681680631,-0.11503177357018955,-0.11526353202684331,-0.11549111444252134,-0.11571451322401842,-0.1159337209294222,-0.11614873026835888,-0.11635953410223399,-0.11656612544446804,-0.11676849746072505,-0.11696664346913746,-0.11716055694052457,-0.1173502314986057,-0.11753566092020781,-0.11771683913546761,-0.1178937602280278,-0.11806641843522907,-0.11823480814829439,-0.11839892391250954,-0.11855876042739762,-0.11871431254688765,-0.11886557527947794,-0.11901254378839389,-0.11915521339173997,-0.11929357956264618,-0.11942763792940982,-0.11955738427562955,-0.11968281454033632,-0.11980392481811712,-0.11992071135923357,-0.12003317056973516,-0.12014129901156648,-0.1202450934026689,-0.12034455061707737,-0.12043966768501023,-0.1205304417929546,-0.12061687028374565,-0.12069895065664034,-0.1207766805673855,-0.12085005782828036,-0.12091908040823342,-0.12098374643281343,-0.12104405418429573,-0.1211000021017012,-0.12115158878083139,-0.12119881297429687,-0.12124167359154062,-0.12128016969885513,-0.12131430051939454,-0.12134406543318074,-0.12136946397710391,-0.12139049584491747,-0.12140716088722757,-0.12141945911147654,-0.1214273906819212,-0.12143095591960514,-0.12143015530232565,-0.1214249894645949,-0.12141545919759562,-0.12140156544913093,-0.1213833093235688,-0.12136069208178095,-0.12133371514107573,-0.12130238007512582,-0.12126668861389037,-0.12122664264353093,-0.1211822442063228,-0.12113349550055949,-0.12108039888045297,-0.12102295685602739,-0.12096117209300758,-0.12089504741270189,-0.12082458579187944,-0.12074979036264212,-0.12067066441229048,-0.12058721138318454,-0.12049943487259884,-0.12040733863257198,-0.12031092656975081,-0.12021020274522881,-0.12010517137437896,-0.11999583682668147,-0.11988220362554561,-0.11976427644812629,-0.11964206012513463,-0.1195155596406442,-0.11938478013189045,-0.11924972688906546,-0.11911040535510711,-0.11896682112548262,-0.11881897994796682,-0.11866688772241496,-0.11851055050053005,-0.11834997448562441,-0.11818516603237698,-0.1180161316465838,-0.11784287798490403,-0.1176654118546003,-0.1174837402132735,-0.1172978701685929,-0.11710780897802016,-0.11691356404852754,-0.11671514293631308,-0.11651255334650792,-0.11630580313287937,-0.1160949002975289,-0.11587985299058436,-0.11566066950988743,-0.11543735830067516,-0.11520992795525739,-0.11497838721268662,-0.11474274495842625,-0.1145030102240104,-0.1142591921866998,-0.11401130016913281,-0.1137593436389706,-0.11350333220853763,-0.113243275634457,-0.11297918381727944,-0.11271106680111002,-0.11243893477322665,-0.1121627980636955,-0.11188266714498019,-0.11159855263154683,-0.11131046527946345,-0.11101841598599459,-0.11072241578919119,-0.11042247586747385,-0.11011860753921432,-0.1098108222623089,-0.10949913163374844,-0.10918354738918296,-0.10886408140248169,-0.10854074568528775,-0.10821355238656877,-0.10788251379216046,-0.10754764232430927,-0.10720895054120633,-0.10686645113651848,-0.10652015693891433,-0.10617008091158525,-0.10581623615176164,-0.10545863589022463,-0.10509729349081358,-0.10473222244992612,-0.10436343639601865,-0.10399094908909715,-0.10361477442020585,-0.10323492641091084,-0.10285141921277904,-0.10246426710685225,-0.10207348450311782,-0.10167908593997149,-0.10128108608368135,-0.10087949972784166,-0.10047434179282543,-0.10006562732523122,-0.09965337149732627,-0.09923758960648432,-0.09881829707461998,-0.09839550944761842,-0.09796924239475857,-0.09753951170813709,-0.09710633330208238,-0.09666972321256782,-0.0962296975966191,-0.09578627273171811,-0.09533946501520225,-0.09488929096366013,-0.09443576721232017,-0.09397891051444097,-0.0935187377406914,-0.09305526587852977,-0.0925885120315784,-0.09211849341899356,-0.09164522737483208,-0.09116873134741325,-0.09068902289867785,-0.09020611970353973,-0.08972003954923996,-0.08923080033469032,-0.08873842006981668,-0.08824291687489716,-0.08774430897989698,-0.087242614723799,-0.08673785255393159,-0.08623004102528903,-0.0857191987998548,-0.08520534464591444,-0.0846884974373686,-0.08416867615304069,-0.08364589987598184,-0.0831201877927716,-0.0825915591928152,-0.08206003346763807,-0.08152563011017322,-0.08098836871405175,-0.08044826897288325,-0.07990535067953605,-0.07935963372541345,-0.07881113809972623,-0.07825988388876197,-0.07770589127515154,-0.07714918053712912,-0.07658977204779512,-0.07602768627436957,-0.07546294377744542,-0.07489556521023773,-0.07432557131783003,-0.07375298293641698,-0.07317782099254445,-0.07260010650234658,-0.0720198605707767,-0.07143710439084182,-0.07085185924282741,-0.07026414649352221,-0.06967398759543972,-0.06908140408603662,-0.06848641758692817,-0.0678890498031014,-0.06728932252212201,-0.0666872576133453,-0.06608287702711746,-0.0654762027939773,-0.06486725702385465,-0.06425606190526607,-0.06364263970450781,-0.06302701276484593,-0.06240920350570485,-0.061789234421849144,-0.06116712808257061,-0.06054290713086496,-0.05991659428260982,-0.05928821232573973,-0.05865778411941824,-0.058025332593207885,-0.057390880746238375,-0.05675445164636861,-0.056116068429353974,-0.05547575429800368,-0.05483353252133959,-0.054189426433752165,-0.053543459434153944,-0.05289565498513093,-0.05224603661209202,-0.051594627902416576,-0.050941452504596633,-0.050286534127384104,-0.04962989653892889,-0.048971563565918176,-0.048311559092713556,-0.04764990706048571,-0.046986631466347566,-0.046321756362486075,-0.0456553058552883,-0.044987304104473574,-0.044317775322215903,-0.04364674377226868,-0.042974233769086725,-0.04230026967694665,-0.04162487590906574,-0.040948076926718896,-0.04026989723835495,-0.039590361398707544,-0.038909494007912056,-0.03822731971061343,-0.03754386319507638,-0.03685914919229316,-0.03617320247509028,-0.03548604785723355,-0.034797710192531875,-0.03410821437394059,-0.033417585332659386,-0.0327258480372371,-0.032033027492667204,-0.03133914873948618,-0.030644236852869874,-0.029948316941728715,-0.029251414147801965,-0.02855355364475159,-0.027854760637251102,-0.027155060360081508,-0.026454478077218273,-0.02575303908092124,-0.02505076869082303,-0.024347692253016452,-0.023643835139141145,-0.022939222745469407,-0.022233880491992108,-0.02152783382149967,-0.020821108198670783,-0.02011372910915196,-0.01940572205864079,-0.01869711257196769,-0.017987926192177053,-0.017278188479607947,-0.016567925010975117,-0.01585716137844529,-0.015145923188721511,-0.014434236062118652,-0.013722125631642705,-0.013009617542069016,-0.012296737449020094,-0.011583511018043256,-0.010869963923687963,-0.010156121848583857,-0.009442010482514359,-0.008727655521498623,-0.008013082666864905,-0.007298317624328119,-0.006583386103066503,-0.00586831381479825,-0.0051531264728582405,-0.0044378497912756195,-0.0037225094838472753,-0.003007131263219896,-0.002291740839963746,-0.001576363921650848,-0.0008610262119325624,-0.0001457534096174298,0.0005694287922506974,0.0012844947073141874,0.001999418656821957,0.002714174970553635,0.003428737987734832,0.0041430820579604205,0.004857181542113071,0.005571010813282135,0.006284544257681942,0.0069977562755695255,0.0077106212821608485,0.008423113708550645,0.009135208002623057,0.009846878629970066,0.010558100074804878,0.01126884684087541,0.011979093452376948,0.012688814454863917,0.01339798441616081,0.014106577927271331,0.01481456960329079,0.015521934084309111,0.01622864603632123,0.01693468015213223,0.01764001115226229,0.018344613785850394,0.019048462831557048,0.01975153309846486,0.020453799426982177,0.021155236689737032,0.021855819792478276,0.022555523674971142,0.023254323311892314,0.023952193713723695,0.024649109927644693,0.025345047038423118,0.026039980169303735,0.026733884482899525,0.027426735182073107,0.028118507510824866,0.028809176755175338,0.029498718244046884,0.030187107350143537,0.030874319490829406,0.03156033012900426,0.03224511477398171,0.03292864898235728,0.033610908358882856,0.0342918685573353,0.03497150528138388,0.03564979428545586,0.036326711375600194,0.03700223241034919,0.037676333301577346,0.03834899001536229,0.03902017857283555,0.03968987505103922,0.040358055583776684,0.0410246963624617,0.0416897736369656,0.04235326371646205,0.043015142970268976,0.04367538782869202,0.04433397478385782,0.04499088039055301,0.04564608126705661,0.04629955409597123,0.04695127562505144,0.04760122266802997,0.048249372105441356,0.04889570088544229,0.04954018602463326,0.05018280460886997,0.05082353379408001,0.05146235080707264,0.0520992329463472,0.0527341575828985,0.053367102161019586,0.05399804419910112,0.054626961290431576,0.0552538311039873,0.055878631385227175,0.05650133995688069,0.057121934719733834,0.057740393653412284,0.05835669481716135,0.05897081635062324,0.05958273647461054,0.06019243349188013,0.06079988578789704,0.06140507183160238,0.0620079701761746,0.06260855945978823,0.06320681840636964,0.06380272582634952,0.06439626061741145,0.06498740176524079,0.06557612834426332,0.06616241951838754,0.06674625454174021,0.06732761275939922,0.06790647360812313,0.06848281661707743,0.06905662140855708,0.06962786769870517,0.07019653529823171,0.07076260411312164,0.07132605414534643,0.07188686549356883,0.07244501835384452,0.07300049302032025,0.0735532698859284,0.0741033294430774,0.07465065228434123,0.07519521910313942,0.07573701069441935,0.07627600795533168,0.07681219188590291,0.07734554358970377,0.07787604427451418,0.07840367525298397,0.07892841794328964,0.07945025386978996,0.07996916466367154,0.0804851320635969,0.08099813791634511,0.08150816417744951,0.08201519291183113,0.08251920629442833,0.0830201866108216,0.08351811625785735,0.08401297774426195,0.08450475369125705,0.08499342683316852,0.0854789800180311,0.08596139620818957,0.08644065848089527,0.08691675002889862,0.08738965416103682,0.08785935430282024,0.08832583399700854,0.08878907690418866,0.08924906680334524,0.08970578759242767,0.09015922328891236,0.09060935803036103,0.09105617607497402,0.09149966180214154,0.09193979971298562,0.09237657443090266,0.09280997070209909,0.09323997339612258,0.09366656750638958,0.09408973815070742,0.09450947057179283,0.0949257501377844,0.09533856234275397,0.09574789280720762,0.0961537272785875,0.09655605163176652,0.09695485186953871,0.09735011412310507,0.09774182465255478,0.09812996984734104,0.0985145362267548,0.09889551044038905,0.09927287926860276,0.09964662962297827,0.10001674854677373,0.10038322321537134,0.10074604093672047,0.10110518915177605,0.10146065543493155,0.10181242749444969,0.10216049317288335,0.10250484044749661,0.10284545743067819,0.10318233237035064,0.10351545365037469,0.10384480979094853,0.10417038944900178,0.10449218141858665,0.10481017463125979,0.1051243581564635,0.10543472120189984,0.10574125311390001,0.10604394337778891,0.10634278161824441,0.10663775759965177,0.10692886122645273,0.10721608254349095,0.10749941173634914,0.10777883913168458,0.1080543551975576,0.1083259505437556,0.10859361592211153,0.10885734222681766,0.10911712049473357,0.10937294190569068,0.10962479778278865,0.10987267959268916,0.11011657894590367,0.11035648759707584,0.11059239744525877,0.11082430053418721,0.11105218905254438,0.11127605533422327,0.11149589185858426,0.11171169125070456,0.11192344628162505,0.11213114986859088,0.11233479507528658,0.11253437511206618,0.11272988333617799,0.11292131325198382,0.11310865851117392,0.11329191291297461,0.11347107040435261,0.11364612508021302,0.1138170711835921,0.11398390310584493,0.11414661538682737,0.11430520271507308,0.11445965992796461,0.11460998201190027,0.11475616410245383,0.11489820148453048,0.11503608959251671,0.11516982401042485,0.11529940047203212,0.11542481486101475,0.11554606321107604,0.11566314170606988,0.11577604668011761,0.11588477461772075,0.11598932215386769,0.11608968607413486,0.11618586331478306,0.11627785096284761,0.11636564625622359,0.11644924658374557,0.11652864948526205,0.11660385265170382,0.11667485392514783,0.11674165129887475,0.11680424291742188,0.11686262707663006,0.11691680222368532,0.11696676695715505,0.11701252002701923,0.11705406033469508,0.11709138693305746,0.11712449902645329,0.11715339597071045,0.11717807727314145,0.11719854259254169,0.11721479173918208,0.11722682467479635,0.11723464151256291,0.1172382425170814,0.11723762810434342,0.11723279884169852,0.11722375544781385,0.11721049879262932,0.11719302989730657,0.11717134993417311,0.11714546022666049,0.11711536224923763,0.11708105762733832,0.11704254813728339,0.11699983570619764,0.11695292241192122,0.11690181048291563,0.11684650229816433,0.11678700038706812,0.11672330742933473,0.11665542625486353,0.11658335984362454,0.11650711132553232,0.11642668398031401,0.1163420812373726,0.11625330667564443,0.1161603640234518,0.11606325715834932,0.11596199010696623,0.11585656704484228,0.11574699229625884,0.11563327033406452,0.11551540577949554,0.11539340340199082,0.11526726811900151,0.11513700499579611,0.11500261924525838,0.11486411622768272,0.11472150145056191,0.11457478056837084,0.11442395938234445,0.1142690438402509,0.11411004003615903,0.11394695421020111,0.11377979274832928,0.11360856218206887,0.11343326918826432,0.11325392058882108,0.11307052335044228,0.11288308458435979,0.11269161154606064,0.11249611163500803,0.11229659239435726,0.11209306151066584,0.11188552681360053,0.11167399627563679,0.11145847801175485,0.11123898027912978,0.11101551147681712,0.110788080145433,0.11055669496682984,0.11032136476376536,0.11008209849956946,0.10983890527780354,0.10959179434191568,0.10934077507489127,0.10908585699889795,0.10882704977492624,0.10856436320242474,0.10829780721893109,0.10802739189969629,0.10775312745730697,0.10747502424130048,0.10719309273777557,0.10690734356899896,0.10661778749300624,0.10632443540319844,0.10602729832793406,0.10572638743011442,0.1054217140067678,0.1051132894886254,0.10480112543969418,0.10448523355682479,0.10416562566927447,0.1038423137382657,0.10351530985653977,0.10318462624790639,0.10285027526678638,0.10251226939775387,0.10217062125507002,0.10182534358221386,0.10147644925140839,0.10112395126314197,0.10076786274568528,0.10040819695460405,0.1000449672722654,0.09967818720734362,0.09930787039431727,0.09893403059296449,0.09855668168785267,0.09817583768782415,0.09779151272547752,0.09740372105664441,0.09701247705986252,0.09661779523584177,0.09621969020693112,0.09581817671657611,0.0954132696287747,0.09500498392752806,0.09459333471628772,0.09417833721739774,0.09376000677153379,0.09333835883713529,0.0929134089898384,0.09248517292189992,0.09205366644161968,0.09161890547275796,0.09118090605394953,0.09073968433811279,0.09029525659185558,0.0898476391948772,0.08939684863936374,0.08894290152938505,0.08848581458028212,0.08802560461805338,0.08756228857873664,0.0870958835077869,0.08662640655945061,0.0861538749961366,0.08567830618778009,0.08519971761120906,0.08471812684950075,0.08423355159133755,0.0837460096303586,0.08325551886450752,0.08276209729537654,0.08226576302754728,0.08176653426792801,0.0812644293250848,0.08075946660857478,0.08025166462826995,0.07974104199368064,0.07922761741327461,0.07871140969379298,0.07819243773956226,0.07767072055180424,0.07714627722793875,0.07661912696088972,0.07608928903838141,0.07555678284223452,0.07502162784765852,0.07448384362254049,0.07394344982673087,0.07340046621132597,0.07285491261794798,0.0723068089780184,0.07175617531203511,0.07120303172883972,0.07064739842488486,0.07008929568349817,0.06952874387414305,0.06896576345167628,0.0684003749556037,0.06783259900932921,0.06726245631940782,0.06668996767478905,0.06611515394606068,0.06553803608468918,0.06495863512225719,0.06437697216969843,0.06379306841652949,0.06320694513007999,0.06261862365471639,0.06202812541106994,0.06143547189525538,0.06084068467809011,0.06024378540431052,0.05964479579178527,0.05904373763072646,0.05844063278289887,0.05783550318082313,0.05722837082698346,0.05661925779302627,0.05600818621895947,0.05539517831234905,0.05478025634751319,0.0541634426647141,0.053544759669347554,0.052924229831131056,0.052301875683285926,0.051677719821724775,0.05105178490422931,0.05042409364962975,0.0497946688369815,0.04916353330473961,0.04853070994993134,0.04789622172732748,0.04726009164860774,0.04662234278153209,0.04598299824910226,0.0453420812287254,0.04469961495137508,0.0440556227007504,0.043410127812433426,0.04276315367304473,0.0421147237193981,0.04146486143764966,0.04081359036245299,0.040160934076104944,0.03950691620769378,0.03885156043224479,0.03819489046986445,0.03753693008488329,0.03687770308499762,0.03621723332040626,0.03555554468295356,0.03489266110526316,0.034228606559874385,0.033563405058376475,0.03289708065054155,0.032229657423456314,0.03156115950065251,0.03089161104123701,0.030221036239016695,0.029549459321630174,0.02887690454967057,0.028203396215810948,0.027528958643928163,0.026853616188225547,0.02617739323235469,0.02550031418853699,0.02482240349668041,0.024143685623503223,0.023464185061649004,0.022783926328804757,0.022102933966817416,0.0214212325408097,0.02073884663829513,0.02005580086829239,0.019372119860439876,0.01868782826410549,0.01800295074750403,0.017317511996805816,0.016631536715248908,0.01594504962224997,0.015258075452514678,0.014570638955147708,0.013882764892763069,0.013194478040590082,0.012505803185587097,0.011816765125546755,0.011127388668205089,0.01043769863034952,0.009747719836926658,0.009057477120149924,0.008366995318607014,0.007676299276368079,0.006985413842089686,0.0062943638681269695,0.005603174209637535,0.004911869723689466,0.0042204752683685865,0.003529015701885755,0.002837515881684298,0.0021460006635483945,0.0014544949007075138,0.0007630234429492762,7.161113572434178e-5,-0.0006197171807443392,-0.0013109366723527925,-0.002002022512006958,-0.002692949880513265,-0.0033836939674688144,-0.004074229972150315,-0.004764533104406651,-0.00545457858554279,-0.006144341649211333,-0.006833797542299434,-0.007522921525815946,-0.00821168887577795,-0.008900074884096651,-0.009588054859461745,-0.010275604128229192,-0.010962698035300046,-0.011649311945006713,-0.01233542124199429,-0.01302100133210189,-0.013706027643243104,-0.014390475626285548,-0.015074320755929493,-0.01575753853158472,-0.016440104478250405,-0.017121994147385907,-0.017803183117788602,-0.018483646996466523,-0.019163361419510756,-0.01984230205296666,-0.02052044459370389,-0.0211977647702844,-0.02187423834383326,-0.022549841108900112,-0.023224548894327394,-0.02389833756411318,-0.02457118301827345,-0.025243061193702992,-0.025913948065034907,-0.026583819645498476,-0.027252651987775035,-0.027920421184855986,-0.028587103370891577,-0.029252674722045822,-0.029917111457346025,-0.030580389839531368,-0.031242486175899746,-0.03190337681915308,-0.03256303816824072,-0.03322144666920043,-0.03387857881600142,-0.03453441115137774,-0.035188920267667685,-0.03584208280764731,-0.03649387546536295,-0.0371442749869617,-0.0377932581715199,-0.03844080187186898,-0.03908688299542296,-0.039731478504996316,-0.040374565419627396,-0.04101612081539589,-0.04165612182623886,-0.04229454564476473,-0.042931369523064894,-0.04356657077352326,-0.044200126769622636,-0.044832014946752666,-0.04546221280300792,-0.04609069789999112,-0.046717447863610255,-0.04734244038487403,-0.047965653220684856,-0.04858706419462947,-0.049206651197766224,-0.04982439218941352,-0.05044026519792855,-0.05105424832149046,-0.05166631972887762,-0.05227645766024269,-0.05288464042788523,-0.053490846417021516,-0.05409505408655169,-0.05469724196982345,-0.055297388675396575,-0.05589547288779737,-0.0564914733682777,-0.05708536895556728,-0.057677138566624146,-0.05826676119738197,-0.05885421592349449,-0.05943948190107647,-0.06002253836744487,-0.06060336464185037,-0.061181940126212496,-0.0617582443058485,-0.0623322567501997,-0.06290395711355466,-0.06347332513576948,-0.06404034064298457,-0.06460498354833787,-0.0651672338526781,-0.06572707164526805,-0.06628447710449133,-0.0668394304985525,-0.06739191218617459,-0.0679419026172931,-0.06848938233374705,-0.06903433196996542,-0.06957673225365396,-0.07011656400647183,-0.07065380814471126,-0.07118844567997047,-0.07172045771982394,-0.07224982546848893,-0.07277653022748848,-0.07330055339631102,-0.07382187647306546,-0.07434048105513602,-0.07485634883982725,-0.07536946162501112,-0.07587980130976803,-0.07638734989502408,-0.07689208948418508,-0.07739400228376646,-0.07789307060401912,-0.07838927685955403,-0.07888260356995767,-0.07937303336040895,-0.07986054896228963,-0.08034513321379144,-0.08082676906051928,-0.08130543955609025,-0.08178112786272913,-0.08225381725185898,-0.08272349110469088,-0.08319013291280364,-0.08365372627872544,-0.08411425491650856,-0.08457170265230031,-0.08502605342491028,-0.08547729128637313,-0.08592540040250705,-0.0863703650534703,-0.08681216963430867,-0.08725079865550385,-0.08768623674351493,-0.0881184686413164,-0.08854747920893154,-0.08897325342396184,-0.08939577638211219,-0.08981503329771093,-0.0902310095042284,-0.09064369045478594,-0.09105306172266574,-0.09145910900181349,-0.09186181810733761,-0.09226117497600358,-0.09265716566672423,-0.09304977636104485,-0.09343899336362624,-0.09382480310271886,-0.09420719213063665,-0.0945861471242246,-0.09496165488532174,-0.0953337023412199,-0.09570227654511786,-0.0960673646765708,-0.09642895404193491,-0.09678703207480928,-0.0971415863364693,-0.09749260451629921,-0.09784007443221822,-0.09818398403110239,-0.0985243213892014,-0.09886107471255133,-0.09919423233738167,-0.09952378273051997,-0.09984971448978766,-0.1001720163443951,-0.10049067715532999,-0.1008056859157412,-0.10111703175131792,-0.10142470392066406,-0.10172869181566768,-0.10202898496186552,-0.10232557301880393,-0.10261844578039216,-0.10290759317525358,-0.10319300526707077,-0.10347467225492574,-0.10375258447363556,-0.10402673239408275,-0.1042971066235407,-0.10456369790599561,-0.10482649712246031,-0.10508549529128629,-0.10534068356846925,-0.10559205324795,-0.10583959576191011,-0.10608330268106315,-0.10632316571494,-0.10655917671216994,-0.10679132766075725,-0.10701961068835032,-0.10724401806250873,-0.10746454219096324,-0.10768117562187188,-0.10789391104407008,-0.10810274128731633,-0.10830765932253224,-0.10850865826203883,-0.1087057313597852,-0.10889887201157451,-0.10908807375528386,-0.10927333027107887,-0.10945463538162349,-0.10963198305228451,-0.10980536739133094,-0.10997478265012815,-0.11014022322332746,-0.11030168364904924,-0.11045915860906218,-0.11061264292895659,-0.11076213157831316,-0.11090761967086571,-0.11104910246465947,-0.11118657536220355,-0.11132003391061933,-0.11144947380178163,-0.11157489087245691,-0.1116962811044346,-0.11181364062465422,-0.1119269657053267,-0.11203625276405058,-0.11214149836392341,-0.11224269921364688,-0.11233985216762832,-0.11243295422607519,-0.11252200253508557,-0.11260699438673284,-0.11268792721914547,-0.11276479861658108,-0.11283760630949578,-0.11290634817460765,-0.11297102223495584,-0.11303162665995324,-0.11308815976543497,-0.113140620013701,-0.1131890060135536,-0.11323331652032981,-0.11327355043592824,-0.11330970680883085,-0.11334178483411934,-0.11336978385348669,-0.11339370335524249,-0.1134135429743142,-0.1134293024922422,-0.11344098183717005,-0.11344858108382944,-0.11345210045351961,-0.11345154031408199,-0.11344690117986907,-0.11343818371170838,-0.11342538871686107,-0.11340851714897528,-0.11338757010803406,-0.11336254884029855,-0.11333345473824527,-0.11330028934049874,-0.1132630543317584,-0.11322175154272054,-0.1131763829499952,-0.11312695067601734,-0.11307345698895305,-0.11301590430260076,-0.11295429517628683,-0.11288863231475615,-0.11281891856805772,-0.11274515693142415,-0.11266735054514752,-0.1125855026944485,-0.11249961680934117,-0.11240969646449236,-0.11231574537907595,-0.11221776741662177,-0.11211576658485976,-0.1120097470355584,-0.11189971306435825,-0.11178566911060092,-0.11166761975715171,-0.11154556973021829,-0.11141952389916338,-0.11128948727631287,-0.11115546501675862,-0.11101746241815633,-0.11087548492051742,-0.1107295381059977,-0.11057962769867911,-0.11042575956434716,-0.11026793971026362,-0.11010617428493334,-0.10994046957786682,-0.10977083201933724,-0.10959726818013299,-0.10941978477130396,-0.10923838864390482,-0.10905308678873163,-0.10886388633605396,-0.10867079455534219,-0.10847381885498993,-0.10827296678203101,-0.10806824602185233,-0.10785966439790019,-0.10764722987138411,-0.10743095054097387,-0.1072108346424919,-0.10698689054860155,-0.10675912676848967,-0.1065275519475449,-0.1062921748670308,-0.10605300444375447,-0.10581004972972906,-0.10556331991183417,-0.10531282431146854,-0.10505857238419967,-0.1048005737194081,-0.10453883803992697,-0.10427337520167704,-0.1040041951932969,-0.10373130813576743,-0.10345472428203412,-0.10317445401662188,-0.10289050785524693,-0.1026028964444231,-0.10231163056106407,-0.10201672111208086,-0.10171817913397435,-0.10141601579242396,-0.10111024238186979,-0.1008008703250937,-0.10048791117279257,-0.10017137660314812,-0.09985127842139269,-0.0995276285593701,-0.09920043907509177,-0.09886972215228924,-0.09853549009995996,-0.09819775535191264,-0.09785653046630438,-0.09751182812517516],"x":[20.0,20.005997600959617,20.011995201919234,20.017992802878847,20.023990403838464,20.02998800479808,20.0359856057577,20.041983206717312,20.04798080767693,20.053978408636546,20.059976009596163,20.065973610555776,20.071971211515393,20.07796881247501,20.083966413434627,20.08996401439424,20.095961615353858,20.101959216313475,20.10795681727309,20.11395441823271,20.119952019192322,20.12594962015194,20.131947221111556,20.137944822071173,20.143942423030786,20.149940023990403,20.15593762495002,20.161935225909637,20.16793282686925,20.173930427828868,20.179928028788485,20.185925629748102,20.191923230707715,20.197920831667332,20.20391843262695,20.209916033586566,20.215913634546183,20.221911235505797,20.227908836465414,20.23390643742503,20.239904038384648,20.24590163934426,20.251899240303878,20.257896841263495,20.263894442223112,20.269892043182725,20.275889644142342,20.28188724510196,20.287884846061576,20.29388244702119,20.299880047980807,20.305877648940424,20.31187524990004,20.317872850859658,20.32387045181927,20.329868052778888,20.335865653738505,20.341863254698122,20.347860855657736,20.353858456617353,20.35985605757697,20.365853658536587,20.3718512594962,20.377848860455817,20.383846461415434,20.38984406237505,20.395841663334664,20.40183926429428,20.4078368652539,20.413834466213515,20.419832067173132,20.425829668132746,20.431827269092363,20.43782487005198,20.443822471011597,20.44982007197121,20.455817672930827,20.461815273890444,20.46781287485006,20.473810475809675,20.47980807676929,20.48580567772891,20.491803278688526,20.49780087964814,20.503798480607756,20.509796081567373,20.51579368252699,20.521791283486607,20.52778888444622,20.533786485405837,20.539784086365454,20.54578168732507,20.551779288284685,20.557776889244302,20.56377449020392,20.569772091163536,20.57576969212315,20.581767293082766,20.587764894042383,20.593762495002,20.599760095961614,20.60575769692123,20.611755297880848,20.617752898840465,20.62375049980008,20.629748100759695,20.635745701719312,20.64174330267893,20.647740903638546,20.65373850459816,20.659736105557776,20.665733706517393,20.67173130747701,20.677728908436624,20.68372650939624,20.689724110355858,20.695721711315475,20.701719312275088,20.707716913234705,20.713714514194322,20.71971211515394,20.725709716113556,20.73170731707317,20.737704918032787,20.743702518992404,20.74970011995202,20.755697720911634,20.76169532187125,20.767692922830868,20.773690523790485,20.7796881247501,20.785685725709715,20.791683326669332,20.79768092762895,20.803678528588563,20.80967612954818,20.815673730507797,20.821671331467414,20.82766893242703,20.833666533386644,20.83966413434626,20.845661735305878,20.851659336265495,20.85765693722511,20.863654538184726,20.869652139144343,20.87564974010396,20.881647341063573,20.88764494202319,20.893642542982807,20.899640143942424,20.905637744902037,20.911635345861654,20.91763294682127,20.92363054778089,20.929628148740505,20.93562574970012,20.941623350659736,20.947620951619353,20.95361855257897,20.959616153538583,20.9656137544982,20.971611355457817,20.977608956417434,20.983606557377048,20.989604158336665,20.99560175929628,21.0015993602559,21.007596961215516,21.01359456217513,21.019592163134746,21.025589764094363,21.03158736505398,21.037584966013593,21.04358256697321,21.049580167932827,21.055577768892444,21.061575369852058,21.067572970811675,21.073570571771292,21.07956817273091,21.085565773690522,21.09156337465014,21.097560975609756,21.103558576569373,21.10955617752899,21.115553778488604,21.12155137944822,21.127548980407838,21.133546581367455,21.139544182327068,21.145541783286685,21.151539384246302,21.15753698520592,21.163534586165532,21.16953218712515,21.175529788084766,21.181527389044383,21.187524990003997,21.193522590963614,21.19952019192323,21.205517792882848,21.211515393842465,21.217512994802078,21.223510595761695,21.229508196721312,21.23550579768093,21.241503398640543,21.24750099960016,21.253498600559777,21.259496201519394,21.265493802479007,21.271491403438624,21.27748900439824,21.283486605357858,21.28948420631747,21.29548180727709,21.301479408236705,21.307477009196322,21.31347461015594,21.319472211115553,21.32546981207517,21.331467413034787,21.337465013994404,21.343462614954017,21.349460215913634,21.35545781687325,21.361455417832868,21.36745301879248,21.3734506197521,21.379448220711716,21.385445821671333,21.391443422630946,21.397441023590563,21.40343862455018,21.409436225509797,21.415433826469414,21.421431427429027,21.427429028388644,21.43342662934826,21.43942423030788,21.445421831267492,21.45141943222711,21.457417033186726,21.463414634146343,21.469412235105956,21.475409836065573,21.48140743702519,21.487405037984807,21.49340263894442,21.499400239904038,21.505397840863655,21.51139544182327,21.51739304278289,21.523390643742502,21.52938824470212,21.535385845661736,21.541383446621353,21.547381047580966,21.553378648540583,21.5593762495002,21.565373850459817,21.57137145141943,21.577369052379048,21.583366653338665,21.58936425429828,21.595361855257895,21.601359456217512,21.60735705717713,21.613354658136746,21.619352259096363,21.625349860055977,21.631347461015594,21.63734506197521,21.643342662934828,21.64934026389444,21.655337864854058,21.661335465813675,21.667333066773292,21.673330667732905,21.679328268692522,21.68532586965214,21.691323470611756,21.69732107157137,21.703318672530987,21.709316273490604,21.71531387445022,21.721311475409838,21.72730907636945,21.733306677329068,21.739304278288685,21.745301879248302,21.751299480207916,21.757297081167533,21.76329468212715,21.769292283086767,21.77528988404638,21.781287485005997,21.787285085965614,21.79328268692523,21.799280287884844,21.80527788884446,21.81127548980408,21.817273090763695,21.823270691723312,21.829268292682926,21.835265893642543,21.84126349460216,21.847261095561777,21.85325869652139,21.859256297481007,21.865253898440624,21.87125149940024,21.877249100359855,21.88324670131947,21.88924430227909,21.895241903238706,21.90123950419832,21.907237105157936,21.913234706117553,21.91923230707717,21.925229908036787,21.9312275089964,21.937225109956017,21.943222710915634,21.94922031187525,21.955217912834865,21.961215513794482,21.9672131147541,21.973210715713716,21.97920831667333,21.985205917632946,21.991203518592563,21.99720111955218,22.003198720511794,22.00919632147141,22.015193922431028,22.021191523390645,22.02718912435026,22.033186725309875,22.039184326269492,22.04518192722911,22.051179528188726,22.05717712914834,22.063174730107956,22.069172331067573,22.07516993202719,22.081167532986804,22.08716513394642,22.093162734906038,22.099160335865655,22.105157936825268,22.111155537784885,22.117153138744502,22.12315073970412,22.129148340663736,22.13514594162335,22.141143542582967,22.147141143542584,22.1531387445022,22.159136345461814,22.16513394642143,22.171131547381048,22.177129148340665,22.18312674930028,22.189124350259895,22.195121951219512,22.20111955217913,22.207117153138743,22.21311475409836,22.219112355057977,22.225109956017594,22.23110755697721,22.237105157936824,22.24310275889644,22.249100359856058,22.255097960815675,22.26109556177529,22.267093162734906,22.273090763694523,22.27908836465414,22.285085965613753,22.29108356657337,22.297081167532987,22.303078768492604,22.309076369452217,22.315073970411834,22.32107157137145,22.32706917233107,22.333066773290685,22.3390643742503,22.345061975209916,22.351059576169533,22.35705717712915,22.363054778088763,22.36905237904838,22.375049980007997,22.381047580967614,22.387045181927228,22.393042782886845,22.39904038384646,22.40503798480608,22.411035585765692,22.41703318672531,22.423030787684926,22.429028388644543,22.43502598960416,22.441023590563773,22.44702119152339,22.453018792483007,22.459016393442624,22.465013994402238,22.471011595361855,22.47700919632147,22.48300679728109,22.489004398240702,22.49500199920032,22.500999600159936,22.506997201119553,22.512994802079167,22.518992403038784,22.5249900039984,22.530987604958018,22.536985205917635,22.542982806877248,22.548980407836865,22.554978008796482,22.5609756097561,22.566973210715712,22.57297081167533,22.578968412634946,22.584966013594563,22.590963614554177,22.596961215513794,22.60295881647341,22.608956417433028,22.61495401839264,22.620951619352258,22.626949220311875,22.632946821271492,22.63894442223111,22.644942023190723,22.65093962415034,22.656937225109957,22.662934826069574,22.668932427029187,22.674930027988804,22.68092762894842,22.686925229908038,22.69292283086765,22.69892043182727,22.704918032786885,22.710915633746502,22.716913234706116,22.722910835665733,22.72890843662535,22.734906037584967,22.740903638544584,22.746901239504197,22.752898840463814,22.75889644142343,22.764894042383048,22.77089164334266,22.77688924430228,22.782886845261896,22.788884446221513,22.794882047181126,22.800879648140743,22.80687724910036,22.812874850059977,22.818872451019594,22.824870051979207,22.830867652938824,22.83686525389844,22.84286285485806,22.848860455817672,22.85485805677729,22.860855657736906,22.866853258696523,22.872850859656136,22.878848460615753,22.88484606157537,22.890843662534987,22.8968412634946,22.902838864454218,22.908836465413835,22.91483406637345,22.92083166733307,22.926829268292682,22.9328268692523,22.938824470211916,22.944822071171533,22.950819672131146,22.956817273090763,22.96281487405038,22.968812475009997,22.97481007596961,22.980807676929228,22.986805277888845,22.99280287884846,22.998800479808075,23.004798080767692,23.01079568172731,23.016793282686926,23.022790883646543,23.028788484606157,23.034786085565774,23.04078368652539,23.046781287485008,23.05277888844462,23.058776489404238,23.064774090363855,23.070771691323472,23.076769292283085,23.082766893242702,23.08876449420232,23.094762095161936,23.10075969612155,23.106757297081167,23.112754898040784,23.1187524990004,23.124750099960018,23.13074770091963,23.136745301879248,23.142742902838865,23.148740503798482,23.154738104758096,23.160735705717713,23.16673330667733,23.172730907636947,23.17872850859656,23.184726109556177,23.190723710515794,23.19672131147541,23.202718912435024,23.20871651339464,23.21471411435426,23.220711715313875,23.226709316273492,23.232706917233106,23.238704518192723,23.24470211915234,23.250699720111957,23.25669732107157,23.262694922031187,23.268692522990804,23.27469012395042,23.280687724910035,23.28668532586965,23.29268292682927,23.298680527788886,23.3046781287485,23.310675729708116,23.316673330667733,23.32267093162735,23.328668532586967,23.33466613354658,23.340663734506197,23.346661335465814,23.35265893642543,23.358656537385045,23.36465413834466,23.37065173930428,23.376649340263896,23.38264694122351,23.388644542183126,23.394642143142743,23.40063974410236,23.406637345061974,23.41263494602159,23.418632546981208,23.424630147940825,23.43062774890044,23.436625349860055,23.442622950819672,23.44862055177929,23.454618152738906,23.46061575369852,23.466613354658136,23.472610955617753,23.47860855657737,23.484606157536984,23.4906037584966,23.496601359456218,23.502598960415835,23.508596561375448,23.514594162335065,23.520591763294682,23.5265893642543,23.532586965213916,23.53858456617353,23.544582167133147,23.550579768092764,23.55657736905238,23.562574970011994,23.56857257097161,23.574570171931228,23.580567772890845,23.58656537385046,23.592562974810075,23.598560575769692,23.60455817672931,23.610555777688923,23.61655337864854,23.622550979608157,23.628548580567774,23.63454618152739,23.640543782487004,23.64654138344662,23.652538984406238,23.658536585365855,23.66453418632547,23.670531787285086,23.676529388244703,23.68252698920432,23.688524590163933,23.69452219112355,23.700519792083167,23.706517393042784,23.712514994002397,23.718512594962014,23.72451019592163,23.73050779688125,23.736505397840865,23.74250299880048,23.748500599760096,23.754498200719713,23.76049580167933,23.766493402638943,23.77249100359856,23.778488604558177,23.784486205517794,23.790483806477408,23.796481407437025,23.80247900839664,23.80847660935626,23.814474210315872,23.82047181127549,23.826469412235106,23.832467013194723,23.83846461415434,23.844462215113953,23.85045981607357,23.856457417033187,23.862455017992804,23.868452618952418,23.874450219912035,23.88044782087165,23.88644542183127,23.892443022790882,23.8984406237505,23.904438224710116,23.910435825669733,23.916433426629347,23.922431027588964,23.92842862854858,23.934426229508198,23.940423830467815,23.946421431427428,23.952419032387045,23.958416633346662,23.96441423430628,23.970411835265892,23.97640943622551,23.982407037185126,23.988404638144743,23.994402239104357,24.000399840063974,24.00639744102359,24.012395041983208,24.01839264294282,24.024390243902438,24.030387844862055,24.036385445821672,24.04238304678129,24.048380647740903,24.05437824870052,24.060375849660137,24.066373450619754,24.072371051579367,24.078368652538984,24.0843662534986,24.090363854458218,24.09636145541783,24.10235905637745,24.108356657337065,24.114354258296682,24.120351859256296,24.126349460215913,24.13234706117553,24.138344662135147,24.144342263094764,24.150339864054377,24.156337465013994,24.16233506597361,24.168332666933228,24.17433026789284,24.18032786885246,24.186325469812076,24.192323070771693,24.198320671731306,24.204318272690923,24.21031587365054,24.216313474610157,24.22231107556977,24.228308676529387,24.234306277489004,24.24030387844862,24.24630147940824,24.25229908036785,24.25829668132747,24.264294282287086,24.270291883246703,24.276289484206316,24.282287085165933,24.28828468612555,24.294282287085167,24.30027988804478,24.306277489004398,24.312275089964015,24.31827269092363,24.324270291883245,24.330267892842862,24.33626549380248,24.342263094762096,24.348260695721713,24.354258296681326,24.360255897640943,24.36625349860056,24.372251099560177,24.37824870051979,24.384246301479408,24.390243902439025,24.39624150339864,24.402239104358255,24.408236705317872,24.41423430627749,24.420231907237106,24.42622950819672,24.432227109156337,24.438224710115954,24.44422231107557,24.450219912035188,24.4562175129948,24.462215113954418,24.468212714914035,24.474210315873652,24.480207916833265,24.486205517792882,24.4922031187525,24.498200719712116,24.50419832067173,24.510195921631347,24.516193522590964,24.52219112355058,24.528188724510194,24.53418632546981,24.540183926429428,24.546181527389045,24.552179128348662,24.558176729308276,24.564174330267893,24.57017193122751,24.576169532187127,24.58216713314674,24.588164734106357,24.594162335065974,24.60015993602559,24.606157536985204,24.61215513794482,24.61815273890444,24.624150339864055,24.63014794082367,24.636145541783286,24.642143142742903,24.64814074370252,24.654138344662137,24.66013594562175,24.666133546581367,24.672131147540984,24.6781287485006,24.684126349460215,24.69012395041983,24.69612155137945,24.702119152339066,24.70811675329868,24.714114354258296,24.720111955217913,24.72610955617753,24.732107157137147,24.73810475809676,24.744102359056377,24.750099960015994,24.75609756097561,24.762095161935225,24.76809276289484,24.77409036385446,24.780087964814076,24.78608556577369,24.792083166733306,24.798080767692923,24.80407836865254,24.810075969612154,24.81607357057177,24.822071171531388,24.828068772491005,24.83406637345062,24.840063974410235,24.846061575369852,24.85205917632947,24.858056777289086,24.8640543782487,24.870051979208316,24.876049580167933,24.88204718112755,24.888044782087164,24.89404238304678,24.900039984006398,24.906037584966015,24.912035185925628,24.918032786885245,24.924030387844862,24.93002798880448,24.936025589764096,24.94202319072371,24.948020791683327,24.954018392642944,24.96001599360256,24.966013594562174,24.97201119552179,24.978008796481408,24.984006397441025,24.99000399840064,24.996001599360255,25.001999200319872,25.00799680127949,25.013994402239103,25.01999200319872,25.025989604158337,25.031987205117954,25.03798480607757,25.043982407037184,25.0499800079968,25.055977608956418,25.061975209916035,25.06797281087565,25.073970411835266,25.079968012794883,25.0859656137545,25.091963214714113,25.09796081567373,25.103958416633347,25.109956017592964,25.115953618552577,25.121951219512194,25.12794882047181,25.13394642143143,25.139944022391045,25.14594162335066,25.151939224310276,25.157936825269893,25.16393442622951,25.169932027189123,25.17592962814874,25.181927229108357,25.187924830067974,25.193922431027588,25.199920031987205,25.20591763294682,25.21191523390644,25.217912834866052,25.22391043582567,25.229908036785286,25.235905637744903,25.24190323870452,25.247900839664133,25.25389844062375,25.259896041583367,25.265893642542984,25.271891243502598,25.277888844462215,25.28388644542183,25.28988404638145,25.295881647341062,25.30187924830068,25.307876849260296,25.313874450219913,25.319872051179527,25.325869652139144,25.33186725309876,25.337864854058378,25.343862455017995,25.349860055977608,25.355857656937225,25.361855257896842,25.36785285885646,25.373850459816072,25.37984806077569,25.385845661735306,25.391843262694923,25.397840863654537,25.403838464614154,25.40983606557377,25.415833666533388,25.421831267493,25.427828868452618,25.433826469412235,25.439824070371852,25.44582167133147,25.451819272291083,25.4578168732507,25.463814474210317,25.469812075169934,25.475809676129547,25.481807277089164,25.48780487804878,25.493802479008398,25.49980007996801,25.50579768092763,25.511795281887245,25.517792882846862,25.523790483806476,25.529788084766093,25.53578568572571,25.541783286685327,25.547780887644944,25.553778488604557,25.559776089564174,25.56577369052379,25.571771291483408,25.57776889244302,25.58376649340264,25.589764094362256,25.595761695321873,25.601759296281486,25.607756897241103,25.61375449820072,25.619752099160337,25.62574970011995,25.631747301079567,25.637744902039184,25.6437425029988,25.64974010395842,25.65573770491803,25.66173530587765,25.667732906837266,25.673730507796883,25.679728108756496,25.685725709716113,25.69172331067573,25.697720911635347,25.70371851259496,25.709716113554578,25.715713714514195,25.72171131547381,25.727708916433425,25.733706517393042,25.73970411835266,25.745701719312276,25.751699320271893,25.757696921231506,25.763694522191123,25.76969212315074,25.775689724110357,25.78168732506997,25.787684926029588,25.793682526989205,25.79968012794882,25.805677728908435,25.811675329868052,25.81767293082767,25.823670531787286,25.8296681327469,25.835665733706517,25.841663334666134,25.84766093562575,25.853658536585368,25.85965613754498,25.865653738504598,25.871651339464215,25.877648940423832,25.883646541383445,25.889644142343062,25.89564174330268,25.901639344262296,25.90763694522191,25.913634546181527,25.919632147141144,25.92562974810076,25.931627349060374,25.93762495001999,25.943622550979608,25.949620151939225,25.955617752898842,25.961615353858456,25.967612954818073,25.97361055577769,25.979608156737307,25.98560575769692,25.991603358656537,25.997600959616154,26.00359856057577,26.009596161535384,26.015593762495,26.02159136345462,26.027588964414235,26.03358656537385,26.039584166333466,26.045581767293083,26.0515793682527,26.057576969212317,26.06357457017193,26.069572171131547,26.075569772091164,26.08156737305078,26.087564974010395,26.09356257497001,26.09956017592963,26.105557776889246,26.11155537784886,26.117552978808476,26.123550579768093,26.12954818072771,26.135545781687323,26.14154338264694,26.147540983606557,26.153538584566174,26.15953618552579,26.165533786485405,26.17153138744502,26.17752898840464,26.183526589364256,26.18952419032387,26.195521791283486,26.201519392243103,26.20751699320272,26.213514594162334,26.21951219512195,26.225509796081568,26.231507397041185,26.237504998000798,26.243502598960415,26.249500199920032,26.25549780087965,26.261495401839266,26.26749300279888,26.273490603758496,26.279488204718113,26.28548580567773,26.291483406637344,26.29748100759696,26.303478608556578,26.309476209516195,26.315473810475808,26.321471411435425,26.327469012395042,26.33346661335466,26.339464214314273,26.34546181527389,26.351459416233507,26.357457017193124,26.36345461815274,26.369452219112354,26.37544982007197,26.381447421031588,26.387445021991205,26.39344262295082,26.399440223910435,26.405437824870052,26.41143542582967,26.417433026789283,26.4234306277489,26.429428228708517,26.435425829668134,26.441423430627747,26.447421031587364,26.45341863254698,26.459416233506598,26.465413834466215,26.47141143542583,26.477409036385446,26.483406637345063,26.48940423830468,26.495401839264293,26.50139944022391,26.507397041183527,26.513394642143144,26.519392243102757,26.525389844062374,26.53138744502199,26.53738504598161,26.54338264694122,26.54938024790084,26.555377848860456,26.561375449820073,26.56737305077969,26.573370651739303,26.57936825269892,26.585365853658537,26.591363454618154,26.597361055577768,26.603358656537385,26.609356257497,26.61535385845662,26.621351459416232,26.62734906037585,26.633346661335466,26.639344262295083,26.6453418632547,26.651339464214313,26.65733706517393,26.663334666133547,26.669332267093164,26.675329868052778,26.681327469012395,26.68732506997201,26.69332267093163,26.699320271891242,26.70531787285086,26.711315473810476,26.717313074770093,26.723310675729707,26.729308276689324,26.73530587764894,26.741303478608557,26.747301079568174,26.753298680527788,26.759296281487405,26.765293882447022,26.77129148340664,26.777289084366252,26.78328668532587,26.789284286285486,26.795281887245103,26.801279488204717,26.807277089164334,26.81327469012395,26.819272291083568,26.82526989204318,26.831267493002798,26.837265093962415,26.843262694922032,26.84926029588165,26.855257896841263,26.86125549780088,26.867253098760496,26.873250699720113,26.879248300679727,26.885245901639344,26.89124350259896,26.897241103558578,26.90323870451819,26.90923630547781,26.915233906437425,26.921231507397042,26.927229108356656,26.933226709316273,26.93922431027589,26.945221911235507,26.951219512195124,26.957217113154737,26.963214714114354,26.96921231507397,26.975209916033588,26.9812075169932,26.98720511795282,26.993202718912436,26.999200319872052,27.005197920831666,27.011195521791283,27.0171931227509,27.023190723710517,27.02918832467013,27.035185925629747,27.041183526589364,27.04718112754898,27.0531787285086,27.05917632946821,27.06517393042783,27.071171531387446,27.077169132347063,27.083166733306676,27.089164334266293,27.09516193522591,27.101159536185527,27.10715713714514,27.113154738104758,27.119152339064375,27.12514994002399,27.131147540983605,27.137145141943222,27.14314274290284,27.149140343862456,27.155137944822073,27.161135545781686,27.167133146741303,27.17313074770092,27.179128348660537,27.18512594962015,27.191123550579768,27.197121151539385,27.203118752499,27.209116353458615,27.215113954418232,27.22111155537785,27.227109156337466,27.23310675729708,27.239104358256697,27.245101959216314,27.25109956017593,27.257097161135547,27.26309476209516,27.269092363054778,27.275089964014395,27.281087564974012,27.287085165933625,27.293082766893242,27.29908036785286,27.305077968812476,27.31107556977209,27.317073170731707,27.323070771691324,27.32906837265094,27.335065973610554,27.34106357457017,27.347061175529788,27.353058776489405,27.359056377449022,27.365053978408636,27.371051579368253,27.37704918032787,27.383046781287486,27.3890443822471,27.395041983206717,27.401039584166334,27.40703718512595,27.413034786085564,27.41903238704518,27.4250299880048,27.431027588964415,27.43702518992403,27.443022790883646,27.449020391843263,27.45501799280288,27.461015593762497,27.46701319472211,27.473010795681727,27.479008396641344,27.48500599760096,27.491003598560575,27.49700119952019,27.50299880047981,27.508996401439425,27.51499400239904,27.520991603358656,27.526989204318273,27.53298680527789,27.538984406237503,27.54498200719712,27.550979608156737,27.556977209116354,27.56297481007597,27.568972411035585,27.5749700119952,27.58096761295482,27.586965213914436,27.59296281487405,27.598960415833666,27.604958016793283,27.6109556177529,27.616953218712514,27.62295081967213,27.628948420631747,27.634946021591364,27.640943622550978,27.646941223510595,27.652938824470212,27.65893642542983,27.664934026389446,27.67093162734906,27.676929228308676,27.682926829268293,27.68892443022791,27.694922031187524,27.70091963214714,27.706917233106758,27.712914834066375,27.718912435025988,27.724910035985605,27.730907636945222,27.73690523790484,27.742902838864453,27.74890043982407,27.754898040783686,27.760895641743303,27.76689324270292,27.772890843662534,27.77888844462215,27.784886045581768,27.790883646541385,27.796881247501,27.802878848460615,27.808876449420232,27.81487405037985,27.820871651339463,27.82686925229908,27.832866853258697,27.838864454218314,27.844862055177927,27.850859656137544,27.85685725709716,27.862854858056778,27.868852459016395,27.87485005997601,27.880847660935625,27.886845261895242,27.89284286285486,27.898840463814473,27.90483806477409,27.910835665733707,27.916833266693324,27.922830867652937,27.928828468612554,27.93482606957217,27.94082367053179,27.9468212714914,27.95281887245102,27.958816473410636,27.964814074370253,27.97081167532987,27.976809276289483,27.9828068772491,27.988804478208717,27.994802079168334,28.000799680127948,28.006797281087564,28.01279488204718,28.0187924830068,28.024790083966412,28.03078768492603,28.036785285885646,28.042782886845263,28.048780487804876,28.054778088764493,28.06077568972411,28.066773290683727,28.072770891643344,28.078768492602958,28.084766093562575,28.09076369452219,28.09676129548181,28.102758896441422,28.10875649740104,28.114754098360656,28.120751699320273,28.126749300279887,28.132746901239504,28.13874450219912,28.144742103158737,28.15073970411835,28.156737305077968,28.162734906037585,28.168732506997202,28.17473010795682,28.180727708916432,28.18672530987605,28.192722910835666,28.198720511795283,28.204718112754897,28.210715713714514,28.21671331467413,28.222710915633748,28.22870851659336,28.234706117552978,28.240703718512595,28.246701319472212,28.252698920431826,28.258696521391443,28.26469412235106,28.270691723310676,28.276689324270293,28.282686925229907,28.288684526189524,28.29468212714914,28.300679728108758,28.30667732906837,28.31267493002799,28.318672530987605,28.324670131947222,28.330667732906836,28.336665333866453,28.34266293482607,28.348660535785687,28.3546581367453,28.360655737704917,28.366653338664534,28.37265093962415,28.378648540583768,28.38464614154338,28.390643742503,28.396641343462615,28.402638944422232,28.408636545381846,28.414634146341463,28.42063174730108,28.426629348260697,28.43262694922031,28.438624550179927,28.444622151139544,28.45061975209916,28.45661735305878,28.46261495401839,28.46861255497801,28.474610155937626,28.480607756897243,28.486605357856856,28.492602958816473,28.49860055977609,28.504598160735707,28.51059576169532,28.516593362654937,28.522590963614554,28.52858856457417,28.534586165533785,28.540583766493402,28.54658136745302,28.552578968412636,28.558576569372253,28.564574170331866,28.570571771291483,28.5765693722511,28.582566973210717,28.58856457417033,28.594562175129948,28.600559776089565,28.60655737704918,28.612554978008795,28.618552578968412,28.62455017992803,28.630547780887646,28.63654538184726,28.642542982806876,28.648540583766493,28.65453818472611,28.660535785685727,28.66653338664534,28.672530987604958,28.678528588564575,28.684526189524192,28.690523790483805,28.696521391443422,28.70251899240304,28.708516593362656,28.71451419432227,28.720511795281887,28.726509396241504,28.73250699720112,28.738504598160734,28.74450219912035,28.750499800079968,28.756497401039585,28.762495001999202,28.768492602958815,28.774490203918432,28.78048780487805,28.786485405837666,28.79248300679728,28.798480607756897,28.804478208716514,28.81047580967613,28.816473410635744,28.82247101159536,28.82846861255498,28.834466213514595,28.84046381447421,28.846461415433826,28.852459016393443,28.85845661735306,28.864454218312677,28.87045181927229,28.876449420231907,28.882447021191524,28.88844462215114,28.894442223110754,28.90043982407037,28.90643742502999,28.912435025989605,28.91843262694922,28.924430227908836,28.930427828868453,28.93642542982807,28.942423030787683,28.9484206317473,28.954418232706917,28.960415833666534,28.96641343462615,28.972411035585765,28.97840863654538,28.984406237505,28.990403838464616,28.99640143942423,29.002399040383846,29.008396641343463,29.01439424230308,29.020391843262693,29.02638944422231,29.032387045181927,29.038384646141544,29.044382247101158,29.050379848060775,29.056377449020392,29.06237504998001,29.068372650939626,29.07437025189924,29.080367852858856,29.086365453818473,29.09236305477809,29.098360655737704,29.10435825669732,29.110355857656938,29.116353458616555,29.122351059576168,29.128348660535785,29.134346261495402,29.14034386245502,29.146341463414632,29.15233906437425,29.158336665333866,29.164334266293483,29.1703318672531,29.176329468212714,29.18232706917233,29.188324670131948,29.194322271091565,29.20031987205118,29.206317473010795,29.212315073970412,29.21831267493003,29.224310275889643,29.23030787684926,29.236305477808877,29.242303078768494,29.248300679728107,29.254298280687724,29.26029588164734,29.266293482606958,29.272291083566575,29.27828868452619,29.284286285485805,29.290283886445422,29.29628148740504,29.302279088364653,29.30827668932427,29.314274290283887,29.320271891243504,29.326269492203117,29.332267093162734,29.33826469412235,29.34426229508197,29.35025989604158,29.3562574970012,29.362255097960816,29.368252698920433,29.37425029988005,29.380247900839663,29.38624550179928,29.392243102758897,29.398240703718514,29.404238304678127,29.410235905637744,29.41623350659736,29.42223110755698,29.428228708516592,29.43422630947621,29.440223910435826,29.446221511395443,29.452219112355056,29.458216713314673,29.46421431427429,29.470211915233907,29.476209516193524,29.482207117153138,29.488204718112755,29.49420231907237,29.50019992003199,29.506197520991602,29.51219512195122,29.518192722910836,29.524190323870453,29.530187924830066,29.536185525789683,29.5421831267493,29.548180727708917,29.55417832866853,29.560175929628148,29.566173530587765,29.572171131547382,29.578168732507,29.584166333466612,29.59016393442623,29.596161535385846,29.602159136345463,29.608156737305077,29.614154338264694,29.62015193922431,29.626149540183928,29.63214714114354,29.638144742103158,29.644142343062775,29.650139944022392,29.656137544982005,29.662135145941622,29.66813274690124,29.674130347860856,29.680127948820473,29.686125549780087,29.692123150739704,29.69812075169932,29.704118352658938,29.71011595361855,29.71611355457817,29.722111155537785,29.728108756497402,29.734106357457016,29.740103958416633,29.74610155937625,29.752099160335867,29.75809676129548,29.764094362255097,29.770091963214714,29.77608956417433,29.782087165133948,29.78808476609356,29.79408236705318,29.800079968012795,29.806077568972412,29.812075169932026,29.818072770891643,29.82407037185126,29.830067972810877,29.83606557377049,29.842063174730107,29.848060775689724,29.85405837664934,29.860055977608955,29.86605357856857,29.87205117952819,29.878048780487806,29.884046381447423,29.890043982407036,29.896041583366653,29.90203918432627,29.908036785285887,29.9140343862455,29.920031987205117,29.926029588164734,29.93202718912435,29.938024790083965,29.944022391043582,29.9500199920032,29.956017592962816,29.96201519392243,29.968012794882046,29.974010395841663,29.98000799680128,29.986005597760897,29.99200319872051,29.998000799680128,30.003998400639745,30.00999600159936,30.015993602558975,30.021991203518592,30.02798880447821,30.033986405437826,30.03998400639744,30.045981607357056,30.051979208316673,30.05797680927629,30.063974410235904,30.06997201119552,30.075969612155138,30.081967213114755,30.087964814074372,30.093962415033985,30.099960015993602,30.10595761695322,30.111955217912836,30.11795281887245,30.123950419832067,30.129948020791684,30.1359456217513,30.141943222710914,30.14794082367053,30.153938424630148,30.159936025589765,30.16593362654938,30.171931227508995,30.177928828468612,30.18392642942823,30.189924030387846,30.19592163134746,30.201919232307077,30.207916833266694,30.21391443422631,30.219912035185924,30.22590963614554,30.23190723710516,30.237904838064775,30.24390243902439,30.249900039984006,30.255897640943623,30.26189524190324,30.267892842862853,30.27389044382247,30.279888044782087,30.285885645741704,30.29188324670132,30.297880847660934,30.30387844862055,30.30987604958017,30.315873650539785,30.3218712514994,30.327868852459016,30.333866453418633,30.33986405437825,30.345861655337863,30.35185925629748,30.357856857257097,30.363854458216714,30.36985205917633,30.375849660135945,30.38184726109556,30.38784486205518,30.393842463014796,30.39984006397441,30.405837664934026,30.411835265893643,30.41783286685326,30.423830467812873,30.42982806877249,30.435825669732107,30.441823270691724,30.447820871651338,30.453818472610955,30.459816073570572,30.46581367453019,30.471811275489806,30.47780887644942,30.483806477409036,30.489804078368653,30.49580167932827,30.501799280287884,30.5077968812475,30.513794482207118,30.519792083166735,30.525789684126348,30.531787285085965,30.537784886045582,30.5437824870052,30.549780087964812,30.55577768892443,30.561775289884046,30.567772890843663,30.57377049180328,30.579768092762894,30.58576569372251,30.591763294682128,30.597760895641745,30.60375849660136,30.609756097560975,30.615753698520592,30.62175129948021,30.627748900439823,30.63374650139944,30.639744102359057,30.645741703318674,30.651739304278287,30.657736905237904,30.66373450619752,30.669732107157138,30.675729708116755,30.68172730907637,30.687724910035985,30.693722510995602,30.69972011195522,30.705717712914833,30.71171531387445,30.717712914834067,30.723710515793684,30.729708116753297,30.735705717712914,30.74170331867253,30.74770091963215,30.75369852059176,30.75969612155138,30.765693722510996,30.771691323470613,30.77768892443023,30.783686525389843,30.78968412634946,30.795681727309077,30.801679328268694,30.807676929228307,30.813674530187924,30.81967213114754,30.82566973210716,30.831667333066772,30.83766493402639,30.843662534986006,30.849660135945623,30.855657736905236,30.861655337864853,30.86765293882447,30.873650539784087,30.879648140743704,30.885645741703318,30.891643342662935,30.89764094362255,30.90363854458217,30.909636145541782,30.9156337465014,30.921631347461016,30.927628948420633,30.933626549380246,30.939624150339863,30.94562175129948,30.951619352259097,30.95761695321871,30.963614554178328,30.969612155137945,30.975609756097562,30.98160735705718,30.987604958016792,30.99360255897641,30.999600159936026,31.005597760895643,31.011595361855257,31.017592962814874,31.02359056377449,31.029588164734108,31.03558576569372,31.041583366653338,31.047580967612955,31.053578568572572,31.059576169532185,31.065573770491802,31.07157137145142,31.077568972411036,31.083566573370653,31.089564174330267,31.095561775289884,31.1015593762495,31.107556977209118,31.11355457816873,31.11955217912835,31.125549780087965,31.131547381047582,31.137544982007196,31.143542582966813,31.14954018392643,31.155537784886047,31.16153538584566,31.167532986805277,31.173530587764894,31.17952818872451,31.185525789684128,31.19152339064374,31.19752099160336,31.203518592562975,31.209516193522592,31.215513794482206,31.221511395441823,31.22750899640144,31.233506597361057,31.23950419832067,31.245501799280287,31.251499400239904,31.25749700119952,31.263494602159135,31.26949220311875,31.27548980407837,31.281487405037986,31.287485005997603,31.293482606957216,31.299480207916833,31.30547780887645,31.311475409836067,31.31747301079568,31.323470611755297,31.329468212714914,31.33546581367453,31.341463414634145,31.347461015593762,31.35345861655338,31.359456217512996,31.36545381847261,31.371451419432226,31.377449020391843,31.38344662135146,31.389444222311077,31.39544182327069,31.401439424230308,31.407437025189925,31.41343462614954,31.419432227109155,31.425429828068772,31.43142742902839,31.437425029988006,31.44342263094762,31.449420231907236,31.455417832866853,31.46141543382647,31.467413034786084,31.4734106357457,31.479408236705318,31.485405837664935,31.491403438624552,31.497401039584165,31.503398640543782,31.5093962415034,31.515393842463016,31.52139144342263,31.527389044382247,31.533386645341864,31.53938424630148,31.545381847261094,31.55137944822071,31.557377049180328,31.563374650139945,31.56937225109956,31.575369852059175,31.581367453018792,31.58736505397841,31.593362654938026,31.59936025589764,31.605357856857257,31.611355457816874,31.61735305877649,31.623350659736104,31.62934826069572,31.63534586165534,31.641343462614955,31.64734106357457,31.653338664534186,31.659336265493803,31.66533386645342,31.671331467413033,31.67732906837265,31.683326669332267,31.689324270291884,31.6953218712515,31.701319472211114,31.70731707317073,31.71331467413035,31.719312275089965,31.72530987604958,31.731307477009196,31.737305077968813,31.74330267892843,31.749300279888043,31.75529788084766,31.761295481807277,31.767293082766894,31.773290683726508,31.779288284686125,31.78528588564574,31.79128348660536,31.797281087564976,31.80327868852459,31.809276289484206,31.815273890443823,31.82127149140344,31.827269092363053,31.83326669332267,31.839264294282287,31.845261895241904,31.851259496201518,31.857257097161135,31.863254698120752,31.86925229908037,31.875249900039982,31.8812475009996,31.887245101959216,31.893242702918833,31.89924030387845,31.905237904838064,31.91123550579768,31.917233106757298,31.923230707716915,31.929228308676528,31.935225909636145,31.941223510595762,31.94722111155538,31.953218712514992,31.95921631347461,31.965213914434226,31.971211515393843,31.977209116353457,31.983206717313074,31.98920431827269,31.995201919232308,32.001199520191925,32.00719712115154,32.01319472211116,32.01919232307077,32.025189924030386,32.03118752499,32.03718512594962,32.04318272690924,32.049180327868854,32.05517792882847,32.06117552978809,32.0671731307477,32.073170731707314,32.07916833266693,32.08516593362655,32.091163534586165,32.09716113554578,32.1031587365054,32.109156337465016,32.11515393842463,32.12115153938424,32.12714914034386,32.13314674130348,32.139144342263094,32.14514194322271,32.15113954418233,32.157137145141945,32.16313474610156,32.16913234706117,32.17512994802079,32.181127548980406,32.18712514994002,32.19312275089964,32.19912035185926,32.205117952818874,32.21111555377849,32.21711315473811,32.22311075569772,32.229108356657335,32.23510595761695,32.24110355857657,32.247101159536186,32.2530987604958,32.25909636145542,32.26509396241504,32.27109156337465,32.277089164334264,32.28308676529388,32.2890843662535,32.295081967213115,32.30107956817273,32.30707716913235,32.313074770091966,32.31907237105158,32.32506997201119,32.33106757297081,32.33706517393043,32.34306277489004,32.34906037584966,32.35505797680928,32.361055577768894,32.36705317872851,32.37305077968812,32.37904838064774,32.385045981607355,32.39104358256697,32.39704118352659,32.403038784486206,32.40903638544582,32.41503398640544,32.42103158736506,32.42702918832467,32.433026789284284,32.4390243902439,32.44502199120352,32.451019592163135,32.45701719312275,32.46301479408237,32.469012395041986,32.475009996001596,32.48100759696121,32.48700519792083,32.49300279888045,32.499000399840064,32.50499800079968,32.5109956017593,32.516993202718915,32.52299080367853,32.52898840463814,32.53498600559776,32.540983606557376,32.54698120751699,32.55297880847661,32.55897640943623,32.564974010395844,32.57097161135546,32.57696921231507,32.58296681327469,32.588964414234304,32.59496201519392,32.60095961615354,32.606957217113155,32.61295481807277,32.61895241903239,32.624950019992006,32.630947620951616,32.63694522191123,32.64294282287085,32.64894042383047,32.654938024790084,32.6609356257497,32.66693322670932,32.672930827668935,32.678928428628545,32.68492602958816,32.69092363054778,32.696921231507396,32.70291883246701,32.70891643342663,32.71491403438625,32.720911635345864,32.72690923630548,32.73290683726509,32.73890443822471,32.744902039184325,32.75089964014394,32.75689724110356,32.762894842063176,32.76889244302279,32.77489004398241,32.78088764494202,32.78688524590164,32.792882846861254,32.79888044782087,32.80487804878049,32.810875649740105,32.81687325069972,32.82287085165934,32.828868452618956,32.834866053578565,32.84086365453818,32.8468612554978,32.852858856457416,32.85885645741703,32.86485405837665,32.87085165933627,32.876849260295884,32.882846861255494,32.88884446221511,32.89484206317473,32.900839664134345,32.90683726509396,32.91283486605358,32.918832467013196,32.92483006797281,32.93082766893243,32.93682526989204,32.94282287085166,32.948820471811274,32.95481807277089,32.96081567373051,32.966813274690125,32.97281087564974,32.97880847660936,32.98480607756897,32.990803678528586,32.9968012794882,33.00279888044782,33.00879648140744,33.014794082367054,33.02079168332667,33.02678928428629,33.032786885245905,33.038784486205515,33.04478208716513,33.05077968812475,33.056777289084366,33.06277489004398,33.0687724910036,33.07477009196322,33.080767692922834,33.08676529388244,33.09276289484206,33.09876049580168,33.104758096761294,33.11075569772091,33.11675329868053,33.122750899640145,33.12874850059976,33.13474610155938,33.14074370251899,33.146741303478606,33.15273890443822,33.15873650539784,33.16473410635746,33.170731707317074,33.17672930827669,33.18272690923631,33.188724510195925,33.194722111155535,33.20071971211515,33.20671731307477,33.212714914034386,33.218712514994,33.22471011595362,33.23070771691324,33.236705317872854,33.242702918832464,33.24870051979208,33.2546981207517,33.260695721711315,33.26669332267093,33.27269092363055,33.278688524590166,33.28468612554978,33.2906837265094,33.29668132746901,33.30267892842863,33.308676529388244,33.31467413034786,33.32067173130748,33.326669332267095,33.33266693322671,33.33866453418633,33.34466213514594,33.350659736105555,33.35665733706517,33.36265493802479,33.368652538984406,33.37465013994402,33.38064774090364,33.38664534186326,33.392642942822874,33.398640543782484,33.4046381447421,33.41063574570172,33.416633346661335,33.42263094762095,33.42862854858057,33.434626149540186,33.4406237504998,33.44662135145941,33.45261895241903,33.45861655337865,33.464614154338264,33.47061175529788,33.4766093562575,33.482606957217115,33.48860455817673,33.49460215913635,33.50059976009596,33.506597361055576,33.51259496201519,33.51859256297481,33.52459016393443,33.530587764894044,33.53658536585366,33.54258296681328,33.54858056777289,33.554578168732505,33.56057576969212,33.56657337065174,33.572570971611356,33.57856857257097,33.58456617353059,33.59056377449021,33.596561375449824,33.60255897640943,33.60855657736905,33.61455417832867,33.620551779288284,33.6265493802479,33.63254698120752,33.638544582167135,33.64454218312675,33.65053978408636,33.65653738504598,33.662534986005596,33.66853258696521,33.67453018792483,33.68052778888445,33.686525389844064,33.69252299080368,33.6985205917633,33.70451819272291,33.710515793682525,33.71651339464214,33.72251099560176,33.728508596561376,33.73450619752099,33.74050379848061,33.74650139944023,33.75249900039984,33.758496601359454,33.76449420231907,33.77049180327869,33.776489404238305,33.78248700519792,33.78848460615754,33.794482207117156,33.80047980807677,33.80647740903638,33.812475009996,33.81847261095562,33.824470211915234,33.83046781287485,33.83646541383447,33.842463014794085,33.8484606157537,33.85445821671331,33.86045581767293,33.866453418632545,33.87245101959216,33.87844862055178,33.884446221511396,33.89044382247101,33.89644142343063,33.90243902439025,33.90843662534986,33.914434226309474,33.92043182726909,33.92642942822871,33.932427029188325,33.93842463014794,33.94442223110756,33.950419832067176,33.956417433026786,33.9624150339864,33.96841263494602,33.97441023590564,33.980407836865254,33.98640543782487,33.99240303878449,33.998400639744105,34.00439824070372,34.01039584166333,34.01639344262295,34.022391043582566,34.02838864454218,34.0343862455018,34.04038384646142,34.046381447421034,34.05237904838065,34.05837664934026,34.06437425029988,34.070371851259495,34.07636945221911,34.08236705317873,34.088364654138346,34.09436225509796,34.10035985605758,34.1063574570172,34.11235505797681,34.11835265893642,34.12435025989604,34.13034786085566,34.136345461815274,34.14234306277489,34.14834066373451,34.154338264694125,34.160335865653735,34.16633346661335,34.17233106757297,34.178328668532586,34.1843262694922,34.19032387045182,34.19632147141144,34.202319072371054,34.20831667333067,34.21431427429028,34.2203118752499,34.226309476209515,34.23230707716913,34.23830467812875,34.244302279088366,34.25029988004798,34.2562974810076,34.26229508196721,34.26829268292683,34.274290283886444,34.28028788484606,34.28628548580568,34.292283086765295,34.29828068772491,34.30427828868453,34.310275889644146,34.316273490603756,34.32227109156337,34.32826869252299,34.33426629348261,34.340263894442224,34.34626149540184,34.35225909636146,34.358256697321075,34.364254298280684,34.3702518992403,34.37624950019992,34.382247101159535,34.38824470211915,34.39424230307877,34.400239904038386,34.406237504998,34.41223510595762,34.41823270691723,34.42423030787685,34.430227908836464,34.43622550979608,34.4422231107557,34.448220711715315,34.45421831267493,34.46021591363455,34.46621351459416,34.472211115553776,34.47820871651339,34.48420631747301,34.49020391843263,34.496201519392244,34.50219912035186,34.50819672131148,34.514194322271095,34.520191923230705,34.52618952419032,34.53218712514994,34.538184726109556,34.54418232706917,34.55017992802879,34.55617752898841,34.562175129948024,34.568172730907634,34.57417033186725,34.58016793282687,34.586165533786485,34.5921631347461,34.59816073570572,34.604158336665336,34.61015593762495,34.61615353858457,34.62215113954418,34.628148740503796,34.63414634146341,34.64014394242303,34.64614154338265,34.652139144342264,34.65813674530188,34.6641343462615,34.67013194722111,34.676129548180725,34.68212714914034,34.68812475009996,34.694122351059576,34.70011995201919,34.70611755297881,34.71211515393843,34.718112754898044,34.724110355857654,34.73010795681727,34.73610555777689,34.742103158736505,34.74810075969612,34.75409836065574,34.760095961615356,34.76609356257497,34.77209116353458,34.7780887644942,34.78408636545382,34.790083966413434,34.79608156737305,34.80207916833267,34.808076769292285,34.8140743702519,34.82007197121152,34.82606957217113,34.832067173130746,34.83806477409036,34.84406237504998,34.8500599760096,34.856057576969214,34.86205517792883,34.86805277888845,34.87405037984806,34.880047980807674,34.88604558176729,34.89204318272691,34.898040783686525,34.90403838464614,34.91003598560576,34.916033586565376,34.92203118752499,34.9280287884846,34.93402638944422,34.94002399040384,34.946021591363454,34.95201919232307,34.95801679328269,34.964014394242305,34.97001199520192,34.97600959616153,34.98200719712115,34.988004798080766,34.99400239904038,35.0,35.00599760095962,35.011995201919234,35.01799280287885,35.02399040383847,35.02998800479808,35.035985605757695,35.04198320671731,35.04798080767693,35.053978408636546,35.05997600959616,35.06597361055578,35.0719712115154,35.07796881247501,35.083966413434624,35.08996401439424,35.09596161535386,35.101959216313475,35.10795681727309,35.11395441823271,35.119952019192326,35.12594962015194,35.13194722111155,35.13794482207117,35.143942423030786,35.1499400239904,35.15593762495002,35.16193522590964,35.167932826869254,35.17393042782887,35.17992802878848,35.1859256297481,35.191923230707715,35.19792083166733,35.20391843262695,35.209916033586566,35.21591363454618,35.2219112355058,35.22790883646542,35.23390643742503,35.239904038384644,35.24590163934426,35.25189924030388,35.257896841263495,35.26389444222311,35.26989204318273,35.275889644142346,35.281887245101956,35.28788484606157,35.29388244702119,35.29988004798081,35.305877648940424,35.31187524990004,35.31787285085966,35.323870451819275,35.32986805277889,35.3358656537385,35.34186325469812,35.347860855657736,35.35385845661735,35.35985605757697,35.36585365853659,35.371851259496204,35.37784886045582,35.38384646141543,35.38984406237505,35.395841663334664,35.40183926429428,35.4078368652539,35.413834466213515,35.41983206717313,35.42582966813275,35.431827269092366,35.437824870051976,35.44382247101159,35.44982007197121,35.45581767293083,35.461815273890444,35.46781287485006,35.47381047580968,35.479808076769295,35.485805677728905,35.49180327868852,35.49780087964814,35.503798480607756,35.50979608156737,35.51579368252699,35.52179128348661,35.527788884446224,35.53378648540584,35.53978408636545,35.54578168732507,35.551779288284685,35.5577768892443,35.56377449020392,35.569772091163536,35.57576969212315,35.58176729308277,35.58776489404238,35.593762495002,35.599760095961614,35.60575769692123,35.61175529788085,35.617752898840465,35.62375049980008,35.6297481007597,35.635745701719316,35.641743302678925,35.64774090363854,35.65373850459816,35.659736105557776,35.66573370651739,35.67173130747701,35.67772890843663,35.683726509396244,35.689724110355854,35.69572171131547,35.70171931227509,35.707716913234705,35.71371451419432,35.71971211515394,35.725709716113556,35.73170731707317,35.73770491803279,35.7437025189924,35.74970011995202,35.755697720911634,35.76169532187125,35.76769292283087,35.773690523790485,35.7796881247501,35.78568572570972,35.79168332666933,35.797680927628946,35.80367852858856,35.80967612954818,35.8156737305078,35.821671331467414,35.82766893242703,35.83366653338665,35.839664134346265,35.845661735305875,35.85165933626549,35.85765693722511,35.863654538184726,35.86965213914434,35.87564974010396,35.88164734106358,35.88764494202319,35.8936425429828,35.89964014394242,35.90563774490204,35.911635345861654,35.91763294682127,35.92363054778089,35.929628148740505,35.93562574970012,35.94162335065974,35.94762095161935,35.953618552578966,35.95961615353858,35.9656137544982,35.97161135545782,35.977608956417434,35.98360655737705,35.98960415833667,35.99560175929628,36.001599360255895,36.00759696121551,36.01359456217513,36.019592163134746,36.02558976409436,36.03158736505398,36.0375849660136,36.043582566973214,36.049580167932824,36.05557776889244,36.06157536985206,36.067572970811675,36.07357057177129,36.07956817273091,36.085565773690526,36.09156337465014,36.09756097560975,36.10355857656937,36.10955617752899,36.115553778488604,36.12155137944822,36.12754898040784,36.133546581367455,36.13954418232707,36.14554178328669,36.1515393842463,36.157536985205915,36.16353458616553,36.16953218712515,36.175529788084766,36.18152738904438,36.187524990004,36.19352259096362,36.19952019192323,36.205517792882844,36.21151539384246,36.21751299480208,36.223510595761695,36.22950819672131,36.23550579768093,36.241503398640546,36.24750099960016,36.25349860055977,36.25949620151939,36.26549380247901,36.271491403438624,36.27748900439824,36.28348660535786,36.289484206317475,36.29548180727709,36.3014794082367,36.30747700919632,36.313474610155936,36.31947221111555,36.32546981207517,36.33146741303479,36.337465013994404,36.34346261495402,36.34946021591364,36.35545781687325,36.361455417832865,36.36745301879248,36.3734506197521,36.379448220711716,36.38544582167133,36.39144342263095,36.39744102359057,36.403438624550176,36.40943622550979,36.41543382646941,36.42143142742903,36.427429028388644,36.43342662934826,36.43942423030788,36.445421831267495,36.45141943222711,36.45741703318672,36.46341463414634,36.469412235105956,36.47540983606557,36.48140743702519,36.48740503798481,36.493402638944424,36.49940023990404,36.50539784086365,36.51139544182327,36.517393042782885,36.5233906437425,36.52938824470212,36.535385845661736,36.54138344662135,36.54738104758097,36.55337864854059,36.5593762495002,36.565373850459814,36.57137145141943,36.57736905237905,36.583366653338665,36.58936425429828,36.5953618552579,36.601359456217516,36.607357057177126,36.61335465813674,36.61935225909636,36.62534986005598,36.631347461015594,36.63734506197521,36.64334266293483,36.649340263894445,36.65533786485406,36.66133546581367,36.66733306677329,36.673330667732905,36.67932826869252,36.68532586965214,36.691323470611756,36.69732107157137,36.70331867253099,36.7093162734906,36.71531387445022,36.721311475409834,36.72730907636945,36.73330667732907,36.739304278288685,36.7453018792483,36.75129948020792,36.757297081167536,36.763294682127146,36.76929228308676,36.77528988404638,36.781287485006,36.787285085965614,36.79328268692523,36.79928028788485,36.805277888844465,36.811275489804075,36.81727309076369,36.82327069172331,36.829268292682926,36.83526589364254,36.84126349460216,36.84726109556178,36.853258696521394,36.85925629748101,36.86525389844062,36.87125149940024,36.877249100359855,36.88324670131947,36.88924430227909,36.895241903238706,36.90123950419832,36.90723710515794,36.91323470611756,36.919232307077166,36.92522990803678,36.9312275089964,36.93722510995602,36.943222710915634,36.94922031187525,36.95521791283487,36.961215513794485,36.967213114754095,36.97321071571371,36.97920831667333,36.985205917632946,36.99120351859256,36.99720111955218,37.0031987205118,37.009196321471414,37.01519392243103,37.02119152339064,37.02718912435026,37.033186725309875,37.03918432626949,37.04518192722911,37.051179528188726,37.05717712914834,37.06317473010796,37.06917233106757,37.07516993202719,37.081167532986804,37.08716513394642,37.09316273490604,37.099160335865655,37.10515793682527,37.11115553778489,37.117153138744506,37.123150739704116,37.12914834066373,37.13514594162335,37.14114354258297,37.147141143542584,37.1531387445022,37.15913634546182,37.165133946421435,37.171131547381044,37.17712914834066,37.18312674930028,37.189124350259895,37.19512195121951,37.20111955217913,37.207117153138746,37.21311475409836,37.21911235505798,37.22510995601759,37.23110755697721,37.237105157936824,37.24310275889644,37.24910035985606,37.255097960815675,37.26109556177529,37.26709316273491,37.27309076369452,37.279088364654136,37.28508596561375,37.29108356657337,37.29708116753299,37.303078768492604,37.30907636945222,37.31507397041184,37.321071571371455,37.327069172331065,37.33306677329068,37.3390643742503,37.345061975209916,37.35105957616953,37.35705717712915,37.36305477808877,37.369052379048384,37.375049980007994,37.38104758096761,37.38704518192723,37.393042782886845,37.39904038384646,37.40503798480608,37.411035585765696,37.41703318672531,37.42303078768493,37.42902838864454,37.435025989604156,37.44102359056377,37.44702119152339,37.45301879248301,37.459016393442624,37.46501399440224,37.47101159536186,37.47700919632147,37.483006797281085,37.4890043982407,37.49500199920032,37.500999600159936,37.50699720111955,37.51299480207917,37.51899240303879,37.524990003998404,37.530987604958014,37.53698520591763,37.54298280687725,37.548980407836865,37.55497800879648,37.5609756097561,37.566973210715716,37.57297081167533,37.57896841263494,37.58496601359456,37.59096361455418,37.596961215513794,37.60295881647341,37.60895641743303,37.614954018392645,37.62095161935226,37.62694922031188,37.63294682127149,37.638944422231106,37.64494202319072,37.65093962415034,37.65693722510996,37.66293482606957,37.66893242702919,37.67493002798881,37.68092762894842,37.686925229908034,37.69292283086765,37.69892043182727,37.704918032786885,37.7109156337465,37.71691323470612,37.722910835665736,37.72890843662535,37.73490603758496,37.74090363854458,37.7469012395042,37.752898840463814,37.75889644142343,37.76489404238305,37.770891643342665,37.77688924430228,37.78288684526189,37.78888444622151,37.794882047181126,37.80087964814074,37.80687724910036,37.81287485005998,37.818872451019594,37.82487005197921,37.83086765293883,37.83686525389844,37.842862854858055,37.84886045581767,37.85485805677729,37.860855657736906,37.86685325869652,37.87285085965614,37.87884846061576,37.88484606157537,37.890843662534984,37.8968412634946,37.90283886445422,37.908836465413835,37.91483406637345,37.92083166733307,37.926829268292686,37.9328268692523,37.93882447021191,37.94482207117153,37.950819672131146,37.95681727309076,37.96281487405038,37.96881247501,37.974810075969614,37.98080767692923,37.98680527788884,37.99280287884846,37.998800479808075,38.00479808076769,38.01079568172731,38.016793282686926,38.02279088364654,38.02878848460616,38.03478608556578,38.04078368652539,38.046781287485004,38.05277888844462,38.05877648940424,38.064774090363855,38.07077169132347,38.07676929228309,38.082766893242706,38.088764494202316,38.09476209516193,38.10075969612155,38.10675729708117,38.112754898040784,38.1187524990004,38.12475009996002,38.130747700919635,38.13674530187925,38.14274290283886,38.14874050379848,38.154738104758096,38.16073570571771,38.16673330667733,38.17273090763695,38.17872850859656,38.18472610955618,38.19072371051579,38.19672131147541,38.202718912435024,38.20871651339464,38.21471411435426,38.220711715313875,38.22670931627349,38.23270691723311,38.238704518192726,38.244702119152336,38.25069972011195,38.25669732107157,38.26269492203119,38.268692522990804,38.27469012395042,38.28068772491004,38.286685325869655,38.292682926829265,38.29868052778888,38.3046781287485,38.310675729708116,38.31667333066773,38.32267093162735,38.32866853258697,38.334666133546584,38.3406637345062,38.34666133546581,38.35265893642543,38.358656537385045,38.36465413834466,38.37065173930428,38.376649340263896,38.38264694122351,38.38864454218313,38.39464214314274,38.40063974410236,38.406637345061974,38.41263494602159,38.41863254698121,38.424630147940825,38.43062774890044,38.43662534986006,38.442622950819676,38.448620551779285,38.4546181527389,38.46061575369852,38.466613354658136,38.47261095561775,38.47860855657737,38.48460615753699,38.490603758496604,38.496601359456214,38.50259896041583,38.50859656137545,38.514594162335065,38.52059176329468,38.5265893642543,38.532586965213916,38.53858456617353,38.54458216713315,38.55057976809276,38.55657736905238,38.562574970011994,38.56857257097161,38.57457017193123,38.580567772890845,38.58656537385046,38.59256297481008,38.59856057576969,38.604558176729306,38.61055577768892,38.61655337864854,38.62255097960816,38.628548580567774,38.63454618152739,38.64054378248701,38.646541383446625,38.652538984406235,38.65853658536585,38.66453418632547,38.670531787285086,38.6765293882447,38.68252698920432,38.68852459016394,38.69452219112355,38.70051979208316,38.70651739304278,38.7125149940024,38.718512594962014,38.72451019592163,38.73050779688125,38.736505397840865,38.74250299880048,38.7485005997601,38.75449820071971,38.760495801679326,38.76649340263894,38.77249100359856,38.77848860455818,38.784486205517794,38.79048380647741,38.79648140743703,38.80247900839664,38.808476609356255,38.81447421031587,38.82047181127549,38.826469412235106,38.83246701319472,38.83846461415434,38.84446221511396,38.850459816073574,38.856457417033184,38.8624550179928,38.86845261895242,38.874450219912035,38.88044782087165,38.88644542183127,38.892443022790886,38.8984406237505,38.90443822471011,38.91043582566973,38.91643342662935,38.922431027588964,38.92842862854858,38.9344262295082,38.940423830467815,38.94642143142743,38.95241903238705,38.95841663334666,38.964414234306275,38.97041183526589,38.97640943622551,38.982407037185126,38.98840463814474,38.99440223910436,39.00039984006398,39.00639744102359,39.012395041983204,39.01839264294282,39.02439024390244,39.030387844862055,39.03638544582167,39.04238304678129,39.048380647740906,39.05437824870052,39.06037584966013,39.06637345061975,39.07237105157937,39.078368652538984,39.0843662534986,39.09036385445822,39.096361455417835,39.10235905637745,39.10835665733706,39.11435425829668,39.120351859256296,39.12634946021591,39.13234706117553,39.13834466213515,39.144342263094764,39.15033986405438,39.156337465014,39.16233506597361,39.168332666933225,39.17433026789284,39.18032786885246,39.186325469812076,39.19232307077169,39.19832067173131,39.20431827269093,39.210315873650536,39.21631347461015,39.22231107556977,39.22830867652939,39.234306277489004,39.24030387844862,39.24630147940824,39.252299080367855,39.25829668132747,39.26429428228708,39.2702918832467,39.276289484206316,39.28228708516593,39.28828468612555,39.29428228708517,39.300279888044784,39.3062774890044,39.31227508996401,39.31827269092363,39.324270291883245,39.33026789284286,39.33626549380248,39.342263094762096,39.34826069572171,39.35425829668133,39.36025589764095,39.36625349860056,39.372251099560174,39.37824870051979,39.38424630147941,39.390243902439025,39.39624150339864,39.40223910435826,39.408236705317876,39.414234306277486,39.4202319072371,39.42622950819672,39.43222710915634,39.43822471011595,39.44422231107557,39.45021991203519,39.456217512994805,39.46221511395442,39.46821271491403,39.47421031587365,39.480207916833265,39.48620551779288,39.4922031187525,39.498200719712116,39.50419832067173,39.51019592163135,39.51619352259096,39.52219112355058,39.528188724510194,39.53418632546981,39.54018392642943,39.546181527389045,39.55217912834866,39.55817672930828,39.564174330267896,39.570171931227506,39.57616953218712,39.58216713314674,39.58816473410636,39.594162335065974,39.60015993602559,39.60615753698521,39.612155137944825,39.618152738904435,39.62415033986405,39.63014794082367,39.636145541783286,39.6421431427429,39.64814074370252,39.65413834466214,39.660135945621754,39.66613354658137,39.67213114754098,39.6781287485006,39.684126349460215,39.69012395041983,39.69612155137945,39.702119152339066,39.70811675329868,39.7141143542583,39.72011195521791,39.726109556177526,39.73210715713714,39.73810475809676,39.74410235905638,39.750099960015994,39.75609756097561,39.76209516193523,39.768092762894845,39.774090363854455,39.78008796481407,39.78608556577369,39.792083166733306,39.79808076769292,39.80407836865254,39.81007596961216,39.816073570571774,39.822071171531384,39.828068772491,39.83406637345062,39.840063974410235,39.84606157536985,39.85205917632947,39.858056777289086,39.8640543782487,39.87005197920832,39.87604958016793,39.88204718112755,39.888044782087164,39.89404238304678,39.9000399840064,39.906037584966015,39.91203518592563,39.91803278688525,39.92403038784486,39.930027988804476,39.93602558976409,39.94202319072371,39.94802079168333,39.95401839264294,39.96001599360256,39.96601359456218,39.972011195521794,39.978008796481404,39.98400639744102,39.99000399840064,39.996001599360255,40.00199920031987,40.00799680127949,40.013994402239106,40.01999200319872,40.02598960415833,40.03198720511795,40.03798480607757,40.043982407037184,40.0499800079968,40.05597760895642,40.061975209916035,40.06797281087565,40.07397041183527,40.07996801279488,40.085965613754496,40.09196321471411,40.09796081567373,40.10395841663335,40.109956017592964,40.11595361855258,40.1219512195122,40.12794882047181,40.133946421431425,40.13994402239104,40.14594162335066,40.151939224310276,40.15793682526989,40.16393442622951,40.16993202718913,40.175929628148744,40.181927229108354,40.18792483006797,40.19392243102759,40.199920031987205,40.20591763294682,40.21191523390644,40.217912834866056,40.22391043582567,40.22990803678528,40.2359056377449,40.241903238704516,40.24790083966413,40.25389844062375,40.25989604158337,40.265893642542984,40.2718912435026,40.27788884446222,40.28388644542183,40.289884046381445,40.29588164734106,40.30187924830068,40.307876849260296,40.31387445021991,40.31987205117953,40.32586965213915,40.33186725309876,40.337864854058374,40.34386245501799,40.34986005597761,40.355857656937225,40.36185525789684,40.36785285885646,40.373850459816076,40.37984806077569,40.3858456617353,40.39184326269492,40.39784086365454,40.403838464614154,40.40983606557377,40.41583366653339,40.421831267493005,40.42782886845262,40.43382646941223,40.43982407037185,40.445821671331466,40.45181927229108,40.4578168732507,40.46381447421032,40.46981207516993,40.47580967612955,40.48180727708917,40.48780487804878,40.493802479008394,40.49980007996801,40.50579768092763,40.511795281887245,40.51779288284686,40.52379048380648,40.529788084766096,40.535785685725706,40.54178328668532,40.54778088764494,40.55377848860456,40.559776089564174,40.56577369052379,40.57177129148341,40.577768892443025,40.58376649340264,40.58976409436225,40.59576169532187,40.601759296281486,40.6077568972411,40.61375449820072,40.61975209916034,40.625749700119954,40.63174730107957,40.63774490203919,40.6437425029988,40.649740103958415,40.65573770491803,40.66173530587765,40.667732906837266,40.67373050779688,40.6797281087565,40.68572570971612,40.69172331067573,40.697720911635344,40.70371851259496,40.70971611355458,40.715713714514195,40.72171131547381,40.72770891643343,40.733706517393045,40.73970411835266,40.74570171931227,40.75169932027189,40.757696921231506,40.76369452219112,40.76969212315074,40.77568972411036,40.781687325069974,40.78768492602959,40.7936825269892,40.79968012794882,40.805677728908435,40.81167532986805,40.81767293082767,40.823670531787286,40.8296681327469,40.83566573370652,40.84166333466614,40.84766093562575,40.853658536585364,40.85965613754498,40.8656537385046,40.871651339464215,40.87764894042383,40.88364654138345,40.889644142343066,40.895641743302676,40.90163934426229,40.90763694522191,40.91363454618153,40.919632147141144,40.92562974810076,40.93162734906038,40.937624950019995,40.94362255097961,40.94962015193922,40.95561775289884,40.961615353858456,40.96761295481807,40.97361055577769,40.97960815673731,40.98560575769692,40.99160335865654,40.99760095961615,41.00359856057577,41.009596161535384,41.015593762495,41.02159136345462,41.027588964414235,41.03358656537385,41.03958416633347,41.045581767293086,41.051579368252696,41.05757696921231,41.06357457017193,41.06957217113155,41.075569772091164,41.08156737305078,41.0875649740104,41.093562574970015,41.099560175929625,41.10555777688924,41.11155537784886,41.117552978808476,41.12355057976809,41.12954818072771,41.13554578168733,41.141543382646944,41.14754098360656,41.15353858456617,41.15953618552579,41.165533786485405,41.17153138744502,41.17752898840464,41.183526589364256,41.18952419032387,41.19552179128349,41.2015193922431,41.20751699320272,41.21351459416233,41.21951219512195,41.22550979608157,41.231507397041185,41.2375049980008,41.24350259896042,41.249500199920035,41.255497800879645,41.26149540183926,41.26749300279888,41.273490603758496,41.27948820471811,41.28548580567773,41.29148340663735,41.297481007596964,41.303478608556574,41.30947620951619,41.31547381047581,41.321471411435425,41.32746901239504,41.33346661335466,41.339464214314276,41.34546181527389,41.35145941623351,41.35745701719312,41.36345461815274,41.369452219112354,41.37544982007197,41.38144742103159,41.387445021991205,41.39344262295082,41.39944022391044,41.40543782487005,41.411435425829666,41.41743302678928,41.4234306277489,41.42942822870852,41.435425829668134,41.44142343062775,41.44742103158737,41.453418632546985,41.459416233506595,41.46541383446621,41.47141143542583,41.477409036385446,41.48340663734506,41.48940423830468,41.4954018392643,41.50139944022391,41.50739704118352,41.51339464214314,41.51939224310276,41.525389844062374,41.53138744502199,41.53738504598161,41.543382646941225,41.54938024790084,41.55537784886046,41.56137544982007,41.567373050779686,41.5733706517393,41.57936825269892,41.58536585365854,41.591363454618154,41.59736105557777,41.60335865653739,41.609356257497,41.615353858456615,41.62135145941623,41.62734906037585,41.633346661335466,41.63934426229508,41.6453418632547,41.65133946421432,41.657337065173934,41.663334666133544,41.66933226709316,41.67532986805278,41.681327469012395,41.68732506997201,41.69332267093163,41.699320271891246,41.70531787285086,41.71131547381047,41.71731307477009,41.72331067572971,41.72930827668932,41.73530587764894,41.74130347860856,41.747301079568174,41.75329868052779,41.75929628148741,41.76529388244702,41.771291483406635,41.77728908436625,41.78328668532587,41.789284286285486,41.7952818872451,41.80127948820472,41.80727708916434,41.81327469012395,41.819272291083564,41.82526989204318,41.8312674930028,41.837265093962415,41.84326269492203,41.84926029588165,41.855257896841266,41.86125549780088,41.86725309876049,41.87325069972011,41.87924830067973,41.885245901639344,41.89124350259896,41.89724110355858,41.903238704518195,41.90923630547781,41.91523390643742,41.92123150739704,41.927229108356656,41.93322670931627,41.93922431027589,41.94522191123551,41.951219512195124,41.95721711315474,41.96321471411436,41.96921231507397,41.975209916033585,41.9812075169932,41.98720511795282,41.993202718912436,41.99920031987205,42.00519792083167,42.01119552179129,42.017193122750896,42.02319072371051,42.02918832467013,42.03518592562975,42.041183526589364,42.04718112754898,42.0531787285086,42.059176329468215,42.06517393042783,42.07117153138744,42.07716913234706,42.083166733306676,42.08916433426629,42.09516193522591,42.10115953618553,42.107157137145144,42.11315473810476,42.11915233906437,42.12514994002399,42.131147540983605,42.13714514194322,42.14314274290284,42.149140343862456,42.15513794482207,42.16113554578169,42.16713314674131,42.17313074770092,42.179128348660534,42.18512594962015,42.19112355057977,42.197121151539385,42.203118752499,42.20911635345862,42.215113954418236,42.221111555377846,42.22710915633746,42.23310675729708,42.2391043582567,42.24510195921631,42.25109956017593,42.25709716113555,42.263094762095164,42.26909236305478,42.27508996401439,42.28108756497401,42.287085165933625,42.29308276689324,42.29908036785286,42.305077968812476,42.31107556977209,42.31707317073171,42.32307077169132,42.32906837265094,42.335065973610554,42.34106357457017,42.34706117552979,42.353058776489405,42.35905637744902,42.36505397840864,42.371051579368256,42.377049180327866,42.38304678128748,42.3890443822471,42.39504198320672,42.401039584166334,42.40703718512595,42.41303478608557,42.419032387045185,42.425029988004795,42.43102758896441,42.43702518992403,42.443022790883646,42.44902039184326,42.45501799280288,42.4610155937625,42.467013194722114,42.47301079568173,42.47900839664134,42.48500599760096,42.491003598560575,42.49700119952019,42.50299880047981,42.508996401439425,42.51499400239904,42.52099160335866,42.52698920431827,42.532986805277886,42.5389844062375,42.54498200719712,42.55097960815674,42.556977209116354,42.56297481007597,42.56897241103559,42.574970011995205,42.580967612954815,42.58696521391443,42.59296281487405,42.598960415833666,42.60495801679328,42.6109556177529,42.61695321871252,42.622950819672134,42.628948420631744,42.63494602159136,42.64094362255098,42.646941223510595,42.65293882447021,42.65893642542983,42.664934026389446,42.67093162734906,42.67692922830868,42.68292682926829,42.68892443022791,42.694922031187524,42.70091963214714,42.70691723310676,42.712914834066375,42.71891243502599,42.72491003598561,42.73090763694522,42.736905237904836,42.74290283886445,42.74890043982407,42.75489804078369,42.7608956417433,42.76689324270292,42.77289084366254,42.778888444622154,42.784886045581764,42.79088364654138,42.796881247501,42.802878848460615,42.80887644942023,42.81487405037985,42.820871651339466,42.82686925229908,42.83286685325869,42.83886445421831,42.84486205517793,42.850859656137544,42.85685725709716,42.86285485805678,42.868852459016395,42.87485005997601,42.88084766093563,42.88684526189524,42.892842862854856,42.89884046381447,42.90483806477409,42.91083566573371,42.916833266693324,42.92283086765294,42.92882846861256,42.93482606957217,42.940823670531785,42.9468212714914,42.95281887245102,42.958816473410636,42.96481407437025,42.97081167532987,42.97680927628949,42.982806877249104,42.98880447820871,42.99480207916833,43.00079968012795,43.006797281087564,43.01279488204718,43.0187924830068,43.024790083966415,43.03078768492603,43.03678528588564,43.04278288684526,43.048780487804876,43.05477808876449,43.06077568972411,43.06677329068373,43.072770891643344,43.07876849260296,43.08476609356258,43.09076369452219,43.096761295481805,43.10275889644142,43.10875649740104,43.114754098360656,43.12075169932027,43.12674930027989,43.13274690123951,43.13874450219912,43.144742103158734,43.15073970411835,43.15673730507797,43.162734906037585,43.1687325069972,43.17473010795682,43.180727708916436,43.18672530987605,43.19272291083566,43.19872051179528,43.2047181127549,43.210715713714514,43.21671331467413,43.22271091563375,43.228708516593365,43.23470611755298,43.24070371851259,43.24670131947221,43.252698920431826,43.25869652139144,43.26469412235106,43.27069172331068,43.27668932427029,43.28268692522991,43.28868452618953,43.29468212714914,43.300679728108754,43.30667732906837,43.31267493002799,43.318672530987605,43.32467013194722,43.33066773290684,43.336665333866456,43.342662934826066,43.34866053578568,43.3546581367453,43.36065573770492,43.366653338664534,43.37265093962415,43.37864854058377,43.384646141543385,43.390643742503,43.39664134346261,43.40263894442223,43.408636545381846,43.41463414634146,43.42063174730108,43.4266293482607,43.432626949220314,43.43862455017993,43.44462215113954,43.45061975209916,43.456617353058775,43.46261495401839,43.46861255497801,43.474610155937626,43.48060775689724,43.48660535785686,43.49260295881648,43.49860055977609,43.5045981607357,43.51059576169532,43.51659336265494,43.522590963614554,43.52858856457417,43.53458616553379,43.540583766493405,43.546581367453015,43.55257896841263,43.55857656937225,43.564574170331866,43.57057177129148,43.5765693722511,43.58256697321072,43.588564574170334,43.59456217512995,43.60055977608956,43.60655737704918,43.612554978008795,43.61855257896841,43.62455017992803,43.630547780887646,43.63654538184726,43.64254298280688,43.64854058376649,43.65453818472611,43.660535785685724,43.66653338664534,43.67253098760496,43.678528588564575,43.68452618952419,43.69052379048381,43.696521391443426,43.702518992403036,43.70851659336265,43.71451419432227,43.72051179528189,43.726509396241504,43.73250699720112,43.73850459816074,43.744502199120355,43.750499800079965,43.75649740103958,43.7624950019992,43.768492602958815,43.77449020391843,43.78048780487805,43.78648540583767,43.79248300679728,43.7984806077569,43.80447820871651,43.81047580967613,43.816473410635744,43.82247101159536,43.82846861255498,43.834466213514595,43.84046381447421,43.84646141543383,43.85245901639344,43.858456617353056,43.86445421831267,43.87045181927229,43.87644942023191,43.882447021191524,43.88844462215114,43.89444222311076,43.900439824070375,43.906437425029985,43.9124350259896,43.91843262694922,43.924430227908836,43.93042782886845,43.93642542982807,43.94242303078769,43.948420631747304,43.954418232706914,43.96041583366653,43.96641343462615,43.972411035585765,43.97840863654538,43.984406237505,43.990403838464616,43.99640143942423,44.00239904038385,44.00839664134346,44.01439424230308,44.02039184326269,44.02638944422231,44.03238704518193,44.038384646141544,44.04438224710116,44.05037984806078,44.05637744902039,44.062375049980005,44.06837265093962,44.07437025189924,44.080367852858856,44.08636545381847,44.09236305477809,44.09836065573771,44.104358256697324,44.110355857656934,44.11635345861655,44.12235105957617,44.128348660535785,44.1343462614954,44.14034386245502,44.146341463414636,44.15233906437425,44.15833666533386,44.16433426629348,44.1703318672531,44.176329468212714,44.18232706917233,44.18832467013195,44.194322271091565,44.20031987205118,44.2063174730108,44.21231507397041,44.218312674930026,44.22431027588964,44.23030787684926,44.23630547780888,44.242303078768494,44.24830067972811,44.25429828068773,44.26029588164734,44.266293482606955,44.27229108356657,44.27828868452619,44.284286285485805,44.29028388644542,44.29628148740504,44.302279088364656,44.30827668932427,44.31427429028388,44.3202718912435,44.32626949220312,44.332267093162734,44.33826469412235,44.34426229508197,44.350259896041585,44.3562574970012,44.36225509796081,44.36825269892043,44.374250299880046,44.38024790083966,44.38624550179928,44.3922431027589,44.398240703718514,44.40423830467813,44.41023590563775,44.41623350659736,44.422231107556975,44.42822870851659,44.43422630947621,44.440223910435826,44.44622151139544,44.45221911235506,44.45821671331468,44.464214314274294,44.470211915233904,44.47620951619352,44.48220711715314,44.488204718112755,44.49420231907237,44.50019992003199,44.506197520991606,44.51219512195122,44.51819272291083,44.52419032387045,44.53018792483007,44.53618552578968,44.5421831267493,44.54818072770892,44.554178328668534,44.56017592962815,44.56617353058777,44.57217113154738,44.578168732506995,44.58416633346661,44.59016393442623,44.596161535385846,44.60215913634546,44.60815673730508,44.6141543382647,44.62015193922431,44.626149540183924,44.63214714114354,44.63814474210316,44.644142343062775,44.65013994402239,44.65613754498201,44.662135145941626,44.66813274690124,44.67413034786085,44.68012794882047,44.68612554978009,44.692123150739704,44.69812075169932,44.70411835265894,44.710115953618555,44.71611355457817,44.72211115553778,44.7281087564974,44.734106357457016,44.74010395841663,44.74610155937625,44.75209916033587,44.758096761295484,44.7640943622551,44.77009196321472,44.77608956417433,44.782087165133944,44.78808476609356,44.79408236705318,44.800079968012795,44.80607756897241,44.81207516993203,44.818072770891646,44.824070371851256,44.83006797281087,44.83606557377049,44.84206317473011,44.848060775689724,44.85405837664934,44.86005597760896,44.866053578568575,44.87205117952819,44.8780487804878,44.88404638144742,44.890043982407036,44.89604158336665,44.90203918432627,44.90803678528589,44.914034386245504,44.92003198720512,44.92602958816473,44.93202718912435,44.938024790083965,44.94402239104358,44.9500199920032,44.956017592962816,44.96201519392243,44.96801279488205,44.97401039584167,44.98000799680128,44.986005597760894,44.99200319872051,44.99800079968013,45.003998400639745,45.00999600159936,45.01599360255898,45.021991203518596,45.027988804478206,45.03398640543782,45.03998400639744,45.04598160735706,45.05197920831667,45.05797680927629,45.06397441023591,45.069972011195524,45.07596961215514,45.08196721311475,45.08796481407437,45.093962415033985,45.0999600159936,45.10595761695322,45.111955217912836,45.11795281887245,45.12395041983207,45.12994802079168,45.1359456217513,45.141943222710914,45.14794082367053,45.15393842463015,45.159936025589765,45.16593362654938,45.171931227509,45.177928828468616,45.183926429428226,45.18992403038784,45.19592163134746,45.20191923230708,45.207916833266694,45.21391443422631,45.21991203518593,45.225909636145545,45.231907237105155,45.23790483806477,45.24390243902439,45.249900039984006,45.25589764094362,45.26189524190324,45.26789284286286,45.273890443822474,45.27988804478209,45.2858856457417,45.29188324670132,45.297880847660934,45.30387844862055,45.30987604958017,45.315873650539785,45.3218712514994,45.32786885245902,45.33386645341863,45.339864054378246,45.34586165533786,45.35185925629748,45.3578568572571,45.363854458216714,45.36985205917633,45.37584966013595,45.381847261095565,45.387844862055175,45.39384246301479,45.39984006397441,45.405837664934026,45.41183526589364,45.41783286685326,45.42383046781288,45.429828068772494,45.435825669732104,45.44182327069172,45.44782087165134,45.453818472610955,45.45981607357057,45.46581367453019,45.471811275489806,45.47780887644942,45.48380647740904,45.48980407836865,45.49580167932827,45.501799280287884,45.5077968812475,45.51379448220712,45.519792083166735,45.52578968412635,45.53178728508597,45.53778488604558,45.543782487005195,45.54978008796481,45.55577768892443,45.56177528988405,45.56777289084366,45.57377049180328,45.5797680927629,45.585765693722514,45.591763294682124,45.59776089564174,45.60375849660136,45.609756097560975,45.61575369852059,45.62175129948021,45.627748900439826,45.63374650139944,45.63974410235905,45.64574170331867,45.65173930427829,45.657736905237904,45.66373450619752,45.66973210715714,45.675729708116755,45.68172730907637,45.68772491003599,45.6937225109956,45.699720111955216,45.70571771291483,45.71171531387445,45.71771291483407,45.723710515793684,45.7297081167533,45.73570571771292,45.74170331867253,45.747700919632145,45.75369852059176,45.75969612155138,45.765693722510996,45.77169132347061,45.77768892443023,45.78368652538985,45.789684126349464,45.79568172730907,45.80167932826869,45.80767692922831,45.813674530187924,45.81967213114754,45.82566973210716,45.831667333066775,45.83766493402639,45.843662534986,45.84966013594562,45.855657736905236,45.86165533786485,45.86765293882447,45.87365053978409,45.879648140743704,45.88564574170332,45.89164334266294,45.89764094362255,45.903638544582165,45.90963614554178,45.9156337465014,45.921631347461016,45.92762894842063,45.93362654938025,45.93962415033987,45.94562175129948,45.951619352259094,45.95761695321871,45.96361455417833,45.969612155137945,45.97560975609756,45.98160735705718,45.987604958016796,45.99360255897641,45.99960015993602,46.00559776089564,46.01159536185526,46.017592962814874,46.02359056377449,46.02958816473411,46.035585765693725,46.04158336665334,46.04758096761295,46.05357856857257,46.059576169532185,46.0655737704918,46.07157137145142,46.077568972411036,46.08356657337065,46.08956417433027,46.09556177528989,46.1015593762495,46.107556977209114,46.11355457816873,46.11955217912835,46.125549780087965,46.13154738104758,46.1375449820072,46.143542582966816,46.149540183926426,46.15553778488604,46.16153538584566,46.16753298680528,46.173530587764894,46.17952818872451,46.18552578968413,46.191523390643745,46.19752099160336,46.20351859256297,46.20951619352259,46.215513794482206,46.22151139544182,46.22750899640144,46.23350659736106,46.239504198320674,46.24550179928029,46.2514994002399,46.25749700119952,46.263494602159135,46.26949220311875,46.27548980407837,46.281487405037986,46.2874850059976,46.29348260695722,46.29948020791684,46.30547780887645,46.31147540983606,46.31747301079568,46.3234706117553,46.329468212714914,46.33546581367453,46.34146341463415,46.347461015593765,46.353458616553375,46.35945621751299,46.36545381847261,46.371451419432226,46.37744902039184,46.38344662135146,46.38944422231108,46.395441823270694,46.40143942423031,46.40743702518992,46.41343462614954,46.419432227109155,46.42542982806877,46.43142742902839,46.437425029988006,46.44342263094762,46.44942023190724,46.45541783286685,46.46141543382647,46.467413034786084,46.4734106357457,46.47940823670532,46.485405837664935,46.49140343862455,46.49740103958417,46.503398640543786,46.509396241503396,46.51539384246301,46.52139144342263,46.52738904438225,46.533386645341864,46.53938424630148,46.5453818472611,46.551379448220715,46.557377049180324,46.56337465013994,46.56937225109956,46.575369852059175,46.58136745301879,46.58736505397841,46.593362654938026,46.59936025589764,46.60535785685726,46.61135545781687,46.61735305877649,46.623350659736104,46.62934826069572,46.63534586165534,46.641343462614955,46.64734106357457,46.65333866453419,46.6593362654938,46.665333866453416,46.67133146741303,46.67732906837265,46.68332666933227,46.689324270291884,46.6953218712515,46.70131947221112,46.707317073170735,46.713314674130345,46.71931227508996,46.72530987604958,46.731307477009196,46.73730507796881,46.74330267892843,46.74930027988805,46.755297880847664,46.761295481807274,46.76729308276689,46.77329068372651,46.779288284686125,46.78528588564574,46.79128348660536,46.797281087564976,46.80327868852459,46.80927628948421,46.81527389044382,46.82127149140344,46.82726909236305,46.83326669332267,46.83926429428229,46.845261895241904,46.85125949620152,46.85725709716114,46.86325469812075,46.869252299080365,46.87524990003998,46.8812475009996,46.887245101959216,46.89324270291883,46.89924030387845,46.90523790483807,46.911235505797684,46.917233106757294,46.92323070771691,46.92922830867653,46.935225909636145,46.94122351059576,46.94722111155538,46.953218712514996,46.95921631347461,46.96521391443422,46.97121151539384,46.97720911635346,46.983206717313074,46.98920431827269,46.99520191923231,47.001199520191925,47.00719712115154,47.01319472211116,47.01919232307077,47.025189924030386,47.03118752499,47.03718512594962,47.04318272690924,47.049180327868854,47.05517792882847,47.06117552978809,47.0671731307477,47.073170731707314,47.07916833266693,47.08516593362655,47.091163534586165,47.09716113554578,47.1031587365054,47.109156337465016,47.11515393842463,47.12115153938424,47.12714914034386,47.13314674130348,47.139144342263094,47.14514194322271,47.15113954418233,47.157137145141945,47.16313474610156,47.16913234706117,47.17512994802079,47.181127548980406,47.18712514994002,47.19312275089964,47.19912035185926,47.205117952818874,47.21111555377849,47.21711315473811,47.22311075569772,47.229108356657335,47.23510595761695,47.24110355857657,47.247101159536186,47.2530987604958,47.25909636145542,47.26509396241504,47.27109156337465,47.277089164334264,47.28308676529388,47.2890843662535,47.295081967213115,47.30107956817273,47.30707716913235,47.313074770091966,47.31907237105158,47.32506997201119,47.33106757297081,47.33706517393043,47.34306277489004,47.34906037584966,47.35505797680928,47.361055577768894,47.36705317872851,47.37305077968812,47.37904838064774,47.385045981607355,47.39104358256697,47.39704118352659,47.403038784486206,47.40903638544582,47.41503398640544,47.42103158736506,47.42702918832467,47.433026789284284,47.4390243902439,47.44502199120352,47.451019592163135,47.45701719312275,47.46301479408237,47.469012395041986,47.475009996001596,47.48100759696121,47.48700519792083,47.49300279888045,47.499000399840064,47.50499800079968,47.5109956017593,47.516993202718915,47.52299080367853,47.52898840463814,47.53498600559776,47.540983606557376,47.54698120751699,47.55297880847661,47.55897640943623,47.564974010395844,47.57097161135546,47.57696921231507,47.58296681327469,47.588964414234304,47.59496201519392,47.60095961615354,47.606957217113155,47.61295481807277,47.61895241903239,47.624950019992006,47.630947620951616,47.63694522191123,47.64294282287085,47.64894042383047,47.654938024790084,47.6609356257497,47.66693322670932,47.672930827668935,47.678928428628545,47.68492602958816,47.69092363054778,47.696921231507396,47.70291883246701,47.70891643342663,47.71491403438625,47.720911635345864,47.72690923630548,47.73290683726509,47.73890443822471,47.744902039184325,47.75089964014394,47.75689724110356,47.762894842063176,47.76889244302279,47.77489004398241,47.78088764494202,47.78688524590164,47.792882846861254,47.79888044782087,47.80487804878049,47.810875649740105,47.81687325069972,47.82287085165934,47.828868452618956,47.834866053578565,47.84086365453818,47.8468612554978,47.852858856457416,47.85885645741703,47.86485405837665,47.87085165933627,47.876849260295884,47.882846861255494,47.88884446221511,47.89484206317473,47.900839664134345,47.90683726509396,47.91283486605358,47.918832467013196,47.92483006797281,47.93082766893243,47.93682526989204,47.94282287085166,47.948820471811274,47.95481807277089,47.96081567373051,47.966813274690125,47.97281087564974,47.97880847660936,47.98480607756897,47.990803678528586,47.9968012794882,48.00279888044782,48.00879648140744,48.014794082367054,48.02079168332667,48.02678928428629,48.032786885245905,48.038784486205515,48.04478208716513,48.05077968812475,48.056777289084366,48.06277489004398,48.0687724910036,48.07477009196322,48.080767692922834,48.08676529388244,48.09276289484206,48.09876049580168,48.104758096761294,48.11075569772091,48.11675329868053,48.122750899640145,48.12874850059976,48.13474610155938,48.14074370251899,48.146741303478606,48.15273890443822,48.15873650539784,48.16473410635746,48.170731707317074,48.17672930827669,48.18272690923631,48.188724510195925,48.194722111155535,48.20071971211515,48.20671731307477,48.212714914034386,48.218712514994,48.22471011595362,48.23070771691324,48.236705317872854,48.242702918832464,48.24870051979208,48.2546981207517,48.260695721711315,48.26669332267093,48.27269092363055,48.278688524590166,48.28468612554978,48.2906837265094,48.29668132746901,48.30267892842863,48.308676529388244,48.31467413034786,48.32067173130748,48.326669332267095,48.33266693322671,48.33866453418633,48.34466213514594,48.350659736105555,48.35665733706517,48.36265493802479,48.368652538984406,48.37465013994402,48.38064774090364,48.38664534186326,48.392642942822874,48.398640543782484,48.4046381447421,48.41063574570172,48.416633346661335,48.42263094762095,48.42862854858057,48.434626149540186,48.4406237504998,48.44662135145941,48.45261895241903,48.45861655337865,48.464614154338264,48.47061175529788,48.4766093562575,48.482606957217115,48.48860455817673,48.49460215913635,48.50059976009596,48.506597361055576,48.51259496201519,48.51859256297481,48.52459016393443,48.530587764894044,48.53658536585366,48.54258296681328,48.54858056777289,48.554578168732505,48.56057576969212,48.56657337065174,48.572570971611356,48.57856857257097,48.58456617353059,48.59056377449021,48.596561375449824,48.60255897640943,48.60855657736905,48.61455417832867,48.620551779288284,48.6265493802479,48.63254698120752,48.638544582167135,48.64454218312675,48.65053978408636,48.65653738504598,48.662534986005596,48.66853258696521,48.67453018792483,48.68052778888445,48.686525389844064,48.69252299080368,48.6985205917633,48.70451819272291,48.710515793682525,48.71651339464214,48.72251099560176,48.728508596561376,48.73450619752099,48.74050379848061,48.74650139944023,48.75249900039984,48.758496601359454,48.76449420231907,48.77049180327869,48.776489404238305,48.78248700519792,48.78848460615754,48.794482207117156,48.80047980807677,48.80647740903638,48.812475009996,48.81847261095562,48.824470211915234,48.83046781287485,48.83646541383447,48.842463014794085,48.8484606157537,48.85445821671331,48.86045581767293,48.866453418632545,48.87245101959216,48.87844862055178,48.884446221511396,48.89044382247101,48.89644142343063,48.90243902439025,48.90843662534986,48.914434226309474,48.92043182726909,48.92642942822871,48.932427029188325,48.93842463014794,48.94442223110756,48.950419832067176,48.956417433026786,48.9624150339864,48.96841263494602,48.97441023590564,48.980407836865254,48.98640543782487,48.99240303878449,48.998400639744105,49.00439824070372,49.01039584166333,49.01639344262295,49.022391043582566,49.02838864454218,49.0343862455018,49.04038384646142,49.046381447421034,49.05237904838065,49.05837664934026,49.06437425029988,49.070371851259495,49.07636945221911,49.08236705317873,49.088364654138346,49.09436225509796,49.10035985605758,49.1063574570172,49.11235505797681,49.11835265893642,49.12435025989604,49.13034786085566,49.136345461815274,49.14234306277489,49.14834066373451,49.154338264694125,49.160335865653735,49.16633346661335,49.17233106757297,49.178328668532586,49.1843262694922,49.19032387045182,49.19632147141144,49.202319072371054,49.20831667333067,49.21431427429028,49.2203118752499,49.226309476209515,49.23230707716913,49.23830467812875,49.244302279088366,49.25029988004798,49.2562974810076,49.26229508196721,49.26829268292683,49.274290283886444,49.28028788484606,49.28628548580568,49.292283086765295,49.29828068772491,49.30427828868453,49.310275889644146,49.316273490603756,49.32227109156337,49.32826869252299,49.33426629348261,49.340263894442224,49.34626149540184,49.35225909636146,49.358256697321075,49.364254298280684,49.3702518992403,49.37624950019992,49.382247101159535,49.38824470211915,49.39424230307877,49.400239904038386,49.406237504998,49.41223510595762,49.41823270691723,49.42423030787685,49.430227908836464,49.43622550979608,49.4422231107557,49.448220711715315,49.45421831267493,49.46021591363455,49.46621351459416,49.472211115553776,49.47820871651339,49.48420631747301,49.49020391843263,49.496201519392244,49.50219912035186,49.50819672131148,49.514194322271095,49.520191923230705,49.52618952419032,49.53218712514994,49.538184726109556,49.54418232706917,49.55017992802879,49.55617752898841,49.562175129948024,49.568172730907634,49.57417033186725,49.58016793282687,49.586165533786485,49.5921631347461,49.59816073570572,49.604158336665336,49.61015593762495,49.61615353858457,49.62215113954418,49.628148740503796,49.63414634146341,49.64014394242303,49.64614154338265,49.652139144342264,49.65813674530188,49.6641343462615,49.67013194722111,49.676129548180725,49.68212714914034,49.68812475009996,49.694122351059576,49.70011995201919,49.70611755297881,49.71211515393843,49.718112754898044,49.724110355857654,49.73010795681727,49.73610555777689,49.742103158736505,49.74810075969612,49.75409836065574,49.760095961615356,49.76609356257497,49.77209116353458,49.7780887644942,49.78408636545382,49.790083966413434,49.79608156737305,49.80207916833267,49.808076769292285,49.8140743702519,49.82007197121152,49.82606957217113,49.832067173130746,49.83806477409036,49.84406237504998,49.8500599760096,49.856057576969214,49.86205517792883,49.86805277888845,49.87405037984806,49.880047980807674,49.88604558176729,49.89204318272691,49.898040783686525,49.90403838464614,49.91003598560576,49.916033586565376,49.92203118752499,49.9280287884846,49.93402638944422,49.94002399040384,49.946021591363454,49.95201919232307,49.95801679328269,49.964014394242305,49.97001199520192,49.97600959616153,49.98200719712115,49.988004798080766,49.99400239904038,50.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/medium_positive.json b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/medium_positive.json new file mode 100644 index 000000000000..29be04c97aec --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/medium_positive.json @@ -0,0 +1 @@ +{"expected":[0.33905895852593637,0.3377900019481855,0.33651901328747796,0.3352460052888864,0.3339709907129716,0.3326939823356517,0.3314149929480744,0.3301340353564855,0.3288511223821004,0.32756626686097284,0.3262794816438663,0.32499077959612244,0.32370017359753184,0.32240767654220237,0.32111330133842997,0.3198170609085666,0.3185189681888906,0.31721903612947483,0.31591727769405575,0.31461370585990334,0.31330833361768773,0.3120011739713499,0.31069223993796874,0.30938154454763034,0.3080691008432956,0.30675492188066855,0.3054390207280647,0.30412141046627894,0.3028021041884528,0.30148111499994323,0.3001584560181887,0.29883414037257877,0.29750818120432015,0.29618059166630384,0.29485138492297364,0.293520574150192,0.2921881725351085,0.2908541932760248,0.2895186495822642,0.2881815546740359,0.2868429217823035,0.28550276414865033,0.2841610950251474,0.2828179276742186,0.28147327536850775,0.280127151390745,0.27877956903361234,0.2774305415996105,0.27608008240092474,0.2747282047592911,0.2733749220058617,0.2720202474810715,0.270664194534503,0.2693067765247533,0.2679480068192983,0.26658789879435973,0.26522646583476933,0.26386372133383545,0.26249967869320756,0.2611343513227422,0.25976775264036844,0.2583998960719516,0.2570307950511609,0.25566046301933204,0.2542889134253343,0.25291615972543396,0.25154221538316074,0.2501670938691712,0.2487908086611151,0.24741337324349863,0.24603480110755108,0.24465510575108734,0.24327430067837474,0.2418923993999961,0.2405094154327153,0.23912536229934162,0.2377402535285934,0.2363541026549645,0.2349669232185863,0.23357872876509428,0.23218953284549118,0.2307993490160119,0.22940819083798725,0.2280160718777094,0.2266230057062946,0.22522900589954908,0.22383408603783192,0.22243825970592038,0.221041540492873,0.21964394199189505,0.2182454778002016,0.21684616151888197,0.21544600675276473,0.21404502711027995,0.21264323620332554,0.21124064764712958,0.20983727506011562,0.20843313206376576,0.20702823228248574,0.20562258934346783,0.20421621687655644,0.2028091285141104,0.20140133789086903,0.19999285864381408,0.19858370441203566,0.19717388883659548,0.19576342556039036,0.1943523282280179,0.1929406104856387,0.19152828598084223,0.1901153683625097,0.18870187128067886,0.1872878083864075,0.1858731933316387,0.18445803976906372,0.18304236135198731,0.18162617173419107,0.1802094845697984,0.17879231351313804,0.1773746722186091,0.17595657434054496,0.1745380335330772,0.17311906345000114,0.1716996777446387,0.17027989006970437,0.16885971407716824,0.1674391634181218,0.16601825174264123,0.16459699269965317,0.16317539993679786,0.16175348710029558,0.16033126783480942,0.1589087557833116,0.15748596458694739,0.15606290788489968,0.15463959931425483,0.15321605250986636,0.15179228110422102,0.15036829872730273,0.14894411900645868,0.1475197555662632,0.14609522202838437,0.14467053201144767,0.1432456991309029,0.1418207369988875,0.1403956592240944,0.13897047941163465,0.13754521116290552,0.1361198680754546,0.13469446374284536,0.1332690117545237,0.131843525695683,0.13041801914713053,0.12899250568515241,0.12756699888138098,0.1261415123026594,0.12471605951090893,0.12329065406299416,0.12186530951059048,0.12044003940004884,0.11901485727226388,0.117589776662539,0.11616481110045387,0.1147399741097312,0.1133152792081022,0.1118907399071753,0.1104663697123016,0.10904218212244292,0.10761819063003783,0.10619440872087016,0.10477084987393516,0.10334752756130776,0.10192445524800929,0.10050164639187605,0.09907911444342567,0.09765687284572654,0.09623493503426402,0.09481331443680983,0.09339202447328958,0.09197107855565041,0.09055049008773072,0.08913027246512678,0.08771043907506322,0.08629100329625981,0.08487197849880186,0.08345337804400763,0.08203521528429863,0.08061750356306757,0.07920025621454863,0.07778348656368565,0.076367207926003,0.0749514336074735,0.07353617690438968,0.07212145110323283,0.07070726948054258,0.06929364530278811,0.06788059182623696,0.06646812229682682,0.06505624995003466,0.06364498801074853,0.06223434969313708,0.06082434820052168,0.05941499672524616,0.058006308448549225,0.056598296540434405,0.05519097415954278,0.053784354453023805,0.052378450556406636,0.05097327559347322,0.04956884267612874,0.048165164904275366,0.04676225536568295,0.04536012713586292,0.043958793277939515,0.04255826684252386,0.041158560867585486,0.03975968837832673,0.03836166238705468,0.03696449589305561,0.035568201882467496,0.03417279332815468,0.03277828318958107,0.03138468441268394,0.029992009929749014,0.028600272659283506,0.027209485505892046,0.025819661360149803,0.024430813098478905,0.023042953583021816,0.021656095661518084,0.020270252167178045,0.018885435918560053,0.01750165971944445,0.016118936358711013,0.014737278610213485,0.013356699232657136,0.011977210969474432,0.010598826548701309,0.009221558682854967,0.007845420068809512,0.0064704233876744285,0.005096581304670528,0.0037239064690087983,0.0023524115137666967,0.00098210905576744,-0.0003869883045433162,-0.0017548679832179396,-0.0031215174129295953,-0.004486924043092365,-0.0058510753399837225,-0.0072139587868643275,-0.008575561884099232,-0.0099358721492791,-0.011294877117339296,-0.012652564340681422,-0.014008921389291903,-0.015363935850863208,-0.016717595330911935,-0.018069887452899593,-0.019420799858350345,-0.02077032020697135,-0.022118436176770062,-0.023465135464174197,-0.024810405784148545,-0.02615423487031461,-0.027496610475067074,-0.028837520369692123,-0.03017695234448536,-0.03151489420886782,-0.032851333791504345,-0.034186258940419004,-0.03551965752311303,-0.03685151742667977,-0.03818182655792224,-0.03951057284346754,-0.040837744229883954,-0.042163328683795,-0.04348731419199607,-0.04480968876156807,-0.04613044041999284,-0.04744955721526808,-0.048767027216020456,-0.05008283851162109,-0.05139697921229785,-0.052709437449250496,-0.05402020137476245,-0.05532925916231543,-0.05663659900670084,-0.05794220912413381,-0.059246077752364165,-0.06054819315078996,-0.06184854360056803,-0.0631471174047269,-0.06444390288827707,-0.06573888839832272,-0.06703206230417294,-0.06832341299745143,-0.06961292889220791,-0.07090059842502801,-0.07218641005514191,-0.07347035226453616,-0.0747524135580615,-0.07603258246354287,-0.07731084753188677,-0.07858719733719201,-0.07986162047685667,-0.0811341055716868,-0.08240464126600308,-0.0836732162277502,-0.08493981914860331,-0.08620443874407391,-0.08746706375361882,-0.08872768294074519,-0.08998628509311739,-0.09124285902266188,-0.09249739356567456,-0.09374987758292512,-0.09500029995976277,-0.09624864960621976,-0.09749491545711814,-0.09873908647217247,-0.0999811516360948,-0.10122109995869705,-0.10245892047499638,-0.10369460224531758,-0.10492813435539494,-0.10615950591647681,-0.10738870606542682,-0.10861572396482645,-0.10984054880307571,-0.11106316979449644,-0.11228357617943231,-0.11350175722435052,-0.11471770222194093,-0.11593140049121858,-0.11714284137762242,-0.11835201425311562,-0.1195589085162839,-0.12076351359243659,-0.12196581893370471,-0.12316581401913837,-0.12436348835480719,-0.12555883147389701,-0.12675183293680814,-0.12794248233125166,-0.12913076927234834,-0.1303166834027241,-0.13150021439260742,-0.13268135193992397,-0.13386008577039468,-0.13503640563762984,-0.1362103013232253,-0.13738176263685595,-0.13855077941637228,-0.13971734152789408,-0.1408814388659033,-0.14204306135333972,-0.14320219894169323,-0.14435884161109752,-0.1455129793704217,-0.1466646022573645,-0.14781370033854543,-0.1489602637095972,-0.15010428249525581,-0.15124574684945405,-0.15238464695541082,-0.15352097302572243,-0.15465471530245192,-0.15578586405722036,-0.1569144095912959,-0.15804034223568222,-0.15916365235120902,-0.16028433032861975,-0.16140236658866042,-0.16251775158216633,-0.16363047579015186,-0.16474052972389613,-0.16584790392503118,-0.16695258896562698,-0.16805457544827984,-0.1691538540061972,-0.1702504153032839,-0.17134425003422635,-0.17243534892457946,-0.1735237027308501,-0.17460930224058116,-0.17569213827243663,-0.17677220167628466,-0.17784948333328138,-0.1789239741559524,-0.17999566508827783,-0.1810645471057728,-0.18213061121557045,-0.18319384845650233,-0.18425424989918138,-0.18531180664608196,-0.1863665098316198,-0.1874183506222337,-0.18846732021646473,-0.189513409845036,-0.19055661077093064,-0.19159691428947298,-0.1926343117284055,-0.1936687944479675,-0.19470035384097187,-0.19572898133288474,-0.19675466838190075,-0.19777740647902087,-0.19879718714812755,-0.1998140019460623,-0.20082784246270105,-0.20183870032102788,-0.20284656717721272,-0.20385143472068384,-0.20485329467420343,-0.20585213879394001,-0.20684795886954394,-0.20784074672421934,-0.20883049421479735,-0.20981719323180797,-0.21080083569955352,-0.2117814135761791,-0.21275891885374493,-0.21373334355829615,-0.21470467974993515,-0.21567291952289086,-0.21663805500558825,-0.21760007836071898,-0.21855898178531022,-0.21951475751079344,-0.22046739780307198,-0.22141689496259093,-0.22236324132440344,-0.22330642925823904,-0.22424645116856926,-0.22518329949467583,-0.22611696671071604,-0.22704744532578908,-0.2279747278840003,-0.22889880696452825,-0.22981967518168825,-0.23073732518499634,-0.23165174965923457,-0.23256294132451374,-0.23347089293633705,-0.23437559728566193,-0.23527704719896425,-0.23617523553829922,-0.23707015520136368,-0.23796179912155632,-0.23885016026804046,-0.23973523164580338,-0.24061700629571692,-0.24149547729459672,-0.24237063775526269,-0.2432424808265976,-0.24411099969360492,-0.24497618757746883,-0.24583803773561055,-0.24669654346174671,-0.24755169808594574,-0.2484034949746859,-0.24925192753091013,-0.25009698919408346,-0.2509386734402469,-0.2517769737820742,-0.252611883768926,-0.2534433969869046,-0.2542715070589066,-0.25509620764467855,-0.25591749244086903,-0.2567353551810815,-0.25754978963592706,-0.2583607896130764,-0.25916834895731194,-0.2599724615505777,-0.2607731213120317,-0.2615703221980962,-0.2623640582025071,-0.2631543233563636,-0.26394111172817886,-0.2647244174239272,-0.2655042345870941,-0.26628055739872275,-0.2670533800774632,-0.2678226968796192,-0.26858850209919427,-0.26935079006793977,-0.27010955515539997,-0.2708647917689581,-0.2716164943538809,-0.2723646573933653,-0.27310927540858115,-0.27385034295871696,-0.27458785464102115,-0.2753218050908485,-0.2760521889817008,-0.27677900102527037,-0.2775022359714815,-0.27822188860853286,-0.2789379537629387,-0.2796504262995688,-0.2803593011216904,-0.28106457317100736,-0.2817662374277002,-0.2824642889104649,-0.2831587226765523,-0.2838495338218068,-0.28453671748070375,-0.28522026882638707,-0.28590018307070714,-0.28657645546425736,-0.2872490812964107,-0.28791805589535496,-0.2885833746281293,-0.2892450329006597,-0.2899030261577921,-0.29055734988332893,-0.2912079996000614,-0.2918549708698043,-0.29249825929342793,-0.2931378605108919,-0.29377377020127726,-0.29440598408281793,-0.2950344979129326,-0.2956593074882561,-0.2962804086446693,-0.2968977972573305,-0.297511469240704,-0.2981214205485909,-0.2987276471741573,-0.29933014514996287,-0.29992891054798954,-0.30052393947966927,-0.30111522809591146,-0.3017027725871291,-0.3022865691832666,-0.3028666141538252,-0.3034429038078893,-0.30401543449415036,-0.3045842026009338,-0.3051492045562222,-0.30571043682767995,-0.30626789592267595,-0.30682157838830854,-0.30737148081142696,-0.30791759981865424,-0.3084599320764092,-0.30899847429092825,-0.30953322320828625,-0.3100641756144171,-0.31059132833513486,-0.311114678236153,-0.31163422222310416,-0.3121499572415589,-0.312661880277045,-0.31316998835506576,-0.31367427854111657,-0.3141747479407039,-0.31467139369936176,-0.3151642130026681,-0.3156532030762609,-0.31613836118585426,-0.3166196846372539,-0.3170971707763715,-0.31757081698923967,-0.3180406207020259,-0.3185065793810462,-0.3189686905327786,-0.3194269517038755,-0.31988136048117655,-0.3203319144917205,-0.3207786114027566,-0.32122144892175625,-0.32166042479642326,-0.32209553681470443,-0.32252678280479924,-0.3229541606351697,-0.32337766821454933,-0.3237973034919516,-0.3242130644566781,-0.3246249491383269,-0.3250329556067995,-0.3254370819723082,-0.3258373263853817,-0.3262336870368727,-0.3266261621579628,-0.32701475002016744,-0.32739944893534184,-0.3277802572556846,-0.3281571733737424,-0.32853019572241277,-0.32889932277494843,-0.32926455304495933,-0.32962588508641516,-0.3299833174936476,-0.33033684890135157,-0.33068647798458656,-0.33103220345877743,-0.33137402407971417,-0.3317119386435527,-0.3320459459868135,-0.33237604498638074,-0.33270223455950193,-0.3330245136637848,-0.3333428812971958,-0.33365733649805746,-0.33396787834504504,-0.33427450595718367,-0.33457721849384364,-0.33487601515473703,-0.3351708951799124,-0.3354618578497497,-0.3357489024849554,-0.33603202844655555,-0.33631123513589,-0.3365865219946059,-0.33685788850464954,-0.3371253341882599,-0.3373888586079599,-0.3376484613665482,-0.3379041421070899,-0.3381559005129085,-0.33840373630757453,-0.3386476492548968,-0.33888763915891146,-0.3391237058638708,-0.33935584925423207,-0.33958406925464635,-0.3398083658299452,-0.34002873898512936,-0.34024518876535464,-0.3404577152559192,-0.3406663185822497,-0.34087099890988676,-0.34107175644447074,-0.3412685914317262,-0.34146150415744697,-0.34165049494747995,-0.34183556416770866,-0.342016712224037,-0.3421939395623722,-0.3423672466686066,-0.34253663406860035,-0.34270210232816317,-0.342863652053035,-0.34302128388886755,-0.343174998521204,-0.3433247966754596,-0.34347067911690177,-0.3436126466506278,-0.34375070012154496,-0.3438848404143484,-0.3440150684534995,-0.344141385203203,-0.3442637916673843,-0.34438228888966677,-0.34449687795334716,-0.34460755998137266,-0.34471433613631536,-0.3448172076203485,-0.3449161756752203,-0.34501124158222884,-0.34510240666219605,-0.3451896722754406,-0.3452730398217523,-0.345352510740363,-0.34542808650992124,-0.3454997686484619,-0.34556755871337913,-0.34563145830139713,-0.3456914690485412,-0.3457475926301073,-0.3457998307606326,-0.34584818519386495,-0.34589265772273164,-0.3459332501793086,-0.3459699644347888,-0.3460028023994495,-0.3460317660226205,-0.34605685729265095,-0.3460780782368761,-0.346095430921584,-0.34610891745198086,-0.3461185399721572,-0.3461243006650525,-0.34612620175242054,-0.3461242454947931,-0.3461184341914448,-0.3461087701803558,-0.34609525583817546,-0.3460778935801853,-0.34605668586026145,-0.3460316351708356,-0.3460027440428583,-0.345970015045759,-0.34593345078740767,-0.34589305391407427,-0.34584882711039017,-0.34580077309930657,-0.34574889464205466,-0.34569319453810415,-0.34563367562512176,-0.3455703407789298,-0.3455031929134632,-0.3454322349807277,-0.34535746997075634,-0.3452789009115658,-0.34519653086911334,-0.34511036294725234,-0.3450204002876873,-0.3449266460699299,-0.3448291035112524,-0.3447277758666431,-0.34462266642875977,-0.3445137785278833,-0.3444011155318704,-0.34428468084610736,-0.3441644779134616,-0.3440405102142343,-0.3439127812661114,-0.34378129462411555,-0.3436460538805568,-0.34350706266498293,-0.34336432464412975,-0.3432178435218709,-0.34306762303916755,-0.34291366697401676,-0.34275597914140077,-0.342594563393235,-0.34242942361831613,-0.3422605637422695,-0.34208798772749616,-0.3419116995731205,-0.34173170331493546,-0.34154800302534954,-0.3413606028133324,-0.34116950682435965,-0.34097471924035855,-0.3407762442796522,-0.3405740861969036,-0.3403682492830606,-0.34015873786529766,-0.3399455563069609,-0.33972870900750957,-0.3395082004024588,-0.33928403496332266,-0.33905621719755374,-0.33882475164848697,-0.33858964289527904,-0.3383508955528495,-0.33810851427182087,-0.3378625037384592,-0.3376128686746128,-0.3373596138376518,-0.33710274402040746,-0.33684226405111023,-0.33657817879332763,-0.3363104931459028,-0.33603921204289144,-0.3357643404534991,-0.33548588338201796,-0.33520384586776286,-0.3349182329850084,-0.33462904984292313,-0.33433630158550665,-0.3340399933915227,-0.3337401304744356,-0.33343671808234376,-0.3331297614979136,-0.3328192660383135,-0.3325052370551467,-0.33218767993438497,-0.3318666000963002,-0.331542002995398,-0.33121389412034863,-0.3308822789939185,-0.3305471631729024,-0.3302085522480537,-0.3298664518440149,-0.32952086761924865,-0.32917180526596634,-0.3288192705100593,-0.32846326911102697,-0.32810380686190593,-0.3277408895891987,-0.3273745231528023,-0.32700471344593585,-0.32663146639506774,-0.32625478795984386,-0.325874684133014,-0.32549116094035846,-0.3251042244406146,-0.3247138807254023,-0.32432013591915065,-0.3239229961790221,-0.323522467694838,-0.3231185566890037,-0.32271126941643213,-0.32230061216446837,-0.32188659125281316,-0.3214692130334465,-0.321048483890551,-0.32062441024043353,-0.320196998531449,-0.319766255243922,-0.31933218689006854,-0.3188948000139174,-0.3184541011912322,-0.31801009702943117,-0.3175627941675088,-0.317112199275955,-0.3166583190566763,-0.3162011602429148,-0.31574072959916744,-0.3152770339211054,-0.3148100800354931,-0.314339874800106,-0.3138664251036489,-0.3133897378656743,-0.31290982003649964,-0.3124266785971243,-0.3119403205591468,-0.3114507529646816,-0.31095798288627535,-0.31046201742682283,-0.3099628637194824,-0.3094605289275926,-0.3089550202445862,-0.30844634489390554,-0.30793451012891687,-0.3074195232328256,-0.3069013915185888,-0.3063801223288301,-0.3058557230357527,-0.3053282010410526,-0.3047975637758319,-0.3042638187005099,-0.30372697330473775,-0.30318703510730843,-0.30264401165606936,-0.30209791052783386,-0.3015487393282924,-0.30099650569192316,-0.30044121728190276,-0.2998828817900168,-0.29932150693657017,-0.298757100470296,-0.29818967016826614,-0.29761922383579936,-0.29704576930637194,-0.2964693144415248,-0.29588986713077237,-0.2953074352915116,-0.2947220268689288,-0.2941336498359079,-0.2935423121929372,-0.2929480219680179,-0.2923507872165692,-0.2917506160213358,-0.2911475164922944,-0.2905414967665593,-0.2899325650082886,-0.2893207294085891,-0.28870599818542286,-0.2880883795835107,-0.2874678818742379,-0.2868445133555588,-0.2862182823519008,-0.2855891972140683,-0.2849572663191466,-0.28432249807040555,-0.2836849008972029,-0.2830444832548869,-0.2824012536246996,-0.2817552205136785,-0.2811063924545607,-0.28045477800568275,-0.2798003857508838,-0.27914322429940697,-0.2784833022858004,-0.2778206283698187,-0.27715521123632325,-0.2764870595951838,-0.27581618218117787,-0.2751425877538914,-0.2744662850976182,-0.2737872830212608,-0.27310559035822835,-0.2724212159663371,-0.27173416872770845,-0.271044457548669,-0.2703520913596474,-0.2696570791150737,-0.2689594297932781,-0.2682591523963872,-0.26755625595022275,-0.26685074950419857,-0.26614264213121863,-0.26543194292757283,-0.2647186610128348,-0.26400280552975747,-0.2632843856441706,-0.26256341054487586,-0.2618398894435434,-0.26111383157460716,-0.2603852461951608,-0.25965414258485237,-0.2589205300457799,-0.25818441790238655,-0.2574458155013541,-0.2567047322114988,-0.25596117742366425,-0.2552151605506172,-0.2544666910269395,-0.25371577830892317,-0.2529624318744628,-0.2522066612229503,-0.25144847587516606,-0.2506878853731733,-0.2499248992802097,-0.24915952718058118,-0.2483917786795527,-0.24762166340324124,-0.24684919099850774,-0.24607437113284833,-0.2452972134942863,-0.24451772779126282,-0.24373592375252953,-0.2429518111270375,-0.2421653996838297,-0.24137669921193042,-0.24058571952023708,-0.2397924704374092,-0.2389969618117586,-0.23819920351114016,-0.23739920542284104,-0.23659697745347,-0.2357925295288468,-0.23498587159389225,-0.23417701361251608,-0.23336596556750652,-0.2325527374604186,-0.23173733931146343,-0.2309197811593955,-0.2301000730614017,-0.2292782250929887,-0.228454247347872,-0.22762814993786207,-0.2267999429927531,-0.22596963666020972,-0.22513724110565492,-0.2243027665121566,-0.2234662230803141,-0.22262762102814646,-0.22178697059097752,-0.22094428202132302,-0.22009956558877672,-0.21925283157989747,-0.21840409029809385,-0.2175533520635108,-0.21670062721291541,-0.21584592609958275,-0.21498925909318037,-0.21413063657965456,-0.21327006896111497,-0.21240756665572025,-0.2115431400975623,-0.21067679973655093,-0.20980855603829968,-0.20893841948400899,-0.20806640057035083,-0.20719250980935353,-0.20631675772828562,-0.20543915486953937,-0.20455971179051524,-0.2036784390635048,-0.20279534727557563,-0.20191044702845365,-0.20102374893840672,-0.20013526363612774,-0.199245001766619,-0.1983529739890732,-0.1974591909767574,-0.19656366341689643,-0.19566640201055405,-0.19476741747251636,-0.19386672053117404,-0.19296432192840524,-0.19206023241945655,-0.19115446277282605,-0.19024702377014474,-0.18933792620605952,-0.18842718088811325,-0.18751479863662762,-0.1866007902845843,-0.18568516667750695,-0.1847679386733417,-0.18384911714233873,-0.1829287129669344,-0.18200673704163073,-0.1810832002728773,-0.18015811357895198,-0.17923148788984247,-0.17830333414712538,-0.17737366330384813,-0.17644248632440893,-0.17550981418443806,-0.17457565787067694,-0.1736400283808591,-0.17270293672359038,-0.17176439391822945,-0.17082441099476683,-0.16988299899370532,-0.16894016896594066,-0.16799593197263996,-0.1670502990851223,-0.16610328138473787,-0.16515488996274866,-0.16420513592020636,-0.1632540303678329,-0.16230158442589926,-0.1613478092241056,-0.16039271590145948,-0.1594363156061552,-0.15847861949545414,-0.1575196387355619,-0.15655938450150864,-0.15559786797702732,-0.1546351003544335,-0.15367109283450292,-0.15270585662635094,-0.15173940294731098,-0.15077174302281407,-0.14980288808626593,-0.14883284937892657,-0.1478616381497882,-0.14688926565545482,-0.14591574316001912,-0.14494108193494126,-0.14396529325892848,-0.14298838841781142,-0.14201037870442346,-0.14103127541847868,-0.14005108986645062,-0.13906983336144918,-0.1380875172230995,-0.13710415277741964,-0.13611975135669957,-0.13513432429937763,-0.13414788294991947,-0.13316043865869542,-0.1321720027818595,-0.13118258668122582,-0.13019220172414664,-0.12920085928339203,-0.12820857073702494,-0.12721534746828073,-0.1262212008654442,-0.12522614232172832,-0.12423018323515048,-0.12323333500841106,-0.1222356090487708,-0.12123701676792939,-0.12023756958190145,-0.11923727891089549,-0.11823615617919071,-0.11723421281501598,-0.11623146025042566,-0.115227909921178,-0.11422357326661373,-0.11321846172953182,-0.11221258675606836,-0.11120595979557345,-0.11019859230049002,-0.10919049572622967,-0.10818168153105144,-0.10717216117593904,-0.1061619461244791,-0.1051510478427376,-0.10413947779913835,-0.10312724746434017,-0.1021143683111157,-0.10110085181422711,-0.10008670945030501,-0.09907195269772673,-0.09805659303649238,-0.09704064194810362,-0.09602411091544105,-0.09500701142264295,-0.09398935495498134,-0.09297115299874104,-0.09195241704109677,-0.09093315856999222,-0.0899133890740163,-0.08889312004228203,-0.08787236296430405,-0.08685112932987754,-0.08582943062895475,-0.08480727835152373,-0.08378468398748716,-0.08276165902653898,-0.08173821495804348,-0.080714363270913,-0.07969011545348713,-0.07866548299340942,-0.07764047737750686,-0.07661511009166741,-0.07558939262071963,-0.07456333644830952,-0.07353695305677997,-0.07251025392704882,-0.07148325053848847,-0.07045595436880284,-0.06942837689390699,-0.06840052958780647,-0.06737242392247471,-0.06634407136773265,-0.06531548339112743,-0.06428667145781207,-0.06325764703042319,-0.062228421568960926,-0.0611990065306676,-0.060169413369908054,-0.0591396535380472,-0.05810973848333054,-0.05707967965076286,-0.056049488481988964,-0.05501917641517151,-0.053988754884871294,-0.052958235321928,-0.05192762915333806,-0.050896947802135786,-0.04986620268727258,-0.04883540522349811,-0.047804566821238605,-0.04677369888647821,-0.0457428128206386,-0.04471192002046037,-0.0436810318778818,-0.042650159779920385,-0.041619315108552934,-0.040588509240597155,-0.03955775354759091,-0.03852705939567378,-0.03749643814546872,-0.03646590115196156,-0.035435459764383156,-0.034405125326090004,-0.03337490917444663,-0.03234482264070536,-0.03131487704988886,-0.0302850837206713,-0.02925545396526089,-0.0282259990892803,-0.027196730391649427,-0.026167659164467016,-0.02513879669289373,-0.02411015425503279,-0.023081743121813075,-0.022053574556872412,-0.021025659816438454,-0.01999801014921237,-0.018970636796251168,-0.017943550990851622,-0.016916763958431575,-0.01589028691641421,-0.014864131074110706,-0.013838307632604692,-0.012812827784634072,-0.01178770271447569,-0.010762943597828542,-0.009738561601698687,-0.008714567884281519,-0.007690973594846814,-0.006667789873623589,-0.005645027851682976,-0.00462269865082366,-0.0036008133834560694,-0.0025793831524881005,-0.001558419051208417,-0.0005379321631725102,0.000482066437912607,0.0015015656883021655,0.0025205545343297323,0.003539021932520857,0.004556956849706618,0.005574348263139307,0.006591185160605422,0.007607456540540041,0.0086231514121395,0.009638258795476523,0.01065276772161261,0.011666667232711848,0.012679946382152965,0.013692594234643887,0.014704599866333509,0.015715952364924884,0.01672664082978669,0.017736654372067152,0.01874598211480546,0.019754613193043006,0.020762536753936862,0.021769741956870432,0.022776217973565528,0.02378195398819273,0.024786939197484186,0.0257911628108436,0.026794614050457712,0.027797282151405887,0.028799156361772354,0.029800225942755457,0.03080048016877846,0.03179990832759851,0.0327984997204181,0.03379624366199395,0.03479312948074581,0.0357891465188673,0.036784284132434064,0.03777853169151333,0.03877187858027156,0.039764314197084774,0.04075582795464582,0.04174640928007329,0.04273604761501846,0.04372473241577477,0.044712453153384464,0.04569919931374671,0.04668496039772379,0.04766972592124982,0.048653485415436924,0.04963622842668127,0.05061794451677106,0.051598623262992006,0.05257825425823382,0.0535568271110954,0.0545343314459919,0.0555107569032595,0.056486093139261145,0.05746032982649073,0.058433456653679654,0.05940546332590051,0.060376339564672164,0.06134607510806319,0.06231465971079737,0.06328208314435707,0.06424833519708605,0.0652134056742947,0.06617728439836211,0.06713996120883987,0.06810142596255388,0.06906166853370854,0.07002067881398821,0.07097844671265999,0.07193496215667469,0.07289021509077018,0.073844195477572,0.07479689329769519,0.07574829854984456,0.07669840125091683,0.07764719143610098,0.07859465915897772,0.07954079449162126,0.08048558752469848,0.08142902836756913,0.0823711071483844,0.08331181401418784,0.08425113913101338,0.08518907268398478,0.08612560487741337,0.08706072593489776,0.08799442609942115,0.08892669563344985,0.08985752481902981,0.09078690395788579,0.0917148233715177,0.09264127340129698,0.09356624440856473,0.09448972677472726,0.09541171090135304,0.09633218721026747,0.09725114614365028,0.09816857816413015,0.09908447375488041,0.09999882341971317,0.10091161768317555,0.1018228470906432,0.10273250220841525,0.10364057362380731,0.10454705194524667,0.10545192780236518,0.10635519184609185,0.10725683474874735,0.10815684720413567,0.10905521992763731,0.10995194365630061,0.11084700914893503,0.11174040718620212,0.11263212857070734,0.11352216412709049,0.11441050470211801,0.11529714116477277,0.116182064406345,0.11706526534052153,0.11794673490347708,0.11882646405396323,0.1197044437733972,0.12058066506595203,0.12145511895864507,0.1223277965014264,0.1231986887672666,0.12406778685224605,0.12493508187564167,0.1258005649800152,0.12666422733129906,0.12752606011888498,0.1283860545557096,0.12924420187834118,0.13010049334706525,0.13095492024597133,0.13180747388303798,0.1326581455902175,0.1335069267235219,0.13435380866310723,0.135198782813358,0.13604184060297078,0.136882973485039,0.1377221729371359,0.1385594304613983,0.1393947375846085,0.1402280858582784,0.14105946685873139,0.14188887218718355,0.14271629346982703,0.14354172235791063,0.1443651505278215,0.14518656968116522,0.1460059715448479,0.14682334787115534,0.14763869043783404,0.1484519910481697,0.14926324153106812,0.15007243374113372,0.15087955955874857,0.15168461089015034,0.15248757966751172,0.15328845784901793,0.15408723741894362,0.15488391038773167,0.1556784687920692,0.15647090469496522,0.15726121018582562,0.1580493773805313,0.15883539842151265,0.1596192654778257,0.16040097074522686,0.16118050644624843,0.1619578648302732,0.1627330381736085,0.16350601877955986,0.16427679897850567,0.1650453711279701,0.1658117276126956,0.16657586084471673,0.16733776326343205,0.16809742733567623,0.1688548455557917,0.16961001044570073,0.17036291455497626,0.17111355046091295,0.1718619107685971,0.17260798811097797,0.17335177514893688,0.17409326457135732,0.17483244909519327,0.17556932146553966,0.1763038744557,0.1770361008672544,0.17776599353012865,0.17849354530266112,0.17921874907167032,0.17994159775252158,0.1806620842891943,0.1813802016543481,0.1820959428493888,0.18280930090453384,0.18352026887887826,0.18422883986045935,0.1849350069663217,0.1856387633425809,0.18634010216448826,0.18703901663649486,0.18773549999231337,0.18842954549498325,0.1891211464369318,0.18981029614003755,0.19049698795569142,0.19118121526485946,0.19186297147814366,0.19254225003584327,0.19321904440801463,0.1938933480945331,0.19456515462515198,0.1952344575595627,0.19590125048745352,0.19656552702856955,0.19722728083277097,0.19788650558009083,0.19854319498079406,0.19919734277543455,0.19984894273491266,0.20049798866053167,0.20114447438405542,0.20178839376776375,0.20242974070450898,0.2030685091177708,0.20370469296171234,0.20433828622123504,0.2049692829120325,0.20559767708064494,0.2062234628045139,0.20684663419203467,0.20746718538260994,0.20808511054670262,0.20870040388588862,0.20931305963290844,0.2099230720517187,0.21053043543754477,0.2111351441169307,0.21173719244779066,0.21233657481945845,0.21293328565273856,0.2135273193999551,0.21411867054500164,0.2147073336033895,0.21529330312229686,0.2158765736806173,0.2164571398890065,0.2170349963899311,0.21761013785771527,0.21818255899858774,0.21875225455072755,0.21931921928431128,0.2198834480015582,0.22044493553677577,0.22100367675640417,0.2215596665590618,0.22211289987558955,0.22266337166909395,0.2232110769349912,0.2237560107010509,0.22429816802743835,0.22483754400675687,0.22537413376409074,0.22590793245704638,0.2264389352757942,0.22696713744310865,0.2274925342144104,0.22801512087780573,0.22853489275412694,0.2290518451969712,0.22956597359274092,0.2300772733606819,0.23058573995292195,0.23109136885450904,0.23159415558344934,0.23209409569074438,0.23259118476042795,0.23308541840960328,0.2335767922884792,0.23406530208040568,0.23455094350190966,0.23503371230273074,0.23551360426585516,0.23599061520755085,0.23646474097740167,0.23693597745834075,0.23740432056668376,0.23786976625216266,0.23833231049795758,0.2387919493207289,0.23924867877065037,0.23970249493143944,0.24015339392038873,0.2406013718883971,0.24104642501999993,0.2414885495333986,0.2419277416804915,0.24236399774690132,0.242797314052006,0.2432276869489661,0.2436551128247532,0.24407958810017785,0.24450110922991686,0.24491967270254078,0.24533527504053926,0.24574791280034922,0.2461575825723795,0.24656428098103697,0.2469680046847513,0.24736875037600026,0.24776651478133369,0.24816129466139808,0.24855308681095944,0.24894188805892753,0.24932769526837834,0.24971050533657665,0.2500903151949983,0.250467121809352,0.2508409221796008,0.25121171333998255,0.2515794923590318,0.25194425633959916,0.25230600241887136,0.25266472776839105,0.25302042959407584,0.2533731051362371,0.2537227516695986,0.2540693665033138,0.2544129469809843,0.2547534904806772,0.2550909944149415,0.25542545623082463,0.25575687340988923,0.25608524346822825,0.2564105639564804,0.25673283245984574,0.2570520465980999,0.25736820402560834,0.25768130243134046,0.2579913395388829,0.2582983131064526,0.2586022209269102,0.2589030608277712,0.2592008306712192,0.25949552835411677,0.2597871518080173,0.2600756989991751,0.2603611679285563,0.26064355663184946,0.26092286317947394,0.26119908567659056,0.2614722222631104,0.26174227111370246,0.2620092304378032,0.26227309847962316,0.2625338735181551,0.2627915538671813,0.2630461378752791,0.26329762392582884,0.2635460104370186,0.26379129586185035,0.2640334786881446,0.2642725574385459,0.2645085306705271,0.2647413969763927,0.2649711549832833,0.265197803353179,0.26542134078290147,0.26564176600411754,0.2658590777833403,0.2660732749219318,0.26628435625610414,0.2664923206569201,0.2666971670302943,0.2668988943169936,0.26709750149263634,0.26729298756769243,0.26748535158748243,0.26767459263217597,0.2678607098167904,0.2680437022911889,0.268223569240078,0.26840030988300473,0.26857392347435377,0.26874440930334365,0.2689117666940231,0.2690759950052669,0.2692370936307707,0.2693950619990467,0.2695498995734183,0.2697016058520133,0.2698501803677593,0.269995622688376,0.27013793241636913,0.2702771091890223,0.2704131526783902,0.27054606259129077,0.27067583866929557,0.2708024806887225,0.27092598846062554,0.2710463618307862,0.2711636006797029,0.2712777049225811,0.27138867450932264,0.2714965094245147,0.27160120968741863,0.27170277535195786,0.27180120650670603,0.2718965032748746,0.2719886658142997,0.27207769431742923,0.27216358901130916,0.2722463501575695,0.2723259780524098,0.2724024730265851,0.27247583544539006,0.27254606570864404,0.2726131642506749,0.27267713154030315,0.27273796808082534,0.272795674409997,0.2728502511000155,0.27290169875750214,0.2729500180234844,0.27299520957337753,0.2730372741169654,0.2730762123983819,0.2731120251960912,0.2731447133228677,0.2731742776257762,0.2732007189861508,0.2732240383195745,0.2732442365758573,0.27326131473901516,0.27327527382724714,0.2732861148929138,0.27329383902251364,0.2732984473366607,0.27329994099006033,0.2732983211714856,0.2732935891037536,0.2732857460436997,0.27327479328215376,0.2732607321439138,0.2732435639877209,0.27322329020623326,0.27319991222599915,0.27317343150743073,0.27314384954477666,0.27311116786609474,0.2730753880332237,0.2730365116417556,0.2729945403210065,0.27294947573398837,0.2729013195773792,0.27285007358149344,0.27279573951025216,0.2727383191611526,0.27267781436523764,0.27261422698706445,0.2725475589246731,0.27247781210955485,0.27240498850662037,0.2723290901141665,0.2722501189638442,0.27216807712062474,0.2720829666827664,0.27199478978178065,0.2719035485823979,0.2718092452825327,0.2717118821132489,0.27161146133872455,0.2715079852562156,0.27140145619602096,0.2712918765214451,0.27117924862876197,0.27106357494717764,0.27094485793879325,0.2708231000985669,0.27069830395427597,0.27057047206647794,0.2704396070284727,0.27030571146626237,0.2701687880385126,0.27002883943651235,0.2698858683841338,0.26973987763779195,0.2695908699864039,0.26943884825134706,0.2692838152864185,0.2691257739777922,0.2689647272439778,0.26880067803577723,0.2686336293362422,0.2684635841606308,0.2682905455563643,0.26811451660298286,0.2679355004121015,0.2677535001273652,0.2675685189244049,0.2673805600107909,0.26718962662598866,0.2669957220413116,0.26679884955987604,0.2665990125165537,0.26639621427792537,0.2661904582422333,0.26598174783933415,0.2657700865306503,0.2655554778091222,0.26533792519915983,0.2651174322565933,0.2648940025686242,0.2646676397537757,0.26443834746184297,0.2642061293738425,0.2639709892019624,0.2637329306895103,0.2634919576108633,0.2632480737714164,0.26300128300752956,0.2627515891864769,0.26249899620639383,0.26224350799622365,0.2619851285156649,0.26172386175511847,0.26145971173563287,0.2611926825088506,0.26092277815695375,0.26065000279261,0.26037436055891605,0.2600958556293435,0.2598144922076831,0.2595302745279881,0.2592432068545189,0.2589532934816855,0.2586605387339917,0.2583649469659768,0.2580665225621585,0.25776526993697557,0.25746119353472874,0.25715429782952315,0.2568445873252089,0.25653206655532224,0.2562167400830268,0.2558986125010525,0.2555776884316373,0.25525397252646503,0.2549274694666064,0.25459818396245737,0.25426612075367766,0.25393128460913045,0.25359368032681884,0.2532533127338253,0.2529101866862484,0.2525643070691401,0.25221567879644335,0.2518643068109282,0.2515101960841284,0.25115335161627794,0.2507937784362459,0.2504314816014728,0.2500664661979057,0.2496987373399326,0.24932830017031782,0.24895515986013558,0.24857932160870538,0.24820079064352382,0.24781957222019982,0.2474356716223869,0.24704909416171622,0.24665984517772951,0.24626793003781125,0.2458733541371202,0.24547612289852255,0.24507624177252146,0.24467371623719014,0.24426855179810134,0.24386075398825902,0.24345032836802788,0.24303728052506396,0.24262161607424468,0.24220334065759772,0.24178245994423045,0.24135897963025907,0.24093290543873738,0.24050424311958504,0.24007299844951555,0.2396391772319644,0.2392027852970172,0.2387638285013356,0.23832231272808577,0.2378782438868643,0.23743162791362504,0.23698247077060583,0.23653077844625334,0.23607655695515029,0.23561981233793974,0.2351605506612506,0.23469877801762282,0.234234500525432,0.2337677243288135,0.2332984555975871,0.23282670052718019,0.23235246533855283,0.231875756278119,0.23139657961767165,0.23091494165430432,0.23043084871033476,0.22994430713322642,0.2294553232955107,0.2289639035947099,0.22847005445325708,0.22797378231841886,0.2274750936622157,0.22697399498134296,0.22647049279709183,0.2259645936552693,0.2254563041261182,0.22494563080423816,0.22443258030850347,0.22391715928198386,0.22339937439186297,0.22287923232935752,0.22235673980963605,0.2218319035717369,0.22130473037848747,0.22077522701642063,0.22024340029569353,0.21970925705000485,0.219172804136512,0.21863404843574794,0.21809299685153827,0.21754965631091747,0.217004033764046,0.21645613618412526,0.2159059705673141,0.2153535439326442,0.214798863321936,0.2142419357997131,0.21368276845311773,0.21312136839182588,0.21255774274796074,0.21199189867600776,0.2114238433527285,0.21085358397707438,0.21028112777010077,0.20970648197487982,0.20912965385641372,0.20855065070154866,0.20796947981888605,0.2073861485386961,0.20680066421282983,0.20621303421463139,0.2056232659388499,0.20503136680155046,0.2044373442400276,0.20384120571271436,0.2032429586990944,0.20264261069961292,0.20204016923558718,0.20143564184911703,0.20082903610299496,0.2002203595806163,0.19960961988589,0.19899682464314639,0.19838198149704828,0.19776509811249934,0.19714618217455376,0.19652524138832472,0.195902283478893,0.1952773161912167,0.1946503472900375,0.19402138455979015,0.19339043580451015,0.1927575088477414,0.1921226115324437,0.19148575172090015,0.190846937294624,0.190206176154267,0.1895634762195242,0.1889188454290418,0.18827229174032348,0.18762382312963638,0.1869734475919173,0.18632117314067856,0.1856670078079144,0.18501095964400513,0.1843530367176237,0.18369324711564042,0.1830315989430279,0.1823681003227663,0.18170275939574768,0.18103558432068023,0.18036658327399419,0.17969576444974347,0.17902313605951187,0.17834870633231567,0.1776724835145079,0.17699447586968176,0.1763146916785733,0.1756331392389666,0.17494982686559407,0.17426476289004134,0.17357795566064912,0.17288941354241605,0.17219914491690094,0.17150715818212522,0.17081346175247453,0.17011806405860216,0.16942097354732866,0.16872219868154495,0.16802174794011335,0.16731962981776918,0.1666158528250218,0.16591042548805532,0.1652033563486308,0.16449465396398508,0.163784326906733,0.16307238376476707,0.16235883314115807,0.16164368365405535,0.16092694393658677,0.16020862263675817,0.15948872841735498,0.15876726995583923,0.158044255944251,0.15731969508910698,0.15659359611130025,0.15586596774599898,0.1551368187425452,0.15440615786435552,0.15367399388881697,0.1529403356071878,0.15220519182449516,0.15146857135943353,0.15073048304426337,0.1499909357247087,0.1492499382598552,0.14850749952204942,0.14776362839679416,0.14701833378264814,0.14627162459112253,0.14552350974657877,0.14477399818612602,0.14402309885951772,0.14327082072905017,0.14251717276945758,0.14176216396781025,0.14100580332341092,0.14024809984769165,0.13948906256411014,0.13872870050804645,0.13796702272669892,0.1372040382789817,0.13643975623541904,0.13567418567804257,0.13490733570028704,0.13413921540688614,0.13336983391376822,0.13259920034795175,0.1318273238474423,0.13105421356112576,0.1302798786486654,0.12950432828039649,0.12872757163722198,0.1279496179105073,0.12717047630197553,0.12639015602360193,0.12560866629751052,0.12482601635586638,0.12404221544077211,0.12325727280416177,0.12247119770769589,0.12168399942265562,0.12089568722983682,0.12010627041944599,0.11931575829099238,0.1185241601531832,0.11773148532381793,0.11693774312968205,0.11614294290644112,0.11534709399853463,0.11455020575906934,0.11375228754971509,0.11295334874059546,0.11215339871018351,0.11135244684519474,0.11055050254048081,0.10974757519892261,0.10894367423132369,0.10813880905630499,0.10733298910019579,0.10652622379692843,0.10571852258793121,0.10490989492202149,0.10410035025529871,0.10328989805103748,0.10247854777958015,0.10166630891823114,0.10085319095114788,0.10003920336923458,0.09922435567003524,0.09840865735762609,0.09759211794250816,0.09677474694149989,0.0959565538776311,0.09513754828003324,0.0943177396838335,0.09349713763004695,0.09267575166546907,0.091853591342568,0.09103066621937712,0.09020698585938701,0.08938255983143922,0.08855739770961646,0.08773150907313618,0.08690490350624264,0.08607759059809905,0.08524957994267995,0.08442088113866257,0.08359150378932106,0.08276145750241592,0.08193075189008797,0.08109939656874984,0.080267401158978,0.07943477528540514,0.07860152857661189,0.07776767066501865,0.07693321118677925,0.07609815978167034,0.07526252609298523,0.07442631976742531,0.07358955045499213,0.0727522278088794,0.07191436148536441,0.07107596114370186,0.07023703644601323,0.06939759705718032,0.06855765264473687,0.06771721287876062,0.06687628743176519,0.06603488597859151,0.0651930181963017,0.06435069376406835,0.0635079223630683,0.06266471367637406,0.061821077388845944,0.060977023187024054,0.06013256075902026,0.05928769979440977,0.05844244998412505,0.057596821020345086,0.05675082259638936,0.055904464406609365,0.05505775614628081,0.05421070751149576,0.053363328199054254,0.052515627906358324,0.051667616331301486,0.050819303172162746,0.04997069812749841,0.04912181089603433,0.0482726511765582,0.04742322866781186,0.046573553068383296,0.045723634076600725,0.044873481390422236,0.044023104707330354,0.04317251372422369,0.042321718137309686,0.04147072764199716,0.04061955193278836,0.039768200703173474,0.03891668364552056,0.03806501045097013,0.03721319080932737,0.03636123440895496,0.03550915093666601,0.03465695007761681,0.03380464151519945,0.03295223493093651,0.03209974000437151,0.031247166412963653,0.030394523831980658,0.02954182193439184,0.02868907039076147,0.02783627886914151,0.02698345703496688,0.026130614550946105,0.025277761076956583,0.02442490626993778,0.023572059783784724,0.022719231269241656,0.02186643037379585,0.02101366674157089,0.020160950013222257,0.019308289825828728,0.018455695812788,0.01760317760371039,0.016750744824312908,0.015898407096313526,0.015046174037324913,0.01419405526075067,0.013342060375677004,0.012490198986769025,0.011638480694164916,0.010786915093370503,0.0099355117751541,0.009084280325441202,0.00823323032520907,0.007382371350383355,0.006531712971730591,0.005681264754755084,0.004831036259593693,0.003981037040911167,0.0031312766477955794,0.0022817646236533316,0.0014325105061065548,0.0005835238268861306,-0.0002651858882707743,-0.0011136091197252573,-0.001961736354040734,-0.0028095580840868752,-0.0036570648091434343,-0.0045042470350044415,-0.0053510952740800566,-0.006197600045502794,-0.007043751875229172,-0.00788954129614349,-0.008734958848161067,-0.00957999507833136,-0.01042464054094143,-0.011268885797617086,-0.012112721417428337,-0.012956137976990323,-0.01379912606056632,-0.014641676260170237,-0.015483779175668955,-0.016325425414884583,-0.017166605593697,-0.018007310336144142,-0.018847530274526514,-0.019687256049507197,-0.020526478310213966,-0.021365187714340813,-0.022203374928249364,-0.023041030627070597,-0.023878145494804253,-0.024714710224422533,-0.025550715517969246,-0.026386152086661008,-0.02722101065098794,-0.02805528194081417,-0.02888895669547827,-0.0297220256638939,-0.030554479604648254,-0.03138630928610466,-0.032217505486500674,-0.03304805899404831,-0.03387796060703355,-0.03470720113391587,-0.035535771393428,-0.03636366221467327,-0.037190864437227335,-0.03801736891123534,-0.038843166497511045,-0.03966824806763544,-0.04049260450405529,-0.04131622670018133,-0.04213910556048692,-0.04296123200060438,-0.04378259694742536,-0.044603191339196886,-0.045423006125619385,-0.04624203226794403,-0.04706026073907004,-0.04787768252364221,-0.04869428861814614,-0.04951007003100762,-0.05032501778268756,-0.05113912290577881,-0.051952376445102595,-0.05276476945780457,-0.053576293013450925,-0.05438693819412452,-0.05519669609451892,-0.05600555782203647,-0.05681351449688186,-0.05762055725215777,-0.058426677233959876,-0.05923186560147168,-0.060036113527059495,-0.06083941219636543,-0.06164175280840415,-0.062443126575655254,-0.06324352472415784,-0.0640429384936041,-0.06484135913743322,-0.06563877792292447,-0.06643518613129122,-0.06723057505777218,-0.06802493601172681,-0.06881826031672646,-0.06961053931064728,-0.0704017643457626,-0.07119192678883512,-0.07198101802120926,-0.0727690294389014,-0.07355595245269392,-0.07434177848822497,-0.07512649898608026,-0.07591010540188392,-0.07669258920638951,-0.07747394188557064,-0.07825415494071183,-0.07903321988849725,-0.07981112826110325,-0.0805878716062865,-0.08136344148747428,-0.08213782948385384,-0.08291102719046183,-0.08368302621827363,-0.08445381819429094,-0.0852233947616326,-0.08599174757962165,-0.086758868323874,-0.08752474868638657,-0.08828938037562503,-0.08905275511661183,-0.08981486465101356,-0.0905757007372272,-0.0913352551504691,-0.09209351968286052,-0.09285048614351471,-0.09360614635862309,-0.09436049217154173,-0.09511351544287752,-0.09586520805057275,-0.09661556188999261,-0.09736456887400931,-0.09811222093308757,-0.0988585100153694,-0.099603428086759,-0.10034696713100714,-0.10108911914979594,-0.1018298761628212,-0.1025692302078787,-0.10330717334094623,-0.10404369763626752,-0.10477879518643499,-0.10551245810247308,-0.10624467851392123,-0.10697544856891485,-0.1077047604342697,-0.10843260629556277,-0.10915897835721396,-0.1098838688425682,-0.11060726999397634,-0.11132917407287654,-0.11204957335987528,-0.1127684601548268,-0.11348582677691553,-0.11420166556473471,-0.11491596887636703,-0.11562872908946399,-0.11633993860132558,-0.11704958982897963,-0.11775767520925956,-0.11846418719888532,-0.11916911827454027,-0.1198724609329499,-0.12057420769095978,-0.12127435108561345,-0.12197288367422991,-0.12266979803448125,-0.12336508676446814,-0.12405874248279895,-0.12475075782866481,-0.12544112546191627,-0.1261298380631393,-0.1268168883337311,-0.12750226899597597,-0.12818597279311947,-0.12886799248944508,-0.129548320870348,-0.13022695074240995,-0.13090387493347322,-0.13157908629271511,-0.13225257769072135,-0.13292434201956002,-0.1335943721928537,-0.1342626611458541,-0.1349292018355139,-0.1355939872405592,-0.1362570103615619,-0.13691826422101164,-0.13757774186338786,-0.1382354363552299,-0.13889134078521007,-0.13954544826420337,-0.14019775192535844,-0.14084824492416786,-0.14149692043853834,-0.14214377166886052,-0.14278879183807885,-0.14343197419175974,-0.14407331199816242,-0.14471279854830638,-0.1453504271560403,-0.14598619115811037,-0.14662008391422793,-0.1472520988071378,-0.14788222924268424,-0.14851046864988005,-0.14913681048097216,-0.14976124821150857,-0.15038377534040462,-0.15100438539000907,-0.1516230719061697,-0.1522398284582994,-0.15285464863943996,-0.1534675260663287,-0.15407845437946227,-0.15468742724316092,-0.15529443834563286,-0.15589948139903786,-0.15650255013955133,-0.15710363832742616,-0.1577027397470572,-0.15829984820704363,-0.15889495754025057,-0.15948806160387194,-0.16007915427949185,-0.1606682294731463,-0.16125528111538476,-0.16184030316132983,-0.1624232895907397,-0.16300423440806744,-0.16358313164252117,-0.16415997534812407,-0.16473475960377368,-0.16530747851330177,-0.16587812620553155,-0.1664466968343385,-0.16701318457870729,-0.1675775836427902,-0.16813988825596504,-0.16870009267289207,-0.1692581911735717,-0.1698141780634015,-0.1703680476732314,-0.17091979435942198,-0.17146941250389894,-0.17201689651420946,-0.17256224082357705,-0.1731054398909573,-0.17364648820109235,-0.1741853802645644,-0.17472211061785164,-0.1752566738233812,-0.17578906446958234,-0.1763192771709405,-0.17684730656804964,-0.1773731473276655,-0.1778967941427568,-0.17841824173255894,-0.17893748484262448,-0.17945451824487507,-0.1799693367376525,-0.18048193514576943,-0.1809923083205601,-0.18150045113993063,-0.18200635850840788,-0.1825100253571908,-0.18301144664419847,-0.1835106173541192,-0.18400753249845975,-0.18450218711559313,-0.18499457627080704,-0.1854846950563507,-0.18597253859148383,-0.1864581020225224,-0.18694138052288614,-0.18742236929314463,-0.18790106356106387,-0.18837745858165159,-0.18885154963720358,-0.18932333203734758,-0.18979280111908975,-0.1902599522468585,-0.19072478081254857,-0.19118728223556544,-0.19164745196286853,-0.19210528546901529,-0.19256077825620288,-0.1930139258543122,-0.19346472382094973,-0.19391316774148945,-0.1943592532291147,-0.19480297592485968,-0.19524433149765033,-0.1956833156443456,-0.19611992408977674,-0.19655415258678896,-0.19698599691628024,-0.19741545288724113,-0.19784251633679376,-0.19826718313023076,-0.19868944916105427,-0.19910931035101279,-0.19952676265014044,-0.19994180203679418,-0.20035442451769053,-0.2007646261279429,-0.201172402931098,-0.20157775101917214,-0.20198066651268728,-0.20238114556070608,-0.20277918434086795,-0.2031747790594236,-0.2035679259512695,-0.20395862127998246,-0.20434686133785346,-0.2047326424459214,-0.20511596095400575,-0.2054968132407408,-0.20587519571360716,-0.20625110480896452,-0.20662453699208375,-0.20699548875717833,-0.20736395662743579,-0.20772993715504873,-0.2080934269212452,-0.20845442253631943,-0.20881292063966184,-0.2091689178997883,-0.20952241101436989,-0.20987339671026178,-0.21022187174353182,-0.21056783289948872,-0.21091127699271053,-0.21125220086707205,-0.21159060139577227,-0.21192647548136118,-0.2122598200557667,-0.21259063208032078,-0.2129189085457859,-0.21324464647237987,-0.21356784290980207,-0.213888494937258,-0.21420659966348432,-0.21452215422677243,-0.21483515579499338,-0.21514560156562126,-0.21545348876575568,-0.21575881465214625,-0.21606157651121427,-0.21636177165907525,-0.21665939744156099,-0.21695445123424115,-0.21724693044244464,-0.2175368325012806,-0.21782415487565898,-0.2181088950603108,-0.21839105057980848,-0.21867061898858484,-0.21894759787095314,-0.21922198484112548,-0.21949377754323163,-0.21976297365133723,-0.22002957086946195,-0.2202935669315968,-0.22055495960172172,-0.22081374667382225,-0.22106992597190622,-0.2213234953500201,-0.2215744526922649,-0.22182279591281115,-0.22206852295591534,-0.22231163179593388,-0.22255212043733777,-0.22278998691472732,-0.22302522929284552,-0.22325784566659188,-0.22348783416103513,-0.223715192931427,-0.223939920163214,-0.22416201407204991,-0.2243814729038074,-0.22459829493458985,-0.22481247847074254,-0.22502402184886292,-0.22523292343581164,-0.22543918162872265,-0.22564279485501293,-0.2258437615723918,-0.22604208026887035,-0.22623774946276992,-0.22643076770273096,-0.22662113356772065,-0.22680884566704093,-0.22699390264033614,-0.22717630315759973,-0.22735604591918115,-0.22753312965579253,-0.22770755312851418,-0.227879315128801,-0.22804841447848714,-0.22821485002979183,-0.22837862066532344,-0.22853972529808447,-0.22869816287147468,-0.22885393235929605,-0.22900703276575504,-0.22915746312546573,-0.2293052225034532,-0.22945030999515548,-0.22959272472642528,-0.22973246585353171,-0.22986953256316225,-0.2300039240724228,-0.2301356396288391,-0.23026467851035626,-0.23039104002533953,-0.2305147235125734,-0.2306357283412611,-0.23075405391102335,-0.2308696996518973,-0.23098266502433443,-0.23109294951919862,-0.23120055265776385,-0.23130547399171122,-0.23140771310312633,-0.23150726960449516,-0.23160414313870095,-0.23169833337901968,-0.23178984002911593,-0.23187866282303773,-0.23196480152521193,-0.23204825593043835,-0.23212902586388431,-0.23220711118107823,-0.23228251176790315,-0.23235522754059026,-0.2324252584457114,-0.23249260446017214,-0.23255726559120296,-0.2326192418763523,-0.23267853338347738,-0.23273514021073516,-0.23278906248657405,-0.23284030036972378,-0.2328888540491855,-0.23293472374422203,-0.23297790970434729,-0.23301841220931516,-0.23305623156910865,-0.23309136812392828,-0.2331238222441802,-0.23315359433046423,-0.23318068481356094,-0.2332050941544194,-0.2332268228441436,-0.2332458714039789,-0.23326224038529864,-0.23327593036958966,-0.23328694196843758,-0.23329527582351267,-0.23330093260655385,-0.233303913019354,-0.23330421779374352,-0.2333018476915745,-0.23329680350470403,-0.23328908605497758,-0.233278696194212,-0.23326563480417756,-0.23324990279658048,-0.23323150111304472,-0.2332104307250938,-0.2331866926341312,-0.23316028787142232,-0.23313121749807417,-0.23309948260501603,-0.2330650843129792,-0.23302802377247658,-0.23298830216378222,-0.2329459206969093,-0.23290088061158995,-0.23285318317725262,-0.23280282969300048,-0.23274982148758874,-0.23269415991940215,-0.23263584637643184,-0.2325748822762518,-0.23251126906599578,-0.23244500822233244,-0.2323761012514416,-0.2323045496889896,-0.23223035510010379,-0.23215351907934786,-0.2320740432506958,-0.231991929267506,-0.2319071788124951,-0.23181979359771135,-0.2317297753645078,-0.23163712588351468,-0.23154184695461227,-0.23144394040690294,-0.23134340809868278,-0.23124025191741318,-0.2311344737796921,-0.23102607563122474,-0.23091505944679416,-0.23080142723023164,-0.23068518101438631,-0.2305663228610949,-0.23044485486115088,-0.2303207791342735,-0.23019409782907654,-0.2300648131230366,-0.2299329272224606,-0.22979844236245434,-0.2296613608068891,-0.22952168484836913,-0.22937941680819837,-0.22923455903634687,-0.22908711391141645,-0.22893708384060749,-0.22878447125968354,-0.22862927863293692,-0.22847150845315356,-0.22831116324157746,-0.22814824554787522,-0.22798275795009953,-0.22781470305465357,-0.22764408349625342,-0.22747090193789188,-0.22729516107080072,-0.2271168636144133,-0.22693601231632674,-0.22675260995226348,-0.226566659326033,-0.22637816326949325,-0.22618712464251087,-0.22599354633292235,-0.22579743125649415,-0.2255987823568826,-0.22539760260559394,-0.225193895001943,-0.22498766257301311,-0.22477890837361453,-0.2245676354862425,-0.2243538470210363,-0.2241375461157364,-0.22391873593564235,-0.22369741967357012,-0.22347360054980883,-0.22324728181207812,-0.2230184667354836,-0.2227871586224734,-0.22255336080279442,-0.2223170766334471,-0.22207830949864116,-0.2218370628097501,-0.2215933400052665,-0.22134714455075566,-0.22109847993881018,-0.2208473496890031,-0.2205937573478422,-0.22033770648872267,-0.22007920071187975,-0.21981824364434238,-0.2195548389398841,-0.21928899027897633,-0.21902070136873925,-0.21874997594289394,-0.21847681776171274,-0.21820123061197105,-0.21792321830689715,-0.2176427846861235,-0.21735993361563544,-0.217074668987722,-0.21678699472092494,-0.216496914759988,-0.21620443307580603,-0.21590955366537312,-0.21561228055173168,-0.2153126177839199,-0.21501056943691965,-0.21470613961160417,-0.21439933243468534,-0.2140901520586605,-0.21377860266175902,-0.21346468844788896,-0.21314841364658355,-0.21282978251294615,-0.21250879932759648,-0.21218546839661584,-0.21185979405149208,-0.21153178064906455,-0.21120143257146823,-0.21086875422607862,-0.2105337500454552,-0.21019642448728487,-0.20985678203432645,-0.20951482719435247,-0.20917056450009344,-0.2088239985091794,-0.2084751338040828,-0.20812397499206078,-0.2077705267050967,-0.20741479359984152,-0.20705678035755576,-0.20669649168405,-0.20633393230962593,-0.20596910698901696,-0.20560202050132848,-0.20523267764997766,-0.20486108326263333,-0.2044872421911556,-0.20411115931153512,-0.20373283952383192,-0.20335228775211417,-0.20296950894439683,-0.20258450807257997,-0.2021972901323865,-0.2018078601432998,-0.20141622314850163,-0.20102238421480897,-0.20062634843261146,-0.20022812091580725,-0.19982770680174095,-0.19942511125113835,-0.19902033944804343,-0.19861339659975338,-0.19820428793675504,-0.19779301871265895,-0.19737959420413556,-0.19696401971084904,-0.19654630055539288,-0.196126442083223,-0.19570444966259246,-0.19528032868448508,-0.19485408456254943,-0.19442572273303155,-0.19399524865470824,-0.19356266780882062,-0.19312798569900566,-0.19269120785122912,-0.1922523398137177,-0.19181138715689106,-0.1913683554732934,-0.19092325037752478,-0.19047607750617246,-0.19002684251774243,-0.18957555109258928,-0.18912220893284712,-0.1886668217623602,-0.1882093953266126,-0.1877499353926583,-0.18728844774905068,-0.1868249382057726,-0.18635941259416441,-0.18589187676685384,-0.18542233659768434,-0.184950797981644,-0.1844772668347933,-0.1840017490941939,-0.18352425071783562,-0.18304477768456548,-0.18256333599401356,-0.18207993166652114,-0.18159457074306767,-0.18110725928519736,-0.1806180033749458,-0.18012680911476622,-0.1796336826274567,-0.17913863005608413,-0.17864165756391173,-0.17814277133432382,-0.177641977570751,-0.17713928249659594,-0.17663469235515777,-0.17612821340955656,-0.17561985194265897,-0.17510961425700114,-0.17459750667471363,-0.17408353553744516,-0.1735677072062862,-0.1730500280616927,-0.1725305045034088,-0.17200914295039121,-0.17148594984073076,-0.17096093163157558,-0.1704340947990539,-0.169905445838196,-0.16937499126285674,-0.168842737605637,-0.16830869141780547,-0.16777285926922147,-0.1672352477482542,-0.16669586346170542,-0.1661547130347299,-0.16561180311075646,-0.16506714035140832,-0.16452073143642357,-0.1639725830635763,-0.163422701948595,-0.16287109482508358,-0.16231776844444112,-0.16176272957578078,-0.16120598500584954,-0.1606475415389474,-0.1600874059968461,-0.15952558521870847,-0.15896208606100634,-0.15839691539743941,-0.15783008011885338,-0.1572615871331584,-0.15669144336524665,-0.15611965575690986,-0.1555462312667582,-0.154971176870136,-0.15439449955904014,-0.15381620634203663,-0.15323630424417792,-0.1526548003069193,-0.15207170158803585,-0.1514870151615382,-0.1509007481175905,-0.15031290756242421,-0.1497235006182556,-0.1491325344232011,-0.148540016131193,-0.14794595291189488,-0.14735035195061674,-0.1467532204482312,-0.14615456562108692,-0.1455543947009244,-0.14495271493479064,-0.14434953358495356,-0.14374485792881642,-0.14313869525883216,-0.142531052882417,-0.14192193812186607,-0.1413113583142647,-0.14069932081140388,-0.14008583297969335,-0.13947090220007483,-0.13885453586793536,-0.1382367413930202,-0.13761752619934667,-0.13699689772511553,-0.1363748634226247,-0.13575143075818152,-0.13512660721201497,-0.1345004002781883,-0.1338728174645109,-0.13324386629245003,-0.132613554297044,-0.131981889026812,-0.13134887804366693,-0.1307145289228267,-0.13007884925272534,-0.12944184663492436,-0.12880352868402353,-0.12816390302757333,-0.12752297730598328,-0.12688075917243458,-0.12623725629279017,-0.1255924763455049,-0.12494642702153652,-0.1242991160242553,-0.1236505510693541,-0.1230007398847599,-0.12234969021054118,-0.1216974097988196,-0.12104390641367874,-0.12038918783107425,-0.11973326183874282,-0.11907613623611128,-0.11841781883420738,-0.11775831745556656,-0.1170976399341425,-0.11643579411521562,-0.11577278785530182,-0.1151086290220612,-0.11444332549420658,-0.11377688516141174,-0.11310931592422116,-0.11244062569395596,-0.11177082239262388,-0.11109991395282663,-0.11042790831766815,-0.10975481344066215,-0.10908063728563996,-0.10840538782665934,-0.10772907304791002,-0.10705170094362267,-0.1063732795179758,-0.1056938167850034,-0.10501332076850187,-0.10433179950193726,-0.10364926102835202,-0.10296571340027329,-0.10228116467961788,-0.10159562293760017,-0.10090909625463884,-0.10022159272026317,-0.09953312043301973,-0.09884368750037867,-0.09815330203864134,-0.09746197217284451,-0.09676970603666807,-0.09607651177234088,-0.09538239753054682,-0.09468737147033093,-0.09399144175900509,-0.09329461657205385,-0.09259690409304154,-0.09189831251351588,-0.09119885003291504,-0.09049852485847294,-0.08979734520512486,-0.08909531929541281,-0.08839245535939057,-0.0876887616345307,-0.0869842463656273,-0.08627891780470306,-0.08557278421091392,-0.08486585385045406,-0.08415813499646115,-0.08344963592892121,-0.08274036493457342,-0.0820303303068161,-0.08131954034560973,-0.08060800335738301,-0.07989572765493722,-0.0791827215573509,-0.07846899338988475,-0.07775455148388545,-0.07703940417669204,-0.07632355981153786,-0.07560702673745688,-0.07488981330918736,-0.07417192788707655,-0.07345337883698481,-0.0727341745301899,-0.07201432334329107,-0.07129383365811452,-0.07057271386161544,-0.06985097234578375,-0.06912861750754756,-0.06840565774867766,-0.06768210147569109,-0.06695795709975515,-0.06623323303659273,-0.06550793770638397,-0.06478207953367184,-0.0640556669472654,-0.06332870838014405,-0.06260121226936104,-0.06187318705594739,-0.06114464118481542,-0.06041558310466395,-0.05968602126787978,-0.058955964130443,-0.05822542015183028,-0.05749439779491859,-0.05676290552588898,-0.05603095181412966,-0.05529854513214141,-0.05456569395543883,-0.05383240676245548,-0.05309869203444722,-0.052364558255395696,-0.051630013911912076,-0.05089506749314056,-0.0501597274906616,-0.049424002398397074,-0.04868790071251155,-0.047951430931317346,-0.04721460155517778,-0.04647742108641071,-0.04573989802919218,-0.04500204088945953,-0.04426385817481659,-0.04352535839443485,-0.04278655005895874,-0.04204744168040871,-0.041308041772084914,-0.04056835884847072,-0.039828401425136085,-0.039088178018642554,-0.038347697146444766,-0.037606967326795526,-0.03686599707864907,-0.03612479492156484,-0.035383369375611075,-0.034641728961268624,-0.033899882199334166,-0.03315783761082558,-0.03241560371688344,-0.031673189038676185,-0.030930602097303656,-0.030187851413700933,-0.029444945508542136,-0.02870189290214393,-0.027958702114370994,-0.027215381664537606,-0.026471940071313177,-0.025728385852625817,-0.024984727525566384,-0.024240973606292522,-0.023497132609932726,-0.022753213050490103,-0.02200922344074807,-0.021265172292172136,-0.02052106811481579,-0.019776919417224308,-0.01903273470633903,-0.018288522487401777,-0.01754429126385875,-0.016800049537266565,-0.016055805807194363,-0.015311568571129877,-0.0145673463243836,-0.01382314755999335,-0.013078980768628975,-0.012334854438497014,-0.011590777055245026,-0.010846757101867999,-0.01010280305861081,-0.009358923402874694,-0.00861512660912182,-0.007871421148780292,-0.007127815490149186,-0.006384318098303317,-0.005640937434999938,-0.004897681958581667,-0.004154560123883311,-0.003411580382136853,-0.0026687511808768647,-0.0019260809638459839,-0.0011835781709004579,-0.00044125123791536404,0.00030089140330816,0.0010428413251394961,0.0017845901042112013,0.0025261293215134884,0.003267450562488306,0.004008545417123293,0.004749405480046085,0.005490022350616595,0.006230387633023086,0.006970492936374326,0.007710329874793562,0.008449890067512058,0.00918916513896254,0.009928146718872577,0.010666826442358245,0.011405195950015799,0.012143246888017116,0.01288097090820118,0.013618359668167448,0.014355404831368709,0.015092098067203866,0.015828431051111022,0.016564395464658547,0.01729998299563992,0.018035185338164592,0.01876999419275073,0.019504401266417448,0.02023839827277697,0.020971976932126636,0.02170512897154135,0.02243784612496377,0.0231701201332985,0.023901942744502115,0.024633305713675203,0.02536420080315376,0.026094619782600557,0.026824554429096866,0.027553996527231964,0.028282937869196542,0.02901137025487216,0.029739285491922344,0.030466675395883467,0.031193531790255243,0.03191984650659132,0.032645611384590004,0.033370818272183085,0.034095459025628244,0.034819525509597604,0.03554300959726807,0.03626590317041115,0.036988198119482694,0.03770988634371281,0.03843095975119389,0.03915141025897223,0.0398712297931357,0.04059041028890326,0.041308943690714035,0.04202682195231606,0.042744037036855094,0.043460580916963615,0.044176445574847775,0.044891623002378055,0.04560610520117597,0.046319884182702595,0.04703295196834649,0.04774530058951152,0.048456922087705086,0.04916780851462404,0.049877951932244494,0.05058734441290751,0.05129597803940684,0.05200384490507573,0.05271093711387403,0.053417246780474784,0.05412276603035139,0.054827486999862396,0.055531401836340276,0.05623450269817597,0.056936781754905394,0.05763823118729536,0.05833884318742922,0.059038609958793,0.05973752371635935,0.06043557668667498,0.06113276110794447,0.061829069230115614,0.06252449331496429,0.06321902563617915,0.06391265847944627,0.06460538414253379,0.06529719493537489,0.06598808318015385,0.06667804121138879,0.06736706137601554,0.06805513603347159,0.06874225755577923,0.0694284183276295,0.07011361074646366,0.07079782722255853,0.07148106017910776,0.07216330205230485,0.07284454529142573,0.07352478235891093,0.07420400573044794,0.07488220789505345,0.07555938135515365,0.07623551862666832,0.07691061223909053,0.07758465473556854,0.07825763867298705,0.07892955662204776,0.07960040116735097,0.08027016490747456,0.0809388404550565,0.08160642043687397,0.08227289749392354,0.08293826428150118,0.08360251346928212,0.0842656377414002,0.08492762979652776,0.0855884823479534,0.08624818812366301,0.08690673986641738,0.08756413033383095,0.0882203522984506,0.08887539854783356,0.08952926188462618,0.09018193512664024,0.09083341110693287,0.09148368267388257,0.09213274269126706,0.0927805840383402,0.09342719960990925,0.09407258231641133,0.09471672508399054,0.09535962085457293,0.09600126258594464,0.09664164325182673,0.097280755841951,0.09791859336213593,0.09855514883436184,0.09919041529684651,0.09982438580411884,0.10045705342709565,0.10108841125315497,0.10171845238621072,0.10234716994678689,0.10297455707209169,0.10360060691609116,0.10422531264958314,0.10484866746026925,0.10547066455283023,0.10609129714899752,0.1067105584876262,0.10732844182476764,0.10794494043374188,0.10856004760521,0.10917375664724478,0.10978606088540442,0.11039695366280251,0.11100642834017992,0.11161447829597561,0.11222109692639763,0.11282627764549377,0.11343001388522211,0.11403229909552026,0.11463312674437683,0.11523249031790037,0.11583038332038881,0.11642679927439918,0.11702173172081644,0.11761517421892265,0.11820712034646465,0.11879756369972409,0.11938649789358456,0.11997391656159981,0.12055981335606156,0.12114418194806685,0.12172701602758582,0.12230830930352847,0.1228880555038108,0.12346624837542304,0.12404288168449477,0.12461794921636164,0.125191444775631,0.1257633621862478,0.12633369529156038,0.12690243795438433,0.12746958405706946,0.12803512750156334,0.128599062209476,0.12916138212214448,0.1297220812006967,0.13028115342611524,0.1308385927993015,0.13139439334113753,0.1319485490925513,0.1325010541145778,0.13305190248842277,0.13360108831552434,0.13414860571761558,0.13469444883678675,0.13523861183554545,0.13578108889688006,0.13632187422431988,0.13686096204199594,0.13739834659470193,0.13793402214795486,0.1384679829880547,0.13900022342214513,0.13953073777827188,0.14005952040544387,0.14058656567369132,0.14111186797412495,0.1416354217189947,0.1421572213417483,0.1426772612970895,0.1431955360610351,0.14371204013097422,0.14422676802572473,0.14473971428559051,0.14525087347241866,0.14576024016965589,0.14626780898240516,0.14677357453748202,0.1472775314834694,0.14777967449077511,0.14827999825168572,0.14877849748042232,0.1492751669131954,0.14977000130825913,0.15026299544596644,0.1507541441288216,0.151243442181536,0.1517308844510805,0.152216465806739,0.1527001811401614,0.15318202536541667,0.1536619934190451,0.15414008026011083,0.15461628087025292,0.1550905902537386,0.1555630034375135,0.15603351547125358,0.15650212142741532,0.15696881640128704,0.1574335955110392,0.15789645389777351,0.15835738672557456,0.15881638918155794,0.15927345647592017,0.1597285838419876,0.16018176653626517,0.1606329998384852,0.16108227905165448,0.16152959950210397,0.16197495653953517,0.162418345537068,0.16285976189128767,0.163299201022292,0.1637366583737375,0.16417212941288606,0.1646056096306502,0.16503709454164014,0.165466579684208,0.16589406062049383,0.16631953293647017,0.16674299224198663,0.16716443417081453,0.16758385438069032,0.16800124855336035,0.16841661239462377,0.16882994163437584,0.16924123202665095,0.16965047934966526,0.17005767940585917,0.1704628280219396,0.1708659210489208,0.17126695436216754,0.17166592386143517,0.17206282547091106,0.17245765513925512,0.17285040883964026,0.17324108256979265,0.173629672352031,0.17401617423330715,0.1744005842852443,0.17478289860417673,0.17516311331118792,0.1755412245521493,0.17591722849775848,0.17629112134357677,0.17666289931006646,0.1770325586426289,0.177400095611641,0.17776550651249168,0.17812878766561857,0.17848993541654412,0.1788489461359114,0.17920581621951892,0.17956054208835703,0.17991312018864197,0.18026354699185104,0.1806118189947564,0.18095793271945956,0.18130188471342504,0.18164367154951386,0.18198328982601614,0.18232073616668493,0.18265600722076827,0.1829890996630415,0.1833200101938393,0.18364873553908737,0.18397527245033388,0.1842996177047803,0.18462176810531275,0.1849417204805322,0.18525947168478435,0.18557501859819042,0.1858883581266759,0.18619948720200027,0.18650840278178632,0.18681510184954783,0.1871195814147193,0.1874218385126834,0.1877218702047989,0.18801967357842816,0.18831524574696432,0.1886085838498587,0.18889968505264648,0.18918854654697426,0.1894751655506249,0.1897595393075443,0.1900416650878661,0.19032154018793715,0.19059916193034224,0.19087452766392873,0.1911476347638304,0.19141848063149214,0.19168706269469288,0.19195337840756907,0.19221742525063812,0.19247920073082042,0.19273870238146248,0.19299592776235827,0.19325087445977177,0.1935035400864581,0.19375392228168484,0.19400201871125267,0.19424782706751634,0.1944913450694048,0.19473257046244122,0.1949715010187623,0.19520813453713834,0.19544246884299182,0.19567450178841642,0.19590423125219522,0.1961316551398191,0.1963567713835046,0.196579577942211,0.19680007280165832,0.19701825397434383,0.1972341194995586,0.19744766744340386,0.19765889589880747,0.19786780298553888,0.19807438685022535,0.19827864566636605,0.19848057763434798,0.19868018098145965,0.1988774539619056,0.19907239485682016,0.19926500197428107,0.19945527364932286,0.1996432082439494,0.19982880414714696,0.20001205977489642,0.2001929735701853,0.20037154400301932,0.20054776957043424,0.2007216487965064,0.20089318023236402,0.20106236245619732,0.20122919407326892,0.20139367371592382,0.20155580004359858,0.20171557174283103,0.20187298752726887,0.2020280461376786,0.20218074634195357,0.20233108693512222,0.20247906673935567,0.20262468460397542,0.20276793940546015,0.20290883004745236,0.2030473554607655,0.20318351460338943,0.20331730646049684,0.20344873004444855,0.20357778439479873,0.20370446857829988,0.20382878168890783,0.20395072284778548,0.2040702912033073,0.2041874859310626,0.20430230623385942,0.20441475134172737,0.20452482051192034,0.20463251302891924,0.20473782820443392,0.20484076537740528,0.20494132391400682,0.20503950320764516,0.20513530267896235,0.20522872177583548,0.20531975997337695,0.20540841677393545,0.20549469170709456,0.2055785843296729,0.20566009422572276,0.20573922100652936,0.20581596431060897,0.20589032380370703,0.20596229917879658,0.20603189015607495,0.20609909648296185,0.20616391793409594,0.2062263543113313,0.2062864054437341,0.20634407118757842,0.20639935142634205,0.20645224607070198,0.20650275505852939,0.20655087835488437,0.20659661595201081,0.20663996786932992,0.2066809341534349,0.2067195148780838,0.20675571014419342,0.20678952007983184,0.20682094484021116,0.20684998460768014,0.20687663959171582,0.20690091002891553,0.2069227961829885,0.2069422983447465,0.2069594168320952,0.2069741519900243,0.20698650419059808,0.206996473832945,0.20700406134324775,0.20700926717473192,0.20701209180765578,0.2070125357492983,0.20701059953394818,0.20700628372289134,0.20699958890439923,0.20699051569371602,0.2069790647330459,0.20696523669153993,0.20694903226528294,0.2069304521772791,0.20690949717743876,0.20688616804256357,0.20686046557633214,0.2068323906092849,0.20680194399880908,0.20676912662912322,0.2067339394112611,0.206696383283056,0.20665645920912395,0.20661416818084727,0.20656951121635733,0.20652248936051743,0.20647310368490507,0.2064213552877942,0.20636724529413675,0.20631077485554458,0.20625194515026993,0.2061907573831873,0.20612721278577317,0.2060613126160869,0.20599305815875035,0.20592245072492799,0.20584949165230584,0.20577418230507122,0.20569652407389077,0.20561651837588996,0.2055341666546305,0.20544947038008865,0.20536243104863278,0.2052730501830009,0.20518132933227756,0.2050872700718706,0.20499087400348787,0.20489214275511314,0.20479107798098206,0.20468768136155793,0.20458195460350675,0.2044738994396725,0.20436351762905175,0.2042508109567681,0.20413578123404638,0.20401843029818634,0.20389876001253662,0.20377677226646743,0.20365246897534417,0.20352585208049961,0.20339692354920677,0.2032656853746508,0.2031321395759007,0.20299628819788126,0.20285813331134378,0.20271767701283772,0.20257492142468086,0.20242986869492993,0.20228252099735072,0.20213288053138803,0.20198094952213508,0.20182673022030267,0.20167022490218844,0.20151143586964565,0.20135036545005106,0.20118701599627364,0.20102138988664253,0.20085348952491372,0.2006833173402386,0.20051087578712973,0.20033616734542872,0.20015919452027187,0.1999799598420568,0.19979846586640806,0.199614715174143,0.19942871037123708,0.1992404540887888,0.19904994898298456,0.1988571977350632,0.19866220305128035,0.19846496766287197,0.19826549432601873,0.19806378582180895,0.19785984495620157,0.19765367455998972,0.19744527748876248,0.19723465662286785,0.19702181486737447,0.19680675515203339,0.19658948043123994,0.19636999368399458,0.19614829791386387,0.19592439614894128,0.19569829144180778,0.1954699868694918,0.1952394855334288,0.19500679055942197,0.19477190509760028,0.1945348323223782,0.19429557543241477,0.19405413765057147,0.19381052222387124,0.19356473242345584,0.19331677154454435,0.19306664290638995,0.1928143498522374,0.1925598957492803,0.1923032839886175,0.19204451798520944,0.1917836011778347,0.19152053702904556,0.19125532902512435,0.1909879806760377,0.19071849551539272,0.1904468771003914,0.19017312901178532,0.1898972548538303,0.18961925825423986,0.18933914286414,0.18905691235802208,0.1887725704336963,0.188486120812245,0.18819756723797548,0.18790691347837246,0.18761416332405048,0.18731932058870582,0.187022389109069,0.18672337274485537,0.18642227537871725,0.1861191009161944,0.18581385328566555,0.18550653643829823,0.18519715434799974,0.18488571101136703,0.1845722104476364,0.18425665669863306,0.18393905382872086,0.18361940592475104,0.18329771709601134,0.1829739914741744,0.18264823321324614,0.18232044648951456,0.18199063550149644,0.18165880446988592,0.1813249576375016,0.18098909926923393,0.18065123365199154,0.18031136509464868,0.1799694979279916,0.17962563650466404,0.17927978519911406,0.1789319484075392,0.17858213054783253,0.17823033605952732,0.17787656940374266,0.17752083506312777,0.17716313754180743,0.17680348136532517,0.17644187108058798,0.17607831125581053,0.17571280648045814,0.17534536136519074,0.1749759805418056,0.17460466866318117,0.17423143040321873,0.17385627045678553,0.17347919353965707,0.17310020438845897,0.172719307760609,0.17233650843425846,0.1719518112082339,0.17156522090197834,0.1711767423554916,0.17078638042927172,0.17039414000425518,0.17000002598175704,0.16960404328341144,0.169206196851111,0.1688064916469471,0.1684049326531486,0.16800152487202125,0.16759627332588684,0.16718918305702202,0.16678025912759667,0.16636950661961242,0.16595693063484043,0.16554253629476043,0.1651263287404966,0.1647083131327567,0.16428849465176856,0.16386687849721746,0.1634434698881829,0.1630182740630751,0.16259129627957236,0.16216254181455603,0.16173201596404738,0.1612997240431433,0.16086567138595181,0.16042986334552786,0.15999230529380823,0.15955300262154634,0.15911196073824838,0.1586691850721063,0.1582246810699332,0.15777845419709743,0.15733050993745662,0.15688085379329147,0.1564294912852394,0.15597642795222857,0.1555216693514103,0.15506522105809256,0.15460708866567302,0.15414727778557138,0.1536857940471623,0.15322264309770747,0.15275783060228743,0.15229136224373474,0.15182324372256406,0.1513534807569049,0.1508820790824325,0.1504090444522992,0.14993438263706543,0.14945809942463031,0.1489802006201633,0.14850069204603308,0.14801957954173908,0.14753686896384083,0.14705256618588858,0.14656667709835255,0.14607920760855256,0.14559016364058736,0.14509955113526474,0.14460737605002913,0.14411364435889143,0.14361836205235728,0.14312153513735595,0.14262316963716856,0.1421232715913557,0.14162184705568692,0.1411189021020668,0.14061444281846366,0.14010847530883683,0.13960100569306394,0.13909204010686835,0.13858158470174572,0.13806964564489096,0.13755622911912593,0.137041341322824,0.13652498846983807,0.13600717678942603,0.13548791252617695,0.13496720193993697,0.13444505130573486,0.13392146691370832,0.13339645506902817,0.1328700220918246,0.13234217431711157,0.13181291809471252,0.13128225978918429,0.13075020577974264,0.13021676246018568,0.1296819362388198,0.12914573353838207,0.12860816079596535,0.12806922446294192,0.12752893100488727,0.12698728690150357,0.12644429864654316,0.12589997274773249,0.1253543157266941,0.12480733411887035,0.12425903447344643,0.1237094233532728,0.12315850733478786,0.12260629300794056,0.12205278697611216,0.12149799585603994,0.12094192627773714,0.12038458488441646,0.11982597833241111,0.11926611329109675,0.11870499644281295,0.11814263448278435,0.11757903411904291,0.11701420207234743,0.11644814507610574,0.11588086987629515,0.11531238323138329,0.11474269191224878,0.11417180270210162,0.11359972239640324,0.1130264578027882,0.11245201574098215,0.11187640304272327,0.11129962655168185,0.11072169312337998,0.1101426096251113,0.10956238293585997,0.10898101994622171,0.10839852755832088,0.10781491268573119,0.10723018225339423,0.1066443431975385,0.10605740246559836,0.10546936701613269,0.1048802438187431,0.10429003985399385,0.1036987621133283,0.10310641759898852,0.10251301332393305,0.10191855631175514,0.10132305359660061,0.10072651222308553,0.1001289392462151,0.09953034173129965,0.0989307267538732,0.09833010139961089,0.09772847276424626,0.09712584795348841,0.09652223408293939,0.09591763827801073,0.09531206767384195,0.09470552941521546,0.09409803065647443,0.09348957856143954,0.09288018030332537,0.09226984306465703,0.09165857403718618,0.09104638042180878,0.0904332694284793,0.08981924827612871,0.0892043241925781,0.08858850441445931,0.08797179618712579,0.08735420676457105,0.08673574340934428,0.08611641339246538,0.0854962239933412,0.08487518249968069,0.08425329620741034,0.08363057242058976,0.0830070184513269,0.08238264161969301,0.08175744925363838,0.08113144868890673,0.08050464726895065,0.07987705234484577,0.07924867127520822,0.07861951142610553,0.07798958017097386,0.07735888489053223,0.07672743297269684,0.07609523181249582,0.07546228881198357,0.07482861138015524,0.07419420693286098,0.07355908289272027,0.07292324668903624,0.07228670575770957,0.07164946754115284,0.07101153948820443,0.07037292905404192,0.06973364370009867,0.0690936908939737,0.06845307810934813,0.06781181282589827,0.06716990252920955,0.06652735471068996,0.06588417686748374,0.06524037650238496,0.06459596112375114,0.06395093824541655,0.06330531538660576,0.06265910007184711,0.06201229983088581,0.061364922198597543,0.060716974714900826,0.06006846492467303,0.059419400377659505,0.05876978862838946,0.058119637236088324,0.05746895376459087,0.056817745782254236,0.05616602086187093,0.05551378658058182,0.05486105051978904,0.05420782026506893,0.05355410340608482,0.05289990753649997,0.0522452402538905,0.051590109159657845,0.05093452185894118,0.0502784859605326,0.04962200907678607,0.048965098823532505,0.04830776281999195,0.047650008688686206,0.0469918440553514,0.04633327654885065,0.04567431380108663,0.045014963446914094,0.04435523312405251,0.04369513047299854,0.043034663136938614,0.04237383876166138,0.04171266499547021,0.04105114948909504,0.0403892998956076,0.039727123870329666,0.0390646290707484,0.03840182315642798,0.03773871378892207,0.03707530863168638,0.03641161534999097,0.035747641610832666,0.035083395082847586,0.0344188834362235,0.03375411434261223,0.033089095475042164,0.03242383450783057,0.0317583391164961,0.03109261697767052,0.030426675769013898,0.02976052316912283,0.029094166857445813,0.028427614514194822,0.02776087382025791,0.027093952457111607,0.026426858106733443,0.02575959845151437,0.025092181174171353,0.024424613957659845,0.02375690448508631,0.023089060439620772,0.022421089504409412,0.021752999362487088,0.0210847976966893,0.02041649218956755,0.019748090523297814,0.01907960037959598,0.01841102943962983,0.017742385383931764,0.017073675892311492,0.01640490864376882,0.015736091316406402,0.015067231587342566,0.014398337132624114,0.013729415627139228,0.013060474744530317,0.012391522157106967,0.011722565535758898,0.011053612549868226,0.010384670867225294,0.009715748153937536,0.00904685207434536,0.008377990290934603,0.007709170464249624,0.007040400252806578,0.006371687313006642,0.005703039299049287,0.005034463862845607,0.004365968653931693,0.0036975613193820354,0.0030292495037229986,0.002361040848846298,0.0016929429939225651,0.0010249635753142453,0.0003571102264920173,-0.0003106094220556771,-0.0009781877429061207,-0.00164561711178921,-0.0023128899076736123,-0.002979998512852871,-0.0036469353130314346,-0.00431369269741067,-0.004980263058774782,-0.00564663879357669,-0.006312812302023857,-0.006978775988164044,-0.0076445222599710065,-0.008310043529430149,-0.00897533221262478,-0.00964038072981885,-0.01030518150554659,-0.010969726968695094,-0.01163400955259036,-0.012298021695082517,-0.012961755838631036,-0.013625204430389825,-0.014288359922292304,-0.014951214771136359,-0.015613761438669263,-0.016275992391672513,-0.016937900102046582,-0.0175994770468956,-0.01826071570861199,-0.01892160857496167,-0.019582148139165766,-0.020242326899989133,-0.020902137361821865,-0.02156157203476428,-0.022220623434710974,-0.02287928408343495,-0.023537546508671552,-0.024195403244202378,-0.024852846829939077,-0.025509869812007098,-0.026166464742829288,-0.02682262418120948,-0.027478340692415927,-0.02813360684826468,-0.028788415227203552,-0.02944275841439261,-0.030096629001791317,-0.03075001958823882,-0.0314029227795376,-0.03205533118853624,-0.032707237435212116,-0.033358634146754086,-0.034009513957645,-0.03465986950974412,-0.03530969345236944,-0.03595897844237991,-0.036607717144257666,-0.03725590223018988,-0.03790352638015084,-0.03855058228198434,-0.039197062631482746,-0.039842960132472675,-0.04048826749689376,-0.0411329774448807,-0.041777082704844634,-0.04242057601355421,-0.04306345011621671,-0.04370569776655906,-0.04434731172690855,-0.04498828476827364,-0.04562860967042461,-0.04626827922197398,-0.04690728622045698,-0.04754562347241174,-0.04818328379346014,-0.04882026000838526,-0.049456544951215195,-0.05009213146530018,-0.05072701240339302,-0.05136118062772854,-0.051994629010103155,-0.052627350431954004,-0.05325933778443826,-0.05389058396851217,-0.05452108189500995,-0.055150824484722555,-0.055779804668476506,-0.05640801538721225,-0.05703544959206276,-0.05766210024443235,-0.05828796031607216,-0.05891302278916239,-0.059537280656387234,-0.060160726921013465,-0.0607833545969681,-0.06140515670891576,-0.062026126292336135,-0.06264625639360111,-0.06326554007005192,-0.06388397039007596,-0.0645015404331838,-0.06511824329008561,-0.06573407206276781,-0.06634901986457002,-0.06696307982025883,-0.06757624506610753,-0.06818850874996976,-0.06879986403135566,-0.06941030408150772,-0.07001982208347628,-0.07062841123219464,-0.0712360647345546,-0.07184277580948131,-0.07244853768800817,-0.07305334361335174,-0.07365718684098607,-0.07426006063871744,-0.07486195828675848,-0.07546287307780294,-0.0760627983170972,-0.07666172732251784,-0.07725965342464292,-0.07785656996682581,-0.07845247030526895,-0.0790473478090967,-0.07964119586042849,-0.08023400785445181,-0.08082577719949471,-0.08141649731709856,-0.08200616164209015,-0.08259476362265421,-0.08318229672040531,-0.08376875441045974,-0.08435413018150784,-0.0849384175358832,-0.08552160998963754,-0.0861037010726097,-0.08668468432849712,-0.08726455331492679,-0.08784330160352592,-0.08842092277999242,-0.0889974104441655,-0.08957275821009555,-0.0901469597061143,-0.0907200085749046,-0.09129189847357022,-0.09186262307370509,-0.09243217606146284,-0.09300055113762641,-0.09356774201767451,-0.0941337424318542,-0.09469854612524697,-0.0952621468578376,-0.09582453840458273,-0.09638571455547848,-0.09694566911562877,-0.0975043959053125,-0.09806188876005138,-0.0986181415306772,-0.09917314808339878,-0.09972690229986911,-0.10027939807725186,-0.10083062932828814,-0.1013805899813634,-0.10192927398057108,-0.10247667528578243,-0.1030227878727096,-0.10356760573297222,-0.10411112287416242,-0.1046533333199103,-0.10519423110994879,-0.10573381030017866,-0.10627206496273295,-0.10680898918604154,-0.1073445770748953,-0.10787882275051018,-0.10841172035059106,-0.1089432640293952,-0.10947344795779669,-0.11000226632334696,-0.11052971333034133,-0.11105578319987972,-0.11158047016992988,-0.11210376849538962,-0.1126256724481491,-0.11314617631715299,-0.11366527440846208,-0.11418296104531506,-0.11469923056818979,-0.11521407733486473,-0.11572749572047948,-0.1162394801175962,-0.11675002493625955,-0.11725912460405803,-0.1177667735661817,-0.1182729662854857,-0.1187776972425472,-0.11928096093572622,-0.11978275188122448,-0.1202830646131444,-0.12078189368354833,-0.12127923366251711,-0.12177507913820808,-0.1222694247169141,-0.1227622650231208,-0.12325359469956497,-0.12374340840729166,-0.12423170082571176,-0.1247184666526599,-0.1252037006044488,-0.12568739741592938,-0.1261695518405451,-0.12665015865038887,-0.1271292126362588,-0.1276067086077143,-0.12808264139313144,-0.12855700583975846,-0.1290297968137709,-0.12950100920032645,-0.12997063790361965,-0.1304386778469364,-0.13090512397270812,-0.13136997124256586,-0.13183321463739453,-0.1322948491573844,-0.1327548698220875,-0.13321327167046865,-0.1336700497609589,-0.13412519917150806,-0.13457871499963717,-0.13503059236249074,-0.1354808263968884,-0.13592941225937707,-0.136376345126282,-0.13682162019375801,-0.13726523267784102,-0.13770717781449807,-0.13814745085967842,-0.13858604708936414,-0.1390229617996181,-0.13945819030663684,-0.13989172794679824,-0.14032357007671123,-0.14075371207326495,-0.14118214933367762,-0.14160887727554516,-0.14203389133688954,-0.14245718697620707,-0.14287875967251598,-0.14329860492540455,-0.14371671825507795,-0.14413309520240594,-0.14454773132896953,-0.14496062221710823,-0.1453717634699644,-0.14578115071153275,-0.14618877958670368,-0.14659464576131026,-0.1469987449221731,-0.14740107277714584,-0.14780162505515998,-0.14820039750626976,-0.14859738590169644,-0.1489925860338726,-0.1493859937164862,-0.14977760478452415,-0.15016741509431594,-0.15055542052357668,-0.1509416169714507,-0.15132600035855234,-0.15170856662701127,-0.15208931174051257,-0.15246823168433962,-0.15284532246541535,-0.15322058011234407,-0.15359400067545254,-0.1539655802268307,-0.1543353148603727,-0.1547032006918171,-0.15506923385878726,-0.1554334105208311,-0.1557957268594606,-0.15615617907819188,-0.15651476340258386,-0.1568714760802763,-0.1572263133810304,-0.1575792715967657,-0.15793034704159878,-0.1582795360518809,-0.1586268349862355,-0.15897224022559603,-0.15931574817324243,-0.1596573552548385,-0.15999705791846802,-0.16033485263467132,-0.16067073589648118,-0.16100470421945876,-0.16133675414172888,-0.16166688222401596,-0.16199508504967702,-0.1623213592247394,-0.16264570137793294,-0.16296810816072493,-0.16328857624735427,-0.16360710233486442,-0.16392368314313763,-0.16423831541492756,-0.16455099591589226,-0.16486172143462693,-0.16517048878269597,-0.16547729479466514,-0.16578213632813368,-0.1660850102637654,-0.1663859135053205,-0.16668484297968525,-0.1669817956369046,-0.1672767684502115,-0.16756975841605715,-0.1678607625541412,-0.1681497779074413,-0.16843680154224222,-0.16872183054816559,-0.16900486203819803,-0.16928589314872028,-0.16956492103953508,-0.1698419428938956,-0.17011695591853274,-0.170389957343683,-0.17066094442311597,-0.17092991443415967,-0.17119686467772957,-0.1714617924783534,-0.1717246951841976,-0.17198557016709345,-0.17224441482256245,-0.17250122656984127,-0.1727560028519076,-0.1730087411355041,-0.1732594389111635,-0.17350809369323217,-0.1737547030198946,-0.17399926445319688,-0.1742417755790699,-0.17448223400735294,-0.17472063737181526,-0.1749569833301805,-0.17519126956414754,-0.17542349377941305,-0.17565365370569308,-0.17588174709674445,-0.17610777173038605,-0.17633172540851966,-0.17655360595715053,-0.17677341122640788,-0.1769911390905646,-0.1772067874480574,-0.1774203542215061,-0.1776318373577329,-0.17784123482778158,-0.1780485446269352,-0.17825376477473592,-0.17845689331500203,-0.1786579283158462,-0.17885686786969301,-0.17905371009329588,-0.17924845312775467,-0.17944109513853188,-0.17963163431546908,-0.1798200688728035,-0.18000639704918336,-0.1801906171076839,-0.1803727273358222,-0.18055272604557296,-0.18073061157338235,-0.1809063822801829,-0.18108003655140786,-0.1812515727970049,-0.18142098945144966,-0.18158828497375923,-0.18175345784750505,-0.18191650658082592,-0.18207742970644034,-0.18223622578165852,-0.18239289338839476,-0.1825474311331788,-0.1826998376471671,-0.18285011158615436,-0.1829982516305837,-0.1831442564855579,-0.18328812488084864,-0.18342985557090769,-0.18356944733487543,-0.18370689897659134,-0.18384220932460194,-0.18397537723217053,-0.18410640157728528,-0.18423528126266767,-0.1843620152157805,-0.1844866023888351,-0.18460904175879964,-0.18472933232740538,-0.18484747312115402,-0.18496346319132403,-0.18507730161397729,-0.1851889874899643,-0.1852985199449308,-0.18540589812932282,-0.18551112121839158,-0.18561418841219882,-0.18571509893562105,-0.1858138520383538,-0.1859104469949161,-0.18600488310465343,-0.18609715969174212,-0.18618727610519167,-0.18627523171884824,-0.18636102593139678,-0.18644465816636357,-0.18652612787211853,-0.18660543452187617,-0.1866825776136981,-0.18675755667049335,-0.18683037124001978,-0.1869010208948845,-0.18696950523254402,-0.1870358238753048,-0.18709997647032262,-0.18716196268960222,-0.18722178222999641,-0.18727943481320503,-0.18733492018577388,-0.18738823811909242,-0.18743938840939237,-0.18748837087774564,-0.18753518537006114,-0.1875798317570828,-0.18762230993438603,-0.1876626198223745,-0.18770076136627656,-0.18773673453614131,-0.1877705393268345,-0.18780217575803387,-0.1878316438742248,-0.1878589437446947,-0.1878840754635282,-0.1879070391496014,-0.18792783494657606,-0.18794646302289333,-0.18796292357176722,-0.18797721681117824,-0.18798934298386624,-0.18799930235732315,-0.18800709522378514,-0.18801272190022528,-0.18801618272834522,-0.1880174780745667,-0.18801660833002287,-0.18801357391054954,-0.1880083752566759,-0.18800101283361476,-0.1879914871312531,-0.18797979866414183,-0.18796594797148544,-0.1879499356171314,-0.1879317621895593,-0.18791142830186944,-0.18788893459177197,-0.18786428172157432,-0.18783747037816978,-0.1878085012730251,-0.18777737514216777,-0.1877440927461732,-0.18770865487015181,-0.18767106232373532,-0.18763131594106333,-0.18758941658076922,-0.1875453651259659,-0.18749916248423137,-0.18745080958759408,-0.18740030739251756,-0.1873476568798854,-0.18729285905498522,-0.1872359149474934,-0.1871768256114583,-0.18711559212528425,-0.18705221559171467,-0.18698669713781513,-0.186919037914956,-0.18684923909879517,-0.18677730188925998,-0.18670322751052915,-0.1866270172110147,-0.1865486722633433,-0.18646819396433661,-0.18638558363499372,-0.1863008426204699,-0.18621397229005818,-0.1861249740371688,-0.186033849279309,-0.1859405994580627,-0.18584522603906972,-0.18574773051200447,-0.18564811439055456,-0.18554637921239986,-0.18544252653918955,-0.1853365579565212,-0.1852284750739174,-0.18511827952480356,-0.18500597296648466,-0.18489155708012278,-0.18477503357071232,-0.1846564041670576,-0.18453567062174808,-0.1844128347111341,-0.18428789823530267,-0.1841608630180524,-0.1840317309068687,-0.18390050377289793,-0.18376718351092242,-0.18363177203933417,-0.18349427130010876,-0.18335468325877924,-0.183213009904409,-0.18306925324956516,-0.18292341533029174,-0.18277549820608135,-0.1826255039598481,-0.18247343469789934,-0.18231929254990764,-0.1821630796688822,-0.18200479823114013,-0.1818444504362773,-0.18168203850713918,-0.18151756468979136,-0.18135103125348961,-0.18118244049064983,-0.18101179471681794,-0.1808390962706391,-0.18066434751382685,-0.18048755083113252,-0.180308708630313,-0.1801278233421001,-0.17994489742016773,-0.17975993334110074,-0.1795729336043619,-0.17938390073225952,-0.1791928372699146,-0.17899974578522762,-0.1788046288688452,-0.17860748913412647,-0.17840832921710914,-0.17820715177647545,-0.17800395949351758,-0.17779875507210313,-0.17759154123864085,-0.17738232074204408,-0.17717109635369654,-0.1769578708674163,-0.1767426470994199,-0.17652542788828626,-0.17630621609492006,-0.17608501460251552,-0.1758618263165191,-0.17563665416459265,-0.17540950109657602,-0.1751803700844491,-0.17494926412229436,-0.17471618622625873,-0.17448113943451443,-0.1742441268072223,-0.17400515142649042,-0.17376421639633685,-0.17352132484264965,-0.17327647991314735,-0.1730296847773392,-0.17278094262648516,-0.17253025667355532,-0.17227763015318978,-0.17202306632165756,-0.17176656845681562,-0.17150813985806784,-0.17124778384632322,-0.1709855037639543,-0.17072130297475485,-0.17045518486389907,-0.17018715283789693,-0.16991721032455315,-0.1696453607729236,-0.1693716076532724,-0.1690959544570285,-0.16881840469674192,-0.1685389619060402,-0.16825762963958396,-0.16797441147302297,-0.16768931100295123,-0.1674023318468624,-0.16711347764310489,-0.16682275205083635,-0.16653015874997829,-0.1662357014411711,-0.16593938384572693,-0.16564120970558413,-0.1653411827832609,-0.16503930686180884,-0.1647355857447659,-0.16443002325610923,-0.16412262324020813,-0.16381338956177655,-0.16350232610582519,-0.16318943677761374,-0.16287472550260257,-0.1625581962264045,-0.162239852914736,-0.16191969955336813,-0.16159774014807887,-0.16127397872460175,-0.16094841932857784,-0.16062106602550547,-0.1602919229006907,-0.15996099405919662,-0.15962828362579345,-0.15929379574490796,-0.15895753458057227,-0.15861950431637345,-0.1582797091554017,-0.15793815332019934,-0.1575948410527091,-0.15724977661422188,-0.1569029642853251,-0.15655440836585113,-0.15620411317482286,-0.15585208305040274,-0.15549832234983912,-0.15514283544941332,-0.15478562674438637,-0.15442670064894531,-0.15406606159614958,-0.15370371403787708,-0.15333966244476996,-0.15297391130618032,-0.15260646513011572,-0.1522373284431843,-0.1518665057905398,-0.1514940017358261,-0.15111982086112366,-0.15074396776689103,-0.15036644707191116,-0.14998726341323482,-0.14960642144612454,-0.1492239258439982,-0.14883978129837244,-0.1484539925188061,-0.14806656423284295,-0.14767750118595488,-0.14728680814148434,-0.1468944898805869,-0.14650055120217365,-0.1461049969228529,-0.14570783187687222,-0.14530906091606127,-0.1449086889097712,-0.14450672074481738,-0.14410316132542034,-0.1436980155731466,-0.14329128842684927,-0.14288298484260908,-0.14247310979367422,-0.14206166827040093,-0.14164866528019332,-0.14123410584744342,-0.1408179950134705,-0.1404003378364609,-0.13998113939140688,-0.13956040477004586,-0.1391381390808005,-0.1387143474487153,-0.13828903501539663,-0.13786220693895068,-0.13743386839392194,-0.13700402457123093,-0.13657268067811218,-0.13613984193805193,-0.13570551359072566,-0.13526970089193527,-0.13483240911354652,-0.13439364354342567,-0.13395340948537662,-0.13351171225907743,-0.13306855720001617,-0.1326239496594294,-0.13217789500423519,-0.1317303986169714,-0.13128146589573036,-0.13083110225409525,-0.130379313121075,-0.1299261039410398,-0.12947148017365645,-0.12901544729382283,-0.1285580107916034,-0.12809917617216315,-0.12763894895570269,-0.12717733467739217,-0.12671433888730568,-0.12624996715035475,-0.1257842250462241,-0.1253171181693024,-0.12484865212861793,-0.12437883254777123,-0.12390766506486857,-0.12343515533245485,-0.12296130901744683,-0.1224861318010654,-0.12200962937876875,-0.12153180746018441,-0.1210526717690419,-0.12057222804310468,-0.12009048203410227,-0.11960743950766228,-0.11912310624324125,-0.11863748803405867,-0.11815059068702506,-0.11766242002267566,-0.11717298187510067,-0.11668228209187642,-0.11619032653399651,-0.11569712107580217,-0.11520267160491295,-0.1147069840221571,-0.11421006424150228,-0.11371191818998516,-0.11321255180764182,-0.11271197104743766,-0.11221018187519631,-0.11170719026953176,-0.1112030022217745,-0.11069762373590292,-0.11019106082847227,-0.10968331952854343,-0.10917440587761214,-0.10866432592953765,-0.10815308575047168,-0.10764069141878665,-0.10712714902500449,-0.1066124646717247,-0.1060966444735527,-0.1055796945570279,-0.10506162106055157,-0.10454243013431419,-0.10402212794022528,-0.1035007206518379,-0.10297821445427796,-0.10245461554417148,-0.10192993012957131,-0.1014041644298847,-0.1008773246757999,-0.1003494171092134,-0.09982044798315641,-0.09929042356172169,-0.0987593501199899,-0.09822723394395635,-0.09769408133045676,-0.09715989858709413,-0.09662469203216371,-0.09608846799458157,-0.09555123281380688,-0.09501299283977004,-0.0944737544327978,-0.09393352396353868,-0.09339230781288858,-0.09285011237191595,-0.09230694404178717,-0.09176280923369157,-0.09121771436876656,-0.09067166587802249,-0.09012467020226761,-0.08957673379203254,-0.08902786310749525,-0.08847806461840466,-0.08792734480400773,-0.08737571015297016,-0.08682316716330286,-0.08626972234228582,-0.08571538220639184,-0.08516015328121083,-0.08460404210137339,-0.08404705521047484,-0.08348919916099874,-0.08293048051424062,-0.08237090584023152,-0.08181048171766128,-0.08124921473380213,-0.08068711148443171,-0.08012417857375581,-0.07956042261433384,-0.07899585022699822,-0.07843046804077976,-0.07786428269282988,-0.07729730082834346,-0.07672952910048138,-0.07616097417029327,-0.0755916427066401,-0.07502154138611655,-0.07445067689297338,-0.07387905591903984,-0.07330668516364583,-0.07273357133354419,-0.07215972114283267,-0.07158514131287541,-0.0710098385722274,-0.07043381965655256,-0.06985709130854814,-0.06927966027786583,-0.06870153332103349,-0.06812271720137661,-0.06754321868894013,-0.06696304456040968,-0.06638220159903317,-0.06580069659454219,-0.06521853634307317,-0.06463572764708876,-0.06405227731529903,-0.0634681921625825,-0.06288347900990669,-0.06229814468425155,-0.06171219601852686,-0.061125639851495404,-0.06053848302769333,-0.05995073239735103,-0.05936239481631374,-0.05877347714596234,-0.05818398625313396,-0.05759392901004264,-0.05700331229419985,-0.05641214298833501,-0.05582042798031591,-0.05522817416306922,-0.05463538843450082,-0.05404207769741545,-0.05344824885943958,-0.05285390883293787,-0.052259064534935895,-0.05166372288703962,-0.051067890815355656,-0.05047157525041121,-0.04987478312707422,-0.04927752138447336,-0.048679796965917996,-0.04808161681881813,-0.047482987894604374,-0.046883917148647744,-0.04628441154017955,-0.04568447803221126,-0.045084123591453557,-0.044483355188238705,-0.043882179796436445,-0.04328060439337627,-0.04267863595976641,-0.04207628147961355,-0.041473547940142484,-0.040870442331715516,-0.04026697164775232,-0.03966314288464934,-0.03905896304169939,-0.03845443912101109,-0.03784957812742847,-0.03724438706845042,-0.03663887295415016,-0.03603304279709402,-0.035426903612263465,-0.034820462416970656,-0.034213726230780506,-0.03360670207542932,-0.03299939697474418,-0.03239181795456248,-0.03178397204265109,-0.031175866268625833,-0.030567507663870844,-0.0299589032614578,-0.02935006009606539,-0.028740985203898547,-0.028131685622607837,-0.027522168391208773,-0.026912440550000465,-0.026302509140487502,-0.025692381205295493,-0.025082063788092898,-0.02447156393350969,-0.023860888687056752,-0.023250045095045132,-0.022639040204505422,-0.02202788106310705,-0.021416574719077704,-0.020805128221122578,-0.020193548618343823,-0.019581842960159863,-0.018970018296224765,-0.01835808167634767,-0.017746040150411518,-0.017133900768295036,-0.016521670579788286,-0.015909356634514742,-0.015296965981850008,-0.014684505670841367,-0.014071982750127224,-0.013459404267856625,-0.012846777271608791,-0.012234108808312648,-0.011621405924166384,-0.01100867566455706,-0.010395925073980202,-0.009783161195959438,-0.009170391072966152,-0.008557621746338522,-0.0079448602562038,-0.007332113641394197,-0.00671938893936921,-0.00610669318613476,-0.00549403341616305,-0.004881416662312368,-0.004268849955747004,-0.003656340325857159,-0.0030438948001788937,-0.0024315204043141078,-0.0018192241618505646,-0.0012070130942819454,-0.0005948942209279397,1.712544114562408e-5,0.0006290388772072487,0.0012408390749369996,0.001852519024510098,0.0024640717186740642,0.003075490152829031,0.0036867673251073634,0.004297896236453242,0.004908869890702185,0.005519681294660557,0.006130323458184987,0.006740789394261781,0.007351072119086252,0.007961164652142031,0.00857106001628029,0.009180751237798958,0.009790231346522479,0.010399493375878371,0.011008530362980063,0.011617335348703331,0.01222590137776588,0.012834221498806166,0.013442288764462244,0.014050096231450503,0.014657636960644349,0.015264904017152857,0.015871890470399302,0.01647858939419972,0.017084993866841303,0.017691096971160798,0.018296891794622835,0.018902371429398785,0.01950752897244243,0.020112357525571875,0.02071685019554506,0.02132100009413837,0.021924800338224526,0.0225282440498505,0.02313132435631516,0.02373403439024707,0.02433636728968204,0.02493831619814074,0.025539874264706094,0.02614103464410071,0.026741790496764242,0.02734213498893054,0.02794206129270549,0.028541562586141638,0.029140632053318825,0.029739262884418725,0.03033744827580222,0.030935181430086205,0.031532455556220265,0.032129263869563225,0.032725599591959656,0.03332145595181633,0.03391682618417846,0.03451170353080607,0.03510608124025004,0.03569995256792816,0.036293310776201196,0.036886149134449285,0.0374784609191453,0.03807023941393426,0.03866147790970638,0.039252169704673295,0.039842308104443405,0.040431886422097225,0.04102089797826249,0.041609336101189456,0.04219719412682574,0.04278446539889133,0.04337114326895337,0.04395722109650091,0.04454269224901944,0.045127550102065456,0.045711788039341485,0.046295399452767894,0.0468783777425608,0.04746071631730364,0.04804240859402181,0.048623447998256575,0.0492038279641387,0.04978354193446226,0.050362583360758044,0.050940945703367074,0.051518622431513915,0.05209560702337976,0.052671892966175714,0.053247473756215594,0.053822342898988886,0.05439649390923409,0.05496992031100881,0.05554261563776605,0.056114573432424146,0.05668578724743952,0.05725625064487894,0.057825957196491536,0.05839490048378064,0.05896307409807565,0.05953047164060362,0.06009708672256087,0.06066291296518431,0.06122794399982272,0.061792173468008006,0.06235559502152613,0.06291820232248864,0.06347998904340103,0.06404094886723703,0.06460107548750664,0.06516036260832714,0.06571880394449328,0.06627639322154759,0.06683312417585004],"x":[3.0,3.0033986405437827,3.006797281087565,3.0101959216313476,3.01359456217513,3.0169932027189126,3.020391843262695,3.0237904838064775,3.0271891243502598,3.0305877648940425,3.0339864054378247,3.0373850459816074,3.0407836865253897,3.0441823270691724,3.0475809676129546,3.0509796081567373,3.05437824870052,3.0577768892443022,3.061175529788085,3.064574170331867,3.06797281087565,3.071371451419432,3.074770091963215,3.078168732506997,3.0815673730507798,3.084966013594562,3.0883646541383447,3.091763294682127,3.0951619352259097,3.098560575769692,3.1019592163134746,3.1053578568572573,3.1087564974010395,3.1121551379448222,3.1155537784886045,3.118952419032387,3.1223510595761694,3.125749700119952,3.1291483406637344,3.132546981207517,3.1359456217512993,3.139344262295082,3.1427429028388643,3.146141543382647,3.1495401839264296,3.152938824470212,3.1563374650139946,3.159736105557777,3.1631347461015595,3.166533386645342,3.1699320271891245,3.1733306677329067,3.1767293082766894,3.1801279488204717,3.1835265893642544,3.1869252299080366,3.1903238704518193,3.1937225109956016,3.1971211515393843,3.200519792083167,3.203918432626949,3.207317073170732,3.210715713714514,3.214114354258297,3.217512994802079,3.220911635345862,3.224310275889644,3.2277089164334267,3.231107556977209,3.2345061975209917,3.237904838064774,3.2413034786085566,3.244702119152339,3.2481007596961216,3.2514994002399042,3.2548980407836865,3.258296681327469,3.2616953218712514,3.265093962415034,3.2684926029588164,3.271891243502599,3.2752898840463813,3.278688524590164,3.2820871651339463,3.285485805677729,3.288884446221511,3.292283086765294,3.295681727309076,3.299080367852859,3.3024790083966415,3.305877648940424,3.3092762894842065,3.3126749300279887,3.3160735705717714,3.3194722111155537,3.3228708516593364,3.3262694922031186,3.3296681327469013,3.3330667732906836,3.3364654138344663,3.3398640543782485,3.343262694922031,3.3466613354658135,3.350059976009596,3.353458616553379,3.356857257097161,3.360255897640944,3.363654538184726,3.3670531787285087,3.370451819272291,3.3738504598160737,3.377249100359856,3.3806477409036386,3.384046381447421,3.3874450219912036,3.390843662534986,3.3942423030787685,3.3976409436225508,3.4010395841663335,3.404438224710116,3.4078368652538984,3.411235505797681,3.4146341463414633,3.418032786885246,3.4214314274290283,3.424830067972811,3.4282287085165932,3.431627349060376,3.435025989604158,3.438424630147941,3.441823270691723,3.445221911235506,3.4486205517792885,3.4520191923230708,3.4554178328668534,3.4588164734106357,3.4622151139544184,3.4656137544982006,3.4690123950419833,3.4724110355857656,3.4758096761295483,3.4792083166733305,3.482606957217113,3.4860055977608955,3.489404238304678,3.4928028788484604,3.496201519392243,3.499600159936026,3.502998800479808,3.5063974410235907,3.509796081567373,3.5131947221111557,3.516593362654938,3.5199920031987206,3.523390643742503,3.5267892842862856,3.530187924830068,3.5335865653738505,3.5369852059176328,3.5403838464614155,3.5437824870051977,3.5471811275489804,3.550579768092763,3.5539784086365453,3.557377049180328,3.5607756897241103,3.564174330267893,3.5675729708116752,3.570971611355458,3.57437025189924,3.577768892443023,3.581167532986805,3.584566173530588,3.58796481407437,3.5913634546181528,3.594762095161935,3.5981607357057177,3.6015593762495004,3.6049580167932826,3.6083566573370653,3.6117552978808476,3.6151539384246303,3.6185525789684125,3.6219512195121952,3.6253498600559775,3.62874850059976,3.6321471411435424,3.635545781687325,3.6389444222311074,3.64234306277489,3.6457417033186723,3.649140343862455,3.6525389844062377,3.65593762495002,3.6593362654938026,3.662734906037585,3.6661335465813676,3.66953218712515,3.6729308276689325,3.676329468212715,3.6797281087564975,3.6831267493002797,3.6865253898440624,3.6899240303878447,3.6933226709316274,3.69672131147541,3.7001199520191923,3.703518592562975,3.7069172331067572,3.71031587365054,3.713714514194322,3.717113154738105,3.720511795281887,3.72391043582567,3.727309076369452,3.7307077169132348,3.734106357457017,3.7375049980007997,3.740903638544582,3.7443022790883647,3.7477009196321474,3.7510995601759296,3.7544982007197123,3.7578968412634945,3.7612954818072772,3.7646941223510595,3.768092762894842,3.7714914034386244,3.774890043982407,3.7782886845261894,3.781687325069972,3.7850859656137543,3.788484606157537,3.7918832467013193,3.795281887245102,3.7986805277888847,3.802079168332667,3.8054778088764496,3.808876449420232,3.8122750899640145,3.815673730507797,3.8190723710515795,3.8224710115953617,3.8258696521391444,3.8292682926829267,3.8326669332267094,3.8360655737704916,3.8394642143142743,3.8428628548580566,3.8462614954018393,3.849660135945622,3.853058776489404,3.856457417033187,3.859856057576969,3.863254698120752,3.866653338664534,3.870051979208317,3.873450619752099,3.8768492602958817,3.880247900839664,3.8836465413834467,3.887045181927229,3.8904438224710116,3.893842463014794,3.8972411035585766,3.9006397441023593,3.9040383846461415,3.907437025189924,3.9108356657337064,3.914234306277489,3.9176329468212714,3.921031587365054,3.9244302279088363,3.927828868452619,3.9312275089964013,3.934626149540184,3.938024790083966,3.941423430627749,3.9448220711715316,3.948220711715314,3.9516193522590966,3.955017992802879,3.9584166333466615,3.9618152738904437,3.9652139144342264,3.9686125549780087,3.9720111955217914,3.9754098360655736,3.9788084766093563,3.9822071171531386,3.9856057576969213,3.9890043982407035,3.992403038784486,3.995801679328269,3.999200319872051,4.002598960415834,4.005997600959616,4.009396241503398,4.0127948820471815,4.016193522590964,4.019592163134746,4.022990803678528,4.026389444222311,4.029788084766094,4.033186725309876,4.036585365853658,4.039984006397441,4.0433826469412235,4.046781287485006,4.050179928028789,4.053578568572571,4.056977209116353,4.060375849660136,4.063774490203919,4.067173130747701,4.070571771291483,4.0739704118352655,4.077369052379049,4.080767692922831,4.084166333466613,4.087564974010395,4.090963614554179,4.094362255097961,4.097760895641743,4.101159536185526,4.1045581767293084,4.107956817273091,4.111355457816873,4.114754098360656,4.118152738904438,4.121551379448221,4.124950019992003,4.128348660535786,4.131747301079568,4.1351459416233505,4.138544582167133,4.141943222710916,4.145341863254698,4.14874050379848,4.1521391443422635,4.155537784886046,4.158936425429828,4.16233506597361,4.165733706517393,4.169132347061176,4.172530987604958,4.17592962814874,4.179328268692523,4.1827269092363055,4.186125549780088,4.18952419032387,4.192922830867653,4.196321471411435,4.199720111955218,4.203118752499001,4.206517393042783,4.209916033586565,4.2133146741303475,4.216713314674131,4.220111955217913,4.223510595761695,4.226909236305477,4.230307876849261,4.233706517393043,4.237105157936825,4.240503798480607,4.2439024390243905,4.247301079568173,4.250699720111955,4.254098360655738,4.25749700119952,4.260895641743303,4.264294282287085,4.267692922830868,4.27109156337465,4.2744902039184325,4.277888844462215,4.281287485005998,4.28468612554978,4.288084766093562,4.291483406637345,4.294882047181128,4.29828068772491,4.301679328268692,4.305077968812475,4.308476609356258,4.31187524990004,4.315273890443822,4.318672530987605,4.3220711715313875,4.32546981207517,4.328868452618952,4.332267093162735,4.335665733706517,4.3390643742503,4.342463014794083,4.345861655337865,4.349260295881647,4.35265893642543,4.356057576969213,4.359456217512995,4.362854858056777,4.3662534986005594,4.369652139144343,4.373050779688125,4.376449420231907,4.379848060775689,4.3832467013194725,4.386645341863255,4.390043982407037,4.39344262295082,4.396841263494602,4.400239904038385,4.403638544582167,4.40703718512595,4.410435825669732,4.4138344662135145,4.417233106757297,4.42063174730108,4.424030387844862,4.427429028388644,4.430827668932427,4.43422630947621,4.437624950019992,4.441023590563774,4.444422231107557,4.44782087165134,4.451219512195122,4.454618152738904,4.458016793282687,4.4614154338264695,4.464814074370252,4.468212714914034,4.471611355457817,4.475009996001599,4.478408636545382,4.481807277089164,4.485205917632947,4.488604558176729,4.492003198720512,4.495401839264295,4.498800479808077,4.502199120351859,4.5055977608956415,4.508996401439425,4.512395041983207,4.515793682526989,4.519192323070771,4.5225909636145545,4.525989604158337,4.529388244702119,4.532786885245901,4.536185525789684,4.539584166333467,4.542982806877249,4.546381447421032,4.549780087964814,4.5531787285085965,4.556577369052379,4.559976009596162,4.563374650139944,4.566773290683726,4.570171931227509,4.573570571771292,4.576969212315074,4.580367852858856,4.5837664934026385,4.587165133946422,4.590563774490204,4.593962415033986,4.597361055577769,4.600759696121552,4.604158336665334,4.607556977209116,4.610955617752899,4.614354258296681,4.617752898840464,4.621151539384246,4.624550179928029,4.627948820471811,4.631347461015594,4.634746101559376,4.638144742103159,4.641543382646941,4.6449420231907235,4.648340663734507,4.651739304278289,4.655137944822071,4.658536585365853,4.6619352259096365,4.665333866453419,4.668732506997201,4.672131147540983,4.675529788084766,4.678928428628549,4.682327069172331,4.685725709716113,4.689124350259896,4.6925229908036785,4.695921631347461,4.699320271891244,4.702718912435026,4.706117552978808,4.709516193522591,4.712914834066374,4.716313474610156,4.719712115153938,4.7231107556977205,4.726509396241504,4.729908036785286,4.733306677329068,4.73670531787285,4.740103958416634,4.743502598960416,4.746901239504198,4.750299880047981,4.7536985205917635,4.757097161135546,4.760495801679328,4.763894442223111,4.767293082766893,4.770691723310676,4.774090363854458,4.777489004398241,4.780887644942023,4.7842862854858055,4.787684926029588,4.791083566573371,4.794482207117153,4.797880847660935,4.8012794882047185,4.804678128748501,4.808076769292283,4.811475409836065,4.814874050379848,4.818272690923631,4.821671331467413,4.825069972011195,4.828468612554978,4.8318672530987605,4.835265893642543,4.838664534186325,4.842063174730108,4.84546181527389,4.848860455817673,4.852259096361456,4.855657736905238,4.85905637744902,4.8624550179928026,4.865853658536586,4.869252299080368,4.87265093962415,4.876049580167932,4.879448220711716,4.882846861255498,4.88624550179928,4.889644142343063,4.8930427828868455,4.896441423430628,4.89984006397441,4.903238704518193,4.906637345061975,4.910035985605758,4.91343462614954,4.916833266693323,4.920231907237105,4.9236305477808875,4.92702918832467,4.930427828868453,4.933826469412235,4.937225109956017,4.9406237504998005,4.944022391043583,4.947421031587365,4.950819672131147,4.95421831267493,4.957616953218713,4.961015593762495,4.964414234306277,4.96781287485006,4.9712115153938425,4.974610155937625,4.978008796481407,4.98140743702519,4.984806077568972,4.988204718112755,4.991603358656538,4.99500199920032,4.998400639744102,5.001799280287885,5.005197920831668,5.00859656137545,5.011995201919232,5.0153938424630145,5.018792483006798,5.02219112355058,5.025589764094362,5.028988404638144,5.0323870451819275,5.03578568572571,5.039184326269492,5.042582966813275,5.045981607357057,5.04938024790084,5.052778888444622,5.056177528988405,5.059576169532187,5.0629748100759695,5.066373450619752,5.069772091163535,5.073170731707317,5.076569372251099,5.079968012794882,5.083366653338665,5.086765293882447,5.090163934426229,5.093562574970012,5.096961215513795,5.100359856057577,5.103758496601359,5.107157137145142,5.1105557776889246,5.113954418232707,5.117353058776489,5.120751699320272,5.124150339864054,5.127548980407837,5.130947620951619,5.134346261495402,5.137744902039184,5.141143542582967,5.14454218312675,5.147940823670532,5.151339464214314,5.1547381047580965,5.15813674530188,5.161535385845662,5.164934026389444,5.168332666933226,5.1717313074770095,5.175129948020792,5.178528588564574,5.181927229108356,5.185325869652139,5.188724510195922,5.192123150739704,5.195521791283487,5.198920431827269,5.2023190723710515,5.205717712914834,5.209116353458617,5.212514994002399,5.215913634546181,5.219312275089964,5.222710915633747,5.226109556177529,5.229508196721311,5.2329068372650935,5.236305477808877,5.239704118352659,5.243102758896441,5.246501399440224,5.249900039984007,5.253298680527789,5.256697321071571,5.260095961615354,5.2634946021591364,5.266893242702919,5.270291883246701,5.273690523790484,5.277089164334266,5.280487804878049,5.283886445421831,5.287285085965614,5.290683726509396,5.2940823670531785,5.297481007596962,5.300879648140744,5.304278288684526,5.307676929228308,5.3110755697720915,5.314474210315874,5.317872850859656,5.321271491403438,5.324670131947221,5.328068772491004,5.331467413034786,5.334866053578568,5.338264694122351,5.3416633346661335,5.345061975209916,5.348460615753699,5.351859256297481,5.355257896841263,5.358656537385046,5.362055177928829,5.365453818472611,5.368852459016393,5.3722510995601755,5.375649740103959,5.379048380647741,5.382447021191523,5.385845661735305,5.389244302279089,5.392642942822871,5.396041583366653,5.399440223910436,5.4028388644542185,5.406237504998001,5.409636145541783,5.413034786085566,5.416433426629348,5.419832067173131,5.423230707716913,5.426629348260696,5.430027988804478,5.4334266293482605,5.436825269892044,5.440223910435826,5.443622550979608,5.44702119152339,5.4504198320671735,5.453818472610956,5.457217113154738,5.46061575369852,5.464014394242303,5.467413034786086,5.470811675329868,5.47421031587365,5.477608956417433,5.4810075969612155,5.484406237504998,5.487804878048781,5.491203518592563,5.494602159136345,5.498000799680128,5.501399440223911,5.504798080767693,5.508196721311475,5.511595361855258,5.514994002399041,5.518392642942823,5.521791283486605,5.5251899240303874,5.528588564574171,5.531987205117953,5.535385845661735,5.538784486205518,5.5421831267493005,5.545581767293083,5.548980407836865,5.552379048380648,5.55577768892443,5.559176329468213,5.562574970011995,5.565973610555778,5.56937225109956,5.5727708916433425,5.576169532187125,5.579568172730908,5.58296681327469,5.586365453818472,5.5897640943622555,5.593162734906038,5.59656137544982,5.599960015993602,5.603358656537385,5.606757297081168,5.61015593762495,5.613554578168732,5.616953218712515,5.6203518592562975,5.62375049980008,5.627149140343862,5.630547780887645,5.633946421431427,5.63734506197521,5.640743702518993,5.644142343062775,5.647540983606557,5.65093962415034,5.654338264694123,5.657736905237905,5.661135545781687,5.6645341863254695,5.667932826869253,5.671331467413035,5.674730107956817,5.678128748500599,5.6815273890443825,5.684926029588165,5.688324670131947,5.69172331067573,5.695121951219512,5.698520591763295,5.701919232307077,5.70531787285086,5.708716513394642,5.7121151539384245,5.715513794482207,5.71891243502599,5.722311075569772,5.725709716113554,5.729108356657337,5.73250699720112,5.735905637744902,5.739304278288684,5.742702918832467,5.74610155937625,5.749500199920032,5.752898840463814,5.756297481007597,5.7596961215513796,5.763094762095162,5.766493402638944,5.769892043182727,5.773290683726509,5.776689324270292,5.780087964814074,5.783486605357857,5.786885245901639,5.790283886445422,5.793682526989205,5.797081167532987,5.800479808076769,5.8038784486205515,5.807277089164335,5.810675729708117,5.814074370251899,5.817473010795681,5.8208716513394645,5.824270291883247,5.827668932427029,5.831067572970811,5.834466213514594,5.837864854058377,5.841263494602159,5.844662135145942,5.848060775689724,5.8514594162335065,5.854858056777289,5.858256697321072,5.861655337864854,5.865053978408636,5.868452618952419,5.871851259496202,5.875249900039984,5.878648540583766,5.8820471811275485,5.885445821671332,5.888844462215114,5.892243102758896,5.895641743302679,5.899040383846462,5.902439024390244,5.905837664934026,5.909236305477809,5.9126349460215915,5.916033586565374,5.919432227109156,5.922830867652939,5.926229508196721,5.929628148740504,5.933026789284287,5.936425429828069,5.939824070371851,5.9432227109156335,5.946621351459417,5.950019992003199,5.953418632546981,5.956817273090763,5.9602159136345465,5.963614554178329,5.967013194722111,5.970411835265893,5.973810475809676,5.977209116353459,5.980607756897241,5.984006397441024,5.987405037984806,5.9908036785285885,5.994202319072371,5.997600959616154,6.000999600159936,6.004398240703718,6.007796881247501,6.011195521791284,6.014594162335066,6.017992802878848,6.0213914434226306,6.024790083966414,6.028188724510196,6.031587365053978,6.034986005597761,6.038384646141544,6.041783286685326,6.045181927229108,6.048580567772891,6.0519792083166735,6.055377848860456,6.058776489404238,6.062175129948021,6.065573770491803,6.068972411035586,6.072371051579368,6.075769692123151,6.079168332666933,6.0825669732107155,6.085965613754499,6.089364254298281,6.092762894842063,6.096161535385845,6.0995601759296285,6.102958816473411,6.106357457017193,6.109756097560975,6.113154738104758,6.116553378648541,6.119952019192323,6.123350659736105,6.126749300279888,6.1301479408236705,6.133546581367453,6.136945221911236,6.140343862455018,6.1437425029988,6.147141143542583,6.150539784086366,6.153938424630148,6.15733706517393,6.160735705717713,6.164134346261496,6.167532986805278,6.17093162734906,6.1743302678928424,6.177728908436626,6.181127548980408,6.18452618952419,6.187924830067973,6.1913234706117555,6.194722111155538,6.19812075169932,6.201519392243103,6.204918032786885,6.208316673330668,6.21171531387445,6.215113954418233,6.218512594962015,6.2219112355057975,6.22530987604958,6.228708516593363,6.232107157137145,6.235505797680927,6.2389044382247105,6.242303078768493,6.245701719312275,6.249100359856057,6.25249900039984,6.255897640943623,6.259296281487405,6.262694922031187,6.26609356257497,6.2694922031187525,6.272890843662535,6.276289484206317,6.2796881247501,6.283086765293882,6.286485405837665,6.289884046381448,6.29328268692523,6.296681327469012,6.300079968012795,6.303478608556578,6.30687724910036,6.310275889644142,6.3136745301879245,6.317073170731708,6.32047181127549,6.323870451819272,6.327269092363054,6.3306677329068375,6.33406637345062,6.337465013994402,6.340863654538185,6.344262295081967,6.34766093562575,6.351059576169532,6.354458216713315,6.357856857257097,6.3612554978008795,6.364654138344662,6.368052778888445,6.371451419432227,6.374850059976009,6.378248700519792,6.381647341063575,6.385045981607357,6.388444622151139,6.391843262694922,6.395241903238705,6.398640543782487,6.402039184326269,6.405437824870052,6.408836465413835,6.412235105957617,6.415633746501399,6.419032387045182,6.4224310275889644,6.425829668132747,6.429228308676529,6.432626949220312,6.436025589764094,6.439424230307877,6.44282287085166,6.446221511395442,6.449620151939224,6.4530187924830065,6.45641743302679,6.459816073570572,6.463214714114354,6.466613354658136,6.4700119952019195,6.473410635745702,6.476809276289484,6.480207916833267,6.483606557377049,6.487005197920832,6.490403838464614,6.493802479008397,6.497201119552179,6.5005997600959615,6.503998400639744,6.507397041183527,6.510795681727309,6.514194322271091,6.517592962814874,6.520991603358657,6.524390243902439,6.527788884446221,6.531187524990004,6.534586165533787,6.537984806077569,6.541383446621351,6.544782087165134,6.548180727708917,6.551579368252699,6.554978008796481,6.558376649340264,6.5617752898840465,6.565173930427829,6.568572570971611,6.571971211515394,6.575369852059176,6.578768492602959,6.582167133146742,6.585565773690524,6.588964414234306,6.5923630547780885,6.595761695321872,6.599160335865654,6.602558976409436,6.605957616953218,6.6093562574970015,6.612754898040784,6.616153538584566,6.619552179128348,6.622950819672131,6.626349460215914,6.629748100759696,6.633146741303479,6.636545381847261,6.6399440223910435,6.643342662934826,6.646741303478609,6.650139944022391,6.653538584566173,6.656937225109956,6.660335865653739,6.663734506197521,6.667133146741303,6.670531787285086,6.673930427828869,6.677329068372651,6.680727708916433,6.684126349460216,6.687524990003999,6.690923630547781,6.694322271091563,6.697720911635346,6.7011195521791285,6.704518192722911,6.707916833266693,6.711315473810476,6.714714114354258,6.718112754898041,6.721511395441823,6.724910035985606,6.728308676529388,6.7317073170731705,6.735105957616954,6.738504598160736,6.741903238704518,6.7453018792483,6.7487005197920835,6.752099160335866,6.755497800879648,6.75889644142343,6.762295081967213,6.765693722510996,6.769092363054778,6.77249100359856,6.775889644142343,6.7792882846861255,6.782686925229908,6.786085565773691,6.789484206317473,6.792882846861255,6.796281487405038,6.799680127948821,6.803078768492603,6.806477409036385,6.809876049580168,6.813274690123951,6.816673330667733,6.820071971211515,6.8234706117552975,6.826869252299081,6.830267892842863,6.833666533386645,6.837065173930428,6.8404638144742105,6.843862455017993,6.847261095561775,6.850659736105558,6.85405837664934,6.857457017193123,6.860855657736905,6.864254298280688,6.86765293882447,6.8710515793682525,6.874450219912035,6.877848860455818,6.8812475009996,6.884646141543382,6.8880447820871655,6.891443422630948,6.89484206317473,6.898240703718512,6.901639344262295,6.905037984806078,6.90843662534986,6.911835265893642,6.915233906437425,6.9186325469812076,6.92203118752499,6.925429828068772,6.928828468612555,6.932227109156337,6.93562574970012,6.939024390243903,6.942423030787685,6.945821671331467,6.94922031187525,6.952618952419033,6.956017592962815,6.959416233506597,6.9628148740503795,6.966213514594163,6.969612155137945,6.973010795681727,6.976409436225509,6.9798080767692925,6.983206717313075,6.986605357856857,6.99000399840064,6.993402638944422,6.996801279488205,7.000199920031987,7.00359856057577,7.006997201119552,7.0103958416633345,7.013794482207117,7.0171931227509,7.020591763294682,7.023990403838464,7.0273890443822475,7.03078768492603,7.034186325469812,7.037584966013594,7.040983606557377,7.04438224710116,7.047780887644942,7.051179528188724,7.054578168732507,7.05797680927629,7.061375449820072,7.064774090363854,7.068172730907637,7.0715713714514195,7.074970011995202,7.078368652538985,7.081767293082767,7.085165933626549,7.088564574170332,7.091963214714115,7.095361855257897,7.098760495801679,7.1021591363454615,7.105557776889245,7.108956417433027,7.112355057976809,7.115753698520591,7.1191523390643745,7.122550979608157,7.125949620151939,7.129348260695722,7.132746901239504,7.136145541783287,7.139544182327069,7.142942822870852,7.146341463414634,7.1497401039584165,7.153138744502199,7.156537385045982,7.159936025589764,7.163334666133546,7.166733306677329,7.170131947221112,7.173530587764894,7.176929228308676,7.180327868852459,7.183726509396242,7.187125149940024,7.190523790483806,7.193922431027589,7.197321071571372,7.200719712115154,7.204118352658936,7.207516993202719,7.2109156337465015,7.214314274290284,7.217712914834066,7.221111555377849,7.224510195921631,7.227908836465414,7.231307477009197,7.234706117552979,7.238104758096761,7.2415033986405435,7.244902039184327,7.248300679728109,7.251699320271891,7.255097960815673,7.2584966013594565,7.261895241903239,7.265293882447021,7.268692522990803,7.272091163534586,7.275489804078369,7.278888444622151,7.282287085165934,7.285685725709716,7.2890843662534985,7.292483006797281,7.295881647341064,7.299280287884846,7.302678928428628,7.306077568972411,7.309476209516194,7.312874850059976,7.316273490603758,7.319672131147541,7.323070771691324,7.326469412235106,7.329868052778888,7.333266693322671,7.336665333866454,7.340063974410236,7.343462614954018,7.346861255497801,7.3502598960415835,7.353658536585366,7.357057177129148,7.360455817672931,7.363854458216713,7.367253098760496,7.370651739304278,7.374050379848061,7.377449020391843,7.3808476609356255,7.384246301479409,7.387644942023191,7.391043582566973,7.394442223110755,7.3978408636545385,7.401239504198321,7.404638144742103,7.408036785285885,7.411435425829668,7.414834066373451,7.418232706917233,7.421631347461015,7.425029988004798,7.4284286285485805,7.431827269092363,7.435225909636146,7.438624550179928,7.44202319072371,7.445421831267493,7.448820471811276,7.452219112355058,7.45561775289884,7.459016393442623,7.462415033986406,7.465813674530188,7.46921231507397,7.4726109556177525,7.476009596161536,7.479408236705318,7.4828068772491,7.486205517792883,7.4896041583366655,7.493002798880448,7.49640143942423,7.499800079968013,7.503198720511795,7.506597361055578,7.50999600159936,7.513394642143143,7.516793282686925,7.5201919232307075,7.523590563774491,7.526989204318273,7.530387844862055,7.533786485405837,7.5371851259496205,7.540583766493403,7.543982407037185,7.547381047580967,7.55077968812475,7.554178328668533,7.557576969212315,7.560975609756097,7.56437425029988,7.567772890843663,7.571171531387445,7.574570171931228,7.57796881247501,7.5813674530187924,7.584766093562575,7.588164734106358,7.59156337465014,7.594962015193922,7.598360655737705,7.601759296281488,7.60515793682527,7.608556577369052,7.6119552179128345,7.615353858456618,7.6187524990004,7.622151139544182,7.625549780087965,7.6289484206317475,7.63234706117553,7.635745701719312,7.639144342263095,7.642542982806877,7.64594162335066,7.649340263894442,7.652738904438225,7.656137544982007,7.6595361855257895,7.662934826069572,7.666333466613355,7.669732107157137,7.673130747700919,7.6765293882447025,7.679928028788485,7.683326669332267,7.686725309876049,7.690123950419832,7.693522590963615,7.696921231507397,7.700319872051179,7.703718512594962,7.707117153138745,7.710515793682527,7.713914434226309,7.717313074770092,7.7207117153138745,7.724110355857657,7.72750899640144,7.730907636945222,7.734306277489004,7.737704918032787,7.74110355857657,7.744502199120352,7.747900839664134,7.7512994802079165,7.7546981207517,7.758096761295482,7.761495401839264,7.764894042383046,7.7682926829268295,7.771691323470612,7.775089964014394,7.778488604558177,7.781887245101959,7.785285885645742,7.788684526189524,7.792083166733307,7.795481807277089,7.7988804478208715,7.802279088364654,7.805677728908437,7.809076369452219,7.812475009996001,7.815873650539784,7.819272291083567,7.822670931627349,7.826069572171131,7.829468212714914,7.832866853258697,7.836265493802479,7.839664134346261,7.843062774890044,7.846461415433827,7.849860055977609,7.853258696521391,7.856657337065174,7.8600559776089565,7.863454618152739,7.866853258696521,7.870251899240304,7.873650539784086,7.877049180327869,7.880447820871652,7.883846461415434,7.887245101959216,7.8906437425029985,7.894042383046782,7.897441023590564,7.900839664134346,7.904238304678128,7.9076369452219115,7.911035585765694,7.914434226309476,7.917832866853258,7.921231507397041,7.924630147940824,7.928028788484606,7.931427429028389,7.934826069572171,7.9382247101159535,7.941623350659736,7.945021991203519,7.948420631747301,7.951819272291083,7.955217912834866,7.958616553378649,7.962015193922431,7.965413834466213,7.968812475009996,7.972211115553779,7.975609756097561,7.979008396641343,7.982407037185126,7.985805677728909,7.989204318272691,7.992602958816473,7.996001599360256,7.9994002399040385,8.002798880447822,8.006197520991604,8.009596161535386,8.012994802079168,8.01639344262295,8.019792083166733,8.023190723710515,8.0265893642543,8.029988004798081,8.033386645341864,8.036785285885646,8.040183926429428,8.04358256697321,8.046981207516993,8.050379848060775,8.053778488604559,8.057177129148341,8.060575769692123,8.063974410235906,8.067373050779688,8.07077169132347,8.074170331867252,8.077568972411036,8.080967612954819,8.084366253498601,8.087764894042383,8.091163534586165,8.094562175129948,8.09796081567373,8.101359456217512,8.104758096761296,8.108156737305078,8.11155537784886,8.114954018392643,8.118352658936425,8.121751299480207,8.12514994002399,8.128548580567774,8.131947221111556,8.135345861655338,8.13874450219912,8.142143142742903,8.145541783286685,8.148940423830467,8.15233906437425,8.155737704918034,8.159136345461816,8.162534986005598,8.16593362654938,8.169332267093163,8.172730907636945,8.176129548180727,8.179528188724511,8.182926829268293,8.186325469812076,8.189724110355858,8.19312275089964,8.196521391443422,8.199920031987205,8.203318672530987,8.20671731307477,8.210115953618553,8.213514594162335,8.216913234706118,8.2203118752499,8.223710515793682,8.227109156337464,8.230507796881248,8.23390643742503,8.237305077968813,8.240703718512595,8.244102359056377,8.24750099960016,8.250899640143942,8.254298280687724,8.257696921231508,8.26109556177529,8.264494202319073,8.267892842862855,8.271291483406637,8.27469012395042,8.278088764494202,8.281487405037986,8.284886045581768,8.28828468612555,8.291683326669332,8.295081967213115,8.298480607756897,8.30187924830068,8.305277888844461,8.308676529388245,8.312075169932028,8.31547381047581,8.318872451019592,8.322271091563374,8.325669732107157,8.329068372650939,8.332467013194723,8.335865653738505,8.339264294282287,8.34266293482607,8.346061575369852,8.349460215913634,8.352858856457416,8.356257497001199,8.359656137544983,8.363054778088765,8.366453418632547,8.36985205917633,8.373250699720112,8.376649340263894,8.380047980807676,8.38344662135146,8.386845261895242,8.390243902439025,8.393642542982807,8.39704118352659,8.400439824070371,8.403838464614154,8.407237105157936,8.41063574570172,8.414034386245502,8.417433026789285,8.420831667333067,8.424230307876849,8.427628948420631,8.431027588964414,8.434426229508198,8.43782487005198,8.441223510595762,8.444622151139544,8.448020791683327,8.451419432227109,8.454818072770891,8.458216713314673,8.461615353858457,8.46501399440224,8.468412634946022,8.471811275489804,8.475209916033586,8.478608556577369,8.48200719712115,8.485405837664935,8.488804478208717,8.4922031187525,8.495601759296282,8.499000399840064,8.502399040383846,8.505797680927628,8.50919632147141,8.512594962015195,8.515993602558977,8.519392243102759,8.522790883646541,8.526189524190324,8.529588164734106,8.532986805277888,8.536385445821672,8.539784086365454,8.543182726909237,8.546581367453019,8.549980007996801,8.553378648540583,8.556777289084366,8.560175929628148,8.563574570171932,8.566973210715714,8.570371851259496,8.573770491803279,8.577169132347061,8.580567772890843,8.583966413434625,8.58736505397841,8.590763694522192,8.594162335065974,8.597560975609756,8.600959616153538,8.60435825669732,8.607756897241103,8.611155537784885,8.61455417832867,8.617952818872451,8.621351459416234,8.624750099960016,8.628148740503798,8.63154738104758,8.634946021591363,8.638344662135147,8.641743302678929,8.645141943222711,8.648540583766493,8.651939224310276,8.655337864854058,8.65873650539784,8.662135145941622,8.665533786485407,8.668932427029189,8.672331067572971,8.675729708116753,8.679128348660536,8.682526989204318,8.6859256297481,8.689324270291884,8.692722910835666,8.696121551379449,8.69952019192323,8.702918832467013,8.706317473010795,8.709716113554578,8.71311475409836,8.716513394642144,8.719912035185926,8.723310675729708,8.72670931627349,8.730107956817273,8.733506597361055,8.736905237904837,8.740303878448621,8.743702518992404,8.747101159536186,8.750499800079968,8.75389844062375,8.757297081167533,8.760695721711315,8.764094362255097,8.767493002798881,8.770891643342663,8.774290283886446,8.777688924430228,8.78108756497401,8.784486205517792,8.787884846061575,8.791283486605359,8.79468212714914,8.798080767692923,8.801479408236705,8.804878048780488,8.80827668932427,8.811675329868052,8.815073970411834,8.818472610955618,8.8218712514994,8.825269892043183,8.828668532586965,8.832067173130747,8.83546581367453,8.838864454218312,8.842263094762096,8.845661735305878,8.84906037584966,8.852459016393443,8.855857656937225,8.859256297481007,8.86265493802479,8.866053578568573,8.869452219112356,8.872850859656138,8.87624950019992,8.879648140743702,8.883046781287485,8.886445421831267,8.88984406237505,8.893242702918833,8.896641343462615,8.900039984006398,8.90343862455018,8.906837265093962,8.910235905637744,8.913634546181527,8.91703318672531,8.920431827269093,8.923830467812875,8.927229108356658,8.93062774890044,8.934026389444222,8.937425029988004,8.940823670531787,8.94422231107557,8.947620951619353,8.951019592163135,8.954418232706917,8.9578168732507,8.961215513794482,8.964614154338264,8.968012794882048,8.97141143542583,8.974810075969613,8.978208716513395,8.981607357057177,8.98500599760096,8.988404638144742,8.991803278688524,8.995201919232308,8.99860055977609,9.001999200319872,9.005397840863655,9.008796481407437,9.012195121951219,9.015593762495001,9.018992403038785,9.022391043582568,9.02578968412635,9.029188324670132,9.032586965213914,9.035985605757697,9.039384246301479,9.042782886845261,9.046181527389045,9.049580167932827,9.05297880847661,9.056377449020392,9.059776089564174,9.063174730107956,9.066573370651739,9.069972011195523,9.073370651739305,9.076769292283087,9.08016793282687,9.083566573370652,9.086965213914434,9.090363854458216,9.093762495001998,9.097161135545782,9.100559776089565,9.103958416633347,9.10735705717713,9.110755697720911,9.114154338264694,9.117552978808476,9.12095161935226,9.124350259896042,9.127748900439824,9.131147540983607,9.134546181527389,9.137944822071171,9.141343462614953,9.144742103158736,9.14814074370252,9.151539384246302,9.154938024790084,9.158336665333866,9.161735305877649,9.165133946421431,9.168532586965213,9.171931227508997,9.17532986805278,9.178728508596562,9.182127149140344,9.185525789684126,9.188924430227909,9.19232307077169,9.195721711315473,9.199120351859257,9.20251899240304,9.205917632946822,9.209316273490604,9.212714914034386,9.216113554578168,9.21951219512195,9.222910835665735,9.226309476209517,9.229708116753299,9.233106757297081,9.236505397840864,9.239904038384646,9.243302678928428,9.24670131947221,9.250099960015994,9.253498600559777,9.256897241103559,9.260295881647341,9.263694522191123,9.267093162734906,9.270491803278688,9.273890443822472,9.277289084366254,9.280687724910036,9.284086365453819,9.2874850059976,9.290883646541383,9.294282287085165,9.297680927628948,9.301079568172732,9.304478208716514,9.307876849260296,9.311275489804078,9.31467413034786,9.318072770891643,9.321471411435425,9.32487005197921,9.328268692522991,9.331667333066774,9.335065973610556,9.338464614154338,9.34186325469812,9.345261895241903,9.348660535785685,9.352059176329469,9.355457816873251,9.358856457417033,9.362255097960816,9.365653738504598,9.36905237904838,9.372451019592162,9.375849660135946,9.379248300679729,9.382646941223511,9.386045581767293,9.389444222311075,9.392842862854858,9.39624150339864,9.399640143942422,9.403038784486206,9.406437425029988,9.40983606557377,9.413234706117553,9.416633346661335,9.420031987205117,9.4234306277489,9.426829268292684,9.430227908836466,9.433626549380248,9.43702518992403,9.440423830467813,9.443822471011595,9.447221111555377,9.45061975209916,9.454018392642944,9.457417033186726,9.460815673730508,9.46421431427429,9.467612954818073,9.471011595361855,9.474410235905637,9.477808876449421,9.481207516993203,9.484606157536986,9.488004798080768,9.49140343862455,9.494802079168332,9.498200719712115,9.501599360255897,9.50499800079968,9.508396641343463,9.511795281887245,9.515193922431028,9.51859256297481,9.521991203518592,9.525389844062374,9.528788484606158,9.53218712514994,9.535585765693723,9.538984406237505,9.542383046781287,9.54578168732507,9.549180327868852,9.552578968412634,9.555977608956418,9.5593762495002,9.562774890043983,9.566173530587765,9.569572171131547,9.57297081167533,9.576369452219112,9.579768092762896,9.583166733306678,9.58656537385046,9.589964014394242,9.593362654938025,9.596761295481807,9.60015993602559,9.603558576569371,9.606957217113155,9.610355857656938,9.61375449820072,9.617153138744502,9.620551779288284,9.623950419832067,9.627349060375849,9.630747700919633,9.634146341463415,9.637544982007197,9.64094362255098,9.644342263094762,9.647740903638544,9.651139544182326,9.654538184726109,9.657936825269893,9.661335465813675,9.664734106357457,9.66813274690124,9.671531387445022,9.674930027988804,9.678328668532586,9.68172730907637,9.685125949620152,9.688524590163935,9.691923230707717,9.6953218712515,9.698720511795281,9.702119152339064,9.705517792882846,9.70891643342663,9.712315073970412,9.715713714514195,9.719112355057977,9.722510995601759,9.725909636145541,9.729308276689324,9.732706917233108,9.73610555777689,9.739504198320672,9.742902838864454,9.746301479408237,9.749700119952019,9.753098760495801,9.756497401039583,9.759896041583367,9.76329468212715,9.766693322670932,9.770091963214714,9.773490603758496,9.776889244302279,9.78028788484606,9.783686525389845,9.787085165933627,9.79048380647741,9.793882447021192,9.797281087564974,9.800679728108756,9.804078368652538,9.80747700919632,9.810875649740105,9.814274290283887,9.81767293082767,9.821071571371451,9.824470211915234,9.827868852459016,9.831267493002798,9.834666133546582,9.838064774090364,9.841463414634147,9.844862055177929,9.848260695721711,9.851659336265493,9.855057976809276,9.858456617353058,9.861855257896842,9.865253898440624,9.868652538984406,9.872051179528189,9.875449820071971,9.878848460615753,9.882247101159535,9.88564574170332,9.889044382247102,9.892443022790884,9.895841663334666,9.899240303878448,9.90263894442223,9.906037584966013,9.909436225509797,9.91283486605358,9.916233506597361,9.919632147141144,9.923030787684926,9.926429428228708,9.92982806877249,9.933226709316273,9.936625349860057,9.940023990403839,9.943422630947621,9.946821271491403,9.950219912035186,9.953618552578968,9.95701719312275,9.960415833666534,9.963814474210317,9.967213114754099,9.970611755297881,9.974010395841663,9.977409036385446,9.980807676929228,9.98420631747301,9.987604958016794,9.991003598560576,9.994402239104359,9.99780087964814,10.001199520191923,10.004598160735705,10.007996801279488,10.011395441823272,10.014794082367054,10.018192722910836,10.021591363454618,10.0249900039984,10.028388644542183,10.031787285085965,10.035185925629747,10.038584566173531,10.041983206717314,10.045381847261096,10.048780487804878,10.05217912834866,10.055577768892443,10.058976409436225,10.062375049980009,10.065773690523791,10.069172331067573,10.072570971611356,10.075969612155138,10.07936825269892,10.082766893242702,10.086165533786485,10.089564174330269,10.092962814874051,10.096361455417833,10.099760095961615,10.103158736505398,10.10655737704918,10.109956017592962,10.113354658136746,10.116753298680528,10.12015193922431,10.123550579768093,10.126949220311875,10.130347860855657,10.13374650139944,10.137145141943222,10.140543782487006,10.143942423030788,10.14734106357457,10.150739704118353,10.154138344662135,10.157536985205917,10.1609356257497,10.164334266293483,10.167732906837266,10.171131547381048,10.17453018792483,10.177928828468612,10.181327469012395,10.184726109556177,10.18812475009996,10.191523390643743,10.194922031187525,10.198320671731308,10.20171931227509,10.205117952818872,10.208516593362654,10.211915233906437,10.21531387445022,10.218712514994003,10.222111155537785,10.225509796081568,10.22890843662535,10.232307077169132,10.235705717712914,10.239104358256697,10.24250299880048,10.245901639344263,10.249300279888045,10.252698920431827,10.25609756097561,10.259496201519392,10.262894842063174,10.266293482606958,10.26969212315074,10.273090763694523,10.276489404238305,10.279888044782087,10.28328668532587,10.286685325869652,10.290083966413434,10.293482606957218,10.296881247501,10.300279888044782,10.303678528588565,10.307077169132347,10.310475809676129,10.313874450219911,10.317273090763695,10.320671731307478,10.32407037185126,10.327469012395042,10.330867652938824,10.334266293482607,10.337664934026389,10.341063574570171,10.344462215113955,10.347860855657737,10.35125949620152,10.354658136745302,10.358056777289084,10.361455417832866,10.364854058376649,10.368252698920433,10.371651339464215,10.375049980007997,10.37844862055178,10.381847261095562,10.385245901639344,10.388644542183126,10.392043182726908,10.395441823270692,10.398840463814475,10.402239104358257,10.40563774490204,10.409036385445821,10.412435025989604,10.415833666533386,10.41923230707717,10.422630947620952,10.426029588164734,10.429428228708517,10.432826869252299,10.436225509796081,10.439624150339863,10.443022790883646,10.44642143142743,10.449820071971212,10.453218712514994,10.456617353058776,10.460015993602559,10.463414634146341,10.466813274690123,10.470211915233907,10.47361055577769,10.477009196321472,10.480407836865254,10.483806477409036,10.487205117952819,10.4906037584966,10.494002399040383,10.497401039584167,10.50079968012795,10.504198320671732,10.507596961215514,10.510995601759296,10.514394242303078,10.51779288284686,10.521191523390645,10.524590163934427,10.527988804478209,10.531387445021991,10.534786085565774,10.538184726109556,10.541583366653338,10.54498200719712,10.548380647740904,10.551779288284687,10.555177928828469,10.558576569372251,10.561975209916033,10.565373850459816,10.568772491003598,10.572171131547382,10.575569772091164,10.578968412634946,10.582367053178729,10.58576569372251,10.589164334266293,10.592562974810075,10.595961615353858,10.599360255897642,10.602758896441424,10.606157536985206,10.609556177528988,10.61295481807277,10.616353458616553,10.619752099160335,10.62315073970412,10.626549380247901,10.629948020791684,10.633346661335466,10.636745301879248,10.64014394242303,10.643542582966813,10.646941223510595,10.650339864054379,10.653738504598161,10.657137145141943,10.660535785685726,10.663934426229508,10.66733306677329,10.670731707317072,10.674130347860856,10.677528988404639,10.680927628948421,10.684326269492203,10.687724910035985,10.691123550579768,10.69452219112355,10.697920831667332,10.701319472211116,10.704718112754898,10.70811675329868,10.711515393842463,10.714914034386245,10.718312674930027,10.72171131547381,10.725109956017594,10.728508596561376,10.731907237105158,10.73530587764894,10.738704518192723,10.742103158736505,10.745501799280287,10.74890043982407,10.752299080367854,10.755697720911636,10.759096361455418,10.7624950019992,10.765893642542983,10.769292283086765,10.772690923630547,10.776089564174331,10.779488204718113,10.782886845261896,10.786285485805678,10.78968412634946,10.793082766893242,10.796481407437025,10.799880047980807,10.80327868852459,10.806677329068373,10.810075969612155,10.813474610155938,10.81687325069972,10.820271891243502,10.823670531787284,10.827069172331068,10.83046781287485,10.833866453418633,10.837265093962415,10.840663734506197,10.84406237504998,10.847461015593762,10.850859656137544,10.854258296681328,10.85765693722511,10.861055577768893,10.864454218312675,10.867852858856457,10.87125149940024,10.874650139944022,10.878048780487806,10.881447421031588,10.88484606157537,10.888244702119152,10.891643342662935,10.895041983206717,10.8984406237505,10.901839264294281,10.905237904838065,10.908636545381848,10.91203518592563,10.915433826469412,10.918832467013194,10.922231107556977,10.925629748100759,10.929028388644543,10.932427029188325,10.935825669732107,10.93922431027589,10.942622950819672,10.946021591363454,10.949420231907236,10.952818872451019,10.956217512994803,10.959616153538585,10.963014794082367,10.96641343462615,10.969812075169932,10.973210715713714,10.976609356257496,10.98000799680128,10.983406637345063,10.986805277888845,10.990203918432627,10.99360255897641,10.997001199520192,11.000399840063974,11.003798480607758,11.00719712115154,11.010595761695322,11.013994402239105,11.017393042782887,11.020791683326669,11.024190323870451,11.027588964414234,11.030987604958018,11.0343862455018,11.037784886045582,11.041183526589364,11.044582167133147,11.047980807676929,11.051379448220711,11.054778088764495,11.058176729308277,11.06157536985206,11.064974010395842,11.068372650939624,11.071771291483406,11.075169932027189,11.07856857257097,11.081967213114755,11.085365853658537,11.08876449420232,11.092163134746102,11.095561775289884,11.098960415833666,11.102359056377448,11.105757696921232,11.109156337465015,11.112554978008797,11.11595361855258,11.119352259096361,11.122750899640144,11.126149540183926,11.129548180727708,11.132946821271492,11.136345461815274,11.139744102359057,11.143142742902839,11.146541383446621,11.149940023990403,11.153338664534186,11.15673730507797,11.160135945621752,11.163534586165534,11.166933226709316,11.170331867253099,11.173730507796881,11.177129148340663,11.180527788884445,11.18392642942823,11.187325069972012,11.190723710515794,11.194122351059576,11.197520991603358,11.20091963214714,11.204318272690923,11.207716913234707,11.21111555377849,11.214514194322271,11.217912834866054,11.221311475409836,11.224710115953618,11.2281087564974,11.231507397041183,11.234906037584967,11.238304678128749,11.241703318672531,11.245101959216314,11.248500599760096,11.251899240303878,11.25529788084766,11.258696521391444,11.262095161935227,11.265493802479009,11.268892443022791,11.272291083566573,11.275689724110356,11.279088364654138,11.28248700519792,11.285885645741704,11.289284286285486,11.292682926829269,11.29608156737305,11.299480207916833,11.302878848460615,11.306277489004398,11.309676129548182,11.313074770091964,11.316473410635746,11.319872051179528,11.32327069172331,11.326669332267093,11.330067972810875,11.333466613354657,11.336865253898441,11.340263894442224,11.343662534986006,11.347061175529788,11.35045981607357,11.353858456617353,11.357257097161135,11.360655737704919,11.364054378248701,11.367453018792483,11.370851659336266,11.374250299880048,11.37764894042383,11.381047580967612,11.384446221511395,11.387844862055179,11.391243502598961,11.394642143142743,11.398040783686525,11.401439424230308,11.40483806477409,11.408236705317872,11.411635345861656,11.415033986405438,11.41843262694922,11.421831267493003,11.425229908036785,11.428628548580567,11.43202718912435,11.435425829668132,11.438824470211916,11.442223110755698,11.44562175129948,11.449020391843263,11.452419032387045,11.455817672930827,11.45921631347461,11.462614954018393,11.466013594562176,11.469412235105958,11.47281087564974,11.476209516193522,11.479608156737305,11.483006797281087,11.48640543782487,11.489804078368653,11.493202718912436,11.496601359456218,11.5,11.503398640543782,11.506797281087564,11.510195921631347,11.51359456217513,11.516993202718913,11.520391843262695,11.523790483806478,11.52718912435026,11.530587764894042,11.533986405437824,11.537385045981607,11.54078368652539,11.544182327069173,11.547580967612955,11.550979608156737,11.55437824870052,11.557776889244302,11.561175529788084,11.564574170331868,11.56797281087565,11.571371451419433,11.574770091963215,11.578168732506997,11.58156737305078,11.584966013594562,11.588364654138344,11.591763294682128,11.59516193522591,11.598560575769692,11.601959216313475,11.605357856857257,11.608756497401039,11.612155137944821,11.615553778488605,11.618952419032388,11.62235105957617,11.625749700119952,11.629148340663734,11.632546981207517,11.635945621751299,11.639344262295081,11.642742902838865,11.646141543382647,11.64954018392643,11.652938824470212,11.656337465013994,11.659736105557776,11.663134746101559,11.666533386645343,11.669932027189125,11.673330667732907,11.67672930827669,11.680127948820472,11.683526589364254,11.686925229908036,11.690323870451818,11.693722510995602,11.697121151539385,11.700519792083167,11.70391843262695,11.707317073170731,11.710715713714514,11.714114354258296,11.71751299480208,11.720911635345862,11.724310275889644,11.727708916433427,11.731107556977209,11.734506197520991,11.737904838064773,11.741303478608556,11.74470211915234,11.748100759696122,11.751499400239904,11.754898040783686,11.758296681327469,11.761695321871251,11.765093962415033,11.768492602958817,11.7718912435026,11.775289884046382,11.778688524590164,11.782087165133946,11.785485805677729,11.78888444622151,11.792283086765293,11.795681727309077,11.79908036785286,11.802479008396642,11.805877648940424,11.809276289484206,11.812674930027988,11.81607357057177,11.819472211115555,11.822870851659337,11.826269492203119,11.829668132746901,11.833066773290684,11.836465413834466,11.839864054378248,11.84326269492203,11.846661335465814,11.850059976009597,11.853458616553379,11.856857257097161,11.860255897640943,11.863654538184726,11.867053178728508,11.870451819272292,11.873850459816074,11.877249100359856,11.880647740903639,11.88404638144742,11.887445021991203,11.890843662534985,11.894242303078768,11.897640943622552,11.901039584166334,11.904438224710116,11.907836865253898,11.91123550579768,11.914634146341463,11.918032786885245,11.92143142742903,11.924830067972811,11.928228708516594,11.931627349060376,11.935025989604158,11.93842463014794,11.941823270691723,11.945221911235505,11.948620551779289,11.952019192323071,11.955417832866853,11.958816473410636,11.962215113954418,11.9656137544982,11.969012395041982,11.972411035585766,11.975809676129549,11.979208316673331,11.982606957217113,11.986005597760895,11.989404238304678,11.99280287884846,11.996201519392242,11.999600159936026,12.002998800479808,12.00639744102359,12.009796081567373,12.013194722111155,12.016593362654937,12.01999200319872,12.023390643742504,12.026789284286286,12.030187924830068,12.03358656537385,12.036985205917633,12.040383846461415,12.043782487005197,12.047181127548981,12.050579768092764,12.053978408636546,12.057377049180328,12.06077568972411,12.064174330267893,12.067572970811675,12.070971611355457,12.074370251899241,12.077768892443023,12.081167532986806,12.084566173530588,12.08796481407437,12.091363454618152,12.094762095161935,12.098160735705719,12.1015593762495,12.104958016793283,12.108356657337065,12.111755297880848,12.11515393842463,12.118552578968412,12.121951219512194,12.125349860055978,12.12874850059976,12.132147141143543,12.135545781687325,12.138944422231107,12.14234306277489,12.145741703318672,12.149140343862456,12.152538984406238,12.15593762495002,12.159336265493803,12.162734906037585,12.166133546581367,12.16953218712515,12.172930827668932,12.176329468212716,12.179728108756498,12.18312674930028,12.186525389844062,12.189924030387845,12.193322670931627,12.19672131147541,12.200119952019193,12.203518592562975,12.206917233106758,12.21031587365054,12.213714514194322,12.217113154738104,12.220511795281887,12.223910435825669,12.227309076369453,12.230707716913235,12.234106357457017,12.2375049980008,12.240903638544582,12.244302279088364,12.247700919632146,12.25109956017593,12.254498200719713,12.257896841263495,12.261295481807277,12.26469412235106,12.268092762894842,12.271491403438624,12.274890043982406,12.27828868452619,12.281687325069973,12.285085965613755,12.288484606157537,12.29188324670132,12.295281887245102,12.298680527788884,12.302079168332668,12.30547780887645,12.308876449420232,12.312275089964015,12.315673730507797,12.319072371051579,12.322471011595361,12.325869652139144,12.329268292682928,12.33266693322671,12.336065573770492,12.339464214314274,12.342862854858057,12.346261495401839,12.349660135945621,12.353058776489405,12.356457417033187,12.35985605757697,12.363254698120752,12.366653338664534,12.370051979208316,12.373450619752099,12.37684926029588,12.380247900839665,12.383646541383447,12.38704518192723,12.390443822471012,12.393842463014794,12.397241103558576,12.400639744102358,12.404038384646142,12.407437025189925,12.410835665733707,12.41423430627749,12.417632946821271,12.421031587365054,12.424430227908836,12.427828868452618,12.431227508996402,12.434626149540184,12.438024790083967,12.441423430627749,12.444822071171531,12.448220711715313,12.451619352259096,12.45501799280288,12.458416633346662,12.461815273890444,12.465213914434226,12.468612554978009,12.472011195521791,12.475409836065573,12.478808476609355,12.48220711715314,12.485605757696922,12.489004398240704,12.492403038784486,12.495801679328268,12.49920031987205,12.502598960415833,12.505997600959617,12.5093962415034,12.512794882047181,12.516193522590964,12.519592163134746,12.522990803678528,12.52638944422231,12.529788084766093,12.533186725309877,12.536585365853659,12.539984006397441,12.543382646941224,12.546781287485006,12.550179928028788,12.55357856857257,12.556977209116354,12.560375849660137,12.563774490203919,12.567173130747701,12.570571771291483,12.573970411835266,12.577369052379048,12.58076769292283,12.584166333466614,12.587564974010396,12.590963614554179,12.59436225509796,12.597760895641743,12.601159536185525,12.604558176729308,12.607956817273092,12.611355457816874,12.614754098360656,12.618152738904438,12.62155137944822,12.624950019992003,12.628348660535785,12.631747301079567,12.635145941623351,12.638544582167134,12.641943222710916,12.645341863254698,12.64874050379848,12.652139144342263,12.655537784886045,12.658936425429829,12.662335065973611,12.665733706517393,12.669132347061176,12.672530987604958,12.67592962814874,12.679328268692522,12.682726909236305,12.686125549780089,12.689524190323871,12.692922830867653,12.696321471411435,12.699720111955218,12.703118752499,12.706517393042782,12.709916033586566,12.713314674130348,12.71671331467413,12.720111955217913,12.723510595761695,12.726909236305477,12.73030787684926,12.733706517393042,12.737105157936826,12.740503798480608,12.74390243902439,12.747301079568173,12.750699720111955,12.754098360655737,12.75749700119952,12.760895641743303,12.764294282287086,12.767692922830868,12.77109156337465,12.774490203918432,12.777888844462215,12.781287485005997,12.78468612554978,12.788084766093563,12.791483406637346,12.794882047181128,12.79828068772491,12.801679328268692,12.805077968812475,12.808476609356257,12.81187524990004,12.815273890443823,12.818672530987605,12.822071171531388,12.82546981207517,12.828868452618952,12.832267093162734,12.835665733706517,12.8390643742503,12.842463014794083,12.845861655337865,12.849260295881647,12.85265893642543,12.856057576969212,12.859456217512994,12.862854858056778,12.86625349860056,12.869652139144343,12.873050779688125,12.876449420231907,12.87984806077569,12.883246701319472,12.886645341863254,12.890043982407038,12.89344262295082,12.896841263494602,12.900239904038385,12.903638544582167,12.907037185125949,12.910435825669731,12.913834466213515,12.917233106757298,12.92063174730108,12.924030387844862,12.927429028388644,12.930827668932427,12.934226309476209,12.937624950019991,12.941023590563775,12.944422231107557,12.94782087165134,12.951219512195122,12.954618152738904,12.958016793282686,12.961415433826469,12.964814074370253,12.968212714914035,12.971611355457817,12.9750099960016,12.978408636545382,12.981807277089164,12.985205917632946,12.988604558176728,12.992003198720512,12.995401839264295,12.998800479808077,13.00219912035186,13.005597760895641,13.008996401439424,13.012395041983206,13.01579368252699,13.019192323070772,13.022590963614554,13.025989604158337,13.029388244702119,13.032786885245901,13.036185525789683,13.039584166333466,13.04298280687725,13.046381447421032,13.049780087964814,13.053178728508597,13.056577369052379,13.059976009596161,13.063374650139943,13.066773290683727,13.07017193122751,13.073570571771292,13.076969212315074,13.080367852858856,13.083766493402639,13.08716513394642,13.090563774490203,13.093962415033987,13.09736105557777,13.100759696121552,13.104158336665334,13.107556977209116,13.110955617752898,13.11435425829668,13.117752898840465,13.121151539384247,13.124550179928029,13.127948820471811,13.131347461015594,13.134746101559376,13.138144742103158,13.141543382646942,13.144942023190724,13.148340663734507,13.151739304278289,13.155137944822071,13.158536585365853,13.161935225909636,13.165333866453418,13.168732506997202,13.172131147540984,13.175529788084766,13.178928428628549,13.18232706917233,13.185725709716113,13.189124350259895,13.19252299080368,13.195921631347462,13.199320271891244,13.202718912435026,13.206117552978808,13.20951619352259,13.212914834066373,13.216313474610155,13.21971211515394,13.223110755697721,13.226509396241504,13.229908036785286,13.233306677329068,13.23670531787285,13.240103958416633,13.243502598960417,13.246901239504199,13.250299880047981,13.253698520591763,13.257097161135546,13.260495801679328,13.26389444222311,13.267293082766892,13.270691723310676,13.274090363854459,13.277489004398241,13.280887644942023,13.284286285485805,13.287684926029588,13.29108356657337,13.294482207117154,13.297880847660936,13.301279488204719,13.3046781287485,13.308076769292283,13.311475409836065,13.314874050379848,13.31827269092363,13.321671331467414,13.325069972011196,13.328468612554978,13.33186725309876,13.335265893642543,13.338664534186325,13.342063174730107,13.345461815273891,13.348860455817674,13.352259096361456,13.355657736905238,13.35905637744902,13.362455017992803,13.365853658536585,13.369252299080367,13.372650939624151,13.376049580167933,13.379448220711716,13.382846861255498,13.38624550179928,13.389644142343062,13.393042782886845,13.396441423430629,13.39984006397441,13.403238704518193,13.406637345061975,13.410035985605758,13.41343462614954,13.416833266693322,13.420231907237104,13.423630547780888,13.42702918832467,13.430427828868453,13.433826469412235,13.437225109956017,13.4406237504998,13.444022391043582,13.447421031587366,13.450819672131148,13.45421831267493,13.457616953218713,13.461015593762495,13.464414234306277,13.46781287485006,13.471211515393842,13.474610155937626,13.478008796481408,13.48140743702519,13.484806077568972,13.488204718112755,13.491603358656537,13.49500199920032,13.498400639744103,13.501799280287885,13.505197920831668,13.50859656137545,13.511995201919232,13.515393842463014,13.518792483006797,13.522191123550579,13.525589764094363,13.528988404638145,13.532387045181927,13.53578568572571,13.539184326269492,13.542582966813274,13.545981607357056,13.54938024790084,13.552778888444623,13.556177528988405,13.559576169532187,13.56297481007597,13.566373450619752,13.569772091163534,13.573170731707316,13.5765693722511,13.579968012794883,13.583366653338665,13.586765293882447,13.59016393442623,13.593562574970012,13.596961215513794,13.600359856057578,13.60375849660136,13.607157137145142,13.610555777688925,13.613954418232707,13.617353058776489,13.620751699320271,13.624150339864054,13.627548980407838,13.63094762095162,13.634346261495402,13.637744902039184,13.641143542582967,13.644542183126749,13.647940823670531,13.651339464214315,13.654738104758097,13.65813674530188,13.661535385845662,13.664934026389444,13.668332666933226,13.671731307477009,13.67512994802079,13.678528588564575,13.681927229108357,13.68532586965214,13.688724510195922,13.692123150739704,13.695521791283486,13.698920431827268,13.702319072371052,13.705717712914835,13.709116353458617,13.7125149940024,13.715913634546181,13.719312275089964,13.722710915633746,13.726109556177528,13.729508196721312,13.732906837265094,13.736305477808877,13.739704118352659,13.743102758896441,13.746501399440223,13.749900039984006,13.75329868052779,13.756697321071572,13.760095961615354,13.763494602159136,13.766893242702919,13.770291883246701,13.773690523790483,13.777089164334265,13.78048780487805,13.783886445421832,13.787285085965614,13.790683726509396,13.794082367053178,13.79748100759696,13.800879648140743,13.804278288684527,13.80767692922831,13.811075569772091,13.814474210315874,13.817872850859656,13.821271491403438,13.82467013194722,13.828068772491003,13.831467413034787,13.834866053578569,13.838264694122351,13.841663334666134,13.845061975209916,13.848460615753698,13.85185925629748,13.855257896841264,13.858656537385047,13.862055177928829,13.865453818472611,13.868852459016393,13.872251099560176,13.875649740103958,13.87904838064774,13.882447021191524,13.885845661735306,13.889244302279089,13.89264294282287,13.896041583366653,13.899440223910435,13.902838864454218,13.906237504998002,13.909636145541784,13.913034786085566,13.916433426629348,13.91983206717313,13.923230707716913,13.926629348260695,13.930027988804477,13.933426629348261,13.936825269892044,13.940223910435826,13.943622550979608,13.94702119152339,13.950419832067173,13.953818472610955,13.957217113154739,13.960615753698521,13.964014394242303,13.967413034786086,13.970811675329868,13.97421031587365,13.977608956417432,13.981007596961215,13.984406237504999,13.987804878048781,13.991203518592563,13.994602159136345,13.998000799680128,14.00139944022391,14.004798080767692,14.008196721311476,14.011595361855258,14.01499400239904,14.018392642942823,14.021791283486605,14.025189924030387,14.02858856457417,14.031987205117952,14.035385845661736,14.038784486205518,14.0421831267493,14.045581767293083,14.048980407836865,14.052379048380647,14.05577768892443,14.059176329468213,14.062574970011996,14.065973610555778,14.06937225109956,14.072770891643342,14.076169532187125,14.079568172730907,14.08296681327469,14.086365453818473,14.089764094362256,14.093162734906038,14.09656137544982,14.099960015993602,14.103358656537385,14.106757297081167,14.11015593762495,14.113554578168733,14.116953218712515,14.120351859256298,14.12375049980008,14.127149140343862,14.130547780887644,14.133946421431427,14.13734506197521,14.140743702518993,14.144142343062775,14.147540983606557,14.15093962415034,14.154338264694122,14.157736905237904,14.161135545781688,14.16453418632547,14.167932826869253,14.171331467413035,14.174730107956817,14.1781287485006,14.181527389044382,14.184926029588166,14.188324670131948,14.19172331067573,14.195121951219512,14.198520591763295,14.201919232307077,14.20531787285086,14.208716513394641,14.212115153938425,14.215513794482208,14.21891243502599,14.222311075569772,14.225709716113554,14.229108356657337,14.232506997201119,14.235905637744903,14.239304278288685,14.242702918832467,14.24610155937625,14.249500199920032,14.252898840463814,14.256297481007596,14.259696121551379,14.263094762095163,14.266493402638945,14.269892043182727,14.27329068372651,14.276689324270292,14.280087964814074,14.283486605357856,14.28688524590164,14.290283886445422,14.293682526989205,14.297081167532987,14.30047980807677,14.303878448620551,14.307277089164334,14.310675729708116,14.3140743702519,14.317473010795682,14.320871651339464,14.324270291883247,14.327668932427029,14.331067572970811,14.334466213514593,14.337864854058378,14.34126349460216,14.344662135145942,14.348060775689724,14.351459416233507,14.354858056777289,14.358256697321071,14.361655337864853,14.365053978408637,14.36845261895242,14.371851259496202,14.375249900039984,14.378648540583766,14.382047181127549,14.38544582167133,14.388844462215115,14.392243102758897,14.39564174330268,14.399040383846462,14.402439024390244,14.405837664934026,14.409236305477808,14.41263494602159,14.416033586565375,14.419432227109157,14.422830867652939,14.426229508196721,14.429628148740504,14.433026789284286,14.436425429828068,14.439824070371852,14.443222710915634,14.446621351459417,14.450019992003199,14.453418632546981,14.456817273090763,14.460215913634546,14.463614554178328,14.467013194722112,14.470411835265894,14.473810475809676,14.477209116353459,14.480607756897241,14.484006397441023,14.487405037984805,14.49080367852859,14.494202319072372,14.497600959616154,14.500999600159936,14.504398240703718,14.5077968812475,14.511195521791283,14.514594162335065,14.51799280287885,14.521391443422631,14.524790083966414,14.528188724510196,14.531587365053978,14.53498600559776,14.538384646141543,14.541783286685327,14.545181927229109,14.548580567772891,14.551979208316673,14.555377848860456,14.558776489404238,14.56217512994802,14.565573770491802,14.568972411035586,14.572371051579369,14.575769692123151,14.579168332666933,14.582566973210715,14.585965613754498,14.58936425429828,14.592762894842064,14.596161535385846,14.599560175929629,14.60295881647341,14.606357457017193,14.609756097560975,14.613154738104758,14.61655337864854,14.619952019192324,14.623350659736106,14.626749300279888,14.63014794082367,14.633546581367453,14.636945221911235,14.640343862455017,14.643742502998801,14.647141143542584,14.650539784086366,14.653938424630148,14.65733706517393,14.660735705717713,14.664134346261495,14.667532986805277,14.670931627349061,14.674330267892843,14.677728908436626,14.681127548980408,14.68452618952419,14.687924830067972,14.691323470611755,14.694722111155539,14.69812075169932,14.701519392243103,14.704918032786885,14.708316673330668,14.71171531387445,14.715113954418232,14.718512594962014,14.721911235505798,14.72530987604958,14.728708516593363,14.732107157137145,14.735505797680927,14.73890443822471,14.742303078768492,14.745701719312276,14.749100359856058,14.75249900039984,14.755897640943623,14.759296281487405,14.762694922031187,14.76609356257497,14.769492203118752,14.772890843662536,14.776289484206318,14.7796881247501,14.783086765293882,14.786485405837665,14.789884046381447,14.79328268692523,14.796681327469013,14.800079968012795,14.803478608556578,14.80687724910036,14.810275889644142,14.813674530187924,14.817073170731707,14.820471811275489,14.823870451819273,14.827269092363055,14.830667732906837,14.83406637345062,14.837465013994402,14.840863654538184,14.844262295081966,14.84766093562575,14.851059576169533,14.854458216713315,14.857856857257097,14.86125549780088,14.864654138344662,14.868052778888444,14.871451419432226,14.87485005997601,14.878248700519793,14.881647341063575,14.885045981607357,14.88844462215114,14.891843262694922,14.895241903238704,14.898640543782488,14.90203918432627,14.905437824870052,14.908836465413835,14.912235105957617,14.915633746501399,14.919032387045181,14.922431027588964,14.925829668132748,14.92922830867653,14.932626949220312,14.936025589764094,14.939424230307877,14.942822870851659,14.946221511395441,14.949620151939225,14.953018792483007,14.95641743302679,14.959816073570572,14.963214714114354,14.966613354658136,14.970011995201919,14.9734106357457,14.976809276289485,14.980207916833267,14.98360655737705,14.987005197920832,14.990403838464614,14.993802479008396,14.997201119552178,15.000599760095962,15.003998400639745,15.007397041183527,15.01079568172731,15.014194322271091,15.017592962814874,15.020991603358656,15.024390243902438,15.027788884446222,15.031187524990004,15.034586165533787,15.037984806077569,15.041383446621351,15.044782087165133,15.048180727708916,15.0515793682527,15.054978008796482,15.058376649340264,15.061775289884046,15.065173930427829,15.068572570971611,15.071971211515393,15.075369852059175,15.07876849260296,15.082167133146742,15.085565773690524,15.088964414234306,15.092363054778088,15.09576169532187,15.099160335865653,15.102558976409437,15.10595761695322,15.109356257497002,15.112754898040784,15.116153538584566,15.119552179128348,15.12295081967213,15.126349460215913,15.129748100759697,15.133146741303479,15.136545381847261,15.139944022391044,15.143342662934826,15.146741303478608,15.15013994402239,15.153538584566174,15.156937225109957,15.160335865653739,15.163734506197521,15.167133146741303,15.170531787285086,15.173930427828868,15.17732906837265,15.180727708916434,15.184126349460216,15.187524990003999,15.19092363054778,15.194322271091563,15.197720911635345,15.201119552179128,15.204518192722912,15.207916833266694,15.211315473810476,15.214714114354258,15.21811275489804,15.221511395441823,15.224910035985605,15.22830867652939,15.231707317073171,15.235105957616954,15.238504598160736,15.241903238704518,15.2453018792483,15.248700519792083,15.252099160335865,15.255497800879649,15.258896441423431,15.262295081967213,15.265693722510996,15.269092363054778,15.27249100359856,15.275889644142342,15.279288284686126,15.282686925229909,15.286085565773691,15.289484206317473,15.292882846861255,15.296281487405038,15.29968012794882,15.303078768492602,15.306477409036386,15.309876049580168,15.31327469012395,15.316673330667733,15.320071971211515,15.323470611755297,15.32686925229908,15.330267892842864,15.333666533386646,15.337065173930428,15.34046381447421,15.343862455017993,15.347261095561775,15.350659736105557,15.35405837664934,15.357457017193124,15.360855657736906,15.364254298280688,15.36765293882447,15.371051579368253,15.374450219912035,15.377848860455817,15.381247500999601,15.384646141543383,15.388044782087166,15.391443422630948,15.39484206317473,15.398240703718512,15.401639344262295,15.405037984806077,15.40843662534986,15.411835265893643,15.415233906437425,15.418632546981208,15.42203118752499,15.425429828068772,15.428828468612554,15.432227109156338,15.43562574970012,15.439024390243903,15.442423030787685,15.445821671331467,15.44922031187525,15.452618952419032,15.456017592962814,15.459416233506598,15.46281487405038,15.466213514594163,15.469612155137945,15.473010795681727,15.47640943622551,15.479808076769292,15.483206717313076,15.486605357856858,15.49000399840064,15.493402638944422,15.496801279488205,15.500199920031987,15.50359856057577,15.506997201119551,15.510395841663335,15.513794482207118,15.5171931227509,15.520591763294682,15.523990403838464,15.527389044382247,15.530787684926029,15.534186325469813,15.537584966013595,15.540983606557377,15.54438224710116,15.547780887644942,15.551179528188724,15.554578168732506,15.557976809276289,15.561375449820073,15.564774090363855,15.568172730907637,15.57157137145142,15.574970011995202,15.578368652538984,15.581767293082766,15.58516593362655,15.588564574170332,15.591963214714115,15.595361855257897,15.59876049580168,15.602159136345461,15.605557776889244,15.608956417433026,15.61235505797681,15.615753698520592,15.619152339064375,15.622550979608157,15.625949620151939,15.629348260695721,15.632746901239504,15.636145541783288,15.63954418232707,15.642942822870852,15.646341463414634,15.649740103958417,15.653138744502199,15.656537385045981,15.659936025589763,15.663334666133547,15.66673330667733,15.670131947221112,15.673530587764894,15.676929228308676,15.680327868852459,15.68372650939624,15.687125149940025,15.690523790483807,15.69392243102759,15.697321071571372,15.700719712115154,15.704118352658936,15.707516993202718,15.7109156337465,15.714314274290285,15.717712914834067,15.721111555377849,15.724510195921631,15.727908836465414,15.731307477009196,15.734706117552978,15.738104758096762,15.741503398640544,15.744902039184327,15.748300679728109,15.751699320271891,15.755097960815673,15.758496601359456,15.761895241903238,15.765293882447022,15.768692522990804,15.772091163534586,15.775489804078369,15.778888444622151,15.782287085165933,15.785685725709715,15.7890843662535,15.792483006797282,15.795881647341064,15.799280287884846,15.802678928428628,15.80607756897241,15.809476209516193,15.812874850059975,15.81627349060376,15.819672131147541,15.823070771691324,15.826469412235106,15.829868052778888,15.83326669332267,15.836665333866453,15.840063974410237,15.843462614954019,15.846861255497801,15.850259896041583,15.853658536585366,15.857057177129148,15.86045581767293,15.863854458216712,15.867253098760496,15.870651739304279,15.874050379848061,15.877449020391843,15.880847660935625,15.884246301479408,15.88764494202319,15.891043582566974,15.894442223110756,15.897840863654539,15.90123950419832,15.904638144742103,15.908036785285885,15.911435425829668,15.91483406637345,15.918232706917234,15.921631347461016,15.925029988004798,15.92842862854858,15.931827269092363,15.935225909636145,15.938624550179927,15.942023190723711,15.945421831267494,15.948820471811276,15.952219112355058,15.95561775289884,15.959016393442623,15.962415033986405,15.965813674530187,15.969212315073971,15.972610955617753,15.976009596161536,15.979408236705318,15.9828068772491,15.986205517792882,15.989604158336665,15.993002798880449,15.99640143942423,15.999800079968013,16.003198720511794,16.00659736105558,16.00999600159936,16.013394642143144,16.016793282686926,16.02019192323071,16.02359056377449,16.026989204318273,16.030387844862055,16.033786485405837,16.03718512594962,16.040583766493402,16.043982407037184,16.047381047580966,16.05077968812475,16.05417832866853,16.057576969212317,16.0609756097561,16.06437425029988,16.067772890843663,16.071171531387446,16.074570171931228,16.07796881247501,16.081367453018792,16.084766093562575,16.088164734106357,16.09156337465014,16.09496201519392,16.098360655737704,16.101759296281486,16.105157936825268,16.108556577369054,16.111955217912836,16.11535385845662,16.1187524990004,16.122151139544183,16.125549780087965,16.128948420631747,16.13234706117553,16.135745701719312,16.139144342263094,16.142542982806876,16.14594162335066,16.14934026389444,16.152738904438223,16.156137544982005,16.15953618552579,16.162934826069574,16.166333466613356,16.169732107157138,16.17313074770092,16.176529388244703,16.179928028788485,16.183326669332267,16.18672530987605,16.19012395041983,16.193522590963614,16.196921231507396,16.20031987205118,16.20371851259496,16.207117153138743,16.21051579368253,16.21391443422631,16.217313074770093,16.220711715313875,16.224110355857658,16.22750899640144,16.230907636945222,16.234306277489004,16.237704918032787,16.24110355857657,16.24450219912035,16.247900839664133,16.251299480207916,16.254698120751698,16.25809676129548,16.261495401839266,16.264894042383048,16.26829268292683,16.271691323470613,16.275089964014395,16.278488604558177,16.28188724510196,16.28528588564574,16.288684526189524,16.292083166733306,16.29548180727709,16.29888044782087,16.302279088364653,16.305677728908435,16.309076369452217,16.312475009996003,16.315873650539785,16.319272291083568,16.32267093162735,16.326069572171132,16.329468212714914,16.332866853258697,16.33626549380248,16.33966413434626,16.343062774890043,16.346461415433826,16.349860055977608,16.35325869652139,16.356657337065172,16.360055977608955,16.36345461815274,16.366853258696523,16.370251899240305,16.373650539784087,16.37704918032787,16.38044782087165,16.383846461415434,16.387245101959216,16.390643742503,16.39404238304678,16.397441023590563,16.400839664134345,16.404238304678127,16.40763694522191,16.411035585765692,16.414434226309478,16.41783286685326,16.421231507397042,16.424630147940825,16.428028788484607,16.43142742902839,16.43482606957217,16.438224710115954,16.441623350659736,16.445021991203518,16.4484206317473,16.451819272291083,16.455217912834865,16.458616553378647,16.46201519392243,16.465413834466215,16.468812475009997,16.47221111555378,16.475609756097562,16.479008396641344,16.482407037185126,16.48580567772891,16.48920431827269,16.492602958816473,16.496001599360255,16.499400239904038,16.50279888044782,16.506197520991602,16.509596161535384,16.512994802079167,16.516393442622952,16.519792083166735,16.523190723710517,16.5265893642543,16.52998800479808,16.533386645341864,16.536785285885646,16.540183926429428,16.54358256697321,16.546981207516993,16.550379848060775,16.553778488604557,16.55717712914834,16.56057576969212,16.563974410235904,16.56737305077969,16.570771691323472,16.574170331867254,16.577568972411036,16.58096761295482,16.5843662534986,16.587764894042383,16.591163534586165,16.594562175129948,16.59796081567373,16.601359456217512,16.604758096761294,16.608156737305077,16.61155537784886,16.61495401839264,16.618352658936427,16.62175129948021,16.62514994002399,16.628548580567774,16.631947221111556,16.63534586165534,16.63874450219912,16.642143142742903,16.645541783286685,16.648940423830467,16.65233906437425,16.65573770491803,16.659136345461814,16.662534986005596,16.66593362654938,16.669332267093164,16.672730907636947,16.67612954818073,16.67952818872451,16.682926829268293,16.686325469812076,16.689724110355858,16.69312275089964,16.696521391443422,16.699920031987205,16.703318672530987,16.70671731307477,16.71011595361855,16.713514594162334,16.716913234706116,16.7203118752499,16.723710515793684,16.727109156337466,16.73050779688125,16.73390643742503,16.737305077968813,16.740703718512595,16.744102359056377,16.74750099960016,16.750899640143942,16.754298280687724,16.757696921231506,16.76109556177529,16.76449420231907,16.767892842862853,16.77129148340664,16.77469012395042,16.778088764494203,16.781487405037986,16.784886045581768,16.78828468612555,16.791683326669332,16.795081967213115,16.798480607756897,16.80187924830068,16.80527788884446,16.808676529388244,16.812075169932026,16.815473810475808,16.818872451019594,16.822271091563376,16.82566973210716,16.82906837265094,16.832467013194723,16.835865653738505,16.839264294282287,16.84266293482607,16.846061575369852,16.849460215913634,16.852858856457416,16.8562574970012,16.85965613754498,16.863054778088763,16.866453418632545,16.86985205917633,16.873250699720113,16.876649340263896,16.880047980807678,16.88344662135146,16.886845261895242,16.890243902439025,16.893642542982807,16.89704118352659,16.90043982407037,16.903838464614154,16.907237105157936,16.91063574570172,16.9140343862455,16.917433026789283,16.92083166733307,16.92423030787685,16.927628948420633,16.931027588964415,16.934426229508198,16.93782487005198,16.941223510595762,16.944622151139544,16.948020791683327,16.95141943222711,16.95481807277089,16.958216713314673,16.961615353858456,16.965013994402238,16.96841263494602,16.971811275489806,16.975209916033588,16.97860855657737,16.982007197121153,16.985405837664935,16.988804478208717,16.9922031187525,16.99560175929628,16.999000399840064,17.002399040383846,17.00579768092763,17.00919632147141,17.012594962015193,17.015993602558975,17.019392243102757,17.022790883646543,17.026189524190325,17.029588164734108,17.03298680527789,17.036385445821672,17.039784086365454,17.043182726909237,17.04658136745302,17.0499800079968,17.053378648540583,17.056777289084366,17.060175929628148,17.06357457017193,17.066973210715712,17.070371851259495,17.07377049180328,17.077169132347063,17.080567772890845,17.083966413434627,17.08736505397841,17.09076369452219,17.094162335065974,17.097560975609756,17.10095961615354,17.10435825669732,17.107756897241103,17.111155537784885,17.114554178328667,17.11795281887245,17.121351459416232,17.124750099960018,17.1281487405038,17.131547381047582,17.134946021591364,17.138344662135147,17.14174330267893,17.14514194322271,17.148540583766493,17.151939224310276,17.155337864854058,17.15873650539784,17.162135145941622,17.165533786485405,17.168932427029187,17.17233106757297,17.175729708116755,17.179128348660537,17.18252698920432,17.185925629748102,17.189324270291884,17.192722910835666,17.19612155137945,17.19952019192323,17.202918832467013,17.206317473010795,17.209716113554578,17.21311475409836,17.216513394642142,17.219912035185924,17.223310675729707,17.226709316273492,17.230107956817275,17.233506597361057,17.23690523790484,17.24030387844862,17.243702518992404,17.247101159536186,17.250499800079968,17.25389844062375,17.257297081167533,17.260695721711315,17.264094362255097,17.26749300279888,17.27089164334266,17.274290283886444,17.27768892443023,17.281087564974012,17.284486205517794,17.287884846061576,17.29128348660536,17.29468212714914,17.298080767692923,17.301479408236705,17.304878048780488,17.30827668932427,17.311675329868052,17.315073970411834,17.318472610955617,17.3218712514994,17.32526989204318,17.328668532586967,17.33206717313075,17.33546581367453,17.338864454218314,17.342263094762096,17.345661735305878,17.34906037584966,17.352459016393443,17.355857656937225,17.359256297481007,17.36265493802479,17.36605357856857,17.369452219112354,17.372850859656136,17.37624950019992,17.379648140743704,17.383046781287486,17.38644542183127,17.38984406237505,17.393242702918833,17.396641343462615,17.400039984006398,17.40343862455018,17.406837265093962,17.410235905637744,17.413634546181527,17.41703318672531,17.42043182726909,17.423830467812873,17.427229108356656,17.43062774890044,17.434026389444224,17.437425029988006,17.44082367053179,17.44422231107557,17.447620951619353,17.451019592163135,17.454418232706917,17.4578168732507,17.461215513794482,17.464614154338264,17.468012794882046,17.47141143542583,17.47481007596961,17.478208716513393,17.48160735705718,17.48500599760096,17.488404638144743,17.491803278688526,17.495201919232308,17.49860055977609,17.501999200319872,17.505397840863655,17.508796481407437,17.51219512195122,17.515593762495,17.518992403038784,17.522391043582566,17.525789684126348,17.52918832467013,17.532586965213916,17.5359856057577,17.53938424630148,17.542782886845263,17.546181527389045,17.549580167932827,17.55297880847661,17.556377449020392,17.559776089564174,17.563174730107956,17.56657337065174,17.56997201119552,17.573370651739303,17.576769292283085,17.580167932826868,17.583566573370653,17.586965213914436,17.590363854458218,17.593762495002,17.597161135545782,17.600559776089565,17.603958416633347,17.60735705717713,17.61075569772091,17.614154338264694,17.617552978808476,17.620951619352258,17.62435025989604,17.627748900439823,17.631147540983605,17.63454618152739,17.637944822071173,17.641343462614955,17.644742103158737,17.64814074370252,17.651539384246302,17.654938024790084,17.658336665333866,17.66173530587765,17.66513394642143,17.668532586965213,17.671931227508995,17.675329868052778,17.67872850859656,17.682127149140342,17.685525789684128,17.68892443022791,17.692323070771693,17.695721711315475,17.699120351859257,17.70251899240304,17.70591763294682,17.709316273490604,17.712714914034386,17.71611355457817,17.71951219512195,17.722910835665733,17.726309476209515,17.729708116753297,17.73310675729708,17.736505397840865,17.739904038384648,17.74330267892843,17.746701319472212,17.750099960015994,17.753498600559777,17.75689724110356,17.76029588164734,17.763694522191123,17.767093162734906,17.770491803278688,17.77389044382247,17.777289084366252,17.780687724910035,17.784086365453817,17.787485005997603,17.790883646541385,17.794282287085167,17.79768092762895,17.80107956817273,17.804478208716514,17.807876849260296,17.81127548980408,17.81467413034786,17.818072770891643,17.821471411435425,17.824870051979207,17.82826869252299,17.831667333066772,17.835065973610554,17.83846461415434,17.841863254698122,17.845261895241904,17.848660535785687,17.85205917632947,17.85545781687325,17.858856457417033,17.862255097960816,17.865653738504598,17.86905237904838,17.872451019592162,17.875849660135945,17.879248300679727,17.88264694122351,17.88604558176729,17.889444222311077,17.89284286285486,17.89624150339864,17.899640143942424,17.903038784486206,17.90643742502999,17.90983606557377,17.913234706117553,17.916633346661335,17.920031987205117,17.9234306277489,17.926829268292682,17.930227908836464,17.933626549380246,17.93702518992403,17.940423830467815,17.943822471011597,17.94722111155538,17.95061975209916,17.954018392642944,17.957417033186726,17.960815673730508,17.96421431427429,17.967612954818073,17.971011595361855,17.974410235905637,17.97780887644942,17.9812075169932,17.984606157536984,17.988004798080766,17.991403438624552,17.994802079168334,17.998200719712116,18.0015993602559,18.00499800079968,18.008396641343463,18.011795281887245,18.015193922431028,18.01859256297481,18.021991203518592,18.025389844062374,18.028788484606157,18.03218712514994,18.03558576569372,18.038984406237503,18.04238304678129,18.04578168732507,18.049180327868854,18.052578968412636,18.055977608956418,18.0593762495002,18.062774890043983,18.066173530587765,18.069572171131547,18.07297081167533,18.07636945221911,18.079768092762894,18.083166733306676,18.08656537385046,18.08996401439424,18.093362654938026,18.09676129548181,18.10015993602559,18.103558576569373,18.106957217113155,18.110355857656938,18.11375449820072,18.117153138744502,18.120551779288284,18.123950419832067,18.12734906037585,18.13074770091963,18.134146341463413,18.137544982007196,18.140943622550978,18.144342263094764,18.147740903638546,18.151139544182328,18.15453818472611,18.157936825269893,18.161335465813675,18.164734106357457,18.16813274690124,18.17153138744502,18.174930027988804,18.178328668532586,18.18172730907637,18.18512594962015,18.188524590163933,18.191923230707715,18.1953218712515,18.198720511795283,18.202119152339066,18.205517792882848,18.20891643342663,18.212315073970412,18.215713714514195,18.219112355057977,18.22251099560176,18.22590963614554,18.229308276689324,18.232706917233106,18.236105557776888,18.23950419832067,18.242902838864453,18.24630147940824,18.24970011995202,18.253098760495803,18.256497401039585,18.259896041583367,18.26329468212715,18.266693322670932,18.270091963214714,18.273490603758496,18.27688924430228,18.28028788484606,18.283686525389843,18.287085165933625,18.290483806477408,18.29388244702119,18.297281087564976,18.300679728108758,18.30407836865254,18.307477009196322,18.310875649740105,18.314274290283887,18.31767293082767,18.32107157137145,18.324470211915234,18.327868852459016,18.331267493002798,18.33466613354658,18.338064774090363,18.341463414634145,18.344862055177927,18.348260695721713,18.351659336265495,18.355057976809277,18.35845661735306,18.361855257896842,18.365253898440624,18.368652538984406,18.37205117952819,18.37544982007197,18.378848460615753,18.382247101159535,18.385645741703318,18.3890443822471,18.392443022790882,18.395841663334664,18.39924030387845,18.402638944422232,18.406037584966015,18.409436225509797,18.41283486605358,18.41623350659736,18.419632147141144,18.423030787684926,18.426429428228708,18.42982806877249,18.433226709316273,18.436625349860055,18.440023990403837,18.44342263094762,18.4468212714914,18.450219912035188,18.45361855257897,18.457017193122752,18.460415833666534,18.463814474210317,18.4672131147541,18.47061175529788,18.474010395841663,18.477409036385446,18.480807676929228,18.48420631747301,18.487604958016792,18.491003598560575,18.494402239104357,18.49780087964814,18.501199520191925,18.504598160735707,18.50799680127949,18.51139544182327,18.514794082367054,18.518192722910836,18.52159136345462,18.5249900039984,18.528388644542183,18.531787285085965,18.535185925629747,18.53858456617353,18.541983206717312,18.545381847261094,18.548780487804876,18.552179128348662,18.555577768892444,18.558976409436227,18.56237504998001,18.56577369052379,18.569172331067573,18.572570971611356,18.575969612155138,18.57936825269892,18.582766893242702,18.586165533786485,18.589564174330267,18.59296281487405,18.59636145541783,18.599760095961614,18.6031587365054,18.60655737704918,18.609956017592964,18.613354658136746,18.61675329868053,18.62015193922431,18.623550579768093,18.626949220311875,18.630347860855657,18.63374650139944,18.637145141943222,18.640543782487004,18.643942423030786,18.64734106357457,18.65073970411835,18.654138344662137,18.65753698520592,18.6609356257497,18.664334266293483,18.667732906837266,18.671131547381048,18.67453018792483,18.677928828468612,18.681327469012395,18.684726109556177,18.68812475009996,18.69152339064374,18.694922031187524,18.698320671731306,18.701719312275088,18.705117952818874,18.708516593362656,18.71191523390644,18.71531387445022,18.718712514994003,18.722111155537785,18.725509796081568,18.72890843662535,18.732307077169132,18.735705717712914,18.739104358256697,18.74250299880048,18.74590163934426,18.749300279888043,18.752698920431826,18.75609756097561,18.759496201519394,18.762894842063176,18.766293482606958,18.76969212315074,18.773090763694523,18.776489404238305,18.779888044782087,18.78328668532587,18.78668532586965,18.790083966413434,18.793482606957216,18.796881247501,18.80027988804478,18.803678528588563,18.80707716913235,18.81047580967613,18.813874450219913,18.817273090763695,18.820671731307478,18.82407037185126,18.827469012395042,18.830867652938824,18.834266293482607,18.83766493402639,18.84106357457017,18.844462215113953,18.847860855657736,18.851259496201518,18.8546581367453,18.858056777289086,18.861455417832868,18.86485405837665,18.868252698920433,18.871651339464215,18.875049980007997,18.87844862055178,18.88184726109556,18.885245901639344,18.888644542183126,18.89204318272691,18.89544182327069,18.898840463814473,18.902239104358255,18.905637744902037,18.909036385445823,18.912435025989605,18.915833666533388,18.91923230707717,18.922630947620952,18.926029588164734,18.929428228708517,18.9328268692523,18.93622550979608,18.939624150339863,18.943022790883646,18.946421431427428,18.94982007197121,18.953218712514992,18.95661735305878,18.96001599360256,18.963414634146343,18.966813274690125,18.970211915233907,18.97361055577769,18.97700919632147,18.980407836865254,18.983806477409036,18.98720511795282,18.9906037584966,18.994002399040383,18.997401039584165,19.000799680127948,19.00419832067173,19.007596961215516,19.010995601759298,19.01439424230308,19.017792882846862,19.021191523390645,19.024590163934427,19.02798880447821,19.03138744502199,19.034786085565774,19.038184726109556,19.041583366653338,19.04498200719712,19.048380647740903,19.051779288284685,19.055177928828467,19.058576569372253,19.061975209916035,19.065373850459817,19.0687724910036,19.072171131547382,19.075569772091164,19.078968412634946,19.08236705317873,19.08576569372251,19.089164334266293,19.092562974810075,19.095961615353858,19.09936025589764,19.102758896441422,19.106157536985204,19.10955617752899,19.112954818072772,19.116353458616555,19.119752099160337,19.12315073970412,19.1265493802479,19.129948020791684,19.133346661335466,19.136745301879248,19.14014394242303,19.143542582966813,19.146941223510595,19.150339864054377,19.15373850459816,19.15713714514194,19.160535785685727,19.16393442622951,19.167333066773292,19.170731707317074,19.174130347860856,19.17752898840464,19.18092762894842,19.184326269492203,19.187724910035985,19.191123550579768,19.19452219112355,19.197920831667332,19.201319472211114,19.204718112754897,19.20811675329868,19.211515393842465,19.214914034386247,19.21831267493003,19.22171131547381,19.225109956017594,19.228508596561376,19.23190723710516,19.23530587764894,19.238704518192723,19.242103158736505,19.245501799280287,19.24890043982407,19.25229908036785,19.255697720911634,19.259096361455416,19.262495001999202,19.265893642542984,19.269292283086767,19.27269092363055,19.27608956417433,19.279488204718113,19.282886845261896,19.286285485805678,19.28968412634946,19.293082766893242,19.296481407437025,19.299880047980807,19.30327868852459,19.30667732906837,19.310075969612154,19.31347461015594,19.31687325069972,19.320271891243504,19.323670531787286,19.32706917233107,19.33046781287485,19.333866453418633,19.337265093962415,19.340663734506197,19.34406237504998,19.347461015593762,19.350859656137544,19.354258296681326,19.35765693722511,19.36105557776889,19.364454218312677,19.36785285885646,19.37125149940024,19.374650139944023,19.378048780487806,19.381447421031588,19.38484606157537,19.388244702119152,19.391643342662935,19.395041983206717,19.3984406237505,19.40183926429428,19.405237904838064,19.408636545381846,19.412035185925628,19.415433826469414,19.418832467013196,19.42223110755698,19.42562974810076,19.429028388644543,19.432427029188325,19.435825669732107,19.43922431027589,19.442622950819672,19.446021591363454,19.449420231907236,19.45281887245102,19.4562175129948,19.459616153538583,19.463014794082365,19.46641343462615,19.469812075169934,19.473210715713716,19.476609356257498,19.48000799680128,19.483406637345063,19.486805277888845,19.490203918432627,19.49360255897641,19.49700119952019,19.500399840063974,19.503798480607756,19.50719712115154,19.51059576169532,19.513994402239103,19.51739304278289,19.52079168332667,19.524190323870453,19.527588964414235,19.530987604958018,19.5343862455018,19.537784886045582,19.541183526589364,19.544582167133147,19.54798080767693,19.55137944822071,19.554778088764493,19.558176729308276,19.561575369852058,19.56497401039584,19.568372650939626,19.571771291483408,19.57516993202719,19.578568572570973,19.581967213114755,19.585365853658537,19.58876449420232,19.5921631347461,19.595561775289884,19.598960415833666,19.60235905637745,19.60575769692123,19.609156337465013,19.612554978008795,19.615953618552577,19.619352259096363,19.622750899640145,19.626149540183928,19.62954818072771,19.632946821271492,19.636345461815274,19.639744102359057,19.64314274290284,19.64654138344662,19.649940023990403,19.653338664534186,19.656737305077968,19.66013594562175,19.663534586165532,19.666933226709315,19.6703318672531,19.673730507796883,19.677129148340665,19.680527788884447,19.68392642942823,19.68732506997201,19.690723710515794,19.694122351059576,19.69752099160336,19.70091963214714,19.704318272690923,19.707716913234705,19.711115553778487,19.71451419432227,19.717912834866052,19.721311475409838,19.72471011595362,19.728108756497402,19.731507397041185,19.734906037584967,19.73830467812875,19.74170331867253,19.745101959216314,19.748500599760096,19.751899240303878,19.75529788084766,19.758696521391443,19.762095161935225,19.765493802479007,19.76889244302279,19.772291083566575,19.775689724110357,19.77908836465414,19.782487005197922,19.785885645741704,19.789284286285486,19.79268292682927,19.79608156737305,19.799480207916833,19.802878848460615,19.806277489004398,19.80967612954818,19.813074770091962,19.816473410635744,19.819872051179527,19.823270691723312,19.826669332267095,19.830067972810877,19.83346661335466,19.83686525389844,19.840263894442224,19.843662534986006,19.847061175529788,19.85045981607357,19.853858456617353,19.857257097161135,19.860655737704917,19.8640543782487,19.86745301879248,19.870851659336264,19.87425029988005,19.877648940423832,19.881047580967614,19.884446221511396,19.88784486205518,19.89124350259896,19.894642143142743,19.898040783686525,19.901439424230308,19.90483806477409,19.908236705317872,19.911635345861654,19.915033986405437,19.91843262694922,19.921831267493,19.925229908036787,19.92862854858057,19.93202718912435,19.935425829668134,19.938824470211916,19.942223110755698,19.94562175129948,19.949020391843263,19.952419032387045,19.955817672930827,19.95921631347461,19.96261495401839,19.966013594562174,19.969412235105956,19.97281087564974,19.976209516193524,19.979608156737307,19.98300679728109,19.98640543782487,19.989804078368653,19.993202718912436,19.996601359456218,20.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/negative_gamut.json b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/negative_gamut.json new file mode 100644 index 000000000000..a1817eda9e1a --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/negative_gamut.json @@ -0,0 +1 @@ +{"expected":[-5.0e-309,-4.4497651764423934e-307,-3.9600820250964e-305,-3.524287018225887e-303,-3.136449929098321e-301,-2.791293134431384e-299,-2.4841197973671024e-297,-2.2107499536873427e-295,-1.9674636315479146e-293,-1.7509502307157597e-291,-1.5582634724647566e-289,-1.386781307099175e-287,-1.2341702335343963e-285,-1.0983535453966266e-283,-9.774830715455898e-282,-8.699140264652167e-280,-7.741826282927417e-278,-6.889861799167375e-276,-6.131653420887947e-274,-5.4568835732562126e-272,-4.856370099235842e-270,-4.3219413102991483e-268,-3.846324787439392e-266,-3.423048419287448e-264,-3.0463523306842937e-262,-2.7111105032506187e-260,-2.412761021370679e-258,-2.1472439943947063e-256,-1.910946310316526e-254,-1.700652469139623e-252,-1.5135008268817524e-250,-1.3469446547951261e-248,-1.1987174839005147e-246,-1.066802263250701e-244,-9.494039122326423e-243,-8.449248934062518e-241,-7.519434734776881e-239,-6.691943765868741e-237,-5.9555156664150886e-235,-5.300129244034543e-233,-4.716866108149771e-231,-4.1977893099975176e-229,-3.735835337934064e-227,-3.3247179983325976e-225,-2.9588428740943305e-223,-2.633231196742108e-221,-2.3434520961571057e-219,-2.085562306028301e-217,-1.8560525045331254e-215,-1.651799560064146e-213,-1.4700240321673568e-211,-1.308252349374433e-209,-1.1642831492490602e-207,-1.0361573226094978e-205,-9.221313542927664e-204,-8.206535976875768e-202,-7.303431601825168e-200,-6.499711122066105e-198,-5.784437641581392e-196,-5.147877836562627e-194,-4.581369505943497e-192,-4.0772036975924934e-190,-3.6285198061620856e-188,-3.229212215098522e-186,-2.87384721241775e-184,-2.5575890496465098e-182,-2.276134137753636e-180,-2.0256524846177055e-178,-1.8027355771252935e-176,-1.6043499986851824e-174,-1.4277961509950384e-172,-1.2706715183513247e-170,-1.1308379746114553e-168,-1.0063926879249404e-166,-8.9564222731099e-165,-7.970795187280014e-163,-7.093633370583111e-161,-6.313000549374082e-159,-5.618274000693666e-157,-5.0e-155,-4.4497651764426847e-153,-3.9600820250964e-151,-3.5242870182258867e-149,-3.136449929098115e-147,-2.7912931344313844e-145,-2.484119797367265e-143,-2.2107499536871982e-141,-1.9674636315479146e-139,-1.7509502307158743e-137,-1.5582634724647564e-135,-1.386781307099175e-133,-1.2341702335343156e-131,-1.0983535453966266e-129,-9.774830715456217e-128,-8.699140264651883e-126,-7.741826282927416e-124,-6.889861799167827e-122,-6.131653420887747e-120,-5.456883573256392e-118,-4.8563700992355244e-116,-4.3219413102991486e-114,-3.846324787439518e-112,-3.4230484192873356e-110,-3.0463523306842936e-108,-2.711110503250796e-106,-2.4127610213706e-104,-2.147243994394636e-102,-1.9109463103165888e-100,-1.700652469139623e-98,-1.5135008268817524e-96,-1.346944654795082e-94,-1.198717483900554e-92,-1.0668022632507011e-90,-9.494039122326423e-89,-8.44924893406224e-87,-7.519434734777128e-85,-6.691943765868741e-83,-5.955515666415088e-81,-5.300129244034369e-79,-4.7168661081499256e-77,-4.1977893099975176e-75,-3.7358353379340636e-73,-3.324717998332489e-71,-2.9588428740944276e-69,-2.633231196742108e-67,-2.3434520961571056e-65,-2.0855623060282666e-63,-1.8560525045331862e-61,-1.6517995600641732e-59,-1.4700240321673567e-57,-1.3082523493744118e-55,-1.1642831492490982e-53,-1.0361573226095148e-51,-9.221313542927664e-50,-8.206535976875633e-48,-7.30343160182493e-46,-6.499711122066211e-44,-5.784437641581393e-42,-5.147877836562542e-40,-4.581369505943347e-38,-4.0772036975925605e-36,-3.6285198061620857e-34,-3.2292122150984956e-32,-2.873847212417679e-30,-2.5575890496465724e-28,-2.276134137753655e-26,-2.025652484617689e-24,-1.8027355771252493e-22,-1.604349998685222e-20,-1.42779615099505e-18,-1.2706715183513196e-16,-1.1308379746114323e-14,-1.0063926879249691e-12,-8.956422273110011e-11,-7.970795187279999e-9,-7.093633370581196e-7,-6.313000536794373e-5,-0.0056181853307431025,-0.4400505857449335,-0.020886417587042894,-0.004886114079821815,-0.00048395320595955,-4.546665310472096e-5,1.0125879979023733e-5,4.183900353743629e-7,4.11283456249609e-8,4.050465655995176e-9,-1.1365837665543298e-9,1.2114645557339782e-10,-9.588841930770732e-12,-5.414692209632379e-13,-1.5683476644952804e-14,1.804323054782078e-14,1.9097802580785853e-15,-1.5372989629908586e-16,1.9804957405009592e-17,-2.259133732929854e-18,-1.7844022904283188e-20,-2.140590081528144e-20,7.300836606324392e-22,-8.087553801452884e-24,-7.783044372698026e-24,7.223676286631493e-25,3.1636227032991777e-25,-4.2478112213880395e-27,3.327107210271461e-27,-3.7221328435366916e-28,-2.1953355793228358e-29,2.8244110398178676e-30,-2.4231362551890646e-31,-3.7939534797809747e-32,4.6355453941121626e-34,-2.9951430711887066e-34,4.92820732070431e-35,-2.0572278299427673e-36,-1.3386779278695612e-37,7.066207050239496e-38,4.264479870793838e-39,7.457916452513797e-40,-6.424393850115759e-42,-9.207911127133713e-42,8.105250633117575e-43,-3.2584578384656816e-44,5.2868638014416396e-45,1.0069394484142276e-45,-1.2084972564309916e-46,1.1431439517498813e-48,9.179890656843944e-49,7.602812190270087e-50,-1.540690744230502e-50,4.975498423290135e-52,-6.8140543398298475e-53,-1.390888482531383e-53,-1.7781456106482037e-54,1.954106008342402e-55,6.690978611760961e-57,2.3452628768805785e-57,5.9333926028023e-59,-2.629493767514226e-59,-2.0646733032734623e-60,2.9589654896985787e-61,3.13918369058994e-62,1.2197063235549864e-64,-2.665290066252658e-64,3.73501084636987e-65,-3.3754372931736715e-66,1.57493835619054e-67,-4.228751533006482e-68,4.5507193121927977e-69,4.377010188940426e-71,-5.1356539546017746e-71,-7.435912864919112e-73,-5.403671331940368e-73,5.256070235170629e-74,5.798377393815608e-75,-5.599249013026886e-76,-2.3630456555084838e-79,7.015772420927616e-78,2.0516692741070112e-79,-4.4218211855190716e-80,6.847368165175167e-81,7.392533529292952e-82,-1.0495356280749213e-82,3.7347645255758442e-84,1.1640332758621828e-84,-6.790042622566136e-86,-8.643296108897087e-87,-3.4567764572099354e-89,-7.8167551158398705e-90,9.50288855376279e-91,3.115444296682208e-91,5.745011916745252e-92,-1.912413873784602e-92,-2.975400922043256e-94,-2.1493047952702227e-94,-2.275863481928934e-95,-8.332611041161077e-97,1.7703687810188754e-97,-2.3984588023629042e-98,1.1619498021395045e-99,-1.7970902939344687e-100,1.8857990198503566e-101,2.8292788256208515e-102,3.383485301660869e-103,-3.3317509158757956e-104,-3.8364457618329545e-105,4.2315927545801203e-106,4.0403436380140317e-107,-1.221200733849241e-108,3.9094457257846562e-109,-2.5231813065157966e-110,5.421064228541705e-111,6.137780629677968e-112,3.771757712142258e-113,6.18638882871424e-114,-1.754530150359258e-115,7.001347452922075e-116,7.492864763135335e-117,8.65221250712318e-118,7.611157730875771e-119,-6.808360867644967e-120,-7.955672904265191e-121,-1.0980976910076004e-121,1.1606505947582547e-122,7.496367150646412e-124,-6.440546140203559e-125,1.0602639740517894e-125,-4.446749548865267e-127,1.0043305723429618e-127,1.5694857038218278e-128,-3.310234398901121e-130,5.436943151111062e-131,-1.9477430892758937e-131,-2.0607547488623006e-132,2.020019428181366e-133,8.747252045553496e-135,1.758316657645833e-135,-9.49717859553087e-137,3.577631012925549e-138,-2.779974258129899e-138,2.0870622310673034e-139,-2.594259835932494e-140,3.406198943422353e-141,-3.737979013522087e-142,-3.6772436251142375e-143,-3.473496956392458e-144,3.897765621291204e-145,-4.124722233536003e-146,-3.936894246814397e-147,4.0464422963189756e-148,6.897035198856578e-150,5.09167918534098e-150,9.755552808129511e-152,-5.2269062164447146e-152,-1.6067503888634854e-153,-6.550103339845027e-154,-7.5866879552418e-155],"x":[-1.0e-308,-8.899530352884787e-307,-7.9201640501928e-305,-7.048574036451774e-303,-6.272899858196642e-301,-5.582586268862768e-299,-4.968239594734205e-297,-4.421499907374685e-295,-3.934927263095829e-293,-3.5019004614315195e-291,-3.116526944929513e-289,-2.77356261419835e-287,-2.4683404670687925e-285,-2.196707090793253e-283,-1.9549661430911795e-281,-1.7398280529304335e-279,-1.5483652565854834e-277,-1.377972359833475e-275,-1.2263306841775895e-273,-1.0913767146512425e-271,-9.712740198471684e-270,-8.643882620598297e-268,-7.692649574878785e-266,-6.846096838574896e-264,-6.092704661368587e-262,-5.422221006501237e-260,-4.825522042741358e-258,-4.2944879887894126e-256,-3.821892620633052e-254,-3.401304938279246e-252,-3.027001653763505e-250,-2.6938893095902522e-248,-2.3974349678010294e-246,-2.133604526501402e-244,-1.8988078244652846e-242,-1.6898497868125036e-240,-1.5038869469553763e-238,-1.3383887531737482e-236,-1.1911031332830177e-234,-1.0600258488069085e-232,-9.433732216299542e-231,-8.395578619995035e-229,-7.471670675868128e-227,-6.649435996665195e-225,-5.917685748188661e-223,-5.266462393484216e-221,-4.6869041923142114e-219,-4.171124612056602e-217,-3.712105009066251e-215,-3.303599120128292e-213,-2.9400480643347136e-211,-2.616504698748866e-209,-2.3285662984981204e-207,-2.0723146452189957e-205,-1.844262708585533e-203,-1.6413071953751537e-201,-1.4606863203650337e-199,-1.299942224413221e-197,-1.1568875283162785e-195,-1.0295755673125253e-193,-9.162739011886994e-192,-8.154407395184987e-190,-7.257039612324171e-188,-6.458424430197044e-186,-5.7476944248355e-184,-5.1151780992930196e-182,-4.552268275507272e-180,-4.051304969235411e-178,-3.605471154250587e-176,-3.2086999973703647e-174,-2.855592301990077e-172,-2.5413430367026494e-170,-2.2616759492229107e-168,-2.0127853758498808e-166,-1.79128445462198e-164,-1.5941590374560028e-162,-1.4187266741166222e-160,-1.2626001098748165e-158,-1.1236548001387332e-156,-1.0e-154,-8.899530352885369e-153,-7.9201640501928e-151,-7.0485740364517735e-149,-6.27289985819623e-147,-5.582586268862769e-145,-4.96823959473453e-143,-4.4214999073743964e-141,-3.934927263095829e-139,-3.5019004614317487e-137,-3.116526944929513e-135,-2.77356261419835e-133,-2.468340467068631e-131,-2.1967070907932532e-129,-1.9549661430912435e-127,-1.7398280529303765e-125,-1.5483652565854832e-123,-1.3779723598335654e-121,-1.2263306841775494e-119,-1.0913767146512783e-117,-9.712740198471049e-116,-8.643882620598297e-114,-7.692649574879036e-112,-6.846096838574671e-110,-6.092704661368587e-108,-5.422221006501592e-106,-4.8255220427412e-104,-4.294487988789272e-102,-3.8218926206331776e-100,-3.401304938279246e-98,-3.027001653763505e-96,-2.693889309590164e-94,-2.397434967801108e-92,-2.1336045265014023e-90,-1.8988078244652846e-88,-1.689849786812448e-86,-1.5038869469554255e-84,-1.3383887531737482e-82,-1.1911031332830177e-80,-1.0600258488068738e-78,-9.433732216299851e-77,-8.395578619995035e-75,-7.471670675868127e-73,-6.649435996664978e-71,-5.917685748188855e-69,-5.266462393484216e-67,-4.686904192314211e-65,-4.1711246120565333e-63,-3.7121050090663724e-61,-3.3035991201283464e-59,-2.9400480643347135e-57,-2.6165046987488235e-55,-2.3285662984981963e-53,-2.0723146452190297e-51,-1.844262708585533e-49,-1.6413071953751266e-47,-1.460686320364986e-45,-1.2999422244132423e-43,-1.1568875283162786e-41,-1.0295755673125085e-39,-9.162739011886694e-38,-8.154407395185121e-36,-7.257039612324171e-34,-6.458424430196991e-32,-5.747694424835358e-30,-5.115178099293145e-28,-4.55226827550731e-26,-4.051304969235378e-24,-3.6054711542504986e-22,-3.208699997370444e-20,-2.8555923019901e-18,-2.5413430367026393e-16,-2.2616759492228646e-14,-2.0127853758499383e-12,-1.7912844546220023e-10,-1.5941590374559997e-8,-1.4187266741165963e-6,-0.00012626001098748563,-0.01123654800138751,-1.0,-88.99530352885229,-7920.1640501925485,-704857.4036451903,-6.272899858196244e7,-5.5825862688627e9,-4.968239594734387e11,-4.421499907374487e13,-3.934927263095845e15,-3.5019004614317203e17,-3.1165269449294365e19,-2.773562614198418e21,-2.468340467068651e23,-2.1967070907932353e25,-1.9549661430912594e27,-1.7398280529303623e29,-1.548365256585496e31,-1.3779723598335653e33,-1.2263306841775694e35,-1.0913767146512783e37,-9.712740198471207e38,-8.643882620598297e40,-7.692649574879162e42,-6.8460968385746715e44,-6.092704661368687e46,-5.422221006501592e48,-4.825522042741279e50,-4.2944879887892724e52,-3.821892620633115e54,-3.401304938279246e56,-3.0270016537634554e58,-2.6938893095901643e60,-2.3974349678010686e62,-2.133604526501402e64,-1.8988078244652846e66,-1.6898497868124484e68,-1.5038869469554255e70,-1.338388753173748e72,-1.1911031332830178e74,-1.0600258488068737e76,-9.433732216299852e77,-8.395578619995035e79,-7.471670675868128e81,-6.649435996664978e83,-5.917685748188855e85,-5.2664623934842164e87,-4.686904192314212e89,-4.171124612056465e91,-3.7121050090663724e93,-3.3035991201282924e95,-2.9400480643347137e97,-2.6165046987487807e99,-2.3285662984981965e101,-2.0723146452190636e103,-1.844262708585533e105,-1.6413071953751536e107,-1.4606863203649858e109,-1.2999422244132635e111,-1.1568875283162786e113,-1.0295755673125254e115,-9.162739011886694e116,-8.154407395185253e118,-7.257039612324171e120,-6.458424430197044e122,-5.747694424835312e124,-5.115178099293187e126,-4.552268275507272e128,-4.051304969235411e130,-3.605471154250587e132,-3.2086999973703647e134,-2.8555923019900767e136,-2.5413430367026497e138,-2.261675949222911e140,-2.0127853758498808e142,-1.7912844546219802e144,-1.594159037456003e146,-1.418726674116622e148,-1.2626001098748165e150,-1.1236548001387333e152,-1.0e154,-8.89953035288537e155,-7.9201640501928e157,-7.048574036451773e159,-6.27289985819623e161,-5.582586268862769e163,-4.96823959473453e165,-4.4214999073743964e167,-3.934927263095829e169,-3.5019004614317486e171,-3.116526944929513e173,-2.77356261419835e175,-2.468340467068631e177,-2.196707090793253e179,-1.9549661430913075e181,-1.7398280529303195e183,-1.5483652565854833e185,-1.3779723598335651e187,-1.2263306841775895e189,-1.0913767146512426e191,-9.71274019847105e192,-8.643882620598297e194,-7.692649574879288e196,-6.846096838574447e198,-6.092704661368587e200,-5.422221006501592e202,-4.825522042741358e204,-4.2944879887894124e206,-3.8218926206330524e208,-3.4013049382792456e210,-3.027001653763505e212,-2.6938893095902522e214,-2.3974349678010295e216,-2.133604526501402e218,-1.8988078244652845e220,-1.6898497868125036e222,-1.5038869469553763e224,-1.3383887531737482e226,-1.1911031332830176e228,-1.0600258488069085e230,-9.433732216299543e231,-8.395578619995036e233,-7.471670675868129e235,-6.649435996665194e237,-5.917685748188661e239,-5.266462393484216e241,-4.686904192314212e243,-4.1711246120566017e245,-3.7121050090662507e247,-3.3035991201282923e249,-2.940048064334714e251,-2.6165046987488664e253,-2.3285662984981203e255,-2.0723146452189955e257,-1.8442627085856534e259,-1.6413071953751535e261,-1.4606863203649382e263,-1.299942224413306e265,-1.1568875283162785e267,-1.029575567312458e269,-9.162739011886994e270,-8.154407395184987e272,-7.257039612324646e274,-6.458424430197044e276,-5.747694424835124e278,-5.1151780992933545e280,-4.5522682755072723e282,-4.051304969235146e284,-3.605471154250587e286,-3.208699997370365e288,-2.855592301990264e290,-2.5413430367026497e292,-2.2616759492227627e294,-2.0127853758500127e296,-1.7912844546219802e298,-1.5941590374558985e300,-1.4187266741166224e302,-1.2626001098748166e304,-1.1236548001388068e306,-1.0e308]} diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/positive_gamut.json b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/positive_gamut.json new file mode 100644 index 000000000000..8692eecfdbd5 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/positive_gamut.json @@ -0,0 +1 @@ +{"expected":[5.0e-309,4.4497651764423934e-307,3.9600820250964e-305,3.524287018225887e-303,3.136449929098321e-301,2.791293134431384e-299,2.4841197973671024e-297,2.2107499536873427e-295,1.9674636315479146e-293,1.7509502307157597e-291,1.5582634724647566e-289,1.386781307099175e-287,1.2341702335343963e-285,1.0983535453966266e-283,9.774830715455898e-282,8.699140264652167e-280,7.741826282927417e-278,6.889861799167375e-276,6.131653420887947e-274,5.4568835732562126e-272,4.856370099235842e-270,4.3219413102991483e-268,3.846324787439392e-266,3.423048419287448e-264,3.0463523306842937e-262,2.7111105032506187e-260,2.412761021370679e-258,2.1472439943947063e-256,1.910946310316526e-254,1.700652469139623e-252,1.5135008268817524e-250,1.3469446547951261e-248,1.1987174839005147e-246,1.066802263250701e-244,9.494039122326423e-243,8.449248934062518e-241,7.519434734776881e-239,6.691943765868741e-237,5.9555156664150886e-235,5.300129244034543e-233,4.716866108149771e-231,4.1977893099975176e-229,3.735835337934064e-227,3.3247179983325976e-225,2.9588428740943305e-223,2.633231196742108e-221,2.3434520961571057e-219,2.085562306028301e-217,1.8560525045331254e-215,1.651799560064146e-213,1.4700240321673568e-211,1.308252349374433e-209,1.1642831492490602e-207,1.0361573226094978e-205,9.221313542927664e-204,8.206535976875768e-202,7.303431601825168e-200,6.499711122066105e-198,5.784437641581392e-196,5.147877836562627e-194,4.581369505943497e-192,4.0772036975924934e-190,3.6285198061620856e-188,3.229212215098522e-186,2.87384721241775e-184,2.5575890496465098e-182,2.276134137753636e-180,2.0256524846177055e-178,1.8027355771252935e-176,1.6043499986851824e-174,1.4277961509950384e-172,1.2706715183513247e-170,1.1308379746114553e-168,1.0063926879249404e-166,8.9564222731099e-165,7.970795187280014e-163,7.093633370583111e-161,6.313000549374082e-159,5.618274000693666e-157,5.0e-155,4.4497651764426847e-153,3.9600820250964e-151,3.5242870182258867e-149,3.136449929098115e-147,2.7912931344313844e-145,2.484119797367265e-143,2.2107499536871982e-141,1.9674636315479146e-139,1.7509502307158743e-137,1.5582634724647564e-135,1.386781307099175e-133,1.2341702335343156e-131,1.0983535453966266e-129,9.774830715456217e-128,8.699140264651883e-126,7.741826282927416e-124,6.889861799167827e-122,6.131653420887747e-120,5.456883573256392e-118,4.8563700992355244e-116,4.3219413102991486e-114,3.846324787439518e-112,3.4230484192873356e-110,3.0463523306842936e-108,2.711110503250796e-106,2.4127610213706e-104,2.147243994394636e-102,1.9109463103165888e-100,1.700652469139623e-98,1.5135008268817524e-96,1.346944654795082e-94,1.198717483900554e-92,1.0668022632507011e-90,9.494039122326423e-89,8.44924893406224e-87,7.519434734777128e-85,6.691943765868741e-83,5.955515666415088e-81,5.300129244034369e-79,4.7168661081499256e-77,4.1977893099975176e-75,3.7358353379340636e-73,3.324717998332489e-71,2.9588428740944276e-69,2.633231196742108e-67,2.3434520961571056e-65,2.0855623060282666e-63,1.8560525045331862e-61,1.6517995600641732e-59,1.4700240321673567e-57,1.3082523493744118e-55,1.1642831492490982e-53,1.0361573226095148e-51,9.221313542927664e-50,8.206535976875633e-48,7.30343160182493e-46,6.499711122066211e-44,5.784437641581393e-42,5.147877836562542e-40,4.581369505943347e-38,4.0772036975925605e-36,3.6285198061620857e-34,3.2292122150984956e-32,2.873847212417679e-30,2.5575890496465724e-28,2.276134137753655e-26,2.025652484617689e-24,1.8027355771252493e-22,1.604349998685222e-20,1.42779615099505e-18,1.2706715183513196e-16,1.1308379746114323e-14,1.0063926879249691e-12,8.956422273110011e-11,7.970795187279999e-9,7.093633370581196e-7,6.313000536794373e-5,0.0056181853307431025,0.4400505857449335,0.020886417587042894,0.004886114079821815,0.00048395320595955,4.546665310472096e-5,-1.0125879979023733e-5,-4.183900353743629e-7,-4.11283456249609e-8,-4.050465655995176e-9,1.1365837665543298e-9,-1.2114645557339782e-10,9.588841930770732e-12,5.414692209632379e-13,1.5683476644952804e-14,-1.804323054782078e-14,-1.9097802580785853e-15,1.5372989629908586e-16,-1.9804957405009592e-17,2.259133732929854e-18,1.7844022904283188e-20,2.140590081528144e-20,-7.300836606324392e-22,8.087553801452884e-24,7.783044372698026e-24,-7.223676286631493e-25,-3.1636227032991777e-25,4.2478112213880395e-27,-3.327107210271461e-27,3.7221328435366916e-28,2.1953355793228358e-29,-2.8244110398178676e-30,2.4231362551890646e-31,3.7939534797809747e-32,-4.6355453941121626e-34,2.9951430711887066e-34,-4.92820732070431e-35,2.0572278299427673e-36,1.3386779278695612e-37,-7.066207050239496e-38,-4.264479870793838e-39,-7.457916452513797e-40,6.424393850115759e-42,9.207911127133713e-42,-8.105250633117575e-43,3.2584578384656816e-44,-5.2868638014416396e-45,-1.0069394484142276e-45,1.2084972564309916e-46,-1.1431439517498813e-48,-9.179890656843944e-49,-7.602812190270087e-50,1.540690744230502e-50,-4.975498423290135e-52,6.8140543398298475e-53,1.390888482531383e-53,1.7781456106482037e-54,-1.954106008342402e-55,-6.690978611760961e-57,-2.3452628768805785e-57,-5.9333926028023e-59,2.629493767514226e-59,2.0646733032734623e-60,-2.9589654896985787e-61,-3.13918369058994e-62,-1.2197063235549864e-64,2.665290066252658e-64,-3.73501084636987e-65,3.3754372931736715e-66,-1.57493835619054e-67,4.228751533006482e-68,-4.5507193121927977e-69,-4.377010188940426e-71,5.1356539546017746e-71,7.435912864919112e-73,5.403671331940368e-73,-5.256070235170629e-74,-5.798377393815608e-75,5.599249013026886e-76,2.3630456555084838e-79,-7.015772420927616e-78,-2.0516692741070112e-79,4.4218211855190716e-80,-6.847368165175167e-81,-7.392533529292952e-82,1.0495356280749213e-82,-3.7347645255758442e-84,-1.1640332758621828e-84,6.790042622566136e-86,8.643296108897087e-87,3.4567764572099354e-89,7.8167551158398705e-90,-9.50288855376279e-91,-3.115444296682208e-91,-5.745011916745252e-92,1.912413873784602e-92,2.975400922043256e-94,2.1493047952702227e-94,2.275863481928934e-95,8.332611041161077e-97,-1.7703687810188754e-97,2.3984588023629042e-98,-1.1619498021395045e-99,1.7970902939344687e-100,-1.8857990198503566e-101,-2.8292788256208515e-102,-3.383485301660869e-103,3.3317509158757956e-104,3.8364457618329545e-105,-4.2315927545801203e-106,-4.0403436380140317e-107,1.221200733849241e-108,-3.9094457257846562e-109,2.5231813065157966e-110,-5.421064228541705e-111,-6.137780629677968e-112,-3.771757712142258e-113,-6.18638882871424e-114,1.754530150359258e-115,-7.001347452922075e-116,-7.492864763135335e-117,-8.65221250712318e-118,-7.611157730875771e-119,6.808360867644967e-120,7.955672904265191e-121,1.0980976910076004e-121,-1.1606505947582547e-122,-7.496367150646412e-124,6.440546140203559e-125,-1.0602639740517894e-125,4.446749548865267e-127,-1.0043305723429618e-127,-1.5694857038218278e-128,3.310234398901121e-130,-5.436943151111062e-131,1.9477430892758937e-131,2.0607547488623006e-132,-2.020019428181366e-133,-8.747252045553496e-135,-1.758316657645833e-135,9.49717859553087e-137,-3.577631012925549e-138,2.779974258129899e-138,-2.0870622310673034e-139,2.594259835932494e-140,-3.406198943422353e-141,3.737979013522087e-142,3.6772436251142375e-143,3.473496956392458e-144,-3.897765621291204e-145,4.124722233536003e-146,3.936894246814397e-147,-4.0464422963189756e-148,-6.897035198856578e-150,-5.09167918534098e-150,-9.755552808129511e-152,5.2269062164447146e-152,1.6067503888634854e-153,6.550103339845027e-154,7.5866879552418e-155],"x":[1.0e-308,8.899530352884787e-307,7.9201640501928e-305,7.048574036451774e-303,6.272899858196642e-301,5.582586268862768e-299,4.968239594734205e-297,4.421499907374685e-295,3.934927263095829e-293,3.5019004614315195e-291,3.116526944929513e-289,2.77356261419835e-287,2.4683404670687925e-285,2.196707090793253e-283,1.9549661430911795e-281,1.7398280529304335e-279,1.5483652565854834e-277,1.377972359833475e-275,1.2263306841775895e-273,1.0913767146512425e-271,9.712740198471684e-270,8.643882620598297e-268,7.692649574878785e-266,6.846096838574896e-264,6.092704661368587e-262,5.422221006501237e-260,4.825522042741358e-258,4.2944879887894126e-256,3.821892620633052e-254,3.401304938279246e-252,3.027001653763505e-250,2.6938893095902522e-248,2.3974349678010294e-246,2.133604526501402e-244,1.8988078244652846e-242,1.6898497868125036e-240,1.5038869469553763e-238,1.3383887531737482e-236,1.1911031332830177e-234,1.0600258488069085e-232,9.433732216299542e-231,8.395578619995035e-229,7.471670675868128e-227,6.649435996665195e-225,5.917685748188661e-223,5.266462393484216e-221,4.6869041923142114e-219,4.171124612056602e-217,3.712105009066251e-215,3.303599120128292e-213,2.9400480643347136e-211,2.616504698748866e-209,2.3285662984981204e-207,2.0723146452189957e-205,1.844262708585533e-203,1.6413071953751537e-201,1.4606863203650337e-199,1.299942224413221e-197,1.1568875283162785e-195,1.0295755673125253e-193,9.162739011886994e-192,8.154407395184987e-190,7.257039612324171e-188,6.458424430197044e-186,5.7476944248355e-184,5.1151780992930196e-182,4.552268275507272e-180,4.051304969235411e-178,3.605471154250587e-176,3.2086999973703647e-174,2.855592301990077e-172,2.5413430367026494e-170,2.2616759492229107e-168,2.0127853758498808e-166,1.79128445462198e-164,1.5941590374560028e-162,1.4187266741166222e-160,1.2626001098748165e-158,1.1236548001387332e-156,1.0e-154,8.899530352885369e-153,7.9201640501928e-151,7.0485740364517735e-149,6.27289985819623e-147,5.582586268862769e-145,4.96823959473453e-143,4.4214999073743964e-141,3.934927263095829e-139,3.5019004614317487e-137,3.116526944929513e-135,2.77356261419835e-133,2.468340467068631e-131,2.1967070907932532e-129,1.9549661430912435e-127,1.7398280529303765e-125,1.5483652565854832e-123,1.3779723598335654e-121,1.2263306841775494e-119,1.0913767146512783e-117,9.712740198471049e-116,8.643882620598297e-114,7.692649574879036e-112,6.846096838574671e-110,6.092704661368587e-108,5.422221006501592e-106,4.8255220427412e-104,4.294487988789272e-102,3.8218926206331776e-100,3.401304938279246e-98,3.027001653763505e-96,2.693889309590164e-94,2.397434967801108e-92,2.1336045265014023e-90,1.8988078244652846e-88,1.689849786812448e-86,1.5038869469554255e-84,1.3383887531737482e-82,1.1911031332830177e-80,1.0600258488068738e-78,9.433732216299851e-77,8.395578619995035e-75,7.471670675868127e-73,6.649435996664978e-71,5.917685748188855e-69,5.266462393484216e-67,4.686904192314211e-65,4.1711246120565333e-63,3.7121050090663724e-61,3.3035991201283464e-59,2.9400480643347135e-57,2.6165046987488235e-55,2.3285662984981963e-53,2.0723146452190297e-51,1.844262708585533e-49,1.6413071953751266e-47,1.460686320364986e-45,1.2999422244132423e-43,1.1568875283162786e-41,1.0295755673125085e-39,9.162739011886694e-38,8.154407395185121e-36,7.257039612324171e-34,6.458424430196991e-32,5.747694424835358e-30,5.115178099293145e-28,4.55226827550731e-26,4.051304969235378e-24,3.6054711542504986e-22,3.208699997370444e-20,2.8555923019901e-18,2.5413430367026393e-16,2.2616759492228646e-14,2.0127853758499383e-12,1.7912844546220023e-10,1.5941590374559997e-8,1.4187266741165963e-6,0.00012626001098748563,0.01123654800138751,1.0,88.99530352885229,7920.1640501925485,704857.4036451903,6.272899858196244e7,5.5825862688627e9,4.968239594734387e11,4.421499907374487e13,3.934927263095845e15,3.5019004614317203e17,3.1165269449294365e19,2.773562614198418e21,2.468340467068651e23,2.1967070907932353e25,1.9549661430912594e27,1.7398280529303623e29,1.548365256585496e31,1.3779723598335653e33,1.2263306841775694e35,1.0913767146512783e37,9.712740198471207e38,8.643882620598297e40,7.692649574879162e42,6.8460968385746715e44,6.092704661368687e46,5.422221006501592e48,4.825522042741279e50,4.2944879887892724e52,3.821892620633115e54,3.401304938279246e56,3.0270016537634554e58,2.6938893095901643e60,2.3974349678010686e62,2.133604526501402e64,1.8988078244652846e66,1.6898497868124484e68,1.5038869469554255e70,1.338388753173748e72,1.1911031332830178e74,1.0600258488068737e76,9.433732216299852e77,8.395578619995035e79,7.471670675868128e81,6.649435996664978e83,5.917685748188855e85,5.2664623934842164e87,4.686904192314212e89,4.171124612056465e91,3.7121050090663724e93,3.3035991201282924e95,2.9400480643347137e97,2.6165046987487807e99,2.3285662984981965e101,2.0723146452190636e103,1.844262708585533e105,1.6413071953751536e107,1.4606863203649858e109,1.2999422244132635e111,1.1568875283162786e113,1.0295755673125254e115,9.162739011886694e116,8.154407395185253e118,7.257039612324171e120,6.458424430197044e122,5.747694424835312e124,5.115178099293187e126,4.552268275507272e128,4.051304969235411e130,3.605471154250587e132,3.2086999973703647e134,2.8555923019900767e136,2.5413430367026497e138,2.261675949222911e140,2.0127853758498808e142,1.7912844546219802e144,1.594159037456003e146,1.418726674116622e148,1.2626001098748165e150,1.1236548001387333e152,1.0e154,8.89953035288537e155,7.9201640501928e157,7.048574036451773e159,6.27289985819623e161,5.582586268862769e163,4.96823959473453e165,4.4214999073743964e167,3.934927263095829e169,3.5019004614317486e171,3.116526944929513e173,2.77356261419835e175,2.468340467068631e177,2.196707090793253e179,1.9549661430913075e181,1.7398280529303195e183,1.5483652565854833e185,1.3779723598335651e187,1.2263306841775895e189,1.0913767146512426e191,9.71274019847105e192,8.643882620598297e194,7.692649574879288e196,6.846096838574447e198,6.092704661368587e200,5.422221006501592e202,4.825522042741358e204,4.2944879887894124e206,3.8218926206330524e208,3.4013049382792456e210,3.027001653763505e212,2.6938893095902522e214,2.3974349678010295e216,2.133604526501402e218,1.8988078244652845e220,1.6898497868125036e222,1.5038869469553763e224,1.3383887531737482e226,1.1911031332830176e228,1.0600258488069085e230,9.433732216299543e231,8.395578619995036e233,7.471670675868129e235,6.649435996665194e237,5.917685748188661e239,5.266462393484216e241,4.686904192314212e243,4.1711246120566017e245,3.7121050090662507e247,3.3035991201282923e249,2.940048064334714e251,2.6165046987488664e253,2.3285662984981203e255,2.0723146452189955e257,1.8442627085856534e259,1.6413071953751535e261,1.4606863203649382e263,1.299942224413306e265,1.1568875283162785e267,1.029575567312458e269,9.162739011886994e270,8.154407395184987e272,7.257039612324646e274,6.458424430197044e276,5.747694424835124e278,5.1151780992933545e280,4.5522682755072723e282,4.051304969235146e284,3.605471154250587e286,3.208699997370365e288,2.855592301990264e290,2.5413430367026497e292,2.2616759492227627e294,2.0127853758500127e296,1.7912844546219802e298,1.5941590374558985e300,1.4187266741166224e302,1.2626001098748166e304,1.1236548001388068e306,1.0e308]} diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/runner.jl new file mode 100644 index 000000000000..21fbb987d516 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/runner.jl @@ -0,0 +1,109 @@ +#!/usr/bin/env julia +# +# @license Apache-2.0 +# +# Copyright (c) 2018 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import JSON +using SpecialFunctions + +""" + gen( x, name ) + +Generate fixture data and write to file. + +# Arguments + +* `x`: domain +* `name::AbstractString`: output filename + +# Examples + +``` julia +julia> x = range( -1000, stop = 1000, length = 2001 ); +julia> gen( x, \"data.json\" ); +``` +""" +function gen( x, name ) + y = Array{Float64}( undef, length(x) ); + for i in eachindex(x) + y[i] = besselj1( x[i] ); + end + + # Store data to be written to file as a collection: + data = Dict([ + ("x", x), + ("expected", y) + ]); + + # Based on the script directory, create an output filepath: + filepath = joinpath( dir, name ); + + # Write the data to the output filepath as JSON: + outfile = open( filepath, "w" ); + write( outfile, JSON.json(data) ); + write( outfile, "\n" ); + close( outfile ); +end + +# Get the filename: +file = @__FILE__; + +# Extract the directory in which this file resides: +dir = dirname( file ); + +# Subnormal values: +x = range( 1.0e-309, stop = 1.0e-324, length = 5003 ); +gen( x, "subnormal.json" ); + +# Positive tiny values: +x = range( 1.0e-300, stop = 1.0e-308, length = 5003 ); +gen( x, "tiny_positive.json" ); + +# Small(er) values: +x = range( 0.0, stop = 0.8, length = 5003 ); +gen( x, "smaller.json" ); + +# Positive small values: +x = range( 0.8, stop = 3.0, length = 5003 ); +gen( x, "small_positive.json" ); + +# Positive medium values: +x = range( 3.0, stop = 20.0, length = 5003 ); +gen( x, "medium_positive.json" ); + +# Large positive values: +x = range( 20.0, stop = 50.0, length = 5003 ); +gen( x, "large_positive.json" ); + +# Very large positive values: +x = range( 50.0, stop = 500.0, length = 5003 ); +gen( x, "very_large_positive.json" ); + +# Huge positive values: +x = range( 1.0e300, stop = 1.0e308, length = 5003 ); +gen( x, "huge_positive.json" ); + +# Negative small values: +x = range( -0.8, stop = -3.0, length = 5003 ); +gen( x, "small_negative.json" ); + +# The full gamut of positive magnitudes: +x = [ 10.0^x for x in range( -308.0, stop = 308.0, length = 317 ) ]; +gen( x, "positive_gamut.json" ); + +# The full gamut of negative magnitudes: +x = [ -( 10.0^x ) for x in range( -308.0, stop = 308.0, length = 317 ) ]; +gen( x, "negative_gamut.json" ); diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/small_negative.json b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/small_negative.json new file mode 100644 index 000000000000..a50be3864e4d --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/small_negative.json @@ -0,0 +1 @@ +{"expected":[-0.36884204609417004,-0.36901145511710043,-0.36918081109874973,-0.36935011401534357,-0.3695193638431163,-0.36968856055831056,-0.36985770413717783,-0.3700267945559778,-0.3701958317909789,-0.370364815818458,-0.3705337466147005,-0.37070262415600047,-0.37087144841866027,-0.3710402193789911,-0.3712089370133125,-0.3713776012979527,-0.3715462122092483,-0.37171476972354484,-0.3718832738171959,-0.3720517244665641,-0.3722201216480203,-0.37238846533794423,-0.37255675551272394,-0.3727249921487563,-0.3728931752224465,-0.3730613047102087,-0.37322938058846516,-0.3733974028336472,-0.3735653714221945,-0.37373328633055536,-0.3739011475351868,-0.3740689550125544,-0.3742367087391323,-0.37440440869140335,-0.3745720548458589,-0.3747396471789992,-0.37490718566733283,-0.3750746702873772,-0.3752421010156582,-0.37540947782871054,-0.3755768007030775,-0.375744069615311,-0.37591128454197154,-0.37607844545962854,-0.3762455523448598,-0.376412605174252,-0.37657960392440026,-0.3767465485719086,-0.3769134390933896,-0.3770802754654646,-0.3772470576647634,-0.37741378566792494,-0.37758045945159635,-0.3777470789924338,-0.37791364426710206,-0.3780801552522745,-0.3782466119246334,-0.37841301426086954,-0.3785793622376826,-0.3787456558317809,-0.37891189501988143,-0.37907807977871,-0.3792442100850011,-0.37941028591549786,-0.37957630724695246,-0.3797422740561255,-0.3799081863197864,-0.38007404401471334,-0.38023984711769343,-0.38040559560552234,-0.38057128945500446,-0.38073692864295305,-0.3809025131461902,-0.3810680429415466,-0.3812335180058619,-0.38139893831598437,-0.3815643038487711,-0.381729614581088,-0.3818948704898098,-0.3820600715518199,-0.38222521774401075,-0.3823903090432832,-0.3825553454265473,-0.38272032687072166,-0.3828852533527338,-0.38305012484952006,-0.3832149413380256,-0.3833797027952042,-0.3835444091980189,-0.3837090605234411,-0.3838736567484514,-0.384038197850039,-0.38420268380520206,-0.38436711459094747,-0.3845314901842911,-0.38469581056225766,-0.3848600757018806,-0.3850242855802023,-0.385188440174274,-0.38535253946115594,-0.38551658341791684,-0.3856805720216348,-0.3858445052493964,-0.3860083830782973,-0.38617220548544196,-0.3863359724479438,-0.38649968394292505,-0.38666333994751695,-0.3868269404388594,-0.3869904853941015,-0.38715397479040115,-0.38731740860492503,-0.3874807868148488,-0.3876441093973573,-0.38780737632964374,-0.3879705875889108,-0.38813374315236976,-0.388296842997241,-0.3884598871007537,-0.38862287544014606,-0.3887858079926652,-0.38894868473556726,-0.3891115056461172,-0.389274270701589,-0.3894369798792655,-0.38959963315643875,-0.3897622305104095,-0.3899247719184876,-0.3900872573579918,-0.39024968680625,-0.3904120602405987,-0.3905743776383839,-0.39073663897696,-0.3908988442336909,-0.3910609933859493,-0.3912230864111168,-0.3913851232865841,-0.39154710398975084,-0.3917090284980258,-0.3918708967888266,-0.39203270883958,-0.39219446462772173,-0.39235616413069657,-0.3925178073259582,-0.3926793941909695,-0.39284092470320225,-0.3930023988401374,-0.39316381657926475,-0.3933251778980833,-0.39348648277410103,-0.39364773118483504,-0.39380892310781135,-0.39397005852056516,-0.3941311374006406,-0.39429215972559106,-0.39445312547297884,-0.3946140346203753,-0.3947748871453609,-0.3949356830255254,-0.3950964222384672,-0.39525710476179415,-0.395417730573123,-0.39557829965007985,-0.39573881197029936,-0.39589926751142596,-0.39605966625111266,-0.3962200081670218,-0.39638029323682483,-0.3965405214382023,-0.3967006927488438,-0.3968608071464481,-0.3970208646087231,-0.39718086511338585,-0.3973408086381624,-0.3975006951607882,-0.3976605246590074,-0.3978202971105739,-0.39798001249325005,-0.39813967078480794,-0.3982992719630285,-0.3984588160057018,-0.39861830289062733,-0.39877773259561344,-0.3989371050984778,-0.3990964203770472,-0.39925567840915765,-0.3994148791726543,-0.3995740226453915,-0.3997331088052327,-0.3998921376300507,-0.4000511090977273,-0.40021002318615373,-0.4003688798732301,-0.40052767913686604,-0.40068642095498014,-0.4008451053055004,-0.4010037321663638,-0.4011623015155168,-0.4013208133309148,-0.40147926759052266,-0.40163766427231434,-0.40179600335427307,-0.4019542848143912,-0.40211250863067055,-0.40227067478112194,-0.4024287832437656,-0.4025868339966308,-0.4027448270177564,-0.4029027622851901,-0.4030606397769892,-0.4032184594712201,-0.40337622134595846,-0.4035339253792892,-0.4036915715493066,-0.4038491598341142,-0.4040066902118246,-0.40416416266056,-0.40432157715845174,-0.4044789336836403,-0.4046362322142757,-0.4047934727285171,-0.4049506552045331,-0.4051077796205014,-0.40526484595460904,-0.4054218541850526,-0.40557880429003773,-0.4057356962477795,-0.4058925300365022,-0.4060493056344396,-0.4062060230198346,-0.4063626821709396,-0.40651928306601626,-0.4066758256833356,-0.40683231000117787,-0.4069887359978328,-0.40714510365159945,-0.40730141294078615,-0.4074576638437106,-0.40761385633869995,-0.4077699904040906,-0.4079260660182284,-0.40808208315946837,-0.4082380418061752,-0.40839394193672274,-0.4085497835294943,-0.4087055665628825,-0.40886129101528945,-0.4090169568651265,-0.40917256409081454,-0.40932811267078373,-0.40948360258347377,-0.4096390338073336,-0.40979440632082165,-0.40994972010240577,-0.41010497513056315,-0.41026017138378046,-0.41041530884055377,-0.41057038747938845,-0.41072540727879964,-0.41088036821731144,-0.41103527027345776,-0.4111901134257817,-0.411344897652836,-0.4114996229331826,-0.4116542892453931,-0.4118088965680485,-0.4119634448797391,-0.4121179341590649,-0.4122723643846351,-0.41242673553506864,-0.4125810475889936,-0.4127353005250478,-0.41288949432187844,-0.4130436289581422,-0.41319770441250503,-0.4133517206636428,-0.41350567769024044,-0.41365957547099264,-0.4138134139846035,-0.4139671932097865,-0.4141209131252648,-0.4142745737097709,-0.4144281749420469,-0.41458171680084455,-0.4147351992649247,-0.4148886223130581,-0.41504198592402486,-0.41519529007661465,-0.41534853474962663,-0.41550171992186946,-0.4156548455721614,-0.41580791167933034,-0.41596091822221337,-0.41611386517965754,-0.41626675253051904,-0.41641958025366405,-0.4165723483279678,-0.4167250567323156,-0.4168777054456018,-0.4170302944467308,-0.41718282371461607,-0.41733529322818114,-0.41748770296635873,-0.41764005290809136,-0.41779234303233104,-0.4179445733180393,-0.41809674374418737,-0.41824885428975606,-0.41840090493373566,-0.41855289565512616,-0.4187048264329371,-0.4188566972461876,-0.4190085080739065,-0.4191602588951321,-0.4193119496889124,-0.41946358043430493,-0.419615151110377,-0.41976666169620536,-0.41991811217087643,-0.4200695025134864,-0.42022083270314087,-0.42037210271895514,-0.4205233125400544,-0.420674462145573,-0.4208255515146554,-0.4209765806264554,-0.4211275494601366,-0.4212784579948722,-0.42142930620984503,-0.4215800940842476,-0.42173082159728226,-0.42188148872816067,-0.42203209545610443,-0.42218264176034476,-0.4223331276201225,-0.4224835530146882,-0.4226339179233021,-0.42278422232523416,-0.42293446619976394,-0.4230846495261807,-0.42323477228378353,-0.4233848344518811,-0.4235348360097918,-0.42368477693684364,-0.4238346572123746,-0.4239844768157321,-0.42413423572627346,-0.4242839339233655,-0.424433571386385,-0.4245831480947183,-0.4247326640277616,-0.42488211916492075,-0.42503151348561125,-0.4251808469692586,-0.42533011959529776,-0.42547933134317356,-0.42562848219234056,-0.42577757212226314,-0.4259266011124153,-0.42607556914228095,-0.42622447619135356,-0.4263733222391366,-0.42652210726514306,-0.426670831248896,-0.4268194941699279,-0.42696809600778135,-0.42711663674200845,-0.4272651163521713,-0.42741353481784156,-0.4275618921186009,-0.4277101882340407,-0.4278584231437621,-0.428006596827376,-0.4281547092645033,-0.4283027604347744,-0.4284507503178298,-0.4285986788933196,-0.42874654614090396,-0.4288943520402525,-0.429042096571045,-0.42918977971297084,-0.4293374014457294,-0.4294849617490298,-0.4296324606025909,-0.4297798979861416,-0.4299272738794204,-0.4300745882621759,-0.4302218411141665,-0.43036903241516017,-0.4305161621449351,-0.4306632302832791,-0.4308102368099899,-0.4309571817048752,-0.43110406494775233,-0.43125088651844873,-0.43139764639680156,-0.431544344562658,-0.43169098099587494,-0.4318375556763192,-0.4319840685838676,-0.4321305196984067,-0.432276908999833,-0.4324232364680529,-0.4325695020829828,-0.43271570582454877,-0.43286184767268693,-0.4330079276073434,-0.433153945608474,-0.4332999016560446,-0.4334457957300309,-0.43359162781041866,-0.4337373978772034,-0.4338831059103907,-0.4340287518899959,-0.4341743357960445,-0.43431985760857167,-0.43446531730762283,-0.43461071487325303,-0.4347560502855275,-0.4349013235245212,-0.4350465345703193,-0.43519168340301667,-0.43533677000271837,-0.43548179434953915,-0.43562675642360404,-0.43577165620504776,-0.43591649367401514,-0.43606126881066093,-0.43620598159514995,-0.4363506320076568,-0.4364952200283663,-0.4366397456374731,-0.43678420881518193,-0.4369286095417073,-0.43707294779727407,-0.4372172235621168,-0.4373614368164801,-0.4375055875406188,-0.4376496757147974,-0.4377937013192907,-0.43793766433438325,-0.4380815647403699,-0.4382254025175553,-0.43836917764625427,-0.43851289010679145,-0.4386565398795018,-0.43880012694473003,-0.4389436512828311,-0.4390871128741698,-0.43923051169912114,-0.4393738477380701,-0.4395171209714117,-0.4396603313795511,-0.4398034789429033,-0.4399465636418935,-0.4400895854569571,-0.4402325443685392,-0.4403754403570953,-0.4405182734030909,-0.4406610434870014,-0.44080375058931237,-0.44094639469051955,-0.4410889757711287,-0.4412314938116555,-0.44137394879262604,-0.4415163406945761,-0.4416586694980521,-0.44180093518360997,-0.441943137731816,-0.44208527712324663,-0.44222735333848845,-0.4423693663581379,-0.44251131616280176,-0.44265320273309683,-0.44279502604965015,-0.4429367860930986,-0.44307848284408946,-0.44322011628328,-0.4433616863913378,-0.4435031931489402,-0.443644636536775,-0.44378601653554006,-0.44392733312594335,-0.444068586288703,-0.4442097760045472,-0.4443509022542144,-0.44449196501845323,-0.44463296427802246,-0.44477390001369077,-0.4449147722062373,-0.44505558083645136,-0.44519632588513225,-0.44533700733308945,-0.4454776251611428,-0.44561817935012216,-0.4457586698808676,-0.44589909673422934,-0.4460394598910678,-0.44617975933225373,-0.4463199950386679,-0.44646016699120133,-0.44660027517075523,-0.446740319558241,-0.44688030013458035,-0.4470202168807049,-0.44716006977755696,-0.4472998588060886,-0.44743958394726235,-0.4475792451820508,-0.44771884249143695,-0.4478583758564139,-0.44799784525798503,-0.4481372506771639,-0.44827659209497434,-0.4484158694924503,-0.44855508285063633,-0.44869423215058674,-0.4488333173733663,-0.44897233850005014,-0.44911129551172363,-0.44925018838948205,-0.44938901711443136,-0.4495277816676876,-0.449666482030377,-0.4498051181836363,-0.4499436901086121,-0.45008219778646175,-0.4502206411983525,-0.45035902032546216,-0.4504973351489785,-0.45063558565009976,-0.45077377181003464,-0.4509118936100019,-0.45104995103123047,-0.4511879440549599,-0.4513258726624398,-0.4514637368349303,-0.4516015365537015,-0.45173927180003415,-0.4518769425552191,-0.45201454880055764,-0.4521520905173612,-0.4522895676869517,-0.4524269802906613,-0.4525643283098326,-0.45270161172581835,-0.45283883051998164,-0.4529759846736961,-0.45311307416834545,-0.453250098985324,-0.45338705910603605,-0.4535239545118966,-0.45366078518433084,-0.45379755110477427,-0.4539342522546728,-0.4540708886154828,-0.45420746016867075,-0.45434396689571366,-0.45448040877809887,-0.4546167857973241,-0.4547530979348976,-0.4548893451723376,-0.455025527491173,-0.45516164487294297,-0.4552976972991971,-0.4554336847514956,-0.4555696072114085,-0.45570546466051676,-0.4558412570804115,-0.45597698445269425,-0.4561126467589769,-0.4562482439808818,-0.4563837761000418,-0.4565192430981001,-0.45665464495671004,-0.4567899816575357,-0.4569252531822516,-0.4570604595125425,-0.45719560063010345,-0.4573306765166404,-0.4574656871538692,-0.45760063252351657,-0.4577355126073194,-0.45787032738702493,-0.45800507684439123,-0.45813976096118647,-0.4582743797191893,-0.45840893310018893,-0.45854342108598495,-0.45867784365838754,-0.4588122007992171,-0.4589464924903046,-0.45908071871349165,-0.45921487945063,-0.4593489746835821,-0.4594830043942207,-0.45961696856442913,-0.4597508671761014,-0.45988470021114153,-0.46001846765146437,-0.4601521694789951,-0.46028580567566957,-0.4604193762234339,-0.46055288110424475,-0.4606863203000694,-0.4608196937928856,-0.46095300156468144,-0.46108624359745565,-0.46121941987321746,-0.4613525303739866,-0.46148557508179333,-0.46161855397867835,-0.4617514670466929,-0.4618843142678988,-0.46201709562436843,-0.4621498110981845,-0.4622824606714404,-0.46241504432624003,-0.46254756204469794,-0.462680013808939,-0.46281239960109855,-0.46294471940332294,-0.46307697319776864,-0.4632091609666027,-0.46334128269200286,-0.46347333835615745,-0.4636053279412653,-0.4637372514295356,-0.4638691088031884,-0.46400090004445416,-0.46413262513557396,-0.46426428405879944,-0.4643958767963927,-0.4645274033306266,-0.4646588636437845,-0.4647902577181603,-0.46492158553605856,-0.46505284707979433,-0.4651840423316934,-0.465315171274092,-0.4654462338893369,-0.46557723015978586,-0.4657081600678068,-0.46583902359577833,-0.4659698207260898,-0.46610055144114115,-0.4662312157233429,-0.4663618135551162,-0.46649234491889263,-0.4666228097971147,-0.46675320817223537,-0.4668835400267183,-0.4670138053430376,-0.46714400410367823,-0.4672741362911357,-0.4674042018879161,-0.46753420087653613,-0.4676641332395234,-0.46779399895941576,-0.46792379801876216,-0.46805353040012176,-0.4681831960860646,-0.46831279505917145,-0.46844232730203356,-0.46857179279725286,-0.46870119152744205,-0.46883052347522447,-0.46895978862323406,-0.4690889869541155,-0.469218118450524,-0.4693471830951257,-0.4694761808705973,-0.469605111759626,-0.46973397574490994,-0.4698627728091579,-0.46999150293508923,-0.47012016610543406,-0.4702487623029331,-0.47037729151033814,-0.4705057537104111,-0.47063414888592503,-0.47076247701966345,-0.4708907380944208,-0.47101893209300205,-0.471147058998223,-0.47127511879291006,-0.4714031114599004,-0.471531036982042,-0.47165889534219346,-0.47178668652322414,-0.4719144105080141,-0.4720420672794542,-0.4721696568204459,-0.4722971791139016,-0.4724246341427444,-0.47255202188990786,-0.4726793423383367,-0.472806595470986,-0.472933781270822,-0.4730608997208213,-0.4731879508039716,-0.473314934503271,-0.47344185080172857,-0.47356869968236426,-0.47369548112820864,-0.4738221951223029,-0.4739488416476993,-0.47407542068746067,-0.4742019322246608,-0.47432837624238394,-0.47445475272372545,-0.47458106165179137,-0.4747073030096985,-0.47483347678057436,-0.47495958294755736,-0.47508562149379674,-0.4752115924024526,-0.47533749565669536,-0.47546333123970697,-0.4755890991346796,-0.47571479932481664,-0.47584043179333196,-0.4759659965234504,-0.4760914934984076,-0.47621692270145016,-0.4763422841158351,-0.4764675777248307,-0.47659280351171596,-0.4767179614597805,-0.4768430515523249,-0.4769680737726607,-0.4770930281041101,-0.4772179145300062,-0.47734273303369296,-0.47746748359852514,-0.4775921662078684,-0.4777167808450992,-0.477841327493605,-0.4779658061367838,-0.47809021675804475,-0.47821455934080775,-0.4783388338685036,-0.47846304032457393,-0.47858717869247114,-0.47871124895565875,-0.478835251097611,-0.4789591851018129,-0.47908305095176046,-0.47920684863096064,-0.4793305781229312,-0.4794542394112007,-0.47957783247930874,-0.4797013573108057,-0.479824813889253,-0.4799482021982228,-0.4800715222212981,-0.4801947739420731,-0.48031795734415267,-0.4804410724111525,-0.4805641191266995,-0.4806870974744311,-0.4808100074379961,-0.48093284900105376,-0.48105562214727454,-0.4811783268603398,-0.48130096312394177,-0.48142353092178347,-0.4815460302375791,-0.4816684610550536,-0.4817908233579431,-0.48191311712999424,-0.482035342354965,-0.4821574990166241,-0.4822795870987513,-0.4824016065851371,-0.4825235574595832,-0.48264543970590223,-0.48276725330791753,-0.48288899824946374,-0.48301067451438606,-0.4831322820865411,-0.48325382094979596,-0.48337529108802924,-0.48349669248512994,-0.4836180251249984,-0.48373928899154595,-0.48386048406869464,-0.4839816103403777,-0.48410266779053923,-0.4842236564031345,-0.4843445761621295,-0.48446542705150136,-0.4845862090552382,-0.4847069221573391,-0.48482756634181423,-0.48494814159268457,-0.4850686478939822,-0.4851890852297503,-0.48530945358404287,-0.48542975294092505,-0.48554998328447296,-0.48567014459877367,-0.48579023686792544,-0.4859102600760373,-0.48603021420722947,-0.4861500992456331,-0.4862699151753906,-0.4863896619806549,-0.4865093396455905,-0.4866289481543727,-0.4867484874911878,-0.48686795764023316,-0.4869873585857172,-0.48710669031185944,-0.4872259528028904,-0.48734514604305146,-0.48746427001659537,-0.4875833247077858,-0.48770231010089743,-0.48782122618021595,-0.4879400729300382,-0.4880588503346721,-0.4881775583784366,-0.48829619704566174,-0.4884147663206886,-0.48853326618786913,-0.48865169663156677,-0.4887700576361558,-0.4888883491860215,-0.4890065712655603,-0.4891247238591799,-0.48924280695129885,-0.4893608205263468,-0.48947876456876455,-0.489596639063004,-0.4897144439935283,-0.48983217934481127,-0.48994984510133827,-0.4900674412476055,-0.4901849677681204,-0.4903024246474015,-0.49041981186997824,-0.49053712942039146,-0.49065437728319305,-0.49077155544294576,-0.49088866388422375,-0.49100570259161225,-0.49112267154970757,-0.4912395707431171,-0.4913564001564592,-0.4914731597743639,-0.4915898495814719,-0.4917064695624351,-0.4918230197019165,-0.4919394999845905,-0.49205591039514246,-0.49217225091826877,-0.4922885215386772,-0.4924047222410865,-0.49252085301022674,-0.49263691383083885,-0.4927529046876753,-0.4928688255654994,-0.4929846764490857,-0.49310045732322016,-0.49321616817269953,-0.4933318089823318,-0.4934473797369364,-0.4935628804213438,-0.4936783110203954,-0.49379367151894415,-0.49390896190185385,-0.4940241821539998,-0.49413933226026824,-0.49425441220555666,-0.4943694219747738,-0.4944843615528396,-0.49459923092468494,-0.4947140300752523,-0.49482875898949497,-0.4949434176523778,-0.4950580060488766,-0.4951725241639784,-0.4952869719826815,-0.4954013494899955,-0.49551565667094094,-0.4956298935105498,-0.4957440599938653,-0.49585815610594164,-0.49597218183184455,-0.4960861371566506,-0.4962000220654481,-0.49631383654333616,-0.49642758057542513,-0.4965412541468369,-0.4966548572427043,-0.4967683898481716,-0.4968818519483942,-0.49699524352853863,-0.49710856457378294,-0.4972218150693163,-0.4973349950003389,-0.49744810435206255,-0.49756114310971006,-0.4976741112585157,-0.4977870087837247,-0.4978998356705939,-0.4980125919043911,-0.4981252774703956,-0.4982378923538978,-0.4983504365401994,-0.4984629100146133,-0.4985753127624639,-0.49868764476908684,-0.4987999060198287,-0.4989120965000477,-0.49902421619511317,-0.4991362650904059,-0.4992482431713176,-0.4993601504232517,-0.49947198683162264,-0.49958375238185626,-0.4996954470593897,-0.49980707084967124,-0.49991862373816076,-0.5000301057103291,-0.5001415167516587,-0.5002528568476431,-0.5003641259837872,-0.5004753241456075,-0.5005864513186312,-0.5006975074883973,-0.5008084926404559,-0.5009194067603686,-0.5010302498337083,-0.5011410218460589,-0.501251722783016,-0.5013623526301865,-0.5014729113731882,-0.5015833989976508,-0.5016938154892151,-0.5018041608335333,-0.5019144350162685,-0.5020246380230959,-0.5021347698397014,-0.5022448304517827,-0.5023548198450485,-0.502464738005219,-0.5025745849180256,-0.5026843605692115,-0.5027940649445308,-0.5029036980297491,-0.5030132598106434,-0.5031227502730019,-0.5032321694026245,-0.503341517185322,-0.5034507936069172,-0.5035599986532436,-0.5036691323101465,-0.5037781945634825,-0.5038871853991194,-0.5039961048029364,-0.5041049527608246,-0.5042137292586857,-0.5043224342824333,-0.5044310678179922,-0.5045396298512987,-0.5046481203683004,-0.5047565393549563,-0.504864886797237,-0.504973162681124,-0.5050813669926107,-0.5051894997177018,-0.5052975608424132,-0.5054055503527723,-0.5055134682348181,-0.5056213144746008,-0.505729089058182,-0.505836791971635,-0.5059444232010439,-0.5060519827325051,-0.5061594705521256,-0.5062668866460244,-0.5063742310003314,-0.5064815036011885,-0.5065887044347488,-0.5066958334871765,-0.5068028907446478,-0.5069098761933498,-0.5070167898194816,-0.5071236316092532,-0.5072304015488864,-0.5073370996246144,-0.5074437258226815,-0.5075502801293439,-0.5076567625308692,-0.5077631730135362,-0.5078695115636352,-0.5079757781674683,-0.5080819728113485,-0.5081880954816007,-0.5082941461645611,-0.5084001248465776,-0.5085060315140091,-0.5086118661532263,-0.5087176287506113,-0.5088233192925578,-0.5089289377654707,-0.5090344841557666,-0.5091399584498735,-0.5092453606342309,-0.5093506906952898,-0.5094559486195126,-0.5095611343933734,-0.5096662480033574,-0.5097712894359617,-0.5098762586776948,-0.5099811557150766,-0.5100859805346384,-0.5101907331229232,-0.5102954134664854,-0.510400021551891,-0.5105045573657175,-0.5106090208945537,-0.5107134121250001,-0.5108177310436688,-0.5109219776371831,-0.5110261518921781,-0.5111302537953003,-0.5112342833332079,-0.5113382404925702,-0.5114421252600685,-0.5115459376223954,-0.5116496775662549,-0.5117533450783629,-0.5118569401454464,-0.5119604627542443,-0.5120639128915069,-0.5121672905439959,-0.5122705956984848,-0.5123738283417585,-0.5124769884606132,-0.5125800760418572,-0.5126830910723099,-0.5127860335388026,-0.5128889034281777,-0.5129917007272895,-0.5130944254230039,-0.5131970775021979,-0.5132996569517607,-0.5134021637585926,-0.5135045979096058,-0.5136069593917236,-0.5137092481918812,-0.5138114642970255,-0.5139136076941146,-0.5140156783701186,-0.5141176763120189,-0.5142196015068082,-0.5143214539414913,-0.5144232336030845,-0.5145249404786155,-0.5146265745551236,-0.5147281358196597,-0.5148296242592865,-0.514931039861078,-0.5150323826121199,-0.5151336524995095,-0.5152348495103559,-0.5153359736317795,-0.5154370248509124,-0.5155380031548982,-0.5156389085308924,-0.5157397409660619,-0.5158405004475852,-0.5159411869626525,-0.5160418004984655,-0.5161423410422377,-0.5162428085811939,-0.516343203102571,-0.5164435245936169,-0.5165437730415917,-0.5166439484337668,-0.5167440507574255,-0.5168440799998621,-0.5169440361483835,-0.5170439191903073,-0.5171437291129634,-0.5172434659036929,-0.5173431295498488,-0.5174427200387958,-0.5175422373579097,-0.5176416814945787,-0.5177410524362022,-0.5178403501701911,-0.5179395746839686,-0.5180387259649688,-0.518137804000638,-0.5182368087784338,-0.5183357402858256,-0.5184345985102945,-0.5185333834393333,-0.5186320950604463,-0.5187307333611495,-0.5188292983289707,-0.5189277899514493,-0.5190262082161363,-0.5191245531105944,-0.519222824622398,-0.5193210227391332,-0.5194191474483978,-0.5195171987378011,-0.5196151765949644,-0.5197130810075203,-0.5198109119631134,-0.5199086694493998,-0.5200063534540473,-0.5201039639647358,-0.5202015009691561,-0.5202989644550113,-0.5203963544100161,-0.5204936708218967,-0.5205909136783913,-0.5206880829672493,-0.5207851786762325,-0.5208822007931139,-0.5209791493056783,-0.5210760242017223,-0.5211728254690541,-0.5212695530954936,-0.5213662070688728,-0.5214627873770349,-0.521559294007835,-0.5216557269491399,-0.5217520861888283,-0.5218483717147905,-0.5219445835149283,-0.5220407215771556,-0.5221367858893979,-0.5222327764395924,-0.522328693215688,-0.5224245362056452,-0.5225203053974368,-0.5226160007790466,-0.5227116223384705,-0.5228071700637161,-0.5229026439428031,-0.5229980439637621,-0.5230933701146364,-0.5231886223834804,-0.5232838007583605,-0.5233789052273548,-0.523473935778553,-0.5235688924000569,-0.52366377507998,-0.523758583806447,-0.5238533185675952,-0.5239479793515731,-0.5240425661465411,-0.5241370789406714,-0.5242315177221479,-0.5243258824791666,-0.5244201731999346,-0.5245143898726714,-0.524608532485608,-0.5247026010269873,-0.5247965954850637,-0.5248905158481038,-0.5249843621043855,-0.5250781342421988,-0.5251718322498458,-0.5252654561156396,-0.5253590058279055,-0.5254524813749809,-0.5255458827452144,-0.5256392099269669,-0.5257324629086108,-0.5258256416785302,-0.5259187462251214,-0.5260117765367922,-0.5261047326019623,-0.5261976144090631,-0.5262904219465379,-0.526383155202842,-0.526475814166442,-0.5265683988258167,-0.5266609091694567,-0.5267533451858644,-0.5268457068635539,-0.526937994191051,-0.5270302071568939,-0.5271223457496318,-0.5272144099578263,-0.5273063997700508,-0.5273983151748902,-0.5274901561609415,-0.5275819227168135,-0.5276736148311266,-0.5277652324925134,-0.5278567756896181,-0.5279482444110968,-0.5280396386456174,-0.5281309583818596,-0.5282222036085151,-0.5283133743142874,-0.5284044704878916,-0.528495492118055,-0.5285864391935166,-0.5286773117030272,-0.5287681096353494,-0.5288588329792578,-0.5289494817235388,-0.5290400558569908,-0.5291305553684237,-0.5292209802466595,-0.5293113304805322,-0.5294016060588873,-0.5294918069705826,-0.5295819332044873,-0.5296719847494827,-0.5297619615944622,-0.5298518637283306,-0.5299416911400049,-0.5300314438184138,-0.5301211217524981,-0.5302107249312105,-0.5303002533435149,-0.530389706978388,-0.530479085824818,-0.5305683898718048,-0.5306576191083603,-0.5307467735235085,-0.5308358531062851,-0.5309248578457376,-0.5310137877309258,-0.5311026427509208,-0.531191422894806,-0.5312801281516767,-0.5313687585106398,-0.5314573139608145,-0.5315457944913317,-0.531634200091334,-0.5317225307499763,-0.5318107864564252,-0.5318989671998591,-0.5319870729694686,-0.5320751037544559,-0.5321630595440353,-0.532250940327433,-0.5323387460938872,-0.5324264768326477,-0.5325141325329765,-0.5326017131841476,-0.5326892187754466,-0.5327766492961713,-0.5328640047356312,-0.532951285083148,-0.5330384903280551,-0.5331256204596978,-0.5332126754674337,-0.5332996553406317,-0.5333865600686736,-0.5334733896409519,-0.533560144046872,-0.533646823275851,-0.5337334273173178,-0.5338199561607131,-0.5339064097954901,-0.5339927882111133,-0.5340790913970597,-0.5341653193428177,-0.5342514720378883,-0.5343375494717837,-0.5344235516340289,-0.5345094785141601,-0.5345953301017258,-0.5346811063862864,-0.5347668073574146,-0.5348524330046942,-0.534937983317722,-0.535023458286106,-0.5351088578994665,-0.5351941821474357,-0.5352794310196578,-0.5353646045057889,-0.5354497025954973,-0.5355347252784628,-0.5356196725443776,-0.5357045443829458,-0.5357893407838833,-0.5358740617369182,-0.5359587072317904,-0.536043277258252,-0.5361277718060667,-0.5362121908650106,-0.5362965344248717,-0.5363808024754497,-0.5364649950065565,-0.5365491120080164,-0.5366331534696647,-0.5367171193813496,-0.5368010097329308,-0.5368848245142804,-0.5369685637152821,-0.5370522273258318,-0.5371358153358373,-0.5372193277352186,-0.5373027645139076,-0.537386125661848,-0.5374694111689958,-0.537552621025319,-0.5376357552207972,-0.5377188137454226,-0.537801796589199,-0.5378847037421426,-0.5379675351942809,-0.5380502909356543,-0.5381329709563145,-0.5382155752463258,-0.538298103795764,-0.5383805565947174,-0.5384629336332859,-0.5385452349015817,-0.5386274603897289,-0.5387096100878638,-0.5387916839861344,-0.5388736820747011,-0.5389556043437361,-0.5390374507834238,-0.5391192213839604,-0.5392009161355545,-0.5392825350284263,-0.5393640780528083,-0.5394455451989449,-0.5395269364570929,-0.5396082518175209,-0.5396894912705094,-0.5397706548063509,-0.5398517424153504,-0.5399327540878247,-0.5400136898141025,-0.5400945495845246,-0.5401753333894442,-0.5402560412192262,-0.5403366730642476,-0.5404172289148976,-0.5404977087615772,-0.5405781125946999,-0.5406584404046908,-0.5407386921819872,-0.5408188679170388,-0.5408989676003069,-0.5409789912222651,-0.5410589387733991,-0.5411388102442064,-0.5412186056251971,-0.5412983249068928,-0.5413779680798274,-0.5414575351345472,-0.54153702606161,-0.541616440851586,-0.5416957794950576,-0.5417750419826189,-0.5418542283048766,-0.541933338452449,-0.5420123724159666,-0.5420913301860721,-0.5421702117534205,-0.5422490171086783,-0.5423277462425247,-0.5424063991456506,-0.5424849758087591,-0.5425634762225655,-0.5426419003777971,-0.5427202482651933,-0.5427985198755055,-0.5428767151994975,-0.5429548342279449,-0.5430328769516356,-0.5431108433613694,-0.5431887334479585,-0.5432665472022269,-0.5433442846150108,-0.5434219456771587,-0.543499530379531,-0.5435770387130003,-0.5436544706684512,-0.5437318262367807,-0.5438091054088976,-0.5438863081757229,-0.5439634345281897,-0.5440404844572435,-0.5441174579538417,-0.5441943550089536,-0.544271175613561,-0.5443479197586577,-0.5444245874352496,-0.5445011786343544,-0.5445776933470028,-0.5446541315642368,-0.5447304932771108,-0.5448067784766915,-0.5448829871540574,-0.5449591193002994,-0.5450351749065206,-0.545111153963836,-0.5451870564633727,-0.5452628823962704,-0.5453386317536804,-0.5454143045267663,-0.545489900706704,-0.5455654202846816,-0.5456408632518991,-0.5457162295995688,-0.5457915193189148,-0.5458667324011741,-0.5459418688375951,-0.5460169286194387,-0.5460919117379781,-0.5461668181844983,-0.5462416479502967,-0.5463164010266828,-0.546391077404978,-0.5464656770765164,-0.5465402000326439,-0.5466146462647186,-0.5466890157641108,-0.5467633085222029,-0.5468375245303896,-0.5469116637800777,-0.5469857262626862,-0.5470597119696461,-0.5471336208924007,-0.5472074530224056,-0.5472812083511285,-0.5473548868700491,-0.5474284885706594,-0.5475020134444637,-0.5475754614829782,-0.5476488326777316,-0.5477221270202645,-0.54779534450213,-0.5478684851148928,-0.5479415488501306,-0.5480145356994326,-0.5480874456544007,-0.5481602787066484,-0.548233034847802,-0.5483057140694995,-0.5483783163633915,-0.5484508417211404,-0.5485232901344212,-0.5485956615949208,-0.5486679560943385,-0.5487401736243854,-0.5488123141767854,-0.548884377743274,-0.5489563643155996,-0.5490282738855219,-0.5491001064448136,-0.549171861985259,-0.5492435404986553,-0.5493151419768114,-0.5493866664115483,-0.5494581137946997,-0.549529484118111,-0.5496007773736402,-0.5496719935531573,-0.5497431326485447,-0.5498141946516967,-0.5498851795545201,-0.5499560873489338,-0.550026918026869,-0.550097671580269,-0.5501683480010894,-0.5502389472812981,-0.550309469412875,-0.5503799143878123,-0.5504502821981145,-0.5505205728357986,-0.5505907862928933,-0.5506609225614396,-0.5507309816334912,-0.5508009635011135,-0.5508708681563845,-0.5509406955913942,-0.551010445798245,-0.5510801187690513,-0.5511497144959399,-0.55121923297105,-0.5512886741865327,-0.5513580381345518,-0.5514273248072825,-0.5514965341969132,-0.5515656662956443,-0.5516347210956878,-0.5517036985892687,-0.5517725987686238,-0.5518414216260026,-0.5519101671536661,-0.5519788353438886,-0.5520474261889555,-0.5521159396811655,-0.5521843758128286,-0.5522527345762678,-0.552321015963818,-0.5523892199678264,-0.5524573465806527,-0.5525253957946683,-0.5525933676022574,-0.5526612619958163,-0.5527290789677535,-0.5527968185104896,-0.5528644806164578,-0.5529320652781033,-0.552999572487884,-0.5530670022382693,-0.5531343545217415,-0.5532016293307952,-0.5532688266579368,-0.5533359464956852,-0.5534029888365716,-0.5534699536731396,-0.5535368409979448,-0.5536036508035551,-0.5536703830825511,-0.5537370378275251,-0.5538036150310821,-0.553870114685839,-0.5539365367844256,-0.554002881319483,-0.5540691482836657,-0.5541353376696396,-0.5542014494700833,-0.5542674836776877,-0.5543334402851559,-0.554399319285203,-0.5544651206705571,-0.5545308444339578,-0.5545964905681575,-0.5546620590659207,-0.5547275499200243,-0.5547929631232572,-0.5548582986684212,-0.5549235565483295,-0.5549887367558085,-0.5550538392836963,-0.5551188641248437,-0.5551838112721135,-0.5552486807183806,-0.5553134724565328,-0.5553781864794699,-0.555442822780104,-0.5555073813513594,-0.5555718621861728,-0.5556362652774932,-0.555700590618282,-0.5557648382015128,-0.5558290080201714,-0.5558931000672563,-0.5559571143357779,-0.5560210508187589,-0.5560849095092346,-0.5561486904002527,-0.5562123934848727,-0.5562760187561668,-0.5563395662072195,-0.5564030358311274,-0.5564664276209996,-0.5565297415699576,-0.5565929776711349,-0.5566561359176778,-0.5567192163027443,-0.5567822188195054,-0.5568451434611438,-0.5569079902208549,-0.5569707590918465,-0.5570334500673382,-0.5570960631405626,-0.5571585983047642,-0.5572210555532,-0.5572834348791391,-0.5573457362758633,-0.5574079597366662,-0.5574701052548546,-0.5575321728237467,-0.5575941624366735,-0.5576560740869783,-0.5577179077680166,-0.5577796634731564,-0.5578413411957781,-0.5579029409292741,-0.5579644626670495,-0.5580259064025216,-0.5580872721291199,-0.5581485598402864,-0.5582097695294754,-0.5582709011901538,-0.5583319548158002,-0.5583929303999063,-0.5584538279359755,-0.5585146474175242,-0.5585753888380804,-0.5586360521911851,-0.5586966374703912,-0.5587571446692643,-0.5588175737813821,-0.5588779248003348,-0.5589381977197249,-0.5589983925331671,-0.5590585092342886,-0.5591185478167292,-0.5591785082741406,-0.5592383906001872,-0.5592981947885456,-0.5593579208329046,-0.5594175687269657,-0.5594771384644427,-0.5595366300390614,-0.5595960434445606,-0.5596553786746907,-0.5597146357232151,-0.5597738145839093,-0.5598329152505611,-0.5598919377169709,-0.559950881976951,-0.5600097480243267,-0.5600685358529353,-0.5601272454566264,-0.5601858768292622,-0.5602444299647172,-0.5603029048568782,-0.5603613014996442,-0.5604196198869272,-0.5604778600126509,-0.5605360218707516,-0.560594105455178,-0.5606521107598913,-0.560710037778865,-0.5607678865060848,-0.560825656935549,-0.5608833490612681,-0.5609409628772652,-0.5609984983775758,-0.5610559555562472,-0.5611133344073398,-0.5611706349249262,-0.5612278571030913,-0.5612850009359321,-0.5613420664175585,-0.5613990535420925,-0.5614559623036686,-0.5615127926964334,-0.5615695447145465,-0.5616262183521791,-0.5616828136035155,-0.5617393304627517,-0.561795768924097,-0.5618521289817723,-0.5619084106300112,-0.5619646138630596,-0.5620207386751759,-0.5620767850606307,-0.5621327530137076,-0.5621886425287017,-0.562244453599921,-0.5623001862216861,-0.5623558403883294,-0.5624114160941964,-0.5624669133336443,-0.5625223321010432,-0.5625776723907756,-0.5626329341972358,-0.5626881175148315,-0.5627432223379818,-0.5627982486611189,-0.5628531964786873,-0.5629080657851434,-0.5629628565749567,-0.5630175688426085,-0.563072202582593,-0.5631267577894167,-0.5631812344575982,-0.5632356325816688,-0.5632899521561721,-0.5633441931756642,-0.5633983556347135,-0.5634524395279011,-0.56350644484982,-0.5635603715950761,-0.5636142197582874,-0.5636679893340846,-0.5637216803171103,-0.5637752927020203,-0.5638288264834822,-0.5638822816561762,-0.5639356582147947,-0.5639889561540432,-0.564042175468639,-0.5640953161533119,-0.5641483782028042,-0.5642013616118706,-0.5642542663752785,-0.5643070924878073,-0.564359839944249,-0.5644125087394081,-0.5644650988681014,-0.5645176103251582,-0.5645700431054202,-0.5646223972037417,-0.564674672614989,-0.5647268693340414,-0.56477898735579,-0.564831026675139,-0.5648829872870043,-0.564934869186315,-0.5649866723680119,-0.5650383968270489,-0.5650900425583919,-0.5651416095570194,-0.5651930978179223,-0.5652445073361037,-0.5652958381065796,-0.565347090124378,-0.5653982633845399,-0.565449357882118,-0.565500373612178,-0.5655513105697978,-0.5656021687500679,-0.5656529481480909,-0.5657036487589822,-0.5657542705778695,-0.5658048135998931,-0.5658552778202053,-0.5659056632339714,-0.5659559698363689,-0.5660061976225874,-0.5660563465878297,-0.5661064167273104,-0.5661564080362568,-0.5662063205099086,-0.5662561541435179,-0.5663059089323494,-0.5663555848716801,-0.5664051819567997,-0.5664547001830099,-0.5665041395456252,-0.5665535000399726,-0.5666027816613912,-0.5666519844052328,-0.5667011082668616,-0.5667501532416545,-0.5667991193250004,-0.5668480065123007,-0.5668968147989698,-0.5669455441804341,-0.5669941946521324,-0.5670427662095162,-0.5670912588480492,-0.567139672563208,-0.5671880073504811,-0.5672362632053698,-0.5672844401233879,-0.5673325381000613,-0.5673805571309289,-0.5674284972115415,-0.5674763583374629,-0.5675241405042688,-0.5675718437075479,-0.567619467942901,-0.5676670132059414,-0.5677144794922949,-0.5677618667976001,-0.5678091751175075,-0.5678564044476805,-0.5679035547837947,-0.5679506261215381,-0.5679976184566118,-0.5680445317847285,-0.5680913661016138,-0.5681381214030059,-0.5681847976846552,-0.5682313949423247,-0.5682779131717897,-0.5683243523688384,-0.568370712529271,-0.5684169936489003,-0.5684631957235518,-0.5685093187490631,-0.5685553627212846,-0.5686013276360791,-0.5686472134893215,-0.5686930202768998,-0.5687387479947142,-0.5687843966386772,-0.5688299662047138,-0.5688754566887618,-0.5689208680867712,-0.5689662003947045,-0.5690114536085367,-0.5690566277242554,-0.5691017227378605,-0.5691467386453644,-0.5691916754427921,-0.569236533126181,-0.5692813116915811,-0.5693260111350548,-0.5693706314526766,-0.5694151726405341,-0.5694596346947272,-0.5695040176113679,-0.5695483213865813,-0.5695925460165043,-0.569636691497287,-0.5696807578250915,-0.5697247449960924,-0.5697686530064769,-0.569812481852445,-0.5698562315302085,-0.5698999020359923,-0.5699434933660333,-0.5699870055165812,-0.5700304384838983,-0.570073792264259,-0.5701170668539505,-0.5701602622492723,-0.5702033784465365,-0.5702464154420676,-0.5702893732322026,-0.5703322518132912,-0.5703750511816953,-0.5704177713337896,-0.5704604122659607,-0.5705029739746085,-0.5705454564561447,-0.570587859706994,-0.5706301837235932,-0.570672428502392,-0.5707145940398519,-0.5707566803324479,-0.5707986873766666,-0.5708406151690075,-0.5708824637059826,-0.5709242329841162,-0.5709659229999453,-0.5710075337500193,-0.5710490652309002,-0.5710905174391623,-0.5711318903713924,-0.5711731840241903,-0.5712143983941674,-0.5712555334779486,-0.5712965892721703,-0.5713375657734823,-0.5713784629785461,-0.5714192808840366,-0.5714600194866403,-0.5715006787830567,-0.5715412587699977,-0.5715817594441877,-0.5716221808023635,-0.5716625228412746,-0.571702785557683,-0.5717429689483629,-0.5717830730101012,-0.5718230977396974,-0.5718630431339634,-0.5719029091897236,-0.5719426959038149,-0.5719824032730867,-0.5720220312944009,-0.5720615799646318,-0.5721010492806666,-0.5721404392394046,-0.5721797498377578,-0.5722189810726505,-0.5722581329410198,-0.5722972054398149,-0.572336198565998,-0.5723751123165437,-0.5724139466884386,-0.5724527016786825,-0.5724913772842869,-0.572529973502277,-0.5725684903296893,-0.5726069277635735,-0.5726452858009914,-0.5726835644390179,-0.5727217636747398,-0.5727598835052566,-0.5727979239276805,-0.572835884939136,-0.5728737665367603,-0.5729115687177027,-0.5729492914791254,-0.5729869348182031,-0.5730244987321229,-0.5730619832180845,-0.5730993882733,-0.5731367138949939,-0.5731739600804036,-0.5732111268267785,-0.5732482141313809,-0.5732852219914857,-0.57332215040438,-0.5733589993673633,-0.5733957688777482,-0.5734324589328591,-0.5734690695300336,-0.5735056006666213,-0.5735420523399846,-0.5735784245474981,-0.5736147172865494,-0.5736509305545382,-0.573687064348877,-0.5737231186669903,-0.5737590935063158,-0.5737949888643035,-0.5738308047384155,-0.573866541126127,-0.5739021980249253,-0.5739377754323104,-0.5739732733457948,-0.5740086917629037,-0.5740440306811743,-0.5740792900981566,-0.5741144700114136,-0.57414957041852,-0.5741845913170636,-0.5742195327046442,-0.5742543945788747,-0.5742891769373801,-0.5743238797777983,-0.5743585030977794,-0.5743930468949858,-0.5744275111670931,-0.5744618959117888,-0.5744962011267734,-0.5745304268097593,-0.5745645729584722,-0.5745986395706497,-0.5746326266440422,-0.5746665341764126,-0.5747003621655362,-0.574734110609201,-0.5747677795052073,-0.5748013688513681,-0.5748348786455089,-0.5748683088854676,-0.5749016595690949,-0.5749349306942535,-0.5749681222588192,-0.5750012342606802,-0.5750342666977367,-0.5750672195679021,-0.5751000928691019,-0.5751328865992744,-0.5751656007563702,-0.5751982353383525,-0.575230790343197,-0.5752632657688921,-0.5752956616134384,-0.5753279778748492,-0.5753602145511503,-0.5753923716403803,-0.5754244491405899,-0.5754564470498423,-0.5754883653662137,-0.5755202040877924,-0.5755519632126793,-0.5755836427389881,-0.5756152426648447,-0.5756467629883875,-0.5756782037077677,-0.5757095648211488,-0.5757408463267069,-0.5757720482226307,-0.5758031705071214,-0.5758342131783925,-0.5758651762346704,-0.5758960596741936,-0.5759268634952135,-0.5759575876959939,-0.5759882322748111,-0.5760187972299537,-0.5760492825597234,-0.5760796882624339,-0.5761100143364115,-0.5761402607799953,-0.5761704275915367,-0.5762005147693996,-0.5762305223119606,-0.5762604502176086,-0.5762902984847453,-0.5763200671117846,-0.5763497560971533,-0.5763793654392906,-0.5764088951366477,-0.5764383451876893,-0.5764677155908917,-0.5764970063447445,-0.5765262174477492,-0.5765553488984201,-0.576584400695284,-0.5766133728368803,-0.576642265321761,-0.5766710781484903,-0.576699811315645,-0.5767284648218147,-0.5767570386656016,-0.5767855328456196,-0.5768139473604961,-0.5768422822088708,-0.5768705373893953,-0.5768987129007346,-0.5769268087415657,-0.576954824910578,-0.5769827614064742,-0.5770106182279684,-0.5770383953737881,-0.5770660928426732,-0.5770937106333758,-0.5771212487446606,-0.5771487071753051,-0.5771760859240991,-0.577203384989845,-0.5772306043713576,-0.5772577440674644,-0.5772848040770054,-0.5773117843988331,-0.5773386850318123,-0.5773655059748206,-0.5773922472267483,-0.5774189087864978,-0.5774454906529842,-0.5774719928251351,-0.5774984153018907,-0.5775247580822038,-0.5775510211650394,-0.5775772045493754,-0.577603308234202,-0.577629332218522,-0.5776552765013505,-0.5776811410817158,-0.5777069259586578,-0.5777326311312296,-0.5777582565984967,-0.5777838023595369,-0.5778092684134406,-0.577834654759311,-0.5778599613962633,-0.5778851883234257,-0.5779103355399391,-0.5779354030449559,-0.5779603908376422,-0.5779852989171761,-0.578010127282748,-0.5780348759335612,-0.5780595448688315,-0.5780841340877871,-0.5781086435896687,-0.5781330733737295,-0.5781574234392355,-0.5781816937854649,-0.5782058844117084,-0.5782299953172697,-0.5782540265014645,-0.5782779779636211,-0.5783018497030807,-0.5783256417191966,-0.5783493540113349,-0.578372986578874,-0.578396539421205,-0.5784200125377312,-0.5784434059278691,-0.5784667195910469,-0.5784899535267061,-0.5785131077343,-0.578536182213295,-0.5785591769631697,-0.578582091983415,-0.5786049272735352,-0.5786276828330461,-0.5786503586614768,-0.5786729547583684,-0.5786954711232748,-0.5787179077557622,-0.5787402646554094,-0.578762541821808,-0.5787847392545618,-0.5788068569532872,-0.578828894917613,-0.578850853147181,-0.5788727316416449,-0.5788945304006712,-0.5789162494239389,-0.5789378887111397,-0.5789594482619775,-0.5789809280761691,-0.5790023281534431,-0.5790236484935415,-0.5790448890962183,-0.5790660499612402,-0.5790871310883864,-0.5791081324774485,-0.5791290541282306,-0.5791498960405496,-0.5791706582142346,-0.5791913406491274,-0.5792119433450822,-0.5792324663019658,-0.5792529095196575,-0.5792732729980492,-0.5792935567370452,-0.5793137607365622,-0.5793338849965297,-0.5793539295168896,-0.5793738942975961,-0.5793937793386164,-0.5794135846399295,-0.5794333102015279,-0.5794529560234154,-0.5794725221056095,-0.5794920084481394,-0.5795114150510472,-0.5795307419143872,-0.5795499890382267,-0.5795691564226451,-0.5795882440677345,-0.5796072519735993,-0.5796261801403566,-0.579645028568136,-0.5796637972570798,-0.5796824862073424,-0.5797010954190909,-0.579719624892505,-0.5797380746277767,-0.5797564446251107,-0.5797747348847242,-0.5797929454068469,-0.579811076191721,-0.5798291272396011,-0.5798470985507542,-0.5798649901254604,-0.5798828019640117,-0.5799005340667127,-0.5799181864338809,-0.5799357590658458,-0.5799532519629498,-0.5799706651255475,-0.5799879985540063,-0.5800052522487059,-0.5800224262100385,-0.580039520438409,-0.5800565349342346,-0.580073469697945,-0.5800903247299828,-0.5801071000308025,-0.5801237956008716,-0.5801404114406696,-0.5801569475506891,-0.5801734039314349,-0.5801897805834242,-0.5802060775071869,-0.5802222947032651,-0.580238432172214,-0.5802544899146006,-0.580270467931005,-0.5802863662220192,-0.5803021847882484,-0.5803179236303098,-0.580333582748833,-0.5803491621444605,-0.5803646618178474,-0.5803800817696607,-0.5803954220005803,-0.5804106825112987,-0.5804258633025203,-0.580440964374963,-0.5804559857293561,-0.5804709273664423,-0.5804857892869764,-0.5805005714917255,-0.5805152739814694,-0.5805298967570006,-0.580544439819124,-0.5805589031686565,-0.5805732868064283,-0.5805875907332815,-0.5806018149500709,-0.5806159594576639,-0.58063002425694,-0.5806440093487917,-0.5806579147341238,-0.5806717404138533,-0.5806854863889102,-0.5806991526602368,-0.5807127392287874,-0.5807262460955296,-0.5807396732614429,-0.5807530207275198,-0.5807662884947646,-0.5807794765641947,-0.5807925849368398,-0.5808056136137421,-0.5808185625959561,-0.5808314318845487,-0.5808442214806001,-0.5808569313852021,-0.5808695615994592,-0.5808821121244885,-0.5808945829614199,-0.5809069741113951,-0.5809192855755687,-0.580931517355108,-0.580943669451192,-0.5809557418650132,-0.5809677345977756,-0.5809796476506967,-0.5809914810250054,-0.581003234721944,-0.5810149087427667,-0.5810265030887407,-0.5810380177611449,-0.5810494527612715,-0.5810608080904247,-0.5810720837499213,-0.5810832797410905,-0.5810943960652744,-0.5811054327238268,-0.5811163897181146,-0.5811272670495172,-0.5811380647194262,-0.5811487827292454,-0.5811594210803919,-0.5811699797742944,-0.5811804588123948,-0.5811908581961471,-0.5812011779270176,-0.5812114180064856,-0.5812215784360424,-0.581231659217192,-0.5812416603514508,-0.5812515818403475,-0.5812614236854238,-0.5812711858882333,-0.5812808684503425,-0.58129047137333,-0.5812999946587873,-0.5813094383083178,-0.5813188023235378,-0.5813280867060759,-0.5813372914575734,-0.5813464165796836,-0.5813554620740728,-0.5813644279424195,-0.5813733141864145,-0.5813821208077613,-0.581390847808176,-0.5813994951893866,-0.5814080629531344,-0.5814165511011724,-0.5814249596352664,-0.5814332885571947,-0.5814415378687481,-0.5814497075717293,-0.5814577976679545,-0.5814658081592513,-0.5814737390474606,-0.581481590334435,-0.5814893620220402,-0.581497054112154,-0.5815046666066669,-0.5815121995074816,-0.5815196528165134,-0.5815270265356898,-0.5815343206669514,-0.5815415352122507,-0.5815486701735526,-0.5815557255528349,-0.5815627013520874,-0.5815695975733126,-0.5815764142185254,-0.5815831512897534,-0.5815898087890359,-0.5815963867184256,-0.581602885079987,-0.5816093038757972,-0.5816156431079462,-0.5816219027785354,-0.5816280828896798,-0.5816341834435061,-0.581640204442154,-0.5816461458877749,-0.5816520077825333,-0.581657790128606,-0.5816634929281821,-0.5816691161834631,-0.5816746598966631,-0.5816801240700087,-0.5816855087057387,-0.5816908138061048,-0.5816960393733703,-0.5817011854098117,-0.581706251917718,-0.5817112388993899,-0.581716146357141,-0.5817209742932976,-0.581725722710198,-0.581730391610193,-0.581734980995646,-0.5817394908689328,-0.5817439212324416,-0.5817482720885727,-0.5817525434397395,-0.5817567352883676,-0.5817608476368945,-0.5817648804877709,-0.5817688338434592,-0.581772707706435,-0.5817765020791857,-0.5817802169642116,-0.5817838523640249,-0.5817874082811507,-0.5817908847181263,-0.5817942816775015,-0.5817975991618385,-0.581800837173712,-0.5818039957157088,-0.5818070747904287,-0.5818100744004833,-0.5818129945484971,-0.5818158352371068,-0.5818185964689613,-0.5818212782467227,-0.5818238805730647,-0.5818264034506735,-0.5818288468822485,-0.5818312108705003,-0.581833495418153,-0.5818357005279428,-0.5818378262026176,-0.581839872444939,-0.5818418392576798,-0.581843726643626,-0.581845534605576,-0.5818472631463398,-0.5818489122687407,-0.5818504819756143,-0.5818519722698079,-0.5818533831541821,-0.5818547146316091,-0.5818559667049745,-0.5818571393771754,-0.5818582326511217,-0.5818592465297354,-0.5818601810159516,-0.5818610361127171,-0.5818618118229913,-0.5818625081497462,-0.581863125095966,-0.5818636626646474,-0.5818641208587993,-0.5818644996814436,-0.5818647991356136,-0.581865019224356,-0.5818651599507291,-0.5818652213178042,-0.5818652033286649,-0.5818651059864065,-0.5818649292941378,-0.5818646732549793,-0.5818643378720638,-0.581863923148537,-0.5818634290875564,-0.5818628556922927,-0.5818622029659279,-0.5818614709116575,-0.5818606595326887,-0.5818597688322412,-0.5818587988135472,-0.5818577494798511,-0.58185662083441,-0.5818554128804934,-0.5818541256213825,-0.5818527590603718,-0.5818513132007674,-0.5818497880458886,-0.5818481835990661,-0.5818464998636439,-0.581844736842978,-0.5818428945404364,-0.5818409729594003,-0.5818389721032624,-0.5818368919754283,-0.5818347325793161,-0.5818324939183559,-0.5818301759959903,-0.5818277788156743,-0.5818253023808753,-0.581822746695073,-0.5818201117617594,-0.5818173975844393,-0.5818146041666292,-0.5818117315118587,-0.5818087796236691,-0.5818057485056143,-0.5818026381612608,-0.5817994485941872,-0.5817961798079846,-0.5817928318062564,-0.5817894045926184,-0.5817858981706987,-0.5817823125441377,-0.5817786477165884,-0.581774903691716,-0.5817710804731981,-0.5817671780647246,-0.5817631964699976,-0.5817591356927323,-0.5817549957366552,-0.5817507766055057,-0.5817464783030357,-0.5817421008330093,-0.5817376441992026,-0.5817331084054047,-0.5817284934554166,-0.5817237993530517,-0.581719026102136,-0.5817141737065075,-0.581709242170017,-0.5817042314965268,-0.5816991416899127,-0.5816939727540618,-0.5816887246928744,-0.5816833975102622,-0.5816779912101504,-0.5816725057964753,-0.581666941273187,-0.5816612976442461,-0.5816555749136272,-0.5816497730853164,-0.5816438921633125,-0.5816379321516258,-0.5816318930542804,-0.5816257748753114,-0.5816195776187669,-0.5816133012887073,-0.5816069458892048,-0.5816005114243448,-0.5815939978982245,-0.5815874053149532,-0.5815807336786532,-0.5815739829934583,-0.5815671532635156,-0.5815602444929836,-0.5815532566860337,-0.5815461898468496,-0.5815390439796269,-0.5815318190885739,-0.5815245151779111,-0.5815171322518714,-0.5815096703146998,-0.581502129370654,-0.5814945094240038,-0.581486810479031,-0.5814790325400301,-0.581471175611308,-0.5814632396971836,-0.5814552248019884,-0.581447130930066,-0.5814389580857722,-0.5814307062734756,-0.5814223754975565,-0.581413965762408,-0.5814054770724353,-0.5813969094320557,-0.5813882628456992,-0.5813795373178079,-0.5813707328528364,-0.5813618494552509,-0.581352887129531,-0.5813438458801677,-0.5813347257116648,-0.5813255266285381,-0.5813162486353158,-0.5813068917365385,-0.5812974559367589,-0.5812879412405421,-0.5812783476524657,-0.5812686751771191,-0.5812589238191046,-0.5812490935830361,-0.5812391844735403,-0.5812291964952562,-0.5812191296528348,-0.5812089839509396,-0.581198759394246,-0.5811884559874423,-0.5811780737352288,-0.5811676126423178,-0.5811570727134341,-0.5811464539533151,-0.5811357563667099,-0.5811249799583804,-0.5811141247331005,-0.5811031906956563,-0.5810921778508464,-0.5810810862034814,-0.5810699157583845,-0.581058666520391,-0.5810473384943485,-0.5810359316851168,-0.5810244460975679,-0.5810128817365863,-0.5810012386070686,-0.5809895167139238,-0.5809777160620733,-0.5809658366564501,-0.5809538785020001,-0.5809418416036812,-0.5809297259664639,-0.5809175315953303,-0.5809052584952754,-0.5808929066713061,-0.5808804761284418,-0.5808679668717139,-0.5808553789061661,-0.5808427122368547,-0.5808299668688476,-0.5808171428072255,-0.5808042400570814,-0.5807912586235198,-0.5807781985116586,-0.5807650597266267,-0.5807518422735665,-0.5807385461576314,-0.580725171383988,-0.5807117179578147,-0.5806981858843022,-0.5806845751686536,-0.5806708858160841,-0.5806571178318208,-0.5806432712211039,-0.5806293459891851,-0.5806153421413284,-0.5806012596828104,-0.5805870986189197,-0.580572858954957,-0.5805585406962357,-0.5805441438480807,-0.5805296684158299,-0.5805151144048329,-0.5805004818204518,-0.5804857706680606,-0.580470980953046,-0.5804561126808063,-0.580441165856753,-0.5804261404863085,-0.5804110365749087,-0.5803958541280008,-0.5803805931510446,-0.5803652536495123,-0.580349835628888,-0.5803343390946678,-0.5803187640523607,-0.5803031105074874,-0.5802873784655809,-0.5802715679321866,-0.5802556789128616,-0.5802397114131759,-0.5802236654387112,-0.5802075409950616,-0.5801913380878335,-0.5801750567226451,-0.5801586969051276,-0.5801422586409232,-0.5801257419356873,-0.5801091467950874,-0.5800924732248025,-0.5800757212305248,-0.5800588908179576,-0.5800419819928172,-0.5800249947608319,-0.5800079291277421,-0.5799907850993005,-0.5799735626812718,-0.5799562618794328,-0.5799388826995732,-0.5799214251474938,-0.5799038892290086,-0.579886274949943,-0.5798685823161351,-0.5798508113334349,-0.5798329620077048,-0.5798150343448192,-0.5797970283506645,-0.5797789440311398,-0.5797607813921559,-0.5797425404396361,-0.5797242211795155,-0.5797058236177419,-0.5796873477602745,-0.5796687936130855,-0.5796501611821588,-0.5796314504734905,-0.579612661493089,-0.5795937942469748,-0.5795748487411803,-0.5795558249817505,-0.5795367229747423,-0.5795175427262251,-0.5794982842422798,-0.5794789475289999,-0.5794595325924912,-0.5794400394388712,-0.5794204680742698,-0.5794008185048294,-0.5793810907367039,-0.5793612847760594,-0.5793414006290749,-0.5793214383019407,-0.5793013978008597,-0.5792812791320467,-0.579261082301729,-0.5792408073161455,-0.5792204541815478,-0.5792000229041991,-0.5791795134903754,-0.5791589259463641,-0.5791382602784653,-0.5791175164929909,-0.579096694596265,-0.5790757945946242,-0.5790548164944166,-0.5790337603020028,-0.5790126260237556,-0.5789914136660594,-0.5789701232353116,-0.5789487547379211,-0.5789273081803088,-0.5789057835689084,-0.578884180910165,-0.5788625002105361,-0.5788407414764914,-0.5788189047145127,-0.5787969899310939,-0.5787749971327408,-0.5787529263259716,-0.5787307775173165,-0.578708550713318,-0.57868624592053,-0.5786638631455194,-0.5786414023948647,-0.5786188636751566,-0.5785962469929982,-0.578573552355004,-0.5785507797678012,-0.578527929238029,-0.5785050007723386,-0.5784819943773933,-0.5784589100598684,-0.5784357478264515,-0.5784125076838424,-0.5783891896387524,-0.5783657936979056,-0.5783423198680375,-0.5783187681558963,-0.5782951385682422,-0.5782714311118469,-0.5782476457934949,-0.5782237826199822,-0.5781998415981175,-0.5781758227347209,-0.5781517260366252,-0.5781275515106749,-0.5781032991637266,-0.5780789690026491,-0.578054561034323,-0.5780300752656413,-0.5780055117035091,-0.5779808703548432,-0.577956151226573,-0.577931354325639,-0.577906479658995,-0.5778815272336061,-0.5778564970564495,-0.5778313891345148,-0.5778062034748032,-0.5777809400843282,-0.5777555989701155,-0.5777301801392027,-0.5777046835986397,-0.5776791093554876,-0.5776534574168204,-0.5776277277897242,-0.5776019204812965,-0.5775760354986474,-0.5775500728488987,-0.5775240325391844,-0.5774979145766506,-0.5774717189684554,-0.5774454457217687,-0.577419094843773,-0.577392666341662,-0.5773661602226421,-0.5773395764939315,-0.5773129151627607,-0.5772861762363719,-0.5772593597220191,-0.5772324656269692,-0.5772054939585001,-0.5771784447239023,-0.5771513179304784,-0.5771241135855428,-0.5770968316964218,-0.5770694722704541,-0.5770420353149899,-0.577014520837392,-0.5769869288450349,-0.5769592593453048,-0.5769315123456007,-0.5769036878533331,-0.5768757858759241,-0.5768478064208087,-0.5768197494954337,-0.576791615107257,-0.5767634032637495,-0.576735113972394,-0.5767067472406847,-0.5766783030761287,-0.576649781486244,-0.5766211824785615,-0.5765925060606237,-0.5765637522399851,-0.5765349210242123,-0.576506012420884,-0.5764770264375904,-0.5764479630819341,-0.5764188223615297,-0.5763896042840038,-0.5763603088569944,-0.5763309360881524,-0.5763014859851401,-0.5762719585556315,-0.5762423538073136,-0.5762126717478844,-0.5761829123850541,-0.5761530757265453,-0.5761231617800922,-0.5760931705534404,-0.576063102054349,-0.5760329562905877,-0.5760027332699387,-0.575972433000196,-0.5759420554891657,-0.5759116007446656,-0.5758810687745262,-0.5758504595865888,-0.5758197731887076,-0.5757890095887482,-0.5757581687945887,-0.5757272508141185,-0.5756962556552395,-0.5756651833258651,-0.5756340338339211,-0.5756028071873449,-0.5755715033940857,-0.5755401224621051,-0.5755086643993766,-0.5754771292138852,-0.5754455169136282,-0.5754138275066149,-0.575382061000866,-0.5753502174044147,-0.5753182967253059,-0.5752862989715964,-0.5752542241513552,-0.5752220722726626,-0.5751898433436117,-0.5751575373723068,-0.5751251543668644,-0.5750926943354129,-0.5750601572860925,-0.5750275432270556,-0.5749948521664664,-0.5749620841125005,-0.5749292390733464,-0.5748963170572037,-0.5748633180722843,-0.5748302421268114,-0.5747970892290213,-0.5747638593871612,-0.5747305526094906,-0.5746971689042807,-0.5746637082798143,-0.5746301707443869,-0.5745965563063056,-0.5745628649738891,-0.5745290967554681,-0.5744952516593854,-0.5744613296939955,-0.5744273308676648,-0.5743932551887716,-0.5743591026657062,-0.5743248733068704,-0.5742905671206787,-0.5742561841155565,-0.5742217242999417,-0.5741871876822838,-0.574152574271044,-0.5741178840746963,-0.5740831171017257,-0.5740482733606291,-0.5740133528599153,-0.5739783556081055,-0.5739432816137322,-0.57390813088534,-0.5738729034314851,-0.5738375992607361,-0.573802218381673,-0.5737667608028877,-0.5737312265329839,-0.5736956155805777,-0.5736599279542962,-0.5736241636627791,-0.5735883227146775,-0.5735524051186546,-0.573516410883385,-0.5734803400175558,-0.5734441925298654,-0.5734079684290244,-0.5733716677237551,-0.5733352904227916,-0.5732988365348798,-0.5732623060687774,-0.5732256990332543,-0.5731890154370918,-0.573152255289083,-0.5731154185980333,-0.5730785053727594,-0.5730415156220902,-0.5730044493548662,-0.5729673065799398,-0.5729300873061753,-0.5728927915424487,-0.5728554192976478,-0.5728179705806721,-0.5727804454004334,-0.5727428437658547,-0.5727051656858714,-0.5726674111694299,-0.5726295802254892,-0.5725916728630198,-0.572553689091004,-0.5725156289184359,-0.5724774923543211,-0.5724392794076778,-0.5724009900875352,-0.5723626244029345,-0.5723241823629288,-0.572285663976583,-0.5722470692529739,-0.5722083982011898,-0.5721696508303308,-0.5721308271495087,-0.5720919271678481,-0.5720529508944834,-0.5720138983385631,-0.5719747695092454,-0.5719355644157014,-0.5718962830671139,-0.5718569254726773,-0.5718174916415978,-0.5717779815830932,-0.5717383953063933,-0.5716987328207397,-0.5716589941353856,-0.5716191792595958,-0.5715792882026471,-0.5715393209738281,-0.571499277582439,-0.5714591580377921,-0.5714189623492106,-0.5713786905260307,-0.5713383425775991,-0.571297918513275,-0.5712574183424293,-0.5712168420744442,-0.5711761897187142,-0.5711354612846451,-0.5710946567816547,-0.5710537762191725,-0.5710128196066394,-0.5709717869535086,-0.5709306782692444,-0.5708894935633235,-0.570848232845234,-0.5708068961244755,-0.5707654834105597,-0.5707239947130095,-0.5706824300413602,-0.5706407894051585,-0.5705990728139626,-0.570557280277343,-0.5705154118048809,-0.5704734674061703,-0.5704314470908163,-0.5703893508684359,-0.5703471787486577,-0.5703049307411221,-0.5702626068554812,-0.5702202071013988,-0.57017773148855,-0.5701351800266221,-0.5700925527253142,-0.5700498495943367,-0.5700070706434115,-0.569964215882273,-0.5699212853206664,-0.5698782789683492,-0.5698351968350902,-0.5697920389306702,-0.5697488052648813,-0.5697054958475276,-0.5696621106884249,-0.5696186497974003,-0.5695751131842931,-0.5695315008589538,-0.5694878128312445,-0.5694440491110394,-0.5694002097082246,-0.5693562946326967,-0.5693123038943653,-0.5692682375031506,-0.569224095468985,-0.5691798778018129,-0.5691355845115894,-0.569091215608282,-0.5690467711018695,-0.5690022510023426,-0.5689576553197034,-0.5689129840639657,-0.5688682372451553,-0.5688234148733089,-0.5687785169584755,-0.5687335435107154,-0.5686884945401006,-0.568643370056715,-0.5685981700706536,-0.5685528945920236,-0.5685075436309436,-0.5684621171975431,-0.5684166153019647,-0.5683710379543615,-0.5683253851648985,-0.5682796569437524,-0.5682338533011112,-0.5681879742471752,-0.5681420197921558,-0.5680959899462756,-0.5680498847197702,-0.5680037041228851,-0.5679574481658785,-0.5679111168590201,-0.5678647102125907,-0.5678182282368832,-0.5677716709422019,-0.5677250383388625,-0.5676783304371927,-0.5676315472475315,-0.5675846887802295,-0.5675377550456493,-0.5674907460541642,-0.5674436618161599,-0.5673965023420334,-0.5673492676421932,-0.5673019577270595,-0.567254572607064,-0.5672071122926501,-0.5671595767942726,-0.5671119661223978,-0.5670642802875038,-0.56701651930008,-0.5669686831706279,-0.5669207719096602,-0.5668727855277006,-0.5668247240352853,-0.5667765874429616,-0.5667283757612884,-0.566680089000836,-0.5666317271721868,-0.5665832902859339,-0.5665347783526827,-0.5664861913830498,-0.5664375293876631,-0.5663887923771628,-0.5663399803622,-0.5662910933534373,-0.5662421313615491,-0.5661930943972211,-0.5661439824711508,-0.5660947955940474,-0.5660455337766311,-0.5659961970296339,-0.5659467853637988,-0.5658972987898817,-0.5658477373186485,-0.5657981009608773,-0.5657483897273579,-0.565698603628891,-0.5656487426762894,-0.565598806880377,-0.5655487962519895,-0.565498710801974,-0.5654485505411889,-0.5653983154805045,-0.5653480056308022,-0.565297621002975,-0.5652471616079278,-0.5651966274565762,-0.5651460185598479,-0.5650953349286822,-0.5650445765740293,-0.5649937435068514,-0.5649428357381217,-0.5648918532788253,-0.5648407961399584,-0.5647896643325293,-0.5647384578675574,-0.5646871767560729,-0.5646358210091188,-0.5645843906377486,-0.5645328856530273,-0.564481306066032,-0.5644296518878507,-0.564377923129583,-0.5643261198023399,-0.5642742419172442,-0.5642222894854294,-0.5641702625180415,-0.5641181610262371,-0.5640659850211843,-0.5640137345140632,-0.5639614095160649,-0.563909010038392,-0.5638565360922587,-0.5638039876888903,-0.563751364839524,-0.563698667555408,-0.5636458958478021,-0.563593049727978,-0.5635401292072173,-0.5634871342968152,-0.5634340650080767,-0.5633809213523185,-0.5633277033408697,-0.5632744109850694,-0.5632210442962688,-0.5631676032858308,-0.5631140879651289,-0.563060498345549,-0.5630068344384876,-0.562953096255353,-0.5628992838075646,-0.5628453971065539,-0.5627914361637628,-0.5627374009906451,-0.5626832915986661,-0.5626291079993024,-0.5625748502040417,-0.562520518224384,-0.562466112071839,-0.5624116317579297,-0.562357077294189,-0.5623024486921621,-0.562247745963405,-0.5621929691194855,-0.5621381181719823,-0.5620831931324859,-0.5620281940125977,-0.5619731208239314,-0.5619179735781108,-0.561862752286772,-0.5618074569615618,-0.5617520876141391,-0.5616966442561736,-0.5616411268993465,-0.5615855355553504,-0.5615298702358891,-0.5614741309526775,-0.5614183177174429,-0.5613624305419228,-0.5613064694378664,-0.5612504344170343,-0.5611943254911985,-0.5611381426721422,-0.5610818859716601,-0.561025555401558,-0.5609691509736532,-0.5609126726997743,-0.5608561205917607,-0.5607994946614642,-0.5607427949207472,-0.5606860213814833,-0.5606291740555575,-0.5605722529548668,-0.5605152580913184,-0.5604581894768317,-0.5604010471233369,-0.5603438310427756,-0.5602865412471008,-0.560229177748277,-0.5601717405582792,-0.5601142296890946,-0.5600566451527217,-0.5599989869611691,-0.5599412551264581,-0.5598834496606203,-0.559825570575699,-0.5597676178837493,-0.5597095915968363,-0.5596514917270373,-0.5595933182864409,-0.5595350712871465,-0.559476750741265,-0.5594183566609188,-0.5593598890582409,-0.5593013479453763,-0.5592427333344808,-0.559184045237722,-0.5591252836672777,-0.5590664486353379,-0.5590075401541039,-0.5589485582357873,-0.5588895028926119,-0.5588303741368124,-0.5587711719806345,-0.5587118964363356,-0.5586525475161839,-0.5585931252324592,-0.5585336295974525,-0.5584740606234656,-0.5584144183228118,-0.5583547027078162,-0.5582949137908138,-0.558235051584152,-0.5581751161001889,-0.5581151073512941,-0.5580550253498482,-0.5579948701082428,-0.5579346416388812,-0.5578743399541776,-0.5578139650665578,-0.557753516988458,-0.557692995732326,-0.5576324013106211,-0.5575717337358136,-0.5575109930203849,-0.5574501791768277,-0.5573892922176458,-0.557328332155354,-0.5572672990024792,-0.5572061927715579,-0.557145013475139,-0.5570837611257824,-0.5570224357360589,-0.556961037318551,-0.5568995658858511,-0.5568380214505642,-0.5567764040253059,-0.5567147136227028,-0.5566529502553926,-0.5565911139360251,-0.5565292046772597,-0.5564672224917684,-0.5564051673922333,-0.5563430393913483,-0.5562808385018184,-0.556218564736359,-0.5561562181076978,-0.5560937986285728,-0.5560313063117336,-0.5559687411699406,-0.555906103215965,-0.5558433924625903,-0.5557806089226102,-0.5557177526088296,-0.5556548235340648,-0.5555918217111431,-0.5555287471529028,-0.5554655998721937,-0.5554023798818759,-0.5553390871948216,-0.5552757218239137,-0.5552122837820459,-0.5551487730821234,-0.5550851897370623,-0.5550215337597902,-0.5549578051632452,-0.5548940039603766,-0.5548301301641453,-0.5547661837875227,-0.5547021648434917,-0.554638073345046,-0.5545739093051907,-0.5545096727369417,-0.554445363653326,-0.5543809820673817,-0.5543165279921582,-0.5542520014407158,-0.5541874024261256,-0.5541227309614705,-0.5540579870598433,-0.553993170734349,-0.5539282819981035,-0.5538633208642328,-0.5537982873458751,-0.553733181456179,-0.5536680032083042,-0.5536027526154222,-0.5535374296907141,-0.5534720344473733,-0.5534065668986037,-0.5533410270576204,-0.5532754149376493,-0.553209730551928,-0.5531439739137041,-0.5530781450362372,-0.5530122439327969,-0.5529462706166651,-0.5528802251011338,-0.552814107399506,-0.552747917525096,-0.5526816554912297,-0.5526153213112428,-0.5525489149984828,-0.552482436566308,-0.5524158860280876,-0.5523492633972024,-0.5522825686870432,-0.5522158019110123,-0.5521489630825235,-0.5520820522150006,-0.5520150693218794,-0.5519480144166056,-0.551880887512637,-0.5518136886234416,-0.5517464177624986,-0.5516790749432982,-0.5516116601793418,-0.5515441734841412,-0.55147661487122,-0.5514089843541118,-0.5513412819463622,-0.5512735076615266,-0.5512056615131724,-0.5511377435148774,-0.5510697536802307,-0.5510016920228317,-0.5509335585562917,-0.550865353294232,-0.5507970762502856,-0.5507287274380962,-0.5506603068713181,-0.5505918145636169,-0.550523250528669,-0.550454614780162,-0.550385907331794,-0.5503171281972743,-0.5502482773903231,-0.5501793549246715,-0.5501103608140615,-0.550041295072246,-0.5499721577129887,-0.5499029487500647,-0.5498336681972594,-0.5497643160683693,-0.5496948923772021,-0.5496253971375761,-0.5495558303633206,-0.5494861920682759,-0.5494164822662927,-0.5493467009712333,-0.5492768481969704,-0.549206923957388,-0.5491369282663805,-0.5490668611378533,-0.5489967225857232,-0.5489265126239173,-0.5488562312663736,-0.5487858785270412,-0.54871545441988,-0.5486449589588607,-0.548574392157965,-0.5485037540311856,-0.5484330445925256,-0.5483622638559992,-0.5482914118356315,-0.5482204885454585,-0.548149493999527,-0.5480784282118945,-0.5480072911966293,-0.5479360829678108,-0.5478648035395295,-0.547793452925886,-0.5477220311409922,-0.5476505381989708,-0.5475789741139552,-0.5475073389000896,-0.5474356325715296,-0.5473638551424406,-0.5472920066269996,-0.5472200870393942,-0.5471480963938228,-0.5470760347044943,-0.5470039019856294,-0.5469316982514583,-0.5468594235162231,-0.5467870777941758,-0.5467146610995799,-0.5466421734467095,-0.546569614849849,-0.5464969853232944,-0.5464242848813523,-0.5463515135383392,-0.5462786713085837,-0.5462057582064243,-0.5461327742462103,-0.5460597194423026,-0.5459865938090718,-0.5459133973608997,-0.5458401301121792,-0.5457667920773138,-0.5456933832707173,-0.5456199037068148,-0.5455463534000418,-0.5454727323648448,-0.5453990406156811,-0.5453252781670187,-0.5452514450333359,-0.5451775412291222,-0.5451035667688778,-0.5450295216671139,-0.5449554059383517,-0.544881219597124,-0.5448069626579733,-0.5447326351354541,-0.5446582370441302,-0.5445837683985776,-0.5445092292133819,-0.54443461950314,-0.5443599392824591,-0.5442851885659573,-0.544210367368264,-0.5441354757040182,-0.5440605135878704,-0.5439854810344813,-0.5439103780585229,-0.5438352046746775,-0.5437599608976379,-0.5436846467421085,-0.5436092622228028,-0.5435338073544468,-0.5434582821517756,-0.5433826866295361,-0.5433070208024856,-0.5432312846853916,-0.5431554782930326,-0.5430796016401983,-0.5430036547416878,-0.5429276376123122,-0.5428515502668926,-0.5427753927202605,-0.542699164987259,-0.5426228670827407,-0.5425464990215695,-0.5424700608186201,-0.5423935524887776,-0.5423169740469375,-0.5422403255080064,-0.5421636068869011,-0.5420868181985496,-0.5420099594578899,-0.5419330306798712,-0.5418560318794527,-0.5417789630716047,-0.5417018242713084,-0.5416246154935547,-0.5415473367533458,-0.5414699880656947,-0.541392569445624,-0.5413150809081682,-0.5412375224683713,-0.5411598941412887,-0.541082195941986,-0.5410044278855395,-0.540926589987036,-0.540848682261573,-0.5407707047242587,-0.5406926573902117,-0.5406145402745609,-0.5405363533924463,-0.5404580967590189,-0.5403797703894386,-0.5403013742988776,-0.5402229085025182,-0.5401443730155524,-0.5400657678531842,-0.5399870930306268,-0.5399083485631049,-0.5398295344658534,-0.5397506507541175,-0.5396716974431537,-0.5395926745482281,-0.5395135820846183,-0.5394344200676118,-0.5393551885125066,-0.5392758874346115,-0.5391965168492463,-0.53911707677174,-0.5390375672174336,-0.5389579882016777,-0.5388783397398338,-0.5387986218472738,-0.53871883453938,-0.5386389778315455,-0.5385590517391737,-0.5384790562776788,-0.5383989914624852,-0.5383188573090275,-0.5382386538327517,-0.5381583810491134,-0.5380780389735794,-0.5379976276216264,-0.5379171470087425,-0.537836597150425,-0.5377559780621827,-0.537675289759534,-0.537594532258009,-0.5375137055731474,-0.5374328097204993,-0.5373518447156259,-0.5372708105740981,-0.5371897073114982,-0.5371085349434179,-0.5370272934854602,-0.5369459829532381,-0.5368646033623755,-0.5367831547285061,-0.5367016370672747,-0.536620050394336,-0.5365383947253555,-0.5364566700760093,-0.536374876461983,-0.5362930138989741,-0.5362110824026893,-0.5361290819888463,-0.5360470126731729,-0.5359648744714081,-0.5358826673993,-0.5358003914726084,-0.5357180467071028,-0.5356356331185631,-0.5355531507227802,-0.5354705995355549,-0.5353879795726982,-0.5353052908500321,-0.5352225333833889,-0.5351397071886107,-0.5350568122815506,-0.5349738486780719,-0.5348908163940483,-0.5348077154453639,-0.5347245458479127,-0.5346413076176003,-0.5345580007703414,-0.5344746253220618,-0.534391181288697,-0.5343076686861938,-0.5342240875305089,-0.534140437837609,-0.5340567196234717,-0.5339729329040845,-0.533889077695446,-0.5338051540135643,-0.5337211618744584,-0.533637101294157,-0.5335529722887001,-0.5334687748741375,-0.5333845090665291,-0.5333001748819455,-0.5332157723364676,-0.5331313014461864,-0.5330467622272034,-0.5329621546956305,-0.5328774788675898,-0.532792734759214,-0.5327079223866454,-0.5326230417660373,-0.5325380929135528,-0.5324530758453659,-0.5323679905776605,-0.5322828371266308,-0.5321976155084813,-0.532112325739427,-0.5320269678356929,-0.5319415418135146,-0.5318560476891376,-0.5317704854788183,-0.5316848551988227,-0.5315991568654272,-0.5315133904949189,-0.5314275561035945,-0.5313416537077621,-0.5312556833237386,-0.531169644967852,-0.531083538656441,-0.5309973644058533,-0.530911122232448,-0.5308248121525937,-0.5307384341826699,-0.5306519883390656,-0.5305654746381805,-0.5304788930964247,-0.5303922437302182,-0.5303055265559914,-0.5302187415901847,-0.5301318888492488,-0.530044968349645,-0.5299579801078443,-0.5298709241403281,-0.5297838004635884,-0.5296966090941269,-0.5296093500484557,-0.5295220233430968,-0.5294346289945829,-0.5293471670194566,-0.5292596374342711,-0.5291720402555891,-0.5290843754999841,-0.5289966431840393,-0.5289088433243487,-0.5288209759375159,-0.5287330410401545,-0.5286450386488893,-0.5285569687803545,-0.5284688314511945,-0.528380626678064,-0.5282923544776279,-0.5282040148665611,-0.5281156078615488,-0.5280271334792864,-0.5279385917364792,-0.5278499826498428,-0.5277613062361032,-0.5276725625119962,-0.5275837514942678,-0.5274948731996741,-0.5274059276449818,-0.527316914846967,-0.527227834822416,-0.5271386875881263,-0.527049473160904,-0.5269601915575665,-0.5268708427949406,-0.5267814268898633,-0.5266919438591824,-0.5266023937197549,-0.5265127764884482,-0.5264230921821403,-0.5263333408177187,-0.526243522412081,-0.5261536369821352,-0.5260636845447997,-0.5259736651170018,-0.52588357871568,-0.5257934253577825,-0.5257032050602675,-0.5256129178401036,-0.5255225637142692,-0.5254321426997525,-0.5253416548135523,-0.5252511000726773,-0.5251604784941458,-0.5250697900949871,-0.5249790348922398,-0.5248882129029523,-0.5247973241441841,-0.5247063686330039,-0.5246153463864905,-0.5245242574217333,-0.524433101755831,-0.524341879405893,-0.5242505903890382,-0.5241592347223956,-0.5240678124231046,-0.5239763235083144,-0.5238847679951839,-0.5237931459008827,-0.5237014572425897,-0.5236097020374941,-0.5235178803027956,-0.523425992055703,-0.5233340373134356,-0.5232420160932227,-0.5231499284123035,-0.523057774287927,-0.5229655537373525,-0.5228732667778494,-0.5227809134266965,-0.5226884937011833,-0.5225960076186088,-0.5225034551962816,-0.5224108364515212,-0.5223181514016568,-0.522225400064027,-0.5221325824559806,-0.5220396985948766,-0.521946748498084,-0.5218537321829816,-0.5217606496669579,-0.5216675009674117,-0.5215742861017516,-0.5214810050873961,-0.5213876579417737,-0.5212942446823228,-0.5212007653264915,-0.5211072198917386,-0.5210136083955319,-0.5209199308553493,-0.5208261872886792,-0.5207323777130194,-0.5206385021458778,-0.5205445606047719,-0.5204505531072294,-0.5203564796707882,-0.5202623403129955,-0.5201681350514082,-0.5200738639035942,-0.5199795268871301,-0.5198851240196034,-0.5197906553186104,-0.5196961208017581,-0.5196015204866633,-0.5195068543909521,-0.5194121225322612,-0.5193173249282367,-0.5192224615965345,-0.519127532554821,-0.5190325378207717,-0.5189374774120722,-0.5188423513464181,-0.5187471596415147,-0.5186519023150772,-0.5185565793848307,-0.5184611908685101,-0.5183657367838598,-0.5182702171486346,-0.5181746319805989,-0.5180789812975268,-0.5179832651172022,-0.5178874834574192,-0.517791636335981,-0.5176957237707016,-0.5175997457794037,-0.5175037023799208,-0.5174075935900956,-0.5173114194277806,-0.5172151799108385,-0.5171188750571416,-0.5170225048845716,-0.5169260694110206,-0.5168295686543902,-0.5167330026325916,-0.5166363713635461,-0.5165396748651848,-0.5164429131554482,-0.516346086252287,-0.5162491941736609,-0.5161522369375403,-0.5160552145619052,-0.5159581270647448,-0.5158609744640584,-0.515763756777855,-0.5156664740241534,-0.5155691262209823,-0.5154717133863793,-0.5153742355383931,-0.5152766926950813,-0.5151790848745109,-0.5150814120947595,-0.5149836743739139,-0.5148858717300704,-0.5147880041813354,-0.5146900717458254,-0.5145920744416657,-0.5144940122869919,-0.5143958852999491,-0.5142976934986924,-0.5141994369013858,-0.514101115526204,-0.514002729391331,-0.5139042785149601,-0.5138057629152947,-0.5137071826105479,-0.5136085376189423,-0.5135098279587105,-0.5134110536480938,-0.5133122147053446,-0.5132133111487241,-0.5131143429965029,-0.5130153102669623,-0.5129162129783922,-0.5128170511490925,-0.512717824797373,-0.512618533941553,-0.5125191785999613,-0.5124197587909366,-0.5123202745328272,-0.5122207258439904,-0.5121211127427941,-0.5120214352476151,-0.5119216933768403,-0.5118218871488658,-0.5117220165820977,-0.5116220816949515,-0.5115220825058525,-0.5114220190332354,-0.5113218912955442,-0.5112216993112331,-0.511121443098766,-0.5110211226766155,-0.5109207380632648,-0.5108202892772058,-0.5107197763369407,-0.5106191992609811,-0.5105185580678477,-0.5104178527760714,-0.5103170834041924,-0.5102162499707604,-0.5101153524943348,-0.5100143909934844,-0.509913365486788,-0.5098122759928333,-0.5097111225302179,-0.509609905117549,-0.5095086237734434,-0.5094072785165271,-0.5093058693654356,-0.5092043963388149,-0.5091028594553187,-0.5090012587336126,-0.5088995941923697,-0.5087978658502734,-0.5086960737260171,-0.5085942178383025,-0.508492298205842,-0.5083903148473569,-0.5082882677815782,-0.5081861570272463,-0.5080839826031112,-0.507981744527932,-0.5078794428204781,-0.5077770774995278,-0.5076746485838689,-0.5075721560922984,-0.5074696000436238,-0.5073669804566614,-0.5072642973502364,-0.5071615507431847,-0.5070587406543509,-0.5069558671025888,-0.5068529301067626,-0.5067499296857448,-0.5066468658584187,-0.506543738643676,-0.5064405480604179,-0.5063372941275556,-0.5062339768640094,-0.5061305962887088,-0.5060271524205937,-0.505923645278612,-0.505820074881722,-0.5057164412488913,-0.5056127443990965,-0.5055089843513243,-0.5054051611245705,-0.5053012747378397,-0.5051973252101468,-0.5050933125605158,-0.5049892368079798,-0.5048850979715818,-0.5047808960703737,-0.5046766311234172,-0.5045723031497833,-0.5044679121685516,-0.5043634581988127,-0.504258941259665,-0.5041543613702172,-0.5040497185495869,-0.5039450128169015,-0.5038402441912972,-0.50373541269192,-0.503630518337925,-0.5035255611484772,-0.5034205411427501,-0.5033154583399271,-0.5032103127592007,-0.5031051044197727,-0.5029998333408549,-0.5028944995416673,-0.5027891030414403,-0.5026836438594129,-0.5025781220148338,-0.5024725375269606,-0.5023668904150612,-0.5022611806984114,-0.5021554083962974,-0.502049573528014,-0.5019436761128662,-0.5018377161701671,-0.5017316937192402,-0.5016256087794175,-0.5015194613700409,-0.5014132515104609,-0.5013069792200381,-0.5012006445181416,-0.5010942474241502,-0.5009877879574521,-0.5008812661374442,-0.5007746819835334,-0.5006680355151352,-0.5005613267516746,-0.5004545557125861,-0.500347722417313,-0.5002408268853081,-0.5001338691360337,-0.5000268491889609,-0.4999197670635699,-0.49981262277935107,-0.4997054163558028,-0.49959814781243345,-0.4994908171687606,-0.49938342444431044,-0.4992759696586195,-0.49916845283123223,-0.499060873981703,-0.49895323312959555,-0.4988455302944823,-0.4987377654959453,-0.4986299387535753,-0.4985220500869727,-0.49841409951574717,-0.49830608705951696,-0.49819801273791026,-0.4980898765705637,-0.49798167857712355,-0.49787341877724517,-0.4977650971905932,-0.49765671383684096,-0.4975482687356716,-0.4974397619067768,-0.49733119336985815,-0.4972225631446254,-0.49711387125079814,-0.497005117708105,-0.49689630253628386,-0.49678742575508106,-0.49667848738425313,-0.4965694874435648,-0.49646042595279055,-0.49635130293171353,-0.49624211840012605,-0.4961328723778303,-0.49602356488463645,-0.4959141959403644,-0.4958047655648432,-0.4956952737779106,-0.495585720599414,-0.49547610604920955,-0.49536643014716253,-0.4952566929131471,-0.495146894367047,-0.4950370345287547,-0.49492711341817175,-0.4948171310552087,-0.49470708745978575,-0.49459698265183116,-0.49448681665128336,-0.4943765894780891,-0.4942663011522042,-0.4941559516935941,-0.4940455411222325,-0.493935069458103,-0.49382453672119736,-0.49371394293151705,-0.49360328810907217,-0.4934925722738823,-0.4933817954459756,-0.4932709576453896,-0.49316005889217013,-0.49304909920637313,-0.49293807860806294,-0.49282699711731265,-0.49271585475420504,-0.4926046515388314,-0.4924933874912921,-0.4923820626316967,-0.4922706769801636,-0.49215923055681987,-0.4920477233818024,-0.49193615547525615,-0.49182452685733574,-0.4917128375482044,-0.4916010875680344,-0.49148927693700706,-0.49137740567531246,-0.49126547380315,-0.4911534813407276,-0.4910414283082625,-0.49092931472598084,-0.49081714061411746,-0.4907049059929161,-0.49059261088263023,-0.4904802553035212,-0.49036783927585986,-0.4902553628199261,-0.49014282595600794,-0.49003022870440344,-0.489917571085419,-0.4898048531193699,-0.4896920748265803,-0.4895792362273835,-0.4894663373421214,-0.4893533781911451,-0.4892403587948144,-0.4891272791734985,-0.48901413934757465,-0.4889009393374291,-0.48878767916345794,-0.48867435884606514,-0.4885609784056637,-0.48844753786267614,-0.4883340372375331,-0.4882204765506744,-0.48810685582254865,-0.4879931750736134,-0.48787943432433517,-0.48776563359518876,-0.4876517729066584,-0.48753785227923757,-0.48742387173342716,-0.48730983128973826,-0.48719573096869,-0.48708157079081077,-0.4869673507766375,-0.48685307094671637,-0.4867387313216018,-0.4866243319218575,-0.4865098727680554,-0.4863953538807774,-0.4862807752806128,-0.4861661369881604,-0.4860514390240278,-0.4859366814088315,-0.48582186416319656,-0.485706987307757,-0.485592050863155,-0.4854770548500428,-0.48536199928907975,-0.4852468842009354,-0.4851317096062877,-0.4850164755258229,-0.4849011819802362,-0.4847858289902319,-0.4846704165765227,-0.4845549447598303,-0.4844394135608847,-0.48432382300042526,-0.4842081730991996,-0.4840924638779644,-0.48397669535748483,-0.4838608675585348,-0.48374498050189696,-0.48362903420836323,-0.4835130286987332,-0.4833969639938159,-0.483280840114429,-0.48316465708139855,-0.4830484149155599,-0.4829321136377565,-0.4828157532688405,-0.48269933382967334,-0.48258285534112466,-0.4824663178240727,-0.4823497212994049,-0.48223306578801695,-0.4821163513108132,-0.4819995778887069,-0.48188274554261956,-0.4817658542934822,-0.4816489041622334,-0.4815318951698211,-0.48141482733720203,-0.4812977006853408,-0.48118051523521155,-0.4810632710077963,-0.48094596802408607,-0.48082860630508095,-0.4807111858717886,-0.48059370674522617,-0.4804761689464193,-0.4803585724964019,-0.4802409174162169,-0.48012320372691547,-0.4800054314495575,-0.4798876006052118,-0.47976971121495543,-0.4796517632998741,-0.4795337568810623,-0.47941569197962275,-0.4792975686166671,-0.47917938681331546,-0.4790611465906965,-0.47894284796994746,-0.47882449097221413,-0.47870607561865103,-0.47858760193042116,-0.47846906992869565,-0.4783504796346551,-0.47823183106948775,-0.47811312425439095,-0.4779943592105705,-0.4778755359592403,-0.4777566545216235,-0.47763771491895113,-0.47751871717246336,-0.47739966130340844,-0.47728054733304326,-0.4771613752826333,-0.4770421451734525,-0.4769228570267831,-0.47680351086391637,-0.4766841067061516,-0.4765646445747967,-0.4764451244911684,-0.4763255464765912,-0.4762059105523989,-0.4760862167399337,-0.47596646506054513,-0.47584665553559297,-0.4757267881864439,-0.4756068630344742,-0.4754868801010681,-0.4753668394076182,-0.47524674097552555,-0.4751265848262005,-0.47500637098106036,-0.47488609946153243,-0.47476577028905104,-0.47464538348506013,-0.4745249390710116,-0.4744044370683654,-0.47428387749859074,-0.4741632603831645,-0.47404258574357216,-0.47392185360130834,-0.4738010639778748,-0.4736802168947825,-0.4735593123735513,-0.47343835043570814,-0.4733173311027893,-0.4731962543963395,-0.4730751203379111,-0.4729539289490659,-0.47283268025137304,-0.47271137426641063,-0.4725900110157653,-0.4724685905210314,-0.4723471128038126,-0.4722255778857195,-0.4721039857883728,-0.4719823365334002,-0.4718606301424385,-0.47173886663713244,-0.4716170460391355,-0.47149516837010896,-0.471373233651723,-0.47125124190565576,-0.4711291931535939,-0.47100708741723246,-0.47088492471827426,-0.4707627050784313,-0.47064042851942334,-0.47051809506297865,-0.4703957047308336,-0.47027325754473315,-0.4701507535264301,-0.4700281926976863,-0.46990557508027103,-0.46978290069596274,-0.46966016956654727,-0.46953738171381953,-0.4694145371595823,-0.4692916359256465,-0.46916867803383167,-0.4690456635059653,-0.4689225923638837,-0.4687994646294306,-0.46867628032445846,-0.4685530394708284,-0.4684297420904092,-0.4683063882050776,-0.46818297783671936,-0.46805951100722837,-0.4679359877385059,-0.4678124080524627,-0.46768877197101666,-0.46756507951609466,-0.46744133070963134,-0.46731752557356954,-0.46719366412986074,-0.4670697464004642,-0.4669457724073476,-0.4668217421724868,-0.4666976557178654,-0.46657351306547623,-0.4664493142373194,-0.4663250592554032,-0.4662007481417448,-0.4660763809183689,-0.4659519576073085,-0.4658274782306053,-0.46570294281030816,-0.4655783513684751,-0.4654537039271716,-0.46532900050847154,-0.46520424113445724,-0.4650794258272186,-0.4649545546088543,-0.46482962750147044,-0.46470464452718163,-0.4645796057081109,-0.46445451106638885,-0.4643293606241545,-0.4642041544035552,-0.46407889242674577,-0.46395357471588966,-0.46382820129315855,-0.4637027721807317,-0.46357728740079657,-0.46345174697554936,-0.4633261509271936,-0.46320049927794116,-0.4630747920500122,-0.46294902926563436,-0.4628232109470446,-0.46269733711648614,-0.462571407796212,-0.46244542300848207,-0.46231938277556517,-0.4621932871197375,-0.46206713606328337,-0.46194092962849576,-0.46181466783767505,-0.46168835071312997,-0.461561978277177,-0.4614355505521412,-0.46130906756035495,-0.4611825293241593,-0.4610559358659027,-0.46092928720794235,-0.46080258337264296,-0.46067582438237725,-0.460549010259526,-0.46042214102647827,-0.4602952167056306,-0.46016823731938816,-0.4600412028901637,-0.45991411344037775,-0.45978696899245947,-0.4596597695688452,-0.45953251519197996,-0.45940520588431666,-0.4592778416683156,-0.45915042256644567,-0.45902294860118303,-0.4588954197950128,-0.4587678361704274,-0.45864019774992704,-0.4585125045560201,-0.45838475661122324,-0.4582569539380603,-0.45812909655906414,-0.45800118449677407,-0.4578732177737387,-0.45774519641251393,-0.45761712043566355,-0.4574889898657595,-0.45736080472538115,-0.4572325650371164,-0.45710427082356103,-0.4569759221073179,-0.4568475189109986,-0.45671906125722234,-0.4565905491686161,-0.456461982667815,-0.45633336177746175,-0.45620468652020696,-0.4560759569187096,-0.4559471729956356,-0.45581833477365963,-0.45568944227546393,-0.45556049552373806,-0.45543149454118026,-0.4553024393504962,-0.45517332997439924,-0.45504416643561113,-0.4549149487568606,-0.45478567696088495,-0.4546563510704294,-0.454526971108246,-0.45439753709709585,-0.45426804905974694,-0.45413850701897546,-0.4540089109975654,-0.45387926101830867,-0.45374955710400433,-0.45361979927746027,-0.45348998756149145,-0.4533601219789208,-0.45323020255257873,-0.45310022930530397,-0.45297020225994294,-0.45284012143934943,-0.45270998686638525,-0.45257979856392,-0.45244955655483077,-0.4523192608620031,-0.45218891150832946,-0.4520585085167103,-0.4519280519100544,-0.45179754171127734,-0.45166697794330324,-0.4515363606290632,-0.4514056897914968,-0.4512749654535509,-0.4511441876381803,-0.4510133563683469,-0.4508824716670215,-0.4507515335571814,-0.45062054206181246,-0.4504894972039075,-0.45035839900646774,-0.4502272474925017,-0.4500960426850256,-0.44996478460706324,-0.4498334732816469,-0.4497021087318152,-0.44957069098061536,-0.44943922005110226,-0.4493076959663378,-0.4491761187493925,-0.44904448842334355,-0.4489128050112764,-0.4487810685362839,-0.44864927902146673,-0.4485174364899331,-0.44838554096479855,-0.448253592469187,-0.44812159102622956,-0.4479895366590646,-0.44785742939083867,-0.44772526924470574,-0.44759305624382734,-0.44746079041137277,-0.4473284717705186,-0.4471961003444494,-0.447063676156357,-0.446931199229441,-0.4467986695869088,-0.44666608725197476,-0.44653345224786123,-0.4464007645977987,-0.44626802432502394,-0.44613523145278206,-0.446002386004326,-0.44586948800291576,-0.4457365374718189,-0.44560353443431083,-0.4454704789136742,-0.44533737093319964,-0.44520421051618464,-0.44507099768593494,-0.44493773246576335,-0.4448044148789905,-0.44467104494894416,-0.44453762269895997,-0.44440414815238083,-0.44427062133255757,-0.444137042262848,-0.4440034109666175,-0.44386972746723957,-0.4437359917880944,-0.4436022039525704,-0.44346836398406236,-0.443334471905974,-0.4432005277417157,-0.44306653151470504,-0.44293248324836765,-0.44279838296613655,-0.4426642306914518,-0.4425300264477615,-0.4423957702585207,-0.44226146214719203,-0.4421271021372461,-0.44199269025216,-0.4418582265154189,-0.44172371095051555,-0.44158914358094925,-0.4414545244302281,-0.44131985352186615,-0.44118513087938604,-0.441050356526317,-0.44091553048619603,-0.44078065278256795,-0.44064572343898395,-0.4405107424790037,-0.44037570992619357,-0.4402406258041273,-0.44010549013638667,-0.4399703029465602,-0.43983506425824376,-0.43969977409504135,-0.4395644324805634,-0.43942903943842815,-0.4392935949922615,-0.4391580991656959,-0.439022551982372,-0.4388869534659373,-0.43875130364004666,-0.43861560252836257,-0.4384798501545546,-0.43834404654229975,-0.43820819171528225,-0.4380722856971937,-0.4379363285117333,-0.4378003201826068,-0.43766426073352827,-0.43752815018821856,-0.4373919885704055,-0.4372557759038247,-0.43711951221221923,-0.43698319751933884,-0.4368468318489408,-0.4367104152247902,-0.43657394767065827,-0.43643742921032497,-0.4363008598675761,-0.4361642396662058,-0.4360275686300148,-0.4358908467828114,-0.43575407414841133,-0.4356172507506368,-0.43548037661331823,-0.43534345176029293,-0.4352064762154049,-0.4350694500025062,-0.4349323731454559,-0.4347952456681196,-0.4346580675943713,-0.4345208389480909,-0.43438355975316667,-0.4342462300334938,-0.4341088498129741,-0.43397141911551695,-0.4338339379650392,-0.4336964063854646,-0.43355882440072424,-0.433421192034756,-0.43328350931150533,-0.43314577625492506,-0.4330079928889744,-0.43287015923762046,-0.4327322753248374,-0.4325943411746062,-0.4324563568109153,-0.43231832225776,-0.4321802375391431,-0.4320421026790746,-0.4319039177015708,-0.4317656826306563,-0.43162739749036216,-0.4314890623047266,-0.43135067709779507,-0.43121224189361995,-0.43107375671626114,-0.43093522158978537,-0.4307966365382663,-0.43065800158578516,-0.4305193167564299,-0.43038058207429575,-0.43024179756348496,-0.4301029632481064,-0.429964079152277,-0.42982514530012034,-0.4296861617157665,-0.4295471284233535,-0.4294080454470258,-0.42926891281093527,-0.42912973053924053,-0.42899049865610756,-0.4288512171857093,-0.42871188615222583,-0.4285725055798435,-0.42843307549275716,-0.42829359591516725,-0.4281540668712819,-0.4280144883853166,-0.4278748604814929,-0.42773518318404036,-0.42759545651719505,-0.4274556805051998,-0.4273158551723051,-0.42717598054276773,-0.42703605664085204,-0.4268960834908292,-0.42675606111697695,-0.42661598954358076,-0.42647586879493254,-0.4263356988953311,-0.42619547986908285,-0.4260552117405003,-0.4259148945339036,-0.4257745282736197,-0.42563411298398196,-0.42549364868933165,-0.42535313541401637,-0.42521257318239036,-0.42507196201881575,-0.42493130194766054,-0.4247905929933005,-0.424649835180118,-0.4245090285325019,-0.4243681730748486,-0.4242272688315614,-0.42408631582704986,-0.4239453140857314,-0.42380426363202933,-0.42366316449037433,-0.42352201668520445,-0.4233808202409634,-0.42323957518210337,-0.4230982815330818,-0.422956939318364,-0.4228155485624221,-0.4226741092897347,-0.4225326215247874,-0.4223910852920729,-0.4222495006160904,-0.4221078675213462,-0.42196618603235325,-0.42182445617363135,-0.42168267796970765,-0.42154085144511516,-0.42139897662439413,-0.4212570535320927,-0.4211150821927637,-0.42097306263096884,-0.4208309948712751,-0.4206888789382572,-0.4205467148564964,-0.4204045026505806,-0.4202622423451044,-0.4201199339646699,-0.419977577533885,-0.41983517307736534,-0.41969272061973223,-0.4195502201856145,-0.419407671799648,-0.41926507548647457,-0.4191224312707432,-0.41897973917711007,-0.41883699923023704,-0.4186942114547936,-0.4185513758754557,-0.41840849251690576,-0.41826556140383364,-0.41812258256093526,-0.4179795560129136,-0.417836481784478,-0.41769335990034495,-0.41755019038523733,-0.417406973263885,-0.4172637085610241,-0.41712039630139824,-0.4169770365097568,-0.41683362921085654,-0.41669017442946016,-0.41654667219033786,-0.4164031225182665,-0.4162595254380286,-0.41611588097441427,-0.41597218915222034,-0.4158284499962497,-0.4156846635313123,-0.4155408297822245,-0.4153969487738095,-0.4152530205308973,-0.415109045078324,-0.41496502244093253,-0.4148209526435732,-0.4146768357111018,-0.41453267166838126,-0.41438846054028117,-0.41424420235167775,-0.41409989712745393,-0.41395554489249864,-0.4138111456717082,-0.4136666994899848,-0.413522206372238,-0.4133776663433833,-0.413233079428343,-0.4130884456520459,-0.41294376503942776,-0.41279903761543013,-0.412654263405002,-0.4125094424330986,-0.41236457472468113,-0.41221966030471824,-0.4120746991981846,-0.4119296914300616,-0.41178463702533724,-0.4116395360090057,-0.41149438840606806,-0.41134919424153155,-0.41120395354041056,-0.4110586663277254,-0.4109133326285032,-0.4107679524677772,-0.4106225258705879,-0.41047705286198133,-0.4103315334670109,-0.4101859677107359,-0.41004035561822244,-0.40989469721454325,-0.40974899252477676,-0.4096032415740088,-0.40945744438733117,-0.4093116009898424,-0.4091657114066471,-0.4090197756628565,-0.4088737937835887,-0.40872776579396775,-0.4085816917191242,-0.40843557158419497,-0.408289405414324,-0.40814319323466075,-0.4079969350703623,-0.4078506309465907,-0.40770428088851535,-0.4075578849213124,-0.4074114430701631,-0.4072649553602562,-0.4071184218167869,-0.406971842464956,-0.4068252173299713,-0.4066785464370466,-0.4065318298114025,-0.40638506747826586,-0.40623825946286973,-0.4060914057904534,-0.4059445064862632,-0.40579756157555097,-0.40565057108357566,-0.40550353503560194,-0.4053564534569012,-0.40520932637275137,-0.4050621538084358,-0.4049149357892456,-0.4047676723404769,-0.40462036348743263,-0.40447300925542246,-0.4043256096697618,-0.4041781647557725,-0.4040306745387832,-0.403883139044128,-0.40373555829714797,-0.40358793232319023,-0.4034402611476083,-0.4032925447957617,-0.4031447832930165,-0.40299697666474515,-0.4028491249363262,-0.4027012281331443,-0.40255328628059084,-0.40240529940406283,-0.40225726752896396,-0.4021091906807044,-0.4019610688847,-0.4018129021663731,-0.4016646905511526,-0.401516434064473,-0.4013681327317758,-0.40121978657850765,-0.4010713956301225,-0.4009229599120801,-0.4007744794498462,-0.4006259542688932,-0.4004773843946994,-0.40032876985274907,-0.40018011066853343,-0.4000314068675491,-0.39988265847529925,-0.3997338655172934,-0.3995850280190469,-0.39943614600608146,-0.3992872195039251,-0.39913824853811136,-0.3989892331341809,-0.39884017331767974,-0.39869106911416047,-0.3985419205491819,-0.3983927276483083,-0.3982434904371111,-0.39809420894116726,-0.39794488318605953,-0.39779551319737777,-0.3976460990007171,-0.3974966406216789,-0.3973471380858714,-0.39719759141890776,-0.3970480006464083,-0.39689836579399845,-0.39674868688731074,-0.3965989639519833,-0.3964491970136601,-0.3962993860979914,-0.396149531230634,-0.3959996324372502,-0.3958496897435085,-0.39569970317508335,-0.3955496727576556,-0.395399598516912,-0.395249480478545,-0.39509931866825393,-0.39494911311174336,-0.39479886383472407,-0.3946485708629133,-0.3944982342220336,-0.39434785393781424,-0.39419743003599034,-0.39404696254230265,-0.39389645148249813,-0.39374589688233036,-0.39359529876755767,-0.39344465716394555,-0.393293972097265,-0.3931432435932927,-0.39299247167781226,-0.3928416563766121,-0.39269079771548765,-0.3925398957202394,-0.3923889504166744,-0.3922379618306058,-0.392086929987852,-0.3919358549142379,-0.3917847366355946,-0.3916335751777582,-0.39148237056657165,-0.3913311228278835,-0.3911798319875482,-0.3910284980714262,-0.39087712110538353,-0.3907257011152928,-0.3905742381270322,-0.3904227321664854,-0.3902711832595429,-0.39011959143210007,-0.389967956710059,-0.3898162791193274,-0.3896645586858186,-0.3895127954354522,-0.38936098939415364,-0.3892091405878537,-0.38905724904248995,-0.3889053147840049,-0.3887533378383474,-0.38860131823147254,-0.38844925598934016,-0.38829715113791696,-0.3881450037031753,-0.3879928137110929,-0.38784058118765385,-0.3876883061588476,-0.3875359886506697,-0.3873836286891217,-0.38723122630021056,-0.3870787815099493,-0.3869262943443567,-0.3867737648294574,-0.3866211929912818,-0.38646857885586583,-0.38631592244925156,-0.386163223797487,-0.38601048292662526,-0.385857699862726,-0.3857048746318541,-0.3855520072600802,-0.3853990977734815,-0.38524614619813985,-0.38509315256014337,-0.38494011688558627,-0.3847870392005679,-0.3846339195311938,-0.38448075790357483,-0.38432755434382787,-0.38417430887807563,-0.38402102153244605,-0.3838676923330734,-0.3837143213060975,-0.3835609084776634,-0.38340745387392255,-0.3832539575210315,-0.38310041944515283,-0.3829468396724549,-0.38279321822911133,-0.38263955514130205,-0.382485850435212,-0.382332104137032,-0.38217831627295934,-0.3820244868691955,-0.38187061595194866,-0.3817167035474326,-0.3815627496818662,-0.3814087543814744,-0.3812547176724881,-0.38110063958114315,-0.38094652013368135,-0.38079235935635,-0.3806381572754024,-0.3804839139170969,-0.38032962930769815,-0.38017530347347556,-0.38002093644070534,-0.3798665282356676,-0.37971207888465,-0.3795575884139441,-0.37940305684984804,-0.37924848421866547,-0.37909387054670507,-0.37893921586028173,-0.3787845201857155,-0.37862978354933186,-0.3784750059774628,-0.3783201874964445,-0.3781653281326197,-0.3780104279123365,-0.3778554868619479,-0.37770050500781344,-0.3775454823762975,-0.3773904189937701,-0.3772353148866072,-0.37708017008118955,-0.37692498460390395,-0.37676975848114286,-0.37661449173930356,-0.3764591844047895,-0.3763038365040092,-0.37614844806337694,-0.37599301910931243,-0.37583754966824073,-0.3756820397665925,-0.3755264894308041,-0.3753708986873167,-0.3752152675625778,-0.3750595960830393,-0.37490388427515964,-0.3747481321654022,-0.37459233978023565,-0.37443650714613447,-0.3742806342895787,-0.37412472123705287,-0.37396876801504825,-0.3738127746500603,-0.3736567411685907,-0.3735006675971468,-0.37334455396224014,-0.37318840029038897,-0.37303220660811603,-0.3728759729419501,-0.372719699318425,-0.37256338576408005,-0.3724070323054597,-0.37225063896911437,-0.3720942057815992,-0.3719377327694752,-0.3717812199593084,-0.3716246673776703,-0.371468075051138,-0.3713114430062935,-0.3711547712697244,-0.370998059868024,-0.37084130882779004,-0.37068451817562653,-0.37052768793814217,-0.37037081814195144,-0.37021390881367383,-0.3700569599799342,-0.3698999716673629,-0.3697429439025954,-0.3695858767122723,-0.36942877012304015,-0.36927162416155,-0.36911443885445855,-0.3689572142284284,-0.36879995031012613,-0.3686426471262246,-0.36848530470340163,-0.36832792306834017,-0.3681705022477288,-0.3680130422682609,-0.3678555431566354,-0.3676980049395569,-0.3675404276437339,-0.36738281129588146,-0.36722515592271937,-0.367067461550973,-0.366909728207372,-0.3667519559186524,-0.36659414471155466,-0.366436294612825,-0.36627840564921427,-0.3661204778474789,-0.3659625112343806,-0.36580450583668583,-0.3656464616811668,-0.36548837879460033,-0.3653302572037692,-0.36517209693546043,-0.36501389801646683,-0.3648556604735862,-0.3646973843336215,-0.36453906962338084,-0.3643807163696777,-0.3642223245993301,-0.3640638943391621,-0.36390542561600214,-0.363746918456684,-0.36358837288804696,-0.36342978893693484,-0.3632711666301969,-0.3631125059946877,-0.36295380705726643,-0.36279506984479776,-0.3626362943841514,-0.3624774807022021,-0.36231862882582966,-0.3621597387819191,-0.36200081059736033,-0.36184184429904853,-0.36168283991388384,-0.3615237974687714,-0.361364716990622,-0.36120559850635053,-0.3610464420428777,-0.3608872476271288,-0.3607280152860345,-0.3605687450465303,-0.3604094369355567,-0.3602500909800596,-0.3600907072069897,-0.3599312856433024,-0.3597718263159589,-0.3596123292519243,-0.35945279447816986,-0.3592932220216712,-0.35913361190940896,-0.35897396416836896,-0.358814278825542,-0.35865455590792383,-0.358494795442515,-0.3583349974563214,-0.3581751619763535,-0.35801528902962726,-0.35785537864316297,-0.35769543084398653,-0.3575354456591279,-0.3573754231156229,-0.35721536324051234,-0.3570552660608407,-0.3568951316036589,-0.3567349598960221,-0.3565747509649902,-0.3564145048376287,-0.3562542215410071,-0.35609390110220057,-0.355933543548289,-0.35577314890635703,-0.35561271720349413,-0.35545224846679513,-0.35529174272335917,-0.35513120000029086,-0.354970620324699,-0.3548100037236978,-0.35464935022440647,-0.35448865985394823,-0.35432793263945217,-0.3541671686080518,-0.3540063677868852,-0.3538455302030959,-0.35368465588383186,-0.35352374485624577,-0.35336279714749586,-0.3532018127847443,-0.3530407917951585,-0.352879734205911,-0.3527186400441784,-0.352557509337143,-0.352396342111991,-0.3522351383959142,-0.3520738982161088,-0.35191262159977565,-0.35175130857412096,-0.35158995916635505,-0.3514285734036932,-0.35126715131335606,-0.35110569292256816,-0.3509441982585596,-0.35078266734856456,-0.3506211002198223,-0.350459496899577,-0.350297857415077,-0.35013618179357625,-0.34997447006233273,-0.34981272224860943,-0.3496509383796738,-0.3494891184827989,-0.34932726258526103,-0.34916537071434256,-0.3490034428973299,-0.34884147916151426,-0.34867947953419176,-0.3485174440426626,-0.3483553727142326,-0.34819326557621183,-0.34803112265591457,-0.3478689439806607,-0.34770672957777377,-0.3475444794745829,-0.34738219369842127,-0.347219872276627,-0.3470575152365429,-0.3468951226055163,-0.34673269441089893,-0.34657023068004794,-0.34640773144032416,-0.34624519671909376,-0.3460826265437273,-0.3459200209415995,-0.3457573799400907,-0.345594703566585,-0.3454319918484714,-0.34526924481314375,-0.3451064624879999,-0.3449436449004428,-0.34478079207788,-0.34461790404772324,-0.34445498083738907,-0.34429202247429874,-0.3441290289858778,-0.34396600039955666,-0.34380293674277007,-0.3436398380429572,-0.34347670432756267,-0.34331353562403427,-0.3431503319598253,-0.3429870933623931,-0.34282381985919996,-0.34266051147771254,-0.34249716824540183,-0.34233379018974347,-0.34217037733821803,-0.34200692971830965,-0.34184344735750793,-0.3416799302833064,-0.3415163785232032,-0.3413527921047011,-0.34118917105530727,-0.3410255154025332,-0.3408618251738954,-0.34069810039691406,-0.3405343410991146,-0.3403705473080262,-0.3402067190511831,-0.3400428563561236,-0.33987895925039063,-0.33971502776153156,-0.3395510619170983,-0.3393870617446468,-0.33922302727173786,-0.33905895852593637],"x":[-0.8,-0.8004398240703718,-0.8008796481407437,-0.8013194722111155,-0.8017592962814875,-0.8021991203518593,-0.8026389444222312,-0.803078768492603,-0.8035185925629749,-0.8039584166333467,-0.8043982407037185,-0.8048380647740904,-0.8052778888444622,-0.8057177129148341,-0.8061575369852059,-0.8065973610555778,-0.8070371851259496,-0.8074770091963215,-0.8079168332666933,-0.8083566573370652,-0.808796481407437,-0.8092363054778089,-0.8096761295481807,-0.8101159536185526,-0.8105557776889244,-0.8109956017592963,-0.8114354258296681,-0.81187524990004,-0.8123150739704118,-0.8127548980407837,-0.8131947221111555,-0.8136345461815274,-0.8140743702518992,-0.8145141943222711,-0.8149540183926429,-0.8153938424630148,-0.8158336665333866,-0.8162734906037585,-0.8167133146741303,-0.8171531387445022,-0.817592962814874,-0.8180327868852459,-0.8184726109556177,-0.8189124350259896,-0.8193522590963614,-0.8197920831667334,-0.8202319072371052,-0.8206717313074771,-0.8211115553778489,-0.8215513794482208,-0.8219912035185926,-0.8224310275889645,-0.8228708516593363,-0.8233106757297081,-0.82375049980008,-0.8241903238704518,-0.8246301479408237,-0.8250699720111955,-0.8255097960815674,-0.8259496201519392,-0.8263894442223111,-0.8268292682926829,-0.8272690923630548,-0.8277089164334266,-0.8281487405037985,-0.8285885645741703,-0.8290283886445422,-0.829468212714914,-0.8299080367852859,-0.8303478608556577,-0.8307876849260296,-0.8312275089964014,-0.8316673330667733,-0.8321071571371451,-0.832546981207517,-0.8329868052778888,-0.8334266293482607,-0.8338664534186325,-0.8343062774890044,-0.8347461015593762,-0.8351859256297481,-0.8356257497001199,-0.8360655737704918,-0.8365053978408636,-0.8369452219112355,-0.8373850459816073,-0.8378248700519793,-0.838264694122351,-0.838704518192723,-0.8391443422630948,-0.8395841663334667,-0.8400239904038385,-0.8404638144742104,-0.8409036385445822,-0.841343462614954,-0.8417832866853259,-0.8422231107556977,-0.8426629348260696,-0.8431027588964414,-0.8435425829668133,-0.8439824070371851,-0.844422231107557,-0.8448620551779288,-0.8453018792483007,-0.8457417033186725,-0.8461815273890444,-0.8466213514594162,-0.8470611755297881,-0.8475009996001599,-0.8479408236705318,-0.8483806477409036,-0.8488204718112755,-0.8492602958816473,-0.8497001199520192,-0.850139944022391,-0.8505797680927629,-0.8510195921631347,-0.8514594162335066,-0.8518992403038784,-0.8523390643742503,-0.8527788884446221,-0.853218712514994,-0.8536585365853658,-0.8540983606557377,-0.8545381847261095,-0.8549780087964814,-0.8554178328668532,-0.8558576569372252,-0.856297481007597,-0.8567373050779689,-0.8571771291483407,-0.8576169532187126,-0.8580567772890844,-0.8584966013594563,-0.8589364254298281,-0.8593762495002,-0.8598160735705718,-0.8602558976409436,-0.8606957217113155,-0.8611355457816873,-0.8615753698520592,-0.862015193922431,-0.8624550179928029,-0.8628948420631747,-0.8633346661335466,-0.8637744902039184,-0.8642143142742903,-0.8646541383446621,-0.865093962415034,-0.8655337864854058,-0.8659736105557777,-0.8664134346261495,-0.8668532586965214,-0.8672930827668932,-0.8677329068372651,-0.8681727309076369,-0.8686125549780088,-0.8690523790483806,-0.8694922031187525,-0.8699320271891243,-0.8703718512594962,-0.870811675329868,-0.8712514994002399,-0.8716913234706117,-0.8721311475409836,-0.8725709716113554,-0.8730107956817273,-0.8734506197520991,-0.873890443822471,-0.8743302678928428,-0.8747700919632148,-0.8752099160335866,-0.8756497401039585,-0.8760895641743303,-0.8765293882447022,-0.876969212315074,-0.8774090363854459,-0.8778488604558177,-0.8782886845261896,-0.8787285085965614,-0.8791683326669332,-0.8796081567373051,-0.8800479808076769,-0.8804878048780488,-0.8809276289484206,-0.8813674530187925,-0.8818072770891643,-0.8822471011595362,-0.882686925229908,-0.8831267493002799,-0.8835665733706517,-0.8840063974410236,-0.8844462215113954,-0.8848860455817673,-0.8853258696521391,-0.885765693722511,-0.8862055177928828,-0.8866453418632547,-0.8870851659336265,-0.8875249900039984,-0.8879648140743702,-0.8884046381447421,-0.8888444622151139,-0.8892842862854858,-0.8897241103558576,-0.8901639344262295,-0.8906037584966013,-0.8910435825669732,-0.891483406637345,-0.891923230707717,-0.8923630547780887,-0.8928028788484607,-0.8932427029188325,-0.8936825269892044,-0.8941223510595762,-0.8945621751299481,-0.8950019992003199,-0.8954418232706918,-0.8958816473410636,-0.8963214714114355,-0.8967612954818073,-0.8972011195521792,-0.897640943622551,-0.8980807676929228,-0.8985205917632947,-0.8989604158336665,-0.8994002399040384,-0.8998400639744102,-0.9002798880447821,-0.9007197121151539,-0.9011595361855258,-0.9015993602558976,-0.9020391843262695,-0.9024790083966413,-0.9029188324670132,-0.903358656537385,-0.9037984806077569,-0.9042383046781287,-0.9046781287485006,-0.9051179528188724,-0.9055577768892443,-0.9059976009596161,-0.906437425029988,-0.9068772491003598,-0.9073170731707317,-0.9077568972411035,-0.9081967213114754,-0.9086365453818472,-0.9090763694522191,-0.9095161935225909,-0.9099560175929629,-0.9103958416633346,-0.9108356657337066,-0.9112754898040784,-0.9117153138744503,-0.9121551379448221,-0.912594962015194,-0.9130347860855658,-0.9134746101559377,-0.9139144342263095,-0.9143542582966814,-0.9147940823670532,-0.9152339064374251,-0.9156737305077969,-0.9161135545781688,-0.9165533786485406,-0.9169932027189124,-0.9174330267892843,-0.9178728508596561,-0.918312674930028,-0.9187524990003998,-0.9191923230707717,-0.9196321471411435,-0.9200719712115154,-0.9205117952818872,-0.9209516193522591,-0.9213914434226309,-0.9218312674930028,-0.9222710915633746,-0.9227109156337465,-0.9231507397041183,-0.9235905637744902,-0.924030387844862,-0.9244702119152339,-0.9249100359856057,-0.9253498600559776,-0.9257896841263494,-0.9262295081967213,-0.9266693322670931,-0.927109156337465,-0.9275489804078368,-0.9279888044782088,-0.9284286285485805,-0.9288684526189525,-0.9293082766893243,-0.9297481007596962,-0.930187924830068,-0.9306277489004399,-0.9310675729708117,-0.9315073970411836,-0.9319472211115554,-0.9323870451819273,-0.9328268692522991,-0.933266693322671,-0.9337065173930428,-0.9341463414634147,-0.9345861655337865,-0.9350259896041584,-0.9354658136745302,-0.935905637744902,-0.9363454618152739,-0.9367852858856457,-0.9372251099560176,-0.9376649340263894,-0.9381047580967613,-0.9385445821671331,-0.938984406237505,-0.9394242303078768,-0.9398640543782487,-0.9403038784486205,-0.9407437025189924,-0.9411835265893642,-0.9416233506597361,-0.9420631747301079,-0.9425029988004798,-0.9429428228708516,-0.9433826469412235,-0.9438224710115953,-0.9442622950819672,-0.944702119152339,-0.945141943222711,-0.9455817672930827,-0.9460215913634547,-0.9464614154338264,-0.9469012395041984,-0.9473410635745702,-0.9477808876449421,-0.9482207117153139,-0.9486605357856858,-0.9491003598560576,-0.9495401839264295,-0.9499800079968013,-0.9504198320671732,-0.950859656137545,-0.9512994802079169,-0.9517393042782887,-0.9521791283486606,-0.9526189524190324,-0.9530587764894043,-0.9534986005597761,-0.9539384246301479,-0.9543782487005198,-0.9548180727708916,-0.9552578968412635,-0.9556977209116353,-0.9561375449820072,-0.956577369052379,-0.9570171931227509,-0.9574570171931227,-0.9578968412634946,-0.9583366653338664,-0.9587764894042383,-0.9592163134746101,-0.959656137544982,-0.9600959616153538,-0.9605357856857257,-0.9609756097560975,-0.9614154338264694,-0.9618552578968412,-0.9622950819672131,-0.9627349060375849,-0.9631747301079568,-0.9636145541783286,-0.9640543782487005,-0.9644942023190723,-0.9649340263894443,-0.965373850459816,-0.965813674530188,-0.9662534986005598,-0.9666933226709317,-0.9671331467413035,-0.9675729708116754,-0.9680127948820472,-0.9684526189524191,-0.9688924430227909,-0.9693322670931628,-0.9697720911635346,-0.9702119152339065,-0.9706517393042783,-0.9710915633746502,-0.971531387445022,-0.9719712115153939,-0.9724110355857657,-0.9728508596561375,-0.9732906837265094,-0.9737305077968812,-0.9741703318672531,-0.9746101559376249,-0.9750499800079968,-0.9754898040783686,-0.9759296281487405,-0.9763694522191123,-0.9768092762894842,-0.977249100359856,-0.9776889244302279,-0.9781287485005997,-0.9785685725709716,-0.9790083966413434,-0.9794482207117153,-0.9798880447820871,-0.980327868852459,-0.9807676929228308,-0.9812075169932027,-0.9816473410635745,-0.9820871651339464,-0.9825269892043182,-0.9829668132746902,-0.983406637345062,-0.9838464614154339,-0.9842862854858057,-0.9847261095561776,-0.9851659336265494,-0.9856057576969213,-0.9860455817672931,-0.986485405837665,-0.9869252299080368,-0.9873650539784087,-0.9878048780487805,-0.9882447021191524,-0.9886845261895242,-0.9891243502598961,-0.9895641743302679,-0.9900039984006398,-0.9904438224710116,-0.9908836465413835,-0.9913234706117553,-0.9917632946821271,-0.992203118752499,-0.9926429428228708,-0.9930827668932427,-0.9935225909636145,-0.9939624150339864,-0.9944022391043582,-0.9948420631747301,-0.9952818872451019,-0.9957217113154738,-0.9961615353858456,-0.9966013594562175,-0.9970411835265893,-0.9974810075969612,-0.997920831667333,-0.9983606557377049,-0.9988004798080767,-0.9992403038784486,-0.9996801279488204,-1.0001199520191923,-1.0005597760895641,-1.000999600159936,-1.001439424230308,-1.0018792483006798,-1.0023190723710516,-1.0027588964414234,-1.0031987205117954,-1.0036385445821672,-1.004078368652539,-1.0045181927229108,-1.0049580167932828,-1.0053978408636546,-1.0058376649340264,-1.0062774890043982,-1.0067173130747702,-1.007157137145142,-1.0075969612155138,-1.0080367852858856,-1.0084766093562576,-1.0089164334266294,-1.0093562574970012,-1.009796081567373,-1.010235905637745,-1.0106757297081168,-1.0111155537784886,-1.0115553778488604,-1.0119952019192322,-1.0124350259896042,-1.012874850059976,-1.0133146741303478,-1.0137544982007196,-1.0141943222710916,-1.0146341463414634,-1.0150739704118352,-1.015513794482207,-1.015953618552579,-1.0163934426229508,-1.0168332666933226,-1.0172730907636944,-1.0177129148340665,-1.0181527389044382,-1.01859256297481,-1.0190323870451818,-1.0194722111155539,-1.0199120351859257,-1.0203518592562975,-1.0207916833266693,-1.0212315073970413,-1.021671331467413,-1.0221111555377849,-1.0225509796081567,-1.0229908036785287,-1.0234306277489005,-1.0238704518192723,-1.024310275889644,-1.024750099960016,-1.025189924030388,-1.0256297481007597,-1.0260695721711315,-1.0265093962415035,-1.0269492203118753,-1.027389044382247,-1.027828868452619,-1.028268692522991,-1.0287085165933627,-1.0291483406637345,-1.0295881647341063,-1.030027988804478,-1.0304678128748501,-1.030907636945222,-1.0313474610155937,-1.0317872850859655,-1.0322271091563375,-1.0326669332267093,-1.0331067572970811,-1.033546581367453,-1.033986405437825,-1.0344262295081967,-1.0348660535785685,-1.0353058776489403,-1.0357457017193124,-1.0361855257896841,-1.036625349860056,-1.0370651739304277,-1.0375049980007998,-1.0379448220711716,-1.0383846461415434,-1.0388244702119152,-1.0392642942822872,-1.039704118352659,-1.0401439424230308,-1.0405837664934026,-1.0410235905637746,-1.0414634146341464,-1.0419032387045182,-1.04234306277489,-1.042782886845262,-1.0432227109156338,-1.0436625349860056,-1.0441023590563774,-1.0445421831267494,-1.0449820071971212,-1.045421831267493,-1.0458616553378648,-1.0463014794082368,-1.0467413034786086,-1.0471811275489804,-1.0476209516193522,-1.048060775689724,-1.048500599760096,-1.0489404238304678,-1.0493802479008396,-1.0498200719712114,-1.0502598960415834,-1.0506997201119552,-1.051139544182327,-1.0515793682526988,-1.0520191923230708,-1.0524590163934426,-1.0528988404638144,-1.0533386645341862,-1.0537784886045582,-1.05421831267493,-1.0546581367453018,-1.0550979608156736,-1.0555377848860457,-1.0559776089564175,-1.0564174330267893,-1.056857257097161,-1.057297081167533,-1.0577369052379049,-1.0581767293082767,-1.0586165533786485,-1.0590563774490205,-1.0594962015193923,-1.059936025589764,-1.0603758496601359,-1.060815673730508,-1.0612554978008797,-1.0616953218712515,-1.0621351459416233,-1.0625749700119953,-1.063014794082367,-1.063454618152739,-1.0638944422231107,-1.0643342662934827,-1.0647740903638545,-1.0652139144342263,-1.065653738504598,-1.0660935625749701,-1.066533386645342,-1.0669732107157137,-1.0674130347860855,-1.0678528588564573,-1.0682926829268293,-1.0687325069972011,-1.069172331067573,-1.0696121551379447,-1.0700519792083167,-1.0704918032786885,-1.0709316273490603,-1.0713714514194321,-1.0718112754898041,-1.072251099560176,-1.0726909236305477,-1.0731307477009195,-1.0735705717712916,-1.0740103958416634,-1.0744502199120352,-1.074890043982407,-1.075329868052779,-1.0757696921231508,-1.0762095161935226,-1.0766493402638944,-1.0770891643342664,-1.0775289884046382,-1.07796881247501,-1.0784086365453818,-1.0788484606157538,-1.0792882846861256,-1.0797281087564974,-1.0801679328268692,-1.0806077568972412,-1.081047580967613,-1.0814874050379848,-1.0819272291083566,-1.0823670531787286,-1.0828068772491004,-1.0832467013194722,-1.083686525389844,-1.084126349460216,-1.0845661735305878,-1.0850059976009596,-1.0854458216713314,-1.0858856457417032,-1.0863254698120752,-1.086765293882447,-1.0872051179528188,-1.0876449420231906,-1.0880847660935626,-1.0885245901639344,-1.0889644142343062,-1.089404238304678,-1.08984406237505,-1.0902838864454218,-1.0907237105157936,-1.0911635345861654,-1.0916033586565375,-1.0920431827269093,-1.092483006797281,-1.0929228308676529,-1.0933626549380249,-1.0938024790083967,-1.0942423030787685,-1.0946821271491403,-1.0951219512195123,-1.095561775289884,-1.0960015993602559,-1.0964414234306277,-1.0968812475009997,-1.0973210715713715,-1.0977608956417433,-1.098200719712115,-1.098640543782487,-1.099080367852859,-1.0995201919232307,-1.0999600159936025,-1.1003998400639745,-1.1008396641343463,-1.101279488204718,-1.10171931227509,-1.102159136345462,-1.1025989604158337,-1.1030387844862055,-1.1034786085565773,-1.1039184326269493,-1.1043582566973211,-1.104798080767693,-1.1052379048380647,-1.1056777289084365,-1.1061175529788085,-1.1065573770491803,-1.1069972011195521,-1.107437025189924,-1.107876849260296,-1.1083166733306677,-1.1087564974010395,-1.1091963214714113,-1.1096361455417834,-1.1100759696121552,-1.110515793682527,-1.1109556177528987,-1.1113954418232708,-1.1118352658936426,-1.1122750899640144,-1.1127149140343862,-1.1131547381047582,-1.11359456217513,-1.1140343862455018,-1.1144742103158736,-1.1149140343862456,-1.1153538584566174,-1.1157936825269892,-1.116233506597361,-1.116673330667733,-1.1171131547381048,-1.1175529788084766,-1.1179928028788484,-1.1184326269492204,-1.1188724510195922,-1.119312275089964,-1.1197520991603358,-1.1201919232307078,-1.1206317473010796,-1.1210715713714514,-1.1215113954418232,-1.1219512195121952,-1.122391043582567,-1.1228308676529388,-1.1232706917233106,-1.1237105157936824,-1.1241503398640544,-1.1245901639344262,-1.125029988004798,-1.1254698120751698,-1.1259096361455418,-1.1263494602159136,-1.1267892842862854,-1.1272291083566572,-1.1276689324270293,-1.128108756497401,-1.1285485805677729,-1.1289884046381446,-1.1294282287085167,-1.1298680527788885,-1.1303078768492603,-1.130747700919632,-1.131187524990004,-1.1316273490603759,-1.1320671731307477,-1.1325069972011195,-1.1329468212714915,-1.1333866453418633,-1.133826469412235,-1.1342662934826069,-1.134706117552979,-1.1351459416233507,-1.1355857656937225,-1.1360255897640943,-1.1364654138344663,-1.136905237904838,-1.13734506197521,-1.1377848860455817,-1.1382247101159537,-1.1386645341863255,-1.1391043582566973,-1.139544182327069,-1.1399840063974411,-1.140423830467813,-1.1408636545381847,-1.1413034786085565,-1.1417433026789283,-1.1421831267493003,-1.1426229508196721,-1.143062774890044,-1.1435025989604157,-1.1439424230307877,-1.1443822471011595,-1.1448220711715313,-1.1452618952419031,-1.1457017193122752,-1.146141543382647,-1.1465813674530188,-1.1470211915233905,-1.1474610155937626,-1.1479008396641344,-1.1483406637345062,-1.148780487804878,-1.14922031187525,-1.1496601359456218,-1.1500999600159936,-1.1505397840863654,-1.1509796081567374,-1.1514194322271092,-1.151859256297481,-1.1522990803678528,-1.1527389044382248,-1.1531787285085966,-1.1536185525789684,-1.1540583766493402,-1.1544982007197122,-1.154938024790084,-1.1553778488604558,-1.1558176729308276,-1.1562574970011996,-1.1566973210715714,-1.1571371451419432,-1.157576969212315,-1.158016793282687,-1.1584566173530588,-1.1588964414234306,-1.1593362654938024,-1.1597760895641744,-1.1602159136345462,-1.160655737704918,-1.1610955617752898,-1.1615353858456616,-1.1619752099160336,-1.1624150339864054,-1.1628548580567772,-1.163294682127149,-1.163734506197521,-1.1641743302678929,-1.1646141543382647,-1.1650539784086364,-1.1654938024790085,-1.1659336265493803,-1.166373450619752,-1.1668132746901239,-1.1672530987604959,-1.1676929228308677,-1.1681327469012395,-1.1685725709716113,-1.1690123950419833,-1.169452219112355,-1.1698920431827269,-1.1703318672530987,-1.1707716913234707,-1.1712115153938425,-1.1716513394642143,-1.172091163534586,-1.172530987604958,-1.17297081167533,-1.1734106357457017,-1.1738504598160735,-1.1742902838864455,-1.1747301079568173,-1.1751699320271891,-1.175609756097561,-1.176049580167933,-1.1764894042383047,-1.1769292283086765,-1.1773690523790483,-1.1778088764494203,-1.1782487005197921,-1.178688524590164,-1.1791283486605357,-1.1795681727309075,-1.1800079968012795,-1.1804478208716513,-1.1808876449420231,-1.181327469012395,-1.181767293082767,-1.1822071171531388,-1.1826469412235106,-1.1830867652938823,-1.1835265893642544,-1.1839664134346262,-1.184406237504998,-1.1848460615753698,-1.1852858856457418,-1.1857257097161136,-1.1861655337864854,-1.1866053578568572,-1.1870451819272292,-1.187485005997601,-1.1879248300679728,-1.1883646541383446,-1.1888044782087166,-1.1892443022790884,-1.1896841263494602,-1.190123950419832,-1.190563774490204,-1.1910035985605758,-1.1914434226309476,-1.1918832467013194,-1.1923230707716914,-1.1927628948420632,-1.193202718912435,-1.1936425429828068,-1.1940823670531788,-1.1945221911235506,-1.1949620151939224,-1.1954018392642942,-1.1958416633346662,-1.196281487405038,-1.1967213114754098,-1.1971611355457816,-1.1976009596161536,-1.1980407836865254,-1.1984806077568972,-1.198920431827269,-1.1993602558976408,-1.1998000799680129,-1.2002399040383847,-1.2006797281087564,-1.2011195521791282,-1.2015593762495003,-1.201999200319872,-1.2024390243902439,-1.2028788484606157,-1.2033186725309877,-1.2037584966013595,-1.2041983206717313,-1.204638144742103,-1.205077968812475,-1.2055177928828469,-1.2059576169532187,-1.2063974410235905,-1.2068372650939625,-1.2072770891643343,-1.207716913234706,-1.2081567373050779,-1.20859656137545,-1.2090363854458217,-1.2094762095161935,-1.2099160335865653,-1.2103558576569373,-1.2107956817273091,-1.211235505797681,-1.2116753298680527,-1.2121151539384247,-1.2125549780087965,-1.2129948020791683,-1.2134346261495401,-1.2138744502199121,-1.214314274290284,-1.2147540983606557,-1.2151939224310275,-1.2156337465013995,-1.2160735705717713,-1.2165133946421431,-1.216953218712515,-1.2173930427828867,-1.2178328668532588,-1.2182726909236306,-1.2187125149940023,-1.2191523390643741,-1.2195921631347462,-1.220031987205118,-1.2204718112754898,-1.2209116353458616,-1.2213514594162336,-1.2217912834866054,-1.2222311075569772,-1.222670931627349,-1.223110755697721,-1.2235505797680928,-1.2239904038384646,-1.2244302279088364,-1.2248700519792084,-1.2253098760495802,-1.225749700119952,-1.2261895241903238,-1.2266293482606958,-1.2270691723310676,-1.2275089964014394,-1.2279488204718112,-1.2283886445421832,-1.228828468612555,-1.2292682926829268,-1.2297081167532986,-1.2301479408236706,-1.2305877648940424,-1.2310275889644142,-1.231467413034786,-1.231907237105158,-1.2323470611755298,-1.2327868852459016,-1.2332267093162734,-1.2336665333866454,-1.2341063574570172,-1.234546181527389,-1.2349860055977608,-1.2354258296681329,-1.2358656537385047,-1.2363054778088765,-1.2367453018792482,-1.23718512594962,-1.237624950019992,-1.2380647740903639,-1.2385045981607357,-1.2389444222311075,-1.2393842463014795,-1.2398240703718513,-1.240263894442223,-1.2407037185125949,-1.2411435425829669,-1.2415833666533387,-1.2420231907237105,-1.2424630147940823,-1.2429028388644543,-1.243342662934826,-1.243782487005198,-1.2442223110755697,-1.2446621351459417,-1.2451019592163135,-1.2455417832866853,-1.245981607357057,-1.2464214314274291,-1.246861255497801,-1.2473010795681727,-1.2477409036385445,-1.2481807277089165,-1.2486205517792883,-1.2490603758496601,-1.249500199920032,-1.249940023990404,-1.2503798480607757,-1.2508196721311475,-1.2512594962015193,-1.2516993202718913,-1.2521391443422631,-1.252578968412635,-1.2530187924830067,-1.2534586165533788,-1.2538984406237506,-1.2543382646941224,-1.2547780887644941,-1.255217912834866,-1.255657736905238,-1.2560975609756098,-1.2565373850459816,-1.2569772091163534,-1.2574170331867254,-1.2578568572570972,-1.258296681327469,-1.2587365053978408,-1.2591763294682128,-1.2596161535385846,-1.2600559776089564,-1.2604958016793282,-1.2609356257497002,-1.261375449820072,-1.2618152738904438,-1.2622550979608156,-1.2626949220311876,-1.2631347461015594,-1.2635745701719312,-1.264014394242303,-1.264454218312675,-1.2648940423830468,-1.2653338664534186,-1.2657736905237904,-1.2662135145941624,-1.2666533386645342,-1.267093162734906,-1.2675329868052778,-1.2679728108756498,-1.2684126349460216,-1.2688524590163934,-1.2692922830867652,-1.2697321071571372,-1.270171931227509,-1.2706117552978808,-1.2710515793682526,-1.2714914034386247,-1.2719312275089965,-1.2723710515793683,-1.27281087564974,-1.2732506997201118,-1.2736905237904839,-1.2741303478608557,-1.2745701719312275,-1.2750099960015993,-1.2754498200719713,-1.275889644142343,-1.2763294682127149,-1.2767692922830867,-1.2772091163534587,-1.2776489404238305,-1.2780887644942023,-1.278528588564574,-1.278968412634946,-1.279408236705318,-1.2798480607756897,-1.2802878848460615,-1.2807277089164335,-1.2811675329868053,-1.281607357057177,-1.282047181127549,-1.282487005197921,-1.2829268292682927,-1.2833666533386645,-1.2838064774090363,-1.2842463014794083,-1.2846861255497801,-1.285125949620152,-1.2855657736905237,-1.2860055977608957,-1.2864454218312675,-1.2868852459016393,-1.2873250699720111,-1.2877648940423831,-1.288204718112755,-1.2886445421831267,-1.2890843662534985,-1.2895241903238706,-1.2899640143942424,-1.2904038384646142,-1.290843662534986,-1.291283486605358,-1.2917233106757298,-1.2921631347461016,-1.2926029588164734,-1.2930427828868452,-1.2934826069572172,-1.293922431027589,-1.2943622550979608,-1.2948020791683326,-1.2952419032387046,-1.2956817273090764,-1.2961215513794482,-1.29656137544982,-1.297001199520192,-1.2974410235905638,-1.2978808476609356,-1.2983206717313074,-1.2987604958016794,-1.2992003198720512,-1.299640143942423,-1.3000799680127948,-1.3005197920831668,-1.3009596161535386,-1.3013994402239104,-1.3018392642942822,-1.3022790883646542,-1.302718912435026,-1.3031587365053978,-1.3035985605757696,-1.3040383846461416,-1.3044782087165134,-1.3049180327868852,-1.305357856857257,-1.305797680927629,-1.3062375049980008,-1.3066773290683726,-1.3071171531387444,-1.3075569772091165,-1.3079968012794883,-1.30843662534986,-1.3088764494202318,-1.3093162734906039,-1.3097560975609757,-1.3101959216313475,-1.3106357457017193,-1.311075569772091,-1.311515393842463,-1.3119552179128349,-1.3123950419832067,-1.3128348660535785,-1.3132746901239505,-1.3137145141943223,-1.314154338264694,-1.3145941623350659,-1.315033986405438,-1.3154738104758097,-1.3159136345461815,-1.3163534586165533,-1.3167932826869253,-1.317233106757297,-1.317672930827669,-1.3181127548980407,-1.3185525789684127,-1.3189924030387845,-1.3194322271091563,-1.319872051179528,-1.3203118752499001,-1.320751699320272,-1.3211915233906437,-1.3216313474610155,-1.3220711715313875,-1.3225109956017593,-1.3229508196721311,-1.323390643742503,-1.323830467812875,-1.3242702918832467,-1.3247101159536185,-1.3251499400239903,-1.3255897640943624,-1.3260295881647342,-1.326469412235106,-1.3269092363054777,-1.3273490603758498,-1.3277888844462216,-1.3282287085165934,-1.3286685325869652,-1.3291083566573372,-1.329548180727709,-1.3299880047980808,-1.3304278288684526,-1.3308676529388244,-1.3313074770091964,-1.3317473010795682,-1.33218712514994,-1.3326269492203118,-1.3330667732906838,-1.3335065973610556,-1.3339464214314274,-1.3343862455017992,-1.3348260695721712,-1.335265893642543,-1.3357057177129148,-1.3361455417832866,-1.3365853658536586,-1.3370251899240304,-1.3374650139944022,-1.337904838064774,-1.338344662135146,-1.3387844862055178,-1.3392243102758896,-1.3396641343462614,-1.3401039584166334,-1.3405437824870052,-1.340983606557377,-1.3414234306277488,-1.3418632546981208,-1.3423030787684926,-1.3427429028388644,-1.3431827269092362,-1.3436225509796083,-1.34406237504998,-1.3445021991203518,-1.3449420231907236,-1.3453818472610957,-1.3458216713314675,-1.3462614954018393,-1.346701319472211,-1.347141143542583,-1.3475809676129549,-1.3480207916833267,-1.3484606157536985,-1.3489004398240703,-1.3493402638944423,-1.349780087964814,-1.3502199120351859,-1.3506597361055577,-1.3510995601759297,-1.3515393842463015,-1.3519792083166733,-1.352419032387045,-1.352858856457417,-1.353298680527789,-1.3537385045981607,-1.3541783286685325,-1.3546181527389045,-1.3550579768092763,-1.355497800879648,-1.35593762495002,-1.356377449020392,-1.3568172730907637,-1.3572570971611355,-1.3576969212315073,-1.3581367453018793,-1.3585765693722511,-1.359016393442623,-1.3594562175129947,-1.3598960415833667,-1.3603358656537385,-1.3607756897241103,-1.3612155137944821,-1.3616553378648542,-1.362095161935226,-1.3625349860055977,-1.3629748100759695,-1.3634146341463416,-1.3638544582167134,-1.3642942822870852,-1.364734106357457,-1.365173930427829,-1.3656137544982008,-1.3660535785685726,-1.3664934026389444,-1.3669332267093162,-1.3673730507796882,-1.36781287485006,-1.3682526989204318,-1.3686925229908036,-1.3691323470611756,-1.3695721711315474,-1.3700119952019192,-1.370451819272291,-1.370891643342663,-1.3713314674130348,-1.3717712914834066,-1.3722111155537784,-1.3726509396241504,-1.3730907636945222,-1.373530587764894,-1.3739704118352658,-1.3744102359056378,-1.3748500599760096,-1.3752898840463814,-1.3757297081167532,-1.3761695321871252,-1.376609356257497,-1.3770491803278688,-1.3774890043982406,-1.3779288284686126,-1.3783686525389844,-1.3788084766093562,-1.379248300679728,-1.3796881247501,-1.3801279488204719,-1.3805677728908436,-1.3810075969612154,-1.3814474210315875,-1.3818872451019593,-1.382327069172331,-1.3827668932427029,-1.3832067173130749,-1.3836465413834467,-1.3840863654538185,-1.3845261895241903,-1.3849660135945623,-1.385405837664934,-1.3858456617353059,-1.3862854858056777,-1.3867253098760495,-1.3871651339464215,-1.3876049580167933,-1.388044782087165,-1.3884846061575369,-1.388924430227909,-1.3893642542982807,-1.3898040783686525,-1.3902439024390243,-1.3906837265093963,-1.391123550579768,-1.39156337465014,-1.3920031987205117,-1.3924430227908837,-1.3928828468612555,-1.3933226709316273,-1.3937624950019991,-1.3942023190723711,-1.394642143142743,-1.3950819672131147,-1.3955217912834865,-1.3959616153538585,-1.3964014394242303,-1.3968412634946021,-1.397281087564974,-1.397720911635346,-1.3981607357057177,-1.3986005597760895,-1.3990403838464613,-1.3994802079168334,-1.3999200319872052,-1.400359856057577,-1.4007996801279488,-1.4012395041983208,-1.4016793282686926,-1.4021191523390644,-1.4025589764094362,-1.4029988004798082,-1.40343862455018,-1.4038784486205518,-1.4043182726909236,-1.4047580967612954,-1.4051979208316674,-1.4056377449020392,-1.406077568972411,-1.4065173930427828,-1.4069572171131548,-1.4073970411835266,-1.4078368652538984,-1.4082766893242702,-1.4087165133946422,-1.409156337465014,-1.4095961615353858,-1.4100359856057576,-1.4104758096761296,-1.4109156337465014,-1.4113554578168732,-1.411795281887245,-1.412235105957617,-1.4126749300279888,-1.4131147540983606,-1.4135545781687324,-1.4139944022391044,-1.4144342263094762,-1.414874050379848,-1.4153138744502198,-1.4157536985205919,-1.4161935225909636,-1.4166333466613354,-1.4170731707317072,-1.4175129948020793,-1.417952818872451,-1.4183926429428229,-1.4188324670131947,-1.4192722910835667,-1.4197121151539385,-1.4201519392243103,-1.420591763294682,-1.421031587365054,-1.4214714114354259,-1.4219112355057977,-1.4223510595761695,-1.4227908836465415,-1.4232307077169133,-1.423670531787285,-1.4241103558576569,-1.4245501799280287,-1.4249900039984007,-1.4254298280687725,-1.4258696521391443,-1.426309476209516,-1.426749300279888,-1.42718912435026,-1.4276289484206317,-1.4280687724910035,-1.4285085965613755,-1.4289484206317473,-1.4293882447021191,-1.429828068772491,-1.430267892842863,-1.4307077169132347,-1.4311475409836065,-1.4315873650539783,-1.4320271891243503,-1.4324670131947221,-1.432906837265094,-1.4333466613354657,-1.4337864854058378,-1.4342263094762095,-1.4346661335465813,-1.4351059576169531,-1.4355457816873252,-1.435985605757697,-1.4364254298280688,-1.4368652538984406,-1.4373050779688126,-1.4377449020391844,-1.4381847261095562,-1.438624550179928,-1.4390643742503,-1.4395041983206718,-1.4399440223910436,-1.4403838464614154,-1.4408236705317874,-1.4412634946021592,-1.441703318672531,-1.4421431427429028,-1.4425829668132746,-1.4430227908836466,-1.4434626149540184,-1.4439024390243902,-1.444342263094762,-1.444782087165134,-1.4452219112355058,-1.4456617353058776,-1.4461015593762494,-1.4465413834466214,-1.4469812075169932,-1.447421031587365,-1.4478608556577368,-1.4483006797281088,-1.4487405037984806,-1.4491803278688524,-1.4496201519392242,-1.4500599760095962,-1.450499800079968,-1.4509396241503398,-1.4513794482207116,-1.4518192722910837,-1.4522590963614554,-1.4526989204318272,-1.453138744502199,-1.453578568572571,-1.4540183926429429,-1.4544582167133147,-1.4548980407836865,-1.4553378648540585,-1.4557776889244303,-1.456217512994802,-1.4566573370651739,-1.4570971611355459,-1.4575369852059177,-1.4579768092762895,-1.4584166333466613,-1.4588564574170333,-1.459296281487405,-1.4597361055577769,-1.4601759296281487,-1.4606157536985207,-1.4610555777688925,-1.4614954018392643,-1.461935225909636,-1.462375049980008,-1.46281487405038,-1.4632546981207517,-1.4636945221911235,-1.4641343462614953,-1.4645741703318673,-1.4650139944022391,-1.465453818472611,-1.4658936425429827,-1.4663334666133547,-1.4667732906837265,-1.4672131147540983,-1.4676529388244701,-1.4680927628948421,-1.468532586965214,-1.4689724110355857,-1.4694122351059575,-1.4698520591763296,-1.4702918832467013,-1.4707317073170731,-1.471171531387445,-1.471611355457817,-1.4720511795281888,-1.4724910035985606,-1.4729308276689324,-1.4733706517393044,-1.4738104758096762,-1.474250299880048,-1.4746901239504198,-1.4751299480207918,-1.4755697720911636,-1.4760095961615354,-1.4764494202319072,-1.4768892443022792,-1.477329068372651,-1.4777688924430228,-1.4782087165133946,-1.4786485405837666,-1.4790883646541384,-1.4795281887245102,-1.479968012794882,-1.4804078368652538,-1.4808476609356258,-1.4812874850059976,-1.4817273090763694,-1.4821671331467412,-1.4826069572171132,-1.483046781287485,-1.4834866053578568,-1.4839264294282286,-1.4843662534986006,-1.4848060775689724,-1.4852459016393442,-1.485685725709716,-1.486125549780088,-1.4865653738504598,-1.4870051979208316,-1.4874450219912034,-1.4878848460615755,-1.4883246701319472,-1.488764494202319,-1.4892043182726908,-1.4896441423430629,-1.4900839664134347,-1.4905237904838065,-1.4909636145541783,-1.4914034386245503,-1.491843262694922,-1.4922830867652939,-1.4927229108356657,-1.4931627349060377,-1.4936025589764095,-1.4940423830467813,-1.494482207117153,-1.494922031187525,-1.4953618552578969,-1.4958016793282687,-1.4962415033986405,-1.4966813274690125,-1.4971211515393843,-1.497560975609756,-1.498000799680128,-1.4984406237504997,-1.4988804478208717,-1.4993202718912435,-1.4997600959616153,-1.500199920031987,-1.5006397441023591,-1.501079568172731,-1.5015193922431027,-1.5019592163134745,-1.5023990403838465,-1.5028388644542183,-1.5032786885245901,-1.503718512594962,-1.504158336665334,-1.5045981607357057,-1.5050379848060775,-1.5054778088764493,-1.5059176329468213,-1.5063574570171931,-1.506797281087565,-1.5072371051579367,-1.5076769292283088,-1.5081167532986806,-1.5085565773690524,-1.5089964014394242,-1.5094362255097962,-1.509876049580168,-1.5103158736505398,-1.5107556977209116,-1.5111955217912836,-1.5116353458616554,-1.5120751699320272,-1.512514994002399,-1.512954818072771,-1.5133946421431428,-1.5138344662135146,-1.5142742902838864,-1.5147141143542584,-1.5151539384246302,-1.515593762495002,-1.5160335865653738,-1.5164734106357458,-1.5169132347061176,-1.5173530587764894,-1.5177928828468612,-1.518232706917233,-1.518672530987605,-1.5191123550579768,-1.5195521791283486,-1.5199920031987204,-1.5204318272690924,-1.5208716513394642,-1.521311475409836,-1.5217512994802078,-1.5221911235505798,-1.5226309476209516,-1.5230707716913234,-1.5235105957616952,-1.5239504198320672,-1.524390243902439,-1.5248300679728108,-1.5252698920431826,-1.5257097161135547,-1.5261495401839265,-1.5265893642542983,-1.52702918832467,-1.527469012395042,-1.5279088364654139,-1.5283486605357857,-1.5287884846061575,-1.5292283086765295,-1.5296681327469013,-1.530107956817273,-1.5305477808876449,-1.530987604958017,-1.5314274290283887,-1.5318672530987605,-1.5323070771691323,-1.5327469012395043,-1.533186725309876,-1.533626549380248,-1.5340663734506197,-1.5345061975209917,-1.5349460215913635,-1.5353858456617353,-1.535825669732107,-1.536265493802479,-1.536705317872851,-1.5371451419432227,-1.5375849660135945,-1.5380247900839663,-1.5384646141543383,-1.5389044382247101,-1.539344262295082,-1.5397840863654537,-1.5402239104358257,-1.5406637345061975,-1.5411035585765693,-1.5415433826469411,-1.5419832067173131,-1.542423030787685,-1.5428628548580567,-1.5433026789284285,-1.5437425029988006,-1.5441823270691724,-1.5446221511395442,-1.545061975209916,-1.545501799280288,-1.5459416233506598,-1.5463814474210316,-1.5468212714914034,-1.5472610955617754,-1.5477009196321472,-1.548140743702519,-1.5485805677728908,-1.5490203918432628,-1.5494602159136346,-1.5499000399840064,-1.5503398640543782,-1.5507796881247502,-1.551219512195122,-1.5516593362654938,-1.5520991603358656,-1.5525389844062376,-1.5529788084766094,-1.5534186325469812,-1.553858456617353,-1.554298280687725,-1.5547381047580968,-1.5551779288284686,-1.5556177528988404,-1.5560575769692122,-1.5564974010395842,-1.556937225109956,-1.5573770491803278,-1.5578168732506996,-1.5582566973210716,-1.5586965213914434,-1.5591363454618152,-1.559576169532187,-1.560015993602559,-1.5604558176729308,-1.5608956417433026,-1.5613354658136744,-1.5617752898840465,-1.5622151139544183,-1.56265493802479,-1.5630947620951618,-1.5635345861655339,-1.5639744102359057,-1.5644142343062775,-1.5648540583766493,-1.5652938824470213,-1.565733706517393,-1.5661735305877649,-1.5666133546581367,-1.5670531787285087,-1.5674930027988805,-1.5679328268692523,-1.568372650939624,-1.568812475009996,-1.569252299080368,-1.5696921231507397,-1.5701319472211115,-1.5705717712914835,-1.5710115953618553,-1.571451419432227,-1.571891243502599,-1.572331067572971,-1.5727708916433427,-1.5732107157137145,-1.5736505397840863,-1.574090363854458,-1.5745301879248301,-1.574970011995202,-1.5754098360655737,-1.5758496601359455,-1.5762894842063175,-1.5767293082766893,-1.5771691323470611,-1.577608956417433,-1.578048780487805,-1.5784886045581767,-1.5789284286285485,-1.5793682526989203,-1.5798080767692924,-1.5802479008396642,-1.580687724910036,-1.5811275489804077,-1.5815673730507798,-1.5820071971211516,-1.5824470211915234,-1.5828868452618952,-1.5833266693322672,-1.583766493402639,-1.5842063174730108,-1.5846461415433826,-1.5850859656137546,-1.5855257896841264,-1.5859656137544982,-1.58640543782487,-1.586845261895242,-1.5872850859656138,-1.5877249100359856,-1.5881647341063574,-1.5886045581767294,-1.5890443822471012,-1.589484206317473,-1.5899240303878448,-1.5903638544582168,-1.5908036785285886,-1.5912435025989604,-1.5916833266693322,-1.5921231507397042,-1.592562974810076,-1.5930027988804478,-1.5934426229508196,-1.5938824470211914,-1.5943222710915634,-1.5947620951619352,-1.595201919232307,-1.5956417433026788,-1.5960815673730508,-1.5965213914434226,-1.5969612155137944,-1.5974010395841662,-1.5978408636545383,-1.59828068772491,-1.5987205117952819,-1.5991603358656536,-1.5996001599360257,-1.6000399840063975,-1.6004798080767693,-1.600919632147141,-1.601359456217513,-1.6017992802878849,-1.6022391043582567,-1.6026789284286285,-1.6031187524990005,-1.6035585765693723,-1.603998400639744,-1.6044382247101159,-1.604878048780488,-1.6053178728508597,-1.6057576969212315,-1.6061975209916033,-1.6066373450619753,-1.607077169132347,-1.607516993202719,-1.6079568172730907,-1.6083966413434627,-1.6088364654138345,-1.6092762894842063,-1.609716113554578,-1.6101559376249501,-1.610595761695322,-1.6110355857656937,-1.6114754098360655,-1.6119152339064373,-1.6123550579768093,-1.6127948820471811,-1.613234706117553,-1.6136745301879247,-1.6141143542582967,-1.6145541783286685,-1.6149940023990403,-1.6154338264694121,-1.6158736505397842,-1.616313474610156,-1.6167532986805278,-1.6171931227508995,-1.6176329468212716,-1.6180727708916434,-1.6185125949620152,-1.618952419032387,-1.619392243102759,-1.6198320671731308,-1.6202718912435026,-1.6207117153138744,-1.6211515393842464,-1.6215913634546182,-1.62203118752499,-1.6224710115953618,-1.6229108356657338,-1.6233506597361056,-1.6237904838064774,-1.6242303078768492,-1.6246701319472212,-1.625109956017593,-1.6255497800879648,-1.6259896041583366,-1.6264294282287086,-1.6268692522990804,-1.6273090763694522,-1.627748900439824,-1.628188724510196,-1.6286285485805678,-1.6290683726509396,-1.6295081967213114,-1.6299480207916832,-1.6303878448620552,-1.630827668932427,-1.6312674930027988,-1.6317073170731706,-1.6321471411435426,-1.6325869652139144,-1.6330267892842862,-1.633466613354658,-1.63390643742503,-1.6343462614954019,-1.6347860855657737,-1.6352259096361454,-1.6356657337065175,-1.6361055577768893,-1.636545381847261,-1.6369852059176329,-1.6374250299880049,-1.6378648540583767,-1.6383046781287485,-1.6387445021991203,-1.6391843262694923,-1.639624150339864,-1.6400639744102359,-1.6405037984806077,-1.6409436225509797,-1.6413834466213515,-1.6418232706917233,-1.642263094762095,-1.642702918832467,-1.643142742902839,-1.6435825669732107,-1.6440223910435825,-1.6444622151139545,-1.6449020391843263,-1.6453418632546981,-1.64578168732507,-1.646221511395442,-1.6466613354658137,-1.6471011595361855,-1.6475409836065573,-1.6479808076769293,-1.6484206317473011,-1.648860455817673,-1.6493002798880447,-1.6497401039584165,-1.6501799280287885,-1.6506197520991603,-1.6510595761695321,-1.651499400239904,-1.651939224310276,-1.6523790483806478,-1.6528188724510195,-1.6532586965213913,-1.6536985205917634,-1.6541383446621352,-1.654578168732507,-1.6550179928028788,-1.6554578168732508,-1.6558976409436226,-1.6563374650139944,-1.6567772890843662,-1.6572171131547382,-1.65765693722511,-1.6580967612954818,-1.6585365853658536,-1.6589764094362256,-1.6594162335065974,-1.6598560575769692,-1.660295881647341,-1.660735705717713,-1.6611755297880848,-1.6616153538584566,-1.6620551779288284,-1.6624950019992004,-1.6629348260695722,-1.663374650139944,-1.6638144742103158,-1.6642542982806878,-1.6646941223510596,-1.6651339464214314,-1.6655737704918032,-1.6660135945621752,-1.666453418632547,-1.6668932427029188,-1.6673330667732906,-1.6677728908436624,-1.6682127149140344,-1.6686525389844062,-1.669092363054778,-1.6695321871251498,-1.6699720111955219,-1.6704118352658937,-1.6708516593362654,-1.6712914834066372,-1.6717313074770093,-1.672171131547381,-1.6726109556177529,-1.6730507796881247,-1.6734906037584967,-1.6739304278288685,-1.6743702518992403,-1.674810075969612,-1.675249900039984,-1.6756897241103559,-1.6761295481807277,-1.6765693722510995,-1.6770091963214715,-1.6774490203918433,-1.677888844462215,-1.6783286685325869,-1.678768492602959,-1.6792083166733307,-1.6796481407437025,-1.6800879648140743,-1.6805277888844463,-1.6809676129548181,-1.68140743702519,-1.6818472610955617,-1.6822870851659337,-1.6827269092363055,-1.6831667333066773,-1.6836065573770491,-1.6840463814474211,-1.684486205517793,-1.6849260295881647,-1.6853658536585365,-1.6858056777289085,-1.6862455017992803,-1.6866853258696521,-1.687125149940024,-1.6875649740103957,-1.6880047980807678,-1.6884446221511396,-1.6888844462215113,-1.6893242702918831,-1.6897640943622552,-1.690203918432627,-1.6906437425029988,-1.6910835665733706,-1.6915233906437426,-1.6919632147141144,-1.6924030387844862,-1.692842862854858,-1.69328268692523,-1.6937225109956018,-1.6941623350659736,-1.6946021591363454,-1.6950419832067174,-1.6954818072770892,-1.695921631347461,-1.6963614554178328,-1.6968012794882048,-1.6972411035585766,-1.6976809276289484,-1.6981207516993202,-1.6985605757696922,-1.699000399840064,-1.6994402239104358,-1.6998800479808076,-1.7003198720511796,-1.7007596961215514,-1.7011995201919232,-1.701639344262295,-1.702079168332667,-1.7025189924030388,-1.7029588164734106,-1.7033986405437824,-1.7038384646141544,-1.7042782886845262,-1.704718112754898,-1.7051579368252698,-1.7055977608956416,-1.7060375849660137,-1.7064774090363855,-1.7069172331067572,-1.707357057177129,-1.707796881247501,-1.7082367053178729,-1.7086765293882447,-1.7091163534586165,-1.7095561775289885,-1.7099960015993603,-1.710435825669732,-1.7108756497401039,-1.7113154738104759,-1.7117552978808477,-1.7121951219512195,-1.7126349460215913,-1.7130747700919633,-1.713514594162335,-1.7139544182327069,-1.7143942423030787,-1.7148340663734507,-1.7152738904438225,-1.7157137145141943,-1.716153538584566,-1.7165933626549381,-1.71703318672531,-1.7174730107956817,-1.7179128348660535,-1.7183526589364255,-1.7187924830067973,-1.7192323070771691,-1.719672131147541,-1.720111955217913,-1.7205517792882847,-1.7209916033586565,-1.7214314274290283,-1.7218712514994003,-1.7223110755697721,-1.722750899640144,-1.7231907237105157,-1.7236305477808875,-1.7240703718512596,-1.7245101959216314,-1.7249500199920031,-1.725389844062375,-1.725829668132747,-1.7262694922031188,-1.7267093162734906,-1.7271491403438624,-1.7275889644142344,-1.7280287884846062,-1.728468612554978,-1.7289084366253498,-1.7293482606957218,-1.7297880847660936,-1.7302279088364654,-1.7306677329068372,-1.7311075569772092,-1.731547381047581,-1.7319872051179528,-1.7324270291883246,-1.7328668532586966,-1.7333066773290684,-1.7337465013994402,-1.734186325469812,-1.734626149540184,-1.7350659736105558,-1.7355057976809276,-1.7359456217512994,-1.7363854458216714,-1.7368252698920432,-1.737265093962415,-1.7377049180327868,-1.7381447421031588,-1.7385845661735306,-1.7390243902439024,-1.7394642143142742,-1.7399040383846462,-1.740343862455018,-1.7407836865253898,-1.7412235105957616,-1.7416633346661337,-1.7421031587365055,-1.7425429828068772,-1.742982806877249,-1.7434226309476208,-1.7438624550179929,-1.7443022790883647,-1.7447421031587365,-1.7451819272291083,-1.7456217512994803,-1.746061575369852,-1.7465013994402239,-1.7469412235105957,-1.7473810475809677,-1.7478208716513395,-1.7482606957217113,-1.748700519792083,-1.749140343862455,-1.749580167932827,-1.7500199920031987,-1.7504598160735705,-1.7508996401439425,-1.7513394642143143,-1.751779288284686,-1.752219112355058,-1.75265893642543,-1.7530987604958017,-1.7535385845661735,-1.7539784086365453,-1.7544182327069173,-1.7548580567772891,-1.755297880847661,-1.7557377049180327,-1.7561775289884047,-1.7566173530587765,-1.7570571771291483,-1.7574970011995201,-1.7579368252698921,-1.758376649340264,-1.7588164734106357,-1.7592562974810075,-1.7596961215513796,-1.7601359456217514,-1.7605757696921231,-1.761015593762495,-1.7614554178328667,-1.7618952419032388,-1.7623350659736106,-1.7627748900439824,-1.7632147141143542,-1.7636545381847262,-1.764094362255098,-1.7645341863254698,-1.7649740103958416,-1.7654138344662136,-1.7658536585365854,-1.7662934826069572,-1.766733306677329,-1.767173130747701,-1.7676129548180728,-1.7680527788884446,-1.7684926029588164,-1.7689324270291884,-1.7693722510995602,-1.769812075169932,-1.7702518992403038,-1.7706917233106758,-1.7711315473810476,-1.7715713714514194,-1.7720111955217912,-1.7724510195921632,-1.772890843662535,-1.7733306677329068,-1.7737704918032786,-1.7742103158736506,-1.7746501399440224,-1.7750899640143942,-1.775529788084766,-1.775969612155138,-1.7764094362255098,-1.7768492602958816,-1.7772890843662534,-1.7777289084366255,-1.7781687325069973,-1.778608556577369,-1.7790483806477408,-1.7794882047181129,-1.7799280287884847,-1.7803678528588565,-1.7808076769292283,-1.7812475009996,-1.781687325069972,-1.7821271491403439,-1.7825669732107157,-1.7830067972810875,-1.7834466213514595,-1.7838864454218313,-1.784326269492203,-1.7847660935625749,-1.785205917632947,-1.7856457417033187,-1.7860855657736905,-1.7865253898440623,-1.7869652139144343,-1.787405037984806,-1.787844862055178,-1.7882846861255497,-1.7887245101959217,-1.7891643342662935,-1.7896041583366653,-1.790043982407037,-1.7904838064774091,-1.790923630547781,-1.7913634546181527,-1.7918032786885245,-1.7922431027588965,-1.7926829268292683,-1.7931227508996401,-1.793562574970012,-1.794002399040384,-1.7944422231107557,-1.7948820471811275,-1.7953218712514993,-1.7957616953218714,-1.7962015193922432,-1.796641343462615,-1.7970811675329867,-1.7975209916033588,-1.7979608156737306,-1.7984006397441024,-1.7988404638144742,-1.799280287884846,-1.799720111955218,-1.8001599360255898,-1.8005997600959616,-1.8010395841663334,-1.8014794082367054,-1.8019192323070772,-1.802359056377449,-1.8027988804478208,-1.8032387045181928,-1.8036785285885646,-1.8041183526589364,-1.8045581767293082,-1.8049980007996802,-1.805437824870052,-1.8058776489404238,-1.8063174730107956,-1.8067572970811676,-1.8071971211515394,-1.8076369452219112,-1.808076769292283,-1.808516593362655,-1.8089564174330268,-1.8093962415033986,-1.8098360655737704,-1.8102758896441424,-1.8107157137145142,-1.811155537784886,-1.8115953618552578,-1.8120351859256298,-1.8124750099960016,-1.8129148340663734,-1.8133546581367452,-1.8137944822071173,-1.814234306277489,-1.8146741303478608,-1.8151139544182326,-1.8155537784886047,-1.8159936025589765,-1.8164334266293483,-1.81687325069972,-1.817313074770092,-1.8177528988404639,-1.8181927229108357,-1.8186325469812075,-1.8190723710515793,-1.8195121951219513,-1.819952019192323,-1.8203918432626949,-1.8208316673330667,-1.8212714914034387,-1.8217113154738105,-1.8221511395441823,-1.822590963614554,-1.823030787684926,-1.823470611755298,-1.8239104358256697,-1.8243502598960415,-1.8247900839664135,-1.8252299080367853,-1.825669732107157,-1.826109556177529,-1.826549380247901,-1.8269892043182727,-1.8274290283886445,-1.8278688524590163,-1.8283086765293883,-1.8287485005997601,-1.829188324670132,-1.8296281487405037,-1.8300679728108757,-1.8305077968812475,-1.8309476209516193,-1.8313874450219911,-1.8318272690923632,-1.832267093162735,-1.8327069172331067,-1.8331467413034785,-1.8335865653738506,-1.8340263894442224,-1.8344662135145942,-1.834906037584966,-1.835345861655338,-1.8357856857257098,-1.8362255097960816,-1.8366653338664534,-1.8371051579368252,-1.8375449820071972,-1.837984806077569,-1.8384246301479408,-1.8388644542183126,-1.8393042782886846,-1.8397441023590564,-1.8401839264294282,-1.8406237504998,-1.841063574570172,-1.8415033986405438,-1.8419432227109156,-1.8423830467812874,-1.8428228708516594,-1.8432626949220312,-1.843702518992403,-1.8441423430627748,-1.8445821671331468,-1.8450219912035186,-1.8454618152738904,-1.8459016393442622,-1.8463414634146342,-1.846781287485006,-1.8472211115553778,-1.8476609356257496,-1.8481007596961216,-1.8485405837664934,-1.8489804078368652,-1.849420231907237,-1.849860055977609,-1.8502998800479808,-1.8507397041183526,-1.8511795281887244,-1.8516193522590965,-1.8520591763294683,-1.85249900039984,-1.8529388244702119,-1.8533786485405839,-1.8538184726109557,-1.8542582966813275,-1.8546981207516993,-1.855137944822071,-1.855577768892443,-1.8560175929628149,-1.8564574170331867,-1.8568972411035585,-1.8573370651739305,-1.8577768892443023,-1.858216713314674,-1.8586565373850459,-1.859096361455418,-1.8595361855257897,-1.8599760095961615,-1.8604158336665333,-1.8608556577369053,-1.861295481807277,-1.861735305877649,-1.8621751299480207,-1.8626149540183927,-1.8630547780887645,-1.8634946021591363,-1.8639344262295081,-1.8643742502998801,-1.864814074370252,-1.8652538984406237,-1.8656937225109955,-1.8661335465813675,-1.8665733706517393,-1.8670131947221111,-1.867453018792483,-1.867892842862855,-1.8683326669332267,-1.8687724910035985,-1.8692123150739703,-1.8696521391443424,-1.8700919632147142,-1.870531787285086,-1.8709716113554578,-1.8714114354258298,-1.8718512594962016,-1.8722910835665734,-1.8727309076369452,-1.8731707317073172,-1.873610555777689,-1.8740503798480608,-1.8744902039184326,-1.8749300279888044,-1.8753698520591764,-1.8758096761295482,-1.87624950019992,-1.8766893242702918,-1.8771291483406638,-1.8775689724110356,-1.8780087964814074,-1.8784486205517792,-1.8788884446221512,-1.879328268692523,-1.8797680927628948,-1.8802079168332666,-1.8806477409036386,-1.8810875649740104,-1.8815273890443822,-1.881967213114754,-1.882407037185126,-1.8828468612554978,-1.8832866853258696,-1.8837265093962414,-1.8841663334666134,-1.8846061575369852,-1.885045981607357,-1.8854858056777288,-1.8859256297481009,-1.8863654538184726,-1.8868052778888444,-1.8872451019592162,-1.8876849260295883,-1.88812475009996,-1.8885645741703319,-1.8890043982407037,-1.8894442223110757,-1.8898840463814475,-1.8903238704518193,-1.890763694522191,-1.891203518592563,-1.8916433426629349,-1.8920831667333067,-1.8925229908036785,-1.8929628148740503,-1.8934026389444223,-1.893842463014794,-1.8942822870851659,-1.8947221111555377,-1.8951619352259097,-1.8956017592962815,-1.8960415833666533,-1.896481407437025,-1.896921231507397,-1.897361055577769,-1.8978008796481407,-1.8982407037185125,-1.8986805277888845,-1.8991203518592563,-1.8995601759296281,-1.9,-1.900439824070372,-1.9008796481407437,-1.9013194722111155,-1.9017592962814873,-1.9021991203518593,-1.9026389444222311,-1.903078768492603,-1.9035185925629747,-1.9039584166333468,-1.9043982407037185,-1.9048380647740903,-1.9052778888444621,-1.9057177129148342,-1.906157536985206,-1.9065973610555778,-1.9070371851259496,-1.9074770091963216,-1.9079168332666934,-1.9083566573370652,-1.908796481407437,-1.909236305477809,-1.9096761295481808,-1.9101159536185526,-1.9105557776889244,-1.9109956017592964,-1.9114354258296682,-1.91187524990004,-1.9123150739704118,-1.9127548980407836,-1.9131947221111556,-1.9136345461815274,-1.9140743702518992,-1.914514194322271,-1.914954018392643,-1.9153938424630148,-1.9158336665333866,-1.9162734906037584,-1.9167133146741304,-1.9171531387445022,-1.917592962814874,-1.9180327868852458,-1.9184726109556178,-1.9189124350259896,-1.9193522590963614,-1.9197920831667332,-1.9202319072371052,-1.920671731307477,-1.9211115553778488,-1.9215513794482206,-1.9219912035185927,-1.9224310275889644,-1.9228708516593362,-1.923310675729708,-1.92375049980008,-1.9241903238704519,-1.9246301479408237,-1.9250699720111955,-1.9255097960815675,-1.9259496201519393,-1.926389444222311,-1.9268292682926829,-1.9272690923630549,-1.9277089164334267,-1.9281487405037985,-1.9285885645741703,-1.9290283886445423,-1.929468212714914,-1.9299080367852859,-1.9303478608556577,-1.9307876849260295,-1.9312275089964015,-1.9316673330667733,-1.932107157137145,-1.932546981207517,-1.932986805277889,-1.9334266293482607,-1.9338664534186325,-1.9343062774890043,-1.9347461015593763,-1.9351859256297481,-1.93562574970012,-1.9360655737704917,-1.9365053978408637,-1.9369452219112355,-1.9373850459816073,-1.9378248700519791,-1.9382646941223511,-1.938704518192723,-1.9391443422630947,-1.9395841663334665,-1.9400239904038385,-1.9404638144742103,-1.9409036385445821,-1.941343462614954,-1.941783286685326,-1.9422231107556978,-1.9426629348260696,-1.9431027588964414,-1.9435425829668134,-1.9439824070371852,-1.944422231107557,-1.9448620551779288,-1.9453018792483008,-1.9457417033186726,-1.9461815273890444,-1.9466213514594162,-1.9470611755297882,-1.94750099960016,-1.9479408236705318,-1.9483806477409036,-1.9488204718112754,-1.9492602958816474,-1.9497001199520192,-1.950139944022391,-1.9505797680927628,-1.9510195921631348,-1.9514594162335066,-1.9518992403038784,-1.9523390643742502,-1.9527788884446222,-1.953218712514994,-1.9536585365853658,-1.9540983606557376,-1.9545381847261096,-1.9549780087964814,-1.9554178328668532,-1.955857656937225,-1.956297481007597,-1.9567373050779688,-1.9571771291483406,-1.9576169532187124,-1.9580567772890844,-1.9584966013594562,-1.958936425429828,-1.9593762495001998,-1.9598160735705719,-1.9602558976409437,-1.9606957217113155,-1.9611355457816873,-1.9615753698520593,-1.962015193922431,-1.9624550179928029,-1.9628948420631747,-1.9633346661335467,-1.9637744902039185,-1.9642143142742903,-1.964654138344662,-1.965093962415034,-1.9655337864854059,-1.9659736105557777,-1.9664134346261495,-1.9668532586965215,-1.9672930827668933,-1.967732906837265,-1.968172730907637,-1.9686125549780087,-1.9690523790483807,-1.9694922031187525,-1.9699320271891243,-1.970371851259496,-1.9708116753298681,-1.97125149940024,-1.9716913234706117,-1.9721311475409835,-1.9725709716113555,-1.9730107956817273,-1.9734506197520991,-1.973890443822471,-1.974330267892843,-1.9747700919632147,-1.9752099160335865,-1.9756497401039583,-1.9760895641743303,-1.9765293882447021,-1.976969212315074,-1.9774090363854457,-1.9778488604558178,-1.9782886845261896,-1.9787285085965614,-1.9791683326669331,-1.9796081567373052,-1.980047980807677,-1.9804878048780488,-1.9809276289484206,-1.9813674530187926,-1.9818072770891644,-1.9822471011595362,-1.982686925229908,-1.98312674930028,-1.9835665733706518,-1.9840063974410236,-1.9844462215113954,-1.9848860455817674,-1.9853258696521392,-1.985765693722511,-1.9862055177928828,-1.9866453418632546,-1.9870851659336266,-1.9875249900039984,-1.9879648140743702,-1.988404638144742,-1.988844462215114,-1.9892842862854858,-1.9897241103558576,-1.9901639344262294,-1.9906037584966014,-1.9910435825669732,-1.991483406637345,-1.9919232307077168,-1.9923630547780888,-1.9928028788484606,-1.9932427029188324,-1.9936825269892042,-1.9941223510595762,-1.994562175129948,-1.9950019992003198,-1.9954418232706916,-1.9958816473410637,-1.9963214714114355,-1.9967612954818073,-1.997201119552179,-1.997640943622551,-1.9980807676929229,-1.9985205917632947,-1.9989604158336665,-1.9994002399040385,-1.9998400639744103,-2.000279888044782,-2.000719712115154,-2.0011595361855257,-2.0015993602558977,-2.0020391843262697,-2.0024790083966413,-2.0029188324670133,-2.003358656537385,-2.003798480607757,-2.004238304678129,-2.0046781287485005,-2.0051179528188725,-2.005557776889244,-2.005997600959616,-2.006437425029988,-2.0068772491003597,-2.0073170731707317,-2.0077568972411037,-2.0081967213114753,-2.0086365453818473,-2.009076369452219,-2.009516193522591,-2.009956017592963,-2.0103958416633345,-2.0108356657337065,-2.0112754898040786,-2.01171531387445,-2.012155137944822,-2.0125949620151937,-2.0130347860855657,-2.0134746101559378,-2.0139144342263093,-2.0143542582966814,-2.0147940823670534,-2.015233906437425,-2.015673730507797,-2.0161135545781685,-2.0165533786485406,-2.0169932027189126,-2.017433026789284,-2.017872850859656,-2.018312674930028,-2.0187524990003998,-2.019192323070772,-2.0196321471411434,-2.0200719712115154,-2.0205117952818874,-2.020951619352259,-2.021391443422631,-2.021831267493003,-2.0222710915633746,-2.0227109156337466,-2.023150739704118,-2.02359056377449,-2.0240303878448622,-2.024470211915234,-2.024910035985606,-2.0253498600559774,-2.0257896841263494,-2.0262295081967214,-2.026669332267093,-2.027109156337465,-2.027548980407837,-2.0279888044782086,-2.0284286285485806,-2.028868452618952,-2.0293082766893242,-2.0297481007596962,-2.030187924830068,-2.03062774890044,-2.031067572970812,-2.0315073970411834,-2.0319472211115555,-2.032387045181927,-2.032826869252299,-2.033266693322671,-2.0337065173930426,-2.0341463414634147,-2.0345861655337867,-2.0350259896041583,-2.0354658136745303,-2.035905637744902,-2.036345461815274,-2.036785285885646,-2.0372251099560175,-2.0376649340263895,-2.0381047580967615,-2.038544582167133,-2.038984406237505,-2.0394242303078767,-2.0398640543782487,-2.0403038784486207,-2.0407437025189923,-2.0411835265893643,-2.0416233506597363,-2.042063174730108,-2.04250299880048,-2.0429428228708515,-2.0433826469412235,-2.0438224710115955,-2.044262295081967,-2.044702119152339,-2.0451419432227107,-2.0455817672930827,-2.0460215913634547,-2.0464614154338263,-2.0469012395041983,-2.0473410635745704,-2.047780887644942,-2.048220711715314,-2.0486605357856855,-2.0491003598560575,-2.0495401839264296,-2.049980007996801,-2.050419832067173,-2.050859656137545,-2.0512994802079167,-2.0517393042782888,-2.0521791283486603,-2.0526189524190324,-2.0530587764894044,-2.053498600559776,-2.053938424630148,-2.05437824870052,-2.0548180727708916,-2.0552578968412636,-2.055697720911635,-2.056137544982007,-2.056577369052379,-2.0570171931227508,-2.057457017193123,-2.057896841263495,-2.0583366653338664,-2.0587764894042384,-2.05921631347461,-2.059656137544982,-2.060095961615354,-2.0605357856857256,-2.0609756097560976,-2.0614154338264696,-2.061855257896841,-2.0622950819672132,-2.062734906037585,-2.063174730107957,-2.063614554178329,-2.0640543782487004,-2.0644942023190724,-2.064934026389444,-2.065373850459816,-2.065813674530188,-2.0662534986005596,-2.0666933226709316,-2.0671331467413037,-2.0675729708116752,-2.0680127948820473,-2.068452618952419,-2.068892443022791,-2.069332267093163,-2.0697720911635344,-2.0702119152339065,-2.0706517393042785,-2.07109156337465,-2.071531387445022,-2.0719712115153937,-2.0724110355857657,-2.0728508596561377,-2.0732906837265093,-2.0737305077968813,-2.0741703318672533,-2.074610155937625,-2.075049980007997,-2.0754898040783685,-2.0759296281487405,-2.0763694522191125,-2.076809276289484,-2.077249100359856,-2.077688924430228,-2.0781287485005997,-2.0785685725709717,-2.0790083966413433,-2.0794482207117153,-2.0798880447820873,-2.080327868852459,-2.080767692922831,-2.0812075169932025,-2.0816473410635745,-2.0820871651339465,-2.082526989204318,-2.08296681327469,-2.083406637345062,-2.0838464614154337,-2.0842862854858057,-2.0847261095561773,-2.0851659336265493,-2.0856057576969214,-2.086045581767293,-2.086485405837665,-2.086925229908037,-2.0873650539784085,-2.0878048780487806,-2.088244702119152,-2.088684526189524,-2.089124350259896,-2.0895641743302678,-2.0900039984006398,-2.090443822471012,-2.0908836465413834,-2.0913234706117554,-2.091763294682127,-2.092203118752499,-2.092642942822871,-2.0930827668932426,-2.0935225909636146,-2.0939624150339866,-2.094402239104358,-2.09484206317473,-2.095281887245102,-2.095721711315474,-2.096161535385846,-2.0966013594562174,-2.0970411835265894,-2.0974810075969614,-2.097920831667333,-2.098360655737705,-2.0988004798080766,-2.0992403038784486,-2.0996801279488206,-2.100119952019192,-2.1005597760895642,-2.100999600159936,-2.101439424230308,-2.10187924830068,-2.1023190723710514,-2.1027588964414234,-2.1031987205117955,-2.103638544582167,-2.104078368652539,-2.1045181927229106,-2.1049580167932826,-2.1053978408636547,-2.1058376649340262,-2.1062774890043983,-2.1067173130747703,-2.107157137145142,-2.107596961215514,-2.1080367852858855,-2.1084766093562575,-2.1089164334266295,-2.109356257497001,-2.109796081567373,-2.110235905637745,-2.1106757297081167,-2.1111155537784887,-2.1115553778488603,-2.1119952019192323,-2.1124350259896043,-2.112874850059976,-2.113314674130348,-2.11375449820072,-2.1141943222710915,-2.1146341463414635,-2.115073970411835,-2.115513794482207,-2.115953618552579,-2.1163934426229507,-2.1168332666933227,-2.1172730907636947,-2.1177129148340663,-2.1181527389044383,-2.11859256297481,-2.119032387045182,-2.119472211115554,-2.1199120351859255,-2.1203518592562975,-2.120791683326669,-2.121231507397041,-2.121671331467413,-2.1221111555377847,-2.1225509796081568,-2.1229908036785288,-2.1234306277489003,-2.1238704518192724,-2.124310275889644,-2.124750099960016,-2.125189924030388,-2.1256297481007596,-2.1260695721711316,-2.1265093962415036,-2.126949220311875,-2.127389044382247,-2.1278288684526188,-2.128268692522991,-2.128708516593363,-2.1291483406637344,-2.1295881647341064,-2.1300279888044784,-2.13046781287485,-2.130907636945222,-2.1313474610155936,-2.1317872850859656,-2.1322271091563376,-2.132666933226709,-2.133106757297081,-2.1335465813674532,-2.133986405437825,-2.134426229508197,-2.1348660535785684,-2.1353058776489404,-2.1357457017193124,-2.136185525789684,-2.136625349860056,-2.1370651739304276,-2.1375049980007996,-2.1379448220711716,-2.138384646141543,-2.1388244702119152,-2.1392642942822873,-2.139704118352659,-2.140143942423031,-2.1405837664934024,-2.1410235905637744,-2.1414634146341465,-2.141903238704518,-2.14234306277489,-2.142782886845262,-2.1432227109156337,-2.1436625349860057,-2.1441023590563772,-2.1445421831267493,-2.1449820071971213,-2.145421831267493,-2.145861655337865,-2.146301479408237,-2.1467413034786085,-2.1471811275489805,-2.147620951619352,-2.148060775689724,-2.148500599760096,-2.1489404238304677,-2.1493802479008397,-2.1498200719712117,-2.1502598960415833,-2.1506997201119553,-2.151139544182327,-2.151579368252699,-2.152019192323071,-2.1524590163934425,-2.1528988404638145,-2.1533386645341865,-2.153778488604558,-2.15421831267493,-2.1546581367453017,-2.1550979608156737,-2.1555377848860457,-2.1559776089564173,-2.1564174330267893,-2.156857257097161,-2.157297081167533,-2.157736905237905,-2.1581767293082765,-2.1586165533786486,-2.1590563774490206,-2.159496201519392,-2.159936025589764,-2.1603758496601357,-2.1608156737305078,-2.1612554978008798,-2.1616953218712514,-2.1621351459416234,-2.1625749700119954,-2.163014794082367,-2.163454618152739,-2.1638944422231106,-2.1643342662934826,-2.1647740903638546,-2.165213914434226,-2.165653738504598,-2.16609356257497,-2.166533386645342,-2.166973210715714,-2.1674130347860854,-2.1678528588564574,-2.1682926829268294,-2.168732506997201,-2.169172331067573,-2.169612155137945,-2.1700519792083166,-2.1704918032786886,-2.17093162734906,-2.171371451419432,-2.1718112754898042,-2.172251099560176,-2.172690923630548,-2.17313074770092,-2.1735705717712914,-2.1740103958416634,-2.174450219912035,-2.174890043982407,-2.175329868052779,-2.1757696921231506,-2.1762095161935227,-2.1766493402638942,-2.1770891643342662,-2.1775289884046383,-2.17796881247501,-2.178408636545382,-2.178848460615754,-2.1792882846861255,-2.1797281087564975,-2.180167932826869,-2.180607756897241,-2.181047580967613,-2.1814874050379847,-2.1819272291083567,-2.1823670531787287,-2.1828068772491003,-2.1832467013194723,-2.183686525389844,-2.184126349460216,-2.184566173530588,-2.1850059976009595,-2.1854458216713315,-2.1858856457417035,-2.186325469812075,-2.186765293882447,-2.1872051179528187,-2.1876449420231907,-2.1880847660935627,-2.1885245901639343,-2.1889644142343063,-2.1894042383046783,-2.18984406237505,-2.190283886445422,-2.1907237105157935,-2.1911635345861655,-2.1916033586565375,-2.192043182726909,-2.192483006797281,-2.1929228308676527,-2.1933626549380247,-2.1938024790083968,-2.1942423030787683,-2.1946821271491403,-2.1951219512195124,-2.195561775289884,-2.196001599360256,-2.1964414234306275,-2.1968812475009996,-2.1973210715713716,-2.197760895641743,-2.198200719712115,-2.198640543782487,-2.1990803678528588,-2.199520191923231,-2.1999600159936024,-2.2003998400639744,-2.2008396641343464,-2.201279488204718,-2.20171931227509,-2.202159136345462,-2.2025989604158336,-2.2030387844862056,-2.203478608556577,-2.203918432626949,-2.204358256697321,-2.204798080767693,-2.205237904838065,-2.205677728908437,-2.2061175529788084,-2.2065573770491804,-2.206997201119552,-2.207437025189924,-2.207876849260296,-2.2083166733306676,-2.2087564974010396,-2.2091963214714117,-2.2096361455417832,-2.2100759696121552,-2.210515793682527,-2.210955617752899,-2.211395441823271,-2.2118352658936424,-2.2122750899640145,-2.212714914034386,-2.213154738104758,-2.21359456217513,-2.2140343862455016,-2.2144742103158737,-2.2149140343862457,-2.2153538584566173,-2.2157936825269893,-2.216233506597361,-2.216673330667733,-2.217113154738105,-2.2175529788084765,-2.2179928028788485,-2.2184326269492205,-2.218872451019592,-2.219312275089964,-2.2197520991603357,-2.2201919232307077,-2.2206317473010797,-2.2210715713714513,-2.2215113954418233,-2.2219512195121953,-2.222391043582567,-2.222830867652939,-2.2232706917233105,-2.2237105157936825,-2.2241503398640545,-2.224590163934426,-2.225029988004798,-2.22546981207517,-2.2259096361455417,-2.2263494602159137,-2.2267892842862853,-2.2272291083566573,-2.2276689324270293,-2.228108756497401,-2.228548580567773,-2.228988404638145,-2.2294282287085165,-2.2298680527788886,-2.23030787684926,-2.230747700919632,-2.231187524990004,-2.2316273490603757,-2.2320671731307478,-2.2325069972011193,-2.2329468212714914,-2.2333866453418634,-2.233826469412235,-2.234266293482607,-2.234706117552979,-2.2351459416233506,-2.2355857656937226,-2.236025589764094,-2.236465413834466,-2.236905237904838,-2.2373450619752098,-2.237784886045582,-2.238224710115954,-2.2386645341863254,-2.2391043582566974,-2.239544182327069,-2.239984006397441,-2.240423830467813,-2.2408636545381846,-2.2413034786085566,-2.2417433026789286,-2.2421831267493,-2.2426229508196722,-2.243062774890044,-2.243502598960416,-2.243942423030788,-2.2443822471011594,-2.2448220711715314,-2.2452618952419034,-2.245701719312275,-2.246141543382647,-2.2465813674530186,-2.2470211915233906,-2.2474610155937627,-2.2479008396641342,-2.2483406637345063,-2.2487804878048783,-2.24922031187525,-2.249660135945622,-2.2500999600159934,-2.2505397840863655,-2.2509796081567375,-2.251419432227109,-2.251859256297481,-2.2522990803678526,-2.2527389044382247,-2.2531787285085967,-2.2536185525789683,-2.2540583766493403,-2.2544982007197123,-2.254938024790084,-2.255377848860456,-2.2558176729308275,-2.2562574970011995,-2.2566973210715715,-2.257137145141943,-2.257576969212315,-2.258016793282687,-2.2584566173530587,-2.2588964414234307,-2.2593362654938023,-2.2597760895641743,-2.2602159136345463,-2.260655737704918,-2.26109556177529,-2.261535385845662,-2.2619752099160335,-2.2624150339864055,-2.262854858056777,-2.263294682127149,-2.263734506197521,-2.2641743302678927,-2.2646141543382647,-2.2650539784086368,-2.2654938024790083,-2.2659336265493804,-2.266373450619752,-2.266813274690124,-2.267253098760496,-2.2676929228308675,-2.2681327469012396,-2.268572570971611,-2.269012395041983,-2.269452219112355,-2.2698920431827267,-2.2703318672530988,-2.270771691323471,-2.2712115153938424,-2.2716513394642144,-2.272091163534586,-2.272530987604958,-2.27297081167533,-2.2734106357457016,-2.2738504598160736,-2.2742902838864456,-2.274730107956817,-2.275169932027189,-2.2756097560975608,-2.276049580167933,-2.276489404238305,-2.2769292283086764,-2.2773690523790484,-2.2778088764494204,-2.278248700519792,-2.278688524590164,-2.2791283486605356,-2.2795681727309076,-2.2800079968012796,-2.280447820871651,-2.2808876449420232,-2.2813274690123952,-2.281767293082767,-2.282207117153139,-2.2826469412235104,-2.2830867652938824,-2.2835265893642545,-2.283966413434626,-2.284406237504998,-2.28484606157537,-2.2852858856457416,-2.2857257097161137,-2.2861655337864852,-2.2866053578568573,-2.2870451819272293,-2.287485005997601,-2.287924830067973,-2.2883646541383444,-2.2888044782087165,-2.2892443022790885,-2.28968412634946,-2.290123950419832,-2.290563774490204,-2.2910035985605757,-2.2914434226309477,-2.2918832467013193,-2.2923230707716913,-2.2927628948420633,-2.293202718912435,-2.293642542982807,-2.294082367053179,-2.2945221911235505,-2.2949620151939225,-2.295401839264294,-2.295841663334666,-2.296281487405038,-2.2967213114754097,-2.2971611355457817,-2.2976009596161537,-2.2980407836865253,-2.2984806077568973,-2.298920431827269,-2.299360255897641,-2.299800079968013,-2.3002399040383845,-2.3006797281087565,-2.3011195521791286,-2.3015593762495,-2.301999200319872,-2.3024390243902437,-2.3028788484606157,-2.3033186725309878,-2.3037584966013593,-2.3041983206717314,-2.3046381447421034,-2.305077968812475,-2.305517792882847,-2.3059576169532185,-2.3063974410235906,-2.3068372650939626,-2.307277089164334,-2.307716913234706,-2.3081567373050778,-2.3085965613754498,-2.309036385445822,-2.3094762095161934,-2.3099160335865654,-2.3103558576569374,-2.310795681727309,-2.311235505797681,-2.3116753298680526,-2.3121151539384246,-2.3125549780087966,-2.312994802079168,-2.31343462614954,-2.3138744502199122,-2.314314274290284,-2.314754098360656,-2.3151939224310274,-2.3156337465013994,-2.3160735705717714,-2.316513394642143,-2.316953218712515,-2.317393042782887,-2.3178328668532586,-2.3182726909236306,-2.318712514994002,-2.3191523390643742,-2.3195921631347463,-2.320031987205118,-2.32047181127549,-2.320911635345862,-2.3213514594162334,-2.3217912834866055,-2.322231107556977,-2.322670931627349,-2.323110755697721,-2.3235505797680926,-2.3239904038384647,-2.3244302279088362,-2.3248700519792083,-2.3253098760495803,-2.325749700119952,-2.326189524190324,-2.326629348260696,-2.3270691723310675,-2.3275089964014395,-2.327948820471811,-2.328388644542183,-2.328828468612555,-2.3292682926829267,-2.3297081167532987,-2.3301479408236707,-2.3305877648940423,-2.3310275889644143,-2.331467413034786,-2.331907237105158,-2.33234706117553,-2.3327868852459015,-2.3332267093162735,-2.3336665333866455,-2.334106357457017,-2.334546181527389,-2.3349860055977607,-2.3354258296681327,-2.3358656537385047,-2.3363054778088763,-2.3367453018792483,-2.3371851259496204,-2.337624950019992,-2.338064774090364,-2.3385045981607355,-2.3389444222311075,-2.3393842463014796,-2.339824070371851,-2.340263894442223,-2.340703718512595,-2.3411435425829668,-2.3415833666533388,-2.3420231907237103,-2.3424630147940824,-2.3429028388644544,-2.343342662934826,-2.343782487005198,-2.3442223110755696,-2.3446621351459416,-2.3451019592163136,-2.345541783286685,-2.345981607357057,-2.346421431427429,-2.346861255497801,-2.347301079568173,-2.3477409036385444,-2.3481807277089164,-2.3486205517792884,-2.34906037584966,-2.349500199920032,-2.349940023990404,-2.3503798480607756,-2.3508196721311476,-2.351259496201519,-2.351699320271891,-2.3521391443422632,-2.352578968412635,-2.353018792483007,-2.353458616553379,-2.3538984406237504,-2.3543382646941224,-2.354778088764494,-2.355217912834866,-2.355657736905238,-2.3560975609756096,-2.3565373850459816,-2.3569772091163537,-2.3574170331867252,-2.3578568572570973,-2.358296681327469,-2.358736505397841,-2.359176329468213,-2.3596161535385844,-2.3600559776089565,-2.3604958016793285,-2.3609356257497,-2.361375449820072,-2.3618152738904437,-2.3622550979608157,-2.3626949220311877,-2.3631347461015593,-2.3635745701719313,-2.364014394242303,-2.364454218312675,-2.364894042383047,-2.3653338664534185,-2.3657736905237905,-2.3662135145941625,-2.366653338664534,-2.367093162734906,-2.3675329868052777,-2.3679728108756497,-2.3684126349460217,-2.3688524590163933,-2.3692922830867653,-2.3697321071571373,-2.370171931227509,-2.370611755297881,-2.3710515793682525,-2.3714914034386245,-2.3719312275089965,-2.372371051579368,-2.37281087564974,-2.373250699720112,-2.3736905237904837,-2.3741303478608557,-2.3745701719312273,-2.3750099960015993,-2.3754498200719714,-2.375889644142343,-2.376329468212715,-2.376769292283087,-2.3772091163534586,-2.3776489404238306,-2.378088764494202,-2.378528588564574,-2.378968412634946,-2.3794082367053178,-2.3798480607756898,-2.380287884846062,-2.3807277089164334,-2.3811675329868054,-2.381607357057177,-2.382047181127549,-2.382487005197921,-2.3829268292682926,-2.3833666533386646,-2.383806477409036,-2.384246301479408,-2.38468612554978,-2.385125949620152,-2.385565773690524,-2.386005597760896,-2.3864454218312674,-2.3868852459016394,-2.387325069972011,-2.387764894042383,-2.388204718112755,-2.3886445421831266,-2.3890843662534986,-2.3895241903238706,-2.389964014394242,-2.3904038384646142,-2.390843662534986,-2.391283486605358,-2.39172331067573,-2.3921631347461014,-2.3926029588164734,-2.3930427828868455,-2.393482606957217,-2.393922431027589,-2.3943622550979606,-2.3948020791683327,-2.3952419032387047,-2.3956817273090762,-2.3961215513794483,-2.3965613754498203,-2.397001199520192,-2.397441023590564,-2.3978808476609355,-2.3983206717313075,-2.3987604958016795,-2.399200319872051,-2.399640143942423,-2.4000799680127947,-2.4005197920831667,-2.4009596161535387,-2.4013994402239103,-2.4018392642942823,-2.4022790883646543,-2.402718912435026,-2.403158736505398,-2.4035985605757695,-2.4040383846461415,-2.4044782087165135,-2.404918032786885,-2.405357856857257,-2.405797680927629,-2.4062375049980007,-2.4066773290683727,-2.4071171531387443,-2.4075569772091163,-2.4079968012794883,-2.40843662534986,-2.408876449420232,-2.409316273490604,-2.4097560975609755,-2.4101959216313475,-2.410635745701719,-2.411075569772091,-2.411515393842463,-2.4119552179128347,-2.4123950419832068,-2.4128348660535788,-2.4132746901239504,-2.4137145141943224,-2.414154338264694,-2.414594162335066,-2.415033986405438,-2.4154738104758096,-2.4159136345461816,-2.4163534586165536,-2.416793282686925,-2.417233106757297,-2.4176729308276688,-2.418112754898041,-2.418552578968413,-2.4189924030387844,-2.4194322271091564,-2.419872051179528,-2.4203118752499,-2.420751699320272,-2.4211915233906436,-2.4216313474610156,-2.4220711715313876,-2.422510995601759,-2.422950819672131,-2.423390643742503,-2.423830467812875,-2.424270291883247,-2.4247101159536184,-2.4251499400239904,-2.4255897640943624,-2.426029588164734,-2.426469412235106,-2.4269092363054776,-2.4273490603758496,-2.4277888844462217,-2.4282287085165932,-2.4286685325869652,-2.4291083566573373,-2.429548180727709,-2.429988004798081,-2.4304278288684524,-2.4308676529388245,-2.4313074770091965,-2.431747301079568,-2.43218712514994,-2.432626949220312,-2.4330667732906837,-2.4335065973610557,-2.4339464214314273,-2.4343862455017993,-2.4348260695721713,-2.435265893642543,-2.435705717712915,-2.436145541783287,-2.4365853658536585,-2.4370251899240305,-2.437465013994402,-2.437904838064774,-2.438344662135146,-2.4387844862055177,-2.4392243102758897,-2.4396641343462613,-2.4401039584166333,-2.4405437824870053,-2.440983606557377,-2.441423430627749,-2.441863254698121,-2.4423030787684925,-2.4427429028388645,-2.443182726909236,-2.443622550979608,-2.44406237504998,-2.4445021991203517,-2.4449420231907237,-2.4453818472610958,-2.4458216713314673,-2.4462614954018393,-2.446701319472211,-2.447141143542583,-2.447580967612955,-2.4480207916833265,-2.4484606157536986,-2.4489004398240706,-2.449340263894442,-2.449780087964814,-2.4502199120351857,-2.4506597361055578,-2.45109956017593,-2.4515393842463014,-2.4519792083166734,-2.4524190323870454,-2.452858856457417,-2.453298680527789,-2.4537385045981606,-2.4541783286685326,-2.4546181527389046,-2.455057976809276,-2.455497800879648,-2.4559376249500198,-2.456377449020392,-2.456817273090764,-2.4572570971611354,-2.4576969212315074,-2.4581367453018794,-2.458576569372251,-2.459016393442623,-2.4594562175129946,-2.4598960415833666,-2.4603358656537386,-2.46077568972411,-2.4612155137944822,-2.4616553378648542,-2.462095161935226,-2.462534986005598,-2.4629748100759694,-2.4634146341463414,-2.4638544582167135,-2.464294282287085,-2.464734106357457,-2.465173930427829,-2.4656137544982006,-2.4660535785685727,-2.4664934026389442,-2.4669332267093163,-2.4673730507796883,-2.46781287485006,-2.468252698920432,-2.468692522990804,-2.4691323470611755,-2.4695721711315475,-2.470011995201919,-2.470451819272291,-2.470891643342663,-2.4713314674130347,-2.4717712914834067,-2.4722111155537787,-2.4726509396241503,-2.4730907636945223,-2.473530587764894,-2.473970411835266,-2.474410235905638,-2.4748500599760095,-2.4752898840463815,-2.475729708116753,-2.476169532187125,-2.476609356257497,-2.4770491803278687,-2.4774890043982407,-2.4779288284686127,-2.4783686525389843,-2.4788084766093563,-2.479248300679728,-2.4796881247501,-2.480127948820472,-2.4805677728908435,-2.4810075969612155,-2.4814474210315876,-2.481887245101959,-2.482327069172331,-2.4827668932427027,-2.4832067173130747,-2.4836465413834468,-2.4840863654538183,-2.4845261895241904,-2.4849660135945624,-2.485405837664934,-2.485845661735306,-2.4862854858056775,-2.4867253098760496,-2.4871651339464216,-2.487604958016793,-2.488044782087165,-2.488484606157537,-2.4889244302279088,-2.489364254298281,-2.4898040783686524,-2.4902439024390244,-2.4906837265093964,-2.491123550579768,-2.49156337465014,-2.492003198720512,-2.4924430227908836,-2.4928828468612556,-2.493322670931627,-2.493762495001999,-2.494202319072371,-2.494642143142743,-2.495081967213115,-2.4955217912834864,-2.4959616153538584,-2.4964014394242304,-2.496841263494602,-2.497281087564974,-2.497720911635346,-2.4981607357057176,-2.4986005597760896,-2.499040383846461,-2.4994802079168332,-2.4999200319872052,-2.500359856057577,-2.500799680127949,-2.501239504198321,-2.5016793282686924,-2.5021191523390645,-2.502558976409436,-2.502998800479808,-2.50343862455018,-2.5038784486205516,-2.5043182726909237,-2.5047580967612957,-2.5051979208316673,-2.5056377449020393,-2.506077568972411,-2.506517393042783,-2.506957217113155,-2.5073970411835265,-2.5078368652538985,-2.5082766893242705,-2.508716513394642,-2.509156337465014,-2.5095961615353857,-2.5100359856057577,-2.5104758096761297,-2.5109156337465013,-2.5113554578168733,-2.5117952818872453,-2.512235105957617,-2.512674930027989,-2.5131147540983605,-2.5135545781687325,-2.5139944022391045,-2.514434226309476,-2.514874050379848,-2.5153138744502197,-2.5157536985205917,-2.5161935225909637,-2.5166333466613353,-2.5170731707317073,-2.5175129948020794,-2.517952818872451,-2.518392642942823,-2.5188324670131945,-2.5192722910835665,-2.5197121151539386,-2.52015193922431,-2.520591763294682,-2.521031587365054,-2.5214714114354257,-2.5219112355057978,-2.5223510595761693,-2.5227908836465414,-2.5232307077169134,-2.523670531787285,-2.524110355857657,-2.524550179928029,-2.5249900039984006,-2.5254298280687726,-2.525869652139144,-2.526309476209516,-2.526749300279888,-2.5271891243502598,-2.527628948420632,-2.528068772491004,-2.5285085965613754,-2.5289484206317474,-2.529388244702119,-2.529828068772491,-2.530267892842863,-2.5307077169132346,-2.5311475409836066,-2.531587365053978,-2.53202718912435,-2.5324670131947222,-2.532906837265094,-2.533346661335466,-2.533786485405838,-2.5342263094762094,-2.5346661335465814,-2.535105957616953,-2.535545781687325,-2.535985605757697,-2.5364254298280686,-2.5368652538984406,-2.5373050779688127,-2.5377449020391842,-2.5381847261095563,-2.538624550179928,-2.5390643742503,-2.539504198320672,-2.5399440223910434,-2.5403838464614155,-2.5408236705317875,-2.541263494602159,-2.541703318672531,-2.5421431427429027,-2.5425829668132747,-2.5430227908836467,-2.5434626149540183,-2.5439024390243903,-2.5443422630947623,-2.544782087165134,-2.545221911235506,-2.5456617353058775,-2.5461015593762495,-2.5465413834466215,-2.546981207516993,-2.547421031587365,-2.547860855657737,-2.5483006797281087,-2.5487405037984807,-2.5491803278688523,-2.5496201519392243,-2.5500599760095963,-2.550499800079968,-2.55093962415034,-2.5513794482207115,-2.5518192722910835,-2.5522590963614555,-2.552698920431827,-2.553138744502199,-2.553578568572571,-2.5540183926429427,-2.5544582167133147,-2.5548980407836863,-2.5553378648540583,-2.5557776889244304,-2.556217512994802,-2.556657337065174,-2.557097161135546,-2.5575369852059175,-2.5579768092762896,-2.558416633346661,-2.558856457417033,-2.559296281487405,-2.5597361055577768,-2.5601759296281488,-2.560615753698521,-2.5610555777688924,-2.5614954018392644,-2.561935225909636,-2.562375049980008,-2.56281487405038,-2.5632546981207516,-2.5636945221911236,-2.5641343462614956,-2.564574170331867,-2.565013994402239,-2.565453818472611,-2.565893642542983,-2.566333466613355,-2.5667732906837264,-2.5672131147540984,-2.5676529388244704,-2.568092762894842,-2.568532586965214,-2.5689724110355856,-2.5694122351059576,-2.5698520591763296,-2.570291883246701,-2.5707317073170732,-2.571171531387445,-2.571611355457817,-2.572051179528189,-2.5724910035985604,-2.5729308276689324,-2.5733706517393045,-2.573810475809676,-2.574250299880048,-2.5746901239504196,-2.5751299480207916,-2.5755697720911637,-2.5760095961615352,-2.5764494202319073,-2.5768892443022793,-2.577329068372651,-2.577768892443023,-2.5782087165133944,-2.5786485405837665,-2.5790883646541385,-2.57952818872451,-2.579968012794882,-2.580407836865254,-2.5808476609356257,-2.5812874850059977,-2.5817273090763693,-2.5821671331467413,-2.5826069572171133,-2.583046781287485,-2.583486605357857,-2.583926429428229,-2.5843662534986005,-2.5848060775689725,-2.585245901639344,-2.585685725709716,-2.586125549780088,-2.5865653738504597,-2.5870051979208317,-2.5874450219912033,-2.5878848460615753,-2.5883246701319473,-2.588764494202319,-2.589204318272691,-2.589644142343063,-2.5900839664134345,-2.5905237904838065,-2.590963614554178,-2.59140343862455,-2.591843262694922,-2.5922830867652937,-2.5927229108356658,-2.5931627349060378,-2.5936025589764093,-2.5940423830467814,-2.594482207117153,-2.594922031187525,-2.595361855257897,-2.5958016793282686,-2.5962415033986406,-2.5966813274690126,-2.597121151539384,-2.597560975609756,-2.5980007996801278,-2.5984406237505,-2.598880447820872,-2.5993202718912434,-2.5997600959616154,-2.6001999200319874,-2.600639744102359,-2.601079568172731,-2.6015193922431026,-2.6019592163134746,-2.6023990403838466,-2.602838864454218,-2.60327868852459,-2.6037185125949622,-2.604158336665334,-2.604598160735706,-2.6050379848060774,-2.6054778088764494,-2.6059176329468214,-2.606357457017193,-2.606797281087565,-2.6072371051579366,-2.6076769292283086,-2.6081167532986806,-2.608556577369052,-2.6089964014394242,-2.6094362255097963,-2.609876049580168,-2.61031587365054,-2.6107556977209114,-2.6111955217912834,-2.6116353458616555,-2.612075169932027,-2.612514994002399,-2.612954818072771,-2.6133946421431427,-2.6138344662135147,-2.6142742902838862,-2.6147141143542583,-2.6151539384246303,-2.615593762495002,-2.616033586565374,-2.616473410635746,-2.6169132347061175,-2.6173530587764895,-2.617792882846861,-2.618232706917233,-2.618672530987605,-2.6191123550579767,-2.6195521791283487,-2.6199920031987207,-2.6204318272690923,-2.6208716513394643,-2.621311475409836,-2.621751299480208,-2.62219112355058,-2.6226309476209515,-2.6230707716913235,-2.6235105957616955,-2.623950419832067,-2.624390243902439,-2.6248300679728107,-2.6252698920431827,-2.6257097161135547,-2.6261495401839263,-2.6265893642542983,-2.62702918832467,-2.627469012395042,-2.627908836465414,-2.6283486605357855,-2.6287884846061575,-2.6292283086765296,-2.629668132746901,-2.630107956817273,-2.6305477808876447,-2.6309876049580168,-2.6314274290283888,-2.6318672530987604,-2.6323070771691324,-2.6327469012395044,-2.633186725309876,-2.633626549380248,-2.6340663734506196,-2.6345061975209916,-2.6349460215913636,-2.635385845661735,-2.635825669732107,-2.636265493802479,-2.636705317872851,-2.637145141943223,-2.6375849660135944,-2.6380247900839664,-2.6384646141543384,-2.63890443822471,-2.639344262295082,-2.639784086365454,-2.6402239104358256,-2.6406637345061976,-2.641103558576569,-2.641543382646941,-2.6419832067173132,-2.642423030787685,-2.642862854858057,-2.643302678928429,-2.6437425029988004,-2.6441823270691724,-2.644622151139544,-2.645061975209916,-2.645501799280288,-2.6459416233506596,-2.6463814474210317,-2.6468212714914032,-2.6472610955617752,-2.6477009196321473,-2.648140743702519,-2.648580567772891,-2.649020391843263,-2.6494602159136345,-2.6499000399840065,-2.650339864054378,-2.65077968812475,-2.651219512195122,-2.6516593362654937,-2.6520991603358657,-2.6525389844062377,-2.6529788084766093,-2.6534186325469813,-2.653858456617353,-2.654298280687725,-2.654738104758097,-2.6551779288284685,-2.6556177528988405,-2.6560575769692125,-2.656497401039584,-2.656937225109956,-2.6573770491803277,-2.6578168732506997,-2.6582566973210717,-2.6586965213914433,-2.6591363454618153,-2.6595761695321873,-2.660015993602559,-2.660455817672931,-2.6608956417433025,-2.6613354658136745,-2.6617752898840465,-2.662215113954418,-2.66265493802479,-2.6630947620951617,-2.6635345861655337,-2.6639744102359058,-2.6644142343062773,-2.6648540583766493,-2.6652938824470214,-2.665733706517393,-2.666173530587765,-2.6666133546581365,-2.6670531787285086,-2.6674930027988806,-2.667932826869252,-2.668372650939624,-2.668812475009996,-2.6692522990803678,-2.66969212315074,-2.6701319472211114,-2.6705717712914834,-2.6710115953618554,-2.671451419432227,-2.671891243502599,-2.672331067572971,-2.6727708916433426,-2.6732107157137146,-2.673650539784086,-2.674090363854458,-2.67453018792483,-2.674970011995202,-2.675409836065574,-2.675849660135946,-2.6762894842063174,-2.6767293082766894,-2.677169132347061,-2.677608956417433,-2.678048780487805,-2.6784886045581766,-2.6789284286285486,-2.6793682526989206,-2.6798080767692922,-2.6802479008396642,-2.680687724910036,-2.681127548980408,-2.68156737305078,-2.6820071971211514,-2.6824470211915235,-2.682886845261895,-2.683326669332267,-2.683766493402639,-2.6842063174730106,-2.6846461415433827,-2.6850859656137547,-2.6855257896841263,-2.6859656137544983,-2.68640543782487,-2.686845261895242,-2.687285085965614,-2.6877249100359855,-2.6881647341063575,-2.6886045581767295,-2.689044382247101,-2.689484206317473,-2.6899240303878447,-2.6903638544582167,-2.6908036785285887,-2.6912435025989603,-2.6916833266693323,-2.6921231507397043,-2.692562974810076,-2.693002798880448,-2.6934426229508195,-2.6938824470211915,-2.6943222710915635,-2.694762095161935,-2.695201919232307,-2.695641743302679,-2.6960815673730507,-2.6965213914434227,-2.6969612155137943,-2.6974010395841663,-2.6978408636545383,-2.69828068772491,-2.698720511795282,-2.699160335865654,-2.6996001599360255,-2.7000399840063976,-2.700479808076769,-2.700919632147141,-2.701359456217513,-2.7017992802878847,-2.7022391043582568,-2.7026789284286283,-2.7031187524990004,-2.7035585765693724,-2.703998400639744,-2.704438224710116,-2.704878048780488,-2.7053178728508596,-2.7057576969212316,-2.706197520991603,-2.706637345061975,-2.707077169132347,-2.7075169932027188,-2.707956817273091,-2.708396641343463,-2.7088364654138344,-2.7092762894842064,-2.709716113554578,-2.71015593762495,-2.710595761695322,-2.7110355857656936,-2.7114754098360656,-2.7119152339064376,-2.712355057976809,-2.712794882047181,-2.713234706117553,-2.713674530187925,-2.714114354258297,-2.7145541783286684,-2.7149940023990404,-2.7154338264694124,-2.715873650539784,-2.716313474610156,-2.7167532986805276,-2.7171931227508996,-2.7176329468212717,-2.7180727708916432,-2.7185125949620152,-2.718952419032387,-2.719392243102759,-2.719832067173131,-2.7202718912435024,-2.7207117153138745,-2.7211515393842465,-2.721591363454618,-2.72203118752499,-2.7224710115953616,-2.7229108356657337,-2.7233506597361057,-2.7237904838064773,-2.7242303078768493,-2.7246701319472213,-2.725109956017593,-2.725549780087965,-2.7259896041583365,-2.7264294282287085,-2.7268692522990805,-2.727309076369452,-2.727748900439824,-2.728188724510196,-2.7286285485805677,-2.7290683726509397,-2.7295081967213113,-2.7299480207916833,-2.7303878448620553,-2.730827668932427,-2.731267493002799,-2.731707317073171,-2.7321471411435425,-2.7325869652139145,-2.733026789284286,-2.733466613354658,-2.73390643742503,-2.7343462614954017,-2.7347860855657737,-2.7352259096361458,-2.7356657337065173,-2.7361055577768894,-2.736545381847261,-2.736985205917633,-2.737425029988005,-2.7378648540583765,-2.7383046781287486,-2.73874450219912,-2.739184326269492,-2.739624150339864,-2.7400639744102357,-2.7405037984806078,-2.74094362255098,-2.7413834466213514,-2.7418232706917234,-2.742263094762095,-2.742702918832467,-2.743142742902839,-2.7435825669732106,-2.7440223910435826,-2.7444622151139546,-2.744902039184326,-2.745341863254698,-2.7457816873250698,-2.746221511395442,-2.746661335465814,-2.7471011595361854,-2.7475409836065574,-2.7479808076769294,-2.748420631747301,-2.748860455817673,-2.7493002798880446,-2.7497401039584166,-2.7501799280287886,-2.75061975209916,-2.7510595761695322,-2.7514994002399042,-2.751939224310276,-2.752379048380648,-2.7528188724510194,-2.7532586965213914,-2.7536985205917635,-2.754138344662135,-2.754578168732507,-2.755017992802879,-2.7554578168732506,-2.7558976409436227,-2.7563374650139942,-2.7567772890843663,-2.7572171131547383,-2.75765693722511,-2.758096761295482,-2.7585365853658534,-2.7589764094362255,-2.7594162335065975,-2.759856057576969,-2.760295881647341,-2.760735705717713,-2.7611755297880847,-2.7616153538584567,-2.7620551779288283,-2.7624950019992003,-2.7629348260695723,-2.763374650139944,-2.763814474210316,-2.764254298280688,-2.7646941223510595,-2.7651339464214315,-2.765573770491803,-2.766013594562175,-2.766453418632547,-2.7668932427029187,-2.7673330667732907,-2.7677728908436627,-2.7682127149140343,-2.7686525389844063,-2.769092363054778,-2.76953218712515,-2.769972011195522,-2.7704118352658935,-2.7708516593362655,-2.7712914834066376,-2.771731307477009,-2.772171131547381,-2.7726109556177527,-2.7730507796881247,-2.7734906037584968,-2.7739304278288683,-2.7743702518992404,-2.774810075969612,-2.775249900039984,-2.775689724110356,-2.7761295481807275,-2.7765693722510996,-2.7770091963214716,-2.777449020391843,-2.777888844462215,-2.7783286685325868,-2.7787684926029588,-2.779208316673331,-2.7796481407437024,-2.7800879648140744,-2.7805277888844464,-2.780967612954818,-2.78140743702519,-2.7818472610955616,-2.7822870851659336,-2.7827269092363056,-2.783166733306677,-2.783606557377049,-2.7840463814474212,-2.784486205517793,-2.784926029588165,-2.7853658536585364,-2.7858056777289084,-2.7862455017992804,-2.786685325869652,-2.787125149940024,-2.787564974010396,-2.7880047980807676,-2.7884446221511396,-2.788884446221511,-2.7893242702918832,-2.7897640943622553,-2.790203918432627,-2.790643742502999,-2.791083566573371,-2.7915233906437424,-2.7919632147141145,-2.792403038784486,-2.792842862854858,-2.79328268692523,-2.7937225109956016,-2.7941623350659737,-2.7946021591363452,-2.7950419832067173,-2.7954818072770893,-2.795921631347461,-2.796361455417833,-2.796801279488205,-2.7972411035585765,-2.7976809276289485,-2.79812075169932,-2.798560575769692,-2.799000399840064,-2.7994402239104357,-2.7998800479808077,-2.8003198720511797,-2.8007596961215513,-2.8011995201919233,-2.801639344262295,-2.802079168332667,-2.802518992403039,-2.8029588164734105,-2.8033986405437825,-2.8038384646141545,-2.804278288684526,-2.804718112754898,-2.8051579368252697,-2.8055977608956417,-2.8060375849660137,-2.8064774090363853,-2.8069172331067573,-2.8073570571771294,-2.807796881247501,-2.808236705317873,-2.8086765293882445,-2.8091163534586165,-2.8095561775289886,-2.80999600159936,-2.810435825669732,-2.810875649740104,-2.8113154738104758,-2.8117552978808478,-2.8121951219512193,-2.8126349460215914,-2.8130747700919634,-2.813514594162335,-2.813954418232707,-2.8143942423030786,-2.8148340663734506,-2.8152738904438226,-2.815713714514194,-2.816153538584566,-2.816593362654938,-2.81703318672531,-2.817473010795682,-2.8179128348660534,-2.8183526589364254,-2.8187924830067974,-2.819232307077169,-2.819672131147541,-2.820111955217913,-2.8205517792882846,-2.8209916033586566,-2.821431427429028,-2.8218712514994,-2.8223110755697722,-2.822750899640144,-2.823190723710516,-2.823630547780888,-2.8240703718512594,-2.8245101959216314,-2.824950019992003,-2.825389844062375,-2.825829668132747,-2.8262694922031186,-2.8267093162734906,-2.8271491403438627,-2.8275889644142342,-2.8280287884846063,-2.828468612554978,-2.82890843662535,-2.829348260695722,-2.8297880847660934,-2.8302279088364655,-2.8306677329068375,-2.831107556977209,-2.831547381047581,-2.8319872051179527,-2.8324270291883247,-2.8328668532586967,-2.8333066773290683,-2.8337465013994403,-2.834186325469812,-2.834626149540184,-2.835065973610556,-2.8355057976809275,-2.8359456217512995,-2.8363854458216715,-2.836825269892043,-2.837265093962415,-2.8377049180327867,-2.8381447421031587,-2.8385845661735307,-2.8390243902439023,-2.8394642143142743,-2.8399040383846463,-2.840343862455018,-2.84078368652539,-2.8412235105957615,-2.8416633346661335,-2.8421031587365055,-2.842542982806877,-2.842982806877249,-2.843422630947621,-2.8438624550179927,-2.8443022790883647,-2.8447421031587363,-2.8451819272291083,-2.8456217512994804,-2.846061575369852,-2.846501399440224,-2.846941223510596,-2.8473810475809676,-2.8478208716513396,-2.848260695721711,-2.848700519792083,-2.849140343862455,-2.8495801679328268,-2.8500199920031988,-2.8504598160735704,-2.8508996401439424,-2.8513394642143144,-2.851779288284686,-2.852219112355058,-2.85265893642543,-2.8530987604958016,-2.8535385845661736,-2.853978408636545,-2.854418232706917,-2.854858056777289,-2.855297880847661,-2.855737704918033,-2.856177528988405,-2.8566173530587764,-2.8570571771291484,-2.85749700119952,-2.857936825269892,-2.858376649340264,-2.8588164734106356,-2.8592562974810076,-2.8596961215513796,-2.860135945621751,-2.8605757696921232,-2.861015593762495,-2.861455417832867,-2.861895241903239,-2.8623350659736104,-2.8627748900439824,-2.8632147141143545,-2.863654538184726,-2.864094362255098,-2.8645341863254696,-2.8649740103958417,-2.8654138344662137,-2.8658536585365852,-2.8662934826069573,-2.8667333066773293,-2.867173130747701,-2.867612954818073,-2.8680527788884445,-2.8684926029588165,-2.8689324270291885,-2.86937225109956,-2.869812075169932,-2.8702518992403037,-2.8706917233106757,-2.8711315473810477,-2.8715713714514193,-2.8720111955217913,-2.8724510195921633,-2.872890843662535,-2.873330667732907,-2.8737704918032785,-2.8742103158736505,-2.8746501399440225,-2.875089964014394,-2.875529788084766,-2.875969612155138,-2.8764094362255097,-2.8768492602958817,-2.8772890843662533,-2.8777289084366253,-2.8781687325069973,-2.878608556577369,-2.879048380647741,-2.879488204718113,-2.8799280287884845,-2.8803678528588565,-2.880807676929228,-2.8812475009996,-2.881687325069972,-2.8821271491403437,-2.8825669732107158,-2.8830067972810878,-2.8834466213514593,-2.8838864454218314,-2.884326269492203,-2.884766093562575,-2.885205917632947,-2.8856457417033186,-2.8860855657736906,-2.8865253898440626,-2.886965213914434,-2.887405037984806,-2.8878448620551778,-2.88828468612555,-2.888724510195922,-2.8891643342662934,-2.8896041583366654,-2.890043982407037,-2.890483806477409,-2.890923630547781,-2.8913634546181526,-2.8918032786885246,-2.8922431027588966,-2.892682926829268,-2.89312275089964,-2.893562574970012,-2.894002399040384,-2.894442223110756,-2.8948820471811274,-2.8953218712514994,-2.8957616953218714,-2.896201519392243,-2.896641343462615,-2.8970811675329866,-2.8975209916033586,-2.8979608156737307,-2.8984006397441022,-2.8988404638144742,-2.8992802878848463,-2.899720111955218,-2.90015993602559,-2.9005997600959614,-2.9010395841663335,-2.9014794082367055,-2.901919232307077,-2.902359056377449,-2.902798880447821,-2.9032387045181927,-2.9036785285885647,-2.9041183526589363,-2.9045581767293083,-2.9049980007996803,-2.905437824870052,-2.905877648940424,-2.9063174730107955,-2.9067572970811675,-2.9071971211515395,-2.907636945221911,-2.908076769292283,-2.908516593362655,-2.9089564174330267,-2.9093962415033987,-2.9098360655737703,-2.9102758896441423,-2.9107157137145143,-2.911155537784886,-2.911595361855258,-2.91203518592563,-2.9124750099960015,-2.9129148340663735,-2.913354658136745,-2.913794482207117,-2.914234306277489,-2.9146741303478607,-2.9151139544182327,-2.9155537784886048,-2.9159936025589763,-2.9164334266293483,-2.91687325069972,-2.917313074770092,-2.917752898840464,-2.9181927229108355,-2.9186325469812076,-2.9190723710515796,-2.919512195121951,-2.919952019192323,-2.9203918432626947,-2.9208316673330668,-2.921271491403439,-2.9217113154738104,-2.9221511395441824,-2.9225909636145544,-2.923030787684926,-2.923470611755298,-2.9239104358256696,-2.9243502598960416,-2.9247900839664136,-2.925229908036785,-2.925669732107157,-2.9261095561775288,-2.926549380247901,-2.926989204318273,-2.9274290283886444,-2.9278688524590164,-2.9283086765293884,-2.92874850059976,-2.929188324670132,-2.9296281487405036,-2.9300679728108756,-2.9305077968812476,-2.930947620951619,-2.9313874450219912,-2.9318272690923632,-2.932267093162735,-2.932706917233107,-2.9331467413034784,-2.9335865653738504,-2.9340263894442224,-2.934466213514594,-2.934906037584966,-2.935345861655338,-2.9357856857257096,-2.9362255097960817,-2.9366653338664532,-2.9371051579368253,-2.9375449820071973,-2.937984806077569,-2.938424630147941,-2.938864454218313,-2.9393042782886845,-2.9397441023590565,-2.940183926429428,-2.9406237504998,-2.941063574570172,-2.9415033986405437,-2.9419432227109157,-2.9423830467812877,-2.9428228708516593,-2.9432626949220313,-2.943702518992403,-2.944142343062775,-2.944582167133147,-2.9450219912035185,-2.9454618152738905,-2.945901639344262,-2.946341463414634,-2.946781287485006,-2.9472211115553777,-2.9476609356257497,-2.9481007596961217,-2.9485405837664933,-2.9489804078368653,-2.949420231907237,-2.949860055977609,-2.950299880047981,-2.9507397041183525,-2.9511795281887245,-2.9516193522590966,-2.952059176329468,-2.95249900039984,-2.9529388244702117,-2.9533786485405837,-2.9538184726109558,-2.9542582966813273,-2.9546981207516994,-2.9551379448220714,-2.955577768892443,-2.956017592962815,-2.9564574170331865,-2.9568972411035586,-2.9573370651739306,-2.957776889244302,-2.958216713314674,-2.958656537385046,-2.9590963614554178,-2.95953618552579,-2.9599760095961614,-2.9604158336665334,-2.9608556577369054,-2.961295481807277,-2.961735305877649,-2.962175129948021,-2.9626149540183926,-2.9630547780887646,-2.963494602159136,-2.963934426229508,-2.96437425029988,-2.964814074370252,-2.965253898440624,-2.9656937225109954,-2.9661335465813674,-2.9665733706517394,-2.967013194722111,-2.967453018792483,-2.967892842862855,-2.9683326669332266,-2.9687724910035986,-2.96921231507397,-2.9696521391443422,-2.9700919632147142,-2.970531787285086,-2.970971611355458,-2.97141143542583,-2.9718512594962014,-2.9722910835665735,-2.972730907636945,-2.973170731707317,-2.973610555777689,-2.9740503798480606,-2.9744902039184327,-2.9749300279888047,-2.9753698520591763,-2.9758096761295483,-2.97624950019992,-2.976689324270292,-2.977129148340664,-2.9775689724110355,-2.9780087964814075,-2.9784486205517795,-2.978888444622151,-2.979328268692523,-2.9797680927628947,-2.9802079168332667,-2.9806477409036387,-2.9810875649740103,-2.9815273890443823,-2.981967213114754,-2.982407037185126,-2.982846861255498,-2.9832866853258695,-2.9837265093962415,-2.9841663334666135,-2.984606157536985,-2.985045981607357,-2.9854858056777287,-2.9859256297481007,-2.9863654538184727,-2.9868052778888443,-2.9872451019592163,-2.9876849260295884,-2.98812475009996,-2.988564574170332,-2.9890043982407035,-2.9894442223110755,-2.9898840463814476,-2.990323870451819,-2.990763694522191,-2.991203518592563,-2.9916433426629347,-2.9920831667333068,-2.9925229908036783,-2.9929628148740504,-2.9934026389444224,-2.993842463014794,-2.994282287085166,-2.994722111155538,-2.9951619352259096,-2.9956017592962816,-2.996041583366653,-2.996481407437025,-2.996921231507397,-2.9973610555777688,-2.997800879648141,-2.998240703718513,-2.9986805277888844,-2.9991203518592564,-2.999560175929628,-3.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/small_positive.json b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/small_positive.json new file mode 100644 index 000000000000..afd60ee8ade2 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/small_positive.json @@ -0,0 +1 @@ +{"expected":[0.36884204609417004,0.36901145511710043,0.36918081109874973,0.36935011401534357,0.3695193638431163,0.36968856055831056,0.36985770413717783,0.3700267945559778,0.3701958317909789,0.370364815818458,0.3705337466147005,0.37070262415600047,0.37087144841866027,0.3710402193789911,0.3712089370133125,0.3713776012979527,0.3715462122092483,0.37171476972354484,0.3718832738171959,0.3720517244665641,0.3722201216480203,0.37238846533794423,0.37255675551272394,0.3727249921487563,0.3728931752224465,0.3730613047102087,0.37322938058846516,0.3733974028336472,0.3735653714221945,0.37373328633055536,0.3739011475351868,0.3740689550125544,0.3742367087391323,0.37440440869140335,0.3745720548458589,0.3747396471789992,0.37490718566733283,0.3750746702873772,0.3752421010156582,0.37540947782871054,0.3755768007030775,0.375744069615311,0.37591128454197154,0.37607844545962854,0.3762455523448598,0.376412605174252,0.37657960392440026,0.3767465485719086,0.3769134390933896,0.3770802754654646,0.3772470576647634,0.37741378566792494,0.37758045945159635,0.3777470789924338,0.37791364426710206,0.3780801552522745,0.3782466119246334,0.37841301426086954,0.3785793622376826,0.3787456558317809,0.37891189501988143,0.37907807977871,0.3792442100850011,0.37941028591549786,0.37957630724695246,0.3797422740561255,0.3799081863197864,0.38007404401471334,0.38023984711769343,0.38040559560552234,0.38057128945500446,0.38073692864295305,0.3809025131461902,0.3810680429415466,0.3812335180058619,0.38139893831598437,0.3815643038487711,0.381729614581088,0.3818948704898098,0.3820600715518199,0.38222521774401075,0.3823903090432832,0.3825553454265473,0.38272032687072166,0.3828852533527338,0.38305012484952006,0.3832149413380256,0.3833797027952042,0.3835444091980189,0.3837090605234411,0.3838736567484514,0.384038197850039,0.38420268380520206,0.38436711459094747,0.3845314901842911,0.38469581056225766,0.3848600757018806,0.3850242855802023,0.385188440174274,0.38535253946115594,0.38551658341791684,0.3856805720216348,0.3858445052493964,0.3860083830782973,0.38617220548544196,0.3863359724479438,0.38649968394292505,0.38666333994751695,0.3868269404388594,0.3869904853941015,0.38715397479040115,0.38731740860492503,0.3874807868148488,0.3876441093973573,0.38780737632964374,0.3879705875889108,0.38813374315236976,0.388296842997241,0.3884598871007537,0.38862287544014606,0.3887858079926652,0.38894868473556726,0.3891115056461172,0.389274270701589,0.3894369798792655,0.38959963315643875,0.3897622305104095,0.3899247719184876,0.3900872573579918,0.39024968680625,0.3904120602405987,0.3905743776383839,0.39073663897696,0.3908988442336909,0.3910609933859493,0.3912230864111168,0.3913851232865841,0.39154710398975084,0.3917090284980258,0.3918708967888266,0.39203270883958,0.39219446462772173,0.39235616413069657,0.3925178073259582,0.3926793941909695,0.39284092470320225,0.3930023988401374,0.39316381657926475,0.3933251778980833,0.39348648277410103,0.39364773118483504,0.39380892310781135,0.39397005852056516,0.3941311374006406,0.39429215972559106,0.39445312547297884,0.3946140346203753,0.3947748871453609,0.3949356830255254,0.3950964222384672,0.39525710476179415,0.395417730573123,0.39557829965007985,0.39573881197029936,0.39589926751142596,0.39605966625111266,0.3962200081670218,0.39638029323682483,0.3965405214382023,0.3967006927488438,0.3968608071464481,0.3970208646087231,0.39718086511338585,0.3973408086381624,0.3975006951607882,0.3976605246590074,0.3978202971105739,0.39798001249325005,0.39813967078480794,0.3982992719630285,0.3984588160057018,0.39861830289062733,0.39877773259561344,0.3989371050984778,0.3990964203770472,0.39925567840915765,0.3994148791726543,0.3995740226453915,0.3997331088052327,0.3998921376300507,0.4000511090977273,0.40021002318615373,0.4003688798732301,0.40052767913686604,0.40068642095498014,0.4008451053055004,0.4010037321663638,0.4011623015155168,0.4013208133309148,0.40147926759052266,0.40163766427231434,0.40179600335427307,0.4019542848143912,0.40211250863067055,0.40227067478112194,0.4024287832437656,0.4025868339966308,0.4027448270177564,0.4029027622851901,0.4030606397769892,0.4032184594712201,0.40337622134595846,0.4035339253792892,0.4036915715493066,0.4038491598341142,0.4040066902118246,0.40416416266056,0.40432157715845174,0.4044789336836403,0.4046362322142757,0.4047934727285171,0.4049506552045331,0.4051077796205014,0.40526484595460904,0.4054218541850526,0.40557880429003773,0.4057356962477795,0.4058925300365022,0.4060493056344396,0.4062060230198346,0.4063626821709396,0.40651928306601626,0.4066758256833356,0.40683231000117787,0.4069887359978328,0.40714510365159945,0.40730141294078615,0.4074576638437106,0.40761385633869995,0.4077699904040906,0.4079260660182284,0.40808208315946837,0.4082380418061752,0.40839394193672274,0.4085497835294943,0.4087055665628825,0.40886129101528945,0.4090169568651265,0.40917256409081454,0.40932811267078373,0.40948360258347377,0.4096390338073336,0.40979440632082165,0.40994972010240577,0.41010497513056315,0.41026017138378046,0.41041530884055377,0.41057038747938845,0.41072540727879964,0.41088036821731144,0.41103527027345776,0.4111901134257817,0.411344897652836,0.4114996229331826,0.4116542892453931,0.4118088965680485,0.4119634448797391,0.4121179341590649,0.4122723643846351,0.41242673553506864,0.4125810475889936,0.4127353005250478,0.41288949432187844,0.4130436289581422,0.41319770441250503,0.4133517206636428,0.41350567769024044,0.41365957547099264,0.4138134139846035,0.4139671932097865,0.4141209131252648,0.4142745737097709,0.4144281749420469,0.41458171680084455,0.4147351992649247,0.4148886223130581,0.41504198592402486,0.41519529007661465,0.41534853474962663,0.41550171992186946,0.4156548455721614,0.41580791167933034,0.41596091822221337,0.41611386517965754,0.41626675253051904,0.41641958025366405,0.4165723483279678,0.4167250567323156,0.4168777054456018,0.4170302944467308,0.41718282371461607,0.41733529322818114,0.41748770296635873,0.41764005290809136,0.41779234303233104,0.4179445733180393,0.41809674374418737,0.41824885428975606,0.41840090493373566,0.41855289565512616,0.4187048264329371,0.4188566972461876,0.4190085080739065,0.4191602588951321,0.4193119496889124,0.41946358043430493,0.419615151110377,0.41976666169620536,0.41991811217087643,0.4200695025134864,0.42022083270314087,0.42037210271895514,0.4205233125400544,0.420674462145573,0.4208255515146554,0.4209765806264554,0.4211275494601366,0.4212784579948722,0.42142930620984503,0.4215800940842476,0.42173082159728226,0.42188148872816067,0.42203209545610443,0.42218264176034476,0.4223331276201225,0.4224835530146882,0.4226339179233021,0.42278422232523416,0.42293446619976394,0.4230846495261807,0.42323477228378353,0.4233848344518811,0.4235348360097918,0.42368477693684364,0.4238346572123746,0.4239844768157321,0.42413423572627346,0.4242839339233655,0.424433571386385,0.4245831480947183,0.4247326640277616,0.42488211916492075,0.42503151348561125,0.4251808469692586,0.42533011959529776,0.42547933134317356,0.42562848219234056,0.42577757212226314,0.4259266011124153,0.42607556914228095,0.42622447619135356,0.4263733222391366,0.42652210726514306,0.426670831248896,0.4268194941699279,0.42696809600778135,0.42711663674200845,0.4272651163521713,0.42741353481784156,0.4275618921186009,0.4277101882340407,0.4278584231437621,0.428006596827376,0.4281547092645033,0.4283027604347744,0.4284507503178298,0.4285986788933196,0.42874654614090396,0.4288943520402525,0.429042096571045,0.42918977971297084,0.4293374014457294,0.4294849617490298,0.4296324606025909,0.4297798979861416,0.4299272738794204,0.4300745882621759,0.4302218411141665,0.43036903241516017,0.4305161621449351,0.4306632302832791,0.4308102368099899,0.4309571817048752,0.43110406494775233,0.43125088651844873,0.43139764639680156,0.431544344562658,0.43169098099587494,0.4318375556763192,0.4319840685838676,0.4321305196984067,0.432276908999833,0.4324232364680529,0.4325695020829828,0.43271570582454877,0.43286184767268693,0.4330079276073434,0.433153945608474,0.4332999016560446,0.4334457957300309,0.43359162781041866,0.4337373978772034,0.4338831059103907,0.4340287518899959,0.4341743357960445,0.43431985760857167,0.43446531730762283,0.43461071487325303,0.4347560502855275,0.4349013235245212,0.4350465345703193,0.43519168340301667,0.43533677000271837,0.43548179434953915,0.43562675642360404,0.43577165620504776,0.43591649367401514,0.43606126881066093,0.43620598159514995,0.4363506320076568,0.4364952200283663,0.4366397456374731,0.43678420881518193,0.4369286095417073,0.43707294779727407,0.4372172235621168,0.4373614368164801,0.4375055875406188,0.4376496757147974,0.4377937013192907,0.43793766433438325,0.4380815647403699,0.4382254025175553,0.43836917764625427,0.43851289010679145,0.4386565398795018,0.43880012694473003,0.4389436512828311,0.4390871128741698,0.43923051169912114,0.4393738477380701,0.4395171209714117,0.4396603313795511,0.4398034789429033,0.4399465636418935,0.4400895854569571,0.4402325443685392,0.4403754403570953,0.4405182734030909,0.4406610434870014,0.44080375058931237,0.44094639469051955,0.4410889757711287,0.4412314938116555,0.44137394879262604,0.4415163406945761,0.4416586694980521,0.44180093518360997,0.441943137731816,0.44208527712324663,0.44222735333848845,0.4423693663581379,0.44251131616280176,0.44265320273309683,0.44279502604965015,0.4429367860930986,0.44307848284408946,0.44322011628328,0.4433616863913378,0.4435031931489402,0.443644636536775,0.44378601653554006,0.44392733312594335,0.444068586288703,0.4442097760045472,0.4443509022542144,0.44449196501845323,0.44463296427802246,0.44477390001369077,0.4449147722062373,0.44505558083645136,0.44519632588513225,0.44533700733308945,0.4454776251611428,0.44561817935012216,0.4457586698808676,0.44589909673422934,0.4460394598910678,0.44617975933225373,0.4463199950386679,0.44646016699120133,0.44660027517075523,0.446740319558241,0.44688030013458035,0.4470202168807049,0.44716006977755696,0.4472998588060886,0.44743958394726235,0.4475792451820508,0.44771884249143695,0.4478583758564139,0.44799784525798503,0.4481372506771639,0.44827659209497434,0.4484158694924503,0.44855508285063633,0.44869423215058674,0.4488333173733663,0.44897233850005014,0.44911129551172363,0.44925018838948205,0.44938901711443136,0.4495277816676876,0.449666482030377,0.4498051181836363,0.4499436901086121,0.45008219778646175,0.4502206411983525,0.45035902032546216,0.4504973351489785,0.45063558565009976,0.45077377181003464,0.4509118936100019,0.45104995103123047,0.4511879440549599,0.4513258726624398,0.4514637368349303,0.4516015365537015,0.45173927180003415,0.4518769425552191,0.45201454880055764,0.4521520905173612,0.4522895676869517,0.4524269802906613,0.4525643283098326,0.45270161172581835,0.45283883051998164,0.4529759846736961,0.45311307416834545,0.453250098985324,0.45338705910603605,0.4535239545118966,0.45366078518433084,0.45379755110477427,0.4539342522546728,0.4540708886154828,0.45420746016867075,0.45434396689571366,0.45448040877809887,0.4546167857973241,0.4547530979348976,0.4548893451723376,0.455025527491173,0.45516164487294297,0.4552976972991971,0.4554336847514956,0.4555696072114085,0.45570546466051676,0.4558412570804115,0.45597698445269425,0.4561126467589769,0.4562482439808818,0.4563837761000418,0.4565192430981001,0.45665464495671004,0.4567899816575357,0.4569252531822516,0.4570604595125425,0.45719560063010345,0.4573306765166404,0.4574656871538692,0.45760063252351657,0.4577355126073194,0.45787032738702493,0.45800507684439123,0.45813976096118647,0.4582743797191893,0.45840893310018893,0.45854342108598495,0.45867784365838754,0.4588122007992171,0.4589464924903046,0.45908071871349165,0.45921487945063,0.4593489746835821,0.4594830043942207,0.45961696856442913,0.4597508671761014,0.45988470021114153,0.46001846765146437,0.4601521694789951,0.46028580567566957,0.4604193762234339,0.46055288110424475,0.4606863203000694,0.4608196937928856,0.46095300156468144,0.46108624359745565,0.46121941987321746,0.4613525303739866,0.46148557508179333,0.46161855397867835,0.4617514670466929,0.4618843142678988,0.46201709562436843,0.4621498110981845,0.4622824606714404,0.46241504432624003,0.46254756204469794,0.462680013808939,0.46281239960109855,0.46294471940332294,0.46307697319776864,0.4632091609666027,0.46334128269200286,0.46347333835615745,0.4636053279412653,0.4637372514295356,0.4638691088031884,0.46400090004445416,0.46413262513557396,0.46426428405879944,0.4643958767963927,0.4645274033306266,0.4646588636437845,0.4647902577181603,0.46492158553605856,0.46505284707979433,0.4651840423316934,0.465315171274092,0.4654462338893369,0.46557723015978586,0.4657081600678068,0.46583902359577833,0.4659698207260898,0.46610055144114115,0.4662312157233429,0.4663618135551162,0.46649234491889263,0.4666228097971147,0.46675320817223537,0.4668835400267183,0.4670138053430376,0.46714400410367823,0.4672741362911357,0.4674042018879161,0.46753420087653613,0.4676641332395234,0.46779399895941576,0.46792379801876216,0.46805353040012176,0.4681831960860646,0.46831279505917145,0.46844232730203356,0.46857179279725286,0.46870119152744205,0.46883052347522447,0.46895978862323406,0.4690889869541155,0.469218118450524,0.4693471830951257,0.4694761808705973,0.469605111759626,0.46973397574490994,0.4698627728091579,0.46999150293508923,0.47012016610543406,0.4702487623029331,0.47037729151033814,0.4705057537104111,0.47063414888592503,0.47076247701966345,0.4708907380944208,0.47101893209300205,0.471147058998223,0.47127511879291006,0.4714031114599004,0.471531036982042,0.47165889534219346,0.47178668652322414,0.4719144105080141,0.4720420672794542,0.4721696568204459,0.4722971791139016,0.4724246341427444,0.47255202188990786,0.4726793423383367,0.472806595470986,0.472933781270822,0.4730608997208213,0.4731879508039716,0.473314934503271,0.47344185080172857,0.47356869968236426,0.47369548112820864,0.4738221951223029,0.4739488416476993,0.47407542068746067,0.4742019322246608,0.47432837624238394,0.47445475272372545,0.47458106165179137,0.4747073030096985,0.47483347678057436,0.47495958294755736,0.47508562149379674,0.4752115924024526,0.47533749565669536,0.47546333123970697,0.4755890991346796,0.47571479932481664,0.47584043179333196,0.4759659965234504,0.4760914934984076,0.47621692270145016,0.4763422841158351,0.4764675777248307,0.47659280351171596,0.4767179614597805,0.4768430515523249,0.4769680737726607,0.4770930281041101,0.4772179145300062,0.47734273303369296,0.47746748359852514,0.4775921662078684,0.4777167808450992,0.477841327493605,0.4779658061367838,0.47809021675804475,0.47821455934080775,0.4783388338685036,0.47846304032457393,0.47858717869247114,0.47871124895565875,0.478835251097611,0.4789591851018129,0.47908305095176046,0.47920684863096064,0.4793305781229312,0.4794542394112007,0.47957783247930874,0.4797013573108057,0.479824813889253,0.4799482021982228,0.4800715222212981,0.4801947739420731,0.48031795734415267,0.4804410724111525,0.4805641191266995,0.4806870974744311,0.4808100074379961,0.48093284900105376,0.48105562214727454,0.4811783268603398,0.48130096312394177,0.48142353092178347,0.4815460302375791,0.4816684610550536,0.4817908233579431,0.48191311712999424,0.482035342354965,0.4821574990166241,0.4822795870987513,0.4824016065851371,0.4825235574595832,0.48264543970590223,0.48276725330791753,0.48288899824946374,0.48301067451438606,0.4831322820865411,0.48325382094979596,0.48337529108802924,0.48349669248512994,0.4836180251249984,0.48373928899154595,0.48386048406869464,0.4839816103403777,0.48410266779053923,0.4842236564031345,0.4843445761621295,0.48446542705150136,0.4845862090552382,0.4847069221573391,0.48482756634181423,0.48494814159268457,0.4850686478939822,0.4851890852297503,0.48530945358404287,0.48542975294092505,0.48554998328447296,0.48567014459877367,0.48579023686792544,0.4859102600760373,0.48603021420722947,0.4861500992456331,0.4862699151753906,0.4863896619806549,0.4865093396455905,0.4866289481543727,0.4867484874911878,0.48686795764023316,0.4869873585857172,0.48710669031185944,0.4872259528028904,0.48734514604305146,0.48746427001659537,0.4875833247077858,0.48770231010089743,0.48782122618021595,0.4879400729300382,0.4880588503346721,0.4881775583784366,0.48829619704566174,0.4884147663206886,0.48853326618786913,0.48865169663156677,0.4887700576361558,0.4888883491860215,0.4890065712655603,0.4891247238591799,0.48924280695129885,0.4893608205263468,0.48947876456876455,0.489596639063004,0.4897144439935283,0.48983217934481127,0.48994984510133827,0.4900674412476055,0.4901849677681204,0.4903024246474015,0.49041981186997824,0.49053712942039146,0.49065437728319305,0.49077155544294576,0.49088866388422375,0.49100570259161225,0.49112267154970757,0.4912395707431171,0.4913564001564592,0.4914731597743639,0.4915898495814719,0.4917064695624351,0.4918230197019165,0.4919394999845905,0.49205591039514246,0.49217225091826877,0.4922885215386772,0.4924047222410865,0.49252085301022674,0.49263691383083885,0.4927529046876753,0.4928688255654994,0.4929846764490857,0.49310045732322016,0.49321616817269953,0.4933318089823318,0.4934473797369364,0.4935628804213438,0.4936783110203954,0.49379367151894415,0.49390896190185385,0.4940241821539998,0.49413933226026824,0.49425441220555666,0.4943694219747738,0.4944843615528396,0.49459923092468494,0.4947140300752523,0.49482875898949497,0.4949434176523778,0.4950580060488766,0.4951725241639784,0.4952869719826815,0.4954013494899955,0.49551565667094094,0.4956298935105498,0.4957440599938653,0.49585815610594164,0.49597218183184455,0.4960861371566506,0.4962000220654481,0.49631383654333616,0.49642758057542513,0.4965412541468369,0.4966548572427043,0.4967683898481716,0.4968818519483942,0.49699524352853863,0.49710856457378294,0.4972218150693163,0.4973349950003389,0.49744810435206255,0.49756114310971006,0.4976741112585157,0.4977870087837247,0.4978998356705939,0.4980125919043911,0.4981252774703956,0.4982378923538978,0.4983504365401994,0.4984629100146133,0.4985753127624639,0.49868764476908684,0.4987999060198287,0.4989120965000477,0.49902421619511317,0.4991362650904059,0.4992482431713176,0.4993601504232517,0.49947198683162264,0.49958375238185626,0.4996954470593897,0.49980707084967124,0.49991862373816076,0.5000301057103291,0.5001415167516587,0.5002528568476431,0.5003641259837872,0.5004753241456075,0.5005864513186312,0.5006975074883973,0.5008084926404559,0.5009194067603686,0.5010302498337083,0.5011410218460589,0.501251722783016,0.5013623526301865,0.5014729113731882,0.5015833989976508,0.5016938154892151,0.5018041608335333,0.5019144350162685,0.5020246380230959,0.5021347698397014,0.5022448304517827,0.5023548198450485,0.502464738005219,0.5025745849180256,0.5026843605692115,0.5027940649445308,0.5029036980297491,0.5030132598106434,0.5031227502730019,0.5032321694026245,0.503341517185322,0.5034507936069172,0.5035599986532436,0.5036691323101465,0.5037781945634825,0.5038871853991194,0.5039961048029364,0.5041049527608246,0.5042137292586857,0.5043224342824333,0.5044310678179922,0.5045396298512987,0.5046481203683004,0.5047565393549563,0.504864886797237,0.504973162681124,0.5050813669926107,0.5051894997177018,0.5052975608424132,0.5054055503527723,0.5055134682348181,0.5056213144746008,0.505729089058182,0.505836791971635,0.5059444232010439,0.5060519827325051,0.5061594705521256,0.5062668866460244,0.5063742310003314,0.5064815036011885,0.5065887044347488,0.5066958334871765,0.5068028907446478,0.5069098761933498,0.5070167898194816,0.5071236316092532,0.5072304015488864,0.5073370996246144,0.5074437258226815,0.5075502801293439,0.5076567625308692,0.5077631730135362,0.5078695115636352,0.5079757781674683,0.5080819728113485,0.5081880954816007,0.5082941461645611,0.5084001248465776,0.5085060315140091,0.5086118661532263,0.5087176287506113,0.5088233192925578,0.5089289377654707,0.5090344841557666,0.5091399584498735,0.5092453606342309,0.5093506906952898,0.5094559486195126,0.5095611343933734,0.5096662480033574,0.5097712894359617,0.5098762586776948,0.5099811557150766,0.5100859805346384,0.5101907331229232,0.5102954134664854,0.510400021551891,0.5105045573657175,0.5106090208945537,0.5107134121250001,0.5108177310436688,0.5109219776371831,0.5110261518921781,0.5111302537953003,0.5112342833332079,0.5113382404925702,0.5114421252600685,0.5115459376223954,0.5116496775662549,0.5117533450783629,0.5118569401454464,0.5119604627542443,0.5120639128915069,0.5121672905439959,0.5122705956984848,0.5123738283417585,0.5124769884606132,0.5125800760418572,0.5126830910723099,0.5127860335388026,0.5128889034281777,0.5129917007272895,0.5130944254230039,0.5131970775021979,0.5132996569517607,0.5134021637585926,0.5135045979096058,0.5136069593917236,0.5137092481918812,0.5138114642970255,0.5139136076941146,0.5140156783701186,0.5141176763120189,0.5142196015068082,0.5143214539414913,0.5144232336030845,0.5145249404786155,0.5146265745551236,0.5147281358196597,0.5148296242592865,0.514931039861078,0.5150323826121199,0.5151336524995095,0.5152348495103559,0.5153359736317795,0.5154370248509124,0.5155380031548982,0.5156389085308924,0.5157397409660619,0.5158405004475852,0.5159411869626525,0.5160418004984655,0.5161423410422377,0.5162428085811939,0.516343203102571,0.5164435245936169,0.5165437730415917,0.5166439484337668,0.5167440507574255,0.5168440799998621,0.5169440361483835,0.5170439191903073,0.5171437291129634,0.5172434659036929,0.5173431295498488,0.5174427200387958,0.5175422373579097,0.5176416814945787,0.5177410524362022,0.5178403501701911,0.5179395746839686,0.5180387259649688,0.518137804000638,0.5182368087784338,0.5183357402858256,0.5184345985102945,0.5185333834393333,0.5186320950604463,0.5187307333611495,0.5188292983289707,0.5189277899514493,0.5190262082161363,0.5191245531105944,0.519222824622398,0.5193210227391332,0.5194191474483978,0.5195171987378011,0.5196151765949644,0.5197130810075203,0.5198109119631134,0.5199086694493998,0.5200063534540473,0.5201039639647358,0.5202015009691561,0.5202989644550113,0.5203963544100161,0.5204936708218967,0.5205909136783913,0.5206880829672493,0.5207851786762325,0.5208822007931139,0.5209791493056783,0.5210760242017223,0.5211728254690541,0.5212695530954936,0.5213662070688728,0.5214627873770349,0.521559294007835,0.5216557269491399,0.5217520861888283,0.5218483717147905,0.5219445835149283,0.5220407215771556,0.5221367858893979,0.5222327764395924,0.522328693215688,0.5224245362056452,0.5225203053974368,0.5226160007790466,0.5227116223384705,0.5228071700637161,0.5229026439428031,0.5229980439637621,0.5230933701146364,0.5231886223834804,0.5232838007583605,0.5233789052273548,0.523473935778553,0.5235688924000569,0.52366377507998,0.523758583806447,0.5238533185675952,0.5239479793515731,0.5240425661465411,0.5241370789406714,0.5242315177221479,0.5243258824791666,0.5244201731999346,0.5245143898726714,0.524608532485608,0.5247026010269873,0.5247965954850637,0.5248905158481038,0.5249843621043855,0.5250781342421988,0.5251718322498458,0.5252654561156396,0.5253590058279055,0.5254524813749809,0.5255458827452144,0.5256392099269669,0.5257324629086108,0.5258256416785302,0.5259187462251214,0.5260117765367922,0.5261047326019623,0.5261976144090631,0.5262904219465379,0.526383155202842,0.526475814166442,0.5265683988258167,0.5266609091694567,0.5267533451858644,0.5268457068635539,0.526937994191051,0.5270302071568939,0.5271223457496318,0.5272144099578263,0.5273063997700508,0.5273983151748902,0.5274901561609415,0.5275819227168135,0.5276736148311266,0.5277652324925134,0.5278567756896181,0.5279482444110968,0.5280396386456174,0.5281309583818596,0.5282222036085151,0.5283133743142874,0.5284044704878916,0.528495492118055,0.5285864391935166,0.5286773117030272,0.5287681096353494,0.5288588329792578,0.5289494817235388,0.5290400558569908,0.5291305553684237,0.5292209802466595,0.5293113304805322,0.5294016060588873,0.5294918069705826,0.5295819332044873,0.5296719847494827,0.5297619615944622,0.5298518637283306,0.5299416911400049,0.5300314438184138,0.5301211217524981,0.5302107249312105,0.5303002533435149,0.530389706978388,0.530479085824818,0.5305683898718048,0.5306576191083603,0.5307467735235085,0.5308358531062851,0.5309248578457376,0.5310137877309258,0.5311026427509208,0.531191422894806,0.5312801281516767,0.5313687585106398,0.5314573139608145,0.5315457944913317,0.531634200091334,0.5317225307499763,0.5318107864564252,0.5318989671998591,0.5319870729694686,0.5320751037544559,0.5321630595440353,0.532250940327433,0.5323387460938872,0.5324264768326477,0.5325141325329765,0.5326017131841476,0.5326892187754466,0.5327766492961713,0.5328640047356312,0.532951285083148,0.5330384903280551,0.5331256204596978,0.5332126754674337,0.5332996553406317,0.5333865600686736,0.5334733896409519,0.533560144046872,0.533646823275851,0.5337334273173178,0.5338199561607131,0.5339064097954901,0.5339927882111133,0.5340790913970597,0.5341653193428177,0.5342514720378883,0.5343375494717837,0.5344235516340289,0.5345094785141601,0.5345953301017258,0.5346811063862864,0.5347668073574146,0.5348524330046942,0.534937983317722,0.535023458286106,0.5351088578994665,0.5351941821474357,0.5352794310196578,0.5353646045057889,0.5354497025954973,0.5355347252784628,0.5356196725443776,0.5357045443829458,0.5357893407838833,0.5358740617369182,0.5359587072317904,0.536043277258252,0.5361277718060667,0.5362121908650106,0.5362965344248717,0.5363808024754497,0.5364649950065565,0.5365491120080164,0.5366331534696647,0.5367171193813496,0.5368010097329308,0.5368848245142804,0.5369685637152821,0.5370522273258318,0.5371358153358373,0.5372193277352186,0.5373027645139076,0.537386125661848,0.5374694111689958,0.537552621025319,0.5376357552207972,0.5377188137454226,0.537801796589199,0.5378847037421426,0.5379675351942809,0.5380502909356543,0.5381329709563145,0.5382155752463258,0.538298103795764,0.5383805565947174,0.5384629336332859,0.5385452349015817,0.5386274603897289,0.5387096100878638,0.5387916839861344,0.5388736820747011,0.5389556043437361,0.5390374507834238,0.5391192213839604,0.5392009161355545,0.5392825350284263,0.5393640780528083,0.5394455451989449,0.5395269364570929,0.5396082518175209,0.5396894912705094,0.5397706548063509,0.5398517424153504,0.5399327540878247,0.5400136898141025,0.5400945495845246,0.5401753333894442,0.5402560412192262,0.5403366730642476,0.5404172289148976,0.5404977087615772,0.5405781125946999,0.5406584404046908,0.5407386921819872,0.5408188679170388,0.5408989676003069,0.5409789912222651,0.5410589387733991,0.5411388102442064,0.5412186056251971,0.5412983249068928,0.5413779680798274,0.5414575351345472,0.54153702606161,0.541616440851586,0.5416957794950576,0.5417750419826189,0.5418542283048766,0.541933338452449,0.5420123724159666,0.5420913301860721,0.5421702117534205,0.5422490171086783,0.5423277462425247,0.5424063991456506,0.5424849758087591,0.5425634762225655,0.5426419003777971,0.5427202482651933,0.5427985198755055,0.5428767151994975,0.5429548342279449,0.5430328769516356,0.5431108433613694,0.5431887334479585,0.5432665472022269,0.5433442846150108,0.5434219456771587,0.543499530379531,0.5435770387130003,0.5436544706684512,0.5437318262367807,0.5438091054088976,0.5438863081757229,0.5439634345281897,0.5440404844572435,0.5441174579538417,0.5441943550089536,0.544271175613561,0.5443479197586577,0.5444245874352496,0.5445011786343544,0.5445776933470028,0.5446541315642368,0.5447304932771108,0.5448067784766915,0.5448829871540574,0.5449591193002994,0.5450351749065206,0.545111153963836,0.5451870564633727,0.5452628823962704,0.5453386317536804,0.5454143045267663,0.545489900706704,0.5455654202846816,0.5456408632518991,0.5457162295995688,0.5457915193189148,0.5458667324011741,0.5459418688375951,0.5460169286194387,0.5460919117379781,0.5461668181844983,0.5462416479502967,0.5463164010266828,0.546391077404978,0.5464656770765164,0.5465402000326439,0.5466146462647186,0.5466890157641108,0.5467633085222029,0.5468375245303896,0.5469116637800777,0.5469857262626862,0.5470597119696461,0.5471336208924007,0.5472074530224056,0.5472812083511285,0.5473548868700491,0.5474284885706594,0.5475020134444637,0.5475754614829782,0.5476488326777316,0.5477221270202645,0.54779534450213,0.5478684851148928,0.5479415488501306,0.5480145356994326,0.5480874456544007,0.5481602787066484,0.548233034847802,0.5483057140694995,0.5483783163633915,0.5484508417211404,0.5485232901344212,0.5485956615949208,0.5486679560943385,0.5487401736243854,0.5488123141767854,0.548884377743274,0.5489563643155996,0.5490282738855219,0.5491001064448136,0.549171861985259,0.5492435404986553,0.5493151419768114,0.5493866664115483,0.5494581137946997,0.549529484118111,0.5496007773736402,0.5496719935531573,0.5497431326485447,0.5498141946516967,0.5498851795545201,0.5499560873489338,0.550026918026869,0.550097671580269,0.5501683480010894,0.5502389472812981,0.550309469412875,0.5503799143878123,0.5504502821981145,0.5505205728357986,0.5505907862928933,0.5506609225614396,0.5507309816334912,0.5508009635011135,0.5508708681563845,0.5509406955913942,0.551010445798245,0.5510801187690513,0.5511497144959399,0.55121923297105,0.5512886741865327,0.5513580381345518,0.5514273248072825,0.5514965341969132,0.5515656662956443,0.5516347210956878,0.5517036985892687,0.5517725987686238,0.5518414216260026,0.5519101671536661,0.5519788353438886,0.5520474261889555,0.5521159396811655,0.5521843758128286,0.5522527345762678,0.552321015963818,0.5523892199678264,0.5524573465806527,0.5525253957946683,0.5525933676022574,0.5526612619958163,0.5527290789677535,0.5527968185104896,0.5528644806164578,0.5529320652781033,0.552999572487884,0.5530670022382693,0.5531343545217415,0.5532016293307952,0.5532688266579368,0.5533359464956852,0.5534029888365716,0.5534699536731396,0.5535368409979448,0.5536036508035551,0.5536703830825511,0.5537370378275251,0.5538036150310821,0.553870114685839,0.5539365367844256,0.554002881319483,0.5540691482836657,0.5541353376696396,0.5542014494700833,0.5542674836776877,0.5543334402851559,0.554399319285203,0.5544651206705571,0.5545308444339578,0.5545964905681575,0.5546620590659207,0.5547275499200243,0.5547929631232572,0.5548582986684212,0.5549235565483295,0.5549887367558085,0.5550538392836963,0.5551188641248437,0.5551838112721135,0.5552486807183806,0.5553134724565328,0.5553781864794699,0.555442822780104,0.5555073813513594,0.5555718621861728,0.5556362652774932,0.555700590618282,0.5557648382015128,0.5558290080201714,0.5558931000672563,0.5559571143357779,0.5560210508187589,0.5560849095092346,0.5561486904002527,0.5562123934848727,0.5562760187561668,0.5563395662072195,0.5564030358311274,0.5564664276209996,0.5565297415699576,0.5565929776711349,0.5566561359176778,0.5567192163027443,0.5567822188195054,0.5568451434611438,0.5569079902208549,0.5569707590918465,0.5570334500673382,0.5570960631405626,0.5571585983047642,0.5572210555532,0.5572834348791391,0.5573457362758633,0.5574079597366662,0.5574701052548546,0.5575321728237467,0.5575941624366735,0.5576560740869783,0.5577179077680166,0.5577796634731564,0.5578413411957781,0.5579029409292741,0.5579644626670495,0.5580259064025216,0.5580872721291199,0.5581485598402864,0.5582097695294754,0.5582709011901538,0.5583319548158002,0.5583929303999063,0.5584538279359755,0.5585146474175242,0.5585753888380804,0.5586360521911851,0.5586966374703912,0.5587571446692643,0.5588175737813821,0.5588779248003348,0.5589381977197249,0.5589983925331671,0.5590585092342886,0.5591185478167292,0.5591785082741406,0.5592383906001872,0.5592981947885456,0.5593579208329046,0.5594175687269657,0.5594771384644427,0.5595366300390614,0.5595960434445606,0.5596553786746907,0.5597146357232151,0.5597738145839093,0.5598329152505611,0.5598919377169709,0.559950881976951,0.5600097480243267,0.5600685358529353,0.5601272454566264,0.5601858768292622,0.5602444299647172,0.5603029048568782,0.5603613014996442,0.5604196198869272,0.5604778600126509,0.5605360218707516,0.560594105455178,0.5606521107598913,0.560710037778865,0.5607678865060848,0.560825656935549,0.5608833490612681,0.5609409628772652,0.5609984983775758,0.5610559555562472,0.5611133344073398,0.5611706349249262,0.5612278571030913,0.5612850009359321,0.5613420664175585,0.5613990535420925,0.5614559623036686,0.5615127926964334,0.5615695447145465,0.5616262183521791,0.5616828136035155,0.5617393304627517,0.561795768924097,0.5618521289817723,0.5619084106300112,0.5619646138630596,0.5620207386751759,0.5620767850606307,0.5621327530137076,0.5621886425287017,0.562244453599921,0.5623001862216861,0.5623558403883294,0.5624114160941964,0.5624669133336443,0.5625223321010432,0.5625776723907756,0.5626329341972358,0.5626881175148315,0.5627432223379818,0.5627982486611189,0.5628531964786873,0.5629080657851434,0.5629628565749567,0.5630175688426085,0.563072202582593,0.5631267577894167,0.5631812344575982,0.5632356325816688,0.5632899521561721,0.5633441931756642,0.5633983556347135,0.5634524395279011,0.56350644484982,0.5635603715950761,0.5636142197582874,0.5636679893340846,0.5637216803171103,0.5637752927020203,0.5638288264834822,0.5638822816561762,0.5639356582147947,0.5639889561540432,0.564042175468639,0.5640953161533119,0.5641483782028042,0.5642013616118706,0.5642542663752785,0.5643070924878073,0.564359839944249,0.5644125087394081,0.5644650988681014,0.5645176103251582,0.5645700431054202,0.5646223972037417,0.564674672614989,0.5647268693340414,0.56477898735579,0.564831026675139,0.5648829872870043,0.564934869186315,0.5649866723680119,0.5650383968270489,0.5650900425583919,0.5651416095570194,0.5651930978179223,0.5652445073361037,0.5652958381065796,0.565347090124378,0.5653982633845399,0.565449357882118,0.565500373612178,0.5655513105697978,0.5656021687500679,0.5656529481480909,0.5657036487589822,0.5657542705778695,0.5658048135998931,0.5658552778202053,0.5659056632339714,0.5659559698363689,0.5660061976225874,0.5660563465878297,0.5661064167273104,0.5661564080362568,0.5662063205099086,0.5662561541435179,0.5663059089323494,0.5663555848716801,0.5664051819567997,0.5664547001830099,0.5665041395456252,0.5665535000399726,0.5666027816613912,0.5666519844052328,0.5667011082668616,0.5667501532416545,0.5667991193250004,0.5668480065123007,0.5668968147989698,0.5669455441804341,0.5669941946521324,0.5670427662095162,0.5670912588480492,0.567139672563208,0.5671880073504811,0.5672362632053698,0.5672844401233879,0.5673325381000613,0.5673805571309289,0.5674284972115415,0.5674763583374629,0.5675241405042688,0.5675718437075479,0.567619467942901,0.5676670132059414,0.5677144794922949,0.5677618667976001,0.5678091751175075,0.5678564044476805,0.5679035547837947,0.5679506261215381,0.5679976184566118,0.5680445317847285,0.5680913661016138,0.5681381214030059,0.5681847976846552,0.5682313949423247,0.5682779131717897,0.5683243523688384,0.568370712529271,0.5684169936489003,0.5684631957235518,0.5685093187490631,0.5685553627212846,0.5686013276360791,0.5686472134893215,0.5686930202768998,0.5687387479947142,0.5687843966386772,0.5688299662047138,0.5688754566887618,0.5689208680867712,0.5689662003947045,0.5690114536085367,0.5690566277242554,0.5691017227378605,0.5691467386453644,0.5691916754427921,0.569236533126181,0.5692813116915811,0.5693260111350548,0.5693706314526766,0.5694151726405341,0.5694596346947272,0.5695040176113679,0.5695483213865813,0.5695925460165043,0.569636691497287,0.5696807578250915,0.5697247449960924,0.5697686530064769,0.569812481852445,0.5698562315302085,0.5698999020359923,0.5699434933660333,0.5699870055165812,0.5700304384838983,0.570073792264259,0.5701170668539505,0.5701602622492723,0.5702033784465365,0.5702464154420676,0.5702893732322026,0.5703322518132912,0.5703750511816953,0.5704177713337896,0.5704604122659607,0.5705029739746085,0.5705454564561447,0.570587859706994,0.5706301837235932,0.570672428502392,0.5707145940398519,0.5707566803324479,0.5707986873766666,0.5708406151690075,0.5708824637059826,0.5709242329841162,0.5709659229999453,0.5710075337500193,0.5710490652309002,0.5710905174391623,0.5711318903713924,0.5711731840241903,0.5712143983941674,0.5712555334779486,0.5712965892721703,0.5713375657734823,0.5713784629785461,0.5714192808840366,0.5714600194866403,0.5715006787830567,0.5715412587699977,0.5715817594441877,0.5716221808023635,0.5716625228412746,0.571702785557683,0.5717429689483629,0.5717830730101012,0.5718230977396974,0.5718630431339634,0.5719029091897236,0.5719426959038149,0.5719824032730867,0.5720220312944009,0.5720615799646318,0.5721010492806666,0.5721404392394046,0.5721797498377578,0.5722189810726505,0.5722581329410198,0.5722972054398149,0.572336198565998,0.5723751123165437,0.5724139466884386,0.5724527016786825,0.5724913772842869,0.572529973502277,0.5725684903296893,0.5726069277635735,0.5726452858009914,0.5726835644390179,0.5727217636747398,0.5727598835052566,0.5727979239276805,0.572835884939136,0.5728737665367603,0.5729115687177027,0.5729492914791254,0.5729869348182031,0.5730244987321229,0.5730619832180845,0.5730993882733,0.5731367138949939,0.5731739600804036,0.5732111268267785,0.5732482141313809,0.5732852219914857,0.57332215040438,0.5733589993673633,0.5733957688777482,0.5734324589328591,0.5734690695300336,0.5735056006666213,0.5735420523399846,0.5735784245474981,0.5736147172865494,0.5736509305545382,0.573687064348877,0.5737231186669903,0.5737590935063158,0.5737949888643035,0.5738308047384155,0.573866541126127,0.5739021980249253,0.5739377754323104,0.5739732733457948,0.5740086917629037,0.5740440306811743,0.5740792900981566,0.5741144700114136,0.57414957041852,0.5741845913170636,0.5742195327046442,0.5742543945788747,0.5742891769373801,0.5743238797777983,0.5743585030977794,0.5743930468949858,0.5744275111670931,0.5744618959117888,0.5744962011267734,0.5745304268097593,0.5745645729584722,0.5745986395706497,0.5746326266440422,0.5746665341764126,0.5747003621655362,0.574734110609201,0.5747677795052073,0.5748013688513681,0.5748348786455089,0.5748683088854676,0.5749016595690949,0.5749349306942535,0.5749681222588192,0.5750012342606802,0.5750342666977367,0.5750672195679021,0.5751000928691019,0.5751328865992744,0.5751656007563702,0.5751982353383525,0.575230790343197,0.5752632657688921,0.5752956616134384,0.5753279778748492,0.5753602145511503,0.5753923716403803,0.5754244491405899,0.5754564470498423,0.5754883653662137,0.5755202040877924,0.5755519632126793,0.5755836427389881,0.5756152426648447,0.5756467629883875,0.5756782037077677,0.5757095648211488,0.5757408463267069,0.5757720482226307,0.5758031705071214,0.5758342131783925,0.5758651762346704,0.5758960596741936,0.5759268634952135,0.5759575876959939,0.5759882322748111,0.5760187972299537,0.5760492825597234,0.5760796882624339,0.5761100143364115,0.5761402607799953,0.5761704275915367,0.5762005147693996,0.5762305223119606,0.5762604502176086,0.5762902984847453,0.5763200671117846,0.5763497560971533,0.5763793654392906,0.5764088951366477,0.5764383451876893,0.5764677155908917,0.5764970063447445,0.5765262174477492,0.5765553488984201,0.576584400695284,0.5766133728368803,0.576642265321761,0.5766710781484903,0.576699811315645,0.5767284648218147,0.5767570386656016,0.5767855328456196,0.5768139473604961,0.5768422822088708,0.5768705373893953,0.5768987129007346,0.5769268087415657,0.576954824910578,0.5769827614064742,0.5770106182279684,0.5770383953737881,0.5770660928426732,0.5770937106333758,0.5771212487446606,0.5771487071753051,0.5771760859240991,0.577203384989845,0.5772306043713576,0.5772577440674644,0.5772848040770054,0.5773117843988331,0.5773386850318123,0.5773655059748206,0.5773922472267483,0.5774189087864978,0.5774454906529842,0.5774719928251351,0.5774984153018907,0.5775247580822038,0.5775510211650394,0.5775772045493754,0.577603308234202,0.577629332218522,0.5776552765013505,0.5776811410817158,0.5777069259586578,0.5777326311312296,0.5777582565984967,0.5777838023595369,0.5778092684134406,0.577834654759311,0.5778599613962633,0.5778851883234257,0.5779103355399391,0.5779354030449559,0.5779603908376422,0.5779852989171761,0.578010127282748,0.5780348759335612,0.5780595448688315,0.5780841340877871,0.5781086435896687,0.5781330733737295,0.5781574234392355,0.5781816937854649,0.5782058844117084,0.5782299953172697,0.5782540265014645,0.5782779779636211,0.5783018497030807,0.5783256417191966,0.5783493540113349,0.578372986578874,0.578396539421205,0.5784200125377312,0.5784434059278691,0.5784667195910469,0.5784899535267061,0.5785131077343,0.578536182213295,0.5785591769631697,0.578582091983415,0.5786049272735352,0.5786276828330461,0.5786503586614768,0.5786729547583684,0.5786954711232748,0.5787179077557622,0.5787402646554094,0.578762541821808,0.5787847392545618,0.5788068569532872,0.578828894917613,0.578850853147181,0.5788727316416449,0.5788945304006712,0.5789162494239389,0.5789378887111397,0.5789594482619775,0.5789809280761691,0.5790023281534431,0.5790236484935415,0.5790448890962183,0.5790660499612402,0.5790871310883864,0.5791081324774485,0.5791290541282306,0.5791498960405496,0.5791706582142346,0.5791913406491274,0.5792119433450822,0.5792324663019658,0.5792529095196575,0.5792732729980492,0.5792935567370452,0.5793137607365622,0.5793338849965297,0.5793539295168896,0.5793738942975961,0.5793937793386164,0.5794135846399295,0.5794333102015279,0.5794529560234154,0.5794725221056095,0.5794920084481394,0.5795114150510472,0.5795307419143872,0.5795499890382267,0.5795691564226451,0.5795882440677345,0.5796072519735993,0.5796261801403566,0.579645028568136,0.5796637972570798,0.5796824862073424,0.5797010954190909,0.579719624892505,0.5797380746277767,0.5797564446251107,0.5797747348847242,0.5797929454068469,0.579811076191721,0.5798291272396011,0.5798470985507542,0.5798649901254604,0.5798828019640117,0.5799005340667127,0.5799181864338809,0.5799357590658458,0.5799532519629498,0.5799706651255475,0.5799879985540063,0.5800052522487059,0.5800224262100385,0.580039520438409,0.5800565349342346,0.580073469697945,0.5800903247299828,0.5801071000308025,0.5801237956008716,0.5801404114406696,0.5801569475506891,0.5801734039314349,0.5801897805834242,0.5802060775071869,0.5802222947032651,0.580238432172214,0.5802544899146006,0.580270467931005,0.5802863662220192,0.5803021847882484,0.5803179236303098,0.580333582748833,0.5803491621444605,0.5803646618178474,0.5803800817696607,0.5803954220005803,0.5804106825112987,0.5804258633025203,0.580440964374963,0.5804559857293561,0.5804709273664423,0.5804857892869764,0.5805005714917255,0.5805152739814694,0.5805298967570006,0.580544439819124,0.5805589031686565,0.5805732868064283,0.5805875907332815,0.5806018149500709,0.5806159594576639,0.58063002425694,0.5806440093487917,0.5806579147341238,0.5806717404138533,0.5806854863889102,0.5806991526602368,0.5807127392287874,0.5807262460955296,0.5807396732614429,0.5807530207275198,0.5807662884947646,0.5807794765641947,0.5807925849368398,0.5808056136137421,0.5808185625959561,0.5808314318845487,0.5808442214806001,0.5808569313852021,0.5808695615994592,0.5808821121244885,0.5808945829614199,0.5809069741113951,0.5809192855755687,0.580931517355108,0.580943669451192,0.5809557418650132,0.5809677345977756,0.5809796476506967,0.5809914810250054,0.581003234721944,0.5810149087427667,0.5810265030887407,0.5810380177611449,0.5810494527612715,0.5810608080904247,0.5810720837499213,0.5810832797410905,0.5810943960652744,0.5811054327238268,0.5811163897181146,0.5811272670495172,0.5811380647194262,0.5811487827292454,0.5811594210803919,0.5811699797742944,0.5811804588123948,0.5811908581961471,0.5812011779270176,0.5812114180064856,0.5812215784360424,0.581231659217192,0.5812416603514508,0.5812515818403475,0.5812614236854238,0.5812711858882333,0.5812808684503425,0.58129047137333,0.5812999946587873,0.5813094383083178,0.5813188023235378,0.5813280867060759,0.5813372914575734,0.5813464165796836,0.5813554620740728,0.5813644279424195,0.5813733141864145,0.5813821208077613,0.581390847808176,0.5813994951893866,0.5814080629531344,0.5814165511011724,0.5814249596352664,0.5814332885571947,0.5814415378687481,0.5814497075717293,0.5814577976679545,0.5814658081592513,0.5814737390474606,0.581481590334435,0.5814893620220402,0.581497054112154,0.5815046666066669,0.5815121995074816,0.5815196528165134,0.5815270265356898,0.5815343206669514,0.5815415352122507,0.5815486701735526,0.5815557255528349,0.5815627013520874,0.5815695975733126,0.5815764142185254,0.5815831512897534,0.5815898087890359,0.5815963867184256,0.581602885079987,0.5816093038757972,0.5816156431079462,0.5816219027785354,0.5816280828896798,0.5816341834435061,0.581640204442154,0.5816461458877749,0.5816520077825333,0.581657790128606,0.5816634929281821,0.5816691161834631,0.5816746598966631,0.5816801240700087,0.5816855087057387,0.5816908138061048,0.5816960393733703,0.5817011854098117,0.581706251917718,0.5817112388993899,0.581716146357141,0.5817209742932976,0.581725722710198,0.581730391610193,0.581734980995646,0.5817394908689328,0.5817439212324416,0.5817482720885727,0.5817525434397395,0.5817567352883676,0.5817608476368945,0.5817648804877709,0.5817688338434592,0.581772707706435,0.5817765020791857,0.5817802169642116,0.5817838523640249,0.5817874082811507,0.5817908847181263,0.5817942816775015,0.5817975991618385,0.581800837173712,0.5818039957157088,0.5818070747904287,0.5818100744004833,0.5818129945484971,0.5818158352371068,0.5818185964689613,0.5818212782467227,0.5818238805730647,0.5818264034506735,0.5818288468822485,0.5818312108705003,0.581833495418153,0.5818357005279428,0.5818378262026176,0.581839872444939,0.5818418392576798,0.581843726643626,0.581845534605576,0.5818472631463398,0.5818489122687407,0.5818504819756143,0.5818519722698079,0.5818533831541821,0.5818547146316091,0.5818559667049745,0.5818571393771754,0.5818582326511217,0.5818592465297354,0.5818601810159516,0.5818610361127171,0.5818618118229913,0.5818625081497462,0.581863125095966,0.5818636626646474,0.5818641208587993,0.5818644996814436,0.5818647991356136,0.581865019224356,0.5818651599507291,0.5818652213178042,0.5818652033286649,0.5818651059864065,0.5818649292941378,0.5818646732549793,0.5818643378720638,0.581863923148537,0.5818634290875564,0.5818628556922927,0.5818622029659279,0.5818614709116575,0.5818606595326887,0.5818597688322412,0.5818587988135472,0.5818577494798511,0.58185662083441,0.5818554128804934,0.5818541256213825,0.5818527590603718,0.5818513132007674,0.5818497880458886,0.5818481835990661,0.5818464998636439,0.581844736842978,0.5818428945404364,0.5818409729594003,0.5818389721032624,0.5818368919754283,0.5818347325793161,0.5818324939183559,0.5818301759959903,0.5818277788156743,0.5818253023808753,0.581822746695073,0.5818201117617594,0.5818173975844393,0.5818146041666292,0.5818117315118587,0.5818087796236691,0.5818057485056143,0.5818026381612608,0.5817994485941872,0.5817961798079846,0.5817928318062564,0.5817894045926184,0.5817858981706987,0.5817823125441377,0.5817786477165884,0.581774903691716,0.5817710804731981,0.5817671780647246,0.5817631964699976,0.5817591356927323,0.5817549957366552,0.5817507766055057,0.5817464783030357,0.5817421008330093,0.5817376441992026,0.5817331084054047,0.5817284934554166,0.5817237993530517,0.581719026102136,0.5817141737065075,0.581709242170017,0.5817042314965268,0.5816991416899127,0.5816939727540618,0.5816887246928744,0.5816833975102622,0.5816779912101504,0.5816725057964753,0.581666941273187,0.5816612976442461,0.5816555749136272,0.5816497730853164,0.5816438921633125,0.5816379321516258,0.5816318930542804,0.5816257748753114,0.5816195776187669,0.5816133012887073,0.5816069458892048,0.5816005114243448,0.5815939978982245,0.5815874053149532,0.5815807336786532,0.5815739829934583,0.5815671532635156,0.5815602444929836,0.5815532566860337,0.5815461898468496,0.5815390439796269,0.5815318190885739,0.5815245151779111,0.5815171322518714,0.5815096703146998,0.581502129370654,0.5814945094240038,0.581486810479031,0.5814790325400301,0.581471175611308,0.5814632396971836,0.5814552248019884,0.581447130930066,0.5814389580857722,0.5814307062734756,0.5814223754975565,0.581413965762408,0.5814054770724353,0.5813969094320557,0.5813882628456992,0.5813795373178079,0.5813707328528364,0.5813618494552509,0.581352887129531,0.5813438458801677,0.5813347257116648,0.5813255266285381,0.5813162486353158,0.5813068917365385,0.5812974559367589,0.5812879412405421,0.5812783476524657,0.5812686751771191,0.5812589238191046,0.5812490935830361,0.5812391844735403,0.5812291964952562,0.5812191296528348,0.5812089839509396,0.581198759394246,0.5811884559874423,0.5811780737352288,0.5811676126423178,0.5811570727134341,0.5811464539533151,0.5811357563667099,0.5811249799583804,0.5811141247331005,0.5811031906956563,0.5810921778508464,0.5810810862034814,0.5810699157583845,0.581058666520391,0.5810473384943485,0.5810359316851168,0.5810244460975679,0.5810128817365863,0.5810012386070686,0.5809895167139238,0.5809777160620733,0.5809658366564501,0.5809538785020001,0.5809418416036812,0.5809297259664639,0.5809175315953303,0.5809052584952754,0.5808929066713061,0.5808804761284418,0.5808679668717139,0.5808553789061661,0.5808427122368547,0.5808299668688476,0.5808171428072255,0.5808042400570814,0.5807912586235198,0.5807781985116586,0.5807650597266267,0.5807518422735665,0.5807385461576314,0.580725171383988,0.5807117179578147,0.5806981858843022,0.5806845751686536,0.5806708858160841,0.5806571178318208,0.5806432712211039,0.5806293459891851,0.5806153421413284,0.5806012596828104,0.5805870986189197,0.580572858954957,0.5805585406962357,0.5805441438480807,0.5805296684158299,0.5805151144048329,0.5805004818204518,0.5804857706680606,0.580470980953046,0.5804561126808063,0.580441165856753,0.5804261404863085,0.5804110365749087,0.5803958541280008,0.5803805931510446,0.5803652536495123,0.580349835628888,0.5803343390946678,0.5803187640523607,0.5803031105074874,0.5802873784655809,0.5802715679321866,0.5802556789128616,0.5802397114131759,0.5802236654387112,0.5802075409950616,0.5801913380878335,0.5801750567226451,0.5801586969051276,0.5801422586409232,0.5801257419356873,0.5801091467950874,0.5800924732248025,0.5800757212305248,0.5800588908179576,0.5800419819928172,0.5800249947608319,0.5800079291277421,0.5799907850993005,0.5799735626812718,0.5799562618794328,0.5799388826995732,0.5799214251474938,0.5799038892290086,0.579886274949943,0.5798685823161351,0.5798508113334349,0.5798329620077048,0.5798150343448192,0.5797970283506645,0.5797789440311398,0.5797607813921559,0.5797425404396361,0.5797242211795155,0.5797058236177419,0.5796873477602745,0.5796687936130855,0.5796501611821588,0.5796314504734905,0.579612661493089,0.5795937942469748,0.5795748487411803,0.5795558249817505,0.5795367229747423,0.5795175427262251,0.5794982842422798,0.5794789475289999,0.5794595325924912,0.5794400394388712,0.5794204680742698,0.5794008185048294,0.5793810907367039,0.5793612847760594,0.5793414006290749,0.5793214383019407,0.5793013978008597,0.5792812791320467,0.579261082301729,0.5792408073161455,0.5792204541815478,0.5792000229041991,0.5791795134903754,0.5791589259463641,0.5791382602784653,0.5791175164929909,0.579096694596265,0.5790757945946242,0.5790548164944166,0.5790337603020028,0.5790126260237556,0.5789914136660594,0.5789701232353116,0.5789487547379211,0.5789273081803088,0.5789057835689084,0.578884180910165,0.5788625002105361,0.5788407414764914,0.5788189047145127,0.5787969899310939,0.5787749971327408,0.5787529263259716,0.5787307775173165,0.578708550713318,0.57868624592053,0.5786638631455194,0.5786414023948647,0.5786188636751566,0.5785962469929982,0.578573552355004,0.5785507797678012,0.578527929238029,0.5785050007723386,0.5784819943773933,0.5784589100598684,0.5784357478264515,0.5784125076838424,0.5783891896387524,0.5783657936979056,0.5783423198680375,0.5783187681558963,0.5782951385682422,0.5782714311118469,0.5782476457934949,0.5782237826199822,0.5781998415981175,0.5781758227347209,0.5781517260366252,0.5781275515106749,0.5781032991637266,0.5780789690026491,0.578054561034323,0.5780300752656413,0.5780055117035091,0.5779808703548432,0.577956151226573,0.577931354325639,0.577906479658995,0.5778815272336061,0.5778564970564495,0.5778313891345148,0.5778062034748032,0.5777809400843282,0.5777555989701155,0.5777301801392027,0.5777046835986397,0.5776791093554876,0.5776534574168204,0.5776277277897242,0.5776019204812965,0.5775760354986474,0.5775500728488987,0.5775240325391844,0.5774979145766506,0.5774717189684554,0.5774454457217687,0.577419094843773,0.577392666341662,0.5773661602226421,0.5773395764939315,0.5773129151627607,0.5772861762363719,0.5772593597220191,0.5772324656269692,0.5772054939585001,0.5771784447239023,0.5771513179304784,0.5771241135855428,0.5770968316964218,0.5770694722704541,0.5770420353149899,0.577014520837392,0.5769869288450349,0.5769592593453048,0.5769315123456007,0.5769036878533331,0.5768757858759241,0.5768478064208087,0.5768197494954337,0.576791615107257,0.5767634032637495,0.576735113972394,0.5767067472406847,0.5766783030761287,0.576649781486244,0.5766211824785615,0.5765925060606237,0.5765637522399851,0.5765349210242123,0.576506012420884,0.5764770264375904,0.5764479630819341,0.5764188223615297,0.5763896042840038,0.5763603088569944,0.5763309360881524,0.5763014859851401,0.5762719585556315,0.5762423538073136,0.5762126717478844,0.5761829123850541,0.5761530757265453,0.5761231617800922,0.5760931705534404,0.576063102054349,0.5760329562905877,0.5760027332699387,0.575972433000196,0.5759420554891657,0.5759116007446656,0.5758810687745262,0.5758504595865888,0.5758197731887076,0.5757890095887482,0.5757581687945887,0.5757272508141185,0.5756962556552395,0.5756651833258651,0.5756340338339211,0.5756028071873449,0.5755715033940857,0.5755401224621051,0.5755086643993766,0.5754771292138852,0.5754455169136282,0.5754138275066149,0.575382061000866,0.5753502174044147,0.5753182967253059,0.5752862989715964,0.5752542241513552,0.5752220722726626,0.5751898433436117,0.5751575373723068,0.5751251543668644,0.5750926943354129,0.5750601572860925,0.5750275432270556,0.5749948521664664,0.5749620841125005,0.5749292390733464,0.5748963170572037,0.5748633180722843,0.5748302421268114,0.5747970892290213,0.5747638593871612,0.5747305526094906,0.5746971689042807,0.5746637082798143,0.5746301707443869,0.5745965563063056,0.5745628649738891,0.5745290967554681,0.5744952516593854,0.5744613296939955,0.5744273308676648,0.5743932551887716,0.5743591026657062,0.5743248733068704,0.5742905671206787,0.5742561841155565,0.5742217242999417,0.5741871876822838,0.574152574271044,0.5741178840746963,0.5740831171017257,0.5740482733606291,0.5740133528599153,0.5739783556081055,0.5739432816137322,0.57390813088534,0.5738729034314851,0.5738375992607361,0.573802218381673,0.5737667608028877,0.5737312265329839,0.5736956155805777,0.5736599279542962,0.5736241636627791,0.5735883227146775,0.5735524051186546,0.573516410883385,0.5734803400175558,0.5734441925298654,0.5734079684290244,0.5733716677237551,0.5733352904227916,0.5732988365348798,0.5732623060687774,0.5732256990332543,0.5731890154370918,0.573152255289083,0.5731154185980333,0.5730785053727594,0.5730415156220902,0.5730044493548662,0.5729673065799398,0.5729300873061753,0.5728927915424487,0.5728554192976478,0.5728179705806721,0.5727804454004334,0.5727428437658547,0.5727051656858714,0.5726674111694299,0.5726295802254892,0.5725916728630198,0.572553689091004,0.5725156289184359,0.5724774923543211,0.5724392794076778,0.5724009900875352,0.5723626244029345,0.5723241823629288,0.572285663976583,0.5722470692529739,0.5722083982011898,0.5721696508303308,0.5721308271495087,0.5720919271678481,0.5720529508944834,0.5720138983385631,0.5719747695092454,0.5719355644157014,0.5718962830671139,0.5718569254726773,0.5718174916415978,0.5717779815830932,0.5717383953063933,0.5716987328207397,0.5716589941353856,0.5716191792595958,0.5715792882026471,0.5715393209738281,0.571499277582439,0.5714591580377921,0.5714189623492106,0.5713786905260307,0.5713383425775991,0.571297918513275,0.5712574183424293,0.5712168420744442,0.5711761897187142,0.5711354612846451,0.5710946567816547,0.5710537762191725,0.5710128196066394,0.5709717869535086,0.5709306782692444,0.5708894935633235,0.570848232845234,0.5708068961244755,0.5707654834105597,0.5707239947130095,0.5706824300413602,0.5706407894051585,0.5705990728139626,0.570557280277343,0.5705154118048809,0.5704734674061703,0.5704314470908163,0.5703893508684359,0.5703471787486577,0.5703049307411221,0.5702626068554812,0.5702202071013988,0.57017773148855,0.5701351800266221,0.5700925527253142,0.5700498495943367,0.5700070706434115,0.569964215882273,0.5699212853206664,0.5698782789683492,0.5698351968350902,0.5697920389306702,0.5697488052648813,0.5697054958475276,0.5696621106884249,0.5696186497974003,0.5695751131842931,0.5695315008589538,0.5694878128312445,0.5694440491110394,0.5694002097082246,0.5693562946326967,0.5693123038943653,0.5692682375031506,0.569224095468985,0.5691798778018129,0.5691355845115894,0.569091215608282,0.5690467711018695,0.5690022510023426,0.5689576553197034,0.5689129840639657,0.5688682372451553,0.5688234148733089,0.5687785169584755,0.5687335435107154,0.5686884945401006,0.568643370056715,0.5685981700706536,0.5685528945920236,0.5685075436309436,0.5684621171975431,0.5684166153019647,0.5683710379543615,0.5683253851648985,0.5682796569437524,0.5682338533011112,0.5681879742471752,0.5681420197921558,0.5680959899462756,0.5680498847197702,0.5680037041228851,0.5679574481658785,0.5679111168590201,0.5678647102125907,0.5678182282368832,0.5677716709422019,0.5677250383388625,0.5676783304371927,0.5676315472475315,0.5675846887802295,0.5675377550456493,0.5674907460541642,0.5674436618161599,0.5673965023420334,0.5673492676421932,0.5673019577270595,0.567254572607064,0.5672071122926501,0.5671595767942726,0.5671119661223978,0.5670642802875038,0.56701651930008,0.5669686831706279,0.5669207719096602,0.5668727855277006,0.5668247240352853,0.5667765874429616,0.5667283757612884,0.566680089000836,0.5666317271721868,0.5665832902859339,0.5665347783526827,0.5664861913830498,0.5664375293876631,0.5663887923771628,0.5663399803622,0.5662910933534373,0.5662421313615491,0.5661930943972211,0.5661439824711508,0.5660947955940474,0.5660455337766311,0.5659961970296339,0.5659467853637988,0.5658972987898817,0.5658477373186485,0.5657981009608773,0.5657483897273579,0.565698603628891,0.5656487426762894,0.565598806880377,0.5655487962519895,0.565498710801974,0.5654485505411889,0.5653983154805045,0.5653480056308022,0.565297621002975,0.5652471616079278,0.5651966274565762,0.5651460185598479,0.5650953349286822,0.5650445765740293,0.5649937435068514,0.5649428357381217,0.5648918532788253,0.5648407961399584,0.5647896643325293,0.5647384578675574,0.5646871767560729,0.5646358210091188,0.5645843906377486,0.5645328856530273,0.564481306066032,0.5644296518878507,0.564377923129583,0.5643261198023399,0.5642742419172442,0.5642222894854294,0.5641702625180415,0.5641181610262371,0.5640659850211843,0.5640137345140632,0.5639614095160649,0.563909010038392,0.5638565360922587,0.5638039876888903,0.563751364839524,0.563698667555408,0.5636458958478021,0.563593049727978,0.5635401292072173,0.5634871342968152,0.5634340650080767,0.5633809213523185,0.5633277033408697,0.5632744109850694,0.5632210442962688,0.5631676032858308,0.5631140879651289,0.563060498345549,0.5630068344384876,0.562953096255353,0.5628992838075646,0.5628453971065539,0.5627914361637628,0.5627374009906451,0.5626832915986661,0.5626291079993024,0.5625748502040417,0.562520518224384,0.562466112071839,0.5624116317579297,0.562357077294189,0.5623024486921621,0.562247745963405,0.5621929691194855,0.5621381181719823,0.5620831931324859,0.5620281940125977,0.5619731208239314,0.5619179735781108,0.561862752286772,0.5618074569615618,0.5617520876141391,0.5616966442561736,0.5616411268993465,0.5615855355553504,0.5615298702358891,0.5614741309526775,0.5614183177174429,0.5613624305419228,0.5613064694378664,0.5612504344170343,0.5611943254911985,0.5611381426721422,0.5610818859716601,0.561025555401558,0.5609691509736532,0.5609126726997743,0.5608561205917607,0.5607994946614642,0.5607427949207472,0.5606860213814833,0.5606291740555575,0.5605722529548668,0.5605152580913184,0.5604581894768317,0.5604010471233369,0.5603438310427756,0.5602865412471008,0.560229177748277,0.5601717405582792,0.5601142296890946,0.5600566451527217,0.5599989869611691,0.5599412551264581,0.5598834496606203,0.559825570575699,0.5597676178837493,0.5597095915968363,0.5596514917270373,0.5595933182864409,0.5595350712871465,0.559476750741265,0.5594183566609188,0.5593598890582409,0.5593013479453763,0.5592427333344808,0.559184045237722,0.5591252836672777,0.5590664486353379,0.5590075401541039,0.5589485582357873,0.5588895028926119,0.5588303741368124,0.5587711719806345,0.5587118964363356,0.5586525475161839,0.5585931252324592,0.5585336295974525,0.5584740606234656,0.5584144183228118,0.5583547027078162,0.5582949137908138,0.558235051584152,0.5581751161001889,0.5581151073512941,0.5580550253498482,0.5579948701082428,0.5579346416388812,0.5578743399541776,0.5578139650665578,0.557753516988458,0.557692995732326,0.5576324013106211,0.5575717337358136,0.5575109930203849,0.5574501791768277,0.5573892922176458,0.557328332155354,0.5572672990024792,0.5572061927715579,0.557145013475139,0.5570837611257824,0.5570224357360589,0.556961037318551,0.5568995658858511,0.5568380214505642,0.5567764040253059,0.5567147136227028,0.5566529502553926,0.5565911139360251,0.5565292046772597,0.5564672224917684,0.5564051673922333,0.5563430393913483,0.5562808385018184,0.556218564736359,0.5561562181076978,0.5560937986285728,0.5560313063117336,0.5559687411699406,0.555906103215965,0.5558433924625903,0.5557806089226102,0.5557177526088296,0.5556548235340648,0.5555918217111431,0.5555287471529028,0.5554655998721937,0.5554023798818759,0.5553390871948216,0.5552757218239137,0.5552122837820459,0.5551487730821234,0.5550851897370623,0.5550215337597902,0.5549578051632452,0.5548940039603766,0.5548301301641453,0.5547661837875227,0.5547021648434917,0.554638073345046,0.5545739093051907,0.5545096727369417,0.554445363653326,0.5543809820673817,0.5543165279921582,0.5542520014407158,0.5541874024261256,0.5541227309614705,0.5540579870598433,0.553993170734349,0.5539282819981035,0.5538633208642328,0.5537982873458751,0.553733181456179,0.5536680032083042,0.5536027526154222,0.5535374296907141,0.5534720344473733,0.5534065668986037,0.5533410270576204,0.5532754149376493,0.553209730551928,0.5531439739137041,0.5530781450362372,0.5530122439327969,0.5529462706166651,0.5528802251011338,0.552814107399506,0.552747917525096,0.5526816554912297,0.5526153213112428,0.5525489149984828,0.552482436566308,0.5524158860280876,0.5523492633972024,0.5522825686870432,0.5522158019110123,0.5521489630825235,0.5520820522150006,0.5520150693218794,0.5519480144166056,0.551880887512637,0.5518136886234416,0.5517464177624986,0.5516790749432982,0.5516116601793418,0.5515441734841412,0.55147661487122,0.5514089843541118,0.5513412819463622,0.5512735076615266,0.5512056615131724,0.5511377435148774,0.5510697536802307,0.5510016920228317,0.5509335585562917,0.550865353294232,0.5507970762502856,0.5507287274380962,0.5506603068713181,0.5505918145636169,0.550523250528669,0.550454614780162,0.550385907331794,0.5503171281972743,0.5502482773903231,0.5501793549246715,0.5501103608140615,0.550041295072246,0.5499721577129887,0.5499029487500647,0.5498336681972594,0.5497643160683693,0.5496948923772021,0.5496253971375761,0.5495558303633206,0.5494861920682759,0.5494164822662927,0.5493467009712333,0.5492768481969704,0.549206923957388,0.5491369282663805,0.5490668611378533,0.5489967225857232,0.5489265126239173,0.5488562312663736,0.5487858785270412,0.54871545441988,0.5486449589588607,0.548574392157965,0.5485037540311856,0.5484330445925256,0.5483622638559992,0.5482914118356315,0.5482204885454585,0.548149493999527,0.5480784282118945,0.5480072911966293,0.5479360829678108,0.5478648035395295,0.547793452925886,0.5477220311409922,0.5476505381989708,0.5475789741139552,0.5475073389000896,0.5474356325715296,0.5473638551424406,0.5472920066269996,0.5472200870393942,0.5471480963938228,0.5470760347044943,0.5470039019856294,0.5469316982514583,0.5468594235162231,0.5467870777941758,0.5467146610995799,0.5466421734467095,0.546569614849849,0.5464969853232944,0.5464242848813523,0.5463515135383392,0.5462786713085837,0.5462057582064243,0.5461327742462103,0.5460597194423026,0.5459865938090718,0.5459133973608997,0.5458401301121792,0.5457667920773138,0.5456933832707173,0.5456199037068148,0.5455463534000418,0.5454727323648448,0.5453990406156811,0.5453252781670187,0.5452514450333359,0.5451775412291222,0.5451035667688778,0.5450295216671139,0.5449554059383517,0.544881219597124,0.5448069626579733,0.5447326351354541,0.5446582370441302,0.5445837683985776,0.5445092292133819,0.54443461950314,0.5443599392824591,0.5442851885659573,0.544210367368264,0.5441354757040182,0.5440605135878704,0.5439854810344813,0.5439103780585229,0.5438352046746775,0.5437599608976379,0.5436846467421085,0.5436092622228028,0.5435338073544468,0.5434582821517756,0.5433826866295361,0.5433070208024856,0.5432312846853916,0.5431554782930326,0.5430796016401983,0.5430036547416878,0.5429276376123122,0.5428515502668926,0.5427753927202605,0.542699164987259,0.5426228670827407,0.5425464990215695,0.5424700608186201,0.5423935524887776,0.5423169740469375,0.5422403255080064,0.5421636068869011,0.5420868181985496,0.5420099594578899,0.5419330306798712,0.5418560318794527,0.5417789630716047,0.5417018242713084,0.5416246154935547,0.5415473367533458,0.5414699880656947,0.541392569445624,0.5413150809081682,0.5412375224683713,0.5411598941412887,0.541082195941986,0.5410044278855395,0.540926589987036,0.540848682261573,0.5407707047242587,0.5406926573902117,0.5406145402745609,0.5405363533924463,0.5404580967590189,0.5403797703894386,0.5403013742988776,0.5402229085025182,0.5401443730155524,0.5400657678531842,0.5399870930306268,0.5399083485631049,0.5398295344658534,0.5397506507541175,0.5396716974431537,0.5395926745482281,0.5395135820846183,0.5394344200676118,0.5393551885125066,0.5392758874346115,0.5391965168492463,0.53911707677174,0.5390375672174336,0.5389579882016777,0.5388783397398338,0.5387986218472738,0.53871883453938,0.5386389778315455,0.5385590517391737,0.5384790562776788,0.5383989914624852,0.5383188573090275,0.5382386538327517,0.5381583810491134,0.5380780389735794,0.5379976276216264,0.5379171470087425,0.537836597150425,0.5377559780621827,0.537675289759534,0.537594532258009,0.5375137055731474,0.5374328097204993,0.5373518447156259,0.5372708105740981,0.5371897073114982,0.5371085349434179,0.5370272934854602,0.5369459829532381,0.5368646033623755,0.5367831547285061,0.5367016370672747,0.536620050394336,0.5365383947253555,0.5364566700760093,0.536374876461983,0.5362930138989741,0.5362110824026893,0.5361290819888463,0.5360470126731729,0.5359648744714081,0.5358826673993,0.5358003914726084,0.5357180467071028,0.5356356331185631,0.5355531507227802,0.5354705995355549,0.5353879795726982,0.5353052908500321,0.5352225333833889,0.5351397071886107,0.5350568122815506,0.5349738486780719,0.5348908163940483,0.5348077154453639,0.5347245458479127,0.5346413076176003,0.5345580007703414,0.5344746253220618,0.534391181288697,0.5343076686861938,0.5342240875305089,0.534140437837609,0.5340567196234717,0.5339729329040845,0.533889077695446,0.5338051540135643,0.5337211618744584,0.533637101294157,0.5335529722887001,0.5334687748741375,0.5333845090665291,0.5333001748819455,0.5332157723364676,0.5331313014461864,0.5330467622272034,0.5329621546956305,0.5328774788675898,0.532792734759214,0.5327079223866454,0.5326230417660373,0.5325380929135528,0.5324530758453659,0.5323679905776605,0.5322828371266308,0.5321976155084813,0.532112325739427,0.5320269678356929,0.5319415418135146,0.5318560476891376,0.5317704854788183,0.5316848551988227,0.5315991568654272,0.5315133904949189,0.5314275561035945,0.5313416537077621,0.5312556833237386,0.531169644967852,0.531083538656441,0.5309973644058533,0.530911122232448,0.5308248121525937,0.5307384341826699,0.5306519883390656,0.5305654746381805,0.5304788930964247,0.5303922437302182,0.5303055265559914,0.5302187415901847,0.5301318888492488,0.530044968349645,0.5299579801078443,0.5298709241403281,0.5297838004635884,0.5296966090941269,0.5296093500484557,0.5295220233430968,0.5294346289945829,0.5293471670194566,0.5292596374342711,0.5291720402555891,0.5290843754999841,0.5289966431840393,0.5289088433243487,0.5288209759375159,0.5287330410401545,0.5286450386488893,0.5285569687803545,0.5284688314511945,0.528380626678064,0.5282923544776279,0.5282040148665611,0.5281156078615488,0.5280271334792864,0.5279385917364792,0.5278499826498428,0.5277613062361032,0.5276725625119962,0.5275837514942678,0.5274948731996741,0.5274059276449818,0.527316914846967,0.527227834822416,0.5271386875881263,0.527049473160904,0.5269601915575665,0.5268708427949406,0.5267814268898633,0.5266919438591824,0.5266023937197549,0.5265127764884482,0.5264230921821403,0.5263333408177187,0.526243522412081,0.5261536369821352,0.5260636845447997,0.5259736651170018,0.52588357871568,0.5257934253577825,0.5257032050602675,0.5256129178401036,0.5255225637142692,0.5254321426997525,0.5253416548135523,0.5252511000726773,0.5251604784941458,0.5250697900949871,0.5249790348922398,0.5248882129029523,0.5247973241441841,0.5247063686330039,0.5246153463864905,0.5245242574217333,0.524433101755831,0.524341879405893,0.5242505903890382,0.5241592347223956,0.5240678124231046,0.5239763235083144,0.5238847679951839,0.5237931459008827,0.5237014572425897,0.5236097020374941,0.5235178803027956,0.523425992055703,0.5233340373134356,0.5232420160932227,0.5231499284123035,0.523057774287927,0.5229655537373525,0.5228732667778494,0.5227809134266965,0.5226884937011833,0.5225960076186088,0.5225034551962816,0.5224108364515212,0.5223181514016568,0.522225400064027,0.5221325824559806,0.5220396985948766,0.521946748498084,0.5218537321829816,0.5217606496669579,0.5216675009674117,0.5215742861017516,0.5214810050873961,0.5213876579417737,0.5212942446823228,0.5212007653264915,0.5211072198917386,0.5210136083955319,0.5209199308553493,0.5208261872886792,0.5207323777130194,0.5206385021458778,0.5205445606047719,0.5204505531072294,0.5203564796707882,0.5202623403129955,0.5201681350514082,0.5200738639035942,0.5199795268871301,0.5198851240196034,0.5197906553186104,0.5196961208017581,0.5196015204866633,0.5195068543909521,0.5194121225322612,0.5193173249282367,0.5192224615965345,0.519127532554821,0.5190325378207717,0.5189374774120722,0.5188423513464181,0.5187471596415147,0.5186519023150772,0.5185565793848307,0.5184611908685101,0.5183657367838598,0.5182702171486346,0.5181746319805989,0.5180789812975268,0.5179832651172022,0.5178874834574192,0.517791636335981,0.5176957237707016,0.5175997457794037,0.5175037023799208,0.5174075935900956,0.5173114194277806,0.5172151799108385,0.5171188750571416,0.5170225048845716,0.5169260694110206,0.5168295686543902,0.5167330026325916,0.5166363713635461,0.5165396748651848,0.5164429131554482,0.516346086252287,0.5162491941736609,0.5161522369375403,0.5160552145619052,0.5159581270647448,0.5158609744640584,0.515763756777855,0.5156664740241534,0.5155691262209823,0.5154717133863793,0.5153742355383931,0.5152766926950813,0.5151790848745109,0.5150814120947595,0.5149836743739139,0.5148858717300704,0.5147880041813354,0.5146900717458254,0.5145920744416657,0.5144940122869919,0.5143958852999491,0.5142976934986924,0.5141994369013858,0.514101115526204,0.514002729391331,0.5139042785149601,0.5138057629152947,0.5137071826105479,0.5136085376189423,0.5135098279587105,0.5134110536480938,0.5133122147053446,0.5132133111487241,0.5131143429965029,0.5130153102669623,0.5129162129783922,0.5128170511490925,0.512717824797373,0.512618533941553,0.5125191785999613,0.5124197587909366,0.5123202745328272,0.5122207258439904,0.5121211127427941,0.5120214352476151,0.5119216933768403,0.5118218871488658,0.5117220165820977,0.5116220816949515,0.5115220825058525,0.5114220190332354,0.5113218912955442,0.5112216993112331,0.511121443098766,0.5110211226766155,0.5109207380632648,0.5108202892772058,0.5107197763369407,0.5106191992609811,0.5105185580678477,0.5104178527760714,0.5103170834041924,0.5102162499707604,0.5101153524943348,0.5100143909934844,0.509913365486788,0.5098122759928333,0.5097111225302179,0.509609905117549,0.5095086237734434,0.5094072785165271,0.5093058693654356,0.5092043963388149,0.5091028594553187,0.5090012587336126,0.5088995941923697,0.5087978658502734,0.5086960737260171,0.5085942178383025,0.508492298205842,0.5083903148473569,0.5082882677815782,0.5081861570272463,0.5080839826031112,0.507981744527932,0.5078794428204781,0.5077770774995278,0.5076746485838689,0.5075721560922984,0.5074696000436238,0.5073669804566614,0.5072642973502364,0.5071615507431847,0.5070587406543509,0.5069558671025888,0.5068529301067626,0.5067499296857448,0.5066468658584187,0.506543738643676,0.5064405480604179,0.5063372941275556,0.5062339768640094,0.5061305962887088,0.5060271524205937,0.505923645278612,0.505820074881722,0.5057164412488913,0.5056127443990965,0.5055089843513243,0.5054051611245705,0.5053012747378397,0.5051973252101468,0.5050933125605158,0.5049892368079798,0.5048850979715818,0.5047808960703737,0.5046766311234172,0.5045723031497833,0.5044679121685516,0.5043634581988127,0.504258941259665,0.5041543613702172,0.5040497185495869,0.5039450128169015,0.5038402441912972,0.50373541269192,0.503630518337925,0.5035255611484772,0.5034205411427501,0.5033154583399271,0.5032103127592007,0.5031051044197727,0.5029998333408549,0.5028944995416673,0.5027891030414403,0.5026836438594129,0.5025781220148338,0.5024725375269606,0.5023668904150612,0.5022611806984114,0.5021554083962974,0.502049573528014,0.5019436761128662,0.5018377161701671,0.5017316937192402,0.5016256087794175,0.5015194613700409,0.5014132515104609,0.5013069792200381,0.5012006445181416,0.5010942474241502,0.5009877879574521,0.5008812661374442,0.5007746819835334,0.5006680355151352,0.5005613267516746,0.5004545557125861,0.500347722417313,0.5002408268853081,0.5001338691360337,0.5000268491889609,0.4999197670635699,0.49981262277935107,0.4997054163558028,0.49959814781243345,0.4994908171687606,0.49938342444431044,0.4992759696586195,0.49916845283123223,0.499060873981703,0.49895323312959555,0.4988455302944823,0.4987377654959453,0.4986299387535753,0.4985220500869727,0.49841409951574717,0.49830608705951696,0.49819801273791026,0.4980898765705637,0.49798167857712355,0.49787341877724517,0.4977650971905932,0.49765671383684096,0.4975482687356716,0.4974397619067768,0.49733119336985815,0.4972225631446254,0.49711387125079814,0.497005117708105,0.49689630253628386,0.49678742575508106,0.49667848738425313,0.4965694874435648,0.49646042595279055,0.49635130293171353,0.49624211840012605,0.4961328723778303,0.49602356488463645,0.4959141959403644,0.4958047655648432,0.4956952737779106,0.495585720599414,0.49547610604920955,0.49536643014716253,0.4952566929131471,0.495146894367047,0.4950370345287547,0.49492711341817175,0.4948171310552087,0.49470708745978575,0.49459698265183116,0.49448681665128336,0.4943765894780891,0.4942663011522042,0.4941559516935941,0.4940455411222325,0.493935069458103,0.49382453672119736,0.49371394293151705,0.49360328810907217,0.4934925722738823,0.4933817954459756,0.4932709576453896,0.49316005889217013,0.49304909920637313,0.49293807860806294,0.49282699711731265,0.49271585475420504,0.4926046515388314,0.4924933874912921,0.4923820626316967,0.4922706769801636,0.49215923055681987,0.4920477233818024,0.49193615547525615,0.49182452685733574,0.4917128375482044,0.4916010875680344,0.49148927693700706,0.49137740567531246,0.49126547380315,0.4911534813407276,0.4910414283082625,0.49092931472598084,0.49081714061411746,0.4907049059929161,0.49059261088263023,0.4904802553035212,0.49036783927585986,0.4902553628199261,0.49014282595600794,0.49003022870440344,0.489917571085419,0.4898048531193699,0.4896920748265803,0.4895792362273835,0.4894663373421214,0.4893533781911451,0.4892403587948144,0.4891272791734985,0.48901413934757465,0.4889009393374291,0.48878767916345794,0.48867435884606514,0.4885609784056637,0.48844753786267614,0.4883340372375331,0.4882204765506744,0.48810685582254865,0.4879931750736134,0.48787943432433517,0.48776563359518876,0.4876517729066584,0.48753785227923757,0.48742387173342716,0.48730983128973826,0.48719573096869,0.48708157079081077,0.4869673507766375,0.48685307094671637,0.4867387313216018,0.4866243319218575,0.4865098727680554,0.4863953538807774,0.4862807752806128,0.4861661369881604,0.4860514390240278,0.4859366814088315,0.48582186416319656,0.485706987307757,0.485592050863155,0.4854770548500428,0.48536199928907975,0.4852468842009354,0.4851317096062877,0.4850164755258229,0.4849011819802362,0.4847858289902319,0.4846704165765227,0.4845549447598303,0.4844394135608847,0.48432382300042526,0.4842081730991996,0.4840924638779644,0.48397669535748483,0.4838608675585348,0.48374498050189696,0.48362903420836323,0.4835130286987332,0.4833969639938159,0.483280840114429,0.48316465708139855,0.4830484149155599,0.4829321136377565,0.4828157532688405,0.48269933382967334,0.48258285534112466,0.4824663178240727,0.4823497212994049,0.48223306578801695,0.4821163513108132,0.4819995778887069,0.48188274554261956,0.4817658542934822,0.4816489041622334,0.4815318951698211,0.48141482733720203,0.4812977006853408,0.48118051523521155,0.4810632710077963,0.48094596802408607,0.48082860630508095,0.4807111858717886,0.48059370674522617,0.4804761689464193,0.4803585724964019,0.4802409174162169,0.48012320372691547,0.4800054314495575,0.4798876006052118,0.47976971121495543,0.4796517632998741,0.4795337568810623,0.47941569197962275,0.4792975686166671,0.47917938681331546,0.4790611465906965,0.47894284796994746,0.47882449097221413,0.47870607561865103,0.47858760193042116,0.47846906992869565,0.4783504796346551,0.47823183106948775,0.47811312425439095,0.4779943592105705,0.4778755359592403,0.4777566545216235,0.47763771491895113,0.47751871717246336,0.47739966130340844,0.47728054733304326,0.4771613752826333,0.4770421451734525,0.4769228570267831,0.47680351086391637,0.4766841067061516,0.4765646445747967,0.4764451244911684,0.4763255464765912,0.4762059105523989,0.4760862167399337,0.47596646506054513,0.47584665553559297,0.4757267881864439,0.4756068630344742,0.4754868801010681,0.4753668394076182,0.47524674097552555,0.4751265848262005,0.47500637098106036,0.47488609946153243,0.47476577028905104,0.47464538348506013,0.4745249390710116,0.4744044370683654,0.47428387749859074,0.4741632603831645,0.47404258574357216,0.47392185360130834,0.4738010639778748,0.4736802168947825,0.4735593123735513,0.47343835043570814,0.4733173311027893,0.4731962543963395,0.4730751203379111,0.4729539289490659,0.47283268025137304,0.47271137426641063,0.4725900110157653,0.4724685905210314,0.4723471128038126,0.4722255778857195,0.4721039857883728,0.4719823365334002,0.4718606301424385,0.47173886663713244,0.4716170460391355,0.47149516837010896,0.471373233651723,0.47125124190565576,0.4711291931535939,0.47100708741723246,0.47088492471827426,0.4707627050784313,0.47064042851942334,0.47051809506297865,0.4703957047308336,0.47027325754473315,0.4701507535264301,0.4700281926976863,0.46990557508027103,0.46978290069596274,0.46966016956654727,0.46953738171381953,0.4694145371595823,0.4692916359256465,0.46916867803383167,0.4690456635059653,0.4689225923638837,0.4687994646294306,0.46867628032445846,0.4685530394708284,0.4684297420904092,0.4683063882050776,0.46818297783671936,0.46805951100722837,0.4679359877385059,0.4678124080524627,0.46768877197101666,0.46756507951609466,0.46744133070963134,0.46731752557356954,0.46719366412986074,0.4670697464004642,0.4669457724073476,0.4668217421724868,0.4666976557178654,0.46657351306547623,0.4664493142373194,0.4663250592554032,0.4662007481417448,0.4660763809183689,0.4659519576073085,0.4658274782306053,0.46570294281030816,0.4655783513684751,0.4654537039271716,0.46532900050847154,0.46520424113445724,0.4650794258272186,0.4649545546088543,0.46482962750147044,0.46470464452718163,0.4645796057081109,0.46445451106638885,0.4643293606241545,0.4642041544035552,0.46407889242674577,0.46395357471588966,0.46382820129315855,0.4637027721807317,0.46357728740079657,0.46345174697554936,0.4633261509271936,0.46320049927794116,0.4630747920500122,0.46294902926563436,0.4628232109470446,0.46269733711648614,0.462571407796212,0.46244542300848207,0.46231938277556517,0.4621932871197375,0.46206713606328337,0.46194092962849576,0.46181466783767505,0.46168835071312997,0.461561978277177,0.4614355505521412,0.46130906756035495,0.4611825293241593,0.4610559358659027,0.46092928720794235,0.46080258337264296,0.46067582438237725,0.460549010259526,0.46042214102647827,0.4602952167056306,0.46016823731938816,0.4600412028901637,0.45991411344037775,0.45978696899245947,0.4596597695688452,0.45953251519197996,0.45940520588431666,0.4592778416683156,0.45915042256644567,0.45902294860118303,0.4588954197950128,0.4587678361704274,0.45864019774992704,0.4585125045560201,0.45838475661122324,0.4582569539380603,0.45812909655906414,0.45800118449677407,0.4578732177737387,0.45774519641251393,0.45761712043566355,0.4574889898657595,0.45736080472538115,0.4572325650371164,0.45710427082356103,0.4569759221073179,0.4568475189109986,0.45671906125722234,0.4565905491686161,0.456461982667815,0.45633336177746175,0.45620468652020696,0.4560759569187096,0.4559471729956356,0.45581833477365963,0.45568944227546393,0.45556049552373806,0.45543149454118026,0.4553024393504962,0.45517332997439924,0.45504416643561113,0.4549149487568606,0.45478567696088495,0.4546563510704294,0.454526971108246,0.45439753709709585,0.45426804905974694,0.45413850701897546,0.4540089109975654,0.45387926101830867,0.45374955710400433,0.45361979927746027,0.45348998756149145,0.4533601219789208,0.45323020255257873,0.45310022930530397,0.45297020225994294,0.45284012143934943,0.45270998686638525,0.45257979856392,0.45244955655483077,0.4523192608620031,0.45218891150832946,0.4520585085167103,0.4519280519100544,0.45179754171127734,0.45166697794330324,0.4515363606290632,0.4514056897914968,0.4512749654535509,0.4511441876381803,0.4510133563683469,0.4508824716670215,0.4507515335571814,0.45062054206181246,0.4504894972039075,0.45035839900646774,0.4502272474925017,0.4500960426850256,0.44996478460706324,0.4498334732816469,0.4497021087318152,0.44957069098061536,0.44943922005110226,0.4493076959663378,0.4491761187493925,0.44904448842334355,0.4489128050112764,0.4487810685362839,0.44864927902146673,0.4485174364899331,0.44838554096479855,0.448253592469187,0.44812159102622956,0.4479895366590646,0.44785742939083867,0.44772526924470574,0.44759305624382734,0.44746079041137277,0.4473284717705186,0.4471961003444494,0.447063676156357,0.446931199229441,0.4467986695869088,0.44666608725197476,0.44653345224786123,0.4464007645977987,0.44626802432502394,0.44613523145278206,0.446002386004326,0.44586948800291576,0.4457365374718189,0.44560353443431083,0.4454704789136742,0.44533737093319964,0.44520421051618464,0.44507099768593494,0.44493773246576335,0.4448044148789905,0.44467104494894416,0.44453762269895997,0.44440414815238083,0.44427062133255757,0.444137042262848,0.4440034109666175,0.44386972746723957,0.4437359917880944,0.4436022039525704,0.44346836398406236,0.443334471905974,0.4432005277417157,0.44306653151470504,0.44293248324836765,0.44279838296613655,0.4426642306914518,0.4425300264477615,0.4423957702585207,0.44226146214719203,0.4421271021372461,0.44199269025216,0.4418582265154189,0.44172371095051555,0.44158914358094925,0.4414545244302281,0.44131985352186615,0.44118513087938604,0.441050356526317,0.44091553048619603,0.44078065278256795,0.44064572343898395,0.4405107424790037,0.44037570992619357,0.4402406258041273,0.44010549013638667,0.4399703029465602,0.43983506425824376,0.43969977409504135,0.4395644324805634,0.43942903943842815,0.4392935949922615,0.4391580991656959,0.439022551982372,0.4388869534659373,0.43875130364004666,0.43861560252836257,0.4384798501545546,0.43834404654229975,0.43820819171528225,0.4380722856971937,0.4379363285117333,0.4378003201826068,0.43766426073352827,0.43752815018821856,0.4373919885704055,0.4372557759038247,0.43711951221221923,0.43698319751933884,0.4368468318489408,0.4367104152247902,0.43657394767065827,0.43643742921032497,0.4363008598675761,0.4361642396662058,0.4360275686300148,0.4358908467828114,0.43575407414841133,0.4356172507506368,0.43548037661331823,0.43534345176029293,0.4352064762154049,0.4350694500025062,0.4349323731454559,0.4347952456681196,0.4346580675943713,0.4345208389480909,0.43438355975316667,0.4342462300334938,0.4341088498129741,0.43397141911551695,0.4338339379650392,0.4336964063854646,0.43355882440072424,0.433421192034756,0.43328350931150533,0.43314577625492506,0.4330079928889744,0.43287015923762046,0.4327322753248374,0.4325943411746062,0.4324563568109153,0.43231832225776,0.4321802375391431,0.4320421026790746,0.4319039177015708,0.4317656826306563,0.43162739749036216,0.4314890623047266,0.43135067709779507,0.43121224189361995,0.43107375671626114,0.43093522158978537,0.4307966365382663,0.43065800158578516,0.4305193167564299,0.43038058207429575,0.43024179756348496,0.4301029632481064,0.429964079152277,0.42982514530012034,0.4296861617157665,0.4295471284233535,0.4294080454470258,0.42926891281093527,0.42912973053924053,0.42899049865610756,0.4288512171857093,0.42871188615222583,0.4285725055798435,0.42843307549275716,0.42829359591516725,0.4281540668712819,0.4280144883853166,0.4278748604814929,0.42773518318404036,0.42759545651719505,0.4274556805051998,0.4273158551723051,0.42717598054276773,0.42703605664085204,0.4268960834908292,0.42675606111697695,0.42661598954358076,0.42647586879493254,0.4263356988953311,0.42619547986908285,0.4260552117405003,0.4259148945339036,0.4257745282736197,0.42563411298398196,0.42549364868933165,0.42535313541401637,0.42521257318239036,0.42507196201881575,0.42493130194766054,0.4247905929933005,0.424649835180118,0.4245090285325019,0.4243681730748486,0.4242272688315614,0.42408631582704986,0.4239453140857314,0.42380426363202933,0.42366316449037433,0.42352201668520445,0.4233808202409634,0.42323957518210337,0.4230982815330818,0.422956939318364,0.4228155485624221,0.4226741092897347,0.4225326215247874,0.4223910852920729,0.4222495006160904,0.4221078675213462,0.42196618603235325,0.42182445617363135,0.42168267796970765,0.42154085144511516,0.42139897662439413,0.4212570535320927,0.4211150821927637,0.42097306263096884,0.4208309948712751,0.4206888789382572,0.4205467148564964,0.4204045026505806,0.4202622423451044,0.4201199339646699,0.419977577533885,0.41983517307736534,0.41969272061973223,0.4195502201856145,0.419407671799648,0.41926507548647457,0.4191224312707432,0.41897973917711007,0.41883699923023704,0.4186942114547936,0.4185513758754557,0.41840849251690576,0.41826556140383364,0.41812258256093526,0.4179795560129136,0.417836481784478,0.41769335990034495,0.41755019038523733,0.417406973263885,0.4172637085610241,0.41712039630139824,0.4169770365097568,0.41683362921085654,0.41669017442946016,0.41654667219033786,0.4164031225182665,0.4162595254380286,0.41611588097441427,0.41597218915222034,0.4158284499962497,0.4156846635313123,0.4155408297822245,0.4153969487738095,0.4152530205308973,0.415109045078324,0.41496502244093253,0.4148209526435732,0.4146768357111018,0.41453267166838126,0.41438846054028117,0.41424420235167775,0.41409989712745393,0.41395554489249864,0.4138111456717082,0.4136666994899848,0.413522206372238,0.4133776663433833,0.413233079428343,0.4130884456520459,0.41294376503942776,0.41279903761543013,0.412654263405002,0.4125094424330986,0.41236457472468113,0.41221966030471824,0.4120746991981846,0.4119296914300616,0.41178463702533724,0.4116395360090057,0.41149438840606806,0.41134919424153155,0.41120395354041056,0.4110586663277254,0.4109133326285032,0.4107679524677772,0.4106225258705879,0.41047705286198133,0.4103315334670109,0.4101859677107359,0.41004035561822244,0.40989469721454325,0.40974899252477676,0.4096032415740088,0.40945744438733117,0.4093116009898424,0.4091657114066471,0.4090197756628565,0.4088737937835887,0.40872776579396775,0.4085816917191242,0.40843557158419497,0.408289405414324,0.40814319323466075,0.4079969350703623,0.4078506309465907,0.40770428088851535,0.4075578849213124,0.4074114430701631,0.4072649553602562,0.4071184218167869,0.406971842464956,0.4068252173299713,0.4066785464370466,0.4065318298114025,0.40638506747826586,0.40623825946286973,0.4060914057904534,0.4059445064862632,0.40579756157555097,0.40565057108357566,0.40550353503560194,0.4053564534569012,0.40520932637275137,0.4050621538084358,0.4049149357892456,0.4047676723404769,0.40462036348743263,0.40447300925542246,0.4043256096697618,0.4041781647557725,0.4040306745387832,0.403883139044128,0.40373555829714797,0.40358793232319023,0.4034402611476083,0.4032925447957617,0.4031447832930165,0.40299697666474515,0.4028491249363262,0.4027012281331443,0.40255328628059084,0.40240529940406283,0.40225726752896396,0.4021091906807044,0.4019610688847,0.4018129021663731,0.4016646905511526,0.401516434064473,0.4013681327317758,0.40121978657850765,0.4010713956301225,0.4009229599120801,0.4007744794498462,0.4006259542688932,0.4004773843946994,0.40032876985274907,0.40018011066853343,0.4000314068675491,0.39988265847529925,0.3997338655172934,0.3995850280190469,0.39943614600608146,0.3992872195039251,0.39913824853811136,0.3989892331341809,0.39884017331767974,0.39869106911416047,0.3985419205491819,0.3983927276483083,0.3982434904371111,0.39809420894116726,0.39794488318605953,0.39779551319737777,0.3976460990007171,0.3974966406216789,0.3973471380858714,0.39719759141890776,0.3970480006464083,0.39689836579399845,0.39674868688731074,0.3965989639519833,0.3964491970136601,0.3962993860979914,0.396149531230634,0.3959996324372502,0.3958496897435085,0.39569970317508335,0.3955496727576556,0.395399598516912,0.395249480478545,0.39509931866825393,0.39494911311174336,0.39479886383472407,0.3946485708629133,0.3944982342220336,0.39434785393781424,0.39419743003599034,0.39404696254230265,0.39389645148249813,0.39374589688233036,0.39359529876755767,0.39344465716394555,0.393293972097265,0.3931432435932927,0.39299247167781226,0.3928416563766121,0.39269079771548765,0.3925398957202394,0.3923889504166744,0.3922379618306058,0.392086929987852,0.3919358549142379,0.3917847366355946,0.3916335751777582,0.39148237056657165,0.3913311228278835,0.3911798319875482,0.3910284980714262,0.39087712110538353,0.3907257011152928,0.3905742381270322,0.3904227321664854,0.3902711832595429,0.39011959143210007,0.389967956710059,0.3898162791193274,0.3896645586858186,0.3895127954354522,0.38936098939415364,0.3892091405878537,0.38905724904248995,0.3889053147840049,0.3887533378383474,0.38860131823147254,0.38844925598934016,0.38829715113791696,0.3881450037031753,0.3879928137110929,0.38784058118765385,0.3876883061588476,0.3875359886506697,0.3873836286891217,0.38723122630021056,0.3870787815099493,0.3869262943443567,0.3867737648294574,0.3866211929912818,0.38646857885586583,0.38631592244925156,0.386163223797487,0.38601048292662526,0.385857699862726,0.3857048746318541,0.3855520072600802,0.3853990977734815,0.38524614619813985,0.38509315256014337,0.38494011688558627,0.3847870392005679,0.3846339195311938,0.38448075790357483,0.38432755434382787,0.38417430887807563,0.38402102153244605,0.3838676923330734,0.3837143213060975,0.3835609084776634,0.38340745387392255,0.3832539575210315,0.38310041944515283,0.3829468396724549,0.38279321822911133,0.38263955514130205,0.382485850435212,0.382332104137032,0.38217831627295934,0.3820244868691955,0.38187061595194866,0.3817167035474326,0.3815627496818662,0.3814087543814744,0.3812547176724881,0.38110063958114315,0.38094652013368135,0.38079235935635,0.3806381572754024,0.3804839139170969,0.38032962930769815,0.38017530347347556,0.38002093644070534,0.3798665282356676,0.37971207888465,0.3795575884139441,0.37940305684984804,0.37924848421866547,0.37909387054670507,0.37893921586028173,0.3787845201857155,0.37862978354933186,0.3784750059774628,0.3783201874964445,0.3781653281326197,0.3780104279123365,0.3778554868619479,0.37770050500781344,0.3775454823762975,0.3773904189937701,0.3772353148866072,0.37708017008118955,0.37692498460390395,0.37676975848114286,0.37661449173930356,0.3764591844047895,0.3763038365040092,0.37614844806337694,0.37599301910931243,0.37583754966824073,0.3756820397665925,0.3755264894308041,0.3753708986873167,0.3752152675625778,0.3750595960830393,0.37490388427515964,0.3747481321654022,0.37459233978023565,0.37443650714613447,0.3742806342895787,0.37412472123705287,0.37396876801504825,0.3738127746500603,0.3736567411685907,0.3735006675971468,0.37334455396224014,0.37318840029038897,0.37303220660811603,0.3728759729419501,0.372719699318425,0.37256338576408005,0.3724070323054597,0.37225063896911437,0.3720942057815992,0.3719377327694752,0.3717812199593084,0.3716246673776703,0.371468075051138,0.3713114430062935,0.3711547712697244,0.370998059868024,0.37084130882779004,0.37068451817562653,0.37052768793814217,0.37037081814195144,0.37021390881367383,0.3700569599799342,0.3698999716673629,0.3697429439025954,0.3695858767122723,0.36942877012304015,0.36927162416155,0.36911443885445855,0.3689572142284284,0.36879995031012613,0.3686426471262246,0.36848530470340163,0.36832792306834017,0.3681705022477288,0.3680130422682609,0.3678555431566354,0.3676980049395569,0.3675404276437339,0.36738281129588146,0.36722515592271937,0.367067461550973,0.366909728207372,0.3667519559186524,0.36659414471155466,0.366436294612825,0.36627840564921427,0.3661204778474789,0.3659625112343806,0.36580450583668583,0.3656464616811668,0.36548837879460033,0.3653302572037692,0.36517209693546043,0.36501389801646683,0.3648556604735862,0.3646973843336215,0.36453906962338084,0.3643807163696777,0.3642223245993301,0.3640638943391621,0.36390542561600214,0.363746918456684,0.36358837288804696,0.36342978893693484,0.3632711666301969,0.3631125059946877,0.36295380705726643,0.36279506984479776,0.3626362943841514,0.3624774807022021,0.36231862882582966,0.3621597387819191,0.36200081059736033,0.36184184429904853,0.36168283991388384,0.3615237974687714,0.361364716990622,0.36120559850635053,0.3610464420428777,0.3608872476271288,0.3607280152860345,0.3605687450465303,0.3604094369355567,0.3602500909800596,0.3600907072069897,0.3599312856433024,0.3597718263159589,0.3596123292519243,0.35945279447816986,0.3592932220216712,0.35913361190940896,0.35897396416836896,0.358814278825542,0.35865455590792383,0.358494795442515,0.3583349974563214,0.3581751619763535,0.35801528902962726,0.35785537864316297,0.35769543084398653,0.3575354456591279,0.3573754231156229,0.35721536324051234,0.3570552660608407,0.3568951316036589,0.3567349598960221,0.3565747509649902,0.3564145048376287,0.3562542215410071,0.35609390110220057,0.355933543548289,0.35577314890635703,0.35561271720349413,0.35545224846679513,0.35529174272335917,0.35513120000029086,0.354970620324699,0.3548100037236978,0.35464935022440647,0.35448865985394823,0.35432793263945217,0.3541671686080518,0.3540063677868852,0.3538455302030959,0.35368465588383186,0.35352374485624577,0.35336279714749586,0.3532018127847443,0.3530407917951585,0.352879734205911,0.3527186400441784,0.352557509337143,0.352396342111991,0.3522351383959142,0.3520738982161088,0.35191262159977565,0.35175130857412096,0.35158995916635505,0.3514285734036932,0.35126715131335606,0.35110569292256816,0.3509441982585596,0.35078266734856456,0.3506211002198223,0.350459496899577,0.350297857415077,0.35013618179357625,0.34997447006233273,0.34981272224860943,0.3496509383796738,0.3494891184827989,0.34932726258526103,0.34916537071434256,0.3490034428973299,0.34884147916151426,0.34867947953419176,0.3485174440426626,0.3483553727142326,0.34819326557621183,0.34803112265591457,0.3478689439806607,0.34770672957777377,0.3475444794745829,0.34738219369842127,0.347219872276627,0.3470575152365429,0.3468951226055163,0.34673269441089893,0.34657023068004794,0.34640773144032416,0.34624519671909376,0.3460826265437273,0.3459200209415995,0.3457573799400907,0.345594703566585,0.3454319918484714,0.34526924481314375,0.3451064624879999,0.3449436449004428,0.34478079207788,0.34461790404772324,0.34445498083738907,0.34429202247429874,0.3441290289858778,0.34396600039955666,0.34380293674277007,0.3436398380429572,0.34347670432756267,0.34331353562403427,0.3431503319598253,0.3429870933623931,0.34282381985919996,0.34266051147771254,0.34249716824540183,0.34233379018974347,0.34217037733821803,0.34200692971830965,0.34184344735750793,0.3416799302833064,0.3415163785232032,0.3413527921047011,0.34118917105530727,0.3410255154025332,0.3408618251738954,0.34069810039691406,0.3405343410991146,0.3403705473080262,0.3402067190511831,0.3400428563561236,0.33987895925039063,0.33971502776153156,0.3395510619170983,0.3393870617446468,0.33922302727173786,0.33905895852593637],"x":[0.8,0.8004398240703718,0.8008796481407437,0.8013194722111155,0.8017592962814875,0.8021991203518593,0.8026389444222312,0.803078768492603,0.8035185925629749,0.8039584166333467,0.8043982407037185,0.8048380647740904,0.8052778888444622,0.8057177129148341,0.8061575369852059,0.8065973610555778,0.8070371851259496,0.8074770091963215,0.8079168332666933,0.8083566573370652,0.808796481407437,0.8092363054778089,0.8096761295481807,0.8101159536185526,0.8105557776889244,0.8109956017592963,0.8114354258296681,0.81187524990004,0.8123150739704118,0.8127548980407837,0.8131947221111555,0.8136345461815274,0.8140743702518992,0.8145141943222711,0.8149540183926429,0.8153938424630148,0.8158336665333866,0.8162734906037585,0.8167133146741303,0.8171531387445022,0.817592962814874,0.8180327868852459,0.8184726109556177,0.8189124350259896,0.8193522590963614,0.8197920831667334,0.8202319072371052,0.8206717313074771,0.8211115553778489,0.8215513794482208,0.8219912035185926,0.8224310275889645,0.8228708516593363,0.8233106757297081,0.82375049980008,0.8241903238704518,0.8246301479408237,0.8250699720111955,0.8255097960815674,0.8259496201519392,0.8263894442223111,0.8268292682926829,0.8272690923630548,0.8277089164334266,0.8281487405037985,0.8285885645741703,0.8290283886445422,0.829468212714914,0.8299080367852859,0.8303478608556577,0.8307876849260296,0.8312275089964014,0.8316673330667733,0.8321071571371451,0.832546981207517,0.8329868052778888,0.8334266293482607,0.8338664534186325,0.8343062774890044,0.8347461015593762,0.8351859256297481,0.8356257497001199,0.8360655737704918,0.8365053978408636,0.8369452219112355,0.8373850459816073,0.8378248700519793,0.838264694122351,0.838704518192723,0.8391443422630948,0.8395841663334667,0.8400239904038385,0.8404638144742104,0.8409036385445822,0.841343462614954,0.8417832866853259,0.8422231107556977,0.8426629348260696,0.8431027588964414,0.8435425829668133,0.8439824070371851,0.844422231107557,0.8448620551779288,0.8453018792483007,0.8457417033186725,0.8461815273890444,0.8466213514594162,0.8470611755297881,0.8475009996001599,0.8479408236705318,0.8483806477409036,0.8488204718112755,0.8492602958816473,0.8497001199520192,0.850139944022391,0.8505797680927629,0.8510195921631347,0.8514594162335066,0.8518992403038784,0.8523390643742503,0.8527788884446221,0.853218712514994,0.8536585365853658,0.8540983606557377,0.8545381847261095,0.8549780087964814,0.8554178328668532,0.8558576569372252,0.856297481007597,0.8567373050779689,0.8571771291483407,0.8576169532187126,0.8580567772890844,0.8584966013594563,0.8589364254298281,0.8593762495002,0.8598160735705718,0.8602558976409436,0.8606957217113155,0.8611355457816873,0.8615753698520592,0.862015193922431,0.8624550179928029,0.8628948420631747,0.8633346661335466,0.8637744902039184,0.8642143142742903,0.8646541383446621,0.865093962415034,0.8655337864854058,0.8659736105557777,0.8664134346261495,0.8668532586965214,0.8672930827668932,0.8677329068372651,0.8681727309076369,0.8686125549780088,0.8690523790483806,0.8694922031187525,0.8699320271891243,0.8703718512594962,0.870811675329868,0.8712514994002399,0.8716913234706117,0.8721311475409836,0.8725709716113554,0.8730107956817273,0.8734506197520991,0.873890443822471,0.8743302678928428,0.8747700919632148,0.8752099160335866,0.8756497401039585,0.8760895641743303,0.8765293882447022,0.876969212315074,0.8774090363854459,0.8778488604558177,0.8782886845261896,0.8787285085965614,0.8791683326669332,0.8796081567373051,0.8800479808076769,0.8804878048780488,0.8809276289484206,0.8813674530187925,0.8818072770891643,0.8822471011595362,0.882686925229908,0.8831267493002799,0.8835665733706517,0.8840063974410236,0.8844462215113954,0.8848860455817673,0.8853258696521391,0.885765693722511,0.8862055177928828,0.8866453418632547,0.8870851659336265,0.8875249900039984,0.8879648140743702,0.8884046381447421,0.8888444622151139,0.8892842862854858,0.8897241103558576,0.8901639344262295,0.8906037584966013,0.8910435825669732,0.891483406637345,0.891923230707717,0.8923630547780887,0.8928028788484607,0.8932427029188325,0.8936825269892044,0.8941223510595762,0.8945621751299481,0.8950019992003199,0.8954418232706918,0.8958816473410636,0.8963214714114355,0.8967612954818073,0.8972011195521792,0.897640943622551,0.8980807676929228,0.8985205917632947,0.8989604158336665,0.8994002399040384,0.8998400639744102,0.9002798880447821,0.9007197121151539,0.9011595361855258,0.9015993602558976,0.9020391843262695,0.9024790083966413,0.9029188324670132,0.903358656537385,0.9037984806077569,0.9042383046781287,0.9046781287485006,0.9051179528188724,0.9055577768892443,0.9059976009596161,0.906437425029988,0.9068772491003598,0.9073170731707317,0.9077568972411035,0.9081967213114754,0.9086365453818472,0.9090763694522191,0.9095161935225909,0.9099560175929629,0.9103958416633346,0.9108356657337066,0.9112754898040784,0.9117153138744503,0.9121551379448221,0.912594962015194,0.9130347860855658,0.9134746101559377,0.9139144342263095,0.9143542582966814,0.9147940823670532,0.9152339064374251,0.9156737305077969,0.9161135545781688,0.9165533786485406,0.9169932027189124,0.9174330267892843,0.9178728508596561,0.918312674930028,0.9187524990003998,0.9191923230707717,0.9196321471411435,0.9200719712115154,0.9205117952818872,0.9209516193522591,0.9213914434226309,0.9218312674930028,0.9222710915633746,0.9227109156337465,0.9231507397041183,0.9235905637744902,0.924030387844862,0.9244702119152339,0.9249100359856057,0.9253498600559776,0.9257896841263494,0.9262295081967213,0.9266693322670931,0.927109156337465,0.9275489804078368,0.9279888044782088,0.9284286285485805,0.9288684526189525,0.9293082766893243,0.9297481007596962,0.930187924830068,0.9306277489004399,0.9310675729708117,0.9315073970411836,0.9319472211115554,0.9323870451819273,0.9328268692522991,0.933266693322671,0.9337065173930428,0.9341463414634147,0.9345861655337865,0.9350259896041584,0.9354658136745302,0.935905637744902,0.9363454618152739,0.9367852858856457,0.9372251099560176,0.9376649340263894,0.9381047580967613,0.9385445821671331,0.938984406237505,0.9394242303078768,0.9398640543782487,0.9403038784486205,0.9407437025189924,0.9411835265893642,0.9416233506597361,0.9420631747301079,0.9425029988004798,0.9429428228708516,0.9433826469412235,0.9438224710115953,0.9442622950819672,0.944702119152339,0.945141943222711,0.9455817672930827,0.9460215913634547,0.9464614154338264,0.9469012395041984,0.9473410635745702,0.9477808876449421,0.9482207117153139,0.9486605357856858,0.9491003598560576,0.9495401839264295,0.9499800079968013,0.9504198320671732,0.950859656137545,0.9512994802079169,0.9517393042782887,0.9521791283486606,0.9526189524190324,0.9530587764894043,0.9534986005597761,0.9539384246301479,0.9543782487005198,0.9548180727708916,0.9552578968412635,0.9556977209116353,0.9561375449820072,0.956577369052379,0.9570171931227509,0.9574570171931227,0.9578968412634946,0.9583366653338664,0.9587764894042383,0.9592163134746101,0.959656137544982,0.9600959616153538,0.9605357856857257,0.9609756097560975,0.9614154338264694,0.9618552578968412,0.9622950819672131,0.9627349060375849,0.9631747301079568,0.9636145541783286,0.9640543782487005,0.9644942023190723,0.9649340263894443,0.965373850459816,0.965813674530188,0.9662534986005598,0.9666933226709317,0.9671331467413035,0.9675729708116754,0.9680127948820472,0.9684526189524191,0.9688924430227909,0.9693322670931628,0.9697720911635346,0.9702119152339065,0.9706517393042783,0.9710915633746502,0.971531387445022,0.9719712115153939,0.9724110355857657,0.9728508596561375,0.9732906837265094,0.9737305077968812,0.9741703318672531,0.9746101559376249,0.9750499800079968,0.9754898040783686,0.9759296281487405,0.9763694522191123,0.9768092762894842,0.977249100359856,0.9776889244302279,0.9781287485005997,0.9785685725709716,0.9790083966413434,0.9794482207117153,0.9798880447820871,0.980327868852459,0.9807676929228308,0.9812075169932027,0.9816473410635745,0.9820871651339464,0.9825269892043182,0.9829668132746902,0.983406637345062,0.9838464614154339,0.9842862854858057,0.9847261095561776,0.9851659336265494,0.9856057576969213,0.9860455817672931,0.986485405837665,0.9869252299080368,0.9873650539784087,0.9878048780487805,0.9882447021191524,0.9886845261895242,0.9891243502598961,0.9895641743302679,0.9900039984006398,0.9904438224710116,0.9908836465413835,0.9913234706117553,0.9917632946821271,0.992203118752499,0.9926429428228708,0.9930827668932427,0.9935225909636145,0.9939624150339864,0.9944022391043582,0.9948420631747301,0.9952818872451019,0.9957217113154738,0.9961615353858456,0.9966013594562175,0.9970411835265893,0.9974810075969612,0.997920831667333,0.9983606557377049,0.9988004798080767,0.9992403038784486,0.9996801279488204,1.0001199520191923,1.0005597760895641,1.000999600159936,1.001439424230308,1.0018792483006798,1.0023190723710516,1.0027588964414234,1.0031987205117954,1.0036385445821672,1.004078368652539,1.0045181927229108,1.0049580167932828,1.0053978408636546,1.0058376649340264,1.0062774890043982,1.0067173130747702,1.007157137145142,1.0075969612155138,1.0080367852858856,1.0084766093562576,1.0089164334266294,1.0093562574970012,1.009796081567373,1.010235905637745,1.0106757297081168,1.0111155537784886,1.0115553778488604,1.0119952019192322,1.0124350259896042,1.012874850059976,1.0133146741303478,1.0137544982007196,1.0141943222710916,1.0146341463414634,1.0150739704118352,1.015513794482207,1.015953618552579,1.0163934426229508,1.0168332666933226,1.0172730907636944,1.0177129148340665,1.0181527389044382,1.01859256297481,1.0190323870451818,1.0194722111155539,1.0199120351859257,1.0203518592562975,1.0207916833266693,1.0212315073970413,1.021671331467413,1.0221111555377849,1.0225509796081567,1.0229908036785287,1.0234306277489005,1.0238704518192723,1.024310275889644,1.024750099960016,1.025189924030388,1.0256297481007597,1.0260695721711315,1.0265093962415035,1.0269492203118753,1.027389044382247,1.027828868452619,1.028268692522991,1.0287085165933627,1.0291483406637345,1.0295881647341063,1.030027988804478,1.0304678128748501,1.030907636945222,1.0313474610155937,1.0317872850859655,1.0322271091563375,1.0326669332267093,1.0331067572970811,1.033546581367453,1.033986405437825,1.0344262295081967,1.0348660535785685,1.0353058776489403,1.0357457017193124,1.0361855257896841,1.036625349860056,1.0370651739304277,1.0375049980007998,1.0379448220711716,1.0383846461415434,1.0388244702119152,1.0392642942822872,1.039704118352659,1.0401439424230308,1.0405837664934026,1.0410235905637746,1.0414634146341464,1.0419032387045182,1.04234306277489,1.042782886845262,1.0432227109156338,1.0436625349860056,1.0441023590563774,1.0445421831267494,1.0449820071971212,1.045421831267493,1.0458616553378648,1.0463014794082368,1.0467413034786086,1.0471811275489804,1.0476209516193522,1.048060775689724,1.048500599760096,1.0489404238304678,1.0493802479008396,1.0498200719712114,1.0502598960415834,1.0506997201119552,1.051139544182327,1.0515793682526988,1.0520191923230708,1.0524590163934426,1.0528988404638144,1.0533386645341862,1.0537784886045582,1.05421831267493,1.0546581367453018,1.0550979608156736,1.0555377848860457,1.0559776089564175,1.0564174330267893,1.056857257097161,1.057297081167533,1.0577369052379049,1.0581767293082767,1.0586165533786485,1.0590563774490205,1.0594962015193923,1.059936025589764,1.0603758496601359,1.060815673730508,1.0612554978008797,1.0616953218712515,1.0621351459416233,1.0625749700119953,1.063014794082367,1.063454618152739,1.0638944422231107,1.0643342662934827,1.0647740903638545,1.0652139144342263,1.065653738504598,1.0660935625749701,1.066533386645342,1.0669732107157137,1.0674130347860855,1.0678528588564573,1.0682926829268293,1.0687325069972011,1.069172331067573,1.0696121551379447,1.0700519792083167,1.0704918032786885,1.0709316273490603,1.0713714514194321,1.0718112754898041,1.072251099560176,1.0726909236305477,1.0731307477009195,1.0735705717712916,1.0740103958416634,1.0744502199120352,1.074890043982407,1.075329868052779,1.0757696921231508,1.0762095161935226,1.0766493402638944,1.0770891643342664,1.0775289884046382,1.07796881247501,1.0784086365453818,1.0788484606157538,1.0792882846861256,1.0797281087564974,1.0801679328268692,1.0806077568972412,1.081047580967613,1.0814874050379848,1.0819272291083566,1.0823670531787286,1.0828068772491004,1.0832467013194722,1.083686525389844,1.084126349460216,1.0845661735305878,1.0850059976009596,1.0854458216713314,1.0858856457417032,1.0863254698120752,1.086765293882447,1.0872051179528188,1.0876449420231906,1.0880847660935626,1.0885245901639344,1.0889644142343062,1.089404238304678,1.08984406237505,1.0902838864454218,1.0907237105157936,1.0911635345861654,1.0916033586565375,1.0920431827269093,1.092483006797281,1.0929228308676529,1.0933626549380249,1.0938024790083967,1.0942423030787685,1.0946821271491403,1.0951219512195123,1.095561775289884,1.0960015993602559,1.0964414234306277,1.0968812475009997,1.0973210715713715,1.0977608956417433,1.098200719712115,1.098640543782487,1.099080367852859,1.0995201919232307,1.0999600159936025,1.1003998400639745,1.1008396641343463,1.101279488204718,1.10171931227509,1.102159136345462,1.1025989604158337,1.1030387844862055,1.1034786085565773,1.1039184326269493,1.1043582566973211,1.104798080767693,1.1052379048380647,1.1056777289084365,1.1061175529788085,1.1065573770491803,1.1069972011195521,1.107437025189924,1.107876849260296,1.1083166733306677,1.1087564974010395,1.1091963214714113,1.1096361455417834,1.1100759696121552,1.110515793682527,1.1109556177528987,1.1113954418232708,1.1118352658936426,1.1122750899640144,1.1127149140343862,1.1131547381047582,1.11359456217513,1.1140343862455018,1.1144742103158736,1.1149140343862456,1.1153538584566174,1.1157936825269892,1.116233506597361,1.116673330667733,1.1171131547381048,1.1175529788084766,1.1179928028788484,1.1184326269492204,1.1188724510195922,1.119312275089964,1.1197520991603358,1.1201919232307078,1.1206317473010796,1.1210715713714514,1.1215113954418232,1.1219512195121952,1.122391043582567,1.1228308676529388,1.1232706917233106,1.1237105157936824,1.1241503398640544,1.1245901639344262,1.125029988004798,1.1254698120751698,1.1259096361455418,1.1263494602159136,1.1267892842862854,1.1272291083566572,1.1276689324270293,1.128108756497401,1.1285485805677729,1.1289884046381446,1.1294282287085167,1.1298680527788885,1.1303078768492603,1.130747700919632,1.131187524990004,1.1316273490603759,1.1320671731307477,1.1325069972011195,1.1329468212714915,1.1333866453418633,1.133826469412235,1.1342662934826069,1.134706117552979,1.1351459416233507,1.1355857656937225,1.1360255897640943,1.1364654138344663,1.136905237904838,1.13734506197521,1.1377848860455817,1.1382247101159537,1.1386645341863255,1.1391043582566973,1.139544182327069,1.1399840063974411,1.140423830467813,1.1408636545381847,1.1413034786085565,1.1417433026789283,1.1421831267493003,1.1426229508196721,1.143062774890044,1.1435025989604157,1.1439424230307877,1.1443822471011595,1.1448220711715313,1.1452618952419031,1.1457017193122752,1.146141543382647,1.1465813674530188,1.1470211915233905,1.1474610155937626,1.1479008396641344,1.1483406637345062,1.148780487804878,1.14922031187525,1.1496601359456218,1.1500999600159936,1.1505397840863654,1.1509796081567374,1.1514194322271092,1.151859256297481,1.1522990803678528,1.1527389044382248,1.1531787285085966,1.1536185525789684,1.1540583766493402,1.1544982007197122,1.154938024790084,1.1553778488604558,1.1558176729308276,1.1562574970011996,1.1566973210715714,1.1571371451419432,1.157576969212315,1.158016793282687,1.1584566173530588,1.1588964414234306,1.1593362654938024,1.1597760895641744,1.1602159136345462,1.160655737704918,1.1610955617752898,1.1615353858456616,1.1619752099160336,1.1624150339864054,1.1628548580567772,1.163294682127149,1.163734506197521,1.1641743302678929,1.1646141543382647,1.1650539784086364,1.1654938024790085,1.1659336265493803,1.166373450619752,1.1668132746901239,1.1672530987604959,1.1676929228308677,1.1681327469012395,1.1685725709716113,1.1690123950419833,1.169452219112355,1.1698920431827269,1.1703318672530987,1.1707716913234707,1.1712115153938425,1.1716513394642143,1.172091163534586,1.172530987604958,1.17297081167533,1.1734106357457017,1.1738504598160735,1.1742902838864455,1.1747301079568173,1.1751699320271891,1.175609756097561,1.176049580167933,1.1764894042383047,1.1769292283086765,1.1773690523790483,1.1778088764494203,1.1782487005197921,1.178688524590164,1.1791283486605357,1.1795681727309075,1.1800079968012795,1.1804478208716513,1.1808876449420231,1.181327469012395,1.181767293082767,1.1822071171531388,1.1826469412235106,1.1830867652938823,1.1835265893642544,1.1839664134346262,1.184406237504998,1.1848460615753698,1.1852858856457418,1.1857257097161136,1.1861655337864854,1.1866053578568572,1.1870451819272292,1.187485005997601,1.1879248300679728,1.1883646541383446,1.1888044782087166,1.1892443022790884,1.1896841263494602,1.190123950419832,1.190563774490204,1.1910035985605758,1.1914434226309476,1.1918832467013194,1.1923230707716914,1.1927628948420632,1.193202718912435,1.1936425429828068,1.1940823670531788,1.1945221911235506,1.1949620151939224,1.1954018392642942,1.1958416633346662,1.196281487405038,1.1967213114754098,1.1971611355457816,1.1976009596161536,1.1980407836865254,1.1984806077568972,1.198920431827269,1.1993602558976408,1.1998000799680129,1.2002399040383847,1.2006797281087564,1.2011195521791282,1.2015593762495003,1.201999200319872,1.2024390243902439,1.2028788484606157,1.2033186725309877,1.2037584966013595,1.2041983206717313,1.204638144742103,1.205077968812475,1.2055177928828469,1.2059576169532187,1.2063974410235905,1.2068372650939625,1.2072770891643343,1.207716913234706,1.2081567373050779,1.20859656137545,1.2090363854458217,1.2094762095161935,1.2099160335865653,1.2103558576569373,1.2107956817273091,1.211235505797681,1.2116753298680527,1.2121151539384247,1.2125549780087965,1.2129948020791683,1.2134346261495401,1.2138744502199121,1.214314274290284,1.2147540983606557,1.2151939224310275,1.2156337465013995,1.2160735705717713,1.2165133946421431,1.216953218712515,1.2173930427828867,1.2178328668532588,1.2182726909236306,1.2187125149940023,1.2191523390643741,1.2195921631347462,1.220031987205118,1.2204718112754898,1.2209116353458616,1.2213514594162336,1.2217912834866054,1.2222311075569772,1.222670931627349,1.223110755697721,1.2235505797680928,1.2239904038384646,1.2244302279088364,1.2248700519792084,1.2253098760495802,1.225749700119952,1.2261895241903238,1.2266293482606958,1.2270691723310676,1.2275089964014394,1.2279488204718112,1.2283886445421832,1.228828468612555,1.2292682926829268,1.2297081167532986,1.2301479408236706,1.2305877648940424,1.2310275889644142,1.231467413034786,1.231907237105158,1.2323470611755298,1.2327868852459016,1.2332267093162734,1.2336665333866454,1.2341063574570172,1.234546181527389,1.2349860055977608,1.2354258296681329,1.2358656537385047,1.2363054778088765,1.2367453018792482,1.23718512594962,1.237624950019992,1.2380647740903639,1.2385045981607357,1.2389444222311075,1.2393842463014795,1.2398240703718513,1.240263894442223,1.2407037185125949,1.2411435425829669,1.2415833666533387,1.2420231907237105,1.2424630147940823,1.2429028388644543,1.243342662934826,1.243782487005198,1.2442223110755697,1.2446621351459417,1.2451019592163135,1.2455417832866853,1.245981607357057,1.2464214314274291,1.246861255497801,1.2473010795681727,1.2477409036385445,1.2481807277089165,1.2486205517792883,1.2490603758496601,1.249500199920032,1.249940023990404,1.2503798480607757,1.2508196721311475,1.2512594962015193,1.2516993202718913,1.2521391443422631,1.252578968412635,1.2530187924830067,1.2534586165533788,1.2538984406237506,1.2543382646941224,1.2547780887644941,1.255217912834866,1.255657736905238,1.2560975609756098,1.2565373850459816,1.2569772091163534,1.2574170331867254,1.2578568572570972,1.258296681327469,1.2587365053978408,1.2591763294682128,1.2596161535385846,1.2600559776089564,1.2604958016793282,1.2609356257497002,1.261375449820072,1.2618152738904438,1.2622550979608156,1.2626949220311876,1.2631347461015594,1.2635745701719312,1.264014394242303,1.264454218312675,1.2648940423830468,1.2653338664534186,1.2657736905237904,1.2662135145941624,1.2666533386645342,1.267093162734906,1.2675329868052778,1.2679728108756498,1.2684126349460216,1.2688524590163934,1.2692922830867652,1.2697321071571372,1.270171931227509,1.2706117552978808,1.2710515793682526,1.2714914034386247,1.2719312275089965,1.2723710515793683,1.27281087564974,1.2732506997201118,1.2736905237904839,1.2741303478608557,1.2745701719312275,1.2750099960015993,1.2754498200719713,1.275889644142343,1.2763294682127149,1.2767692922830867,1.2772091163534587,1.2776489404238305,1.2780887644942023,1.278528588564574,1.278968412634946,1.279408236705318,1.2798480607756897,1.2802878848460615,1.2807277089164335,1.2811675329868053,1.281607357057177,1.282047181127549,1.282487005197921,1.2829268292682927,1.2833666533386645,1.2838064774090363,1.2842463014794083,1.2846861255497801,1.285125949620152,1.2855657736905237,1.2860055977608957,1.2864454218312675,1.2868852459016393,1.2873250699720111,1.2877648940423831,1.288204718112755,1.2886445421831267,1.2890843662534985,1.2895241903238706,1.2899640143942424,1.2904038384646142,1.290843662534986,1.291283486605358,1.2917233106757298,1.2921631347461016,1.2926029588164734,1.2930427828868452,1.2934826069572172,1.293922431027589,1.2943622550979608,1.2948020791683326,1.2952419032387046,1.2956817273090764,1.2961215513794482,1.29656137544982,1.297001199520192,1.2974410235905638,1.2978808476609356,1.2983206717313074,1.2987604958016794,1.2992003198720512,1.299640143942423,1.3000799680127948,1.3005197920831668,1.3009596161535386,1.3013994402239104,1.3018392642942822,1.3022790883646542,1.302718912435026,1.3031587365053978,1.3035985605757696,1.3040383846461416,1.3044782087165134,1.3049180327868852,1.305357856857257,1.305797680927629,1.3062375049980008,1.3066773290683726,1.3071171531387444,1.3075569772091165,1.3079968012794883,1.30843662534986,1.3088764494202318,1.3093162734906039,1.3097560975609757,1.3101959216313475,1.3106357457017193,1.311075569772091,1.311515393842463,1.3119552179128349,1.3123950419832067,1.3128348660535785,1.3132746901239505,1.3137145141943223,1.314154338264694,1.3145941623350659,1.315033986405438,1.3154738104758097,1.3159136345461815,1.3163534586165533,1.3167932826869253,1.317233106757297,1.317672930827669,1.3181127548980407,1.3185525789684127,1.3189924030387845,1.3194322271091563,1.319872051179528,1.3203118752499001,1.320751699320272,1.3211915233906437,1.3216313474610155,1.3220711715313875,1.3225109956017593,1.3229508196721311,1.323390643742503,1.323830467812875,1.3242702918832467,1.3247101159536185,1.3251499400239903,1.3255897640943624,1.3260295881647342,1.326469412235106,1.3269092363054777,1.3273490603758498,1.3277888844462216,1.3282287085165934,1.3286685325869652,1.3291083566573372,1.329548180727709,1.3299880047980808,1.3304278288684526,1.3308676529388244,1.3313074770091964,1.3317473010795682,1.33218712514994,1.3326269492203118,1.3330667732906838,1.3335065973610556,1.3339464214314274,1.3343862455017992,1.3348260695721712,1.335265893642543,1.3357057177129148,1.3361455417832866,1.3365853658536586,1.3370251899240304,1.3374650139944022,1.337904838064774,1.338344662135146,1.3387844862055178,1.3392243102758896,1.3396641343462614,1.3401039584166334,1.3405437824870052,1.340983606557377,1.3414234306277488,1.3418632546981208,1.3423030787684926,1.3427429028388644,1.3431827269092362,1.3436225509796083,1.34406237504998,1.3445021991203518,1.3449420231907236,1.3453818472610957,1.3458216713314675,1.3462614954018393,1.346701319472211,1.347141143542583,1.3475809676129549,1.3480207916833267,1.3484606157536985,1.3489004398240703,1.3493402638944423,1.349780087964814,1.3502199120351859,1.3506597361055577,1.3510995601759297,1.3515393842463015,1.3519792083166733,1.352419032387045,1.352858856457417,1.353298680527789,1.3537385045981607,1.3541783286685325,1.3546181527389045,1.3550579768092763,1.355497800879648,1.35593762495002,1.356377449020392,1.3568172730907637,1.3572570971611355,1.3576969212315073,1.3581367453018793,1.3585765693722511,1.359016393442623,1.3594562175129947,1.3598960415833667,1.3603358656537385,1.3607756897241103,1.3612155137944821,1.3616553378648542,1.362095161935226,1.3625349860055977,1.3629748100759695,1.3634146341463416,1.3638544582167134,1.3642942822870852,1.364734106357457,1.365173930427829,1.3656137544982008,1.3660535785685726,1.3664934026389444,1.3669332267093162,1.3673730507796882,1.36781287485006,1.3682526989204318,1.3686925229908036,1.3691323470611756,1.3695721711315474,1.3700119952019192,1.370451819272291,1.370891643342663,1.3713314674130348,1.3717712914834066,1.3722111155537784,1.3726509396241504,1.3730907636945222,1.373530587764894,1.3739704118352658,1.3744102359056378,1.3748500599760096,1.3752898840463814,1.3757297081167532,1.3761695321871252,1.376609356257497,1.3770491803278688,1.3774890043982406,1.3779288284686126,1.3783686525389844,1.3788084766093562,1.379248300679728,1.3796881247501,1.3801279488204719,1.3805677728908436,1.3810075969612154,1.3814474210315875,1.3818872451019593,1.382327069172331,1.3827668932427029,1.3832067173130749,1.3836465413834467,1.3840863654538185,1.3845261895241903,1.3849660135945623,1.385405837664934,1.3858456617353059,1.3862854858056777,1.3867253098760495,1.3871651339464215,1.3876049580167933,1.388044782087165,1.3884846061575369,1.388924430227909,1.3893642542982807,1.3898040783686525,1.3902439024390243,1.3906837265093963,1.391123550579768,1.39156337465014,1.3920031987205117,1.3924430227908837,1.3928828468612555,1.3933226709316273,1.3937624950019991,1.3942023190723711,1.394642143142743,1.3950819672131147,1.3955217912834865,1.3959616153538585,1.3964014394242303,1.3968412634946021,1.397281087564974,1.397720911635346,1.3981607357057177,1.3986005597760895,1.3990403838464613,1.3994802079168334,1.3999200319872052,1.400359856057577,1.4007996801279488,1.4012395041983208,1.4016793282686926,1.4021191523390644,1.4025589764094362,1.4029988004798082,1.40343862455018,1.4038784486205518,1.4043182726909236,1.4047580967612954,1.4051979208316674,1.4056377449020392,1.406077568972411,1.4065173930427828,1.4069572171131548,1.4073970411835266,1.4078368652538984,1.4082766893242702,1.4087165133946422,1.409156337465014,1.4095961615353858,1.4100359856057576,1.4104758096761296,1.4109156337465014,1.4113554578168732,1.411795281887245,1.412235105957617,1.4126749300279888,1.4131147540983606,1.4135545781687324,1.4139944022391044,1.4144342263094762,1.414874050379848,1.4153138744502198,1.4157536985205919,1.4161935225909636,1.4166333466613354,1.4170731707317072,1.4175129948020793,1.417952818872451,1.4183926429428229,1.4188324670131947,1.4192722910835667,1.4197121151539385,1.4201519392243103,1.420591763294682,1.421031587365054,1.4214714114354259,1.4219112355057977,1.4223510595761695,1.4227908836465415,1.4232307077169133,1.423670531787285,1.4241103558576569,1.4245501799280287,1.4249900039984007,1.4254298280687725,1.4258696521391443,1.426309476209516,1.426749300279888,1.42718912435026,1.4276289484206317,1.4280687724910035,1.4285085965613755,1.4289484206317473,1.4293882447021191,1.429828068772491,1.430267892842863,1.4307077169132347,1.4311475409836065,1.4315873650539783,1.4320271891243503,1.4324670131947221,1.432906837265094,1.4333466613354657,1.4337864854058378,1.4342263094762095,1.4346661335465813,1.4351059576169531,1.4355457816873252,1.435985605757697,1.4364254298280688,1.4368652538984406,1.4373050779688126,1.4377449020391844,1.4381847261095562,1.438624550179928,1.4390643742503,1.4395041983206718,1.4399440223910436,1.4403838464614154,1.4408236705317874,1.4412634946021592,1.441703318672531,1.4421431427429028,1.4425829668132746,1.4430227908836466,1.4434626149540184,1.4439024390243902,1.444342263094762,1.444782087165134,1.4452219112355058,1.4456617353058776,1.4461015593762494,1.4465413834466214,1.4469812075169932,1.447421031587365,1.4478608556577368,1.4483006797281088,1.4487405037984806,1.4491803278688524,1.4496201519392242,1.4500599760095962,1.450499800079968,1.4509396241503398,1.4513794482207116,1.4518192722910837,1.4522590963614554,1.4526989204318272,1.453138744502199,1.453578568572571,1.4540183926429429,1.4544582167133147,1.4548980407836865,1.4553378648540585,1.4557776889244303,1.456217512994802,1.4566573370651739,1.4570971611355459,1.4575369852059177,1.4579768092762895,1.4584166333466613,1.4588564574170333,1.459296281487405,1.4597361055577769,1.4601759296281487,1.4606157536985207,1.4610555777688925,1.4614954018392643,1.461935225909636,1.462375049980008,1.46281487405038,1.4632546981207517,1.4636945221911235,1.4641343462614953,1.4645741703318673,1.4650139944022391,1.465453818472611,1.4658936425429827,1.4663334666133547,1.4667732906837265,1.4672131147540983,1.4676529388244701,1.4680927628948421,1.468532586965214,1.4689724110355857,1.4694122351059575,1.4698520591763296,1.4702918832467013,1.4707317073170731,1.471171531387445,1.471611355457817,1.4720511795281888,1.4724910035985606,1.4729308276689324,1.4733706517393044,1.4738104758096762,1.474250299880048,1.4746901239504198,1.4751299480207918,1.4755697720911636,1.4760095961615354,1.4764494202319072,1.4768892443022792,1.477329068372651,1.4777688924430228,1.4782087165133946,1.4786485405837666,1.4790883646541384,1.4795281887245102,1.479968012794882,1.4804078368652538,1.4808476609356258,1.4812874850059976,1.4817273090763694,1.4821671331467412,1.4826069572171132,1.483046781287485,1.4834866053578568,1.4839264294282286,1.4843662534986006,1.4848060775689724,1.4852459016393442,1.485685725709716,1.486125549780088,1.4865653738504598,1.4870051979208316,1.4874450219912034,1.4878848460615755,1.4883246701319472,1.488764494202319,1.4892043182726908,1.4896441423430629,1.4900839664134347,1.4905237904838065,1.4909636145541783,1.4914034386245503,1.491843262694922,1.4922830867652939,1.4927229108356657,1.4931627349060377,1.4936025589764095,1.4940423830467813,1.494482207117153,1.494922031187525,1.4953618552578969,1.4958016793282687,1.4962415033986405,1.4966813274690125,1.4971211515393843,1.497560975609756,1.498000799680128,1.4984406237504997,1.4988804478208717,1.4993202718912435,1.4997600959616153,1.500199920031987,1.5006397441023591,1.501079568172731,1.5015193922431027,1.5019592163134745,1.5023990403838465,1.5028388644542183,1.5032786885245901,1.503718512594962,1.504158336665334,1.5045981607357057,1.5050379848060775,1.5054778088764493,1.5059176329468213,1.5063574570171931,1.506797281087565,1.5072371051579367,1.5076769292283088,1.5081167532986806,1.5085565773690524,1.5089964014394242,1.5094362255097962,1.509876049580168,1.5103158736505398,1.5107556977209116,1.5111955217912836,1.5116353458616554,1.5120751699320272,1.512514994002399,1.512954818072771,1.5133946421431428,1.5138344662135146,1.5142742902838864,1.5147141143542584,1.5151539384246302,1.515593762495002,1.5160335865653738,1.5164734106357458,1.5169132347061176,1.5173530587764894,1.5177928828468612,1.518232706917233,1.518672530987605,1.5191123550579768,1.5195521791283486,1.5199920031987204,1.5204318272690924,1.5208716513394642,1.521311475409836,1.5217512994802078,1.5221911235505798,1.5226309476209516,1.5230707716913234,1.5235105957616952,1.5239504198320672,1.524390243902439,1.5248300679728108,1.5252698920431826,1.5257097161135547,1.5261495401839265,1.5265893642542983,1.52702918832467,1.527469012395042,1.5279088364654139,1.5283486605357857,1.5287884846061575,1.5292283086765295,1.5296681327469013,1.530107956817273,1.5305477808876449,1.530987604958017,1.5314274290283887,1.5318672530987605,1.5323070771691323,1.5327469012395043,1.533186725309876,1.533626549380248,1.5340663734506197,1.5345061975209917,1.5349460215913635,1.5353858456617353,1.535825669732107,1.536265493802479,1.536705317872851,1.5371451419432227,1.5375849660135945,1.5380247900839663,1.5384646141543383,1.5389044382247101,1.539344262295082,1.5397840863654537,1.5402239104358257,1.5406637345061975,1.5411035585765693,1.5415433826469411,1.5419832067173131,1.542423030787685,1.5428628548580567,1.5433026789284285,1.5437425029988006,1.5441823270691724,1.5446221511395442,1.545061975209916,1.545501799280288,1.5459416233506598,1.5463814474210316,1.5468212714914034,1.5472610955617754,1.5477009196321472,1.548140743702519,1.5485805677728908,1.5490203918432628,1.5494602159136346,1.5499000399840064,1.5503398640543782,1.5507796881247502,1.551219512195122,1.5516593362654938,1.5520991603358656,1.5525389844062376,1.5529788084766094,1.5534186325469812,1.553858456617353,1.554298280687725,1.5547381047580968,1.5551779288284686,1.5556177528988404,1.5560575769692122,1.5564974010395842,1.556937225109956,1.5573770491803278,1.5578168732506996,1.5582566973210716,1.5586965213914434,1.5591363454618152,1.559576169532187,1.560015993602559,1.5604558176729308,1.5608956417433026,1.5613354658136744,1.5617752898840465,1.5622151139544183,1.56265493802479,1.5630947620951618,1.5635345861655339,1.5639744102359057,1.5644142343062775,1.5648540583766493,1.5652938824470213,1.565733706517393,1.5661735305877649,1.5666133546581367,1.5670531787285087,1.5674930027988805,1.5679328268692523,1.568372650939624,1.568812475009996,1.569252299080368,1.5696921231507397,1.5701319472211115,1.5705717712914835,1.5710115953618553,1.571451419432227,1.571891243502599,1.572331067572971,1.5727708916433427,1.5732107157137145,1.5736505397840863,1.574090363854458,1.5745301879248301,1.574970011995202,1.5754098360655737,1.5758496601359455,1.5762894842063175,1.5767293082766893,1.5771691323470611,1.577608956417433,1.578048780487805,1.5784886045581767,1.5789284286285485,1.5793682526989203,1.5798080767692924,1.5802479008396642,1.580687724910036,1.5811275489804077,1.5815673730507798,1.5820071971211516,1.5824470211915234,1.5828868452618952,1.5833266693322672,1.583766493402639,1.5842063174730108,1.5846461415433826,1.5850859656137546,1.5855257896841264,1.5859656137544982,1.58640543782487,1.586845261895242,1.5872850859656138,1.5877249100359856,1.5881647341063574,1.5886045581767294,1.5890443822471012,1.589484206317473,1.5899240303878448,1.5903638544582168,1.5908036785285886,1.5912435025989604,1.5916833266693322,1.5921231507397042,1.592562974810076,1.5930027988804478,1.5934426229508196,1.5938824470211914,1.5943222710915634,1.5947620951619352,1.595201919232307,1.5956417433026788,1.5960815673730508,1.5965213914434226,1.5969612155137944,1.5974010395841662,1.5978408636545383,1.59828068772491,1.5987205117952819,1.5991603358656536,1.5996001599360257,1.6000399840063975,1.6004798080767693,1.600919632147141,1.601359456217513,1.6017992802878849,1.6022391043582567,1.6026789284286285,1.6031187524990005,1.6035585765693723,1.603998400639744,1.6044382247101159,1.604878048780488,1.6053178728508597,1.6057576969212315,1.6061975209916033,1.6066373450619753,1.607077169132347,1.607516993202719,1.6079568172730907,1.6083966413434627,1.6088364654138345,1.6092762894842063,1.609716113554578,1.6101559376249501,1.610595761695322,1.6110355857656937,1.6114754098360655,1.6119152339064373,1.6123550579768093,1.6127948820471811,1.613234706117553,1.6136745301879247,1.6141143542582967,1.6145541783286685,1.6149940023990403,1.6154338264694121,1.6158736505397842,1.616313474610156,1.6167532986805278,1.6171931227508995,1.6176329468212716,1.6180727708916434,1.6185125949620152,1.618952419032387,1.619392243102759,1.6198320671731308,1.6202718912435026,1.6207117153138744,1.6211515393842464,1.6215913634546182,1.62203118752499,1.6224710115953618,1.6229108356657338,1.6233506597361056,1.6237904838064774,1.6242303078768492,1.6246701319472212,1.625109956017593,1.6255497800879648,1.6259896041583366,1.6264294282287086,1.6268692522990804,1.6273090763694522,1.627748900439824,1.628188724510196,1.6286285485805678,1.6290683726509396,1.6295081967213114,1.6299480207916832,1.6303878448620552,1.630827668932427,1.6312674930027988,1.6317073170731706,1.6321471411435426,1.6325869652139144,1.6330267892842862,1.633466613354658,1.63390643742503,1.6343462614954019,1.6347860855657737,1.6352259096361454,1.6356657337065175,1.6361055577768893,1.636545381847261,1.6369852059176329,1.6374250299880049,1.6378648540583767,1.6383046781287485,1.6387445021991203,1.6391843262694923,1.639624150339864,1.6400639744102359,1.6405037984806077,1.6409436225509797,1.6413834466213515,1.6418232706917233,1.642263094762095,1.642702918832467,1.643142742902839,1.6435825669732107,1.6440223910435825,1.6444622151139545,1.6449020391843263,1.6453418632546981,1.64578168732507,1.646221511395442,1.6466613354658137,1.6471011595361855,1.6475409836065573,1.6479808076769293,1.6484206317473011,1.648860455817673,1.6493002798880447,1.6497401039584165,1.6501799280287885,1.6506197520991603,1.6510595761695321,1.651499400239904,1.651939224310276,1.6523790483806478,1.6528188724510195,1.6532586965213913,1.6536985205917634,1.6541383446621352,1.654578168732507,1.6550179928028788,1.6554578168732508,1.6558976409436226,1.6563374650139944,1.6567772890843662,1.6572171131547382,1.65765693722511,1.6580967612954818,1.6585365853658536,1.6589764094362256,1.6594162335065974,1.6598560575769692,1.660295881647341,1.660735705717713,1.6611755297880848,1.6616153538584566,1.6620551779288284,1.6624950019992004,1.6629348260695722,1.663374650139944,1.6638144742103158,1.6642542982806878,1.6646941223510596,1.6651339464214314,1.6655737704918032,1.6660135945621752,1.666453418632547,1.6668932427029188,1.6673330667732906,1.6677728908436624,1.6682127149140344,1.6686525389844062,1.669092363054778,1.6695321871251498,1.6699720111955219,1.6704118352658937,1.6708516593362654,1.6712914834066372,1.6717313074770093,1.672171131547381,1.6726109556177529,1.6730507796881247,1.6734906037584967,1.6739304278288685,1.6743702518992403,1.674810075969612,1.675249900039984,1.6756897241103559,1.6761295481807277,1.6765693722510995,1.6770091963214715,1.6774490203918433,1.677888844462215,1.6783286685325869,1.678768492602959,1.6792083166733307,1.6796481407437025,1.6800879648140743,1.6805277888844463,1.6809676129548181,1.68140743702519,1.6818472610955617,1.6822870851659337,1.6827269092363055,1.6831667333066773,1.6836065573770491,1.6840463814474211,1.684486205517793,1.6849260295881647,1.6853658536585365,1.6858056777289085,1.6862455017992803,1.6866853258696521,1.687125149940024,1.6875649740103957,1.6880047980807678,1.6884446221511396,1.6888844462215113,1.6893242702918831,1.6897640943622552,1.690203918432627,1.6906437425029988,1.6910835665733706,1.6915233906437426,1.6919632147141144,1.6924030387844862,1.692842862854858,1.69328268692523,1.6937225109956018,1.6941623350659736,1.6946021591363454,1.6950419832067174,1.6954818072770892,1.695921631347461,1.6963614554178328,1.6968012794882048,1.6972411035585766,1.6976809276289484,1.6981207516993202,1.6985605757696922,1.699000399840064,1.6994402239104358,1.6998800479808076,1.7003198720511796,1.7007596961215514,1.7011995201919232,1.701639344262295,1.702079168332667,1.7025189924030388,1.7029588164734106,1.7033986405437824,1.7038384646141544,1.7042782886845262,1.704718112754898,1.7051579368252698,1.7055977608956416,1.7060375849660137,1.7064774090363855,1.7069172331067572,1.707357057177129,1.707796881247501,1.7082367053178729,1.7086765293882447,1.7091163534586165,1.7095561775289885,1.7099960015993603,1.710435825669732,1.7108756497401039,1.7113154738104759,1.7117552978808477,1.7121951219512195,1.7126349460215913,1.7130747700919633,1.713514594162335,1.7139544182327069,1.7143942423030787,1.7148340663734507,1.7152738904438225,1.7157137145141943,1.716153538584566,1.7165933626549381,1.71703318672531,1.7174730107956817,1.7179128348660535,1.7183526589364255,1.7187924830067973,1.7192323070771691,1.719672131147541,1.720111955217913,1.7205517792882847,1.7209916033586565,1.7214314274290283,1.7218712514994003,1.7223110755697721,1.722750899640144,1.7231907237105157,1.7236305477808875,1.7240703718512596,1.7245101959216314,1.7249500199920031,1.725389844062375,1.725829668132747,1.7262694922031188,1.7267093162734906,1.7271491403438624,1.7275889644142344,1.7280287884846062,1.728468612554978,1.7289084366253498,1.7293482606957218,1.7297880847660936,1.7302279088364654,1.7306677329068372,1.7311075569772092,1.731547381047581,1.7319872051179528,1.7324270291883246,1.7328668532586966,1.7333066773290684,1.7337465013994402,1.734186325469812,1.734626149540184,1.7350659736105558,1.7355057976809276,1.7359456217512994,1.7363854458216714,1.7368252698920432,1.737265093962415,1.7377049180327868,1.7381447421031588,1.7385845661735306,1.7390243902439024,1.7394642143142742,1.7399040383846462,1.740343862455018,1.7407836865253898,1.7412235105957616,1.7416633346661337,1.7421031587365055,1.7425429828068772,1.742982806877249,1.7434226309476208,1.7438624550179929,1.7443022790883647,1.7447421031587365,1.7451819272291083,1.7456217512994803,1.746061575369852,1.7465013994402239,1.7469412235105957,1.7473810475809677,1.7478208716513395,1.7482606957217113,1.748700519792083,1.749140343862455,1.749580167932827,1.7500199920031987,1.7504598160735705,1.7508996401439425,1.7513394642143143,1.751779288284686,1.752219112355058,1.75265893642543,1.7530987604958017,1.7535385845661735,1.7539784086365453,1.7544182327069173,1.7548580567772891,1.755297880847661,1.7557377049180327,1.7561775289884047,1.7566173530587765,1.7570571771291483,1.7574970011995201,1.7579368252698921,1.758376649340264,1.7588164734106357,1.7592562974810075,1.7596961215513796,1.7601359456217514,1.7605757696921231,1.761015593762495,1.7614554178328667,1.7618952419032388,1.7623350659736106,1.7627748900439824,1.7632147141143542,1.7636545381847262,1.764094362255098,1.7645341863254698,1.7649740103958416,1.7654138344662136,1.7658536585365854,1.7662934826069572,1.766733306677329,1.767173130747701,1.7676129548180728,1.7680527788884446,1.7684926029588164,1.7689324270291884,1.7693722510995602,1.769812075169932,1.7702518992403038,1.7706917233106758,1.7711315473810476,1.7715713714514194,1.7720111955217912,1.7724510195921632,1.772890843662535,1.7733306677329068,1.7737704918032786,1.7742103158736506,1.7746501399440224,1.7750899640143942,1.775529788084766,1.775969612155138,1.7764094362255098,1.7768492602958816,1.7772890843662534,1.7777289084366255,1.7781687325069973,1.778608556577369,1.7790483806477408,1.7794882047181129,1.7799280287884847,1.7803678528588565,1.7808076769292283,1.7812475009996,1.781687325069972,1.7821271491403439,1.7825669732107157,1.7830067972810875,1.7834466213514595,1.7838864454218313,1.784326269492203,1.7847660935625749,1.785205917632947,1.7856457417033187,1.7860855657736905,1.7865253898440623,1.7869652139144343,1.787405037984806,1.787844862055178,1.7882846861255497,1.7887245101959217,1.7891643342662935,1.7896041583366653,1.790043982407037,1.7904838064774091,1.790923630547781,1.7913634546181527,1.7918032786885245,1.7922431027588965,1.7926829268292683,1.7931227508996401,1.793562574970012,1.794002399040384,1.7944422231107557,1.7948820471811275,1.7953218712514993,1.7957616953218714,1.7962015193922432,1.796641343462615,1.7970811675329867,1.7975209916033588,1.7979608156737306,1.7984006397441024,1.7988404638144742,1.799280287884846,1.799720111955218,1.8001599360255898,1.8005997600959616,1.8010395841663334,1.8014794082367054,1.8019192323070772,1.802359056377449,1.8027988804478208,1.8032387045181928,1.8036785285885646,1.8041183526589364,1.8045581767293082,1.8049980007996802,1.805437824870052,1.8058776489404238,1.8063174730107956,1.8067572970811676,1.8071971211515394,1.8076369452219112,1.808076769292283,1.808516593362655,1.8089564174330268,1.8093962415033986,1.8098360655737704,1.8102758896441424,1.8107157137145142,1.811155537784886,1.8115953618552578,1.8120351859256298,1.8124750099960016,1.8129148340663734,1.8133546581367452,1.8137944822071173,1.814234306277489,1.8146741303478608,1.8151139544182326,1.8155537784886047,1.8159936025589765,1.8164334266293483,1.81687325069972,1.817313074770092,1.8177528988404639,1.8181927229108357,1.8186325469812075,1.8190723710515793,1.8195121951219513,1.819952019192323,1.8203918432626949,1.8208316673330667,1.8212714914034387,1.8217113154738105,1.8221511395441823,1.822590963614554,1.823030787684926,1.823470611755298,1.8239104358256697,1.8243502598960415,1.8247900839664135,1.8252299080367853,1.825669732107157,1.826109556177529,1.826549380247901,1.8269892043182727,1.8274290283886445,1.8278688524590163,1.8283086765293883,1.8287485005997601,1.829188324670132,1.8296281487405037,1.8300679728108757,1.8305077968812475,1.8309476209516193,1.8313874450219911,1.8318272690923632,1.832267093162735,1.8327069172331067,1.8331467413034785,1.8335865653738506,1.8340263894442224,1.8344662135145942,1.834906037584966,1.835345861655338,1.8357856857257098,1.8362255097960816,1.8366653338664534,1.8371051579368252,1.8375449820071972,1.837984806077569,1.8384246301479408,1.8388644542183126,1.8393042782886846,1.8397441023590564,1.8401839264294282,1.8406237504998,1.841063574570172,1.8415033986405438,1.8419432227109156,1.8423830467812874,1.8428228708516594,1.8432626949220312,1.843702518992403,1.8441423430627748,1.8445821671331468,1.8450219912035186,1.8454618152738904,1.8459016393442622,1.8463414634146342,1.846781287485006,1.8472211115553778,1.8476609356257496,1.8481007596961216,1.8485405837664934,1.8489804078368652,1.849420231907237,1.849860055977609,1.8502998800479808,1.8507397041183526,1.8511795281887244,1.8516193522590965,1.8520591763294683,1.85249900039984,1.8529388244702119,1.8533786485405839,1.8538184726109557,1.8542582966813275,1.8546981207516993,1.855137944822071,1.855577768892443,1.8560175929628149,1.8564574170331867,1.8568972411035585,1.8573370651739305,1.8577768892443023,1.858216713314674,1.8586565373850459,1.859096361455418,1.8595361855257897,1.8599760095961615,1.8604158336665333,1.8608556577369053,1.861295481807277,1.861735305877649,1.8621751299480207,1.8626149540183927,1.8630547780887645,1.8634946021591363,1.8639344262295081,1.8643742502998801,1.864814074370252,1.8652538984406237,1.8656937225109955,1.8661335465813675,1.8665733706517393,1.8670131947221111,1.867453018792483,1.867892842862855,1.8683326669332267,1.8687724910035985,1.8692123150739703,1.8696521391443424,1.8700919632147142,1.870531787285086,1.8709716113554578,1.8714114354258298,1.8718512594962016,1.8722910835665734,1.8727309076369452,1.8731707317073172,1.873610555777689,1.8740503798480608,1.8744902039184326,1.8749300279888044,1.8753698520591764,1.8758096761295482,1.87624950019992,1.8766893242702918,1.8771291483406638,1.8775689724110356,1.8780087964814074,1.8784486205517792,1.8788884446221512,1.879328268692523,1.8797680927628948,1.8802079168332666,1.8806477409036386,1.8810875649740104,1.8815273890443822,1.881967213114754,1.882407037185126,1.8828468612554978,1.8832866853258696,1.8837265093962414,1.8841663334666134,1.8846061575369852,1.885045981607357,1.8854858056777288,1.8859256297481009,1.8863654538184726,1.8868052778888444,1.8872451019592162,1.8876849260295883,1.88812475009996,1.8885645741703319,1.8890043982407037,1.8894442223110757,1.8898840463814475,1.8903238704518193,1.890763694522191,1.891203518592563,1.8916433426629349,1.8920831667333067,1.8925229908036785,1.8929628148740503,1.8934026389444223,1.893842463014794,1.8942822870851659,1.8947221111555377,1.8951619352259097,1.8956017592962815,1.8960415833666533,1.896481407437025,1.896921231507397,1.897361055577769,1.8978008796481407,1.8982407037185125,1.8986805277888845,1.8991203518592563,1.8995601759296281,1.9,1.900439824070372,1.9008796481407437,1.9013194722111155,1.9017592962814873,1.9021991203518593,1.9026389444222311,1.903078768492603,1.9035185925629747,1.9039584166333468,1.9043982407037185,1.9048380647740903,1.9052778888444621,1.9057177129148342,1.906157536985206,1.9065973610555778,1.9070371851259496,1.9074770091963216,1.9079168332666934,1.9083566573370652,1.908796481407437,1.909236305477809,1.9096761295481808,1.9101159536185526,1.9105557776889244,1.9109956017592964,1.9114354258296682,1.91187524990004,1.9123150739704118,1.9127548980407836,1.9131947221111556,1.9136345461815274,1.9140743702518992,1.914514194322271,1.914954018392643,1.9153938424630148,1.9158336665333866,1.9162734906037584,1.9167133146741304,1.9171531387445022,1.917592962814874,1.9180327868852458,1.9184726109556178,1.9189124350259896,1.9193522590963614,1.9197920831667332,1.9202319072371052,1.920671731307477,1.9211115553778488,1.9215513794482206,1.9219912035185927,1.9224310275889644,1.9228708516593362,1.923310675729708,1.92375049980008,1.9241903238704519,1.9246301479408237,1.9250699720111955,1.9255097960815675,1.9259496201519393,1.926389444222311,1.9268292682926829,1.9272690923630549,1.9277089164334267,1.9281487405037985,1.9285885645741703,1.9290283886445423,1.929468212714914,1.9299080367852859,1.9303478608556577,1.9307876849260295,1.9312275089964015,1.9316673330667733,1.932107157137145,1.932546981207517,1.932986805277889,1.9334266293482607,1.9338664534186325,1.9343062774890043,1.9347461015593763,1.9351859256297481,1.93562574970012,1.9360655737704917,1.9365053978408637,1.9369452219112355,1.9373850459816073,1.9378248700519791,1.9382646941223511,1.938704518192723,1.9391443422630947,1.9395841663334665,1.9400239904038385,1.9404638144742103,1.9409036385445821,1.941343462614954,1.941783286685326,1.9422231107556978,1.9426629348260696,1.9431027588964414,1.9435425829668134,1.9439824070371852,1.944422231107557,1.9448620551779288,1.9453018792483008,1.9457417033186726,1.9461815273890444,1.9466213514594162,1.9470611755297882,1.94750099960016,1.9479408236705318,1.9483806477409036,1.9488204718112754,1.9492602958816474,1.9497001199520192,1.950139944022391,1.9505797680927628,1.9510195921631348,1.9514594162335066,1.9518992403038784,1.9523390643742502,1.9527788884446222,1.953218712514994,1.9536585365853658,1.9540983606557376,1.9545381847261096,1.9549780087964814,1.9554178328668532,1.955857656937225,1.956297481007597,1.9567373050779688,1.9571771291483406,1.9576169532187124,1.9580567772890844,1.9584966013594562,1.958936425429828,1.9593762495001998,1.9598160735705719,1.9602558976409437,1.9606957217113155,1.9611355457816873,1.9615753698520593,1.962015193922431,1.9624550179928029,1.9628948420631747,1.9633346661335467,1.9637744902039185,1.9642143142742903,1.964654138344662,1.965093962415034,1.9655337864854059,1.9659736105557777,1.9664134346261495,1.9668532586965215,1.9672930827668933,1.967732906837265,1.968172730907637,1.9686125549780087,1.9690523790483807,1.9694922031187525,1.9699320271891243,1.970371851259496,1.9708116753298681,1.97125149940024,1.9716913234706117,1.9721311475409835,1.9725709716113555,1.9730107956817273,1.9734506197520991,1.973890443822471,1.974330267892843,1.9747700919632147,1.9752099160335865,1.9756497401039583,1.9760895641743303,1.9765293882447021,1.976969212315074,1.9774090363854457,1.9778488604558178,1.9782886845261896,1.9787285085965614,1.9791683326669331,1.9796081567373052,1.980047980807677,1.9804878048780488,1.9809276289484206,1.9813674530187926,1.9818072770891644,1.9822471011595362,1.982686925229908,1.98312674930028,1.9835665733706518,1.9840063974410236,1.9844462215113954,1.9848860455817674,1.9853258696521392,1.985765693722511,1.9862055177928828,1.9866453418632546,1.9870851659336266,1.9875249900039984,1.9879648140743702,1.988404638144742,1.988844462215114,1.9892842862854858,1.9897241103558576,1.9901639344262294,1.9906037584966014,1.9910435825669732,1.991483406637345,1.9919232307077168,1.9923630547780888,1.9928028788484606,1.9932427029188324,1.9936825269892042,1.9941223510595762,1.994562175129948,1.9950019992003198,1.9954418232706916,1.9958816473410637,1.9963214714114355,1.9967612954818073,1.997201119552179,1.997640943622551,1.9980807676929229,1.9985205917632947,1.9989604158336665,1.9994002399040385,1.9998400639744103,2.000279888044782,2.000719712115154,2.0011595361855257,2.0015993602558977,2.0020391843262697,2.0024790083966413,2.0029188324670133,2.003358656537385,2.003798480607757,2.004238304678129,2.0046781287485005,2.0051179528188725,2.005557776889244,2.005997600959616,2.006437425029988,2.0068772491003597,2.0073170731707317,2.0077568972411037,2.0081967213114753,2.0086365453818473,2.009076369452219,2.009516193522591,2.009956017592963,2.0103958416633345,2.0108356657337065,2.0112754898040786,2.01171531387445,2.012155137944822,2.0125949620151937,2.0130347860855657,2.0134746101559378,2.0139144342263093,2.0143542582966814,2.0147940823670534,2.015233906437425,2.015673730507797,2.0161135545781685,2.0165533786485406,2.0169932027189126,2.017433026789284,2.017872850859656,2.018312674930028,2.0187524990003998,2.019192323070772,2.0196321471411434,2.0200719712115154,2.0205117952818874,2.020951619352259,2.021391443422631,2.021831267493003,2.0222710915633746,2.0227109156337466,2.023150739704118,2.02359056377449,2.0240303878448622,2.024470211915234,2.024910035985606,2.0253498600559774,2.0257896841263494,2.0262295081967214,2.026669332267093,2.027109156337465,2.027548980407837,2.0279888044782086,2.0284286285485806,2.028868452618952,2.0293082766893242,2.0297481007596962,2.030187924830068,2.03062774890044,2.031067572970812,2.0315073970411834,2.0319472211115555,2.032387045181927,2.032826869252299,2.033266693322671,2.0337065173930426,2.0341463414634147,2.0345861655337867,2.0350259896041583,2.0354658136745303,2.035905637744902,2.036345461815274,2.036785285885646,2.0372251099560175,2.0376649340263895,2.0381047580967615,2.038544582167133,2.038984406237505,2.0394242303078767,2.0398640543782487,2.0403038784486207,2.0407437025189923,2.0411835265893643,2.0416233506597363,2.042063174730108,2.04250299880048,2.0429428228708515,2.0433826469412235,2.0438224710115955,2.044262295081967,2.044702119152339,2.0451419432227107,2.0455817672930827,2.0460215913634547,2.0464614154338263,2.0469012395041983,2.0473410635745704,2.047780887644942,2.048220711715314,2.0486605357856855,2.0491003598560575,2.0495401839264296,2.049980007996801,2.050419832067173,2.050859656137545,2.0512994802079167,2.0517393042782888,2.0521791283486603,2.0526189524190324,2.0530587764894044,2.053498600559776,2.053938424630148,2.05437824870052,2.0548180727708916,2.0552578968412636,2.055697720911635,2.056137544982007,2.056577369052379,2.0570171931227508,2.057457017193123,2.057896841263495,2.0583366653338664,2.0587764894042384,2.05921631347461,2.059656137544982,2.060095961615354,2.0605357856857256,2.0609756097560976,2.0614154338264696,2.061855257896841,2.0622950819672132,2.062734906037585,2.063174730107957,2.063614554178329,2.0640543782487004,2.0644942023190724,2.064934026389444,2.065373850459816,2.065813674530188,2.0662534986005596,2.0666933226709316,2.0671331467413037,2.0675729708116752,2.0680127948820473,2.068452618952419,2.068892443022791,2.069332267093163,2.0697720911635344,2.0702119152339065,2.0706517393042785,2.07109156337465,2.071531387445022,2.0719712115153937,2.0724110355857657,2.0728508596561377,2.0732906837265093,2.0737305077968813,2.0741703318672533,2.074610155937625,2.075049980007997,2.0754898040783685,2.0759296281487405,2.0763694522191125,2.076809276289484,2.077249100359856,2.077688924430228,2.0781287485005997,2.0785685725709717,2.0790083966413433,2.0794482207117153,2.0798880447820873,2.080327868852459,2.080767692922831,2.0812075169932025,2.0816473410635745,2.0820871651339465,2.082526989204318,2.08296681327469,2.083406637345062,2.0838464614154337,2.0842862854858057,2.0847261095561773,2.0851659336265493,2.0856057576969214,2.086045581767293,2.086485405837665,2.086925229908037,2.0873650539784085,2.0878048780487806,2.088244702119152,2.088684526189524,2.089124350259896,2.0895641743302678,2.0900039984006398,2.090443822471012,2.0908836465413834,2.0913234706117554,2.091763294682127,2.092203118752499,2.092642942822871,2.0930827668932426,2.0935225909636146,2.0939624150339866,2.094402239104358,2.09484206317473,2.095281887245102,2.095721711315474,2.096161535385846,2.0966013594562174,2.0970411835265894,2.0974810075969614,2.097920831667333,2.098360655737705,2.0988004798080766,2.0992403038784486,2.0996801279488206,2.100119952019192,2.1005597760895642,2.100999600159936,2.101439424230308,2.10187924830068,2.1023190723710514,2.1027588964414234,2.1031987205117955,2.103638544582167,2.104078368652539,2.1045181927229106,2.1049580167932826,2.1053978408636547,2.1058376649340262,2.1062774890043983,2.1067173130747703,2.107157137145142,2.107596961215514,2.1080367852858855,2.1084766093562575,2.1089164334266295,2.109356257497001,2.109796081567373,2.110235905637745,2.1106757297081167,2.1111155537784887,2.1115553778488603,2.1119952019192323,2.1124350259896043,2.112874850059976,2.113314674130348,2.11375449820072,2.1141943222710915,2.1146341463414635,2.115073970411835,2.115513794482207,2.115953618552579,2.1163934426229507,2.1168332666933227,2.1172730907636947,2.1177129148340663,2.1181527389044383,2.11859256297481,2.119032387045182,2.119472211115554,2.1199120351859255,2.1203518592562975,2.120791683326669,2.121231507397041,2.121671331467413,2.1221111555377847,2.1225509796081568,2.1229908036785288,2.1234306277489003,2.1238704518192724,2.124310275889644,2.124750099960016,2.125189924030388,2.1256297481007596,2.1260695721711316,2.1265093962415036,2.126949220311875,2.127389044382247,2.1278288684526188,2.128268692522991,2.128708516593363,2.1291483406637344,2.1295881647341064,2.1300279888044784,2.13046781287485,2.130907636945222,2.1313474610155936,2.1317872850859656,2.1322271091563376,2.132666933226709,2.133106757297081,2.1335465813674532,2.133986405437825,2.134426229508197,2.1348660535785684,2.1353058776489404,2.1357457017193124,2.136185525789684,2.136625349860056,2.1370651739304276,2.1375049980007996,2.1379448220711716,2.138384646141543,2.1388244702119152,2.1392642942822873,2.139704118352659,2.140143942423031,2.1405837664934024,2.1410235905637744,2.1414634146341465,2.141903238704518,2.14234306277489,2.142782886845262,2.1432227109156337,2.1436625349860057,2.1441023590563772,2.1445421831267493,2.1449820071971213,2.145421831267493,2.145861655337865,2.146301479408237,2.1467413034786085,2.1471811275489805,2.147620951619352,2.148060775689724,2.148500599760096,2.1489404238304677,2.1493802479008397,2.1498200719712117,2.1502598960415833,2.1506997201119553,2.151139544182327,2.151579368252699,2.152019192323071,2.1524590163934425,2.1528988404638145,2.1533386645341865,2.153778488604558,2.15421831267493,2.1546581367453017,2.1550979608156737,2.1555377848860457,2.1559776089564173,2.1564174330267893,2.156857257097161,2.157297081167533,2.157736905237905,2.1581767293082765,2.1586165533786486,2.1590563774490206,2.159496201519392,2.159936025589764,2.1603758496601357,2.1608156737305078,2.1612554978008798,2.1616953218712514,2.1621351459416234,2.1625749700119954,2.163014794082367,2.163454618152739,2.1638944422231106,2.1643342662934826,2.1647740903638546,2.165213914434226,2.165653738504598,2.16609356257497,2.166533386645342,2.166973210715714,2.1674130347860854,2.1678528588564574,2.1682926829268294,2.168732506997201,2.169172331067573,2.169612155137945,2.1700519792083166,2.1704918032786886,2.17093162734906,2.171371451419432,2.1718112754898042,2.172251099560176,2.172690923630548,2.17313074770092,2.1735705717712914,2.1740103958416634,2.174450219912035,2.174890043982407,2.175329868052779,2.1757696921231506,2.1762095161935227,2.1766493402638942,2.1770891643342662,2.1775289884046383,2.17796881247501,2.178408636545382,2.178848460615754,2.1792882846861255,2.1797281087564975,2.180167932826869,2.180607756897241,2.181047580967613,2.1814874050379847,2.1819272291083567,2.1823670531787287,2.1828068772491003,2.1832467013194723,2.183686525389844,2.184126349460216,2.184566173530588,2.1850059976009595,2.1854458216713315,2.1858856457417035,2.186325469812075,2.186765293882447,2.1872051179528187,2.1876449420231907,2.1880847660935627,2.1885245901639343,2.1889644142343063,2.1894042383046783,2.18984406237505,2.190283886445422,2.1907237105157935,2.1911635345861655,2.1916033586565375,2.192043182726909,2.192483006797281,2.1929228308676527,2.1933626549380247,2.1938024790083968,2.1942423030787683,2.1946821271491403,2.1951219512195124,2.195561775289884,2.196001599360256,2.1964414234306275,2.1968812475009996,2.1973210715713716,2.197760895641743,2.198200719712115,2.198640543782487,2.1990803678528588,2.199520191923231,2.1999600159936024,2.2003998400639744,2.2008396641343464,2.201279488204718,2.20171931227509,2.202159136345462,2.2025989604158336,2.2030387844862056,2.203478608556577,2.203918432626949,2.204358256697321,2.204798080767693,2.205237904838065,2.205677728908437,2.2061175529788084,2.2065573770491804,2.206997201119552,2.207437025189924,2.207876849260296,2.2083166733306676,2.2087564974010396,2.2091963214714117,2.2096361455417832,2.2100759696121552,2.210515793682527,2.210955617752899,2.211395441823271,2.2118352658936424,2.2122750899640145,2.212714914034386,2.213154738104758,2.21359456217513,2.2140343862455016,2.2144742103158737,2.2149140343862457,2.2153538584566173,2.2157936825269893,2.216233506597361,2.216673330667733,2.217113154738105,2.2175529788084765,2.2179928028788485,2.2184326269492205,2.218872451019592,2.219312275089964,2.2197520991603357,2.2201919232307077,2.2206317473010797,2.2210715713714513,2.2215113954418233,2.2219512195121953,2.222391043582567,2.222830867652939,2.2232706917233105,2.2237105157936825,2.2241503398640545,2.224590163934426,2.225029988004798,2.22546981207517,2.2259096361455417,2.2263494602159137,2.2267892842862853,2.2272291083566573,2.2276689324270293,2.228108756497401,2.228548580567773,2.228988404638145,2.2294282287085165,2.2298680527788886,2.23030787684926,2.230747700919632,2.231187524990004,2.2316273490603757,2.2320671731307478,2.2325069972011193,2.2329468212714914,2.2333866453418634,2.233826469412235,2.234266293482607,2.234706117552979,2.2351459416233506,2.2355857656937226,2.236025589764094,2.236465413834466,2.236905237904838,2.2373450619752098,2.237784886045582,2.238224710115954,2.2386645341863254,2.2391043582566974,2.239544182327069,2.239984006397441,2.240423830467813,2.2408636545381846,2.2413034786085566,2.2417433026789286,2.2421831267493,2.2426229508196722,2.243062774890044,2.243502598960416,2.243942423030788,2.2443822471011594,2.2448220711715314,2.2452618952419034,2.245701719312275,2.246141543382647,2.2465813674530186,2.2470211915233906,2.2474610155937627,2.2479008396641342,2.2483406637345063,2.2487804878048783,2.24922031187525,2.249660135945622,2.2500999600159934,2.2505397840863655,2.2509796081567375,2.251419432227109,2.251859256297481,2.2522990803678526,2.2527389044382247,2.2531787285085967,2.2536185525789683,2.2540583766493403,2.2544982007197123,2.254938024790084,2.255377848860456,2.2558176729308275,2.2562574970011995,2.2566973210715715,2.257137145141943,2.257576969212315,2.258016793282687,2.2584566173530587,2.2588964414234307,2.2593362654938023,2.2597760895641743,2.2602159136345463,2.260655737704918,2.26109556177529,2.261535385845662,2.2619752099160335,2.2624150339864055,2.262854858056777,2.263294682127149,2.263734506197521,2.2641743302678927,2.2646141543382647,2.2650539784086368,2.2654938024790083,2.2659336265493804,2.266373450619752,2.266813274690124,2.267253098760496,2.2676929228308675,2.2681327469012396,2.268572570971611,2.269012395041983,2.269452219112355,2.2698920431827267,2.2703318672530988,2.270771691323471,2.2712115153938424,2.2716513394642144,2.272091163534586,2.272530987604958,2.27297081167533,2.2734106357457016,2.2738504598160736,2.2742902838864456,2.274730107956817,2.275169932027189,2.2756097560975608,2.276049580167933,2.276489404238305,2.2769292283086764,2.2773690523790484,2.2778088764494204,2.278248700519792,2.278688524590164,2.2791283486605356,2.2795681727309076,2.2800079968012796,2.280447820871651,2.2808876449420232,2.2813274690123952,2.281767293082767,2.282207117153139,2.2826469412235104,2.2830867652938824,2.2835265893642545,2.283966413434626,2.284406237504998,2.28484606157537,2.2852858856457416,2.2857257097161137,2.2861655337864852,2.2866053578568573,2.2870451819272293,2.287485005997601,2.287924830067973,2.2883646541383444,2.2888044782087165,2.2892443022790885,2.28968412634946,2.290123950419832,2.290563774490204,2.2910035985605757,2.2914434226309477,2.2918832467013193,2.2923230707716913,2.2927628948420633,2.293202718912435,2.293642542982807,2.294082367053179,2.2945221911235505,2.2949620151939225,2.295401839264294,2.295841663334666,2.296281487405038,2.2967213114754097,2.2971611355457817,2.2976009596161537,2.2980407836865253,2.2984806077568973,2.298920431827269,2.299360255897641,2.299800079968013,2.3002399040383845,2.3006797281087565,2.3011195521791286,2.3015593762495,2.301999200319872,2.3024390243902437,2.3028788484606157,2.3033186725309878,2.3037584966013593,2.3041983206717314,2.3046381447421034,2.305077968812475,2.305517792882847,2.3059576169532185,2.3063974410235906,2.3068372650939626,2.307277089164334,2.307716913234706,2.3081567373050778,2.3085965613754498,2.309036385445822,2.3094762095161934,2.3099160335865654,2.3103558576569374,2.310795681727309,2.311235505797681,2.3116753298680526,2.3121151539384246,2.3125549780087966,2.312994802079168,2.31343462614954,2.3138744502199122,2.314314274290284,2.314754098360656,2.3151939224310274,2.3156337465013994,2.3160735705717714,2.316513394642143,2.316953218712515,2.317393042782887,2.3178328668532586,2.3182726909236306,2.318712514994002,2.3191523390643742,2.3195921631347463,2.320031987205118,2.32047181127549,2.320911635345862,2.3213514594162334,2.3217912834866055,2.322231107556977,2.322670931627349,2.323110755697721,2.3235505797680926,2.3239904038384647,2.3244302279088362,2.3248700519792083,2.3253098760495803,2.325749700119952,2.326189524190324,2.326629348260696,2.3270691723310675,2.3275089964014395,2.327948820471811,2.328388644542183,2.328828468612555,2.3292682926829267,2.3297081167532987,2.3301479408236707,2.3305877648940423,2.3310275889644143,2.331467413034786,2.331907237105158,2.33234706117553,2.3327868852459015,2.3332267093162735,2.3336665333866455,2.334106357457017,2.334546181527389,2.3349860055977607,2.3354258296681327,2.3358656537385047,2.3363054778088763,2.3367453018792483,2.3371851259496204,2.337624950019992,2.338064774090364,2.3385045981607355,2.3389444222311075,2.3393842463014796,2.339824070371851,2.340263894442223,2.340703718512595,2.3411435425829668,2.3415833666533388,2.3420231907237103,2.3424630147940824,2.3429028388644544,2.343342662934826,2.343782487005198,2.3442223110755696,2.3446621351459416,2.3451019592163136,2.345541783286685,2.345981607357057,2.346421431427429,2.346861255497801,2.347301079568173,2.3477409036385444,2.3481807277089164,2.3486205517792884,2.34906037584966,2.349500199920032,2.349940023990404,2.3503798480607756,2.3508196721311476,2.351259496201519,2.351699320271891,2.3521391443422632,2.352578968412635,2.353018792483007,2.353458616553379,2.3538984406237504,2.3543382646941224,2.354778088764494,2.355217912834866,2.355657736905238,2.3560975609756096,2.3565373850459816,2.3569772091163537,2.3574170331867252,2.3578568572570973,2.358296681327469,2.358736505397841,2.359176329468213,2.3596161535385844,2.3600559776089565,2.3604958016793285,2.3609356257497,2.361375449820072,2.3618152738904437,2.3622550979608157,2.3626949220311877,2.3631347461015593,2.3635745701719313,2.364014394242303,2.364454218312675,2.364894042383047,2.3653338664534185,2.3657736905237905,2.3662135145941625,2.366653338664534,2.367093162734906,2.3675329868052777,2.3679728108756497,2.3684126349460217,2.3688524590163933,2.3692922830867653,2.3697321071571373,2.370171931227509,2.370611755297881,2.3710515793682525,2.3714914034386245,2.3719312275089965,2.372371051579368,2.37281087564974,2.373250699720112,2.3736905237904837,2.3741303478608557,2.3745701719312273,2.3750099960015993,2.3754498200719714,2.375889644142343,2.376329468212715,2.376769292283087,2.3772091163534586,2.3776489404238306,2.378088764494202,2.378528588564574,2.378968412634946,2.3794082367053178,2.3798480607756898,2.380287884846062,2.3807277089164334,2.3811675329868054,2.381607357057177,2.382047181127549,2.382487005197921,2.3829268292682926,2.3833666533386646,2.383806477409036,2.384246301479408,2.38468612554978,2.385125949620152,2.385565773690524,2.386005597760896,2.3864454218312674,2.3868852459016394,2.387325069972011,2.387764894042383,2.388204718112755,2.3886445421831266,2.3890843662534986,2.3895241903238706,2.389964014394242,2.3904038384646142,2.390843662534986,2.391283486605358,2.39172331067573,2.3921631347461014,2.3926029588164734,2.3930427828868455,2.393482606957217,2.393922431027589,2.3943622550979606,2.3948020791683327,2.3952419032387047,2.3956817273090762,2.3961215513794483,2.3965613754498203,2.397001199520192,2.397441023590564,2.3978808476609355,2.3983206717313075,2.3987604958016795,2.399200319872051,2.399640143942423,2.4000799680127947,2.4005197920831667,2.4009596161535387,2.4013994402239103,2.4018392642942823,2.4022790883646543,2.402718912435026,2.403158736505398,2.4035985605757695,2.4040383846461415,2.4044782087165135,2.404918032786885,2.405357856857257,2.405797680927629,2.4062375049980007,2.4066773290683727,2.4071171531387443,2.4075569772091163,2.4079968012794883,2.40843662534986,2.408876449420232,2.409316273490604,2.4097560975609755,2.4101959216313475,2.410635745701719,2.411075569772091,2.411515393842463,2.4119552179128347,2.4123950419832068,2.4128348660535788,2.4132746901239504,2.4137145141943224,2.414154338264694,2.414594162335066,2.415033986405438,2.4154738104758096,2.4159136345461816,2.4163534586165536,2.416793282686925,2.417233106757297,2.4176729308276688,2.418112754898041,2.418552578968413,2.4189924030387844,2.4194322271091564,2.419872051179528,2.4203118752499,2.420751699320272,2.4211915233906436,2.4216313474610156,2.4220711715313876,2.422510995601759,2.422950819672131,2.423390643742503,2.423830467812875,2.424270291883247,2.4247101159536184,2.4251499400239904,2.4255897640943624,2.426029588164734,2.426469412235106,2.4269092363054776,2.4273490603758496,2.4277888844462217,2.4282287085165932,2.4286685325869652,2.4291083566573373,2.429548180727709,2.429988004798081,2.4304278288684524,2.4308676529388245,2.4313074770091965,2.431747301079568,2.43218712514994,2.432626949220312,2.4330667732906837,2.4335065973610557,2.4339464214314273,2.4343862455017993,2.4348260695721713,2.435265893642543,2.435705717712915,2.436145541783287,2.4365853658536585,2.4370251899240305,2.437465013994402,2.437904838064774,2.438344662135146,2.4387844862055177,2.4392243102758897,2.4396641343462613,2.4401039584166333,2.4405437824870053,2.440983606557377,2.441423430627749,2.441863254698121,2.4423030787684925,2.4427429028388645,2.443182726909236,2.443622550979608,2.44406237504998,2.4445021991203517,2.4449420231907237,2.4453818472610958,2.4458216713314673,2.4462614954018393,2.446701319472211,2.447141143542583,2.447580967612955,2.4480207916833265,2.4484606157536986,2.4489004398240706,2.449340263894442,2.449780087964814,2.4502199120351857,2.4506597361055578,2.45109956017593,2.4515393842463014,2.4519792083166734,2.4524190323870454,2.452858856457417,2.453298680527789,2.4537385045981606,2.4541783286685326,2.4546181527389046,2.455057976809276,2.455497800879648,2.4559376249500198,2.456377449020392,2.456817273090764,2.4572570971611354,2.4576969212315074,2.4581367453018794,2.458576569372251,2.459016393442623,2.4594562175129946,2.4598960415833666,2.4603358656537386,2.46077568972411,2.4612155137944822,2.4616553378648542,2.462095161935226,2.462534986005598,2.4629748100759694,2.4634146341463414,2.4638544582167135,2.464294282287085,2.464734106357457,2.465173930427829,2.4656137544982006,2.4660535785685727,2.4664934026389442,2.4669332267093163,2.4673730507796883,2.46781287485006,2.468252698920432,2.468692522990804,2.4691323470611755,2.4695721711315475,2.470011995201919,2.470451819272291,2.470891643342663,2.4713314674130347,2.4717712914834067,2.4722111155537787,2.4726509396241503,2.4730907636945223,2.473530587764894,2.473970411835266,2.474410235905638,2.4748500599760095,2.4752898840463815,2.475729708116753,2.476169532187125,2.476609356257497,2.4770491803278687,2.4774890043982407,2.4779288284686127,2.4783686525389843,2.4788084766093563,2.479248300679728,2.4796881247501,2.480127948820472,2.4805677728908435,2.4810075969612155,2.4814474210315876,2.481887245101959,2.482327069172331,2.4827668932427027,2.4832067173130747,2.4836465413834468,2.4840863654538183,2.4845261895241904,2.4849660135945624,2.485405837664934,2.485845661735306,2.4862854858056775,2.4867253098760496,2.4871651339464216,2.487604958016793,2.488044782087165,2.488484606157537,2.4889244302279088,2.489364254298281,2.4898040783686524,2.4902439024390244,2.4906837265093964,2.491123550579768,2.49156337465014,2.492003198720512,2.4924430227908836,2.4928828468612556,2.493322670931627,2.493762495001999,2.494202319072371,2.494642143142743,2.495081967213115,2.4955217912834864,2.4959616153538584,2.4964014394242304,2.496841263494602,2.497281087564974,2.497720911635346,2.4981607357057176,2.4986005597760896,2.499040383846461,2.4994802079168332,2.4999200319872052,2.500359856057577,2.500799680127949,2.501239504198321,2.5016793282686924,2.5021191523390645,2.502558976409436,2.502998800479808,2.50343862455018,2.5038784486205516,2.5043182726909237,2.5047580967612957,2.5051979208316673,2.5056377449020393,2.506077568972411,2.506517393042783,2.506957217113155,2.5073970411835265,2.5078368652538985,2.5082766893242705,2.508716513394642,2.509156337465014,2.5095961615353857,2.5100359856057577,2.5104758096761297,2.5109156337465013,2.5113554578168733,2.5117952818872453,2.512235105957617,2.512674930027989,2.5131147540983605,2.5135545781687325,2.5139944022391045,2.514434226309476,2.514874050379848,2.5153138744502197,2.5157536985205917,2.5161935225909637,2.5166333466613353,2.5170731707317073,2.5175129948020794,2.517952818872451,2.518392642942823,2.5188324670131945,2.5192722910835665,2.5197121151539386,2.52015193922431,2.520591763294682,2.521031587365054,2.5214714114354257,2.5219112355057978,2.5223510595761693,2.5227908836465414,2.5232307077169134,2.523670531787285,2.524110355857657,2.524550179928029,2.5249900039984006,2.5254298280687726,2.525869652139144,2.526309476209516,2.526749300279888,2.5271891243502598,2.527628948420632,2.528068772491004,2.5285085965613754,2.5289484206317474,2.529388244702119,2.529828068772491,2.530267892842863,2.5307077169132346,2.5311475409836066,2.531587365053978,2.53202718912435,2.5324670131947222,2.532906837265094,2.533346661335466,2.533786485405838,2.5342263094762094,2.5346661335465814,2.535105957616953,2.535545781687325,2.535985605757697,2.5364254298280686,2.5368652538984406,2.5373050779688127,2.5377449020391842,2.5381847261095563,2.538624550179928,2.5390643742503,2.539504198320672,2.5399440223910434,2.5403838464614155,2.5408236705317875,2.541263494602159,2.541703318672531,2.5421431427429027,2.5425829668132747,2.5430227908836467,2.5434626149540183,2.5439024390243903,2.5443422630947623,2.544782087165134,2.545221911235506,2.5456617353058775,2.5461015593762495,2.5465413834466215,2.546981207516993,2.547421031587365,2.547860855657737,2.5483006797281087,2.5487405037984807,2.5491803278688523,2.5496201519392243,2.5500599760095963,2.550499800079968,2.55093962415034,2.5513794482207115,2.5518192722910835,2.5522590963614555,2.552698920431827,2.553138744502199,2.553578568572571,2.5540183926429427,2.5544582167133147,2.5548980407836863,2.5553378648540583,2.5557776889244304,2.556217512994802,2.556657337065174,2.557097161135546,2.5575369852059175,2.5579768092762896,2.558416633346661,2.558856457417033,2.559296281487405,2.5597361055577768,2.5601759296281488,2.560615753698521,2.5610555777688924,2.5614954018392644,2.561935225909636,2.562375049980008,2.56281487405038,2.5632546981207516,2.5636945221911236,2.5641343462614956,2.564574170331867,2.565013994402239,2.565453818472611,2.565893642542983,2.566333466613355,2.5667732906837264,2.5672131147540984,2.5676529388244704,2.568092762894842,2.568532586965214,2.5689724110355856,2.5694122351059576,2.5698520591763296,2.570291883246701,2.5707317073170732,2.571171531387445,2.571611355457817,2.572051179528189,2.5724910035985604,2.5729308276689324,2.5733706517393045,2.573810475809676,2.574250299880048,2.5746901239504196,2.5751299480207916,2.5755697720911637,2.5760095961615352,2.5764494202319073,2.5768892443022793,2.577329068372651,2.577768892443023,2.5782087165133944,2.5786485405837665,2.5790883646541385,2.57952818872451,2.579968012794882,2.580407836865254,2.5808476609356257,2.5812874850059977,2.5817273090763693,2.5821671331467413,2.5826069572171133,2.583046781287485,2.583486605357857,2.583926429428229,2.5843662534986005,2.5848060775689725,2.585245901639344,2.585685725709716,2.586125549780088,2.5865653738504597,2.5870051979208317,2.5874450219912033,2.5878848460615753,2.5883246701319473,2.588764494202319,2.589204318272691,2.589644142343063,2.5900839664134345,2.5905237904838065,2.590963614554178,2.59140343862455,2.591843262694922,2.5922830867652937,2.5927229108356658,2.5931627349060378,2.5936025589764093,2.5940423830467814,2.594482207117153,2.594922031187525,2.595361855257897,2.5958016793282686,2.5962415033986406,2.5966813274690126,2.597121151539384,2.597560975609756,2.5980007996801278,2.5984406237505,2.598880447820872,2.5993202718912434,2.5997600959616154,2.6001999200319874,2.600639744102359,2.601079568172731,2.6015193922431026,2.6019592163134746,2.6023990403838466,2.602838864454218,2.60327868852459,2.6037185125949622,2.604158336665334,2.604598160735706,2.6050379848060774,2.6054778088764494,2.6059176329468214,2.606357457017193,2.606797281087565,2.6072371051579366,2.6076769292283086,2.6081167532986806,2.608556577369052,2.6089964014394242,2.6094362255097963,2.609876049580168,2.61031587365054,2.6107556977209114,2.6111955217912834,2.6116353458616555,2.612075169932027,2.612514994002399,2.612954818072771,2.6133946421431427,2.6138344662135147,2.6142742902838862,2.6147141143542583,2.6151539384246303,2.615593762495002,2.616033586565374,2.616473410635746,2.6169132347061175,2.6173530587764895,2.617792882846861,2.618232706917233,2.618672530987605,2.6191123550579767,2.6195521791283487,2.6199920031987207,2.6204318272690923,2.6208716513394643,2.621311475409836,2.621751299480208,2.62219112355058,2.6226309476209515,2.6230707716913235,2.6235105957616955,2.623950419832067,2.624390243902439,2.6248300679728107,2.6252698920431827,2.6257097161135547,2.6261495401839263,2.6265893642542983,2.62702918832467,2.627469012395042,2.627908836465414,2.6283486605357855,2.6287884846061575,2.6292283086765296,2.629668132746901,2.630107956817273,2.6305477808876447,2.6309876049580168,2.6314274290283888,2.6318672530987604,2.6323070771691324,2.6327469012395044,2.633186725309876,2.633626549380248,2.6340663734506196,2.6345061975209916,2.6349460215913636,2.635385845661735,2.635825669732107,2.636265493802479,2.636705317872851,2.637145141943223,2.6375849660135944,2.6380247900839664,2.6384646141543384,2.63890443822471,2.639344262295082,2.639784086365454,2.6402239104358256,2.6406637345061976,2.641103558576569,2.641543382646941,2.6419832067173132,2.642423030787685,2.642862854858057,2.643302678928429,2.6437425029988004,2.6441823270691724,2.644622151139544,2.645061975209916,2.645501799280288,2.6459416233506596,2.6463814474210317,2.6468212714914032,2.6472610955617752,2.6477009196321473,2.648140743702519,2.648580567772891,2.649020391843263,2.6494602159136345,2.6499000399840065,2.650339864054378,2.65077968812475,2.651219512195122,2.6516593362654937,2.6520991603358657,2.6525389844062377,2.6529788084766093,2.6534186325469813,2.653858456617353,2.654298280687725,2.654738104758097,2.6551779288284685,2.6556177528988405,2.6560575769692125,2.656497401039584,2.656937225109956,2.6573770491803277,2.6578168732506997,2.6582566973210717,2.6586965213914433,2.6591363454618153,2.6595761695321873,2.660015993602559,2.660455817672931,2.6608956417433025,2.6613354658136745,2.6617752898840465,2.662215113954418,2.66265493802479,2.6630947620951617,2.6635345861655337,2.6639744102359058,2.6644142343062773,2.6648540583766493,2.6652938824470214,2.665733706517393,2.666173530587765,2.6666133546581365,2.6670531787285086,2.6674930027988806,2.667932826869252,2.668372650939624,2.668812475009996,2.6692522990803678,2.66969212315074,2.6701319472211114,2.6705717712914834,2.6710115953618554,2.671451419432227,2.671891243502599,2.672331067572971,2.6727708916433426,2.6732107157137146,2.673650539784086,2.674090363854458,2.67453018792483,2.674970011995202,2.675409836065574,2.675849660135946,2.6762894842063174,2.6767293082766894,2.677169132347061,2.677608956417433,2.678048780487805,2.6784886045581766,2.6789284286285486,2.6793682526989206,2.6798080767692922,2.6802479008396642,2.680687724910036,2.681127548980408,2.68156737305078,2.6820071971211514,2.6824470211915235,2.682886845261895,2.683326669332267,2.683766493402639,2.6842063174730106,2.6846461415433827,2.6850859656137547,2.6855257896841263,2.6859656137544983,2.68640543782487,2.686845261895242,2.687285085965614,2.6877249100359855,2.6881647341063575,2.6886045581767295,2.689044382247101,2.689484206317473,2.6899240303878447,2.6903638544582167,2.6908036785285887,2.6912435025989603,2.6916833266693323,2.6921231507397043,2.692562974810076,2.693002798880448,2.6934426229508195,2.6938824470211915,2.6943222710915635,2.694762095161935,2.695201919232307,2.695641743302679,2.6960815673730507,2.6965213914434227,2.6969612155137943,2.6974010395841663,2.6978408636545383,2.69828068772491,2.698720511795282,2.699160335865654,2.6996001599360255,2.7000399840063976,2.700479808076769,2.700919632147141,2.701359456217513,2.7017992802878847,2.7022391043582568,2.7026789284286283,2.7031187524990004,2.7035585765693724,2.703998400639744,2.704438224710116,2.704878048780488,2.7053178728508596,2.7057576969212316,2.706197520991603,2.706637345061975,2.707077169132347,2.7075169932027188,2.707956817273091,2.708396641343463,2.7088364654138344,2.7092762894842064,2.709716113554578,2.71015593762495,2.710595761695322,2.7110355857656936,2.7114754098360656,2.7119152339064376,2.712355057976809,2.712794882047181,2.713234706117553,2.713674530187925,2.714114354258297,2.7145541783286684,2.7149940023990404,2.7154338264694124,2.715873650539784,2.716313474610156,2.7167532986805276,2.7171931227508996,2.7176329468212717,2.7180727708916432,2.7185125949620152,2.718952419032387,2.719392243102759,2.719832067173131,2.7202718912435024,2.7207117153138745,2.7211515393842465,2.721591363454618,2.72203118752499,2.7224710115953616,2.7229108356657337,2.7233506597361057,2.7237904838064773,2.7242303078768493,2.7246701319472213,2.725109956017593,2.725549780087965,2.7259896041583365,2.7264294282287085,2.7268692522990805,2.727309076369452,2.727748900439824,2.728188724510196,2.7286285485805677,2.7290683726509397,2.7295081967213113,2.7299480207916833,2.7303878448620553,2.730827668932427,2.731267493002799,2.731707317073171,2.7321471411435425,2.7325869652139145,2.733026789284286,2.733466613354658,2.73390643742503,2.7343462614954017,2.7347860855657737,2.7352259096361458,2.7356657337065173,2.7361055577768894,2.736545381847261,2.736985205917633,2.737425029988005,2.7378648540583765,2.7383046781287486,2.73874450219912,2.739184326269492,2.739624150339864,2.7400639744102357,2.7405037984806078,2.74094362255098,2.7413834466213514,2.7418232706917234,2.742263094762095,2.742702918832467,2.743142742902839,2.7435825669732106,2.7440223910435826,2.7444622151139546,2.744902039184326,2.745341863254698,2.7457816873250698,2.746221511395442,2.746661335465814,2.7471011595361854,2.7475409836065574,2.7479808076769294,2.748420631747301,2.748860455817673,2.7493002798880446,2.7497401039584166,2.7501799280287886,2.75061975209916,2.7510595761695322,2.7514994002399042,2.751939224310276,2.752379048380648,2.7528188724510194,2.7532586965213914,2.7536985205917635,2.754138344662135,2.754578168732507,2.755017992802879,2.7554578168732506,2.7558976409436227,2.7563374650139942,2.7567772890843663,2.7572171131547383,2.75765693722511,2.758096761295482,2.7585365853658534,2.7589764094362255,2.7594162335065975,2.759856057576969,2.760295881647341,2.760735705717713,2.7611755297880847,2.7616153538584567,2.7620551779288283,2.7624950019992003,2.7629348260695723,2.763374650139944,2.763814474210316,2.764254298280688,2.7646941223510595,2.7651339464214315,2.765573770491803,2.766013594562175,2.766453418632547,2.7668932427029187,2.7673330667732907,2.7677728908436627,2.7682127149140343,2.7686525389844063,2.769092363054778,2.76953218712515,2.769972011195522,2.7704118352658935,2.7708516593362655,2.7712914834066376,2.771731307477009,2.772171131547381,2.7726109556177527,2.7730507796881247,2.7734906037584968,2.7739304278288683,2.7743702518992404,2.774810075969612,2.775249900039984,2.775689724110356,2.7761295481807275,2.7765693722510996,2.7770091963214716,2.777449020391843,2.777888844462215,2.7783286685325868,2.7787684926029588,2.779208316673331,2.7796481407437024,2.7800879648140744,2.7805277888844464,2.780967612954818,2.78140743702519,2.7818472610955616,2.7822870851659336,2.7827269092363056,2.783166733306677,2.783606557377049,2.7840463814474212,2.784486205517793,2.784926029588165,2.7853658536585364,2.7858056777289084,2.7862455017992804,2.786685325869652,2.787125149940024,2.787564974010396,2.7880047980807676,2.7884446221511396,2.788884446221511,2.7893242702918832,2.7897640943622553,2.790203918432627,2.790643742502999,2.791083566573371,2.7915233906437424,2.7919632147141145,2.792403038784486,2.792842862854858,2.79328268692523,2.7937225109956016,2.7941623350659737,2.7946021591363452,2.7950419832067173,2.7954818072770893,2.795921631347461,2.796361455417833,2.796801279488205,2.7972411035585765,2.7976809276289485,2.79812075169932,2.798560575769692,2.799000399840064,2.7994402239104357,2.7998800479808077,2.8003198720511797,2.8007596961215513,2.8011995201919233,2.801639344262295,2.802079168332667,2.802518992403039,2.8029588164734105,2.8033986405437825,2.8038384646141545,2.804278288684526,2.804718112754898,2.8051579368252697,2.8055977608956417,2.8060375849660137,2.8064774090363853,2.8069172331067573,2.8073570571771294,2.807796881247501,2.808236705317873,2.8086765293882445,2.8091163534586165,2.8095561775289886,2.80999600159936,2.810435825669732,2.810875649740104,2.8113154738104758,2.8117552978808478,2.8121951219512193,2.8126349460215914,2.8130747700919634,2.813514594162335,2.813954418232707,2.8143942423030786,2.8148340663734506,2.8152738904438226,2.815713714514194,2.816153538584566,2.816593362654938,2.81703318672531,2.817473010795682,2.8179128348660534,2.8183526589364254,2.8187924830067974,2.819232307077169,2.819672131147541,2.820111955217913,2.8205517792882846,2.8209916033586566,2.821431427429028,2.8218712514994,2.8223110755697722,2.822750899640144,2.823190723710516,2.823630547780888,2.8240703718512594,2.8245101959216314,2.824950019992003,2.825389844062375,2.825829668132747,2.8262694922031186,2.8267093162734906,2.8271491403438627,2.8275889644142342,2.8280287884846063,2.828468612554978,2.82890843662535,2.829348260695722,2.8297880847660934,2.8302279088364655,2.8306677329068375,2.831107556977209,2.831547381047581,2.8319872051179527,2.8324270291883247,2.8328668532586967,2.8333066773290683,2.8337465013994403,2.834186325469812,2.834626149540184,2.835065973610556,2.8355057976809275,2.8359456217512995,2.8363854458216715,2.836825269892043,2.837265093962415,2.8377049180327867,2.8381447421031587,2.8385845661735307,2.8390243902439023,2.8394642143142743,2.8399040383846463,2.840343862455018,2.84078368652539,2.8412235105957615,2.8416633346661335,2.8421031587365055,2.842542982806877,2.842982806877249,2.843422630947621,2.8438624550179927,2.8443022790883647,2.8447421031587363,2.8451819272291083,2.8456217512994804,2.846061575369852,2.846501399440224,2.846941223510596,2.8473810475809676,2.8478208716513396,2.848260695721711,2.848700519792083,2.849140343862455,2.8495801679328268,2.8500199920031988,2.8504598160735704,2.8508996401439424,2.8513394642143144,2.851779288284686,2.852219112355058,2.85265893642543,2.8530987604958016,2.8535385845661736,2.853978408636545,2.854418232706917,2.854858056777289,2.855297880847661,2.855737704918033,2.856177528988405,2.8566173530587764,2.8570571771291484,2.85749700119952,2.857936825269892,2.858376649340264,2.8588164734106356,2.8592562974810076,2.8596961215513796,2.860135945621751,2.8605757696921232,2.861015593762495,2.861455417832867,2.861895241903239,2.8623350659736104,2.8627748900439824,2.8632147141143545,2.863654538184726,2.864094362255098,2.8645341863254696,2.8649740103958417,2.8654138344662137,2.8658536585365852,2.8662934826069573,2.8667333066773293,2.867173130747701,2.867612954818073,2.8680527788884445,2.8684926029588165,2.8689324270291885,2.86937225109956,2.869812075169932,2.8702518992403037,2.8706917233106757,2.8711315473810477,2.8715713714514193,2.8720111955217913,2.8724510195921633,2.872890843662535,2.873330667732907,2.8737704918032785,2.8742103158736505,2.8746501399440225,2.875089964014394,2.875529788084766,2.875969612155138,2.8764094362255097,2.8768492602958817,2.8772890843662533,2.8777289084366253,2.8781687325069973,2.878608556577369,2.879048380647741,2.879488204718113,2.8799280287884845,2.8803678528588565,2.880807676929228,2.8812475009996,2.881687325069972,2.8821271491403437,2.8825669732107158,2.8830067972810878,2.8834466213514593,2.8838864454218314,2.884326269492203,2.884766093562575,2.885205917632947,2.8856457417033186,2.8860855657736906,2.8865253898440626,2.886965213914434,2.887405037984806,2.8878448620551778,2.88828468612555,2.888724510195922,2.8891643342662934,2.8896041583366654,2.890043982407037,2.890483806477409,2.890923630547781,2.8913634546181526,2.8918032786885246,2.8922431027588966,2.892682926829268,2.89312275089964,2.893562574970012,2.894002399040384,2.894442223110756,2.8948820471811274,2.8953218712514994,2.8957616953218714,2.896201519392243,2.896641343462615,2.8970811675329866,2.8975209916033586,2.8979608156737307,2.8984006397441022,2.8988404638144742,2.8992802878848463,2.899720111955218,2.90015993602559,2.9005997600959614,2.9010395841663335,2.9014794082367055,2.901919232307077,2.902359056377449,2.902798880447821,2.9032387045181927,2.9036785285885647,2.9041183526589363,2.9045581767293083,2.9049980007996803,2.905437824870052,2.905877648940424,2.9063174730107955,2.9067572970811675,2.9071971211515395,2.907636945221911,2.908076769292283,2.908516593362655,2.9089564174330267,2.9093962415033987,2.9098360655737703,2.9102758896441423,2.9107157137145143,2.911155537784886,2.911595361855258,2.91203518592563,2.9124750099960015,2.9129148340663735,2.913354658136745,2.913794482207117,2.914234306277489,2.9146741303478607,2.9151139544182327,2.9155537784886048,2.9159936025589763,2.9164334266293483,2.91687325069972,2.917313074770092,2.917752898840464,2.9181927229108355,2.9186325469812076,2.9190723710515796,2.919512195121951,2.919952019192323,2.9203918432626947,2.9208316673330668,2.921271491403439,2.9217113154738104,2.9221511395441824,2.9225909636145544,2.923030787684926,2.923470611755298,2.9239104358256696,2.9243502598960416,2.9247900839664136,2.925229908036785,2.925669732107157,2.9261095561775288,2.926549380247901,2.926989204318273,2.9274290283886444,2.9278688524590164,2.9283086765293884,2.92874850059976,2.929188324670132,2.9296281487405036,2.9300679728108756,2.9305077968812476,2.930947620951619,2.9313874450219912,2.9318272690923632,2.932267093162735,2.932706917233107,2.9331467413034784,2.9335865653738504,2.9340263894442224,2.934466213514594,2.934906037584966,2.935345861655338,2.9357856857257096,2.9362255097960817,2.9366653338664532,2.9371051579368253,2.9375449820071973,2.937984806077569,2.938424630147941,2.938864454218313,2.9393042782886845,2.9397441023590565,2.940183926429428,2.9406237504998,2.941063574570172,2.9415033986405437,2.9419432227109157,2.9423830467812877,2.9428228708516593,2.9432626949220313,2.943702518992403,2.944142343062775,2.944582167133147,2.9450219912035185,2.9454618152738905,2.945901639344262,2.946341463414634,2.946781287485006,2.9472211115553777,2.9476609356257497,2.9481007596961217,2.9485405837664933,2.9489804078368653,2.949420231907237,2.949860055977609,2.950299880047981,2.9507397041183525,2.9511795281887245,2.9516193522590966,2.952059176329468,2.95249900039984,2.9529388244702117,2.9533786485405837,2.9538184726109558,2.9542582966813273,2.9546981207516994,2.9551379448220714,2.955577768892443,2.956017592962815,2.9564574170331865,2.9568972411035586,2.9573370651739306,2.957776889244302,2.958216713314674,2.958656537385046,2.9590963614554178,2.95953618552579,2.9599760095961614,2.9604158336665334,2.9608556577369054,2.961295481807277,2.961735305877649,2.962175129948021,2.9626149540183926,2.9630547780887646,2.963494602159136,2.963934426229508,2.96437425029988,2.964814074370252,2.965253898440624,2.9656937225109954,2.9661335465813674,2.9665733706517394,2.967013194722111,2.967453018792483,2.967892842862855,2.9683326669332266,2.9687724910035986,2.96921231507397,2.9696521391443422,2.9700919632147142,2.970531787285086,2.970971611355458,2.97141143542583,2.9718512594962014,2.9722910835665735,2.972730907636945,2.973170731707317,2.973610555777689,2.9740503798480606,2.9744902039184327,2.9749300279888047,2.9753698520591763,2.9758096761295483,2.97624950019992,2.976689324270292,2.977129148340664,2.9775689724110355,2.9780087964814075,2.9784486205517795,2.978888444622151,2.979328268692523,2.9797680927628947,2.9802079168332667,2.9806477409036387,2.9810875649740103,2.9815273890443823,2.981967213114754,2.982407037185126,2.982846861255498,2.9832866853258695,2.9837265093962415,2.9841663334666135,2.984606157536985,2.985045981607357,2.9854858056777287,2.9859256297481007,2.9863654538184727,2.9868052778888443,2.9872451019592163,2.9876849260295884,2.98812475009996,2.988564574170332,2.9890043982407035,2.9894442223110755,2.9898840463814476,2.990323870451819,2.990763694522191,2.991203518592563,2.9916433426629347,2.9920831667333068,2.9925229908036783,2.9929628148740504,2.9934026389444224,2.993842463014794,2.994282287085166,2.994722111155538,2.9951619352259096,2.9956017592962816,2.996041583366653,2.996481407437025,2.996921231507397,2.9973610555777688,2.997800879648141,2.998240703718513,2.9986805277888844,2.9991203518592564,2.999560175929628,3.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/smaller.json b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/smaller.json new file mode 100644 index 000000000000..3897cb690362 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/smaller.json @@ -0,0 +1 @@ +{"expected":[0.0,7.9968012539189e-5,0.00015993602354421975,0.00023990403148093397,0.00031987203481517355,0.0003998400320127804,0.0004798080215395966,0.0005597760018614642,0.000639743971444226,0.0007197119287537243,0.0007996798722558022,0.0008796478004163027,0.0009596157117010696,0.0010395836045759466,0.0011195514775067781,0.0011995193289594088,0.0012794871573996837,0.0013594549612934487,0.00143942273910655,0.0015193904893048339,0.0015993582103541483,0.0016793259007203407,0.00175929355886926,0.0018392611832667553,0.001919228772378677,0.001999196324670875,0.002079163838609202,0.0021591313126595093,0.0022390987452876507,0.00231906613495948,0.0023990334801408525,0.002479000779297624,0.0025589680308956515,0.0026389352334007933,0.0027189023852789078,0.002798869484995855,0.0028788365310174965,0.0029588035218096947,0.003038770455838313,0.003118737331569216,0.00319870414746827,0.0032786709020013417,0.0033586375936343,0.0034386042208330147,0.003518570782063357,0.0035985372757912,0.0036785037004824174,0.0037584700546028846,0.003838436336618479,0.003918402544995079,0.003998368678198565,0.004078334734694819,0.004158300712949725,0.004238266611429166,0.00431823242859903,0.004398198162925207,0.004478163812873585,0.004558129376910057,0.004638094853500517,0.004718060241110861,0.004798025538206986,0.004877990743254792,0.004957955854720181,0.005037920871069056,0.005117885790767323,0.00519785061228089,0.005277815334075665,0.005357779954617561,0.005437744472372493,0.005517708885806376,0.005597673193385129,0.005677637393574672,0.005757601484840929,0.005837565465649825,0.0059175293344672876,0.0059974930897592465,0.006077456729991634,0.006157420253630386,0.006237383659141439,0.006317346944990735,0.006397310109644213,0.00647727315156782,0.006557236069227505,0.006637198861089216,0.006717161525618907,0.006797124061282534,0.0068770864665460545,0.006957048739875431,0.007037010879736627,0.0071169728845956095,0.007196934752918348,0.007276896483170816,0.007356858073818987,0.007436819523328843,0.007516780830166363,0.007596741992797533,0.00767670300968834,0.007756663879304775,0.007836624600112833,0.00791658517057851,0.007996545589167806,0.008076505854346726,0.008156465964581276,0.008236425918337465,0.008316385714081309,0.008396345350278825,0.00847630482539603,0.00855626413789895,0.008636223286253613,0.008716182268926047,0.00879614108438229,0.008876099731088376,0.008956058207510349,0.009036016512114253,0.009115974643366135,0.009195932599732051,0.009275890379678053,0.009355847981670206,0.009435805404174567,0.00951576264565721,0.009595719704584203,0.009675676579421621,0.009755633268635544,0.009835589770692056,0.009915546084057241,0.009995502207197193,0.010075458138578007,0.010155413876665782,0.010235369419926619,0.010315324766826629,0.010395279915831921,0.010475234865408614,0.010555189614022823,0.01063514416014068,0.010715098502228307,0.01079505263875184,0.010875006568177416,0.01095496028897118,0.01103491379959927,0.011114867098527848,0.011194820184223062,0.011274773055151073,0.011354725709778045,0.011434678146570152,0.01151463036399356,0.011594582360514454,0.011674534134599013,0.011754485684713429,0.01183443700932389,0.011914388106896597,0.01199433897589775,0.012074289614793558,0.01215424002205023,0.012234190196133988,0.012314140135511048,0.012394089838647643,0.01247403930401,0.01255398853006436,0.012633937515276963,0.012713886258114057,0.012793834757041893,0.012873783010526732,0.012953731017034833,0.013033678775032467,0.013113626282985905,0.01319357353936143,0.013273520542625322,0.013353467291243874,0.013433413783683375,0.013513360018410133,0.013593305993890449,0.013673251708590638,0.013753197160977013,0.0138331423495159,0.013913087272673624,0.013993031928916523,0.014072976316710933,0.014152920434523203,0.01423286428081968,0.014312807854066722,0.014392751152730693,0.014472694175277964,0.014552636920174902,0.014632579385887894,0.014712521570883322,0.014792463473627584,0.014872405092587072,0.014952346426228193,0.015032287473017358,0.015112228231420983,0.01519216869990549,0.01527210887693731,0.015352048760982874,0.015431988350508628,0.015511927643981016,0.015591866639866496,0.01567180533663152,0.015751743732742567,0.015831681826666104,0.015911619616868603,0.015991557101816562,0.016071494279976468,0.016151431149814818,0.016231367709798116,0.016311303958392885,0.016391239894065636,0.016471175515282894,0.01655111082051119,0.01663104580821707,0.016710980476867074,0.016790914824927755,0.01687084885086567,0.01695078255314739,0.01703071593023949,0.017110648980608545,0.017190581702721138,0.017270514095043873,0.017350446156043347,0.017430377884186166,0.017510309277938944,0.01759024033576831,0.01767017105614089,0.017750101437523317,0.017830031478382236,0.017909961177184304,0.017989890532396177,0.018069819542484516,0.018149748205915996,0.0182296765211573,0.01830960448667512,0.01838953210093614,0.01846945936240707,0.018549386269554623,0.01862931282084551,0.018709239014746464,0.018789164849724208,0.018869090324245493,0.018949015436777062,0.019028940185785676,0.01910886456973809,0.019188788587101085,0.019268712236341433,0.01934863551592593,0.01942855842432136,0.01950848095999454,0.01958840312141227,0.019668324907041373,0.019748246315348675,0.019828167344801015,0.019908087993865235,0.019988008261008182,0.020067928144696715,0.020147847643397707,0.020227766755578035,0.020307685479704577,0.020387603814244225,0.02046752175766389,0.02054743930843047,0.020627356465010887,0.020707273225872062,0.020787189589480937,0.020867105554304453,0.02094702111880956,0.02102693628146321,0.021106851040732382,0.021186765395084052,0.0212666793429852,0.021346592882902818,0.021426506013303922,0.021506418732655512,0.02158633103942461,0.021666242932078247,0.02174615440908346,0.0218260654689073,0.02190597611001682,0.021985886330879077,0.02206579612996116,0.02214570550573014,0.022225614456653112,0.022305522981197173,0.02238543107782944,0.022465338745017032,0.02254524598122707,0.022625152784926692,0.02270505915458305,0.0227849650886633,0.0228648705856346,0.022944775643964126,0.023024680262119068,0.023104584438566615,0.023184488171773966,0.023264391460208336,0.02334429430233695,0.023424196696627035,0.02350409864154583,0.023584000135560588,0.02366390117713857,0.023743801764747042,0.023823701896853285,0.023903601571924584,0.02398350078842824,0.024063399544831564,0.02414329783960187,0.02422319567120649,0.024303093038112754,0.02438298993878802,0.024462886371699636,0.024542782335314973,0.024622677828101413,0.02470257284852634,0.02478246739505715,0.024862361466161248,0.02494225506030606,0.02502214817595901,0.025102040811587536,0.025181932965659085,0.025261824636641117,0.025341715823001106,0.025421606523206526,0.02550149673572486,0.025581386459023626,0.025661275691570323,0.02574116443183247,0.0258210526782776,0.02590094042937326,0.025980827683587,0.026060714439386384,0.026140600695238977,0.026220486449612376,0.026300371700974174,0.02638025644779197,0.026460140688533387,0.026540024421666048,0.026619907645657595,0.026699790358975677,0.026779672560087946,0.026859554247462083,0.02693943541956577,0.02701931607486669,0.027099196211832554,0.027179075828931077,0.027258954924629986,0.027338833497397012,0.027418711545699907,0.02749858906800643,0.027578466062784357,0.02765834252850146,0.027738218463625536,0.027818093866624396,0.027897968735965846,0.02797784307011772,0.028057716867547853,0.028137590126724094,0.02821746284611431,0.02829733502418637,0.028377206659408155,0.02845707775024757,0.028536948295172518,0.02861681829265092,0.0286966877411507,0.02877655663913981,0.0288564249850862,0.028936292777457833,0.029016160014722694,0.02909602669534877,0.029175892817804062,0.029255758380556586,0.02933562338207436,0.029415487820825433,0.029495351695277845,0.029575215003899664,0.029655077745158957,0.029734939917523816,0.02981480151946234,0.029894662549442633,0.029974523005932813,0.03005438288740103,0.030134242192315416,0.030214100919144136,0.03029395906635536,0.030373816632417276,0.030453673615798076,0.03053353001496597,0.03061338582838917,0.030693241054535924,0.030773095691874468,0.030852949738873068,0.030932803193999985,0.03101265605572351,0.03109250832251194,0.031172359992833576,0.03125221106515675,0.03133206153794979,0.03141191140968104,0.03149176067881887,0.03157160934383165,0.03165145740318776,0.031731304855355594,0.03181115169880358,0.031890997932000134,0.031970843553413696,0.03205068856151271,0.032130532954765645,0.032210376731640976,0.0322902198906072,0.0323700624301328,0.03244990434868632,0.03252974564473627,0.0326095863167512,0.032689426363199665,0.03276926578255023,0.03284910457327149,0.032928942733832026,0.03300878026270045,0.0330886171583454,0.0331684534192355,0.033248289043839405,0.03332812403062577,0.033407958378063284,0.03348779208462063,0.03356762514876652,0.033647457568969655,0.03372728934369879,0.03380712047142266,0.03388695095061003,0.03396678077972966,0.03404660995725035,0.03412643848164089,0.034206266351370106,0.03428609356490682,0.03436592012071988,0.03444574601727814,0.034525571253050474,0.034605395826505764,0.03468521973611291,0.034765042980340825,0.034844865557658436,0.03492468746653468,0.03500450870543853,0.03508432927283894,0.03516414916720491,0.035243968387005414,0.03532378693070949,0.035403604796786156,0.03548342198370445,0.03556323848993344,0.035643054313942185,0.03572286945419977,0.03580268390917531,0.03588249767733792,0.03596231075715671,0.03604212314710084,0.03612193484563946,0.036201745851241744,0.036281556162376896,0.0363613657775141,0.036441174695122584,0.03652098291367158,0.03660079043163034,0.03668059724746812,0.03676040335965419,0.036840208766657855,0.03692001346694842,0.036999817458995214,0.03707962074126757,0.03715942331223483,0.03723922517036638,0.037319026314131594,0.037398826741999874,0.03747862645244063,0.03755842544392329,0.037638223714917304,0.037718021263892135,0.03779781808931725,0.03787761418966215,0.03795740956339633,0.03803720420898931,0.03811699812491064,0.03819679130962986,0.038276583761616544,0.03835637547934028,0.03843616646127067,0.03851595670587731,0.03859574621162986,0.03867553497699794,0.03875532300045122,0.038835110280459384,0.03891489681549213,0.038994682604019164,0.039074467644510204,0.039154251935435,0.03923403547526331,0.039313818262464904,0.03939360029550956,0.03947338157286712,0.03955316209300737,0.03963294185440017,0.03971272085551537,0.039792499094822825,0.03987227657079244,0.039952053281894113,0.04003182922659776,0.04011160440337332,0.04019137881069075,0.040271152447020016,0.04035092531083109,0.040430697400594,0.04051046871477873,0.04059023925185534,0.04067000901029387,0.0407497779885644,0.040829546185137,0.04090931359848178,0.04098908022706885,0.04106884606936835,0.04114861112385043,0.04122837538898526,0.04130813886324301,0.04138790154509391,0.04146766343300816,0.04154742452545599,0.04162718482090767,0.04170694431783346,0.041786703014703636,0.04186646090998852,0.04194621800215842,0.042025974289683674,0.04210572977103465,0.04218548444468171,0.04226523830909524,0.04234499136274565,0.042424743604103365,0.04250449503163883,0.04258424564382249,0.04266399543912483,0.04274374441601635,0.042823492572967546,0.04290323990844896,0.04298298642093113,0.043062732108884616,0.04314247697078001,0.04322222100508789,0.0433019642102789,0.04338170658482365,0.0434614481271928,0.043541188835857024,0.043620928709287,0.04370066774595344,0.04378040594432706,0.0438601433028786,0.04393987982007883,0.04401961549439852,0.044099350324308464,0.044179084308279465,0.04425881744478236,0.044338549732288006,0.044418281169267264,0.044498011754191,0.04457774148553015,0.04465747036175561,0.04473719838133832,0.044816925542749256,0.04489665184445938,0.04497637728493968,0.04505610186266119,0.045135825576094905,0.04521554842371191,0.045295270403983255,0.045374991515380034,0.04545471175637334,0.04553443112543431,0.04561414962103408,0.04569386724164381,0.04577358398573467,0.045853299851777864,0.04593301483824462,0.04601272894360616,0.04609244216633374,0.04617215450489864,0.04625186595777214,0.04633157652342556,0.04641128620033022,0.046490994986957475,0.0465707028817787,0.04665040988326526,0.04673011598988858,0.04680982120012008,0.0468895255124312,0.046969228925293406,0.047048931437178164,0.047128633046557,0.04720833375190142,0.04728803355168297,0.0473677324443732,0.047447430428443696,0.047527127502366054,0.04760682366461189,0.04768651891365283,0.04776621324796055,0.047845906666006716,0.04792559916626302,0.04800529074720118,0.048084981407292934,0.048164671145010024,0.04824435995882423,0.04832404784720734,0.04840373480863118,0.04848342084156757,0.04856310594448837,0.04864279011586545,0.048722473354170695,0.048802155657876024,0.048881837025453366,0.04896151745537467,0.04904119694611191,0.04912087549613709,0.04920055310392221,0.049280229767939304,0.049359905486660416,0.04943958025855763,0.04951925408210303,0.04959892695576873,0.04967859887802687,0.049758269847349594,0.04983793986220909,0.04991760892107753,0.049997277022427136,0.05007694416473015,0.05015661034645883,0.050236275566085425,0.05031593982208227,0.05039560311292165,0.050475265437075915,0.05055492679301742,0.05063458717921855,0.0507142465941517,0.05079390503628928,0.050873562504103735,0.050953218996067536,0.05103287451065316,0.0511125290463331,0.0511921826015799,0.05127183517486608,0.05135148676466423,0.05143113736944692,0.05151078698768675,0.05159043561785637,0.051670083258428416,0.05174972990787557,0.05182937556467051,0.05190902022728596,0.051988663894194646,0.05206830656386932,0.05214794823478277,0.05222758890540779,0.05230722857421719,0.05238686723968383,0.052466504900280556,0.05254614155448026,0.052625777200755834,0.05270541183758022,0.05278504546342635,0.05286467807676721,0.05294430967607578,0.05302394025982508,0.05310356982648813,0.053183198374538,0.05326282590244777,0.053342452408690524,0.05342207789173938,0.053501702350067515,0.05358132578214806,0.05366094818645421,0.05374056956145919,0.0538201899056362,0.053899809217458516,0.053979427495399405,0.05405904473793216,0.054138660943530106,0.05421827611066659,0.05429789023781496,0.0543775033234486,0.054457115366040934,0.054536726364065376,0.054616336315995384,0.05469594522030442,0.054775553075466006,0.054855159879953645,0.054934765632240874,0.05501437033080127,0.0550939739741084,0.05517357656063589,0.05525317808885736,0.055332778557246456,0.05541237796427688,0.05549197630842231,0.055571573588156474,0.055651169801953115,0.055730764948286,0.055810359025628926,0.05588995203245569,0.05596954396724013,0.05604913482845612,0.05612872461457752,0.056208313324078246,0.05628790095543223,0.0563674875071134,0.056447072977595755,0.056526657365353276,0.056606240668859976,0.05668582288658991,0.056765404017017136,0.05684498405861575,0.05692456300985985,0.05700414086922359,0.05708371763518111,0.0571632933062066,0.057242867880774255,0.05732244135735831,0.05740201373443302,0.057481585010472666,0.05756115518395153,0.05764072425334394,0.05772029221712424,0.05779985907376681,0.05787942482174602,0.05795898945953631,0.0580385529856121,0.05811811539844787,0.0581976766965181,0.0582772368782973,0.05835679594226,0.058436353886880774,0.05851591071063418,0.05859546641199485,0.0586750209894374,0.05875457444143649,0.0588341267664668,0.05891367796300302,0.05899322802951989,0.05907277696449215,0.05915232476639457,0.059231871433701976,0.05931141696488916,0.059390961358430985,0.05947050461280232,0.05955004672647806,0.059629587697933126,0.05970912752564246,0.05978866620808102,0.05986820374372382,0.05994774013104586,0.0600272753685222,0.06010680945462789,0.06018634238783803,0.06026587416662773,0.06034540478947213,0.060424934254846394,0.06050446256122572,0.06058398970708532,0.06066351569090042,0.060743040511146304,0.06082256416629824,0.06090208665483156,0.06098160797522159,0.06106112812594369,0.06114064710547326,0.061220164912285706,0.06129968154485647,0.06137919700166101,0.06145871128117482,0.0615382243818734,0.06161773630223231,0.061697247040727085,0.061776756595833336,0.061856264966026676,0.061935772149782735,0.06201527814557718,0.0620947829518857,0.06217428656718402,0.062253788989947864,0.062333290218653,0.062412790251775235,0.06249228908779038,0.06257178672517426,0.06265128316240276,0.06273077839795177,0.06281027243029721,0.06288976525791502,0.06296925687928118,0.06304874729287169,0.06312823649716254,0.06320772449062981,0.06328721127174955,0.06336669683899787,0.06344618119085092,0.06352566432578481,0.06360514624227574,0.06368462693879991,0.06376410641383354,0.06384358466585288,0.06392306169333424,0.0640025374947539,0.06408201206858821,0.06416148541331353,0.06424095752740622,0.06432042840934273,0.06439989805759945,0.06447936647065289,0.06455883364697952,0.06463829958505585,0.06471776428335844,0.06479722774036385,0.0648766899545487,0.06495615092438957,0.06503561064836315,0.06511506912494608,0.06519452635261508,0.0652739823298469,0.06535343705511824,0.06543289052690594,0.06551234274368678,0.06559179370393763,0.06567124340613528,0.0657506918487567,0.06583013903027875,0.0659095849491784,0.06598902960393262,0.06606847299301839,0.06614791511491276,0.06622735596809276,0.06630679555103548,0.06638623386221802,0.0664656709001175,0.0665451066632111,0.066624541149976,0.06670397435888942,0.06678340628842858,0.06686283693707076,0.06694226630329327,0.06702169438557341,0.06710112118238855,0.06718054669221604,0.06725997091353332,0.0673393938448178,0.06741881548454695,0.06749823583119825,0.06757765488324922,0.0676570726391774,0.06773648909746036,0.0678159042565757,0.06789531811500105,0.06797473067121407,0.06805414192369241,0.06813355187091381,0.068212960511356,0.06829236784349674,0.06837177386581382,0.06845117857678505,0.06853058197488832,0.06860998405860146,0.06868938482640241,0.06876878427676907,0.06884818240817943,0.06892757921911145,0.06900697470804316,0.06908636887345264,0.0691657617138179,0.06924515322761708,0.06932454341332829,0.06940393226942973,0.06948331979439952,0.06956270598671593,0.06964209084485719,0.06972147436730154,0.06980085655252734,0.06988023739901285,0.06995961690523649,0.07003899506967659,0.07011837189081162,0.07019774736711996,0.07027712149708013,0.07035649427917062,0.07043586571186995,0.07051523579365669,0.0705946045230094,0.07067397189840674,0.07075333791832732,0.07083270258124982,0.07091206588565294,0.0709914278300154,0.071070788412816,0.07115014763253348,0.0712295054876467,0.07130886197663447,0.0713882170979757,0.07146757085014928,0.07154692323163413,0.07162627424090924,0.07170562387645359,0.0717849721367462,0.07186431902026613,0.07194366452549246,0.07202300865090427,0.07210235139498077,0.07218169275620105,0.07226103273304434,0.07234037132398989,0.07241970852751693,0.07249904434210477,0.0725783787662327,0.0726577117983801,0.0727370434370263,0.07281637368065075,0.07289570252773286,0.0729750299767521,0.07305435602618798,0.07313368067452,0.07321300392022775,0.07329232576179077,0.07337164619768871,0.0734509652264012,0.0735302828464079,0.07360959905618855,0.07368891385422287,0.07376822723899061,0.07384753920897158,0.0739268497626456,0.07400615889849252,0.07408546661499223,0.07416477291062466,0.07424407778386974,0.07432338123320745,0.07440268325711778,0.07448198385408081,0.07456128302257656,0.07464058076108517,0.07471987706808672,0.0747991719420614,0.07487846538148941,0.07495775738485094,0.07503704795062627,0.07511633707729566,0.07519562476333944,0.07527491100723792,0.0753541958074715,0.07543347916252059,0.07551276107086562,0.07559204153098703,0.07567132054136534,0.0757505981004811,0.0758298742068148,0.07590914885884711,0.0759884220550586,0.07606769379392991,0.07614696407394178,0.07622623289357487,0.07630550025130996,0.0763847661456278,0.07646403057500921,0.07654329353793501,0.07662255503288609,0.07670181505834336,0.07678107361278773,0.07686033069470018,0.07693958630256169,0.0770188404348533,0.07709809309005604,0.07717734426665104,0.07725659396311939,0.07733584217794226,0.07741508890960082,0.07749433415657629,0.07757357791734994,0.07765282019040301,0.07773206097421684,0.07781130026727273,0.07789053806805211,0.07796977437503637,0.07804900918670692,0.07812824250154525,0.07820747431803286,0.07828670463465129,0.07836593344988209,0.07844516076220688,0.07852438657010725,0.0786036108720649,0.07868283366656151,0.07876205495207879,0.07884127472709854,0.0789204929901025,0.07899970973957253,0.07907892497399045,0.07915813869183819,0.07923735089159763,0.07931656157175074,0.07939577073077951,0.07947497836716592,0.07955418447939208,0.07963338906594002,0.07971259212529187,0.07979179365592978,0.07987099365633592,0.07995019212499252,0.08002938906038179,0.08010858446098605,0.08018777832528756,0.08026697065176872,0.08034616143891185,0.08042535068519939,0.08050453838911378,0.08058372454913748,0.08066290916375302,0.0807420922314429,0.08082127375068972,0.08090045371997608,0.08097963213778461,0.081058809002598,0.08113798431289894,0.08121715806717018,0.08129633026389446,0.08137550090155464,0.0814546699786335,0.08153383749361394,0.08161300344497886,0.08169216783121118,0.08177133065079391,0.08185049190221001,0.08192965158394255,0.08200880969447458,0.08208796623228921,0.08216712119586958,0.08224627458369888,0.08232542639426027,0.08240457662603701,0.0824837252775124,0.0825628723471697,0.08264201783349229,0.08272116173496351,0.0828003040500668,0.08287944477728557,0.08295858391510329,0.08303772146200351,0.08311685741646974,0.08319599177698557,0.08327512454203459,0.08335425571010048,0.08343338527966687,0.08351251324921753,0.08359163961723616,0.08367076438220655,0.08374988754261255,0.08382900909693795,0.0839081290436667,0.08398724738128265,0.0840663641082698,0.08414547922311211,0.08422459272429361,0.08430370461029837,0.08438281487961045,0.08446192353071401,0.08454103056209317,0.08462013597223214,0.08469923975961514,0.08477834192272647,0.08485744246005036,0.0849365413700712,0.08501563865127333,0.08509473430214114,0.08517382832115909,0.08525292070681163,0.0853320114575833,0.0854111005719586,0.0854901880484221,0.08556927388545844,0.08564835808155226,0.08572744063518822,0.08580652154485105,0.08588560080902552,0.08596467842619636,0.08604375439484843,0.08612282871346658,0.08620190138053568,0.08628097239454069,0.08636004175396653,0.08643910945729824,0.08651817550302081,0.08659723988961933,0.08667630261557889,0.08675536367938463,0.08683442307952174,0.08691348081447539,0.08699253688273087,0.08707159128277342,0.08715064401308839,0.08722969507216108,0.08730874445847693,0.08738779217052133,0.08746683820677972,0.08754588256573764,0.08762492524588059,0.08770396624569415,0.08778300556366389,0.08786204319827548,0.08794107914801456,0.08802011341136687,0.08809914598681814,0.08817817687285413,0.0882572060679607,0.08833623357062366,0.08841525937932891,0.08849428349256237,0.08857330590881003,0.08865232662655785,0.08873134564429186,0.08881036296049817,0.08888937857366284,0.08896839248227205,0.08904740468481193,0.08912641517976874,0.0892054239656287,0.0892844310408781,0.0893634364040033,0.0894424400534906,0.08952144198782644,0.08960044220549723,0.08967944070498947,0.08975843748478962,0.08983743254338426,0.08991642587925994,0.0899954174909033,0.09007440737680099,0.09015339553543968,0.09023238196530613,0.09031136666488705,0.0903903496326693,0.09046933086713968,0.09054831036678507,0.0906272881300924,0.09070626415554857,0.09078523844164062,0.09086421098685554,0.0909431817896804,0.0910221508486023,0.09110111816210836,0.09118008372868575,0.09125904754682168,0.09133800961500342,0.09141696993171822,0.0914959284954534,0.09157488530469635,0.09165384035793443,0.09173279365365508,0.09181174519034577,0.09189069496649403,0.09196964298058737,0.09204858923111339,0.0921275337165597,0.09220647643541396,0.09228541738616387,0.09236435656729716,0.0924432939773016,0.09252222961466498,0.09260116347787518,0.09268009556542006,0.09275902587578756,0.0928379544074656,0.09291688115894223,0.09299580612870544,0.09307472931524331,0.09315365071704398,0.09323257033259556,0.09331148816038629,0.09339040419890433,0.09346931844663799,0.09354823090207555,0.09362714156370536,0.09370605043001579,0.09378495749949525,0.09386386277063222,0.09394276624191517,0.09402166791183264,0.09410056777887318,0.09417946584152544,0.09425836209827802,0.09433725654761964,0.094416149188039,0.09449504001802488,0.09457392903606607,0.09465281624065139,0.09473170163026975,0.09481058520341006,0.09488946695856128,0.09496834689421237,0.09504722500885238,0.0951261013009704,0.09520497576905552,0.09528384841159691,0.09536271922708374,0.09544158821400524,0.09552045537085066,0.09559932069610932,0.09567818418827059,0.09575704584582381,0.09583590566725844,0.09591476365106391,0.09599361979572973,0.09607247409974544,0.09615132656160064,0.0962301771797849,0.09630902595278791,0.09638787287909938,0.09646671795720901,0.09654556118560662,0.09662440256278196,0.09670324208722496,0.09678207975742545,0.09686091557187339,0.09693974952905877,0.09701858162747157,0.09709741186560188,0.09717624024193974,0.09725506675497533,0.09733389140319879,0.09741271418510035,0.09749153509917025,0.09757035414389877,0.09764917131777627,0.09772798661929309,0.09780680004693966,0.09788561159920642,0.09796442127458388,0.09804322907156253,0.09812203498863296,0.0982008390242858,0.09827964117701167,0.09835844144530127,0.09843723982764534,0.09851603632253465,0.09859483092845998,0.09867362364391223,0.09875241446738225,0.098831203397361,0.09890999043233943,0.09898877557080857,0.09906755881125946,0.0991463401521832,0.09922511959207093,0.0993038971294138,0.09938267276270304,0.09946144649042993,0.09954021831108571,0.09961898822316177,0.09969775622514945,0.09977652231554021,0.09985528649282545,0.09993404875549673,0.10001280910204553,0.10009156753096349,0.10017032404074219,0.10024907862987331,0.10032783129684857,0.10040658204015968,0.10048533085829844,0.10056407774975668,0.10064282271302626,0.1007215657465991,0.10080030684896715,0.1008790460186224,0.10095778325405687,0.10103651855376265,0.10111525191623183,0.1011939833399566,0.10127271282342915,0.10135144036514168,0.10143016596358652,0.10150888961725596,0.10158761132464239,0.10166633108423818,0.10174504889453581,0.10182376475402774,0.10190247866120651,0.1019811906145647,0.10205990061259491,0.1021386086537898,0.10221731473664207,0.10229601885964446,0.10237472102128971,0.1024534212200707,0.10253211945448025,0.10261081572301127,0.10268951002415673,0.1027682023564096,0.10284689271826292,0.10292558110820975,0.10300426752474322,0.10308295196635646,0.10316163443154269,0.10324031491879516,0.10331899342660714,0.10339766995347195,0.10347634449788297,0.1035550170583336,0.10363368763331728,0.10371235622132753,0.10379102282085786,0.10386968743040188,0.1039483500484532,0.10402701067350545,0.10410566930405239,0.10418432593858773,0.10426298057560529,0.10434163321359886,0.10442028385106236,0.1044989324864897,0.10457757911837483,0.10465622374521176,0.10473486636549452,0.10481350697771724,0.104892145580374,0.10497078217195903,0.1050494167509665,0.1051280493158907,0.10520667986522594,0.10528530839746655,0.10536393491110693,0.10544255940464149,0.10552118187656474,0.10559980232537117,0.10567842074955536,0.10575703714761192,0.10583565151803546,0.10591426385932073,0.10599287416996243,0.10607148244845535,0.10615008869329429,0.10622869290297414,0.1063072950759898,0.1063858952108362,0.10646449330600838,0.10654308936000134,0.1066216833713102,0.10670027533843003,0.10677886525985607,0.10685745313408346,0.1069360389596075,0.10701462273492349,0.10709320445852676,0.1071717841289127,0.10725036174457674,0.10732893730401437,0.10740751080572108,0.10748608224819246,0.10756465162992411,0.10764321894941166,0.10772178420515084,0.10780034739563736,0.10787890851936703,0.10795746757483564,0.1080360245605391,0.10811457947497327,0.10819313231663416,0.10827168308401776,0.1083502317756201,0.10842877838993731,0.10850732292546547,0.10858586538070081,0.10866440575413952,0.1087429440442779,0.10882148024961223,0.10890001436863887,0.10897854639985427,0.10905707634175482,0.10913560419283704,0.10921412995159745,0.10929265361653265,0.10937117518613924,0.1094496946589139,0.10952821203335336,0.10960672730795434,0.1096852404812137,0.10976375155162824,0.10984226051769487,0.10992076737791052,0.1099992721307722,0.1100777747747769,0.1101562753084217,0.11023477373020375,0.11031327003862018,0.11039176423216823,0.11047025630934511,0.11054874626864813,0.11062723410857465,0.11070571982762205,0.11078420342428777,0.11086268489706927,0.11094116424446411,0.1110196414649698,0.11109811655708401,0.11117658951930437,0.1112550603501286,0.11133352904805444,0.11141199561157968,0.11149046003920218,0.11156892232941981,0.11164738248073053,0.11172584049163228,0.11180429636062311,0.11188275008620108,0.1119612016668643,0.11203965110111096,0.11211809838743922,0.11219654352434737,0.11227498651033369,0.11235342734389653,0.11243186602353426,0.11251030254774536,0.11258873691502827,0.11266716912388153,0.11274559917280373,0.11282402706029346,0.11290245278484941,0.11298087634497028,0.11305929773915484,0.11313771696590186,0.11321613402371022,0.11329454891107883,0.1133729616265066,0.11345137216849255,0.11352978053553567,0.1136081867261351,0.11368659073878991,0.11376499257199932,0.11384339222426251,0.11392178969407878,0.11400018497994745,0.11407857808036784,0.1141569689938394,0.11423535771886155,0.11431374425393381,0.11439212859755571,0.11447051074822685,0.11454889070444689,0.11462726846471549,0.11470564402753242,0.1147840173913974,0.11486238855481032,0.11494075751627102,0.11501912427427942,0.1150974888273355,0.11517585117393926,0.1152542113125908,0.11533256924179018,0.11541092496003759,0.11548927846583322,0.11556762975767733,0.1156459788340702,0.11572432569351218,0.11580267033450369,0.11588101275554512,0.11595935295513701,0.11603769093177985,0.11611602668397425,0.11619436021022082,0.11627269150902025,0.11635102057887327,0.11642934741828061,0.11650767202574315,0.1165859943997617,0.11666431453883722,0.11674263244147064,0.11682094810616298,0.11689926153141529,0.11697757271572867,0.1170558816576043,0.11713418835554337,0.11721249280804712,0.11729079501361683,0.11736909497075387,0.11744739267795963,0.11752568813373554,0.11760398133658308,0.11768227228500379,0.11776056097749926,0.11783884741257113,0.11791713158872107,0.1179954135044508,0.1180736931582621,0.11815197054865681,0.11823024567413677,0.11830851853320394,0.11838678912436025,0.11846505744610776,0.1185433234969485,0.1186215872753846,0.11869984877991821,0.11877810800905157,0.11885636496128689,0.11893461963512653,0.11901287202907282,0.11909112214162815,0.11916936997129501,0.11924761551657588,0.11932585877597332,0.11940409974798992,0.11948233843112833,0.11956057482389126,0.11963880892478145,0.11971704073230169,0.1197952702449548,0.11987349746124373,0.11995172237967137,0.12002994499874074,0.12010816531695487,0.12018638333281682,0.12026459904482979,0.12034281245149692,0.12042102355132146,0.12049923234280668,0.12057743882445594,0.1206556429947726,0.12073384485226012,0.12081204439542195,0.12089024162276163,0.12096843653278277,0.12104662912398895,0.1211248193948839,0.1212030073439713,0.12128119296975497,0.1213593762707387,0.1214375572454264,0.12151573589232198,0.12159391220992942,0.12167208619675277,0.12175025785129605,0.12182842717206344,0.12190659415755907,0.12198475880628719,0.12206292111675209,0.12214108108745805,0.1222192387169095,0.12229739400361081,0.1223755469460665,0.12245369754278106,0.12253184579225909,0.1226099916930052,0.12268813524352404,0.1227662764423204,0.12284441528789898,0.12292255177876465,0.12300068591342228,0.12307881769037679,0.12315694710813313,0.12323507416519637,0.12331319886007155,0.12339132119126382,0.12346944115727836,0.12354755875662035,0.12362567398779513,0.12370378684930798,0.12378189733966431,0.12386000545736953,0.12393811120092911,0.1240162145688486,0.12409431555963359,0.12417241417178969,0.12425051040382258,0.12432860425423799,0.12440669572154173,0.1244847848042396,0.1245628715008375,0.12464095580984139,0.12471903772975722,0.12479711725909104,0.12487519439634892,0.12495326914003704,0.12503134148866157,0.12510941144072873,0.12518747899474486,0.12526554414921626,0.12534360690264934,0.12542166725355053,0.12549972520042638,0.12557778074178338,0.12565583387612816,0.12573388460196733,0.12581193291780765,0.12588997882215586,0.12596802231351872,0.12604606339040314,0.126124102051316,0.12620213829476426,0.1262801721192549,0.12635820352329508,0.12643623250539182,0.1265142590640523,0.1265922831977838,0.1266703049050935,0.12674832418448878,0.12682634103447696,0.12690435545356554,0.12698236744026195,0.12706037699307368,0.12713838411050837,0.12721638879107366,0.1272943910332772,0.12737239083562668,0.12745038819663,0.1275283831147949,0.12760637558862928,0.12768436561664115,0.12776235319733847,0.12784033832922925,0.12791832101082162,0.12799630124062378,0.12807427901714385,0.12815225433889016,0.12823022720437094,0.1283081976120946,0.12838616556056956,0.12846413104830426,0.12854209407380723,0.12862005463558707,0.12869801273215237,0.12877596836201177,0.12885392152367406,0.12893187221564803,0.12900982043644244,0.12908776618456622,0.12916570945852834,0.12924365025683773,0.12932158857800347,0.12939952442053465,0.12947745778294042,0.12955538866372998,0.1296333170614126,0.12971124297449757,0.12978916640149427,0.12986708734091207,0.12994500579126048,0.13002292175104901,0.13010083521878724,0.13017874619298478,0.13025665467215133,0.13033456065479662,0.1304124641394304,0.13049036512456255,0.13056826360870297,0.13064615959036158,0.13072405306804835,0.13080194404027337,0.13087983250554677,0.13095771846237866,0.1310356019092793,0.1311134828447589,0.13119136126732783,0.13126923717549643,0.13134711056777515,0.13142498144267448,0.13150284979870488,0.13158071563437704,0.13165857894820154,0.1317364397386891,0.1318142980043504,0.13189215374369637,0.13197000695523775,0.1320478576374855,0.1321257057889506,0.13220355140814405,0.13228139449357693,0.13235923504376032,0.13243707305720545,0.13251490853242356,0.13259274146792588,0.13267057186222384,0.13274839971382876,0.13282622502125213,0.1329040477830054,0.13298186799760023,0.13305968566354817,0.13313750077936087,0.13321531334355008,0.1332931233546276,0.13337093081110518,0.1334487357114948,0.13352653805430834,0.1336043378380578,0.13368213506125526,0.1337599297224128,0.13383772182004258,0.1339155113526568,0.13399329831876775,0.13407108271688772,0.13414886454552916,0.13422664380320443,0.134304420488426,0.13438219459970646,0.1344599661355584,0.13453773509449446,0.13461550147502738,0.13469326527566985,0.13477102649493475,0.1348487851313349,0.13492654118338324,0.1350042946495928,0.13508204552847652,0.13515979381854756,0.13523753951831907,0.13531528262630424,0.13539302314101628,0.13547076106096856,0.13554849638467445,0.13562622911064734,0.13570395923740067,0.13578168676344804,0.13585941168730303,0.13593713400747925,0.13601485372249045,0.13609257083085033,0.13617028533107273,0.13624799722167147,0.13632570650116055,0.1364034131680539,0.13648111722086556,0.13655881865810962,0.13663651747830022,0.13671421367995157,0.1367919072615779,0.13686959822169353,0.13694728655881283,0.13702497227145025,0.13710265535812022,0.13718033581733732,0.13725801364761614,0.13733568884747127,0.1374133614154175,0.1374910313499695,0.1375686986496421,0.13764636331295027,0.13772402533840883,0.1378016847245328,0.1378793414698372,0.13795699557283717,0.13803464703204782,0.1381122958459844,0.13818994201316212,0.13826758553209634,0.13834522640130245,0.13842286461929582,0.138500500184592,0.13857813309570655,0.13865576335115504,0.1387333909494531,0.1388110158891165,0.138888638168661,0.13896625778660243,0.13904387474145669,0.13912148903173968,0.13919910065596747,0.139276709612656,0.13935431590032152,0.13943191951748013,0.13950952046264806,0.13958711873434163,0.13966471433107713,0.139742307251371,0.13981989749373963,0.13989748505669963,0.13997506993876754,0.1400526521384599,0.14013023165429353,0.1402078084847851,0.14028538262845142,0.1403629540838093,0.14044052284937572,0.14051808892366763,0.14059565230520205,0.14067321299249602,0.14075077098406677,0.14082832627843148,0.14090587887410733,0.14098342876961173,0.141060975963462,0.14113852045417563,0.14121606224027,0.14129360132026275,0.14137113769267143,0.14144867135601372,0.14152620230880736,0.1416037305495701,0.14168125607681978,0.14175877888907426,0.14183629898485156,0.14191381636266961,0.14199133102104652,0.14206884295850042,0.14214635217354948,0.14222385866471193,0.14230136243050606,0.14237886346945025,0.1424563617800629,0.14253385736086246,0.14261135021036753,0.1426888403270966,0.1427663277095684,0.14284381235630159,0.14292129426581493,0.14299877343662729,0.14307624986725748,0.14315372355622447,0.14323119450204724,0.1433086627032449,0.14338612815833648,0.14346359086584123,0.14354105082427834,0.1436185080321671,0.14369596248802682,0.143773414190377,0.14385086313773704,0.14392830932862644,0.14400575276156485,0.14408319343507187,0.1441606313476672,0.14423806649787058,0.1443154988842019,0.14439292850518093,0.14447035535932767,0.14454777944516214,0.14462520076120433,0.1447026193059744,0.14478003507799247,0.1448574480757788,0.1449348582978537,0.14501226574273748,0.14508967040895057,0.14516707229501344,0.1452444713994466,0.1453218677207706,0.14539926125750618,0.14547665200817397,0.14555403997129474,0.14563142514538932,0.1457088075289786,0.14578618712058353,0.14586356391872504,0.1459409379219243,0.1460183091287024,0.14609567753758046,0.1461730431470797,0.14625040595572156,0.14632776596202726,0.14640512316451826,0.1464824775617161,0.14655982915214222,0.14663717793431827,0.14671452390676587,0.14679186706800681,0.1468692074165628,0.1469465449509557,0.1470238796697074,0.14710121157133985,0.14717854065437508,0.14725586691733517,0.14733319035874223,0.14741051097711852,0.1474878287709862,0.14756514373886767,0.14764245587928526,0.14771976519076147,0.14779707167181869,0.14787437532097958,0.1479516761367667,0.14802897411770277,0.14810626926231046,0.14818356156911267,0.1482608510366322,0.14833813766339193,0.14841542144791492,0.1484927023887242,0.14856998048434283,0.148647255733294,0.14872452813410092,0.14880179768528687,0.1488790643853752,0.14895632823288935,0.14903358922635276,0.14911084736428895,0.1491881026452215,0.14926535506767408,0.1493426046301704,0.1494198513312342,0.14949709516938936,0.14957433614315974,0.14965157425106929,0.14972880949164202,0.14980604186340205,0.14988327136487348,0.1499604979945805,0.15003772175104738,0.15011494263279848,0.1501921606383581,0.15026937576625074,0.15034658801500092,0.15042379738313316,0.15050100386917212,0.15057820747164244,0.15065540818906892,0.15073260601997637,0.15080980096288962,0.15088699301633365,0.15096418217883342,0.15104136844891403,0.15111855182510053,0.15119573230591818,0.15127290988989217,0.1513500845755478,0.1514272563614105,0.15150442524600563,0.1515815912278587,0.15165875430549522,0.1517359144774409,0.15181307174222136,0.1518902260983623,0.15196737754438958,0.15204452607882904,0.1521216717002066,0.15219881440704822,0.15227595419787998,0.152353091071228,0.1524302250256184,0.15250735605957746,0.15258448417163148,0.15266160936030676,0.15273873162412976,0.15281585096162698,0.15289296737132493,0.15297008085175026,0.15304719140142956,0.15312429901888966,0.15320140370265728,0.1532785054512593,0.15335560426322264,0.15343270013707433,0.15350979307134133,0.1535868830645508,0.15366397011522986,0.15374105422190584,0.1538181353831059,0.15389521359735753,0.1539722888631881,0.15404936117912507,0.15412643054369596,0.15420349695542848,0.1542805604128502,0.1543576209144889,0.1544346784588724,0.15451173304452856,0.15458878466998527,0.15466583333377049,0.15474287903441233,0.15481992177043888,0.15489696154037833,0.15497399834275888,0.15505103217610888,0.1551280630389567,0.1552050909298307,0.15528211584725946,0.15535913778977148,0.1554361567558954,0.15551317274415988,0.1555901857530937,0.15566719578122565,0.15574420282708457,0.15582120688919948,0.15589820796609932,0.15597520605631318,0.15605220115837012,0.15612919327079944,0.15620618239213033,0.15628316852089208,0.15636015165561415,0.15643713179482596,0.156514108937057,0.1565910830808368,0.1566680542246951,0.15674502236716154,0.15682198750676588,0.15689894964203796,0.15697590877150772,0.15705286489370504,0.15712981800715997,0.15720676811040263,0.15728371520196313,0.15736065928037166,0.15743760034415857,0.15751453839185417,0.15759147342198884,0.15766840543309307,0.15774533442369743,0.15782226039233246,0.15789918333752886,0.15797610325781733,0.1580530201517287,0.15812993401779382,0.15820684485454356,0.15828375266050898,0.15836065743422112,0.15843755917421104,0.15851445787900992,0.15859135354714907,0.15866824617715977,0.15874513576757338,0.15882202231692136,0.15889890582373517,0.15897578628654646,0.15905266370388677,0.15912953807428784,0.15920640939628145,0.1592832776683994,0.1593601428891736,0.159437005057136,0.15951386417081864,0.15959072022875354,0.15966757322947295,0.15974442317150905,0.15982127005339408,0.15989811387366046,0.15997495463084055,0.16005179232346683,0.16012862695007188,0.1602054585091883,0.16028228699934874,0.16035911241908596,0.16043593476693274,0.16051275404142198,0.16058957024108664,0.16066638336445965,0.16074319341007415,0.1608200003764632,0.16089680426216008,0.16097360506569797,0.16105040278561028,0.16112719742043036,0.16120398896869165,0.16128077742892774,0.16135756279967217,0.16143434507945864,0.16151112426682082,0.16158790036029255,0.1616646733584077,0.1617414432597001,0.16181821006270383,0.1618949737659529,0.16197173436798148,0.16204849186732367,0.1621252462625138,0.16220199755208614,0.1622787457345751,0.16235549080851513,0.16243223277244076,0.16250897162488653,0.1625857073643871,0.16266243998947724,0.16273916949869166,0.16281589589056528,0.16289261916363293,0.16296933931642965,0.16304605634749048,0.16312277025535052,0.16319948103854495,0.16327618869560906,0.16335289322507812,0.16342959462548748,0.16350629289537266,0.16358298803326915,0.1636596800377125,0.1637363689072384,0.16381305464038254,0.1638897372356807,0.1639664166916687,0.16404309300688252,0.16411976617985813,0.1641964362091315,0.16427310309323884,0.16434976683071628,0.1644264274201001,0.16450308485992657,0.16457973914873214,0.16465639028505322,0.1647330382674263,0.164809683094388,0.164886324764475,0.16496296327622398,0.1650395986281717,0.16511623081885507,0.165192859846811,0.16526948571057648,0.16534610840868852,0.1654227279396843,0.16549934430210098,0.16557595749447582,0.16565256751534618,0.1657291743632494,0.165805778036723,0.16588237853430443,0.16595897585453137,0.16603556999594143,0.16611216095707235,0.16618874873646197,0.1662653333326481,0.1663419147441687,0.16641849296956177,0.1664950680073654,0.16657163985611773,0.1666482085143569,0.16672477398062127,0.16680133625344915,0.16687789533137892,0.16695445121294908,0.1670310038966982,0.1671075533811649,0.1671840996648878,0.1672606427464057,0.16733718262425742,0.16741371929698184,0.16749025276311788,0.16756678302120462,0.16764331006978114,0.1677198339073866,0.16779635453256017,0.16787287194384123,0.16794938613976912,0.16802589711888324,0.16810240487972314,0.16817890942082836,0.16825541074073858,0.16833190883799343,0.16840840371113278,0.16848489535869643,0.16856138377922428,0.16863786897125632,0.16871435093333265,0.16879082966399336,0.16886730516177859,0.16894377742522868,0.1690202464528839,0.16909671224328468,0.1691731747949715,0.16924963410648483,0.16932609017636532,0.16940254300315363,0.1694789925853905,0.16955543892161679,0.1696318820103733,0.16970832185020102,0.16978475843964097,0.16986119177723422,0.16993762186152192,0.17001404869104536,0.17009047226434576,0.17016689257996453,0.17024330963644305,0.17031972343232288,0.17039613396614559,0.17047254123645278,0.1705489452417862,0.17062534598068763,0.17070174345169892,0.17077813765336194,0.17085452858421873,0.17093091624281137,0.17100730062768194,0.17108368173737265,0.1711600595704258,0.1712364341253837,0.17131280540078875,0.17138917339518348,0.17146553810711038,0.17154189953511206,0.17161825767773128,0.17169461253351076,0.17177096410099332,0.17184731237872186,0.17192365736523935,0.17199999905908883,0.1720763374588134,0.17215267256295627,0.17222900437006067,0.1723053328786699,0.17238165808732736,0.17245797999457652,0.1725342985989609,0.17261061389902413,0.17268692589330983,0.17276323458036177,0.17283953995872378,0.1729158420269397,0.1729921407835535,0.1730684362271092,0.17314472835615094,0.1732210171692228,0.1732973026648691,0.17337358484163407,0.1734498636980621,0.1735261392326977,0.17360241144408534,0.17367868033076958,0.17375494589129512,0.17383120812420672,0.1739074670280491,0.17398372260136719,0.1740599748427059,0.1741362237506103,0.1742124693236254,0.1742887115602964,0.17436495045916856,0.17444118601878708,0.1745174182376974,0.17459364711444494,0.17466987264757525,0.17474609483563386,0.1748223136771664,0.1748985291707187,0.17497474131483645,0.1750509501080656,0.175127155548952,0.17520335763604175,0.17527955636788087,0.17535575174301554,0.175431943759992,0.17550813241735652,0.17558431771365546,0.17566049964743527,0.17573667821724248,0.17581285342162367,0.17588902525912545,0.17596519372829458,0.17604135882767788,0.1761175205558222,0.17619367891127444,0.1762698338925817,0.17634598549829097,0.17642213372694945,0.1764982785771044,0.1765744200473031,0.1766505581360929,0.17672669284202125,0.17680282416363569,0.1768789520994838,0.1769550766481132,0.17703119780807167,0.17710731557790704,0.17718342995616712,0.1772595409413999,0.1773356485321534,0.1774117527269757,0.177487853524415,0.17756395092301946,0.1776400449213375,0.17771613551791743,0.1777922227113077,0.17786830650005692,0.1779443868827136,0.17802046385782647,0.1780965374239442,0.17817260757961573,0.17824867432338987,0.17832473765381557,0.1784007975694419,0.178476854068818,0.17855290715049302,0.1786289568130162,0.17870500305493686,0.17878104587480445,0.1788570852711684,0.1789331212425783,0.17900915378758372,0.1790851829047344,0.17916120859258006,0.17923723084967055,0.17931324967455584,0.17938926506578579,0.1794652770219106,0.17954128554148033,0.17961729062304516,0.1796932922651554,0.17976929046636142,0.17984528522521362,0.1799212765402625,0.1799972644100586,0.1800732488331526,0.18014922980809522,0.18022520733343722,0.18030118140772952,0.18037715202952304,0.18045311919736876,0.18052908290981773,0.1806050431654212,0.18068099996273038,0.1807569533002965,0.18083290317667103,0.1809088495904054,0.18098479254005112,0.18106073202415976,0.1811366680412831,0.18121260058997277,0.18128852966878062,0.1813644552762586,0.18144037741095864,0.1815162960714328,0.18159221125623315,0.18166812296391197,0.18174403119302146,0.18181993594211396,0.1818958372097419,0.1819717349944578,0.18204762929481416,0.18212352010936364,0.182199407436659,0.18227529127525297,0.1823511716236984,0.18242704848054825,0.18250292184435554,0.18257879171367333,0.18265465808705478,0.18273052096305314,0.1828063803402217,0.18288223621711383,0.182958088592283,0.18303393746428273,0.18310978283166665,0.18318562469298838,0.18326146304680174,0.18333729789166053,0.18341312922611866,0.18348895704873008,0.18356478135804888,0.18364060215262917,0.18371641943102512,0.18379223319179108,0.18386804343348134,0.18394385015465037,0.18401965335385262,0.1840954530296427,0.18417124918057526,0.18424704180520501,0.1843228309020868,0.18439861646977546,0.18447439850682595,0.1845501770117933,0.18462595198323262,0.1847017234196991,0.18477749131974797,0.18485325568193453,0.18492901650481425,0.18500477378694255,0.185080527526875,0.1851562777231673,0.18523202437437508,0.18530776747905411,0.1853835070357603,0.18545924304304953,0.18553497549947787,0.1856107044036013,0.18568642975397612,0.18576215154915846,0.18583786978770467,0.1859135844681711,0.18598929558911426,0.18606500314909066,0.1861407071466569,0.18621640758036972,0.18629210444878586,0.18636779775046214,0.18644348748395545,0.18651917364782286,0.18659485624062142,0.1866705352609082,0.18674621070724054,0.18682188257817567,0.18689755087227095,0.18697321558808383,0.1870488767241719,0.18712453427909267,0.18720018825140392,0.1872758386396633,0.1873514854424287,0.18742712865825803,0.18750276828570922,0.18757840432334041,0.1876540367697097,0.1877296656233753,0.18780529088289546,0.18788091254682865,0.1879565306137332,0.18803214508216767,0.18810775595069068,0.1881833632178609,0.18825896688223706,0.18833456694237793,0.18841016339684255,0.18848575624418978,0.1885613454829787,0.1886369311117685,0.18871251312911833,0.18878809153358753,0.18886366632373536,0.1889392374981214,0.18901480505530505,0.18909036899384596,0.1891659293123038,0.18924148600923832,0.18931703908320935,0.18939258853277677,0.18946813435650056,0.1895436765529408,0.18961921512065763,0.1896947500582112,0.18977028136416188,0.18984580903707002,0.189921333075496,0.1899968534780004,0.19007237024314383,0.19014788336948693,0.19022339285559045,0.19029889870001526,0.19037440090132224,0.19044989945807236,0.19052539436882673,0.19060088563214647,0.19067637324659278,0.19075185721072696,0.19082733752311043,0.1909028141823046,0.190978287186871,0.19105375653537127,0.19112922222636705,0.19120468425842016,0.19128014263009235,0.19135559733994564,0.191431048386542,0.19150649576844345,0.19158193948421223,0.19165737953241052,0.19173281591160063,0.19180824862034493,0.19188367765720593,0.19195910302074617,0.19203452470952825,0.19210994272211487,0.19218535705706882,0.19226076771295297,0.19233617468833022,0.19241157798176362,0.19248697759181624,0.19256237351705127,0.19263776575603192,0.19271315430732155,0.19278853916948357,0.19286392034108146,0.19293929782067878,0.19301467160683916,0.19309004169812635,0.1931654080931041,0.19324077079033636,0.19331612978838703,0.19339148508582013,0.19346683668119985,0.19354218457309033,0.19361752876005583,0.19369286924066073,0.19376820601346947,0.19384353907704654,0.1939188684299565,0.19399419407076407,0.194069515998034,0.19414483421033105,0.19422014870622015,0.1942954594842663,0.19437076654303456,0.1944460698810901,0.19452136949699805,0.1945966653893238,0.19467195755663272,0.1947472459974902,0.19482253071046185,0.19489781169411327,0.19497308894701013,0.1950483624677182,0.19512363225480342,0.19519889830683163,0.19527416062236885,0.19534941919998125,0.19542467403823496,0.19549992513569622,0.19557517249093137,0.19565041610250683,0.19572565596898908,0.1958008920889447,0.19587612446094035,0.19595135308354278,0.19602657795531875,0.19610179907483516,0.19617701644065905,0.1962522300513574,0.19632743990549734,0.19640264600164611,0.196477848338371,0.19655304691423942,0.1966282417278187,0.1967034327776765,0.19677862006238037,0.19685380358049803,0.1969289833305972,0.1970041593112458,0.1970793315210117,0.19715449995846293,0.19722966462216765,0.19730482551069395,0.1973799826226101,0.19745513595648445,0.19753028551088542,0.19760543128438152,0.19768057327554125,0.19775571148293333,0.1978308459051265,0.1979059765406896,0.19798110338819142,0.19805622644620105,0.1981313457132875,0.1982064611880199,0.19828157286896753,0.19835668075469964,0.1984317848437856,0.1985068851347949,0.1985819816262971,0.1986570743168618,0.19873216320505868,0.1988072482894576,0.19888232956862836,0.19895740704114095,0.19903248070556537,0.19910755056047175,0.1991826166044303,0.19925767883601123,0.19933273725378495,0.19940779185632188,0.19948284264219257,0.19955788960996754,0.19963293275821753,0.1997079720855133,0.19978300759042567,0.19985803927152557,0.199933067127384,0.20000809115657206,0.2000831113576609,0.20015812772922179,0.20023314026982605,0.2003081489780451,0.20038315385245042,0.2004581548916136,0.20053315209410627,0.2006081454585002,0.2006831349833672,0.2007581206672792,0.20083310250880812,0.20090808050652603,0.20098305465900518,0.2010580249648177,0.2011329914225359,0.20120795403073224,0.20128291278797916,0.20135786769284925,0.20143281874391505,0.2015077659397494,0.20158270927892502,0.20165764876001485,0.2017325843815918,0.201807516142229,0.20188244404049954,0.20195736807497658,0.20203228824423353,0.20210720454684367,0.20218211698138053,0.20225702554641758,0.20233193024052853,0.20240683106228705,0.2024817280102669,0.202556621083042,0.2026315102791863,0.20270639559727383,0.20278127703587867,0.2028561545935751,0.20293102826893736,0.2030058980605398,0.20308076396695693,0.20315562598676326,0.2032304841185334,0.20330533836084203,0.20338018871226396,0.20345503517137406,0.20352987773674724,0.2036047164069586,0.2036795511805832,0.20375438205619623,0.203829209032373,0.20390403210768887,0.20397885128071927,0.20405366655003976,0.2041284779142259,0.20420328537185342,0.20427808892149812,0.2043528885617358,0.2044276842911425,0.20450247610829417,0.20457726401176693,0.20465204800013698,0.20472682807198062,0.2048016042258742,0.20487637646039414,0.20495114477411702,0.20502590916561944,0.20510066963347806,0.20517542617626966,0.20525017879257115,0.20532492748095943,0.20539967224001154,0.20547441306830463,0.20554914996441587,0.20562388292692255,0.20569861195440198,0.20577333704543166,0.20584805819858915,0.205922775412452,0.20599748868559797,0.2060721980166048,0.2061469034040504,0.20622160484651264,0.20629630234256965,0.20637099589079952,0.20644568548978043,0.20652037113809066,0.20659505283430862,0.2066697305770128,0.20674440436478161,0.2068190741961938,0.20689374006982805,0.20696840198426314,0.2070430599380779,0.20711771392985137,0.20719236395816257,0.2072670100215906,0.20734165211871472,0.2074162902481142,0.20749092440836842,0.20756555459805687,0.20764018081575908,0.20771480306005471,0.20778942132952347,0.20786403562274516,0.2079386459382997,0.20801325227476705,0.20808785463072724,0.20816245300476044,0.2082370473954469,0.20831163780136688,0.20838622422110087,0.20846080665322927,0.20853538509633268,0.20860995954899175,0.20868453000978723,0.20875909647729995,0.2088336589501108,0.20890821742680077,0.20898277190595096,0.20905732238614252,0.2091318688659567,0.20920641134397483,0.20928094981877837,0.2093554842889488,0.20943001475306766,0.2095045412097167,0.20957906365747767,0.20965358209493234,0.20972809652066277,0.20980260693325087,0.20987711333127881,0.2099516157133287,0.2100261140779829,0.21010060842382372,0.2101750987494336,0.2102495850533951,0.21032406733429085,0.2103985455907035,0.21047301982121586,0.2105474900244108,0.2106219561988713,0.21069641834318037,0.21077087645592119,0.21084533053567692,0.2109197805810309,0.21099422659056646,0.21106866856286716,0.2111431064965165,0.21121754039009816,0.21129197024219581,0.21136639605139335,0.21144081781627463,0.21151523553542365,0.2115896492074245,0.21166405883086134,0.21173846440431843,0.21181286592638005,0.21188726339563066,0.2119616568106548,0.21203604617003696,0.21211043147236194,0.21218481271621445,0.21225918990017933,0.21233356302284154,0.2124079320827861,0.21248229707859811,0.21255665800886278,0.21263101487216543,0.21270536766709136,0.2127797163922261,0.21285406104615512,0.2129284016274641,0.21300273813473877,0.21307707056656489,0.21315139892152837,0.21322572319821523,0.21330004339521147,0.21337435951110326,0.2134486715444769,0.2135229794939186,0.2135972833580149,0.21367158313535217,0.21374587882451712,0.21382017042409635,0.2138944579326766,0.2139687413488448,0.21404302067118786,0.21411729589829276,0.21419156702874662,0.21426583406113664,0.21434009699405016,0.21441435582607446,0.21448861055579704,0.21456286118180548,0.21463710770268737,0.21471135011703044,0.2147855884234225,0.21485982262045145,0.21493405270670524,0.215008278680772,0.21508250054123984,0.21515671828669702,0.21523093191573187,0.21530514142693283,0.2153793468188884,0.21545354809018713,0.21552774523941776,0.21560193826516907,0.21567612716602988,0.2157503119405891,0.21582449258743586,0.21589866910515926,0.21597284149234844,0.21604700974759275,0.2161211738694816,0.21619533385660442,0.21626948970755078,0.21634364142091034,0.21641778899527286,0.21649193242922815,0.21656607172136608,0.2166402068702767,0.21671433787455013,0.21678846473277646,0.21686258744354606,0.21693670600544923,0.21701082041707642,0.21708493067701812,0.21715903678386503,0.21723313873620784,0.21730723653263728,0.21738133017174432,0.21745541965211992,0.21752950497235513,0.21760358613104105,0.217677663126769,0.21775173595813027,0.21782580462371626,0.21789986912211853,0.21797392945192867,0.2180479856117383,0.21812203760013923,0.21819608541572336,0.21827012905708257,0.21834416852280897,0.2184182038114946,0.21849223492173175,0.21856626185211273,0.21864028460122986,0.2187143031676757,0.2187883175500428,0.21886232774692382,0.2189363337569115,0.21901033557859867,0.2190843332105783,0.21915832665144336,0.219232315899787,0.21930630095420242,0.21938028181328287,0.21945425847562172,0.21952823093981247,0.21960219920444868,0.21967616326812392,0.219750123129432,0.21982407878696675,0.21989803023932206,0.21997197748509187,0.22004592052287034,0.22011985935125164,0.22019379396883001,0.2202677243741999,0.22034165056595564,0.22041557254269184,0.22048949030300308,0.22056340384548412,0.22063731316872978,0.22071121827133494,0.22078511915189453,0.22085901580900372,0.22093290824125764,0.22100679644725152,0.22108068042558077,0.22115456017484078,0.2212284356936271,0.2213023069805353,0.22137617403416116,0.2214500368531004,0.221523895435949,0.22159774978130287,0.2216715998877581,0.22174544575391084,0.22181928737835732,0.22189312475969394,0.22196695789651708,0.22204078678742326,0.2221146114310091,0.22218843182587134,0.2222622479706067,0.2223360598638121,0.2224098675040845,0.222483670890021,0.2225574700202187,0.22263126489327487,0.22270505550778685,0.22277884186235206,0.22285262395556796,0.22292640178603226,0.2230001753523426,0.22307394465309677,0.22314770968689263,0.22322147045232818,0.22329522694800147,0.22336897917251064,0.22344272712445395,0.22351647080242973,0.22359021020503642,0.22366394533087247,0.22373767617853657,0.22381140274662736,0.22388512503374364,0.2239588430384843,0.2240325567594483,0.22410626619523472,0.22417997134444267,0.22425367220567147,0.22432736877752038,0.22440106105858884,0.2244747490474764,0.22454843274278266,0.22462211214310732,0.2246957872470501,0.22476945805321102,0.22484312456018996,0.224916786766587,0.22499044467100232,0.22506409827203613,0.22513774756828883,0.22521139255836078,0.22528503324085258,0.22535866961436482,0.2254323016774982,0.22550592942885347,0.2255795528670316,0.22565317199063356,0.22572678679826036,0.22580039728851325,0.22587400345999345,0.2259476053113023,0.22602120284104127,0.22609479604781188,0.22616838493021577,0.2262419694868546,0.22631554971633025,0.2263891256172446,0.22646269718819967,0.22653626442779748,0.22660982733464027,0.2266833859073303,0.2267569401444699,0.22683049004466158,0.22690403560650785,0.22697757682861136,0.22705111370957481,0.2271246462480011,0.2271981744424931,0.2272716982916538,0.22734521779408637,0.22741873294839393,0.22749224375317983,0.2275657502070474,0.22763925230860013,0.22771275005644162,0.2277862434491755,0.22785973248540548,0.22793321716373546,0.2280066974827694,0.22808017344111123,0.22815364503736515,0.22822711227013537,0.2283005751380262,0.22837403363964198,0.22844748777358728,0.22852093753846667,0.22859438293288475,0.2286678239554464,0.22874126060475647,0.22881469287941986,0.22888812077804163,0.228961544299227,0.2290349634415811,0.22910837820370933,0.22918178858421712,0.22925519458170998,0.2293285961947935,0.22940199342207337,0.22947538626215544,0.22954877471364557,0.22962215877514972,0.22969553844527402,0.22976891372262462,0.22984228460580777,0.22991565109342982,0.22998901318409726,0.23006237087641662,0.23013572416899455,0.23020907306043772,0.23028241754935305,0.23035575763434743,0.2304290933140278,0.23050242458700138,0.23057575145187528,0.23064907390725686,0.23072239195175345,0.23079570558397258,0.23086901480252184,0.2309423196060088,0.23101561999304138,0.2310889159622273,0.23116220751217462,0.23123549464149126,0.2313087773487855,0.23138205563266548,0.23145532949173955,0.23152859892461616,0.2316018639299038,0.23167512450621114,0.23174838065214676,0.23182163236631959,0.23189487964733846,0.23196812249381235,0.2320413609043504,0.23211459487756173,0.23218782441205565,0.23226104950644147,0.23233427015932873,0.23240748636932695,0.23248069813504577,0.2325539054550949,0.23262710832808428,0.23270030675262376,0.2327735007273234,0.23284669025079333,0.23291987532164374,0.23299305593848496,0.23306623209992736,0.23313940380458154,0.233212571051058,0.23328573383796747,0.23335889216392072,0.23343204602752868,0.23350519542740228,0.23357834036215258,0.2336514808303908,0.2337246168307282,0.23379774836177605,0.2338708754221459,0.23394399801044927,0.2340171161252978,0.23409022976530316,0.23416333892907729,0.23423644361523208,0.2343095438223795,0.23438263954913177,0.23445573079410104,0.2345288175558996,0.2346018998331399,0.23467497762443443,0.2347480509283958,0.23482111974363665,0.23489418406876977,0.2349672439024081,0.2350402992431646,0.2351133500896523,0.23518639644048445,0.23525943829427423,0.23533247564963505,0.23540550850518036,0.2354785368595237,0.23555156071127872,0.23562458005905915,0.23569759490147887,0.2357706052371518,0.23584361106469195,0.23591661238271344,0.23598960918983053,0.23606260148465755,0.23613558926580885,0.236208572531899,0.2362815512815426,0.2363545255133543,0.23642749522594897,0.23650046041794148,0.23657342108794682,0.23664637723458007,0.2367193288564564,0.23679227595219116,0.23686521852039966,0.23693815655969738,0.23701109006869991,0.23708401904602291,0.23715694349028216,0.23722986340009347,0.23730277877407285,0.23737568961083633,0.23744859590900003,0.23752149766718025,0.2375943948839933,0.23766728755805563,0.23774017568798375,0.23781305927239432,0.23788593830990407,0.2379588127991298,0.23803168273868847,0.23810454812719706,0.23817740896327272,0.2382502652455326,0.23832311697259412,0.2383959641430746,0.2384688067555915,0.23854164480876258,0.2386144783012054,0.2386873072315378,0.23876013159837767,0.23883295140034302,0.2389057666360519,0.23897857730412247,0.2390513834031731,0.2391241849318221,0.239196981888688,0.23926977427238927,0.23934256208154467,0.23941534531477296,0.23948812397069297,0.23956089804792363,0.23963366754508408,0.23970643246079346,0.23977919279367096,0.23985194854233602,0.23992469970540803,0.23999744628150657,0.24007018826925122,0.2401429256672618,0.2402156584741581,0.2402883866885601,0.24036111030908777,0.24043382933436133,0.24050654376300096,0.24057925359362695,0.2406519588248598,0.24072465945531998,0.24079735548362813,0.24087004690840497,0.24094273372827135,0.24101541594184814,0.24108809354775637,0.24116076654461716,0.2412334349310517,0.24130609870568132,0.2413787578671274,0.2414514124140115,0.24152406234495513,0.24159670765858007,0.2416693483535081,0.2417419844283611,0.2418146158817611,0.2418872427123301,0.24195986491869043,0.2420324824994643,0.24210509545327408,0.24217770377874231,0.24225030747449158,0.24232290653914454,0.24239550097132395,0.24246809076965273,0.24254067593275389,0.24261325645925044,0.24268583234776564,0.24275840359692266,0.24283097020534494,0.242903532171656,0.2429760894944793,0.24304864217243857,0.24312119020415762,0.24319373358826024,0.24326627232337045,0.24333880640811234,0.24341133584111,0.24348386062098776,0.24355638074636993,0.243628896215881,0.24370140702814558,0.24377391318178823,0.24384641467543378,0.24391891150770711,0.2439914036772331,0.24406389118263683,0.24413637402254354,0.2442088521955784,0.24428132570036676,0.24435379453553413,0.24442625869970602,0.24449871819150815,0.24457117300956616,0.24464362315250598,0.2447160686189536,0.24478850940753494,0.24486094551687626,0.24493337694560383,0.24500580369234387,0.24507822575572294,0.2451506431343676,0.2452230558269044,0.24529546383196021,0.24536786714816178,0.24544026577413608,0.24551265970851022,0.24558504894991126,0.24565743349696648,0.24572981334830327,0.245802188502549,0.2458745589583313,0.2459469247142778,0.24601928576901616,0.24609164212117432,0.24616399376938025,0.2462363407122619,0.2463086829484475,0.2463810204765652,0.24645335329524343,0.24652568140311068,0.24659800479879537,0.24667032348092624,0.24674263744813205,0.24681494669904158,0.2468872512322838,0.24695955104648784,0.24703184614028273,0.24710413651229776,0.24717642216116237,0.2472487030855059,0.24732097928395796,0.24739325075514818,0.2474655174977063,0.24753777951026223,0.24761003679144586,0.24768228933988726,0.24775453715421664,0.2478267802330642,0.24789901857506028,0.24797125217883545,0.24804348104302013,0.2481157051662451,0.248187924547141,0.24826013918433876,0.2483323490764694,0.24840455422216387,0.24847675462005336,0.24854895026876925,0.24862114116694276,0.2486933273132054,0.24876550870618883,0.24883768534452458,0.2489098572268445,0.2489820243517805,0.24905418671796442,0.2491263443240285,0.2491984971686048,0.2492706452503256,0.24934278856782338,0.24941492711973048,0.2494870609046796,0.24955918992130338,0.24963131416823456,0.24970343364410608,0.24977554834755095,0.24984765827720218,0.24991976343169306,0.24999186380965677,0.25006395940972675,0.2501360502305366,0.25020813627071975,0.25028021752890994,0.2503522940037411,0.25042436569384696,0.2504964325978616,0.25056849471441917,0.25064055204215374,0.2507126045796998,0.25078465232569164,0.2508566952787638,0.25092873343755095,0.2510007668006877,0.251072795366809,0.25114481913454967,0.25121683810254475,0.2512888522694294,0.2513608616338388,0.2514328661944083,0.2515048659497734,0.25157686089856957,0.2516488510394324,0.2517208363709977,0.2517928168919013,0.25186479260077915,0.2519367634962673,0.2520087295770019,0.2520806908416191,0.2521526472887554,0.2522245989170472,0.252296545725131,0.25236848771164355,0.25244042487522156,0.25251235721450194,0.25258428472812167,0.25265620741471767,0.2527281252729273,0.25280003830138775,0.25287194649873646,0.25294384986361085,0.25301574839464847,0.25308764209048706,0.25315953094976446,0.2532314149711185,0.2533032941531872,0.25337516849460867,0.253447037994021,0.25351890265006266,0.253590762461372,0.2536626174265875,0.25373446754434786,0.2538063128132917,0.25387815323205787,0.2539499887992853,0.254021819513613,0.2540936453736801,0.2541654663781259,0.2542372825255897,0.2543090938147109,0.2543809002441291,0.2544527018124839,0.25452449851841513,0.2545962903605625,0.25466807733756613,0.25473985944806604,0.2548116366907023,0.2548834090641152,0.2549551765669453,0.2550269391978328,0.2550986969554184,0.2551704498383429,0.25524219784524693,0.2553139409747714,0.2553856792255574,0.2554574125962459,0.25552914108547825,0.2556008646918956,0.2556725834141394,0.25574429725085124,0.2558160062006727,0.25588771026224544,0.2559594094342114,0.2560311037152124,0.25610279310389056,0.256174477598888,0.2562461571988469,0.25631783190240964,0.2563895017082187,0.2564611666149166,0.256532826621146,0.25660448172554967,0.25667613192677047,0.25674777722345143,0.25681941761423555,0.256891053097766,0.25696268367268615,0.25703430933763927,0.257105930091269,0.2571775459322188,0.25724915685913247,0.25732076287065375,0.2573923639654266,0.257463960142095,0.2575355513993031,0.2576071377356951,0.2576787191499153,0.25775029564060825,0.25782186720641836,0.25789343384599034,0.257964995557969,0.258036552340999,0.2581081041937255,0.25817965111479346,0.25825119310284805,0.2583227301565346,0.2583942622744984,0.258465789455385,0.25853731169784006,0.2586088290005091,0.258680341362038,0.25875184878107277,0.2588233512562592,0.2588948487862435,0.25896634136967206,0.25903782900519096,0.2591093116914468,0.25918078942708594,0.25925226221075515,0.25932373004110115,0.25939519291677077,0.259466650836411,0.25953810379866893,0.2596095518021916,0.2596809948456264,0.2597524329276207,0.2598238660468219,0.2598952942018776,0.2599667173914357,0.2600381356141437,0.26010954886864973,0.2601809571536017,0.26025236046764766,0.26032375880943603,0.26039515217761494,0.2604665405708329,0.26053792398773856,0.26060930242698044,0.2606806758872073,0.260752044367068,0.2608234078652115,0.26089476638028697,0.2609661199109435,0.26103746845583037,0.261108812013597,0.2611801505828928,0.26125148416236743,0.2613228127506707,0.26139413634645225,0.2614654549483621,0.26153676855505026,0.2616080771651668,0.261679380777362,0.2617506793902863,0.26182197300259,0.2618932616129238,0.26196454521993817,0.262035823822284,0.26210709741861227,0.26217836600757377,0.26224962958781967,0.2623208881580012,0.2623921417167696,0.26246339026277626,0.26253463379467284,0.2626058723111108,0.26267710581074194,0.2627483342922181,0.26281955775419125,0.26289077619531337,0.2629619896142366,0.2630331980096133,0.26310440138009583,0.2631755997243365,0.2632467930409881,0.26331798132870327,0.2633891645861347,0.26346034281193537,0.2635315160047583,0.26360268416325666,0.26367384728608356,0.2637450053718924,0.2638161584193366,0.26388730642706976,0.2639584493937454,0.2640295873180174,0.26410072019853964,0.264171848033966,0.2642429708229506,0.26431408856414773,0.2643852012562115,0.2644563088977965,0.26452741148755715,0.26459850902414805,0.264669601506224,0.26474068893243974,0.2648117713014503,0.2648828486119107,0.26495392086247604,0.2650249880518017,0.265096050178543,0.2651671072413554,0.26523815923889443,0.26530920616981596,0.26538024803277566,0.26545128482642943,0.2655223165494334,0.2655933432004436,0.26566436477811634,0.26573538128110785,0.26580639270807466,0.2658773990576734,0.2659484003285606,0.26601939651939305,0.26609038762882775,0.26616137365552156,0.26623235459813166,0.26630333045531523,0.2663743012257296,0.26644526690803216,0.2665162275008805,0.26658718300293216,0.26665813341284506,0.26672907872927687,0.2668000189508856,0.2668709540763295,0.2669418841042665,0.267012809033355,0.2670837288622535,0.2671546435896203,0.2672255532141142,0.2672964577343938,0.267367357149118,0.2674382514569458,0.2675091406565361,0.2675800247465481,0.26765090372564115,0.26772177759247456,0.2677926463457078,0.26786350998400055,0.26793436850601243,0.26800522191040327,0.26807607019583307,0.2681469133609617,0.2682177514044495,0.2682885843249565,0.26835941212114317,0.26843023479167,0.2685010523351975,0.2685718647503864,0.2686426720358975,0.26871347419039165,0.26878427121252985,0.2688550631009733,0.26892584985438317,0.2689966314714208,0.2690674079507477,0.2691381792910253,0.2692089454909154,0.2692797065490797,0.26935046246418004,0.26942121323487855,0.26949195885983723,0.2695626993377183,0.26963343466718415,0.26970416484689713,0.26977488987551984,0.2698456097517149,0.26991632447414504,0.2699870340414732,0.2700577384523623,0.27012843770547545,0.2701991317994759,0.27026982073302686,0.2703405045047918,0.27041118311343426,0.27048185655761786,0.27055252483600634,0.27062318794726364,0.2706938458900536,0.2707644986630403,0.2708351462648881,0.27090578869426113,0.27097642594982385,0.27104705803024076,0.2711176849341765,0.27118830666029586,0.2712589232072636,0.27132953457374465,0.27140014075840424,0.27147074175990743,0.2715413375769195,0.2716119282081059,0.27168251365213214,0.2717530939076638,0.27182366897336663,0.2718942388479064,0.2719648035299493,0.27203536301816106,0.27210591731120803,0.27217646640775656,0.27224701030647286,0.27231754900602356,0.2723880825050753,0.27245861080229467,0.2725291338963486,0.272599651785904,0.272670164469628,0.2727406719461877,0.27281117421425033,0.2728816712724833,0.2729521631195542,0.2730226497541306,0.2730931311748802,0.27316360738047085,0.2732340783695704,0.27330454414084704,0.27337500469296894,0.2734454600246042,0.27351591013442134,0.2735863550210889,0.27365679468327536,0.2737272291196496,0.2737976583288802,0.27386808230963633,0.27393850106058704,0.27400891458040133,0.2740793228677486,0.2741497259212982,0.27422012373971966,0.27429051632168255,0.27436090366585664,0.2744312857709117,0.2745016626355177,0.27457203425834475,0.2746424006380629,0.27471276177334253,0.27478311766285396,0.27485346830526775,0.2749238136992545,0.27499415384348486,0.27506448873662975,0.27513481837736015,0.27520514276434704,0.27527546189626156,0.27534577577177516,0.27541608438955906,0.2754863877482848,0.27555668584662407,0.2756269786832486,0.27569726625683016,0.2757675485660407,0.27583782560955233,0.2759080973860373,0.27597836389416774,0.27604862513261613,0.27611888110005506,0.27618913179515703,0.27625937721659477,0.27632961736304135,0.27639985223316943,0.27647008182565236,0.2765403061391631,0.27661052517237505,0.27668073892396167,0.2767509473925964,0.2768211505769529,0.276891348475705,0.2769615410875264,0.2770317284110912,0.2771019104450735,0.27717208718814734,0.27724225863898727,0.2773124247962675,0.27738258565866264,0.2774527412248474,0.27752289149349646,0.2775930364632847,0.27766317613288716,0.2777333105009789,0.27780343956623516,0.27787356332733126,0.27794368178294254,0.2780137949317447,0.27808390277241335,0.2781540053036242,0.27822410252405333,0.27829419443237646,0.2783642810272699,0.27843436230740987,0.2785044382714726,0.2785745089181346,0.2786445742460726,0.278714634253963,0.27878468894048275,0.27885473830430874,0.278924782344118,0.27899482105858764,0.2790648544463949,0.27913488250621715,0.2792049052367319,0.2792749226366167,0.2793449347045492,0.2794149414392073,0.2794849428392689,0.279554938903412,0.27962492963031477,0.2796949150186555,0.27976489506711255,0.2798348697743645,0.2799048391390898,0.2799748031599673,0.2800447618356758,0.28011471516489417,0.2801846631463016,0.28025460577857714,0.28032454306040017,0.2803944749904501,0.2804644015674064,0.28053432278994866,0.28060423865675677,0.28067414916651046,0.2807440543178897,0.28081395410957466,0.28088384854024545,0.2809537376085825,0.28102362131326614,0.28109349965297686,0.2811633726263955,0.2812332402322027,0.28130310246907936,0.28137295933570655,0.2814428108307653,0.2815126569529368,0.28158249770090255,0.28165233307334386,0.2817221630689424,0.2817919876863797,0.2818618069243377,0.28193162078149836,0.2820014292565436,0.2820712323481555,0.2821410300550165,0.28221082237580886,0.28228060930921506,0.2823503908539177,0.28242016700859957,0.2824899377719434,0.28255970314263223,0.282629463119349,0.28269921770077705,0.2827689668855995,0.2828387106724998,0.2829084490601616,0.2829781820472683,0.2830479096325038,0.283117631814552,0.28318734859209677,0.2832570599638222,0.28332676592841266,0.28339646648455225,0.28346616163092553,0.28353585136621706,0.28360553568911145,0.28367521459829353,0.28374488809244813,0.2838145561702603,0.28388421883041526,0.2839538760715981,0.28402352789249424,0.28409317429178926,0.28416281526816856,0.2842324508203179,0.2843020809469232,0.2843717056466703,0.28444132491824536,0.28451093876033434,0.2845805471716237,0.28465015015079975,0.28471974769654906,0.28478933980755816,0.28485892648251393,0.28492850772010314,0.2849980835190128,0.28506765387793,0.2851372187955418,0.28520677827053575,0.2852763323015992,0.28534588088741963,0.2854154240266848,0.28548496171808246,0.28555449396030047,0.2856240207520269,0.2856935420919499,0.2857630579787576,0.2858325684111386,0.28590207338778106,0.28597157290737385,0.28604106696860554,0.28611055557016496,0.28618003871074116,0.2862495163890231,0.2863189886036999,0.286388455353461,0.2864579166369957,0.2865273724529936,0.2865968228001443,0.28666626767713754,0.28673570708266327,0.2868051410154114,0.286874569474072,0.28694399245733543,0.2870134099638919,0.28708282199243196,0.2871522285416461,0.2872216296102251,0.2872910251968597,0.2873604153002408,0.2874297999190595,0.28749917905200684,0.28756855269777426,0.2876379208550531,0.2877072835225347,0.2877766406989109,0.28784599238287334,0.28791533857311385,0.2879846792683245,0.28805401446719725,0.2881233441684244,0.2881926683706982,0.2882619870727111,0.2883313002731558,0.28840060797072475,0.2884699101641109,0.2885392068520071,0.28860849803310634,0.2886777837061018,0.28874706386968685,0.2888163385225546,0.2888856076633988,0.2889548712909129,0.2890241294037907,0.28909338200072604,0.2891626290804128,0.28923187064154515,0.2893011066828173,0.2893703372029235,0.28943956220055816,0.28950878167441596,0.2895779956231914,0.28964720404557937,0.2897164069402748,0.28978560430597256,0.28985479614136794,0.2899239824451561,0.2899931632160324,0.29006233845269247,0.2901315081538317,0.29020067231814595,0.2902698309443311,0.290338984031083,0.2904081315770978,0.29047727358107167,0.2905464100417009,0.290615540957682,0.2906846663277114,0.2907537861504858,0.2908229004247021,0.29089200914905705,0.2909611123222477,0.29103020994297135,0.291099302009925,0.2911683885218062,0.29123746947731244,0.2913065448751412,0.2913756147139903,0.29144467899255766,0.2915137377095411,0.2915827908636388,0.2916518384535489,0.2917208804779698,0.29178991693559986,0.29185894782513766,0.29192797314528185,0.2919969928947313,0.29206600707218483,0.29213501567634154,0.29220401870590057,0.29227301615956114,0.29234200803602267,0.2924109943339847,0.2924799750521468,0.29254895018920873,0.2926179197438703,0.29268688371483154,0.2927558421007926,0.29282479490045354,0.29289374211251484,0.2929626837356769,0.29303161976864034,0.2931005502101057,0.29316947505877405,0.2932383943133461,0.29330730797252297,0.2933762160350058,0.2934451184994959,0.2935140153646947,0.29358290662930364,0.2936517922920245,0.29372067235155896,0.29378954680660885,0.2938584156558762,0.2939272788980633,0.2939961365318721,0.29406498855600516,0.29413383496916495,0.29420267577005393,0.29427151095737497,0.2943403405298308,0.2944091644861244,0.2944779828249589,0.29454679554503743,0.2946156026450633,0.29468440412374003,0.294753199979771,0.29482199021186006,0.29489077481871095,0.2949595537990275,0.2950283271515139,0.29509709487487407,0.29516585696781245,0.29523461342903345,0.29530336425724146,0.2953721094511411,0.29544084900943735,0.2955095829308348,0.29557831121403855,0.29564703385775376,0.2957157508606855,0.2957844622215393,0.2958531679390206,0.2959218680118349,0.29599056243868793,0.2960592512182855,0.29612793434933365,0.29619661183053836,0.29626528366060584,0.2963339498382424,0.29640261036215454,0.29647126523104866,0.2965399144436315,0.2966085579986099,0.2966771958946907,0.296745828130581,0.29681445470498785,0.2968830756166186,0.29695169086418066,0.29702030044638145,0.2970889043619286,0.29715750260953,0.29722609518789334,0.29729468209572674,0.29736326333173835,0.2974318388946362,0.29750040878312883,0.2975689729959247,0.29763753153173234,0.2977060843892605,0.29777463156721795,0.29784317306431374,0.29791170887925694,0.29798023901075665,0.2980487634575223,0.29811728221826334,0.29818579529168926,0.2982543026765097,0.29832280437143466,0.2983913003751738,0.29845979068643735,0.2985282753039355,0.2985967542263784,0.29866522745247653,0.2987336949809404,0.2988021568104806,0.2988706129398081,0.2989390633676336,0.2990075080926682,0.29907594711362306,0.2991443804292093,0.2992128080381385,0.299281229939122,0.29934964613087145,0.2994180566120987,0.2994864613815154,0.2995548604378337,0.29962325377976573,0.2996916414060236,0.2997600233153197,0.2998283995063666,0.29989676997787673,0.2999651347285629,0.30003349375713795,0.3001018470623148,0.3001701946428065,0.30023853649732635,0.3003068726245876,0.3003752030233037,0.30044352769218824,0.30051184662995484,0.3005801598353174,0.3006484673069898,0.3007167690436861,0.3007850650441205,0.30085335530700724,0.3009216398310608,0.3009899186149957,0.30105819165752656,0.3011264589573682,0.3011947205132356,0.30126297632384363,0.3013312263879076,0.3013994707041427,0.30146770927126426,0.30153594208798795,0.30160416915302934,0.30167239046510413,0.3017406060229283,0.3018088158252178,0.3018770198706887,0.30194521815805747,0.30201341068604026,0.30208159745335367,0.30214977845871427,0.3022179537008388,0.3022861231784442,0.3023542868902474,0.30242244483496544,0.30249059701131575,0.3025587434180154,0.30262688405378213,0.3026950189173334,0.302763148007387,0.3028312713226607,0.3028993888618725,0.3029675006237405,0.303035606606983,0.30310370681031806,0.30317180123246446,0.3032398898721406,0.3033079727280652,0.30337604979895716,0.30344412108353536,0.3035121865805189,0.30358024628862695,0.3036483002065789,0.3037163483330941,0.30378439066689217,0.30385242720669275,0.30392045795121575,0.303988482899181,0.3040565020493086,0.30412451540031876,0.30419252295093174,0.304260524699868,0.30432852064584803,0.3043965107875926,0.3044644951238224,0.3045324736532584,0.30460044637462175,0.3046684132866334,0.3047363743880149,0.3048043296774874,0.3048722791537726,0.30494022281559213,0.30500816066166775,0.3050760926907214,0.30514401890147513,0.305211939292651,0.3052798538629714,0.3053477626111587,0.3054156655359354,0.30548356263602416,0.3055514539101478,0.3056193393570292,0.3056872189753913,0.30575509276395735,0.30582296072145054,0.3058908228465944,0.30595867913811226,0.30602652959472787,0.30609437421516505,0.30616221299814755,0.3062300459423995,0.306297873046645,0.3063656943096083,0.3064335097300138,0.30650131930658603,0.30656912303804956,0.3066369209231292,0.30670471296054985,0.3067724991490365,0.30684027948731424,0.30690805397410836,0.30697582260814427,0.30704358538814747,0.3071113423128435,0.30717909338095817,0.3072468385912175,0.30731457794234723,0.3073823114330737,0.30745003906212304,0.3075177608282217,0.3075854767300961,0.30765318676647296,0.30772089093607896,0.3077885892376411,0.30785628166988616,0.30792396823154145,0.3079916489213341,0.3080593237379916,0.3081269926802414,0.3081946557468111,0.3082623129364284,0.30832996424782133,0.30839760967971774,0.3084652492308458,0.3085328828999338,0.3086005106857101,0.3086681325869031,0.30873574860224157,0.30880335873045417,0.3088709629702698,0.30893856132041747,0.30900615377962626,0.3090737403466255,0.3091413210201444,0.30920889579891264,0.3092764646816598,0.3093440276671156,0.30941158475400987,0.30947913594107274,0.3095466812270342,0.3096142206106246,0.3096817540905743,0.3097492816656137,0.3098168033344736,0.3098843190958846,0.30995182894857765,0.3100193328912838,0.3100868309227341,0.3101543230416598,0.3102218092467924,0.3102892895368632,0.310356763910604,0.3104242323667466,0.3104916949040227,0.3105591515211644,0.3106266022169039,0.31069404698997344,0.31076148583910534,0.31082891876303215,0.31089634576048647,0.31096376683020116,0.311031181970909,0.3110985911813431,0.3111659944602366,0.31123339180632265,0.31130078321833476,0.3113681686950065,0.31143554823507136,0.3115029218372632,0.31157028950031596,0.3116376512229636,0.3117050070039403,0.31177235684198035,0.31183970073581807,0.3119070386841881,0.31197437068582506,0.31204169673946375,0.31210901684383907,0.312176330997686,0.31224363919973974,0.31231094144873567,0.3123782377434091,0.31244552808249565,0.31251281246473084,0.31258009088885064,0.3126473633535909,0.3127146298576876,0.312781890399877,0.3128491449788955,0.31291639359347934,0.3129836362423651,0.3130508729242896,0.31311810363798953,0.31318532838220187,0.3132525471556637,0.31331975995711214,0.31338696678528466,0.3134541676389185,0.31352136251675133,0.3135885514175209,0.3136557343399649,0.3137229112828214,0.3137900822448285,0.3138572472247243,0.31392440622124723,0.3139915592331357,0.31405870625912824,0.31412584729796367,0.3141929823483808,0.3142601114091185,0.3143272344789161,0.3143943515565126,0.3144614626406474,0.31452856773006005,0.3145956668234901,0.3146627599196773,0.3147298470173615,0.3147969281152827,0.314864003212181,0.3149310723067967,0.3149981353978701,0.3150651924841417,0.3151322435643522,0.3151992886372422,0.31526632770155283,0.31533336075602486,0.31540038779939955,0.3154674088304182,0.31553442384782204,0.3156014328503527,0.31566843583675186,0.3157354328057612,0.31580242375612266,0.31586940868657837,0.31593638759587034,0.31600336048274097,0.31607032734593254,0.31613728818418774,0.31620424299624916,0.31627119178085966,0.3163381345367621,0.31640507126269957,0.3164720019574152,0.3165389266196523,0.3166058452481545,0.31667275784166515,0.3167396643989281,0.316806564918687,0.31687345939968586,0.3169403478406689,0.3170072302403802,0.3170741065975641,0.3171409769109651,0.31720784117932777,0.31727469940139685,0.31734155157591726,0.3174083977016338,0.31747523777729175,0.3175420718016363,0.3176088997734128,0.3176757216913667,0.3177425375542437,0.3178093473607895,0.31787615110975004,0.31794294879987123,0.31800974042989927,0.3180765259985805,0.31814330550466113,0.31821007894688785,0.31827684632400727,0.3183436076347661,0.31841036287791136,0.31847711205219004,0.3185438551563492,0.31861059218913634,0.31867732314929875,0.31874404803558404,0.3188107668467399,0.3188774795815141,0.31894418623865456,0.3190108868169094,0.3190775813150269,0.3191442697317552,0.31921095206584293,0.31927762831603856,0.31934429848109097,0.31941096255974877,0.3194776205507611,0.3195442724528771,0.31961091826484583,0.3196775579854168,0.3197441916133395,0.3198108191473635,0.3198774405862385,0.31994405592871455,0.3200106651735415,0.32007726831946953,0.320143865365249,0.32021045630963024,0.3202770411513638,0.3203436198892003,0.3204101925218905,0.32047675904818546,0.32054331946683606,0.3206098737765936,0.3206764219762094,0.32074296406443475,0.3208095000400214,0.3208760299017209,0.3209425536482852,0.32100907127846623,0.32107558279101595,0.3211420881846867,0.32120858745823083,0.3212750806104008,0.32134156763994914,0.32140804854562877,0.32147452332619236,0.321540991980393,0.32160745450698386,0.3216739109047181,0.32174036117234917,0.3218068053086306,0.321873243312316,0.32193967518215916,0.322006100916914,0.3220725205153345,0.322138933976175,0.32220534129818956,0.3222717424801328,0.3223381375207593,0.32240452641882356,0.3224709091730805,0.3225372857822852,0.32260365624519255,0.3226700205605578,0.32273637872713645,0.3228027307436838,0.3228690766089556,0.3229354163217074,0.3230017498806952,0.323068077284675,0.32313439853240294,0.3232007136226352,0.3232670225541282,0.3233333253256385,0.3233996219359227,0.3234659123837377,0.3235321966678402,0.3235984747869875,0.32366474673993656,0.3237310125254448,0.3237972721422696,0.3238635255891686,0.32392977286489943,0.32399601396822,0.3240622488978882,0.3241284776526621,0.32419470023130004,0.3242609166325603,0.3243271268552013,0.3243933308979819,0.32445952875966055,0.32452572043899636,0.3245919059347481,0.3246580852456752,0.32472425837053676,0.3247904253080922,0.3248565860571011,0.32492274061632315,0.32498888898451805,0.3250550311604458,0.3251211671428665,0.32518729693054027,0.3252534205222275,0.3253195379166886,0.32538564911268414,0.325451754108975,0.32551785290432184,0.3255839454974857,0.32565003188722774,0.3257161120723092,0.32578218605149145,0.32584825382353605,0.3259143153872045,0.32598037074125874,0.3260464198844606,0.3261124628155721,0.32617849953335554,0.326244530036573,0.3263105543239871,0.3263765723943604,0.3264425842464555,0.3265085898790353,0.32657458929086275,0.32664058248070094,0.32670656944731313,0.32677255018946266,0.326838524705913,0.3269044929954278,0.32697045505677086,0.32703641088870594,0.32710236048999725,0.32716830385940876,0.32723424099570486,0.32730017189765,0.3273660965640086,0.32743201499354546,0.3274979271850254,0.32756383313721327,0.3276297328488742,0.3276956263187735,0.3277615135456764,0.32782739452834847,0.3278932692655552,0.3279591377560624,0.328024999998636,0.3280908559920419,0.3281567057350463,0.3282225492264156,0.3282883864649159,0.3283542174493141,0.32842004217837667,0.3284858606508704,0.3285516728655623,0.32861747882121944,0.328683278516609,0.3287490719504984,0.328814859121655,0.32888064002884637,0.32894641467084046,0.32901218304640495,0.3290779451543079,0.32914370099331747,0.32920945056220186,0.32927519385972953,0.3293409308846691,0.3294066616357891,0.32947238611185836,0.3295381043116459,0.32960381623392065,0.32966952187745197,0.32973522124100907,0.3298009143233615,0.32986660112327887,0.32993228163953087,0.32999795587088737,0.3300636238161184,0.33012928547399406,0.33019494084328466,0.33026058992276064,0.33032623271119244,0.33039186920735086,0.3304574994100065,0.3305231233179305,0.3305887409298939,0.3306543522446678,0.33071995726102366,0.3307855559777329,0.3308511483935671,0.330916734507298,0.3309823143176976,0.3310478878235378,0.3311134550235907,0.3311790159166287,0.3312445705014241,0.33131011877674954,0.33137566074137764,0.3314411963940812,0.33150672573363327,0.3315722487588068,0.3316377654683751,0.3317032758611115,0.3317687799357894,0.3318342776911825,0.33189976912606456,0.3319652542392094,0.33203073302939123,0.33209620549538393,0.33216167163596194,0.3322271314498997,0.3322925849359717,0.33235803209295267,0.3324234729196175,0.332488907414741,0.33255433557709835,0.33261975740546484,0.33268517289861577,0.3327505820553266,0.3328159848743731,0.3328813813545309,0.33294677149457597,0.33301215529328426,0.3330775327494321,0.3331429038617957,0.3332082686291514,0.333273627050276,0.33333897912394617,0.33340432484893856,0.33346966422403035,0.33353499724799857,0.33360032391962047,0.33366564423767353,0.3337309582009351,0.33379626580818295,0.3338615670581949,0.3339268619497488,0.33399215048162273,0.33405743265259497,0.3341227084614437,0.3341879779069475,0.33425324098788495,0.33431849770303473,0.33438374805117577,0.3344489920310871,0.33451422964154776,0.33457946088133717,0.3346446857492346,0.33470990424401964,0.3347751163644721,0.33484032210937165,0.33490552147749825,0.3349707144676321,0.3350359010785533,0.33510108130904226,0.33516625515787957,0.33523142262384564,0.33529658370572146,0.3353617384022879,0.33542688671232584,0.3354920286346166,0.33555716416794146,0.3356222933110818,0.3356874160628193,0.33575253242193565,0.3358176423872126,0.33588274595743234,0.3359478431313768,0.3360129339078283,0.3360780182855694,0.33614309626338235,0.33620816784005,0.3362732330143551,0.33633829178508057,0.33640334415100953,0.3364683901109252,0.3365334296636109,0.3365984628078501,0.3366634895424264,0.3367285098661236,0.3367935237777257,0.3368585312760165,0.33692353235978034,0.33698852702780147,0.33705351527886424,0.3371184971117534,0.3371834725252535,0.3372484415181494,0.3373134040892262,0.33737836023726897,0.33744330996106287,0.33750825325939343,0.33757319013104603,0.33763812057480647,0.33770304458946054,0.33776796217379407,0.3378328733265933,0.3378977780466442,0.33796267633273336,0.33802756818364715,0.33809245359817214,0.33815733257509517,0.33822220511320317,0.3382870712112831,0.3383519308681221,0.3384167840825076,0.33848163085322686,0.33854647117906755,0.3386113050588175,0.3386761324912644,0.3387409534751963,0.33880576800940126,0.33887057609266763,0.33893537772378385,0.3390001729015383,0.3390649616247197,0.33912974389211703,0.339194519702519,0.33925928905471486,0.33932405194749377,0.3393888083796451,0.33945355834995833,0.3395183018572231,0.3395830389002292,0.3396477694777665,0.3397124935886251,0.3397772112315951,0.3398419224054669,0.3399066271090309,0.33997132534107777,0.3400360171003982,0.340100702385783,0.34016538119602324,0.34023005352991015,0.3402947193862348,0.3403593787637888,0.34042403166136365,0.34048867807775096,0.3405533180117427,0.34061795146213075,0.3406825784277072,0.3407471989072644,0.34081181289959467,0.3408764204034905,0.3409410214177446,0.34100561594114975,0.3410702039724989,0.34113478551058507,0.34119936055420147,0.34126392910214154,0.3413284911531987,0.34139304670616655,0.34145759575983897,0.3415221383130097,0.3415866743644729,0.34165120391302267,0.34171572695745334,0.3417802434965594,0.34184475352913546,0.3419092570539761,0.3419737540698764,0.3420382445756312,0.34210272857003565,0.3421672060518852,0.3422316770199751,0.3422961414731009,0.3423605994100584,0.3424250508296434,0.34248949573065185,0.34255393411187995,0.3426183659721238,0.34268279131017987,0.3427472101248447,0.3428116224149149,0.3428760281791874,0.3429404274164589,0.34300482012552674,0.34306920630518806,0.34313358595424015,0.34319795907148054,0.3432623256557069,0.34332668570571695,0.34339103922030867,0.3434553861982801,0.34351972663842933,0.34358406053955476,0.34364838790045493,0.3437127087199284,0.3437770229967738,0.34384133072979023,0.3439056319177765,0.34396992655953196,0.34403421465385575,0.34409849619954735,0.3441627711954065,0.3442270396402327,0.3442913015328259,0.34435555687198616,0.3444198056565135,0.3444840478852083,0.3445482835568709,0.34461251267030185,0.3446767352243019,0.3447409512176719,0.3448051606492127,0.34486936351772557,0.3449335598220116,0.3449977495608723,0.3450619327331092,0.34512610933752386,0.3451902793729182,0.34525444283809414,0.3453185997318537,0.34538275005299923,0.34544689380033294,0.34551103097265745,0.34557516156877544,0.3456392855874896,0.34570340302760283,0.3457675138879183,0.3458316181672392,0.34589571586436874,0.3459598069781106,0.34602389150726826,0.34608796945064557,0.3461520408070463,0.34621610557527466,0.3462801637541348,0.34634421534243093,0.3464082603389676,0.3464722987425494,0.3465363305519811,0.34660035576606746,0.3466643743836137,0.34672838640342485,0.34679239182430616,0.34685639064506324,0.34692038286450155,0.3469843684814269,0.3470483474946451,0.34711231990296204,0.3471762857051841,0.3472402449001174,0.3473041974865684,0.3473681434633437,0.34743208282925,0.347496015583094,0.34755994172368293,0.34762386124982375,0.34768777416032376,0.3477516804539904,0.34781558012963115,0.34787947318605383,0.34794335962206613,0.34800723943647605,0.34807111262809176,0.3481349791957214,0.34819883913817345,0.3482626924542565,0.34832653914277906,0.34839037920255006,0.34845421263237847,0.34851803943107323,0.34858185959744376,0.3486456731302993,0.3487094800284495,0.34877328029070387,0.34883707391587226,0.3489008609027647,0.34896464125019117,0.3490284149569619,0.34909218202188724,0.3491559424437778,0.3492196962214441,0.349283443353697,0.3493471838393474,0.34941091767720633,0.3494746448660851,0.34953836540479494,0.34960207929214737,0.3496657865269541,0.34972948710802687,0.34979318103417756,0.34985686830421825,0.3499205489169611,0.3499842228712185,0.3500478901658029,0.35011155079952694,0.3501752047712034,0.3502388520796451,0.35030249272366515,0.3503661267020768,0.35042975401369325,0.350493374657328,0.35055698863179474,0.35062059593590716,0.35068419656847916,0.35074779052832483,0.3508113778142582,0.35087495842509375,0.35093853235964595,0.35100209961672924,0.3510656601951585,0.3511292140937486,0.3511927613113145,0.35125630184667145,0.35131983569863473,0.3513833628660198,0.35144688334764224,0.35151039714231774,0.3515739042488623,0.3516374046660919,0.35170089839282265,0.35176438542787086,0.3518278657700531,0.3518913394181858,0.3519548063710858,0.35201826662756985,0.3520817201864551,0.3521451670465587,0.35220860720669783,0.35227204066569007,0.35233546742235294,0.3523988874755042,0.3524623008239616,0.3525257074665433,0.35258910740206745,0.3526525006293523,0.35271588714721624,0.35277926695447787,0.352842640049956,0.35290600643246944,0.3529693661008372,0.3530327190538784,0.3530960652904124,0.35315940480925856,0.35322273760923656,0.353286063689166,0.35334938304786684,0.35341269568415906,0.3534760015968628,0.3535393007847984,0.35360259324678617,0.3536658789816468,0.35372915798820104,0.3537924302652697,0.3538556958116737,0.35391895462623435,0.3539822067077728,0.35404545205511057,0.3541086906670693,0.3541719225424705,0.35423514768013625,0.3542983660788885,0.3543615777375493,0.35442478265494104,0.35448798082988614,0.35455117226120714,0.35461435694772686,0.3546775348882681,0.3547407060816538,0.35480387052670725,0.35486702822225163,0.35493017916711045,0.3549933233601073,0.3550564608000658,0.35511959148580996,0.35518271541616375,0.35524583258995124,0.3553089430059968,0.3553720466631249,0.35543514356016004,0.35549823369592704,0.3555613170692507,0.3556243936789561,0.3556874635238684,0.3557505266028128,0.35581358291461485,0.3558766324581001,0.3559396752320943,0.3560027112354234,0.3560657404669132,0.3561287629253901,0.35619177860968027,0.3562547875186102,0.3563177896510066,0.3563807850056961,0.3564437735815055,0.35650675537726195,0.3565697303917927,0.3566326986239248,0.35669566007248604,0.35675861473630377,0.3568215626142058,0.3568845037050201,0.3569474380075746,0.3570103655206976,0.3570732862432174,0.3571362001739623,0.3571991073117611,0.3572620076554425,0.3573249012038354,0.35738778795576887,0.3574506679100721,0.3575135410655743,0.35757640742110514,0.35763926697549414,0.357702119727571,0.3577649656761658,0.35782780482010845,0.3578906371582292,0.35795346268935846,0.3580162814123266,0.3580790933259644,0.3581418984291025,0.3582046967205718,0.35826748819920357,0.3583302728638288,0.358393050713279,0.3584558217463856,0.3585185859619802,0.3585813433588947,0.358644093935961,0.35870683769201106,0.3587695746258773,0.358832304736392,0.3588950280223876,0.35895774448269685,0.35902045411615263,0.3590831569215877,0.3591458528978353,0.3592085420437286,0.35927122435810094,0.359333899839786,0.3593965684876173,0.3594592303004287,0.3595218852770543,0.359584533416328,0.35964717471708413,0.3597098091781572,0.3597724367983816,0.35983505757659207,0.3598976715116235,0.3599602786023108,0.3600228788474892,0.36008547224599374,0.36014805879666006,0.3602106384983237,0.36027321134982027,0.3603357773499856,0.3603983364976559,0.36046088879166704,0.36052343423085553,0.3605859728140577,0.36064850454011005,0.3607110294078495,0.3607735474161127,0.3608360585637369,0.3608985628495591,0.36096106027241665,0.36102355083114696,0.3610860345245877,0.36114851135157655,0.3612109813109515,0.36127344440155046,0.3613359006222117,0.3613983499717735,0.36146079244907436,0.3615232280529529,0.3615856567822479,0.3616480786357982,0.3617104936124429,0.3617729017110212,0.36183530293037247,0.3618976972693361,0.36196008472675195,0.3620224653014596,0.3620848389922991,0.36214720579811044,0.3622095657177339,0.36227191875000986,0.3623342648937788,0.3623966041478814,0.36245893651115846,0.36252126198245094,0.36258358056059997,0.36264589224444677,0.3627081970328327,0.3627704949245994,0.3628327859185885,0.36289507001364174,0.36295734720860123,0.3630196175023091,0.36308188089360754,0.36314413738133905,0.3632063869643461,0.36326862964147144,0.363330865411558,0.36339309427344874,0.36345531622598676,0.36351753126801545,0.3635797393983781,0.3636419406159185,0.3637041349194803,0.36376632230790734,0.3638285027800437,0.3638906763347336,0.36395284297082126,0.36401500268715126,0.36407715548256814,0.3641393013559167,0.36420144030604185,0.3642635723317887,0.3643256974320023,0.36438781560552824,0.3644499268512118,0.3645120311678987,0.36457412855443483,0.36463621900966603,0.3646983025324384,0.3647603791215982,0.3648224487759918,0.36488451149446577,0.36494656727586666,0.36500861611904145,0.3650706580228371,0.36513269298610057,0.3651947210076793,0.36525674208642067,0.36531875622117216,0.3653807634107815,0.36544276365409667,0.3655047569499655,0.36556674329723626,0.36562872269475716,0.3656906951413767,0.3657526606359435,0.3658146191773063,0.36587657076431385,0.3659385153958154,0.3660004530706599,0.3660623837876969,0.3661243075457758,0.36618622434374615,0.3662481341804578,0.3663100370547607,0.3663719329655048,0.36643382191154045,0.3664957038917179,0.3665575789048877,0.3666194469499007,0.36668130802560733,0.36674316213085884,0.36680500926450627,0.3668668494254008,0.3669286826123939,0.3669905088243372,0.36705232806008214,0.36711414031848083,0.3671759455983851,0.36723774389864716,0.3672995352181193,0.3673613195556539,0.36742309691010355,0.3674848672803211,0.36754663066515925,0.3676083870634712,0.36767013647411,0.36773187889592907,0.3677936143277818,0.3678553427685219,0.36791706421700304,0.3679787786720793,0.3680404861326045,0.36810218659743305,0.3681638800654193,0.36822556653541766,0.3682872460062829,0.36834891847686974,0.3684105839460332,0.3684722424126284,0.36853389387551055,0.36859553833353503,0.36865717578555746,0.3687188062304335,0.368780429667019,0.36884204609417004],"x":[0.0,0.0001599360255897641,0.0003198720511795282,0.0004798080767692923,0.0006397441023590564,0.0007996801279488205,0.0009596161535385846,0.0011195521791283487,0.0012794882047181128,0.0014394242303078768,0.001599360255897641,0.001759296281487405,0.0019192323070771691,0.0020791683326669332,0.0022391043582566973,0.0023990403838464614,0.0025589764094362255,0.0027189124350259896,0.0028788484606157537,0.003038784486205518,0.003198720511795282,0.003358656537385046,0.00351859256297481,0.003678528588564574,0.0038384646141543383,0.003998400639744102,0.0041583366653338664,0.0043182726909236305,0.004478208716513395,0.004638144742103159,0.004798080767692923,0.004958016793282687,0.005117952818872451,0.005277888844462215,0.005437824870051979,0.005597760895641743,0.005757696921231507,0.0059176329468212715,0.006077568972411036,0.0062375049980008,0.006397441023590564,0.006557377049180328,0.006717313074770092,0.006877249100359856,0.00703718512594962,0.007197121151539384,0.007357057177129148,0.007516993202718912,0.0076769292283086765,0.00783686525389844,0.007996801279488205,0.008156737305077969,0.008316673330667733,0.008476609356257497,0.008636545381847261,0.008796481407437025,0.00895641743302679,0.009116353458616553,0.009276289484206317,0.009436225509796082,0.009596161535385846,0.00975609756097561,0.009916033586565374,0.010075969612155138,0.010235905637744902,0.010395841663334666,0.01055577768892443,0.010715713714514194,0.010875649740103958,0.011035585765693723,0.011195521791283487,0.01135545781687325,0.011515393842463015,0.011675329868052779,0.011835265893642543,0.011995201919232307,0.012155137944822071,0.012315073970411835,0.0124750099960016,0.012634946021591363,0.012794882047181128,0.012954818072770892,0.013114754098360656,0.01327469012395042,0.013434626149540184,0.013594562175129948,0.013754498200719712,0.013914434226309476,0.01407437025189924,0.014234306277489004,0.014394242303078768,0.014554178328668533,0.014714114354258297,0.01487405037984806,0.015033986405437825,0.015193922431027589,0.015353858456617353,0.015513794482207117,0.01567373050779688,0.015833666533386647,0.01599360255897641,0.016153538584566175,0.016313474610155938,0.016473410635745703,0.016633346661335466,0.01679328268692523,0.016953218712514994,0.01711315473810476,0.017273090763694522,0.017433026789284288,0.01759296281487405,0.017752898840463816,0.01791283486605358,0.018072770891643344,0.018232706917233107,0.018392642942822873,0.018552578968412635,0.0187125149940024,0.018872451019592163,0.01903238704518193,0.01919232307077169,0.019352259096361457,0.01951219512195122,0.019672131147540985,0.019832067173130748,0.019992003198720514,0.020151939224310276,0.02031187524990004,0.020471811275489804,0.02063174730107957,0.020791683326669332,0.020951619352259098,0.02111155537784886,0.021271491403438626,0.02143142742902839,0.021591363454618154,0.021751299480207917,0.021911235505797683,0.022071171531387445,0.02223110755697721,0.022391043582566973,0.02255097960815674,0.0227109156337465,0.022870851659336267,0.02303078768492603,0.023190723710515795,0.023350659736105558,0.023510595761695324,0.023670531787285086,0.023830467812874852,0.023990403838464614,0.02415033986405438,0.024310275889644142,0.024470211915233908,0.02463014794082367,0.024790083966413436,0.0249500199920032,0.025109956017592965,0.025269892043182727,0.025429828068772493,0.025589764094362255,0.02574970011995202,0.025909636145541783,0.02606957217113155,0.02622950819672131,0.026389444222311077,0.02654938024790084,0.026709316273490605,0.026869252299080368,0.027029188324670134,0.027189124350259896,0.027349060375849662,0.027508996401439424,0.02766893242702919,0.027828868452618952,0.027988804478208718,0.02814874050379848,0.028308676529388246,0.02846861255497801,0.028628548580567775,0.028788484606157537,0.028948420631747303,0.029108356657337065,0.02926829268292683,0.029428228708516593,0.02958816473410636,0.02974810075969612,0.029908036785285887,0.03006797281087565,0.030227908836465416,0.030387844862055178,0.030547780887644944,0.030707716913234706,0.030867652938824472,0.031027588964414234,0.031187524990004,0.03134746101559376,0.03150739704118353,0.031667333066773294,0.03182726909236305,0.03198720511795282,0.032147141143542585,0.03230707716913235,0.03246701319472211,0.032626949220311875,0.03278688524590164,0.03294682127149141,0.033106757297081166,0.03326669332267093,0.0334266293482607,0.03358656537385046,0.03374650139944022,0.03390643742502999,0.034066373450619754,0.03422630947620952,0.03438624550179928,0.034546181527389044,0.03470611755297881,0.034866053578568576,0.035025989604158335,0.0351859256297481,0.03534586165533787,0.03550579768092763,0.03566573370651739,0.03582566973210716,0.03598560575769692,0.03614554178328669,0.03630547780887645,0.036465413834466213,0.03662534986005598,0.036785285885645745,0.036945221911235504,0.03710515793682527,0.037265093962415036,0.0374250299880048,0.03758496601359456,0.037744902039184326,0.03790483806477409,0.03806477409036386,0.03822471011595362,0.03838464614154338,0.03854458216713315,0.038704518192722914,0.03886445421831267,0.03902439024390244,0.039184326269492205,0.03934426229508197,0.03950419832067173,0.039664134346261495,0.03982407037185126,0.03998400639744103,0.040143942423030786,0.04030387844862055,0.04046381447421032,0.04062375049980008,0.04078368652538984,0.04094362255097961,0.041103558576569374,0.04126349460215914,0.0414234306277489,0.041583366653338664,0.04174330267892843,0.041903238704518196,0.042063174730107955,0.04222311075569772,0.04238304678128749,0.04254298280687725,0.04270291883246701,0.04286285485805678,0.04302279088364654,0.04318272690923631,0.04334266293482607,0.043502598960415834,0.0436625349860056,0.043822471011595365,0.043982407037185124,0.04414234306277489,0.044302279088364656,0.04446221511395442,0.04462215113954418,0.044782087165133946,0.04494202319072371,0.04510195921631348,0.04526189524190324,0.045421831267493,0.04558176729308277,0.045741703318672534,0.04590163934426229,0.04606157536985206,0.046221511395441825,0.04638144742103159,0.04654138344662135,0.046701319472211116,0.04686125549780088,0.04702119152339065,0.047181127548980406,0.04734106357457017,0.04750099960015994,0.047660935625749704,0.04782087165133946,0.04798080767692923,0.048140743702518994,0.04830067972810876,0.04846061575369852,0.048620551779288285,0.04878048780487805,0.048940423830467816,0.049100359856057575,0.04926029588164734,0.04942023190723711,0.04958016793282687,0.04974010395841663,0.0499000399840064,0.05005997600959616,0.05021991203518593,0.05037984806077569,0.050539784086365454,0.05069972011195522,0.050859656137544985,0.051019592163134744,0.05117952818872451,0.051339464214314276,0.05149940023990404,0.0516593362654938,0.051819272291083567,0.05197920831667333,0.0521391443422631,0.05229908036785286,0.05245901639344262,0.05261895241903239,0.052778888444622155,0.05293882447021191,0.05309876049580168,0.053258696521391445,0.05341863254698121,0.05357856857257097,0.053738504598160736,0.0538984406237505,0.05405837664934027,0.054218312674930026,0.05437824870051979,0.05453818472610956,0.054698120751699324,0.05485805677728908,0.05501799280287885,0.055177928828468614,0.05533786485405838,0.05549780087964814,0.055657736905237905,0.05581767293082767,0.055977608956417436,0.056137544982007195,0.05629748100759696,0.05645741703318673,0.05661735305877649,0.05677728908436625,0.05693722510995602,0.05709716113554578,0.05725709716113555,0.05741703318672531,0.057576969212315074,0.05773690523790484,0.057896841263494606,0.058056777289084364,0.05821671331467413,0.058376649340263896,0.05853658536585366,0.05869652139144342,0.05885645741703319,0.05901639344262295,0.05917632946821272,0.05933626549380248,0.05949620151939224,0.05965613754498201,0.059816073570571775,0.059976009596161534,0.0601359456217513,0.060295881647341065,0.06045581767293083,0.06061575369852059,0.060775689724110356,0.06093562574970012,0.06109556177528989,0.061255497800879646,0.06141543382646941,0.06157536985205918,0.061735305877648944,0.0618952419032387,0.06205517792882847,0.062215113954418234,0.062375049980008,0.06253498600559776,0.06269492203118752,0.06285485805677729,0.06301479408236706,0.06317473010795682,0.06333466613354659,0.06349460215913634,0.0636545381847261,0.06381447421031587,0.06397441023590564,0.0641343462614954,0.06429428228708517,0.06445421831267494,0.0646141543382647,0.06477409036385445,0.06493402638944422,0.06509396241503398,0.06525389844062375,0.06541383446621352,0.06557377049180328,0.06573370651739305,0.06589364254298281,0.06605357856857257,0.06621351459416233,0.0663734506197521,0.06653338664534186,0.06669332267093163,0.0668532586965214,0.06701319472211116,0.06717313074770093,0.06733306677329068,0.06749300279888044,0.06765293882447021,0.06781287485005998,0.06797281087564974,0.06813274690123951,0.06829268292682927,0.06845261895241904,0.06861255497800879,0.06877249100359856,0.06893242702918832,0.06909236305477809,0.06925229908036785,0.06941223510595762,0.06957217113154739,0.06973210715713715,0.0698920431827269,0.07005197920831667,0.07021191523390644,0.0703718512594962,0.07053178728508597,0.07069172331067573,0.0708516593362655,0.07101159536185526,0.07117153138744502,0.07133146741303478,0.07149140343862455,0.07165133946421431,0.07181127548980408,0.07197121151539385,0.07213114754098361,0.07229108356657338,0.07245101959216313,0.0726109556177529,0.07277089164334266,0.07293082766893243,0.07309076369452219,0.07325069972011196,0.07341063574570172,0.07357057177129149,0.07373050779688124,0.07389044382247101,0.07405037984806077,0.07421031587365054,0.0743702518992403,0.07453018792483007,0.07469012395041984,0.0748500599760096,0.07500999600159935,0.07516993202718912,0.07532986805277889,0.07548980407836865,0.07564974010395842,0.07580967612954818,0.07596961215513795,0.07612954818072772,0.07628948420631747,0.07644942023190723,0.076609356257497,0.07676929228308677,0.07692922830867653,0.0770891643342663,0.07724910035985606,0.07740903638544583,0.07756897241103558,0.07772890843662535,0.07788884446221511,0.07804878048780488,0.07820871651339464,0.07836865253898441,0.07852858856457418,0.07868852459016394,0.0788484606157537,0.07900839664134346,0.07916833266693322,0.07932826869252299,0.07948820471811276,0.07964814074370252,0.07980807676929229,0.07996801279488205,0.0801279488204718,0.08028788484606157,0.08044782087165134,0.0806077568972411,0.08076769292283087,0.08092762894842064,0.0810875649740104,0.08124750099960017,0.08140743702518992,0.08156737305077968,0.08172730907636945,0.08188724510195922,0.08204718112754898,0.08220711715313875,0.08236705317872851,0.08252698920431828,0.08268692522990803,0.0828468612554978,0.08300679728108756,0.08316673330667733,0.0833266693322671,0.08348660535785686,0.08364654138344663,0.08380647740903639,0.08396641343462614,0.08412634946021591,0.08428628548580568,0.08444622151139544,0.08460615753698521,0.08476609356257497,0.08492602958816474,0.0850859656137545,0.08524590163934426,0.08540583766493402,0.08556577369052379,0.08572570971611355,0.08588564574170332,0.08604558176729309,0.08620551779288285,0.08636545381847262,0.08652538984406237,0.08668532586965214,0.0868452618952419,0.08700519792083167,0.08716513394642143,0.0873250699720112,0.08748500599760096,0.08764494202319073,0.08780487804878048,0.08796481407437025,0.08812475009996001,0.08828468612554978,0.08844462215113955,0.08860455817672931,0.08876449420231908,0.08892443022790884,0.0890843662534986,0.08924430227908836,0.08940423830467813,0.08956417433026789,0.08972411035585766,0.08988404638144742,0.09004398240703719,0.09020391843262696,0.09036385445821671,0.09052379048380647,0.09068372650939624,0.090843662534986,0.09100359856057577,0.09116353458616554,0.0913234706117553,0.09148340663734507,0.09164334266293482,0.09180327868852459,0.09196321471411435,0.09212315073970412,0.09228308676529388,0.09244302279088365,0.09260295881647342,0.09276289484206318,0.09292283086765293,0.0930827668932427,0.09324270291883247,0.09340263894442223,0.093562574970012,0.09372251099560176,0.09388244702119153,0.0940423830467813,0.09420231907237105,0.09436225509796081,0.09452219112355058,0.09468212714914034,0.09484206317473011,0.09500199920031988,0.09516193522590964,0.09532187125149941,0.09548180727708916,0.09564174330267892,0.09580167932826869,0.09596161535385846,0.09612155137944822,0.09628148740503799,0.09644142343062775,0.09660135945621752,0.09676129548180727,0.09692123150739704,0.0970811675329868,0.09724110355857657,0.09740103958416634,0.0975609756097561,0.09772091163534587,0.09788084766093563,0.09804078368652538,0.09820071971211515,0.09836065573770492,0.09852059176329468,0.09868052778888445,0.09884046381447421,0.09900039984006398,0.09916033586565375,0.0993202718912435,0.09948020791683326,0.09964014394242303,0.0998000799680128,0.09996001599360256,0.10011995201919233,0.10027988804478209,0.10043982407037186,0.10059976009596161,0.10075969612155138,0.10091963214714114,0.10107956817273091,0.10123950419832067,0.10139944022391044,0.1015593762495002,0.10171931227508997,0.10187924830067972,0.10203918432626949,0.10219912035185925,0.10235905637744902,0.10251899240303879,0.10267892842862855,0.10283886445421832,0.10299880047980808,0.10315873650539784,0.1033186725309876,0.10347860855657737,0.10363854458216713,0.1037984806077569,0.10395841663334666,0.10411835265893643,0.1042782886845262,0.10443822471011595,0.10459816073570571,0.10475809676129548,0.10491803278688525,0.10507796881247501,0.10523790483806478,0.10539784086365454,0.10555777688924431,0.10571771291483406,0.10587764894042383,0.10603758496601359,0.10619752099160336,0.10635745701719312,0.10651739304278289,0.10667732906837266,0.10683726509396242,0.10699720111955217,0.10715713714514194,0.1073170731707317,0.10747700919632147,0.10763694522191124,0.107796881247501,0.10795681727309077,0.10811675329868053,0.10827668932427029,0.10843662534986005,0.10859656137544982,0.10875649740103958,0.10891643342662935,0.10907636945221912,0.10923630547780888,0.10939624150339865,0.1095561775289884,0.10971611355457817,0.10987604958016793,0.1100359856057577,0.11019592163134746,0.11035585765693723,0.110515793682527,0.11067572970811676,0.11083566573370651,0.11099560175929628,0.11115553778488604,0.11131547381047581,0.11147540983606558,0.11163534586165534,0.11179528188724511,0.11195521791283487,0.11211515393842462,0.11227508996401439,0.11243502598960416,0.11259496201519392,0.11275489804078369,0.11291483406637345,0.11307477009196322,0.11323470611755299,0.11339464214314274,0.1135545781687325,0.11371451419432227,0.11387445021991204,0.1140343862455018,0.11419432227109157,0.11435425829668133,0.1145141943222711,0.11467413034786085,0.11483406637345062,0.11499400239904038,0.11515393842463015,0.11531387445021991,0.11547381047580968,0.11563374650139945,0.11579368252698921,0.11595361855257896,0.11611355457816873,0.1162734906037585,0.11643342662934826,0.11659336265493803,0.11675329868052779,0.11691323470611756,0.11707317073170732,0.11723310675729708,0.11739304278288684,0.11755297880847661,0.11771291483406637,0.11787285085965614,0.1180327868852459,0.11819272291083567,0.11835265893642544,0.11851259496201519,0.11867253098760495,0.11883246701319472,0.11899240303878449,0.11915233906437425,0.11931227508996402,0.11947221111555378,0.11963214714114355,0.1197920831667333,0.11995201919232307,0.12011195521791283,0.1202718912435026,0.12043182726909236,0.12059176329468213,0.1207516993202719,0.12091163534586166,0.12107157137145141,0.12123150739704118,0.12139144342263095,0.12155137944822071,0.12171131547381048,0.12187125149940024,0.12203118752499001,0.12219112355057977,0.12235105957616953,0.12251099560175929,0.12267093162734906,0.12283086765293882,0.12299080367852859,0.12315073970411836,0.12331067572970812,0.12347061175529789,0.12363054778088764,0.1237904838064774,0.12395041983206717,0.12411035585765694,0.1242702918832467,0.12443022790883647,0.12459016393442623,0.124750099960016,0.12491003598560575,0.12506997201119552,0.1252299080367853,0.12538984406237505,0.1255497800879648,0.12570971611355458,0.12586965213914433,0.1260295881647341,0.12618952419032387,0.12634946021591364,0.1265093962415034,0.12666933226709318,0.12682926829268293,0.12698920431827268,0.12714914034386246,0.1273090763694522,0.127469012395042,0.12762894842063174,0.12778888444622152,0.12794882047181128,0.12810875649740103,0.1282686925229908,0.12842862854858056,0.12858856457417034,0.1287485005997601,0.12890843662534987,0.12906837265093962,0.1292283086765294,0.12938824470211915,0.1295481807277089,0.12970811675329869,0.12986805277888844,0.13002798880447822,0.13018792483006797,0.13034786085565775,0.1305077968812475,0.13066773290683725,0.13082766893242703,0.13098760495801678,0.13114754098360656,0.13130747700919632,0.1314674130347861,0.13162734906037585,0.13178728508596563,0.13194722111155538,0.13210715713714513,0.1322670931627349,0.13242702918832466,0.13258696521391444,0.1327469012395042,0.13290683726509397,0.13306677329068373,0.13322670931627348,0.13338664534186326,0.133546581367453,0.1337065173930428,0.13386645341863254,0.13402638944422232,0.13418632546981207,0.13434626149540185,0.1345061975209916,0.13466613354658136,0.13482606957217114,0.1349860055977609,0.13514594162335067,0.13530587764894042,0.1354658136745302,0.13562574970011995,0.1357856857257097,0.13594562175129948,0.13610555777688924,0.13626549380247902,0.13642542982806877,0.13658536585365855,0.1367453018792483,0.13690523790483808,0.13706517393042783,0.13722510995601758,0.13738504598160736,0.13754498200719711,0.1377049180327869,0.13786485405837665,0.13802479008396643,0.13818472610955618,0.13834466213514593,0.1385045981607357,0.13866453418632546,0.13882447021191524,0.138984406237505,0.13914434226309477,0.13930427828868452,0.1394642143142743,0.13962415033986406,0.1397840863654538,0.1399440223910436,0.14010395841663334,0.14026389444222312,0.14042383046781287,0.14058376649340265,0.1407437025189924,0.14090363854458215,0.14106357457017193,0.1412235105957617,0.14138344662135147,0.14154338264694122,0.141703318672531,0.14186325469812075,0.14202319072371053,0.14218312674930028,0.14234306277489003,0.1425029988004798,0.14266293482606957,0.14282287085165934,0.1429828068772491,0.14314274290283888,0.14330267892842863,0.14346261495401838,0.14362255097960816,0.1437824870051979,0.1439424230307877,0.14410235905637744,0.14426229508196722,0.14442223110755698,0.14458216713314676,0.1447421031587365,0.14490203918432626,0.14506197520991604,0.1452219112355058,0.14538184726109557,0.14554178328668532,0.1457017193122751,0.14586165533786485,0.1460215913634546,0.14618152738904439,0.14634146341463414,0.14650139944022392,0.14666133546581367,0.14682127149140345,0.1469812075169932,0.14714114354258298,0.14730107956817273,0.14746101559376248,0.14762095161935226,0.14778088764494202,0.1479408236705318,0.14810075969612155,0.14826069572171133,0.14842063174730108,0.14858056777289083,0.1487405037984806,0.14890043982407036,0.14906037584966014,0.1492203118752499,0.14938024790083967,0.14954018392642943,0.1497001199520192,0.14986005597760896,0.1500199920031987,0.1501799280287885,0.15033986405437824,0.15049980007996802,0.15065973610555777,0.15081967213114755,0.1509796081567373,0.15113954418232706,0.15129948020791684,0.1514594162335066,0.15161935225909637,0.15177928828468612,0.1519392243102759,0.15209916033586565,0.15225909636145543,0.15241903238704518,0.15257896841263494,0.15273890443822472,0.15289884046381447,0.15305877648940425,0.153218712514994,0.15337864854058378,0.15353858456617353,0.15369852059176328,0.15385845661735306,0.15401839264294281,0.1541783286685326,0.15433826469412235,0.15449820071971213,0.15465813674530188,0.15481807277089166,0.1549780087964814,0.15513794482207116,0.15529788084766094,0.1554578168732507,0.15561775289884047,0.15577768892443022,0.15593762495002,0.15609756097560976,0.1562574970011995,0.1564174330267893,0.15657736905237904,0.15673730507796882,0.15689724110355857,0.15705717712914835,0.1572171131547381,0.15737704918032788,0.15753698520591763,0.1576969212315074,0.15785685725709717,0.15801679328268692,0.1581767293082767,0.15833666533386645,0.15849660135945623,0.15865653738504598,0.15881647341063573,0.1589764094362255,0.15913634546181527,0.15929628148740504,0.1594562175129948,0.15961615353858458,0.15977608956417433,0.1599360255897641,0.16009596161535386,0.1602558976409436,0.1604158336665334,0.16057576969212314,0.16073570571771292,0.16089564174330268,0.16105557776889246,0.1612155137944822,0.16137544982007196,0.16153538584566174,0.1616953218712515,0.16185525789684127,0.16201519392243102,0.1621751299480208,0.16233506597361055,0.16249500199920033,0.16265493802479009,0.16281487405037984,0.16297481007596962,0.16313474610155937,0.16329468212714915,0.1634546181527389,0.16361455417832868,0.16377449020391843,0.16393442622950818,0.16409436225509796,0.16425429828068772,0.1644142343062775,0.16457417033186725,0.16473410635745703,0.16489404238304678,0.16505397840863656,0.1652139144342263,0.16537385045981606,0.16553378648540584,0.1656937225109956,0.16585365853658537,0.16601359456217513,0.1661735305877649,0.16633346661335466,0.1664934026389444,0.1666533386645342,0.16681327469012394,0.16697321071571372,0.16713314674130347,0.16729308276689325,0.167453018792483,0.16761295481807278,0.16777289084366254,0.1679328268692523,0.16809276289484207,0.16825269892043182,0.1684126349460216,0.16857257097161135,0.16873250699720113,0.16889244302279088,0.16905237904838064,0.16921231507397042,0.16937225109956017,0.16953218712514995,0.1696921231507397,0.16985205917632948,0.17001199520191923,0.170171931227509,0.17033186725309876,0.17049180327868851,0.1706517393042783,0.17081167532986805,0.17097161135545783,0.17113154738104758,0.17129148340663736,0.1714514194322271,0.17161135545781686,0.17177129148340664,0.1719312275089964,0.17209116353458617,0.17225109956017592,0.1724110355857657,0.17257097161135546,0.17273090763694524,0.172890843662535,0.17305077968812474,0.17321071571371452,0.17337065173930427,0.17353058776489405,0.1736905237904838,0.17385045981607358,0.17401039584166333,0.1741703318672531,0.17433026789284287,0.17449020391843262,0.1746501399440224,0.17481007596961215,0.17497001199520193,0.17512994802079168,0.17528988404638146,0.1754498200719712,0.17560975609756097,0.17576969212315074,0.1759296281487405,0.17608956417433028,0.17624950019992003,0.1764094362255098,0.17656937225109956,0.1767293082766893,0.1768892443022791,0.17704918032786884,0.17720911635345862,0.17736905237904838,0.17752898840463815,0.1776889244302279,0.1778488604558177,0.17800879648140744,0.1781687325069972,0.17832866853258697,0.17848860455817672,0.1786485405837665,0.17880847660935625,0.17896841263494603,0.17912834866053579,0.17928828468612554,0.17944822071171532,0.17960815673730507,0.17976809276289485,0.1799280287884846,0.18008796481407438,0.18024790083966413,0.1804078368652539,0.18056777289084366,0.18072770891643342,0.1808876449420232,0.18104758096761295,0.18120751699320273,0.18136745301879248,0.18152738904438226,0.181687325069972,0.18184726109556176,0.18200719712115154,0.1821671331467413,0.18232706917233107,0.18248700519792083,0.1826469412235106,0.18280687724910036,0.18296681327469014,0.1831267493002799,0.18328668532586964,0.18344662135145942,0.18360655737704917,0.18376649340263895,0.1839264294282287,0.18408636545381848,0.18424630147940824,0.184406237504998,0.18456617353058777,0.18472610955617752,0.1848860455817673,0.18504598160735705,0.18520591763294683,0.18536585365853658,0.18552578968412636,0.18568572570971612,0.18584566173530587,0.18600559776089565,0.1861655337864854,0.18632546981207518,0.18648540583766493,0.1866453418632547,0.18680527788884446,0.18696521391443421,0.187125149940024,0.18728508596561375,0.18744502199120353,0.18760495801679328,0.18776489404238306,0.1879248300679728,0.1880847660935626,0.18824470211915234,0.1884046381447421,0.18856457417033187,0.18872451019592162,0.1888844462215114,0.18904438224710116,0.18920431827269094,0.1893642542982807,0.18952419032387044,0.18968412634946022,0.18984406237504997,0.19000399840063975,0.1901639344262295,0.19032387045181928,0.19048380647740903,0.19064374250299881,0.19080367852858857,0.19096361455417832,0.1911235505797681,0.19128348660535785,0.19144342263094763,0.19160335865653738,0.19176329468212716,0.1919232307077169,0.19208316673330667,0.19224310275889644,0.1924030387844862,0.19256297481007598,0.19272291083566573,0.1928828468612555,0.19304278288684526,0.19320271891243504,0.1933626549380248,0.19352259096361454,0.19368252698920432,0.19384246301479408,0.19400239904038385,0.1941623350659736,0.1943222710915634,0.19448220711715314,0.1946421431427429,0.19480207916833267,0.19496201519392242,0.1951219512195122,0.19528188724510195,0.19544182327069173,0.19560175929628149,0.19576169532187127,0.19592163134746102,0.19608156737305077,0.19624150339864055,0.1964014394242303,0.19656137544982008,0.19672131147540983,0.1968812475009996,0.19704118352658936,0.19720111955217912,0.1973610555777689,0.19752099160335865,0.19768092762894843,0.19784086365453818,0.19800079968012796,0.1981607357057177,0.1983206717313075,0.19848060775689724,0.198640543782487,0.19880047980807677,0.19896041583366653,0.1991203518592563,0.19928028788484606,0.19944022391043584,0.1996001599360256,0.19976009596161534,0.19992003198720512,0.20007996801279487,0.20023990403838465,0.2003998400639744,0.20055977608956418,0.20071971211515394,0.20087964814074372,0.20103958416633347,0.20119952019192322,0.201359456217513,0.20151939224310275,0.20167932826869253,0.20183926429428228,0.20199920031987206,0.20215913634546182,0.20231907237105157,0.20247900839664135,0.2026389444222311,0.20279888044782088,0.20295881647341063,0.2031187524990004,0.20327868852459016,0.20343862455017994,0.2035985605757697,0.20375849660135945,0.20391843262694923,0.20407836865253898,0.20423830467812876,0.2043982407037185,0.2045581767293083,0.20471811275489804,0.2048780487804878,0.20503798480607757,0.20519792083166732,0.2053578568572571,0.20551779288284686,0.20567772890843664,0.2058376649340264,0.20599760095961617,0.20615753698520592,0.20631747301079567,0.20647740903638545,0.2066373450619752,0.20679728108756498,0.20695721711315473,0.20711715313874451,0.20727708916433427,0.20743702518992402,0.2075969612155138,0.20775689724110355,0.20791683326669333,0.20807676929228308,0.20823670531787286,0.2083966413434626,0.2085565773690524,0.20871651339464214,0.2088764494202319,0.20903638544582168,0.20919632147141143,0.2093562574970012,0.20951619352259096,0.20967612954818074,0.2098360655737705,0.20999600159936024,0.21015593762495002,0.21031587365053978,0.21047580967612955,0.2106357457017193,0.2107956817273091,0.21095561775289884,0.21111555377848862,0.21127548980407837,0.21143542582966812,0.2115953618552579,0.21175529788084765,0.21191523390643743,0.21207516993202719,0.21223510595761697,0.21239504198320672,0.21255497800879647,0.21271491403438625,0.212874850059976,0.21303478608556578,0.21319472211115553,0.2133546581367453,0.21351459416233506,0.21367453018792484,0.2138344662135146,0.21399440223910435,0.21415433826469413,0.21431427429028388,0.21447421031587366,0.2146341463414634,0.2147940823670532,0.21495401839264294,0.2151139544182327,0.21527389044382247,0.21543382646941223,0.215593762495002,0.21575369852059176,0.21591363454618154,0.2160735705717713,0.21623350659736107,0.21639344262295082,0.21655337864854057,0.21671331467413035,0.2168732506997201,0.21703318672530988,0.21719312275089964,0.21735305877648942,0.21751299480207917,0.21767293082766892,0.2178328668532587,0.21799280287884845,0.21815273890443823,0.21831267493002798,0.21847261095561776,0.21863254698120752,0.2187924830067973,0.21895241903238705,0.2191123550579768,0.21927229108356658,0.21943222710915633,0.2195921631347461,0.21975209916033586,0.21991203518592564,0.2200719712115154,0.22023190723710515,0.22039184326269493,0.22055177928828468,0.22071171531387446,0.2208716513394642,0.221031587365054,0.22119152339064374,0.22135145941623352,0.22151139544182327,0.22167133146741302,0.2218312674930028,0.22199120351859256,0.22215113954418234,0.2223110755697721,0.22247101159536187,0.22263094762095162,0.22279088364654137,0.22295081967213115,0.2231107556977209,0.22327069172331068,0.22343062774890043,0.22359056377449021,0.22375049980007997,0.22391043582566975,0.2240703718512595,0.22423030787684925,0.22439024390243903,0.22455017992802878,0.22471011595361856,0.2248700519792083,0.2250299880047981,0.22518992403038784,0.2253498600559776,0.22550979608156738,0.22566973210715713,0.2258296681327469,0.22598960415833666,0.22614954018392644,0.2263094762095162,0.22646941223510597,0.22662934826069572,0.22678928428628548,0.22694922031187525,0.227109156337465,0.2272690923630548,0.22742902838864454,0.22758896441423432,0.22774890043982407,0.22790883646541382,0.2280687724910036,0.22822870851659335,0.22838864454218313,0.22854858056777289,0.22870851659336267,0.22886845261895242,0.2290283886445422,0.22918832467013195,0.2293482606957217,0.22950819672131148,0.22966813274690123,0.229828068772491,0.22998800479808076,0.23014794082367054,0.2303078768492603,0.23046781287485005,0.23062774890043983,0.23078768492602958,0.23094762095161936,0.2311075569772091,0.2312674930027989,0.23142742902838864,0.23158736505397842,0.23174730107956817,0.23190723710515793,0.2320671731307477,0.23222710915633746,0.23238704518192724,0.232546981207517,0.23270691723310677,0.23286685325869652,0.23302678928428627,0.23318672530987605,0.2333466613354658,0.23350659736105558,0.23366653338664534,0.23382646941223512,0.23398640543782487,0.23414634146341465,0.2343062774890044,0.23446621351459415,0.23462614954018393,0.23478608556577368,0.23494602159136346,0.23510595761695322,0.235265893642543,0.23542582966813275,0.2355857656937225,0.23574570171931228,0.23590563774490203,0.2360655737704918,0.23622550979608156,0.23638544582167134,0.2365453818472611,0.23670531787285087,0.23686525389844063,0.23702518992403038,0.23718512594962016,0.2373450619752099,0.2375049980007997,0.23766493402638944,0.23782487005197922,0.23798480607756897,0.23814474210315872,0.2383046781287485,0.23846461415433826,0.23862455017992804,0.2387844862055178,0.23894442223110757,0.23910435825669732,0.2392642942822871,0.23942423030787685,0.2395841663334666,0.23974410235905638,0.23990403838464613,0.24006397441023591,0.24022391043582567,0.24038384646141545,0.2405437824870052,0.24070371851259495,0.24086365453818473,0.24102359056377448,0.24118352658936426,0.241343462614954,0.2415033986405438,0.24166333466613354,0.24182327069172332,0.24198320671731308,0.24214314274290283,0.2423030787684926,0.24246301479408236,0.24262295081967214,0.2427828868452619,0.24294282287085167,0.24310275889644142,0.24326269492203118,0.24342263094762095,0.2435825669732107,0.2437425029988005,0.24390243902439024,0.24406237504998002,0.24422231107556977,0.24438224710115955,0.2445421831267493,0.24470211915233905,0.24486205517792883,0.24502199120351859,0.24518192722910837,0.24534186325469812,0.2455017992802879,0.24566173530587765,0.2458216713314674,0.24598160735705718,0.24614154338264693,0.2463014794082367,0.24646141543382646,0.24662135145941624,0.246781287485006,0.24694122351059578,0.24710115953618553,0.24726109556177528,0.24742103158736506,0.2475809676129548,0.2477409036385446,0.24790083966413434,0.24806077568972412,0.24822071171531387,0.24838064774090363,0.2485405837664934,0.24870051979208316,0.24886045581767294,0.2490203918432627,0.24918032786885247,0.24934026389444222,0.249500199920032,0.24966013594562175,0.2498200719712115,0.24998000799680128,0.25013994402239104,0.2502998800479808,0.2504598160735706,0.2506197520991603,0.2507796881247501,0.2509396241503399,0.2510995601759296,0.2512594962015194,0.25141943222710916,0.25157936825269894,0.25173930427828867,0.25189924030387845,0.2520591763294682,0.25221911235505795,0.25237904838064773,0.2525389844062375,0.2526989204318273,0.252858856457417,0.2530187924830068,0.2531787285085966,0.25333866453418635,0.2534986005597761,0.25365853658536586,0.25381847261095564,0.25397840863654536,0.25413834466213514,0.2542982806877249,0.2544582167133147,0.2546181527389044,0.2547780887644942,0.254938024790084,0.2550979608156737,0.2552578968412635,0.25541783286685327,0.25557776889244305,0.25573770491803277,0.25589764094362255,0.25605757696921233,0.25621751299480205,0.25637744902039183,0.2565373850459816,0.2566973210715714,0.2568572570971611,0.2570171931227509,0.2571771291483407,0.2573370651739304,0.2574970011995202,0.25765693722510996,0.25781687325069974,0.25797680927628946,0.25813674530187924,0.258296681327469,0.2584566173530588,0.25861655337864853,0.2587764894042383,0.2589364254298281,0.2590963614554178,0.2592562974810076,0.25941623350659737,0.25957616953218715,0.2597361055577769,0.25989604158336665,0.26005597760895643,0.26021591363454616,0.26037584966013594,0.2605357856857257,0.2606957217113155,0.2608556577369052,0.261015593762495,0.2611755297880848,0.2613354658136745,0.2614954018392643,0.26165533786485407,0.26181527389044384,0.26197520991603357,0.26213514594162335,0.26229508196721313,0.26245501799280285,0.26261495401839263,0.2627748900439824,0.2629348260695722,0.2630947620951619,0.2632546981207517,0.2634146341463415,0.26357457017193126,0.263734506197521,0.26389444222311076,0.26405437824870054,0.26421431427429026,0.26437425029988004,0.2645341863254698,0.2646941223510596,0.2648540583766493,0.2650139944022391,0.2651739304278289,0.2653338664534186,0.2654938024790084,0.26565373850459817,0.26581367453018795,0.2659736105557777,0.26613354658136745,0.26629348260695723,0.26645341863254696,0.26661335465813674,0.2667732906837265,0.2669332267093163,0.267093162734906,0.2672530987604958,0.2674130347860856,0.2675729708116753,0.2677329068372651,0.26789284286285486,0.26805277888844464,0.26821271491403437,0.26837265093962415,0.2685325869652139,0.2686925229908037,0.26885245901639343,0.2690123950419832,0.269172331067573,0.2693322670931627,0.2694922031187525,0.2696521391443423,0.26981207516993205,0.2699720111955218,0.27013194722111156,0.27029188324670134,0.27045181927229106,0.27061175529788084,0.2707716913234706,0.2709316273490604,0.2710915633746501,0.2712514994002399,0.2714114354258297,0.2715713714514194,0.2717313074770092,0.27189124350259897,0.27205117952818875,0.27221111555377847,0.27237105157936825,0.27253098760495803,0.27269092363054775,0.27285085965613753,0.2730107956817273,0.2731707317073171,0.2733306677329068,0.2734906037584966,0.2736505397840864,0.27381047580967616,0.2739704118352659,0.27413034786085566,0.27429028388644544,0.27445021991203516,0.27461015593762494,0.2747700919632147,0.2749300279888045,0.27508996401439423,0.275249900039984,0.2754098360655738,0.2755697720911635,0.2757297081167533,0.27588964414234307,0.27604958016793285,0.2762095161935226,0.27636945221911235,0.27652938824470213,0.27668932427029186,0.27684926029588164,0.2770091963214714,0.2771691323470612,0.2773290683726509,0.2774890043982407,0.2776489404238305,0.2778088764494202,0.27796881247501,0.27812874850059977,0.27828868452618954,0.27844862055177927,0.27860855657736905,0.27876849260295883,0.2789284286285486,0.27908836465413833,0.2792483006797281,0.2794082367053179,0.2795681727309076,0.2797281087564974,0.2798880447820872,0.28004798080767696,0.2802079168332667,0.28036785285885646,0.28052778888444624,0.28068772491003596,0.28084766093562574,0.2810075969612155,0.2811675329868053,0.281327469012395,0.2814874050379848,0.2816473410635746,0.2818072770891643,0.2819672131147541,0.28212714914034387,0.28228708516593365,0.2824470211915234,0.28260695721711315,0.28276689324270293,0.28292682926829266,0.28308676529388244,0.2832467013194722,0.283406637345062,0.2835665733706517,0.2837265093962415,0.2838864454218313,0.28404638144742106,0.2842063174730108,0.28436625349860056,0.28452618952419034,0.28468612554978007,0.28484606157536985,0.2850059976009596,0.2851659336265494,0.28532586965213913,0.2854858056777289,0.2856457417033187,0.2858056777289084,0.2859656137544982,0.286125549780088,0.28628548580567775,0.2864454218312675,0.28660535785685726,0.28676529388244704,0.28692522990803676,0.28708516593362654,0.2872451019592163,0.2874050379848061,0.2875649740103958,0.2877249100359856,0.2878848460615754,0.2880447820871651,0.2882047181127549,0.28836465413834467,0.28852459016393445,0.28868452618952417,0.28884446221511395,0.28900439824070373,0.2891643342662935,0.28932427029188323,0.289484206317473,0.2896441423430628,0.2898040783686525,0.2899640143942423,0.2901239504198321,0.29028388644542186,0.2904438224710116,0.29060375849660136,0.29076369452219114,0.29092363054778086,0.29108356657337064,0.2912435025989604,0.2914034386245502,0.29156337465013993,0.2917233106757297,0.2918832467013195,0.2920431827269092,0.292203118752499,0.29236305477808877,0.29252299080367855,0.2926829268292683,0.29284286285485805,0.29300279888044783,0.29316273490603756,0.29332267093162734,0.2934826069572171,0.2936425429828069,0.2938024790083966,0.2939624150339864,0.2941223510595762,0.29428228708516596,0.2944422231107557,0.29460215913634547,0.29476209516193524,0.29492203118752497,0.29508196721311475,0.29524190323870453,0.2954018392642943,0.29556177528988403,0.2957217113154738,0.2958816473410636,0.2960415833666533,0.2962015193922431,0.2963614554178329,0.29652139144342265,0.2966813274690124,0.29684126349460216,0.29700119952019194,0.29716113554578166,0.29732107157137144,0.2974810075969612,0.297640943622551,0.2978008796481407,0.2979608156737305,0.2981207516993203,0.29828068772491,0.2984406237504998,0.29860055977608957,0.29876049580167935,0.2989204318272691,0.29908036785285885,0.29924030387844863,0.2994002399040384,0.29956017592962814,0.2997201119552179,0.2998800479808077,0.3000399840063974,0.3001999200319872,0.300359856057577,0.30051979208316676,0.3006797281087565,0.30083966413434626,0.30099960015993604,0.30115953618552577,0.30131947221111555,0.3014794082367053,0.3016393442622951,0.30179928028788483,0.3019592163134746,0.3021191523390644,0.3022790883646541,0.3024390243902439,0.3025989604158337,0.30275889644142345,0.3029188324670132,0.30307876849260296,0.30323870451819274,0.30339864054378246,0.30355857656937224,0.303718512594962,0.3038784486205518,0.3040383846461415,0.3041983206717313,0.3043582566973211,0.30451819272291086,0.3046781287485006,0.30483806477409037,0.30499800079968015,0.30515793682526987,0.30531787285085965,0.30547780887644943,0.3056377449020392,0.30579768092762893,0.3059576169532187,0.3061175529788085,0.3062774890043982,0.306437425029988,0.3065973610555778,0.30675729708116756,0.3069172331067573,0.30707716913234706,0.30723710515793684,0.30739704118352656,0.30755697720911634,0.3077169132347061,0.3078768492602959,0.30803678528588563,0.3081967213114754,0.3083566573370652,0.3085165933626549,0.3086765293882447,0.30883646541383447,0.30899640143942425,0.309156337465014,0.30931627349060375,0.30947620951619353,0.3096361455417833,0.30979608156737304,0.3099560175929628,0.3101159536185526,0.3102758896441423,0.3104358256697321,0.3105957616953219,0.31075569772091166,0.3109156337465014,0.31107556977209116,0.31123550579768094,0.31139544182327067,0.31155537784886045,0.31171531387445023,0.31187524990004,0.31203518592562973,0.3121951219512195,0.3123550579768093,0.312514994002399,0.3126749300279888,0.3128348660535786,0.31299480207916835,0.3131547381047581,0.31331467413034786,0.31347461015593764,0.31363454618152736,0.31379448220711714,0.3139544182327069,0.3141143542582967,0.3142742902838864,0.3144342263094762,0.314594162335066,0.31475409836065577,0.3149140343862455,0.31507397041183527,0.31523390643742505,0.3153938424630148,0.31555377848860455,0.31571371451419433,0.3158736505397841,0.31603358656537384,0.3161935225909636,0.3163534586165534,0.3165133946421431,0.3166733306677329,0.3168332666933227,0.31699320271891246,0.3171531387445022,0.31731307477009196,0.31747301079568174,0.31763294682127147,0.31779288284686125,0.317952818872451,0.3181127548980408,0.31827269092363053,0.3184326269492203,0.3185925629748101,0.3187524990003998,0.3189124350259896,0.3190723710515794,0.31923230707716915,0.3193922431027589,0.31955217912834866,0.31971211515393844,0.3198720511795282,0.32003198720511794,0.3201919232307077,0.3203518592562975,0.3205117952818872,0.320671731307477,0.3208316673330668,0.32099160335865656,0.3211515393842463,0.32131147540983607,0.32147141143542585,0.32163134746101557,0.32179128348660535,0.32195121951219513,0.3221111555377849,0.32227109156337463,0.3224310275889644,0.3225909636145542,0.3227508996401439,0.3229108356657337,0.3230707716913235,0.32323070771691326,0.323390643742503,0.32355057976809276,0.32371051579368254,0.32387045181927226,0.32403038784486204,0.3241903238704518,0.3243502598960416,0.32451019592163133,0.3246701319472211,0.3248300679728109,0.32499000399840067,0.3251499400239904,0.32530987604958017,0.32546981207516995,0.3256297481007597,0.32578968412634945,0.32594962015193923,0.326109556177529,0.32626949220311874,0.3264294282287085,0.3265893642542983,0.326749300279888,0.3269092363054778,0.3270691723310676,0.32722910835665736,0.3273890443822471,0.32754898040783686,0.32770891643342664,0.32786885245901637,0.32802878848460615,0.32818872451019593,0.3283486605357857,0.32850859656137543,0.3286685325869652,0.328828468612555,0.3289884046381447,0.3291483406637345,0.3293082766893243,0.32946821271491405,0.3296281487405038,0.32978808476609356,0.32994802079168334,0.3301079568172731,0.33026789284286284,0.3304278288684526,0.3305877648940424,0.3307477009196321,0.3309076369452219,0.3310675729708117,0.33122750899640147,0.3313874450219912,0.33154738104758097,0.33170731707317075,0.3318672530987605,0.33202718912435025,0.33218712514994003,0.3323470611755298,0.33250699720111954,0.3326669332267093,0.3328268692522991,0.3329868052778888,0.3331467413034786,0.3333066773290684,0.33346661335465816,0.3336265493802479,0.33378648540583766,0.33394642143142744,0.33410635745701717,0.33426629348260695,0.3344262295081967,0.3345861655337865,0.33474610155937623,0.334906037584966,0.3350659736105558,0.33522590963614557,0.3353858456617353,0.3355457816873251,0.33570571771291485,0.3358656537385046,0.33602558976409436,0.33618552578968414,0.3363454618152739,0.33650539784086364,0.3366653338664534,0.3368252698920432,0.3369852059176329,0.3371451419432227,0.3373050779688125,0.33746501399440226,0.337624950019992,0.33778488604558177,0.33794482207117155,0.33810475809676127,0.33826469412235105,0.33842463014794083,0.3385845661735306,0.33874450219912033,0.3389044382247101,0.3390643742502999,0.3392243102758896,0.3393842463014794,0.3395441823270692,0.33970411835265896,0.3398640543782487,0.34002399040383846,0.34018392642942824,0.340343862455018,0.34050379848060774,0.3406637345061975,0.3408236705317873,0.34098360655737703,0.3411435425829668,0.3413034786085566,0.34146341463414637,0.3416233506597361,0.34178328668532587,0.34194322271091565,0.3421031587365054,0.34226309476209515,0.34242303078768493,0.3425829668132747,0.34274290283886444,0.3429028388644542,0.343062774890044,0.3432227109156337,0.3433826469412235,0.3435425829668133,0.34370251899240306,0.3438624550179928,0.34402239104358256,0.34418232706917234,0.34434226309476207,0.34450219912035185,0.34466213514594163,0.3448220711715314,0.34498200719712113,0.3451419432227109,0.3453018792483007,0.34546181527389047,0.3456217512994802,0.34578168732507,0.34594162335065975,0.3461015593762495,0.34626149540183926,0.34642143142742904,0.3465813674530188,0.34674130347860854,0.3469012395041983,0.3470611755297881,0.3472211115553778,0.3473810475809676,0.3475409836065574,0.34770091963214717,0.3478608556577369,0.34802079168332667,0.34818072770891645,0.3483406637345062,0.34850059976009595,0.34866053578568573,0.3488204718112755,0.34898040783686524,0.349140343862455,0.3493002798880448,0.3494602159136345,0.3496201519392243,0.3497800879648141,0.34994002399040386,0.3500999600159936,0.35025989604158336,0.35041983206717314,0.3505797680927629,0.35073970411835265,0.3508996401439424,0.3510595761695322,0.35121951219512193,0.3513794482207117,0.3515393842463015,0.35169932027189127,0.351859256297481,0.3520191923230708,0.35217912834866055,0.3523390643742503,0.35249900039984006,0.35265893642542984,0.3528188724510196,0.35297880847660934,0.3531387445021991,0.3532986805277889,0.3534586165533786,0.3536185525789684,0.3537784886045582,0.35393842463014796,0.3540983606557377,0.35425829668132747,0.35441823270691725,0.35457816873250697,0.35473810475809675,0.35489804078368653,0.3550579768092763,0.35521791283486603,0.3553778488604558,0.3555377848860456,0.3556977209116354,0.3558576569372251,0.3560175929628149,0.35617752898840466,0.3563374650139944,0.35649740103958416,0.35665733706517394,0.3568172730907637,0.35697720911635344,0.3571371451419432,0.357297081167533,0.35745701719312273,0.3576169532187125,0.3577768892443023,0.35793682526989207,0.3580967612954818,0.35825669732107157,0.35841663334666135,0.3585765693722511,0.35873650539784085,0.35889644142343063,0.3590563774490204,0.35921631347461014,0.3593762495001999,0.3595361855257897,0.3596961215513794,0.3598560575769692,0.360015993602559,0.36017592962814876,0.3603358656537385,0.36049580167932826,0.36065573770491804,0.3608156737305078,0.36097560975609755,0.36113554578168733,0.3612954818072771,0.36145541783286683,0.3616153538584566,0.3617752898840464,0.36193522590963617,0.3620951619352259,0.3622550979608157,0.36241503398640545,0.3625749700119952,0.36273490603758496,0.36289484206317474,0.3630547780887645,0.36321471411435424,0.363374650139944,0.3635345861655338,0.3636945221911235,0.3638544582167133,0.3640143942423031,0.36417433026789287,0.3643342662934826,0.36449420231907237,0.36465413834466215,0.3648140743702519,0.36497401039584165,0.36513394642143143,0.3652938824470212,0.36545381847261094,0.3656137544982007,0.3657736905237905,0.3659336265493803,0.36609356257497,0.3662534986005598,0.36641343462614956,0.3665733706517393,0.36673330667732906,0.36689324270291884,0.3670531787285086,0.36721311475409835,0.3673730507796881,0.3675329868052779,0.36769292283086763,0.3678528588564574,0.3680127948820472,0.36817273090763697,0.3683326669332267,0.3684926029588165,0.36865253898440625,0.368812475009996,0.36897241103558576,0.36913234706117554,0.3692922830867653,0.36945221911235504,0.3696121551379448,0.3697720911635346,0.3699320271891243,0.3700919632147141,0.3702518992403039,0.37041183526589366,0.3705717712914834,0.37073170731707317,0.37089164334266295,0.3710515793682527,0.37121151539384245,0.37137145141943223,0.371531387445022,0.37169132347061173,0.3718512594962015,0.3720111955217913,0.3721711315473811,0.3723310675729708,0.3724910035985606,0.37265093962415036,0.3728108756497401,0.37297081167532986,0.37313074770091964,0.3732906837265094,0.37345061975209914,0.3736105557776889,0.3737704918032787,0.37393042782886843,0.3740903638544582,0.374250299880048,0.37441023590563777,0.3745701719312275,0.37473010795681727,0.37489004398240705,0.3750499800079968,0.37520991603358655,0.37536985205917633,0.3755297880847661,0.37568972411035584,0.3758496601359456,0.3760095961615354,0.3761695321871252,0.3763294682127149,0.3764894042383047,0.37664934026389446,0.3768092762894842,0.37696921231507396,0.37712914834066374,0.3772890843662535,0.37744902039184325,0.37760895641743303,0.3777688924430228,0.37792882846861253,0.3780887644942023,0.3782487005197921,0.37840863654538187,0.3785685725709716,0.3787285085965614,0.37888844462215115,0.3790483806477409,0.37920831667333066,0.37936825269892044,0.3795281887245102,0.37968812475009994,0.3798480607756897,0.3800079968012795,0.3801679328268692,0.380327868852459,0.3804878048780488,0.38064774090363857,0.3808076769292283,0.38096761295481807,0.38112754898040785,0.38128748500599763,0.38144742103158735,0.38160735705717713,0.3817672930827669,0.38192722910835664,0.3820871651339464,0.3822471011595362,0.382407037185126,0.3825669732107157,0.3827269092363055,0.38288684526189526,0.383046781287485,0.38320671731307476,0.38336665333866454,0.3835265893642543,0.38368652538984405,0.3838464614154338,0.3840063974410236,0.38416633346661333,0.3843262694922031,0.3844862055177929,0.38464614154338267,0.3848060775689724,0.3849660135945622,0.38512594962015195,0.3852858856457417,0.38544582167133146,0.38560575769692124,0.385765693722511,0.38592562974810074,0.3860855657736905,0.3862455017992803,0.3864054378248701,0.3865653738504598,0.3867253098760496,0.38688524590163936,0.3870451819272291,0.38720511795281887,0.38736505397840865,0.3875249900039984,0.38768492602958815,0.38784486205517793,0.3880047980807677,0.38816473410635743,0.3883246701319472,0.388484606157537,0.3886445421831268,0.3888044782087165,0.3889644142343063,0.38912435025989606,0.3892842862854858,0.38944422231107556,0.38960415833666534,0.3897640943622551,0.38992403038784484,0.3900839664134346,0.3902439024390244,0.39040383846461413,0.3905637744902039,0.3907237105157937,0.39088364654138347,0.3910435825669732,0.39120351859256297,0.39136345461815275,0.39152339064374253,0.39168332666933225,0.39184326269492203,0.3920031987205118,0.39216313474610154,0.3923230707716913,0.3924830067972811,0.3926429428228709,0.3928028788484606,0.3929628148740504,0.39312275089964016,0.3932826869252299,0.39344262295081966,0.39360255897640944,0.3937624950019992,0.39392243102758895,0.39408236705317873,0.3942423030787685,0.39440223910435823,0.394562175129948,0.3947221111555378,0.39488204718112757,0.3950419832067173,0.3952019192323071,0.39536185525789685,0.3955217912834866,0.39568172730907636,0.39584166333466614,0.3960015993602559,0.39616153538584564,0.3963214714114354,0.3964814074370252,0.396641343462615,0.3968012794882047,0.3969612155137945,0.39712115153938427,0.397281087564974,0.39744102359056377,0.39760095961615355,0.39776089564174333,0.39792083166733305,0.39808076769292283,0.3982407037185126,0.39840063974410234,0.3985605757696921,0.3987205117952819,0.3988804478208717,0.3990403838464614,0.3992003198720512,0.39936025589764096,0.3995201919232307,0.39968012794882046,0.39984006397441024,0.4,0.40015993602558975,0.4003198720511795,0.4004798080767693,0.40063974410235903,0.4007996801279488,0.4009596161535386,0.40111955217912837,0.4012794882047181,0.4014394242303079,0.40159936025589765,0.40175929628148743,0.40191923230707716,0.40207916833266694,0.4022391043582567,0.40239904038384644,0.4025589764094362,0.402718912435026,0.4028788484606158,0.4030387844862055,0.4031987205117953,0.40335865653738506,0.4035185925629748,0.40367852858856457,0.40383846461415435,0.4039984006397441,0.40415833666533385,0.40431827269092363,0.4044782087165134,0.40463814474210313,0.4047980807676929,0.4049580167932827,0.4051179528188725,0.4052778888444622,0.405437824870052,0.40559776089564176,0.4057576969212315,0.40591763294682126,0.40607756897241104,0.4062375049980008,0.40639744102359054,0.4065573770491803,0.4067173130747701,0.4068772491003599,0.4070371851259496,0.4071971211515394,0.40735705717712917,0.4075169932027189,0.40767692922830867,0.40783686525389845,0.40799680127948823,0.40815673730507795,0.40831667333066773,0.4084766093562575,0.40863654538184724,0.408796481407437,0.4089564174330268,0.4091163534586166,0.4092762894842063,0.4094362255097961,0.40959616153538586,0.4097560975609756,0.40991603358656536,0.41007596961215514,0.4102359056377449,0.41039584166333465,0.41055577768892443,0.4107157137145142,0.41087564974010393,0.4110355857656937,0.4111955217912835,0.41135545781687327,0.411515393842463,0.4116753298680528,0.41183526589364255,0.41199520191923233,0.41215513794482206,0.41231507397041184,0.4124750099960016,0.41263494602159134,0.4127948820471811,0.4129548180727709,0.4131147540983607,0.4132746901239504,0.4134346261495402,0.41359456217512997,0.4137544982007197,0.41391443422630947,0.41407437025189925,0.41423430627748903,0.41439424230307875,0.41455417832866853,0.4147141143542583,0.41487405037984804,0.4150339864054378,0.4151939224310276,0.4153538584566174,0.4155137944822071,0.4156737305077969,0.41583366653338666,0.4159936025589764,0.41615353858456616,0.41631347461015594,0.4164734106357457,0.41663334666133545,0.4167932826869252,0.416953218712515,0.4171131547381048,0.4172730907636945,0.4174330267892843,0.41759296281487407,0.4177528988404638,0.4179128348660536,0.41807277089164335,0.41823270691723313,0.41839264294282286,0.41855257896841264,0.4187125149940024,0.41887245101959214,0.4190323870451819,0.4191923230707717,0.4193522590963615,0.4195121951219512,0.419672131147541,0.41983206717313076,0.4199920031987205,0.42015193922431027,0.42031187524990005,0.4204718112754898,0.42063174730107955,0.42079168332666933,0.4209516193522591,0.42111155537784883,0.4212714914034386,0.4214314274290284,0.4215913634546182,0.4217512994802079,0.4219112355057977,0.42207117153138746,0.42223110755697724,0.42239104358256696,0.42255097960815674,0.4227109156337465,0.42287085165933624,0.423030787684926,0.4231907237105158,0.4233506597361056,0.4235105957616953,0.4236705317872851,0.42383046781287487,0.4239904038384646,0.42415033986405437,0.42431027588964415,0.42447021191523393,0.42463014794082365,0.42479008396641343,0.4249500199920032,0.42510995601759294,0.4252698920431827,0.4254298280687725,0.4255897640943623,0.425749700119952,0.4259096361455418,0.42606957217113156,0.4262295081967213,0.42638944422231106,0.42654938024790084,0.4267093162734906,0.42686925229908035,0.42702918832467013,0.4271891243502599,0.4273490603758497,0.4275089964014394,0.4276689324270292,0.42782886845261897,0.4279888044782087,0.4281487405037985,0.42830867652938825,0.42846861255497803,0.42862854858056776,0.42878848460615754,0.4289484206317473,0.42910835665733704,0.4292682926829268,0.4294282287085166,0.4295881647341064,0.4297481007596961,0.4299080367852859,0.43006797281087566,0.4302279088364654,0.43038784486205517,0.43054778088764495,0.43070771691323473,0.43086765293882445,0.43102758896441423,0.431187524990004,0.43134746101559374,0.4315073970411835,0.4316673330667733,0.4318272690923631,0.4319872051179528,0.4321471411435426,0.43230707716913236,0.43246701319472214,0.43262694922031186,0.43278688524590164,0.4329468212714914,0.43310675729708115,0.4332666933226709,0.4334266293482607,0.4335865653738505,0.4337465013994402,0.43390643742503,0.43406637345061977,0.4342263094762095,0.4343862455017993,0.43454618152738905,0.43470611755297883,0.43486605357856856,0.43502598960415834,0.4351859256297481,0.43534586165533784,0.4355057976809276,0.4356657337065174,0.4358256697321072,0.4359856057576969,0.4361455417832867,0.43630547780887646,0.4364654138344662,0.43662534986005597,0.43678528588564575,0.4369452219112355,0.43710515793682525,0.43726509396241503,0.4374250299880048,0.4375849660135946,0.4377449020391843,0.4379048380647741,0.4380647740903639,0.4382247101159536,0.4383846461415434,0.43854458216713316,0.43870451819272294,0.43886445421831266,0.43902439024390244,0.4391843262694922,0.43934426229508194,0.4395041983206717,0.4396641343462615,0.4398240703718513,0.439984006397441,0.4401439424230308,0.44030387844862057,0.4404638144742103,0.44062375049980007,0.44078368652538985,0.44094362255097963,0.44110355857656935,0.44126349460215913,0.4414234306277489,0.44158336665333864,0.4417433026789284,0.4419032387045182,0.442063174730108,0.4422231107556977,0.4423830467812875,0.44254298280687726,0.44270291883246704,0.44286285485805676,0.44302279088364654,0.4431827269092363,0.44334266293482605,0.44350259896041583,0.4436625349860056,0.4438224710115954,0.4439824070371851,0.4441423430627749,0.44430227908836467,0.4444622151139544,0.4446221511395442,0.44478208716513395,0.44494202319072373,0.44510195921631346,0.44526189524190324,0.445421831267493,0.44558176729308274,0.4457417033186725,0.4459016393442623,0.4460615753698521,0.4462215113954418,0.4463814474210316,0.44654138344662136,0.4467013194722111,0.44686125549780087,0.44702119152339065,0.44718112754898043,0.44734106357457015,0.44750099960015993,0.4476609356257497,0.4478208716513395,0.4479808076769292,0.448140743702519,0.4483006797281088,0.4484606157536985,0.4486205517792883,0.44878048780487806,0.44894042383046784,0.44910035985605756,0.44926029588164734,0.4494202319072371,0.44958016793282685,0.4497401039584166,0.4499000399840064,0.4500599760095962,0.4502199120351859,0.4503798480607757,0.45053978408636547,0.4506997201119552,0.450859656137545,0.45101959216313475,0.45117952818872453,0.45133946421431426,0.45149940023990404,0.4516593362654938,0.45181927229108354,0.4519792083166733,0.4521391443422631,0.4522990803678529,0.4524590163934426,0.4526189524190324,0.45277888844462216,0.45293882447021194,0.45309876049580167,0.45325869652139145,0.4534186325469812,0.45357856857257095,0.45373850459816073,0.4538984406237505,0.4540583766493403,0.45421831267493,0.4543782487005198,0.4545381847261096,0.4546981207516993,0.4548580567772891,0.45501799280287886,0.45517792882846864,0.45533786485405836,0.45549780087964814,0.4556577369052379,0.45581767293082764,0.4559776089564174,0.4561375449820072,0.456297481007597,0.4564574170331867,0.4566173530587765,0.45677728908436627,0.456937225109956,0.45709716113554577,0.45725709716113555,0.45741703318672533,0.45757696921231505,0.45773690523790483,0.4578968412634946,0.4580567772890844,0.4582167133146741,0.4583766493402639,0.4585365853658537,0.4586965213914434,0.4588564574170332,0.45901639344262296,0.45917632946821274,0.45933626549380246,0.45949620151939224,0.459656137544982,0.45981607357057175,0.45997600959616153,0.4601359456217513,0.4602958816473411,0.4604558176729308,0.4606157536985206,0.46077568972411037,0.4609356257497001,0.4610955617752899,0.46125549780087965,0.46141543382646943,0.46157536985205916,0.46173530587764894,0.4618952419032387,0.46205517792882844,0.4622151139544182,0.462375049980008,0.4625349860055978,0.4626949220311875,0.4628548580567773,0.46301479408236706,0.46317473010795684,0.46333466613354657,0.46349460215913635,0.46365453818472613,0.46381447421031585,0.46397441023590563,0.4641343462614954,0.4642942822870852,0.4644542183126749,0.4646141543382647,0.4647740903638545,0.4649340263894442,0.465093962415034,0.46525389844062376,0.46541383446621354,0.46557377049180326,0.46573370651739304,0.4658936425429828,0.46605357856857255,0.4662135145941623,0.4663734506197521,0.4665333866453419,0.4666933226709316,0.4668532586965214,0.46701319472211117,0.4671731307477009,0.4673330667732907,0.46749300279888045,0.46765293882447023,0.46781287485005996,0.46797281087564974,0.4681327469012395,0.4682926829268293,0.468452618952419,0.4686125549780088,0.4687724910035986,0.4689324270291883,0.4690923630547781,0.46925229908036786,0.46941223510595764,0.46957217113154737,0.46973210715713715,0.4698920431827269,0.47005197920831665,0.47021191523390643,0.4703718512594962,0.470531787285086,0.4706917233106757,0.4708516593362655,0.4710115953618553,0.471171531387445,0.4713314674130348,0.47149140343862456,0.47165133946421434,0.47181127548980406,0.47197121151539384,0.4721311475409836,0.47229108356657334,0.4724510195921631,0.4726109556177529,0.4727708916433427,0.4729308276689324,0.4730907636945222,0.47325069972011197,0.47341063574570175,0.47357057177129147,0.47373050779688125,0.47389044382247103,0.47405037984806075,0.47421031587365053,0.4743702518992403,0.4745301879248301,0.4746901239504198,0.4748500599760096,0.4750099960015994,0.4751699320271891,0.4753298680527789,0.47548980407836866,0.47564974010395844,0.47580967612954816,0.47596961215513794,0.4761295481807277,0.47628948420631745,0.47644942023190723,0.476609356257497,0.4767692922830868,0.4769292283086765,0.4770891643342663,0.47724910035985607,0.4774090363854458,0.4775689724110356,0.47772890843662535,0.47788884446221513,0.47804878048780486,0.47820871651339464,0.4783686525389844,0.4785285885645742,0.4786885245901639,0.4788484606157537,0.4790083966413435,0.4791683326669332,0.479328268692523,0.47948820471811276,0.47964814074370254,0.47980807676929227,0.47996801279488205,0.48012794882047183,0.48028788484606155,0.48044782087165133,0.4806077568972411,0.4807676929228309,0.4809276289484206,0.4810875649740104,0.4812475009996002,0.4814074370251899,0.4815673730507797,0.48172730907636946,0.48188724510195924,0.48204718112754896,0.48220711715313874,0.4823670531787285,0.48252698920431825,0.482686925229908,0.4828468612554978,0.4830067972810876,0.4831667333066773,0.4833266693322671,0.48348660535785687,0.48364654138344665,0.4838064774090364,0.48396641343462615,0.48412634946021593,0.48428628548580566,0.48444622151139544,0.4846061575369852,0.484766093562575,0.4849260295881647,0.4850859656137545,0.4852459016393443,0.485405837664934,0.4855657736905238,0.48572570971611356,0.48588564574170334,0.48604558176729307,0.48620551779288285,0.4863654538184726,0.48652538984406235,0.48668532586965213,0.4868452618952419,0.4870051979208317,0.4871651339464214,0.4873250699720112,0.487485005997601,0.4876449420231907,0.4878048780487805,0.48796481407437026,0.48812475009996004,0.48828468612554976,0.48844462215113954,0.4886045581767293,0.4887644942023191,0.4889244302279088,0.4890843662534986,0.4892443022790884,0.4894042383046781,0.4895641743302679,0.48972411035585767,0.48988404638144745,0.49004398240703717,0.49020391843262695,0.49036385445821673,0.49052379048380645,0.49068372650939623,0.490843662534986,0.4910035985605758,0.4911635345861655,0.4913234706117553,0.4914834066373451,0.4916433426629348,0.4918032786885246,0.49196321471411436,0.49212315073970414,0.49228308676529386,0.49244302279088364,0.4926029588164734,0.49276289484206315,0.49292283086765293,0.4930827668932427,0.4932427029188325,0.4934026389444222,0.493562574970012,0.49372251099560177,0.49388244702119155,0.4940423830467813,0.49420231907237105,0.49436225509796083,0.49452219112355056,0.49468212714914034,0.4948420631747301,0.4950019992003199,0.4951619352259096,0.4953218712514994,0.4954818072770892,0.4956417433026789,0.4958016793282687,0.49596161535385846,0.49612155137944824,0.49628148740503797,0.49644142343062775,0.49660135945621753,0.49676129548180725,0.49692123150739703,0.4970811675329868,0.4972411035585766,0.4974010395841663,0.4975609756097561,0.4977209116353459,0.4978808476609356,0.4980407836865254,0.49820071971211516,0.49836065573770494,0.49852059176329466,0.49868052778888444,0.4988404638144742,0.499000399840064,0.4991603358656537,0.4993202718912435,0.4994802079168333,0.499640143942423,0.4998000799680128,0.49996001599360257,0.5001199520191923,0.5002798880447821,0.5004398240703718,0.5005997600959616,0.5007596961215514,0.5009196321471412,0.5010795681727309,0.5012395041983206,0.5013994402239105,0.5015593762495002,0.5017193122750899,0.5018792483006798,0.5020391843262695,0.5021991203518592,0.502359056377449,0.5025189924030388,0.5026789284286286,0.5028388644542183,0.502998800479808,0.5031587365053979,0.5033186725309876,0.5034786085565773,0.5036385445821672,0.5037984806077569,0.5039584166333466,0.5041183526589365,0.5042782886845262,0.5044382247101159,0.5045981607357057,0.5047580967612955,0.5049180327868853,0.505077968812475,0.5052379048380647,0.5053978408636546,0.5055577768892443,0.505717712914834,0.5058776489404239,0.5060375849660136,0.5061975209916033,0.5063574570171931,0.5065173930427829,0.5066773290683727,0.5068372650939624,0.5069972011195522,0.507157137145142,0.5073170731707317,0.5074770091963214,0.5076369452219113,0.507796881247501,0.5079568172730907,0.5081167532986806,0.5082766893242703,0.50843662534986,0.5085965613754498,0.5087564974010396,0.5089164334266294,0.5090763694522191,0.5092363054778088,0.5093962415033987,0.5095561775289884,0.5097161135545781,0.509876049580168,0.5100359856057577,0.5101959216313474,0.5103558576569373,0.510515793682527,0.5106757297081167,0.5108356657337065,0.5109956017592963,0.5111555377848861,0.5113154738104758,0.5114754098360655,0.5116353458616554,0.5117952818872451,0.5119552179128348,0.5121151539384247,0.5122750899640144,0.5124350259896041,0.512594962015194,0.5127548980407837,0.5129148340663735,0.5130747700919632,0.513234706117553,0.5133946421431428,0.5135545781687325,0.5137145141943222,0.5138744502199121,0.5140343862455018,0.5141943222710915,0.5143542582966814,0.5145141943222711,0.5146741303478608,0.5148340663734506,0.5149940023990404,0.5151539384246302,0.5153138744502199,0.5154738104758096,0.5156337465013995,0.5157936825269892,0.5159536185525789,0.5161135545781688,0.5162734906037585,0.5164334266293482,0.516593362654938,0.5167532986805278,0.5169132347061176,0.5170731707317073,0.5172331067572971,0.5173930427828869,0.5175529788084766,0.5177129148340663,0.5178728508596562,0.5180327868852459,0.5181927229108356,0.5183526589364255,0.5185125949620152,0.5186725309876049,0.5188324670131947,0.5189924030387845,0.5191523390643743,0.519312275089964,0.5194722111155538,0.5196321471411436,0.5197920831667333,0.519952019192323,0.5201119552179129,0.5202718912435026,0.5204318272690923,0.5205917632946822,0.5207516993202719,0.5209116353458616,0.5210715713714514,0.5212315073970412,0.521391443422631,0.5215513794482207,0.5217113154738104,0.5218712514994003,0.52203118752499,0.5221911235505797,0.5223510595761696,0.5225109956017593,0.522670931627349,0.5228308676529388,0.5229908036785286,0.5231507397041184,0.5233106757297081,0.5234706117552979,0.5236305477808877,0.5237904838064774,0.5239504198320671,0.524110355857657,0.5242702918832467,0.5244302279088364,0.5245901639344263,0.524750099960016,0.5249100359856057,0.5250699720111955,0.5252299080367853,0.5253898440623751,0.5255497800879648,0.5257097161135545,0.5258696521391444,0.5260295881647341,0.5261895241903238,0.5263494602159137,0.5265093962415034,0.5266693322670931,0.526829268292683,0.5269892043182727,0.5271491403438625,0.5273090763694522,0.527469012395042,0.5276289484206318,0.5277888844462215,0.5279488204718112,0.5281087564974011,0.5282686925229908,0.5284286285485805,0.5285885645741704,0.5287485005997601,0.5289084366253498,0.5290683726509396,0.5292283086765294,0.5293882447021192,0.5295481807277089,0.5297081167532987,0.5298680527788885,0.5300279888044782,0.5301879248300679,0.5303478608556578,0.5305077968812475,0.5306677329068372,0.530827668932427,0.5309876049580168,0.5311475409836065,0.5313074770091963,0.5314674130347861,0.5316273490603759,0.5317872850859656,0.5319472211115553,0.5321071571371452,0.5322670931627349,0.5324270291883246,0.5325869652139145,0.5327469012395042,0.5329068372650939,0.5330667732906837,0.5332267093162735,0.5333866453418633,0.533546581367453,0.5337065173930428,0.5338664534186326,0.5340263894442223,0.534186325469812,0.5343462614954019,0.5345061975209916,0.5346661335465813,0.5348260695721712,0.5349860055977609,0.5351459416233506,0.5353058776489404,0.5354658136745302,0.53562574970012,0.5357856857257097,0.5359456217512995,0.5361055577768893,0.536265493802479,0.5364254298280687,0.5365853658536586,0.5367453018792483,0.536905237904838,0.5370651739304279,0.5372251099560176,0.5373850459816074,0.5375449820071971,0.5377049180327869,0.5378648540583767,0.5380247900839664,0.5381847261095561,0.538344662135146,0.5385045981607357,0.5386645341863254,0.5388244702119153,0.538984406237505,0.5391443422630947,0.5393042782886845,0.5394642143142743,0.5396241503398641,0.5397840863654538,0.5399440223910436,0.5401039584166334,0.5402638944422231,0.5404238304678128,0.5405837664934027,0.5407437025189924,0.5409036385445821,0.541063574570172,0.5412235105957617,0.5413834466213514,0.5415433826469412,0.541703318672531,0.5418632546981208,0.5420231907237105,0.5421831267493002,0.5423430627748901,0.5425029988004798,0.5426629348260695,0.5428228708516594,0.5429828068772491,0.5431427429028388,0.5433026789284287,0.5434626149540184,0.5436225509796082,0.5437824870051979,0.5439424230307877,0.5441023590563775,0.5442622950819672,0.5444222311075569,0.5445821671331468,0.5447421031587365,0.5449020391843262,0.5450619752099161,0.5452219112355058,0.5453818472610955,0.5455417832866853,0.5457017193122751,0.5458616553378649,0.5460215913634546,0.5461815273890444,0.5463414634146342,0.5465013994402239,0.5466613354658136,0.5468212714914035,0.5469812075169932,0.5471411435425829,0.5473010795681728,0.5474610155937625,0.5476209516193523,0.547780887644942,0.5479408236705318,0.5481007596961216,0.5482606957217113,0.548420631747301,0.5485805677728909,0.5487405037984806,0.5489004398240703,0.5490603758496602,0.5492203118752499,0.5493802479008396,0.5495401839264294,0.5497001199520192,0.549860055977609,0.5500199920031987,0.5501799280287885,0.5503398640543783,0.550499800079968,0.5506597361055577,0.5508196721311476,0.5509796081567373,0.551139544182327,0.5512994802079169,0.5514594162335066,0.5516193522590963,0.5517792882846861,0.5519392243102759,0.5520991603358657,0.5522590963614554,0.5524190323870452,0.552578968412635,0.5527389044382247,0.5528988404638144,0.5530587764894043,0.553218712514994,0.5533786485405837,0.5535385845661736,0.5536985205917633,0.5538584566173531,0.5540183926429428,0.5541783286685326,0.5543382646941224,0.5544982007197121,0.5546581367453018,0.5548180727708917,0.5549780087964814,0.5551379448220711,0.555297880847661,0.5554578168732507,0.5556177528988404,0.5557776889244302,0.55593762495002,0.5560975609756098,0.5562574970011995,0.5564174330267893,0.5565773690523791,0.5567373050779688,0.5568972411035585,0.5570571771291484,0.5572171131547381,0.5573770491803278,0.5575369852059177,0.5576969212315074,0.5578568572570972,0.5580167932826869,0.5581767293082767,0.5583366653338665,0.5584966013594562,0.558656537385046,0.5588164734106358,0.5589764094362255,0.5591363454618152,0.5592962814874051,0.5594562175129948,0.5596161535385845,0.5597760895641744,0.5599360255897641,0.5600959616153539,0.5602558976409436,0.5604158336665334,0.5605757696921232,0.5607357057177129,0.5608956417433026,0.5610555777688925,0.5612155137944822,0.5613754498200719,0.5615353858456618,0.5616953218712515,0.5618552578968412,0.562015193922431,0.5621751299480208,0.5623350659736106,0.5624950019992003,0.56265493802479,0.5628148740503799,0.5629748100759696,0.5631347461015593,0.5632946821271492,0.5634546181527389,0.5636145541783286,0.5637744902039185,0.5639344262295082,0.564094362255098,0.5642542982806877,0.5644142343062775,0.5645741703318673,0.564734106357457,0.5648940423830467,0.5650539784086366,0.5652139144342263,0.565373850459816,0.5655337864854059,0.5656937225109956,0.5658536585365853,0.5660135945621751,0.5661735305877649,0.5663334666133547,0.5664934026389444,0.5666533386645342,0.566813274690124,0.5669732107157137,0.5671331467413034,0.5672930827668933,0.567453018792483,0.5676129548180727,0.5677728908436626,0.5679328268692523,0.5680927628948421,0.5682526989204318,0.5684126349460216,0.5685725709716114,0.5687325069972011,0.5688924430227909,0.5690523790483807,0.5692123150739704,0.5693722510995601,0.56953218712515,0.5696921231507397,0.5698520591763294,0.5700119952019193,0.570171931227509,0.5703318672530988,0.5704918032786885,0.5706517393042783,0.5708116753298681,0.5709716113554578,0.5711315473810475,0.5712914834066374,0.5714514194322271,0.5716113554578168,0.5717712914834067,0.5719312275089964,0.5720911635345861,0.572251099560176,0.5724110355857657,0.5725709716113555,0.5727309076369452,0.572890843662535,0.5730507796881248,0.5732107157137145,0.5733706517393042,0.5735305877648941,0.5736905237904838,0.5738504598160735,0.5740103958416634,0.5741703318672531,0.5743302678928429,0.5744902039184326,0.5746501399440224,0.5748100759696122,0.5749700119952019,0.5751299480207916,0.5752898840463815,0.5754498200719712,0.5756097560975609,0.5757696921231508,0.5759296281487405,0.5760895641743302,0.57624950019992,0.5764094362255098,0.5765693722510996,0.5767293082766893,0.5768892443022791,0.5770491803278689,0.5772091163534586,0.5773690523790483,0.5775289884046382,0.5776889244302279,0.5778488604558176,0.5780087964814075,0.5781687325069972,0.578328668532587,0.5784886045581767,0.5786485405837665,0.5788084766093563,0.578968412634946,0.5791283486605358,0.5792882846861256,0.5794482207117153,0.579608156737305,0.5797680927628949,0.5799280287884846,0.5800879648140743,0.5802479008396642,0.5804078368652539,0.5805677728908437,0.5807277089164334,0.5808876449420232,0.581047580967613,0.5812075169932027,0.5813674530187924,0.5815273890443823,0.581687325069972,0.5818472610955617,0.5820071971211516,0.5821671331467413,0.582327069172331,0.5824870051979208,0.5826469412235106,0.5828068772491004,0.5829668132746901,0.5831267493002799,0.5832866853258697,0.5834466213514594,0.5836065573770491,0.583766493402639,0.5839264294282287,0.5840863654538184,0.5842463014794083,0.584406237504998,0.5845661735305878,0.5847261095561775,0.5848860455817673,0.5850459816073571,0.5852059176329468,0.5853658536585366,0.5855257896841264,0.5856857257097161,0.5858456617353058,0.5860055977608957,0.5861655337864854,0.5863254698120751,0.586485405837665,0.5866453418632547,0.5868052778888445,0.5869652139144342,0.587125149940024,0.5872850859656138,0.5874450219912035,0.5876049580167932,0.5877648940423831,0.5879248300679728,0.5880847660935625,0.5882447021191524,0.5884046381447421,0.5885645741703319,0.5887245101959216,0.5888844462215114,0.5890443822471012,0.5892043182726909,0.5893642542982807,0.5895241903238705,0.5896841263494602,0.5898440623750499,0.5900039984006398,0.5901639344262295,0.5903238704518192,0.5904838064774091,0.5906437425029988,0.5908036785285886,0.5909636145541783,0.5911235505797681,0.5912834866053579,0.5914434226309476,0.5916033586565373,0.5917632946821272,0.5919232307077169,0.5920831667333066,0.5922431027588965,0.5924030387844862,0.5925629748100759,0.5927229108356658,0.5928828468612555,0.5930427828868453,0.593202718912435,0.5933626549380248,0.5935225909636146,0.5936825269892043,0.593842463014794,0.5940023990403839,0.5941623350659736,0.5943222710915633,0.5944822071171532,0.5946421431427429,0.5948020791683327,0.5949620151939224,0.5951219512195122,0.595281887245102,0.5954418232706917,0.5956017592962815,0.5957616953218713,0.595921631347461,0.5960815673730507,0.5962415033986406,0.5964014394242303,0.59656137544982,0.5967213114754099,0.5968812475009996,0.5970411835265894,0.5972011195521791,0.5973610555777689,0.5975209916033587,0.5976809276289484,0.5978408636545381,0.598000799680128,0.5981607357057177,0.5983206717313074,0.5984806077568973,0.598640543782487,0.5988004798080768,0.5989604158336665,0.5991203518592563,0.5992802878848461,0.5994402239104358,0.5996001599360256,0.5997600959616154,0.5999200319872051,0.6000799680127948,0.6002399040383847,0.6003998400639744,0.6005597760895641,0.600719712115154,0.6008796481407437,0.6010395841663335,0.6011995201919232,0.601359456217513,0.6015193922431028,0.6016793282686925,0.6018392642942823,0.6019992003198721,0.6021591363454618,0.6023190723710515,0.6024790083966414,0.6026389444222311,0.6027988804478208,0.6029588164734107,0.6031187524990004,0.6032786885245902,0.6034386245501799,0.6035985605757697,0.6037584966013595,0.6039184326269492,0.6040783686525389,0.6042383046781288,0.6043982407037185,0.6045581767293082,0.6047181127548981,0.6048780487804878,0.6050379848060776,0.6051979208316673,0.6053578568572571,0.6055177928828469,0.6056777289084366,0.6058376649340264,0.6059976009596162,0.6061575369852059,0.6063174730107956,0.6064774090363855,0.6066373450619752,0.6067972810875649,0.6069572171131548,0.6071171531387445,0.6072770891643343,0.607437025189924,0.6075969612155138,0.6077568972411036,0.6079168332666933,0.608076769292283,0.6082367053178729,0.6083966413434626,0.6085565773690523,0.6087165133946422,0.6088764494202319,0.6090363854458217,0.6091963214714115,0.6093562574970012,0.609516193522591,0.6096761295481807,0.6098360655737705,0.6099960015993603,0.61015593762495,0.6103158736505397,0.6104758096761296,0.6106357457017193,0.610795681727309,0.6109556177528989,0.6111155537784886,0.6112754898040784,0.6114354258296681,0.6115953618552579,0.6117552978808477,0.6119152339064374,0.6120751699320272,0.612235105957617,0.6123950419832067,0.6125549780087964,0.6127149140343863,0.612874850059976,0.6130347860855657,0.6131947221111556,0.6133546581367453,0.6135145941623351,0.6136745301879248,0.6138344662135146,0.6139944022391044,0.6141543382646941,0.6143142742902838,0.6144742103158737,0.6146341463414634,0.6147940823670531,0.614954018392643,0.6151139544182327,0.6152738904438225,0.6154338264694122,0.615593762495002,0.6157536985205918,0.6159136345461815,0.6160735705717713,0.6162335065973611,0.6163934426229508,0.6165533786485405,0.6167133146741304,0.6168732506997201,0.6170331867253098,0.6171931227508997,0.6173530587764894,0.6175129948020792,0.6176729308276689,0.6178328668532587,0.6179928028788485,0.6181527389044382,0.618312674930028,0.6184726109556178,0.6186325469812075,0.6187924830067972,0.6189524190323871,0.6191123550579768,0.6192722910835666,0.6194322271091564,0.6195921631347461,0.6197520991603359,0.6199120351859256,0.6200719712115154,0.6202319072371052,0.6203918432626949,0.6205517792882846,0.6207117153138745,0.6208716513394642,0.6210315873650539,0.6211915233906438,0.6213514594162335,0.6215113954418233,0.621671331467413,0.6218312674930028,0.6219912035185926,0.6221511395441823,0.622311075569772,0.6224710115953619,0.6226309476209516,0.6227908836465413,0.6229508196721312,0.6231107556977209,0.6232706917233106,0.6234306277489005,0.6235905637744902,0.62375049980008,0.6239104358256697,0.6240703718512595,0.6242303078768493,0.624390243902439,0.6245501799280287,0.6247101159536186,0.6248700519792083,0.625029988004798,0.6251899240303879,0.6253498600559776,0.6255097960815674,0.6256697321071572,0.6258296681327469,0.6259896041583367,0.6261495401839264,0.6263094762095162,0.626469412235106,0.6266293482606957,0.6267892842862854,0.6269492203118753,0.627109156337465,0.6272690923630547,0.6274290283886446,0.6275889644142343,0.6277489004398241,0.6279088364654138,0.6280687724910036,0.6282287085165934,0.6283886445421831,0.6285485805677729,0.6287085165933627,0.6288684526189524,0.6290283886445421,0.629188324670132,0.6293482606957217,0.6295081967213115,0.6296681327469013,0.629828068772491,0.6299880047980808,0.6301479408236705,0.6303078768492603,0.6304678128748501,0.6306277489004398,0.6307876849260295,0.6309476209516194,0.6311075569772091,0.6312674930027988,0.6314274290283887,0.6315873650539784,0.6317473010795682,0.631907237105158,0.6320671731307477,0.6322271091563375,0.6323870451819272,0.632546981207517,0.6327069172331068,0.6328668532586965,0.6330267892842862,0.6331867253098761,0.6333466613354658,0.6335065973610555,0.6336665333866454,0.6338264694122351,0.6339864054378249,0.6341463414634146,0.6343062774890044,0.6344662135145942,0.6346261495401839,0.6347860855657737,0.6349460215913635,0.6351059576169532,0.6352658936425429,0.6354258296681328,0.6355857656937225,0.6357457017193123,0.635905637744902,0.6360655737704918,0.6362255097960816,0.6363854458216713,0.6365453818472611,0.6367053178728509,0.6368652538984406,0.6370251899240303,0.6371851259496202,0.6373450619752099,0.6375049980007996,0.6376649340263895,0.6378248700519792,0.637984806077569,0.6381447421031587,0.6383046781287485,0.6384646141543383,0.638624550179928,0.6387844862055178,0.6389444222311076,0.6391043582566973,0.639264294282287,0.6394242303078769,0.6395841663334666,0.6397441023590564,0.6399040383846462,0.6400639744102359,0.6402239104358257,0.6403838464614154,0.6405437824870052,0.640703718512595,0.6408636545381847,0.6410235905637744,0.6411835265893643,0.641343462614954,0.6415033986405437,0.6416633346661336,0.6418232706917233,0.6419832067173131,0.6421431427429029,0.6423030787684926,0.6424630147940824,0.6426229508196721,0.6427828868452619,0.6429428228708517,0.6431027588964414,0.6432626949220311,0.643422630947621,0.6435825669732107,0.6437425029988004,0.6439024390243903,0.64406237504998,0.6442223110755698,0.6443822471011595,0.6445421831267493,0.6447021191523391,0.6448620551779288,0.6450219912035186,0.6451819272291084,0.6453418632546981,0.6455017992802878,0.6456617353058777,0.6458216713314674,0.6459816073570572,0.646141543382647,0.6463014794082367,0.6464614154338265,0.6466213514594162,0.646781287485006,0.6469412235105958,0.6471011595361855,0.6472610955617752,0.6474210315873651,0.6475809676129548,0.6477409036385445,0.6479008396641344,0.6480607756897241,0.6482207117153139,0.6483806477409036,0.6485405837664934,0.6487005197920832,0.6488604558176729,0.6490203918432627,0.6491803278688525,0.6493402638944422,0.6495001999200319,0.6496601359456218,0.6498200719712115,0.6499800079968013,0.6501399440223911,0.6502998800479808,0.6504598160735706,0.6506197520991603,0.6507796881247501,0.6509396241503399,0.6510995601759296,0.6512594962015194,0.6514194322271092,0.6515793682526989,0.6517393042782886,0.6518992403038785,0.6520591763294682,0.652219112355058,0.6523790483806478,0.6525389844062375,0.6526989204318273,0.652858856457417,0.6530187924830068,0.6531787285085966,0.6533386645341863,0.653498600559776,0.6536585365853659,0.6538184726109556,0.6539784086365453,0.6541383446621352,0.6542982806877249,0.6544582167133147,0.6546181527389044,0.6547780887644942,0.654938024790084,0.6550979608156737,0.6552578968412635,0.6554178328668533,0.655577768892443,0.6557377049180327,0.6558976409436226,0.6560575769692123,0.6562175129948021,0.6563774490203919,0.6565373850459816,0.6566973210715714,0.6568572570971611,0.6570171931227509,0.6571771291483407,0.6573370651739304,0.6574970011995201,0.65765693722511,0.6578168732506997,0.6579768092762894,0.6581367453018793,0.658296681327469,0.6584566173530588,0.6586165533786486,0.6587764894042383,0.6589364254298281,0.6590963614554178,0.6592562974810076,0.6594162335065974,0.6595761695321871,0.6597361055577768,0.6598960415833667,0.6600559776089564,0.6602159136345462,0.660375849660136,0.6605357856857257,0.6606957217113155,0.6608556577369052,0.661015593762495,0.6611755297880848,0.6613354658136745,0.6614954018392643,0.6616553378648541,0.6618152738904438,0.6619752099160335,0.6621351459416234,0.6622950819672131,0.6624550179928029,0.6626149540183927,0.6627748900439824,0.6629348260695722,0.6630947620951619,0.6632546981207517,0.6634146341463415,0.6635745701719312,0.663734506197521,0.6638944422231108,0.6640543782487005,0.6642143142742902,0.6643742502998801,0.6645341863254698,0.6646941223510596,0.6648540583766493,0.6650139944022391,0.6651739304278289,0.6653338664534186,0.6654938024790084,0.6656537385045982,0.6658136745301879,0.6659736105557776,0.6661335465813675,0.6662934826069572,0.666453418632547,0.6666133546581368,0.6667732906837265,0.6669332267093163,0.667093162734906,0.6672530987604958,0.6674130347860856,0.6675729708116753,0.667732906837265,0.6678928428628549,0.6680527788884446,0.6682127149140343,0.6683726509396242,0.6685325869652139,0.6686925229908037,0.6688524590163935,0.6690123950419832,0.669172331067573,0.6693322670931627,0.6694922031187525,0.6696521391443423,0.669812075169932,0.6699720111955217,0.6701319472211116,0.6702918832467013,0.6704518192722911,0.6706117552978809,0.6707716913234706,0.6709316273490604,0.6710915633746501,0.6712514994002399,0.6714114354258297,0.6715713714514194,0.6717313074770092,0.671891243502599,0.6720511795281887,0.6722111155537784,0.6723710515793683,0.672530987604958,0.6726909236305478,0.6728508596561376,0.6730107956817273,0.6731707317073171,0.6733306677329068,0.6734906037584966,0.6736505397840864,0.6738104758096761,0.6739704118352658,0.6741303478608557,0.6742902838864454,0.6744502199120351,0.674610155937625,0.6747700919632147,0.6749300279888045,0.6750899640143943,0.675249900039984,0.6754098360655738,0.6755697720911635,0.6757297081167533,0.6758896441423431,0.6760495801679328,0.6762095161935225,0.6763694522191124,0.6765293882447021,0.6766893242702919,0.6768492602958817,0.6770091963214714,0.6771691323470612,0.6773290683726509,0.6774890043982407,0.6776489404238305,0.6778088764494202,0.67796881247501,0.6781287485005998,0.6782886845261895,0.6784486205517792,0.6786085565773691,0.6787684926029588,0.6789284286285486,0.6790883646541384,0.6792483006797281,0.6794082367053179,0.6795681727309076,0.6797281087564974,0.6798880447820872,0.6800479808076769,0.6802079168332666,0.6803678528588565,0.6805277888844462,0.680687724910036,0.6808476609356258,0.6810075969612155,0.6811675329868053,0.681327469012395,0.6814874050379848,0.6816473410635746,0.6818072770891643,0.6819672131147541,0.6821271491403439,0.6822870851659336,0.6824470211915233,0.6826069572171132,0.6827668932427029,0.6829268292682927,0.6830867652938825,0.6832467013194722,0.683406637345062,0.6835665733706517,0.6837265093962415,0.6838864454218313,0.684046381447421,0.6842063174730107,0.6843662534986006,0.6845261895241903,0.68468612554978,0.6848460615753699,0.6850059976009596,0.6851659336265494,0.6853258696521392,0.6854858056777289,0.6856457417033187,0.6858056777289084,0.6859656137544982,0.686125549780088,0.6862854858056777,0.6864454218312674,0.6866053578568573,0.686765293882447,0.6869252299080368,0.6870851659336266,0.6872451019592163,0.6874050379848061,0.6875649740103958,0.6877249100359856,0.6878848460615754,0.6880447820871651,0.6882047181127549,0.6883646541383447,0.6885245901639344,0.6886845261895241,0.688844462215114,0.6890043982407037,0.6891643342662935,0.6893242702918833,0.689484206317473,0.6896441423430628,0.6898040783686525,0.6899640143942423,0.6901239504198321,0.6902838864454218,0.6904438224710115,0.6906037584966014,0.6907636945221911,0.6909236305477809,0.6910835665733707,0.6912435025989604,0.6914034386245502,0.69156337465014,0.6917233106757297,0.6918832467013195,0.6920431827269092,0.692203118752499,0.6923630547780888,0.6925229908036785,0.6926829268292682,0.6928428628548581,0.6930027988804478,0.6931627349060376,0.6933226709316274,0.6934826069572171,0.6936425429828069,0.6938024790083966,0.6939624150339864,0.6941223510595762,0.6942822870851659,0.6944422231107557,0.6946021591363455,0.6947620951619352,0.6949220311875249,0.6950819672131148,0.6952419032387045,0.6954018392642943,0.695561775289884,0.6957217113154738,0.6958816473410636,0.6960415833666533,0.6962015193922431,0.6963614554178329,0.6965213914434226,0.6966813274690123,0.6968412634946022,0.6970011995201919,0.6971611355457817,0.6973210715713715,0.6974810075969612,0.697640943622551,0.6978008796481407,0.6979608156737305,0.6981207516993203,0.69828068772491,0.6984406237504998,0.6986005597760896,0.6987604958016793,0.698920431827269,0.6990803678528589,0.6992403038784486,0.6994002399040384,0.6995601759296282,0.6997201119552179,0.6998800479808077,0.7000399840063974,0.7001999200319872,0.700359856057577,0.7005197920831667,0.7006797281087564,0.7008396641343463,0.700999600159936,0.7011595361855258,0.7013194722111156,0.7014794082367053,0.7016393442622951,0.7017992802878849,0.7019592163134746,0.7021191523390644,0.7022790883646541,0.7024390243902439,0.7025989604158337,0.7027588964414234,0.7029188324670131,0.703078768492603,0.7032387045181927,0.7033986405437825,0.7035585765693723,0.703718512594962,0.7038784486205518,0.7040383846461415,0.7041983206717313,0.7043582566973211,0.7045181927229108,0.7046781287485006,0.7048380647740904,0.7049980007996801,0.7051579368252698,0.7053178728508597,0.7054778088764494,0.7056377449020392,0.705797680927629,0.7059576169532187,0.7061175529788085,0.7062774890043982,0.706437425029988,0.7065973610555778,0.7067572970811675,0.7069172331067572,0.7070771691323471,0.7072371051579368,0.7073970411835266,0.7075569772091164,0.7077169132347061,0.7078768492602959,0.7080367852858857,0.7081967213114754,0.7083566573370652,0.7085165933626549,0.7086765293882447,0.7088364654138345,0.7089964014394242,0.7091563374650139,0.7093162734906038,0.7094762095161935,0.7096361455417833,0.7097960815673731,0.7099560175929628,0.7101159536185526,0.7102758896441423,0.7104358256697321,0.7105957616953219,0.7107556977209116,0.7109156337465014,0.7110755697720912,0.7112355057976809,0.7113954418232707,0.7115553778488605,0.7117153138744502,0.71187524990004,0.7120351859256298,0.7121951219512195,0.7123550579768093,0.712514994002399,0.7126749300279888,0.7128348660535786,0.7129948020791683,0.713154738104758,0.7133146741303479,0.7134746101559376,0.7136345461815274,0.7137944822071172,0.7139544182327069,0.7141143542582967,0.7142742902838864,0.7144342263094762,0.714594162335066,0.7147540983606557,0.7149140343862455,0.7150739704118353,0.715233906437425,0.7153938424630147,0.7155537784886046,0.7157137145141943,0.7158736505397841,0.7160335865653739,0.7161935225909636,0.7163534586165534,0.7165133946421431,0.7166733306677329,0.7168332666933227,0.7169932027189124,0.7171531387445021,0.717313074770092,0.7174730107956817,0.7176329468212715,0.7177928828468613,0.717952818872451,0.7181127548980408,0.7182726909236306,0.7184326269492203,0.7185925629748101,0.7187524990003998,0.7189124350259896,0.7190723710515794,0.7192323070771691,0.7193922431027588,0.7195521791283487,0.7197121151539384,0.7198720511795282,0.720031987205118,0.7201919232307077,0.7203518592562975,0.7205117952818872,0.720671731307477,0.7208316673330668,0.7209916033586565,0.7211515393842463,0.7213114754098361,0.7214714114354258,0.7216313474610156,0.7217912834866054,0.7219512195121951,0.7221111555377849,0.7222710915633747,0.7224310275889644,0.7225909636145542,0.7227508996401439,0.7229108356657337,0.7230707716913235,0.7232307077169132,0.723390643742503,0.7235505797680928,0.7237105157936825,0.7238704518192723,0.7240303878448621,0.7241903238704518,0.7243502598960416,0.7245101959216314,0.7246701319472211,0.7248300679728109,0.7249900039984006,0.7251499400239904,0.7253098760495802,0.7254698120751699,0.7256297481007596,0.7257896841263495,0.7259496201519392,0.726109556177529,0.7262694922031188,0.7264294282287085,0.7265893642542983,0.726749300279888,0.7269092363054778,0.7270691723310676,0.7272291083566573,0.727389044382247,0.7275489804078369,0.7277089164334266,0.7278688524590164,0.7280287884846062,0.7281887245101959,0.7283486605357857,0.7285085965613755,0.7286685325869652,0.728828468612555,0.7289884046381447,0.7291483406637345,0.7293082766893243,0.729468212714914,0.7296281487405037,0.7297880847660936,0.7299480207916833,0.7301079568172731,0.7302678928428629,0.7304278288684526,0.7305877648940424,0.7307477009196321,0.7309076369452219,0.7310675729708117,0.7312275089964014,0.7313874450219912,0.731547381047581,0.7317073170731707,0.7318672530987606,0.7320271891243503,0.73218712514994,0.7323470611755298,0.7325069972011196,0.7326669332267093,0.7328268692522991,0.7329868052778888,0.7331467413034786,0.7333066773290684,0.7334666133546581,0.7336265493802478,0.7337864854058377,0.7339464214314274,0.7341063574570172,0.734266293482607,0.7344262295081967,0.7345861655337865,0.7347461015593763,0.734906037584966,0.7350659736105558,0.7352259096361455,0.7353858456617353,0.7355457816873251,0.7357057177129148,0.7358656537385045,0.7360255897640944,0.7361855257896841,0.7363454618152739,0.7365053978408637,0.7366653338664534,0.7368252698920432,0.736985205917633,0.7371451419432227,0.7373050779688125,0.7374650139944022,0.737624950019992,0.7377848860455818,0.7379448220711715,0.7381047580967613,0.7382646941223511,0.7384246301479408,0.7385845661735306,0.7387445021991204,0.7389044382247101,0.7390643742502999,0.7392243102758896,0.7393842463014794,0.7395441823270692,0.7397041183526589,0.7398640543782486,0.7400239904038385,0.7401839264294282,0.740343862455018,0.7405037984806078,0.7406637345061975,0.7408236705317873,0.740983606557377,0.7411435425829668,0.7413034786085566,0.7414634146341463,0.7416233506597361,0.7417832866853259,0.7419432227109156,0.7421031587365055,0.7422630947620952,0.7424230307876849,0.7425829668132747,0.7427429028388645,0.7429028388644542,0.743062774890044,0.7432227109156337,0.7433826469412235,0.7435425829668133,0.743702518992403,0.7438624550179928,0.7440223910435826,0.7441823270691723,0.7443422630947621,0.7445021991203519,0.7446621351459416,0.7448220711715314,0.7449820071971212,0.7451419432227109,0.7453018792483007,0.7454618152738904,0.7456217512994802,0.74578168732507,0.7459416233506597,0.7461015593762494,0.7462614954018393,0.746421431427429,0.7465813674530188,0.7467413034786086,0.7469012395041983,0.7470611755297881,0.7472211115553778,0.7473810475809676,0.7475409836065574,0.7477009196321471,0.7478608556577369,0.7480207916833267,0.7481807277089164,0.7483406637345063,0.748500599760096,0.7486605357856857,0.7488204718112755,0.7489804078368653,0.749140343862455,0.7493002798880448,0.7494602159136345,0.7496201519392243,0.7497800879648141,0.7499400239904038,0.7500999600159935,0.7502598960415834,0.7504198320671731,0.750579768092763,0.7507397041183527,0.7508996401439424,0.7510595761695322,0.751219512195122,0.7513794482207117,0.7515393842463015,0.7516993202718912,0.751859256297481,0.7520191923230708,0.7521791283486605,0.7523390643742504,0.7524990003998401,0.7526589364254298,0.7528188724510196,0.7529788084766094,0.7531387445021991,0.7532986805277889,0.7534586165533786,0.7536185525789684,0.7537784886045582,0.7539384246301479,0.7540983606557377,0.7542582966813275,0.7544182327069172,0.754578168732507,0.7547381047580968,0.7548980407836865,0.7550579768092763,0.7552179128348661,0.7553778488604558,0.7555377848860456,0.7556977209116353,0.7558576569372251,0.7560175929628149,0.7561775289884046,0.7563374650139943,0.7564974010395842,0.7566573370651739,0.7568172730907637,0.7569772091163535,0.7571371451419432,0.757297081167533,0.7574570171931228,0.7576169532187125,0.7577768892443023,0.757936825269892,0.7580967612954818,0.7582566973210716,0.7584166333466613,0.7585765693722512,0.7587365053978409,0.7588964414234306,0.7590563774490204,0.7592163134746102,0.7593762495001999,0.7595361855257897,0.7596961215513794,0.7598560575769692,0.760015993602559,0.7601759296281487,0.7603358656537385,0.7604958016793283,0.760655737704918,0.7608156737305078,0.7609756097560976,0.7611355457816873,0.7612954818072771,0.7614554178328669,0.7616153538584566,0.7617752898840464,0.7619352259096361,0.7620951619352259,0.7622550979608157,0.7624150339864054,0.7625749700119953,0.762734906037585,0.7628948420631747,0.7630547780887645,0.7632147141143543,0.763374650139944,0.7635345861655338,0.7636945221911235,0.7638544582167133,0.7640143942423031,0.7641743302678928,0.7643342662934826,0.7644942023190724,0.7646541383446621,0.764814074370252,0.7649740103958417,0.7651339464214314,0.7652938824470212,0.765453818472611,0.7656137544982007,0.7657736905237905,0.7659336265493802,0.76609356257497,0.7662534986005598,0.7664134346261495,0.7665733706517392,0.7667333066773291,0.7668932427029188,0.7670531787285086,0.7672131147540984,0.7673730507796881,0.7675329868052779,0.7676929228308677,0.7678528588564574,0.7680127948820472,0.7681727309076369,0.7683326669332267,0.7684926029588165,0.7686525389844062,0.768812475009996,0.7689724110355858,0.7691323470611755,0.7692922830867653,0.7694522191123551,0.7696121551379448,0.7697720911635346,0.7699320271891243,0.7700919632147141,0.7702518992403039,0.7704118352658936,0.7705717712914834,0.7707317073170732,0.7708916433426629,0.7710515793682527,0.7712115153938425,0.7713714514194322,0.771531387445022,0.7716913234706118,0.7718512594962015,0.7720111955217913,0.772171131547381,0.7723310675729708,0.7724910035985606,0.7726509396241503,0.7728108756497402,0.7729708116753299,0.7731307477009196,0.7732906837265094,0.7734506197520992,0.7736105557776889,0.7737704918032787,0.7739304278288685,0.7740903638544582,0.774250299880048,0.7744102359056377,0.7745701719312275,0.7747301079568173,0.774890043982407,0.7750499800079969,0.7752099160335866,0.7753698520591763,0.7755297880847661,0.7756897241103559,0.7758496601359456,0.7760095961615354,0.7761695321871251,0.7763294682127149,0.7764894042383047,0.7766493402638944,0.7768092762894842,0.776969212315074,0.7771291483406637,0.7772890843662535,0.7774490203918433,0.777608956417433,0.7777688924430228,0.7779288284686126,0.7780887644942023,0.7782487005197921,0.7784086365453818,0.7785685725709716,0.7787285085965614,0.7788884446221511,0.779048380647741,0.7792083166733307,0.7793682526989204,0.7795281887245102,0.7796881247501,0.7798480607756897,0.7800079968012795,0.7801679328268692,0.780327868852459,0.7804878048780488,0.7806477409036385,0.7808076769292283,0.7809676129548181,0.7811275489804078,0.7812874850059977,0.7814474210315874,0.7816073570571771,0.7817672930827669,0.7819272291083567,0.7820871651339464,0.7822471011595362,0.7824070371851259,0.7825669732107157,0.7827269092363055,0.7828868452618952,0.7830467812874851,0.7832067173130748,0.7833666533386645,0.7835265893642543,0.7836865253898441,0.7838464614154338,0.7840063974410236,0.7841663334666134,0.7843262694922031,0.7844862055177929,0.7846461415433826,0.7848060775689724,0.7849660135945622,0.7851259496201519,0.7852858856457418,0.7854458216713315,0.7856057576969212,0.785765693722511,0.7859256297481008,0.7860855657736905,0.7862455017992803,0.78640543782487,0.7865653738504598,0.7867253098760496,0.7868852459016393,0.787045181927229,0.7872051179528189,0.7873650539784086,0.7875249900039984,0.7876849260295882,0.7878448620551779,0.7880047980807677,0.7881647341063575,0.7883246701319472,0.788484606157537,0.7886445421831267,0.7888044782087165,0.7889644142343063,0.789124350259896,0.7892842862854859,0.7894442223110756,0.7896041583366653,0.7897640943622551,0.7899240303878449,0.7900839664134346,0.7902439024390244,0.7904038384646142,0.7905637744902039,0.7907237105157937,0.7908836465413834,0.7910435825669732,0.791203518592563,0.7913634546181527,0.7915233906437426,0.7916833266693323,0.791843262694922,0.7920031987205118,0.7921631347461016,0.7923230707716913,0.7924830067972811,0.7926429428228708,0.7928028788484606,0.7929628148740504,0.7931227508996401,0.79328268692523,0.7934426229508197,0.7936025589764094,0.7937624950019992,0.793922431027589,0.7940823670531787,0.7942423030787685,0.7944022391043583,0.794562175129948,0.7947221111555378,0.7948820471811275,0.7950419832067173,0.7952019192323071,0.7953618552578968,0.7955217912834867,0.7956817273090764,0.7958416633346661,0.7960015993602559,0.7961615353858457,0.7963214714114354,0.7964814074370252,0.796641343462615,0.7968012794882047,0.7969612155137945,0.7971211515393842,0.797281087564974,0.7974410235905638,0.7976009596161535,0.7977608956417434,0.7979208316673331,0.7980807676929228,0.7982407037185126,0.7984006397441024,0.7985605757696921,0.7987205117952819,0.7988804478208716,0.7990403838464614,0.7992003198720512,0.7993602558976409,0.7995201919232308,0.7996801279488205,0.7998400639744102,0.8]} diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/subnormal.json b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/subnormal.json new file mode 100644 index 000000000000..a633b24a47d8 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/subnormal.json @@ -0,0 +1 @@ +{"expected":[5.00000000000003e-310,4.9990003998401e-310,4.99800079968014e-310,4.9970011995202e-310,4.99600159936024e-310,4.99500199920034e-310,4.9940023990404e-310,4.9930027988805e-310,4.99200319872054e-310,4.9910035985606e-310,4.99000399840064e-310,4.9890043982407e-310,4.98800479808075e-310,4.98700519792085e-310,4.9860055977609e-310,4.985005997601e-310,4.98400639744105e-310,4.9830067972811e-310,4.98200719712115e-310,4.9810075969612e-310,4.98000799680125e-310,4.97900839664135e-310,4.9780087964814e-310,4.9770091963215e-310,4.97600959616156e-310,4.9750099960016e-310,4.97401039584166e-310,4.9730107956817e-310,4.9720111955218e-310,4.97101159536186e-310,4.97001199520196e-310,4.969012395042e-310,4.96801279488207e-310,4.9670131947221e-310,4.96601359456217e-310,4.9650139944022e-310,4.9640143942423e-310,4.96301479408237e-310,4.96201519392247e-310,4.9610155937625e-310,4.96001599360257e-310,4.9590163934426e-310,4.9580167932827e-310,4.95701719312273e-310,4.95601759296283e-310,4.9550179928029e-310,4.954018392643e-310,4.95301879248303e-310,4.9520191923231e-310,4.95101959216313e-310,4.9500199920032e-310,4.9490203918433e-310,4.94802079168334e-310,4.94702119152344e-310,4.9460215913635e-310,4.94502199120354e-310,4.9440223910436e-310,4.94302279088364e-310,4.9420231907237e-310,4.9410235905638e-310,4.94002399040384e-310,4.93902439024394e-310,4.938024790084e-310,4.93702518992405e-310,4.9360255897641e-310,4.93502598960415e-310,4.9340263894442e-310,4.9330267892843e-310,4.93202718912435e-310,4.93102758896445e-310,4.9300279888045e-310,4.92902838864455e-310,4.9280287884846e-310,4.92702918832466e-310,4.9260295881647e-310,4.9250299880048e-310,4.9240303878449e-310,4.92303078768496e-310,4.922031187525e-310,4.92103158736506e-310,4.9200319872051e-310,4.91903238704516e-310,4.91803278688526e-310,4.9170331867253e-310,4.9160335865654e-310,4.91503398640547e-310,4.9140343862455e-310,4.91303478608557e-310,4.9120351859256e-310,4.91103558576567e-310,4.91003598560577e-310,4.9090363854458e-310,4.9080367852859e-310,4.90703718512597e-310,4.90603758496603e-310,4.9050379848061e-310,4.90403838464613e-310,4.9030387844862e-310,4.9020391843263e-310,4.90103958416633e-310,4.90003998400643e-310,4.8990403838465e-310,4.89804078368653e-310,4.8970411835266e-310,4.89604158336664e-310,4.89504198320674e-310,4.8940423830468e-310,4.8930427828869e-310,4.89204318272694e-310,4.891043582567e-310,4.89004398240704e-310,4.8890443822471e-310,4.88804478208714e-310,4.88704518192724e-310,4.8860455817673e-310,4.8850459816074e-310,4.88404638144745e-310,4.8830467812875e-310,4.88204718112755e-310,4.8810475809676e-310,4.88004798080765e-310,4.87904838064775e-310,4.8780487804878e-310,4.8770491803279e-310,4.87604958016795e-310,4.875049980008e-310,4.87405037984806e-310,4.8730507796881e-310,4.8720511795282e-310,4.87105157936826e-310,4.87005197920836e-310,4.8690523790484e-310,4.86805277888846e-310,4.8670531787285e-310,4.86605357856856e-310,4.8650539784086e-310,4.8640543782487e-310,4.86305477808877e-310,4.86205517792887e-310,4.8610555777689e-310,4.86005597760897e-310,4.859056377449e-310,4.85805677728907e-310,4.8570571771291e-310,4.8560575769692e-310,4.8550579768093e-310,4.8540583766494e-310,4.85305877648943e-310,4.8520591763295e-310,4.85105957616953e-310,4.8500599760096e-310,4.8490603758497e-310,4.84806077568973e-310,4.84706117552983e-310,4.8460615753699e-310,4.84506197520994e-310,4.84406237505e-310,4.84306277489004e-310,4.8420631747301e-310,4.8410635745702e-310,4.84006397441024e-310,4.83906437425034e-310,4.8380647740904e-310,4.83706517393044e-310,4.8360655737705e-310,4.83506597361055e-310,4.8340663734506e-310,4.8330667732907e-310,4.83206717313075e-310,4.83106757297085e-310,4.8300679728109e-310,4.82906837265095e-310,4.828068772491e-310,4.82706917233105e-310,4.8260695721711e-310,4.8250699720112e-310,4.8240703718513e-310,4.82307077169136e-310,4.8220711715314e-310,4.82107157137146e-310,4.8200719712115e-310,4.81907237105156e-310,4.81807277089166e-310,4.8170731707317e-310,4.8160735705718e-310,4.81507397041186e-310,4.8140743702519e-310,4.81307477009197e-310,4.812075169932e-310,4.81107556977207e-310,4.81007596961217e-310,4.8090763694522e-310,4.8080767692923e-310,4.80707716913237e-310,4.8060775689724e-310,4.80507796881247e-310,4.80407836865253e-310,4.8030787684926e-310,4.8020791683327e-310,4.80107956817273e-310,4.80007996801283e-310,4.7990803678529e-310,4.79808076769293e-310,4.797081167533e-310,4.79608156737303e-310,4.79508196721313e-310,4.7940823670532e-310,4.7930827668933e-310,4.79208316673334e-310,4.7910835665734e-310,4.79008396641344e-310,4.7890843662535e-310,4.78808476609354e-310,4.78708516593364e-310,4.7860855657737e-310,4.7850859656138e-310,4.78408636545384e-310,4.7830867652939e-310,4.78208716513395e-310,4.781087564974e-310,4.78008796481405e-310,4.77908836465415e-310,4.7780887644942e-310,4.7770891643343e-310,4.77608956417435e-310,4.7750899640144e-310,4.77409036385445e-310,4.7730907636945e-310,4.7720911635346e-310,4.77109156337466e-310,4.77009196321476e-310,4.7690923630548e-310,4.76809276289486e-310,4.7670931627349e-310,4.76609356257496e-310,4.765093962415e-310,4.7640943622551e-310,4.76309476209517e-310,4.76209516193527e-310,4.7610955617753e-310,4.76009596161537e-310,4.7590963614554e-310,4.75809676129547e-310,4.7570971611355e-310,4.7560975609756e-310,4.75509796081567e-310,4.75409836065577e-310,4.7530987604958e-310,4.7520991603359e-310,4.75109956017593e-310,4.750099960016e-310,4.7491003598561e-310,4.74810075969613e-310,4.74710115953623e-310,4.7461015593763e-310,4.74510195921633e-310,4.7441023590564e-310,4.74310275889643e-310,4.7421031587365e-310,4.7411035585766e-310,4.74010395841664e-310,4.73910435825674e-310,4.7381047580968e-310,4.73710515793684e-310,4.7361055577769e-310,4.73510595761694e-310,4.734106357457e-310,4.7331067572971e-310,4.73210715713715e-310,4.73110755697725e-310,4.7301079568173e-310,4.72910835665735e-310,4.7281087564974e-310,4.72710915633745e-310,4.7261095561775e-310,4.7251099560176e-310,4.7241103558577e-310,4.72311075569775e-310,4.7221111555378e-310,4.72111155537786e-310,4.7201119552179e-310,4.71911235505796e-310,4.71811275489806e-310,4.7171131547381e-310,4.7161135545782e-310,4.71511395441826e-310,4.7141143542583e-310,4.71311475409836e-310,4.7121151539384e-310,4.71111555377847e-310,4.71011595361857e-310,4.7091163534586e-310,4.7081167532987e-310,4.70711715313877e-310,4.7061175529788e-310,4.70511795281887e-310,4.7041183526589e-310,4.70311875249897e-310,4.70211915233907e-310,4.70111955217913e-310,4.70011995201923e-310,4.6991203518593e-310,4.69812075169933e-310,4.6971211515394e-310,4.69612155137943e-310,4.69512195121953e-310,4.6941223510596e-310,4.6931227508997e-310,4.69212315073973e-310,4.6911235505798e-310,4.69012395041984e-310,4.6891243502599e-310,4.68812475009994e-310,4.68712514994004e-310,4.6861255497801e-310,4.6851259496202e-310,4.68412634946024e-310,4.6831267493003e-310,4.68212714914034e-310,4.6811275489804e-310,4.68012794882045e-310,4.67912834866055e-310,4.6781287485006e-310,4.6771291483407e-310,4.67612954818075e-310,4.6751299480208e-310,4.67413034786085e-310,4.6731307477009e-310,4.672131147541e-310,4.67113154738105e-310,4.67013194722116e-310,4.6691323470612e-310,4.66813274690126e-310,4.6671331467413e-310,4.66613354658136e-310,4.6651339464214e-310,4.6641343462615e-310,4.66313474610156e-310,4.66213514594166e-310,4.6611355457817e-310,4.66013594562177e-310,4.6591363454618e-310,4.65813674530187e-310,4.6571371451419e-310,4.656137544982e-310,4.65513794482207e-310,4.65413834466217e-310,4.6531387445022e-310,4.65213914434227e-310,4.6511395441823e-310,4.65013994402238e-310,4.6491403438625e-310,4.64814074370253e-310,4.64714114354263e-310,4.6461415433827e-310,4.64514194322273e-310,4.6441423430628e-310,4.64314274290283e-310,4.6421431427429e-310,4.641143542583e-310,4.64014394242303e-310,4.63914434226314e-310,4.6381447421032e-310,4.63714514194324e-310,4.6361455417833e-310,4.63514594162334e-310,4.6341463414634e-310,4.6331467413035e-310,4.63214714114354e-310,4.63114754098364e-310,4.6301479408237e-310,4.62914834066375e-310,4.6281487405038e-310,4.62714914034385e-310,4.6261495401839e-310,4.625149940024e-310,4.6241503398641e-310,4.62315073970415e-310,4.6221511395442e-310,4.62115153938425e-310,4.6201519392243e-310,4.61915233906436e-310,4.61815273890446e-310,4.6171531387445e-310,4.6161535385846e-310,4.61515393842466e-310,4.6141543382647e-310,4.61315473810476e-310,4.6121551379448e-310,4.61115553778486e-310,4.61015593762496e-310,4.609156337465e-310,4.6081567373051e-310,4.60715713714517e-310,4.6061575369852e-310,4.60515793682527e-310,4.6041583366653e-310,4.60315873650537e-310,4.60215913634547e-310,4.6011595361855e-310,4.6001599360256e-310,4.59916033586567e-310,4.59816073570573e-310,4.5971611355458e-310,4.59616153538583e-310,4.59516193522593e-310,4.594162335066e-310,4.5931627349061e-310,4.59216313474613e-310,4.5911635345862e-310,4.59016393442623e-310,4.5891643342663e-310,4.58816473410634e-310,4.58716513394644e-310,4.5861655337865e-310,4.5851659336266e-310,4.58416633346664e-310,4.5831667333067e-310,4.58216713314674e-310,4.5811675329868e-310,4.58016793282684e-310,4.57916833266694e-310,4.578168732507e-310,4.5771691323471e-310,4.57616953218715e-310,4.5751699320272e-310,4.57417033186725e-310,4.5731707317073e-310,4.5721711315474e-310,4.57117153138745e-310,4.57017193122755e-310,4.5691723310676e-310,4.56817273090765e-310,4.5671731307477e-310,4.56617353058776e-310,4.5651739304278e-310,4.5641743302679e-310,4.56317473010796e-310,4.56217512994806e-310,4.5611755297881e-310,4.56017592962816e-310,4.5591763294682e-310,4.55817672930826e-310,4.5571771291483e-310,4.5561775289884e-310,4.55517792882847e-310,4.55417832866857e-310,4.5531787285086e-310,4.55217912834867e-310,4.5511795281887e-310,4.55017992802877e-310,4.54918032786887e-310,4.5481807277089e-310,4.547181127549e-310,4.5461815273891e-310,4.54518192722913e-310,4.5441823270692e-310,4.54318272690923e-310,4.5421831267493e-310,4.5411835265894e-310,4.54018392642943e-310,4.53918432626953e-310,4.5381847261096e-310,4.53718512594963e-310,4.5361855257897e-310,4.53518592562974e-310,4.5341863254698e-310,4.5331867253099e-310,4.53218712514994e-310,4.53118752499004e-310,4.5301879248301e-310,4.52918832467014e-310,4.5281887245102e-310,4.52718912435024e-310,4.5261895241903e-310,4.5251899240304e-310,4.5241903238705e-310,4.52319072371055e-310,4.5221911235506e-310,4.52119152339065e-310,4.5201919232307e-310,4.51919232307075e-310,4.51819272291085e-310,4.5171931227509e-310,4.516193522591e-310,4.51519392243106e-310,4.5141943222711e-310,4.51319472211116e-310,4.5121951219512e-310,4.51119552179126e-310,4.51019592163136e-310,4.5091963214714e-310,4.5081967213115e-310,4.50719712115156e-310,4.5061975209916e-310,4.50519792083167e-310,4.5041983206717e-310,4.50319872051177e-310,4.50219912035187e-310,4.5011995201919e-310,4.500199920032e-310,4.49920031987207e-310,4.4982007197121e-310,4.49720111955217e-310,4.49620151939223e-310,4.49520191923233e-310,4.4942023190724e-310,4.4932027189125e-310,4.49220311875253e-310,4.4912035185926e-310,4.49020391843263e-310,4.4892043182727e-310,4.48820471811273e-310,4.48720511795283e-310,4.4862055177929e-310,4.485205917633e-310,4.48420631747304e-310,4.4832067173131e-310,4.48220711715314e-310,4.4812075169932e-310,4.48020791683324e-310,4.47920831667334e-310,4.4782087165134e-310,4.4772091163535e-310,4.47620951619354e-310,4.4752099160336e-310,4.47421031587365e-310,4.4732107157137e-310,4.4722111155538e-310,4.47121151539385e-310,4.47021191523395e-310,4.469212315074e-310,4.46821271491405e-310,4.4672131147541e-310,4.46621351459415e-310,4.4652139144342e-310,4.4642143142743e-310,4.46321471411436e-310,4.46221511395446e-310,4.4612155137945e-310,4.46021591363456e-310,4.4592163134746e-310,4.45821671331466e-310,4.4572171131547e-310,4.4562175129948e-310,4.45521791283486e-310,4.45421831267497e-310,4.453218712515e-310,4.45221911235507e-310,4.4512195121951e-310,4.45021991203517e-310,4.44922031187527e-310,4.4482207117153e-310,4.4472211115554e-310,4.44622151139547e-310,4.4452219112355e-310,4.4442223110756e-310,4.44322271091563e-310,4.4422231107557e-310,4.4412235105958e-310,4.44022391043583e-310,4.43922431027593e-310,4.438224710116e-310,4.43722510995603e-310,4.4362255097961e-310,4.43522590963613e-310,4.4342263094762e-310,4.4332267093163e-310,4.43222710915634e-310,4.43122750899644e-310,4.4302279088365e-310,4.42922830867654e-310,4.4282287085166e-310,4.42722910835664e-310,4.4262295081967e-310,4.4252299080368e-310,4.4242303078769e-310,4.42323070771695e-310,4.422231107557e-310,4.42123150739705e-310,4.4202319072371e-310,4.41923230707715e-310,4.41823270691725e-310,4.4172331067573e-310,4.4162335065974e-310,4.41523390643745e-310,4.4142343062775e-310,4.41323470611756e-310,4.4122351059576e-310,4.41123550579766e-310,4.41023590563776e-310,4.4092363054778e-310,4.4082367053179e-310,4.40723710515796e-310,4.406237504998e-310,4.40523790483806e-310,4.4042383046781e-310,4.40323870451817e-310,4.40223910435827e-310,4.4012395041983e-310,4.4002399040384e-310,4.39924030387847e-310,4.3982407037185e-310,4.39724110355857e-310,4.3962415033986e-310,4.3952419032387e-310,4.39424230307877e-310,4.39324270291887e-310,4.39224310275893e-310,4.391243502599e-310,4.39024390243903e-310,4.3892443022791e-310,4.38824470211913e-310,4.38724510195923e-310,4.3862455017993e-310,4.3852459016394e-310,4.38424630147943e-310,4.3832467013195e-310,4.38224710115954e-310,4.3812475009996e-310,4.38024790083964e-310,4.37924830067974e-310,4.3782487005198e-310,4.3772491003599e-310,4.37624950019994e-310,4.37524990004e-310,4.37425029988004e-310,4.3732506997201e-310,4.3722510995602e-310,4.37125149940025e-310,4.37025189924035e-310,4.3692522990804e-310,4.36825269892045e-310,4.3672530987605e-310,4.36625349860055e-310,4.3652538984406e-310,4.3642542982807e-310,4.36325469812075e-310,4.36225509796085e-310,4.3612554978009e-310,4.36025589764096e-310,4.359256297481e-310,4.35825669732106e-310,4.3572570971611e-310,4.3562574970012e-310,4.35525789684126e-310,4.35425829668136e-310,4.3532586965214e-310,4.35225909636146e-310,4.3512594962015e-310,4.35025989604157e-310,4.34926029588167e-310,4.3482606957217e-310,4.3472610955618e-310,4.34626149540187e-310,4.3452618952419e-310,4.34426229508197e-310,4.343262694922e-310,4.34226309476207e-310,4.3412634946022e-310,4.34026389444223e-310,4.33926429428233e-310,4.3382646941224e-310,4.33726509396243e-310,4.3362654938025e-310,4.33526589364253e-310,4.3342662934826e-310,4.3332666933227e-310,4.33226709316273e-310,4.33126749300283e-310,4.3302678928429e-310,4.32926829268294e-310,4.328268692523e-310,4.32726909236304e-310,4.3262694922031e-310,4.3252698920432e-310,4.3242702918833e-310,4.32327069172334e-310,4.3222710915634e-310,4.32127149140344e-310,4.3202718912435e-310,4.31927229108355e-310,4.31827269092365e-310,4.3172730907637e-310,4.3162734906038e-310,4.31527389044385e-310,4.3142742902839e-310,4.31327469012395e-310,4.312275089964e-310,4.31127548980406e-310,4.31027588964416e-310,4.3092762894842e-310,4.3082766893243e-310,4.30727708916436e-310,4.3062774890044e-310,4.30527788884446e-310,4.3042782886845e-310,4.30327868852456e-310,4.30227908836466e-310,4.3012794882047e-310,4.3002798880448e-310,4.29928028788487e-310,4.2982806877249e-310,4.29728108756497e-310,4.296281487405e-310,4.2952818872451e-310,4.29428228708517e-310,4.29328268692527e-310,4.2922830867653e-310,4.29128348660537e-310,4.29028388644543e-310,4.2892842862855e-310,4.28828468612553e-310,4.28728508596563e-310,4.2862854858057e-310,4.2852858856458e-310,4.28428628548583e-310,4.2832866853259e-310,4.28228708516593e-310,4.281287485006e-310,4.28028788484604e-310,4.27928828468614e-310,4.2782886845262e-310,4.2772890843663e-310,4.27628948420634e-310,4.2752898840464e-310,4.27429028388644e-310,4.2732906837265e-310,4.2722910835666e-310,4.27129148340664e-310,4.27029188324674e-310,4.2692922830868e-310,4.26829268292685e-310,4.2672930827669e-310,4.26629348260695e-310,4.265293882447e-310,4.2642942822871e-310,4.26329468212715e-310,4.26229508196725e-310,4.2612954818073e-310,4.26029588164735e-310,4.2592962814874e-310,4.25829668132746e-310,4.2572970811675e-310,4.2562974810076e-310,4.25529788084766e-310,4.25429828068776e-310,4.2532986805278e-310,4.25229908036786e-310,4.2512994802079e-310,4.25029988004796e-310,4.24930027988806e-310,4.2483006797281e-310,4.2473010795682e-310,4.24630147940827e-310,4.2453018792483e-310,4.24430227908837e-310,4.2433026789284e-310,4.24230307876847e-310,4.24130347860857e-310,4.2403038784486e-310,4.2393042782887e-310,4.2383046781288e-310,4.23730507796883e-310,4.2363054778089e-310,4.23530587764893e-310,4.234306277489e-310,4.2333066773291e-310,4.23230707716913e-310,4.23130747700923e-310,4.2303078768493e-310,4.22930827668933e-310,4.2283086765294e-310,4.22730907636944e-310,4.2263094762095e-310,4.2253098760496e-310,4.2243102758897e-310,4.22331067572974e-310,4.2223110755698e-310,4.22131147540984e-310,4.2203118752499e-310,4.21931227508994e-310,4.21831267493004e-310,4.2173130747701e-310,4.2163134746102e-310,4.21531387445025e-310,4.2143142742903e-310,4.21331467413035e-310,4.2123150739704e-310,4.21131547381045e-310,4.21031587365055e-310,4.2093162734906e-310,4.2083166733307e-310,4.20731707317076e-310,4.2063174730108e-310,4.20531787285086e-310,4.2043182726909e-310,4.20331867253096e-310,4.20231907237106e-310,4.2013194722111e-310,4.2003198720512e-310,4.19932027189126e-310,4.1983206717313e-310,4.19732107157137e-310,4.1963214714114e-310,4.1953218712515e-310,4.19432227109157e-310,4.19332267093167e-310,4.1923230707717e-310,4.19132347061177e-310,4.1903238704518e-310,4.18932427029187e-310,4.1883246701319e-310,4.18732506997203e-310,4.1863254698121e-310,4.1853258696522e-310,4.18432626949223e-310,4.1833266693323e-310,4.18232706917233e-310,4.1813274690124e-310,4.18032786885243e-310,4.17932826869253e-310,4.1783286685326e-310,4.1773290683727e-310,4.17632946821274e-310,4.1753298680528e-310,4.17433026789284e-310,4.1733306677329e-310,4.172331067573e-310,4.17133146741304e-310,4.17033186725314e-310,4.1693322670932e-310,4.16833266693324e-310,4.1673330667733e-310,4.16633346661335e-310,4.1653338664534e-310,4.1643342662935e-310,4.16333466613355e-310,4.16233506597365e-310,4.1613354658137e-310,4.16033586565375e-310,4.1593362654938e-310,4.15833666533385e-310,4.1573370651739e-310,4.156337465014e-310,4.15533786485406e-310,4.15433826469416e-310,4.1533386645342e-310,4.15233906437426e-310,4.1513394642143e-310,4.15033986405436e-310,4.14934026389446e-310,4.1483406637345e-310,4.1473410635746e-310,4.14634146341466e-310,4.1453418632547e-310,4.14434226309477e-310,4.1433426629348e-310,4.14234306277487e-310,4.14134346261497e-310,4.140343862455e-310,4.1393442622951e-310,4.13834466213517e-310,4.1373450619752e-310,4.13634546181527e-310,4.13534586165533e-310,4.1343462614954e-310,4.1333466613355e-310,4.13234706117553e-310,4.13134746101563e-310,4.1303478608557e-310,4.12934826069573e-310,4.1283486605358e-310,4.12734906037583e-310,4.1263494602159e-310,4.125349860056e-310,4.1243502598961e-310,4.12335065973614e-310,4.1223510595762e-310,4.12135145941624e-310,4.1203518592563e-310,4.11935225909634e-310,4.11835265893644e-310,4.1173530587765e-310,4.1163534586166e-310,4.11535385845665e-310,4.1143542582967e-310,4.11335465813675e-310,4.1123550579768e-310,4.11135545781685e-310,4.11035585765695e-310,4.109356257497e-310,4.1083566573371e-310,4.10735705717715e-310,4.1063574570172e-310,4.10535785685726e-310,4.1043582566973e-310,4.10335865653736e-310,4.10235905637746e-310,4.1013594562175e-310,4.1003598560576e-310,4.09936025589766e-310,4.0983606557377e-310,4.09736105557776e-310,4.0963614554178e-310,4.0953618552579e-310,4.09436225509797e-310,4.09336265493807e-310,4.0923630547781e-310,4.09136345461817e-310,4.0903638544582e-310,4.08936425429827e-310,4.0883646541383e-310,4.0873650539784e-310,4.08636545381847e-310,4.08536585365857e-310,4.08436625349863e-310,4.0833666533387e-310,4.08236705317873e-310,4.0813674530188e-310,4.08036785285883e-310,4.07936825269893e-310,4.078368652539e-310,4.0773690523791e-310,4.07636945221913e-310,4.0753698520592e-310,4.07437025189924e-310,4.0733706517393e-310,4.0723710515794e-310,4.07137145141944e-310,4.07037185125954e-310,4.0693722510996e-310,4.06837265093964e-310,4.0673730507797e-310,4.06637345061974e-310,4.0653738504598e-310,4.0643742502999e-310,4.06337465013995e-310,4.06237504998005e-310,4.0613754498201e-310,4.06037584966015e-310,4.0593762495002e-310,4.05837664934025e-310,4.0573770491803e-310,4.0563774490204e-310,4.05537784886045e-310,4.05437824870055e-310,4.0533786485406e-310,4.05237904838066e-310,4.0513794482207e-310,4.05037984806076e-310,4.04938024790086e-310,4.0483806477409e-310,4.047381047581e-310,4.04638144742106e-310,4.0453818472611e-310,4.04438224710116e-310,4.0433826469412e-310,4.04238304678127e-310,4.04138344662137e-310,4.0403838464614e-310,4.0393842463015e-310,4.03838464614157e-310,4.0373850459816e-310,4.03638544582167e-310,4.0353858456617e-310,4.03438624550177e-310,4.03338664534188e-310,4.03238704518193e-310,4.03138744502203e-310,4.0303878448621e-310,4.02938824470213e-310,4.0283886445422e-310,4.02738904438223e-310,4.0263894442223e-310,4.0253898440624e-310,4.0243902439025e-310,4.02339064374253e-310,4.0223910435826e-310,4.02139144342264e-310,4.0203918432627e-310,4.01939224310274e-310,4.01839264294284e-310,4.0173930427829e-310,4.016393442623e-310,4.01539384246304e-310,4.0143942423031e-310,4.01339464214314e-310,4.0123950419832e-310,4.01139544182325e-310,4.01039584166335e-310,4.0093962415034e-310,4.0083966413435e-310,4.00739704118355e-310,4.0063974410236e-310,4.00539784086365e-310,4.0043982407037e-310,4.00339864054375e-310,4.00239904038386e-310,4.0013994402239e-310,4.000399840064e-310,3.99940023990406e-310,3.9984006397441e-310,3.99740103958416e-310,3.9964014394242e-310,3.9954018392643e-310,3.99440223910436e-310,3.99340263894446e-310,3.9924030387845e-310,3.99140343862457e-310,3.9904038384646e-310,3.98940423830467e-310,3.9884046381447e-310,3.9874050379848e-310,3.98640543782487e-310,3.98540583766497e-310,3.984406237505e-310,3.98340663734507e-310,3.98240703718512e-310,3.9814074370252e-310,3.98040783686523e-310,3.97940823670533e-310,3.9784086365454e-310,3.9774090363855e-310,3.97640943622553e-310,3.9754098360656e-310,3.97441023590563e-310,3.9734106357457e-310,3.9724110355858e-310,3.97141143542584e-310,3.97041183526594e-310,3.969412235106e-310,3.96841263494604e-310,3.9674130347861e-310,3.96641343462614e-310,3.9654138344662e-310,3.9644142343063e-310,3.96341463414634e-310,3.96241503398644e-310,3.9614154338265e-310,3.96041583366655e-310,3.9594162335066e-310,3.95841663334665e-310,3.9574170331867e-310,3.9564174330268e-310,3.95541783286685e-310,3.95441823270695e-310,3.953418632547e-310,3.95241903238705e-310,3.9514194322271e-310,3.95041983206716e-310,3.94942023190726e-310,3.9484206317473e-310,3.9474210315874e-310,3.94642143142746e-310,3.9454218312675e-310,3.94442223110756e-310,3.9434226309476e-310,3.94242303078766e-310,3.94142343062776e-310,3.9404238304678e-310,3.9394242303079e-310,3.93842463014797e-310,3.937425029988e-310,3.93642542982807e-310,3.9354258296681e-310,3.93442622950817e-310,3.93342662934827e-310,3.9324270291883e-310,3.9314274290284e-310,3.93042782886848e-310,3.92942822870853e-310,3.9284286285486e-310,3.92742902838863e-310,3.9264294282287e-310,3.9254298280688e-310,3.9244302279089e-310,3.92343062774893e-310,3.922431027589e-310,3.92143142742903e-310,3.9204318272691e-310,3.91943222710914e-310,3.91843262694924e-310,3.9174330267893e-310,3.9164334266294e-310,3.91543382646944e-310,3.9144342263095e-310,3.91343462614954e-310,3.9124350259896e-310,3.91143542582964e-310,3.91043582566974e-310,3.9094362255098e-310,3.9084366253499e-310,3.90743702518995e-310,3.90643742503e-310,3.90543782487005e-310,3.9044382247101e-310,3.90343862455015e-310,3.90243902439025e-310,3.9014394242303e-310,3.9004398240704e-310,3.89944022391046e-310,3.8984406237505e-310,3.89744102359056e-310,3.8964414234306e-310,3.8954418232707e-310,3.89444222311076e-310,3.89344262295086e-310,3.8924430227909e-310,3.89144342263096e-310,3.890443822471e-310,3.88944422231107e-310,3.8884446221511e-310,3.8874450219912e-310,3.88644542183127e-310,3.88544582167137e-310,3.8844462215114e-310,3.88344662135147e-310,3.8824470211915e-310,3.88144742103157e-310,3.8804478208716e-310,3.87944822071172e-310,3.8784486205518e-310,3.8774490203919e-310,3.87644942023193e-310,3.875449820072e-310,3.87445021991203e-310,3.8734506197521e-310,3.8724510195922e-310,3.87145141943223e-310,3.87045181927233e-310,3.8694522191124e-310,3.86845261895244e-310,3.8674530187925e-310,3.86645341863254e-310,3.8654538184726e-310,3.8644542183127e-310,3.86345461815274e-310,3.86245501799284e-310,3.8614554178329e-310,3.86045581767294e-310,3.859456217513e-310,3.85845661735305e-310,3.8574570171931e-310,3.8564574170332e-310,3.85545781687325e-310,3.85445821671335e-310,3.8534586165534e-310,3.85245901639345e-310,3.8514594162335e-310,3.85045981607355e-310,3.84946021591365e-310,3.8484606157537e-310,3.8474610155938e-310,3.84646141543386e-310,3.8454618152739e-310,3.84446221511396e-310,3.843462614954e-310,3.84246301479406e-310,3.84146341463416e-310,3.8404638144742e-310,3.8394642143143e-310,3.83846461415436e-310,3.8374650139944e-310,3.83646541383447e-310,3.8354658136745e-310,3.83446621351457e-310,3.83346661335467e-310,3.8324670131947e-310,3.8314674130348e-310,3.83046781287487e-310,3.8294682127149e-310,3.82846861255497e-310,3.82746901239503e-310,3.8264694122351e-310,3.8254698120752e-310,3.8244702119153e-310,3.82347061175533e-310,3.8224710115954e-310,3.82147141143543e-310,3.8204718112755e-310,3.81947221111553e-310,3.81847261095563e-310,3.8174730107957e-310,3.8164734106358e-310,3.81547381047584e-310,3.8144742103159e-310,3.81347461015594e-310,3.812475009996e-310,3.81147540983604e-310,3.81047580967614e-310,3.8094762095162e-310,3.8084766093563e-310,3.80747700919634e-310,3.8064774090364e-310,3.80547780887645e-310,3.8044782087165e-310,3.80347860855655e-310,3.80247900839665e-310,3.8014794082367e-310,3.8004798080768e-310,3.79948020791685e-310,3.7984806077569e-310,3.79748100759695e-310,3.796481407437e-310,3.7954818072771e-310,3.79448220711716e-310,3.79348260695726e-310,3.7924830067973e-310,3.79148340663736e-310,3.7904838064774e-310,3.78948420631746e-310,3.7884846061575e-310,3.7874850059976e-310,3.78648540583767e-310,3.78548580567777e-310,3.7844862055178e-310,3.78348660535787e-310,3.7824870051979e-310,3.78148740503797e-310,3.780487804878e-310,3.7794882047181e-310,3.77848860455817e-310,3.77748900439827e-310,3.77648940423832e-310,3.7754898040784e-310,3.77449020391843e-310,3.7734906037585e-310,3.7724910035986e-310,3.77149140343863e-310,3.77049180327873e-310,3.7694922031188e-310,3.76849260295883e-310,3.7674930027989e-310,3.76649340263893e-310,3.765493802479e-310,3.7644942023191e-310,3.76349460215914e-310,3.76249500199924e-310,3.7614954018393e-310,3.76049580167934e-310,3.7594962015194e-310,3.75849660135944e-310,3.7574970011995e-310,3.7564974010396e-310,3.75549780087965e-310,3.75449820071975e-310,3.7534986005598e-310,3.75249900039985e-310,3.7514994002399e-310,3.75049980007995e-310,3.74950019992005e-310,3.7485005997601e-310,3.7475009996002e-310,3.74650139944025e-310,3.7455017992803e-310,3.74450219912036e-310,3.7435025989604e-310,3.74250299880046e-310,3.74150339864056e-310,3.7405037984806e-310,3.7395041983207e-310,3.73850459816076e-310,3.7375049980008e-310,3.73650539784086e-310,3.7355057976809e-310,3.73450619752097e-310,3.73350659736107e-310,3.7325069972011e-310,3.7315073970412e-310,3.73050779688127e-310,3.7295081967213e-310,3.72850859656137e-310,3.7275089964014e-310,3.72650939624147e-310,3.72550979608157e-310,3.72451019592168e-310,3.72351059576173e-310,3.7225109956018e-310,3.72151139544183e-310,3.7205117952819e-310,3.71951219512193e-310,3.71851259496203e-310,3.7175129948021e-310,3.7165133946422e-310,3.71551379448223e-310,3.7145141943223e-310,3.71351459416234e-310,3.7125149940024e-310,3.71151539384244e-310,3.71051579368254e-310,3.7095161935226e-310,3.7085165933627e-310,3.70751699320274e-310,3.7065173930428e-310,3.70551779288284e-310,3.7045181927229e-310,3.70351859256295e-310,3.70251899240305e-310,3.7015193922431e-310,3.7005197920832e-310,3.69952019192325e-310,3.6985205917633e-310,3.69752099160335e-310,3.6965213914434e-310,3.6955217912835e-310,3.69452219112355e-310,3.69352259096366e-310,3.6925229908037e-310,3.69152339064376e-310,3.6905237904838e-310,3.68952419032386e-310,3.6885245901639e-310,3.687524990004e-310,3.68652538984406e-310,3.68552578968416e-310,3.6845261895242e-310,3.68352658936427e-310,3.6825269892043e-310,3.68152738904437e-310,3.6805277888844e-310,3.6795281887245e-310,3.67852858856457e-310,3.67752898840467e-310,3.6765293882447e-310,3.67552978808477e-310,3.6745301879248e-310,3.6735305877649e-310,3.672530987605e-310,3.67153138744503e-310,3.67053178728513e-310,3.6695321871252e-310,3.66853258696523e-310,3.6675329868053e-310,3.66653338664533e-310,3.6655337864854e-310,3.6645341863255e-310,3.66353458616554e-310,3.66253498600564e-310,3.6615353858457e-310,3.66053578568574e-310,3.6595361855258e-310,3.65853658536584e-310,3.6575369852059e-310,3.656537385046e-310,3.65553778488604e-310,3.65453818472614e-310,3.6535385845662e-310,3.65253898440625e-310,3.6515393842463e-310,3.65053978408635e-310,3.64954018392645e-310,3.6485405837665e-310,3.6475409836066e-310,3.64654138344665e-310,3.6455417832867e-310,3.64454218312675e-310,3.6435425829668e-310,3.64254298280686e-310,3.64154338264696e-310,3.640543782487e-310,3.6395441823271e-310,3.63854458216716e-310,3.6375449820072e-310,3.63654538184726e-310,3.6355457816873e-310,3.63454618152736e-310,3.63354658136746e-310,3.6325469812075e-310,3.6315473810476e-310,3.63054778088767e-310,3.6295481807277e-310,3.62854858056777e-310,3.6275489804078e-310,3.62654938024787e-310,3.62554978008797e-310,3.624550179928e-310,3.6235505797681e-310,3.62255097960817e-310,3.62155137944823e-310,3.6205517792883e-310,3.61955217912833e-310,3.61855257896843e-310,3.6175529788085e-310,3.6165533786486e-310,3.61555377848863e-310,3.6145541783287e-310,3.61355457816873e-310,3.6125549780088e-310,3.61155537784884e-310,3.61055577768894e-310,3.609556177529e-310,3.6085565773691e-310,3.60755697720914e-310,3.6065573770492e-310,3.60555777688924e-310,3.6045581767293e-310,3.60355857656934e-310,3.60255897640944e-310,3.6015593762495e-310,3.6005597760896e-310,3.59956017592965e-310,3.5985605757697e-310,3.59756097560975e-310,3.5965613754498e-310,3.5955617752899e-310,3.59456217512995e-310,3.59356257497005e-310,3.5925629748101e-310,3.59156337465015e-310,3.5905637744902e-310,3.58956417433026e-310,3.5885645741703e-310,3.5875649740104e-310,3.58656537385046e-310,3.58556577369056e-310,3.5845661735306e-310,3.58356657337066e-310,3.5825669732107e-310,3.58156737305076e-310,3.5805677728908e-310,3.5795681727309e-310,3.57856857257097e-310,3.57756897241107e-310,3.5765693722511e-310,3.57556977209117e-310,3.5745701719312e-310,3.57357057177127e-310,3.57257097161137e-310,3.5715713714514e-310,3.57057177129153e-310,3.5695721711316e-310,3.56857257097163e-310,3.5675729708117e-310,3.56657337065173e-310,3.5655737704918e-310,3.5645741703319e-310,3.56357457017193e-310,3.56257497001203e-310,3.5615753698521e-310,3.56057576969214e-310,3.5595761695322e-310,3.55857656937224e-310,3.5575769692123e-310,3.5565773690524e-310,3.55557776889244e-310,3.55457816873254e-310,3.5535785685726e-310,3.55257896841264e-310,3.5515793682527e-310,3.55057976809275e-310,3.54958016793285e-310,3.5485805677729e-310,3.547580967613e-310,3.54658136745305e-310,3.5455817672931e-310,3.54458216713315e-310,3.5435825669732e-310,3.54258296681325e-310,3.54158336665335e-310,3.5405837664934e-310,3.5395841663335e-310,3.53858456617356e-310,3.5375849660136e-310,3.53658536585366e-310,3.5355857656937e-310,3.53458616553376e-310,3.53358656537386e-310,3.5325869652139e-310,3.531587365054e-310,3.53058776489406e-310,3.5295881647341e-310,3.52858856457417e-310,3.5275889644142e-310,3.52658936425427e-310,3.52558976409437e-310,3.52459016393447e-310,3.5235905637745e-310,3.52259096361457e-310,3.5215913634546e-310,3.52059176329467e-310,3.51959216313473e-310,3.51859256297483e-310,3.5175929628149e-310,3.516593362655e-310,3.51559376249503e-310,3.5145941623351e-310,3.51359456217513e-310,3.5125949620152e-310,3.51159536185523e-310,3.51059576169533e-310,3.5095961615354e-310,3.5085965613755e-310,3.50759696121554e-310,3.5065973610556e-310,3.50559776089564e-310,3.5045981607357e-310,3.50359856057574e-310,3.50259896041584e-310,3.5015993602559e-310,3.500599760096e-310,3.49960015993604e-310,3.4986005597761e-310,3.49760095961615e-310,3.4966013594562e-310,3.4956017592963e-310,3.49460215913635e-310,3.49360255897645e-310,3.4926029588165e-310,3.49160335865655e-310,3.4906037584966e-310,3.48960415833665e-310,3.4886045581767e-310,3.4876049580168e-310,3.48660535785686e-310,3.48560575769696e-310,3.484606157537e-310,3.48360655737706e-310,3.4826069572171e-310,3.48160735705716e-310,3.4806077568972e-310,3.4796081567373e-310,3.47860855657737e-310,3.47760895641747e-310,3.4766093562575e-310,3.47560975609757e-310,3.4746101559376e-310,3.47361055577767e-310,3.47261095561777e-310,3.4716113554578e-310,3.4706117552979e-310,3.46961215513797e-310,3.468612554978e-310,3.4676129548181e-310,3.46661335465813e-310,3.4656137544982e-310,3.4646141543383e-310,3.46361455417833e-310,3.46261495401843e-310,3.4616153538585e-310,3.46061575369853e-310,3.4596161535386e-310,3.45861655337863e-310,3.4576169532187e-310,3.4566173530588e-310,3.45561775289884e-310,3.45461815273894e-310,3.453618552579e-310,3.45261895241904e-310,3.4516193522591e-310,3.45061975209914e-310,3.44962015193924e-310,3.4486205517793e-310,3.4476209516194e-310,3.44662135145945e-310,3.4456217512995e-310,3.44462215113955e-310,3.4436225509796e-310,3.44262295081965e-310,3.44162335065975e-310,3.4406237504998e-310,3.4396241503399e-310,3.43862455017995e-310,3.43762495002e-310,3.43662534986006e-310,3.4356257497001e-310,3.43462614954016e-310,3.43362654938026e-310,3.4326269492203e-310,3.4316273490604e-310,3.43062774890046e-310,3.4296281487405e-310,3.42862854858056e-310,3.4276289484206e-310,3.42662934826067e-310,3.42562974810077e-310,3.42463014794087e-310,3.4236305477809e-310,3.42263094762097e-310,3.421631347461e-310,3.42063174730107e-310,3.4196321471411e-310,3.4186325469812e-310,3.41763294682127e-310,3.41663334666137e-310,3.41563374650143e-310,3.4146341463415e-310,3.41363454618153e-310,3.4126349460216e-310,3.41163534586163e-310,3.41063574570173e-310,3.4096361455418e-310,3.4086365453819e-310,3.40763694522193e-310,3.406637345062e-310,3.40563774490204e-310,3.4046381447421e-310,3.40363854458214e-310,3.40263894442224e-310,3.4016393442623e-310,3.4006397441024e-310,3.39964014394244e-310,3.3986405437825e-310,3.39764094362254e-310,3.3966413434626e-310,3.3956417433027e-310,3.39464214314275e-310,3.39364254298285e-310,3.3926429428229e-310,3.39164334266295e-310,3.390643742503e-310,3.38964414234305e-310,3.3886445421831e-310,3.3876449420232e-310,3.38664534186325e-310,3.38564574170336e-310,3.3846461415434e-310,3.38364654138346e-310,3.3826469412235e-310,3.38164734106356e-310,3.3806477409036e-310,3.3796481407437e-310,3.37864854058376e-310,3.37764894042386e-310,3.3766493402639e-310,3.37564974010397e-310,3.374650139944e-310,3.37365053978407e-310,3.37265093962417e-310,3.3716513394642e-310,3.3706517393043e-310,3.36965213914437e-310,3.3686525389844e-310,3.36765293882447e-310,3.3666533386645e-310,3.36565373850458e-310,3.3646541383447e-310,3.36365453818473e-310,3.36265493802483e-310,3.3616553378649e-310,3.36065573770493e-310,3.359656137545e-310,3.35865653738503e-310,3.3576569372251e-310,3.3566573370652e-310,3.35565773690523e-310,3.35465813674534e-310,3.3536585365854e-310,3.35265893642544e-310,3.3516593362655e-310,3.35065973610554e-310,3.3496601359456e-310,3.3486605357857e-310,3.3476609356258e-310,3.34666133546584e-310,3.3456617353059e-310,3.34466213514595e-310,3.343662534986e-310,3.34266293482605e-310,3.34166333466615e-310,3.3406637345062e-310,3.3396641343463e-310,3.33866453418635e-310,3.3376649340264e-310,3.33666533386645e-310,3.3356657337065e-310,3.33466613354656e-310,3.33366653338666e-310,3.3326669332267e-310,3.3316673330668e-310,3.33066773290686e-310,3.3296681327469e-310,3.32866853258696e-310,3.327668932427e-310,3.32666933226706e-310,3.32566973210716e-310,3.3246701319472e-310,3.3236705317873e-310,3.32267093162737e-310,3.3216713314674e-310,3.32067173130747e-310,3.3196721311475e-310,3.3186725309876e-310,3.31767293082767e-310,3.31667333066777e-310,3.3156737305078e-310,3.31467413034787e-310,3.31367453018793e-310,3.312674930028e-310,3.31167532986803e-310,3.31067572970813e-310,3.3096761295482e-310,3.3086765293883e-310,3.30767692922833e-310,3.3066773290684e-310,3.30567772890843e-310,3.3046781287485e-310,3.30367852858854e-310,3.30267892842864e-310,3.3016793282687e-310,3.3006797281088e-310,3.29968012794884e-310,3.2986805277889e-310,3.29768092762894e-310,3.296681327469e-310,3.2956817273091e-310,3.29468212714914e-310,3.29368252698924e-310,3.2926829268293e-310,3.29168332666935e-310,3.2906837265094e-310,3.28968412634945e-310,3.2886845261895e-310,3.2876849260296e-310,3.28668532586965e-310,3.28568572570975e-310,3.2846861255498e-310,3.28368652538985e-310,3.2826869252299e-310,3.28168732506996e-310,3.28068772491e-310,3.2796881247501e-310,3.27868852459016e-310,3.27768892443026e-310,3.2766893242703e-310,3.27568972411036e-310,3.2746901239504e-310,3.27369052379046e-310,3.27269092363057e-310,3.2716913234706e-310,3.2706917233107e-310,3.26969212315077e-310,3.2686925229908e-310,3.26769292283087e-310,3.2666933226709e-310,3.26569372251097e-310,3.26469412235107e-310,3.2636945221911e-310,3.2626949220312e-310,3.2616953218713e-310,3.26069572171133e-310,3.2596961215514e-310,3.25869652139143e-310,3.2576969212315e-310,3.2566973210716e-310,3.25569772091163e-310,3.25469812075173e-310,3.2536985205918e-310,3.25269892043183e-310,3.2516993202719e-310,3.25069972011194e-310,3.24970011995204e-310,3.2487005197921e-310,3.2477009196322e-310,3.24670131947224e-310,3.2457017193123e-310,3.24470211915234e-310,3.2437025189924e-310,3.24270291883244e-310,3.24170331867255e-310,3.2407037185126e-310,3.2397041183527e-310,3.23870451819275e-310,3.2377049180328e-310,3.23670531787285e-310,3.2357057177129e-310,3.23470611755295e-310,3.23370651739305e-310,3.2327069172331e-310,3.2317073170732e-310,3.23070771691326e-310,3.2297081167533e-310,3.22870851659336e-310,3.2277089164334e-310,3.22670931627346e-310,3.22570971611356e-310,3.22471011595366e-310,3.2237105157937e-310,3.22271091563376e-310,3.2217113154738e-310,3.22071171531387e-310,3.2197121151539e-310,3.218712514994e-310,3.21771291483407e-310,3.21671331467417e-310,3.2157137145142e-310,3.21471411435427e-310,3.2137145141943e-310,3.21271491403437e-310,3.21171531387443e-310,3.21071571371453e-310,3.2097161135546e-310,3.2087165133947e-310,3.20771691323473e-310,3.2067173130748e-310,3.20571771291483e-310,3.2047181127549e-310,3.20371851259493e-310,3.20271891243503e-310,3.2017193122751e-310,3.2007197121152e-310,3.19972011195524e-310,3.1987205117953e-310,3.19772091163534e-310,3.1967213114754e-310,3.1957217113155e-310,3.19472211115554e-310,3.19372251099564e-310,3.1927229108357e-310,3.19172331067574e-310,3.1907237105158e-310,3.18972411035585e-310,3.1887245101959e-310,3.187724910036e-310,3.18672530987605e-310,3.18572570971615e-310,3.1847261095562e-310,3.18372650939625e-310,3.1827269092363e-310,3.18172730907635e-310,3.1807277089164e-310,3.1797281087565e-310,3.17872850859656e-310,3.17772890843666e-310,3.1767293082767e-310,3.17572970811676e-310,3.1747301079568e-310,3.17373050779686e-310,3.17273090763696e-310,3.171731307477e-310,3.1707317073171e-310,3.16973210715717e-310,3.1687325069972e-310,3.16773290683727e-310,3.1667333066773e-310,3.16573370651737e-310,3.16473410635747e-310,3.1637345061975e-310,3.1627349060376e-310,3.16173530587767e-310,3.1607357057177e-310,3.1597361055578e-310,3.15873650539783e-310,3.1577369052379e-310,3.156737305078e-310,3.15573770491803e-310,3.15473810475813e-310,3.1537385045982e-310,3.15273890443823e-310,3.1517393042783e-310,3.15073970411833e-310,3.14974010395843e-310,3.1487405037985e-310,3.1477409036386e-310,3.14674130347864e-310,3.1457417033187e-310,3.14474210315874e-310,3.1437425029988e-310,3.14274290283884e-310,3.14174330267894e-310,3.140743702519e-310,3.1397441023591e-310,3.13874450219915e-310,3.1377449020392e-310,3.13674530187925e-310,3.1357457017193e-310,3.13474610155935e-310,3.13374650139945e-310,3.1327469012395e-310,3.1317473010796e-310,3.13074770091965e-310,3.1297481007597e-310,3.12874850059976e-310,3.1277489004398e-310,3.12674930027986e-310,3.12574970011996e-310,3.12475009996006e-310,3.1237504998001e-310,3.12275089964016e-310,3.1217512994802e-310,3.12075169932026e-310,3.1197520991603e-310,3.1187524990004e-310,3.11775289884047e-310,3.11675329868057e-310,3.1157536985206e-310,3.11475409836067e-310,3.1137544982007e-310,3.11275489804077e-310,3.1117552978808e-310,3.1107556977209e-310,3.10975609756097e-310,3.10875649740107e-310,3.10775689724113e-310,3.1067572970812e-310,3.10575769692123e-310,3.1047580967613e-310,3.10375849660133e-310,3.10275889644143e-310,3.1017592962815e-310,3.1007596961216e-310,3.09976009596163e-310,3.0987604958017e-310,3.09776089564174e-310,3.0967612954818e-310,3.0957616953219e-310,3.09476209516194e-310,3.09376249500204e-310,3.0927628948421e-310,3.09176329468214e-310,3.0907636945222e-310,3.08976409436224e-310,3.0887644942023e-310,3.0877648940424e-310,3.08676529388245e-310,3.08576569372255e-310,3.0847660935626e-310,3.08376649340265e-310,3.0827668932427e-310,3.08176729308275e-310,3.0807676929228e-310,3.0797680927629e-310,3.07876849260295e-310,3.07776889244305e-310,3.0767692922831e-310,3.07576969212316e-310,3.0747700919632e-310,3.07377049180326e-310,3.07277089164336e-310,3.0717712914834e-310,3.0707716913235e-310,3.06977209116356e-310,3.0687724910036e-310,3.06777289084366e-310,3.0667732906837e-310,3.06577369052377e-310,3.06477409036387e-310,3.0637744902039e-310,3.062774890044e-310,3.06177528988407e-310,3.0607756897241e-310,3.05977608956417e-310,3.0587764894042e-310,3.05777688924427e-310,3.0567772890844e-310,3.05577768892443e-310,3.05477808876453e-310,3.0537784886046e-310,3.05277888844463e-310,3.0517792882847e-310,3.05077968812473e-310,3.0497800879648e-310,3.0487804878049e-310,3.047780887645e-310,3.04678128748503e-310,3.0457816873251e-310,3.04478208716514e-310,3.0437824870052e-310,3.04278288684524e-310,3.04178328668534e-310,3.0407836865254e-310,3.0397840863655e-310,3.03878448620554e-310,3.0377848860456e-310,3.03678528588564e-310,3.0357856857257e-310,3.03478608556575e-310,3.03378648540585e-310,3.0327868852459e-310,3.031787285086e-310,3.03078768492605e-310,3.0297880847661e-310,3.02878848460615e-310,3.0277888844462e-310,3.02678928428626e-310,3.02578968412636e-310,3.02479008396646e-310,3.0237904838065e-310,3.02279088364656e-310,3.0217912834866e-310,3.02079168332666e-310,3.0197920831667e-310,3.0187924830068e-310,3.01779288284686e-310,3.01679328268696e-310,3.015793682527e-310,3.01479408236707e-310,3.0137944822071e-310,3.01279488204717e-310,3.0117952818872e-310,3.0107956817273e-310,3.00979608156737e-310,3.00879648140747e-310,3.0077968812475e-310,3.00679728108757e-310,3.00579768092763e-310,3.0047980807677e-310,3.00379848060773e-310,3.00279888044783e-310,3.0017992802879e-310,3.000799680128e-310,2.99980007996803e-310,2.9988004798081e-310,2.99780087964813e-310,2.9968012794882e-310,2.9958016793283e-310,2.99480207916834e-310,2.99380247900844e-310,2.9928028788485e-310,2.99180327868854e-310,2.9908036785286e-310,2.98980407836864e-310,2.9888044782087e-310,2.9878048780488e-310,2.98680527788884e-310,2.98580567772894e-310,2.984806077569e-310,2.98380647740905e-310,2.9828068772491e-310,2.98180727708915e-310,2.9808076769292e-310,2.9798080767693e-310,2.97880847660935e-310,2.97780887644945e-310,2.9768092762895e-310,2.97580967612955e-310,2.9748100759696e-310,2.97381047580966e-310,2.97281087564976e-310,2.9718112754898e-310,2.9708116753299e-310,2.96981207516996e-310,2.96881247501e-310,2.96781287485006e-310,2.9668132746901e-310,2.96581367453016e-310,2.96481407437026e-310,2.9638144742103e-310,2.9628148740504e-310,2.96181527389047e-310,2.9608156737305e-310,2.95981607357057e-310,2.9588164734106e-310,2.95781687325067e-310,2.95681727309077e-310,2.9558176729308e-310,2.9548180727709e-310,2.953818472611e-310,2.95281887245103e-310,2.9518192722911e-310,2.95081967213113e-310,2.94982007197123e-310,2.9488204718113e-310,2.9478208716514e-310,2.94682127149143e-310,2.9458216713315e-310,2.94482207117153e-310,2.9438224710116e-310,2.94282287085164e-310,2.94182327069174e-310,2.9408236705318e-310,2.9398240703719e-310,2.93882447021194e-310,2.937824870052e-310,2.93682526989204e-310,2.9358256697321e-310,2.93482606957214e-310,2.93382646941224e-310,2.9328268692523e-310,2.9318272690924e-310,2.93082766893245e-310,2.9298280687725e-310,2.92882846861255e-310,2.9278288684526e-310,2.92682926829265e-310,2.92582966813275e-310,2.9248300679728e-310,2.9238304678129e-310,2.92283086765296e-310,2.921831267493e-310,2.92083166733306e-310,2.9198320671731e-310,2.9188324670132e-310,2.91783286685326e-310,2.91683326669336e-310,2.9158336665334e-310,2.91483406637346e-310,2.9138344662135e-310,2.91283486605357e-310,2.9118352658936e-310,2.9108356657337e-310,2.90983606557377e-310,2.90883646541387e-310,2.9078368652539e-310,2.90683726509397e-310,2.905837664934e-310,2.90483806477407e-310,2.9038384646141e-310,2.90283886445423e-310,2.9018392642943e-310,2.9008396641344e-310,2.89984006397443e-310,2.8988404638145e-310,2.89784086365453e-310,2.8968412634946e-310,2.8958416633347e-310,2.89484206317473e-310,2.89384246301483e-310,2.8928428628549e-310,2.89184326269494e-310,2.890843662535e-310,2.88984406237504e-310,2.8888444622151e-310,2.8878448620552e-310,2.88684526189524e-310,2.88584566173534e-310,2.8848460615754e-310,2.88384646141544e-310,2.8828468612555e-310,2.88184726109555e-310,2.8808476609356e-310,2.8798480607757e-310,2.87884846061575e-310,2.87784886045585e-310,2.8768492602959e-310,2.87584966013595e-310,2.874850059976e-310,2.87385045981605e-310,2.87285085965615e-310,2.8718512594962e-310,2.8708516593363e-310,2.86985205917636e-310,2.8688524590164e-310,2.86785285885646e-310,2.8668532586965e-310,2.86585365853656e-310,2.86485405837666e-310,2.8638544582167e-310,2.8628548580568e-310,2.86185525789686e-310,2.8608556577369e-310,2.85985605757697e-310,2.858856457417e-310,2.85785685725707e-310,2.85685725709717e-310,2.8558576569372e-310,2.8548580567773e-310,2.85385845661737e-310,2.8528588564574e-310,2.85185925629747e-310,2.85085965613753e-310,2.84986005597763e-310,2.8488604558177e-310,2.8478608556578e-310,2.84686125549783e-310,2.8458616553379e-310,2.84486205517793e-310,2.843862455018e-310,2.84286285485803e-310,2.84186325469813e-310,2.8408636545382e-310,2.8398640543783e-310,2.83886445421834e-310,2.8378648540584e-310,2.83686525389844e-310,2.8358656537385e-310,2.83486605357854e-310,2.83386645341864e-310,2.8328668532587e-310,2.8318672530988e-310,2.83086765293885e-310,2.8298680527789e-310,2.82886845261895e-310,2.827868852459e-310,2.82686925229905e-310,2.82586965213915e-310,2.8248700519792e-310,2.8238704518193e-310,2.82287085165935e-310,2.8218712514994e-310,2.82087165133946e-310,2.8198720511795e-310,2.8188724510196e-310,2.81787285085966e-310,2.81687325069976e-310,2.8158736505398e-310,2.81487405037986e-310,2.8138744502199e-310,2.81287485005996e-310,2.8118752499e-310,2.8108756497401e-310,2.80987604958017e-310,2.80887644942027e-310,2.8078768492603e-310,2.80687724910037e-310,2.8058776489404e-310,2.80487804878047e-310,2.8038784486205e-310,2.8028788484606e-310,2.80187924830067e-310,2.80087964814077e-310,2.79988004798083e-310,2.7988804478209e-310,2.79788084766093e-310,2.796881247501e-310,2.7958816473411e-310,2.79488204718113e-310,2.79388244702123e-310,2.7928828468613e-310,2.79188324670133e-310,2.7908836465414e-310,2.78988404638144e-310,2.7888844462215e-310,2.7878848460616e-310,2.78688524590164e-310,2.78588564574174e-310,2.7848860455818e-310,2.78388644542184e-310,2.7828868452619e-310,2.78188724510194e-310,2.780887644942e-310,2.7798880447821e-310,2.77888844462215e-310,2.77788884446225e-310,2.7768892443023e-310,2.77588964414235e-310,2.7748900439824e-310,2.77389044382245e-310,2.77289084366255e-310,2.7718912435026e-310,2.7708916433427e-310,2.76989204318275e-310,2.7688924430228e-310,2.76789284286286e-310,2.7668932427029e-310,2.76589364254296e-310,2.76489404238306e-310,2.7638944422231e-310,2.7628948420632e-310,2.76189524190326e-310,2.7608956417433e-310,2.75989604158336e-310,2.7588964414234e-310,2.75789684126347e-310,2.75689724110357e-310,2.7558976409436e-310,2.7548980407837e-310,2.75389844062377e-310,2.7528988404638e-310,2.75189924030387e-310,2.7508996401439e-310,2.74990003998397e-310,2.74890043982408e-310,2.7479008396642e-310,2.74690123950423e-310,2.7459016393443e-310,2.74490203918433e-310,2.7439024390244e-310,2.74290283886443e-310,2.74190323870453e-310,2.7409036385446e-310,2.7399040383847e-310,2.73890443822473e-310,2.7379048380648e-310,2.73690523790484e-310,2.7359056377449e-310,2.73490603758494e-310,2.73390643742504e-310,2.7329068372651e-310,2.7319072371052e-310,2.73090763694524e-310,2.7299080367853e-310,2.72890843662534e-310,2.7279088364654e-310,2.72690923630545e-310,2.72590963614555e-310,2.72491003598565e-310,2.7239104358257e-310,2.72291083566575e-310,2.7219112355058e-310,2.72091163534585e-310,2.7199120351859e-310,2.718912435026e-310,2.71791283486606e-310,2.71691323470616e-310,2.7159136345462e-310,2.71491403438626e-310,2.7139144342263e-310,2.71291483406636e-310,2.7119152339064e-310,2.7109156337465e-310,2.70991603358656e-310,2.70891643342666e-310,2.7079168332667e-310,2.70691723310677e-310,2.7059176329468e-310,2.70491803278687e-310,2.7039184326269e-310,2.702918832467e-310,2.70191923230707e-310,2.70091963214717e-310,2.6999200319872e-310,2.69892043182727e-310,2.69792083166732e-310,2.6969212315074e-310,2.6959216313475e-310,2.69492203118753e-310,2.69392243102763e-310,2.6929228308677e-310,2.69192323070773e-310,2.6909236305478e-310,2.68992403038783e-310,2.6889244302279e-310,2.687924830068e-310,2.68692522990804e-310,2.68592562974814e-310,2.6849260295882e-310,2.68392642942824e-310,2.6829268292683e-310,2.68192722910834e-310,2.6809276289484e-310,2.6799280287885e-310,2.67892842862854e-310,2.67792882846864e-310,2.6769292283087e-310,2.67592962814875e-310,2.6749300279888e-310,2.67393042782885e-310,2.67293082766895e-310,2.671931227509e-310,2.6709316273491e-310,2.66993202718915e-310,2.6689324270292e-310,2.66793282686925e-310,2.6669332267093e-310,2.66593362654936e-310,2.66493402638946e-310,2.6639344262295e-310,2.6629348260696e-310,2.66193522590966e-310,2.6609356257497e-310,2.65993602558976e-310,2.6589364254298e-310,2.65793682526986e-310,2.65693722510996e-310,2.65593762495e-310,2.6549380247901e-310,2.65393842463017e-310,2.6529388244702e-310,2.65193922431027e-310,2.6509396241503e-310,2.6499400239904e-310,2.64894042383047e-310,2.64794082367057e-310,2.6469412235106e-310,2.64594162335068e-310,2.64494202319073e-310,2.6439424230308e-310,2.64294282287083e-310,2.64194322271093e-310,2.640943622551e-310,2.6399440223911e-310,2.63894442223113e-310,2.6379448220712e-310,2.63694522191123e-310,2.6359456217513e-310,2.63494602159134e-310,2.63394642143144e-310,2.6329468212715e-310,2.6319472211116e-310,2.63094762095164e-310,2.6299480207917e-310,2.62894842063174e-310,2.6279488204718e-310,2.62694922031184e-310,2.62594962015194e-310,2.624950019992e-310,2.6239504198321e-310,2.62295081967215e-310,2.6219512195122e-310,2.62095161935225e-310,2.6199520191923e-310,2.6189524190324e-310,2.61795281887245e-310,2.61695321871255e-310,2.6159536185526e-310,2.61495401839266e-310,2.6139544182327e-310,2.61295481807276e-310,2.6119552179128e-310,2.6109556177529e-310,2.60995601759296e-310,2.60895641743306e-310,2.6079568172731e-310,2.60695721711316e-310,2.6059576169532e-310,2.60495801679327e-310,2.6039584166333e-310,2.6029588164734e-310,2.60195921631347e-310,2.60095961615357e-310,2.5999600159936e-310,2.59896041583367e-310,2.5979608156737e-310,2.59696121551377e-310,2.59596161535387e-310,2.59496201519392e-310,2.59396241503403e-310,2.5929628148741e-310,2.59196321471413e-310,2.5909636145542e-310,2.58996401439423e-310,2.5889644142343e-310,2.5879648140744e-310,2.58696521391443e-310,2.58596561375453e-310,2.5849660135946e-310,2.58396641343464e-310,2.5829668132747e-310,2.58196721311474e-310,2.5809676129548e-310,2.5799680127949e-310,2.57896841263494e-310,2.57796881247504e-310,2.5769692123151e-310,2.57596961215514e-310,2.5749700119952e-310,2.57397041183525e-310,2.57297081167535e-310,2.5719712115154e-310,2.5709716113555e-310,2.56997201119555e-310,2.5689724110356e-310,2.56797281087565e-310,2.5669732107157e-310,2.56597361055575e-310,2.56497401039585e-310,2.5639744102359e-310,2.562974810076e-310,2.56197520991606e-310,2.5609756097561e-310,2.55997600959616e-310,2.5589764094362e-310,2.55797680927626e-310,2.55697720911636e-310,2.5559776089564e-310,2.5549780087965e-310,2.55397840863656e-310,2.5529788084766e-310,2.55197920831667e-310,2.5509796081567e-310,2.54998000799677e-310,2.54898040783687e-310,2.54798080767697e-310,2.546981207517e-310,2.54598160735707e-310,2.5449820071971e-310,2.54398240703717e-310,2.54298280687723e-310,2.54198320671733e-310,2.5409836065574e-310,2.5399840063975e-310,2.53898440623753e-310,2.5379848060776e-310,2.53698520591763e-310,2.5359856057577e-310,2.53498600559773e-310,2.53398640543783e-310,2.5329868052779e-310,2.531987205118e-310,2.53098760495804e-310,2.5299880047981e-310,2.52898840463814e-310,2.5279888044782e-310,2.52698920431824e-310,2.52598960415834e-310,2.5249900039984e-310,2.5239904038385e-310,2.52299080367854e-310,2.5219912035186e-310,2.52099160335865e-310,2.5199920031987e-310,2.5189924030388e-310,2.51799280287885e-310,2.51699320271895e-310,2.515993602559e-310,2.51499400239905e-310,2.5139944022391e-310,2.51299480207915e-310,2.5119952019192e-310,2.5109956017593e-310,2.50999600159936e-310,2.50899640143946e-310,2.5079968012795e-310,2.50699720111956e-310,2.5059976009596e-310,2.50499800079966e-310,2.5039984006397e-310,2.5029988004798e-310,2.50199920031987e-310,2.50099960015997e-310,2.5e-310,2.49900039984007e-310,2.4980007996801e-310,2.49700119952017e-310,2.49600159936027e-310,2.4950019992003e-310,2.4940023990404e-310,2.49300279888047e-310,2.49200319872052e-310,2.4910035985606e-310,2.49000399840063e-310,2.4890043982407e-310,2.4880047980808e-310,2.48700519792083e-310,2.48600559776093e-310,2.485005997601e-310,2.48400639744103e-310,2.4830067972811e-310,2.48200719712113e-310,2.4810075969612e-310,2.4800079968013e-310,2.47900839664134e-310,2.47800879648144e-310,2.4770091963215e-310,2.47600959616154e-310,2.4750099960016e-310,2.47401039584164e-310,2.47301079568174e-310,2.4720111955218e-310,2.4710115953619e-310,2.47001199520195e-310,2.469012395042e-310,2.46801279488205e-310,2.4670131947221e-310,2.46601359456215e-310,2.46501399440225e-310,2.4640143942423e-310,2.4630147940824e-310,2.46201519392245e-310,2.4610155937625e-310,2.46001599360256e-310,2.4590163934426e-310,2.45801679328266e-310,2.45701719312276e-310,2.4560175929628e-310,2.4550179928029e-310,2.45401839264296e-310,2.453018792483e-310,2.45201919232306e-310,2.4510195921631e-310,2.4500199920032e-310,2.44902039184327e-310,2.44802079168337e-310,2.4470211915234e-310,2.44602159136347e-310,2.4450219912035e-310,2.44402239104357e-310,2.4430227908836e-310,2.4420231907237e-310,2.44102359056377e-310,2.44002399040388e-310,2.43902439024393e-310,2.438024790084e-310,2.43702518992403e-310,2.4360255897641e-310,2.43502598960413e-310,2.43402638944423e-310,2.4330267892843e-310,2.4320271891244e-310,2.43102758896443e-310,2.4300279888045e-310,2.42902838864454e-310,2.4280287884846e-310,2.42702918832464e-310,2.42602958816474e-310,2.42502998800484e-310,2.4240303878449e-310,2.42303078768494e-310,2.422031187525e-310,2.42103158736504e-310,2.4200319872051e-310,2.4190323870452e-310,2.41803278688525e-310,2.41703318672535e-310,2.4160335865654e-310,2.41503398640545e-310,2.4140343862455e-310,2.41303478608555e-310,2.4120351859256e-310,2.4110355857657e-310,2.41003598560575e-310,2.40903638544586e-310,2.4080367852859e-310,2.40703718512596e-310,2.406037584966e-310,2.40503798480606e-310,2.4040383846461e-310,2.4030387844862e-310,2.40203918432626e-310,2.40103958416636e-310,2.4000399840064e-310,2.39904038384647e-310,2.3980407836865e-310,2.39704118352657e-310,2.39604158336667e-310,2.3950419832067e-310,2.3940423830468e-310,2.39304278288687e-310,2.3920431827269e-310,2.39104358256697e-310,2.390043982407e-310,2.3890443822471e-310,2.3880447820872e-310,2.38704518192723e-310,2.38604558176733e-310,2.3850459816074e-310,2.38404638144743e-310,2.3830467812875e-310,2.38204718112753e-310,2.3810475809676e-310,2.3800479808077e-310,2.37904838064774e-310,2.37804878048784e-310,2.3770491803279e-310,2.37604958016794e-310,2.375049980008e-310,2.37405037984804e-310,2.37305077968814e-310,2.3720511795282e-310,2.3710515793683e-310,2.37005197920834e-310,2.3690523790484e-310,2.36805277888845e-310,2.3670531787285e-310,2.36605357856855e-310,2.36505397840865e-310,2.3640543782487e-310,2.3630547780888e-310,2.36205517792885e-310,2.3610555777689e-310,2.36005597760895e-310,2.359056377449e-310,2.35805677728906e-310,2.35705717712916e-310,2.3560575769692e-310,2.3550579768093e-310,2.35405837664936e-310,2.3530587764894e-310,2.35205917632946e-310,2.3510595761695e-310,2.3500599760096e-310,2.34906037584966e-310,2.34806077568976e-310,2.3470611755298e-310,2.34606157536987e-310,2.3450619752099e-310,2.34406237504997e-310,2.34306277489e-310,2.3420631747301e-310,2.34106357457017e-310,2.34006397441027e-310,2.3390643742503e-310,2.33806477409037e-310,2.33706517393043e-310,2.3360655737705e-310,2.33506597361053e-310,2.33406637345063e-310,2.3330667732907e-310,2.3320671731308e-310,2.33106757297083e-310,2.3300679728109e-310,2.32906837265093e-310,2.328068772491e-310,2.32706917233104e-310,2.32606957217114e-310,2.3250699720112e-310,2.3240703718513e-310,2.32307077169134e-310,2.3220711715314e-310,2.32107157137144e-310,2.3200719712115e-310,2.3190723710516e-310,2.31807277089164e-310,2.31707317073174e-310,2.3160735705718e-310,2.31507397041185e-310,2.3140743702519e-310,2.31307477009195e-310,2.312075169932e-310,2.3110755697721e-310,2.31007596961215e-310,2.30907636945225e-310,2.3080767692923e-310,2.30707716913235e-310,2.3060775689724e-310,2.30507796881246e-310,2.3040783686525e-310,2.3030787684926e-310,2.30207916833266e-310,2.30107956817276e-310,2.3000799680128e-310,2.29908036785286e-310,2.2980807676929e-310,2.29708116753296e-310,2.29608156737307e-310,2.2950819672131e-310,2.2940823670532e-310,2.29308276689327e-310,2.2920831667333e-310,2.29108356657337e-310,2.2900839664134e-310,2.28908436625347e-310,2.28808476609357e-310,2.2870851659336e-310,2.28608556577373e-310,2.2850859656138e-310,2.28408636545383e-310,2.2830867652939e-310,2.28208716513393e-310,2.281087564974e-310,2.2800879648141e-310,2.27908836465413e-310,2.27808876449423e-310,2.2770891643343e-310,2.27608956417434e-310,2.2750899640144e-310,2.27409036385444e-310,2.27309076369454e-310,2.2720911635346e-310,2.2710915633747e-310,2.27009196321474e-310,2.2690923630548e-310,2.26809276289484e-310,2.2670931627349e-310,2.26609356257495e-310,2.26509396241505e-310,2.2640943622551e-310,2.2630947620952e-310,2.26209516193525e-310,2.2610955617753e-310,2.26009596161535e-310,2.2590963614554e-310,2.25809676129545e-310,2.25709716113555e-310,2.2560975609756e-310,2.2550979608157e-310,2.25409836065576e-310,2.2530987604958e-310,2.25209916033586e-310,2.2510995601759e-310,2.25009996001596e-310,2.24910035985606e-310,2.24810075969616e-310,2.2471011595362e-310,2.24610155937626e-310,2.2451019592163e-310,2.24410235905637e-310,2.2431027588964e-310,2.2421031587365e-310,2.24110355857657e-310,2.24010395841667e-310,2.2391043582567e-310,2.23810475809677e-310,2.2371051579368e-310,2.23610555777687e-310,2.23510595761693e-310,2.23410635745703e-310,2.2331067572971e-310,2.2321071571372e-310,2.23110755697723e-310,2.2301079568173e-310,2.22910835665733e-310,2.2281087564974e-310,2.22710915633743e-310,2.22610955617753e-310,2.22510995601763e-310,2.2241103558577e-310,2.22311075569774e-310,2.2221111555378e-310,2.22111155537784e-310,2.2201119552179e-310,2.219112355058e-310,2.21811275489804e-310,2.21711315473814e-310,2.2161135545782e-310,2.21511395441824e-310,2.2141143542583e-310,2.21311475409835e-310,2.2121151539384e-310,2.2111155537785e-310,2.21011595361855e-310,2.20911635345865e-310,2.2081167532987e-310,2.20711715313875e-310,2.2061175529788e-310,2.20511795281885e-310,2.2041183526589e-310,2.203118752499e-310,2.20211915233906e-310,2.20111955217916e-310,2.2001199520192e-310,2.19912035185926e-310,2.1981207516993e-310,2.19712115153936e-310,2.19612155137946e-310,2.1951219512195e-310,2.1941223510596e-310,2.19312275089967e-310,2.1921231507397e-310,2.19112355057977e-310,2.1901239504198e-310,2.18912435025987e-310,2.18812475009997e-310,2.18712514994e-310,2.1861255497801e-310,2.18512594962017e-310,2.1841263494602e-310,2.1831267493003e-310,2.18212714914033e-310,2.1811275489804e-310,2.1801279488205e-310,2.17912834866053e-310,2.17812874850063e-310,2.1771291483407e-310,2.17612954818073e-310,2.1751299480208e-310,2.17413034786083e-310,2.17313074770094e-310,2.172131147541e-310,2.1711315473811e-310,2.17013194722114e-310,2.1691323470612e-310,2.16813274690124e-310,2.1671331467413e-310,2.16613354658134e-310,2.16513394642144e-310,2.1641343462615e-310,2.1631347461016e-310,2.16213514594165e-310,2.1611355457817e-310,2.16013594562175e-310,2.1591363454618e-310,2.15813674530185e-310,2.15713714514195e-310,2.156137544982e-310,2.1551379448221e-310,2.15413834466215e-310,2.1531387445022e-310,2.15213914434226e-310,2.1511395441823e-310,2.1501399440224e-310,2.14914034386246e-310,2.14814074370256e-310,2.1471411435426e-310,2.14614154338266e-310,2.1451419432227e-310,2.14414234306276e-310,2.1431427429028e-310,2.1421431427429e-310,2.14114354258297e-310,2.14014394242307e-310,2.1391443422631e-310,2.13814474210317e-310,2.1371451419432e-310,2.13614554178327e-310,2.1351459416233e-310,2.1341463414634e-310,2.13314674130347e-310,2.13214714114357e-310,2.13114754098363e-310,2.1301479408237e-310,2.12914834066373e-310,2.1281487405038e-310,2.12714914034383e-310,2.12614954018393e-310,2.125149940024e-310,2.1241503398641e-310,2.12315073970413e-310,2.1221511395442e-310,2.12115153938424e-310,2.1201519392243e-310,2.1191523390644e-310,2.11815273890444e-310,2.11715313874454e-310,2.1161535385846e-310,2.11515393842464e-310,2.1141543382647e-310,2.11315473810474e-310,2.1121551379448e-310,2.1111555377849e-310,2.11015593762495e-310,2.10915633746505e-310,2.1081567373051e-310,2.10715713714515e-310,2.1061575369852e-310,2.10515793682525e-310,2.1041583366653e-310,2.1031587365054e-310,2.10215913634545e-310,2.10115953618556e-310,2.1001599360256e-310,2.09916033586566e-310,2.0981607357057e-310,2.09716113554576e-310,2.09616153538586e-310,2.0951619352259e-310,2.094162335066e-310,2.09316273490606e-310,2.0921631347461e-310,2.09116353458617e-310,2.0901639344262e-310,2.08916433426627e-310,2.08816473410637e-310,2.0871651339464e-310,2.0861655337865e-310,2.08516593362657e-310,2.0841663334666e-310,2.08316673330667e-310,2.0821671331467e-310,2.08116753298678e-310,2.0801679328269e-310,2.07916833266693e-310,2.07816873250703e-310,2.0771691323471e-310,2.07616953218713e-310,2.0751699320272e-310,2.07417033186723e-310,2.07317073170733e-310,2.0721711315474e-310,2.0711715313875e-310,2.07017193122754e-310,2.0691723310676e-310,2.06817273090764e-310,2.0671731307477e-310,2.06617353058774e-310,2.06517393042784e-310,2.0641743302679e-310,2.063174730108e-310,2.06217512994804e-310,2.0611755297881e-310,2.06017592962815e-310,2.0591763294682e-310,2.05817672930825e-310,2.05717712914835e-310,2.0561775289884e-310,2.0551779288285e-310,2.05417832866855e-310,2.0531787285086e-310,2.05217912834865e-310,2.0511795281887e-310,2.05017992802876e-310,2.04918032786886e-310,2.04818072770896e-310,2.047181127549e-310,2.04618152738906e-310,2.0451819272291e-310,2.04418232706916e-310,2.0431827269092e-310,2.0421831267493e-310,2.04118352658936e-310,2.04018392642946e-310,2.0391843262695e-310,2.03818472610957e-310,2.0371851259496e-310,2.03618552578967e-310,2.0351859256297e-310,2.0341863254698e-310,2.03318672530987e-310,2.03218712514997e-310,2.03118752499e-310,2.03018792483007e-310,2.02918832467013e-310,2.0281887245102e-310,2.02718912435023e-310,2.02618952419033e-310,2.0251899240304e-310,2.0241903238705e-310,2.02319072371053e-310,2.0221911235506e-310,2.02119152339063e-310,2.0201919232307e-310,2.0191923230708e-310,2.01819272291084e-310,2.01719312275094e-310,2.016193522591e-310,2.01519392243104e-310,2.0141943222711e-310,2.01319472211114e-310,2.0121951219512e-310,2.0111955217913e-310,2.01019592163134e-310,2.00919632147144e-310,2.0081967213115e-310,2.00719712115155e-310,2.0061975209916e-310,2.00519792083165e-310,2.0041983206717e-310,2.0031987205118e-310,2.00219912035185e-310,2.00119952019195e-310,2.000199920032e-310,1.99920031987205e-310,1.9982007197121e-310,1.99720111955216e-310,1.99620151939226e-310,1.9952019192323e-310,1.9942023190724e-310,1.99320271891246e-310,1.9922031187525e-310,1.99120351859256e-310,1.9902039184326e-310,1.98920431827266e-310,1.98820471811277e-310,1.9872051179528e-310,1.9862055177929e-310,1.98520591763297e-310,1.984206317473e-310,1.98320671731307e-310,1.9822071171531e-310,1.98120751699317e-310,1.98020791683327e-310,1.9792083166733e-310,1.9782087165134e-310,1.9772091163535e-310,1.97620951619353e-310,1.9752099160336e-310,1.97421031587363e-310,1.97321071571373e-310,1.9722111155538e-310,1.9712115153939e-310,1.97021191523393e-310,1.969212315074e-310,1.96821271491403e-310,1.9672131147541e-310,1.96621351459414e-310,1.96521391443424e-310,1.9642143142743e-310,1.9632147141144e-310,1.96221511395444e-310,1.9612155137945e-310,1.96021591363454e-310,1.9592163134746e-310,1.95821671331464e-310,1.95721711315475e-310,1.9562175129948e-310,1.9552179128349e-310,1.95421831267495e-310,1.953218712515e-310,1.95221911235505e-310,1.9512195121951e-310,1.95021991203515e-310,1.94922031187525e-310,1.94822071171535e-310,1.9472211115554e-310,1.94622151139546e-310,1.9452219112355e-310,1.94422231107556e-310,1.9432227109156e-310,1.9422231107557e-310,1.94122351059576e-310,1.94022391043586e-310,1.9392243102759e-310,1.93822471011596e-310,1.937225109956e-310,1.93622550979607e-310,1.9352259096361e-310,1.9342263094762e-310,1.93322670931627e-310,1.93222710915637e-310,1.9312275089964e-310,1.93022790883647e-310,1.9292283086765e-310,1.92822870851657e-310,1.92722910835663e-310,1.92622950819673e-310,1.9252299080368e-310,1.9242303078769e-310,1.92323070771693e-310,1.922231107557e-310,1.92123150739703e-310,1.9202319072371e-310,1.9192323070772e-310,1.91823270691723e-310,1.91723310675733e-310,1.9162335065974e-310,1.91523390643744e-310,1.9142343062775e-310,1.91323470611754e-310,1.9122351059576e-310,1.9112355057977e-310,1.91023590563774e-310,1.90923630547784e-310,1.9082367053179e-310,1.90723710515794e-310,1.906237504998e-310,1.90523790483805e-310,1.9042383046781e-310,1.9032387045182e-310,1.90223910435825e-310,1.90123950419835e-310,1.9002399040384e-310,1.89924030387845e-310,1.8982407037185e-310,1.89724110355855e-310,1.89624150339865e-310,1.8952419032387e-310,1.8942423030788e-310,1.89324270291886e-310,1.8922431027589e-310,1.89124350259896e-310,1.890243902439e-310,1.88924430227906e-310,1.88824470211916e-310,1.8872451019592e-310,1.8862455017993e-310,1.88524590163937e-310,1.8842463014794e-310,1.88324670131947e-310,1.8822471011595e-310,1.88124750099957e-310,1.88024790083967e-310,1.8792483006797e-310,1.8782487005198e-310,1.87724910035987e-310,1.8762495001999e-310,1.87524990004e-310,1.87425029988003e-310,1.87325069972013e-310,1.8722510995602e-310,1.8712514994003e-310,1.87025189924033e-310,1.8692522990804e-310,1.86825269892043e-310,1.8672530987605e-310,1.86625349860053e-310,1.86525389844063e-310,1.8642542982807e-310,1.8632546981208e-310,1.86225509796084e-310,1.8612554978009e-310,1.86025589764094e-310,1.859256297481e-310,1.85825669732104e-310,1.85725709716114e-310,1.8562574970012e-310,1.8552578968413e-310,1.85425829668135e-310,1.8532586965214e-310,1.85225909636145e-310,1.8512594962015e-310,1.85025989604155e-310,1.84926029588165e-310,1.84826069572175e-310,1.8472610955618e-310,1.84626149540185e-310,1.8452618952419e-310,1.84426229508196e-310,1.843262694922e-310,1.8422630947621e-310,1.84126349460216e-310,1.84026389444226e-310,1.8392642942823e-310,1.83826469412236e-310,1.8372650939624e-310,1.83626549380246e-310,1.8352658936425e-310,1.8342662934826e-310,1.83326669332267e-310,1.83226709316277e-310,1.8312674930028e-310,1.83026789284287e-310,1.8292682926829e-310,1.82826869252297e-310,1.827269092363e-310,1.8262694922031e-310,1.82526989204317e-310,1.82427029188327e-310,1.82327069172333e-310,1.8222710915634e-310,1.82127149140343e-310,1.8202718912435e-310,1.8192722910836e-310,1.81827269092363e-310,1.81727309076373e-310,1.8162734906038e-310,1.81527389044383e-310,1.8142742902839e-310,1.81327469012394e-310,1.812275089964e-310,1.8112754898041e-310,1.81027588964414e-310,1.80927628948424e-310,1.8082766893243e-310,1.80727708916434e-310,1.8062774890044e-310,1.80527788884444e-310,1.8042782886845e-310,1.8032786885246e-310,1.80227908836465e-310,1.80127948820475e-310,1.8002798880448e-310,1.79928028788485e-310,1.7982806877249e-310,1.79728108756495e-310,1.79628148740505e-310,1.7952818872451e-310,1.7942822870852e-310,1.79328268692525e-310,1.7922830867653e-310,1.79128348660536e-310,1.7902838864454e-310,1.78928428628546e-310,1.78828468612556e-310,1.7872850859656e-310,1.7862854858057e-310,1.78528588564576e-310,1.7842862854858e-310,1.78328668532586e-310,1.7822870851659e-310,1.78128748500597e-310,1.78028788484607e-310,1.7792882846861e-310,1.7782886845262e-310,1.77728908436627e-310,1.7762894842063e-310,1.77528988404637e-310,1.7742902838864e-310,1.7732906837265e-310,1.7722910835666e-310,1.7712914834067e-310,1.77029188324673e-310,1.7692922830868e-310,1.76829268292683e-310,1.7672930827669e-310,1.76629348260693e-310,1.76529388244703e-310,1.7642942822871e-310,1.7632946821272e-310,1.76229508196723e-310,1.7612954818073e-310,1.76029588164734e-310,1.7592962814874e-310,1.75829668132744e-310,1.75729708116754e-310,1.7562974810076e-310,1.7552978808477e-310,1.75429828068774e-310,1.7532986805278e-310,1.75229908036784e-310,1.7512994802079e-310,1.75029988004795e-310,1.74930027988805e-310,1.74830067972815e-310,1.7473010795682e-310,1.74630147940825e-310,1.7453018792483e-310,1.74430227908835e-310,1.7433026789284e-310,1.7423030787685e-310,1.74130347860856e-310,1.74030387844866e-310,1.7393042782887e-310,1.73830467812876e-310,1.7373050779688e-310,1.73630547780886e-310,1.7353058776489e-310,1.734306277489e-310,1.73330667732906e-310,1.73230707716916e-310,1.7313074770092e-310,1.73030787684927e-310,1.7293082766893e-310,1.72830867652937e-310,1.7273090763694e-310,1.7263094762095e-310,1.72530987604957e-310,1.72431027588967e-310,1.7233106757297e-310,1.72231107556977e-310,1.72131147540983e-310,1.7203118752499e-310,1.71931227509e-310,1.71831267493003e-310,1.71731307477013e-310,1.7163134746102e-310,1.71531387445023e-310,1.7143142742903e-310,1.71331467413033e-310,1.7123150739704e-310,1.7113154738105e-310,1.71031587365054e-310,1.70931627349064e-310,1.7083166733307e-310,1.70731707317074e-310,1.7063174730108e-310,1.70531787285084e-310,1.7043182726909e-310,1.703318672531e-310,1.70231907237104e-310,1.70131947221114e-310,1.7003198720512e-310,1.69932027189125e-310,1.6983206717313e-310,1.69732107157135e-310,1.69632147141145e-310,1.6953218712515e-310,1.6943222710916e-310,1.69332267093165e-310,1.6923230707717e-310,1.69132347061175e-310,1.6903238704518e-310,1.68932427029186e-310,1.68832467013196e-310,1.687325069972e-310,1.6863254698121e-310,1.68532586965216e-310,1.6843262694922e-310,1.68332666933226e-310,1.6823270691723e-310,1.68132746901236e-310,1.68032786885246e-310,1.6793282686925e-310,1.6783286685326e-310,1.67732906837267e-310,1.6763294682127e-310,1.67532986805277e-310,1.6743302678928e-310,1.6733306677329e-310,1.67233106757297e-310,1.67133146741307e-310,1.6703318672531e-310,1.6693322670932e-310,1.66833266693323e-310,1.6673330667733e-310,1.66633346661333e-310,1.66533386645343e-310,1.6643342662935e-310,1.6633346661336e-310,1.66233506597363e-310,1.6613354658137e-310,1.66033586565373e-310,1.6593362654938e-310,1.65833666533384e-310,1.65733706517394e-310,1.656337465014e-310,1.6553378648541e-310,1.65433826469414e-310,1.6533386645342e-310,1.65233906437424e-310,1.6513394642143e-310,1.65033986405434e-310,1.64934026389445e-310,1.64834066373455e-310,1.6473410635746e-310,1.64634146341465e-310,1.6453418632547e-310,1.64434226309475e-310,1.6433426629348e-310,1.6423430627749e-310,1.64134346261495e-310,1.64034386245505e-310,1.6393442622951e-310,1.63834466213516e-310,1.6373450619752e-310,1.63634546181526e-310,1.6353458616553e-310,1.6343462614954e-310,1.63334666133546e-310,1.63234706117556e-310,1.6313474610156e-310,1.63034786085566e-310,1.6293482606957e-310,1.62834866053577e-310,1.6273490603758e-310,1.6263494602159e-310,1.62534986005597e-310,1.62435025989607e-310,1.6233506597361e-310,1.62235105957617e-310,1.6213514594162e-310,1.62035185925627e-310,1.61935225909637e-310,1.61835265893643e-310,1.61735305877653e-310,1.6163534586166e-310,1.61535385845663e-310,1.6143542582967e-310,1.61335465813673e-310,1.6123550579768e-310,1.6113554578169e-310,1.61035585765693e-310,1.60935625749703e-310,1.6083566573371e-310,1.60735705717714e-310,1.6063574570172e-310,1.60535785685724e-310,1.6043582566973e-310,1.6033586565374e-310,1.60235905637744e-310,1.60135945621754e-310,1.6003598560576e-310,1.59936025589764e-310,1.5983606557377e-310,1.59736105557775e-310,1.59636145541785e-310,1.5953618552579e-310,1.594362255098e-310,1.59336265493805e-310,1.5923630547781e-310,1.59136345461815e-310,1.5903638544582e-310,1.58936425429825e-310,1.58836465413835e-310,1.5873650539784e-310,1.5863654538185e-310,1.58536585365856e-310,1.5843662534986e-310,1.58336665333866e-310,1.5823670531787e-310,1.58136745301876e-310,1.58036785285886e-310,1.5793682526989e-310,1.578368652539e-310,1.57736905237906e-310,1.5763694522191e-310,1.57536985205917e-310,1.5743702518992e-310,1.5733706517393e-310,1.57237105157937e-310,1.57137145141947e-310,1.5703718512595e-310,1.56937225109957e-310,1.5683726509396e-310,1.56737305077967e-310,1.56637345061973e-310,1.56537385045983e-310,1.5643742502999e-310,1.56337465014e-310,1.56237504998003e-310,1.5613754498201e-310,1.56037584966013e-310,1.5593762495002e-310,1.55837664934023e-310,1.55737704918033e-310,1.5563774490204e-310,1.5553778488605e-310,1.55437824870054e-310,1.5533786485406e-310,1.55237904838064e-310,1.5513794482207e-310,1.55037984806074e-310,1.54938024790084e-310,1.54838064774094e-310,1.547381047581e-310,1.54638144742105e-310,1.5453818472611e-310,1.54438224710115e-310,1.5433826469412e-310,1.5423830467813e-310,1.54138344662135e-310,1.54038384646145e-310,1.5393842463015e-310,1.53838464614155e-310,1.5373850459816e-310,1.53638544582166e-310,1.5353858456617e-310,1.5343862455018e-310,1.53338664534186e-310,1.53238704518196e-310,1.531387445022e-310,1.53038784486206e-310,1.5293882447021e-310,1.52838864454216e-310,1.5273890443822e-310,1.5263894442223e-310,1.52538984406237e-310,1.52439024390247e-310,1.5233906437425e-310,1.52239104358257e-310,1.5213914434226e-310,1.52039184326267e-310,1.51939224310277e-310,1.5183926429428e-310,1.5173930427829e-310,1.51639344262297e-310,1.51539384246303e-310,1.5143942423031e-310,1.51339464214313e-310,1.5123950419832e-310,1.5113954418233e-310,1.51039584166333e-310,1.50939624150343e-310,1.5083966413435e-310,1.50739704118353e-310,1.5063974410236e-310,1.50539784086364e-310,1.5043982407037e-310,1.5033986405438e-310,1.50239904038384e-310,1.50139944022394e-310,1.500399840064e-310,1.49940023990404e-310,1.4984006397441e-310,1.49740103958414e-310,1.49640143942424e-310,1.4954018392643e-310,1.4944022391044e-310,1.49340263894445e-310,1.4924030387845e-310,1.49140343862455e-310,1.4904038384646e-310,1.48940423830465e-310,1.48840463814475e-310,1.4874050379848e-310,1.4864054378249e-310,1.48540583766495e-310,1.484406237505e-310,1.48340663734506e-310,1.4824070371851e-310,1.48140743702516e-310,1.48040783686526e-310,1.4794082367053e-310,1.4784086365454e-310,1.47740903638546e-310,1.4764094362255e-310,1.47540983606556e-310,1.4744102359056e-310,1.4734106357457e-310,1.47241103558577e-310,1.47141143542587e-310,1.4704118352659e-310,1.46941223510597e-310,1.468412634946e-310,1.46741303478607e-310,1.4664134346261e-310,1.4654138344662e-310,1.46441423430628e-310,1.4634146341464e-310,1.46241503398643e-310,1.4614154338265e-310,1.46041583366653e-310,1.4594162335066e-310,1.45841663334663e-310,1.45741703318673e-310,1.4564174330268e-310,1.4554178328669e-310,1.45441823270693e-310,1.453418632547e-310,1.45241903238704e-310,1.4514194322271e-310,1.45041983206714e-310,1.44942023190724e-310,1.44842063174734e-310,1.4474210315874e-310,1.44642143142744e-310,1.4454218312675e-310,1.44442223110754e-310,1.4434226309476e-310,1.4424230307877e-310,1.44142343062775e-310,1.44042383046785e-310,1.4394242303079e-310,1.43842463014795e-310,1.437425029988e-310,1.43642542982805e-310,1.4354258296681e-310,1.4344262295082e-310,1.43342662934826e-310,1.43242702918836e-310,1.4314274290284e-310,1.43042782886846e-310,1.4294282287085e-310,1.42842862854856e-310,1.4274290283886e-310,1.4264294282287e-310,1.42542982806876e-310,1.42443022790886e-310,1.4234306277489e-310,1.42243102758897e-310,1.421431427429e-310,1.42043182726907e-310,1.41943222710917e-310,1.4184326269492e-310,1.4174330267893e-310,1.41643342662937e-310,1.4154338264694e-310,1.41443422630947e-310,1.41343462614952e-310,1.4124350259896e-310,1.4114354258297e-310,1.41043582566973e-310,1.40943622550983e-310,1.4084366253499e-310,1.40743702518993e-310,1.40643742503e-310,1.40543782487003e-310,1.4044382247101e-310,1.4034386245502e-310,1.40243902439024e-310,1.40143942423034e-310,1.4004398240704e-310,1.39944022391044e-310,1.3984406237505e-310,1.39744102359054e-310,1.39644142343064e-310,1.3954418232707e-310,1.3944422231108e-310,1.39344262295084e-310,1.3924430227909e-310,1.39144342263095e-310,1.390443822471e-310,1.38944422231105e-310,1.38844462215115e-310,1.3874450219912e-310,1.3864454218313e-310,1.38544582167135e-310,1.3844462215114e-310,1.38344662135145e-310,1.3824470211915e-310,1.38144742103156e-310,1.38044782087166e-310,1.3794482207117e-310,1.3784486205518e-310,1.37744902039186e-310,1.3764494202319e-310,1.37544982007196e-310,1.374450219912e-310,1.3734506197521e-310,1.37245101959216e-310,1.37145141943226e-310,1.3704518192723e-310,1.36945221911237e-310,1.3684526189524e-310,1.36745301879247e-310,1.3664534186325e-310,1.3654538184726e-310,1.36445421831267e-310,1.36345461815277e-310,1.3624550179928e-310,1.36145541783288e-310,1.36045581767293e-310,1.359456217513e-310,1.35845661735303e-310,1.35745701719313e-310,1.3564574170332e-310,1.3554578168733e-310,1.35445821671333e-310,1.3534586165534e-310,1.35245901639343e-310,1.3514594162335e-310,1.35045981607354e-310,1.34946021591364e-310,1.34846061575374e-310,1.3474610155938e-310,1.34646141543384e-310,1.3454618152739e-310,1.34446221511394e-310,1.343462614954e-310,1.3424630147941e-310,1.34146341463414e-310,1.34046381447425e-310,1.3394642143143e-310,1.33846461415435e-310,1.3374650139944e-310,1.33646541383445e-310,1.3354658136745e-310,1.3344662135146e-310,1.33346661335465e-310,1.33246701319475e-310,1.3314674130348e-310,1.33046781287486e-310,1.3294682127149e-310,1.32846861255496e-310,1.327469012395e-310,1.3264694122351e-310,1.32546981207516e-310,1.32447021191526e-310,1.3234706117553e-310,1.32247101159536e-310,1.3214714114354e-310,1.32047181127547e-310,1.31947221111557e-310,1.3184726109556e-310,1.3174730107957e-310,1.31647341063577e-310,1.3154738104758e-310,1.31447421031587e-310,1.3134746101559e-310,1.31247500999597e-310,1.31147540983607e-310,1.31047580967612e-310,1.30947620951623e-310,1.3084766093563e-310,1.30747700919633e-310,1.3064774090364e-310,1.30547780887643e-310,1.3044782087165e-310,1.3034786085566e-310,1.30247900839663e-310,1.30147940823673e-310,1.3004798080768e-310,1.29948020791684e-310,1.2984806077569e-310,1.29748100759694e-310,1.29648140743704e-310,1.2954818072771e-310,1.2944822071172e-310,1.29348260695724e-310,1.2924830067973e-310,1.29148340663734e-310,1.2904838064774e-310,1.28948420631745e-310,1.28848460615755e-310,1.2874850059976e-310,1.2864854058377e-310,1.28548580567775e-310,1.2844862055178e-310,1.28348660535785e-310,1.2824870051979e-310,1.28148740503795e-310,1.28048780487805e-310,1.2794882047181e-310,1.2784886045582e-310,1.27748900439826e-310,1.2764894042383e-310,1.27548980407836e-310,1.2744902039184e-310,1.2734906037585e-310,1.27249100359856e-310,1.27149140343866e-310,1.2704918032787e-310,1.26949220311876e-310,1.2684926029588e-310,1.26749300279887e-310,1.2664934026389e-310,1.265493802479e-310,1.26449420231907e-310,1.26349460215917e-310,1.2624950019992e-310,1.26149540183927e-310,1.2604958016793e-310,1.25949620151937e-310,1.25849660135943e-310,1.25749700119953e-310,1.2564974010396e-310,1.2554978008797e-310,1.25449820071973e-310,1.2534986005598e-310,1.25249900039983e-310,1.2514994002399e-310,1.25049980007993e-310,1.24950019992003e-310,1.24850059976013e-310,1.2475009996002e-310,1.24650139944024e-310,1.2455017992803e-310,1.24450219912034e-310,1.2435025989604e-310,1.2425029988005e-310,1.24150339864054e-310,1.24050379848064e-310,1.2395041983207e-310,1.23850459816074e-310,1.2375049980008e-310,1.23650539784085e-310,1.2355057976809e-310,1.234506197521e-310,1.23350659736105e-310,1.23250699720115e-310,1.2315073970412e-310,1.23050779688125e-310,1.2295081967213e-310,1.22850859656135e-310,1.2275089964014e-310,1.2265093962415e-310,1.22550979608156e-310,1.22451019592166e-310,1.2235105957617e-310,1.22251099560176e-310,1.2215113954418e-310,1.22051179528186e-310,1.21951219512196e-310,1.218512594962e-310,1.2175129948021e-310,1.21651339464217e-310,1.2155137944822e-310,1.21451419432227e-310,1.2135145941623e-310,1.21251499400237e-310,1.21151539384247e-310,1.2105157936825e-310,1.2095161935226e-310,1.20851659336267e-310,1.20751699320272e-310,1.2065173930428e-310,1.20551779288283e-310,1.2045181927229e-310,1.203518592563e-310,1.20251899240303e-310,1.20151939224313e-310,1.2005197920832e-310,1.19952019192323e-310,1.1985205917633e-310,1.19752099160333e-310,1.19652139144344e-310,1.1955217912835e-310,1.1945221911236e-310,1.19352259096364e-310,1.1925229908037e-310,1.19152339064374e-310,1.1905237904838e-310,1.18952419032384e-310,1.18852459016394e-310,1.187524990004e-310,1.1865253898441e-310,1.18552578968415e-310,1.1845261895242e-310,1.18352658936425e-310,1.1825269892043e-310,1.18152738904435e-310,1.18052778888445e-310,1.1795281887245e-310,1.1785285885646e-310,1.17752898840465e-310,1.1765293882447e-310,1.17552978808476e-310,1.1745301879248e-310,1.1735305877649e-310,1.17253098760496e-310,1.17153138744506e-310,1.1705317872851e-310,1.16953218712516e-310,1.1685325869652e-310,1.16753298680526e-310,1.1665333866453e-310,1.1655337864854e-310,1.16453418632547e-310,1.16353458616557e-310,1.1625349860056e-310,1.16153538584567e-310,1.1605357856857e-310,1.15953618552577e-310,1.1585365853658e-310,1.1575369852059e-310,1.15653738504597e-310,1.15553778488608e-310,1.15453818472613e-310,1.1535385845662e-310,1.15253898440623e-310,1.1515393842463e-310,1.15053978408633e-310,1.14954018392643e-310,1.14854058376653e-310,1.1475409836066e-310,1.14654138344663e-310,1.1455417832867e-310,1.14454218312674e-310,1.1435425829668e-310,1.1425429828069e-310,1.14154338264694e-310,1.14054378248704e-310,1.1395441823271e-310,1.13854458216714e-310,1.1375449820072e-310,1.13654538184724e-310,1.1355457816873e-310,1.1345461815274e-310,1.13354658136745e-310,1.13254698120755e-310,1.1315473810476e-310,1.13054778088765e-310,1.1295481807277e-310,1.12854858056775e-310,1.1275489804078e-310,1.1265493802479e-310,1.12554978008795e-310,1.12455017992806e-310,1.1235505797681e-310,1.12255097960816e-310,1.1215513794482e-310,1.12055177928826e-310,1.11955217912836e-310,1.1185525789684e-310,1.1175529788085e-310,1.11655337864856e-310,1.1155537784886e-310,1.11455417832867e-310,1.1135545781687e-310,1.11255497800877e-310,1.11155537784887e-310,1.1105557776889e-310,1.109556177529e-310,1.10855657736907e-310,1.1075569772091e-310,1.10655737704917e-310,1.1055577768892e-310,1.1045581767293e-310,1.1035585765694e-310,1.10255897640943e-310,1.10155937624953e-310,1.1005597760896e-310,1.09956017592963e-310,1.0985605757697e-310,1.09756097560973e-310,1.09656137544983e-310,1.0955617752899e-310,1.09456217513e-310,1.09356257497004e-310,1.0925629748101e-310,1.09156337465014e-310,1.0905637744902e-310,1.08956417433024e-310,1.08856457417034e-310,1.0875649740104e-310,1.0865653738505e-310,1.08556577369054e-310,1.0845661735306e-310,1.08356657337065e-310,1.0825669732107e-310,1.08156737305075e-310,1.08056777289085e-310,1.0795681727309e-310,1.078568572571e-310,1.07756897241105e-310,1.0765693722511e-310,1.07556977209115e-310,1.0745701719312e-310,1.0735705717713e-310,1.07257097161136e-310,1.07157137145146e-310,1.0705717712915e-310,1.06957217113156e-310,1.0685725709716e-310,1.06757297081166e-310,1.0665733706517e-310,1.0655737704918e-310,1.06457417033186e-310,1.06357457017196e-310,1.062574970012e-310,1.06157536985207e-310,1.0605757696921e-310,1.05957616953217e-310,1.0585765693722e-310,1.0575769692123e-310,1.05657736905237e-310,1.05557776889247e-310,1.0545781687325e-310,1.05357856857257e-310,1.05257896841263e-310,1.0515793682527e-310,1.05057976809273e-310,1.04958016793283e-310,1.04858056777293e-310,1.047580967613e-310,1.04658136745303e-310,1.0455817672931e-310,1.04458216713313e-310,1.0435825669732e-310,1.0425829668133e-310,1.04158336665334e-310,1.04058376649344e-310,1.0395841663335e-310,1.03858456617354e-310,1.0375849660136e-310,1.03658536585364e-310,1.0355857656937e-310,1.0345861655338e-310,1.03358656537384e-310,1.03258696521394e-310,1.031587365054e-310,1.03058776489405e-310,1.0295881647341e-310,1.02858856457415e-310,1.0275889644142e-310,1.0265893642543e-310,1.02558976409435e-310,1.02459016393445e-310,1.0235905637745e-310,1.02259096361455e-310,1.0215913634546e-310,1.02059176329466e-310,1.01959216313476e-310,1.0185925629748e-310,1.0175929628149e-310,1.01659336265496e-310,1.015593762495e-310,1.01459416233506e-310,1.0135945621751e-310,1.01259496201516e-310,1.01159536185527e-310,1.0105957616953e-310,1.0095961615354e-310,1.00859656137547e-310,1.0075969612155e-310,1.00659736105557e-310,1.0055977608956e-310,1.00459816073567e-310,1.00359856057577e-310,1.0025989604158e-310,1.00159936025593e-310,1.000599760096e-310,9.9960015993603e-311,9.986005597761e-311,9.9760095961613e-311,9.9660135945623e-311,9.956017592963e-311,9.946021591364e-311,9.9360255897643e-311,9.926029588165e-311,9.9160335865654e-311,9.906037584966e-311,9.8960415833664e-311,9.8860455817674e-311,9.876049580168e-311,9.866053578569e-311,9.8560575769694e-311,9.84606157537e-311,9.8360655737704e-311,9.826069572171e-311,9.8160735705715e-311,9.8060775689725e-311,9.796081567373e-311,9.786085565774e-311,9.7760895641745e-311,9.766093562575e-311,9.7560975609755e-311,9.746101559376e-311,9.736105557777e-311,9.7261095561775e-311,9.7161135545785e-311,9.706117552979e-311,9.6961215513796e-311,9.68612554978e-311,9.6761295481806e-311,9.666133546581e-311,9.656137544982e-311,9.6461415433826e-311,9.6361455417836e-311,9.626149540184e-311,9.6161535385846e-311,9.606157536985e-311,9.5961615353857e-311,9.586165533786e-311,9.576169532187e-311,9.5661735305877e-311,9.5561775289887e-311,9.546181527389e-311,9.5361855257897e-311,9.52618952419e-311,9.5161935225907e-311,9.5061975209913e-311,9.4962015193923e-311,9.4862055177933e-311,9.476209516194e-311,9.4662135145943e-311,9.456217512995e-311,9.4462215113953e-311,9.436225509796e-311,9.426229508197e-311,9.4162335065973e-311,9.4062375049983e-311,9.396241503399e-311,9.3862455017994e-311,9.3762495002e-311,9.3662534986004e-311,9.356257497001e-311,9.346261495402e-311,9.3362654938024e-311,9.3262694922034e-311,9.316273490604e-311,9.3062774890044e-311,9.296281487405e-311,9.2862854858055e-311,9.276289484206e-311,9.266293482607e-311,9.2562974810075e-311,9.2463014794085e-311,9.236305477809e-311,9.2263094762095e-311,9.21631347461e-311,9.2063174730105e-311,9.1963214714115e-311,9.186325469812e-311,9.176329468213e-311,9.1663334666136e-311,9.156337465014e-311,9.1463414634146e-311,9.136345461815e-311,9.1263494602156e-311,9.1163534586166e-311,9.106357457017e-311,9.096361455418e-311,9.0863654538187e-311,9.076369452219e-311,9.0663734506197e-311,9.05637744902e-311,9.0463814474207e-311,9.0363854458217e-311,9.026389444222e-311,9.016393442623e-311,9.0063974410237e-311,8.996401439424e-311,8.986405437825e-311,8.9764094362253e-311,8.9664134346263e-311,8.956417433027e-311,8.946421431428e-311,8.9364254298283e-311,8.926429428229e-311,8.9164334266293e-311,8.90643742503e-311,8.8964414234303e-311,8.8864454218314e-311,8.876449420232e-311,8.866453418633e-311,8.8564574170334e-311,8.846461415434e-311,8.8364654138344e-311,8.826469412235e-311,8.8164734106354e-311,8.8064774090364e-311,8.796481407437e-311,8.786485405838e-311,8.7764894042385e-311,8.766493402639e-311,8.7564974010395e-311,8.74650139944e-311,8.736505397841e-311,8.7265093962415e-311,8.7165133946425e-311,8.706517393043e-311,8.6965213914435e-311,8.686525389844e-311,8.6765293882446e-311,8.666533386645e-311,8.656537385046e-311,8.6465413834466e-311,8.6365453818476e-311,8.626549380248e-311,8.6165533786486e-311,8.606557377049e-311,8.5965613754496e-311,8.58656537385e-311,8.576569372251e-311,8.5665733706517e-311,8.5565773690527e-311,8.546581367453e-311,8.5365853658537e-311,8.526589364254e-311,8.5165933626547e-311,8.506597361055e-311,8.496601359456e-311,8.486605357857e-311,8.4766093562577e-311,8.4666133546583e-311,8.456617353059e-311,8.4466213514593e-311,8.43662534986e-311,8.426629348261e-311,8.4166333466613e-311,8.4066373450623e-311,8.396641343463e-311,8.3866453418633e-311,8.376649340264e-311,8.3666533386644e-311,8.356657337065e-311,8.346661335466e-311,8.3366653338664e-311,8.3266693322674e-311,8.316673330668e-311,8.3066773290684e-311,8.296681327469e-311,8.2866853258694e-311,8.27668932427e-311,8.266693322671e-311,8.2566973210715e-311,8.2467013194725e-311,8.236705317873e-311,8.2267093162735e-311,8.216713314674e-311,8.2067173130745e-311,8.1967213114755e-311,8.186725309876e-311,8.176729308277e-311,8.1667333066776e-311,8.156737305078e-311,8.1467413034786e-311,8.136745301879e-311,8.1267493002796e-311,8.1167532986806e-311,8.106757297081e-311,8.096761295482e-311,8.0867652938826e-311,8.076769292283e-311,8.0667732906837e-311,8.056777289084e-311,8.0467812874847e-311,8.0367852858857e-311,8.026789284286e-311,8.016793282687e-311,8.0067972810877e-311,7.996801279488e-311,7.9868052778887e-311,7.976809276289e-311,7.96681327469e-311,7.956817273091e-311,7.946821271492e-311,7.9368252698923e-311,7.926829268293e-311,7.9168332666933e-311,7.906837265094e-311,7.8968412634943e-311,7.8868452618953e-311,7.876849260296e-311,7.866853258697e-311,7.8568572570974e-311,7.846861255498e-311,7.8368652538984e-311,7.826869252299e-311,7.8168732506994e-311,7.8068772491004e-311,7.796881247501e-311,7.786885245902e-311,7.7768892443024e-311,7.766893242703e-311,7.7568972411035e-311,7.746901239504e-311,7.736905237905e-311,7.7269092363055e-311,7.7169132347065e-311,7.706917233107e-311,7.6969212315075e-311,7.686925229908e-311,7.6769292283085e-311,7.666933226709e-311,7.65693722511e-311,7.6469412235106e-311,7.6369452219116e-311,7.626949220312e-311,7.6169532187126e-311,7.606957217113e-311,7.5969612155136e-311,7.586965213914e-311,7.576969212315e-311,7.5669732107156e-311,7.5569772091166e-311,7.546981207517e-311,7.5369852059177e-311,7.526989204318e-311,7.5169932027187e-311,7.506997201119e-311,7.49700119952e-311,7.487005197921e-311,7.4770091963217e-311,7.467013194722e-311,7.4570171931227e-311,7.4470211915233e-311,7.437025189924e-311,7.427029188325e-311,7.4170331867253e-311,7.4070371851263e-311,7.397041183527e-311,7.3870451819273e-311,7.377049180328e-311,7.3670531787283e-311,7.357057177129e-311,7.34706117553e-311,7.3370651739304e-311,7.3270691723314e-311,7.317073170732e-311,7.3070771691324e-311,7.297081167533e-311,7.2870851659334e-311,7.277089164334e-311,7.267093162735e-311,7.2570971611354e-311,7.2471011595364e-311,7.237105157937e-311,7.2271091563375e-311,7.217113154738e-311,7.2071171531385e-311,7.1971211515395e-311,7.18712514994e-311,7.177129148341e-311,7.1671331467415e-311,7.157137145142e-311,7.1471411435425e-311,7.137145141943e-311,7.1271491403436e-311,7.1171531387446e-311,7.107157137145e-311,7.097161135546e-311,7.0871651339466e-311,7.077169132347e-311,7.0671731307476e-311,7.057177129148e-311,7.0471811275486e-311,7.0371851259497e-311,7.02718912435e-311,7.017193122751e-311,7.0071971211517e-311,6.997201119552e-311,6.9872051179527e-311,6.977209116353e-311,6.967213114754e-311,6.9572171131547e-311,6.9472211115557e-311,6.937225109956e-311,6.927229108357e-311,6.9172331067573e-311,6.907237105158e-311,6.8972411035583e-311,6.8872451019593e-311,6.87724910036e-311,6.867253098761e-311,6.8572570971613e-311,6.847261095562e-311,6.8372650939623e-311,6.827269092363e-311,6.8172730907634e-311,6.8072770891644e-311,6.797281087565e-311,6.787285085966e-311,6.7772890843664e-311,6.767293082767e-311,6.7572970811674e-311,6.747301079568e-311,6.737305077969e-311,6.7273090763695e-311,6.7173130747705e-311,6.707317073171e-311,6.6973210715715e-311,6.687325069972e-311,6.6773290683725e-311,6.667333066773e-311,6.657337065174e-311,6.6473410635745e-311,6.6373450619755e-311,6.627349060376e-311,6.6173530587766e-311,6.607357057177e-311,6.5973610555776e-311,6.587365053978e-311,6.577369052379e-311,6.5673730507796e-311,6.5573770491806e-311,6.547381047581e-311,6.5373850459816e-311,6.527389044382e-311,6.5173930427827e-311,6.507397041183e-311,6.497401039584e-311,6.487405037985e-311,6.4774090363857e-311,6.467413034786e-311,6.4574170331867e-311,6.447421031587e-311,6.4374250299877e-311,6.4274290283887e-311,6.4174330267893e-311,6.4074370251903e-311,6.397441023591e-311,6.3874450219913e-311,6.377449020392e-311,6.3674530187923e-311,6.357457017193e-311,6.347461015594e-311,6.3374650139943e-311,6.3274690123953e-311,6.317473010796e-311,6.3074770091964e-311,6.297481007597e-311,6.2874850059974e-311,6.277489004398e-311,6.267493002799e-311,6.2574970011994e-311,6.2475009996004e-311,6.237504998001e-311,6.2275089964014e-311,6.217512994802e-311,6.2075169932025e-311,6.1975209916035e-311,6.187524990004e-311,6.177528988405e-311,6.1675329868055e-311,6.157536985206e-311,6.1475409836065e-311,6.137544982007e-311,6.1275489804075e-311,6.1175529788085e-311,6.107556977209e-311,6.09756097561e-311,6.0875649740106e-311,6.077568972411e-311,6.0675729708116e-311,6.057576969212e-311,6.0475809676126e-311,6.0375849660136e-311,6.027588964414e-311,6.017592962815e-311,6.0075969612157e-311,5.997600959616e-311,5.9876049580167e-311,5.977608956417e-311,5.967612954818e-311,5.9576169532187e-311,5.9476209516197e-311,5.93762495002e-311,5.9276289484207e-311,5.917632946821e-311,5.907636945222e-311,5.8976409436223e-311,5.8876449420233e-311,5.877648940424e-311,5.867652938825e-311,5.8576569372253e-311,5.847660935626e-311,5.8376649340263e-311,5.827668932427e-311,5.8176729308273e-311,5.8076769292283e-311,5.797680927629e-311,5.78768492603e-311,5.7776889244304e-311,5.767692922831e-311,5.7576969212314e-311,5.747700919632e-311,5.737704918033e-311,5.7277089164334e-311,5.7177129148344e-311,5.707716913235e-311,5.6977209116355e-311,5.687724910036e-311,5.6777289084365e-311,5.667732906837e-311,5.657736905238e-311,5.6477409036385e-311,5.6377449020395e-311,5.62774890044e-311,5.6177528988405e-311,5.607756897241e-311,5.5977608956416e-311,5.587764894042e-311,5.577768892443e-311,5.5677728908436e-311,5.5577768892446e-311,5.547780887645e-311,5.5377848860456e-311,5.527788884446e-311,5.5177928828466e-311,5.507796881247e-311,5.497800879648e-311,5.487804878049e-311,5.4778088764497e-311,5.46781287485e-311,5.4578168732507e-311,5.447820871651e-311,5.4378248700517e-311,5.4278288684527e-311,5.417832866853e-311,5.407836865254e-311,5.3978408636547e-311,5.3878448620553e-311,5.377848860456e-311,5.3678528588563e-311,5.357856857257e-311,5.347860855658e-311,5.3378648540583e-311,5.3278688524593e-311,5.31787285086e-311,5.3078768492603e-311,5.297880847661e-311,5.2878848460614e-311,5.277888844462e-311,5.267892842863e-311,5.2578968412634e-311,5.2479008396644e-311,5.237904838065e-311,5.2279088364654e-311,5.217912834866e-311,5.2079168332664e-311,5.1979208316674e-311,5.187924830068e-311,5.177928828469e-311,5.1679328268695e-311,5.15793682527e-311,5.1479408236705e-311,5.137944822071e-311,5.1279488204715e-311,5.1179528188725e-311,5.107956817273e-311,5.097960815674e-311,5.0879648140745e-311,5.077968812475e-311,5.0679728108756e-311,5.057976809276e-311,5.0479808076766e-311,5.0379848060776e-311,5.027988804478e-311,5.017992802879e-311,5.0079968012796e-311,4.99800079968e-311,4.9880047980806e-311,4.978008796481e-311,4.968012794882e-311,4.9580167932827e-311,4.9480207916837e-311,4.938024790084e-311,4.9280287884847e-311,4.918032786885e-311,4.9080367852857e-311,4.898040783686e-311,4.888044782087e-311,4.878048780488e-311,4.868052778889e-311,4.8580567772893e-311,4.84806077569e-311,4.8380647740903e-311,4.828068772491e-311,4.8180727708913e-311,4.8080767692923e-311,4.798080767693e-311,4.788084766094e-311,4.7780887644943e-311,4.768092762895e-311,4.7580967612954e-311,4.748100759696e-311,4.738104758097e-311,4.7281087564974e-311,4.7181127548984e-311,4.708116753299e-311,4.6981207516994e-311,4.6881247501e-311,4.6781287485004e-311,4.668132746901e-311,4.658136745302e-311,4.6481407437025e-311,4.6381447421035e-311,4.628148740504e-311,4.6181527389045e-311,4.608156737305e-311,4.5981607357055e-311,4.588164734106e-311,4.578168732507e-311,4.5681727309076e-311,4.5581767293086e-311,4.548180727709e-311,4.5381847261096e-311,4.52818872451e-311,4.5181927229106e-311,4.508196721311e-311,4.498200719712e-311,4.488204718113e-311,4.4782087165136e-311,4.468212714914e-311,4.4582167133147e-311,4.448220711715e-311,4.4382247101157e-311,4.4282287085167e-311,4.418232706917e-311,4.408236705318e-311,4.3982407037187e-311,4.388244702119e-311,4.3782487005197e-311,4.3682526989203e-311,4.358256697321e-311,4.348260695722e-311,4.3382646941223e-311,4.3282686925233e-311,4.318272690924e-311,4.3082766893243e-311,4.298280687725e-311,4.2882846861253e-311,4.278288684526e-311,4.268292682927e-311,4.2582966813274e-311,4.2483006797284e-311,4.238304678129e-311,4.2283086765294e-311,4.21831267493e-311,4.2083166733304e-311,4.1983206717314e-311,4.188324670132e-311,4.178328668533e-311,4.1683326669334e-311,4.158336665334e-311,4.1483406637345e-311,4.138344662135e-311,4.1283486605355e-311,4.1183526589365e-311,4.108356657337e-311,4.098360655738e-311,4.0883646541385e-311,4.078368652539e-311,4.0683726509395e-311,4.05837664934e-311,4.0483806477406e-311,4.0383846461416e-311,4.028388644542e-311,4.018392642943e-311,4.0083966413436e-311,3.998400639744e-311,3.9884046381446e-311,3.978408636545e-311,3.968412634946e-311,3.9584166333466e-311,3.9484206317477e-311,3.938424630148e-311,3.9284286285487e-311,3.918432626949e-311,3.9084366253497e-311,3.89844062375e-311,3.888444622151e-311,3.8784486205517e-311,3.8684526189527e-311,3.858456617353e-311,3.848460615754e-311,3.8384646141543e-311,3.828468612555e-311,3.8184726109553e-311,3.8084766093563e-311,3.798480607757e-311,3.788484606158e-311,3.7784886045583e-311,3.768492602959e-311,3.7584966013593e-311,3.74850059976e-311,3.738504598161e-311,3.7285085965614e-311,3.7185125949624e-311,3.708516593363e-311,3.6985205917634e-311,3.688524590164e-311,3.6785285885644e-311,3.668532586965e-311,3.658536585366e-311,3.6485405837665e-311,3.6385445821675e-311,3.628548580568e-311,3.6185525789685e-311,3.608556577369e-311,3.5985605757695e-311,3.58856457417e-311,3.578568572571e-311,3.5685725709715e-311,3.5585765693725e-311,3.548580567773e-311,3.5385845661736e-311,3.528588564574e-311,3.5185925629746e-311,3.508596561375e-311,3.498600559776e-311,3.488604558177e-311,3.4786085565776e-311,3.468612554978e-311,3.4586165533786e-311,3.448620551779e-311,3.4386245501797e-311,3.4286285485807e-311,3.418632546981e-311,3.408636545382e-311,3.3986405437827e-311,3.388644542183e-311,3.3786485405837e-311,3.368652538984e-311,3.3586565373847e-311,3.3486605357857e-311,3.3386645341863e-311,3.3286685325873e-311,3.318672530988e-311,3.3086765293883e-311,3.298680527789e-311,3.2886845261893e-311,3.27868852459e-311,3.268692522991e-311,3.2586965213913e-311,3.2487005197923e-311,3.238704518193e-311,3.2287085165934e-311,3.218712514994e-311,3.2087165133944e-311,3.1987205117954e-311,3.188724510196e-311,3.178728508597e-311,3.1687325069974e-311,3.158736505398e-311,3.1487405037984e-311,3.138744502199e-311,3.1287485005995e-311,3.1187524990005e-311,3.108756497401e-311,3.098760495802e-311,3.0887644942025e-311,3.078768492603e-311,3.0687724910035e-311,3.058776489404e-311,3.0487804878045e-311,3.0387844862055e-311,3.028788484606e-311,3.018792483007e-311,3.0087964814076e-311,2.998800479808e-311,2.9888044782086e-311,2.978808476609e-311,2.96881247501e-311,2.9588164734106e-311,2.9488204718116e-311,2.938824470212e-311,2.9288284686126e-311,2.918832467013e-311,2.9088364654137e-311,2.898840463814e-311,2.888844462215e-311,2.8788484606157e-311,2.8688524590167e-311,2.858856457417e-311,2.8488604558177e-311,2.838864454218e-311,2.8288684526187e-311,2.8188724510193e-311,2.8088764494203e-311,2.798880447821e-311,2.788884446222e-311,2.7788884446223e-311,2.768892443023e-311,2.7588964414233e-311,2.748900439824e-311,2.738904438225e-311,2.7289084366253e-311,2.7189124350263e-311,2.708916433427e-311,2.6989204318274e-311,2.688924430228e-311,2.6789284286284e-311,2.668932427029e-311,2.65893642543e-311,2.6489404238304e-311,2.6389444222314e-311,2.628948420632e-311,2.6189524190325e-311,2.608956417433e-311,2.5989604158335e-311,2.588964414234e-311,2.578968412635e-311,2.5689724110355e-311,2.5589764094365e-311,2.548980407837e-311,2.5389844062375e-311,2.528988404638e-311,2.5189924030386e-311,2.508996401439e-311,2.49900039984e-311,2.489004398241e-311,2.4790083966416e-311,2.469012395042e-311,2.4590163934426e-311,2.449020391843e-311,2.4390243902436e-311,2.4290283886446e-311,2.419032387045e-311,2.409036385446e-311,2.3990403838467e-311,2.389044382247e-311,2.3790483806477e-311,2.369052379048e-311,2.3590563774487e-311,2.3490603758497e-311,2.33906437425e-311,2.329068372651e-311,2.3190723710517e-311,2.3090763694523e-311,2.299080367853e-311,2.2890843662533e-311,2.279088364654e-311,2.269092363055e-311,2.2590963614553e-311,2.2491003598563e-311,2.239104358257e-311,2.2291083566573e-311,2.219112355058e-311,2.2091163534584e-311,2.1991203518594e-311,2.18912435026e-311,2.179128348661e-311,2.1691323470614e-311,2.159136345462e-311,2.1491403438624e-311,2.139144342263e-311,2.1291483406634e-311,2.1191523390644e-311,2.109156337465e-311,2.099160335866e-311,2.0891643342665e-311,2.079168332667e-311,2.0691723310675e-311,2.059176329468e-311,2.0491803278685e-311,2.0391843262695e-311,2.02918832467e-311,2.019192323071e-311,2.0091963214715e-311,1.999200319872e-311,1.9892043182726e-311,1.979208316673e-311,1.969212315074e-311,1.9592163134746e-311,1.9492203118756e-311,1.939224310276e-311,1.9292283086766e-311,1.919232307077e-311,1.9092363054776e-311,1.899240303878e-311,1.889244302279e-311,1.8792483006797e-311,1.8692522990807e-311,1.859256297481e-311,1.8492602958817e-311,1.839264294282e-311,1.8292682926827e-311,1.819272291083e-311,1.809276289484e-311,1.7992802878848e-311,1.789284286286e-311,1.7792882846863e-311,1.769292283087e-311,1.7592962814873e-311,1.749300279888e-311,1.739304278289e-311,1.7293082766893e-311,1.7193122750903e-311,1.709316273491e-311,1.6993202718913e-311,1.689324270292e-311,1.6793282686924e-311,1.669332267093e-311,1.659336265494e-311,1.6493402638944e-311,1.6393442622954e-311,1.629348260696e-311,1.6193522590964e-311,1.609356257497e-311,1.5993602558974e-311,1.589364254298e-311,1.579368252699e-311,1.5693722510995e-311,1.5593762495005e-311,1.549380247901e-311,1.5393842463015e-311,1.529388244702e-311,1.5193922431025e-311,1.509396241503e-311,1.499400239904e-311,1.489404238305e-311,1.4794082367056e-311,1.469412235106e-311,1.4594162335066e-311,1.449420231907e-311,1.4394242303076e-311,1.4294282287086e-311,1.419432227109e-311,1.40943622551e-311,1.3994402239106e-311,1.389444222311e-311,1.3794482207117e-311,1.369452219112e-311,1.3594562175127e-311,1.3494602159137e-311,1.339464214314e-311,1.329468212715e-311,1.3194722111157e-311,1.309476209516e-311,1.2994802079167e-311,1.2894842063172e-311,1.279488204718e-311,1.269492203119e-311,1.2594962015193e-311,1.2495001999203e-311,1.239504198321e-311,1.2295081967213e-311,1.219512195122e-311,1.2095161935223e-311,1.1995201919233e-311,1.189524190324e-311,1.179528188725e-311,1.1695321871254e-311,1.159536185526e-311,1.1495401839264e-311,1.139544182327e-311,1.1295481807274e-311,1.1195521791284e-311,1.109556177529e-311,1.09956017593e-311,1.0895641743304e-311,1.079568172731e-311,1.0695721711315e-311,1.059576169532e-311,1.0495801679325e-311,1.0395841663335e-311,1.029588164734e-311,1.019592163135e-311,1.0095961615355e-311,9.99600159936e-312,9.896041583365e-312,9.79608156737e-312,9.69612155138e-312,9.596161535386e-312,9.496201519396e-312,9.3962415034e-312,9.296281487406e-312,9.19632147141e-312,9.096361455416e-312,8.99640143942e-312,8.89644142343e-312,8.796481407436e-312,8.696521391447e-312,8.59656137545e-312,8.496601359457e-312,8.39664134346e-312,8.296681327467e-312,8.19672131147e-312,8.09676129548e-312,7.996801279487e-312,7.896841263497e-312,7.7968812475e-312,7.696921231508e-312,7.596961215513e-312,7.49700119952e-312,7.39704118353e-312,7.297081167533e-312,7.197121151543e-312,7.09716113555e-312,6.997201119553e-312,6.89724110356e-312,6.797281087563e-312,6.69732107157e-312,6.59736105558e-312,6.497401039584e-312,6.397441023594e-312,6.2974810076e-312,6.197520991604e-312,6.09756097561e-312,5.997600959614e-312,5.89764094362e-312,5.79768092763e-312,5.697720911634e-312,5.597760895645e-312,5.49780087965e-312,5.397840863655e-312,5.29788084766e-312,5.197920831665e-312,5.09796081567e-312,4.99800079968e-312,4.89804078369e-312,4.798080767695e-312,4.6981207517e-312,4.598160735706e-312,4.49820071971e-312,4.398240703716e-312,4.298280687726e-312,4.19832067173e-312,4.09836065574e-312,3.998400639746e-312,3.89844062375e-312,3.798480607756e-312,3.69852059176e-312,3.598560575767e-312,3.498600559777e-312,3.39864054378e-312,3.29868052779e-312,3.198720511797e-312,3.0987604958e-312,2.998800479807e-312,2.89884046381e-312,2.798880447817e-312,2.698920431827e-312,2.598960415832e-312,2.499000399843e-312,2.39904038385e-312,2.299080367853e-312,2.19912035186e-312,2.099160335863e-312,1.999200319873e-312,1.89924030388e-312,1.79928028789e-312,1.699320271893e-312,1.5993602559e-312,1.499400239904e-312,1.39944022391e-312,1.299480207914e-312,1.199520191924e-312,1.09956017593e-312,9.9960015994e-313,8.99640143944e-313,7.9968012795e-313,6.99720111954e-313,5.9976009596e-313,4.99800079965e-313,3.99840063975e-313,2.9988004798e-313,1.9992003199e-313,9.9960015995e-314,0.0],"x":[1.0e-309,9.99800079968017e-310,9.99600159936027e-310,9.9940023990404e-310,9.99200319872053e-310,9.9900039984007e-310,9.9880047980808e-310,9.98600559776093e-310,9.98400639744103e-310,9.9820071971212e-310,9.9800079968013e-310,9.97800879648144e-310,9.97600959616154e-310,9.9740103958417e-310,9.9720111955218e-310,9.97001199520195e-310,9.96801279488205e-310,9.9660135945622e-310,9.9640143942423e-310,9.96201519392246e-310,9.96001599360256e-310,9.9580167932827e-310,9.9560175929628e-310,9.95401839264296e-310,9.95201919232307e-310,9.9500199920032e-310,9.94802079168337e-310,9.94602159136347e-310,9.9440223910436e-310,9.94202319072373e-310,9.9400239904039e-310,9.938024790084e-310,9.93602558976413e-310,9.93402638944423e-310,9.9320271891244e-310,9.9300279888045e-310,9.92802878848464e-310,9.92602958816474e-310,9.9240303878449e-310,9.922031187525e-310,9.92003198720515e-310,9.91803278688525e-310,9.9160335865654e-310,9.9140343862455e-310,9.91203518592565e-310,9.91003598560576e-310,9.9080367852859e-310,9.906037584966e-310,9.90403838464616e-310,9.90203918432626e-310,9.9000399840064e-310,9.89804078368657e-310,9.89604158336667e-310,9.8940423830468e-310,9.8920431827269e-310,9.8900439824071e-310,9.8880447820872e-310,9.88604558176733e-310,9.88404638144743e-310,9.8820471811276e-310,9.8800479808077e-310,9.87804878048784e-310,9.87604958016794e-310,9.8740503798481e-310,9.8720511795282e-310,9.87005197920835e-310,9.86805277888845e-310,9.8660535785686e-310,9.8640543782487e-310,9.86205517792885e-310,9.86005597760896e-310,9.8580567772891e-310,9.8560575769692e-310,9.85405837664936e-310,9.85205917632946e-310,9.8500599760096e-310,9.84806077568977e-310,9.84606157536987e-310,9.84406237505e-310,9.8420631747301e-310,9.84006397441027e-310,9.8380647740904e-310,9.83606557377053e-310,9.83406637345063e-310,9.8320671731308e-310,9.8300679728109e-310,9.82806877249104e-310,9.82606957217114e-310,9.8240703718513e-310,9.8220711715314e-310,9.82007197121154e-310,9.81807277089165e-310,9.8160735705718e-310,9.8140743702519e-310,9.81207516993205e-310,9.81007596961215e-310,9.8080767692923e-310,9.8060775689724e-310,9.80407836865256e-310,9.80207916833266e-310,9.8000799680128e-310,9.79808076769297e-310,9.79608156737307e-310,9.7940823670532e-310,9.7920831667333e-310,9.79008396641347e-310,9.78808476609358e-310,9.78608556577373e-310,9.78408636545383e-310,9.782087165134e-310,9.7800879648141e-310,9.77808876449423e-310,9.77608956417434e-310,9.7740903638545e-310,9.7720911635346e-310,9.77009196321474e-310,9.76809276289484e-310,9.766093562575e-310,9.7640943622551e-310,9.76209516193525e-310,9.76009596161535e-310,9.7580967612955e-310,9.7560975609756e-310,9.75409836065576e-310,9.75209916033586e-310,9.750099960016e-310,9.74810075969616e-310,9.74610155937627e-310,9.7441023590564e-310,9.7421031587365e-310,9.74010395841667e-310,9.73810475809677e-310,9.73610555777693e-310,9.73410635745703e-310,9.7321071571372e-310,9.7301079568173e-310,9.72810875649743e-310,9.72610955617754e-310,9.7241103558577e-310,9.7221111555378e-310,9.72011195521794e-310,9.71811275489804e-310,9.7161135545782e-310,9.7141143542583e-310,9.71211515393845e-310,9.71011595361855e-310,9.7081167532987e-310,9.7061175529788e-310,9.70411835265896e-310,9.70211915233906e-310,9.7001199520192e-310,9.69812075169936e-310,9.69612155137946e-310,9.6941223510596e-310,9.6921231507397e-310,9.69012395041987e-310,9.68812475009997e-310,9.6861255497801e-310,9.68412634946023e-310,9.6821271491404e-310,9.6801279488205e-310,9.67812874850063e-310,9.67612954818073e-310,9.6741303478609e-310,9.672131147541e-310,9.67013194722114e-310,9.66813274690124e-310,9.6661335465814e-310,9.6641343462615e-310,9.66213514594165e-310,9.66013594562175e-310,9.6581367453019e-310,9.656137544982e-310,9.65413834466216e-310,9.65213914434226e-310,9.6501399440224e-310,9.64814074370256e-310,9.64614154338266e-310,9.6441423430628e-310,9.6421431427429e-310,9.64014394242307e-310,9.63814474210317e-310,9.6361455417833e-310,9.63414634146342e-310,9.6321471411436e-310,9.6301479408237e-310,9.62814874050383e-310,9.62614954018393e-310,9.6241503398641e-310,9.6221511395442e-310,9.62015193922434e-310,9.61815273890444e-310,9.6161535385846e-310,9.6141543382647e-310,9.61215513794485e-310,9.61015593762495e-310,9.6081567373051e-310,9.6061575369852e-310,9.60415833666535e-310,9.60215913634546e-310,9.6001599360256e-310,9.59816073570576e-310,9.59616153538586e-310,9.594162335066e-310,9.5921631347461e-310,9.59016393442627e-310,9.58816473410637e-310,9.5861655337865e-310,9.5841663334666e-310,9.58216713314678e-310,9.5801679328269e-310,9.57816873250703e-310,9.57616953218713e-310,9.5741703318673e-310,9.5721711315474e-310,9.57017193122754e-310,9.56817273090764e-310,9.5661735305878e-310,9.5641743302679e-310,9.56217512994804e-310,9.56017592962815e-310,9.5581767293083e-310,9.5561775289884e-310,9.55417832866855e-310,9.55217912834865e-310,9.5501799280288e-310,9.54818072770896e-310,9.54618152738906e-310,9.5441823270692e-310,9.5421831267493e-310,9.54018392642947e-310,9.53818472610957e-310,9.5361855257897e-310,9.5341863254698e-310,9.53218712514997e-310,9.5301879248301e-310,9.52818872451023e-310,9.52618952419033e-310,9.5241903238705e-310,9.5221911235506e-310,9.52019192323074e-310,9.51819272291084e-310,9.516193522591e-310,9.5141943222711e-310,9.51219512195124e-310,9.51019592163135e-310,9.5081967213115e-310,9.5061975209916e-310,9.50419832067175e-310,9.50219912035185e-310,9.500199920032e-310,9.49820071971216e-310,9.49620151939226e-310,9.4942023190724e-310,9.4922031187525e-310,9.49020391843266e-310,9.48820471811277e-310,9.4862055177929e-310,9.484206317473e-310,9.48220711715317e-310,9.48020791683327e-310,9.47820871651343e-310,9.47620951619353e-310,9.4742103158737e-310,9.4722111155538e-310,9.47021191523393e-310,9.46821271491404e-310,9.4662135145942e-310,9.4642143142743e-310,9.46221511395444e-310,9.46021591363454e-310,9.4582167133147e-310,9.4562175129948e-310,9.45421831267495e-310,9.45221911235505e-310,9.4502199120352e-310,9.44822071171536e-310,9.44622151139546e-310,9.4442223110756e-310,9.4422231107557e-310,9.44022391043586e-310,9.43822471011597e-310,9.4362255097961e-310,9.4342263094762e-310,9.43222710915637e-310,9.43022790883647e-310,9.42822870851663e-310,9.42622950819673e-310,9.4242303078769e-310,9.422231107557e-310,9.42023190723713e-310,9.41823270691724e-310,9.4162335065974e-310,9.4142343062775e-310,9.41223510595764e-310,9.41023590563774e-310,9.4082367053179e-310,9.406237504998e-310,9.40423830467815e-310,9.40223910435825e-310,9.4002399040384e-310,9.39824070371855e-310,9.39624150339866e-310,9.3942423030788e-310,9.3922431027589e-310,9.39024390243906e-310,9.38824470211916e-310,9.3862455017993e-310,9.3842463014794e-310,9.38224710115957e-310,9.38024790083967e-310,9.3782487005198e-310,9.37624950019993e-310,9.3742502998801e-310,9.3722510995602e-310,9.37025189924033e-310,9.36825269892043e-310,9.3662534986006e-310,9.3642542982807e-310,9.36225509796084e-310,9.36025589764094e-310,9.3582566973211e-310,9.3562574970012e-310,9.35425829668135e-310,9.35225909636145e-310,9.3502598960416e-310,9.34826069572175e-310,9.34626149540186e-310,9.344262295082e-310,9.3422630947621e-310,9.34026389444226e-310,9.33826469412236e-310,9.3362654938025e-310,9.3342662934826e-310,9.33226709316277e-310,9.33026789284287e-310,9.328268692523e-310,9.3262694922031e-310,9.3242702918833e-310,9.3222710915634e-310,9.32027189124353e-310,9.31827269092363e-310,9.3162734906038e-310,9.3142742902839e-310,9.31227508996404e-310,9.31027588964414e-310,9.3082766893243e-310,9.3062774890044e-310,9.30427828868455e-310,9.30227908836465e-310,9.3002798880448e-310,9.29828068772495e-310,9.29628148740505e-310,9.2942822870852e-310,9.2922830867653e-310,9.29028388644546e-310,9.28828468612556e-310,9.2862854858057e-310,9.2842862854858e-310,9.28228708516597e-310,9.28028788484607e-310,9.2782886845262e-310,9.2762894842063e-310,9.27429028388647e-310,9.2722910835666e-310,9.27029188324673e-310,9.26829268292683e-310,9.266293482607e-310,9.2642942822871e-310,9.26229508196724e-310,9.26029588164734e-310,9.2582966813275e-310,9.2562974810076e-310,9.25429828068774e-310,9.25229908036785e-310,9.250299880048e-310,9.24830067972815e-310,9.24630147940825e-310,9.2443022790884e-310,9.2423030787685e-310,9.24030387844866e-310,9.23830467812876e-310,9.2363054778089e-310,9.234306277489e-310,9.23230707716917e-310,9.23030787684927e-310,9.2283086765294e-310,9.2263094762095e-310,9.22431027588967e-310,9.2223110755698e-310,9.22031187524993e-310,9.21831267493003e-310,9.2163134746102e-310,9.2143142742903e-310,9.21231507397044e-310,9.21031587365054e-310,9.2083166733307e-310,9.2063174730108e-310,9.20431827269094e-310,9.20231907237105e-310,9.2003198720512e-310,9.19832067173135e-310,9.19632147141145e-310,9.1943222710916e-310,9.1923230707717e-310,9.19032387045186e-310,9.18832467013196e-310,9.1863254698121e-310,9.1843262694922e-310,9.18232706917236e-310,9.18032786885247e-310,9.1783286685326e-310,9.1763294682127e-310,9.17433026789287e-310,9.17233106757297e-310,9.17033186725313e-310,9.16833266693323e-310,9.1663334666134e-310,9.1643342662935e-310,9.16233506597363e-310,9.16033586565374e-310,9.1583366653339e-310,9.156337465014e-310,9.15433826469414e-310,9.15233906437424e-310,9.1503398640544e-310,9.14834066373455e-310,9.14634146341465e-310,9.1443422630948e-310,9.1423430627749e-310,9.14034386245506e-310,9.13834466213516e-310,9.1363454618153e-310,9.1343462614954e-310,9.13234706117556e-310,9.13034786085567e-310,9.1283486605358e-310,9.1263494602159e-310,9.12435025989607e-310,9.12235105957617e-310,9.12035185925632e-310,9.11835265893643e-310,9.1163534586166e-310,9.1143542582967e-310,9.11235505797683e-310,9.11035585765693e-310,9.1083566573371e-310,9.1063574570172e-310,9.10435825669734e-310,9.10235905637744e-310,9.1003598560576e-310,9.09836065573775e-310,9.09636145541785e-310,9.094362255098e-310,9.0923630547781e-310,9.09036385445825e-310,9.08836465413836e-310,9.0863654538185e-310,9.0843662534986e-310,9.08236705317876e-310,9.08036785285886e-310,9.078368652539e-310,9.0763694522191e-310,9.07437025189927e-310,9.07237105157937e-310,9.0703718512595e-310,9.06837265093963e-310,9.0663734506198e-310,9.0643742502999e-310,9.06237504998003e-310,9.06037584966013e-310,9.0583766493403e-310,9.0563774490204e-310,9.05437824870054e-310,9.05237904838064e-310,9.0503798480608e-310,9.04838064774094e-310,9.04638144742105e-310,9.0443822471012e-310,9.0423830467813e-310,9.04038384646145e-310,9.03838464614155e-310,9.0363854458217e-310,9.0343862455018e-310,9.03238704518196e-310,9.03038784486206e-310,9.0283886445422e-310,9.0263894442223e-310,9.02439024390247e-310,9.02239104358257e-310,9.0203918432627e-310,9.0183926429428e-310,9.016393442623e-310,9.0143942423031e-310,9.01239504198323e-310,9.01039584166333e-310,9.0083966413435e-310,9.0063974410236e-310,9.00439824070374e-310,9.00239904038384e-310,9.000399840064e-310,8.99840063974414e-310,8.99640143942425e-310,8.9944022391044e-310,8.9924030387845e-310,8.99040383846465e-310,8.98840463814475e-310,8.9864054378249e-310,8.984406237505e-310,8.98240703718516e-310,8.98040783686526e-310,8.9784086365454e-310,8.9764094362255e-310,8.97441023590567e-310,8.97241103558577e-310,8.9704118352659e-310,8.968412634946e-310,8.96641343462617e-310,8.9644142343063e-310,8.96241503398643e-310,8.96041583366653e-310,8.9584166333467e-310,8.9564174330268e-310,8.95441823270694e-310,8.95241903238704e-310,8.9504198320672e-310,8.94842063174734e-310,8.94642143142744e-310,8.9444222311076e-310,8.9424230307877e-310,8.94042383046785e-310,8.93842463014795e-310,8.9364254298281e-310,8.9344262295082e-310,8.93242702918836e-310,8.93042782886846e-310,8.9284286285486e-310,8.9264294282287e-310,8.92443022790887e-310,8.92243102758897e-310,8.9204318272691e-310,8.9184326269492e-310,8.91643342662937e-310,8.9144342263095e-310,8.91243502598963e-310,8.91043582566973e-310,8.9084366253499e-310,8.90643742503e-310,8.90443822471013e-310,8.90243902439024e-310,8.9004398240704e-310,8.89844062375054e-310,8.89644142343064e-310,8.8944422231108e-310,8.8924430227909e-310,8.89044382247105e-310,8.88844462215115e-310,8.8864454218313e-310,8.8844462215114e-310,8.88244702119156e-310,8.88044782087166e-310,8.8784486205518e-310,8.8764494202319e-310,8.87445021991206e-310,8.87245101959217e-310,8.8704518192723e-310,8.8684526189524e-310,8.86645341863257e-310,8.86445421831267e-310,8.86245501799283e-310,8.86045581767293e-310,8.8584566173531e-310,8.8564574170332e-310,8.85445821671333e-310,8.85245901639344e-310,8.8504598160736e-310,8.84846061575374e-310,8.84646141543384e-310,8.844462215114e-310,8.8424630147941e-310,8.84046381447425e-310,8.83846461415435e-310,8.8364654138345e-310,8.8344662135146e-310,8.83246701319475e-310,8.83046781287486e-310,8.828468612555e-310,8.8264694122351e-310,8.82447021191526e-310,8.82247101159536e-310,8.8204718112755e-310,8.8184726109556e-310,8.81647341063577e-310,8.81447421031587e-310,8.812475009996e-310,8.81047580967613e-310,8.8084766093563e-310,8.8064774090364e-310,8.80447820871653e-310,8.80247900839663e-310,8.8004798080768e-310,8.79848060775694e-310,8.79648140743704e-310,8.7944822071172e-310,8.7924830067973e-310,8.79048380647745e-310,8.78848460615755e-310,8.7864854058377e-310,8.7844862055178e-310,8.78248700519795e-310,8.78048780487806e-310,8.7784886045582e-310,8.7764894042383e-310,8.77449020391846e-310,8.77249100359856e-310,8.7704918032787e-310,8.7684926029588e-310,8.76649340263897e-310,8.76449420231907e-310,8.7624950019992e-310,8.76049580167933e-310,8.7584966013595e-310,8.7564974010396e-310,8.75449820071973e-310,8.75249900039983e-310,8.75049980008e-310,8.74850059976014e-310,8.74650139944024e-310,8.7445021991204e-310,8.7425029988005e-310,8.74050379848064e-310,8.73850459816075e-310,8.7365053978409e-310,8.734506197521e-310,8.73250699720115e-310,8.73050779688125e-310,8.7285085965614e-310,8.7265093962415e-310,8.72451019592166e-310,8.72251099560176e-310,8.7205117952819e-310,8.718512594962e-310,8.71651339464217e-310,8.71451419432227e-310,8.7125149940024e-310,8.7105157936825e-310,8.7085165933627e-310,8.7065173930428e-310,8.70451819272293e-310,8.70251899240303e-310,8.7005197920832e-310,8.69852059176334e-310,8.69652139144344e-310,8.6945221911236e-310,8.6925229908037e-310,8.69052379048384e-310,8.68852459016395e-310,8.6865253898441e-310,8.6845261895242e-310,8.68252698920435e-310,8.68052778888445e-310,8.6785285885646e-310,8.6765293882447e-310,8.67453018792486e-310,8.67253098760496e-310,8.6705317872851e-310,8.6685325869652e-310,8.66653338664537e-310,8.66453418632547e-310,8.6625349860056e-310,8.6605357856857e-310,8.65853658536587e-310,8.656537385046e-310,8.65453818472613e-310,8.65253898440623e-310,8.6505397840864e-310,8.64854058376653e-310,8.64654138344664e-310,8.6445421831268e-310,8.6425429828069e-310,8.64054378248704e-310,8.63854458216714e-310,8.6365453818473e-310,8.6345461815274e-310,8.63254698120755e-310,8.63054778088765e-310,8.6285485805678e-310,8.6265493802479e-310,8.62455017992806e-310,8.62255097960816e-310,8.6205517792883e-310,8.6185525789684e-310,8.61655337864857e-310,8.61455417832867e-310,8.6125549780088e-310,8.6105557776889e-310,8.60855657736907e-310,8.60655737704918e-310,8.60455817672933e-310,8.60255897640943e-310,8.6005597760896e-310,8.59856057576973e-310,8.59656137544983e-310,8.59456217513e-310,8.5925629748101e-310,8.59056377449024e-310,8.58856457417034e-310,8.5865653738505e-310,8.5845661735306e-310,8.58256697321075e-310,8.58056777289085e-310,8.578568572571e-310,8.5765693722511e-310,8.57457017193126e-310,8.57257097161136e-310,8.5705717712915e-310,8.5685725709716e-310,8.56657337065176e-310,8.56457417033187e-310,8.562574970012e-310,8.5605757696921e-310,8.55857656937227e-310,8.55657736905237e-310,8.55457816873253e-310,8.55257896841263e-310,8.5505797680928e-310,8.54858056777293e-310,8.54658136745303e-310,8.5445821671332e-310,8.5425829668133e-310,8.54058376649344e-310,8.53858456617354e-310,8.5365853658537e-310,8.5345861655338e-310,8.53258696521395e-310,8.53058776489405e-310,8.5285885645742e-310,8.5265893642543e-310,8.52459016393445e-310,8.52259096361456e-310,8.5205917632947e-310,8.5185925629748e-310,8.51659336265496e-310,8.51459416233506e-310,8.5125949620152e-310,8.5105957616953e-310,8.50859656137547e-310,8.50659736105557e-310,8.5045981607357e-310,8.50259896041583e-310,8.500599760096e-310,8.49860055977613e-310,8.49660135945623e-310,8.4946021591364e-310,8.4926029588165e-310,8.49060375849664e-310,8.48860455817674e-310,8.4866053578569e-310,8.484606157537e-310,8.48260695721715e-310,8.48060775689725e-310,8.4786085565774e-310,8.4766093562575e-310,8.47461015593765e-310,8.47261095561776e-310,8.4706117552979e-310,8.468612554978e-310,8.46661335465816e-310,8.46461415433826e-310,8.4626149540184e-310,8.4606157536985e-310,8.45861655337867e-310,8.45661735305877e-310,8.4546181527389e-310,8.45261895241902e-310,8.4506197520992e-310,8.44862055177933e-310,8.44662135145943e-310,8.4446221511396e-310,8.4426229508197e-310,8.44062375049984e-310,8.43862455017994e-310,8.4366253498601e-310,8.4346261495402e-310,8.43262694922034e-310,8.43062774890045e-310,8.4286285485806e-310,8.4266293482607e-310,8.42463014794085e-310,8.42263094762095e-310,8.4206317473011e-310,8.4186325469812e-310,8.41663334666136e-310,8.41463414634146e-310,8.4126349460216e-310,8.4106357457017e-310,8.40863654538187e-310,8.40663734506197e-310,8.4046381447421e-310,8.4026389444222e-310,8.40063974410238e-310,8.39864054378253e-310,8.39664134346263e-310,8.3946421431428e-310,8.3926429428229e-310,8.39064374250303e-310,8.38864454218314e-310,8.3866453418633e-310,8.3846461415434e-310,8.38264694122354e-310,8.38064774090364e-310,8.3786485405838e-310,8.3766493402639e-310,8.37465013994405e-310,8.37265093962415e-310,8.3706517393043e-310,8.3686525389844e-310,8.36665333866456e-310,8.36465413834466e-310,8.3626549380248e-310,8.3606557377049e-310,8.35865653738507e-310,8.35665733706517e-310,8.3546581367453e-310,8.3526589364254e-310,8.35065973610557e-310,8.34866053578573e-310,8.34666133546583e-310,8.344662135146e-310,8.3426629348261e-310,8.34066373450623e-310,8.33866453418634e-310,8.3366653338665e-310,8.3346661335466e-310,8.33266693322674e-310,8.33066773290684e-310,8.328668532587e-310,8.3266693322671e-310,8.32467013194725e-310,8.32267093162735e-310,8.3206717313075e-310,8.3186725309876e-310,8.31667333066776e-310,8.31467413034786e-310,8.312674930028e-310,8.3106757297081e-310,8.30867652938826e-310,8.30667732906837e-310,8.3046781287485e-310,8.3026789284286e-310,8.30067972810877e-310,8.2986805277889e-310,8.29668132746903e-310,8.2946821271492e-310,8.2926829268293e-310,8.29068372650943e-310,8.28868452618953e-310,8.2866853258697e-310,8.2846861255498e-310,8.28268692522994e-310,8.28068772491004e-310,8.2786885245902e-310,8.2766893242703e-310,8.27469012395045e-310,8.27269092363055e-310,8.2706917233107e-310,8.2686925229908e-310,8.26669332267096e-310,8.26469412235106e-310,8.2626949220312e-310,8.2606957217113e-310,8.25869652139146e-310,8.25669732107157e-310,8.2546981207517e-310,8.2526989204318e-310,8.25069972011197e-310,8.2487005197921e-310,8.24670131947223e-310,8.2447021191524e-310,8.2427029188325e-310,8.24070371851263e-310,8.23870451819273e-310,8.2367053178729e-310,8.234706117553e-310,8.23270691723314e-310,8.23070771691324e-310,8.2287085165934e-310,8.2267093162735e-310,8.22471011595365e-310,8.22271091563375e-310,8.2207117153139e-310,8.218712514994e-310,8.21671331467415e-310,8.21471411435426e-310,8.2127149140344e-310,8.2107157137145e-310,8.20871651339466e-310,8.20671731307476e-310,8.2047181127549e-310,8.202718912435e-310,8.20071971211517e-310,8.1987205117953e-310,8.1967213114754e-310,8.1947221111556e-310,8.1927229108357e-310,8.19072371051583e-310,8.18872451019593e-310,8.1867253098761e-310,8.1847261095562e-310,8.18272690923634e-310,8.18072770891644e-310,8.1787285085966e-310,8.1767293082767e-310,8.17473010795684e-310,8.17273090763695e-310,8.1707317073171e-310,8.1687325069972e-310,8.16673330667735e-310,8.16473410635745e-310,8.1627349060376e-310,8.1607357057177e-310,8.15873650539786e-310,8.15673730507796e-310,8.1547381047581e-310,8.1527389044382e-310,8.15073970411837e-310,8.1487405037985e-310,8.1467413034786e-310,8.14474210315877e-310,8.1427429028389e-310,8.14074370251903e-310,8.13874450219913e-310,8.1367453018793e-310,8.1347461015594e-310,8.13274690123954e-310,8.13074770091964e-310,8.1287485005998e-310,8.1267493002799e-310,8.12475009996004e-310,8.12275089964015e-310,8.1207516993203e-310,8.1187524990004e-310,8.11675329868055e-310,8.11475409836065e-310,8.1127548980408e-310,8.1107556977209e-310,8.10875649740106e-310,8.10675729708116e-310,8.1047580967613e-310,8.1027588964414e-310,8.10075969612157e-310,8.0987604958017e-310,8.0967612954818e-310,8.09476209516197e-310,8.09276289484207e-310,8.09076369452223e-310,8.08876449420233e-310,8.0867652938825e-310,8.0847660935626e-310,8.08276689324273e-310,8.08076769292284e-310,8.078768492603e-310,8.0767692922831e-310,8.07477009196324e-310,8.07277089164334e-310,8.0707716913235e-310,8.0687724910036e-310,8.06677329068375e-310,8.06477409036385e-310,8.062774890044e-310,8.0607756897241e-310,8.05877648940426e-310,8.05677728908436e-310,8.0547780887645e-310,8.0527788884446e-310,8.05077968812477e-310,8.0487804878049e-310,8.046781287485e-310,8.04478208716517e-310,8.04278288684527e-310,8.04078368652543e-310,8.03878448620553e-310,8.0367852858857e-310,8.0347860855658e-310,8.03278688524593e-310,8.03078768492604e-310,8.0287884846062e-310,8.0267892842863e-310,8.02479008396644e-310,8.02279088364654e-310,8.0207916833267e-310,8.0187924830068e-310,8.01679328268695e-310,8.01479408236705e-310,8.0127948820472e-310,8.0107956817273e-310,8.00879648140746e-310,8.00679728108756e-310,8.0047980807677e-310,8.0027988804478e-310,8.00079968012796e-310,7.9988004798081e-310,7.9968012794882e-310,7.99480207916837e-310,7.99280287884847e-310,7.9908036785286e-310,7.98880447820873e-310,7.9868052778889e-310,7.984806077569e-310,7.98280687724913e-310,7.98080767692923e-310,7.9788084766094e-310,7.9768092762895e-310,7.97481007596964e-310,7.97281087564974e-310,7.9708116753299e-310,7.96881247501e-310,7.96681327469015e-310,7.96481407437025e-310,7.9628148740504e-310,7.9608156737305e-310,7.95881647341066e-310,7.95681727309076e-310,7.9548180727709e-310,7.952818872451e-310,7.95081967213116e-310,7.9488204718113e-310,7.9468212714914e-310,7.94482207117157e-310,7.94282287085167e-310,7.9408236705318e-310,7.9388244702119e-310,7.9368252698921e-310,7.9348260695722e-310,7.93282686925233e-310,7.93082766893243e-310,7.9288284686126e-310,7.9268292682927e-310,7.92483006797284e-310,7.92283086765294e-310,7.9208316673331e-310,7.9188324670132e-310,7.91683326669335e-310,7.91483406637345e-310,7.9128348660536e-310,7.9108356657337e-310,7.90883646541385e-310,7.90683726509396e-310,7.9048380647741e-310,7.9028388644542e-310,7.90083966413436e-310,7.8988404638145e-310,7.8968412634946e-310,7.89484206317477e-310,7.89284286285487e-310,7.890843662535e-310,7.8888444622151e-310,7.88684526189527e-310,7.8848460615754e-310,7.88284686125553e-310,7.88084766093563e-310,7.8788484606158e-310,7.8768492602959e-310,7.87485005997604e-310,7.87285085965614e-310,7.8708516593363e-310,7.8688524590164e-310,7.86685325869654e-310,7.86485405837665e-310,7.8628548580568e-310,7.8608556577369e-310,7.85885645741705e-310,7.85685725709715e-310,7.8548580567773e-310,7.8528588564574e-310,7.85085965613756e-310,7.8488604558177e-310,7.8468612554978e-310,7.84486205517797e-310,7.84286285485807e-310,7.8408636545382e-310,7.8388644542183e-310,7.83686525389847e-310,7.8348660535786e-310,7.83286685325873e-310,7.83086765293883e-310,7.828868452619e-310,7.8268692522991e-310,7.82487005197924e-310,7.82287085165934e-310,7.8208716513395e-310,7.8188724510196e-310,7.81687325069974e-310,7.81487405037985e-310,7.81287485006e-310,7.8108756497401e-310,7.80887644942025e-310,7.80687724910035e-310,7.8048780487805e-310,7.8028788484606e-310,7.80087964814076e-310,7.7988804478209e-310,7.796881247501e-310,7.79488204718116e-310,7.79288284686127e-310,7.7908836465414e-310,7.7888844462215e-310,7.78688524590167e-310,7.78488604558177e-310,7.78288684526193e-310,7.78088764494203e-310,7.7788884446222e-310,7.7768892443023e-310,7.77489004398243e-310,7.77289084366254e-310,7.7708916433427e-310,7.7688924430228e-310,7.76689324270294e-310,7.76489404238304e-310,7.7628948420632e-310,7.7608956417433e-310,7.75889644142345e-310,7.75689724110355e-310,7.7548980407837e-310,7.7528988404638e-310,7.75089964014396e-310,7.7489004398241e-310,7.7469012395042e-310,7.74490203918436e-310,7.74290283886447e-310,7.7409036385446e-310,7.7389044382247e-310,7.73690523790487e-310,7.73490603758497e-310,7.73290683726512e-310,7.73090763694523e-310,7.7289084366254e-310,7.7269092363055e-310,7.72491003598563e-310,7.72291083566573e-310,7.7209116353459e-310,7.718912435026e-310,7.71691323470614e-310,7.71491403438624e-310,7.7129148340664e-310,7.7109156337465e-310,7.70891643342665e-310,7.70691723310675e-310,7.7049180327869e-310,7.702918832467e-310,7.70091963214716e-310,7.6989204318273e-310,7.6969212315074e-310,7.69492203118756e-310,7.69292283086766e-310,7.6909236305478e-310,7.6889244302279e-310,7.68692522990807e-310,7.68492602958817e-310,7.6829268292683e-310,7.68092762894843e-310,7.6789284286286e-310,7.6769292283087e-310,7.67493002798883e-310,7.67293082766893e-310,7.6709316273491e-310,7.6689324270292e-310,7.66693322670934e-310,7.66493402638944e-310,7.6629348260696e-310,7.6609356257497e-310,7.65893642542985e-310,7.65693722510995e-310,7.6549380247901e-310,7.6529388244702e-310,7.65093962415035e-310,7.6489404238305e-310,7.6469412235106e-310,7.64494202319076e-310,7.64294282287086e-310,7.640943622551e-310,7.6389444222311e-310,7.63694522191127e-310,7.63494602159137e-310,7.6329468212715e-310,7.6309476209516e-310,7.6289484206318e-310,7.6269492203119e-310,7.62495001999203e-310,7.62295081967213e-310,7.6209516193523e-310,7.6189524190324e-310,7.61695321871254e-310,7.61495401839264e-310,7.6129548180728e-310,7.6109556177529e-310,7.60895641743305e-310,7.60695721711315e-310,7.6049580167933e-310,7.6029588164734e-310,7.60095961615355e-310,7.5989604158337e-310,7.5969612155138e-310,7.59496201519396e-310,7.59296281487406e-310,7.5909636145542e-310,7.5889644142343e-310,7.58696521391447e-310,7.58496601359457e-310,7.5829668132747e-310,7.5809676129548e-310,7.57896841263497e-310,7.5769692123151e-310,7.57497001199523e-310,7.57297081167533e-310,7.5709716113555e-310,7.5689724110356e-310,7.56697321071574e-310,7.56497401039584e-310,7.562974810076e-310,7.5609756097561e-310,7.55897640943624e-310,7.55697720911635e-310,7.5549780087965e-310,7.5529788084766e-310,7.55097960815675e-310,7.54898040783685e-310,7.546981207517e-310,7.54498200719716e-310,7.54298280687726e-310,7.5409836065574e-310,7.5389844062375e-310,7.53698520591767e-310,7.53498600559777e-310,7.5329868052779e-310,7.530987604958e-310,7.52898840463817e-310,7.5269892043183e-310,7.52499000399843e-310,7.52299080367853e-310,7.5209916033587e-310,7.5189924030388e-310,7.51699320271894e-310,7.51499400239904e-310,7.5129948020792e-310,7.5109956017593e-310,7.50899640143944e-310,7.50699720111955e-310,7.5049980007997e-310,7.5029988004798e-310,7.50099960015995e-310,7.4990003998401e-310,7.4970011995202e-310,7.49500199920036e-310,7.49300279888046e-310,7.4910035985606e-310,7.4890043982407e-310,7.48700519792086e-310,7.48500599760097e-310,7.4830067972811e-310,7.4810075969612e-310,7.47900839664137e-310,7.47700919632147e-310,7.47500999600163e-310,7.47301079568173e-310,7.4710115953619e-310,7.469012395042e-310,7.46701319472213e-310,7.46501399440224e-310,7.4630147940824e-310,7.4610155937625e-310,7.45901639344264e-310,7.45701719312274e-310,7.4550179928029e-310,7.453018792483e-310,7.45101959216315e-310,7.4490203918433e-310,7.4470211915234e-310,7.44502199120355e-310,7.44302279088366e-310,7.4410235905638e-310,7.4390243902439e-310,7.43702518992406e-310,7.43502598960416e-310,7.4330267892843e-310,7.4310275889644e-310,7.42902838864457e-310,7.42702918832467e-310,7.4250299880048e-310,7.42303078768493e-310,7.4210315873651e-310,7.4190323870452e-310,7.41703318672533e-310,7.41503398640543e-310,7.4130347860856e-310,7.4110355857657e-310,7.40903638544584e-310,7.40703718512594e-310,7.4050379848061e-310,7.4030387844862e-310,7.40103958416635e-310,7.3990403838465e-310,7.3970411835266e-310,7.39504198320675e-310,7.39304278288686e-310,7.391043582567e-310,7.3890443822471e-310,7.38704518192726e-310,7.38504598160736e-310,7.3830467812875e-310,7.3810475809676e-310,7.37904838064777e-310,7.37704918032787e-310,7.375049980008e-310,7.37305077968813e-310,7.3710515793683e-310,7.3690523790484e-310,7.36705317872853e-310,7.36505397840863e-310,7.3630547780888e-310,7.3610555777689e-310,7.35905637744904e-310,7.35705717712914e-310,7.3550579768093e-310,7.3530587764894e-310,7.35105957616955e-310,7.3490603758497e-310,7.3470611755298e-310,7.34506197520995e-310,7.34306277489005e-310,7.3410635745702e-310,7.3390643742503e-310,7.33706517393046e-310,7.33506597361056e-310,7.3330667732907e-310,7.3310675729708e-310,7.32906837265097e-310,7.32706917233107e-310,7.3250699720112e-310,7.3230707716913e-310,7.3210715713715e-310,7.3190723710516e-310,7.31707317073173e-310,7.31507397041183e-310,7.313074770092e-310,7.3110755697721e-310,7.30907636945224e-310,7.30707716913234e-310,7.3050779688125e-310,7.3030787684926e-310,7.30107956817275e-310,7.2990803678529e-310,7.297081167533e-310,7.29508196721315e-310,7.29308276689325e-310,7.2910835665734e-310,7.2890843662535e-310,7.28708516593366e-310,7.28508596561376e-310,7.2830867652939e-310,7.281087564974e-310,7.27908836465417e-310,7.27708916433427e-310,7.2750899640144e-310,7.2730907636945e-310,7.27109156337467e-310,7.2690923630548e-310,7.26709316273493e-310,7.26509396241503e-310,7.2630947620952e-310,7.2610955617753e-310,7.25909636145544e-310,7.25709716113554e-310,7.2550979608157e-310,7.2530987604958e-310,7.25109956017594e-310,7.24910035985605e-310,7.2471011595362e-310,7.24510195921635e-310,7.24310275889645e-310,7.2411035585766e-310,7.2391043582567e-310,7.23710515793686e-310,7.23510595761696e-310,7.2331067572971e-310,7.2311075569772e-310,7.22910835665737e-310,7.22710915633747e-310,7.2251099560176e-310,7.2231107556977e-310,7.22111155537787e-310,7.21911235505798e-310,7.21711315473813e-310,7.21511395441823e-310,7.2131147540984e-310,7.2111155537785e-310,7.20911635345863e-310,7.20711715313874e-310,7.2051179528189e-310,7.203118752499e-310,7.20111955217914e-310,7.1991203518593e-310,7.1971211515394e-310,7.19512195121955e-310,7.19312275089965e-310,7.1911235505798e-310,7.1891243502599e-310,7.18712514994006e-310,7.18512594962016e-310,7.1831267493003e-310,7.1811275489804e-310,7.17912834866056e-310,7.17712914834067e-310,7.1751299480208e-310,7.1731307477009e-310,7.17113154738107e-310,7.16913234706117e-310,7.16713314674133e-310,7.16513394642143e-310,7.1631347461016e-310,7.1611355457817e-310,7.15913634546183e-310,7.15713714514194e-310,7.1551379448221e-310,7.1531387445022e-310,7.15113954418234e-310,7.1491403438625e-310,7.1471411435426e-310,7.14514194322275e-310,7.14314274290285e-310,7.141143542583e-310,7.1391443422631e-310,7.13714514194325e-310,7.13514594162336e-310,7.1331467413035e-310,7.1311475409836e-310,7.12914834066376e-310,7.12714914034386e-310,7.125149940024e-310,7.1231507397041e-310,7.12115153938427e-310,7.11915233906437e-310,7.1171531387445e-310,7.11515393842463e-310,7.1131547381048e-310,7.1111555377849e-310,7.10915633746503e-310,7.10715713714513e-310,7.1051579368253e-310,7.1031587365054e-310,7.10115953618554e-310,7.0991603358657e-310,7.0971611355458e-310,7.09516193522595e-310,7.09316273490605e-310,7.0911635345862e-310,7.0891643342663e-310,7.08716513394645e-310,7.08516593362656e-310,7.0831667333067e-310,7.0811675329868e-310,7.07916833266696e-310,7.07716913234706e-310,7.0751699320272e-310,7.0731707317073e-310,7.07117153138747e-310,7.06917233106757e-310,7.0671731307477e-310,7.06517393042782e-310,7.063174730108e-310,7.0611755297881e-310,7.05917632946823e-310,7.05717712914833e-310,7.0551779288285e-310,7.0531787285086e-310,7.05117952818874e-310,7.0491803278689e-310,7.047181127549e-310,7.04518192722914e-310,7.04318272690925e-310,7.0411835265894e-310,7.0391843262695e-310,7.03718512594965e-310,7.03518592562975e-310,7.0331867253099e-310,7.03118752499e-310,7.02918832467016e-310,7.02718912435026e-310,7.0251899240304e-310,7.0231907237105e-310,7.02119152339067e-310,7.01919232307077e-310,7.0171931227509e-310,7.015193922431e-310,7.01319472211118e-310,7.0111955217913e-310,7.00919632147143e-310,7.00719712115153e-310,7.0051979208317e-310,7.0031987205118e-310,7.00119952019194e-310,6.9992003198721e-310,6.9972011195522e-310,6.99520191923234e-310,6.99320271891244e-310,6.9912035185926e-310,6.9892043182727e-310,6.98720511795285e-310,6.98520591763295e-310,6.9832067173131e-310,6.9812075169932e-310,6.97920831667336e-310,6.97720911635346e-310,6.9752099160336e-310,6.9732107157137e-310,6.97121151539387e-310,6.96921231507397e-310,6.9672131147541e-310,6.9652139144342e-310,6.96321471411437e-310,6.9612155137945e-310,6.95921631347463e-310,6.95721711315473e-310,6.9552179128349e-310,6.953218712515e-310,6.95121951219514e-310,6.94922031187524e-310,6.9472211115554e-310,6.94522191123554e-310,6.94322271091564e-310,6.9412235105958e-310,6.9392243102759e-310,6.93722510995605e-310,6.93522590963615e-310,6.9332267093163e-310,6.9312275089964e-310,6.92922830867656e-310,6.92722910835666e-310,6.9252299080368e-310,6.9232307077169e-310,6.92123150739706e-310,6.91923230707717e-310,6.9172331067573e-310,6.9152339064374e-310,6.91323470611757e-310,6.91123550579767e-310,6.90923630547783e-310,6.90723710515793e-310,6.9052379048381e-310,6.9032387045182e-310,6.90123950419833e-310,6.8992403038785e-310,6.8972411035586e-310,6.89524190323874e-310,6.89324270291884e-310,6.891243502599e-310,6.8892443022791e-310,6.88724510195925e-310,6.88524590163935e-310,6.8832467013195e-310,6.8812475009996e-310,6.87924830067976e-310,6.87724910035986e-310,6.87524990004e-310,6.8732506997201e-310,6.87125149940026e-310,6.86925229908037e-310,6.8672530987605e-310,6.8652538984406e-310,6.86325469812077e-310,6.86125549780087e-310,6.85925629748103e-310,6.85725709716113e-310,6.8552578968413e-310,6.8532586965214e-310,6.85125949620153e-310,6.8492602958817e-310,6.8472610955618e-310,6.84526189524194e-310,6.84326269492204e-310,6.8412634946022e-310,6.8392642942823e-310,6.83726509396245e-310,6.83526589364255e-310,6.8332666933227e-310,6.8312674930028e-310,6.82926829268295e-310,6.82726909236306e-310,6.8252698920432e-310,6.8232706917233e-310,6.82127149140346e-310,6.81927229108356e-310,6.8172730907637e-310,6.8152738904438e-310,6.81327469012397e-310,6.81127548980407e-310,6.8092762894842e-310,6.80727708916433e-310,6.8052778888445e-310,6.8032786885246e-310,6.80127948820473e-310,6.7992802878849e-310,6.797281087565e-310,6.79528188724514e-310,6.79328268692524e-310,6.7912834866054e-310,6.7892842862855e-310,6.78728508596564e-310,6.78528588564575e-310,6.7832866853259e-310,6.781287485006e-310,6.77928828468615e-310,6.77728908436626e-310,6.7752898840464e-310,6.7732906837265e-310,6.77129148340666e-310,6.76929228308676e-310,6.7672930827669e-310,6.765293882447e-310,6.76329468212717e-310,6.76129548180727e-310,6.7592962814874e-310,6.7572970811675e-310,6.7552978808477e-310,6.7532986805278e-310,6.75129948020793e-310,6.7493002798881e-310,6.7473010795682e-310,6.74530187924834e-310,6.74330267892844e-310,6.7413034786086e-310,6.7393042782887e-310,6.73730507796884e-310,6.73530587764895e-310,6.7333066773291e-310,6.7313074770092e-310,6.72930827668935e-310,6.72730907636945e-310,6.7253098760496e-310,6.7233106757297e-310,6.72131147540986e-310,6.71931227508996e-310,6.7173130747701e-310,6.7153138744502e-310,6.71331467413037e-310,6.71131547381047e-310,6.7093162734906e-310,6.7073170731707e-310,6.70531787285087e-310,6.703318672531e-310,6.70131947221113e-310,6.69932027189123e-310,6.6973210715714e-310,6.69532187125153e-310,6.69332267093164e-310,6.6913234706118e-310,6.6893242702919e-310,6.68732506997204e-310,6.68532586965214e-310,6.6833266693323e-310,6.6813274690124e-310,6.67932826869255e-310,6.67732906837265e-310,6.6753298680528e-310,6.6733306677329e-310,6.67133146741306e-310,6.66933226709316e-310,6.6673330667733e-310,6.6653338664534e-310,6.66333466613357e-310,6.66133546581367e-310,6.6593362654938e-310,6.6573370651739e-310,6.65533786485407e-310,6.6533386645342e-310,6.65133946421433e-310,6.64934026389443e-310,6.6473410635746e-310,6.64534186325473e-310,6.64334266293484e-310,6.641343462615e-310,6.6393442622951e-310,6.63734506197524e-310,6.63534586165534e-310,6.6333466613355e-310,6.6313474610156e-310,6.62934826069575e-310,6.62734906037585e-310,6.625349860056e-310,6.6233506597361e-310,6.62135145941626e-310,6.61935225909636e-310,6.6173530587765e-310,6.6153538584566e-310,6.61335465813676e-310,6.61135545781687e-310,6.609356257497e-310,6.6073570571771e-310,6.60535785685727e-310,6.60335865653737e-310,6.60135945621753e-310,6.5993602558977e-310,6.5973610555778e-310,6.59536185525793e-310,6.59336265493803e-310,6.5913634546182e-310,6.5893642542983e-310,6.58736505397844e-310,6.58536585365854e-310,6.5833666533387e-310,6.5813674530188e-310,6.57936825269895e-310,6.57736905237905e-310,6.5753698520592e-310,6.5733706517393e-310,6.57137145141946e-310,6.56937225109956e-310,6.5673730507797e-310,6.5653738504598e-310,6.56337465013996e-310,6.56137544982007e-310,6.5593762495002e-310,6.5573770491803e-310,6.55537784886047e-310,6.55337864854057e-310,6.55137944822072e-310,6.5493802479009e-310,6.547381047581e-310,6.54538184726113e-310,6.54338264694123e-310,6.5413834466214e-310,6.5393842463015e-310,6.53738504598164e-310,6.53538584566174e-310,6.5333866453419e-310,6.531387445022e-310,6.52938824470215e-310,6.52738904438225e-310,6.5253898440624e-310,6.5233906437425e-310,6.52139144342265e-310,6.51939224310276e-310,6.5173930427829e-310,6.515393842463e-310,6.51339464214316e-310,6.51139544182326e-310,6.5093962415034e-310,6.5073970411835e-310,6.50539784086367e-310,6.50339864054377e-310,6.5013994402239e-310,6.49940023990408e-310,6.4974010395842e-310,6.49540183926433e-310,6.49340263894443e-310,6.4914034386246e-310,6.4894042383047e-310,6.48740503798484e-310,6.48540583766494e-310,6.4834066373451e-310,6.4814074370252e-310,6.47940823670534e-310,6.47740903638545e-310,6.4754098360656e-310,6.4734106357457e-310,6.47141143542585e-310,6.46941223510595e-310,6.4674130347861e-310,6.4654138344662e-310,6.46341463414636e-310,6.46141543382646e-310,6.4594162335066e-310,6.4574170331867e-310,6.45541783286687e-310,6.45341863254697e-310,6.4514194322271e-310,6.44942023190727e-310,6.4474210315874e-310,6.44542183126753e-310,6.44342263094763e-310,6.4414234306278e-310,6.4394242303079e-310,6.43742502998804e-310,6.43542582966814e-310,6.4334266293483e-310,6.4314274290284e-310,6.42942822870854e-310,6.42742902838865e-310,6.4254298280688e-310,6.4234306277489e-310,6.42143142742905e-310,6.41943222710915e-310,6.4174330267893e-310,6.4154338264694e-310,6.41343462614956e-310,6.41143542582966e-310,6.4094362255098e-310,6.4074370251899e-310,6.40543782487007e-310,6.40343862455017e-310,6.4014394242303e-310,6.3994402239104e-310,6.39744102359057e-310,6.39544182327073e-310,6.39344262295083e-310,6.391443422631e-310,6.3894442223111e-310,6.38744502199123e-310,6.38544582167134e-310,6.3834466213515e-310,6.3814474210316e-310,6.37944822071174e-310,6.37744902039184e-310,6.375449820072e-310,6.3734506197521e-310,6.37145141943225e-310,6.36945221911235e-310,6.3674530187925e-310,6.3654538184726e-310,6.36345461815276e-310,6.36145541783286e-310,6.359456217513e-310,6.3574570171931e-310,6.35545781687327e-310,6.35345861655337e-310,6.3514594162335e-310,6.34946021591367e-310,6.34746101559377e-310,6.34546181527392e-310,6.34346261495403e-310,6.3414634146342e-310,6.3394642143143e-310,6.33746501399443e-310,6.33546581367453e-310,6.3334666133547e-310,6.3314674130348e-310,6.32946821271494e-310,6.32746901239504e-310,6.3254698120752e-310,6.3234706117553e-310,6.32147141143545e-310,6.31947221111555e-310,6.3174730107957e-310,6.3154738104758e-310,6.31347461015596e-310,6.31147540983606e-310,6.3094762095162e-310,6.3074770091963e-310,6.30547780887646e-310,6.30347860855657e-310,6.3014794082367e-310,6.29948020791687e-310,6.29748100759697e-310,6.2954818072771e-310,6.29348260695723e-310,6.2914834066374e-310,6.2894842063175e-310,6.28748500599763e-310,6.28548580567773e-310,6.2834866053579e-310,6.281487405038e-310,6.27948820471814e-310,6.27748900439824e-310,6.2754898040784e-310,6.2734906037585e-310,6.27149140343865e-310,6.26949220311875e-310,6.2674930027989e-310,6.265493802479e-310,6.26349460215915e-310,6.26149540183926e-310,6.2594962015194e-310,6.2574970011995e-310,6.25549780087966e-310,6.25349860055976e-310,6.2514994002399e-310,6.24950019992007e-310,6.24750099960017e-310,6.2455017992803e-310,6.2435025989604e-310,6.2415033986406e-310,6.2395041983207e-310,6.23750499800083e-310,6.23550579768093e-310,6.2335065973611e-310,6.2315073970412e-310,6.22950819672134e-310,6.22750899640144e-310,6.2255097960816e-310,6.2235105957617e-310,6.22151139544185e-310,6.21951219512195e-310,6.2175129948021e-310,6.2155137944822e-310,6.21351459416235e-310,6.21151539384246e-310,6.2095161935226e-310,6.2075169932027e-310,6.20551779288286e-310,6.20351859256296e-310,6.2015193922431e-310,6.19952019192327e-310,6.19752099160337e-310,6.1955217912835e-310,6.1935225909636e-310,6.19152339064377e-310,6.1895241903239e-310,6.18752499000403e-310,6.18552578968413e-310,6.1835265893643e-310,6.1815273890444e-310,6.17952818872454e-310,6.17752898840464e-310,6.1755297880848e-310,6.1735305877649e-310,6.17153138744504e-310,6.16953218712515e-310,6.1675329868053e-310,6.1655337864854e-310,6.16353458616555e-310,6.16153538584565e-310,6.1595361855258e-310,6.1575369852059e-310,6.15553778488606e-310,6.15353858456616e-310,6.1515393842463e-310,6.1495401839264e-310,6.14754098360657e-310,6.1455417832867e-310,6.1435425829668e-310,6.14154338264697e-310,6.1395441823271e-310,6.13754498200723e-310,6.13554578168733e-310,6.1335465813675e-310,6.1315473810476e-310,6.12954818072774e-310,6.12754898040784e-310,6.125549780088e-310,6.1235505797681e-310,6.12155137944824e-310,6.11955217912835e-310,6.1175529788085e-310,6.1155537784886e-310,6.11355457816875e-310,6.11155537784885e-310,6.109556177529e-310,6.1075569772091e-310,6.10555777688926e-310,6.10355857656936e-310,6.1015593762495e-310,6.0995601759296e-310,6.09756097560977e-310,6.0955617752899e-310,6.09356257497e-310,6.09156337465017e-310,6.08956417433027e-310,6.08756497401043e-310,6.08556577369053e-310,6.0835665733707e-310,6.0815673730508e-310,6.07956817273093e-310,6.07756897241104e-310,6.0755697720912e-310,6.0735705717713e-310,6.07157137145144e-310,6.06957217113154e-310,6.0675729708117e-310,6.0655737704918e-310,6.06357457017195e-310,6.06157536985205e-310,6.0595761695322e-310,6.0575769692123e-310,6.05557776889246e-310,6.05357856857256e-310,6.0515793682527e-310,6.04958016793286e-310,6.04758096761297e-310,6.0455817672931e-310,6.0435825669732e-310,6.04158336665337e-310,6.03958416633347e-310,6.0375849660136e-310,6.03558576569373e-310,6.0335865653739e-310,6.031587365054e-310,6.02958816473413e-310,6.02758896441423e-310,6.0255897640944e-310,6.0235905637745e-310,6.02159136345464e-310,6.01959216313474e-310,6.0175929628149e-310,6.015593762495e-310,6.01359456217515e-310,6.01159536185525e-310,6.0095961615354e-310,6.0075969612155e-310,6.00559776089566e-310,6.00359856057576e-310,6.0015993602559e-310,5.99960015993606e-310,5.99760095961616e-310,5.9956017592963e-310,5.9936025589764e-310,5.99160335865657e-310,5.98960415833667e-310,5.9876049580168e-310,5.98560575769693e-310,5.9836065573771e-310,5.9816073570572e-310,5.97960815673733e-310,5.97760895641743e-310,5.9756097560976e-310,5.9736105557777e-310,5.97161135545784e-310,5.96961215513794e-310,5.9676129548181e-310,5.9656137544982e-310,5.96361455417835e-310,5.96161535385845e-310,5.9596161535386e-310,5.9576169532187e-310,5.95561775289885e-310,5.95361855257896e-310,5.9516193522591e-310,5.94962015193926e-310,5.94762095161936e-310,5.9456217512995e-310,5.9436225509796e-310,5.94162335065977e-310,5.93962415033987e-310,5.93762495002e-310,5.9356257497001e-310,5.9336265493803e-310,5.9316273490604e-310,5.92962814874053e-310,5.92762894842063e-310,5.9256297481008e-310,5.9236305477809e-310,5.92163134746104e-310,5.91963214714114e-310,5.9176329468213e-310,5.9156337465014e-310,5.91363454618155e-310,5.91163534586165e-310,5.9096361455418e-310,5.9076369452219e-310,5.90563774490205e-310,5.90363854458216e-310,5.9016393442623e-310,5.89964014394246e-310,5.89764094362256e-310,5.8956417433027e-310,5.8936425429828e-310,5.89164334266297e-310,5.88964414234307e-310,5.8876449420232e-310,5.8856457417033e-310,5.88364654138347e-310,5.8816473410636e-310,5.87964814074373e-310,5.87764894042383e-310,5.875649740104e-310,5.8736505397841e-310,5.87165133946424e-310,5.86965213914434e-310,5.8676529388245e-310,5.8656537385046e-310,5.86365453818474e-310,5.86165533786485e-310,5.859656137545e-310,5.8576569372251e-310,5.85565773690525e-310,5.85365853658535e-310,5.8516593362655e-310,5.8496601359456e-310,5.84766093562576e-310,5.8456617353059e-310,5.843662534986e-310,5.84166333466617e-310,5.83966413434627e-310,5.8376649340264e-310,5.8356657337065e-310,5.83366653338667e-310,5.83166733306678e-310,5.82966813274693e-310,5.82766893242703e-310,5.8256697321072e-310,5.8236705317873e-310,5.82167133146743e-310,5.81967213114754e-310,5.8176729308277e-310,5.8156737305078e-310,5.81367453018794e-310,5.81167532986804e-310,5.8096761295482e-310,5.8076769292283e-310,5.80567772890845e-310,5.80367852858855e-310,5.8016793282687e-310,5.7996801279488e-310,5.79768092762896e-310,5.7956817273091e-310,5.7936825269892e-310,5.79168332666936e-310,5.78968412634947e-310,5.7876849260296e-310,5.7856857257097e-310,5.78368652538987e-310,5.78168732506997e-310,5.77968812475013e-310,5.77768892443023e-310,5.7756897241104e-310,5.7736905237905e-310,5.77169132347063e-310,5.76969212315074e-310,5.7676929228309e-310,5.765693722511e-310,5.76369452219114e-310,5.76169532187124e-310,5.7596961215514e-310,5.7576969212315e-310,5.75569772091165e-310,5.75369852059175e-310,5.7516993202719e-310,5.74970011995205e-310,5.74770091963216e-310,5.7457017193123e-310,5.7437025189924e-310,5.74170331867256e-310,5.73970411835266e-310,5.7377049180328e-310,5.7357057177129e-310,5.73370651739307e-310,5.73170731707317e-310,5.7297081167533e-310,5.72770891643343e-310,5.7257097161136e-310,5.7237105157937e-310,5.72171131547383e-310,5.71971211515393e-310,5.7177129148341e-310,5.7157137145142e-310,5.71371451419434e-310,5.71171531387444e-310,5.7097161135546e-310,5.7077169132347e-310,5.70571771291485e-310,5.70371851259495e-310,5.7017193122751e-310,5.69972011195525e-310,5.69772091163536e-310,5.6957217113155e-310,5.6937225109956e-310,5.69172331067576e-310,5.68972411035586e-310,5.687724910036e-310,5.6857257097161e-310,5.68372650939627e-310,5.68172730907637e-310,5.6797281087565e-310,5.67772890843663e-310,5.6757297081168e-310,5.6737305077969e-310,5.67173130747703e-310,5.66973210715713e-310,5.6677329068373e-310,5.6657337065174e-310,5.66373450619754e-310,5.66173530587764e-310,5.6597361055578e-310,5.6577369052379e-310,5.65573770491805e-310,5.65373850459815e-310,5.6517393042783e-310,5.6497401039584e-310,5.64774090363855e-310,5.6457417033187e-310,5.6437425029988e-310,5.64174330267896e-310,5.63974410235906e-310,5.6377449020392e-310,5.6357457017193e-310,5.63374650139947e-310,5.63174730107957e-310,5.6297481007597e-310,5.6277489004398e-310,5.62574970012e-310,5.6237504998001e-310,5.62175129948023e-310,5.61975209916033e-310,5.6177528988405e-310,5.6157536985206e-310,5.61375449820074e-310,5.61175529788084e-310,5.609756097561e-310,5.6077568972411e-310,5.60575769692124e-310,5.60375849660135e-310,5.6017592962815e-310,5.59976009596165e-310,5.59776089564175e-310,5.5957616953219e-310,5.593762495002e-310,5.59176329468216e-310,5.58976409436226e-310,5.5877648940424e-310,5.5857656937225e-310,5.58376649340267e-310,5.58176729308277e-310,5.5797680927629e-310,5.577768892443e-310,5.57576969212317e-310,5.5737704918033e-310,5.57177129148343e-310,5.56977209116353e-310,5.5677728908437e-310,5.5657736905238e-310,5.56377449020394e-310,5.56177528988404e-310,5.5597760895642e-310,5.5577768892443e-310,5.55577768892444e-310,5.55377848860455e-310,5.5517792882847e-310,5.54978008796485e-310,5.54778088764495e-310,5.5457816873251e-310,5.5437824870052e-310,5.54178328668536e-310,5.53978408636546e-310,5.5377848860456e-310,5.5357856857257e-310,5.53378648540586e-310,5.53178728508597e-310,5.5297880847661e-310,5.5277888844462e-310,5.52578968412637e-310,5.52379048380647e-310,5.52179128348663e-310,5.51979208316673e-310,5.5177928828469e-310,5.515793682527e-310,5.51379448220713e-310,5.51179528188724e-310,5.5097960815674e-310,5.5077968812475e-310,5.50579768092764e-310,5.50379848060774e-310,5.5017992802879e-310,5.499800079968e-310,5.49780087964815e-310,5.4958016793283e-310,5.4938024790084e-310,5.49180327868856e-310,5.48980407836866e-310,5.4878048780488e-310,5.4858056777289e-310,5.48380647740906e-310,5.48180727708917e-310,5.4798080767693e-310,5.4778088764494e-310,5.47580967612957e-310,5.47381047580967e-310,5.47181127548983e-310,5.46981207516993e-310,5.4678128748501e-310,5.4658136745302e-310,5.46381447421033e-310,5.46181527389044e-310,5.4598160735706e-310,5.4578168732507e-310,5.45581767293084e-310,5.45381847261094e-310,5.4518192722911e-310,5.44982007197125e-310,5.44782087165135e-310,5.4458216713315e-310,5.4438224710116e-310,5.44182327069175e-310,5.43982407037186e-310,5.437824870052e-310,5.4358256697321e-310,5.43382646941226e-310,5.43182726909236e-310,5.4298280687725e-310,5.4278288684526e-310,5.42582966813277e-310,5.42383046781287e-310,5.421831267493e-310,5.41983206717313e-310,5.4178328668533e-310,5.4158336665334e-310,5.41383446621353e-310,5.41183526589363e-310,5.4098360655738e-310,5.4078368652539e-310,5.40583766493404e-310,5.40383846461414e-310,5.4018392642943e-310,5.39984006397445e-310,5.39784086365455e-310,5.3958416633347e-310,5.3938424630148e-310,5.39184326269495e-310,5.38984406237506e-310,5.3878448620552e-310,5.3858456617353e-310,5.38384646141546e-310,5.38184726109556e-310,5.3798480607757e-310,5.3778488604558e-310,5.37584966013597e-310,5.37385045981607e-310,5.3718512594962e-310,5.3698520591763e-310,5.3678528588565e-310,5.3658536585366e-310,5.36385445821673e-310,5.36185525789683e-310,5.359856057577e-310,5.3578568572571e-310,5.35585765693724e-310,5.35385845661734e-310,5.3518592562975e-310,5.3498600559776e-310,5.34786085565775e-310,5.3458616553379e-310,5.343862455018e-310,5.34186325469815e-310,5.33986405437825e-310,5.3378648540584e-310,5.3358656537385e-310,5.33386645341866e-310,5.33186725309876e-310,5.3298680527789e-310,5.327868852459e-310,5.32586965213917e-310,5.32387045181927e-310,5.3218712514994e-310,5.3198720511795e-310,5.31787285085967e-310,5.3158736505398e-310,5.31387445021993e-310,5.31187524990003e-310,5.3098760495802e-310,5.3078768492603e-310,5.30587764894044e-310,5.30387844862054e-310,5.3018792483007e-310,5.29988004798084e-310,5.29788084766094e-310,5.2958816473411e-310,5.2938824470212e-310,5.29188324670135e-310,5.28988404638145e-310,5.2878848460616e-310,5.2858856457417e-310,5.28388644542186e-310,5.28188724510196e-310,5.2798880447821e-310,5.2778888444622e-310,5.27588964414237e-310,5.27389044382247e-310,5.2718912435026e-310,5.2698920431827e-310,5.26789284286287e-310,5.265893642543e-310,5.26389444222313e-310,5.26189524190323e-310,5.2598960415834e-310,5.2578968412635e-310,5.25589764094364e-310,5.25389844062374e-310,5.2518992403039e-310,5.249900039984e-310,5.24790083966414e-310,5.2459016393443e-310,5.2439024390244e-310,5.24190323870455e-310,5.23990403838465e-310,5.2379048380648e-310,5.2359056377449e-310,5.23390643742506e-310,5.23190723710516e-310,5.2299080367853e-310,5.2279088364654e-310,5.22590963614556e-310,5.22391043582567e-310,5.2219112355058e-310,5.2199120351859e-310,5.21791283486607e-310,5.21591363454617e-310,5.21391443422633e-310,5.21191523390643e-310,5.2099160335866e-310,5.2079168332667e-310,5.20591763294683e-310,5.20391843262694e-310,5.2019192323071e-310,5.1999200319872e-310,5.19792083166734e-310,5.1959216313475e-310,5.1939224310276e-310,5.19192323070775e-310,5.18992403038785e-310,5.187924830068e-310,5.1859256297481e-310,5.18392642942826e-310,5.18192722910836e-310,5.1799280287885e-310,5.1779288284686e-310,5.17592962814876e-310,5.17393042782887e-310,5.171931227509e-310,5.1699320271891e-310,5.16793282686927e-310,5.16593362654937e-310,5.16393442622952e-310,5.16193522590963e-310,5.1599360255898e-310,5.1579368252699e-310,5.15593762495003e-310,5.15393842463013e-310,5.1519392243103e-310,5.14994002399044e-310,5.14794082367054e-310,5.1459416233507e-310,5.1439424230308e-310,5.14194322271095e-310,5.13994402239105e-310,5.1379448220712e-310,5.1359456217513e-310,5.13394642143145e-310,5.13194722111156e-310,5.1299480207917e-310,5.1279488204718e-310,5.12594962015196e-310,5.12395041983206e-310,5.1219512195122e-310,5.1199520191923e-310,5.11795281887247e-310,5.11595361855257e-310,5.1139544182327e-310,5.11195521791283e-310,5.109956017593e-310,5.1079568172731e-310,5.10595761695323e-310,5.10395841663333e-310,5.1019592163135e-310,5.0999600159936e-310,5.09796081567374e-310,5.0959616153539e-310,5.093962415034e-310,5.09196321471414e-310,5.08996401439425e-310,5.0879648140744e-310,5.0859656137545e-310,5.08396641343465e-310,5.08196721311475e-310,5.0799680127949e-310,5.077968812475e-310,5.07596961215516e-310,5.07397041183526e-310,5.0719712115154e-310,5.0699720111955e-310,5.06797281087567e-310,5.06597361055577e-310,5.0639744102359e-310,5.061975209916e-310,5.0599760095962e-310,5.0579768092763e-310,5.05597760895643e-310,5.05397840863653e-310,5.0519792083167e-310,5.0499800079968e-310,5.04798080767694e-310,5.0459816073571e-310,5.0439824070372e-310,5.04198320671734e-310,5.03998400639745e-310,5.0379848060776e-310,5.0359856057577e-310,5.03398640543785e-310,5.03198720511795e-310,5.0299880047981e-310,5.0279888044782e-310,5.02598960415836e-310,5.02399040383846e-310,5.0219912035186e-310,5.0199920031987e-310,5.01799280287887e-310,5.01599360255897e-310,5.0139944022391e-310,5.0119952019192e-310,5.00999600159937e-310,5.0079968012795e-310,5.00599760095963e-310,5.00399840063973e-310,5.0019992003199e-310,5.00000000000003e-310,4.99800079968014e-310,4.9960015993603e-310,4.9940023990404e-310,4.99200319872054e-310,4.99000399840064e-310,4.9880047980808e-310,4.9860055977609e-310,4.98400639744105e-310,4.98200719712115e-310,4.9800079968013e-310,4.9780087964814e-310,4.97600959616156e-310,4.97401039584166e-310,4.9720111955218e-310,4.9700119952019e-310,4.96801279488207e-310,4.96601359456217e-310,4.9640143942423e-310,4.9620151939224e-310,4.96001599360257e-310,4.9580167932827e-310,4.95601759296283e-310,4.95401839264293e-310,4.9520191923231e-310,4.9500199920032e-310,4.94802079168334e-310,4.9460215913635e-310,4.9440223910436e-310,4.94202319072374e-310,4.94002399040384e-310,4.938024790084e-310,4.9360255897641e-310,4.93402638944425e-310,4.93202718912435e-310,4.9300279888045e-310,4.9280287884846e-310,4.92602958816476e-310,4.92403038784486e-310,4.922031187525e-310,4.9200319872051e-310,4.91803278688526e-310,4.91603358656537e-310,4.9140343862455e-310,4.9120351859256e-310,4.91003598560577e-310,4.90803678528587e-310,4.90603758496603e-310,4.90403838464613e-310,4.9020391843263e-310,4.90003998400643e-310,4.89804078368653e-310,4.8960415833667e-310,4.8940423830468e-310,4.89204318272694e-310,4.89004398240704e-310,4.8880447820872e-310,4.8860455817673e-310,4.88404638144745e-310,4.88204718112755e-310,4.8800479808077e-310,4.8780487804878e-310,4.87604958016795e-310,4.87405037984806e-310,4.8720511795282e-310,4.8700519792083e-310,4.86805277888846e-310,4.86605357856856e-310,4.8640543782487e-310,4.8620551779288e-310,4.86005597760897e-310,4.85805677728907e-310,4.8560575769692e-310,4.85405837664933e-310,4.8520591763295e-310,4.85005997600963e-310,4.84806077568973e-310,4.8460615753699e-310,4.84406237505e-310,4.84206317473014e-310,4.84006397441024e-310,4.8380647740904e-310,4.8360655737705e-310,4.83406637345065e-310,4.83206717313075e-310,4.8300679728109e-310,4.828068772491e-310,4.82606957217115e-310,4.82407037185126e-310,4.8220711715314e-310,4.8200719712115e-310,4.81807277089166e-310,4.81607357057176e-310,4.8140743702519e-310,4.812075169932e-310,4.81007596961217e-310,4.80807676929227e-310,4.8060775689724e-310,4.80407836865253e-310,4.8020791683327e-310,4.8000799680128e-310,4.79808076769293e-310,4.7960815673731e-310,4.7940823670532e-310,4.79208316673334e-310,4.79008396641344e-310,4.7880847660936e-310,4.7860855657737e-310,4.78408636545384e-310,4.78208716513395e-310,4.7800879648141e-310,4.7780887644942e-310,4.77608956417435e-310,4.77409036385445e-310,4.7720911635346e-310,4.7700919632147e-310,4.76809276289486e-310,4.76609356257496e-310,4.7640943622551e-310,4.7620951619352e-310,4.76009596161537e-310,4.75809676129547e-310,4.7560975609756e-310,4.7540983606557e-310,4.7520991603359e-310,4.75009996001603e-310,4.74810075969613e-310,4.7461015593763e-310,4.7441023590564e-310,4.74210315873654e-310,4.74010395841664e-310,4.7381047580968e-310,4.7361055577769e-310,4.73410635745704e-310,4.73210715713715e-310,4.7301079568173e-310,4.7281087564974e-310,4.72610955617755e-310,4.72411035585765e-310,4.7221111555378e-310,4.7201119552179e-310,4.71811275489806e-310,4.71611355457816e-310,4.7141143542583e-310,4.7121151539384e-310,4.71011595361857e-310,4.70811675329867e-310,4.7061175529788e-310,4.7041183526589e-310,4.70211915233907e-310,4.70011995201923e-310,4.69812075169933e-310,4.6961215513795e-310,4.6941223510596e-310,4.69212315073973e-310,4.69012395041984e-310,4.6881247501e-310,4.6861255497801e-310,4.68412634946024e-310,4.68212714914034e-310,4.6801279488205e-310,4.6781287485006e-310,4.67612954818075e-310,4.67413034786085e-310,4.672131147541e-310,4.6701319472211e-310,4.66813274690126e-310,4.66613354658136e-310,4.6641343462615e-310,4.6621351459416e-310,4.66013594562177e-310,4.65813674530187e-310,4.656137544982e-310,4.6541383446621e-310,4.65213914434227e-310,4.65013994402238e-310,4.64814074370253e-310,4.6461415433827e-310,4.6441423430628e-310,4.64214314274293e-310,4.64014394242303e-310,4.6381447421032e-310,4.6361455417833e-310,4.63414634146344e-310,4.63214714114354e-310,4.6301479408237e-310,4.6281487405038e-310,4.62614954018395e-310,4.62415033986405e-310,4.6221511395442e-310,4.6201519392243e-310,4.61815273890446e-310,4.61615353858456e-310,4.6141543382647e-310,4.6121551379448e-310,4.61015593762496e-310,4.60815673730507e-310,4.6061575369852e-310,4.6041583366653e-310,4.60215913634547e-310,4.6001599360256e-310,4.59816073570573e-310,4.5961615353859e-310,4.594162335066e-310,4.59216313474613e-310,4.59016393442623e-310,4.5881647341064e-310,4.5861655337865e-310,4.58416633346664e-310,4.58216713314674e-310,4.5801679328269e-310,4.578168732507e-310,4.57616953218715e-310,4.57417033186725e-310,4.5721711315474e-310,4.5701719312275e-310,4.56817273090765e-310,4.56617353058776e-310,4.5641743302679e-310,4.562175129948e-310,4.56017592962816e-310,4.55817672930826e-310,4.5561775289884e-310,4.5541783286685e-310,4.55217912834867e-310,4.55017992802877e-310,4.5481807277089e-310,4.5461815273891e-310,4.5441823270692e-310,4.54218312674933e-310,4.54018392642943e-310,4.5381847261096e-310,4.5361855257897e-310,4.53418632546984e-310,4.53218712514994e-310,4.5301879248301e-310,4.5281887245102e-310,4.52618952419035e-310,4.52419032387045e-310,4.5221911235506e-310,4.5201919232307e-310,4.51819272291085e-310,4.51619352259096e-310,4.5141943222711e-310,4.5121951219512e-310,4.51019592163136e-310,4.50819672131146e-310,4.5061975209916e-310,4.5041983206717e-310,4.50219912035187e-310,4.50019992003197e-310,4.4982007197121e-310,4.49620151939227e-310,4.4942023190724e-310,4.49220311875253e-310,4.49020391843263e-310,4.4882047181128e-310,4.4862055177929e-310,4.48420631747304e-310,4.48220711715314e-310,4.4802079168333e-310,4.4782087165134e-310,4.47620951619354e-310,4.47421031587365e-310,4.4722111155538e-310,4.4702119152339e-310,4.46821271491405e-310,4.46621351459415e-310,4.4642143142743e-310,4.4622151139544e-310,4.46021591363456e-310,4.45821671331466e-310,4.4562175129948e-310,4.4542183126749e-310,4.45221911235507e-310,4.4502199120352e-310,4.4482207117153e-310,4.44622151139547e-310,4.4442223110756e-310,4.44222311075573e-310,4.44022391043583e-310,4.438224710116e-310,4.4362255097961e-310,4.43422630947623e-310,4.43222710915634e-310,4.4302279088365e-310,4.4282287085166e-310,4.42622950819674e-310,4.42423030787684e-310,4.422231107557e-310,4.4202319072371e-310,4.41823270691725e-310,4.41623350659735e-310,4.4142343062775e-310,4.4122351059576e-310,4.41023590563776e-310,4.40823670531786e-310,4.406237504998e-310,4.4042383046781e-310,4.40223910435827e-310,4.40023990403837e-310,4.3982407037185e-310,4.39624150339867e-310,4.39424230307877e-310,4.39224310275893e-310,4.39024390243903e-310,4.3882447021192e-310,4.3862455017993e-310,4.38424630147943e-310,4.38224710115954e-310,4.3802479008397e-310,4.3782487005198e-310,4.37624950019994e-310,4.37425029988004e-310,4.3722510995602e-310,4.3702518992403e-310,4.36825269892045e-310,4.36625349860055e-310,4.3642542982807e-310,4.3622550979608e-310,4.36025589764096e-310,4.35825669732106e-310,4.3562574970012e-310,4.3542582966813e-310,4.35225909636146e-310,4.35025989604157e-310,4.3482606957217e-310,4.34626149540187e-310,4.34426229508197e-310,4.3422630947621e-310,4.34026389444223e-310,4.3382646941224e-310,4.3362654938025e-310,4.33426629348263e-310,4.33226709316273e-310,4.3302678928429e-310,4.328268692523e-310,4.32626949220314e-310,4.32427029188324e-310,4.3222710915634e-310,4.3202718912435e-310,4.31827269092365e-310,4.31627349060375e-310,4.3142742902839e-310,4.312275089964e-310,4.31027588964416e-310,4.30827668932426e-310,4.3062774890044e-310,4.3042782886845e-310,4.30227908836466e-310,4.3002798880448e-310,4.2982806877249e-310,4.29628148740507e-310,4.29428228708517e-310,4.2922830867653e-310,4.29028388644543e-310,4.2882846861256e-310,4.2862854858057e-310,4.28428628548583e-310,4.28228708516593e-310,4.2802878848461e-310,4.2782886845262e-310,4.27628948420634e-310,4.27429028388644e-310,4.2722910835666e-310,4.2702918832467e-310,4.26829268292685e-310,4.26629348260695e-310,4.2642942822871e-310,4.2622950819672e-310,4.26029588164735e-310,4.25829668132746e-310,4.2562974810076e-310,4.2542982806877e-310,4.25229908036786e-310,4.25029988004796e-310,4.2483006797281e-310,4.24630147940827e-310,4.24430227908837e-310,4.2423030787685e-310,4.2403038784486e-310,4.2383046781288e-310,4.2363054778089e-310,4.23430627748903e-310,4.23230707716913e-310,4.2303078768493e-310,4.2283086765294e-310,4.22630947620954e-310,4.22431027588964e-310,4.2223110755698e-310,4.2203118752499e-310,4.21831267493004e-310,4.21631347461015e-310,4.2143142742903e-310,4.2123150739704e-310,4.21031587365055e-310,4.20831667333066e-310,4.2063174730108e-310,4.2043182726909e-310,4.20231907237106e-310,4.20031987205116e-310,4.1983206717313e-310,4.19632147141147e-310,4.19432227109157e-310,4.1923230707717e-310,4.1903238704518e-310,4.18832467013197e-310,4.1863254698121e-310,4.18432626949223e-310,4.18232706917233e-310,4.1803278688525e-310,4.1783286685326e-310,4.17632946821274e-310,4.17433026789284e-310,4.172331067573e-310,4.1703318672531e-310,4.16833266693324e-310,4.16633346661335e-310,4.1643342662935e-310,4.1623350659736e-310,4.16033586565375e-310,4.15833666533385e-310,4.156337465014e-310,4.1543382646941e-310,4.15233906437426e-310,4.1503398640544e-310,4.1483406637345e-310,4.14634146341466e-310,4.14434226309477e-310,4.1423430627749e-310,4.140343862455e-310,4.13834466213517e-310,4.13634546181527e-310,4.13434626149543e-310,4.13234706117553e-310,4.1303478608557e-310,4.1283486605358e-310,4.12634946021593e-310,4.12435025989604e-310,4.1223510595762e-310,4.1203518592563e-310,4.11835265893644e-310,4.11635345861654e-310,4.1143542582967e-310,4.1123550579768e-310,4.11035585765695e-310,4.10835665733705e-310,4.1063574570172e-310,4.1043582566973e-310,4.10235905637746e-310,4.10035985605756e-310,4.0983606557377e-310,4.09636145541786e-310,4.09436225509797e-310,4.0923630547781e-310,4.0903638544582e-310,4.08836465413837e-310,4.08636545381847e-310,4.08436625349863e-310,4.08236705317873e-310,4.0803678528589e-310,4.078368652539e-310,4.07636945221913e-310,4.07437025189924e-310,4.0723710515794e-310,4.0703718512595e-310,4.06837265093964e-310,4.06637345061974e-310,4.0643742502999e-310,4.06237504998e-310,4.06037584966015e-310,4.05837664934025e-310,4.0563774490204e-310,4.0543782487005e-310,4.05237904838066e-310,4.05037984806076e-310,4.0483806477409e-310,4.04638144742106e-310,4.04438224710116e-310,4.0423830467813e-310,4.0403838464614e-310,4.03838464614157e-310,4.03638544582167e-310,4.0343862455018e-310,4.03238704518193e-310,4.0303878448621e-310,4.0283886445422e-310,4.02638944422233e-310,4.02439024390243e-310,4.0223910435826e-310,4.0203918432627e-310,4.01839264294284e-310,4.01639344262294e-310,4.0143942423031e-310,4.0123950419832e-310,4.01039584166335e-310,4.00839664134345e-310,4.0063974410236e-310,4.0043982407037e-310,4.00239904038386e-310,4.00039984006396e-310,3.9984006397441e-310,3.99640143942426e-310,3.99440223910436e-310,3.9924030387845e-310,3.9904038384646e-310,3.98840463814477e-310,3.98640543782487e-310,3.984406237505e-310,3.98240703718512e-310,3.9804078368653e-310,3.9784086365454e-310,3.97640943622553e-310,3.97441023590563e-310,3.9724110355858e-310,3.9704118352659e-310,3.96841263494604e-310,3.96641343462614e-310,3.9644142343063e-310,3.9624150339864e-310,3.96041583366655e-310,3.95841663334665e-310,3.9564174330268e-310,3.9544182327069e-310,3.95241903238705e-310,3.95041983206716e-310,3.9484206317473e-310,3.94642143142746e-310,3.94442223110756e-310,3.9424230307877e-310,3.9404238304678e-310,3.93842463014797e-310,3.93642542982807e-310,3.9344262295082e-310,3.9324270291883e-310,3.93042782886848e-310,3.9284286285486e-310,3.92642942822873e-310,3.92443022790883e-310,3.922431027589e-310,3.9204318272691e-310,3.91843262694924e-310,3.91643342662934e-310,3.9144342263095e-310,3.9124350259896e-310,3.91043582566974e-310,3.90843662534985e-310,3.90643742503e-310,3.9044382247101e-310,3.90243902439025e-310,3.90043982407035e-310,3.8984406237505e-310,3.89644142343066e-310,3.89444222311076e-310,3.8924430227909e-310,3.890443822471e-310,3.88844462215117e-310,3.88644542183127e-310,3.8844462215114e-310,3.8824470211915e-310,3.88044782087167e-310,3.8784486205518e-310,3.87644942023193e-310,3.87445021991203e-310,3.8724510195922e-310,3.8704518192723e-310,3.86845261895244e-310,3.86645341863254e-310,3.8644542183127e-310,3.8624550179928e-310,3.86045581767294e-310,3.85845661735305e-310,3.8564574170332e-310,3.8544582167133e-310,3.85245901639345e-310,3.85045981607355e-310,3.8484606157537e-310,3.84646141543386e-310,3.84446221511396e-310,3.8424630147941e-310,3.8404638144742e-310,3.83846461415436e-310,3.83646541383447e-310,3.8344662135146e-310,3.8324670131947e-310,3.83046781287487e-310,3.82846861255497e-310,3.82646941223513e-310,3.82447021191523e-310,3.8224710115954e-310,3.8204718112755e-310,3.81847261095563e-310,3.81647341063574e-310,3.8144742103159e-310,3.812475009996e-310,3.81047580967614e-310,3.80847660935624e-310,3.8064774090364e-310,3.8044782087165e-310,3.80247900839665e-310,3.80047980807675e-310,3.7984806077569e-310,3.79648140743706e-310,3.79448220711716e-310,3.7924830067973e-310,3.7904838064774e-310,3.78848460615756e-310,3.78648540583767e-310,3.7844862055178e-310,3.7824870051979e-310,3.78048780487807e-310,3.77848860455817e-310,3.77648940423832e-310,3.77449020391843e-310,3.7724910035986e-310,3.7704918032787e-310,3.76849260295883e-310,3.76649340263893e-310,3.7644942023191e-310,3.7624950019992e-310,3.76049580167934e-310,3.75849660135944e-310,3.7564974010396e-310,3.7544982007197e-310,3.75249900039985e-310,3.75049980007995e-310,3.7485005997601e-310,3.74650139944025e-310,3.74450219912036e-310,3.7425029988005e-310,3.7405037984806e-310,3.73850459816076e-310,3.73650539784086e-310,3.734506197521e-310,3.7325069972011e-310,3.73050779688127e-310,3.72850859656137e-310,3.7265093962415e-310,3.72451019592163e-310,3.7225109956018e-310,3.7205117952819e-310,3.71851259496203e-310,3.71651339464213e-310,3.7145141943223e-310,3.7125149940024e-310,3.71051579368254e-310,3.70851659336264e-310,3.7065173930428e-310,3.7045181927229e-310,3.70251899240305e-310,3.70051979208315e-310,3.6985205917633e-310,3.69652139144345e-310,3.69452219112355e-310,3.6925229908037e-310,3.6905237904838e-310,3.68852459016396e-310,3.68652538984406e-310,3.6845261895242e-310,3.6825269892043e-310,3.68052778888447e-310,3.67852858856457e-310,3.6765293882447e-310,3.6745301879248e-310,3.672530987605e-310,3.6705317872851e-310,3.66853258696523e-310,3.66653338664533e-310,3.6645341863255e-310,3.6625349860056e-310,3.66053578568574e-310,3.65853658536584e-310,3.656537385046e-310,3.6545381847261e-310,3.65253898440625e-310,3.65053978408635e-310,3.6485405837665e-310,3.64654138344665e-310,3.64454218312675e-310,3.6425429828069e-310,3.640543782487e-310,3.63854458216716e-310,3.63654538184726e-310,3.6345461815274e-310,3.6325469812075e-310,3.63054778088767e-310,3.62854858056777e-310,3.6265493802479e-310,3.624550179928e-310,3.62255097960817e-310,3.6205517792883e-310,3.61855257896843e-310,3.61655337864853e-310,3.6145541783287e-310,3.6125549780088e-310,3.61055577768894e-310,3.60855657736904e-310,3.6065573770492e-310,3.6045581767293e-310,3.60255897640944e-310,3.60055977608955e-310,3.5985605757697e-310,3.59656137544985e-310,3.59456217512995e-310,3.5925629748101e-310,3.5905637744902e-310,3.58856457417036e-310,3.58656537385046e-310,3.5845661735306e-310,3.5825669732107e-310,3.58056777289087e-310,3.57856857257097e-310,3.5765693722511e-310,3.5745701719312e-310,3.57257097161137e-310,3.5705717712915e-310,3.56857257097163e-310,3.56657337065173e-310,3.5645741703319e-310,3.562574970012e-310,3.56057576969214e-310,3.55857656937224e-310,3.5565773690524e-310,3.5545781687325e-310,3.55257896841264e-310,3.55057976809275e-310,3.5485805677729e-310,3.54658136745305e-310,3.54458216713315e-310,3.5425829668133e-310,3.5405837664934e-310,3.53858456617356e-310,3.53658536585366e-310,3.5345861655338e-310,3.5325869652139e-310,3.53058776489406e-310,3.52858856457417e-310,3.5265893642543e-310,3.5245901639344e-310,3.52259096361457e-310,3.52059176329467e-310,3.51859256297483e-310,3.51659336265493e-310,3.5145941623351e-310,3.5125949620152e-310,3.51059576169533e-310,3.50859656137544e-310,3.5065973610556e-310,3.5045981607357e-310,3.50259896041584e-310,3.50059976009594e-310,3.4986005597761e-310,3.49660135945625e-310,3.49460215913635e-310,3.4926029588165e-310,3.4906037584966e-310,3.48860455817675e-310,3.48660535785686e-310,3.484606157537e-310,3.4826069572171e-310,3.48060775689726e-310,3.47860855657737e-310,3.4766093562575e-310,3.4746101559376e-310,3.47261095561777e-310,3.47061175529787e-310,3.468612554978e-310,3.46661335465813e-310,3.4646141543383e-310,3.4626149540184e-310,3.46061575369853e-310,3.45861655337863e-310,3.4566173530588e-310,3.4546181527389e-310,3.45261895241904e-310,3.45061975209914e-310,3.4486205517793e-310,3.44662135145945e-310,3.44462215113955e-310,3.4426229508197e-310,3.4406237504998e-310,3.43862455017995e-310,3.43662534986006e-310,3.4346261495402e-310,3.4326269492203e-310,3.43062774890046e-310,3.42862854858056e-310,3.4266293482607e-310,3.4246301479408e-310,3.42263094762097e-310,3.42063174730107e-310,3.4186325469812e-310,3.41663334666133e-310,3.4146341463415e-310,3.4126349460216e-310,3.41063574570173e-310,3.40863654538183e-310,3.406637345062e-310,3.4046381447421e-310,3.40263894442224e-310,3.40063974410234e-310,3.3986405437825e-310,3.39664134346264e-310,3.39464214314275e-310,3.3926429428229e-310,3.390643742503e-310,3.38864454218315e-310,3.38664534186325e-310,3.3846461415434e-310,3.3826469412235e-310,3.38064774090366e-310,3.37864854058376e-310,3.3766493402639e-310,3.374650139944e-310,3.37265093962417e-310,3.37065173930427e-310,3.3686525389844e-310,3.3666533386645e-310,3.3646541383447e-310,3.3626549380248e-310,3.36065573770493e-310,3.35865653738503e-310,3.3566573370652e-310,3.3546581367453e-310,3.35265893642544e-310,3.35065973610554e-310,3.3486605357857e-310,3.34666133546584e-310,3.34466213514595e-310,3.3426629348261e-310,3.3406637345062e-310,3.33866453418635e-310,3.33666533386645e-310,3.3346661335466e-310,3.3326669332267e-310,3.33066773290686e-310,3.32866853258696e-310,3.3266693322671e-310,3.3246701319472e-310,3.32267093162737e-310,3.32067173130747e-310,3.3186725309876e-310,3.3166733306677e-310,3.31467413034787e-310,3.312674930028e-310,3.31067572970813e-310,3.30867652938823e-310,3.3066773290684e-310,3.3046781287485e-310,3.30267892842864e-310,3.30067972810874e-310,3.2986805277889e-310,3.29668132746904e-310,3.29468212714914e-310,3.2926829268293e-310,3.2906837265094e-310,3.28868452618955e-310,3.28668532586965e-310,3.2846861255498e-310,3.2826869252299e-310,3.28068772491006e-310,3.27868852459016e-310,3.2766893242703e-310,3.2746901239504e-310,3.27269092363057e-310,3.27069172331067e-310,3.2686925229908e-310,3.2666933226709e-310,3.26469412235107e-310,3.26269492203118e-310,3.26069572171133e-310,3.25869652139143e-310,3.2566973210716e-310,3.2546981207517e-310,3.25269892043183e-310,3.25069972011194e-310,3.2487005197921e-310,3.24670131947224e-310,3.24470211915234e-310,3.2427029188325e-310,3.2407037185126e-310,3.23870451819275e-310,3.23670531787285e-310,3.234706117553e-310,3.2327069172331e-310,3.23070771691326e-310,3.22870851659336e-310,3.2267093162735e-310,3.2247101159536e-310,3.22271091563376e-310,3.22071171531387e-310,3.218712514994e-310,3.2167133146741e-310,3.21471411435427e-310,3.21271491403437e-310,3.21071571371453e-310,3.20871651339463e-310,3.2067173130748e-310,3.2047181127549e-310,3.20271891243503e-310,3.20071971211514e-310,3.1987205117953e-310,3.19672131147544e-310,3.19472211115554e-310,3.1927229108357e-310,3.1907237105158e-310,3.18872451019595e-310,3.18672530987605e-310,3.1847261095562e-310,3.1827269092363e-310,3.18072770891645e-310,3.17872850859656e-310,3.1767293082767e-310,3.1747301079568e-310,3.17273090763696e-310,3.17073170731706e-310,3.1687325069972e-310,3.1667333066773e-310,3.16473410635747e-310,3.16273490603757e-310,3.1607357057177e-310,3.15873650539783e-310,3.156737305078e-310,3.1547381047581e-310,3.15273890443823e-310,3.15073970411833e-310,3.1487405037985e-310,3.14674130347864e-310,3.14474210315874e-310,3.1427429028389e-310,3.140743702519e-310,3.13874450219915e-310,3.13674530187925e-310,3.1347461015594e-310,3.1327469012395e-310,3.13074770091965e-310,3.12874850059976e-310,3.1267493002799e-310,3.12475009996e-310,3.12275089964016e-310,3.12075169932026e-310,3.1187524990004e-310,3.1167532986805e-310,3.11475409836067e-310,3.11275489804077e-310,3.1107556977209e-310,3.10875649740103e-310,3.1067572970812e-310,3.1047580967613e-310,3.10275889644143e-310,3.10075969612153e-310,3.0987604958017e-310,3.09676129548184e-310,3.09476209516194e-310,3.0927628948421e-310,3.0907636945222e-310,3.08876449420234e-310,3.08676529388245e-310,3.0847660935626e-310,3.0827668932427e-310,3.08076769292285e-310,3.07876849260295e-310,3.0767692922831e-310,3.0747700919632e-310,3.07277089164336e-310,3.07077169132346e-310,3.0687724910036e-310,3.0667732906837e-310,3.06477409036387e-310,3.06277489004397e-310,3.0607756897241e-310,3.0587764894042e-310,3.0567772890844e-310,3.0547780887645e-310,3.05277888844463e-310,3.05077968812473e-310,3.0487804878049e-310,3.04678128748503e-310,3.04478208716514e-310,3.0427828868453e-310,3.0407836865254e-310,3.03878448620554e-310,3.03678528588564e-310,3.0347860855658e-310,3.0327868852459e-310,3.03078768492605e-310,3.02878848460615e-310,3.0267892842863e-310,3.0247900839664e-310,3.02279088364656e-310,3.02079168332666e-310,3.0187924830068e-310,3.0167932826869e-310,3.01479408236707e-310,3.01279488204717e-310,3.0107956817273e-310,3.0087964814074e-310,3.00679728108757e-310,3.0047980807677e-310,3.00279888044783e-310,3.00079968012793e-310,2.9988004798081e-310,2.99680127948823e-310,2.99480207916834e-310,2.9928028788485e-310,2.9908036785286e-310,2.98880447820874e-310,2.98680527788884e-310,2.984806077569e-310,2.9828068772491e-310,2.98080767692925e-310,2.97880847660935e-310,2.9768092762895e-310,2.9748100759696e-310,2.97281087564976e-310,2.97081167532986e-310,2.96881247501e-310,2.9668132746901e-310,2.96481407437026e-310,2.96281487405037e-310,2.9608156737305e-310,2.9588164734106e-310,2.95681727309077e-310,2.95481807277087e-310,2.95281887245103e-310,2.95081967213113e-310,2.9488204718113e-310,2.94682127149143e-310,2.94482207117153e-310,2.9428228708517e-310,2.9408236705318e-310,2.93882447021194e-310,2.93682526989204e-310,2.9348260695722e-310,2.9328268692523e-310,2.93082766893245e-310,2.92882846861255e-310,2.9268292682927e-310,2.9248300679728e-310,2.92283086765296e-310,2.92083166733306e-310,2.9188324670132e-310,2.9168332666933e-310,2.91483406637346e-310,2.91283486605357e-310,2.9108356657337e-310,2.9088364654138e-310,2.90683726509397e-310,2.90483806477407e-310,2.90283886445423e-310,2.90083966413433e-310,2.8988404638145e-310,2.89684126349463e-310,2.89484206317473e-310,2.8928428628549e-310,2.890843662535e-310,2.88884446221514e-310,2.88684526189524e-310,2.8848460615754e-310,2.8828468612555e-310,2.88084766093565e-310,2.87884846061575e-310,2.8768492602959e-310,2.874850059976e-310,2.87285085965615e-310,2.87085165933626e-310,2.8688524590164e-310,2.8668532586965e-310,2.86485405837666e-310,2.86285485805676e-310,2.8608556577369e-310,2.858856457417e-310,2.85685725709717e-310,2.85485805677727e-310,2.8528588564574e-310,2.85085965613753e-310,2.8488604558177e-310,2.84686125549783e-310,2.84486205517793e-310,2.8428628548581e-310,2.8408636545382e-310,2.83886445421834e-310,2.83686525389844e-310,2.8348660535786e-310,2.8328668532587e-310,2.83086765293885e-310,2.82886845261895e-310,2.8268692522991e-310,2.8248700519792e-310,2.82287085165935e-310,2.82087165133946e-310,2.8188724510196e-310,2.8168732506997e-310,2.81487405037986e-310,2.81287485005996e-310,2.8108756497401e-310,2.8088764494202e-310,2.80687724910037e-310,2.80487804878047e-310,2.8028788484606e-310,2.80087964814072e-310,2.7988804478209e-310,2.79688124750103e-310,2.79488204718113e-310,2.7928828468613e-310,2.7908836465414e-310,2.78888444622154e-310,2.78688524590164e-310,2.7848860455818e-310,2.7828868452619e-310,2.78088764494204e-310,2.77888844462215e-310,2.7768892443023e-310,2.7748900439824e-310,2.77289084366255e-310,2.77089164334265e-310,2.7688924430228e-310,2.7668932427029e-310,2.76489404238306e-310,2.76289484206316e-310,2.7608956417433e-310,2.7588964414234e-310,2.75689724110357e-310,2.75489804078367e-310,2.7528988404638e-310,2.7508996401439e-310,2.74890043982408e-310,2.74690123950423e-310,2.74490203918433e-310,2.7429028388645e-310,2.7409036385446e-310,2.73890443822473e-310,2.73690523790484e-310,2.734906037585e-310,2.7329068372651e-310,2.73090763694524e-310,2.72890843662534e-310,2.7269092363055e-310,2.7249100359856e-310,2.72291083566575e-310,2.72091163534585e-310,2.718912435026e-310,2.7169132347061e-310,2.71491403438626e-310,2.71291483406636e-310,2.7109156337465e-310,2.7089164334266e-310,2.70691723310677e-310,2.70491803278687e-310,2.702918832467e-310,2.7009196321471e-310,2.69892043182727e-310,2.69692123150743e-310,2.69492203118753e-310,2.6929228308677e-310,2.6909236305478e-310,2.68892443022793e-310,2.68692522990804e-310,2.6849260295882e-310,2.6829268292683e-310,2.68092762894844e-310,2.67892842862854e-310,2.6769292283087e-310,2.6749300279888e-310,2.67293082766895e-310,2.67093162734905e-310,2.6689324270292e-310,2.6669332267093e-310,2.66493402638946e-310,2.66293482606956e-310,2.6609356257497e-310,2.6589364254298e-310,2.65693722510996e-310,2.65493802479007e-310,2.6529388244702e-310,2.6509396241503e-310,2.64894042383047e-310,2.6469412235106e-310,2.64494202319073e-310,2.6429428228709e-310,2.640943622551e-310,2.63894442223113e-310,2.63694522191123e-310,2.6349460215914e-310,2.6329468212715e-310,2.63094762095164e-310,2.62894842063174e-310,2.6269492203119e-310,2.624950019992e-310,2.62295081967215e-310,2.62095161935225e-310,2.6189524190324e-310,2.6169532187125e-310,2.61495401839266e-310,2.61295481807276e-310,2.6109556177529e-310,2.608956417433e-310,2.60695721711316e-310,2.60495801679327e-310,2.6029588164734e-310,2.6009596161535e-310,2.59896041583367e-310,2.5969612155138e-310,2.59496201519392e-310,2.5929628148741e-310,2.5909636145542e-310,2.58896441423433e-310,2.58696521391443e-310,2.5849660135946e-310,2.5829668132747e-310,2.58096761295484e-310,2.57896841263494e-310,2.5769692123151e-310,2.5749700119952e-310,2.57297081167535e-310,2.57097161135545e-310,2.5689724110356e-310,2.5669732107157e-310,2.56497401039585e-310,2.56297481007596e-310,2.5609756097561e-310,2.5589764094362e-310,2.55697720911636e-310,2.55497800879646e-310,2.5529788084766e-310,2.5509796081567e-310,2.54898040783687e-310,2.546981207517e-310,2.5449820071971e-310,2.54298280687728e-310,2.5409836065574e-310,2.53898440623753e-310,2.53698520591763e-310,2.5349860055978e-310,2.5329868052779e-310,2.53098760495804e-310,2.52898840463814e-310,2.5269892043183e-310,2.5249900039984e-310,2.52299080367854e-310,2.52099160335865e-310,2.5189924030388e-310,2.5169932027189e-310,2.51499400239905e-310,2.51299480207915e-310,2.5109956017593e-310,2.5089964014394e-310,2.50699720111956e-310,2.50499800079966e-310,2.5029988004798e-310,2.5009996001599e-310,2.49900039984007e-310,2.4970011995202e-310,2.4950019992003e-310,2.49300279888047e-310,2.4910035985606e-310,2.48900439824073e-310,2.48700519792083e-310,2.485005997601e-310,2.4830067972811e-310,2.48100759696124e-310,2.47900839664134e-310,2.4770091963215e-310,2.4750099960016e-310,2.47301079568174e-310,2.47101159536185e-310,2.469012395042e-310,2.4670131947221e-310,2.46501399440225e-310,2.46301479408235e-310,2.4610155937625e-310,2.4590163934426e-310,2.45701719312276e-310,2.45501799280286e-310,2.453018792483e-310,2.4510195921631e-310,2.44902039184327e-310,2.4470211915234e-310,2.4450219912035e-310,2.44302279088367e-310,2.44102359056377e-310,2.43902439024393e-310,2.43702518992403e-310,2.4350259896042e-310,2.4330267892843e-310,2.43102758896443e-310,2.42902838864454e-310,2.4270291883247e-310,2.4250299880048e-310,2.42303078768494e-310,2.42103158736504e-310,2.4190323870452e-310,2.4170331867253e-310,2.41503398640545e-310,2.41303478608555e-310,2.4110355857657e-310,2.4090363854458e-310,2.40703718512596e-310,2.40503798480606e-310,2.4030387844862e-310,2.4010395841663e-310,2.39904038384647e-310,2.3970411835266e-310,2.3950419832067e-310,2.39304278288687e-310,2.39104358256697e-310,2.38904438224712e-310,2.38704518192723e-310,2.3850459816074e-310,2.3830467812875e-310,2.38104758096763e-310,2.37904838064774e-310,2.3770491803279e-310,2.375049980008e-310,2.37305077968814e-310,2.37105157936824e-310,2.3690523790484e-310,2.3670531787285e-310,2.36505397840865e-310,2.36305477808875e-310,2.3610555777689e-310,2.359056377449e-310,2.35705717712916e-310,2.35505797680926e-310,2.3530587764894e-310,2.3510595761695e-310,2.34906037584966e-310,2.3470611755298e-310,2.3450619752099e-310,2.34306277489007e-310,2.34106357457017e-310,2.3390643742503e-310,2.33706517393043e-310,2.3350659736106e-310,2.3330667732907e-310,2.33106757297083e-310,2.32906837265093e-310,2.3270691723311e-310,2.3250699720112e-310,2.32307077169134e-310,2.32107157137144e-310,2.3190723710516e-310,2.3170731707317e-310,2.31507397041185e-310,2.31307477009195e-310,2.3110755697721e-310,2.3090763694522e-310,2.30707716913235e-310,2.30507796881246e-310,2.3030787684926e-310,2.3010795681727e-310,2.29908036785286e-310,2.297081167533e-310,2.2950819672131e-310,2.29308276689327e-310,2.29108356657337e-310,2.2890843662535e-310,2.2870851659336e-310,2.2850859656138e-310,2.2830867652939e-310,2.28108756497403e-310,2.27908836465413e-310,2.2770891643343e-310,2.2750899640144e-310,2.27309076369454e-310,2.27109156337464e-310,2.2690923630548e-310,2.2670931627349e-310,2.26509396241505e-310,2.26309476209515e-310,2.2610955617753e-310,2.2590963614554e-310,2.25709716113555e-310,2.25509796081566e-310,2.2530987604958e-310,2.2510995601759e-310,2.24910035985606e-310,2.2471011595362e-310,2.2451019592163e-310,2.24310275889647e-310,2.24110355857657e-310,2.2391043582567e-310,2.2371051579368e-310,2.23510595761697e-310,2.2331067572971e-310,2.23110755697723e-310,2.22910835665733e-310,2.2271091563375e-310,2.2251099560176e-310,2.22311075569774e-310,2.22111155537784e-310,2.219112355058e-310,2.2171131547381e-310,2.21511395441824e-310,2.21311475409835e-310,2.2111155537785e-310,2.2091163534586e-310,2.20711715313875e-310,2.20511795281885e-310,2.203118752499e-310,2.2011195521791e-310,2.19912035185926e-310,2.1971211515394e-310,2.1951219512195e-310,2.19312275089967e-310,2.19112355057977e-310,2.1891243502599e-310,2.18712514994e-310,2.18512594962017e-310,2.1831267493003e-310,2.18112754898043e-310,2.17912834866053e-310,2.1771291483407e-310,2.1751299480208e-310,2.17313074770094e-310,2.17113154738104e-310,2.1691323470612e-310,2.1671331467413e-310,2.16513394642144e-310,2.16313474610155e-310,2.1611355457817e-310,2.1591363454618e-310,2.15713714514195e-310,2.15513794482205e-310,2.1531387445022e-310,2.1511395441823e-310,2.14914034386246e-310,2.1471411435426e-310,2.1451419432227e-310,2.14314274290286e-310,2.14114354258297e-310,2.1391443422631e-310,2.1371451419432e-310,2.13514594162337e-310,2.13314674130347e-310,2.13114754098363e-310,2.12914834066373e-310,2.1271491403439e-310,2.125149940024e-310,2.12315073970413e-310,2.12115153938424e-310,2.1191523390644e-310,2.1171531387445e-310,2.11515393842464e-310,2.11315473810474e-310,2.1111555377849e-310,2.109156337465e-310,2.10715713714515e-310,2.10515793682525e-310,2.1031587365054e-310,2.1011595361855e-310,2.09916033586566e-310,2.0971611355458e-310,2.0951619352259e-310,2.09316273490606e-310,2.09116353458617e-310,2.0891643342663e-310,2.0871651339464e-310,2.08516593362657e-310,2.08316673330667e-310,2.0811675329868e-310,2.07916833266693e-310,2.0771691323471e-310,2.0751699320272e-310,2.07317073170733e-310,2.07117153138743e-310,2.0691723310676e-310,2.0671731307477e-310,2.06517393042784e-310,2.06317473010794e-310,2.0611755297881e-310,2.0591763294682e-310,2.05717712914835e-310,2.05517792882845e-310,2.0531787285086e-310,2.0511795281887e-310,2.04918032786886e-310,2.047181127549e-310,2.0451819272291e-310,2.04318272690926e-310,2.04118352658936e-310,2.0391843262695e-310,2.0371851259496e-310,2.03518592562977e-310,2.03318672530987e-310,2.03118752499e-310,2.02918832467013e-310,2.0271891243503e-310,2.0251899240304e-310,2.02319072371053e-310,2.02119152339063e-310,2.0191923230708e-310,2.0171931227509e-310,2.01519392243104e-310,2.01319472211114e-310,2.0111955217913e-310,2.0091963214714e-310,2.00719712115155e-310,2.00519792083165e-310,2.0031987205118e-310,2.0011995201919e-310,1.99920031987205e-310,1.9972011195522e-310,1.9952019192323e-310,1.99320271891246e-310,1.99120351859256e-310,1.9892043182727e-310,1.9872051179528e-310,1.98520591763297e-310,1.98320671731307e-310,1.9812075169932e-310,1.9792083166733e-310,1.9772091163535e-310,1.9752099160336e-310,1.97321071571373e-310,1.97121151539383e-310,1.969212315074e-310,1.9672131147541e-310,1.96521391443424e-310,1.96321471411434e-310,1.9612155137945e-310,1.9592163134746e-310,1.95721711315475e-310,1.95521791283485e-310,1.953218712515e-310,1.9512195121951e-310,1.94922031187525e-310,1.9472211115554e-310,1.9452219112355e-310,1.94322271091566e-310,1.94122351059576e-310,1.9392243102759e-310,1.937225109956e-310,1.93522590963617e-310,1.93322670931627e-310,1.9312275089964e-310,1.9292283086765e-310,1.92722910835667e-310,1.9252299080368e-310,1.92323070771693e-310,1.92123150739703e-310,1.9192323070772e-310,1.9172331067573e-310,1.91523390643744e-310,1.91323470611754e-310,1.9112355057977e-310,1.9092363054778e-310,1.90723710515794e-310,1.90523790483805e-310,1.9032387045182e-310,1.9012395041983e-310,1.89924030387845e-310,1.8972411035586e-310,1.8952419032387e-310,1.89324270291886e-310,1.89124350259896e-310,1.8892443022791e-310,1.8872451019592e-310,1.88524590163937e-310,1.88324670131947e-310,1.8812475009996e-310,1.8792483006797e-310,1.87724910035987e-310,1.87524990004e-310,1.87325069972013e-310,1.87125149940023e-310,1.8692522990804e-310,1.8672530987605e-310,1.86525389844063e-310,1.86325469812074e-310,1.8612554978009e-310,1.859256297481e-310,1.85725709716114e-310,1.85525789684124e-310,1.8532586965214e-310,1.8512594962015e-310,1.84926029588165e-310,1.8472610955618e-310,1.8452618952419e-310,1.84326269492206e-310,1.84126349460216e-310,1.8392642942823e-310,1.8372650939624e-310,1.83526589364256e-310,1.83326669332267e-310,1.8312674930028e-310,1.8292682926829e-310,1.82726909236307e-310,1.82526989204317e-310,1.82327069172333e-310,1.82127149140343e-310,1.8192722910836e-310,1.8172730907637e-310,1.81527389044383e-310,1.81327469012394e-310,1.8112754898041e-310,1.8092762894842e-310,1.80727708916434e-310,1.80527788884444e-310,1.8032786885246e-310,1.8012794882047e-310,1.79928028788485e-310,1.797281087565e-310,1.7952818872451e-310,1.79328268692525e-310,1.79128348660536e-310,1.7892842862855e-310,1.7872850859656e-310,1.78528588564576e-310,1.78328668532586e-310,1.781287485006e-310,1.7792882846861e-310,1.77728908436627e-310,1.77528988404637e-310,1.7732906837265e-310,1.77129148340663e-310,1.7692922830868e-310,1.7672930827669e-310,1.76529388244703e-310,1.76329468212713e-310,1.7612954818073e-310,1.7592962814874e-310,1.75729708116754e-310,1.75529788084764e-310,1.7532986805278e-310,1.7512994802079e-310,1.74930027988805e-310,1.7473010795682e-310,1.7453018792483e-310,1.74330267892845e-310,1.74130347860856e-310,1.7393042782887e-310,1.7373050779688e-310,1.73530587764896e-310,1.73330667732906e-310,1.7313074770092e-310,1.7293082766893e-310,1.72730907636947e-310,1.72530987604957e-310,1.7233106757297e-310,1.72131147540983e-310,1.71931227509e-310,1.7173130747701e-310,1.71531387445023e-310,1.71331467413033e-310,1.7113154738105e-310,1.7093162734906e-310,1.70731707317074e-310,1.70531787285084e-310,1.703318672531e-310,1.7013194722111e-310,1.69932027189125e-310,1.6973210715714e-310,1.6953218712515e-310,1.69332267093165e-310,1.69132347061175e-310,1.6893242702919e-310,1.687325069972e-310,1.68532586965216e-310,1.68332666933226e-310,1.6813274690124e-310,1.6793282686925e-310,1.67732906837267e-310,1.67532986805277e-310,1.6733306677329e-310,1.671331467413e-310,1.6693322670932e-310,1.6673330667733e-310,1.66533386645343e-310,1.66333466613353e-310,1.6613354658137e-310,1.6593362654938e-310,1.65733706517394e-310,1.65533786485404e-310,1.6533386645342e-310,1.6513394642143e-310,1.64934026389445e-310,1.6473410635746e-310,1.6453418632547e-310,1.64334266293485e-310,1.64134346261495e-310,1.6393442622951e-310,1.6373450619752e-310,1.63534586165536e-310,1.63334666133546e-310,1.6313474610156e-310,1.6293482606957e-310,1.62734906037587e-310,1.62534986005597e-310,1.6233506597361e-310,1.6213514594162e-310,1.61935225909637e-310,1.6173530587765e-310,1.61535385845663e-310,1.61335465813673e-310,1.6113554578169e-310,1.609356257497e-310,1.60735705717714e-310,1.60535785685724e-310,1.6033586565374e-310,1.6013594562175e-310,1.59936025589764e-310,1.5973610555778e-310,1.5953618552579e-310,1.59336265493805e-310,1.59136345461815e-310,1.5893642542983e-310,1.5873650539784e-310,1.58536585365856e-310,1.58336665333866e-310,1.5813674530188e-310,1.5793682526989e-310,1.57736905237906e-310,1.57536985205917e-310,1.5733706517393e-310,1.5713714514194e-310,1.56937225109957e-310,1.56737305077967e-310,1.56537385045983e-310,1.56337465013993e-310,1.5613754498201e-310,1.5593762495002e-310,1.55737704918033e-310,1.55537784886044e-310,1.5533786485406e-310,1.5513794482207e-310,1.54938024790084e-310,1.547381047581e-310,1.5453818472611e-310,1.54338264694125e-310,1.54138344662135e-310,1.5393842463015e-310,1.5373850459816e-310,1.53538584566176e-310,1.53338664534186e-310,1.531387445022e-310,1.5293882447021e-310,1.52738904438226e-310,1.52538984406237e-310,1.5233906437425e-310,1.5213914434226e-310,1.51939224310277e-310,1.51739304278287e-310,1.51539384246303e-310,1.51339464214313e-310,1.5113954418233e-310,1.5093962415034e-310,1.50739704118353e-310,1.50539784086364e-310,1.5033986405438e-310,1.5013994402239e-310,1.49940023990404e-310,1.4974010395842e-310,1.4954018392643e-310,1.49340263894445e-310,1.49140343862455e-310,1.4894042383047e-310,1.4874050379848e-310,1.48540583766495e-310,1.48340663734506e-310,1.4814074370252e-310,1.4794082367053e-310,1.47740903638546e-310,1.47540983606556e-310,1.4734106357457e-310,1.4714114354258e-310,1.46941223510597e-310,1.46741303478607e-310,1.4654138344662e-310,1.46341463414633e-310,1.4614154338265e-310,1.4594162335066e-310,1.45741703318673e-310,1.45541783286683e-310,1.453418632547e-310,1.4514194322271e-310,1.44942023190724e-310,1.4474210315874e-310,1.4454218312675e-310,1.44342263094765e-310,1.44142343062775e-310,1.4394242303079e-310,1.437425029988e-310,1.43542582966815e-310,1.43342662934826e-310,1.4314274290284e-310,1.4294282287085e-310,1.42742902838866e-310,1.42542982806876e-310,1.4234306277489e-310,1.421431427429e-310,1.41943222710917e-310,1.41743302678927e-310,1.4154338264694e-310,1.41343462614952e-310,1.4114354258297e-310,1.4094362255098e-310,1.40743702518993e-310,1.40543782487003e-310,1.4034386245502e-310,1.4014394242303e-310,1.39944022391044e-310,1.3974410235906e-310,1.3954418232707e-310,1.39344262295084e-310,1.39144342263095e-310,1.3894442223111e-310,1.3874450219912e-310,1.38544582167135e-310,1.38344662135145e-310,1.3814474210316e-310,1.3794482207117e-310,1.37744902039186e-310,1.37544982007196e-310,1.3734506197521e-310,1.3714514194322e-310,1.36945221911237e-310,1.36745301879247e-310,1.3654538184726e-310,1.3634546181527e-310,1.36145541783288e-310,1.359456217513e-310,1.35745701719313e-310,1.35545781687323e-310,1.3534586165534e-310,1.3514594162335e-310,1.34946021591364e-310,1.3474610155938e-310,1.3454618152739e-310,1.34346261495404e-310,1.34146341463414e-310,1.3394642143143e-310,1.3374650139944e-310,1.33546581367455e-310,1.33346661335465e-310,1.3314674130348e-310,1.3294682127149e-310,1.32746901239506e-310,1.32546981207516e-310,1.3234706117553e-310,1.3214714114354e-310,1.31947221111557e-310,1.31747301079567e-310,1.3154738104758e-310,1.3134746101559e-310,1.31147540983607e-310,1.3094762095162e-310,1.30747700919633e-310,1.30547780887643e-310,1.3034786085566e-310,1.3014794082367e-310,1.29948020791684e-310,1.297481007597e-310,1.2954818072771e-310,1.29348260695724e-310,1.29148340663734e-310,1.2894842063175e-310,1.2874850059976e-310,1.28548580567775e-310,1.28348660535785e-310,1.281487405038e-310,1.2794882047181e-310,1.27748900439826e-310,1.27548980407836e-310,1.2734906037585e-310,1.2714914034386e-310,1.26949220311876e-310,1.26749300279887e-310,1.265493802479e-310,1.2634946021591e-310,1.26149540183927e-310,1.25949620151937e-310,1.25749700119953e-310,1.25549780087963e-310,1.2534986005598e-310,1.2514994002399e-310,1.24950019992003e-310,1.2475009996002e-310,1.2455017992803e-310,1.24350259896044e-310,1.24150339864054e-310,1.2395041983207e-310,1.2375049980008e-310,1.23550579768095e-310,1.23350659736105e-310,1.2315073970412e-310,1.2295081967213e-310,1.22750899640146e-310,1.22550979608156e-310,1.2235105957617e-310,1.2215113954418e-310,1.21951219512196e-310,1.21751299480207e-310,1.2155137944822e-310,1.2135145941623e-310,1.21151539384247e-310,1.20951619352257e-310,1.20751699320272e-310,1.20551779288283e-310,1.203518592563e-310,1.2015193922431e-310,1.19952019192323e-310,1.1975209916034e-310,1.1955217912835e-310,1.19352259096364e-310,1.19152339064374e-310,1.1895241903239e-310,1.187524990004e-310,1.18552578968415e-310,1.18352658936425e-310,1.1815273890444e-310,1.1795281887245e-310,1.17752898840465e-310,1.17552978808476e-310,1.1735305877649e-310,1.171531387445e-310,1.16953218712516e-310,1.16753298680526e-310,1.1655337864854e-310,1.1635345861655e-310,1.16153538584567e-310,1.15953618552577e-310,1.1575369852059e-310,1.15553778488603e-310,1.1535385845662e-310,1.1515393842463e-310,1.14954018392643e-310,1.1475409836066e-310,1.1455417832867e-310,1.14354258296684e-310,1.14154338264694e-310,1.1395441823271e-310,1.1375449820072e-310,1.13554578168734e-310,1.13354658136745e-310,1.1315473810476e-310,1.1295481807277e-310,1.12754898040785e-310,1.12554978008795e-310,1.1235505797681e-310,1.1215513794482e-310,1.11955217912836e-310,1.11755297880846e-310,1.1155537784886e-310,1.1135545781687e-310,1.11155537784887e-310,1.10955617752897e-310,1.1075569772091e-310,1.1055577768892e-310,1.1035585765694e-310,1.1015593762495e-310,1.09956017592963e-310,1.0975609756098e-310,1.0955617752899e-310,1.09356257497004e-310,1.09156337465014e-310,1.0895641743303e-310,1.0875649740104e-310,1.08556577369054e-310,1.08356657337065e-310,1.0815673730508e-310,1.0795681727309e-310,1.07756897241105e-310,1.07556977209115e-310,1.0735705717713e-310,1.0715713714514e-310,1.06957217113156e-310,1.06757297081166e-310,1.0655737704918e-310,1.0635745701719e-310,1.06157536985207e-310,1.05957616953217e-310,1.0575769692123e-310,1.0555777688924e-310,1.05357856857257e-310,1.0515793682527e-310,1.04958016793283e-310,1.047580967613e-310,1.0455817672931e-310,1.04358256697323e-310,1.04158336665334e-310,1.0395841663335e-310,1.0375849660136e-310,1.03558576569374e-310,1.03358656537384e-310,1.031587365054e-310,1.0295881647341e-310,1.02758896441425e-310,1.02558976409435e-310,1.0235905637745e-310,1.0215913634546e-310,1.01959216313476e-310,1.01759296281486e-310,1.015593762495e-310,1.0135945621751e-310,1.01159536185527e-310,1.00959616153537e-310,1.0075969612155e-310,1.0055977608956e-310,1.00359856057577e-310,1.0015993602559e-310,9.9960015993603e-311,9.976009596162e-311,9.956017592963e-311,9.9360255897643e-311,9.9160335865654e-311,9.896041583367e-311,9.876049580168e-311,9.8560575769694e-311,9.8360655737704e-311,9.816073570572e-311,9.796081567373e-311,9.7760895641745e-311,9.7560975609755e-311,9.736105557777e-311,9.716113554578e-311,9.6961215513796e-311,9.6761295481806e-311,9.656137544982e-311,9.636145541783e-311,9.6161535385846e-311,9.5961615353857e-311,9.576169532187e-311,9.556177528988e-311,9.5361855257897e-311,9.5161935225907e-311,9.4962015193923e-311,9.476209516194e-311,9.456217512995e-311,9.4362255097963e-311,9.4162335065973e-311,9.396241503399e-311,9.3762495002e-311,9.3562574970014e-311,9.3362654938024e-311,9.316273490604e-311,9.296281487405e-311,9.2762894842065e-311,9.2562974810075e-311,9.236305477809e-311,9.21631347461e-311,9.1963214714115e-311,9.1763294682126e-311,9.156337465014e-311,9.136345461815e-311,9.1163534586166e-311,9.0963614554177e-311,9.076369452219e-311,9.05637744902e-311,9.0363854458217e-311,9.0163934426227e-311,8.996401439424e-311,8.976409436226e-311,8.956417433027e-311,8.9364254298283e-311,8.9164334266293e-311,8.896441423431e-311,8.876449420232e-311,8.8564574170334e-311,8.8364654138344e-311,8.816473410636e-311,8.796481407437e-311,8.7764894042385e-311,8.7564974010395e-311,8.736505397841e-311,8.716513394642e-311,8.6965213914435e-311,8.6765293882446e-311,8.656537385046e-311,8.636545381847e-311,8.6165533786486e-311,8.5965613754496e-311,8.576569372251e-311,8.556577369052e-311,8.5365853658537e-311,8.5165933626547e-311,8.496601359456e-311,8.4766093562577e-311,8.456617353059e-311,8.4366253498603e-311,8.4166333466613e-311,8.396641343463e-311,8.376649340264e-311,8.3566573370654e-311,8.3366653338664e-311,8.316673330668e-311,8.296681327469e-311,8.2766893242704e-311,8.2566973210715e-311,8.236705317873e-311,8.216713314674e-311,8.1967213114755e-311,8.1767293082765e-311,8.156737305078e-311,8.136745301879e-311,8.1167532986806e-311,8.0967612954816e-311,8.076769292283e-311,8.056777289084e-311,8.0367852858857e-311,8.0167932826867e-311,7.996801279488e-311,7.9768092762897e-311,7.956817273091e-311,7.9368252698923e-311,7.9168332666933e-311,7.896841263495e-311,7.876849260296e-311,7.8568572570974e-311,7.8368652538984e-311,7.8168732507e-311,7.796881247501e-311,7.7768892443024e-311,7.7568972411035e-311,7.736905237905e-311,7.716913234706e-311,7.6969212315075e-311,7.6769292283085e-311,7.65693722511e-311,7.636945221911e-311,7.6169532187126e-311,7.5969612155136e-311,7.576969212315e-311,7.556977209116e-311,7.5369852059177e-311,7.5169932027187e-311,7.49700119952e-311,7.4770091963217e-311,7.4570171931227e-311,7.4370251899243e-311,7.4170331867253e-311,7.397041183527e-311,7.377049180328e-311,7.3570571771293e-311,7.3370651739304e-311,7.317073170732e-311,7.297081167533e-311,7.2770891643344e-311,7.2570971611354e-311,7.237105157937e-311,7.217113154738e-311,7.1971211515395e-311,7.1771291483405e-311,7.157137145142e-311,7.137145141943e-311,7.1171531387446e-311,7.0971611355456e-311,7.077169132347e-311,7.057177129148e-311,7.0371851259497e-311,7.0171931227507e-311,6.997201119552e-311,6.9772091163537e-311,6.9572171131547e-311,6.937225109956e-311,6.9172331067573e-311,6.897241103559e-311,6.87724910036e-311,6.8572570971613e-311,6.8372650939623e-311,6.817273090764e-311,6.797281087565e-311,6.7772890843664e-311,6.7572970811674e-311,6.737305077969e-311,6.71731307477e-311,6.6973210715715e-311,6.6773290683725e-311,6.657337065174e-311,6.637345061975e-311,6.6173530587766e-311,6.5973610555776e-311,6.577369052379e-311,6.55737704918e-311,6.5373850459816e-311,6.5173930427827e-311,6.497401039584e-311,6.4774090363857e-311,6.4574170331867e-311,6.437425029988e-311,6.4174330267893e-311,6.397441023591e-311,6.377449020392e-311,6.3574570171933e-311,6.3374650139943e-311,6.317473010796e-311,6.297481007597e-311,6.2774890043984e-311,6.2574970011994e-311,6.237504998001e-311,6.217512994802e-311,6.1975209916035e-311,6.1775289884045e-311,6.157536985206e-311,6.137544982007e-311,6.1175529788085e-311,6.0975609756096e-311,6.077568972411e-311,6.057576969212e-311,6.0375849660136e-311,6.0175929628146e-311,5.997600959616e-311,5.9776089564177e-311,5.9576169532187e-311,5.93762495002e-311,5.917632946821e-311,5.897640943623e-311,5.877648940424e-311,5.8576569372253e-311,5.8376649340263e-311,5.817672930828e-311,5.797680927629e-311,5.7776889244304e-311,5.7576969212314e-311,5.737704918033e-311,5.717712914834e-311,5.6977209116355e-311,5.6777289084365e-311,5.657736905238e-311,5.637744902039e-311,5.6177528988405e-311,5.5977608956416e-311,5.577768892443e-311,5.557776889244e-311,5.5377848860456e-311,5.5177928828466e-311,5.497800879648e-311,5.4778088764497e-311,5.4578168732507e-311,5.437824870052e-311,5.417832866853e-311,5.3978408636547e-311,5.377848860456e-311,5.3578568572573e-311,5.3378648540583e-311,5.31787285086e-311,5.297880847661e-311,5.2778888444624e-311,5.2578968412634e-311,5.237904838065e-311,5.217912834866e-311,5.1979208316674e-311,5.1779288284685e-311,5.15793682527e-311,5.137944822071e-311,5.1179528188725e-311,5.0979608156735e-311,5.077968812475e-311,5.057976809276e-311,5.0379848060776e-311,5.0179928028786e-311,4.99800079968e-311,4.9780087964817e-311,4.9580167932827e-311,4.938024790084e-311,4.918032786885e-311,4.8980407836867e-311,4.878048780488e-311,4.8580567772893e-311,4.8380647740903e-311,4.818072770892e-311,4.798080767693e-311,4.7780887644943e-311,4.7580967612954e-311,4.738104758097e-311,4.718112754898e-311,4.6981207516994e-311,4.6781287485004e-311,4.658136745302e-311,4.638144742103e-311,4.6181527389045e-311,4.5981607357055e-311,4.578168732507e-311,4.558176729308e-311,4.5381847261096e-311,4.5181927229106e-311,4.498200719712e-311,4.4782087165136e-311,4.4582167133147e-311,4.438224710116e-311,4.418232706917e-311,4.3982407037187e-311,4.3782487005197e-311,4.3582566973213e-311,4.3382646941223e-311,4.318272690924e-311,4.298280687725e-311,4.2782886845263e-311,4.2582966813274e-311,4.238304678129e-311,4.21831267493e-311,4.1983206717314e-311,4.1783286685324e-311,4.158336665334e-311,4.138344662135e-311,4.1183526589365e-311,4.0983606557375e-311,4.078368652539e-311,4.05837664934e-311,4.0383846461416e-311,4.0183926429426e-311,3.998400639744e-311,3.9784086365456e-311,3.9584166333466e-311,3.938424630148e-311,3.918432626949e-311,3.8984406237507e-311,3.8784486205517e-311,3.858456617353e-311,3.8384646141543e-311,3.818472610956e-311,3.798480607757e-311,3.7784886045583e-311,3.7584966013593e-311,3.738504598161e-311,3.718512594962e-311,3.6985205917634e-311,3.6785285885644e-311,3.658536585366e-311,3.638544582167e-311,3.6185525789685e-311,3.5985605757695e-311,3.578568572571e-311,3.558576569372e-311,3.5385845661736e-311,3.5185925629746e-311,3.498600559776e-311,3.4786085565776e-311,3.4586165533786e-311,3.43862455018e-311,3.418632546981e-311,3.3986405437827e-311,3.3786485405837e-311,3.358656537385e-311,3.3386645341863e-311,3.318672530988e-311,3.298680527789e-311,3.2786885245903e-311,3.2586965213913e-311,3.238704518193e-311,3.218712514994e-311,3.1987205117954e-311,3.1787285085964e-311,3.158736505398e-311,3.138744502199e-311,3.1187524990005e-311,3.0987604958015e-311,3.078768492603e-311,3.058776489404e-311,3.0387844862055e-311,3.0187924830066e-311,2.998800479808e-311,2.9788084766096e-311,2.9588164734106e-311,2.938824470212e-311,2.918832467013e-311,2.8988404638147e-311,2.8788484606157e-311,2.858856457417e-311,2.838864454218e-311,2.81887245102e-311,2.798880447821e-311,2.7788884446223e-311,2.7588964414233e-311,2.738904438225e-311,2.718912435026e-311,2.6989204318274e-311,2.6789284286284e-311,2.65893642543e-311,2.638944422231e-311,2.6189524190325e-311,2.5989604158335e-311,2.578968412635e-311,2.558976409436e-311,2.5389844062375e-311,2.5189924030386e-311,2.49900039984e-311,2.4790083966416e-311,2.4590163934426e-311,2.439024390244e-311,2.419032387045e-311,2.3990403838467e-311,2.3790483806477e-311,2.359056377449e-311,2.33906437425e-311,2.3190723710517e-311,2.299080367853e-311,2.2790883646543e-311,2.2590963614553e-311,2.239104358257e-311,2.219112355058e-311,2.1991203518594e-311,2.1791283486604e-311,2.159136345462e-311,2.139144342263e-311,2.1191523390644e-311,2.0991603358655e-311,2.079168332667e-311,2.059176329468e-311,2.0391843262695e-311,2.0191923230705e-311,1.999200319872e-311,1.9792083166736e-311,1.9592163134746e-311,1.939224310276e-311,1.919232307077e-311,1.8992403038786e-311,1.8792483006797e-311,1.859256297481e-311,1.839264294282e-311,1.8192722910837e-311,1.7992802878848e-311,1.7792882846863e-311,1.7592962814873e-311,1.739304278289e-311,1.71931227509e-311,1.6993202718913e-311,1.6793282686924e-311,1.659336265494e-311,1.639344262295e-311,1.6193522590964e-311,1.5993602558974e-311,1.579368252699e-311,1.5593762495e-311,1.5393842463015e-311,1.5193922431025e-311,1.499400239904e-311,1.4794082367056e-311,1.4594162335066e-311,1.439424230308e-311,1.419432227109e-311,1.3994402239106e-311,1.3794482207117e-311,1.359456217513e-311,1.339464214314e-311,1.3194722111157e-311,1.2994802079167e-311,1.2794882047183e-311,1.2594962015193e-311,1.239504198321e-311,1.219512195122e-311,1.1995201919233e-311,1.1795281887244e-311,1.159536185526e-311,1.139544182327e-311,1.1195521791284e-311,1.0995601759294e-311,1.079568172731e-311,1.059576169532e-311,1.0395841663335e-311,1.0195921631345e-311,9.99600159936e-312,9.796081567375e-312,9.596161535386e-312,9.3962415034e-312,9.19632147141e-312,8.996401439426e-312,8.796481407436e-312,8.59656137545e-312,8.39664134346e-312,8.196721311477e-312,7.996801279487e-312,7.7968812475e-312,7.596961215513e-312,7.39704118353e-312,7.19712115154e-312,6.997201119553e-312,6.797281087563e-312,6.59736105558e-312,6.39744102359e-312,6.197520991604e-312,5.997600959614e-312,5.79768092763e-312,5.59776089564e-312,5.397840863655e-312,5.197920831665e-312,4.99800079968e-312,4.798080767695e-312,4.598160735706e-312,4.39824070372e-312,4.19832067173e-312,3.998400639746e-312,3.798480607756e-312,3.59856057577e-312,3.39864054378e-312,3.198720511797e-312,2.998800479807e-312,2.79888044782e-312,2.598960415832e-312,2.39904038385e-312,2.19912035186e-312,1.999200319873e-312,1.799280287883e-312,1.5993602559e-312,1.39944022391e-312,1.199520191924e-312,9.99600159934e-313,7.9968012795e-313,5.9976009596e-313,3.99840063975e-313,1.99920031985e-313,0.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/tiny_positive.json b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/tiny_positive.json new file mode 100644 index 000000000000..15d89f952611 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/tiny_positive.json @@ -0,0 +1 @@ +{"expected":[5.0e-301,4.99900039985006e-301,4.998000799700119e-301,4.99700119955018e-301,4.99600159940024e-301,4.995001999250301e-301,4.994002399100359e-301,4.99300279895042e-301,4.99200319880048e-301,4.99100359865054e-301,4.9900039985005994e-301,4.98900439835066e-301,4.9880047982007194e-301,4.9870051980507795e-301,4.98600559790084e-301,4.9850059977508995e-301,4.9840063976009595e-301,4.9830067974510195e-301,4.98200719730108e-301,4.9810075971511395e-301,4.9800079970011995e-301,4.9790083968512596e-301,4.9780087967013196e-301,4.9770091965513796e-301,4.97600959640144e-301,4.9750099962515e-301,4.97401039610156e-301,4.97301079595162e-301,4.97201119580168e-301,4.971011595651739e-301,4.970011995501799e-301,4.96901239535186e-301,4.968012795201919e-301,4.96701319505198e-301,4.966013594902039e-301,4.9650139947521e-301,4.964014394602159e-301,4.96301479445222e-301,4.96201519430228e-301,4.961015594152339e-301,4.960015994002399e-301,4.959016393852459e-301,4.958016793702519e-301,4.957017193552579e-301,4.956017593402639e-301,4.955017993252699e-301,4.954018393102759e-301,4.953018792952819e-301,4.95201919280288e-301,4.951019592652938e-301,4.950019992502999e-301,4.949020392353059e-301,4.948020792203119e-301,4.947021192053178e-301,4.946021591903238e-301,4.945021991753299e-301,4.944022391603358e-301,4.943022791453419e-301,4.942023191303478e-301,4.941023591153538e-301,4.940023991003598e-301,4.939024390853659e-301,4.938024790703719e-301,4.937025190553778e-301,4.9360255904038384e-301,4.9350259902538984e-301,4.9340263901039584e-301,4.9330267899540185e-301,4.9320271898040785e-301,4.9310275896541385e-301,4.9300279895041985e-301,4.9290283893542585e-301,4.9280287892043185e-301,4.927029189054378e-301,4.9260295889044385e-301,4.9250299887544986e-301,4.9240303886045586e-301,4.923030788454618e-301,4.922031188304679e-301,4.921031588154738e-301,4.920031988004799e-301,4.919032387854859e-301,4.918032787704918e-301,4.917033187554978e-301,4.916033587405038e-301,4.915033987255099e-301,4.914034387105158e-301,4.913034786955218e-301,4.912035186805278e-301,4.911035586655338e-301,4.910035986505398e-301,4.909036386355458e-301,4.908036786205518e-301,4.907037186055578e-301,4.906037585905638e-301,4.905037985755698e-301,4.904038385605757e-301,4.903038785455817e-301,4.902039185305878e-301,4.901039585155938e-301,4.900039985005998e-301,4.899040384856057e-301,4.898040784706118e-301,4.897041184556177e-301,4.896041584406238e-301,4.895041984256298e-301,4.894042384106357e-301,4.893042783956417e-301,4.892043183806477e-301,4.891043583656538e-301,4.890043983506597e-301,4.889044383356657e-301,4.888044783206717e-301,4.887045183056777e-301,4.886045582906837e-301,4.885045982756897e-301,4.8840463826069566e-301,4.8830467824570174e-301,4.8820471823070774e-301,4.8810475821571374e-301,4.880047982007197e-301,4.8790483818572575e-301,4.8780487817073175e-301,4.877049181557377e-301,4.8760495814074375e-301,4.875049981257497e-301,4.874050381107557e-301,4.873050780957617e-301,4.8720511808076776e-301,4.8710515806577376e-301,4.870051980507797e-301,4.869052380357857e-301,4.868052780207918e-301,4.867053180057977e-301,4.866053579908037e-301,4.865053979758097e-301,4.864054379608157e-301,4.863054779458217e-301,4.862055179308277e-301,4.861055579158337e-301,4.860055979008396e-301,4.859056378858457e-301,4.858056778708517e-301,4.857057178558577e-301,4.856057578408636e-301,4.855057978258697e-301,4.854058378108757e-301,4.853058777958817e-301,4.852059177808877e-301,4.851059577658936e-301,4.850059977508996e-301,4.849060377359056e-301,4.848060777209117e-301,4.847061177059176e-301,4.846061576909236e-301,4.845061976759296e-301,4.844062376609357e-301,4.843062776459416e-301,4.842063176309477e-301,4.841063576159536e-301,4.840063976009596e-301,4.839064375859656e-301,4.838064775709716e-301,4.8370651755597755e-301,4.8360655754098355e-301,4.835065975259896e-301,4.834066375109956e-301,4.833066774960016e-301,4.8320671748100756e-301,4.831067574660136e-301,4.8300679745101956e-301,4.8290683743602564e-301,4.8280687742103164e-301,4.827069174060376e-301,4.826069573910436e-301,4.825069973760496e-301,4.8240703736105565e-301,4.823070773460616e-301,4.822071173310676e-301,4.821071573160736e-301,4.820071973010796e-301,4.819072372860856e-301,4.818072772710916e-301,4.817073172560975e-301,4.816073572411036e-301,4.815073972261096e-301,4.814074372111156e-301,4.813074771961215e-301,4.812075171811276e-301,4.811075571661336e-301,4.810075971511396e-301,4.809076371361456e-301,4.808076771211515e-301,4.807077171061576e-301,4.806077570911635e-301,4.805077970761696e-301,4.804078370611756e-301,4.803078770461815e-301,4.802079170311875e-301,4.801079570161936e-301,4.800079970011995e-301,4.799080369862055e-301,4.798080769712115e-301,4.797081169562175e-301,4.796081569412235e-301,4.795081969262295e-301,4.794082369112355e-301,4.793082768962414e-301,4.792083168812475e-301,4.791083568662535e-301,4.790083968512595e-301,4.7890843683626544e-301,4.788084768212715e-301,4.787085168062775e-301,4.786085567912835e-301,4.785085967762895e-301,4.784086367612955e-301,4.7830867674630145e-301,4.7820871673130745e-301,4.781087567163135e-301,4.7800879670131945e-301,4.7790883668632545e-301,4.7780887667133146e-301,4.777089166563375e-301,4.7760895664134346e-301,4.775089966263495e-301,4.774090366113555e-301,4.773090765963615e-301,4.772091165813675e-301,4.771091565663735e-301,4.770091965513794e-301,4.769092365363855e-301,4.768092765213915e-301,4.767093165063975e-301,4.766093564914035e-301,4.765093964764094e-301,4.764094364614155e-301,4.763094764464214e-301,4.762095164314275e-301,4.761095564164335e-301,4.760095964014395e-301,4.759096363864454e-301,4.758096763714515e-301,4.757097163564575e-301,4.756097563414634e-301,4.755097963264694e-301,4.754098363114754e-301,4.753098762964814e-301,4.752099162814874e-301,4.751099562664934e-301,4.750099962514994e-301,4.749100362365054e-301,4.748100762215114e-301,4.747101162065175e-301,4.746101561915233e-301,4.745101961765294e-301,4.744102361615354e-301,4.743102761465414e-301,4.742103161315474e-301,4.741103561165533e-301,4.740103961015594e-301,4.739104360865653e-301,4.738104760715714e-301,4.737105160565774e-301,4.7361055604158334e-301,4.7351059602658934e-301,4.734106360115954e-301,4.7331067599660135e-301,4.7321071598160735e-301,4.7311075596661335e-301,4.7301079595161935e-301,4.7291083593662535e-301,4.7281087592163135e-301,4.7271091590663735e-301,4.726109558916433e-301,4.7251099587664936e-301,4.7241103586165536e-301,4.7231107584666136e-301,4.722111158316673e-301,4.721111558166734e-301,4.720111958016794e-301,4.719112357866854e-301,4.718112757716914e-301,4.717113157566974e-301,4.716113557417033e-301,4.715113957267093e-301,4.714114357117154e-301,4.713114756967214e-301,4.712115156817273e-301,4.711115556667333e-301,4.710115956517394e-301,4.709116356367453e-301,4.708116756217513e-301,4.707117156067573e-301,4.706117555917633e-301,4.705117955767693e-301,4.704118355617753e-301,4.703118755467813e-301,4.702119155317873e-301,4.701119555167933e-301,4.700119955017993e-301,4.699120354868053e-301,4.698120754718112e-301,4.697121154568173e-301,4.696121554418232e-301,4.695121954268293e-301,4.694122354118353e-301,4.693122753968413e-301,4.692123153818472e-301,4.691123553668533e-301,4.690123953518593e-301,4.689124353368652e-301,4.688124753218712e-301,4.687125153068772e-301,4.686125552918832e-301,4.685125952768892e-301,4.684126352618952e-301,4.683126752469012e-301,4.6821271523190724e-301,4.6811275521691324e-301,4.680127952019193e-301,4.679128351869252e-301,4.6781287517193125e-301,4.6771291515693725e-301,4.6761295514194325e-301,4.6751299512694925e-301,4.6741303511195525e-301,4.6731307509696125e-301,4.672131150819672e-301,4.6711315506697326e-301,4.6701319505197926e-301,4.669132350369852e-301,4.668132750219912e-301,4.667133150069973e-301,4.666133549920033e-301,4.665133949770092e-301,4.664134349620152e-301,4.663134749470213e-301,4.662135149320272e-301,4.661135549170332e-301,4.660135949020392e-301,4.659136348870452e-301,4.658136748720512e-301,4.657137148570572e-301,4.656137548420633e-301,4.655137948270691e-301,4.654138348120752e-301,4.653138747970812e-301,4.652139147820872e-301,4.651139547670932e-301,4.650139947520992e-301,4.649140347371051e-301,4.648140747221112e-301,4.647141147071172e-301,4.646141546921231e-301,4.645141946771291e-301,4.644142346621351e-301,4.643142746471412e-301,4.642143146321471e-301,4.641143546171531e-301,4.640143946021591e-301,4.639144345871651e-301,4.638144745721711e-301,4.637145145571772e-301,4.636145545421831e-301,4.635145945271891e-301,4.634146345121951e-301,4.633146744972011e-301,4.632147144822071e-301,4.6311475446721306e-301,4.630147944522191e-301,4.629148344372251e-301,4.6281487442223114e-301,4.6271491440723714e-301,4.6261495439224315e-301,4.625149943772491e-301,4.6241503436225515e-301,4.6231507434726115e-301,4.622151143322671e-301,4.621151543172731e-301,4.620151943022791e-301,4.6191523428728515e-301,4.618152742722911e-301,4.617153142572971e-301,4.616153542423031e-301,4.615153942273091e-301,4.614154342123151e-301,4.613154741973212e-301,4.61215514182327e-301,4.611155541673331e-301,4.610155941523391e-301,4.609156341373451e-301,4.608156741223511e-301,4.607157141073571e-301,4.606157540923631e-301,4.60515794077369e-301,4.604158340623751e-301,4.60315874047381e-301,4.60215914032387e-301,4.60115954017393e-301,4.600159940023991e-301,4.599160339874051e-301,4.59816073972411e-301,4.59716113957417e-301,4.596161539424231e-301,4.59516193927429e-301,4.59416233912435e-301,4.59316273897441e-301,4.59216313882447e-301,4.59116353867453e-301,4.59016393852459e-301,4.589164338374651e-301,4.5881647382247094e-301,4.58716513807477e-301,4.58616553792483e-301,4.58516593777489e-301,4.58416633762495e-301,4.58316673747501e-301,4.58216713732507e-301,4.58116753717513e-301,4.58016793702519e-301,4.57916833687525e-301,4.5781687367253096e-301,4.5771691365753696e-301,4.57616953642543e-301,4.57516993627549e-301,4.57417033612555e-301,4.57317073597561e-301,4.5721711358256705e-301,4.57117153567573e-301,4.5701719355257905e-301,4.56917233537585e-301,4.56817273522591e-301,4.56717313507597e-301,4.56617353492603e-301,4.56517393477609e-301,4.56417433462615e-301,4.56317473447621e-301,4.56217513432627e-301,4.56117553417633e-301,4.56017593402639e-301,4.55917633387645e-301,4.558176733726509e-301,4.55717713357657e-301,4.55617753342663e-301,4.555177933276689e-301,4.554178333126749e-301,4.55317873297681e-301,4.55217913282687e-301,4.551179532676929e-301,4.550179932526989e-301,4.549180332377049e-301,4.548180732227109e-301,4.547181132077169e-301,4.54618153192723e-301,4.545181931777288e-301,4.544182331627349e-301,4.543182731477409e-301,4.54218313132747e-301,4.541183531177529e-301,4.540183931027589e-301,4.539184330877649e-301,4.538184730727709e-301,4.537185130577769e-301,4.536185530427828e-301,4.535185930277889e-301,4.5341863301279484e-301,4.533186729978009e-301,4.532187129828069e-301,4.5311875296781285e-301,4.5301879295281885e-301,4.529188329378249e-301,4.5281887292283085e-301,4.527189129078369e-301,4.5261895289284285e-301,4.5251899287784885e-301,4.5241903286285486e-301,4.5231907284786086e-301,4.522191128328669e-301,4.521191528178728e-301,4.520191928028789e-301,4.519192327878849e-301,4.518192727728909e-301,4.517193127578969e-301,4.516193527429029e-301,4.515193927279089e-301,4.514194327129149e-301,4.513194726979209e-301,4.512195126829269e-301,4.511195526679328e-301,4.510195926529388e-301,4.509196326379449e-301,4.508196726229508e-301,4.507197126079568e-301,4.506197525929628e-301,4.505197925779689e-301,4.504198325629748e-301,4.503198725479809e-301,4.502199125329868e-301,4.501199525179928e-301,4.500199925029988e-301,4.499200324880048e-301,4.498200724730108e-301,4.497201124580168e-301,4.496201524430228e-301,4.495201924280288e-301,4.494202324130348e-301,4.493202723980407e-301,4.492203123830468e-301,4.491203523680527e-301,4.490203923530588e-301,4.489204323380648e-301,4.488204723230708e-301,4.487205123080767e-301,4.486205522930828e-301,4.485205922780888e-301,4.484206322630947e-301,4.483206722481007e-301,4.4822071223310674e-301,4.4812075221811274e-301,4.4802079220311874e-301,4.479208321881248e-301,4.4782087217313075e-301,4.4772091215813675e-301,4.4762095214314275e-301,4.475209921281488e-301,4.4742103211315475e-301,4.4732107209816075e-301,4.4722111208316675e-301,4.4712115206817276e-301,4.4702119205317876e-301,4.4692123203818476e-301,4.468212720231908e-301,4.467213120081967e-301,4.466213519932028e-301,4.465213919782088e-301,4.464214319632147e-301,4.463214719482207e-301,4.462215119332268e-301,4.461215519182327e-301,4.460215919032388e-301,4.459216318882447e-301,4.458216718732507e-301,4.457217118582567e-301,4.456217518432627e-301,4.455217918282688e-301,4.454218318132747e-301,4.453218717982807e-301,4.452219117832867e-301,4.451219517682927e-301,4.450219917532986e-301,4.449220317383047e-301,4.448220717233107e-301,4.447221117083167e-301,4.446221516933227e-301,4.445221916783287e-301,4.444222316633346e-301,4.443222716483407e-301,4.442223116333467e-301,4.441223516183527e-301,4.440223916033586e-301,4.439224315883646e-301,4.438224715733707e-301,4.437225115583766e-301,4.436225515433827e-301,4.435225915283886e-301,4.434226315133946e-301,4.433226714984006e-301,4.432227114834067e-301,4.431227514684127e-301,4.430227914534186e-301,4.429228314384246e-301,4.4282287142343064e-301,4.4272291140843664e-301,4.426229513934426e-301,4.4252299137844865e-301,4.424230313634546e-301,4.4232307134846065e-301,4.4222311133346665e-301,4.4212315131847265e-301,4.420231913034786e-301,4.4192323128848465e-301,4.4182327127349065e-301,4.4172331125849666e-301,4.416233512435026e-301,4.415233912285086e-301,4.414234312135146e-301,4.413234711985206e-301,4.412235111835267e-301,4.411235511685326e-301,4.410235911535386e-301,4.409236311385446e-301,4.408236711235507e-301,4.407237111085565e-301,4.406237510935626e-301,4.405237910785686e-301,4.404238310635746e-301,4.403238710485806e-301,4.402239110335866e-301,4.401239510185926e-301,4.400239910035985e-301,4.399240309886046e-301,4.398240709736106e-301,4.397241109586165e-301,4.396241509436225e-301,4.395241909286286e-301,4.394242309136346e-301,4.393242708986406e-301,4.392243108836465e-301,4.391243508686526e-301,4.390243908536585e-301,4.389244308386645e-301,4.388244708236706e-301,4.387245108086765e-301,4.386245507936825e-301,4.385245907786885e-301,4.384246307636946e-301,4.3832467074870045e-301,4.382247107337065e-301,4.381247507187125e-301,4.380247907037185e-301,4.379248306887245e-301,4.378248706737305e-301,4.3772491065873646e-301,4.376249506437425e-301,4.375249906287485e-301,4.3742503061375454e-301,4.373250705987605e-301,4.372251105837665e-301,4.3712515056877255e-301,4.370251905537785e-301,4.3692523053878455e-301,4.368252705237905e-301,4.367253105087965e-301,4.366253504938025e-301,4.3652539047880855e-301,4.364254304638145e-301,4.363254704488205e-301,4.362255104338265e-301,4.361255504188325e-301,4.360255904038385e-301,4.359256303888445e-301,4.358256703738505e-301,4.357257103588564e-301,4.356257503438625e-301,4.355257903288685e-301,4.354258303138745e-301,4.353258702988804e-301,4.352259102838865e-301,4.351259502688925e-301,4.350259902538985e-301,4.349260302389044e-301,4.348260702239104e-301,4.347261102089165e-301,4.346261501939224e-301,4.345261901789285e-301,4.344262301639344e-301,4.343262701489404e-301,4.342263101339464e-301,4.341263501189525e-301,4.340263901039583e-301,4.339264300889644e-301,4.338264700739704e-301,4.337265100589764e-301,4.336265500439824e-301,4.335265900289884e-301,4.334266300139944e-301,4.333266699990004e-301,4.332267099840064e-301,4.331267499690124e-301,4.3302678995401835e-301,4.3292682993902435e-301,4.328268699240304e-301,4.327269099090364e-301,4.326269498940424e-301,4.3252698987904835e-301,4.324270298640544e-301,4.3232706984906036e-301,4.322271098340664e-301,4.321271498190724e-301,4.320271898040784e-301,4.319272297890844e-301,4.318272697740904e-301,4.3172730975909645e-301,4.316273497441023e-301,4.315273897291084e-301,4.314274297141144e-301,4.313274696991204e-301,4.312275096841264e-301,4.311275496691324e-301,4.310275896541383e-301,4.309276296391444e-301,4.308276696241504e-301,4.307277096091564e-301,4.306277495941623e-301,4.305277895791683e-301,4.304278295641744e-301,4.303278695491803e-301,4.302279095341864e-301,4.301279495191923e-301,4.300279895041984e-301,4.299280294892043e-301,4.298280694742104e-301,4.297281094592163e-301,4.296281494442223e-301,4.295281894292283e-301,4.294282294142343e-301,4.293282693992403e-301,4.292283093842463e-301,4.291283493692523e-301,4.290283893542583e-301,4.289284293392643e-301,4.288284693242703e-301,4.287285093092763e-301,4.286285492942822e-301,4.285285892792883e-301,4.284286292642943e-301,4.283286692493003e-301,4.282287092343062e-301,4.281287492193123e-301,4.280287892043183e-301,4.2792882918932424e-301,4.2782886917433025e-301,4.2772890915933625e-301,4.2762894914434225e-301,4.2752898912934825e-301,4.274290291143543e-301,4.273290690993602e-301,4.2722910908436625e-301,4.2712914906937225e-301,4.270291890543783e-301,4.2692922903938426e-301,4.2682926902439026e-301,4.267293090093963e-301,4.266293489944023e-301,4.265293889794083e-301,4.264294289644143e-301,4.263294689494202e-301,4.262295089344262e-301,4.261295489194323e-301,4.260295889044383e-301,4.259296288894443e-301,4.258296688744502e-301,4.257297088594563e-301,4.256297488444622e-301,4.255297888294683e-301,4.254298288144742e-301,4.253298687994802e-301,4.252299087844862e-301,4.251299487694922e-301,4.250299887544983e-301,4.249300287395042e-301,4.248300687245102e-301,4.247301087095162e-301,4.246301486945222e-301,4.245301886795282e-301,4.244302286645342e-301,4.243302686495402e-301,4.242303086345462e-301,4.241303486195522e-301,4.240303886045582e-301,4.239304285895641e-301,4.238304685745702e-301,4.237305085595762e-301,4.236305485445821e-301,4.235305885295882e-301,4.234306285145941e-301,4.233306684996002e-301,4.232307084846061e-301,4.231307484696122e-301,4.230307884546181e-301,4.229308284396241e-301,4.228308684246301e-301,4.2273090840963614e-301,4.2263094839464214e-301,4.2253098837964814e-301,4.2243102836465415e-301,4.2233106834966015e-301,4.2223110833466615e-301,4.2213114831967215e-301,4.2203118830467815e-301,4.219312282896841e-301,4.2183126827469015e-301,4.2173130825969615e-301,4.2163134824470216e-301,4.215313882297081e-301,4.2143142821471416e-301,4.213314681997202e-301,4.212315081847262e-301,4.211315481697321e-301,4.210315881547381e-301,4.209316281397441e-301,4.208316681247501e-301,4.207317081097562e-301,4.206317480947621e-301,4.205317880797681e-301,4.204318280647741e-301,4.203318680497802e-301,4.202319080347861e-301,4.201319480197921e-301,4.200319880047981e-301,4.199320279898041e-301,4.198320679748101e-301,4.197321079598161e-301,4.196321479448221e-301,4.19532187929828e-301,4.194322279148341e-301,4.193322678998401e-301,4.192323078848461e-301,4.19132347869852e-301,4.190323878548581e-301,4.18932427839864e-301,4.188324678248701e-301,4.18732507809876e-301,4.186325477948821e-301,4.18532587779888e-301,4.18432627764894e-301,4.183326677499001e-301,4.18232707734906e-301,4.18132747719912e-301,4.18032787704918e-301,4.17932827689924e-301,4.1783286767493e-301,4.17732907659936e-301,4.17632947644942e-301,4.17532987629948e-301,4.1743302761495404e-301,4.1733306759996004e-301,4.17233107584966e-301,4.1713314756997205e-301,4.1703318755497805e-301,4.16933227539984e-301,4.1683326752499e-301,4.16733307509996e-301,4.1663334749500205e-301,4.16533387480008e-301,4.1643342746501405e-301,4.1633346745002e-301,4.16233507435026e-301,4.16133547420032e-301,4.160335874050381e-301,4.159336273900441e-301,4.1583366737505e-301,4.15733707360056e-301,4.15633747345062e-301,4.15533787330068e-301,4.15433827315074e-301,4.1533386730008e-301,4.152339072850859e-301,4.15133947270092e-301,4.15033987255098e-301,4.149340272401041e-301,4.148340672251099e-301,4.14734107210116e-301,4.14634147195122e-301,4.14534187180128e-301,4.144342271651339e-301,4.143342671501399e-301,4.142343071351459e-301,4.141343471201519e-301,4.14034387105158e-301,4.139344270901639e-301,4.138344670751699e-301,4.137345070601759e-301,4.13634547045182e-301,4.135345870301879e-301,4.134346270151939e-301,4.133346670001999e-301,4.132347069852059e-301,4.131347469702119e-301,4.130347869552179e-301,4.129348269402239e-301,4.128348669252299e-301,4.127349069102359e-301,4.126349468952419e-301,4.1253498688024785e-301,4.1243502686525385e-301,4.123350668502599e-301,4.1223510683526586e-301,4.121351468202719e-301,4.120351868052779e-301,4.1193522679028394e-301,4.118352667752899e-301,4.117353067602959e-301,4.1163534674530195e-301,4.115353867303079e-301,4.114354267153139e-301,4.113354667003199e-301,4.1123550668532595e-301,4.111355466703319e-301,4.110355866553379e-301,4.109356266403439e-301,4.108356666253499e-301,4.107357066103559e-301,4.106357465953619e-301,4.105357865803678e-301,4.104358265653739e-301,4.103358665503799e-301,4.102359065353859e-301,4.101359465203918e-301,4.100359865053978e-301,4.099360264904039e-301,4.098360664754098e-301,4.097361064604159e-301,4.096361464454218e-301,4.095361864304278e-301,4.094362264154338e-301,4.093362664004399e-301,4.092363063854459e-301,4.091363463704518e-301,4.090363863554578e-301,4.089364263404638e-301,4.088364663254698e-301,4.087365063104758e-301,4.086365462954818e-301,4.085365862804877e-301,4.084366262654938e-301,4.083366662504998e-301,4.082367062355058e-301,4.081367462205117e-301,4.080367862055178e-301,4.079368261905238e-301,4.078368661755298e-301,4.0773690616053575e-301,4.076369461455418e-301,4.0753698613054775e-301,4.0743702611555375e-301,4.073370661005598e-301,4.0723710608556575e-301,4.0713714607057175e-301,4.0703718605557775e-301,4.069372260405838e-301,4.0683726602558976e-301,4.067373060105958e-301,4.066373459956018e-301,4.0653738598060784e-301,4.064374259656138e-301,4.063374659506198e-301,4.062375059356258e-301,4.061375459206318e-301,4.060375859056378e-301,4.059376258906438e-301,4.058376658756497e-301,4.057377058606557e-301,4.056377458456618e-301,4.055377858306678e-301,4.054378258156738e-301,4.053378658006797e-301,4.052379057856858e-301,4.051379457706917e-301,4.050379857556978e-301,4.049380257407038e-301,4.048380657257097e-301,4.047381057107157e-301,4.046381456957217e-301,4.045381856807278e-301,4.044382256657337e-301,4.043382656507397e-301,4.042383056357457e-301,4.041383456207517e-301,4.040383856057577e-301,4.039384255907637e-301,4.038384655757696e-301,4.037385055607757e-301,4.036385455457817e-301,4.035385855307877e-301,4.034386255157936e-301,4.033386655007996e-301,4.032387054858057e-301,4.031387454708116e-301,4.030387854558177e-301,4.029388254408236e-301,4.028388654258297e-301,4.0273890541083564e-301,4.026389453958417e-301,4.025389853808477e-301,4.0243902536585365e-301,4.0233906535085965e-301,4.0223910533586565e-301,4.0213914532087165e-301,4.0203918530587765e-301,4.0193922529088365e-301,4.0183926527588965e-301,4.0173930526089565e-301,4.0163934524590166e-301,4.0153938523090766e-301,4.014394252159136e-301,4.013394652009197e-301,4.012395051859257e-301,4.011395451709317e-301,4.010395851559376e-301,4.009396251409437e-301,4.008396651259497e-301,4.007397051109556e-301,4.006397450959617e-301,4.005397850809676e-301,4.004398250659736e-301,4.003398650509796e-301,4.002399050359857e-301,4.001399450209916e-301,4.000399850059976e-301,3.999400249910036e-301,3.998400649760097e-301,3.997401049610156e-301,3.996401449460216e-301,3.995401849310276e-301,3.994402249160336e-301,3.993402649010396e-301,3.992403048860456e-301,3.991403448710515e-301,3.990403848560575e-301,3.989404248410636e-301,3.988404648260696e-301,3.987405048110756e-301,3.986405447960815e-301,3.985405847810876e-301,3.984406247660935e-301,3.983406647510996e-301,3.982407047361056e-301,3.981407447211116e-301,3.980407847061175e-301,3.979408246911235e-301,3.978408646761296e-301,3.977409046611355e-301,3.976409446461415e-301,3.975409846311475e-301,3.974410246161535e-301,3.9734106460115954e-301,3.9724110458616554e-301,3.9714114457117154e-301,3.9704118455617755e-301,3.9694122454118355e-301,3.9684126452618955e-301,3.967413045111955e-301,3.9664134449620155e-301,3.9654138448120755e-301,3.964414244662135e-301,3.9634146445121955e-301,3.962415044362255e-301,3.9614154442123156e-301,3.960415844062375e-301,3.959416243912436e-301,3.958416643762496e-301,3.957417043612555e-301,3.956417443462615e-301,3.955417843312676e-301,3.954418243162735e-301,3.953418643012795e-301,3.952419042862855e-301,3.951419442712915e-301,3.950419842562975e-301,3.949420242413035e-301,3.948420642263095e-301,3.947421042113154e-301,3.946421441963215e-301,3.945421841813275e-301,3.944422241663335e-301,3.943422641513394e-301,3.942423041363455e-301,3.941423441213515e-301,3.940423841063575e-301,3.939424240913635e-301,3.938424640763694e-301,3.937425040613754e-301,3.936425440463814e-301,3.935425840313875e-301,3.934426240163935e-301,3.933426640013994e-301,3.932427039864054e-301,3.931427439714115e-301,3.930427839564174e-301,3.929428239414234e-301,3.928428639264294e-301,3.927429039114354e-301,3.926429438964414e-301,3.925429838814474e-301,3.924430238664534e-301,3.9234306385145936e-301,3.922431038364654e-301,3.921431438214714e-301,3.9204318380647744e-301,3.919432237914834e-301,3.9184326377648944e-301,3.917433037614954e-301,3.9164334374650145e-301,3.9154338373150745e-301,3.9144342371651345e-301,3.913434637015194e-301,3.912435036865254e-301,3.9114354367153145e-301,3.910435836565374e-301,3.909436236415434e-301,3.908436636265494e-301,3.907437036115554e-301,3.906437435965614e-301,3.905437835815674e-301,3.904438235665734e-301,3.903438635515794e-301,3.902439035365854e-301,3.901439435215914e-301,3.900439835065973e-301,3.899440234916034e-301,3.898440634766094e-301,3.897441034616154e-301,3.896441434466214e-301,3.895441834316273e-301,3.894442234166334e-301,3.893442634016393e-301,3.892443033866454e-301,3.891443433716514e-301,3.890443833566573e-301,3.889444233416633e-301,3.888444633266694e-301,3.887445033116754e-301,3.886445432966813e-301,3.885445832816873e-301,3.884446232666933e-301,3.883446632516993e-301,3.882447032367053e-301,3.881447432217113e-301,3.8804478320671724e-301,3.879448231917233e-301,3.878448631767293e-301,3.877449031617354e-301,3.8764494314674125e-301,3.875449831317473e-301,3.874450231167533e-301,3.873450631017593e-301,3.872451030867653e-301,3.871451430717713e-301,3.8704518305677725e-301,3.8694522304178326e-301,3.868452630267893e-301,3.867453030117953e-301,3.866453429968013e-301,3.865453829818073e-301,3.8644542296681334e-301,3.863454629518193e-301,3.862455029368253e-301,3.861455429218313e-301,3.860455829068373e-301,3.859456228918433e-301,3.858456628768493e-301,3.857457028618553e-301,3.856457428468613e-301,3.855457828318673e-301,3.854458228168733e-301,3.853458628018793e-301,3.852459027868852e-301,3.851459427718913e-301,3.850459827568972e-301,3.849460227419033e-301,3.848460627269093e-301,3.847461027119153e-301,3.846461426969212e-301,3.845461826819273e-301,3.844462226669333e-301,3.843462626519392e-301,3.842463026369452e-301,3.841463426219512e-301,3.840463826069573e-301,3.839464225919632e-301,3.838464625769692e-301,3.837465025619752e-301,3.836465425469812e-301,3.835465825319872e-301,3.834466225169933e-301,3.833466625019991e-301,3.832467024870052e-301,3.831467424720112e-301,3.830467824570172e-301,3.829468224420232e-301,3.828468624270291e-301,3.827469024120352e-301,3.8264694239704114e-301,3.825469823820472e-301,3.824470223670532e-301,3.8234706235205915e-301,3.8224710233706515e-301,3.821471423220712e-301,3.820471823070772e-301,3.8194722229208315e-301,3.8184726227708915e-301,3.8174730226209515e-301,3.8164734224710115e-301,3.8154738223210716e-301,3.8144742221711316e-301,3.813474622021191e-301,3.812475021871252e-301,3.811475421721312e-301,3.8104758215713724e-301,3.809476221421431e-301,3.808476621271492e-301,3.807477021121552e-301,3.806477420971612e-301,3.805477820821672e-301,3.804478220671732e-301,3.803478620521791e-301,3.802479020371851e-301,3.801479420221912e-301,3.800479820071971e-301,3.799480219922031e-301,3.798480619772091e-301,3.797481019622152e-301,3.796481419472211e-301,3.795481819322271e-301,3.794482219172331e-301,3.793482619022392e-301,3.792483018872451e-301,3.791483418722511e-301,3.790483818572571e-301,3.789484218422631e-301,3.788484618272691e-301,3.787485018122751e-301,3.786485417972811e-301,3.78548581782287e-301,3.784486217672931e-301,3.783486617522991e-301,3.782487017373051e-301,3.781487417223111e-301,3.780487817073171e-301,3.77948821692323e-301,3.778488616773291e-301,3.777489016623351e-301,3.77648941647341e-301,3.77548981632347e-301,3.77449021617353e-301,3.773490616023591e-301,3.7724910158736504e-301,3.7714914157237104e-301,3.7704918155737705e-301,3.7694922154238305e-301,3.7684926152738905e-301,3.767493015123951e-301,3.76649341497401e-301,3.7654938148240705e-301,3.7644942146741305e-301,3.7634946145241905e-301,3.7624950143742506e-301,3.7614954142243106e-301,3.7604958140743706e-301,3.75949621392443e-301,3.758496613774491e-301,3.75749701362455e-301,3.75649741347461e-301,3.75549781332467e-301,3.754498213174731e-301,3.753498613024791e-301,3.75249901287485e-301,3.75149941272491e-301,3.750499812574971e-301,3.74950021242503e-301,3.74850061227509e-301,3.74750101212515e-301,3.74650141197521e-301,3.74550181182527e-301,3.74450221167533e-301,3.743502611525391e-301,3.742503011375449e-301,3.74150341122551e-301,3.74050381107557e-301,3.73950421092563e-301,3.73850461077569e-301,3.73750501062575e-301,3.73650541047581e-301,3.73550581032587e-301,3.73450621017593e-301,3.733506610025989e-301,3.7325070098760493e-301,3.7315074097261097e-301,3.7305078095761697e-301,3.7295082094262297e-301,3.7285086092762893e-301,3.7275090091263493e-301,3.7265094089764098e-301,3.7255098088264693e-301,3.7245102086765298e-301,3.7235106085265894e-301,3.722511008376649e-301,3.7215114082267094e-301,3.72051180807677e-301,3.7195122079268294e-301,3.718512607776889e-301,3.7175130076269494e-301,3.7165134074770095e-301,3.7155138073270695e-301,3.714514207177129e-301,3.713514607027189e-301,3.7125150068772487e-301,3.711515406727309e-301,3.7105158065773695e-301,3.7095162064274283e-301,3.7085166062774887e-301,3.707517006127549e-301,3.7065174059776096e-301,3.705517805827669e-301,3.7045182056777288e-301,3.703518605527789e-301,3.702519005377849e-301,3.701519405227909e-301,3.7005198050779692e-301,3.699520204928029e-301,3.6985206047780884e-301,3.697521004628149e-301,3.6965214044782093e-301,3.695521804328269e-301,3.6945222041783285e-301,3.693522604028389e-301,3.6925230038784485e-301,3.691523403728509e-301,3.6905238035785685e-301,3.689524203428629e-301,3.6885246032786886e-301,3.6875250031287486e-301,3.686525402978809e-301,3.685525802828868e-301,3.684526202678928e-301,3.6835266025289886e-301,3.6825270023790482e-301,3.6815274022291086e-301,3.6805278020791682e-301,3.6795282019292287e-301,3.6785286017792883e-301,3.6775290016293487e-301,3.6765294014794087e-301,3.675529801329468e-301,3.6745302011795283e-301,3.6735306010295883e-301,3.672531000879648e-301,3.671531400729708e-301,3.670531800579768e-301,3.6695322004298284e-301,3.668532600279888e-301,3.6675330001299484e-301,3.666533399980008e-301,3.6655337998300676e-301,3.664534199680128e-301,3.6635345995301885e-301,3.662534999380248e-301,3.6615353992303076e-301,3.660535799080368e-301,3.659536198930428e-301,3.6585365987804877e-301,3.657536998630548e-301,3.6565373984806077e-301,3.6555377983306673e-301,3.6545381981807277e-301,3.653538598030788e-301,3.6525389978808486e-301,3.6515393977309074e-301,3.6505397975809678e-301,3.6495401974310282e-301,3.648540597281088e-301,3.6475409971311474e-301,3.6465413969812074e-301,3.6455417968312674e-301,3.6445421966813274e-301,3.643542596531388e-301,3.6425429963814475e-301,3.641543396231507e-301,3.6405437960815675e-301,3.639544195931628e-301,3.6385445957816875e-301,3.637544995631747e-301,3.6365453954818075e-301,3.635545795331867e-301,3.6345461951819276e-301,3.6335465950319876e-301,3.632546994882047e-301,3.631547394732107e-301,3.630547794582167e-301,3.6295481944322276e-301,3.6285485942822864e-301,3.627548994132347e-301,3.6265493939824072e-301,3.625549793832467e-301,3.6245501936825273e-301,3.623550593532587e-301,3.6225509933826473e-301,3.621551393232707e-301,3.6205517930827673e-301,3.6195521929328273e-301,3.6185525927828865e-301,3.6175529926329465e-301,3.616553392483007e-301,3.6155537923330666e-301,3.614554192183127e-301,3.6135545920331866e-301,3.612554991883247e-301,3.6115553917333066e-301,3.610555791583367e-301,3.609556191433427e-301,3.6085565912834862e-301,3.6075569911335467e-301,3.6065573909836067e-301,3.605557790833667e-301,3.6045581906837263e-301,3.6035585905337863e-301,3.6025589903838467e-301,3.6015593902339063e-301,3.6005597900839667e-301,3.5995601899340263e-301,3.598560589784086e-301,3.5975609896341464e-301,3.5965613894842068e-301,3.595561789334267e-301,3.594562189184326e-301,3.5935625890343864e-301,3.5925629888844464e-301,3.591563388734506e-301,3.5905637885845664e-301,3.589564188434626e-301,3.5885645882846856e-301,3.587564988134746e-301,3.5865653879848065e-301,3.585565787834867e-301,3.5845661876849257e-301,3.583566587534986e-301,3.5825669873850465e-301,3.581567387235106e-301,3.5805677870851657e-301,3.579568186935226e-301,3.5785685867852858e-301,3.5775689866353458e-301,3.576569386485406e-301,3.575569786335466e-301,3.5745701861855254e-301,3.573570586035586e-301,3.5725709858856463e-301,3.571571385735706e-301,3.5705717855857654e-301,3.569572185435826e-301,3.5685725852858855e-301,3.567572985135946e-301,3.566573384986006e-301,3.565573784836066e-301,3.5645741846861255e-301,3.5635745845361855e-301,3.562574984386246e-301,3.561575384236305e-301,3.560575784086365e-301,3.5595761839364256e-301,3.558576583786486e-301,3.5575769836365456e-301,3.556577383486605e-301,3.5555777833366656e-301,3.5545781831867252e-301,3.5535785830367857e-301,3.5525789828868457e-301,3.551579382736905e-301,3.5505797825869653e-301,3.5495801824370253e-301,3.5485805822870857e-301,3.5475809821371453e-301,3.546581381987205e-301,3.5455817818372653e-301,3.544582181687325e-301,3.5435825815373854e-301,3.5425829813874458e-301,3.5415833812375046e-301,3.540583781087565e-301,3.5395841809376254e-301,3.5385845807876854e-301,3.5375849806377446e-301,3.5365853804878046e-301,3.535585780337865e-301,3.5345861801879246e-301,3.533586580037985e-301,3.5325869798880447e-301,3.5315873797381043e-301,3.5305877795881647e-301,3.529588179438225e-301,3.5285885792882855e-301,3.5275889791383443e-301,3.5265893789884047e-301,3.5255897788384648e-301,3.5245901786885248e-301,3.5235905785385848e-301,3.5225909783886444e-301,3.5215913782387044e-301,3.5205917780887644e-301,3.519592177938825e-301,3.5185925777888844e-301,3.517592977638944e-301,3.5165933774890045e-301,3.515593777339065e-301,3.5145941771891245e-301,3.513594577039184e-301,3.5125949768892445e-301,3.5115953767393045e-301,3.5105957765893645e-301,3.5095961764394245e-301,3.508596576289484e-301,3.5075969761395437e-301,3.506597375989604e-301,3.5055977758396646e-301,3.504598175689724e-301,3.5035985755397838e-301,3.5025989753898442e-301,3.5015993752399046e-301,3.5005997750899642e-301,3.4996001749400242e-301,3.4986005747900843e-301,3.497600974640144e-301,3.496601374490204e-301,3.4956017743402643e-301,3.4946021741903235e-301,3.4936025740403835e-301,3.492602973890444e-301,3.4916033737405043e-301,3.490603773590564e-301,3.4896041734406235e-301,3.488604573290684e-301,3.4876049731407436e-301,3.486605372990804e-301,3.485605772840864e-301,3.484606172690923e-301,3.4836065725409836e-301,3.4826069723910436e-301,3.481607372241104e-301,3.4806077720911636e-301,3.4796081719412232e-301,3.4786085717912837e-301,3.4776089716413433e-301,3.4766093714914037e-301,3.4756097713414633e-301,3.474610171191523e-301,3.4736105710415833e-301,3.4726109708916437e-301,3.4716113707417038e-301,3.470611770591763e-301,3.4696121704418234e-301,3.4686125702918834e-301,3.467612970141943e-301,3.4666133699920034e-301,3.465613769842063e-301,3.4646141696921234e-301,3.463614569542183e-301,3.4626149693922435e-301,3.461615369242304e-301,3.4606157690923627e-301,3.459616168942423e-301,3.4586165687924835e-301,3.457616968642543e-301,3.456617368492603e-301,3.455617768342663e-301,3.454618168192723e-301,3.4536185680427827e-301,3.452618967892843e-301,3.4516193677429028e-301,3.4506197675929624e-301,3.4496201674430228e-301,3.4486205672930832e-301,3.447620967143143e-301,3.4466213669932024e-301,3.445621766843263e-301,3.444622166693323e-301,3.443622566543383e-301,3.442622966393443e-301,3.4416233662435025e-301,3.4406237660935625e-301,3.4396241659436225e-301,3.438624565793683e-301,3.4376249656437425e-301,3.436625365493802e-301,3.4356257653438625e-301,3.434626165193923e-301,3.4336265650439826e-301,3.432626964894042e-301,3.4316273647441026e-301,3.430627764594162e-301,3.4296281644442226e-301,3.4286285642942826e-301,3.427628964144342e-301,3.426629363994402e-301,3.4256297638444623e-301,3.4246301636945227e-301,3.4236305635445823e-301,3.422630963394642e-301,3.4216313632447023e-301,3.420631763094762e-301,3.4196321629448223e-301,3.4186325627948828e-301,3.4176329626449424e-301,3.416633362495002e-301,3.415633762345062e-301,3.4146341621951224e-301,3.413634562045182e-301,3.4126349618952416e-301,3.411635361745302e-301,3.4106357615953616e-301,3.409636161445422e-301,3.4086365612954816e-301,3.407636961145542e-301,3.4066373609956017e-301,3.405637760845662e-301,3.404638160695722e-301,3.4036385605457813e-301,3.4026389603958417e-301,3.4016393602459017e-301,3.4006397600959617e-301,3.3996401599460217e-301,3.3986405597960813e-301,3.3976409596461418e-301,3.3966413594962014e-301,3.3956417593462618e-301,3.3946421591963222e-301,3.393642559046381e-301,3.3926429588964414e-301,3.391643358746502e-301,3.3906437585965614e-301,3.389644158446621e-301,3.3886445582966815e-301,3.3876449581467415e-301,3.386645357996801e-301,3.3856457578468615e-301,3.384646157696921e-301,3.3836465575469807e-301,3.382646957397041e-301,3.3816473572471015e-301,3.380647757097162e-301,3.3796481569472207e-301,3.378648556797281e-301,3.3776489566473416e-301,3.376649356497401e-301,3.3756497563474612e-301,3.3746501561975212e-301,3.373650556047581e-301,3.372650955897641e-301,3.3716513557477013e-301,3.3706517555977617e-301,3.3696521554478205e-301,3.368652555297881e-301,3.3676529551479413e-301,3.366653354998001e-301,3.3656537548480605e-301,3.364654154698121e-301,3.3636545545481805e-301,3.362654954398241e-301,3.361655354248301e-301,3.3606557540983606e-301,3.3596561539484206e-301,3.3586565537984806e-301,3.357656953648541e-301,3.3566573534986006e-301,3.3556577533486602e-301,3.3546581531987206e-301,3.3536585530487802e-301,3.3526589528988407e-301,3.351659352748901e-301,3.3506597525989607e-301,3.3496601524490203e-301,3.3486605522990807e-301,3.3476609521491407e-301,3.3466613519992e-301,3.3456617518492603e-301,3.3446621516993203e-301,3.34366255154938e-301,3.3426629513994404e-301,3.3416633512495e-301,3.3406637510995604e-301,3.33966415094962e-301,3.3386645507996804e-301,3.337664950649741e-301,3.3366653504997996e-301,3.33566575034986e-301,3.3346661501999205e-301,3.3336665500499805e-301,3.33266694990004e-301,3.3316673497500997e-301,3.33066774960016e-301,3.3296681494502197e-301,3.32866854930028e-301,3.3276689491503406e-301,3.3266693490003993e-301,3.3256697488504597e-301,3.32467014870052e-301,3.32367054855058e-301,3.3226709484006394e-301,3.3216713482507e-301,3.32067174810076e-301,3.31967214795082e-301,3.31867254780088e-301,3.3176729476509394e-301,3.316673347500999e-301,3.3156737473510595e-301,3.31467414720112e-301,3.3136745470511803e-301,3.312674946901239e-301,3.3116753467512995e-301,3.31067574660136e-301,3.3096761464514195e-301,3.30867654630148e-301,3.3076769461515396e-301,3.306677346001599e-301,3.305677745851659e-301,3.3046781457017196e-301,3.30367854555178e-301,3.3026789454018388e-301,3.3016793452518992e-301,3.3006797451019596e-301,3.2996801449520192e-301,3.298680544802079e-301,3.2976809446521393e-301,3.296681344502199e-301,3.2956817443522593e-301,3.2946821442023193e-301,3.2936825440523793e-301,3.292682943902439e-301,3.291683343752499e-301,3.2906837436025593e-301,3.289684143452619e-301,3.2886845433026785e-301,3.287684943152739e-301,3.2866853430027994e-301,3.285685742852859e-301,3.2846861427029194e-301,3.283686542552979e-301,3.2826869424030386e-301,3.281687342253099e-301,3.280687742103159e-301,3.2796881419532182e-301,3.2786885418032787e-301,3.2776889416533387e-301,3.276689341503399e-301,3.2756897413534587e-301,3.2746901412035183e-301,3.2736905410535787e-301,3.2726909409036383e-301,3.2716913407536988e-301,3.270691740603759e-301,3.269692140453818e-301,3.2686925403038784e-301,3.267692940153939e-301,3.266693340003999e-301,3.2656937398540584e-301,3.2646941397041184e-301,3.2636945395541784e-301,3.262694939404238e-301,3.2616953392542985e-301,3.260695739104359e-301,3.2596961389544177e-301,3.258696538804478e-301,3.2576969386545385e-301,3.256697338504599e-301,3.2556977383546577e-301,3.254698138204718e-301,3.2536985380547786e-301,3.252698937904838e-301,3.251699337754898e-301,3.2506997376049578e-301,3.2497001374550178e-301,3.2487005373050778e-301,3.2477009371551382e-301,3.2467013370051986e-301,3.2457017368552574e-301,3.244702136705318e-301,3.2437025365553783e-301,3.242702936405438e-301,3.2417033362554983e-301,3.240703736105558e-301,3.239704135955618e-301,3.238704535805678e-301,3.237704935655738e-301,3.2367053355057975e-301,3.2357057353558575e-301,3.2347061352059175e-301,3.233706535055978e-301,3.2327069349060376e-301,3.231707334756097e-301,3.2307077346061576e-301,3.229708134456218e-301,3.2287085343062776e-301,3.227708934156338e-301,3.2267093340063976e-301,3.2257097338564572e-301,3.2247101337065177e-301,3.2237105335565777e-301,3.2227109334066373e-301,3.221711333256697e-301,3.2207117331067573e-301,3.2197121329568177e-301,3.2187125328068773e-301,3.2177129326569378e-301,3.2167133325069974e-301,3.215713732357057e-301,3.2147141322071174e-301,3.2137145320571774e-301,3.2127149319072366e-301,3.211715331757297e-301,3.210715731607357e-301,3.2097161314574174e-301,3.208716531307477e-301,3.2077169311575366e-301,3.206717331007597e-301,3.2057177308576567e-301,3.204718130707717e-301,3.2037185305577775e-301,3.2027189304078363e-301,3.2017193302578967e-301,3.200719730107957e-301,3.199720129958017e-301,3.198720529808077e-301,3.1977209296581368e-301,3.1967213295081968e-301,3.1957217293582564e-301,3.194722129208317e-301,3.1937225290583764e-301,3.192722928908437e-301,3.1917233287584964e-301,3.190723728608557e-301,3.1897241284586173e-301,3.188724528308676e-301,3.1877249281587365e-301,3.186725328008797e-301,3.1857257278588565e-301,3.1847261277089165e-301,3.1837265275589765e-301,3.1827269274090365e-301,3.181727327259096e-301,3.1807277271091566e-301,3.179728126959217e-301,3.1787285268092758e-301,3.177728926659336e-301,3.1767293265093966e-301,3.175729726359456e-301,3.1747301262095166e-301,3.1737305260595762e-301,3.1727309259096367e-301,3.1717313257596963e-301,3.1707317256097563e-301,3.1697321254598163e-301,3.168732525309876e-301,3.167732925159936e-301,3.1667333250099963e-301,3.165733724860056e-301,3.1647341247101155e-301,3.163734524560176e-301,3.1627349244102364e-301,3.161735324260296e-301,3.1607357241103564e-301,3.159736123960416e-301,3.1587365238104756e-301,3.157736923660536e-301,3.156737323510596e-301,3.1557377233606556e-301,3.1547381232107156e-301,3.1537385230607756e-301,3.152738922910836e-301,3.1517393227608957e-301,3.1507397226109553e-301,3.1497401224610157e-301,3.1487405223110753e-301,3.1477409221611357e-301,3.146741322011196e-301,3.1457417218612557e-301,3.1447421217113153e-301,3.1437425215613758e-301,3.1427429214114358e-301,3.1417433212614954e-301,3.140743721111555e-301,3.1397441209616154e-301,3.138744520811675e-301,3.1377449206617354e-301,3.136745320511796e-301,3.1357457203618554e-301,3.134746120211915e-301,3.1337465200619755e-301,3.132746919912036e-301,3.1317473197620955e-301,3.130747719612155e-301,3.129748119462215e-301,3.128748519312275e-301,3.127748919162335e-301,3.1267493190123947e-301,3.125749718862455e-301,3.1247501187125148e-301,3.123750518562575e-301,3.1227509184126356e-301,3.1217513182626944e-301,3.120751718112755e-301,3.1197521179628152e-301,3.118752517812875e-301,3.1177529176629353e-301,3.116753317512995e-301,3.115753717363055e-301,3.114754117213115e-301,3.113754517063175e-301,3.1127549169132353e-301,3.111755316763294e-301,3.1107557166133545e-301,3.109756116463415e-301,3.1087565163134745e-301,3.107756916163534e-301,3.1067573160135946e-301,3.105757715863655e-301,3.1047581157137146e-301,3.1037585155637746e-301,3.1027589154138346e-301,3.1017593152638942e-301,3.1007597151139542e-301,3.0997601149640146e-301,3.098760514814075e-301,3.097760914664134e-301,3.0967613145141943e-301,3.0957617143642547e-301,3.0947621142143143e-301,3.0937625140643747e-301,3.0927629139144343e-301,3.091763313764494e-301,3.0907637136145543e-301,3.0897641134646144e-301,3.0887645133146748e-301,3.087764913164734e-301,3.086765313014794e-301,3.0857657128648544e-301,3.084766112714914e-301,3.0837665125649736e-301,3.082766912415034e-301,3.0817673122650936e-301,3.080767712115154e-301,3.0797681119652145e-301,3.078768511815274e-301,3.0777689116653337e-301,3.076769311515394e-301,3.075769711365454e-301,3.0747701112155137e-301,3.0737705110655737e-301,3.0727709109156337e-301,3.0717713107656933e-301,3.0707717106157538e-301,3.069772110465814e-301,3.0687725103158738e-301,3.0677729101659334e-301,3.066773310015994e-301,3.0657737098660542e-301,3.064774109716113e-301,3.0637745095661734e-301,3.062774909416234e-301,3.0617753092662935e-301,3.0607757091163535e-301,3.0597761089664135e-301,3.0587765088164735e-301,3.057776908666533e-301,3.0567773085165935e-301,3.055777708366653e-301,3.0547781082167135e-301,3.053778508066773e-301,3.0527789079168336e-301,3.0517793077668936e-301,3.050779707616953e-301,3.0497801074670136e-301,3.048780507317073e-301,3.0477809071671332e-301,3.0467813070171932e-301,3.045781706867253e-301,3.0447821067173132e-301,3.043782506567373e-301,3.0427829064174333e-301,3.041783306267493e-301,3.040783706117553e-301,3.0397841059676133e-301,3.038784505817673e-301,3.0377849056677333e-301,3.036785305517793e-301,3.035785705367853e-301,3.034786105217913e-301,3.033786505067973e-301,3.032786904918033e-301,3.0317873047680926e-301,3.030787704618153e-301,3.0297881044682126e-301,3.0287885043182726e-301,3.027788904168333e-301,3.0267893040183926e-301,3.025789703868453e-301,3.0247901037185127e-301,3.0237905035685727e-301,3.0227909034186327e-301,3.0217913032686927e-301,3.0207917031187527e-301,3.0197921029688123e-301,3.0187925028188723e-301,3.0177929026689323e-301,3.0167933025189923e-301,3.0157937023690524e-301,3.0147941022191124e-301,3.0137945020691724e-301,3.0127949019192324e-301,3.0117953017692924e-301,3.0107957016193524e-301,3.0097961014694124e-301,3.0087965013194724e-301,3.0077969011695325e-301,3.006797301019592e-301,3.005797700869652e-301,3.004798100719712e-301,3.0037985005697717e-301,3.002798900419832e-301,3.001799300269892e-301,3.000799700119952e-301,2.999800099970012e-301,2.9988004998200717e-301,2.997800899670132e-301,2.996801299520192e-301,2.995801699370252e-301,2.994802099220312e-301,2.993802499070372e-301,2.992802898920432e-301,2.991803298770492e-301,2.990803698620552e-301,2.989804098470612e-301,2.9888044983206714e-301,2.987804898170732e-301,2.9868052980207915e-301,2.985805697870852e-301,2.984806097720912e-301,2.983806497570972e-301,2.982806897421032e-301,2.9818072972710915e-301,2.980807697121152e-301,2.9798080969712116e-301,2.9788084968212716e-301,2.9778088966713316e-301,2.976809296521391e-301,2.9758096963714516e-301,2.974810096221511e-301,2.9738104960715716e-301,2.9728108959216312e-301,2.9718112957716912e-301,2.9708116956217517e-301,2.9698120954718113e-301,2.9688124953218717e-301,2.9678128951719313e-301,2.9668132950219913e-301,2.9658136948720513e-301,2.964814094722111e-301,2.9638144945721713e-301,2.962814894422231e-301,2.961815294272291e-301,2.960815694122351e-301,2.959816093972411e-301,2.9588164938224714e-301,2.957816893672531e-301,2.956817293522591e-301,2.955817693372651e-301,2.954818093222711e-301,2.953818493072771e-301,2.952818892922831e-301,2.9518192927728907e-301,2.9508196926229507e-301,2.9498200924730107e-301,2.9488204923230707e-301,2.9478208921731307e-301,2.9468212920231907e-301,2.9458216918732507e-301,2.9448220917233107e-301,2.9438224915733708e-301,2.9428228914234308e-301,2.9418232912734908e-301,2.940823691123551e-301,2.939824090973611e-301,2.938824490823671e-301,2.9378248906737304e-301,2.9368252905237904e-301,2.9358256903738504e-301,2.9348260902239105e-301,2.9338264900739705e-301,2.9328268899240305e-301,2.9318272897740905e-301,2.9308276896241505e-301,2.92982808947421e-301,2.9288284893242705e-301,2.9278288891743305e-301,2.9268292890243906e-301,2.9258296888744506e-301,2.92483008872451e-301,2.92383048857457e-301,2.92283088842463e-301,2.92183128827469e-301,2.9208316881247502e-301,2.91983208797481e-301,2.9188324878248702e-301,2.91783288767493e-301,2.9168332875249903e-301,2.9158336873750503e-301,2.91483408722511e-301,2.9138344870751703e-301,2.91283488692523e-301,2.91183528677529e-301,2.91083568662535e-301,2.9098360864754095e-301,2.90883648632547e-301,2.9078368861755295e-301,2.90683728602559e-301,2.9058376858756496e-301,2.9048380857257096e-301,2.90383848557577e-301,2.9028388854258296e-301,2.90183928527589e-301,2.9008396851259496e-301,2.8998400849760096e-301,2.8988404848260697e-301,2.8978408846761297e-301,2.8968412845261897e-301,2.8958416843762493e-301,2.8948420842263097e-301,2.8938424840763693e-301,2.8928428839264293e-301,2.8918432837764897e-301,2.8908436836265493e-301,2.8898440834766098e-301,2.8888444833266694e-301,2.8878448831767294e-301,2.88684528302679e-301,2.8858456828768494e-301,2.8848460827269094e-301,2.8838464825769694e-301,2.882846882427029e-301,2.881847282277089e-301,2.880847682127149e-301,2.8798480819772095e-301,2.878848481827269e-301,2.877848881677329e-301,2.876849281527389e-301,2.875849681377449e-301,2.874850081227509e-301,2.873850481077569e-301,2.872850880927629e-301,2.871851280777689e-301,2.870851680627749e-301,2.8698520804778088e-301,2.8688524803278688e-301,2.8678528801779288e-301,2.866853280027989e-301,2.865853679878049e-301,2.864854079728109e-301,2.863854479578169e-301,2.8628548794282284e-301,2.861855279278289e-301,2.860855679128349e-301,2.859856078978409e-301,2.858856478828469e-301,2.8578568786785285e-301,2.8568572785285885e-301,2.8558576783786485e-301,2.8548580782287085e-301,2.8538584780787685e-301,2.852858877928828e-301,2.8518592777788886e-301,2.850859677628948e-301,2.8498600774790086e-301,2.8488604773290686e-301,2.8478608771791286e-301,2.8468612770291886e-301,2.8458616768792482e-301,2.8448620767293087e-301,2.8438624765793683e-301,2.8428628764294283e-301,2.8418632762794883e-301,2.840863676129548e-301,2.8398640759796083e-301,2.838864475829668e-301,2.8378648756797283e-301,2.8368652755297883e-301,2.835865675379848e-301,2.8348660752299084e-301,2.833866475079968e-301,2.8328668749300284e-301,2.831867274780088e-301,2.830867674630148e-301,2.829868074480208e-301,2.828868474330268e-301,2.827868874180328e-301,2.8268692740303876e-301,2.8258696738804476e-301,2.824870073730508e-301,2.8238704735805677e-301,2.822870873430628e-301,2.8218712732806877e-301,2.8208716731307477e-301,2.8198720729808077e-301,2.8188724728308677e-301,2.8178728726809277e-301,2.8168732725309878e-301,2.8158736723810478e-301,2.8148740722311074e-301,2.8138744720811674e-301,2.812874871931228e-301,2.8118752717812874e-301,2.8108756716313474e-301,2.8098760714814074e-301,2.8088764713314674e-301,2.8078768711815275e-301,2.8068772710315875e-301,2.8058776708816475e-301,2.8048780707317075e-301,2.8038784705817675e-301,2.8028788704318275e-301,2.801879270281887e-301,2.8008796701319475e-301,2.799880069982007e-301,2.798880469832067e-301,2.797880869682127e-301,2.796881269532187e-301,2.795881669382247e-301,2.794882069232307e-301,2.7938824690823672e-301,2.7928828689324272e-301,2.7918832687824872e-301,2.7908836686325472e-301,2.7898840684826073e-301,2.788884468332667e-301,2.787884868182727e-301,2.786885268032787e-301,2.785885667882847e-301,2.784886067732907e-301,2.7838864675829665e-301,2.782886867433027e-301,2.781887267283087e-301,2.780887667133147e-301,2.779888066983207e-301,2.7788884668332666e-301,2.777888866683327e-301,2.7768892665333866e-301,2.7758896663834466e-301,2.7748900662335066e-301,2.7738904660835666e-301,2.7728908659336266e-301,2.7718912657836862e-301,2.7708916656337467e-301,2.7698920654838067e-301,2.7688924653338663e-301,2.7678928651839267e-301,2.7668932650339863e-301,2.7658936648840467e-301,2.7648940647341063e-301,2.7638944645841663e-301,2.7628948644342263e-301,2.7618952642842864e-301,2.7608956641343464e-301,2.759896063984406e-301,2.758896463834466e-301,2.7578968636845264e-301,2.756897263534586e-301,2.7558976633846464e-301,2.754898063234706e-301,2.7538984630847665e-301,2.752898862934826e-301,2.751899262784886e-301,2.7508996626349465e-301,2.749900062485006e-301,2.748900462335066e-301,2.747900862185126e-301,2.7469012620351857e-301,2.745901661885246e-301,2.7449020617353057e-301,2.743902461585366e-301,2.7429028614354258e-301,2.7419032612854858e-301,2.7409036611355458e-301,2.739904060985606e-301,2.7389044608356662e-301,2.737904860685726e-301,2.736905260535786e-301,2.735905660385846e-301,2.734906060235906e-301,2.7339064600859655e-301,2.7329068599360255e-301,2.7319072597860855e-301,2.7309076596361455e-301,2.7299080594862055e-301,2.7289084593362655e-301,2.7279088591863255e-301,2.7269092590363855e-301,2.7259096588864456e-301,2.7249100587365056e-301,2.7239104585865656e-301,2.7229108584366256e-301,2.721911258286685e-301,2.720911658136745e-301,2.7199120579868052e-301,2.7189124578368652e-301,2.7179128576869252e-301,2.716913257536985e-301,2.7159136573870453e-301,2.7149140572371053e-301,2.7139144570871653e-301,2.7129148569372253e-301,2.711915256787285e-301,2.7109156566373453e-301,2.709916056487405e-301,2.7089164563374654e-301,2.707916856187525e-301,2.706917256037585e-301,2.705917655887645e-301,2.7049180557377046e-301,2.703918455587765e-301,2.702918855437825e-301,2.701919255287885e-301,2.700919655137945e-301,2.6999200549880046e-301,2.698920454838065e-301,2.6979208546881247e-301,2.696921254538185e-301,2.695921654388245e-301,2.6949220542383047e-301,2.6939224540883647e-301,2.6929228539384247e-301,2.6919232537884847e-301,2.6909236536385443e-301,2.6899240534886043e-301,2.6889244533386648e-301,2.6879248531887244e-301,2.686925253038785e-301,2.6859256528888444e-301,2.6849260527389044e-301,2.683926452588965e-301,2.6829268524390244e-301,2.681927252289085e-301,2.6809276521391445e-301,2.6799280519892045e-301,2.678928451839264e-301,2.677928851689324e-301,2.6769292515393845e-301,2.675929651389444e-301,2.674930051239504e-301,2.673930451089564e-301,2.672930850939624e-301,2.6719312507896846e-301,2.670931650639744e-301,2.669932050489804e-301,2.668932450339864e-301,2.667932850189924e-301,2.6669332500399842e-301,2.665933649890044e-301,2.664934049740104e-301,2.663934449590164e-301,2.662934849440224e-301,2.661935249290284e-301,2.660935649140344e-301,2.6599360489904043e-301,2.658936448840464e-301,2.657936848690524e-301,2.656937248540584e-301,2.655937648390644e-301,2.654938048240704e-301,2.653938448090764e-301,2.652938847940824e-301,2.6519392477908836e-301,2.6509396476409436e-301,2.6499400474910036e-301,2.6489404473410636e-301,2.647940847191123e-301,2.6469412470411836e-301,2.6459416468912436e-301,2.6449420467413037e-301,2.6439424465913637e-301,2.6429428464414233e-301,2.6419432462914837e-301,2.6409436461415437e-301,2.6399440459916037e-301,2.6389444458416633e-301,2.6379448456917233e-301,2.6369452455417833e-301,2.635945645391843e-301,2.6349460452419034e-301,2.6339464450919634e-301,2.632946844942023e-301,2.6319472447920834e-301,2.630947644642143e-301,2.6299480444922034e-301,2.6289484443422634e-301,2.627948844192323e-301,2.6269492440423835e-301,2.625949643892443e-301,2.624950043742503e-301,2.6239504435925627e-301,2.6229508434426227e-301,2.621951243292683e-301,2.6209516431427427e-301,2.619952042992803e-301,2.6189524428428627e-301,2.6179528426929227e-301,2.616953242542983e-301,2.6159536423930428e-301,2.614954042243103e-301,2.6139544420931628e-301,2.612954841943223e-301,2.611955241793283e-301,2.6109556416433424e-301,2.609956041493403e-301,2.6089564413434624e-301,2.607956841193523e-301,2.6069572410435825e-301,2.6059576408936425e-301,2.6049580407437025e-301,2.6039584405937625e-301,2.602958840443823e-301,2.6019592402938825e-301,2.6009596401439425e-301,2.5999600399940025e-301,2.5989604398440626e-301,2.5979608396941226e-301,2.596961239544182e-301,2.595961639394242e-301,2.594962039244302e-301,2.593962439094362e-301,2.5929628389444222e-301,2.5919632387944822e-301,2.5909636386445422e-301,2.5899640384946023e-301,2.5889644383446623e-301,2.5879648381947223e-301,2.5869652380447823e-301,2.5859656378948423e-301,2.5849660377449023e-301,2.583966437594962e-301,2.582966837445022e-301,2.581967237295082e-301,2.5809676371451415e-301,2.579968036995202e-301,2.578968436845262e-301,2.577968836695322e-301,2.576969236545382e-301,2.5759696363954416e-301,2.574970036245502e-301,2.573970436095562e-301,2.572970835945622e-301,2.571971235795682e-301,2.5709716356457417e-301,2.5699720354958017e-301,2.5689724353458613e-301,2.5679728351959217e-301,2.5669732350459817e-301,2.5659736348960417e-301,2.5649740347461017e-301,2.5639744345961613e-301,2.5629748344462218e-301,2.5619752342962818e-301,2.5609756341463418e-301,2.5599760339964018e-301,2.5589764338464614e-301,2.5579768336965214e-301,2.5569772335465814e-301,2.5559776333966414e-301,2.5549780332467014e-301,2.553978433096761e-301,2.5529788329468215e-301,2.551979232796881e-301,2.5509796326469415e-301,2.549980032497001e-301,2.548980432347061e-301,2.5479808321971215e-301,2.546981232047181e-301,2.5459816318972415e-301,2.544982031747301e-301,2.543982431597361e-301,2.542982831447421e-301,2.5419832312974808e-301,2.540983631147541e-301,2.539984030997601e-301,2.538984430847661e-301,2.537984830697721e-301,2.536985230547781e-301,2.5359856303978413e-301,2.534986030247901e-301,2.533986430097961e-301,2.532986829948021e-301,2.531987229798081e-301,2.530987629648141e-301,2.529988029498201e-301,2.5289884293482605e-301,2.5279888291983205e-301,2.5269892290483805e-301,2.5259896288984406e-301,2.5249900287485006e-301,2.523990428598561e-301,2.5229908284486206e-301,2.5219912282986806e-301,2.5209916281487406e-301,2.5199920279988006e-301,2.518992427848861e-301,2.5179928276989206e-301,2.5169932275489807e-301,2.5159936273990403e-301,2.5149940272491003e-301,2.5139944270991603e-301,2.5129948269492203e-301,2.5119952267992803e-301,2.5109956266493403e-301,2.5099960264994003e-301,2.5089964263494603e-301,2.5079968261995204e-301,2.50699722604958e-301,2.5059976258996404e-301,2.5049980257497004e-301,2.5039984255997604e-301,2.50299882544982e-301,2.50199922529988e-301,2.50099962514994e-301,2.500000025e-301,2.49900042485006e-301,2.49800082470012e-301,2.4970012245501797e-301,2.49600162440024e-301,2.4950020242502997e-301,2.49400242410036e-301,2.49300282395042e-301,2.4920032238004797e-301,2.49100362365054e-301,2.4900040235005997e-301,2.4890044233506598e-301,2.4880048232007198e-301,2.4870052230507794e-301,2.48600562290084e-301,2.4850060227508994e-301,2.48400642260096e-301,2.4830068224510194e-301,2.4820072223010794e-301,2.48100762215114e-301,2.4800080220011995e-301,2.47900842185126e-301,2.4780088217013195e-301,2.4770092215513795e-301,2.4760096214014395e-301,2.4750100212514995e-301,2.4740104211015595e-301,2.473010820951619e-301,2.4720112208016796e-301,2.471011620651739e-301,2.470012020501799e-301,2.4690124203518596e-301,2.468012820201919e-301,2.4670132200519796e-301,2.4660136199020392e-301,2.4650140197520992e-301,2.4640144196021592e-301,2.4630148194522193e-301,2.4620152193022793e-301,2.461015619152339e-301,2.460016019002399e-301,2.459016418852459e-301,2.458016818702519e-301,2.4570172185525793e-301,2.456017618402639e-301,2.455018018252699e-301,2.454018418102759e-301,2.453018817952819e-301,2.452019217802879e-301,2.451019617652939e-301,2.450020017502999e-301,2.449020417353059e-301,2.4480208172031186e-301,2.4470212170531786e-301,2.4460216169032386e-301,2.4450220167532986e-301,2.4440224166033587e-301,2.4430228164534187e-301,2.4420232163034787e-301,2.4410236161535387e-301,2.4400240160035983e-301,2.4390244158536587e-301,2.4380248157037187e-301,2.4370252155537787e-301,2.4360256154038388e-301,2.4350260152538984e-301,2.4340264151039584e-301,2.4330268149540184e-301,2.4320272148040784e-301,2.4310276146541384e-301,2.4300280145041984e-301,2.4290284143542584e-301,2.428028814204318e-301,2.4270292140543785e-301,2.4260296139044385e-301,2.4250300137544985e-301,2.4240304136045585e-301,2.423030813454618e-301,2.422031213304678e-301,2.421031613154738e-301,2.420032013004798e-301,2.419032412854858e-301,2.4180328127049177e-301,2.417033212554978e-301,2.4160336124050378e-301,2.415034012255098e-301,2.414034412105158e-301,2.413034811955218e-301,2.4120352118052782e-301,2.411035611655338e-301,2.4100360115053982e-301,2.409036411355458e-301,2.408036811205518e-301,2.407037211055578e-301,2.4060376109056375e-301,2.405038010755698e-301,2.4040384106057575e-301,2.4030388104558175e-301,2.402039210305878e-301,2.4010396101559375e-301,2.400040010005998e-301,2.3990404098560576e-301,2.3980408097061176e-301,2.3970412095561776e-301,2.3960416094062376e-301,2.3950420092562976e-301,2.3940424091063576e-301,2.3930428089564172e-301,2.3920432088064772e-301,2.3910436086565372e-301,2.3900440085065977e-301,2.3890444083566573e-301,2.3880448082067173e-301,2.3870452080567773e-301,2.3860456079068373e-301,2.3850460077568973e-301,2.3840464076069573e-301,2.3830468074570177e-301,2.3820472073070773e-301,2.3810476071571374e-301,2.380048007007197e-301,2.379048406857257e-301,2.3780488067073174e-301,2.377049206557377e-301,2.376049606407437e-301,2.375050006257497e-301,2.374050406107557e-301,2.373050805957617e-301,2.372051205807677e-301,2.371051605657737e-301,2.370052005507797e-301,2.369052405357857e-301,2.368052805207917e-301,2.3670532050579767e-301,2.3660536049080367e-301,2.3650540047580967e-301,2.3640544046081567e-301,2.3630548044582167e-301,2.3620552043082768e-301,2.3610556041583364e-301,2.3600560040083968e-301,2.359056403858457e-301,2.358056803708517e-301,2.357057203558577e-301,2.3560576034086364e-301,2.355058003258697e-301,2.3540584031087564e-301,2.3530588029588165e-301,2.3520592028088765e-301,2.351059602658936e-301,2.3500600025089965e-301,2.349060402359056e-301,2.3480608022091165e-301,2.3470612020591765e-301,2.346061601909236e-301,2.3450620017592966e-301,2.344062401609356e-301,2.3430628014594166e-301,2.342063201309476e-301,2.341063601159536e-301,2.340064001009596e-301,2.3390644008596562e-301,2.3380648007097162e-301,2.337065200559776e-301,2.3360656004098363e-301,2.3350660002598963e-301,2.334066400109956e-301,2.3330667999600163e-301,2.332067199810076e-301,2.3310675996601363e-301,2.330067999510196e-301,2.329068399360256e-301,2.3280687992103163e-301,2.327069199060376e-301,2.326069598910436e-301,2.3250699987604956e-301,2.3240703986105556e-301,2.3230707984606156e-301,2.3220711983106756e-301,2.321071598160736e-301,2.3200719980107956e-301,2.3190723978608556e-301,2.3180727977109156e-301,2.3170731975609757e-301,2.316073597411036e-301,2.3150739972610957e-301,2.3140743971111557e-301,2.3130747969612157e-301,2.3120751968112757e-301,2.3110755966613353e-301,2.3100759965113953e-301,2.3090763963614553e-301,2.3080767962115154e-301,2.3070771960615754e-301,2.3060775959116354e-301,2.3050779957616954e-301,2.3040783956117554e-301,2.3030787954618154e-301,2.3020791953118754e-301,2.3010795951619354e-301,2.3000799950119954e-301,2.299080394862055e-301,2.298080794712115e-301,2.297081194562175e-301,2.296081594412235e-301,2.295081994262295e-301,2.2940823941123547e-301,2.293082793962415e-301,2.292083193812475e-301,2.291083593662535e-301,2.290083993512595e-301,2.289084393362655e-301,2.288084793212715e-301,2.2870851930627748e-301,2.286085592912835e-301,2.285085992762895e-301,2.284086392612955e-301,2.283086792463015e-301,2.2820871923130744e-301,2.281087592163135e-301,2.280087992013195e-301,2.279088391863255e-301,2.278088791713315e-301,2.2770891915633745e-301,2.276089591413435e-301,2.2750899912634945e-301,2.274090391113555e-301,2.273090790963615e-301,2.2720911908136745e-301,2.2710915906637346e-301,2.270091990513794e-301,2.2690923903638546e-301,2.268092790213914e-301,2.267093190063974e-301,2.2660935899140346e-301,2.2650939897640942e-301,2.2640943896141546e-301,2.2630947894642142e-301,2.2620951893142743e-301,2.2610955891643347e-301,2.2600959890143943e-301,2.2590963888644543e-301,2.2580967887145143e-301,2.2570971885645743e-301,2.256097588414634e-301,2.255097988264694e-301,2.2540983881147544e-301,2.253098787964814e-301,2.252099187814874e-301,2.251099587664934e-301,2.250099987514994e-301,2.2491003873650544e-301,2.248100787215114e-301,2.2471011870651744e-301,2.246101586915234e-301,2.245101986765294e-301,2.244102386615354e-301,2.2431027864654137e-301,2.242103186315474e-301,2.2411035861655337e-301,2.2401039860155937e-301,2.2391043858656537e-301,2.2381047857157137e-301,2.237105185565774e-301,2.2361055854158337e-301,2.2351059852658938e-301,2.2341063851159538e-301,2.2331067849660138e-301,2.232107184816074e-301,2.231107584666134e-301,2.2301079845161934e-301,2.2291083843662534e-301,2.2281087842163134e-301,2.2271091840663734e-301,2.2261095839164335e-301,2.225109983766493e-301,2.2241103836165535e-301,2.2231107834666135e-301,2.2221111833166735e-301,2.2211115831667335e-301,2.220111983016793e-301,2.2191123828668535e-301,2.2181127827169136e-301,2.217113182566973e-301,2.216113582417033e-301,2.2151139822670928e-301,2.214114382117153e-301,2.2131147819672128e-301,2.2121151818172732e-301,2.2111155816673332e-301,2.210115981517393e-301,2.2091163813674533e-301,2.208116781217513e-301,2.2071171810675733e-301,2.2061175809176333e-301,2.205117980767693e-301,2.204118380617753e-301,2.203118780467813e-301,2.202119180317873e-301,2.2011195801679325e-301,2.200119980017993e-301,2.199120379868053e-301,2.1981207797181126e-301,2.197121179568173e-301,2.1961215794182326e-301,2.195121979268293e-301,2.194122379118353e-301,2.1931227789684126e-301,2.192123178818473e-301,2.1911235786685326e-301,2.1901239785185927e-301,2.1891243783686527e-301,2.1881247782187123e-301,2.1871251780687727e-301,2.1861255779188323e-301,2.1851259777688927e-301,2.1841263776189523e-301,2.1831267774690123e-301,2.1821271773190723e-301,2.1811275771691324e-301,2.1801279770191928e-301,2.1791283768692524e-301,2.1781287767193124e-301,2.1771291765693724e-301,2.1761295764194324e-301,2.1751299762694924e-301,2.174130376119552e-301,2.173130775969612e-301,2.172131175819672e-301,2.171131575669732e-301,2.170131975519792e-301,2.169132375369852e-301,2.168132775219912e-301,2.167133175069972e-301,2.166133574920032e-301,2.165133974770092e-301,2.164134374620152e-301,2.163134774470212e-301,2.1621351743202718e-301,2.1611355741703318e-301,2.1601359740203918e-301,2.1591363738704518e-301,2.1581367737205114e-301,2.157137173570572e-301,2.156137573420632e-301,2.155137973270692e-301,2.154138373120752e-301,2.153138772970812e-301,2.152139172820872e-301,2.151139572670932e-301,2.150139972520992e-301,2.1491403723710515e-301,2.1481407722211115e-301,2.1471411720711715e-301,2.146141571921231e-301,2.1451419717712915e-301,2.1441423716213516e-301,2.1431427714714116e-301,2.1421431713214716e-301,2.141143571171531e-301,2.1401439710215916e-301,2.1391443708716512e-301,2.1381447707217116e-301,2.1371451705717716e-301,2.1361455704218312e-301,2.1351459702718913e-301,2.1341463701219513e-301,2.1331467699720113e-301,2.1321471698220713e-301,2.131147569672131e-301,2.1301479695221913e-301,2.129148369372251e-301,2.1281487692223113e-301,2.127149169072371e-301,2.126149568922431e-301,2.1251499687724914e-301,2.124150368622551e-301,2.1231507684726114e-301,2.122151168322671e-301,2.121151568172731e-301,2.120151968022791e-301,2.1191523678728506e-301,2.118152767722911e-301,2.1171531675729706e-301,2.1161535674230307e-301,2.1151539672730907e-301,2.1141543671231507e-301,2.113154766973211e-301,2.1121551668232707e-301,2.1111555666733307e-301,2.1101559665233907e-301,2.1091563663734507e-301,2.1081567662235108e-301,2.1071571660735704e-301,2.1061575659236308e-301,2.1051579657736904e-301,2.1041583656237504e-301,2.1031587654738104e-301,2.1021591653238704e-301,2.101159565173931e-301,2.1001599650239904e-301,2.0991603648740505e-301,2.0981607647241105e-301,2.0971611645741705e-301,2.0961615644242305e-301,2.0951619642742905e-301,2.09416236412435e-301,2.09316276397441e-301,2.09216316382447e-301,2.09116356367453e-301,2.09016396352459e-301,2.08916436337465e-301,2.08816476322471e-301,2.08716516307477e-301,2.08616556292483e-301,2.0851659627748902e-301,2.08416636262495e-301,2.0831667624750102e-301,2.0821671623250702e-301,2.08116756217513e-301,2.08016796202519e-301,2.07916836187525e-301,2.07816876172531e-301,2.07716916157537e-301,2.07616956142543e-301,2.07516996127549e-301,2.0741703611255495e-301,2.07317076097561e-301,2.0721711608256695e-301,2.07117156067573e-301,2.07017196052579e-301,2.0691723603758496e-301,2.06817276022591e-301,2.0671731600759696e-301,2.0661735599260296e-301,2.0651739597760896e-301,2.0641743596261492e-301,2.0631747594762097e-301,2.0621751593262693e-301,2.0611755591763297e-301,2.0601759590263893e-301,2.0591763588764497e-301,2.0581767587265097e-301,2.0571771585765693e-301,2.0561775584266297e-301,2.0551779582766893e-301,2.0541783581267493e-301,2.0531787579768094e-301,2.052179157826869e-301,2.0511795576769294e-301,2.050179957526989e-301,2.0491803573770494e-301,2.048180757227109e-301,2.047181157077169e-301,2.0461815569272294e-301,2.045181956777289e-301,2.0441823566273495e-301,2.043182756477409e-301,2.042183156327469e-301,2.041183556177529e-301,2.040183956027589e-301,2.039184355877649e-301,2.0381847557277087e-301,2.0371851555777687e-301,2.0361855554278287e-301,2.0351859552778888e-301,2.034186355127949e-301,2.0331867549780088e-301,2.0321871548280688e-301,2.031187554678129e-301,2.030187954528189e-301,2.029188354378249e-301,2.028188754228309e-301,2.027189154078369e-301,2.0261895539284284e-301,2.0251899537784885e-301,2.0241903536285485e-301,2.0231907534786085e-301,2.0221911533286685e-301,2.0211915531787285e-301,2.0201919530287885e-301,2.0191923528788485e-301,2.0181927527289085e-301,2.017193152578968e-301,2.0161935524290286e-301,2.0151939522790886e-301,2.0141943521291486e-301,2.0131947519792086e-301,2.012195151829268e-301,2.0111955516793282e-301,2.0101959515293882e-301,2.0091963513794482e-301,2.0081967512295083e-301,2.0071971510795683e-301,2.0061975509296283e-301,2.005197950779688e-301,2.0041983506297483e-301,2.0031987504798083e-301,2.0021991503298683e-301,2.0011995501799283e-301,2.000199950029988e-301,1.999200349880048e-301,1.998200749730108e-301,1.997201149580168e-301,1.996201549430228e-301,1.9952019492802876e-301,1.994202349130348e-301,1.9932027489804076e-301,1.992203148830468e-301,1.991203548680528e-301,1.9902039485305876e-301,1.989204348380648e-301,1.9882047482307077e-301,1.987205148080768e-301,1.9862055479308277e-301,1.9852059477808877e-301,1.9842063476309477e-301,1.9832067474810073e-301,1.9822071473310677e-301,1.9812075471811273e-301,1.9802079470311874e-301,1.9792083468812478e-301,1.9782087467313074e-301,1.977209146581368e-301,1.9762095464314274e-301,1.9752099462814874e-301,1.9742103461315474e-301,1.9732107459816074e-301,1.9722111458316675e-301,1.9712115456817275e-301,1.970211945531787e-301,1.969212345381847e-301,1.968212745231907e-301,1.9672131450819675e-301,1.966213544932027e-301,1.9652139447820875e-301,1.964214344632147e-301,1.963214744482207e-301,1.962215144332267e-301,1.961215544182327e-301,1.960215944032387e-301,1.959216343882447e-301,1.9582167437325072e-301,1.957217143582567e-301,1.956217543432627e-301,1.9552179432826872e-301,1.954218343132747e-301,1.953218742982807e-301,1.952219142832867e-301,1.951219542682927e-301,1.950219942532987e-301,1.949220342383047e-301,1.948220742233107e-301,1.947221142083167e-301,1.946221541933227e-301,1.945221941783287e-301,1.9442223416333466e-301,1.9432227414834066e-301,1.9422231413334666e-301,1.9412235411835266e-301,1.9402239410335866e-301,1.9392243408836466e-301,1.9382247407337062e-301,1.9372251405837666e-301,1.9362255404338267e-301,1.9352259402838867e-301,1.9342263401339467e-301,1.9332267399840063e-301,1.9322271398340667e-301,1.9312275396841263e-301,1.9302279395341863e-301,1.9292283393842463e-301,1.928228739234306e-301,1.9272291390843663e-301,1.926229538934426e-301,1.9252299387844864e-301,1.9242303386345464e-301,1.9232307384846064e-301,1.9222311383346664e-301,1.921231538184726e-301,1.9202319380347864e-301,1.919232337884846e-301,1.918232737734906e-301,1.917233137584966e-301,1.916233537435026e-301,1.915233937285086e-301,1.9142343371351457e-301,1.913234736985206e-301,1.912235136835266e-301,1.9112355366853257e-301,1.910235936535386e-301,1.9092363363854457e-301,1.908236736235506e-301,1.9072371360855658e-301,1.9062375359356258e-301,1.9052379357856858e-301,1.904238335635746e-301,1.903238735485806e-301,1.9022391353358654e-301,1.9012395351859254e-301,1.9002399350359854e-301,1.8992403348860454e-301,1.898240734736106e-301,1.8972411345861655e-301,1.8962415344362255e-301,1.8952419342862855e-301,1.8942423341363455e-301,1.893242733986406e-301,1.8922431338364655e-301,1.8912435336865255e-301,1.8902439335365856e-301,1.889244333386645e-301,1.888244733236705e-301,1.887245133086765e-301,1.886245532936825e-301,1.885245932786885e-301,1.8842463326369452e-301,1.8832467324870052e-301,1.8822471323370652e-301,1.8812475321871253e-301,1.8802479320371853e-301,1.8792483318872453e-301,1.8782487317373053e-301,1.8772491315873653e-301,1.876249531437425e-301,1.875249931287485e-301,1.874250331137545e-301,1.873250730987605e-301,1.872251130837665e-301,1.871251530687725e-301,1.870251930537785e-301,1.869252330387845e-301,1.868252730237905e-301,1.867253130087965e-301,1.8662535299380248e-301,1.8652539297880848e-301,1.8642543296381444e-301,1.8632547294882049e-301,1.8622551293382649e-301,1.8612555291883249e-301,1.8602559290383847e-301,1.8592563288884445e-301,1.8582567287385047e-301,1.8572571285885643e-301,1.8562575284386247e-301,1.8552579282886847e-301,1.8542583281387443e-301,1.8532587279888046e-301,1.8522591278388644e-301,1.8512595276889246e-301,1.8502599275389846e-301,1.8492603273890442e-301,1.8482607272391046e-301,1.8472611270891642e-301,1.8462615269392244e-301,1.8452619267892842e-301,1.844262326639344e-301,1.8432627264894045e-301,1.842263126339464e-301,1.8412635261895245e-301,1.840263926039584e-301,1.8392643258896441e-301,1.8382647257397043e-301,1.837265125589764e-301,1.8362655254398244e-301,1.835265925289884e-301,1.834266325139944e-301,1.833266724990004e-301,1.832267124840064e-301,1.8312675246901242e-301,1.8302679245401838e-301,1.8292683243902442e-301,1.8282687242403038e-301,1.8272691240903638e-301,1.826269523940424e-301,1.8252699237904839e-301,1.824270323640544e-301,1.8232707234906037e-301,1.8222711233406637e-301,1.8212715231907237e-301,1.8202719230407837e-301,1.819272322890844e-301,1.8182727227409035e-301,1.8172731225909636e-301,1.8162735224410236e-301,1.8152739222910836e-301,1.8142743221411436e-301,1.8132747219912036e-301,1.8122751218412636e-301,1.8112755216913234e-301,1.8102759215413834e-301,1.8092763213914434e-301,1.8082767212415035e-301,1.8072771210915635e-301,1.8062775209416235e-301,1.8052779207916835e-301,1.8042783206417433e-301,1.8032787204918033e-301,1.802279120341863e-301,1.8012795201919233e-301,1.8002799200419833e-301,1.7992803198920434e-301,1.7982807197421032e-301,1.797281119592163e-301,1.7962815194422232e-301,1.7952819192922832e-301,1.7942823191423432e-301,1.7932827189924032e-301,1.7922831188424628e-301,1.791283518692523e-301,1.7902839185425828e-301,1.789284318392643e-301,1.788284718242703e-301,1.7872851180927627e-301,1.7862855179428231e-301,1.7852859177928827e-301,1.784286317642943e-301,1.783286717493003e-301,1.782287117343063e-301,1.781287517193123e-301,1.7802879170431826e-301,1.779288316893243e-301,1.7782887167433026e-301,1.7772891165933628e-301,1.7762895164434228e-301,1.7752899162934824e-301,1.7742903161435428e-301,1.7732907159936024e-301,1.7722911158436627e-301,1.7712915156937227e-301,1.7702919155437825e-301,1.7692923153938427e-301,1.7682927152439023e-301,1.7672931150939627e-301,1.7662935149440223e-301,1.7652939147940823e-301,1.7642943146441425e-301,1.7632947144942021e-301,1.7622951143442626e-301,1.7612955141943222e-301,1.7602959140443822e-301,1.7592963138944422e-301,1.7582967137445022e-301,1.7572971135945624e-301,1.756297513444622e-301,1.755297913294682e-301,1.754298313144742e-301,1.753298712994802e-301,1.7522991128448623e-301,1.751299512694922e-301,1.750299912544982e-301,1.749300312395042e-301,1.748300712245102e-301,1.747301112095162e-301,1.746301511945222e-301,1.745301911795282e-301,1.744302311645342e-301,1.7433027114954018e-301,1.7423031113454618e-301,1.7413035111955218e-301,1.7403039110455818e-301,1.7393043108956418e-301,1.7383047107457018e-301,1.7373051105957618e-301,1.7363055104458216e-301,1.7353059102958817e-301,1.7343063101459417e-301,1.7333067099960017e-301,1.7323071098460617e-301,1.7313075096961217e-301,1.7303079095461815e-301,1.7293083093962415e-301,1.7283087092463015e-301,1.7273091090963615e-301,1.7263095089464216e-301,1.7253099087964816e-301,1.7243103086465416e-301,1.7233107084966012e-301,1.7223111083466614e-301,1.7213115081967214e-301,1.7203119080467814e-301,1.7193123078968414e-301,1.718312707746901e-301,1.7173131075969613e-301,1.716313507447021e-301,1.7153139072970813e-301,1.7143143071471413e-301,1.7133147069972009e-301,1.7123151068472613e-301,1.711315506697321e-301,1.7103159065473811e-301,1.7093163063974411e-301,1.7083167062475007e-301,1.7073171060975612e-301,1.7063175059476208e-301,1.7053179057976812e-301,1.7043183056477408e-301,1.7033187054978008e-301,1.702319105347861e-301,1.7013195051979206e-301,1.700319905047981e-301,1.6993203048980406e-301,1.6983207047481007e-301,1.6973211045981609e-301,1.6963215044482207e-301,1.695321904298281e-301,1.6943223041483405e-301,1.6933227039984005e-301,1.6923231038484605e-301,1.6913235036985205e-301,1.6903239035485808e-301,1.6893243033986406e-301,1.6883247032487008e-301,1.6873251030987604e-301,1.6863255029488204e-301,1.6853259027988808e-301,1.6843263026489404e-301,1.6833267024990006e-301,1.6823271023490604e-301,1.6813275021991202e-301,1.6803279020491803e-301,1.6793283018992403e-301,1.6783287017493007e-301,1.6773291015993603e-301,1.6763295014494203e-301,1.6753299012994801e-301,1.6743303011495401e-301,1.6733307009996001e-301,1.6723311008496602e-301,1.6713315006997202e-301,1.6703319005497802e-301,1.6693323003998402e-301,1.6683327002499e-301,1.66733310009996e-301,1.66633349995002e-301,1.66533389980008e-301,1.66433429965014e-301,1.6633346995002e-301,1.66233509935026e-301,1.6613354992003197e-301,1.6603358990503799e-301,1.65933629890044e-301,1.6583366987505e-301,1.65733709860056e-301,1.6563374984506195e-301,1.6553378983006797e-301,1.6543382981507398e-301,1.6533386980007998e-301,1.6523390978508598e-301,1.6513394977009194e-301,1.6503398975509798e-301,1.6493402974010394e-301,1.6483406972510996e-301,1.6473410971011596e-301,1.6463414969512192e-301,1.6453418968012797e-301,1.6443422966513393e-301,1.6433426965013997e-301,1.6423430963514595e-301,1.6413434962015195e-301,1.6403438960515795e-301,1.6393442959016391e-301,1.6383446957516995e-301,1.6373450956017591e-301,1.6363454954518196e-301,1.6353458953018794e-301,1.6343462951519392e-301,1.6333466950019994e-301,1.632347094852059e-301,1.6313474947021194e-301,1.6303478945521794e-301,1.629348294402239e-301,1.6283486942522992e-301,1.627349094102359e-301,1.6263494939524193e-301,1.6253498938024789e-301,1.6243502936525389e-301,1.6233506935025993e-301,1.622351093352659e-301,1.6213514932027191e-301,1.6203518930527787e-301,1.6193522929028387e-301,1.6183526927528987e-301,1.6173530926029588e-301,1.6163534924530192e-301,1.6153538923030788e-301,1.6143542921531388e-301,1.6133546920031986e-301,1.6123550918532586e-301,1.611355491703319e-301,1.6103558915533786e-301,1.6093562914034386e-301,1.6083566912534987e-301,1.6073570911035587e-301,1.6063574909536185e-301,1.6053578908036785e-301,1.6043582906537385e-301,1.6033586905037985e-301,1.6023590903538585e-301,1.6013594902039185e-301,1.6003598900539783e-301,1.5993602899040388e-301,1.5983606897540984e-301,1.5973610896041584e-301,1.5963614894542184e-301,1.5953618893042784e-301,1.5943622891543384e-301,1.5933626890043982e-301,1.5923630888544582e-301,1.5913634887045182e-301,1.5903638885545783e-301,1.5893642884046383e-301,1.5883646882546983e-301,1.587365088104758e-301,1.586365487954818e-301,1.5853658878048781e-301,1.5843662876549381e-301,1.5833666875049981e-301,1.5823670873550577e-301,1.5813674872051182e-301,1.580367887055178e-301,1.579368286905238e-301,1.578368686755298e-301,1.5773690866053576e-301,1.576369486455418e-301,1.5753698863054776e-301,1.5743702861555378e-301,1.5733706860055978e-301,1.5723710858556576e-301,1.5713714857057179e-301,1.5703718855557775e-301,1.5693722854058379e-301,1.568372685255898e-301,1.5673730851059575e-301,1.5663734849560177e-301,1.5653738848060773e-301,1.5643742846561377e-301,1.5633746845061973e-301,1.5623750843562574e-301,1.5613754842063178e-301,1.5603758840563774e-301,1.5593762839064376e-301,1.5583766837564972e-301,1.5573770836065572e-301,1.5563774834566176e-301,1.5553778833066772e-301,1.5543782831567375e-301,1.5533786830067973e-301,1.5523790828568575e-301,1.551379482706917e-301,1.550379882556977e-301,1.5493802824070375e-301,1.5483806822570971e-301,1.5473810821071573e-301,1.5463814819572171e-301,1.545381881807277e-301,1.5443822816573374e-301,1.543382681507397e-301,1.5423830813574574e-301,1.541383481207517e-301,1.540383881057577e-301,1.539384280907637e-301,1.5383846807576968e-301,1.5373850806077572e-301,1.5363854804578168e-301,1.5353858803078769e-301,1.5343862801579369e-301,1.5333866800079969e-301,1.5323870798580567e-301,1.5313874797081167e-301,1.5303878795581767e-301,1.5293882794082367e-301,1.5283886792582967e-301,1.5273890791083567e-301,1.5263894789584168e-301,1.5253898788084766e-301,1.5243902786585366e-301,1.5233906785085964e-301,1.5223910783586566e-301,1.5213914782087166e-301,1.5203918780587766e-301,1.5193922779088364e-301,1.5183926777588964e-301,1.5173930776089563e-301,1.5163934774590165e-301,1.5153938773090765e-301,1.5143942771591365e-301,1.5133946770091965e-301,1.5123950768592563e-301,1.5113954767093161e-301,1.5103958765593763e-301,1.5093962764094363e-301,1.5083966762594964e-301,1.5073970761095562e-301,1.5063974759596162e-301,1.5053978758096762e-301,1.5043982756597362e-301,1.5033986755097962e-301,1.502399075359856e-301,1.501399475209916e-301,1.500399875059976e-301,1.499400274910036e-301,1.498400674760096e-301,1.4974010746101559e-301,1.4964014744602159e-301,1.495401874310276e-301,1.494402274160336e-301,1.493402674010396e-301,1.492403073860456e-301,1.4914034737105157e-301,1.4904038735605758e-301,1.4894042734106358e-301,1.4884046732606958e-301,1.4874050731107558e-301,1.4864054729608156e-301,1.4854058728108758e-301,1.4844062726609356e-301,1.4834066725109956e-301,1.4824070723610556e-301,1.4814074722111154e-301,1.4804078720611755e-301,1.4794082719112357e-301,1.4784086717612955e-301,1.4774090716113555e-301,1.4764094714614153e-301,1.4754098713114753e-301,1.4744102711615353e-301,1.4734106710115955e-301,1.4724110708616556e-301,1.4714114707117154e-301,1.4704118705617752e-301,1.4694122704118352e-301,1.4684126702618952e-301,1.4674130701119554e-301,1.4664134699620154e-301,1.4654138698120752e-301,1.4644142696621352e-301,1.463414669512195e-301,1.462415069362255e-301,1.4614154692123153e-301,1.460415869062375e-301,1.459416268912435e-301,1.4584166687624951e-301,1.457417068612555e-301,1.456417468462615e-301,1.455417868312675e-301,1.454418268162735e-301,1.453418668012795e-301,1.452419067862855e-301,1.451419467712915e-301,1.4504198675629748e-301,1.4494202674130348e-301,1.4484206672630948e-301,1.4474210671131548e-301,1.4464214669632148e-301,1.4454218668132749e-301,1.4444222666633347e-301,1.4434226665133947e-301,1.4424230663634547e-301,1.4414234662135147e-301,1.4404238660635747e-301,1.4394242659136345e-301,1.4384246657636945e-301,1.4374250656137545e-301,1.4364254654638146e-301,1.4354258653138746e-301,1.4344262651639344e-301,1.4334266650139944e-301,1.4324270648640544e-301,1.4314274647141144e-301,1.4304278645641744e-301,1.4294282644142342e-301,1.4284286642642942e-301,1.4274290641143542e-301,1.4264294639644143e-301,1.4254298638144743e-301,1.4244302636645343e-301,1.423430663514594e-301,1.422431063364654e-301,1.4214314632147141e-301,1.4204318630647741e-301,1.4194322629148341e-301,1.4184326627648941e-301,1.4174330626149542e-301,1.416433462465014e-301,1.415433862315074e-301,1.414434262165134e-301,1.4134346620151938e-301,1.412435061865254e-301,1.411435461715314e-301,1.4104358615653738e-301,1.4094362614154338e-301,1.4084366612654937e-301,1.4074370611155537e-301,1.4064374609656139e-301,1.4054378608156739e-301,1.404438260665734e-301,1.4034386605157937e-301,1.4024390603658535e-301,1.4014394602159135e-301,1.4004398600659737e-301,1.3994402599160338e-301,1.3984406597660938e-301,1.3974410596161536e-301,1.3964414594662136e-301,1.3954418593162734e-301,1.3944422591663334e-301,1.3934426590163936e-301,1.3924430588664534e-301,1.3914434587165134e-301,1.3904438585665735e-301,1.3894442584166333e-301,1.3884446582666933e-301,1.3874450581167533e-301,1.3864454579668133e-301,1.3854458578168733e-301,1.3844462576669333e-301,1.3834466575169933e-301,1.3824470573670531e-301,1.3814474572171132e-301,1.3804478570671732e-301,1.3794482569172332e-301,1.3784486567672932e-301,1.3774490566173532e-301,1.376449456467413e-301,1.375449856317473e-301,1.374450256167533e-301,1.373450656017593e-301,1.372451055867653e-301,1.3714514557177129e-301,1.3704518555677729e-301,1.3694522554178329e-301,1.368452655267893e-301,1.367453055117953e-301,1.3664534549680127e-301,1.3654538548180727e-301,1.3644542546681327e-301,1.363454654518193e-301,1.3624550543682528e-301,1.3614554542183126e-301,1.3604558540683726e-301,1.3594562539184326e-301,1.3584566537684926e-301,1.3574570536185528e-301,1.3564574534686126e-301,1.3554578533186724e-301,1.3544582531687324e-301,1.3534586530187925e-301,1.3524590528688525e-301,1.3514594527189127e-301,1.3504598525689725e-301,1.3494602524190325e-301,1.3484606522690923e-301,1.3474610521191523e-301,1.3464614519692123e-301,1.3454618518192721e-301,1.3444622516693324e-301,1.3434626515193924e-301,1.3424630513694524e-301,1.3414634512195122e-301,1.340463851069572e-301,1.339464250919632e-301,1.3384646507696922e-301,1.3374650506197522e-301,1.3364654504698123e-301,1.335465850319872e-301,1.3344662501699319e-301,1.3334666500199919e-301,1.332467049870052e-301,1.3314674497201121e-301,1.3304678495701721e-301,1.329468249420232e-301,1.328468649270292e-301,1.3274690491203517e-301,1.326469448970412e-301,1.325469848820472e-301,1.3244702486705318e-301,1.3234706485205918e-301,1.3224710483706518e-301,1.3214714482207118e-301,1.3204718480707718e-301,1.3194722479208316e-301,1.3184726477708916e-301,1.3174730476209517e-301,1.3164734474710117e-301,1.3154738473210717e-301,1.3144742471711315e-301,1.3134746470211915e-301,1.3124750468712515e-301,1.3114754467213115e-301,1.3104758465713715e-301,1.3094762464214315e-301,1.3084766462714916e-301,1.3074770461215514e-301,1.3064774459716114e-301,1.3054778458216714e-301,1.3044782456717314e-301,1.3034786455217912e-301,1.3024790453718512e-301,1.3014794452219112e-301,1.3004798450719712e-301,1.2994802449220313e-301,1.298480644772091e-301,1.297481044622151e-301,1.296481444472211e-301,1.2954818443222713e-301,1.2944822441723311e-301,1.293482644022391e-301,1.292483043872451e-301,1.291483443722511e-301,1.290483843572571e-301,1.2894842434226312e-301,1.288484643272691e-301,1.287485043122751e-301,1.2864854429728108e-301,1.2854858428228708e-301,1.2844862426729308e-301,1.283486642522991e-301,1.2824870423730508e-301,1.2814874422231109e-301,1.2804878420731707e-301,1.2794882419232307e-301,1.2784886417732907e-301,1.2774890416233507e-301,1.2764894414734107e-301,1.2754898413234707e-301,1.2744902411735307e-301,1.2734906410235905e-301,1.2724910408736503e-301,1.2714914407237106e-301,1.2704918405737706e-301,1.2694922404238306e-301,1.2684926402738906e-301,1.2674930401239504e-301,1.2664934399740104e-301,1.2654938398240704e-301,1.2644942396741304e-301,1.2634946395241905e-301,1.2624950393742505e-301,1.2614954392243103e-301,1.2604958390743703e-301,1.2594962389244303e-301,1.2584966387744903e-301,1.2574970386245503e-301,1.2564974384746101e-301,1.2554978383246701e-301,1.2544982381747302e-301,1.2534986380247902e-301,1.2524990378748502e-301,1.25149943772491e-301,1.25049983757497e-301,1.24950023742503e-301,1.24850063727509e-301,1.24750103712515e-301,1.2465014369752098e-301,1.2455018368252698e-301,1.2445022366753299e-301,1.2435026365253899e-301,1.2425030363754499e-301,1.2415034362255097e-301,1.24050383607557e-301,1.2395042359256297e-301,1.2385046357756897e-301,1.2375050356257497e-301,1.2365054354758098e-301,1.2355058353258696e-301,1.2345062351759298e-301,1.2335066350259896e-301,1.2325070348760496e-301,1.2315074347261096e-301,1.2305078345761694e-301,1.2295082344262294e-301,1.2285086342762896e-301,1.2275090341263497e-301,1.2265094339764095e-301,1.2255098338264693e-301,1.2245102336765293e-301,1.2235106335265893e-301,1.2225110333766495e-301,1.2215114332267095e-301,1.2205118330767693e-301,1.2195122329268293e-301,1.2185126327768891e-301,1.2175130326269492e-301,1.2165134324770094e-301,1.2155138323270694e-301,1.2145142321771292e-301,1.2135146320271892e-301,1.212515031877249e-301,1.211515431727309e-301,1.2105158315773692e-301,1.209516231427429e-301,1.208516631277489e-301,1.207517031127549e-301,1.206517430977609e-301,1.2055178308276689e-301,1.2045182306777287e-301,1.203518630527789e-301,1.202519030377849e-301,1.201519430227909e-301,1.200519830077969e-301,1.1995202299280288e-301,1.1985206297780888e-301,1.1975210296281488e-301,1.1965214294782088e-301,1.1955218293282688e-301,1.1945222291783288e-301,1.1935226290283886e-301,1.1925230288784486e-301,1.1915234287285086e-301,1.1905238285785687e-301,1.1895242284286287e-301,1.1885246282786885e-301,1.1875250281287485e-301,1.1865254279788085e-301,1.1855258278288685e-301,1.1845262276789285e-301,1.1835266275289883e-301,1.1825270273790483e-301,1.1815274272291084e-301,1.1805278270791684e-301,1.1795282269292284e-301,1.1785286267792882e-301,1.1775290266293482e-301,1.1765294264794082e-301,1.1755298263294682e-301,1.1745302261795282e-301,1.1735306260295882e-301,1.1725310258796483e-301,1.171531425729708e-301,1.170531825579768e-301,1.169532225429828e-301,1.168532625279888e-301,1.1675330251299481e-301,1.1665334249800081e-301,1.1655338248300681e-301,1.164534224680128e-301,1.163534624530188e-301,1.1625350243802478e-301,1.1615354242303078e-301,1.160535824080368e-301,1.159536223930428e-301,1.1585366237804878e-301,1.1575370236305476e-301,1.1565374234806076e-301,1.1555378233306676e-301,1.1545382231807279e-301,1.1535386230307879e-301,1.1525390228808477e-301,1.1515394227309077e-301,1.1505398225809675e-301,1.1495402224310275e-301,1.1485406222810877e-301,1.1475410221311477e-301,1.1465414219812075e-301,1.1455418218312676e-301,1.1445422216813276e-301,1.1435426215313874e-301,1.1425430213814476e-301,1.1415434212315074e-301,1.1405438210815674e-301,1.1395442209316274e-301,1.1385446207816874e-301,1.1375450206317472e-301,1.1365454204818072e-301,1.1355458203318673e-301,1.1345462201819273e-301,1.1335466200319873e-301,1.1325470198820473e-301,1.131547419732107e-301,1.1305478195821671e-301,1.1295482194322271e-301,1.1285486192822871e-301,1.1275490191323472e-301,1.126549418982407e-301,1.125549818832467e-301,1.124550218682527e-301,1.123550618532587e-301,1.122551018382647e-301,1.121551418232707e-301,1.1205518180827668e-301,1.1195522179328268e-301,1.118552617782887e-301,1.1175530176329469e-301,1.1165534174830069e-301,1.1155538173330667e-301,1.1145542171831267e-301,1.1135546170331867e-301,1.1125550168832467e-301,1.1115554167333067e-301,1.1105558165833667e-301,1.1095562164334265e-301,1.1085566162834866e-301,1.1075570161335466e-301,1.1065574159836066e-301,1.1055578158336666e-301,1.1045582156837266e-301,1.1035586155337864e-301,1.1025590153838464e-301,1.1015594152339064e-301,1.1005598150839664e-301,1.0995602149340265e-301,1.0985606147840865e-301,1.0975610146341465e-301,1.0965614144842063e-301,1.0955618143342663e-301,1.0945622141843261e-301,1.0935626140343863e-301,1.0925630138844463e-301,1.0915634137345063e-301,1.0905638135845662e-301,1.0895642134346262e-301,1.088564613284686e-301,1.0875650131347462e-301,1.0865654129848062e-301,1.0855658128348662e-301,1.084566212684926e-301,1.083566612534986e-301,1.0825670123850458e-301,1.081567412235106e-301,1.080567812085166e-301,1.0795682119352259e-301,1.0785686117852859e-301,1.077569011635346e-301,1.076569411485406e-301,1.075569811335466e-301,1.074570211185526e-301,1.0735706110355857e-301,1.0725710108856458e-301,1.0715714107357058e-301,1.0705718105857658e-301,1.0695722104358256e-301,1.0685726102858856e-301,1.0675730101359456e-301,1.0665734099860056e-301,1.0655738098360656e-301,1.0645742096861256e-301,1.0635746095361854e-301,1.0625750093862455e-301,1.0615754092363055e-301,1.0605758090863655e-301,1.0595762089364255e-301,1.0585766087864853e-301,1.0575770086365453e-301,1.0565774084866055e-301,1.0555778083366653e-301,1.0545782081867254e-301,1.0535786080367854e-301,1.0525790078868452e-301,1.0515794077369052e-301,1.0505798075869654e-301,1.0495802074370252e-301,1.0485806072870852e-301,1.047581007137145e-301,1.046581406987205e-301,1.045581806837265e-301,1.0445822066873253e-301,1.0435826065373853e-301,1.042583006387445e-301,1.0415834062375049e-301,1.040583806087565e-301,1.039584205937625e-301,1.0385846057876851e-301,1.037585005637745e-301,1.036585405487805e-301,1.0355858053378648e-301,1.0345862051879248e-301,1.0335866050379848e-301,1.032587004888045e-301,1.0315874047381048e-301,1.0305878045881648e-301,1.0295882044382248e-301,1.0285886042882846e-301,1.0275890041383446e-301,1.0265894039884047e-301,1.0255898038384647e-301,1.0245902036885247e-301,1.0235906035385847e-301,1.0225910033886447e-301,1.0215914032387045e-301,1.0205918030887643e-301,1.0195922029388245e-301,1.0185926027888846e-301,1.0175930026389446e-301,1.0165934024890044e-301,1.0155938023390644e-301,1.0145942021891242e-301,1.0135946020391844e-301,1.0125950018892444e-301,1.0115954017393042e-301,1.0105958015893642e-301,1.0095962014394242e-301,1.0085966012894843e-301,1.0075970011395443e-301,1.0065974009896043e-301,1.005597800839664e-301,1.004598200689724e-301,1.0035986005397841e-301,1.0025990003898441e-301,1.0015994002399041e-301,1.000599800089964e-301,9.99600199940024e-302,9.98600599790084e-302,9.97600999640144e-302,9.96601399490204e-302,9.95601799340264e-302,9.946021991903238e-302,9.936025990403838e-302,9.926029988904438e-302,9.916033987405038e-302,9.906037985905637e-302,9.896041984406239e-302,9.886045982906839e-302,9.876049981407437e-302,9.866053979908037e-302,9.856057978408637e-302,9.846061976909235e-302,9.836065975409837e-302,9.826069973910437e-302,9.816073972411036e-302,9.806077970911636e-302,9.796081969412234e-302,9.786085967912834e-302,9.776089966413436e-302,9.766093964914036e-302,9.756097963414636e-302,9.746101961915234e-302,9.736105960415832e-302,9.726109958916433e-302,9.716113957417033e-302,9.706117955917635e-302,9.696121954418233e-302,9.686125952918833e-302,9.676129951419433e-302,9.666133949920031e-302,9.656137948420631e-302,9.646141946921231e-302,9.636145945421832e-302,9.626149943922432e-302,9.616153942423032e-302,9.60615794092363e-302,9.59616193942423e-302,9.58616593792483e-302,9.57616993642543e-302,9.56617393492603e-302,9.55617793342663e-302,9.54618193192723e-302,9.536185930427829e-302,9.526189928928429e-302,9.516193927429029e-302,9.50619792592963e-302,9.49620192443023e-302,9.486205922930827e-302,9.476209921431427e-302,9.466213919932027e-302,9.456217918432628e-302,9.446221916933228e-302,9.436225915433826e-302,9.426229913934426e-302,9.416233912435026e-302,9.406237910935626e-302,9.396241909436226e-302,9.386245907936826e-302,9.376249906437424e-302,9.366253904938024e-302,9.356257903438625e-302,9.346261901939227e-302,9.336265900439825e-302,9.326269898940424e-302,9.316273897441023e-302,9.306277895941623e-302,9.296281894442223e-302,9.286285892942823e-302,9.276289891443422e-302,9.266293889944023e-302,9.256297888444623e-302,9.246301886945222e-302,9.236305885445822e-302,9.22630988394642e-302,9.216313882447021e-302,9.206317880947621e-302,9.196321879448221e-302,9.186325877948822e-302,9.17632987644942e-302,9.166333874950019e-302,9.156337873450621e-302,9.14634187195122e-302,9.13634587045182e-302,9.12634986895242e-302,9.116353867453018e-302,9.106357865953617e-302,9.09636186445422e-302,9.086365862954819e-302,9.076369861455419e-302,9.066373859956017e-302,9.056377858456617e-302,9.046381856957217e-302,9.036385855457818e-302,9.026389853958418e-302,9.016393852459016e-302,9.006397850959615e-302,8.996401849460216e-302,8.986405847960816e-302,8.976409846461417e-302,8.966413844962015e-302,8.956417843462615e-302,8.946421841963215e-302,8.936425840463814e-302,8.926429838964414e-302,8.916433837465015e-302,8.906437835965614e-302,8.896441834466214e-302,8.886445832966814e-302,8.876449831467413e-302,8.866453829968013e-302,8.856457828468613e-302,8.846461826969213e-302,8.836465825469812e-302,8.826469823970412e-302,8.816473822471013e-302,8.806477820971611e-302,8.79648181947221e-302,8.786485817972812e-302,8.776489816473411e-302,8.766493814974011e-302,8.756497813474609e-302,8.746501811975209e-302,8.736505810475809e-302,8.726509808976411e-302,8.716513807477011e-302,8.70651780597761e-302,8.696521804478208e-302,8.686525802978808e-302,8.676529801479408e-302,8.666533799980009e-302,8.656537798480609e-302,8.646541796981207e-302,8.636545795481808e-302,8.626549793982407e-302,8.616553792483007e-302,8.606557790983608e-302,8.596561789484206e-302,8.586565787984806e-302,8.576569786485406e-302,8.566573784986005e-302,8.556577783486605e-302,8.546581781987206e-302,8.536585780487805e-302,8.526589778988405e-302,8.516593777489005e-302,8.506597775989605e-302,8.496601774490203e-302,8.486605772990804e-302,8.476609771491404e-302,8.466613769992003e-302,8.456617768492604e-302,8.446621766993204e-302,8.436625765493802e-302,8.426629763994403e-302,8.416633762495003e-302,8.406637760995603e-302,8.396641759496202e-302,8.3866457579968e-302,8.3766497564974e-302,8.366653754998e-302,8.356657753498602e-302,8.346661751999202e-302,8.3366657504998e-302,8.326669749000399e-302,8.316673747500999e-302,8.306677746001599e-302,8.2966817445022e-302,8.286685743002798e-302,8.276689741503398e-302,8.266693740003999e-302,8.256697738504598e-302,8.246701737005198e-302,8.236705735505799e-302,8.226709734006397e-302,8.216713732506997e-302,8.206717731007597e-302,8.196721729508197e-302,8.186725728008796e-302,8.176729726509397e-302,8.166733725009997e-302,8.156737723510596e-302,8.146741722011196e-302,8.136745720511796e-302,8.126749719012394e-302,8.116753717512995e-302,8.106757716013595e-302,8.096761714514194e-302,8.086765713014795e-302,8.076769711515393e-302,8.066773710015993e-302,8.056777708516594e-302,8.046781707017194e-302,8.036785705517794e-302,8.026789704018392e-302,8.016793702518991e-302,8.006797701019591e-302,7.996801699520193e-302,7.986805698020793e-302,7.976809696521393e-302,7.966813695021991e-302,7.956817693522591e-302,7.94682169202319e-302,7.936825690523792e-302,7.926829689024391e-302,7.916833687524989e-302,7.90683768602559e-302,7.89684168452619e-302,7.886845683026789e-302,7.876849681527389e-302,7.866853680027989e-302,7.856857678528589e-302,7.846861677029188e-302,7.836865675529788e-302,7.826869674030388e-302,7.816873672530987e-302,7.806877671031588e-302,7.796881669532188e-302,7.786885668032787e-302,7.776889666533387e-302,7.766893665033987e-302,7.756897663534585e-302,7.746901662035186e-302,7.736905660535786e-302,7.726909659036387e-302,7.716913657536986e-302,7.706917656037584e-302,7.696921654538184e-302,7.686925653038785e-302,7.676929651539385e-302,7.666933650039985e-302,7.656937648540583e-302,7.646941647041183e-302,7.636945645541784e-302,7.626949644042384e-302,7.616953642542983e-302,7.606957641043583e-302,7.596961639544183e-302,7.586965638044782e-302,7.576969636545382e-302,7.566973635045981e-302,7.556977633546581e-302,7.546981632047182e-302,7.536985630547781e-302,7.526989629048381e-302,7.516993627548981e-302,7.50699762604958e-302,7.49700162455018e-302,7.48700562305078e-302,7.477009621551379e-302,7.467013620051979e-302,7.45701761855258e-302,7.447021617053179e-302,7.437025615553778e-302,7.427029614054379e-302,7.417033612554979e-302,7.407037611055577e-302,7.397041609556178e-302,7.387045608056777e-302,7.377049606557377e-302,7.367053605057978e-302,7.357057603558577e-302,7.347061602059177e-302,7.337065600559777e-302,7.327069599060376e-302,7.317073597560976e-302,7.307077596061575e-302,7.297081594562175e-302,7.287085593062775e-302,7.277089591563374e-302,7.267093590063975e-302,7.257097588564575e-302,7.247101587065175e-302,7.237105585565774e-302,7.227109584066373e-302,7.217113582566974e-302,7.207117581067573e-302,7.197121579568172e-302,7.187125578068772e-302,7.177129576569373e-302,7.167133575069972e-302,7.157137573570572e-302,7.147141572071172e-302,7.137145570571771e-302,7.127149569072371e-302,7.117153567572971e-302,7.10715756607357e-302,7.097161564574169e-302,7.087165563074771e-302,7.077169561575371e-302,7.067173560075969e-302,7.05717755857657e-302,7.047181557077169e-302,7.037185555577769e-302,7.027189554078369e-302,7.017193552578968e-302,7.007197551079568e-302,6.997201549580169e-302,6.987205548080768e-302,6.977209546581368e-302,6.967213545081967e-302,6.957217543582567e-302,6.947221542083167e-302,6.937225540583767e-302,6.927229539084366e-302,6.917233537584966e-302,6.907237536085567e-302,6.897241534586166e-302,6.887245533086765e-302,6.877249531587366e-302,6.867253530087965e-302,6.857257528588564e-302,6.847261527089165e-302,6.837265525589764e-302,6.827269524090363e-302,6.817273522590965e-302,6.807277521091564e-302,6.797281519592163e-302,6.787285518092764e-302,6.777289516593363e-302,6.767293515093963e-302,6.757297513594562e-302,6.747301512095162e-302,6.737305510595762e-302,6.72730950909636e-302,6.717313507596962e-302,6.707317506097561e-302,6.697321504598161e-302,6.687325503098761e-302,6.67732950159936e-302,6.66733350009996e-302,6.65733749860056e-302,6.647341497101159e-302,6.63734549560176e-302,6.627349494102359e-302,6.617353492602959e-302,6.607357491103559e-302,6.597361489604159e-302,6.587365488104758e-302,6.577369486605357e-302,6.567373485105958e-302,6.557377483606557e-302,6.547381482107157e-302,6.537385480607758e-302,6.527389479108357e-302,6.517393477608956e-302,6.507397476109557e-302,6.497401474610156e-302,6.487405473110755e-302,6.477409471611356e-302,6.467413470111955e-302,6.457417468612554e-302,6.447421467113156e-302,6.437425465613755e-302,6.427429464114355e-302,6.417433462614954e-302,6.407437461115554e-302,6.397441459616154e-302,6.387445458116753e-302,6.377449456617353e-302,6.367453455117952e-302,6.357457453618553e-302,6.347461452119153e-302,6.337465450619752e-302,6.327469449120353e-302,6.317473447620952e-302,6.307477446121551e-302,6.297481444622152e-302,6.28748544312275e-302,6.27748944162335e-302,6.267493440123951e-302,6.257497438624551e-302,6.24750143712515e-302,6.237505435625749e-302,6.22750943412635e-302,6.217513432626949e-302,6.207517431127548e-302,6.197521429628149e-302,6.187525428128748e-302,6.177529426629348e-302,6.167533425129949e-302,6.157537423630548e-302,6.147541422131147e-302,6.137545420631748e-302,6.127549419132347e-302,6.117553417632946e-302,6.107557416133547e-302,6.097561414634146e-302,6.087565413134747e-302,6.077569411635346e-302,6.067573410135946e-302,6.057577408636546e-302,6.047581407137145e-302,6.037585405637745e-302,6.027589404138344e-302,6.017593402638944e-302,6.007597401139544e-302,5.997601399640144e-302,5.987605398140745e-302,5.977609396641344e-302,5.967613395141943e-302,5.957617393642544e-302,5.947621392143143e-302,5.937625390643742e-302,5.927629389144343e-302,5.917633387644942e-302,5.907637386145542e-302,5.897641384646142e-302,5.887645383146742e-302,5.877649381647341e-302,5.867653380147941e-302,5.857657378648541e-302,5.84766137714914e-302,5.83766537564974e-302,5.82766937415034e-302,5.81767337265094e-302,5.807677371151539e-302,5.79768136965214e-302,5.787685368152739e-302,5.777689366653339e-302,5.767693365153938e-302,5.757697363654538e-302,5.747701362155138e-302,5.737705360655737e-302,5.727709359156338e-302,5.717713357656938e-302,5.707717356157537e-302,5.697721354658137e-302,5.687725353158736e-302,5.677729351659336e-302,5.667733350159936e-302,5.657737348660535e-302,5.647741347161136e-302,5.637745345661736e-302,5.627749344162335e-302,5.617753342662936e-302,5.607757341163535e-302,5.597761339664134e-302,5.587765338164735e-302,5.577769336665334e-302,5.567773335165933e-302,5.557777333666533e-302,5.547781332167134e-302,5.537785330667733e-302,5.527789329168333e-302,5.517793327668933e-302,5.507797326169533e-302,5.497801324670132e-302,5.487805323170732e-302,5.477809321671331e-302,5.467813320171931e-302,5.457817318672532e-302,5.447821317173131e-302,5.437825315673731e-302,5.42782931417433e-302,5.41783331267493e-302,5.40783731117553e-302,5.397841309676129e-302,5.387845308176729e-302,5.37784930667733e-302,5.367853305177928e-302,5.357857303678529e-302,5.347861302179128e-302,5.337865300679729e-302,5.327869299180328e-302,5.317873297680927e-302,5.307877296181528e-302,5.297881294682127e-302,5.287885293182726e-302,5.277889291683328e-302,5.267893290183927e-302,5.257897288684526e-302,5.247901287185127e-302,5.237905285685726e-302,5.227909284186325e-302,5.217913282686925e-302,5.207917281187525e-302,5.197921279688124e-302,5.187925278188724e-302,5.177929276689325e-302,5.167933275189925e-302,5.157937273690524e-302,5.147941272191124e-302,5.137945270691723e-302,5.127949269192323e-302,5.117953267692923e-302,5.107957266193522e-302,5.097961264694122e-302,5.087965263194722e-302,5.077969261695322e-302,5.067973260195922e-302,5.057977258696521e-302,5.047981257197121e-302,5.037985255697722e-302,5.02798925419832e-302,5.01799325269892e-302,5.00799725119952e-302,4.998001249700121e-302,4.98800524820072e-302,4.97800924670132e-302,4.96801324520192e-302,4.958017243702519e-302,4.948021242203119e-302,4.938025240703719e-302,4.928029239204318e-302,4.918033237704918e-302,4.908037236205519e-302,4.898041234706118e-302,4.888045233206718e-302,4.878049231707317e-302,4.868053230207917e-302,4.858057228708516e-302,4.848061227209116e-302,4.838065225709716e-302,4.828069224210316e-302,4.818073222710916e-302,4.808077221211516e-302,4.798081219712115e-302,4.788085218212715e-302,4.778089216713315e-302,4.768093215213914e-302,4.758097213714514e-302,4.748101212215113e-302,4.738105210715713e-302,4.728109209216315e-302,4.718113207716913e-302,4.708117206217513e-302,4.698121204718114e-302,4.688125203218712e-302,4.678129201719312e-302,4.668133200219912e-302,4.658137198720512e-302,4.648141197221112e-302,4.6381451957217115e-302,4.628149194222311e-302,4.61815319272291e-302,4.608157191223511e-302,4.598161189724111e-302,4.5881651882247096e-302,4.57816918672531e-302,4.5681731852259103e-302,4.558177183726509e-302,4.5481811822271095e-302,4.5381851807277086e-302,4.528189179228309e-302,4.5181931777289094e-302,4.508197176229508e-302,4.498201174730108e-302,4.4882051732307087e-302,4.478209171731308e-302,4.4682131702319074e-302,4.458217168732507e-302,4.448221167233107e-302,4.438225165733707e-302,4.428229164234307e-302,4.4182331627349065e-302,4.4082371612355056e-302,4.398241159736105e-302,4.388245158236706e-302,4.378249156737305e-302,4.3682531552379045e-302,4.358257153738505e-302,4.348261152239104e-302,4.338265150739704e-302,4.328269149240304e-302,4.3182731477409036e-302,4.3082771462415037e-302,4.2982811447421033e-302,4.288285143242703e-302,4.278289141743302e-302,4.2682931402439026e-302,4.2582971387445027e-302,4.2483011372451013e-302,4.238305135745702e-302,4.228309134246302e-302,4.2183131327469006e-302,4.208317131247502e-302,4.1983211297481004e-302,4.1883251282487005e-302,4.178329126749301e-302,4.1683331252498997e-302,4.1583371237505e-302,4.1483411222510994e-302,4.1383451207516995e-302,4.128349119252299e-302,4.118353117752899e-302,4.108357116253499e-302,4.0983611147540985e-302,4.0883651132546986e-302,4.078369111755298e-302,4.0683731102558973e-302,4.058377108756498e-302,4.0483811072570975e-302,4.0383851057576966e-302,4.0283891042582973e-302,4.018393102758897e-302,4.008397101259496e-302,3.9984010997600966e-302,3.9884050982606957e-302,3.9784090967612953e-302,3.968413095261896e-302,3.958417093762495e-302,3.9484210922630946e-302,3.9384250907636937e-302,3.9284290892642944e-302,3.9184330877648945e-302,3.908437086265493e-302,3.8984410847660937e-302,3.888445083266694e-302,3.878449081767293e-302,3.8684530802678935e-302,3.858457078768492e-302,3.848461077269092e-302,3.838465075769693e-302,3.828469074270292e-302,3.818473072770892e-302,3.808477071271491e-302,3.7984810697720913e-302,3.788485068272691e-302,3.7784890667732905e-302,3.7684930652738906e-302,3.75849706377449e-302,3.74850106227509e-302,3.73850506077569e-302,3.7285090592762896e-302,3.718513057776889e-302,3.708517056277489e-302,3.6985210547780894e-302,3.6885250532786885e-302,3.6785290517792886e-302,3.668533050279888e-302,3.658537048780488e-302,3.648541047281088e-302,3.6385450457816876e-302,3.628549044282287e-302,3.618553042782887e-302,3.608557041283487e-302,3.5985610397840865e-302,3.588565038284686e-302,3.5785690367852857e-302,3.568573035285886e-302,3.5585770337864854e-302,3.548581032287085e-302,3.5385850307876846e-302,3.5285890292882853e-302,3.5185930277888844e-302,3.5085970262894845e-302,3.498601024790084e-302,3.4886050232906837e-302,3.478609021791284e-302,3.4686130202918834e-302,3.458617018792483e-302,3.4486210172930826e-302,3.438625015793683e-302,3.4286290142942824e-302,3.418633012794882e-302,3.408637011295482e-302,3.3986410097960817e-302,3.388645008296682e-302,3.3786490067972814e-302,3.3686530052978805e-302,3.358657003798481e-302,3.34866100229908e-302,3.3386650007996804e-302,3.32866899930028e-302,3.3186729978008796e-302,3.3086769963014797e-302,3.2986809948020793e-302,3.288684993302679e-302,3.2786889918032785e-302,3.2686929903038786e-302,3.258696988804478e-302,3.248700987305078e-302,3.238704985805678e-302,3.2287089843062776e-302,3.2187129828068777e-302,3.2087169813074773e-302,3.1987209798080764e-302,3.188724978308677e-302,3.1787289768092766e-302,3.168732975309876e-302,3.158736973810476e-302,3.1487409723110754e-302,3.1387449708116756e-302,3.128748969312275e-302,3.118752967812875e-302,3.1087569663134744e-302,3.0987609648140745e-302,3.088764963314674e-302,3.0787689618152737e-302,3.068772960315874e-302,3.0587769588164734e-302,3.0487809573170735e-302,3.038784955817673e-302,3.028788954318273e-302,3.0187929528188724e-302,3.0087969513194725e-302,2.998800949820072e-302,2.9888049483206717e-302,2.9788089468212713e-302,2.9688129453218714e-302,2.958816943822471e-302,2.948820942323071e-302,2.93882494082367e-302,2.9288289393242704e-302,2.9188329378248705e-302,2.9088369363254696e-302,2.8988409348260697e-302,2.8888449333266693e-302,2.8788489318272694e-302,2.868852930327869e-302,2.8588569288284686e-302,2.848860927329068e-302,2.8388649258296684e-302,2.828868924330268e-302,2.8188729228308676e-302,2.8088769213314677e-302,2.7988809198320673e-302,2.788884918332667e-302,2.778888916833267e-302,2.768892915333866e-302,2.758896913834466e-302,2.7489009123350663e-302,2.7389049108356654e-302,2.7289089093362656e-302,2.7189129078368657e-302,2.7089169063374653e-302,2.698920904838065e-302,2.6889249033386645e-302,2.678928901839264e-302,2.668932900339864e-302,2.658936898840464e-302,2.6489408973410634e-302,2.6389448958416636e-302,2.628948894342263e-302,2.618952892842863e-302,2.608956891343463e-302,2.598960889844062e-302,2.5889648883446626e-302,2.578968886845262e-302,2.5689728853458613e-302,2.5589768838464614e-302,2.5489808823470615e-302,2.538984880847661e-302,2.528988879348261e-302,2.5189928778488604e-302,2.50899687634946e-302,2.49900087485006e-302,2.48900487335066e-302,2.4790088718512593e-302,2.4690128703518594e-302,2.4590168688524595e-302,2.4490208673530586e-302,2.439024865853659e-302,2.429028864354258e-302,2.4190328628548585e-302,2.409036861355458e-302,2.3990408598560577e-302,2.3890448583566573e-302,2.3790488568572574e-302,2.369052855357857e-302,2.3590568538584566e-302,2.349060852359056e-302,2.339064850859656e-302,2.3290688493602562e-302,2.3190728478608558e-302,2.3090768463614552e-302,2.299080844862055e-302,2.2890848433626554e-302,2.2790888418632548e-302,2.2690928403638546e-302,2.2590968388644542e-302,2.249100837365054e-302,2.239104835865654e-302,2.2291088343662538e-302,2.2191128328668532e-302,2.209116831367453e-302,2.1991208298680526e-302,2.1891248283686525e-302,2.1791288268692524e-302,2.1691328253698517e-302,2.159136823870452e-302,2.1491408223710517e-302,2.1391448208716513e-302,2.129148819372251e-302,2.1191528178728513e-302,2.1091568163734506e-302,2.0991608148740505e-302,2.08916481337465e-302,2.07916881187525e-302,2.0691728103758498e-302,2.0591768088764497e-302,2.049180807377049e-302,2.039184805877649e-302,2.029188804378249e-302,2.0191928028788484e-302,2.0091968013794482e-302,1.999200799880048e-302,1.989204798380648e-302,1.9792087968812476e-302,1.9692127953818472e-302,1.9592167938824468e-302,1.9492207923830472e-302,1.9392247908836465e-302,1.9292287893842464e-302,1.919232787884846e-302,1.9092367863854458e-302,1.8992407848860457e-302,1.8892447833866453e-302,1.8792487818872452e-302,1.869252780387845e-302,1.8592567788884446e-302,1.8492607773890445e-302,1.839264775889644e-302,1.829268774390244e-302,1.8192727728908438e-302,1.8092767713914434e-302,1.799280769892043e-302,1.789284768392643e-302,1.7792887668932428e-302,1.7692927653938426e-302,1.7592967638944422e-302,1.749300762395042e-302,1.7393047608956417e-302,1.7293087593962416e-302,1.7193127578968414e-302,1.709316756397441e-302,1.699320754898041e-302,1.6893247533986405e-302,1.6793287518992404e-302,1.66933275039984e-302,1.6593367489004398e-302,1.6493407474010397e-302,1.6393447459016396e-302,1.6293487444022392e-302,1.619352742902839e-302,1.6093567414034386e-302,1.5993607399040385e-302,1.5893647384046384e-302,1.579368736905238e-302,1.5693727354058376e-302,1.5593767339064372e-302,1.5493807324070373e-302,1.539384730907637e-302,1.5293887294082368e-302,1.5193927279088364e-302,1.5093967264094362e-302,1.4994007249100358e-302,1.489404723410636e-302,1.4794087219112356e-302,1.4694127204118354e-302,1.459416718912435e-302,1.449420717413035e-302,1.4394247159136345e-302,1.4294287144142344e-302,1.4194327129148342e-302,1.4094367114154338e-302,1.3994407099160334e-302,1.3894447084166333e-302,1.3794487069172332e-302,1.3694527054178328e-302,1.359456703918433e-302,1.3494607024190325e-302,1.339464700919632e-302,1.3294686994202317e-302,1.3194726979208318e-302,1.3094766964214314e-302,1.2994806949220313e-302,1.289484693422631e-302,1.2794886919232308e-302,1.2694926904238304e-302,1.2594966889244305e-302,1.24950068742503e-302,1.2395046859256297e-302,1.2295086844262296e-302,1.2195126829268292e-302,1.209516681427429e-302,1.1995206799280286e-302,1.1895246784286288e-302,1.1795286769292284e-302,1.169532675429828e-302,1.1595366739304278e-302,1.1495406724310277e-302,1.1395446709316273e-302,1.1295486694322273e-302,1.1195526679328269e-302,1.1095566664334268e-302,1.0995606649340264e-302,1.0895646634346264e-302,1.079568661935226e-302,1.0695726604358256e-302,1.0595766589364256e-302,1.0495806574370252e-302,1.0395846559376249e-302,1.0295886544382248e-302,1.0195926529388245e-302,1.0095966514394241e-302,9.996006499400242e-303,9.896046484406237e-303,9.796086469412236e-303,9.696126454418232e-303,9.596166439424232e-303,9.496206424430228e-303,9.396246409436226e-303,9.296286394442222e-303,9.196326379448221e-303,9.09636636445422e-303,8.996406349460216e-303,8.896446334466214e-303,8.796486319472212e-303,8.696526304478209e-303,8.596566289484208e-303,8.496606274490205e-303,8.396646259496202e-303,8.296686244502198e-303,8.196726229508197e-303,8.096766214514194e-303,7.996806199520192e-303,7.896846184526189e-303,7.796886169532186e-303,7.696926154538185e-303,7.596966139544182e-303,7.49700612455018e-303,7.397046109556178e-303,7.297086094562176e-303,7.197126079568173e-303,7.097166064574172e-303,6.997206049580168e-303,6.897246034586166e-303,6.797286019592164e-303,6.69732600459816e-303,6.597365989604158e-303,6.497405974610156e-303,6.397445959616153e-303,6.297485944622152e-303,6.197525929628149e-303,6.097565914634146e-303,5.997605899640144e-303,5.897645884646142e-303,5.7976858696521397e-303,5.697725854658137e-303,5.597765839664135e-303,5.4978058246701317e-303,5.3978458096761297e-303,5.297885794682128e-303,5.197925779688125e-303,5.0979657646941223e-303,4.99800574970012e-303,4.898045734706117e-303,4.798085719712115e-303,4.698125704718113e-303,4.5981656897241103e-303,4.498205674730108e-303,4.3982456597361057e-303,4.2982856447421037e-303,4.198325629748101e-303,4.0983656147540983e-303,3.9984055997600963e-303,3.898445584766093e-303,3.798485569772091e-303,3.698525554778089e-303,3.5985655397840863e-303,3.498605524790084e-303,3.3986455097960817e-303,3.2986854948020797e-303,3.198725479808077e-303,3.0987654648140743e-303,2.998805449820072e-303,2.8988454348260697e-303,2.7988854198320673e-303,2.6989254048380647e-303,2.5989653898440623e-303,2.4990053748500603e-303,2.399045359856058e-303,2.2990853448620553e-303,2.1991253298680527e-303,2.0991653148740507e-303,1.999205299880048e-303,1.8992452848860457e-303,1.7992852698920433e-303,1.699325254898041e-303,1.5993652399040383e-303,1.499405224910036e-303,1.3994452099160337e-303,1.2994851949220313e-303,1.1995251799280288e-303,1.0995651649340263e-303,9.99605149940024e-304,8.996451349460215e-304,7.996851199520193e-304,6.9972510495801684e-304,5.997650899640145e-304,4.99805074970012e-304,3.998450599760096e-304,2.9988504498200722e-304,1.999250299880048e-304,9.996501499400241e-305,5.0e-309],"x":[1.0e-300,9.99800079970012e-301,9.996001599400239e-301,9.99400239910036e-301,9.99200319880048e-301,9.990003998500602e-301,9.988004798200719e-301,9.98600559790084e-301,9.98400639760096e-301,9.98200719730108e-301,9.980007997001199e-301,9.97800879670132e-301,9.976009596401439e-301,9.974010396101559e-301,9.97201119580168e-301,9.970011995501799e-301,9.968012795201919e-301,9.966013594902039e-301,9.96401439460216e-301,9.962015194302279e-301,9.960015994002399e-301,9.958016793702519e-301,9.956017593402639e-301,9.954018393102759e-301,9.95201919280288e-301,9.950019992503e-301,9.94802079220312e-301,9.94602159190324e-301,9.94402239160336e-301,9.942023191303478e-301,9.940023991003598e-301,9.93802479070372e-301,9.936025590403838e-301,9.93402639010396e-301,9.932027189804078e-301,9.9300279895042e-301,9.928028789204318e-301,9.92602958890444e-301,9.92403038860456e-301,9.922031188304678e-301,9.920031988004798e-301,9.918032787704918e-301,9.916033587405038e-301,9.914034387105158e-301,9.912035186805278e-301,9.910035986505398e-301,9.908036786205518e-301,9.906037585905638e-301,9.90403838560576e-301,9.902039185305876e-301,9.900039985005998e-301,9.898040784706118e-301,9.896041584406238e-301,9.894042384106357e-301,9.892043183806477e-301,9.890043983506598e-301,9.888044783206717e-301,9.886045582906838e-301,9.884046382606957e-301,9.882047182307077e-301,9.880047982007197e-301,9.878048781707318e-301,9.876049581407438e-301,9.874050381107557e-301,9.872051180807677e-301,9.870051980507797e-301,9.868052780207917e-301,9.866053579908037e-301,9.864054379608157e-301,9.862055179308277e-301,9.860055979008397e-301,9.858056778708517e-301,9.856057578408637e-301,9.854058378108755e-301,9.852059177808877e-301,9.850059977508997e-301,9.848060777209117e-301,9.846061576909236e-301,9.844062376609357e-301,9.842063176309476e-301,9.840063976009597e-301,9.838064775709717e-301,9.836065575409836e-301,9.834066375109956e-301,9.832067174810076e-301,9.830067974510197e-301,9.828068774210316e-301,9.826069573910436e-301,9.824070373610556e-301,9.822071173310676e-301,9.820071973010796e-301,9.818072772710916e-301,9.816073572411036e-301,9.814074372111156e-301,9.812075171811276e-301,9.810075971511396e-301,9.808076771211514e-301,9.806077570911634e-301,9.804078370611756e-301,9.802079170311876e-301,9.800079970011996e-301,9.798080769712114e-301,9.796081569412236e-301,9.794082369112354e-301,9.792083168812476e-301,9.790083968512596e-301,9.788084768212715e-301,9.786085567912835e-301,9.784086367612955e-301,9.782087167313076e-301,9.780087967013195e-301,9.778088766713315e-301,9.776089566413435e-301,9.774090366113555e-301,9.772091165813675e-301,9.770091965513795e-301,9.768092765213913e-301,9.766093564914035e-301,9.764094364614155e-301,9.762095164314275e-301,9.760095964014393e-301,9.758096763714515e-301,9.756097563414635e-301,9.754098363114753e-301,9.752099162814875e-301,9.750099962514993e-301,9.748100762215113e-301,9.746101561915233e-301,9.744102361615355e-301,9.742103161315475e-301,9.740103961015593e-301,9.738104760715714e-301,9.736105560415835e-301,9.734106360115954e-301,9.732107159816074e-301,9.730107959516194e-301,9.728108759216314e-301,9.726109558916434e-301,9.724110358616554e-301,9.722111158316674e-301,9.720111958016792e-301,9.718112757716914e-301,9.716113557417034e-301,9.714114357117154e-301,9.712115156817272e-301,9.710115956517394e-301,9.708116756217514e-301,9.706117555917634e-301,9.704118355617754e-301,9.702119155317872e-301,9.700119955017992e-301,9.698120754718112e-301,9.696121554418234e-301,9.694122354118352e-301,9.692123153818472e-301,9.690123953518592e-301,9.688124753218714e-301,9.686125552918832e-301,9.684126352618954e-301,9.682127152319073e-301,9.680127952019193e-301,9.678128751719313e-301,9.676129551419433e-301,9.674130351119551e-301,9.672131150819671e-301,9.670131950519793e-301,9.668132750219913e-301,9.666133549920033e-301,9.664134349620151e-301,9.662135149320273e-301,9.660135949020391e-301,9.658136748720513e-301,9.656137548420633e-301,9.654138348120751e-301,9.652139147820871e-301,9.650139947520991e-301,9.648140747221113e-301,9.646141546921231e-301,9.644142346621351e-301,9.642143146321471e-301,9.640143946021591e-301,9.638144745721711e-301,9.636145545421831e-301,9.63414634512195e-301,9.632147144822072e-301,9.630147944522192e-301,9.628148744222312e-301,9.62614954392243e-301,9.624150343622552e-301,9.622151143322672e-301,9.620151943022792e-301,9.618152742722912e-301,9.61615354242303e-301,9.614154342123152e-301,9.61215514182327e-301,9.610155941523392e-301,9.608156741223512e-301,9.60615754092363e-301,9.60415834062375e-301,9.602159140323872e-301,9.60015994002399e-301,9.59816073972411e-301,9.59616153942423e-301,9.59416233912435e-301,9.59216313882447e-301,9.59016393852459e-301,9.58816473822471e-301,9.586165537924829e-301,9.58416633762495e-301,9.58216713732507e-301,9.58016793702519e-301,9.578168736725309e-301,9.57616953642543e-301,9.57417033612555e-301,9.57217113582567e-301,9.57017193552579e-301,9.56817273522591e-301,9.566173534926029e-301,9.564174334626149e-301,9.56217513432627e-301,9.560175934026389e-301,9.558176733726509e-301,9.556177533426629e-301,9.55417833312675e-301,9.552179132826869e-301,9.55017993252699e-301,9.54818073222711e-301,9.54618153192723e-301,9.54418233162735e-301,9.54218313132747e-301,9.540183931027588e-301,9.53818473072771e-301,9.53618553042783e-301,9.53418633012795e-301,9.53218712982807e-301,9.530187929528188e-301,9.52818872922831e-301,9.526189528928428e-301,9.52419032862855e-301,9.52219112832867e-301,9.52019192802879e-301,9.518192727728908e-301,9.51619352742903e-301,9.51419432712915e-301,9.512195126829268e-301,9.510195926529388e-301,9.508196726229508e-301,9.506197525929628e-301,9.504198325629748e-301,9.502199125329868e-301,9.500199925029988e-301,9.498200724730108e-301,9.496201524430228e-301,9.49420232413035e-301,9.492203123830467e-301,9.490203923530588e-301,9.488204723230708e-301,9.486205522930828e-301,9.484206322630948e-301,9.482207122331067e-301,9.480207922031188e-301,9.478208721731307e-301,9.476209521431428e-301,9.474210321131548e-301,9.472211120831667e-301,9.470211920531787e-301,9.468212720231909e-301,9.466213519932027e-301,9.464214319632147e-301,9.462215119332267e-301,9.460215919032387e-301,9.458216718732507e-301,9.456217518432627e-301,9.454218318132747e-301,9.452219117832865e-301,9.450219917532987e-301,9.448220717233107e-301,9.446221516933227e-301,9.444222316633346e-301,9.442223116333467e-301,9.440223916033587e-301,9.438224715733707e-301,9.436225515433827e-301,9.434226315133947e-301,9.432227114834066e-301,9.430227914534186e-301,9.428228714234307e-301,9.426229513934427e-301,9.424230313634546e-301,9.422231113334666e-301,9.420231913034787e-301,9.418232712734906e-301,9.416233512435026e-301,9.414234312135146e-301,9.412235111835266e-301,9.410235911535386e-301,9.408236711235506e-301,9.406237510935626e-301,9.404238310635746e-301,9.402239110335866e-301,9.400239910035986e-301,9.398240709736106e-301,9.396241509436224e-301,9.394242309136346e-301,9.392243108836465e-301,9.390243908536586e-301,9.388244708236706e-301,9.386245507936826e-301,9.384246307636945e-301,9.382247107337066e-301,9.380247907037186e-301,9.378248706737305e-301,9.376249506437425e-301,9.374250306137545e-301,9.372251105837665e-301,9.370251905537785e-301,9.368252705237905e-301,9.366253504938025e-301,9.364254304638145e-301,9.362255104338265e-301,9.360255904038387e-301,9.358256703738503e-301,9.356257503438625e-301,9.354258303138745e-301,9.352259102838865e-301,9.350259902538985e-301,9.348260702239105e-301,9.346261501939225e-301,9.344262301639343e-301,9.342263101339465e-301,9.340263901039585e-301,9.338264700739704e-301,9.336265500439824e-301,9.334266300139945e-301,9.332267099840065e-301,9.330267899540184e-301,9.328268699240304e-301,9.326269498940425e-301,9.324270298640544e-301,9.322271098340664e-301,9.320271898040784e-301,9.318272697740904e-301,9.316273497441024e-301,9.314274297141144e-301,9.312275096841265e-301,9.310275896541382e-301,9.308276696241504e-301,9.306277495941624e-301,9.304278295641744e-301,9.302279095341864e-301,9.300279895041984e-301,9.298280694742102e-301,9.296281494442224e-301,9.294282294142344e-301,9.292283093842462e-301,9.290283893542582e-301,9.288284693242702e-301,9.286285492942824e-301,9.284286292642943e-301,9.282287092343063e-301,9.280287892043183e-301,9.278288691743303e-301,9.276289491443423e-301,9.274290291143544e-301,9.272291090843663e-301,9.270291890543783e-301,9.268292690243903e-301,9.266293489944023e-301,9.264294289644143e-301,9.262295089344261e-301,9.260295889044383e-301,9.258296688744503e-301,9.256297488444623e-301,9.254298288144743e-301,9.252299087844863e-301,9.250299887544981e-301,9.248300687245103e-301,9.246301486945223e-301,9.244302286645341e-301,9.242303086345461e-301,9.240303886045581e-301,9.238304685745703e-301,9.236305485445821e-301,9.234306285145941e-301,9.232307084846061e-301,9.230307884546182e-301,9.228308684246302e-301,9.226309483946423e-301,9.22431028364654e-301,9.222311083346662e-301,9.220311883046782e-301,9.218312682746902e-301,9.216313482447022e-301,9.214314282147142e-301,9.212315081847262e-301,9.21031588154738e-301,9.208316681247502e-301,9.20631748094762e-301,9.20431828064774e-301,9.20231908034786e-301,9.200319880047982e-301,9.198320679748102e-301,9.19632147944822e-301,9.19432227914834e-301,9.192323078848462e-301,9.19032387854858e-301,9.1883246782487e-301,9.18632547794882e-301,9.18432627764894e-301,9.18232707734906e-301,9.18032787704918e-301,9.178328676749302e-301,9.176329476449419e-301,9.17433027614954e-301,9.17233107584966e-301,9.17033187554978e-301,9.1683326752499e-301,9.16633347495002e-301,9.16433427465014e-301,9.16233507435026e-301,9.16033587405038e-301,9.1583366737505e-301,9.156337473450619e-301,9.154338273150739e-301,9.15233907285086e-301,9.15033987255098e-301,9.1483406722511e-301,9.14634147195122e-301,9.144342271651341e-301,9.14234307135146e-301,9.140343871051581e-301,9.1383446707517e-301,9.13634547045182e-301,9.13434627015194e-301,9.13234706985206e-301,9.13034786955218e-301,9.1283486692523e-301,9.12634946895242e-301,9.12435026865254e-301,9.12235106835266e-301,9.12035186805278e-301,9.1183526677529e-301,9.116353467453018e-301,9.11435426715314e-301,9.11235506685326e-301,9.110355866553378e-301,9.108356666253498e-301,9.10635746595362e-301,9.10435826565374e-301,9.102359065353858e-301,9.100359865053978e-301,9.098360664754098e-301,9.096361464454218e-301,9.094362264154338e-301,9.09236306385446e-301,9.090363863554577e-301,9.088364663254698e-301,9.086365462954818e-301,9.08436626265494e-301,9.082367062355058e-301,9.080367862055178e-301,9.078368661755298e-301,9.076369461455418e-301,9.074370261155538e-301,9.072371060855657e-301,9.070371860555779e-301,9.068372660255897e-301,9.066373459956019e-301,9.064374259656139e-301,9.062375059356257e-301,9.060375859056377e-301,9.058376658756499e-301,9.056377458456617e-301,9.054378258156739e-301,9.052379057856857e-301,9.050379857556977e-301,9.048380657257097e-301,9.046381456957217e-301,9.044382256657339e-301,9.042383056357456e-301,9.040383856057577e-301,9.038384655757697e-301,9.036385455457817e-301,9.034386255157937e-301,9.032387054858057e-301,9.030387854558177e-301,9.028388654258297e-301,9.026389453958417e-301,9.024390253658537e-301,9.022391053358656e-301,9.020391853058776e-301,9.018392652758897e-301,9.016393452459016e-301,9.014394252159136e-301,9.012395051859256e-301,9.010395851559378e-301,9.008396651259496e-301,9.006397450959618e-301,9.004398250659736e-301,9.002399050359856e-301,9.000399850059976e-301,8.998400649760096e-301,8.996401449460216e-301,8.994402249160336e-301,8.992403048860456e-301,8.990403848560576e-301,8.988404648260696e-301,8.986405447960815e-301,8.984406247660936e-301,8.982407047361055e-301,8.980407847061176e-301,8.978408646761296e-301,8.976409446461416e-301,8.974410246161535e-301,8.972411045861656e-301,8.970411845561776e-301,8.968412645261895e-301,8.966413444962015e-301,8.964414244662135e-301,8.962415044362255e-301,8.960415844062375e-301,8.958416643762497e-301,8.956417443462615e-301,8.954418243162735e-301,8.952419042862855e-301,8.950419842562977e-301,8.948420642263095e-301,8.946421441963215e-301,8.944422241663335e-301,8.942423041363455e-301,8.940423841063575e-301,8.938424640763695e-301,8.936425440463815e-301,8.934426240163934e-301,8.932427039864055e-301,8.930427839564175e-301,8.928428639264294e-301,8.926429438964414e-301,8.924430238664535e-301,8.922431038364654e-301,8.920431838064775e-301,8.918432637764894e-301,8.916433437465014e-301,8.914434237165134e-301,8.912435036865254e-301,8.910435836565375e-301,8.908436636265494e-301,8.906437435965614e-301,8.904438235665734e-301,8.902439035365854e-301,8.900439835065972e-301,8.898440634766094e-301,8.896441434466214e-301,8.894442234166334e-301,8.892443033866454e-301,8.890443833566574e-301,8.888444633266692e-301,8.886445432966814e-301,8.884446232666934e-301,8.882447032367054e-301,8.880447832067173e-301,8.878448631767293e-301,8.876449431467414e-301,8.874450231167533e-301,8.872451030867654e-301,8.870451830567773e-301,8.868452630267893e-301,8.866453429968013e-301,8.864454229668134e-301,8.862455029368254e-301,8.860455829068373e-301,8.858456628768493e-301,8.856457428468613e-301,8.854458228168733e-301,8.852459027868851e-301,8.850459827568973e-301,8.848460627269091e-301,8.846461426969213e-301,8.844462226669333e-301,8.842463026369453e-301,8.840463826069571e-301,8.838464625769693e-301,8.836465425469813e-301,8.834466225169933e-301,8.832467024870051e-301,8.830467824570172e-301,8.828468624270292e-301,8.826469423970412e-301,8.824470223670533e-301,8.822471023370652e-301,8.820471823070772e-301,8.818472622770892e-301,8.816473422471013e-301,8.81447422217113e-301,8.812475021871252e-301,8.810475821571372e-301,8.808476621271492e-301,8.806477420971612e-301,8.804478220671732e-301,8.802479020371852e-301,8.80047982007197e-301,8.798480619772092e-301,8.796481419472212e-301,8.79448221917233e-301,8.79248301887245e-301,8.790483818572572e-301,8.788484618272692e-301,8.786485417972812e-301,8.78448621767293e-301,8.782487017373052e-301,8.78048781707317e-301,8.77848861677329e-301,8.776489416473412e-301,8.77449021617353e-301,8.77249101587365e-301,8.77049181557377e-301,8.768492615273892e-301,8.766493414974009e-301,8.76449421467413e-301,8.76249501437425e-301,8.76049581407437e-301,8.75849661377449e-301,8.75649741347461e-301,8.754498213174729e-301,8.75249901287485e-301,8.75049981257497e-301,8.748500612275091e-301,8.74650141197521e-301,8.74450221167533e-301,8.742503011375451e-301,8.74050381107557e-301,8.738504610775691e-301,8.73650541047581e-301,8.73450621017593e-301,8.73250700987605e-301,8.730507809576171e-301,8.72850860927629e-301,8.72650940897641e-301,8.72451020867653e-301,8.72251100837665e-301,8.72051180807677e-301,8.71851260777689e-301,8.71651340747701e-301,8.714514207177128e-301,8.71251500687725e-301,8.71051580657737e-301,8.70851660627749e-301,8.706517405977608e-301,8.70451820567773e-301,8.70251900537785e-301,8.70051980507797e-301,8.698520604778088e-301,8.696521404478208e-301,8.69452220417833e-301,8.692523003878448e-301,8.69052380357857e-301,8.688524603278688e-301,8.686525402978808e-301,8.684526202678928e-301,8.68252700237905e-301,8.680527802079167e-301,8.678528601779288e-301,8.676529401479408e-301,8.674530201179528e-301,8.672531000879648e-301,8.670531800579768e-301,8.668532600279889e-301,8.666533399980009e-301,8.664534199680129e-301,8.662534999380249e-301,8.660535799080367e-301,8.658536598780487e-301,8.656537398480609e-301,8.654538198180729e-301,8.652538997880849e-301,8.650539797580967e-301,8.648540597281089e-301,8.646541396981207e-301,8.644542196681329e-301,8.642542996381447e-301,8.640543796081567e-301,8.638544595781687e-301,8.636545395481807e-301,8.634546195181929e-301,8.632546994882046e-301,8.630547794582167e-301,8.628548594282287e-301,8.626549393982407e-301,8.624550193682527e-301,8.622550993382647e-301,8.620551793082766e-301,8.618552592782887e-301,8.616553392483007e-301,8.614554192183128e-301,8.612554991883246e-301,8.610555791583366e-301,8.608556591283488e-301,8.606557390983606e-301,8.604558190683728e-301,8.602558990383846e-301,8.600559790083968e-301,8.598560589784086e-301,8.596561389484208e-301,8.594562189184326e-301,8.592562988884446e-301,8.590563788584566e-301,8.588564588284686e-301,8.586565387984806e-301,8.584566187684926e-301,8.582566987385046e-301,8.580567787085166e-301,8.578568586785286e-301,8.576569386485406e-301,8.574570186185526e-301,8.572570985885645e-301,8.570571785585766e-301,8.568572585285886e-301,8.566573384986006e-301,8.564574184686125e-301,8.562574984386246e-301,8.560575784086367e-301,8.558576583786485e-301,8.556577383486605e-301,8.554578183186725e-301,8.552578982886845e-301,8.550579782586965e-301,8.548580582287087e-301,8.546581381987203e-301,8.544582181687325e-301,8.542582981387445e-301,8.540583781087567e-301,8.538584580787685e-301,8.536585380487805e-301,8.534586180187925e-301,8.532586979888045e-301,8.530587779588165e-301,8.528588579288285e-301,8.526589378988404e-301,8.524590178688524e-301,8.522590978388645e-301,8.520591778088765e-301,8.518592577788885e-301,8.516593377489004e-301,8.514594177189125e-301,8.512594976889244e-301,8.510595776589365e-301,8.508596576289484e-301,8.506597375989604e-301,8.504598175689724e-301,8.502598975389844e-301,8.500599775089966e-301,8.498600574790084e-301,8.496601374490204e-301,8.494602174190324e-301,8.492602973890444e-301,8.490603773590564e-301,8.488604573290684e-301,8.486605372990804e-301,8.484606172690924e-301,8.482606972391044e-301,8.480607772091164e-301,8.478608571791283e-301,8.476609371491404e-301,8.474610171191524e-301,8.472610970891643e-301,8.470611770591764e-301,8.468612570291883e-301,8.466613369992004e-301,8.464614169692123e-301,8.462614969392244e-301,8.460615769092363e-301,8.458616568792483e-301,8.456617368492603e-301,8.454618168192723e-301,8.452618967892843e-301,8.450619767592963e-301,8.448620567293083e-301,8.446621366993203e-301,8.444622166693323e-301,8.442622966393443e-301,8.440623766093563e-301,8.438624565793681e-301,8.436625365493803e-301,8.434626165193923e-301,8.432626964894043e-301,8.430627764594161e-301,8.428628564294283e-301,8.426629363994403e-301,8.424630163694523e-301,8.422630963394642e-301,8.420631763094762e-301,8.418632562794882e-301,8.416633362495002e-301,8.414634162195123e-301,8.412634961895242e-301,8.410635761595362e-301,8.408636561295482e-301,8.406637360995603e-301,8.404638160695722e-301,8.402638960395842e-301,8.400639760095962e-301,8.398640559796082e-301,8.396641359496202e-301,8.394642159196322e-301,8.392642958896442e-301,8.39064375859656e-301,8.388644558296682e-301,8.386645357996802e-301,8.384646157696922e-301,8.38264695739704e-301,8.380647757097162e-301,8.37864855679728e-301,8.376649356497402e-301,8.37465015619752e-301,8.372650955897642e-301,8.37065175559776e-301,8.36865255529788e-301,8.366653354998002e-301,8.36465415469812e-301,8.36265495439824e-301,8.36065575409836e-301,8.35865655379848e-301,8.3566573534986e-301,8.35465815319872e-301,8.35265895289884e-301,8.35065975259896e-301,8.348660552299081e-301,8.346661351999201e-301,8.34466215169932e-301,8.342662951399441e-301,8.340663751099561e-301,8.33866455079968e-301,8.3366653504998e-301,8.33466615019992e-301,8.332666949900041e-301,8.33066774960016e-301,8.328668549300281e-301,8.3266693490004e-301,8.32467014870052e-301,8.32267094840064e-301,8.320671748100761e-301,8.318672547800881e-301,8.316673347501e-301,8.31467414720112e-301,8.31267494690124e-301,8.31067574660136e-301,8.30867654630148e-301,8.3066773460016e-301,8.304678145701718e-301,8.30267894540184e-301,8.30067974510196e-301,8.298680544802081e-301,8.296681344502198e-301,8.29468214420232e-301,8.29268294390244e-301,8.29068374360256e-301,8.288684543302678e-301,8.286685343002798e-301,8.284686142702918e-301,8.282686942403038e-301,8.28068774210316e-301,8.278688541803278e-301,8.276689341503398e-301,8.274690141203518e-301,8.27269094090364e-301,8.270691740603758e-301,8.268692540303879e-301,8.266693340003999e-301,8.264694139704119e-301,8.262694939404239e-301,8.260695739104359e-301,8.258696538804479e-301,8.256697338504599e-301,8.254698138204719e-301,8.252698937904839e-301,8.250699737604957e-301,8.248700537305077e-301,8.246701337005199e-301,8.244702136705317e-301,8.242702936405439e-301,8.240703736105557e-301,8.238704535805679e-301,8.236705335505797e-301,8.234706135205917e-301,8.232706934906039e-301,8.230707734606157e-301,8.228708534306277e-301,8.226709334006397e-301,8.224710133706519e-301,8.222710933406637e-301,8.220711733106757e-301,8.218712532806877e-301,8.216713332506997e-301,8.214714132207118e-301,8.212714931907238e-301,8.210715731607356e-301,8.208716531307478e-301,8.206717331007598e-301,8.204718130707718e-301,8.202718930407836e-301,8.200719730107956e-301,8.198720529808078e-301,8.196721329508196e-301,8.194722129208318e-301,8.192722928908436e-301,8.190723728608556e-301,8.188724528308676e-301,8.186725328008798e-301,8.184726127708918e-301,8.182726927409036e-301,8.180727727109156e-301,8.178728526809276e-301,8.176729326509396e-301,8.174730126209516e-301,8.172730925909636e-301,8.170731725609755e-301,8.168732525309876e-301,8.166733325009996e-301,8.164734124710116e-301,8.162734924410235e-301,8.160735724110357e-301,8.158736523810477e-301,8.156737323510597e-301,8.154738123210715e-301,8.152738922910837e-301,8.150739722610955e-301,8.148740522311075e-301,8.146741322011197e-301,8.144742121711315e-301,8.142742921411435e-301,8.140743721111555e-301,8.138744520811677e-301,8.136745320511795e-301,8.134746120211915e-301,8.132746919912035e-301,8.130747719612157e-301,8.128748519312275e-301,8.126749319012395e-301,8.124750118712515e-301,8.122750918412635e-301,8.120751718112755e-301,8.118752517812875e-301,8.116753317512994e-301,8.114754117213114e-301,8.112754916913235e-301,8.110755716613355e-301,8.108756516313475e-301,8.106757316013594e-301,8.104758115713716e-301,8.102758915413834e-301,8.100759715113956e-301,8.098760514814076e-301,8.096761314514194e-301,8.094762114214314e-301,8.092762913914434e-301,8.090763713614556e-301,8.088764513314674e-301,8.086765313014794e-301,8.084766112714914e-301,8.082766912415034e-301,8.080767712115154e-301,8.078768511815274e-301,8.076769311515393e-301,8.074770111215514e-301,8.072770910915634e-301,8.070771710615754e-301,8.068772510315873e-301,8.066773310015993e-301,8.064774109716114e-301,8.062774909416233e-301,8.060775709116354e-301,8.058776508816473e-301,8.056777308516594e-301,8.054778108216713e-301,8.052778907916835e-301,8.050779707616955e-301,8.048780507317073e-301,8.046781307017193e-301,8.044782106717313e-301,8.042782906417433e-301,8.040783706117553e-301,8.038784505817673e-301,8.036785305517793e-301,8.034786105217913e-301,8.032786904918033e-301,8.030787704618153e-301,8.028788504318271e-301,8.026789304018393e-301,8.024790103718513e-301,8.022790903418633e-301,8.020791703118752e-301,8.018792502818873e-301,8.016793302518993e-301,8.014794102219112e-301,8.012794901919233e-301,8.010795701619352e-301,8.008796501319472e-301,8.006797301019592e-301,8.004798100719713e-301,8.002798900419832e-301,8.000799700119952e-301,7.998800499820072e-301,7.996801299520194e-301,7.994802099220312e-301,7.992802898920432e-301,7.990803698620552e-301,7.988804498320672e-301,7.986805298020792e-301,7.984806097720912e-301,7.98280689742103e-301,7.98080769712115e-301,7.978808496821272e-301,7.976809296521392e-301,7.974810096221512e-301,7.97281089592163e-301,7.970811695621752e-301,7.96881249532187e-301,7.966813295021992e-301,7.964814094722112e-301,7.962814894422232e-301,7.96081569412235e-301,7.95881649382247e-301,7.956817293522592e-301,7.95481809322271e-301,7.95281889292283e-301,7.95081969262295e-301,7.94882049232307e-301,7.946821292023191e-301,7.944822091723311e-301,7.942822891423431e-301,7.940823691123551e-301,7.938824490823671e-301,7.936825290523791e-301,7.93482609022391e-301,7.932826889924031e-301,7.930827689624151e-301,7.92882848932427e-301,7.926829289024391e-301,7.92483008872451e-301,7.922830888424631e-301,7.92083168812475e-301,7.918832487824871e-301,7.916833287524991e-301,7.91483408722511e-301,7.91283488692523e-301,7.910835686625351e-301,7.90883648632547e-301,7.90683728602559e-301,7.90483808572571e-301,7.90283888542583e-301,7.90083968512595e-301,7.89884048482607e-301,7.89684128452619e-301,7.894842084226308e-301,7.89284288392643e-301,7.89084368362655e-301,7.88884448332667e-301,7.886845283026788e-301,7.88484608272691e-301,7.88284688242703e-301,7.88084768212715e-301,7.87884848182727e-301,7.876849281527388e-301,7.874850081227508e-301,7.872850880927628e-301,7.87085168062775e-301,7.86885248032787e-301,7.866853280027989e-301,7.864854079728109e-301,7.86285487942823e-301,7.860855679128349e-301,7.858856478828469e-301,7.856857278528589e-301,7.854858078228709e-301,7.852858877928829e-301,7.850859677628949e-301,7.848860477329069e-301,7.846861277029187e-301,7.844862076729309e-301,7.842862876429429e-301,7.840863676129549e-301,7.838864475829667e-301,7.836865275529789e-301,7.834866075229907e-301,7.832866874930029e-301,7.830867674630149e-301,7.828868474330269e-301,7.826869274030387e-301,7.824870073730507e-301,7.822870873430629e-301,7.820871673130747e-301,7.818872472830867e-301,7.816873272530987e-301,7.814874072231107e-301,7.812874871931228e-301,7.810875671631348e-301,7.808876471331468e-301,7.806877271031588e-301,7.804878070731708e-301,7.802878870431828e-301,7.800879670131946e-301,7.798880469832068e-301,7.796881269532188e-301,7.794882069232308e-301,7.792882868932428e-301,7.790883668632546e-301,7.788884468332668e-301,7.786885268032786e-301,7.784886067732908e-301,7.782886867433028e-301,7.780887667133146e-301,7.778888466833266e-301,7.776889266533388e-301,7.774890066233508e-301,7.772890865933626e-301,7.770891665633746e-301,7.768892465333866e-301,7.766893265033986e-301,7.764894064734106e-301,7.762894864434226e-301,7.760895664134345e-301,7.758896463834467e-301,7.756897263534587e-301,7.754898063234708e-301,7.752898862934825e-301,7.750899662634947e-301,7.748900462335067e-301,7.746901262035187e-301,7.744902061735307e-301,7.742902861435427e-301,7.740903661135545e-301,7.738904460835665e-301,7.736905260535787e-301,7.734906060235907e-301,7.732906859936025e-301,7.730907659636145e-301,7.728908459336267e-301,7.726909259036385e-301,7.724910058736505e-301,7.722910858436625e-301,7.720911658136745e-301,7.718912457836865e-301,7.716913257536985e-301,7.714914057237105e-301,7.712914856937225e-301,7.710915656637345e-301,7.708916456337465e-301,7.706917256037586e-301,7.704918055737704e-301,7.702918855437826e-301,7.700919655137944e-301,7.698920454838066e-301,7.696921254538186e-301,7.694922054238306e-301,7.692922853938424e-301,7.690923653638546e-301,7.688924453338666e-301,7.686925253038784e-301,7.684926052738904e-301,7.682926852439024e-301,7.680927652139146e-301,7.678928451839264e-301,7.676929251539384e-301,7.674930051239504e-301,7.672930850939624e-301,7.670931650639744e-301,7.668932450339866e-301,7.666933250039983e-301,7.664934049740104e-301,7.662934849440224e-301,7.660935649140344e-301,7.658936448840464e-301,7.656937248540583e-301,7.654938048240704e-301,7.652938847940823e-301,7.650939647640945e-301,7.648940447341065e-301,7.646941247041183e-301,7.644942046741303e-301,7.642942846441425e-301,7.640943646141545e-301,7.638944445841663e-301,7.636945245541783e-301,7.634946045241903e-301,7.632946844942023e-301,7.630947644642143e-301,7.628948444342263e-301,7.626949244042382e-301,7.624950043742503e-301,7.622950843442623e-301,7.620951643142745e-301,7.618952442842862e-301,7.616953242542983e-301,7.614954042243103e-301,7.612954841943223e-301,7.610955641643343e-301,7.608956441343463e-301,7.606957241043582e-301,7.604958040743702e-301,7.602958840443823e-301,7.600959640143942e-301,7.598960439844062e-301,7.596961239544182e-301,7.594962039244304e-301,7.592962838944422e-301,7.590963638644542e-301,7.588964438344662e-301,7.586965238044784e-301,7.584966037744902e-301,7.582966837445022e-301,7.580967637145142e-301,7.578968436845262e-301,7.576969236545382e-301,7.574970036245502e-301,7.572970835945622e-301,7.57097163564574e-301,7.568972435345862e-301,7.566973235045982e-301,7.564974034746102e-301,7.562974834446222e-301,7.560975634146342e-301,7.55897643384646e-301,7.556977233546582e-301,7.554978033246702e-301,7.55297883294682e-301,7.55097963264694e-301,7.54898043234706e-301,7.546981232047182e-301,7.544982031747301e-301,7.542982831447421e-301,7.540983631147541e-301,7.538984430847661e-301,7.536985230547781e-301,7.534986030247903e-301,7.53298682994802e-301,7.530987629648141e-301,7.528988429348261e-301,7.526989229048381e-301,7.524990028748501e-301,7.522990828448621e-301,7.520991628148741e-301,7.51899242784886e-301,7.516993227548981e-301,7.5149940272491e-301,7.51299482694922e-301,7.51099562664934e-301,7.508996426349461e-301,7.506997226049581e-301,7.5049980257497e-301,7.50299882544982e-301,7.500999625149941e-301,7.49900042485006e-301,7.49700122455018e-301,7.4950020242503e-301,7.49300282395042e-301,7.49100362365054e-301,7.48900442335066e-301,7.487005223050782e-301,7.485006022750898e-301,7.48300682245102e-301,7.48100762215114e-301,7.47900842185126e-301,7.47700922155138e-301,7.4750100212515e-301,7.47301082095162e-301,7.47101162065174e-301,7.46901242035186e-301,7.467013220051978e-301,7.4650140197520985e-301,7.463014819452219e-301,7.461015619152339e-301,7.4590164188524594e-301,7.457017218552579e-301,7.455018018252699e-301,7.4530188179528195e-301,7.451019617652939e-301,7.4490204173530595e-301,7.447021217053179e-301,7.445022016753298e-301,7.443022816453419e-301,7.44102361615354e-301,7.439024415853659e-301,7.437025215553778e-301,7.435026015253899e-301,7.433026814954019e-301,7.431027614654139e-301,7.429028414354258e-301,7.427029214054378e-301,7.425030013754497e-301,7.423030813454618e-301,7.421031613154739e-301,7.419032412854857e-301,7.4170332125549775e-301,7.415034012255098e-301,7.413034811955219e-301,7.411035611655338e-301,7.4090364113554576e-301,7.407037211055578e-301,7.405038010755698e-301,7.403038810455818e-301,7.4010396101559385e-301,7.399040409856058e-301,7.397041209556177e-301,7.395042009256298e-301,7.3930428089564186e-301,7.391043608656538e-301,7.389044408356657e-301,7.387045208056778e-301,7.385046007756897e-301,7.383046807457018e-301,7.381047607157137e-301,7.379048406857258e-301,7.377049206557377e-301,7.375050006257497e-301,7.373050805957618e-301,7.371051605657736e-301,7.369052405357856e-301,7.367053205057977e-301,7.3650540047580964e-301,7.363054804458217e-301,7.3610556041583365e-301,7.359056403858457e-301,7.3570572035585765e-301,7.355058003258697e-301,7.353058802958817e-301,7.351059602658936e-301,7.349060402359057e-301,7.347061202059177e-301,7.345062001759296e-301,7.343062801459416e-301,7.341063601159536e-301,7.339064400859657e-301,7.337065200559776e-301,7.335066000259897e-301,7.333066799960016e-301,7.331067599660135e-301,7.329068399360256e-301,7.327069199060377e-301,7.325069998760496e-301,7.323070798460615e-301,7.321071598160736e-301,7.319072397860856e-301,7.317073197560975e-301,7.315073997261096e-301,7.3130747969612154e-301,7.311075596661335e-301,7.3090763963614555e-301,7.307077196061576e-301,7.305077995761697e-301,7.303078795461815e-301,7.3010795951619356e-301,7.2990803948620564e-301,7.297081194562176e-301,7.295081994262295e-301,7.293082793962415e-301,7.291083593662535e-301,7.289084393362655e-301,7.287085193062776e-301,7.285085992762895e-301,7.283086792463014e-301,7.281087592163135e-301,7.279088391863256e-301,7.277089191563375e-301,7.275089991263494e-301,7.273090790963615e-301,7.271091590663734e-301,7.269092390363855e-301,7.267093190063975e-301,7.265093989764094e-301,7.263094789464214e-301,7.261095589164334e-301,7.259096388864455e-301,7.257097188564573e-301,7.255097988264694e-301,7.2530987879648145e-301,7.251099587664934e-301,7.2491003873650545e-301,7.247101187065174e-301,7.245101986765295e-301,7.243102786465414e-301,7.241103586165535e-301,7.239104385865655e-301,7.237105185565773e-301,7.235105985265893e-301,7.233106784966014e-301,7.231107584666133e-301,7.229108384366254e-301,7.227109184066373e-301,7.225109983766494e-301,7.223110783466613e-301,7.221111583166734e-301,7.219112382866854e-301,7.2171131825669724e-301,7.215113982267093e-301,7.213114781967213e-301,7.211115581667334e-301,7.2091163813674525e-301,7.2071171810675726e-301,7.2051179807676934e-301,7.203118780467813e-301,7.2011195801679335e-301,7.199120379868053e-301,7.197121179568172e-301,7.195121979268293e-301,7.1931227789684136e-301,7.191123578668534e-301,7.189124378368652e-301,7.187125178068773e-301,7.185125977768893e-301,7.183126777469012e-301,7.181127577169133e-301,7.179128376869252e-301,7.177129176569371e-301,7.175129976269492e-301,7.173130775969613e-301,7.171131575669734e-301,7.169132375369851e-301,7.167133175069972e-301,7.165133974770093e-301,7.163134774470212e-301,7.1611355741703315e-301,7.159136373870452e-301,7.1571371735705715e-301,7.1551379732706916e-301,7.153138772970812e-301,7.151139572670932e-301,7.149140372371051e-301,7.147141172071172e-301,7.1451419717712925e-301,7.143142771471412e-301,7.141143571171531e-301,7.139144370871652e-301,7.137145170571771e-301,7.135145970271892e-301,7.133146769972012e-301,7.131147569672132e-301,7.129148369372251e-301,7.127149169072371e-301,7.125149968772492e-301,7.12315076847261e-301,7.12115156817273e-301,7.119152367872851e-301,7.117153167572972e-301,7.115153967273091e-301,7.11315476697321e-301,7.111155566673331e-301,7.1091563663734505e-301,7.107157166073571e-301,7.105157965773691e-301,7.10315876547381e-301,7.1011595651739306e-301,7.0991603648740506e-301,7.0971611645741714e-301,7.095161964274291e-301,7.09316276397441e-301,7.091163563674531e-301,7.08916436337465e-301,7.087165163074771e-301,7.0851659627748916e-301,7.083166762475009e-301,7.08116756217513e-301,7.079168361875251e-301,7.077169161575371e-301,7.075169961275489e-301,7.073170760975609e-301,7.07117156067573e-301,7.069172360375849e-301,7.06717316007597e-301,7.065173959776089e-301,7.0631747594762085e-301,7.061175559176329e-301,7.05917635887645e-301,7.057177158576571e-301,7.055177958276689e-301,7.0531787579768095e-301,7.0511795576769295e-301,7.0491803573770495e-301,7.0471811570771696e-301,7.045181956777289e-301,7.043182756477409e-301,7.041183556177529e-301,7.03918435587765e-301,7.037185155577769e-301,7.035185955277888e-301,7.033186754978009e-301,7.03118755467813e-301,7.029188354378249e-301,7.027189154078368e-301,7.025189953778489e-301,7.023190753478609e-301,7.021191553178729e-301,7.019192352878849e-301,7.017193152578968e-301,7.0151939522790875e-301,7.013194751979208e-301,7.011195551679329e-301,7.009196351379448e-301,7.0071971510795676e-301,7.0051979507796884e-301,7.003198750479809e-301,7.0011995501799285e-301,6.9992003498800485e-301,6.9972011495801685e-301,6.995201949280288e-301,6.993202748980408e-301,6.991203548680529e-301,6.989204348380647e-301,6.987205148080767e-301,6.985205947780888e-301,6.983206747481009e-301,6.981207547181128e-301,6.979208346881247e-301,6.977209146581368e-301,6.975209946281487e-301,6.973210745981608e-301,6.971211545681728e-301,6.969212345381846e-301,6.967213145081967e-301,6.965213944782087e-301,6.963214744482208e-301,6.961215544182327e-301,6.9592163438824465e-301,6.957217143582567e-301,6.9552179432826865e-301,6.953218742982807e-301,6.951219542682927e-301,6.949220342383046e-301,6.947221142083167e-301,6.9452219417832875e-301,6.9432227414834075e-301,6.941223541183526e-301,6.939224340883647e-301,6.937225140583767e-301,6.935225940283886e-301,6.933226739984007e-301,6.931227539684126e-301,6.929228339384247e-301,6.927229139084366e-301,6.925229938784487e-301,6.923230738484608e-301,6.921231538184725e-301,6.919232337884846e-301,6.917233137584967e-301,6.915233937285086e-301,6.913234736985206e-301,6.911235536685326e-301,6.909236336385446e-301,6.9072371360855655e-301,6.905237935785686e-301,6.9032387354858055e-301,6.901239535185925e-301,6.8992403348860456e-301,6.8972411345861664e-301,6.895241934286286e-301,6.893242733986405e-301,6.891243533686526e-301,6.889244333386646e-301,6.887245133086766e-301,6.885245932786886e-301,6.883246732487005e-301,6.881247532187125e-301,6.879248331887245e-301,6.877249131587366e-301,6.875249931287485e-301,6.873250730987604e-301,6.871251530687725e-301,6.869252330387846e-301,6.867253130087965e-301,6.865253929788084e-301,6.863254729488205e-301,6.861255529188324e-301,6.859256328888445e-301,6.857257128588565e-301,6.855257928288684e-301,6.853258727988804e-301,6.8512595276889245e-301,6.849260327389045e-301,6.8472611270891646e-301,6.845261926789284e-301,6.843262726489405e-301,6.841263526189524e-301,6.839264325889645e-301,6.8372651255897655e-301,6.835265925289885e-301,6.833266724990004e-301,6.831267524690124e-301,6.829268324390245e-301,6.827269124090364e-301,6.825269923790483e-301,6.823270723490604e-301,6.821271523190723e-301,6.819272322890844e-301,6.817273122590963e-301,6.815273922291084e-301,6.813274721991203e-301,6.811275521691324e-301,6.809276321391444e-301,6.8072771210915626e-301,6.805277920791683e-301,6.8032787204918034e-301,6.8012795201919235e-301,6.7992803198920435e-301,6.797281119592163e-301,6.7952819192922835e-301,6.793282718992403e-301,6.7912835186925236e-301,6.7892843183926444e-301,6.787285118092762e-301,6.785285917792883e-301,6.783286717493004e-301,6.781287517193123e-301,6.779288316893242e-301,6.777289116593363e-301,6.775289916293483e-301,6.773290715993602e-301,6.771291515693723e-301,6.769292315393842e-301,6.767293115093961e-301,6.765293914794082e-301,6.763294714494203e-301,6.761295514194324e-301,6.7592963138944415e-301,6.757297113594562e-301,6.755297913294683e-301,6.753298712994802e-301,6.7512995126949224e-301,6.7493003123950424e-301,6.747301112095162e-301,6.745301911795282e-301,6.7433027114954025e-301,6.741303511195523e-301,6.739304310895641e-301,6.737305110595762e-301,6.735305910295883e-301,6.733306709996002e-301,6.731307509696121e-301,6.729308309396242e-301,6.727309109096361e-301,6.725309908796482e-301,6.723310708496602e-301,6.721311508196721e-301,6.719312307896841e-301,6.717313107596961e-301,6.715313907297082e-301,6.713314706997201e-301,6.7113155066973204e-301,6.709316306397441e-301,6.7073171060975605e-301,6.705317905797681e-301,6.703318705497802e-301,6.701319505197921e-301,6.6993203048980406e-301,6.6973211045981614e-301,6.6953219042982814e-301,6.6933227039984e-301,6.691323503698521e-301,6.689324303398641e-301,6.68732510309876e-301,6.685325902798881e-301,6.683326702499e-301,6.681327502199121e-301,6.67932830189924e-301,6.677329101599361e-301,6.675329901299482e-301,6.673330700999599e-301,6.67133150069972e-301,6.669332300399841e-301,6.667333100099961e-301,6.66533389980008e-301,6.663334699500199e-301,6.66133549920032e-301,6.659336298900439e-301,6.65733709860056e-301,6.655337898300681e-301,6.653338698000799e-301,6.6513394977009195e-301,6.64934029740104e-301,6.64734109710116e-301,6.645341896801279e-301,6.6433426965014e-301,6.64134349620152e-301,6.63934429590164e-301,6.63734509560176e-301,6.635345895301879e-301,6.633346695001998e-301,6.631347494702119e-301,6.62934829440224e-301,6.627349094102361e-301,6.625349893802478e-301,6.623350693502599e-301,6.62135149320272e-301,6.619352292902839e-301,6.61735309260296e-301,6.615353892303079e-301,6.613354692003198e-301,6.611355491703318e-301,6.609356291403439e-301,6.60735709110356e-301,6.6053578908036776e-301,6.6033586905037984e-301,6.601359490203919e-301,6.5993602899040385e-301,6.597361089604158e-301,6.5953618893042785e-301,6.593362689004398e-301,6.5913634887045186e-301,6.589364288404639e-301,6.587365088104759e-301,6.585365887804878e-301,6.583366687504998e-301,6.581367487205119e-301,6.579368286905238e-301,6.577369086605357e-301,6.575369886305478e-301,6.573370686005599e-301,6.571371485705718e-301,6.569372285405839e-301,6.567373085105958e-301,6.565373884806077e-301,6.563374684506198e-301,6.561375484206318e-301,6.5593762839064365e-301,6.557377083606557e-301,6.555377883306677e-301,6.553378683006798e-301,6.551379482706917e-301,6.549380282407037e-301,6.5473810821071575e-301,6.545381881807277e-301,6.5433826815073975e-301,6.541383481207518e-301,6.539384280907636e-301,6.537385080607757e-301,6.535385880307878e-301,6.533386680007998e-301,6.531387479708117e-301,6.529388279408237e-301,6.527389079108357e-301,6.525389878808476e-301,6.523390678508597e-301,6.521391478208718e-301,6.519392277908835e-301,6.517393077608956e-301,6.515393877309077e-301,6.513394677009198e-301,6.511395476709315e-301,6.509396276409436e-301,6.507397076109557e-301,6.505397875809676e-301,6.503398675509796e-301,6.5013994752099155e-301,6.4994002749100356e-301,6.4974010746101556e-301,6.4954018743102764e-301,6.493402674010397e-301,6.491403473710515e-301,6.489404273410636e-301,6.4874050731107565e-301,6.485405872810876e-301,6.483406672510997e-301,6.481407472211116e-301,6.479408271911236e-301,6.477409071611356e-301,6.475409871311476e-301,6.473410671011595e-301,6.471411470711715e-301,6.469412270411835e-301,6.467413070111956e-301,6.465413869812075e-301,6.463414669512194e-301,6.461415469212315e-301,6.459416268912436e-301,6.457417068612555e-301,6.455417868312676e-301,6.453418668012795e-301,6.4514194677129145e-301,6.449420267413035e-301,6.447421067113155e-301,6.4454218668132746e-301,6.443422666513394e-301,6.441423466213515e-301,6.4394242659136355e-301,6.437425065613755e-301,6.4354258653138755e-301,6.433426665013995e-301,6.431427464714114e-301,6.429428264414235e-301,6.427429064114355e-301,6.425429863814473e-301,6.423430663514594e-301,6.421431463214714e-301,6.419432262914835e-301,6.417433062614954e-301,6.415433862315073e-301,6.413434662015194e-301,6.411435461715313e-301,6.409436261415434e-301,6.407437061115555e-301,6.4054378608156726e-301,6.4034386605157934e-301,6.401439460215914e-301,6.399440259916034e-301,6.397441059616154e-301,6.3954418593162735e-301,6.3934426590163935e-301,6.391443458716513e-301,6.389444258416634e-301,6.387445058116753e-301,6.385445857816874e-301,6.383446657516993e-301,6.381447457217114e-301,6.3794482569172345e-301,6.377449056617352e-301,6.375449856317473e-301,6.373450656017594e-301,6.371451455717713e-301,6.369452255417833e-301,6.367453055117953e-301,6.365453854818073e-301,6.363454654518192e-301,6.361455454218313e-301,6.359456253918434e-301,6.3574570536185515e-301,6.355457853318672e-301,6.353458653018793e-301,6.351459452718912e-301,6.349460252419033e-301,6.3474610521191525e-301,6.345461851819273e-301,6.3434626515193925e-301,6.3414634512195125e-301,6.3394642509196326e-301,6.337465050619752e-301,6.335465850319872e-301,6.333466650019993e-301,6.331467449720112e-301,6.329468249420231e-301,6.327469049120352e-301,6.325469848820473e-301,6.323470648520592e-301,6.321471448220713e-301,6.319472247920832e-301,6.317473047620951e-301,6.315473847321072e-301,6.313474647021192e-301,6.311475446721311e-301,6.309476246421431e-301,6.307477046121551e-301,6.305477845821672e-301,6.303478645521791e-301,6.3014794452219105e-301,6.299480244922031e-301,6.2974810446221506e-301,6.2954818443222714e-301,6.293482644022392e-301,6.2914834437225115e-301,6.289484243422631e-301,6.2874850431227515e-301,6.2854858428228716e-301,6.283486642522991e-301,6.28148744222311e-301,6.279488241923231e-301,6.27748904162335e-301,6.275489841323471e-301,6.273490641023592e-301,6.271491440723711e-301,6.26949224042383e-301,6.267493040123951e-301,6.265493839824072e-301,6.263494639524191e-301,6.26149543922431e-301,6.25949623892443e-301,6.25749703862455e-301,6.25549783832467e-301,6.2534986380247895e-301,6.25149943772491e-301,6.2495002374250295e-301,6.24750103712515e-301,6.245501836825271e-301,6.243502636525389e-301,6.24150343622551e-301,6.2395042359256305e-301,6.23750503562575e-301,6.2355058353258705e-301,6.23350663502599e-301,6.23150743472611e-301,6.22950823442623e-301,6.22750903412635e-301,6.225509833826471e-301,6.223510633526588e-301,6.221511433226709e-301,6.21951223292683e-301,6.217513032626949e-301,6.215513832327068e-301,6.213514632027189e-301,6.21151543172731e-301,6.209516231427429e-301,6.207517031127549e-301,6.205517830827669e-301,6.2035186305277884e-301,6.2015194302279084e-301,6.199520229928029e-301,6.19752102962815e-301,6.195521829328268e-301,6.1935226290283885e-301,6.191523428728509e-301,6.189524228428629e-301,6.1875250281287494e-301,6.185525827828869e-301,6.183526627528988e-301,6.181527427229109e-301,6.179528226929229e-301,6.1775290266293496e-301,6.175529826329468e-301,6.173530626029588e-301,6.171531425729709e-301,6.169532225429828e-301,6.167533025129947e-301,6.165533824830068e-301,6.163534624530187e-301,6.161535424230308e-301,6.159536223930429e-301,6.157537023630548e-301,6.155537823330667e-301,6.153538623030788e-301,6.151539422730908e-301,6.1495402224310274e-301,6.1475410221311474e-301,6.1455418218312675e-301,6.143542621531387e-301,6.1415434212315075e-301,6.139544220931628e-301,6.1375450206317476e-301,6.135545820331867e-301,6.133546620031988e-301,6.1315474197321085e-301,6.129548219432226e-301,6.127549019132347e-301,6.125549818832468e-301,6.123550618532587e-301,6.121551418232707e-301,6.119552217932827e-301,6.117553017632947e-301,6.115553817333066e-301,6.113554617033187e-301,6.111555416733306e-301,6.109556216433427e-301,6.107557016133546e-301,6.105557815833667e-301,6.103558615533787e-301,6.101559415233906e-301,6.099560214934027e-301,6.097561014634146e-301,6.0955618143342664e-301,6.0935626140343864e-301,6.091563413734506e-301,6.0895642134346265e-301,6.087565013134746e-301,6.0855658128348665e-301,6.083566612534986e-301,6.081567412235106e-301,6.079568211935227e-301,6.077569011635346e-301,6.075569811335467e-301,6.073570611035586e-301,6.071571410735706e-301,6.069572210435826e-301,6.067573010135946e-301,6.065573809836066e-301,6.063574609536185e-301,6.061575409236306e-301,6.059576208936425e-301,6.057577008636545e-301,6.055577808336666e-301,6.053578608036785e-301,6.051579407736906e-301,6.049580207437025e-301,6.047581007137145e-301,6.045581806837265e-301,6.043582606537385e-301,6.0415834062375054e-301,6.039584205937625e-301,6.037585005637745e-301,6.035585805337865e-301,6.033586605037985e-301,6.031587404738105e-301,6.029588204438225e-301,6.027589004138345e-301,6.025589803838465e-301,6.023590603538585e-301,6.021591403238705e-301,6.019592202938825e-301,6.017593002638945e-301,6.015593802339065e-301,6.013594602039184e-301,6.011595401739304e-301,6.009596201439424e-301,6.007597001139543e-301,6.005597800839664e-301,6.003598600539784e-301,6.001599400239904e-301,5.999600199940024e-301,5.9976009996401435e-301,5.995601799340264e-301,5.993602599040384e-301,5.991603398740504e-301,5.989604198440624e-301,5.987604998140744e-301,5.985605797840864e-301,5.983606597540984e-301,5.981607397241104e-301,5.979608196941224e-301,5.977608996641343e-301,5.975609796341464e-301,5.973610596041583e-301,5.971611395741704e-301,5.969612195441824e-301,5.967612995141944e-301,5.965613794842064e-301,5.963614594542183e-301,5.961615394242304e-301,5.959616193942423e-301,5.957616993642543e-301,5.955617793342663e-301,5.953618593042782e-301,5.951619392742903e-301,5.949620192443022e-301,5.947620992143143e-301,5.9456217918432625e-301,5.9436225915433825e-301,5.941623391243503e-301,5.9396241909436225e-301,5.937624990643743e-301,5.935625790343863e-301,5.933626590043983e-301,5.931627389744103e-301,5.929628189444222e-301,5.927628989144343e-301,5.925629788844462e-301,5.923630588544582e-301,5.921631388244702e-301,5.919632187944822e-301,5.917632987644943e-301,5.915633787345062e-301,5.913634587045182e-301,5.911635386745302e-301,5.909636186445422e-301,5.907636986145542e-301,5.905637785845662e-301,5.903638585545781e-301,5.901639385245901e-301,5.899640184946021e-301,5.897640984646141e-301,5.8956417843462614e-301,5.8936425840463814e-301,5.8916433837465015e-301,5.8896441834466215e-301,5.8876449831467415e-301,5.8856457828468615e-301,5.8836465825469816e-301,5.881647382247102e-301,5.879648181947222e-301,5.877648981647342e-301,5.875649781347461e-301,5.873650581047581e-301,5.871651380747701e-301,5.869652180447821e-301,5.867652980147941e-301,5.865653779848061e-301,5.863654579548181e-301,5.861655379248301e-301,5.85965617894842e-301,5.857656978648541e-301,5.855657778348661e-301,5.853658578048781e-301,5.851659377748901e-301,5.84966017744902e-301,5.84766097714914e-301,5.84566177684926e-301,5.84366257654938e-301,5.8416633762495004e-301,5.83966417594962e-301,5.8376649756497405e-301,5.83566577534986e-301,5.8336665750499805e-301,5.8316673747501005e-301,5.82966817445022e-301,5.827668974150341e-301,5.82566977385046e-301,5.82367057355058e-301,5.8216713732507e-301,5.819672172950819e-301,5.81767297265094e-301,5.815673772351059e-301,5.81367457205118e-301,5.811675371751299e-301,5.809676171451419e-301,5.80767697115154e-301,5.805677770851659e-301,5.80367857055178e-301,5.801679370251899e-301,5.799680169952019e-301,5.797680969652139e-301,5.795681769352259e-301,5.793682569052379e-301,5.7916833687524986e-301,5.789684168452619e-301,5.787684968152739e-301,5.785685767852859e-301,5.7836865675529795e-301,5.781687367253099e-301,5.7796881669532195e-301,5.777688966653339e-301,5.775689766353459e-301,5.77369056605358e-301,5.771691365753699e-301,5.769692165453819e-301,5.767692965153939e-301,5.765693764854058e-301,5.763694564554178e-301,5.761695364254298e-301,5.759696163954419e-301,5.757696963654538e-301,5.755697763354658e-301,5.753698563054778e-301,5.751699362754898e-301,5.749700162455018e-301,5.747700962155138e-301,5.745701761855258e-301,5.743702561555378e-301,5.741703361255498e-301,5.7397041609556175e-301,5.7377049606557376e-301,5.7357057603558576e-301,5.733706560055978e-301,5.731707359756098e-301,5.729708159456218e-301,5.727708959156338e-301,5.725709758856457e-301,5.723710558556578e-301,5.721711358256698e-301,5.719712157956818e-301,5.717712957656938e-301,5.715713757357057e-301,5.713714557057177e-301,5.711715356757297e-301,5.709716156457417e-301,5.707716956157537e-301,5.705717755857656e-301,5.703718555557777e-301,5.701719355257896e-301,5.699720154958017e-301,5.697720954658137e-301,5.695721754358257e-301,5.693722554058377e-301,5.6917233537584965e-301,5.689724153458617e-301,5.6877249531587365e-301,5.6857257528588565e-301,5.6837265525589766e-301,5.681727352259096e-301,5.679728151959217e-301,5.677728951659336e-301,5.675729751359457e-301,5.673730551059577e-301,5.671731350759696e-301,5.669732150459817e-301,5.667732950159936e-301,5.665733749860057e-301,5.663734549560176e-301,5.661735349260296e-301,5.659736148960416e-301,5.657736948660536e-301,5.655737748360656e-301,5.653738548060775e-301,5.651739347760895e-301,5.649740147461016e-301,5.647740947161135e-301,5.645741746861256e-301,5.643742546561375e-301,5.6417433462614954e-301,5.6397441459616154e-301,5.6377449456617355e-301,5.6357457453618555e-301,5.6337465450619755e-301,5.6317473447620955e-301,5.629748144462215e-301,5.627748944162335e-301,5.625749743862456e-301,5.623750543562575e-301,5.621751343262695e-301,5.619752142962815e-301,5.617752942662935e-301,5.615753742363055e-301,5.613754542063175e-301,5.611755341763295e-301,5.609756141463415e-301,5.607756941163535e-301,5.605757740863655e-301,5.603758540563774e-301,5.601759340263895e-301,5.599760139964014e-301,5.597760939664134e-301,5.595761739364254e-301,5.593762539064374e-301,5.591763338764494e-301,5.589764138464614e-301,5.5877649381647344e-301,5.5857657378648544e-301,5.5837665375649745e-301,5.5817673372650945e-301,5.5797681369652145e-301,5.577768936665334e-301,5.575769736365454e-301,5.573770536065574e-301,5.571771335765694e-301,5.569772135465814e-301,5.567772935165933e-301,5.565773734866054e-301,5.563774534566174e-301,5.561775334266294e-301,5.559776133966414e-301,5.557776933666533e-301,5.555777733366654e-301,5.553778533066773e-301,5.551779332766893e-301,5.549780132467013e-301,5.547780932167133e-301,5.545781731867253e-301,5.5437825315673725e-301,5.541783331267493e-301,5.539784130967613e-301,5.5377849306677325e-301,5.535785730367853e-301,5.533786530067973e-301,5.5317873297680935e-301,5.529788129468213e-301,5.527788929168333e-301,5.525789728868453e-301,5.523790528568573e-301,5.521791328268693e-301,5.519792127968812e-301,5.517792927668932e-301,5.515793727369053e-301,5.513794527069172e-301,5.511795326769293e-301,5.509796126469412e-301,5.507796926169533e-301,5.505797725869652e-301,5.503798525569772e-301,5.501799325269893e-301,5.499800124970012e-301,5.497800924670132e-301,5.495801724370252e-301,5.4938025240703714e-301,5.491803323770492e-301,5.4898041234706115e-301,5.487804923170732e-301,5.4858057228708515e-301,5.4838065225709716e-301,5.4818073222710916e-301,5.479808121971212e-301,5.4778089216713325e-301,5.475809721371452e-301,5.473810521071572e-301,5.471811320771692e-301,5.469812120471812e-301,5.467812920171931e-301,5.465813719872051e-301,5.463814519572171e-301,5.461815319272291e-301,5.459816118972411e-301,5.457816918672531e-301,5.455817718372651e-301,5.453818518072771e-301,5.451819317772891e-301,5.449820117473011e-301,5.447820917173131e-301,5.445821716873251e-301,5.44382251657337e-301,5.44182331627349e-301,5.4398241159736104e-301,5.4378249156737305e-301,5.4358257153738505e-301,5.43382651507397e-301,5.4318273147740905e-301,5.4298281144742106e-301,5.4278289141743306e-301,5.425829713874451e-301,5.42383051357457e-301,5.421831313274691e-301,5.41983211297481e-301,5.417832912674931e-301,5.41583371237505e-301,5.41383451207517e-301,5.41183531177529e-301,5.409836111475409e-301,5.40783691117553e-301,5.40583771087565e-301,5.40383851057577e-301,5.40183931027589e-301,5.399840109976009e-301,5.39784090967613e-301,5.395841709376249e-301,5.39384250907637e-301,5.39184330877649e-301,5.389844108476609e-301,5.3878449081767294e-301,5.3858457078768494e-301,5.3838465075769695e-301,5.381847307277089e-301,5.379848106977209e-301,5.3778489066773295e-301,5.375849706377449e-301,5.37385050607757e-301,5.371851305777689e-301,5.369852105477809e-301,5.36785290517793e-301,5.365853704878049e-301,5.36385450457817e-301,5.361855304278289e-301,5.359856103978409e-301,5.357856903678528e-301,5.355857703378648e-301,5.353858503078769e-301,5.351859302778888e-301,5.349860102479008e-301,5.347860902179128e-301,5.345861701879248e-301,5.343862501579369e-301,5.341863301279488e-301,5.339864100979608e-301,5.337864900679728e-301,5.335865700379848e-301,5.3338665000799684e-301,5.331867299780088e-301,5.329868099480208e-301,5.327868899180328e-301,5.325869698880448e-301,5.323870498580568e-301,5.321871298280688e-301,5.319872097980809e-301,5.317872897680928e-301,5.315873697381048e-301,5.313874497081168e-301,5.311875296781288e-301,5.309876096481408e-301,5.307876896181528e-301,5.305877695881648e-301,5.303878495581767e-301,5.301879295281887e-301,5.299880094982007e-301,5.297880894682127e-301,5.295881694382246e-301,5.293882494082367e-301,5.291883293782487e-301,5.289884093482607e-301,5.287884893182727e-301,5.2858856928828465e-301,5.283886492582967e-301,5.281887292283087e-301,5.2798880919832074e-301,5.277888891683327e-301,5.275889691383447e-301,5.273890491083567e-301,5.271891290783686e-301,5.269892090483807e-301,5.267892890183927e-301,5.265893689884046e-301,5.263894489584167e-301,5.261895289284286e-301,5.259896088984407e-301,5.257896888684527e-301,5.255897688384646e-301,5.253898488084767e-301,5.251899287784886e-301,5.249900087485006e-301,5.247900887185125e-301,5.245901686885245e-301,5.243902486585366e-301,5.241903286285485e-301,5.239904085985606e-301,5.2379048856857255e-301,5.2359056853858455e-301,5.233906485085966e-301,5.2319072847860855e-301,5.229908084486206e-301,5.2279088841863256e-301,5.225909683886446e-301,5.223910483586566e-301,5.221911283286685e-301,5.219912082986806e-301,5.217912882686925e-301,5.215913682387046e-301,5.213914482087165e-301,5.211915281787285e-301,5.209916081487405e-301,5.207916881187525e-301,5.205917680887646e-301,5.203918480587765e-301,5.201919280287885e-301,5.199920079988005e-301,5.197920879688125e-301,5.195921679388245e-301,5.193922479088364e-301,5.191923278788484e-301,5.189924078488604e-301,5.187924878188724e-301,5.1859256778888444e-301,5.1839264775889645e-301,5.1819272772890845e-301,5.1799280769892045e-301,5.1779288766893245e-301,5.1759296763894446e-301,5.1739304760895646e-301,5.171931275789685e-301,5.169932075489805e-301,5.167932875189924e-301,5.165933674890044e-301,5.163934474590164e-301,5.161935274290283e-301,5.159936073990404e-301,5.157936873690524e-301,5.155937673390644e-301,5.153938473090764e-301,5.151939272790883e-301,5.149940072491004e-301,5.147940872191124e-301,5.145941671891244e-301,5.143942471591364e-301,5.141943271291483e-301,5.139944070991603e-301,5.1379448706917225e-301,5.135945670391843e-301,5.133946470091963e-301,5.1319472697920834e-301,5.1299480694922035e-301,5.127948869192323e-301,5.1259496688924435e-301,5.1239504685925635e-301,5.1219512682926836e-301,5.1199520679928036e-301,5.117952867692923e-301,5.115953667393043e-301,5.113954467093163e-301,5.111955266793283e-301,5.109956066493403e-301,5.107956866193522e-301,5.105957665893643e-301,5.103958465593762e-301,5.101959265293883e-301,5.099960064994002e-301,5.097960864694122e-301,5.095961664394243e-301,5.093962464094362e-301,5.091963263794483e-301,5.089964063494602e-301,5.087964863194722e-301,5.085965662894842e-301,5.0839664625949615e-301,5.081967262295082e-301,5.079968061995202e-301,5.077968861695322e-301,5.075969661395442e-301,5.073970461095562e-301,5.0719712607956825e-301,5.069972060495802e-301,5.067972860195922e-301,5.065973659896042e-301,5.063974459596162e-301,5.061975259296282e-301,5.059976058996402e-301,5.057976858696521e-301,5.055977658396641e-301,5.053978458096761e-301,5.051979257796881e-301,5.049980057497001e-301,5.047980857197122e-301,5.045981656897241e-301,5.043982456597361e-301,5.041983256297481e-301,5.039984055997601e-301,5.037984855697722e-301,5.035985655397841e-301,5.033986455097961e-301,5.0319872547980805e-301,5.0299880544982005e-301,5.0279888541983206e-301,5.025989653898441e-301,5.023990453598561e-301,5.021991253298681e-301,5.019992052998801e-301,5.017992852698921e-301,5.015993652399041e-301,5.01399445209916e-301,5.011995251799281e-301,5.009996051499401e-301,5.007996851199521e-301,5.00599765089964e-301,5.00399845059976e-301,5.00199925029988e-301,5.00000005e-301,4.99800084970012e-301,4.99600164940024e-301,4.994002449100359e-301,4.99200324880048e-301,4.990004048500599e-301,4.98800484820072e-301,4.98600564790084e-301,4.9840064476009595e-301,4.98200724730108e-301,4.9800080470011995e-301,4.9780088467013195e-301,4.9760096464014395e-301,4.974010446101559e-301,4.97201124580168e-301,4.970012045501799e-301,4.96801284520192e-301,4.966013644902039e-301,4.964014444602159e-301,4.96201524430228e-301,4.960016044002399e-301,4.95801684370252e-301,4.956017643402639e-301,4.954018443102759e-301,4.952019242802879e-301,4.950020042502999e-301,4.948020842203119e-301,4.946021641903238e-301,4.944022441603359e-301,4.942023241303478e-301,4.940024041003598e-301,4.938024840703719e-301,4.936025640403838e-301,4.934026440103959e-301,4.9320272398040784e-301,4.9300280395041985e-301,4.9280288392043185e-301,4.9260296389044385e-301,4.9240304386045585e-301,4.922031238304678e-301,4.920032038004798e-301,4.918032837704918e-301,4.916033637405038e-301,4.914034437105159e-301,4.912035236805278e-301,4.910036036505398e-301,4.908036836205518e-301,4.906037635905638e-301,4.904038435605758e-301,4.902039235305878e-301,4.900040035005998e-301,4.898040834706118e-301,4.896041634406237e-301,4.894042434106357e-301,4.892043233806477e-301,4.890044033506597e-301,4.888044833206717e-301,4.886045632906837e-301,4.884046432606957e-301,4.882047232307077e-301,4.8800480320071966e-301,4.8780488317073174e-301,4.8760496314074375e-301,4.8740504311075575e-301,4.8720512308076775e-301,4.870052030507797e-301,4.868052830207917e-301,4.866053629908037e-301,4.864054429608157e-301,4.862055229308277e-301,4.860056029008397e-301,4.858056828708517e-301,4.856057628408636e-301,4.854058428108757e-301,4.852059227808877e-301,4.850060027508997e-301,4.848060827209117e-301,4.846061626909236e-301,4.844062426609356e-301,4.842063226309476e-301,4.840064026009596e-301,4.838064825709716e-301,4.8360656254098355e-301,4.834066425109956e-301,4.8320672248100755e-301,4.830068024510196e-301,4.828068824210316e-301,4.826069623910436e-301,4.8240704236105564e-301,4.822071223310676e-301,4.8200720230107965e-301,4.818072822710916e-301,4.816073622411036e-301,4.814074422111156e-301,4.812075221811275e-301,4.810076021511396e-301,4.808076821211515e-301,4.806077620911635e-301,4.804078420611756e-301,4.802079220311875e-301,4.800080020011996e-301,4.798080819712115e-301,4.796081619412235e-301,4.794082419112355e-301,4.792083218812475e-301,4.790084018512595e-301,4.788084818212715e-301,4.7860856179128344e-301,4.7840864176129544e-301,4.7820872173130745e-301,4.780088017013195e-301,4.7780888167133145e-301,4.7760896164134345e-301,4.7740904161135546e-301,4.772091215813675e-301,4.770092015513795e-301,4.768092815213915e-301,4.7660936149140355e-301,4.764094414614155e-301,4.762095214314275e-301,4.760096014014394e-301,4.758096813714514e-301,4.756097613414635e-301,4.754098413114754e-301,4.752099212814874e-301,4.750100012514994e-301,4.748100812215114e-301,4.746101611915234e-301,4.744102411615354e-301,4.742103211315474e-301,4.740104011015594e-301,4.738104810715714e-301,4.736105610415834e-301,4.734106410115953e-301,4.7321072098160734e-301,4.7301080095161934e-301,4.7281088092163135e-301,4.7261096089164335e-301,4.7241104086165535e-301,4.722111208316673e-301,4.7201120080167936e-301,4.718112807716914e-301,4.716113607417034e-301,4.714114407117154e-301,4.712115206817273e-301,4.710116006517394e-301,4.708116806217513e-301,4.706117605917633e-301,4.704118405617753e-301,4.702119205317872e-301,4.700120005017993e-301,4.698120804718112e-301,4.696121604418233e-301,4.694122404118353e-301,4.692123203818472e-301,4.690124003518593e-301,4.688124803218712e-301,4.686125602918833e-301,4.684126402618952e-301,4.682127202319072e-301,4.680128002019192e-301,4.6781288017193124e-301,4.6761296014194325e-301,4.674130401119552e-301,4.6721312008196725e-301,4.6701320005197925e-301,4.668132800219912e-301,4.6661335999200326e-301,4.664134399620152e-301,4.662135199320273e-301,4.660135999020392e-301,4.658136798720512e-301,4.656137598420633e-301,4.654138398120752e-301,4.652139197820872e-301,4.650139997520991e-301,4.648140797221111e-301,4.646141596921231e-301,4.644142396621351e-301,4.642143196321472e-301,4.640143996021591e-301,4.638144795721711e-301,4.636145595421831e-301,4.634146395121951e-301,4.632147194822072e-301,4.630147994522191e-301,4.628148794222311e-301,4.626149593922431e-301,4.6241503936225514e-301,4.622151193322671e-301,4.620151993022791e-301,4.618152792722911e-301,4.616153592423031e-301,4.614154392123151e-301,4.612155191823271e-301,4.610155991523391e-301,4.608156791223511e-301,4.606157590923631e-301,4.604158390623751e-301,4.602159190323871e-301,4.600159990023991e-301,4.59816078972411e-301,4.59616158942423e-301,4.59416238912435e-301,4.59216318882447e-301,4.59016398852459e-301,4.588164788224709e-301,4.58616558792483e-301,4.58416638762495e-301,4.58216718732507e-301,4.58016798702519e-301,4.57816878672531e-301,4.57616958642543e-301,4.5741703861255496e-301,4.57217118582567e-301,4.57017198552579e-301,4.56817278522591e-301,4.56617358492603e-301,4.564174384626149e-301,4.56217518432627e-301,4.56017598402639e-301,4.55817678372651e-301,4.55617758342663e-301,4.554178383126749e-301,4.55217918282687e-301,4.550179982526989e-301,4.54818078222711e-301,4.54618158192723e-301,4.544182381627349e-301,4.542183181327469e-301,4.540183981027588e-301,4.538184780727709e-301,4.536185580427828e-301,4.534186380127948e-301,4.532187179828069e-301,4.5301879795281884e-301,4.528188779228309e-301,4.5261895789284285e-301,4.5241903786285485e-301,4.522191178328669e-301,4.5201919780287886e-301,4.518192777728909e-301,4.516193577429029e-301,4.514194377129149e-301,4.512195176829268e-301,4.510195976529388e-301,4.508196776229509e-301,4.506197575929628e-301,4.504198375629748e-301,4.502199175329868e-301,4.500199975029988e-301,4.498200774730109e-301,4.496201574430228e-301,4.494202374130349e-301,4.492203173830468e-301,4.490203973530588e-301,4.488204773230708e-301,4.486205572930827e-301,4.484206372630948e-301,4.482207172331067e-301,4.480207972031187e-301,4.4782087717313074e-301,4.4762095714314274e-301,4.474210371131548e-301,4.4722111708316675e-301,4.4702119705317875e-301,4.4682127702319075e-301,4.4662135699320276e-301,4.464214369632148e-301,4.462215169332268e-301,4.460215969032387e-301,4.458216768732507e-301,4.456217568432627e-301,4.454218368132747e-301,4.452219167832867e-301,4.450219967532986e-301,4.448220767233107e-301,4.446221566933227e-301,4.444222366633347e-301,4.442223166333467e-301,4.440223966033586e-301,4.438224765733707e-301,4.436225565433827e-301,4.434226365133946e-301,4.432227164834066e-301,4.4302279645341855e-301,4.428228764234306e-301,4.4262295639344256e-301,4.4242303636345464e-301,4.4222311633346665e-301,4.420231963034786e-301,4.4182327627349065e-301,4.416233562435026e-301,4.4142343621351465e-301,4.4122351618352666e-301,4.410235961535386e-301,4.408236761235506e-301,4.406237560935626e-301,4.404238360635746e-301,4.402239160335865e-301,4.400239960035986e-301,4.398240759736106e-301,4.396241559436225e-301,4.394242359136346e-301,4.392243158836465e-301,4.390243958536586e-301,4.388244758236706e-301,4.386245557936825e-301,4.384246357636946e-301,4.382247157337065e-301,4.380247957037185e-301,4.378248756737305e-301,4.3762495564374245e-301,4.374250356137545e-301,4.3722511558376646e-301,4.3702519555377854e-301,4.368252755237905e-301,4.366253554938025e-301,4.364254354638145e-301,4.362255154338265e-301,4.3602559540383856e-301,4.358256753738505e-301,4.356257553438625e-301,4.354258353138745e-301,4.352259152838865e-301,4.350259952538985e-301,4.348260752239104e-301,4.346261551939224e-301,4.344262351639344e-301,4.342263151339464e-301,4.340263951039584e-301,4.338264750739704e-301,4.336265550439824e-301,4.334266350139944e-301,4.332267149840064e-301,4.330267949540184e-301,4.328268749240304e-301,4.326269548940424e-301,4.3242703486405435e-301,4.3222711483406635e-301,4.3202719480407836e-301,4.3182727477409036e-301,4.316273547441023e-301,4.314274347141144e-301,4.312275146841264e-301,4.310275946541384e-301,4.308276746241504e-301,4.306277545941624e-301,4.304278345641744e-301,4.302279145341864e-301,4.300279945041984e-301,4.298280744742103e-301,4.296281544442223e-301,4.294282344142343e-301,4.292283143842462e-301,4.290283943542583e-301,4.288284743242703e-301,4.286285542942823e-301,4.284286342642943e-301,4.282287142343062e-301,4.280287942043183e-301,4.2782887417433024e-301,4.276289541443423e-301,4.274290341143543e-301,4.2722911408436625e-301,4.2702919405437825e-301,4.2682927402439025e-301,4.2662935399440226e-301,4.264294339644143e-301,4.262295139344262e-301,4.260295939044383e-301,4.258296738744502e-301,4.256297538444623e-301,4.254298338144742e-301,4.252299137844862e-301,4.250299937544983e-301,4.248300737245102e-301,4.246301536945223e-301,4.244302336645342e-301,4.242303136345462e-301,4.240303936045582e-301,4.238304735745701e-301,4.236305535445822e-301,4.234306335145941e-301,4.232307134846061e-301,4.230307934546181e-301,4.228308734246301e-301,4.226309533946422e-301,4.2243103336465414e-301,4.2223111333466614e-301,4.2203119330467815e-301,4.2183127327469015e-301,4.2163135324470215e-301,4.214314332147141e-301,4.2123151318472616e-301,4.210315931547381e-301,4.208316731247501e-301,4.206317530947621e-301,4.204318330647741e-301,4.202319130347862e-301,4.200319930047981e-301,4.198320729748101e-301,4.196321529448221e-301,4.194322329148341e-301,4.192323128848461e-301,4.190323928548581e-301,4.1883247282487e-301,4.18632552794882e-301,4.18432632764894e-301,4.18232712734906e-301,4.18032792704918e-301,4.1783287267493e-301,4.17632952644942e-301,4.17433032614954e-301,4.17233112584966e-301,4.1703319255497804e-301,4.1683327252499e-301,4.1663335249500205e-301,4.1643343246501405e-301,4.16233512435026e-301,4.16033592405038e-301,4.1583367237505e-301,4.15633752345062e-301,4.15433832315074e-301,4.15233912285086e-301,4.15033992255098e-301,4.148340722251099e-301,4.14634152195122e-301,4.144342321651339e-301,4.14234312135146e-301,4.14034392105158e-301,4.138344720751699e-301,4.13634552045182e-301,4.134346320151939e-301,4.132347119852059e-301,4.130347919552179e-301,4.1283487192522985e-301,4.126349518952419e-301,4.1243503186525385e-301,4.122351118352659e-301,4.1203519180527786e-301,4.118352717752899e-301,4.1163535174530194e-301,4.114354317153139e-301,4.1123551168532595e-301,4.110355916553379e-301,4.108356716253499e-301,4.106357515953619e-301,4.104358315653738e-301,4.102359115353859e-301,4.100359915053978e-301,4.098360714754099e-301,4.096361514454218e-301,4.094362314154338e-301,4.092363113854459e-301,4.090363913554578e-301,4.088364713254699e-301,4.086365512954818e-301,4.084366312654938e-301,4.082367112355058e-301,4.080367912055178e-301,4.078368711755298e-301,4.0763695114554174e-301,4.0743703111555375e-301,4.0723711108556575e-301,4.0703719105557775e-301,4.068372710255898e-301,4.0663735099560176e-301,4.0643743096561376e-301,4.062375109356258e-301,4.060375909056378e-301,4.058376708756498e-301,4.056377508456618e-301,4.054378308156738e-301,4.052379107856857e-301,4.050379907556977e-301,4.048380707257097e-301,4.046381506957217e-301,4.044382306657337e-301,4.042383106357457e-301,4.040383906057577e-301,4.038384705757697e-301,4.036385505457817e-301,4.034386305157936e-301,4.032387104858057e-301,4.030387904558177e-301,4.028388704258297e-301,4.026389503958417e-301,4.024390303658536e-301,4.0223911033586564e-301,4.0203919030587765e-301,4.0183927027588965e-301,4.0163935024590165e-301,4.0143943021591365e-301,4.0123951018592566e-301,4.010395901559376e-301,4.008396701259497e-301,4.006397500959617e-301,4.004398300659737e-301,4.002399100359857e-301,4.000399900059976e-301,3.998400699760096e-301,3.996401499460216e-301,3.994402299160336e-301,3.992403098860456e-301,3.990403898560575e-301,3.988404698260696e-301,3.986405497960815e-301,3.984406297660936e-301,3.982407097361056e-301,3.980407897061175e-301,3.978408696761296e-301,3.976409496461415e-301,3.974410296161536e-301,3.972411095861655e-301,3.9704118955617754e-301,3.9684126952618954e-301,3.966413494962015e-301,3.9644142946621355e-301,3.962415094362255e-301,3.960415894062375e-301,3.9584166937624956e-301,3.956417493462615e-301,3.954418293162736e-301,3.952419092862855e-301,3.950419892562975e-301,3.948420692263095e-301,3.946421491963215e-301,3.944422291663335e-301,3.942423091363455e-301,3.940423891063574e-301,3.938424690763694e-301,3.936425490463814e-301,3.934426290163935e-301,3.932427089864054e-301,3.930427889564175e-301,3.928428689264294e-301,3.926429488964414e-301,3.924430288664534e-301,3.922431088364654e-301,3.920431888064774e-301,3.918432687764894e-301,3.9164334874650144e-301,3.914434287165134e-301,3.912435086865254e-301,3.9104358865653745e-301,3.908436686265494e-301,3.906437485965614e-301,3.904438285665734e-301,3.902439085365854e-301,3.900439885065974e-301,3.898440684766094e-301,3.896441484466214e-301,3.894442284166334e-301,3.892443083866454e-301,3.890443883566574e-301,3.888444683266693e-301,3.886445482966813e-301,3.884446282666933e-301,3.882447082367053e-301,3.880447882067173e-301,3.878448681767293e-301,3.8764494814674124e-301,3.874450281167533e-301,3.872451080867653e-301,3.870451880567773e-301,3.868452680267893e-301,3.8664534799680125e-301,3.864454279668133e-301,3.862455079368253e-301,3.860455879068373e-301,3.858456678768493e-301,3.856457478468612e-301,3.854458278168733e-301,3.852459077868852e-301,3.850459877568973e-301,3.848460677269093e-301,3.846461476969213e-301,3.844462276669333e-301,3.842463076369452e-301,3.840463876069573e-301,3.838464675769692e-301,3.836465475469812e-301,3.834466275169932e-301,3.832467074870052e-301,3.830467874570172e-301,3.828468674270291e-301,3.826469473970412e-301,3.824470273670532e-301,3.8224710733706514e-301,3.820471873070772e-301,3.8184726727708915e-301,3.816473472471012e-301,3.8144742721711315e-301,3.8124750718712516e-301,3.8104758715713716e-301,3.808476671271492e-301,3.806477470971612e-301,3.804478270671731e-301,3.802479070371851e-301,3.800479870071971e-301,3.798480669772091e-301,3.796481469472212e-301,3.794482269172331e-301,3.792483068872451e-301,3.790483868572571e-301,3.788484668272691e-301,3.786485467972812e-301,3.784486267672931e-301,3.782487067373051e-301,3.780487867073171e-301,3.77848866677329e-301,3.77648946647341e-301,3.77449026617353e-301,3.77249106587365e-301,3.77049186557377e-301,3.7684926652738904e-301,3.7664934649740105e-301,3.7644942646741305e-301,3.7624950643742505e-301,3.7604958640743705e-301,3.7584966637744906e-301,3.7564974634746106e-301,3.754498263174731e-301,3.75249906287485e-301,3.75049986257497e-301,3.74850066227509e-301,3.74650146197521e-301,3.74450226167533e-301,3.74250306137545e-301,3.74050386107557e-301,3.73850466077569e-301,3.73650546047581e-301,3.73450626017593e-301,3.7325070598760496e-301,3.7305078595761697e-301,3.728508659276289e-301,3.7265094589764097e-301,3.7245102586765297e-301,3.7225110583766498e-301,3.7205118580767694e-301,3.718512657776889e-301,3.7165134574770094e-301,3.7145142571771286e-301,3.7125150568772495e-301,3.7105158565773695e-301,3.7085166562774887e-301,3.706517455977609e-301,3.7045182556777287e-301,3.702519055377849e-301,3.700519855077969e-301,3.6985206547780884e-301,3.6965214544782092e-301,3.6945222541783284e-301,3.692523053878449e-301,3.6905238535785685e-301,3.688524653278688e-301,3.686525452978809e-301,3.684526252678928e-301,3.682527052379049e-301,3.680527852079168e-301,3.6785286517792882e-301,3.6765294514794087e-301,3.674530251179528e-301,3.6725310508796487e-301,3.670531850579768e-301,3.668532650279888e-301,3.666533449980008e-301,3.664534249680128e-301,3.6625350493802484e-301,3.6605358490803676e-301,3.6585366487804885e-301,3.6565374484806077e-301,3.6545382481807277e-301,3.652539047880848e-301,3.6505398475809677e-301,3.648540647281088e-301,3.6465414469812074e-301,3.6445422466813274e-301,3.6425430463814474e-301,3.6405438460815674e-301,3.638544645781688e-301,3.636545445481807e-301,3.634546245181927e-301,3.632547044882047e-301,3.630547844582167e-301,3.628548644282287e-301,3.626549443982407e-301,3.6245502436825272e-301,3.622551043382647e-301,3.620551843082767e-301,3.618552642782887e-301,3.616553442483007e-301,3.614554242183127e-301,3.612555041883247e-301,3.610555841583367e-301,3.6085566412834866e-301,3.6065574409836066e-301,3.604558240683726e-301,3.6025590403838467e-301,3.6005598400839667e-301,3.5985606397840867e-301,3.5965614394842063e-301,3.594562239184326e-301,3.5925630388844464e-301,3.5905638385845664e-301,3.5885646382846864e-301,3.5865654379848065e-301,3.5845662376849256e-301,3.582567037385046e-301,3.5805678370851657e-301,3.578568636785286e-301,3.576569436485406e-301,3.5745702361855254e-301,3.5725710358856462e-301,3.5705718355857654e-301,3.568572635285886e-301,3.566573434986006e-301,3.564574234686126e-301,3.562575034386246e-301,3.560575834086365e-301,3.558576633786486e-301,3.556577433486605e-301,3.5545782331867256e-301,3.5525790328868456e-301,3.550579832586965e-301,3.5485806322870857e-301,3.546581431987205e-301,3.5445822316873253e-301,3.5425830313874453e-301,3.540583831087565e-301,3.5385846307876854e-301,3.5365854304878046e-301,3.5345862301879254e-301,3.5325870298880446e-301,3.5305878295881647e-301,3.528588629288285e-301,3.5265894289884043e-301,3.524590228688525e-301,3.5225910283886443e-301,3.5205918280887644e-301,3.5185926277888844e-301,3.5165934274890044e-301,3.514594227189125e-301,3.512595026889244e-301,3.510595826589364e-301,3.508596626289484e-301,3.506597425989604e-301,3.5045982256897246e-301,3.502599025389844e-301,3.500599825089964e-301,3.498600624790084e-301,3.496601424490204e-301,3.494602224190324e-301,3.492603023890444e-301,3.490603823590564e-301,3.488604623290684e-301,3.4866054229908035e-301,3.4846062226909236e-301,3.4826070223910436e-301,3.4806078220911636e-301,3.4786086217912836e-301,3.4766094214914037e-301,3.4746102211915237e-301,3.4726110208916433e-301,3.4706118205917633e-301,3.4686126202918833e-301,3.4666134199920034e-301,3.4646142196921234e-301,3.4626150193922434e-301,3.460615819092363e-301,3.458616618792483e-301,3.456617418492603e-301,3.454618218192723e-301,3.452619017892843e-301,3.450619817592963e-301,3.448620617293083e-301,3.4466214169932024e-301,3.444622216693323e-301,3.442623016393443e-301,3.440623816093563e-301,3.438624615793683e-301,3.436625415493802e-301,3.4346262151939225e-301,3.432627014894042e-301,3.4306278145941626e-301,3.4286286142942826e-301,3.4266294139944018e-301,3.4246302136945226e-301,3.422631013394642e-301,3.4206318130947623e-301,3.4186326127948823e-301,3.4166334124950015e-301,3.4146342121951223e-301,3.4126350118952415e-301,3.4106358115953624e-301,3.4086366112954816e-301,3.4066374109956016e-301,3.404638210695722e-301,3.4026390103958412e-301,3.400639810095962e-301,3.3986406097960813e-301,3.3966414094962013e-301,3.3946422091963218e-301,3.3926430088964414e-301,3.390643808596562e-301,3.388644608296681e-301,3.386645407996801e-301,3.384646207696921e-301,3.382647007397041e-301,3.3806478070971615e-301,3.378648606797281e-301,3.3766494064974016e-301,3.3746502061975208e-301,3.3726510058976408e-301,3.3706518055977616e-301,3.368652605297881e-301,3.3666534049980013e-301,3.364654204698121e-301,3.3626550043982405e-301,3.3606558040983605e-301,3.3586566037984805e-301,3.3566574034986014e-301,3.3546582031987206e-301,3.3526590028988406e-301,3.3506598025989602e-301,3.3486606022990803e-301,3.3466614019992003e-301,3.3446622016993203e-301,3.3426630013994403e-301,3.3406638010995604e-301,3.3386646007996804e-301,3.3366654004998e-301,3.33466620019992e-301,3.33266699990004e-301,3.33066779960016e-301,3.32866859930028e-301,3.3266693990004e-301,3.32467019870052e-301,3.3226709984006393e-301,3.3206717981007598e-301,3.31867259780088e-301,3.316673397501e-301,3.31467419720112e-301,3.312674996901239e-301,3.3106757966013595e-301,3.3086765963014795e-301,3.3066773960015995e-301,3.3046781957017196e-301,3.3026789954018387e-301,3.3006797951019596e-301,3.298680594802079e-301,3.2966813945021992e-301,3.2946821942023193e-301,3.2926829939024385e-301,3.2906837936025593e-301,3.2886845933026785e-301,3.2866853930027994e-301,3.284686192702919e-301,3.282686992403039e-301,3.280687792103159e-301,3.2786885918032782e-301,3.276689391503399e-301,3.2746901912035183e-301,3.272690990903639e-301,3.2706917906037587e-301,3.2686925903038783e-301,3.2666933900039988e-301,3.264694189704118e-301,3.262694989404239e-301,3.260695789104359e-301,3.258696588804478e-301,3.2566973885045985e-301,3.254698188204718e-301,3.2526989879048385e-301,3.2506997876049577e-301,3.2487005873050778e-301,3.2467013870051986e-301,3.244702186705318e-301,3.2427029864054382e-301,3.2407037861055574e-301,3.2387045858056775e-301,3.2367053855057975e-301,3.2347061852059175e-301,3.2327069849060384e-301,3.2307077846061576e-301,3.2287085843062776e-301,3.226709384006397e-301,3.2247101837065172e-301,3.222710983406638e-301,3.2207117831067573e-301,3.2187125828068773e-301,3.2167133825069973e-301,3.2147141822071173e-301,3.212714981907237e-301,3.210715781607357e-301,3.208716581307477e-301,3.206717381007597e-301,3.204718180707717e-301,3.202718980407837e-301,3.2007197801079567e-301,3.1987205798080775e-301,3.1967213795081967e-301,3.1947221792083168e-301,3.1927229789084368e-301,3.190723778608557e-301,3.188724578308677e-301,3.1867253780087964e-301,3.1847261777089165e-301,3.1827269774090365e-301,3.1807277771091565e-301,3.1787285768092765e-301,3.1767293765093966e-301,3.174730176209516e-301,3.172730975909636e-301,3.1707317756097562e-301,3.1687325753098762e-301,3.1667333750099963e-301,3.1647341747101155e-301,3.1627349744102363e-301,3.160735774110356e-301,3.158736573810476e-301,3.156737373510596e-301,3.154738173210715e-301,3.152738972910836e-301,3.1507397726109552e-301,3.1487405723110757e-301,3.1467413720111957e-301,3.1447421717113153e-301,3.1427429714114357e-301,3.140743771111555e-301,3.1387445708116758e-301,3.136745370511796e-301,3.134746170211915e-301,3.1327469699120354e-301,3.1307477696121546e-301,3.1287485693122755e-301,3.1267493690123947e-301,3.1247501687125147e-301,3.1227509684126356e-301,3.1207517681127548e-301,3.118752567812875e-301,3.1167533675129944e-301,3.1147541672131144e-301,3.1127549669132353e-301,3.1107557666133545e-301,3.108756566313475e-301,3.1067573660135945e-301,3.104758165713715e-301,3.102758965413834e-301,3.100759765113954e-301,3.098760564814075e-301,3.0967613645141942e-301,3.0947621642143147e-301,3.0927629639144343e-301,3.090763763614554e-301,3.0887645633146747e-301,3.086765363014794e-301,3.0847661627149148e-301,3.082766962415034e-301,3.080767762115154e-301,3.078768561815274e-301,3.0767693615153936e-301,3.0747701612155145e-301,3.0727709609156337e-301,3.0707717606157537e-301,3.0687725603158737e-301,3.0667733600159938e-301,3.0647741597161134e-301,3.0627749594162334e-301,3.0607757591163534e-301,3.0587765588164735e-301,3.0567773585165935e-301,3.0547781582167135e-301,3.0527789579168335e-301,3.050779757616953e-301,3.048780557317073e-301,3.0467813570171928e-301,3.0447821567173132e-301,3.0427829564174332e-301,3.0407837561175533e-301,3.038784555817673e-301,3.036785355517793e-301,3.0347861552179125e-301,3.032786954918033e-301,3.030787754618153e-301,3.028788554318273e-301,3.026789354018393e-301,3.0247901537185126e-301,3.0227909534186322e-301,3.0207917531187527e-301,3.0187925528188727e-301,3.0167933525189927e-301,3.0147941522191123e-301,3.0127949519192324e-301,3.0107957516193524e-301,3.0087965513194724e-301,3.0067973510195924e-301,3.004798150719712e-301,3.002798950419832e-301,3.000799750119952e-301,2.998800549820072e-301,2.996801349520192e-301,2.9948021492203117e-301,2.9928029489204318e-301,2.990803748620552e-301,2.988804548320672e-301,2.986805348020792e-301,2.984806147720912e-301,2.9828069474210315e-301,2.9808077471211515e-301,2.9788085468212715e-301,2.9768093465213916e-301,2.9748101462215116e-301,2.972810945921631e-301,2.9708117456217516e-301,2.9688125453218712e-301,2.9668133450219913e-301,2.9648141447221113e-301,2.962814944422231e-301,2.960815744122351e-301,2.9588165438224714e-301,2.956817343522591e-301,2.954818143222711e-301,2.9528189429228306e-301,2.9508197426229506e-301,2.9488205423230707e-301,2.946821342023191e-301,2.944822141723311e-301,2.9428229414234307e-301,2.9408237411235503e-301,2.9388245408236704e-301,2.9368253405237904e-301,2.934826140223911e-301,2.932826939924031e-301,2.9308277396241505e-301,2.9288285393242705e-301,2.92682933902439e-301,2.92483013872451e-301,2.9228309384246306e-301,2.92083173812475e-301,2.91883253782487e-301,2.9168333375249902e-301,2.91483413722511e-301,2.91283493692523e-301,2.91083573662535e-301,2.90883653632547e-301,2.90683733602559e-301,2.90483813572571e-301,2.90283893542583e-301,2.9008397351259496e-301,2.8988405348260696e-301,2.8968413345261896e-301,2.8948421342263097e-301,2.8928429339264297e-301,2.8908437336265497e-301,2.8888445333266693e-301,2.8868453330267893e-301,2.8848461327269094e-301,2.8828469324270294e-301,2.8808477321271494e-301,2.878848531827269e-301,2.876849331527389e-301,2.874850131227509e-301,2.872850930927629e-301,2.870851730627749e-301,2.8688525303278687e-301,2.8668533300279888e-301,2.8648541297281088e-301,2.862854929428229e-301,2.860855729128349e-301,2.8588565288284684e-301,2.8568573285285885e-301,2.8548581282287085e-301,2.8528589279288285e-301,2.8508597276289485e-301,2.8488605273290686e-301,2.846861327029188e-301,2.844862126729308e-301,2.8428629264294282e-301,2.8408637261295483e-301,2.8388645258296683e-301,2.8368653255297883e-301,2.8348661252299083e-301,2.832866924930028e-301,2.830867724630148e-301,2.828868524330268e-301,2.8268693240303876e-301,2.824870123730508e-301,2.822870923430628e-301,2.8208717231307477e-301,2.8188725228308677e-301,2.8168733225309873e-301,2.8148741222311073e-301,2.8128749219312278e-301,2.8108757216313478e-301,2.808876521331468e-301,2.8068773210315874e-301,2.804878120731707e-301,2.802878920431827e-301,2.8008797201319475e-301,2.7988805198320675e-301,2.7968813195321875e-301,2.794882119232307e-301,2.792882918932427e-301,2.7908837186325468e-301,2.788884518332667e-301,2.7868853180327873e-301,2.784886117732907e-301,2.782886917433027e-301,2.780887717133147e-301,2.7788885168332665e-301,2.7768893165333865e-301,2.7748901162335066e-301,2.7728909159336266e-301,2.7708917156337466e-301,2.7688925153338666e-301,2.7668933150339867e-301,2.7648941147341063e-301,2.7628949144342263e-301,2.7608957141343463e-301,2.7588965138344664e-301,2.7568973135345864e-301,2.7548981132347064e-301,2.752898912934826e-301,2.750899712634946e-301,2.748900512335066e-301,2.746901312035186e-301,2.744902111735306e-301,2.7429029114354257e-301,2.7409037111355457e-301,2.7389045108356658e-301,2.736905310535786e-301,2.734906110235906e-301,2.7329069099360254e-301,2.7309077096361455e-301,2.7289085093362655e-301,2.726909309036386e-301,2.7249101087365055e-301,2.722910908436625e-301,2.720911708136745e-301,2.718912507836865e-301,2.7169133075369852e-301,2.7149141072371057e-301,2.7129149069372253e-301,2.710915706637345e-301,2.708916506337465e-301,2.706917306037585e-301,2.704918105737705e-301,2.7029189054378254e-301,2.700919705137945e-301,2.698920504838065e-301,2.6969213045381846e-301,2.6949221042383047e-301,2.6929229039384247e-301,2.6909237036385443e-301,2.6889245033386647e-301,2.6869253030387848e-301,2.6849261027389048e-301,2.6829269024390244e-301,2.680927702139144e-301,2.678928501839264e-301,2.6769293015393845e-301,2.6749301012395045e-301,2.6729309009396245e-301,2.670931700639744e-301,2.6689325003398637e-301,2.6669333000399838e-301,2.664934099740104e-301,2.6629348994402242e-301,2.6609356991403442e-301,2.658936498840464e-301,2.656937298540584e-301,2.6549380982407035e-301,2.652938897940824e-301,2.650939697640944e-301,2.6489404973410636e-301,2.6469412970411836e-301,2.6449420967413036e-301,2.6429428964414236e-301,2.6409436961415437e-301,2.6389444958416633e-301,2.6369452955417833e-301,2.6349460952419033e-301,2.6329468949420233e-301,2.6309476946421434e-301,2.628948494342263e-301,2.626949294042383e-301,2.624950093742503e-301,2.622950893442623e-301,2.620951693142743e-301,2.618952492842863e-301,2.616953292542983e-301,2.6149540922431027e-301,2.6129548919432228e-301,2.6109556916433428e-301,2.608956491343463e-301,2.6069572910435824e-301,2.6049580907437024e-301,2.6029588904438225e-301,2.6009596901439425e-301,2.5989604898440625e-301,2.596961289544182e-301,2.594962089244302e-301,2.592962888944422e-301,2.5909636886445426e-301,2.5889644883446622e-301,2.586965288044782e-301,2.584966087744902e-301,2.582966887445022e-301,2.580967687145142e-301,2.5789684868452623e-301,2.576969286545382e-301,2.574970086245502e-301,2.5729708859456216e-301,2.5709716856457416e-301,2.5689724853458616e-301,2.566973285045982e-301,2.5649740847461017e-301,2.5629748844462217e-301,2.5609756841463413e-301,2.5589764838464613e-301,2.5569772835465814e-301,2.5549780832467014e-301,2.5529788829468214e-301,2.5509796826469414e-301,2.5489804823470615e-301,2.546981282047181e-301,2.5449820817473007e-301,2.542982881447421e-301,2.540983681147541e-301,2.538984480847661e-301,2.536985280547781e-301,2.534986080247901e-301,2.532986879948021e-301,2.530987679648141e-301,2.528988479348261e-301,2.526989279048381e-301,2.524990078748501e-301,2.5229908784486205e-301,2.5209916781487406e-301,2.5189924778488606e-301,2.5169932775489806e-301,2.5149940772491006e-301,2.5129948769492203e-301,2.5109956766493403e-301,2.5089964763494603e-301,2.5069972760495803e-301,2.5049980757497004e-301,2.50299887544982e-301,2.50099967514994e-301,2.49900047485006e-301,2.49700127455018e-301,2.4950020742503e-301,2.4930028739504197e-301,2.4910036736505397e-301,2.4890044733506597e-301,2.4870052730507797e-301,2.4850060727508998e-301,2.4830068724510194e-301,2.48100767215114e-301,2.4790084718512594e-301,2.4770092715513795e-301,2.4750100712514995e-301,2.4730108709516195e-301,2.471011670651739e-301,2.4690124703518596e-301,2.467013270051979e-301,2.465014069752099e-301,2.4630148694522192e-301,2.461015669152339e-301,2.459016468852459e-301,2.4570172685525793e-301,2.4550180682526993e-301,2.453018867952819e-301,2.4510196676529385e-301,2.4490204673530586e-301,2.4470212670531786e-301,2.445022066753299e-301,2.443022866453419e-301,2.4410236661535387e-301,2.4390244658536587e-301,2.4370252655537783e-301,2.4350260652538983e-301,2.4330268649540187e-301,2.4310276646541388e-301,2.4290284643542584e-301,2.4270292640543784e-301,2.425030063754498e-301,2.423030863454618e-301,2.4210316631547385e-301,2.419032462854858e-301,2.417033262554978e-301,2.415034062255098e-301,2.413034861955218e-301,2.4110356616553378e-301,2.4090364613554574e-301,2.407037261055578e-301,2.405038060755698e-301,2.403038860455818e-301,2.401039660155938e-301,2.3990404598560575e-301,2.3970412595561775e-301,2.3950420592562976e-301,2.3930428589564176e-301,2.3910436586565376e-301,2.3890444583566576e-301,2.3870452580567772e-301,2.3850460577568973e-301,2.3830468574570173e-301,2.3810476571571373e-301,2.3790484568572573e-301,2.377049256557377e-301,2.375050056257497e-301,2.373050855957617e-301,2.371051655657737e-301,2.369052455357857e-301,2.3670532550579767e-301,2.3650540547580967e-301,2.3630548544582167e-301,2.3610556541583367e-301,2.3590564538584568e-301,2.3570572535585764e-301,2.3550580532586964e-301,2.3530588529588164e-301,2.3510596526589364e-301,2.3490604523590565e-301,2.3470612520591765e-301,2.3450620517592965e-301,2.343062851459416e-301,2.341063651159536e-301,2.339064450859656e-301,2.337065250559776e-301,2.3350660502598962e-301,2.3330668499600162e-301,2.3310676496601363e-301,2.329068449360256e-301,2.327069249060376e-301,2.3250700487604955e-301,2.3230708484606155e-301,2.321071648160736e-301,2.319072447860856e-301,2.3170732475609756e-301,2.3150740472610952e-301,2.3130748469612152e-301,2.3110756466613353e-301,2.3090764463614557e-301,2.3070772460615757e-301,2.3050780457616953e-301,2.3030788454618154e-301,2.301079645161935e-301,2.299080444862055e-301,2.2970812445621754e-301,2.2950820442622955e-301,2.293082843962415e-301,2.291083643662535e-301,2.289084443362655e-301,2.2870852430627747e-301,2.285086042762895e-301,2.2830868424630148e-301,2.281087642163135e-301,2.279088441863255e-301,2.277089241563375e-301,2.2750900412634945e-301,2.2730908409636145e-301,2.2710916406637345e-301,2.2690924403638545e-301,2.2670932400639746e-301,2.2650940397640946e-301,2.263094839464214e-301,2.2610956391643342e-301,2.2590964388644543e-301,2.2570972385645743e-301,2.2550980382646943e-301,2.253098837964814e-301,2.251099637664934e-301,2.249100437365054e-301,2.247101237065174e-301,2.245102036765294e-301,2.243102836465414e-301,2.2411036361655336e-301,2.2391044358656537e-301,2.237105235565774e-301,2.2351060352658937e-301,2.2331068349660137e-301,2.2311076346661334e-301,2.2291084343662534e-301,2.2271092340663734e-301,2.2251100337664934e-301,2.2231108334666135e-301,2.2211116331667335e-301,2.219112432866853e-301,2.217113232566973e-301,2.215114032267093e-301,2.213114831967213e-301,2.211115631667333e-301,2.2091164313674532e-301,2.207117231067573e-301,2.205118030767693e-301,2.203118830467813e-301,2.201119630167933e-301,2.199120429868053e-301,2.197121229568173e-301,2.195122029268293e-301,2.1931228289684126e-301,2.1911236286685326e-301,2.1891244283686522e-301,2.1871252280687726e-301,2.1851260277688927e-301,2.1831268274690127e-301,2.1811276271691323e-301,2.1791284268692523e-301,2.177129226569372e-301,2.1751300262694924e-301,2.1731308259696124e-301,2.1711316256697324e-301,2.169132425369852e-301,2.167133225069972e-301,2.1651340247700917e-301,2.163134824470212e-301,2.161135624170332e-301,2.1591364238704517e-301,2.1571372235705718e-301,2.155138023270692e-301,2.153138822970812e-301,2.151139622670932e-301,2.149140422371052e-301,2.1471412220711715e-301,2.1451420217712915e-301,2.1431428214714115e-301,2.1411436211715316e-301,2.139144420871651e-301,2.137145220571771e-301,2.1351460202718912e-301,2.1331468199720112e-301,2.1311476196721313e-301,2.1291484193722513e-301,2.127149219072371e-301,2.125150018772491e-301,2.123150818472611e-301,2.121151618172731e-301,2.119152417872851e-301,2.1171532175729706e-301,2.1151540172730906e-301,2.113154816973211e-301,2.1111556166733307e-301,2.1091564163734507e-301,2.1071572160735707e-301,2.1051580157736903e-301,2.1031588154738104e-301,2.101159615173931e-301,2.0991604148740504e-301,2.0971612145741704e-301,2.09516201427429e-301,2.09316281397441e-301,2.09116361367453e-301,2.0891644133746505e-301,2.0871652130747706e-301,2.08516601277489e-301,2.0831668124750098e-301,2.08116761217513e-301,2.07916841187525e-301,2.0771692115753703e-301,2.07517001127549e-301,2.07317081097561e-301,2.0711716106757295e-301,2.0691724103758495e-301,2.0671732100759696e-301,2.06517400977609e-301,2.0631748094762096e-301,2.0611756091763296e-301,2.0591764088764497e-301,2.0571772085765693e-301,2.0551780082766893e-301,2.0531788079768093e-301,2.0511796076769293e-301,2.0491804073770494e-301,2.0471812070771694e-301,2.0451820067772894e-301,2.043182806477409e-301,2.0411836061775286e-301,2.039184405877649e-301,2.037185205577769e-301,2.035186005277889e-301,2.0331868049780087e-301,2.0311876046781288e-301,2.0291884043782484e-301,2.027189204078369e-301,2.025190003778489e-301,2.0231908034786084e-301,2.0211916031787285e-301,2.0191924028788485e-301,2.0171932025789685e-301,2.0151940022790885e-301,2.0131948019792086e-301,2.011195601679328e-301,2.009196401379448e-301,2.0071972010795682e-301,2.0051980007796883e-301,2.0031988004798083e-301,2.001199600179928e-301,1.999200399880048e-301,1.997201199580168e-301,1.995201999280288e-301,1.993202798980408e-301,1.991203598680528e-301,1.9892043983806476e-301,1.9872051980807676e-301,1.9852059977808877e-301,1.9832067974810077e-301,1.9812075971811273e-301,1.9792083968812477e-301,1.9772091965813678e-301,1.9752099962814874e-301,1.9732107959816074e-301,1.9712115956817274e-301,1.969212395381847e-301,1.9672131950819675e-301,1.9652139947820875e-301,1.963214794482207e-301,1.961215594182327e-301,1.9592163938824467e-301,1.9572171935825668e-301,1.955217993282687e-301,1.9532187929828072e-301,1.9512195926829273e-301,1.949220392383047e-301,1.9472211920831665e-301,1.9452219917832865e-301,1.9432227914834065e-301,1.941223591183527e-301,1.9392243908836466e-301,1.9372251905837666e-301,1.9352259902838866e-301,1.9332267899840062e-301,1.9312275896841263e-301,1.9292283893842463e-301,1.9272291890843663e-301,1.9252299887844863e-301,1.9232307884846064e-301,1.921231588184726e-301,1.919232387884846e-301,1.917233187584966e-301,1.915233987285086e-301,1.913234786985206e-301,1.911235586685326e-301,1.909236386385446e-301,1.9072371860855657e-301,1.9052379857856857e-301,1.9032387854858058e-301,1.901239585185926e-301,1.899240384886046e-301,1.8972411845861654e-301,1.8952419842862855e-301,1.8932427839864055e-301,1.8912435836865255e-301,1.8892443833866455e-301,1.887245183086765e-301,1.885245982786885e-301,1.883246782487005e-301,1.8812475821871252e-301,1.8792483818872452e-301,1.8772491815873653e-301,1.875249981287485e-301,1.873250780987605e-301,1.871251580687725e-301,1.8692523803878454e-301,1.867253180087965e-301,1.8652539797880848e-301,1.8632547794882046e-301,1.8612555791883246e-301,1.8592563788884447e-301,1.8572571785885647e-301,1.8552579782886845e-301,1.8532587779888045e-301,1.8512595776889245e-301,1.8492603773890444e-301,1.8472611770891644e-301,1.845261976789284e-301,1.8432627764894042e-301,1.8412635761895243e-301,1.8392643758896443e-301,1.8372651755897643e-301,1.835265975289884e-301,1.8332667749900037e-301,1.8312675746901242e-301,1.829268374390244e-301,1.827269174090364e-301,1.825269973790484e-301,1.8232707734906036e-301,1.8212715731907235e-301,1.819272372890844e-301,1.8172731725909637e-301,1.8152739722910837e-301,1.8132747719912034e-301,1.8112755716913234e-301,1.8092763713914434e-301,1.8072771710915636e-301,1.8052779707916837e-301,1.8032787704918033e-301,1.801279570191923e-301,1.7992803698920431e-301,1.7972811695921631e-301,1.7952819692922834e-301,1.793282768992403e-301,1.791283568692523e-301,1.789284368392643e-301,1.7872851680927628e-301,1.7852859677928829e-301,1.783286767493003e-301,1.7812875671931227e-301,1.7792883668932427e-301,1.7772891665933628e-301,1.7752899662934826e-301,1.7732907659936026e-301,1.7712915656937226e-301,1.7692923653938426e-301,1.7672931650939625e-301,1.7652939647940825e-301,1.7632947644942025e-301,1.7612955641943221e-301,1.759296363894442e-301,1.7572971635945624e-301,1.7552979632946822e-301,1.7532987629948022e-301,1.7512995626949218e-301,1.7493003623950419e-301,1.7473011620951619e-301,1.7453019617952821e-301,1.7433027614954021e-301,1.741303561195522e-301,1.7393043608956416e-301,1.7373051605957616e-301,1.7353059602958816e-301,1.7333067599960018e-301,1.7313075596961219e-301,1.7293083593962415e-301,1.7273091590963615e-301,1.7253099587964813e-301,1.7233107584966013e-301,1.7213115581967216e-301,1.7193123578968412e-301,1.7173131575969612e-301,1.7153139572970812e-301,1.713314756997201e-301,1.711315556697321e-301,1.7093163563974411e-301,1.707317156097561e-301,1.705317955797681e-301,1.703318755497801e-301,1.701319555197921e-301,1.6993203548980406e-301,1.6973211545981608e-301,1.6953219542982809e-301,1.6933227539984007e-301,1.6913235536985207e-301,1.6893243533986407e-301,1.6873251530987603e-301,1.6853259527988806e-301,1.6833267524990006e-301,1.6813275521991206e-301,1.6793283518992404e-301,1.67732915159936e-301,1.67532995129948e-301,1.6733307509996e-301,1.6713315506997203e-301,1.6693323503998404e-301,1.66733315009996e-301,1.6653339498000798e-301,1.6633347495001998e-301,1.6613355492003198e-301,1.65933634890044e-301,1.6573371486005597e-301,1.6553379483006797e-301,1.6533387480007997e-301,1.6513395477009195e-301,1.6493403474010396e-301,1.6473411471011598e-301,1.6453419468012794e-301,1.6433427465013994e-301,1.6413435462015195e-301,1.6393443459016395e-301,1.6373451456017593e-301,1.6353459453018793e-301,1.6333467450019993e-301,1.6313475447021192e-301,1.6293483444022392e-301,1.6273491441023592e-301,1.6253499438024788e-301,1.623350743502599e-301,1.621351543202719e-301,1.6193523429028389e-301,1.617353142602959e-301,1.6153539423030785e-301,1.6133547420031986e-301,1.6113555417033188e-301,1.6093563414034388e-301,1.6073571411035588e-301,1.6053579408036784e-301,1.6033587405037983e-301,1.6013595402039183e-301,1.5993603399040385e-301,1.5973611396041585e-301,1.5953619393042786e-301,1.5933627390043982e-301,1.5913635387045182e-301,1.589364338404638e-301,1.5873651381047585e-301,1.5853659378048783e-301,1.5833667375049979e-301,1.581367537205118e-301,1.579368336905238e-301,1.5773691366053578e-301,1.5753699363054778e-301,1.5733707360055978e-301,1.5713715357057178e-301,1.5693723354058376e-301,1.5673731351059577e-301,1.5653739348060777e-301,1.5633747345061973e-301,1.5613755342063175e-301,1.5593763339064376e-301,1.5573771336065574e-301,1.5553779333066774e-301,1.5533787330067974e-301,1.551379532706917e-301,1.5493803324070373e-301,1.5473811321071573e-301,1.5453819318072773e-301,1.5433827315073971e-301,1.5413835312075167e-301,1.5393843309076368e-301,1.537385130607757e-301,1.535385930307877e-301,1.533386730007997e-301,1.5313875297081167e-301,1.5293883294082367e-301,1.5273891291083567e-301,1.5253899288084767e-301,1.5233907285085965e-301,1.5213915282087166e-301,1.5193923279088366e-301,1.5173931276089564e-301,1.5153939273090764e-301,1.5133947270091963e-301,1.5113955267093163e-301,1.5093963264094363e-301,1.5073971261095561e-301,1.5053979258096761e-301,1.5033987255097962e-301,1.501399525209916e-301,1.499400324910036e-301,1.497401124610156e-301,1.4954019243102759e-301,1.4934027240103959e-301,1.491403523710516e-301,1.4894043234106357e-301,1.4874051231107555e-301,1.4854059228108758e-301,1.4834067225109958e-301,1.4814075222111154e-301,1.4794083219112356e-301,1.4774091216113555e-301,1.4754099213114755e-301,1.4734107210115955e-301,1.4714115207117153e-301,1.4694123204118353e-301,1.4674131201119554e-301,1.4654139198120752e-301,1.4634147195121952e-301,1.461415519212315e-301,1.459416318912435e-301,1.457417118612555e-301,1.455417918312675e-301,1.453418718012795e-301,1.451419517712915e-301,1.449420317413035e-301,1.4474211171131548e-301,1.4454219168132746e-301,1.4434227165133948e-301,1.4414235162135147e-301,1.4394243159136345e-301,1.4374251156137545e-301,1.4354259153138745e-301,1.4334267150139943e-301,1.4314275147141144e-301,1.4294283144142344e-301,1.4274291141143542e-301,1.4254299138144742e-301,1.4234307135145943e-301,1.421431513214714e-301,1.4194323129148339e-301,1.4174331126149541e-301,1.4154339123150741e-301,1.4134347120151938e-301,1.411435511715314e-301,1.4094363114154338e-301,1.4074371111155538e-301,1.4054379108156739e-301,1.4034387105157937e-301,1.4014395102159137e-301,1.3994403099160337e-301,1.3974411096161535e-301,1.3954419093162736e-301,1.3934427090163934e-301,1.3914435087165134e-301,1.3894443084166334e-301,1.3874451081167535e-301,1.3854459078168733e-301,1.3834467075169933e-301,1.3814475072171133e-301,1.3794483069172331e-301,1.377449106617353e-301,1.3754499063174732e-301,1.373450706017593e-301,1.3714515057177128e-301,1.369452305417833e-301,1.3674531051179529e-301,1.3654539048180727e-301,1.363454704518193e-301,1.3614555042183127e-301,1.3594563039184326e-301,1.3574571036185528e-301,1.3554579033186726e-301,1.3534587030187926e-301,1.3514595027189124e-301,1.3494603024190325e-301,1.3474611021191525e-301,1.345461901819272e-301,1.3434627015193923e-301,1.3414635012195122e-301,1.3394643009196322e-301,1.3374651006197522e-301,1.335465900319872e-301,1.333466700019992e-301,1.331467499720112e-301,1.3294682994202319e-301,1.327469099120352e-301,1.3254698988204717e-301,1.3234706985205918e-301,1.3214714982207118e-301,1.3194722979208318e-301,1.3174730976209516e-301,1.3154738973210714e-301,1.3134746970211917e-301,1.3114754967213115e-301,1.3094762964214313e-301,1.3074770961215515e-301,1.3054778958216713e-301,1.3034786955217912e-301,1.3014794952219114e-301,1.2994802949220312e-301,1.297481094622151e-301,1.2954818943222713e-301,1.293482694022391e-301,1.291483493722511e-301,1.2894842934226311e-301,1.287485093122751e-301,1.285485892822871e-301,1.2834866925229908e-301,1.2814874922231108e-301,1.2794882919232308e-301,1.2774890916233507e-301,1.2754898913234707e-301,1.2734906910235905e-301,1.2714914907237105e-301,1.2694922904238305e-301,1.2674930901239504e-301,1.2654938898240706e-301,1.2634946895241904e-301,1.2614954892243102e-301,1.2594962889244305e-301,1.25749708862455e-301,1.25549788832467e-301,1.2534986880247901e-301,1.2514994877249101e-301,1.24950028742503e-301,1.2475010871251498e-301,1.24550188682527e-301,1.2435026865253898e-301,1.2415034862255096e-301,1.2395042859256299e-301,1.2375050856257497e-301,1.2355058853258695e-301,1.2335066850259897e-301,1.2315074847261096e-301,1.2295082844262294e-301,1.2275090841263496e-301,1.2255098838264694e-301,1.2235106835265892e-301,1.2215114832267095e-301,1.2195122829268293e-301,1.2175130826269493e-301,1.2155138823270691e-301,1.2135146820271892e-301,1.2115154817273092e-301,1.209516281427429e-301,1.207517081127549e-301,1.2055178808276688e-301,1.2035186805277889e-301,1.2015194802279089e-301,1.1995202799280287e-301,1.197521079628149e-301,1.1955218793282688e-301,1.1935226790283886e-301,1.1915234787285088e-301,1.1895242784286286e-301,1.1875250781287484e-301,1.1855258778288687e-301,1.1835266775289885e-301,1.1815274772291083e-301,1.1795282769292283e-301,1.1775290766293484e-301,1.1755298763294682e-301,1.1735306760295882e-301,1.1715314757297082e-301,1.169532275429828e-301,1.167533075129948e-301,1.165533874830068e-301,1.163534674530188e-301,1.1615354742303077e-301,1.159536273930428e-301,1.1575370736305478e-301,1.1555378733306678e-301,1.1535386730307876e-301,1.1515394727309076e-301,1.1495402724310277e-301,1.1475410721311475e-301,1.1455418718312675e-301,1.1435426715313875e-301,1.1415434712315074e-301,1.1395442709316274e-301,1.1375450706317472e-301,1.1355458703318672e-301,1.1335466700319872e-301,1.131547469732107e-301,1.1295482694322273e-301,1.1275490691323471e-301,1.125549868832467e-301,1.1235506685325872e-301,1.121551468232707e-301,1.1195522679328268e-301,1.117553067632947e-301,1.1155538673330668e-301,1.1135546670331867e-301,1.1115554667333067e-301,1.1095562664334267e-301,1.1075570661335465e-301,1.1055578658336665e-301,1.1035586655337866e-301,1.1015594652339066e-301,1.0995602649340264e-301,1.0975610646341464e-301,1.0955618643342663e-301,1.0935626640343863e-301,1.0915634637345063e-301,1.0895642634346261e-301,1.0875650631347461e-301,1.085565862834866e-301,1.083566662534986e-301,1.081567462235106e-301,1.0795682619352258e-301,1.0775690616353459e-301,1.075569861335466e-301,1.0735706610355857e-301,1.0715714607357057e-301,1.0695722604358255e-301,1.0675730601359458e-301,1.0655738598360656e-301,1.0635746595361854e-301,1.0615754592363056e-301,1.0595762589364255e-301,1.0575770586365453e-301,1.0555778583366655e-301,1.0535786580367853e-301,1.0515794577369051e-301,1.0495802574370254e-301,1.0475810571371452e-301,1.045581856837265e-301,1.043582656537385e-301,1.041583456237505e-301,1.0395842559376249e-301,1.037585055637745e-301,1.035585855337865e-301,1.033586655037985e-301,1.0315874547381048e-301,1.0295882544382248e-301,1.0275890541383446e-301,1.0255898538384646e-301,1.0235906535385847e-301,1.0215914532387045e-301,1.0195922529388245e-301,1.0175930526389443e-301,1.0155938523390643e-301,1.0135946520391844e-301,1.0115954517393042e-301,1.0095962514394242e-301,1.0075970511395444e-301,1.005597850839664e-301,1.003598650539784e-301,1.001599450239904e-301,9.996002499400241e-302,9.97601049640144e-302,9.95601849340264e-302,9.93602649040384e-302,9.916034487405038e-302,9.896042484406238e-302,9.876050481407439e-302,9.856058478408637e-302,9.836066475409837e-302,9.816074472411037e-302,9.796082469412235e-302,9.776090466413436e-302,9.756098463414634e-302,9.736106460415834e-302,9.716114457417032e-302,9.696122454418232e-302,9.676130451419433e-302,9.656138448420633e-302,9.636146445421831e-302,9.616154442423031e-302,9.59616243942423e-302,9.57617043642543e-302,9.55617843342663e-302,9.536186430427828e-302,9.516194427429028e-302,9.496202424430227e-302,9.476210421431427e-302,9.45621841843263e-302,9.436226415433825e-302,9.416234412435026e-302,9.396242409436228e-302,9.376250406437424e-302,9.356258403438624e-302,9.336266400439824e-302,9.316274397441024e-302,9.296282394442224e-302,9.276290391443423e-302,9.256298388444622e-302,9.23630638544582e-302,9.216314382447022e-302,9.196322379448222e-302,9.176330376449419e-302,9.15633837345062e-302,9.136346370451821e-302,9.116354367453018e-302,9.096362364454219e-302,9.076370361455417e-302,9.056378358456618e-302,9.036386355457819e-302,9.016394352459016e-302,8.996402349460216e-302,8.976410346461417e-302,8.956418343462616e-302,8.936426340463815e-302,8.916434337465014e-302,8.896442334466214e-302,8.876450331467413e-302,8.856458328468614e-302,8.836466325469813e-302,8.816474322471011e-302,8.79648231947221e-302,8.776490316473412e-302,8.75649831347461e-302,8.736506310475809e-302,8.71651430747701e-302,8.696522304478208e-302,8.676530301479408e-302,8.656538298480608e-302,8.636546295481807e-302,8.616554292483007e-302,8.596562289484207e-302,8.576570286485406e-302,8.556578283486604e-302,8.536586280487805e-302,8.516594277489005e-302,8.496602274490203e-302,8.476610271491404e-302,8.456618268492604e-302,8.436626265493801e-302,8.416634262495004e-302,8.396642259496201e-302,8.376650256497401e-302,8.356658253498602e-302,8.336666250499799e-302,8.316674247501e-302,8.296682244502199e-302,8.276690241503399e-302,8.256698238504598e-302,8.236706235505798e-302,8.216714232506998e-302,8.196722229508197e-302,8.176730226509397e-302,8.156738223510596e-302,8.136746220511795e-302,8.116754217512996e-302,8.096762214514195e-302,8.076770211515393e-302,8.056778208516595e-302,8.036786205517794e-302,8.016794202518992e-302,7.996802199520193e-302,7.976810196521391e-302,7.956818193522591e-302,7.936826190523792e-302,7.91683418752499e-302,7.896842184526189e-302,7.876850181527387e-302,7.856858178528589e-302,7.836866175529789e-302,7.816874172530986e-302,7.796882169532187e-302,7.776890166533388e-302,7.756898163534586e-302,7.736906160535787e-302,7.716914157536984e-302,7.696922154538184e-302,7.676930151539386e-302,7.656938148540584e-302,7.636946145541784e-302,7.616954142542982e-302,7.596962139544183e-302,7.576970136545382e-302,7.556978133546581e-302,7.536986130547781e-302,7.51699412754898e-302,7.49700212455018e-302,7.47701012155138e-302,7.457018118552579e-302,7.437026115553778e-302,7.417034112554978e-302,7.397042109556179e-302,7.377050106557377e-302,7.357058103558577e-302,7.337066100559776e-302,7.317074097560976e-302,7.297082094562176e-302,7.277090091563375e-302,7.257098088564574e-302,7.237106085565774e-302,7.217114082566974e-302,7.197122079568173e-302,7.177130076569372e-302,7.157138073570571e-302,7.137146070571772e-302,7.117154067572971e-302,7.09716206457417e-302,7.077170061575369e-302,7.057178058576571e-302,7.037186055577769e-302,7.017194052578969e-302,6.997202049580168e-302,6.977210046581367e-302,6.957218043582568e-302,6.937226040583767e-302,6.917234037584966e-302,6.897242034586165e-302,6.877250031587366e-302,6.857258028588565e-302,6.837266025589764e-302,6.817274022590964e-302,6.797282019592163e-302,6.777290016593364e-302,6.757298013594563e-302,6.737306010595761e-302,6.717314007596962e-302,6.69732200459816e-302,6.677330001599361e-302,6.65733799860056e-302,6.637345995601759e-302,6.617353992602959e-302,6.597361989604159e-302,6.577369986605358e-302,6.557377983606557e-302,6.537385980607757e-302,6.517393977608956e-302,6.497401974610156e-302,6.477409971611356e-302,6.457417968612555e-302,6.437425965613755e-302,6.417433962614955e-302,6.397441959616153e-302,6.377449956617354e-302,6.357457953618553e-302,6.337465950619752e-302,6.317473947620952e-302,6.297481944622151e-302,6.277489941623351e-302,6.25749793862455e-302,6.23750593562575e-302,6.217513932626949e-302,6.197521929628149e-302,6.177529926629348e-302,6.157537923630547e-302,6.137545920631748e-302,6.117553917632947e-302,6.097561914634147e-302,6.077569911635346e-302,6.057577908636546e-302,6.037585905637745e-302,6.017593902638945e-302,5.997601899640144e-302,5.977609896641343e-302,5.957617893642543e-302,5.937625890643743e-302,5.917633887644942e-302,5.897641884646142e-302,5.87764988164734e-302,5.857657878648541e-302,5.837665875649741e-302,5.817673872650939e-302,5.797681869652139e-302,5.777689866653339e-302,5.757697863654539e-302,5.737705860655738e-302,5.717713857656937e-302,5.697721854658136e-302,5.677729851659337e-302,5.657737848660536e-302,5.637745845661735e-302,5.617753842662935e-302,5.597761839664135e-302,5.577769836665334e-302,5.557777833666534e-302,5.537785830667732e-302,5.517793827668932e-302,5.497801824670133e-302,5.477809821671331e-302,5.457817818672531e-302,5.437825815673731e-302,5.417833812674931e-302,5.39784180967613e-302,5.377849806677329e-302,5.357857803678528e-302,5.337865800679728e-302,5.317873797680928e-302,5.297881794682127e-302,5.277889791683327e-302,5.257897788684526e-302,5.237905785685726e-302,5.217913782686926e-302,5.197921779688124e-302,5.177929776689325e-302,5.157937773690524e-302,5.137945770691723e-302,5.117953767692923e-302,5.097961764694123e-302,5.077969761695322e-302,5.057977758696522e-302,5.037985755697721e-302,5.01799375269892e-302,4.99800174970012e-302,4.97800974670132e-302,4.958017743702519e-302,4.938025740703719e-302,4.918033737704919e-302,4.898041734706117e-302,4.878049731707318e-302,4.858057728708516e-302,4.838065725709717e-302,4.818073722710916e-302,4.798081719712115e-302,4.778089716713315e-302,4.758097713714515e-302,4.738105710715714e-302,4.718113707716913e-302,4.698121704718112e-302,4.678129701719312e-302,4.6581376987205124e-302,4.6381456957217116e-302,4.6181536927229103e-302,4.59816168972411e-302,4.578169686725311e-302,4.5581776837265095e-302,4.538185680727709e-302,4.5181936777289085e-302,4.498201674730108e-302,4.478209671731308e-302,4.4582176687325076e-302,4.4382256657337063e-302,4.418233662734906e-302,4.3982416597361053e-302,4.378249656737305e-302,4.3582576537385047e-302,4.3382656507397034e-302,4.318273647740904e-302,4.2982816447421034e-302,4.2782896417433026e-302,4.258297638744502e-302,4.2383056357457026e-302,4.218313632746901e-302,4.198321629748101e-302,4.1783296267493e-302,4.1583376237505e-302,4.1383456207516996e-302,4.1183536177528994e-302,4.098361614754098e-302,4.078369611755298e-302,4.058377608756498e-302,4.0383856057576967e-302,4.0183936027588965e-302,3.998401599760096e-302,3.978409596761296e-302,3.958417593762495e-302,3.9384255907636943e-302,3.9184335877648935e-302,3.8984415847660943e-302,3.878449581767293e-302,3.8584575787684927e-302,3.838465575769692e-302,3.8184735727708917e-302,3.7984815697720914e-302,3.7784895667732906e-302,3.7584975637744903e-302,3.73850556077569e-302,3.718513557776889e-302,3.698521554778089e-302,3.678529551779288e-302,3.658537548780488e-302,3.6385455457816876e-302,3.618553542782887e-302,3.598561539784086e-302,3.578569536785286e-302,3.5585775337864855e-302,3.538585530787685e-302,3.5185935277888845e-302,3.498601524790084e-302,3.4786095217912834e-302,3.458617518792483e-302,3.438625515793683e-302,3.418633512794882e-302,3.398641509796082e-302,3.378649506797281e-302,3.3586575037984807e-302,3.33866550079968e-302,3.3186734978008797e-302,3.2986814948020794e-302,3.278689491803279e-302,3.2586974888044783e-302,3.238705485805678e-302,3.2187134828068773e-302,3.198721479808077e-302,3.1787294768092767e-302,3.158737473810476e-302,3.138745470811675e-302,3.1187534678128743e-302,3.0987614648140746e-302,3.078769461815274e-302,3.0587774588164735e-302,3.0387854558176727e-302,3.0187934528188725e-302,2.9988014498200717e-302,2.978809446821272e-302,2.958817443822471e-302,2.938825440823671e-302,2.91883343782487e-302,2.89884143482607e-302,2.878849431827269e-302,2.8588574288284687e-302,2.8388654258296685e-302,2.8188734228308677e-302,2.798881419832067e-302,2.7788894168332666e-302,2.7588974138344663e-302,2.7389054108356655e-302,2.718913407836866e-302,2.698921404838065e-302,2.678929401839264e-302,2.6589373988404634e-302,2.6389453958416637e-302,2.618953392842863e-302,2.5989613898440626e-302,2.578969386845262e-302,2.5589773838464615e-302,2.5389853808476607e-302,2.518993377848861e-302,2.49900137485006e-302,2.4790093718512594e-302,2.459017368852459e-302,2.4390253658536583e-302,2.419033362854858e-302,2.3990413598560573e-302,2.3790493568572575e-302,2.3590573538584567e-302,2.339065350859656e-302,2.3190733478608557e-302,2.2990813448620554e-302,2.2790893418632546e-302,2.2590973388644546e-302,2.2391053358656538e-302,2.2191133328668535e-302,2.1991213298680527e-302,2.1791293268692527e-302,2.159137323870452e-302,2.1391453208716511e-302,2.119153317872851e-302,2.0991613148740503e-302,2.0791693118752498e-302,2.0591773088764495e-302,2.039185305877649e-302,2.0191933028788482e-302,1.9992012998800485e-302,1.9792092968812474e-302,1.959217293882447e-302,1.9392252908836463e-302,1.9192332878848463e-302,1.8992412848860455e-302,1.8792492818872453e-302,1.8592572788884445e-302,1.8392652758896442e-302,1.819273272890844e-302,1.7992812698920431e-302,1.7792892668932429e-302,1.7592972638944423e-302,1.7393052608956418e-302,1.7193132578968415e-302,1.699321254898041e-302,1.6793292518992405e-302,1.6593372489004397e-302,1.6393452459016394e-302,1.6193532429028389e-302,1.5993612399040383e-302,1.5793692369052378e-302,1.5593772339064373e-302,1.539385230907637e-302,1.5193932279088365e-302,1.499401224910036e-302,1.4794092219112357e-302,1.459417218912435e-302,1.4394252159136346e-302,1.4194332129148343e-302,1.3994412099160335e-302,1.3794492069172333e-302,1.3594572039184327e-302,1.339465200919632e-302,1.3194731979208317e-302,1.2994811949220311e-302,1.2794891919232306e-302,1.2594971889244303e-302,1.2395051859256298e-302,1.2195131829268293e-302,1.1995211799280287e-302,1.1795291769292285e-302,1.1595371739304279e-302,1.1395451709316274e-302,1.119553167932827e-302,1.0995611649340263e-302,1.0795691619352259e-302,1.0595771589364257e-302,1.039585155937625e-302,1.0195931529388245e-302,9.99601149940024e-303,9.796091469412234e-303,9.59617143942423e-303,9.396251409436226e-303,9.196331379448221e-303,8.996411349460215e-303,8.796491319472211e-303,8.596571289484207e-303,8.396651259496202e-303,8.196731229508197e-303,7.996811199520193e-303,7.796891169532186e-303,7.596971139544182e-303,7.397051109556178e-303,7.197131079568173e-303,6.997211049580167e-303,6.797291019592163e-303,6.597370989604159e-303,6.397450959616154e-303,6.197530929628149e-303,5.997610899640143e-303,5.7976908696521393e-303,5.5977708396641347e-303,5.3978508096761294e-303,5.197930779688125e-303,4.9980107497001207e-303,4.798090719712116e-303,4.5981706897241107e-303,4.3982506597361054e-303,4.1983306297481013e-303,3.998410599760096e-303,3.7984905697720913e-303,3.598570539784087e-303,3.398650509796082e-303,3.198730479808077e-303,2.998810449820072e-303,2.7988904198320674e-303,2.5989703898440627e-303,2.3990503598560577e-303,2.1991303298680527e-303,1.999210299880048e-303,1.799290269892043e-303,1.5993702399040387e-303,1.3994502099160337e-303,1.199530179928029e-303,9.99610149940024e-304,7.996901199520192e-304,5.9977008996401444e-304,3.998500599760096e-304,1.9993002998800482e-304,1.0e-308]} diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/very_large_positive.json b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/very_large_positive.json new file mode 100644 index 000000000000..4ba3c127af88 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/very_large_positive.json @@ -0,0 +1 @@ +{"expected":[-0.09751182812517516,-0.0919329956289187,-0.0856215766514041,-0.07862984446614439,-0.07101546989719286,-0.06284104641246908,-0.0541735763585262,-0.04508392254728119,-0.035646229677079075,-0.025937320305693266,-0.016036070289724973,-0.006022768761739748,0.004021532167727243,0.014015672722404449,0.02387904049456296,0.033532219920596774,0.042897630971082644,0.05190015192448246,0.06046772123076045,0.06853191364834932,0.07602848605352393,0.08289788857358296,0.08908573698219922,0.09454324261446297,0.09922759640796126,0.10310230405177054,0.10613746962448112,0.10831002552201813,0.10960390691270532,0.11001016940714446,0.1095270490904413,0.10815996453035372,0.10592146084332053,0.10283109636726581,0.09891527295179797,0.09420701132924784,0.08874567347024824,0.08257663425175905,0.07575090517015923,0.06832471321407776,0.060359038367923154,0.05191911354481868,0.043073891044238505,0.03389547989271787,0.024458558653567906,0.014839768481702969,0.005117091351104023,-0.004630781506143102,-0.014325085839626632,-0.023887620160278733,-0.03324137593310948,-0.04231115710962128,-0.05102418402071755,-0.059310676785152575,-0.06710441356158492,-0.07434325918273044,-0.08096965995612172,-0.08693110069561893,-0.09218052035869366,-0.09667668300411854,-0.10038450115024809,-0.10327530900255803,-0.10532708342740221,-0.1065246109736772,-0.10685959968184025,-0.1063307348669383,-0.1049436785153718,-0.1027110123903612,-0.09965212539484175,-0.09579304618913537,-0.09116622250061283,-0.08581024899015562,-0.07976954595210083,-0.07309399151724905,-0.06583851039924742,-0.05806262257032399,-0.04982995557015334,-0.041207724439112886,-0.03226618352200623,-0.023078054608546544,-0.01371793606075257,-0.004261697723476217,0.00521413347850577,0.01463299228594058,0.02391889319486418,0.03299704290550985,0.04179444219836462,0.05024047239829031,0.05826746171936393,0.06581122695262051,0.07281158616469463,0.0792128383158298,0.08496420597877978,0.0900202376435832,0.09434116642449775,0.09789322234188547,0.1006488957305754,0.10258714972414167,0.10369358017838415,0.10396052182370438,0.10338709987160975,0.10197922674169393,0.09974954401859158,0.09671731019000389,0.09290823515338485,0.08835426290675297,0.08309330425491017,0.07716892176279051,0.07062996956949108,0.0635301910367406,0.055927777541228185,0.04788489202872445,0.03946716122676946,0.03074314065973972,0.021783756823328962,0.012661731053291317,0.003450989764228489,-0.005773934162742755,-0.014938504000254578,-0.023968780934511432,-0.03279202011037486,-0.04133725616066539,-0.049535873510485856,-0.05732215687710292,-0.064633817552356,-0.07141249125639253,-0.07760420358698508,-0.08315979935590022,-0.08803533240048934,-0.09219241278249873,-0.09559850863432774,-0.09822720028281375,-0.10005838466903161,-0.10107842848645018,-0.10128026887576946,-0.10066346093952439,-0.099234171769636,-0.0970051211130455,-0.09399546923089518,-0.09023065293195472,-0.08574217117770527,-0.08056732206135549,-0.07474889335279658,-0.06833480917302025,-0.06137773571181613,-0.05393464922888781,-0.04606636987821933,-0.03783706516627259,-0.02931372709419454,-0.020565627240844903,-0.011663754215414006,-0.002680238044434861,0.006312233843021421,0.01524100430690694,0.02403403311643474,0.03262047776618633,0.04093126380872618,0.04889964011549637,0.056461714605720394,0.06355696614692315,0.07012872852882729,0.0761246426434721,0.08149707326626539,0.08620348712331007,0.0902067892473052,0.09347561496502653,0.09598457522106078,0.09771445332217024,0.09865235158127175,0.09879178674638749,0.09813273351470689,0.09668161585177396,0.09445124625737206,0.0914607135395207,0.08773522007273953,0.08330586992304276,0.07820940961671427,0.07248792370966158,0.06618848767594163,0.059362780975068634,0.05206666347518588,0.044359718700599016,0.036304767635206424,0.027967357045952438,0.019415226490687144,0.010717758341280411,0.0019454152840479777,-0.006830830145347644,-0.015540069377184006,-0.0241120303369458,-0.032477644068930486,-0.04056960088836829,-0.04832289158680683,-0.055675329342109434,-0.06256804814586182,-0.06894597375608905,-0.07475826341017192,-0.07995871078995517,-0.08450611301609952,-0.08836459675941978,-0.091503900890728,-0.09389961344486027,-0.09553336104617556,-0.09639294932893047,-0.09647245328334349,-0.09577225686369735,-0.09429904160518673,-0.09206572440808306,-0.08909134505784187,-0.08540090445471096,-0.08102515492293819,-0.07600034435467436,-0.0703679163139713,-0.06417416857897533,-0.05746987293265321,-0.050309859321521024,-0.042752567785409645,-0.03485957181704623,-0.0266950770360919,-0.018325399256565723,-0.009818426187628477,-0.0012430671343877009,0.007331304843358387,0.015835413801345437,0.02420064027826068,0.03235957464647937,0.04024655998658688,0.04779822011633913,0.05495396853013895,0.061656494164545335,0.06785222009756904,0.0734917315129028,0.07853016951295415,0.08292758764452227,0.08664926830588247,0.08966599653144995,0.09195428899735979,0.0934965764554818,0.09428133818154324,0.09430318741214624,0.09356290714236265,0.09206743605706265,0.08982980477193757,0.08686902296105375,0.08320991834351195,0.0788829288891653,0.07392384997928576,0.06837353861952385,0.06227757714658924,0.05568589919403294,0.04865238098374567,0.041234401285909064,0.03349237363890757,0.02548925464025173,0.017290032307998776,0.008961198668144996,0.0005702108456904009,-0.007815054975362345,-0.016126852305593447,-0.02429811138334233,-0.03226298007281272,-0.03995735426731014,-0.04731939352789562,-0.05429001781209721,-0.060813381305024214,-0.06683731955491458,-0.07231376633525967,-0.07719913690437495,-0.08145467460857571,-0.08504675807474478,-0.0879471665595333,-0.09013330136319386,-0.0915883615732362,-0.09230147277388065,-0.09226776773863128,-0.09148841851211138,-0.08997061968045367,-0.08772752302383718,-0.08477812413703188,-0.08114710199088025,-0.076864612786404,-0.07196603982061844,-0.06649170143622143,-0.060486519463261945,-0.05399965087699434,-0.047084085689871054,-0.039796214364634694,-0.032195368277688076,-0.024343336975291497,-0.016303866148104945,-0.008142140400628496,7.57449899443704e-5,0.008283319046985307,0.016414272471989653,0.024402993084316066,0.03218509500167612,0.03969793729558076,0.04688112794588612,0.0536770090421572,0.06003111933570101,0.06589263043352654,0.0712147531426076,0.07595511071790319,0.08007607603854154,0.08354507003129676,0.08633481897645712,0.08842356866591039,0.08979525373398688,0.09043962084547744,0.09035230479931645,0.08953485698766624,0.08799472603546898,0.08574519083183371,0.082805246548777,0.0791994446217412,0.07495768803691823,0.07011498362973179,0.06471115344398314,0.05879050752938906,0.052401480863868234,0.04559623737357227,0.038430244285910006,0.030961820286698534,0.023251661160144627,0.015362346768005044,0.0073578333705829595,-0.000697064593953246,-0.008737199074965136,-0.01669761507602215,-0.024514075167202463,-0.03212357760958862,-0.039464863914843065,-0.0464789117527578,-0.0531094092425675,-0.059303206818578966,-0.06501074304601001,-0.07018644097734794,-0.07478907188119108,-0.0787820834425661,-0.08213388982381205,-0.08481812128600512,-0.08681383139999733,-0.08810566022079082,-0.08868395215636433,-0.08854482762931448,-0.08769020800379297,-0.08612779362818422,-0.08387099522272444,-0.08093881921774951,-0.07735570801944161,-0.07315133654283168,-0.06836036670348627,-0.0630221618969417,-0.057180463815809324,-0.050883034256054775,-0.04418126484374241,-0.037129757869393286,-0.029785881646928702,-0.022209304016162897,-0.014461507780357595,-0.006605292012100208,0.001295736729386742,0.009177679149349438,0.016976859773097448,0.024630341132154763,0.03207643143066338,0.03925518159888569,0.046108867730780295,0.05258245502498034,0.058624039502052604,0.064185263954421,0.06922170479720319,0.07369322672681831,0.07756430235749755,0.08080429429169605,0.08338769738650205,0.08529433930197869,0.0865095377563202,0.08702421326401721,0.08683495649402653,0.08594404975235151,0.08435944246443756,0.08209468090441192,0.07916879278742689,0.07560612770522862,0.07143615474063739,0.06669321894103214,0.06141625866138965,0.05564848610134053,0.04943703365546892,0.042832568969423404,0.03588888184408446,0.02866244635408142,0.021211961743579123,0.013597875829915094,0.005881894782995431,-0.0018735167456264215,-0.009605641096329836,-0.01725201458897098,-0.024750931927749964,-0.032041943951894906,-0.03906634471864399,-0.045767643995343665,-0.05209202135939701,-0.057988758257310195,-0.06341064455584623,-0.06831435632793871,-0.07266080185168962,-0.07641543306063271,-0.07954851996532776,-0.0820353858679703,-0.08385660151059969,-0.08499813663108106,-0.08545146774658888,-0.08521364133907425,-0.08428729197823251,-0.08268061528191412,-0.08040729597877895,-0.07748639170034173,-0.07394217348646519,-0.06980392433696284,-0.06510569747944277,-0.059886036347194194,-0.05418765856812009,-0.048057106554055096,-0.041544367546927044,-0.034702466222003694,-0.02758703316696422,-0.02025585274701989,-0.012768394029220042,-0.005185328572226055,0.002431961009968868,0.010021877731305506,0.01752310814648758,0.02487511747007076,0.032018637905126886,0.03889614624366751,0.0454523268916136,0.05163451659270973,0.057393127277298096,0.06268204364217228,0.06745899227520342,0.07168587937145787,0.07532909434416346,0.07835977691204092,0.0807540455419304,0.08249318543989889,0.08356379461252864,0.08395788686024248,0.08367295091350725,0.08271196527778236,0.0810833687112568,0.07880098661785388,0.07588391399378255,0.07235635591621192,0.06824742690459958,0.06359091081610321,0.05842498325362581,0.05279189876590179,0.04673764540116926,0.040311569437151265,0.033565973348191204,0.026555690283564748,0.019337638517486776,0.011970359489756938,0.0045135431849554096,-0.0029724553032685497,-0.010427104108832908,-0.01779018388103128,-0.025002274069926837,-0.032005232283837406,-0.03874266285321858,-0.04516037082615247,-0.05120679774202962,-0.05683343568071744,-0.061995216263389476,-0.06665087148673589,-0.07076326350280718,-0.07429968071037853,-0.07723209779838179,-0.07953739767542052,-0.08119755352922423,-0.0821997695836639,-0.08253657945594445,-0.08220590136013901,-0.08121104975253646,-0.07956070336651185,-0.07726882993695482,-0.0743545682638508,-0.07084206860860126,-0.06676029275229309,-0.062142775369704334,-0.057027348683743505,-0.05145583265976094,-0.04547369327538746,-0.03912967165702484,-0.03247538710680687,-0.025564917251869157,-0.018454358729543357,-0.011201371976053587,-0.0038647138113503624,0.0034962383921967404,0.010821967105116025,0.018053295714795053,0.025131866390892644,0.032000610884609586,0.03860421046489568,0.044889541286030274,0.05080610160215543,0.056306417394351944,0.061346423153451665,0.06588581476552309,0.06988837167518161,0.07332224575268957,0.07616021456219897,0.07837989701818991,0.0799639297228903,0.08090010259666602,0.08118145274350641,0.08080631583209842,0.07977833461685152,0.0781064245698184,0.0758046969409513,0.07289233990775063,0.06939345881331448,0.06533687682137172,0.06075589763542174,0.05568803223404187,0.05017469186331613,0.04426084979786258,0.03799467463193178,0.031427138089483525,0.02461160054528357,0.01760337762616133,0.010459291411344022,0.0032372098719699494,-0.004004421718436217,-0.011207053609292831,-0.018312504810099065,-0.02526343291557081,-0.03200379672597416,-0.03847930793155431,-0.04463786822167513,-0.05042998830034867,-0.055809185439199306,-0.06073235637535225,-0.06516012256380486,-0.06905714501990157,-0.07239240623567833,-0.0751394569221452,-0.07727662561574813,-0.07878718948903682,-0.07965950502048132,-0.07988709750387742,-0.07946870871122334,-0.07840830236163503,-0.0767150273900519,-0.07440313935041956,-0.07149188062595609,-0.06800532045129551,-0.06397215607507514,-0.05942547670428382,-0.054402492170901505,-0.048944228544635815,-0.04309519318059932,-0.036903011935511515,-0.030418041508395378,-0.02369296006009129,-0.01678233943858517,-0.009742202482799226,-0.0026295689949620065,0.004498005939963608,0.011582897550738257,0.018567877126828596,0.025396574152627138,0.03201393109817385,0.03836664719824188,0.04440360764385558,0.05007629473131312,0.055339177662594184,0.06015007786641289,0.06447050690971558,0.06826597429341112,0.07150626267183384,0.07416566830076543,0.07622320480169367,0.07766276862803238,0.0784732649298534,0.07864869283476755,0.07818818949133341,0.07709603255510825,0.07538160113348398,0.07305929554105876,0.07014841654976768,0.06667300514465278,0.06266164411436091,0.0581472231126513,0.05316666912090991,0.04776064451951647,0.04197321523572286,0.03585149167530541,0.029445245362818062,0.022806504409004086,0.01598913109229767,0.009048384983022588,0.0020404751527484275,-0.0049778949035883735,-0.011949985949455592,-0.018819481583051367,-0.02553094300292107,-0.03203025629154139,-0.038265068609150514,-0.04418520978278836,-0.04974309589651544,-0.0548941116370935,-0.05959696832384429,-0.06381403475045093,-0.06751163818861126,-0.07066033314676733,-0.07323513573971385,-0.0752157218045572,-0.07658658719299495,-0.07733716897681625,-0.07746192662039884,-0.07696038249823381,-0.07583712146450564,-0.07410174951285395,-0.0717688118949426,-0.06885767139371121,-0.06539234776853332,-0.061401319702365724,-0.05691729088283045,-0.051976922137570464,-0.0466205318169,-0.04089176687146024,-0.034837247307324376,-0.028506186913847875,-0.021949993348843875,-0.015221850829868544,-0.008376288818230498,-0.0014687401926612926,0.00544490750837728,0.012308764143792165,0.01906738867075429,0.0256662368397102,0.03205210126923344,0.03817354035101406,0.043981292528485434,0.04942867261363027,0.05447194695442217,0.05907068443885356,0.0631880805192672,0.06679125166101263,0.06985149786057018,0.07234453113822739,0.07425066818704407,0.07555498565095686,0.07624743680809236,0.07632292874820162,0.07578135945309483,0.07462761451341858,0.0728715235414776,0.07052777666541052,0.06761580181225693,0.06415960380369996,0.06018756659598992,0.055732220292250965,0.05082997483870282,0.0455208225839464,0.03984801213028394,0.03385769613602454,0.027598555936037977,0.021121406032797396,0.014478781670324445,0.0077245128375109376,0.000913288154262694,-0.005899787827178538,-0.012659640323014748,-0.01931166941670432,-0.025802190959519248,-0.032078869713389746,-0.03809114124213999,-0.04379061915094949,-0.049131484395026424,-0.054070853525975335,-0.0585691229170857,-0.06259028620522598,-0.06610222240567269,-0.06907695239521866,-0.07149086171634832,-0.07332488792904426,-0.07456467102468466,-0.07520066571613772,-0.07522821472717585,-0.07464758252016308,-0.07346394922109349,-0.0716873648228701,-0.0693326640686158,-0.06641934273420709,-0.06297139634056163,-0.05901712262896249,-0.05458888942446851,-0.049722869790830126,-0.0444587466431282,-0.03883938922942561,-0.03291050411812169,-0.026720263531615482,-0.020318914047694456,-0.013758368846293714,-0.007091786809754619,-0.0003731418882961513,0.006343213781597697,0.013002989470447552,0.019552394606151373,0.02593857313651611,0.032110029997241704,0.03801704624522023,0.043612079511269816,0.048850146547711505,0.053689184793387884,0.05809039005069246,0.06201852756448105,0.0654422140097857,0.06833416813227575,0.07067142804047424,0.0724355334197852,0.07361267122317335,0.07419378368961389,0.07417463784673026,0.0735558559659312,0.0723429067543028,0.07054605738494996,0.06818028678386118,0.06526516090411112,0.061824671024831315,0.0578870364103517,0.05348447295188386,0.04865292968774758,0.043431795356242836,0.03786357737576521,0.031993555867723844,0.02586941553748509,0.019540858405301145,0.013059200531660839,0.0064769560083860825,-0.00015258841279307264,-0.006775804609390981,-0.0133391568050748,-0.01978963420741535,-0.026075179070967368,-0.03214510672983046,-0.037950514211343794,-0.04344467413746736,-0.04858341074178542,-0.05332545497701754,-0.05763277585919597,-0.061470885388872666,-0.064809114605266,-0.06762085856438733,-0.06988378828499939,-0.07158002797465911,-0.07269629612996631,-0.07322400939812583,-0.07315934838870386,-0.07250328493255127,-0.07126157059679289,-0.06944468657801746,-0.06706775540780821,-0.06415041521302893,-0.06071665757530863,-0.05679463032754071,-0.052416406907547335,-0.047617724158094746,-0.04243769071600899,-0.03691846836920218,-0.03110492897708635,-0.025044289745359192,-0.018785729819003633,-0.01237999130606026,-0.005878967968235262,0.0006647150883559133,0.007198127318771666,0.013668460794936771,0.02002345695041763,0.026211828566451396,0.0321836735923913,0.03789087746229178,0.0432875006647859,0.04833014844499761,0.05297831966394525,0.057194732011534626,0.06094562096241311,0.06420101007807838,0.06693495049198062,0.06912572766497829,0.07075603376443902,0.07181310429928704,0.07228881793316869,0.07217975869627091,0.07148724012076867,0.07021729113293365,0.06838060384411217,0.06599244369058578,0.06307252267626279,0.0596448367697736,0.055737468796449176,0.05138235844352435,0.04661504126148837,0.041474358793682845,0.03600214219799142,0.030242871936981084,0.02424331630434411,0.01805215172451306,0.011719567907468866,0.005296861060904238,-0.001163981543918007,-0.007610702288801106,-0.013991195803687429,-0.020253930023429057,-0.026348362304397358,-0.03222534724150433,-0.03783753289569931,-0.04313974223805888,-0.048089336738374656,-0.05264655917266797,-0.056774852894116226,-0.06044115500409394,-0.06361616107278525,-0.06627455929047105,-0.06839523217915225,-0.06996142425768825,-0.07096087432993284,-0.07138591135220845,-0.07123351313154559,-0.07050532740703667,-0.0692076551709772,-0.06735139639173128,-0.06495195860399455,-0.06202912913188243,-0.05860691200362674,-0.0547133309012521,-0.05038019976213309,-0.04564286290960452,-0.04053990683469511,-0.03511284597866708,-0.029405785074459043,-0.02346506079276012,-0.017338865603734217,-0.011076856907067023,-0.004729754599891469,0.0016510696566670057,0.00801400814680559,0.01430763442186988,0.020481118860660518,0.026484639110855128,0.0322697820979076,0.0377899343582896,0.04300065755059231,0.04786004612002098,0.05232906423817755,0.05637185930956662,0.059956049527526194,0.06305298317381171,0.06563796758603155,0.06769046596373536,0.06919426044516369,0.07013758016036183,0.07051319325032264,0.07031846213375217,0.06955536160057917,0.06823045961205083,0.06635486098873952,0.06394411446759336,0.06101808390485899,0.0576007846909481,0.05372018672370514,0.04940798555587402,0.04469934358864002,0.03963260342390257,0.0342489757114692,0.028592204031863064,0.02270820953926348,0.01664471825077874,0.010450874006495938,0.004176840238458191,-0.002126606225012915,-0.008408486031100094,-0.014618029526316289,-0.02070508699968848,-0.02662053363091485,-0.032316665874237066,-0.037747586080177704,-0.04286957225462988,-0.04764142997700383,-0.05202482364539336,-0.05598458438575195,-0.05948899215250382,-0.06251002975830058,-0.06502360679905765,-0.06700975168510843,-0.0684527702483092,-0.06934136966610988,-0.06966874672477821,-0.06943263973284598,-0.06863534369009652,-0.06728368861465202,-0.06538898122854594,-0.06296691049815692,-0.060037417817682695,-0.056624532909036566,-0.05275617678790586,-0.0484639334109629,-0.04378279187123822,-0.03875086124542813,-0.03340906041650494,-0.027800785395670626,-0.021971556847831974,-0.015968650682935848,-0.00984071471042446,-0.003637374464677626,0.002591168605275882,0.008794543328946995,0.014922616104408577,0.02092589599248312,0.026755934342331596,0.03236571572215553,0.0377100370011342,0.0427458715266226,0.04743271546315647,0.05173291350595695,0.055611961350202535,0.05903878248696105,0.06198597710580427,0.0644300411110567,0.06635155350151689,0.06773533062035476,0.06857054605065256,0.06885081521053624,0.06857424398778234,0.06774344104486989,0.0663654937193141,0.06445190773840401,0.06201851125977808,0.059085324037259,0.05567639279270197,0.051819594147022675,0.047546406724864904,0.04289165429544109,0.03789322204493355,0.03259174829161004,0.02703029415175191,0.021253993841035775,0.01530968845073996,0.009245546169825737,0.003110672031524705,-0.0030452896543101465,-0.009172556964793707,-0.015221612874305797,-0.021143605357498662,-0.026890741852690456,-0.03241667490099307,-0.0376768758499572,-0.042628993609031926,-0.04723319556693696,-0.05145248792712104,-0.05525301288563501,-0.058604320264609606,-0.06147961142255466,-0.06385595348819605,-0.06571446220570544,-0.06704045193399438,-0.06782355160917446,-0.06805778575516333,-0.06774161991051185,-0.0668779701275433,-0.06547417649050259,-0.06354194089026455,-0.061097229581887645,-0.05816014133559784,-0.054754742269349434,-0.050908868719694696,-0.0466538997651414,-0.04202450126041025,-0.03705834346905879,-0.03179579459397352,-0.026279592698544334,-0.020554498684375835,-0.014666933142772492,-0.00866460002574964,-0.002596100186944888,0.0034894620772789793,0.0095428763017367,0.015515223727681734,0.021358272563060533,0.027024867434565766,0.0324693098873121,0.03764772686234047,0.042518424181304165,0.047042222190781864,0.051182770864691154,0.054906841831043315,0.05818459497741913,0.06098981749652078,0.06330013345728233,0.06509718222647927,0.06636676431861906,0.06709895351607012,0.06728817437475161,0.06693324451105023,0.0660373813506694,0.0646081733075699,0.06265751564867311,0.06020151158526991,0.05726033941279258,0.053858086794502956,0.050022553549516416,0.04578502455928464,0.041180014647155844,0.03624498751098454,0.03102005099716328,0.025547631194220415,0.019872127993751095,0.01403955491456393,0.008097166111348522,0.002093073590916101,-0.0039241422637369605,-0.009905825709096941,-0.015803639017532758,-0.02156995303448168,-0.027158231761281168,-0.032523407858784215,-0.03762224604223753,-0.04241369143768221,-0.04685920009353227,-0.050923048986988066,-0.054572623032351594,-0.05777867678576567,-0.060515568746869114,-0.06276146638067064,-0.0644985202207828,-0.06571300566609327,-0.06639543134494506,-0.06654061319183693,-0.06614771365931538,-0.06522024576991069,-0.06376604199733485,-0.061797188250448255,-0.0593299235153985,-0.0563845059885668,-0.05298504680328804,-0.04915931271455682,-0.044938499355990806,-0.040356976920177486,-0.03545201033527778,-0.03026345621561431,-0.024833439050291044,-0.01920600926017706,-0.013426785898510922,-0.0075425868927972775,-0.0016010498245373158,0.004349753681975526,0.010261706840869174,0.016087036710450912,0.021778700178994206,0.027290763812388756,0.03257877449702649,0.03760011788758839,0.04231436176981252,0.04668358157203419,0.05067266540528223,0.0542495961787967,0.05738570852463921,0.06005591847007604,0.062238924017958094,0.06391737503160089,0.0650780110697573,0.0657117660771751,0.06581383910478762,0.06538373050869341,0.06442524335643778,0.06294645005050921,0.06095962446010492,0.058481140130838175,0.05553133541590385,0.05213434663907816,0.04831791065764951,0.04411313843988531,0.0395542615049455,0.03467835329138238,0.02952502772176312,0.024136117413894775,0.018555334152173367,0.012827914374347263,0.007000252548494882,0.0011195254110978878,-0.004766689890803043,-0.010610800662963982,-0.016365583419973646,-0.021984565423888425,-0.027422399923271577,-0.032635232063224,-0.037581052514229336,-0.04222003596868767,-0.04651486177804661,-0.050431014149441254,-0.05393705948753098,-0.05700489865341231,-0.05960999211657525,-0.061731556196190675,-0.06335272882280431,-0.06446070349879728,-0.06504683039384722,-0.06510668377789698,-0.06464009526671981,-0.06365115263182423,-0.06214816420493946,-0.060143589185406576,-0.05765393443422971,-0.054699618609084316,-0.051304804758058195,-0.047497202744186943,-0.043307843115889026,-0.03877082426825061,-0.03392303495490571,-0.02880385440827431,-0.023454832505584774,-0.017919352577916343,-0.012242279598310514,-0.00646959660150167,-0.00064803228128407,0.005175317218914394,0.010953369261530023,0.016639435335328127,0.02218759826426319,0.02755308295756077,0.0326926177078577,0.03756478312240936,0.042130345874059574,0.04635257458303623,0.05019753528666249,0.053634364120570314,0.0566355150206091,0.059176980457841255,0.06123848343818608,0.06280363923155695,0.06386008554095754,0.06439958007784848,0.06441806477417412,0.0639156961315752,0.06289684148232855,0.061370041212232884,0.05934793727076947,0.05684716856618617,0.05388823411048167,0.050495325039449424,0.04669612688387413,0.04252159370763916,0.03800569595496867,0.033185144060468186,0.028099090070357918,0.022788809699692606,0.017297367407144767,0.011669267204646488,0.0059500920329454594,0.00018613462489911197,-0.00557597715455838,-0.011289657459930982,-0.01690873905793323,-0.022387846317582196,-0.027682761584558315,-0.032750781982007975,-0.03755106375906095,-0.04204495141065896,-0.04619628891699714,-0.04997171059694785,-0.05334090923607375,-0.05627687933487885,-0.05875613352532561,-0.06075889042162637,-0.06226923240326364,-0.06327523207208612,-0.06376904637928066,-0.06374697767993452,-0.06320950124066829,-0.06216125899726597,-0.06061101963216203,-0.058571605313855635,-0.05605978570961238,-0.05309614014700797,-0.049704889056832804,-0.04591369607754066,-0.041753442437789876,-0.03725797545678805,-0.03246383321032666,-0.027409947601854768,-0.022137328251273826,-0.016688729767767967,-0.011108305105863425,-0.00544124781485776,0.00026657392006090256,0.005968988481983766,0.011619894268006461,0.017173632356365157,0.022585355382850978,0.027811389646724367,0.03280958752277356,0.037539667336181214,0.04196353795982162,0.046045605518661444,0.04975305973205843,0.05305613759074046,0.05592836224979198,0.058346755220474764,0.06029202016067566,0.06174869679429343,0.06270528373217976,0.06315432921932712,0.06309248909281624,0.06252055150049335,0.06144342819929273,0.059870112522377734,0.05781360437365794,0.05529080287457526,0.05232236754918592,0.0489325491873897,0.045148991770627964,0.04100250707751139,0.03652682380678543,0.03175831325997395,0.02673569381442556,0.02149971658764202,0.016092834844492747,0.010558859828899592,0.004942605809816827,-0.0007104727830406238,-0.006354649195930145,-0.011944294183929853,-0.017434244849081557,-0.022780169502716056,-0.02793892560464921,-0.03286890788954312,-0.03753038387165901,-0.04188581402281987,-0.04590015404380311,-0.049541136795559305,-0.052779531622453836,-0.055589378983698735,-0.057948198509943614,-0.05983716881783321,-0.06124127764457218,-0.06214944110525691,-0.06255459112599764,-0.062453730363635995,-0.06184795418607177,-0.060742439553720856,-0.059146400910274656,-0.05707301345755875,-0.054539304452739724,-0.051566013424273444,-0.04817742245374642,-0.04440115791211499,-0.04026796526881489,-0.03581145880903205,-0.031067848296214274,-0.0260756448021739,-0.02087534809430726,-0.015509118117232578,-0.010020433233332513,-0.004453737992263163,0.0011459167173817392,0.006733238221045318,0.012263058366178881,0.01769069862299555,0.022972331027170768,0.028065332048880596,0.032928626531343125,0.03752301892386627,0.041811509138617954,0.04575959048612,0.049335527290676265,0.05251060995256614,0.05525938540733557,0.057559861132529096,0.05939368106704734,0.06074627203625673,0.06160695951516787,0.06196905181049864,0.06182989199823228,0.0611908772143001,0.06005744516014614,0.05843902795003719,0.0563489736909146,0.05380443644621794,0.050826235490335395,0.047438685008102374,0.04366939563204147,0.03954904943697859,0.03511115022532808,0.030391751135116565,0.0254291617850322,0.02026363733501321,0.014937051985799931,0.009492559565309314,0.00397424395265382,-0.0015732378287016677,-0.007105016959411947,-0.012576375690766584,-0.0179431087949602,-0.023161880677854105,-0.028190575269596306,-0.03298863586839809,-0.037517392195486325,-0.04174037202413406,-0.045623594871732474,-0.04913584539026427,-0.05224892425588755,-0.05493787454141972,-0.05718118175478113,-0.058960945940309935,-0.06026302446655635,-0.06107714436186675,-0.06139698330584852,-0.06122021863866474,-0.060548544008989374,-0.059387653543262614,-0.0577471936815032,-0.0556406830862398,-0.05308540128900134,-0.05010224699118257,-0.046715567180910585,-0.04295295846287114,-0.03884504222191499,-0.03442521545194813,-0.029729379277355462,-0.024795647373467608,-0.019664036653908652,-0.014376142734764551,-0.00897480280724901,-0.0035037486509428136,0.0019927474020563045,0.007470230686234689,0.012884423706870108,0.01819158402233983,0.02334885761216705,0.028314624876460727,0.03304883647346384,0.037513336285575134,0.04167216890963329,0.045491869193781634,0.048941731489635584,0.0519940564536914,0.05462437341454192,0.0568116365210321,0.05853839309937733,0.059790922872755274,0.06055934693313491,0.06083770560021182,0.060624004554288666,0.05992022888673529,0.05873232497120433,0.05707015031896786,0.054947391840471725,0.05238145319039565,0.04939331212306927,0.046007349027073756,0.042251148040215396,0.038155272367004264,0.03375301562847048,0.02908013126695712,0.024174542204881574,0.019076033114943863,0.013825927798606755,0.00846675428876254,0.0030419003903834046,-0.0024047375511543232,-0.00782910981107931,-0.013187369502282007,-0.018436226968083492,-0.02353329948662027,-0.02843745346211991,-0.03310913634057281,-0.03751069557174511,-0.041606682045635654,-0.045364135558283405,-0.04875285000838109,-0.051745616191192584,-0.054318440238476894,-0.05645073595100746,-0.0581254894822331,-0.05932939505593785,-0.06005296063559781,-0.060290582706605755,-0.06004058958265962,-0.059305252902368974,-0.05809076723946023,-0.05640719800777406,-0.0542683980984696,-0.05169189393938807,-0.04869874191339004,-0.04531335631160585,-0.04156331022706444,-0.037479111012197745,-0.033093952128519635,-0.02844344340669344,-0.02356532190870697,-0.0184991457395708,-0.013285973292598674,-0.007968030528819454,-0.0025883689864803095,0.0028094827098327103,0.008181871019789356,0.01348537048864521,0.018677134725061238,0.023715242518964685,0.028559036303766695,0.03316945023050397,0.03750932520689501,0.041543708360987516,0.04524013451628796,0.04856888741190807,0.05150323856615674,0.05401966186380452,0.056098022144474735,0.057721736280666916,0.05887790545708227,0.05955741759638742,0.05975501911842813,0.05946935546823114,0.05870298010089754,0.057462331866652346,0.055757680994799254,0.053603044129092885,0.05101606911700061,0.04801789049949552,0.044632956884408465,0.040888831613074314,0.03681596834520321,0.03244746338885991,0.02781878678951633,0.022967494362850366,0.017932923008924285,0.012755871779363555,0.007478271283095464,0.002142844109187602,-0.0032072409833936878,-0.00852871831027114,-0.013778575115180719,-0.018914399203844946,-0.023894721548806126,-0.02867935109794724,-0.03322969908380126,-0.0375090902169874,-0.041483058254448216,-0.045119623560729974,-0.0483895504273086,-0.05126658207971761,-0.05372765148364339,-0.05575306625774084,-0.05732666621109315,-0.05843595224528667,-0.05907218559319525,-0.05923045660688674,-0.05890972255362951,-0.05811281412979541,-0.056846410655491904,-0.05512098416597421,-0.052950712867227835,-0.05035336467055255,-0.0473501517625177,-0.04396555740034648,-0.04022713634673849,-0.03616529057055102,-0.03181302203891582,-0.0272056646106705,-0.022380597208944687,-0.01737694060101516,-0.012235240244922459,-0.006997137773772928,-0.001705033779242458,0.003598255375171407,0.008869843933666527,0.014067123518528029,0.019148107487657405,0.024071770096442572,0.0287983777245057,0.033289809493371535,0.037509864688175194,0.041424554504477185,0.04500237576918869,0.04821456443149,0.05103532678424946,0.053442046557484454,0.05541546622137334,0.05693984104564061,0.05800306468309578,0.05859676527591852,0.058716371322077576,0.05836114678411485,0.057534195171437076,0.05624243257821825,0.05449652991000402,0.0523108247810855,0.049703203809672206,0.04669495627685705,0.04331060034640589,0.03957768326365313,0.035526557161461525,0.031190132297618998,0.026603609729614692,0.021804195598002726,0.016830799337195605,0.011723718261344145,0.006524311081927536,0.0012746630019199196,-0.003982754901767952,-0.009205429251041885,-0.01435114811542425,-0.01937834215772893,-0.024246420419790207,-0.02891609803609812,-0.03334971322975689,-0.037511531033104804,-0.04136803128388976,-0.044888178576197514,-0.04804367199233334,-0.05080917260636336,-0.05316250693069341,-0.05508484467242959,-0.05656084937474237,-0.057578800738350894,-0.05813068764777534,-0.05821227116430893,-0.057823116990823535,-0.056966597160559164,-0.05564986095098233,-0.053883775272594504,-0.051682835029234576,-0.04906504418894791,-0.046051768540932986,-0.04266756134251598,-0.03893996327869994,-0.03489927836382837,-0.03057832760862208,-0.0260121824547366,-0.021237880141603795,-0.016294123315359323,-0.011220966315954638,-0.006059490685091776,-0.0008514725235666031,0.004360955608783494,0.009535645514433559,0.014630774144088374,0.01960518159198578,0.024418703569288124,0.029032495670199797,0.0334093468130742,0.03751397932752901,0.041313333267747936,0.04477683266081725,0.04787663154607661,0.05058783782585968,0.05288871312832094,0.054760847077827725,0.05618930457605916,0.05716274491581021,0.057673511777774716,0.057717693396434414,0.05729515242267792,0.05640952525599742,0.055068190866037384,0.053282209369929445,0.05106623087623458,0.048438375346457126,0.04542008445905354,0.042035946686745644,0.03831349701394033,0.034282992925412564,0.029977168488481955,0.025430968527164727,0.020681265046795,0.01576655821009734,0.010726664289508624,0.005602393124716816,0.0004352176980136198,-0.0047330614973827125,-0.009860654580087308,-0.014906120159539961,-0.019828700239635216,-0.024588649440726834,-0.02914755588093849,-0.03346865112638413,-0.03751710670948292,-0.041260314824310924,-0.04466815093696847,-0.04771321619620609,-0.05037105769384375,-0.052620364804502134,-0.05444314002837959,-0.05582484296767057,-0.05675450628507586,-0.05722482271988425,-0.05723220247154591,-0.05677680050053393,-0.05586251353971359,-0.05449694685441448,-0.05269135103395585,-0.05046052933953133,-0.04782271637115893,-0.04479942904792671,-0.04141529111914356,-0.037697832637436805,-0.03367726602660301,-0.02938624056548957,-0.02485957728284403,-0.02013398641551923,-0.015247769722410268,-0.01024051006784981,-0.005152750790051115,-2.5667451563866693e-5,0.005099265370866626,0.010180609560773548,0.015177298487443872,0.02004896887393942,0.024756286825979076,0.029261265388436423,0.03352757106591206,0.03752081683423826,0.04120883928012424,0.04456195763555312,0.047553212620940415,0.050158583175260334,0.05235717933100374,0.05413140968548785,0.05546712212614079,0.05635371668420984,0.056784229617214674,0.05675538805347207,0.05626763477032625,0.05532512291937569,0.05393568075504394,0.05211074666533256,0.049865275043557984,0.047217613775373236,0.044189354344506986,0.04080515578156788,0.03709254389117839,0.033081687391919516,0.02880515278948073,0.024297639974518455,0.01959570069167011,0.0147374421636497,0.009762218273383689,0.004710310806597979,-0.0003773966634779427,-0.005459749609315187,-0.01049565542327359,-0.015444415640559336,-0.02026605482521996,-0.024921643461637236,-0.029373612243643366,-0.033586055224111976,-0.0375250193790818,-0.0411587782514101,-0.044458087468720306,-0.0473964200779449,-0.04995017980287247,-0.05209889051044286,-0.053825360364671754,-0.05511581935238741,-0.055960029080868265,-0.05635136397212327,-0.05628686321020969,-0.05576725303472877,-0.05479693921356793,-0.05338396976912996,-0.05153996827275172,-0.04928003825982582,-0.04662263955137585,-0.043589437494615864,-0.04020512635351757,-0.03649722828885125,-0.03249586956387842,-0.02823353579526797,-0.023744808237421516,-0.01906608324081829,-0.014235277160117611,-0.009291519104331321,-0.0042748340186340664,0.0007741813355721548,0.005814686879448934,0.01080592953643511,0.015707572701412095,0.020480022195915507,0.025084746075582552,0.029484585706900244,0.03364405560205378,0.03752962959268049,0.041110011034856994,0.04435638486777779,0.047242649496261606,0.049745626631237924,0.051845247401420144,0.05352471324193199,0.05477063027027441,0.05557311607492354,0.055925878065373615,0.05582626276273821,0.05527527564523961,0.05427757140114877,0.052841414681055944,0.05097861167982221,0.048704413114256176,0.046037389393572964,0.0429992790041614,0.03961481134629421,0.035911505466425374,0.031919446322964444,0.027671040404345048,0.023200752684313902,0.018544827049424346,0.013740992466362774,0.00882815727105809,0.0038460940565042093,-0.0011648822888519553,-0.006164240786047012,-0.011111562174588509,-0.015966865674408207,-0.020690932059323295,-0.025245620431526238,-0.029594176138693973,-0.03370152734803856,-0.03753456788441706,-0.041062424051719705,-0.044256703287247366,-0.0470917226466029,-0.0495447152805842,-0.051596013244270156,-0.05322920517060272,-0.05443126754460732,-0.05519266852839015,-0.05550744350943397,-0.055373241773690275,-0.05479134393868264,-0.05376665001839876,-0.052307638229246604,-0.05042629488286011,-0.04813801594515234,-0.04546148106984024,-0.04241850113685766,-0.03903384053983878,-0.035335015670466825,-0.031352071239311295,-0.027117336251233397,-0.022665161617185035,-0.018031641531797926,-0.013254320876514564,-0.008371891020010715,-0.0034238764804421728,0.0015496850131352144,0.0065085664705519745,0.011412676980585972,0.01622238581025745,0.020898842643485103,0.02540429137157385,0.02970237490125475,0.03375842851971319,0.03753975944962017,0.04101591033984705,0.044158904568419866,0.046943471382190495,0.04934724906161407,0.05135096447744417,0.052938587597738965,0.054097459706718594,0.05481839431008559,0.05509574992269164,0.05492747416211238,0.054315118803930286,0.05326382568945152,0.05178228361228687,0.04988265654481153,0.047580483797081644,0.04489455292746012,0.041846746444155924,0.03846186354834667,0.034767418370788276,0.03079341634328145,0.02657211052241108,0.022137739844305636,0.01752625143440199,0.012775009224212182,0.007922491236837517,0.0030079779935827827,-0.001928765435234631,-0.006847811161873213,-0.011709391392260172,-0.01647421990526643,-0.021103809501528407,-0.025560782856872414,-0.029809174269811722,-0.03381471986727601,-0.03754513392707464,-0.04097036908886244,-0.04406285835654095,-0.04679773694317914,-0.049153042173312636,-0.05110988983565329,-0.05265262557032131,-0.053768950077159976,-0.054450017143865125,-0.05469050371284025,-0.05448865143208802,-0.053846279366237676,-0.052768767777118676,-0.05126501311723451,-0.049347354612177985,-0.04703147303757588,-0.04433626252070693,-0.04128367641469058,-0.03789854850231122,-0.03420839098550612,-0.030243170903593623,-0.026035066797050196,-0.02161820759259272,-0.017028395828235385,-0.012302817462713505,-0.007479740621190915,-0.0025982057176317064,0.0023022905370864563,0.00718211468385827,0.012001817035692126,0.016722450577790756,0.021305885669641214,0.025715118006405333,0.029914567352467135,0.033870364635633976,0.03755062508563052,0.040925705214280746,0.04396844156638318,0.046654369318508346,0.04896191896669225,0.050872589521888244,0.0523710968226371,0.053445495776176966,0.054087275550503265,0.054291426958991876,0.05405648150434325,0.05338452177796506,0.052281163142635506,0.05075550685849727,0.04882006504325235,0.0464906580849899,0.043786285348552556,0.04072897023190874,0.03734358083597003,0.033657627707913126,0.029701040302839588,0.025505923979986193,0.02110629950632834,0.016537827181032114,0.011837517817679315,0.007043432926520536,0.0021943765253623414,-0.0026704189256261937,-0.007511609923424577,-0.012290060088318738,-0.016967156523896968,-0.021505121813741084,-0.02586731913400502,-0.03001854801776341,-0.0339253283836399,-0.037556170537047136,-0.0408818289667776,-0.04387553789157031,-0.0465132266596856,-0.04877371326819262,-0.05063887444629443,-0.0520937909371397,-0.053126866813657955,-0.053729921874373726,-0.05389825638320208,-0.05363068764113477,-0.0529295581056824,-0.051800715004097206,-0.05025346161690297,-0.04830048063723721,-0.0459577302371233,-0.043244313692189035,-0.04018232362980713,-0.036796662170352566,-0.033114838425674066,-0.029166745001346705,-0.024984415318360046,-0.02060176372423354,-0.016054310501898265,-0.011378894005928755,-0.006613372258877054,-0.0017963164247275813,0.00303330135881878,0.007836423262924181,0.012574221614594497,0.017208412754074233,0.021701566365796114,0.026017407783645786,0.030121110829152916,0.03397957881870677,0.037561711472561626,0.040838655573276136,0.04378403735350555,0.04637417474160669,0.04858826775713109,0.05040856552563765,0.05182050857191685,0.05281284525114242,0.053377721387030515,0.05351074240309285,0.053211007455759414,0.05248111530471936,0.05132714188444621,0.04975858976969694,0.047788309954932114,0.04543239659129868,0.042710055543190344,0.039643447837735935,0.03625750928312898,0.03257974772387983,0.028640019581291178,0.02447028749427941,0.020104361027742122,0.015577622551784222,0.01092674051416615,0.006189372429373841,0.001403859989919371,-0.0033910812317915324,-0.008156674979943782,-0.012854397876644046,-0.017446290812650655,-0.021895265650653015,-0.02616540476310886,-0.03022225098562817,-0.034033085645324736,-0.03756719242092226,-0.040796104906854105,-0.043693835886206005,-0.04623708646603995,-0.04840543339219538,-0.05018149303776264,-0.05155106074862779,-0.052503224429258775,-0.05303045146062692,-0.05312864825813779,-0.052797191998937266,-0.052038934273165645,-0.050860176640837446,-0.04927061830317842,-0.04728327632264125,-0.04491437904759395,-0.042183233614067235,-0.03911206860619511,-0.035725853157402954,-0.03205209396437265,-0.028120611863812036,-0.02396329978664187,-0.019613864054063318,-0.015107551113875618,-0.010480861932301272,-0.00577125635550709,-0.0010168498351901217,0.003743895026612456,0.008472479617416413,0.013130680622085028,0.01768085898139396,0.022086264004173847,0.026311330176063567,0.030321964267897936,0.03408582042614305,0.0375725610258764,0.04075410118280103,0.043604834953736515,0.04610184140386286,0.04822506888249775,0.04995749602603308,0.05128526819541172,0.05219780825465531,0.05268790080484737,0.05275174920294832,0.052389004915127074,0.05160276897815962,0.050399565568047255,0.04878928790053669,0.046785116911839716,0.04440341338775833,0.041663584423838794,0.03858792530637603,0.03520143810239347,0.0315316284345365,0.027608282092621953,0.023463223295968127,0.019130056568279562,0.014643894318591881,0.010041072336534713,0.005358855507024331,0.0006351361276757851,-0.00409187272889902,-0.008783946326620828,-0.013403157351012569,-0.017912182468659683,-0.022274603883360555,-0.026455203452655784,-0.030420246989538727,-0.03413775645443101,-0.037577767841314266,-0.040712572678433444,-0.04351694119728066,-0.04596832537254613,-0.048047040199174135,-0.049736421749260254,-0.051022960739837656,-0.051896410541099114,-0.05234986876167751,-0.052379831761583825,-0.05198622166254625,-0.051172385648031046,-0.04994506756935693,-0.04831435209822632,-0.04629358188787743,-0.04389924842312004,-0.0411508574519911,-0.03807077009693997,-0.034684020939669664,-0.03101811455943897,-0.02710280217827048,-0.022969840226715752,-0.01865273278930834,-0.014186460018418168,-0.009607194717866745,-0.004952009392465004,-0.00025857613583611286,0.00443513821411384,0.009091179185418827,0.01367191156389087,0.018140323585269146,0.022460325969129113,0.026597043378664465,0.03051709595262325,0.03418886863685656,0.037582766142458125,0.04067145147452404,0.043430066109192,0.04583643004573953,0.04787122012392226,0.04951812517308661,0.05076397674746783,0.05159885439995988,0.052016164652913845,0.052012693037516156,0.05158862879129458,0.05074756202452506,0.04949645338899258,0.04784557650487556,0.045808433621689654,0.04340164520546191,0.04064481435486027,0.0375603671521791,0.034173370249238263,0.030511327171823407,0.02660395499780087,0.022482943222097415,0.018181696765072322,0.013735065208271707,0.009179060452119947,0.004550565082879804,-0.00011296618952714356,-0.00477380960615241,-0.009394277493800167,-0.013937022991976269,-0.01836534190823379,-0.022643469262307,-0.02673686812329503,-0.03061250840738104,-0.034239133385632295,-0.03758751175165126,-0.040630673216419534,-0.04334412573163834,-0.045706052592132645,-0.04769748783123712,-0.04930246849919551,-0.05050816260205249,-0.051304971675775315,-0.05168660717582543,-0.051650140074413854,-0.051196023274546976,-0.050328086669900546,-0.04905350490079961,-0.04738273807732991,-0.045329445959079354,-0.04291037629544099,-0.040145228239069436,-0.037056491946285845,-0.033669265670348114,-0.030011051834994053,-0.026111533745060464,-0.02200233474691799,-0.017716761792681664,-0.01328953548752548,-0.00875650880794822,-0.0041543767695879546,0.00047962060444685926,0.005107999610524425,0.009693336048653493,0.014198567811710885,0.018587294433308463,0.02282407117338417,0.02687469526567492,0.03070648201549518,0.03428852851917723,0.03759196287744955,0.04059017689311628,0.04325904037769145,0.04557709534104561,0.04752572850142505,0.04908932072908106,0.0502553722237663,0.05101460242301972,0.05136102384283445,0.05129198926339153,0.05080821188827028,0.049913758324214734,0.0486160144483527,0.04692562444896093,0.044856403542670294,0.042425225083659514,0.039651882987175355,0.036558930588972395,0.03317149725237754,0.029517084214120984,0.02562534132738726,0.02152782651438187,0.017257749879837903,0.012849704560197742,0.008339386489656432,0.003763305353104994,-0.0008415109336174998,-0.005437815824258597,-0.009988445399469316,-0.014456618844399343,-0.018806235717273585,-0.023002167606499285,-0.027010541820114177,-0.030799014816681212,-0.0343370331705292,-0.03759607996584713,-0.04054990463273463,-0.043174734372926994,-0.045449465472456284,-0.047355832961764946,-0.04887855725942786,-0.050005466622254996,-0.05072759442058085,-0.051039250461484026,-0.05093806579279232,-0.050425010635366516,-0.04950438530855987,-0.04818378423216745,-0.04647403330584232,-0.04438910118210486,-0.041945985159968675,-0.03916457263114805,-0.03606747920814203,-0.032679864851617904,-0.029029229491922836,-0.02514518980480666,-0.021059238953209564,-0.01680449124404289,-0.012415413770121817,-0.007927547211929079,-0.0033772180606967436,0.0011987554071436134,0.005763361024429601,0.01027969208652948,0.014711245742356537,0.019022218010762,0.023177793038099845,0.02714442426019184,0.030890105198232605,0.034384627702820116,0.03759982556258469,0.040509801512986485,0.04309113581578865,0.045323074729394106,0.04718769735343721,0.04867005950644653,0.04975831348156243,0.05044380272078009,0.05072113065132325,0.050588203136950595,0.05004624421053614,0.0490997849704247,0.04775662574009583,0.04602777180681691,0.04392734326848398,0.04147245972700869,0.038683100769725864,0.035581943375723735,0.03219417757016531,0.02854730182506929,0.02467089986823855,0.020596400711759024,0.016356823846491366,0.011986511668259247,0.007520851303889026,0.0029959880902060217,-0.0015514669742384315,-0.006084733437037706,-0.010567158862991697,-0.014962515162604766,-0.019235291382371643,-0.02335098059067664,-0.027276358541726085,-0.030979751867249883,-0.03443129363119483,-0.03760316418559114,-0.04046981538536688,-0.04300817635513965,-0.045197839150825224,-0.0470212228220801,-0.0484637145567488,-0.04951378677429829,-0.05016308923007991,-0.05040651539465906,-0.05024224258071939,-0.049671745502507705,-0.048699783167716,-0.047334359217358804,-0.045586656043854736,-0.043470943229424984,-0.04100446105436559,-0.03820728002605999,-0.03510213757314735,-0.03171425323348852,-0.0280711238379884,-0.024202300353551753,-0.02013914819612981,-0.015914592957864206,-0.011562853609537694,-0.007119165340099661,-0.002619494278046432,0.001899753595722595,0.006402026987810262,0.010850924902147825,0.015210490929100087,0.01944550383473894,0.023521762101938234,0.027406360124683758,0.031067953825300268,0.034477013550615276,0.037606062206702325,0.04042989671192247,0.04292579098357038,0.04507367882334542,0.04685631523001729,0.04825941484258973,0.04927176640264974,0.04988532231888718,0.05009526261841154,0.049900032776849276,0.04930135513059458,0.04830421378829994,0.046916813173000574,0.04515051053943749,0.04301972302145076,0.04054180997006307,0.037736931542397587,0.03462788469326345,0.031239917903559025,0.027600526151079108,0.023739227788570627,0.019687325139552507,0.015477650753450797,0.011144301376863924,0.006722361796372103,0.00224762078944161,-0.0022437185170021585,-0.006715331536351056,-0.011131065991018676,-0.015455234184379394,-0.0196529014131874,-0.023690168189760007,-0.02753444399408245,-0.031154710345280542,-0.034521771069046796,-0.037608487741875876,-0.04038999841355334,-0.042843917845180005,-0.0449505176501323,-0.046692884888402064,-0.04805705783949797,-0.049032137864065024,-0.049610376458102866,-0.049787236804565226,-0.04956142933357481,-0.0489349210128205,-0.04791291830221333,-0.04650382391984614,-0.044719167778007135,-0.042573512656727,-0.040084335386409146,-0.0372718845088506,-0.03415901557581386,-0.030771005424723694,-0.027135346940581197,-0.023281525970446425,-0.019240782200569236,-0.015045855935292233,-0.010730722830169069,-0.006330318728425589,-0.0018802568291624814,0.002583460523054478,0.007024733094936183,0.011407654711345036,0.01569680353144163,0.01985752830751349,0.023856228313215024,0.02766062467993676,0.031240020950280358,0.03456555074556485,0.0376104105492141,0.040350075728918605,0.04276249805664494,0.0448282831357747,0.04653084630767402,0.04785654578450091,0.04879479193963692,0.04933813188028463,0.04948230862694005,0.04922629443000731,0.04857229796310785,0.04752574534395535,0.0460952351453105,0.0442924677687853,0.042132149761435644,0.039631873857489,0.03681197572356646,0.033695368573792746,0.03030735699972527,0.02667543152763562,0.02282904557099052,0.018799376587753998,0.014619073379226617,0.010321991578524687,0.0059429194716133305,0.0015172963711816067,-0.002919074176804174,-0.007330314033129923,-0.011680760608931145,-0.015935255166595892,-0.02005942694741423,-0.02401997082996019,-0.027784916276289973,-0.031323885394255783,-0.03460833803298526,-0.03761180193413911,-0.04031008608307443,-0.04268147554052057,-0.0447069061857098,-0.046370117964875286,-0.04765778541331359,-0.048559624403393155,-0.04906847426348222,-0.04918035461221041,-0.048894496457149605,-0.048213347315249795,-0.04714255032250369,-0.045690897510645985,-0.04387025763751347,-0.041695479163316715,-0.03918426916583823,-0.0363570491818569,-0.033236789148332675,-0.029848820793568907,-0.02622063199427331,-0.02238164376783058,-0.01836297170893986,-0.014197173804933063,-0.009917986673590382,-0.005560052360132903,-0.0011586379057747524,0.003250650042178156,0.00763215326931926,0.011950450352241307,0.016170643003972737,0.020258638092043993,0.024181423050253496,0.027907332459394446,0.03140630364436456,0.03465011922462364,0.03761263466115671,0.04026998896508024,0.042600796869803725,0.04458632091911805,0.04621062208650269,0.04746068771500811,0.048326535750861654,0.048801294435979685,0.048881256823287526,0.04856590968254404,0.047857936571589814,0.04676319505690943,0.045290668276430274,0.04345239124488138,0.041263352506129725,0.038741371936050165,0.035906955692058484,0.032783129489891163,0.029395251563062174,0.025770806824254294,0.02193918389939027,0.017931436843054597,0.0137800334672113,0.009518592322703284,0.005181610464174431,0.0008041842027761156,-0.0035782748929685847,-0.007930326450123098,-0.012216787881025986,-0.016403018792290128,-0.02045520091410325,-0.02434061128781417,-0.0280278865050608,-0.031487275864792115,-0.03469088140486067,-0.03761288287167776,-0.04022974581386171,-0.042520411122875364,-0.04446646449422832,-0.046052284445691136,-0.04726516770281105,-0.048095430945423796,-0.04853648810033446,-0.04858490256334628,-0.04824041393674052,-0.04750593907451639,-0.046387547435514175,-0.04489441095229039,-0.04303872882960792,-0.04083562788898417,-0.03830303927326761,-0.03546155251609351,-0.03233424816376133,-0.028946510310104336,-0.025325820566891893,-0.021501535141906912,-0.01750464683289234,-0.013367533866877439,-0.00912369762020558,-0.0048074913437348024,-0.00045384208975847646,0.0039020319085822886,0.00822490611859656,0.012479834545733088,0.016632432224459773,0.020649153078871434,0.024497560907761784,0.028146591305234774,0.03156680240195071,0.03473061240319901,0.03761252200741985,0.040189319911687685,0.04244026974802055,0.044347276945078014,0.04589503417262918,0.0470711441997966,0.04786621918109902,0.048273955575245296,0.0482911840989283,0.04791789431992982,0.04715723369904501,0.046015481097003263,0.04450199496903244,0.04262913667431524,0.04041216952866582,0.03786913442468748,0.03502070303287554,0.03189000977807603,0.028502463956938916,0.024885543522133433,0.02106857220684878,0.017082481797215072,0.012959561479859258,0.008733196295607598,0.004437596817814397,0.00010752224404254413,-0.0042220008576353074,-0.008515961872044935,-0.012739649238369177,-0.016858931040544263,-0.020840530818536214,-0.024652296371826792,-0.02826345938383384,-0.03164488377092376,-0.03476930075153318,-0.03761152873895428,-0.04014867628467434,-0.04236032643679343,-0.044228701028856454,-0.045738803577203904,-0.04687853963834891,-0.047638813660521834,-0.048013601553907125,-0.04799999840068884,-0.04759824092723028,-0.0468117045649091,-0.04564687513166275,-0.04411329537150509,-0.042223486792497066,-0.03999284744324669,-0.0374395264623671,-0.034584276422863526,-0.03145028467263532,-0.028062985041741123,-0.02444985144534047,-0.0206401750571902,-0.01666482686080917,-0.012556007503114553,-0.00834698647736657,-0.004071832747885847,0.00023486100247683699,0.00453825827027953,0.008803560510202547,0.01299628851542854,0.017082561124541394,0.021029369002151396,0.024804841281018227,0.028378502911881855,0.031721520643046744,0.03480693564437754,0.03760988089900056,0.040107781609781304,0.04228053700555794,0.04411068208303538,0.045583527982958165,0.04668727987236506,0.04741313138697892,0.04775533487762668,0.04771124690047712,0.047281348591245186,0.0464692407667158,0.04528161380134688,0.043728192530665864,0.04182165663502624,0.03957753715541219,0.037014089985766156,0.034152147372209216,0.031014948627043088,0.027627951433064596,0.024018625270293286,0.020216228641215243,0.01625157190115147,0.012156767616163187,0.007964970471144183,0.003710108834597968,-0.0005733898466140064,-0.004850877600073298,-0.00908776617446769,-0.013249806713455978,-0.017303366595432024,-0.02121570120152725,-0.02495521841591831,-0.02849173372197692,-0.031796713834525626,-0.034843506901820205,-0.03760755742010668,-0.04006660412780994,-0.04220085928459288,-0.04399316789155799,-0.04542914557152167,-0.04649729400125675,-0.04718909296946924,-0.04749906832357598,-0.0474248352635509,-0.04696711664062465,-0.046129736120844235,-0.04491958627678875,-0.043346571873449265,-0.04142352881477751,-0.03916611941407009,-0.03659270484258755,-0.03372419579508731,-0.030583882586722407,-0.027197246061749066,-0.02359175084914742,-0.019796622642549097,-0.015842611310501964,-0.011761741757106935,-0.007587054551503069,-0.0033523384267663226,0.0009081431861351779,0.005159929376140752,0.009368640478828174,0.013500256057762675,0.01752138989289249,0.021399559753333134,0.025103449774760842,0.028603163322125716,0.03187046429600281,0.034879004934991416,0.037604538276383354,0.04002511356195677,0.04212125301420157,0.04387610855942003,0.045275597236748066,0.04630851420488854,0.04696662243983804,0.04724471840565504,0.04714067317482616,0.046655448673471704,0.04579308892787472,0.04456068639100027,0.042968323629151164,0.04102899084805932,0.038758479932923286,0.03617525586661219,0.03330030657287402,0.030156972405567063,0.0267707566690813,0.023169118708096174,0.019381251245272114,0.015437843772320907,0.011370833912105825,0.007213148766087649,0.002998438341779713,-0.0012391967817408718,-0.0054654813463041714,-0.009646242633060343,-0.013747686764772702,-0.0177366718580401,-0.0215809758176698,-0.025249556609438305,-0.028712802908975946,-0.031942773102989194,-0.0349134207138527,-0.03760080442898929,-0.03998328104151185,-0.04204167974731355,-0.04375945639503173,-0.04512282644785411,-0.04612087558866142,-0.04674564708111398,-0.04699220518752045,-0.04685867413815344,-0.04634625234452804,-0.04545920174943642,-0.04420481240761127,-0.042593342591150905,-0.04063793491165504,-0.03835450914480795,-0.035761632631293214,-0.03288036930901481,-0.029734108604020055,-0.0263483755700265,-0.022750623817641473,-0.018970012913049228,-0.015037172051000205,-0.010983951917363908,-0.006843166751412272,-0.0026483286966223784,0.0015666234095053709,0.005767598611818231,0.009920629558737638,0.013992147138439416,0.01794925180955135,0.021759979433348915,0.02539355945957151,0.028820663380476633,0.0320136414470883,0.034946745737130504,0.03759633777509044,0.039941079030326884,0.041962102758107925,0.043643165799800286,0.044970779120914586,0.0459343160380165,0.046526097266249254,0.04674145210691353,0.04657875528769566,0.04603943916516212,0.04512798119845239,0.04385186680309021,0.042221527892886024,0.04025025761438067,0.037954101970663824,0.03535172921803508,0.03246427809845127,0.029315186141508045,0.025929999430486364,0.022336165376448718,0.018562810181295297,0.014640502793980428,0.01060100727275334,0.006477025559449949,0.0023019327487758083,-0.0018904930044331273,-0.0060663437542850624,-0.010191855998542243,-0.014233683661136353,-0.018159167615465606,-0.021936599570098796,-0.02553547818476568,-0.02892675534799449,-0.03208307062794546,-0.03497897200423246,-0.03759112110003831,-0.03989848125970836,-0.04188248695622718,-0.04352719316441791,-0.04481940349812048,-0.045748776081691825,-0.046307906306529555,-0.046492385810492004,-0.04630083721055596,-0.045734924315260495,-0.04479933774184258,-0.043501756061880614,-0.04185278279709092,-0.03986585978212608,-0.037557157602146465,-0.03494544399811004,-0.032051931310606394,-0.028900104202233507,-0.025515529057609832,-0.021925646607845312,-0.01815954946147543,-0.01424774634539867,-0.010221914966275036,-0.006114645494279201,-0.001959176746322499,0.0022108727957398126,0.006361776955283232,0.010459974619334452,0.0144723410793956,0.018366455760962977,0.022110864177898554,0.02567533199516785,0.02903108914791331,0.03215106204586074,0.03501009198899842,0.03758513803253461,0.03985546266541931,0.04180279880618469,0.043411496771383035,0.04466865003425432,0.04556419876311922,0.04609101030897718,0.04624493599843343,0.0460248437798735,0.04543262646619591,0.04447318551482482,0.04315439048354538,0.04148701449736558,0.03948464625547488,0.03716357929691917,0.034542679427283056,0.03164323138499355,0.02848876599340694,0.02510486920226074,0.021518974568096802,0.0177601408567104,0.0138588165704799,0.009846593308617266,0.005755949958104742,0.001619989786627096,-0.002527827434418173,-0.006653956109202221,-0.010725036109399046,-0.01470816248483758,-0.01857115141238248,-0.02228280023362774,-0.02581313948043184,-0.02913367485274148,-0.032217617195010324,-0.03504009861515068,-0.037578373002567514,-0.03981199932849942,-0.04172300625160164,-0.043296036703318976,-0.04451847128988145,-0.045380529519397354,-0.04587534804212643,-0.045999035278135925,-0.04575070199766575,-0.04513246761411319,-0.044149442146007974,-0.042809684001114165,-0.04112413393125255,-0.03910652569902423,-0.03677327418576748,-0.03414334185227732,-0.031238084638590385,-0.028081078555073736,-0.02469792837281769,-0.021116059965662456,-0.017364497987921973,-0.013473630689946023,-0.009474963777131192,-0.005400865306021083,-0.0012843036830188705,0.0028414191136054063,0.006942936929735942,0.010987089270255837,0.014941189390610073,0.018773288477726913,0.022452433785204284,0.025948918637189487,0.02923452228175165,0.032282737657225474,0.03506898523331866,0.037570811201923175,0.0397680684196355,0.04164307864393784,0.04318077475668991,0.04436882183079471,0.04519771606732097,0.04566086080959813,0.04575461902639548,0.04547834184675521,0.04483437292282446,0.04382802859255781,0.0424675540098608,0.040764055604026773,0.03873141042162104,0.03638615309073703,0.033747341328282054,0.03083640108418486,0.027676952580755653,0.02429461865954456,0.02071681699069374,0.01697253782981236,0.013092109123772665,0.009106950868594721,0.0050493207089366225,0.0009520528389437656,-0.0031517076822292138,-0.007228773050454197,-0.011246181103391763,-0.015171461803630012,-0.018972899663881954,-0.02261978999337086,-0.02608268689511983,-0.029333641011175252,-0.032346425096283216,-0.035096745599524366,-0.03756243854709096,-0.03972364814683632,-0.04156298667540712,-0.04306567436054494,-0.044219658133286786,-0.04501570829598784,-0.04544749233094526,-0.045511625259486994,-0.04520769615116375,-0.044538270575675776,-0.04350886898474846,-0.04212792120581627,-0.040406697422486836,-0.03835921620678259,-0.03600213035355751,-0.03335459144676507,-0.030438094258962295,-0.02727630224818719,-0.02389485556882912,-0.02032116315409571,-0.016584180556025806,-0.012714175343675173,-0.008742481960184097,-0.004701248024120176,-0.0006231741290946379,0.0034587507523734487,0.007511516119839263,0.011502356892245266,0.015399018292899665,0.0191700165307601,0.022784893171278093,0.026214461141701135,0.029431040383973362,0.032408681252666445,0.03512337385502315,0.03755324164439579,0.03967871770618522,0.04148270231579269,0.04295070049994953,0.04407093849485788,0.04483445816553868,0.045235188629281414,0.04526999451061993,0.044938700444414385,0.04424409163578047,0.04319189047927885,0.041790709433369114,0.04005198053808273,0.037989862152626994,0.03562112367367232,0.03296500917290951,0.030043081062657552,0.026879045059481167,0.02349855786664017,0.019929019135522877,0.016199349392889854,0.012339755733751836,0.008381487178116579,0.0043565816728725485,0.00029760678706534715,-0.0037626038007711675,-0.007791215891145814,-0.011755660279748793,-0.015623896054148715,-0.01936466954256468,-0.022947766822002093,-0.026344257745725217,-0.029526729519204015,-0.03246950793875524,-0.035148864507403545,-0.03754320775720422,-0.03963325723546057,-0.04140219875289921,-0.042835819643791295,-0.043922622949991864,-0.04465391961162796,-0.04502389792524407,-0.04502966971428086,-0.044671292845214115,-0.04395176991407005,-0.04287702312077626,-0.04145584554135587,-0.03969982919876713,-0.03762327052068939,-0.035243053955244644,-0.032578514692045084,-0.029651281604647143,-0.026485101690108755,-0.023105647430602692,-0.019540308639728263,-0.01581797048117893,-0.011968779458755446,-0.008023899273467477,-0.004015258524862755,2.470770089181581e-5,0.004063320264802595,0.00806792030741581,0.012006133341712773,0.015846130971034995,0.01955688811635486,0.023108433674124004,0.026472092579647312,0.02962071732100561,0.0325289070344141,0.03517321241285713,0.03753232477506208,0.0395872477704317,0.04132145033640012,0.042720999676664526,0.04377467319067519,0.04447404845524001,0.04481357053687325,0.044790596097010846,0.04440541394003621,0.043661241844651186,0.04256419971095295,0.041123259247088435,0.039350170609002706,0.037259366593047225,0.03486784516255789,0.03219503126449121,0.029262619059403493,0.02609439584612424,0.022716049110135025,0.01915495826072763,0.015439972745384311,0.0116011783395033,0.007669653504701864,0.003677217788702652,-0.00034382569639484497,-0.004360951633347675,-0.008341675581955626,-0.01225381665631368,-0.01606575767312008,-0.019746700668079455,-0.02326691571549013,-0.02659798104084034,-0.029713012487214103,-0.03258688048294353,-0.03519641275953676,-0.03752058118463329,-0.039540671203652344,-0.04124043252484922,-0.04260620983457747,-0.04362705249133611,-0.044294802317507584,-0.044604158785023065,-0.04455272107419995,-0.04414100667215461,-0.043372446366996276,-0.04225335568492147,-0.040792883007806764,-0.039002934797400496,-0.03689807853722001,-0.034495424183271395,-0.03181448508827262,-0.028877019529775432,-0.025706854129107438,-0.022329690594133207,-0.018772897353280405,-0.015065287770012542,-0.011236886734971897,-0.007318687526494767,-0.003342400908364888,0.0006598015041079025,0.0046555475328174485,0.008612526274560406,0.012498749369929738,0.01628280959081997,0.019934134656235378,0.023423234225262893,0.026721938071817313,0.029803623517631717,0.03264343028736581,0.03521846105192916,0.037507966042320325,0.0394935102455802,0.04115912183566477,0.042491420644217515,0.043479725637925945,0.04411614053920711,0.04439561690394838,0.04431599415251184,0.04387801623671632,0.04308532481453003,0.04194442899421082,0.040464651899082375,0.038658054491502516,0.036539337278348634,0.03412572069903157,0.031436805169207424,0.028494411917598737,0.025322405908334802,0.02194650228572512,0.018394057911225285,0.014693849682468925,0.010875841430655417,0.006970941284444658,0.003010751465077678,-0.0009726874618992843,-0.004947155808665067,-0.008880515363750056,-0.012740969259550308,-0.01649731900751713,-0.020119216623295518,-0.02357740980436502,-0.02684397817948147,-0.02989255872196316,-0.03269855850702075,-0.03523935309616285,-0.03749446894844647,-0.03944574838788728,-0.04107749579787284,-0.042376603865556695,-0.04333265886087379,-0.04393802410463167,-0.0441879009567365,-0.04408036683758012,-0.04361638998146811,-0.042799820809205955,-0.041637359996059206,-0.040138503499733406,-0.03831546499925749,-0.036183076378195005,-0.033758667062975825,-0.031061923197903962,-0.028114727801176184,-0.02494098319972587,-0.021566417183651515,-0.018018374452241664,-0.014325595042115068,-0.0105179815327975,-0.006626356915313559,-0.0026822150843563044,0.0012825340262923879,0.0052358226026557346,0.009145684315262519,0.012980512791969191,0.016709317109006742,0.02030197223504086,0.023729462404412566,0.026964115453459774,0.02997982622743684,0.032752267254435835,0.03525908498621054,0.03748008002291684,0.03939736986879608,0.04099553290744798,0.04226173243757919,0.04318581977166784,0.04376041556956443,0.04398096875527765,0.04384579254664358,0.043356077312781356,0.04251588016169636,0.04133209134858937,0.039814377782842955,0.03797510409677097,0.03582923192053609,0.033394198183698584,0.030689773433236145,0.027737901319199794,0.024562520551144013,0.021189370769862947,0.017645783908638888,0.013960462735118325,0.010163248368133641,0.006284878652453003,0.0023567393478553336,-0.0015893898534985323,-0.005521592426155144,-0.0094080731470325,-0.013217415179956915,-0.016918834030438114,-0.020482426317921888,-0.02387941135522547,-0.027082363583573556,-0.030065433986114703,-0.032804558692474436,-0.03527765309089558,-0.03746478988223585,-0.03934835964032884,-0.04091321258507923,-0.042146780426934295,-0.0430391773028354,-0.04358327899309437,-0.04377477978448958,-0.04361222652581187,-0.0430970296066447,-0.04223345077684653,-0.0410285679115009,-0.039492217012502266,-0.03763691192194117,-0.03547774240255665,-0.03303225141528073,-0.03032029259189712,-0.02736386906071831,-0.024186954933660534,-0.02081530090295038,-0.017276225523803368,-0.013598393874738504,-0.009811585388807118,-0.005946452736099313,-0.002034273709747847,0.001893301876300193,0.005804508229677708,0.009667720490868064,0.013451710435593798,0.017125898900900872,0.020660602894566168,0.02402727539100059,0.027198735876483127,0.030149389781932063,0.032855435031706785,0.03529505404167066,0.037448589617812056,0.03929870333734083,0.04083051513621014,0.042031722979330985,0.04289270165110921,0.043406579873035804,0.04356929513053268,0.04337962577167475,0.04283920012431769,0.04195248256406836,0.040726736651939856,0.03917196564592657,0.03730083087361896,0.03512854863187283,0.03267276645301071,0.029953419743660212,0.02699256996078075,0.02381422563841852,0.020444147717054547,0.01690964075395975,0.013239331706721733,0.009462938082144936,0.005611027328243675,0.0017147694173584537,-0.0021943153770345005,-0.006084611468919213,-0.009924663651022545,-0.013683431420932885,-0.017330539885797715,-0.020836525217542878,-0.02417307267521227,-0.02731324527158107,-0.03023170123744395,-0.03290489852801059,-0.035311284721108685,-0.03743147077546106,-0.03924838724822648,-0.04074742171320998,-0.041916536273504085,-0.04274636422358271,-0.04323028508472921,-0.0433644774127699,-0.04314794895698868,-0.042582543932359634,-0.04167292735237149,-0.04042654655523,-0.038853570240616565,-0.036966805515956484,-0.03478159362884485,-0.03231568523445265,-0.029589096212001086,-0.02662394520141276,-0.02344427417875823,-0.020075853525923535,-0.01654597317492593,-0.012883221519494352,-0.00911725388500219,-0.005278552431802885,-0.0013981794357957407,0.002492474056909635,0.006361942167482939,0.010178938659845939,0.01391260989615261,0.017532784227120037,0.02101021580147273,0.02431682082434337,0.02742590435613741,0.030312375820318056,0.03295295148037369,0.03532634225206054,0.0374134253360309,0.03919739828719365,0.04066391427954453,0.0418011974775933,0.04260013758667125,0.043054362823016494,0.04316029071924358,0.04291715636019262,0.04232701782676897,0.041394738809751294,0.040127948540171494,0.038536979366260715,0.0366347824876311,0.03443682253386027,0.03196095184553968,0.029227265479759533,0.026257938117606267,0.023077044197289096,0.019710362731810833,0.016185168393564073,0.012530010558870958,0.008774482102402979,0.004948979813835489,0.0010844583763472161,-0.0027878201018708224,-0.006636538976494175,-0.010430580330689545,-0.014139276565332181,-0.01773265828178157,-0.021181696453610437,-0.024458536930472882,-0.02753672537976576,-0.03039142084957483,-0.032999596228884355,-0.035340223987435714,-0.03739444569707941,-0.03914572396800887,-0.040579975575823275,-0.04168568470778818,-0.04245399541770878,-0.04287878254719917,-0.042956700545456625,-0.04268720979852271,-0.042072580260985114,-0.0411178723666723,-0.03983089537863382,-0.03822214352109521,-0.03630471041565418,-0.034094182519291735,-0.03160851243139366,-0.028867873099541138,-0.025894494108024593,-0.022712481377615057,-0.019347621738927467,-0.015827173963649924,-0.012179647947010054,-0.008434573830224761,-0.0046222629325653256,-0.0007735624284159175,0.003080394245218009,0.006908439231287167,0.01067962230820967,0.014363461120021587,0.01793018755807781,0.02135098830294451,0.02459823758281409,0.027645720268236057,0.030468843501588305,0.03304483515289452,0.0353529275005657,0.037374524655538054,0.03909335237912304,0.04049558908760914,0.041569976989101594,0.04230791245902081,0.04270351492879962,0.042753673736260336,0.04245807256451063,0.04181919127752384,0.04084228514340338,0.03953534161918754,0.03790901505245717,0.035976539833492936,0.033753622705852596,0.03125831511159209,0.028510866608579735,0.02553356055014569,0.0223505333604399,0.018987578871180726,0.015471939305901499,0.011832084605368862,0.008097481881689987,0.004298356867990571,0.00046544929479264385,-0.0033702358271660805,-0.007177679005319654,-0.010926097116255251,-0.014585192280687545,-0.018125396750410864,-0.021518111827929766,-0.024735938888249858,-0.027752900636670446,-0.03054465081585784,-0.033088670669342415,-0.03536445057611258,-0.03735365539130064,-0.0390402721600936,-0.04041073901488407,-0.041454054218144305,-0.042161864474326606,-0.04252853180195933,-0.042551178430664846,-0.04222970936566579,-0.04156681244303056,-0.04056793588097793,-0.03924124351453801,-0.03759754808128479,-0.035650223103252644,-0.0334150940830932,-0.030910309899622335,-0.02815619544779978,-0.025175086719584495,-0.021991149663797175,-0.01863018429395034,-0.015119415631925771,-0.011487273181425419,-0.007763160717444691,-0.003977218255868742,-0.00016007813006914872,0.0036573828515091148,0.007444293161509308,0.011170036203431247,0.014804497836189884,0.01831830977236478,0.02168308688291636,0.02487165649092205,0.02785827780215527,0.03061884970056113,0.03313110523122229,0.03537479120148777,0.03733183145168044,0.038986472479224786,0.04032541024307156,0.0413378971277817,0.04201582820733206,0.042353806116318345,0.04234918400939988,0.04200208626715428,0.041315406786552114,0.04029478487556713,0.038948558952538535,0.037287698430334804,0.03532571434168299,0.033078549433797344,0.030564448626280237,0.027803810884835863,0.02481902371335305,0.02163428160716701,0.018275389939669463,0.014769555871857703,0.011145167978951525,0.00743156637901589,0.0036588052248986997,-0.00014259051797280086,-0.003941872039589292,-0.007708315401091842,-0.011411469986503778,-0.015021404681385936,-0.018508949788225877,-0.02184593272334992,-0.025005405590926847,-0.02796186279579968,-0.030691446937898104,-0.03317214132618954,-0.035383947558748866,-0.037309046736682845,-0.03893194301235298,-0.04023958831552382,-0.04122148725356144,-0.04186978134238515,-0.042179311892230856,-0.04214766104506603,-0.0417751706373007,-0.041064938740840294,-0.04002279391606868,-0.03865724739057658,-0.03697942355590245,-0.035002969349788346,-0.032743943262054404,-0.03022068486678669,-0.02745366594078217,-0.0244653243768325,-0.02127988223925717,-0.017923149436992865,-0.014422314605481079,-0.010805724891631981,-0.007102656425469804,-0.0033430773368827746,0.00044259476420060485,0.004223738881675653,0.007969778310175106,0.011650427891754552,0.015235938852969916,0.018697339243034405,0.022006668029810307,0.025137200962164218,0.02806366637426986,0.030762449189234792,0.03321178147529089,0.03539191801694432,0.037285295485043835,0.0388766739227092,0.0401532594073872,0.04110480690180899,0.04172370246707389,0.04200502417818182,0.041946581254726625,0.041548931095749794,0.04081537408651245,0.03975192622472644,0.038367269793139626,0.03667268248284398,0.03468194554583612,0.03241123172479764,0.02987897387141036,0.027105715320459592,0.024113943234246447,0.020927906269240678,0.017573418043349432,0.014077647996632043,0.010468901339854989,0.006776389873055608,0.0030299955297482433,-0.0007399714393067684,-0.004503017685932728,-0.008228713404104073,-0.011886938394400762,-0.015448125563644726,-0.01888349989124829,-0.022165310930952194,-0.025267056969386945,-0.02816369903082568,-0.03083186300005582,-0.03325002823180981,-0.03539870112487795,-0.03726057226098885,-0.0388206558417952,-0.040066410300765805,-0.04098783911929401,-0.041577571036654784,-0.04183091901027765,-0.04174591745480029,-0.04132333746413629,-0.040566679898906575,-0.03948214640060861,-0.03807858857238004,-0.03636743574271385,-0.034362601901570484,-0.03208037256661257,-0.029539272499398375,-0.026759915346002545,-0.02376483642243827,-0.02057831000125549,-0.01722615258068658,-0.013735513730714587,-0.010134656210462068,-0.006452727137714026,-0.0027195220632338767,0.001034756140504779,0.004779741625098943,0.00848515116976009,0.012121029056187366,0.01565798923471803,0.01906745282409478,0.0223218790254069,0.02539498758449161,0.028261971005885553,0.030899694804733827,0.033286884180218156,0.035404295604267375,0.037234871941668815,0.03876387985121403,0.039979028361107886,0.040870567664377515,0.041431367340207005,0.041656973373693465,0.04154564351812378,0.04109836071912036,0.04031882449747835,0.03921342036578284,0.037791167531509885,0.036063645314842054,0.034044898881451936,0.031751325057632125,0.02920153915603013,0.026416223893579414,0.023417961627766087,0.020231051271982586,0.016881311374242012,0.013395870955122052,0.00980294979933844,0.0061316299802578085,0.0024116204671080473,-0.0013269832798678458,-0.005053942781003094,-0.008739121105907719,-0.012352726561251396,-0.015865553527208077,-0.01924921849568074,-0.022476389402701,-0.025521006402091585,-0.028358492297143132,-0.030965950931123577,-0.033322351935225834,-0.03540870034327202,-0.03720818970523362,-0.03870633746539969,-0.03989110151474515,-0.0407529769795555,-0.041285072468414674,-0.0414831651659658,-0.0413457343330626,-0.04087397294765645,-0.04007177739759767,-0.03894571531403777,-0.037504971810867815,-0.03576127457018708,-0.03372879838475378,-0.03142404993434687,-0.02886573373262051,-0.026074600333071542,-0.023073278025954477,-0.019886089391144262,-0.0165388541941436,-0.01305868022244811,-0.009473743756654026,-0.005813061454090961,-0.002106255491777353,0.0016166861304417151,0.005325652187036847,0.008990651761695456,0.012582056750352144,0.016070841371539798,0.019428816747928318,0.022628858663243993,0.02564512665440945,0.02845327266925858,0.031030637604988295,0.03335643414092096,0.0354119143903681,0.03718052101950565,0.03864802061519413,0.03980261822751908,0.040635052165319846,0.04113866828288528,0.04130947316202764,0.041146165764555084,0.04065014730437012,0.039825509264611335,0.03867899966200934,0.03721996783651004,0.0354602882178114,0.03341426369035817,0.031098509343169912,0.02853181754930873,0.025735005470558615,0.022730746224711794,0.01954338508473248,0.016198742199724985,0.012723903436302466,0.00914700103462382,0.0054969858553262285,0.0018033930611558522,-0.001903896870252267,-0.005594899868693833,-0.009239770773409756,-0.012809044653554952,-0.016273874995906525,-0.019606266834398218,-0.02277930293743386,-0.025767361225523953,-0.02854632166314557,-0.031093760954265214,-0.03338913346999305,-0.035413936948549635,-0.03715186163121827,-0.038588921632223425,-0.03971356748443335,-0.040516778955262976,-0.04099213738691907,-0.04113587698088881,-0.040946914616982986,-0.040426857970927474,-0.039579991870046884,-0.03841324300257991,-0.03693612327118648,-0.035160652253835564,-0.03310125940410372,-0.030774666786603854,-0.0281997533004907,-0.025397401493430952,-0.02239032820900065,-0.019202900440858883,-0.01586093788637808,-0.012391503799602873,-0.008822685837649115,-0.005183368675171361,-0.0015030002276730696,0.0021886466243210903,0.005861714882279026,0.009486504899575879,0.013033714521450957,0.016474675953368143,0.01978158744305938,0.022927737903926746,0.02588772266500482,0.02863764860487384,0.031155327013177154,0.03342045262303336,0.035414767369835655,0.03712220755578717,0.038529033234027704,0.039623938770274265,0.040398143692356864,0.040845463097648596,0.04096235705387145,0.040747958598767946,0.04020408011728712,0.03933519804984052,0.03814841606042567,0.03665340696757253,0.03486233391273605,0.032789751408544725,0.03045248707187849,0.02786950500272681,0.025061751918021926,0.022051987288790074,0.018864598858055373,0.015525405034818378,0.012061445765208413,0.008500763574711922,0.0048721765544626405,0.0012050451293064905,-0.002470965504795262,-0.006126125351885717,-0.009730880054493199,-0.013256089854990251,-0.016673265147751967,-0.01995479671805986,-0.023074178807113783,-0.026006223200966357,-0.028727262614206415,-0.031215341726196447,-0.033450394327905794,-0.03541440515006537,-0.03709155506758358,-0.03846834850990271,-0.0395337220511461,-0.04027913330634175,-0.040698629419473685,-0.04078889459431468,-0.040549276288599896,-0.03998178986473264,-0.039091101664479266,-0.037884490649596675,-0.03637178892363324,-0.03456530162085931,-0.03247970681500058,-0.030131936261903153,-0.027541037945025364,-0.024728021539599146,-0.021715688049167625,-0.018528444995906126,-0.01519210866263226,-0.01173369498876918,-0.008181200813902596,-0.004563377240231671,-0.0009094969485312332,0.002750882649291058,0.006388158504731486,0.009972921340287237,0.013476193434000985,0.016869662858419,0.02012591228055088,0.023218640473845885,0.026122874752569275,0.028815172612789007,0.03127381095186748,0.03347896133918321,0.035412849923964235,0.037059900690681165,0.038406860907413166,0.03944290775687044,0.04015973529216379,0.04055162101872092,0.04061547156866995,0.040350847103209395,0.03975996425058981,0.038847677560954565,0.037621439633018915,0.03609124024001203,0.034269524952040706,0.03217109391775236,0.029812981628440607,0.02721431864135048,0.024396176384599472,0.021381396302684458,0.01819440472788543,0.014861014977985506,0.011408218283675286,0.007863965238968302,0.004256939544198324,0.0006163258730861312,-0.0030284262575452675,-0.006647840704939007,-0.010212653077555908,-0.01369404734446279,-0.017063888763954024,-0.020294951248612556,-0.02336113732944462,-0.026237688941998287,-0.028901387332008425,-0.03133074046649346,-0.033506156437643694,-0.035410101460464694,-0.03702724119004971,-0.038344564219540855,-0.039351486764202526,-0.040039937689404594,-0.040404423199461754,-0.04044207066891112,-0.040152651266600524,-0.03953858119453785,-0.0386049015364297,-0.03735923688382164,-0.035811733079320736,-0.03397497458519855,-0.03186388215030007,-0.029495591607362544,-0.026889314785246705,-0.024066183664987615,-0.02104907904381551,-0.01786244509628533,-0.014532091335379443,-0.01108498357799507,-0.007549025607776371,-0.003952833303089217,-0.00032550305846151616,0.003303623626462155,0.006905197485842369,0.010450098834682555,0.013909673004598654,0.017255961964834886,0.0204619302563271,0.023501683413035396,0.02635067710594147,0.0289859153205359,0.031386135967693074,0.033531982429822346,0.03540615965826692,0.03699357356317075,0.03828145257243274,0.03925945038082016,0.03991972906264952,0.040257021880427,0.04026867528618982,0.0399546697806673,0.03931761946643033,0.03836275030353458,0.03709785724838042,0.03553324062725121,0.033681622263823104,0.03155804204355181,0.029179735755886175,0.026565995206467893,0.02373801173462742,0.02071870440542456,0.017532534269124118,0.01420530619334823,0.010763959873299133,0.0072363517125931896,0.0036510293406871253,3.700059201965884e-5,-0.0035765011836388456,-0.0071602535808948375,-0.010685281455884288,-0.01412309118984566,-0.01744590100513273,-0.02062686547204257,-0.023640292392236566,-0.026461850306595855,-0.02906876495157002,-0.03144000307783229,-0.03355644214761391,-0.03540102454162534,-0.036958895032051575,-0.038217520413716156,-0.03916679033004364,-0.03979909848274403,-0.04010940357295951,-0.04009526948566983,-0.03975688439711974,-0.039097058655548515,-0.03812120145719224,-0.036837276511003055,-0.03525573705539796,-0.03338944075724385,-0.031253545185852535,-0.02886538471168756,-0.026244329829506,-0.023411630047561156,-0.02039024161713,-0.01720464149893307,-0.013880629073996717,-0.010445117205272804,-0.006925914342085187,-0.0033514994315223265,0.0002492085413358874,0.0038470845194470455,0.007413032953249415,0.01091822308805997,0.014334322056761464,0.017633723893292333,0.020789772615867744,0.023776977577236638,0.026571219342222473,0.029149944429793673,0.03149234734733624,0.03357953844792239,0.03539469625634789,0.0369232030356156,0.03815276250135074,0.039073498736247485,0.03967803550889163,0.0399615553599502,0.03992183798247893,0.03955927759065296,0.0388768791412055,0.037880233442910416,0.036577471360160325,0.034979197485709004,0.03309840382358991,0.0309503641847555,0.028552510153794387,0.025924289633921998,0.023087009118098648,0.020063660965473663,0.016878737083325105,0.01355803052428487,0.01012842660602565,0.0066176852449538375,0.003054216266122174,-0.000533150492020878,-0.004115398417744368,-0.007663558824079419,-0.011148945206498374,-0.014543385165919994,-0.017819448122038197,-0.020950666976436355,-0.02391175193428962,-0.02667879475727253,-0.029229461798058094,-0.03154317425788614,-0.03360127421235371,-0.035387175065995945,-0.036886495222448676,-0.03808717389298797,-0.038979568110927544,-0.03955653017154867,-0.03981346487570555,-0.03974836611871868,-0.0393618325332903,-0.03865706206464056,-0.03763982552645272,-0.03631841935618666,-0.034703597956480065,-0.03280848617435544,-0.030648472630447135,-0.02824108476516734,-0.025605846616386468,-0.02276412048262377,-0.0197389337558009,-0.01655479232725441,-0.013237482078969557,-0.009813860068011694,-0.006311637095121902,-0.002759153417740022,0.0008148505772351297,0.004381466885284338,0.007911853699702443,0.011377468639503762,0.014750299503846829,0.01800309068745027,0.021109563426976643,0.02404462809865689,0.026784586852105333,0.029307324943806744,0.03159248922550566,0.033621652346948194,0.03537846134827307,0.03684876944388172,0.03802074993581158,0.038884991339389226,0.03943457295607343,0.03966512028669945,0.039574839841479345,0.039164533069845686,0.03843758930213,0.037399957764822626,0.03606009890037486,0.034428915389813367,0.032519663440487886,0.030347845060741053,0.02793108219688395,0.025288973754343223,0.022442936663031224,0.01941603227576485,0.01623277950688176,0.012918956225120334,0.009501390509479277,0.006007743458392848,0.002466285310489262,-0.0010943333111013674,-0.004645313179890087,-0.008157939397567277,-0.011603813591992506,-0.014955083504041795,-0.01818466810724975,-0.021266476440720338,-0.02417561838702245,-0.02688860569231734,-0.029383541605250883,-0.0316402976035411,-0.033640675781949236,-0.035368555591592216,-0.03681002374739174,-0.03795348625683384,-0.03878976166802172,-0.03931215478709379,-0.039516510273161845,-0.03940124568180659,-0.03896736369444361,-0.03821844343925578,-0.03716061097849215,-0.0358024892053939,-0.03415512756046635,-0.03223191213992234,-0.03004845692756201,-0.027622477033844083,-0.02497364497121412,-0.022123431131711526,-0.019094929760373795,-0.015912671834964864,-0.012602426368130262,-0.009190991741374135,-0.0057059787605099836,-0.0021755871888124658,0.001371622433544072,0.004906959837453098,0.008401837071160097,0.011827999668111629,0.01515775506713361,0.01836419643833389,0.021421420105683,0.024304734809406803,0.026990861117700896,0.02945811937730821,0.031686604685539674,0.03365834747160557,0.035357458391812015,0.036770256370304774,0.037885378753620115,0.03869387269213444,0.0391892670135516,0.03936762401146292,0.0392275707345724,0.038770309528044625,0.037999607746272035,0.036921766724813246,0.03554557026696304,0.03388221306602088,0.031945209646488996,0.029750284564844846,0.027315244761920984,0.024659835103067927,0.021805578278006943,0.018775600358504316,0.015594443427697844,0.012287866799147522,0.008882638435623421,0.005406318256545923,0.0018870350882196378,-0.0016467409379704782,-0.005166428697814759,-0.008643567233882881,-0.012050045892927014,-0.015358331580208856,-0.01854169129359608,-0.021574408138846056,-0.02443198908060332,-0.027091362750849633,-0.02953106571731519,-0.03173141570802977,-0.03367467039400534,-0.03534517044912688,-0.03672946573378002,-0.03781642358542863,-0.038597318344318114,-0.03906590139439286,-0.03921845115725173,-0.039053802639203966,-0.03857335629692559,-0.03778106615451494,-0.03668340727255171,-0.03528932283671943,-0.0336101512983065,-0.03165953416012546,-0.029453305157778147,-0.02700936173648587,-0.024347519866680732,-0.021489353376065584,-0.0184580191008079,-0.015278069272928338,-0.011975252663857707,-0.008576306094732943,-0.0051087380015570425,-0.0016006058072333396,0.0019197110978123623,0.005423740929585335,0.008883149781954206,0.012269970733226533,0.015556829935355235,0.01871716785806559,0.021725453899769175,0.024557392631159837,0.027190120005427403,0.029602387950523154,0.03177473585320812,0.03368964755093243,0.03533169256511683,0.03668765043707206,0.03774661716473169,0.038500092883310064,0.03894205008486958,0.039068981829311254,0.038879929561227905,0.03837649031206659,0.037562803233803406,0.0364455155774883,0.035033728396219876,0.0333389224160159,0.03137486467832922,0.02915749671332609,0.026704805152238408,0.024036675828919184,0.02117473255402466,0.01814216186894254,0.014963525199684604,0.011664559932550786,0.00827197102263317,0.004813214822441235,0.001316276880481932,-0.002190554491983948,-0.005678917053951812,-0.009120604016379588,-0.01248779211748061,-0.015753266547456752,-0.018890640904399517,-0.021874570403659775,-0.024680956617926634,-0.027287142094115816,-0.029672093275389316,-0.031816570251530014,-0.03370328196776004,-0.035317025639928994,-0.03664480925204084,-0.037675956149107855,-0.038402190883335414,-0.03881770562342254,-0.03891920659409409,-0.03870594017458854,-0.03817969844939956,-0.0373448041707818,-0.03620807525903393,-0.03477876913202088,-0.03306850731845351,-0.031091180968789347,-0.028862838031965817,-0.026401553014279093,-0.023727280377382157,-0.02086169276445828,-0.01782800536606481,-0.014650787848948993,-0.011355765371410203,-0.007969610296713715,-0.004519726290940681,-0.0010340265528854602,0.002459292029308191,0.005931976967523295,0.009355948664036023,0.012703527455000673,0.015947657371276545,0.019062124807757524,0.022021770333925553,0.024802691934191073,0.027382438036256937,0.02974018876866316,0.03185692398422527,0.03371557669335641,0.035301170669597697,0.03660094111790821,0.03760443743348245,0.0383036072239009,0.03869286091911614,0.0387691164509049,0.03853182364470258,0.037982968130876336,0.03712705474815813,0.03597107057780947,0.03452442791178409,0.032798887620362434,0.03080846354313997,0.028569308680581204,0.026099584110363203,0.02341931169223933,0.02055021175602841,0.01751552708852132,0.014339834645617451,0.011048846514965299,0.007669201740988889,0.004228250697734681,0.0007538337548818041,-0.00272594397196079,-0.006182939964259808,-0.009589201897912925,-0.012917193654333373,-0.01614001791786087,-0.01923163356008851,-0.022167066054235508,-0.02492260921941962,-0.027476016665195585,-0.029806681390298264,-0.03189580208571729,-0.033726534800017444,-0.03528412874348987,-0.03655604513624355,-0.037532058142699616,-0.03820433708001849,-0.03856750923959776,-0.03861870281769767,-0.038357569612213524,-0.03778628730631559,-0.03690954132479408,-0.03573448641414296,-0.034270688261357284,-0.03253004562777677,-0.030526693631781184,-0.028276888966456984,-0.025798877984279316,-0.023112748719209663,-0.020240268046281127,-0.017204705298682118,-0.014030643771588372,-0.010743781639651328,-0.0073707239003403995,-0.003938767027570506,-0.00047567807864357434,0.0029905299579785958,0.006431824756528031,0.009820381356549241,0.013128807140926641,0.01633036327029629,0.019399180783858418,0.022310469620101962,0.025040718868615308,0.02756788663535781,0.029871577988169112,0.03193320954596789,0.03373615938341812,0.03526590104187003,0.03651012056616753,0.03745881562440869,0.038104375912837295,0.03844164419955578,0.03846795751745767,0.03818316817741183,0.03758964443599115,0.03669225081660554,0.03549830824743998,0.03401753434278411,0.03226196431485054,0.030245853159716084,0.027985559912320702,0.025499414910298494,0.022807571143624552,0.019931840895533504,0.016895518998861506,0.013723194139926924,0.010440549738424497,0.0070741560157861,0.0036512549353831854,0.00019953975523895215,-0.00325306902287649,-0.0066786494953249426,-0.010049504162704533,-0.013338383874101665,-0.016518708098851902,-0.01956477974523388,-0.022451992790032,-0.025157031041333017,-0.0276580564290469,-0.029934885302622293,-0.03196915131274316,-0.03374445356258137,-0.035246488833578,-0.03646316681976252,-0.03738470744224978,-0.03800371946066397,-0.038315259749651935,-0.03831687276513969,-0.03800860988528864,-0.0373930284739256,-0.03647517067823479,-0.035262522136385276,-0.03376495093319766,-0.03199462730161606,-0.029965924723355485,-0.02769530323238226,-0.02520117586864324,-0.022503759365524834,-0.019624910281799468,-0.016587947906274828,-0.013417465370054126,-0.010139130496382183,-0.006779478000726468,-0.0033656947233577273,7.460036730778947e-5,0.0035135796204144817,0.006923431789708256,0.010276586941299563,0.013545939363364906,0.01670506667552346,0.01972844336677464,0.022591647036232537,0.025271555670334827,0.02774653436299188,0.029996609970860566,0.03200363229380443,0.033751420479863396,0.03522589347381358,0.03641518345767966,0.037309731369323265,0.03790236373035219,0.038188350165904925,0.0381654411551355,0.03783388571119242,0.03719642885185566,0.036258288885457075,0.035027114699935864,0.033512923404556146,0.031728018832628,0.029686891568244427,0.027406101309324218,0.02490414252192819,0.02220129447574246,0.019319456876705735,0.0162819724289827,0.013113437763912567,0.009839504267341433,0.0064866704181231055,0.0030820673188898364,-0.0003467608450979711,-0.0037720796425544678,-0.007166188725470367,-0.01050164583666236,-0.013751488684078512,-0.01688945288803596,-0.019890184239620128,-0.022729443554915987,-0.025384302469926533,-0.02783332859465087,-0.030056758531168598,-0.032036657359027124,-0.03375706330095348,-0.03520411640202219,-0.036366170184932045,-0.03723388538192925,-0.03780030498904341,-0.03806091003950322,-0.03801365564924539,-0.037658987047059805,-0.03699983546383707,-0.03604159391828725,-0.03479207309906838,-0.03326143770418085,-0.031462123756451084,-0.029408737567667178,-0.027117937172197938,-0.024608297192526794,-0.021900158232920942,-0.019015462022351534,-0.01597757364277637,-0.012811092283063362,-0.009541652051330979,-0.0061957144585660685,-0.0028003542534034867,0.0006169596586220393,0.004028586438646196,0.007406936883092789,0.01072469652909908,0.013955046492548523,0.017071880253290525,0.02005001463522068,0.0228653932762135,0.025495280943979366,0.027918447128281013,0.030115337426986792,0.032068231342450224,0.03376138521488713,0.03518115913987624,0.03631612684686514,0.03715716765356398,0.03769753975624189,0.03793293426702707,0.037861509565129445,0.03748390568819351,0.036803238651458986,0.03582507474475294,0.03455738501924498,0.033010480336058697,0.031196927505952324,0.02913144720208961,0.026830794475183564,0.02431362284082111,0.021600333041430997,0.018712907709068416,0.015674733268960916,0.0125104105266712,0.009245555472954876,0.005906591919189023,0.002520537641985998,-0.0008852142322446403,-0.004283116833864904,-0.007645692355001225,-0.010945754250851314,-0.01415662704051742,-0.017252361930309816,-0.020207946516622888,-0.02299950687371543,-0.025604500393652672,-0.02800189782078539,-0.030172353010839516,-0.03209835904425872,-0.03376438943407106,-0.03515702328934689,-0.03626505342529523,-0.03707957654916034,-0.03759406479620798,-0.03780441804105949,-0.037708996565216264,-0.037308633820561175,-0.03660662918963904,-0.035608720805303515,-0.03432303865356446,-0.03276003834287377,-0.03093241607936002,-0.028855005539400274,-0.026544657477173647,-0.024020103044293757,-0.02130180193014,-0.018411776554038667,-0.015373433652994815,-0.01221137471033685,-0.008951196760587586,-0.005619285183393522,-0.002242600163801117,0.0011515414529338725,0.004535687146966428,0.007882470762184408,0.01116483380142672,0.014356244189117559,0.01743091073269267,0.020363991549330874,0.023131794773655262,0.025711969924830533,0.02808368838734631,0.03022781154812409,0.03212704523270155,0.033766079194319155,0.035131710530861726,0.03621295003480788,0.037001110619560934,0.037489877110654206,0.037675356841168406,0.03755611064604708,0.03713316400859128,0.03640999827297231,0.035392521997824944,0.03408902268656669,0.032510099288734294,0.030668576022054375,0.02857939821591316,0.02625951102214273,0.02372772197742342,0.021004548531996167,0.01811205178073299,0.01507365774394686,0.011913967645738367,0.008658558726362819,0.005333777201343458,0.0019665250432576173,-0.0014159576883007448,-0.004786313207348506,-0.008117287270163791,-0.011381949562361519,-0.014553911422297833,-0.017607539140602035,-0.02051816111176216,-0.0232622671637529,-0.025817698455284747,-0.028163826406854362,-0.03028171922076571,-0.03215429464594733,-0.03376645775489777,-0.03510522262154349,-0.03615981691920808,-0.03692176859621235,-0.0373849739317302,-0.03754574642524214,-0.0374028461280354,-0.036957489183442487,-0.03621333750260813,-0.03517646866323284,-0.033855326278660336,-0.0322606512425628,-0.03040539440905613,-0.028304611418097595,-0.02597534052026692,-0.02343646439234735,-0.020708557064390502,-0.0178137171991304,-0.014775389074733318,-0.011618172721044498,-0.00836762474691821,-0.005050051471207641,-0.0016922960318677344,0.0016784788039376616,0.005035010371480728,0.00835015660437404,0.011597115511428112,0.01474964185974883,0.01778225931230656,0.020670466305316028,0.02339093400173197,0.02592169472157615,0.028242319327141618,0.0303340821307443,0.03218011199388006,0.033765528398579776,0.03507756139352576,0.03610565444811512,0.0368415493860701,0.03727935271528243,0.037415582821161995,0.03724919764562266,0.03678160263172492,0.03601663887363084,0.03496055157161697,0.03362193905114546,0.0320116827621196,0.030142858828181567,0.028030631865001952,0.025692131929759422,0.023146315600256092,0.02041381231026113,0.01751675718668491,0.014478611743098361,0.011323973882063522,0.008078378744874142,0.004768092021085661,0.0014198973908065514,-0.0019391201801185988,-0.005281793538718719,-0.008581093064968197,-0.011810345236314357,-0.01494344826934872,-0.017955083095295706,-0.020820917964071255,-0.023517805023525424,-0.02602396728570526,-0.028319174470027263,-0.03038490630349814,-0.03220450195983697,-0.03376329443170622,-0.035048728752341635,-0.03605046311369468,-0.03676045206670424,-0.03717301113437626,-0.03728486231879611,-0.03709516013781164,-0.036605497984652575,-0.03581989476292128,-0.03474476190891229,-0.033388851071803734,-0.03176318287863061,-0.02988095736383336,-0.02775744679134012,-0.02540987173938993,-0.022857261453487515,-0.020120299599907035,-0.017221156670003807,-0.01418331039331608,-0.011031355614106763,-0.007790805170983514,-0.004487883391628107,-0.0011493138741099805,0.0021978967278767692,0.00552667716653189,0.008810110541074896,0.012021651947797701,0.015135343079150711,0.0181260220369867,0.0209695266641294,0.02364288975118275,0.026124524541523093,0.02839439903618371,0.030434197691209332,0.032227469202290394,0.03375975918425462,0.03501872667538124,0.03599424352752171,0.03667847588159619,0.03706594707306781,0.037153581462299766,0.036940728839060494,0.03642916920760701,0.03562309791747718,0.03452909126407258,0.03315605284103098,0.03151514108199239,0.02961967858139947,0.027485043931210925,0.025128546951657147,0.022569288328288962,0.019828004793477554,0.01692690110721693,0.013889470198553099,0.01074030292450516,0.0075048889869632415,0.00420941061928962,0.0008805307124956109,-0.0024548229044892124,-0.005769675285170452,-0.0090372225245316,-0.012231048492436255,-0.015325338388932118,-0.018295087395041196,-0.021116302732618646,-0.023766197500491686,-0.026223374720912206,-0.028468000109830405,-0.03048196217597591,-0.03224901835647585,-0.03375492600991322,-0.034987557210415125,-0.03593699641756785,-0.03659562023561773,-0.036958158620414246,-0.03702173704270835,-0.03678589927052071,-0.03625261059009402,-0.035426241443171795,-0.03431353161672413,-0.032923535278487494,-0.03126754730652865,-0.02935901151223208,-0.02721341150242224,-0.0248481450665855,-0.022282383108216293,-0.019536914264118462,-0.01663397647097881,-0.013597076843901112,-0.010450801325789776,-0.0072206156489473435,-0.003932659220199256,-0.0006135335977771,0.0027099127283942166,0.006010801511796118,0.009262442123116667,0.012438547364797685,0.015513445981323959,0.018462290147308397,0.021261256256373033,0.02388773738832628,0.02632052589974753,0.028539984663262404,0.030528205572874785,0.032269154035967966,0.03374879828616032,0.03495522247417938,0.035878722625307224,0.036511884690683775,0.03684964406471155,0.03688932609080937,0.036630667231603804,0.03607581673607539,0.03522931879393123,0.03409807532527801,0.032691289710243245,0.03102039191727379,0.02909894563918158,0.026942538191393337,0.02456865406611694,0.021996533168151616,0.019247014881719357,0.016342369232112453,0.013306116510021294,0.01016283681947774,0.006937971091546525,0.00365761517461928,0.00034830866784630904,-0.0029631797935661796,-0.00625006906409973,-0.009485782073301816,-0.012644160719245855,-0.01569967733253896,-0.018627641001410438,-0.021404397090300585,-0.02400751833973313,-0.02641598600364634,-0.028610359561220704,-0.030572933632920206,-0.03228788083420616,-0.03374137941434808,-0.034921724651019975,-0.035819423102934934,-0.03642726896157072,-0.03674040188794915,-0.03675634587028102,-0.03647502879186169,-0.03589878255465898,-0.03503232376131171,-0.03388271511548068,-0.03245930785639593,-0.030773665696759996,-0.02883947088265956,-0.02667241313860836,-0.02429006239908108,-0.021711726358887927,-0.018958293997271093,-0.016052066343839683,-0.013016575857385401,-0.009876395880448967,-0.006656941712485906,-0.003384264911966896,-8.484249219866868e-5,0.0032146372833712785,0.006487490773427844,0.009707254752545608,0.012847900381304091,0.015884043622715196,0.01879115040398536,0.021545734865453577,0.024125549094766496,0.026509762813515882,0.02867913156511049,0.030616152045921493,0.03230520332597178,0.03373267281978997,0.034887065991592754,0.03575909891069328,0.036341772911892806,0.036630430760471996,0.03662279387108542,0.03631898028316677,0.03572150325113146,0.03483525046445917,0.033667444069383524,0.032227581819141336,0.030527359832285005,0.02858057758721534,0.02640302592460554,0.02401235896669528,0.021427950992288905,0.018670739427780685,0.01576305522658327,0.01272844201108588,0.009591465441886333,0.006377514357796074,0.0031125952963747525,-0.00017687794202152492,-0.0034642979839261605,-0.006723079097439228,-0.009926872191147467,-0.013049777858613016,-0.016066555745891553,-0.018952828549601987,-0.021685278996813412,-0.02424183821508289,-0.026601863970907153,-0.02874630733707357,-0.030657866443244055,-0.03232112606881826,-0.03372268195185141,-0.034851248811616616,-0.03569775121430004,-0.036255396550229434,-0.03651972953584025,-0.03648866780310486,-0.03616251829217878,-0.03554397431831817,-0.034638093340434314,-0.033452255614712996,-0.03199610407127495,-0.03028146590364616,-0.02832225650858492,-0.026134366556457803,-0.023735533108602526,-0.021145195826974484,-0.018384339441730107,-0.015475323753314665,-0.012441702546190514,-0.00930803288075509,-0.006099676307533762,-0.002842593612767194,0.00043686524347802755,0.003712174296980799,0.00695684613231125,0.010144646083680783,0.013249804351500126,0.016247224319630476,0.01911268538936049,0.021823038690801867,0.02435639409030493,0.026692296983182498,0.028811893443920725,0.030698082400477434,0.03233565360445604,0.03371141028404292,0.034814275490676914,0.03563538128247457,0.03616814002639607,0.0364082972458781,0.0363539655900107,0.03600563965308515,0.03536619152825627,0.03444084713488735,0.033237143514623195,0.03176486744511242,0.030035975871303765,0.028064498801216847,0.025866425454751506,0.023459574589401032,0.020863450054519412,0.0180990827450539,0.015188860235423873,0.012156345473618504,0.009026086003798572,0.005823415262009634,0.002574247553430419,-0.0006951316296228443,-0.00395827825234557,-0.007188803624515017,-0.010360587800022842,-0.013447990763177231,-0.016426059694302723,-0.01927073063919162,-0.02195902295253012,-0.024469224944163984,-0.026781069228504845,-0.028875896360929684,-0.030736805440013937,-0.03234879046009351,-0.033698861314115446,-0.03477614847107672,-0.035571990484556726,-0.036080003627852845,-0.036296133095903044,-0.036218685363354236,-0.035848341440603546,-0.03518815092416702,-0.03424350689306633,-0.033022101857819175,-0.03153386512179576,-0.029790882064977802,-0.027807296006236153,-0.02559919344102134,-0.02318447358565379,-0.020582703286141396,-0.017814958467613575,-0.014903653409089376,-0.011872359226515689,-0.0087456130340284,-0.0055487193285018175,-0.0023075452050557188,0.0009516889392197416,0.0042026215198816925,0.007418962982177434,0.010574708395998328,0.013644347709581376,0.016603071962048133,0.01942697378786704,0.02209324059279624,0.024580338840430607,0.026868187960655463,0.028938322475513836,0.030774041033541095,0.0323605411497357,0.03368503856415701,0.03473687025673336,0.035507580288214595,0.03599098777624418,0.03618323646012767,0.036082825456870006,0.03569062096323433,0.03500984881271418,0.03404606795114891,0.03280712504902289,0.031303090620988495,0.029546177172642633,0.027550640039834807,0.02533266172563002,0.02291022067335603,0.020302945539857953,0.017531956150147864,0.014619692422127047,0.011589732647108102,0.008466602597688406,0.005275577008434778,0.0020424750362360157,-0.001206548644430145,-0.004445215421073217,-0.007647335286047241,-0.010787018623652491,-0.013838885528873865,-0.0167782709654257,-0.019581424104732688,-0.022225700234841394,-0.02468974368864125,-0.026953660313687268,-0.028999178090766842,-0.030809794604451397,-0.03237091017544197,-0.03366994558069065,-0.03469644341211801,-0.03544215225723675,-0.03590109302406374,-0.03606960687722659,-0.035946384400982176,-0.03553247575675446,-0.03483128175653892,-0.03384852592787367,-0.032592207799783286,-0.031072537790928587,-0.029301854229909524,-0.02729452318206965,-0.025066821896072896,-0.02263680681584153,-0.02002416722809248,-0.017250065731678713,-0.014336966821297918,-0.011308454974013811,-0.008189043711672436,-0.0050039771850041905,-0.001779025885396853,0.0014597218624795769,0.004686070940197863,0.007873931300081398,0.010997528941169146,0.01403161429061146,0.016951666305765736,0.0197340906471763,0.02235641032087452,0.024797447249629512,0.027037493306420197,0.029058469428887988,0.03084407153017216,0.032379902028543954,0.03365358593477292,0.034654870561236256,0.035375708049405166,0.03581032005143911,0.035955244046060805,0.03580936091750603,0.035373903577937287,0.03465244656705215,0.03365087671647134,0.03237734511960406,0.030842200798829836,0.029057906609779596,0.027038938066050573,0.024801665905689396,0.022364223352109146,0.019746359145710497,0.016969277537354204,0.01405546654005575,0.01102851582999383,0.007912925771377316,0.0047339091112292946,0.0015171869491438842,-0.0017112193669219114,-0.0049251987351132155,-0.008098761481667476,-0.01120624952244808,-0.014222543804603116,-0.017123267351236128,-0.019884982267839916,-0.02248537911837479,-0.024903457140869657,-0.027119693846784643,-0.029116202634492792,-0.030876877144418766,-0.03238752119082528,-0.03363596322209271,-0.034612154386647456,-0.03530824941444521,-0.03571866966303122,-0.035840147821553245,-0.0356717539145338,-0.03521490239849537,-0.03447334029748302,-0.03345311647687356,-0.03216253230738022,-0.0306120741216161,-0.02881432801275158,-0.02678387766750261,-0.024537186062764563,-0.022092461985552293,-0.01946951245846852,-0.01668958226671009,-0.013775181886716214,-0.01074990521012429,-0.007638238538972958,-0.0044653623984152215,-0.0012569477710097899,0.001961051598517928,0.005162609147673988,0.008321835991496706,0.01141319026635569,0.014411683629464956,0.017293083244634237,0.020034107621587596,0.02261261472618066,0.025007780841639876,0.0272002687360193,0.02917238377781334,0.030908216739373762,0.03239377213566411,0.03361708106307008,0.034568297628521004,0.035239778192049376,0.03562614278504212,0.03572431821070836,0.035533562481500226,0.03505547039923162,0.03429396023616563,0.03325524162819137,0.031947764943129925,0.030382152536974478,0.028571112457269687,0.0265293352946865,0.024273375020004394,0.02182151477307462,0.01919361869185823,0.016410970982332913,0.013496103533030318,0.010472613470372294],"x":[50.0,50.08996401439424,50.17992802878848,50.26989204318273,50.35985605757697,50.44982007197121,50.53978408636545,50.6297481007597,50.71971211515394,50.80967612954818,50.89964014394242,50.98960415833667,51.07956817273091,51.16953218712515,51.25949620151939,51.34946021591364,51.43942423030788,51.52938824470212,51.61935225909636,51.7093162734906,51.79928028788485,51.88924430227909,51.97920831667333,52.06917233106757,52.15913634546182,52.24910035985606,52.3390643742503,52.42902838864454,52.51899240303879,52.60895641743303,52.69892043182727,52.78888444622151,52.87884846061576,52.96881247501,53.05877648940424,53.14874050379848,53.238704518192726,53.32866853258697,53.41863254698121,53.50859656137545,53.59856057576969,53.68852459016394,53.77848860455818,53.86845261895242,53.95841663334666,54.048380647740906,54.13834466213515,54.22830867652939,54.31827269092363,54.408236705317876,54.498200719712116,54.58816473410636,54.6781287485006,54.768092762894845,54.858056777289086,54.94802079168333,55.03798480607757,55.12794882047181,55.217912834866056,55.307876849260296,55.39784086365454,55.48780487804878,55.577768892443025,55.667732906837266,55.757696921231506,55.84766093562575,55.937624950019995,56.027588964414235,56.117552978808476,56.20751699320272,56.297481007596964,56.387445021991205,56.477409036385446,56.567373050779686,56.657337065173934,56.747301079568174,56.837265093962415,56.927229108356656,57.017193122750896,57.107157137145144,57.197121151539385,57.287085165933625,57.377049180327866,57.467013194722114,57.556977209116354,57.646941223510595,57.736905237904836,57.82686925229908,57.916833266693324,58.006797281087564,58.096761295481805,58.18672530987605,58.27668932427029,58.366653338664534,58.456617353058775,58.546581367453015,58.63654538184726,58.726509396241504,58.816473410635744,58.906437425029985,58.99640143942423,59.08636545381847,59.176329468212714,59.266293482606955,59.3562574970012,59.44622151139544,59.53618552578968,59.626149540183924,59.71611355457817,59.80607756897241,59.89604158336665,59.986005597760894,60.07596961215514,60.16593362654938,60.25589764094362,60.34586165533786,60.435825669732104,60.52578968412635,60.61575369852059,60.70571771291483,60.79568172730907,60.88564574170332,60.97560975609756,61.0655737704918,61.15553778488604,61.24550179928029,61.33546581367453,61.42542982806877,61.51539384246301,61.60535785685726,61.6953218712515,61.78528588564574,61.87524990003998,61.96521391443422,62.05517792882847,62.14514194322271,62.23510595761695,62.32506997201119,62.41503398640544,62.50499800079968,62.59496201519392,62.68492602958816,62.77489004398241,62.86485405837665,62.95481807277089,63.04478208716513,63.13474610155938,63.22471011595362,63.31467413034786,63.4046381447421,63.49460215913635,63.58456617353059,63.67453018792483,63.76449420231907,63.85445821671331,63.94442223110756,64.03438624550179,64.12435025989605,64.21431427429029,64.30427828868453,64.39424230307877,64.48420631747301,64.57417033186725,64.66413434626149,64.75409836065573,64.84406237504999,64.93402638944423,65.02399040383847,65.11395441823271,65.20391843262695,65.29388244702119,65.38384646141543,65.47381047580967,65.56377449020391,65.65373850459817,65.74370251899241,65.83366653338665,65.92363054778089,66.01359456217513,66.10355857656937,66.19352259096361,66.28348660535785,66.3734506197521,66.46341463414635,66.55337864854059,66.64334266293483,66.73330667732907,66.82327069172331,66.91323470611755,67.00319872051179,67.09316273490603,67.18312674930029,67.27309076369453,67.36305477808877,67.45301879248301,67.54298280687725,67.63294682127149,67.72291083566573,67.81287485005997,67.90283886445422,67.99280287884847,68.0827668932427,68.17273090763695,68.26269492203119,68.35265893642543,68.44262295081967,68.53258696521391,68.62255097960815,68.7125149940024,68.80247900839665,68.89244302279089,68.98240703718513,69.07237105157937,69.16233506597361,69.25229908036785,69.34226309476209,69.43222710915634,69.52219112355058,69.61215513794482,69.70211915233907,69.7920831667333,69.88204718112755,69.97201119552179,70.06197520991603,70.15193922431028,70.24190323870452,70.33186725309876,70.421831267493,70.51179528188725,70.60175929628149,70.69172331067573,70.78168732506997,70.87165133946421,70.96161535385846,71.0515793682527,71.14154338264694,71.23150739704118,71.32147141143543,71.41143542582967,71.5013994402239,71.59136345461815,71.6813274690124,71.77129148340664,71.86125549780088,71.95121951219512,72.04118352658936,72.1311475409836,72.22111155537785,72.31107556977209,72.40103958416633,72.49100359856058,72.58096761295482,72.67093162734906,72.7608956417433,72.85085965613754,72.94082367053178,73.03078768492603,73.12075169932027,73.21071571371452,73.30067972810876,73.390643742503,73.48060775689724,73.57057177129148,73.66053578568572,73.75049980007996,73.8404638144742,73.93042782886845,74.0203918432627,74.11035585765694,74.20031987205118,74.29028388644542,74.38024790083966,74.4702119152339,74.56017592962814,74.65013994402238,74.74010395841664,74.83006797281088,74.92003198720512,75.00999600159936,75.0999600159936,75.18992403038784,75.27988804478208,75.36985205917632,75.45981607357056,75.54978008796482,75.63974410235906,75.7297081167533,75.81967213114754,75.90963614554178,75.99960015993602,76.08956417433026,76.1795281887245,76.26949220311876,76.359456217513,76.44942023190724,76.53938424630148,76.62934826069572,76.71931227508996,76.8092762894842,76.89924030387844,76.9892043182727,77.07916833266694,77.16913234706118,77.25909636145542,77.34906037584966,77.4390243902439,77.52898840463814,77.61895241903238,77.70891643342662,77.79888044782088,77.88884446221512,77.97880847660936,78.0687724910036,78.15873650539784,78.24870051979208,78.33866453418632,78.42862854858056,78.51859256297482,78.60855657736906,78.6985205917633,78.78848460615754,78.87844862055178,78.96841263494602,79.05837664934026,79.1483406637345,79.23830467812874,79.328268692523,79.41823270691724,79.50819672131148,79.59816073570572,79.68812475009996,79.7780887644942,79.86805277888844,79.95801679328268,80.04798080767694,80.13794482207118,80.22790883646542,80.31787285085966,80.4078368652539,80.49780087964814,80.58776489404238,80.67772890843662,80.76769292283086,80.85765693722512,80.94762095161936,81.0375849660136,81.12754898040784,81.21751299480208,81.30747700919632,81.39744102359056,81.4874050379848,81.57736905237905,81.6673330667733,81.75729708116754,81.84726109556178,81.93722510995602,82.02718912435026,82.1171531387445,82.20711715313874,82.29708116753298,82.38704518192723,82.47700919632148,82.56697321071572,82.65693722510996,82.7469012395042,82.83686525389844,82.92682926829268,83.01679328268692,83.10675729708117,83.19672131147541,83.28668532586966,83.3766493402639,83.46661335465814,83.55657736905238,83.64654138344662,83.73650539784086,83.82646941223511,83.91643342662935,84.0063974410236,84.09636145541783,84.18632546981208,84.27628948420632,84.36625349860056,84.4562175129948,84.54618152738904,84.63614554178329,84.72610955617753,84.81607357057177,84.90603758496601,84.99600159936026,85.0859656137545,85.17592962814874,85.26589364254298,85.35585765693723,85.44582167133147,85.53578568572571,85.62574970011995,85.7157137145142,85.80567772890844,85.89564174330268,85.98560575769692,86.07556977209116,86.16553378648541,86.25549780087965,86.3454618152739,86.43542582966813,86.52538984406237,86.61535385845661,86.70531787285086,86.7952818872451,86.88524590163935,86.97520991603359,87.06517393042783,87.15513794482207,87.24510195921631,87.33506597361055,87.4250299880048,87.51499400239904,87.60495801679328,87.69492203118753,87.78488604558177,87.87485005997601,87.96481407437025,88.0547780887645,88.14474210315873,88.23470611755297,88.32467013194722,88.41463414634147,88.50459816073571,88.59456217512995,88.68452618952419,88.77449020391843,88.86445421831267,88.95441823270691,89.04438224710115,89.1343462614954,89.22431027588965,89.31427429028389,89.40423830467813,89.49420231907237,89.58416633346661,89.67413034786085,89.7640943622551,89.85405837664933,89.94402239104359,90.03398640543783,90.12395041983207,90.21391443422631,90.30387844862055,90.39384246301479,90.48380647740903,90.57377049180327,90.66373450619751,90.75369852059177,90.84366253498601,90.93362654938025,91.02359056377449,91.11355457816873,91.20351859256297,91.29348260695721,91.38344662135145,91.47341063574571,91.56337465013995,91.65333866453419,91.74330267892843,91.83326669332267,91.92323070771691,92.01319472211115,92.10315873650539,92.19312275089965,92.28308676529389,92.37305077968813,92.46301479408237,92.55297880847661,92.64294282287085,92.73290683726509,92.82287085165933,92.91283486605357,93.00279888044783,93.09276289484207,93.18272690923631,93.27269092363055,93.36265493802479,93.45261895241903,93.54258296681327,93.63254698120751,93.72251099560177,93.812475009996,93.90243902439025,93.99240303878449,94.08236705317873,94.17233106757297,94.26229508196721,94.35225909636145,94.44222311075569,94.53218712514995,94.62215113954419,94.71211515393843,94.80207916833267,94.89204318272691,94.98200719712115,95.07197121151539,95.16193522590963,95.25189924030389,95.34186325469813,95.43182726909237,95.5217912834866,95.61175529788085,95.70171931227509,95.79168332666933,95.88164734106357,95.97161135545781,96.06157536985206,96.1515393842463,96.24150339864055,96.33146741303479,96.42143142742903,96.51139544182327,96.60135945621751,96.69132347061175,96.781287485006,96.87125149940024,96.96121551379449,97.05117952818873,97.14114354258297,97.23110755697721,97.32107157137145,97.41103558576569,97.50099960015993,97.59096361455418,97.68092762894842,97.77089164334267,97.8608556577369,97.95081967213115,98.04078368652539,98.13074770091963,98.22071171531387,98.31067572970812,98.40063974410236,98.4906037584966,98.58056777289084,98.67053178728509,98.76049580167933,98.85045981607357,98.94042383046781,99.03038784486206,99.1203518592563,99.21031587365054,99.30027988804478,99.39024390243902,99.48020791683327,99.5701719312275,99.66013594562175,99.75009996001599,99.84006397441024,99.93002798880448,100.01999200319872,100.10995601759296,100.1999200319872,100.28988404638145,100.37984806077569,100.46981207516993,100.55977608956418,100.64974010395842,100.73970411835266,100.8296681327469,100.91963214714114,101.00959616153538,101.09956017592962,101.18952419032387,101.2794882047181,101.36945221911236,101.4594162335066,101.54938024790084,101.63934426229508,101.72930827668932,101.81927229108356,101.9092363054778,101.99920031987205,102.0891643342663,102.17912834866054,102.26909236305478,102.35905637744902,102.44902039184326,102.5389844062375,102.62894842063174,102.71891243502598,102.80887644942023,102.89884046381448,102.98880447820872,103.07876849260296,103.1687325069972,103.25869652139144,103.34866053578568,103.43862455017992,103.52858856457416,103.61855257896842,103.70851659336266,103.7984806077569,103.88844462215114,103.97840863654538,104.06837265093962,104.15833666533386,104.2483006797281,104.33826469412234,104.4282287085166,104.51819272291084,104.60815673730508,104.69812075169932,104.78808476609356,104.8780487804878,104.96801279488204,105.05797680927628,105.14794082367054,105.23790483806478,105.32786885245902,105.41783286685326,105.5077968812475,105.59776089564174,105.68772491003598,105.77768892443022,105.86765293882446,105.95761695321872,106.04758096761296,106.1375449820072,106.22750899640144,106.31747301079568,106.40743702518992,106.49740103958416,106.5873650539784,106.67732906837266,106.7672930827669,106.85725709716114,106.94722111155538,107.03718512594962,107.12714914034386,107.2171131547381,107.30707716913234,107.3970411835266,107.48700519792084,107.57696921231508,107.66693322670932,107.75689724110356,107.8468612554978,107.93682526989204,108.02678928428628,108.11675329868052,108.20671731307478,108.29668132746902,108.38664534186326,108.4766093562575,108.56657337065174,108.65653738504598,108.74650139944022,108.83646541383446,108.92642942822872,109.01639344262296,109.1063574570172,109.19632147141144,109.28628548580568,109.37624950019992,109.46621351459416,109.5561775289884,109.64614154338264,109.7361055577769,109.82606957217114,109.91603358656538,110.00599760095962,110.09596161535386,110.1859256297481,110.27588964414234,110.36585365853658,110.45581767293083,110.54578168732507,110.63574570171932,110.72570971611356,110.8156737305078,110.90563774490204,110.99560175929628,111.08556577369052,111.17552978808476,111.26549380247901,111.35545781687325,111.4454218312675,111.53538584566174,111.62534986005598,111.71531387445022,111.80527788884446,111.8952419032387,111.98520591763295,112.0751699320272,112.16513394642143,112.25509796081568,112.34506197520992,112.43502598960416,112.5249900039984,112.61495401839264,112.70491803278688,112.79488204718113,112.88484606157537,112.97481007596961,113.06477409036385,113.1547381047581,113.24470211915234,113.33466613354658,113.42463014794082,113.51459416233507,113.60455817672931,113.69452219112355,113.7844862055178,113.87445021991203,113.96441423430628,114.05437824870052,114.14434226309476,114.23430627748901,114.32427029188325,114.41423430627749,114.50419832067173,114.59416233506597,114.68412634946021,114.77409036385446,114.8640543782487,114.95401839264294,115.04398240703719,115.13394642143143,115.22391043582567,115.31387445021991,115.40383846461415,115.4938024790084,115.58376649340263,115.67373050779688,115.76369452219113,115.85365853658537,115.94362255097961,116.03358656537385,116.1235505797681,116.21351459416233,116.30347860855657,116.39344262295081,116.48340663734506,116.57337065173931,116.66333466613355,116.75329868052779,116.84326269492203,116.93322670931627,117.02319072371051,117.11315473810475,117.203118752499,117.29308276689325,117.38304678128749,117.47301079568173,117.56297481007597,117.65293882447021,117.74290283886445,117.8328668532587,117.92283086765293,118.01279488204717,118.10275889644143,118.19272291083567,118.28268692522991,118.37265093962415,118.46261495401839,118.55257896841263,118.64254298280687,118.73250699720111,118.82247101159537,118.91243502598961,119.00239904038385,119.09236305477809,119.18232706917233,119.27229108356657,119.36225509796081,119.45221911235505,119.5421831267493,119.63214714114355,119.72211115553779,119.81207516993203,119.90203918432627,119.99200319872051,120.08196721311475,120.17193122750899,120.26189524190323,120.35185925629749,120.44182327069173,120.53178728508597,120.62175129948021,120.71171531387445,120.80167932826869,120.89164334266293,120.98160735705717,121.07157137145141,121.16153538584567,121.25149940023991,121.34146341463415,121.43142742902839,121.52139144342263,121.61135545781687,121.70131947221111,121.79128348660535,121.8812475009996,121.97121151539385,122.06117552978809,122.15113954418233,122.24110355857657,122.33106757297081,122.42103158736505,122.51099560175929,122.60095961615355,122.69092363054779,122.78088764494203,122.87085165933627,122.96081567373051,123.05077968812475,123.14074370251899,123.23070771691323,123.32067173130747,123.41063574570173,123.50059976009597,123.5905637744902,123.68052778888445,123.77049180327869,123.86045581767293,123.95041983206717,124.04038384646141,124.13034786085566,124.2203118752499,124.31027588964415,124.40023990403839,124.49020391843263,124.58016793282687,124.67013194722111,124.76009596161535,124.85005997600959,124.94002399040384,125.02998800479808,125.11995201919233,125.20991603358657,125.2998800479808,125.38984406237505,125.47980807676929,125.56977209116353,125.65973610555778,125.74970011995202,125.83966413434626,125.9296281487405,126.01959216313475,126.10955617752899,126.19952019192323,126.28948420631747,126.37944822071171,126.46941223510596,126.5593762495002,126.64934026389444,126.73930427828869,126.82926829268293,126.91923230707717,127.0091963214714,127.09916033586565,127.1891243502599,127.27908836465414,127.36905237904838,127.45901639344262,127.54898040783686,127.6389444222311,127.72890843662535,127.81887245101959,127.90883646541383,127.99880047980808,128.0887644942023,128.17872850859655,128.2686925229908,128.35865653738506,128.4486205517793,128.53858456617354,128.62854858056778,128.71851259496202,128.80847660935626,128.8984406237505,128.98840463814474,129.07836865253898,129.16833266693322,129.25829668132747,129.3482606957217,129.43822471011595,129.5281887245102,129.61815273890443,129.70811675329867,129.7980807676929,129.88804478208718,129.97800879648142,130.06797281087566,130.1579368252699,130.24790083966414,130.33786485405838,130.42782886845262,130.51779288284686,130.6077568972411,130.69772091163534,130.78768492602958,130.87764894042382,130.96761295481807,131.0575769692123,131.14754098360655,131.2375049980008,131.32746901239503,131.4174330267893,131.50739704118354,131.59736105557778,131.68732506997202,131.77728908436626,131.8672530987605,131.95721711315474,132.04718112754898,132.13714514194322,132.22710915633746,132.3170731707317,132.40703718512594,132.49700119952018,132.58696521391443,132.67692922830867,132.7668932427029,132.85685725709718,132.94682127149142,133.03678528588566,133.1267493002799,133.21671331467414,133.30667732906838,133.39664134346262,133.48660535785686,133.5765693722511,133.66653338664534,133.75649740103958,133.84646141543382,133.93642542982806,134.0263894442223,134.11635345861654,134.20631747301078,134.29628148740503,134.3862455017993,134.47620951619353,134.56617353058778,134.65613754498202,134.74610155937626,134.8360655737705,134.92602958816474,135.01599360255898,135.10595761695322,135.19592163134746,135.2858856457417,135.37584966013594,135.46581367453018,135.55577768892442,135.64574170331866,135.7357057177129,135.82566973210714,135.9156337465014,136.00559776089565,136.0955617752899,136.18552578968414,136.27548980407838,136.36545381847262,136.45541783286686,136.5453818472611,136.63534586165534,136.72530987604958,136.81527389044382,136.90523790483806,136.9952019192323,137.08516593362654,137.17512994802078,137.26509396241502,137.35505797680926,137.44502199120353,137.53498600559777,137.624950019992,137.71491403438625,137.8048780487805,137.89484206317474,137.98480607756898,138.07477009196322,138.16473410635746,138.2546981207517,138.34466213514594,138.43462614954018,138.52459016393442,138.61455417832866,138.7045181927229,138.79448220711714,138.88444622151138,138.97441023590565,139.0643742502999,139.15433826469413,139.24430227908837,139.3342662934826,139.42423030787685,139.5141943222711,139.60415833666534,139.69412235105958,139.78408636545382,139.87405037984806,139.9640143942423,140.05397840863654,140.14394242303078,140.23390643742502,140.32387045181926,140.4138344662135,140.50379848060777,140.593762495002,140.68372650939625,140.7736905237905,140.86365453818473,140.95361855257897,141.0435825669732,141.13354658136745,141.2235105957617,141.31347461015594,141.40343862455018,141.49340263894442,141.58336665333866,141.6733306677329,141.76329468212714,141.85325869652138,141.94322271091562,142.0331867253099,142.12315073970413,142.21311475409837,142.3030787684926,142.39304278288685,142.4830067972811,142.57297081167533,142.66293482606957,142.7528988404638,142.84286285485805,142.9328268692523,143.02279088364654,143.11275489804078,143.20271891243502,143.29268292682926,143.3826469412235,143.47261095561774,143.562574970012,143.65253898440625,143.7425029988005,143.83246701319473,143.92243102758897,144.0123950419832,144.10235905637745,144.1923230707717,144.28228708516593,144.37225109956017,144.46221511395441,144.55217912834866,144.6421431427429,144.73210715713714,144.82207117153138,144.91203518592562,145.00199920031986,145.09196321471413,145.18192722910837,145.2718912435026,145.36185525789685,145.4518192722911,145.54178328668533,145.63174730107957,145.7217113154738,145.81167532986805,145.9016393442623,145.99160335865653,146.08156737305077,146.17153138744501,146.26149540183926,146.3514594162335,146.44142343062774,146.53138744502198,146.62135145941625,146.7113154738105,146.80127948820473,146.89124350259897,146.9812075169932,147.07117153138745,147.1611355457817,147.25109956017593,147.34106357457017,147.4310275889644,147.52099160335865,147.6109556177529,147.70091963214713,147.79088364654137,147.88084766093561,147.97081167532986,148.06077568972412,148.15073970411837,148.2407037185126,148.33066773290685,148.4206317473011,148.51059576169533,148.60055977608957,148.6905237904838,148.78048780487805,148.8704518192723,148.96041583366653,149.05037984806077,149.140343862455,149.23030787684925,149.3202718912435,149.41023590563773,149.50019992003197,149.59016393442624,149.68012794882048,149.77009196321472,149.86005597760897,149.9500199920032,150.03998400639745,150.1299480207917,150.21991203518593,150.30987604958017,150.3998400639744,150.48980407836865,150.5797680927629,150.66973210715713,150.75969612155137,150.8496601359456,150.93962415033985,151.0295881647341,151.11955217912836,151.2095161935226,151.29948020791684,151.38944422231108,151.47940823670532,151.56937225109957,151.6593362654938,151.74930027988805,151.8392642942823,151.92922830867653,152.01919232307077,152.109156337465,152.19912035185925,152.2890843662535,152.37904838064773,152.46901239504197,152.5589764094362,152.64894042383048,152.73890443822472,152.82886845261896,152.9188324670132,153.00879648140744,153.09876049580168,153.18872451019593,153.27868852459017,153.3686525389844,153.45861655337865,153.5485805677729,153.63854458216713,153.72850859656137,153.8184726109556,153.90843662534985,153.9984006397441,154.08836465413833,154.1783286685326,154.26829268292684,154.35825669732108,154.44822071171532,154.53818472610956,154.6281487405038,154.71811275489804,154.80807676929228,154.89804078368653,154.98800479808077,155.077968812475,155.16793282686925,155.2578968412635,155.34786085565773,155.43782487005197,155.5277888844462,155.61775289884045,155.70771691323472,155.79768092762896,155.8876449420232,155.97760895641744,156.06757297081168,156.15753698520592,156.24750099960016,156.3374650139944,156.42742902838864,156.51739304278289,156.60735705717713,156.69732107157137,156.7872850859656,156.87724910035985,156.9672131147541,157.05717712914833,157.14714114354257,157.23710515793684,157.32706917233108,157.41703318672532,157.50699720111956,157.5969612155138,157.68692522990804,157.77688924430228,157.86685325869652,157.95681727309076,158.046781287485,158.13674530187924,158.22670931627349,158.31667333066773,158.40663734506197,158.4966013594562,158.58656537385045,158.6765293882447,158.76649340263896,158.8564574170332,158.94642143142744,159.03638544582168,159.12634946021592,159.21631347461016,159.3062774890044,159.39624150339864,159.48620551779288,159.57616953218712,159.66613354658136,159.7560975609756,159.84606157536984,159.93602558976409,160.02598960415833,160.11595361855257,160.2059176329468,160.29588164734108,160.38584566173532,160.47580967612956,160.5657736905238,160.65573770491804,160.74570171931228,160.83566573370652,160.92562974810076,161.015593762495,161.10555777688924,161.19552179128348,161.28548580567772,161.37544982007196,161.4654138344662,161.55537784886045,161.64534186325469,161.73530587764893,161.8252698920432,161.91523390643744,162.00519792083168,162.09516193522592,162.18512594962016,162.2750899640144,162.36505397840864,162.45501799280288,162.54498200719712,162.63494602159136,162.7249100359856,162.81487405037984,162.90483806477408,162.99480207916832,163.08476609356256,163.1747301079568,163.26469412235107,163.35465813674531,163.44462215113955,163.5345861655338,163.62455017992804,163.71451419432228,163.80447820871652,163.89444222311076,163.984406237505,164.07437025189924,164.16433426629348,164.25429828068772,164.34426229508196,164.4342263094762,164.52419032387044,164.61415433826468,164.70411835265892,164.7940823670532,164.88404638144743,164.97401039584167,165.06397441023591,165.15393842463016,165.2439024390244,165.33386645341864,165.42383046781288,165.51379448220712,165.60375849660136,165.6937225109956,165.78368652538984,165.87365053978408,165.96361455417832,166.05357856857256,166.1435425829668,166.23350659736104,166.3234706117553,166.41343462614955,166.5033986405438,166.59336265493803,166.68332666933227,166.77329068372651,166.86325469812076,166.953218712515,167.04318272690924,167.13314674130348,167.22311075569772,167.31307477009196,167.4030387844862,167.49300279888044,167.58296681327468,167.67293082766892,167.76289484206316,167.85285885645743,167.94282287085167,168.0327868852459,168.12275089964015,168.2127149140344,168.30267892842863,168.39264294282287,168.48260695721711,168.57257097161136,168.6625349860056,168.75249900039984,168.84246301479408,168.93242702918832,169.02239104358256,169.1123550579768,169.20231907237104,169.29228308676528,169.38224710115955,169.4722111155538,169.56217512994803,169.65213914434227,169.7421031587365,169.83206717313075,169.922031187525,170.01199520191923,170.10195921631347,170.19192323070772,170.28188724510196,170.3718512594962,170.46181527389044,170.55177928828468,170.64174330267892,170.73170731707316,170.8216713314674,170.91163534586167,171.0015993602559,171.09156337465015,171.1815273890444,171.27149140343863,171.36145541783287,171.4514194322271,171.54138344662135,171.6313474610156,171.72131147540983,171.81127548980407,171.90123950419832,171.99120351859256,172.0811675329868,172.17113154738104,172.26109556177528,172.35105957616952,172.4410235905638,172.53098760495803,172.62095161935227,172.7109156337465,172.80087964814075,172.890843662535,172.98080767692923,173.07077169132347,173.1607357057177,173.25069972011195,173.3406637345062,173.43062774890043,173.52059176329468,173.61055577768892,173.70051979208316,173.7904838064774,173.88044782087164,173.9704118352659,174.06037584966015,174.1503398640544,174.24030387844863,174.33026789284287,174.4202319072371,174.51019592163135,174.6001599360256,174.69012395041983,174.78008796481407,174.8700519792083,174.96001599360255,175.0499800079968,175.13994402239103,175.22990803678528,175.31987205117952,175.40983606557376,175.49980007996803,175.58976409436227,175.6797281087565,175.76969212315075,175.859656137545,175.94962015193923,176.03958416633347,176.1295481807277,176.21951219512195,176.3094762095162,176.39944022391043,176.48940423830467,176.5793682526989,176.66933226709315,176.7592962814874,176.84926029588163,176.93922431027588,177.02918832467014,177.11915233906439,177.20911635345863,177.29908036785287,177.3890443822471,177.47900839664135,177.5689724110356,177.65893642542983,177.74890043982407,177.8388644542183,177.92882846861255,178.0187924830068,178.10875649740103,178.19872051179527,178.2886845261895,178.37864854058375,178.46861255497802,178.55857656937226,178.6485405837665,178.73850459816074,178.82846861255499,178.91843262694923,179.00839664134347,179.0983606557377,179.18832467013195,179.2782886845262,179.36825269892043,179.45821671331467,179.5481807277089,179.63814474210315,179.7281087564974,179.81807277089163,179.90803678528587,179.99800079968014,180.08796481407438,180.17792882846862,180.26789284286286,180.3578568572571,180.44782087165134,180.53778488604559,180.62774890043983,180.71771291483407,180.8076769292283,180.89764094362255,180.9876049580168,181.07756897241103,181.16753298680527,181.2574970011995,181.34746101559375,181.437425029988,181.52738904438226,181.6173530587765,181.70731707317074,181.79728108756498,181.88724510195922,181.97720911635346,182.0671731307477,182.15713714514195,182.2471011595362,182.33706517393043,182.42702918832467,182.5169932027189,182.60695721711315,182.6969212315074,182.78688524590163,182.87684926029587,182.9668132746901,183.05677728908438,183.14674130347862,183.23670531787286,183.3266693322671,183.41663334666134,183.50659736105558,183.59656137544982,183.68652538984406,183.7764894042383,183.86645341863255,183.9564174330268,184.04638144742103,184.13634546181527,184.2263094762095,184.31627349060375,184.406237504998,184.49620151939223,184.5861655337865,184.67612954818074,184.76609356257498,184.85605757696922,184.94602159136346,185.0359856057577,185.12594962015194,185.21591363454618,185.30587764894042,185.39584166333466,185.4858056777289,185.57576969212315,185.6657337065174,185.75569772091163,185.84566173530587,185.9356257497001,186.02558976409435,186.11555377848862,186.20551779288286,186.2954818072771,186.38544582167134,186.47540983606558,186.56537385045982,186.65533786485406,186.7453018792483,186.83526589364254,186.92522990803678,187.01519392243102,187.10515793682526,187.1951219512195,187.28508596561375,187.375049980008,187.46501399440223,187.55497800879647,187.64494202319074,187.73490603758498,187.82487005197922,187.91483406637346,188.0047980807677,188.09476209516194,188.18472610955618,188.27469012395042,188.36465413834466,188.4546181527389,188.54458216713314,188.63454618152738,188.72451019592162,188.81447421031586,188.9044382247101,188.99440223910435,189.0843662534986,189.17433026789286,189.2642942822871,189.35425829668134,189.44422231107558,189.53418632546982,189.62415033986406,189.7141143542583,189.80407836865254,189.89404238304678,189.98400639744102,190.07397041183526,190.1639344262295,190.25389844062374,190.34386245501798,190.43382646941222,190.52379048380647,190.6137544982007,190.70371851259497,190.79368252698922,190.88364654138346,190.9736105557777,191.06357457017194,191.15353858456618,191.24350259896042,191.33346661335466,191.4234306277489,191.51339464214314,191.60335865653738,191.69332267093162,191.78328668532586,191.8732506997201,191.96321471411434,192.05317872850858,192.14314274290282,192.2331067572971,192.32307077169133,192.41303478608557,192.50299880047982,192.59296281487406,192.6829268292683,192.77289084366254,192.86285485805678,192.95281887245102,193.04278288684526,193.1327469012395,193.22271091563374,193.31267493002798,193.40263894442222,193.49260295881646,193.5825669732107,193.67253098760497,193.7624950019992,193.85245901639345,193.9424230307877,194.03238704518193,194.12235105957618,194.21231507397042,194.30227908836466,194.3922431027589,194.48220711715314,194.57217113154738,194.66213514594162,194.75209916033586,194.8420631747301,194.93202718912434,195.02199120351858,195.11195521791282,195.2019192323071,195.29188324670133,195.38184726109557,195.4718112754898,195.56177528988405,195.6517393042783,195.74170331867253,195.83166733306678,195.92163134746102,196.01159536185526,196.1015593762495,196.19152339064374,196.28148740503798,196.37145141943222,196.46141543382646,196.5513794482207,196.64134346261494,196.7313074770092,196.82127149140345,196.9112355057977,197.00119952019193,197.09116353458617,197.1811275489804,197.27109156337465,197.3610555777689,197.45101959216314,197.54098360655738,197.63094762095162,197.72091163534586,197.8108756497401,197.90083966413434,197.99080367852858,198.08076769292282,198.17073170731706,198.26069572171133,198.35065973610557,198.4406237504998,198.53058776489405,198.6205517792883,198.71051579368253,198.80047980807677,198.890443822471,198.98040783686525,199.0703718512595,199.16033586565374,199.25029988004798,199.34026389444222,199.43022790883646,199.5201919232307,199.61015593762494,199.70011995201918,199.79008396641345,199.8800479808077,199.97001199520193,200.05997600959617,200.1499400239904,200.23990403838465,200.3298680527789,200.41983206717313,200.50979608156737,200.5997600959616,200.68972411035585,200.7796881247501,200.86965213914434,200.95961615353858,201.04958016793282,201.13954418232706,201.2295081967213,201.31947221111557,201.4094362255098,201.49940023990405,201.5893642542983,201.67932826869253,201.76929228308677,201.859256297481,201.94922031187525,202.0391843262695,202.12914834066373,202.21911235505797,202.3090763694522,202.39904038384645,202.4890043982407,202.57896841263494,202.66893242702918,202.75889644142342,202.8488604558177,202.93882447021193,203.02878848460617,203.1187524990004,203.20871651339465,203.2986805277889,203.38864454218313,203.47860855657737,203.5685725709716,203.65853658536585,203.7485005997601,203.83846461415433,203.92842862854857,204.0183926429428,204.10835665733705,204.1983206717313,204.28828468612554,204.3782487005198,204.46821271491405,204.5581767293083,204.64814074370253,204.73810475809677,204.828068772491,204.91803278688525,205.0079968012795,205.09796081567373,205.18792483006797,205.2778888444622,205.36785285885645,205.4578168732507,205.54778088764493,205.63774490203917,205.72770891643341,205.81767293082765,205.90763694522192,205.99760095961616,206.0875649740104,206.17752898840465,206.2674930027989,206.35745701719313,206.44742103158737,206.5373850459816,206.62734906037585,206.7173130747701,206.80727708916433,206.89724110355857,206.9872051179528,207.07716913234705,207.1671331467413,207.25709716113553,207.34706117552977,207.43702518992404,207.52698920431828,207.61695321871252,207.70691723310676,207.796881247501,207.88684526189525,207.9768092762895,208.06677329068373,208.15673730507797,208.2467013194722,208.33666533386645,208.4266293482607,208.51659336265493,208.60655737704917,208.6965213914434,208.78648540583765,208.87644942023192,208.96641343462616,209.0563774490204,209.14634146341464,209.23630547780888,209.32626949220312,209.41623350659737,209.5061975209916,209.59616153538585,209.6861255497801,209.77608956417433,209.86605357856857,209.9560175929628,210.04598160735705,210.1359456217513,210.22590963614553,210.31587365053977,210.40583766493404,210.49580167932828,210.58576569372252,210.67572970811676,210.765693722511,210.85565773690524,210.94562175129948,211.03558576569372,211.12554978008797,211.2155137944822,211.30547780887645,211.3954418232707,211.48540583766493,211.57536985205917,211.6653338664534,211.75529788084765,211.8452618952419,211.93522590963616,212.0251899240304,212.11515393842464,212.20511795281888,212.29508196721312,212.38504598160736,212.4750099960016,212.56497401039584,212.65493802479008,212.74490203918432,212.83486605357857,212.9248300679728,213.01479408236705,213.1047580967613,213.19472211115553,213.28468612554977,213.374650139944,213.46461415433828,213.55457816873252,213.64454218312676,213.734506197521,213.82447021191524,213.91443422630948,214.00439824070372,214.09436225509796,214.1843262694922,214.27429028388644,214.36425429828068,214.45421831267493,214.54418232706917,214.6341463414634,214.72411035585765,214.8140743702519,214.90403838464613,214.9940023990404,215.08396641343464,215.17393042782888,215.26389444222312,215.35385845661736,215.4438224710116,215.53378648540584,215.62375049980008,215.71371451419432,215.80367852858856,215.8936425429828,215.98360655737704,216.07357057177128,216.16353458616553,216.25349860055977,216.343462614954,216.43342662934825,216.52339064374252,216.61335465813676,216.703318672531,216.79328268692524,216.88324670131948,216.97321071571372,217.06317473010796,217.1531387445022,217.24310275889644,217.33306677329068,217.42303078768492,217.51299480207916,217.6029588164734,217.69292283086764,217.78288684526188,217.87285085965613,217.96281487405037,218.05277888844464,218.14274290283888,218.23270691723312,218.32267093162736,218.4126349460216,218.50259896041584,218.59256297481008,218.68252698920432,218.77249100359856,218.8624550179928,218.95241903238704,219.04238304678128,219.13234706117552,219.22231107556976,219.312275089964,219.40223910435824,219.49220311875249,219.58216713314675,219.672131147541,219.76209516193524,219.85205917632948,219.94202319072372,220.03198720511796,220.1219512195122,220.21191523390644,220.30187924830068,220.39184326269492,220.48180727708916,220.5717712914834,220.66173530587764,220.75169932027188,220.84166333466612,220.93162734906036,221.0215913634546,221.11155537784887,221.2015193922431,221.29148340663735,221.3814474210316,221.47141143542584,221.56137544982008,221.65133946421432,221.74130347860856,221.8312674930028,221.92123150739704,222.01119552179128,222.10115953618552,222.19112355057976,222.281087564974,222.37105157936824,222.46101559376248,222.55097960815675,222.640943622551,222.73090763694523,222.82087165133947,222.9108356657337,223.00079968012795,223.0907636945222,223.18072770891644,223.27069172331068,223.36065573770492,223.45061975209916,223.5405837664934,223.63054778088764,223.72051179528188,223.81047580967612,223.90043982407036,223.9904038384646,224.08036785285887,224.1703318672531,224.26029588164735,224.3502598960416,224.44022391043583,224.53018792483007,224.62015193922431,224.71011595361855,224.8000799680128,224.89004398240704,224.98000799680128,225.06997201119552,225.15993602558976,225.249900039984,225.33986405437824,225.42982806877248,225.51979208316672,225.609756097561,225.69972011195523,225.78968412634947,225.8796481407437,225.96961215513795,226.0595761695322,226.14954018392643,226.23950419832067,226.32946821271491,226.41943222710916,226.5093962415034,226.59936025589764,226.68932427029188,226.77928828468612,226.86925229908036,226.9592163134746,227.04918032786884,227.1391443422631,227.22910835665735,227.3190723710516,227.40903638544583,227.49900039984007,227.5889644142343,227.67892842862855,227.7688924430228,227.85885645741703,227.94882047181127,228.03878448620551,228.12874850059976,228.218712514994,228.30867652938824,228.39864054378248,228.48860455817672,228.57856857257096,228.66853258696523,228.75849660135947,228.8484606157537,228.93842463014795,229.0283886445422,229.11835265893643,229.20831667333067,229.2982806877249,229.38824470211915,229.4782087165134,229.56817273090763,229.65813674530187,229.74810075969611,229.83806477409036,229.9280287884846,230.01799280287884,230.10795681727308,230.19792083166735,230.2878848460616,230.37784886045583,230.46781287485007,230.5577768892443,230.64774090363855,230.7377049180328,230.82766893242703,230.91763294682127,231.0075969612155,231.09756097560975,231.187524990004,231.27748900439823,231.36745301879247,231.45741703318672,231.54738104758096,231.6373450619752,231.72730907636947,231.8172730907637,231.90723710515795,231.9972011195522,232.08716513394643,232.17712914834067,232.2670931627349,232.35705717712915,232.4470211915234,232.53698520591763,232.62694922031187,232.7169132347061,232.80687724910035,232.8968412634946,232.98680527788883,233.07676929228307,233.16673330667732,233.25669732107158,233.34666133546583,233.43662534986007,233.5265893642543,233.61655337864855,233.7065173930428,233.79648140743703,233.88644542183127,233.9764094362255,234.06637345061975,234.156337465014,234.24630147940823,234.33626549380247,234.4262295081967,234.51619352259095,234.6061575369852,234.69612155137943,234.7860855657737,234.87604958016794,234.96601359456218,235.05597760895643,235.14594162335067,235.2359056377449,235.32586965213915,235.4158336665334,235.50579768092763,235.59576169532187,235.6857257097161,235.77568972411035,235.8656537385046,235.95561775289883,236.04558176729307,236.1355457816873,236.22550979608155,236.31547381047582,236.40543782487006,236.4954018392643,236.58536585365854,236.67532986805278,236.76529388244703,236.85525789684127,236.9452219112355,237.03518592562975,237.125149940024,237.21511395441823,237.30507796881247,237.3950419832067,237.48500599760095,237.5749700119952,237.66493402638943,237.7548980407837,237.84486205517794,237.93482606957218,238.02479008396642,238.11475409836066,238.2047181127549,238.29468212714914,238.38464614154339,238.47461015593763,238.56457417033187,238.6545381847261,238.74450219912035,238.8344662135146,238.92443022790883,239.01439424230307,239.1043582566973,239.19432227109155,239.28428628548582,239.37425029988006,239.4642143142743,239.55417832866854,239.64414234306278,239.73410635745702,239.82407037185126,239.9140343862455,240.00399840063974,240.09396241503399,240.18392642942823,240.27389044382247,240.3638544582167,240.45381847261095,240.5437824870052,240.63374650139943,240.72371051579367,240.81367453018794,240.90363854458218,240.99360255897642,241.08356657337066,241.1735305877649,241.26349460215914,241.35345861655338,241.44342263094762,241.53338664534186,241.6233506597361,241.71331467413034,241.80327868852459,241.89324270291883,241.98320671731307,242.0731707317073,242.16313474610155,242.2530987604958,242.34306277489006,242.4330267892843,242.52299080367854,242.61295481807278,242.70291883246702,242.79288284686126,242.8828468612555,242.97281087564974,243.06277489004398,243.15273890443822,243.24270291883246,243.3326669332267,243.42263094762095,243.51259496201519,243.60255897640943,243.69252299080367,243.7824870051979,243.87245101959218,243.96241503398642,244.05237904838066,244.1423430627749,244.23230707716914,244.32227109156338,244.41223510595762,244.50219912035186,244.5921631347461,244.68212714914034,244.77209116353458,244.86205517792882,244.95201919232306,245.0419832067173,245.13194722111155,245.2219112355058,245.31187524990003,245.4018392642943,245.49180327868854,245.58176729308278,245.67173130747702,245.76169532187126,245.8516593362655,245.94162335065974,246.03158736505398,246.12155137944822,246.21151539384246,246.3014794082367,246.39144342263094,246.48140743702518,246.57137145141942,246.66133546581366,246.7512994802079,246.84126349460215,246.93122750899641,247.02119152339066,247.1111555377849,247.20111955217914,247.29108356657338,247.38104758096762,247.47101159536186,247.5609756097561,247.65093962415034,247.74090363854458,247.83086765293882,247.92083166733306,248.0107956817273,248.10075969612154,248.19072371051578,248.28068772491002,248.37065173930426,248.46061575369853,248.55057976809277,248.64054378248701,248.73050779688126,248.8204718112755,248.91043582566974,249.00039984006398,249.09036385445822,249.18032786885246,249.2702918832467,249.36025589764094,249.45021991203518,249.54018392642942,249.63014794082366,249.7201119552179,249.81007596961214,249.90003998400638,249.99000399840065,250.0799680127949,250.16993202718913,250.25989604158337,250.34986005597762,250.43982407037186,250.5297880847661,250.61975209916034,250.70971611355458,250.79968012794882,250.88964414234306,250.9796081567373,251.06957217113154,251.15953618552578,251.24950019992002,251.33946421431426,251.4294282287085,251.51939224310277,251.609356257497,251.69932027189125,251.7892842862855,251.87924830067973,251.96921231507397,252.05917632946822,252.14914034386246,252.2391043582567,252.32906837265094,252.41903238704518,252.50899640143942,252.59896041583366,252.6889244302279,252.77888844462214,252.86885245901638,252.95881647341065,253.0487804878049,253.13874450219913,253.22870851659337,253.3186725309876,253.40863654538185,253.4986005597761,253.58856457417033,253.67852858856457,253.76849260295882,253.85845661735306,253.9484206317473,254.03838464614154,254.12834866053578,254.21831267493002,254.30827668932426,254.3982407037185,254.48820471811277,254.578168732507,254.66813274690125,254.7580967612955,254.84806077568973,254.93802479008397,255.0279888044782,255.11795281887245,255.2079168332667,255.29788084766093,255.38784486205518,255.47780887644942,255.56777289084366,255.6577369052379,255.74770091963214,255.83766493402638,255.92762894842062,256.0175929628149,256.10755697720913,256.19752099160337,256.2874850059976,256.37744902039185,256.4674130347861,256.55737704918033,256.6473410635746,256.7373050779688,256.82726909236305,256.9172331067573,257.00719712115153,257.0971611355458,257.18712514994,257.27708916433426,257.3670531787285,257.45701719312274,257.546981207517,257.6369452219112,257.72690923630546,257.8168732506997,257.90683726509394,257.9968012794882,258.0867652938824,258.17672930827666,258.2666933226709,258.3566573370652,258.44662135145944,258.5365853658537,258.6265493802479,258.71651339464216,258.8064774090364,258.89644142343064,258.9864054378249,259.0763694522191,259.16633346661337,259.2562974810076,259.34626149540185,259.4362255097961,259.52618952419033,259.61615353858457,259.7061175529788,259.79608156737305,259.8860455817673,259.97600959616153,260.0659736105558,260.15593762495,260.24590163934425,260.3358656537385,260.42582966813274,260.515793682527,260.6057576969212,260.69572171131546,260.7856857257097,260.87564974010394,260.9656137544982,261.0555777688924,261.14554178328666,261.2355057976809,261.3254698120752,261.41543382646944,261.5053978408637,261.5953618552579,261.68532586965216,261.7752898840464,261.86525389844064,261.9552179128349,262.0451819272291,262.13514594162336,262.2251099560176,262.31507397041185,262.4050379848061,262.4950019992003,262.58496601359457,262.6749300279888,262.76489404238305,262.8548580567773,262.94482207117153,263.03478608556577,263.12475009996,263.21471411435425,263.3046781287485,263.39464214314273,263.484606157537,263.5745701719312,263.66453418632545,263.7544982007197,263.84446221511394,263.9344262295082,264.0243902439024,264.11435425829666,264.2043182726909,264.29428228708514,264.38424630147944,264.4742103158737,264.5641743302679,264.65413834466216,264.7441023590564,264.83406637345064,264.9240303878449,265.0139944022391,265.10395841663336,265.1939224310276,265.28388644542184,265.3738504598161,265.4638144742103,265.55377848860456,265.6437425029988,265.73370651739305,265.8236705317873,265.9136345461815,266.00359856057577,266.09356257497,266.18352658936425,266.2734906037585,266.36345461815273,266.45341863254697,266.5433826469412,266.63334666133545,266.7233106757297,266.81327469012393,266.9032387045182,266.9932027189124,267.08316673330665,267.1731307477009,267.26309476209514,267.3530587764894,267.4430227908837,267.5329868052779,267.62295081967216,267.7129148340664,267.80287884846064,267.8928428628549,267.9828068772491,268.07277089164336,268.1627349060376,268.25269892043184,268.3426629348261,268.4326269492203,268.52259096361456,268.6125549780088,268.70251899240304,268.7924830067973,268.8824470211915,268.97241103558576,269.06237504998,269.15233906437425,269.2423030787685,269.3322670931627,269.42223110755697,269.5121951219512,269.60215913634545,269.6921231507397,269.78208716513393,269.87205117952817,269.9620151939224,270.05197920831665,270.1419432227109,270.23190723710513,270.3218712514994,270.4118352658936,270.5017992802879,270.59176329468215,270.6817273090764,270.77169132347063,270.8616553378649,270.9516193522591,271.04158336665336,271.1315473810476,271.22151139544184,271.3114754098361,271.4014394242303,271.49140343862456,271.5813674530188,271.67133146741304,271.7612954818073,271.8512594962015,271.94122351059576,272.03118752499,272.12115153938424,272.2111155537785,272.3010795681727,272.39104358256697,272.4810075969612,272.57097161135545,272.6609356257497,272.7508996401439,272.84086365453817,272.9308276689324,273.02079168332665,273.1107556977209,273.20071971211513,273.29068372650937,273.3806477409036,273.47061175529785,273.56057576969215,273.6505397840864,273.74050379848063,273.8304678128749,273.9204318272691,274.01039584166335,274.1003598560576,274.19032387045183,274.2802878848461,274.3702518992403,274.46021591363456,274.5501799280288,274.64014394242304,274.7301079568173,274.8200719712115,274.91003598560576,275.0,275.08996401439424,275.1799280287885,275.2698920431827,275.35985605757696,275.4498200719712,275.53978408636544,275.6297481007597,275.7197121151539,275.80967612954817,275.8996401439424,275.98960415833665,276.0795681727309,276.1695321871251,276.25949620151937,276.3494602159136,276.43942423030785,276.52938824470215,276.6193522590964,276.70931627349063,276.79928028788487,276.8892443022791,276.97920831667335,277.0691723310676,277.15913634546183,277.2491003598561,277.3390643742503,277.42902838864455,277.5189924030388,277.60895641743303,277.6989204318273,277.7888844462215,277.87884846061576,277.96881247501,278.05877648940424,278.1487405037985,278.2387045181927,278.32866853258696,278.4186325469812,278.50859656137544,278.5985605757697,278.6885245901639,278.77848860455816,278.8684526189524,278.95841663334664,279.0483806477409,279.1383446621351,279.22830867652937,279.3182726909236,279.40823670531785,279.4982007197121,279.5881647341064,279.6781287485006,279.76809276289487,279.8580567772891,279.94802079168335,280.0379848060776,280.12794882047183,280.21791283486607,280.3078768492603,280.39784086365455,280.4878048780488,280.57776889244303,280.6677329068373,280.7576969212315,280.84766093562575,280.93762495002,281.02758896441424,281.1175529788085,281.2075169932027,281.29748100759696,281.3874450219912,281.47740903638544,281.5673730507797,281.6573370651739,281.74730107956816,281.8372650939624,281.92722910835664,282.0171931227509,282.1071571371451,282.19712115153936,282.2870851659336,282.37704918032784,282.4670131947221,282.5569772091163,282.6469412235106,282.73690523790486,282.8268692522991,282.91683326669335,283.0067972810876,283.0967612954818,283.18672530987607,283.2766893242703,283.36665333866455,283.4566173530588,283.54658136745303,283.63654538184727,283.7265093962415,283.81647341063575,283.90643742503,283.99640143942423,284.0863654538185,284.1763294682127,284.26629348260695,284.3562574970012,284.44622151139544,284.5361855257897,284.6261495401839,284.71611355457816,284.8060775689724,284.89604158336664,284.9860055977609,285.0759696121551,285.16593362654936,285.2558976409436,285.34586165533784,285.4358256697321,285.5257896841263,285.61575369852056,285.70571771291486,285.7956817273091,285.88564574170334,285.9756097560976,286.0655737704918,286.15553778488606,286.2455017992803,286.33546581367455,286.4254298280688,286.515393842463,286.60535785685727,286.6953218712515,286.78528588564575,286.87524990004,286.96521391443423,287.05517792882847,287.1451419432227,287.23510595761695,287.3250699720112,287.41503398640543,287.5049980007997,287.5949620151939,287.68492602958815,287.7748900439824,287.86485405837664,287.9548180727709,288.0447820871651,288.13474610155936,288.2247101159536,288.31467413034784,288.4046381447421,288.4946021591363,288.58456617353056,288.6745301879248,288.7644942023191,288.85445821671334,288.9444222311076,289.0343862455018,289.12435025989606,289.2143142742903,289.30427828868454,289.3942423030788,289.484206317473,289.57417033186726,289.6641343462615,289.75409836065575,289.84406237505,289.9340263894442,290.02399040383847,290.1139544182327,290.20391843262695,290.2938824470212,290.38384646141543,290.47381047580967,290.5637744902039,290.65373850459815,290.7437025189924,290.83366653338663,290.9236305477809,291.0135945621751,291.10355857656936,291.1935225909636,291.28348660535784,291.3734506197521,291.4634146341463,291.55337864854056,291.6433426629348,291.7333066773291,291.82327069172334,291.9132347061176,292.0031987205118,292.09316273490606,292.1831267493003,292.27309076369454,292.3630547780888,292.453018792483,292.54298280687726,292.6329468212715,292.72291083566574,292.81287485006,292.9028388644542,292.99280287884847,293.0827668932427,293.17273090763695,293.2626949220312,293.3526589364254,293.44262295081967,293.5325869652139,293.62255097960815,293.7125149940024,293.80247900839663,293.89244302279087,293.9824070371851,294.07237105157935,294.1623350659736,294.25229908036783,294.3422630947621,294.4322271091563,294.52219112355056,294.6121551379448,294.70211915233904,294.79208316673333,294.8820471811276,294.9720111955218,295.06197520991606,295.1519392243103,295.24190323870454,295.3318672530988,295.421831267493,295.51179528188726,295.6017592962815,295.69172331067574,295.78168732507,295.8716513394642,295.96161535385846,296.0515793682527,296.14154338264694,296.2315073970412,296.3214714114354,296.41143542582967,296.5013994402239,296.59136345461815,296.6813274690124,296.7712914834066,296.86125549780087,296.9512195121951,297.04118352658935,297.1311475409836,297.22111155537783,297.3110755697721,297.4010395841663,297.49100359856055,297.5809676129548,297.67093162734903,297.7608956417433,297.8508596561376,297.9408236705318,298.03078768492605,298.1207516993203,298.21071571371454,298.3006797281088,298.390643742503,298.48060775689726,298.5705717712915,298.66053578568574,298.75049980008,298.8404638144742,298.93042782886846,299.0203918432627,299.11035585765694,299.2003198720512,299.2902838864454,299.38024790083966,299.4702119152339,299.56017592962814,299.6501399440224,299.7401039584166,299.83006797281087,299.9200319872051,300.00999600159935,300.0999600159936,300.18992403038783,300.27988804478207,300.3698520591763,300.45981607357055,300.5497800879648,300.63974410235903,300.7297081167533,300.8196721311475,300.9096361455418,300.99960015993605,301.0895641743303,301.17952818872453,301.2694922031188,301.359456217513,301.44942023190725,301.5393842463015,301.62934826069574,301.71931227509,301.8092762894842,301.89924030387846,301.9892043182727,302.07916833266694,302.1691323470612,302.2590963614554,302.34906037584966,302.4390243902439,302.52898840463814,302.6189524190324,302.7089164334266,302.79888044782086,302.8888444622151,302.97880847660934,303.0687724910036,303.1587365053978,303.24870051979207,303.3386645341863,303.42862854858055,303.5185925629748,303.60855657736903,303.69852059176327,303.7884846061575,303.87844862055175,303.96841263494605,304.0583766493403,304.14834066373453,304.23830467812877,304.328268692523,304.41823270691725,304.5081967213115,304.59816073570573,304.6881247501,304.7780887644942,304.86805277888845,304.9580167932827,305.04798080767694,305.1379448220712,305.2279088364654,305.31787285085966,305.4078368652539,305.49780087964814,305.5877648940424,305.6777289084366,305.76769292283086,305.8576569372251,305.94762095161934,306.0375849660136,306.1275489804078,306.21751299480206,306.3074770091963,306.39744102359055,306.4874050379848,306.577369052379,306.66733306677327,306.7572970811675,306.84726109556175,306.93722510995605,307.0271891243503,307.1171531387445,307.20711715313877,307.297081167533,307.38704518192725,307.4770091963215,307.56697321071573,307.65693722510997,307.7469012395042,307.83686525389845,307.9268292682927,308.01679328268693,308.1067572970812,308.1967213114754,308.28668532586966,308.3766493402639,308.46661335465814,308.5565773690524,308.6465413834466,308.73650539784086,308.8264694122351,308.91643342662934,309.0063974410236,309.0963614554178,309.18632546981206,309.2762894842063,309.36625349860054,309.4562175129948,309.546181527389,309.63614554178326,309.7261095561775,309.81607357057175,309.906037584966,309.9960015993603,310.0859656137545,310.17592962814877,310.265893642543,310.35585765693725,310.4458216713315,310.5357856857257,310.62574970011997,310.7157137145142,310.80567772890845,310.8956417433027,310.98560575769693,311.07556977209117,311.1655337864854,311.25549780087965,311.3454618152739,311.43542582966813,311.5253898440624,311.6153538584566,311.70531787285086,311.7952818872451,311.88524590163934,311.9752099160336,312.0651739304278,312.15513794482206,312.2451019592163,312.33506597361054,312.4250299880048,312.514994002399,312.60495801679326,312.6949220311875,312.78488604558174,312.874850059976,312.9648140743702,313.0547780887645,313.14474210315876,313.234706117553,313.32467013194724,313.4146341463415,313.5045981607357,313.59456217512997,313.6845261895242,313.77449020391845,313.8644542183127,313.9544182327069,314.04438224710117,314.1343462614954,314.22431027588965,314.3142742902839,314.40423830467813,314.4942023190724,314.5841663334666,314.67413034786085,314.7640943622551,314.85405837664933,314.9440223910436,315.0339864054378,315.12395041983206,315.2139144342263,315.30387844862054,315.3938424630148,315.483806477409,315.57377049180326,315.6637345061975,315.75369852059174,315.843662534986,315.9336265493802,316.02359056377446,316.11355457816876,316.203518592563,316.29348260695724,316.3834466213515,316.4734106357457,316.56337465013996,316.6533386645342,316.74330267892844,316.8332666933227,316.9232307077169,317.01319472211117,317.1031587365054,317.19312275089965,317.2830867652939,317.3730507796881,317.46301479408237,317.5529788084766,317.64294282287085,317.7329068372651,317.82287085165933,317.9128348660536,318.0027988804478,318.09276289484205,318.1827269092363,318.27269092363053,318.3626549380248,318.452618952419,318.54258296681326,318.6325469812075,318.72251099560174,318.812475009996,318.9024390243902,318.99240303878446,319.0823670531787,319.172331067573,319.26229508196724,319.3522590963615,319.4422231107557,319.53218712514996,319.6221511395442,319.71211515393844,319.8020791683327,319.8920431827269,319.98200719712116,320.0719712115154,320.16193522590964,320.2518992403039,320.3418632546981,320.43182726909237,320.5217912834866,320.61175529788085,320.7017193122751,320.79168332666933,320.88164734106357,320.9716113554578,321.06157536985205,321.1515393842463,321.24150339864053,321.3314674130348,321.421431427429,321.51139544182325,321.6013594562175,321.69132347061174,321.781287485006,321.8712514994002,321.96121551379446,322.0511795281887,322.141143542583,322.23110755697724,322.3210715713715,322.4110355857657,322.50099960015996,322.5909636145542,322.68092762894844,322.7708916433427,322.8608556577369,322.95081967213116,323.0407836865254,323.13074770091964,323.2207117153139,323.3106757297081,323.40063974410236,323.4906037584966,323.58056777289084,323.6705317872851,323.7604958016793,323.85045981607357,323.9404238304678,324.03038784486205,324.1203518592563,324.21031587365053,324.30027988804477,324.390243902439,324.48020791683325,324.5701719312275,324.66013594562173,324.750099960016,324.8400639744102,324.93002798880445,325.0199920031987,325.10995601759294,325.19992003198723,325.2898840463815,325.3798480607757,325.46981207516995,325.5597760895642,325.64974010395844,325.7397041183527,325.8296681327469,325.91963214714116,326.0095961615354,326.09956017592964,326.1895241903239,326.2794882047181,326.36945221911236,326.4594162335066,326.54938024790084,326.6393442622951,326.7293082766893,326.81927229108356,326.9092363054778,326.99920031987205,327.0891643342663,327.1791283486605,327.26909236305477,327.359056377449,327.44902039184325,327.5389844062375,327.62894842063173,327.71891243502597,327.8088764494202,327.89884046381445,327.9888044782087,328.07876849260293,328.1687325069972,328.25869652139147,328.3486605357857,328.43862455017995,328.5285885645742,328.61855257896843,328.7085165933627,328.7984806077569,328.88844462215116,328.9784086365454,329.06837265093964,329.1583366653339,329.2483006797281,329.33826469412236,329.4282287085166,329.51819272291084,329.6081567373051,329.6981207516993,329.78808476609356,329.8780487804878,329.96801279488204,330.0579768092763,330.1479408236705,330.23790483806476,330.327868852459,330.41783286685325,330.5077968812475,330.5977608956417,330.68772491003597,330.7776889244302,330.86765293882445,330.9576169532187,331.04758096761293,331.13754498200717,331.2275089964014,331.3174730107957,331.40743702518995,331.4974010395842,331.58736505397843,331.67732906837267,331.7672930827669,331.85725709716115,331.9472211115554,332.03718512594963,332.1271491403439,332.2171131547381,332.30707716913236,332.3970411835266,332.48700519792084,332.5769692123151,332.6669332267093,332.75689724110356,332.8468612554978,332.93682526989204,333.0267892842863,333.1167532986805,333.20671731307476,333.296681327469,333.38664534186324,333.4766093562575,333.5665733706517,333.65653738504597,333.7465013994402,333.83646541383445,333.9264294282287,334.0163934426229,334.10635745701717,334.1963214714114,334.28628548580565,334.37624950019995,334.4662135145942,334.5561775289884,334.64614154338267,334.7361055577769,334.82606957217115,334.9160335865654,335.00599760095963,335.0959616153539,335.1859256297481,335.27588964414235,335.3658536585366,335.45581767293083,335.5457816873251,335.6357457017193,335.72570971611356,335.8156737305078,335.90563774490204,335.9956017592963,336.0855657736905,336.17552978808476,336.265493802479,336.35545781687324,336.4454218312675,336.5353858456617,336.62534986005596,336.7153138744502,336.80527788884444,336.8952419032387,336.9852059176329,337.07516993202717,337.1651339464214,337.25509796081565,337.34506197520994,337.4350259896042,337.5249900039984,337.61495401839267,337.7049180327869,337.79488204718115,337.8848460615754,337.97481007596963,338.06477409036387,338.1547381047581,338.24470211915235,338.3346661335466,338.42463014794083,338.5145941623351,338.6045581767293,338.69452219112355,338.7844862055178,338.87445021991203,338.9644142343063,339.0543782487005,339.14434226309476,339.234306277489,339.32427029188324,339.4142343062775,339.5041983206717,339.59416233506596,339.6841263494602,339.77409036385444,339.8640543782487,339.9540183926429,340.04398240703716,340.1339464214314,340.22391043582564,340.3138744502199,340.4038384646142,340.4938024790084,340.58376649340266,340.6737305077969,340.76369452219114,340.8536585365854,340.9436225509796,341.03358656537387,341.1235505797681,341.21351459416235,341.3034786085566,341.39344262295083,341.48340663734507,341.5733706517393,341.66333466613355,341.7532986805278,341.84326269492203,341.9332267093163,342.0231907237105,342.11315473810475,342.203118752499,342.29308276689324,342.3830467812875,342.4730107956817,342.56297481007596,342.6529388244702,342.74290283886444,342.8328668532587,342.9228308676529,343.01279488204716,343.1027588964414,343.19272291083564,343.2826869252299,343.3726509396241,343.4626149540184,343.55257896841266,343.6425429828069,343.73250699720114,343.8224710115954,343.9124350259896,344.00239904038386,344.0923630547781,344.18232706917235,344.2722910835666,344.3622550979608,344.45221911235507,344.5421831267493,344.63214714114355,344.7221111555378,344.81207516993203,344.90203918432627,344.9920031987205,345.08196721311475,345.171931227509,345.26189524190323,345.3518592562975,345.4418232706917,345.53178728508595,345.6217512994802,345.71171531387444,345.8016793282687,345.8916433426629,345.98160735705716,346.0715713714514,346.16153538584564,346.2514994002399,346.3414634146341,346.43142742902836,346.52139144342266,346.6113554578169,346.70131947221114,346.7912834866054,346.8812475009996,346.97121151539386,347.0611755297881,347.15113954418234,347.2411035585766,347.3310675729708,347.42103158736506,347.5109956017593,347.60095961615355,347.6909236305478,347.780887644942,347.87085165933627,347.9608156737305,348.05077968812475,348.140743702519,348.23070771691323,348.32067173130747,348.4106357457017,348.50059976009595,348.5905637744902,348.68052778888443,348.7704918032787,348.8604558176729,348.95041983206715,349.0403838464614,349.13034786085564,349.2203118752499,349.3102758896441,349.40023990403836,349.4902039184326,349.5801679328269,349.67013194722114,349.7600959616154,349.8500599760096,349.94002399040386,350.0299880047981,350.11995201919234,350.2099160335866,350.2998800479808,350.38984406237506,350.4798080767693,350.56977209116354,350.6597361055578,350.749700119952,350.83966413434626,350.9296281487405,351.01959216313475,351.109556177529,351.1995201919232,351.28948420631747,351.3794482207117,351.46941223510595,351.5593762495002,351.64934026389443,351.73930427828867,351.8292682926829,351.91923230707715,352.0091963214714,352.09916033586563,352.1891243502599,352.2790883646541,352.36905237904836,352.4590163934426,352.5489804078369,352.63894442223113,352.7289084366254,352.8188724510196,352.90883646541386,352.9988004798081,353.08876449420234,353.1787285085966,353.2686925229908,353.35865653738506,353.4486205517793,353.53858456617354,353.6285485805678,353.718512594962,353.80847660935626,353.8984406237505,353.98840463814474,354.078368652539,354.1683326669332,354.25829668132747,354.3482606957217,354.43822471011595,354.5281887245102,354.6181527389044,354.70811675329867,354.7980807676929,354.88804478208715,354.9780087964814,355.06797281087563,355.15793682526987,355.2479008396641,355.33786485405835,355.4278288684526,355.51779288284683,355.60775689724113,355.6977209116354,355.7876849260296,355.87764894042385,355.9676129548181,356.05757696921233,356.1475409836066,356.2375049980008,356.32746901239506,356.4174330267893,356.50739704118354,356.5973610555778,356.687325069972,356.77728908436626,356.8672530987605,356.95721711315474,357.047181127549,357.1371451419432,357.22710915633746,357.3170731707317,357.40703718512594,357.4970011995202,357.5869652139144,357.67692922830867,357.7668932427029,357.85685725709715,357.9468212714914,358.0367852858856,358.12674930027987,358.2167133146741,358.30667732906835,358.3966413434626,358.48660535785683,358.5765693722511,358.66653338664537,358.7564974010396,358.84646141543385,358.9364254298281,359.02638944422233,359.1163534586166,359.2063174730108,359.29628148740505,359.3862455017993,359.47620951619353,359.5661735305878,359.656137544982,359.74610155937626,359.8360655737705,359.92602958816474,360.015993602559,360.1059576169532,360.19592163134746,360.2858856457417,360.37584966013594,360.4658136745302,360.5557776889244,360.64574170331866,360.7357057177129,360.82566973210714,360.9156337465014,361.0055977608956,361.09556177528987,361.1855257896841,361.27548980407835,361.3654538184726,361.45541783286683,361.54538184726107,361.6353458616553,361.7253098760496,361.81527389044385,361.9052379048381,361.99520191923233,362.08516593362657,362.1751299480208,362.26509396241505,362.3550579768093,362.44502199120353,362.5349860055978,362.624950019992,362.71491403438625,362.8048780487805,362.89484206317474,362.984806077569,363.0747700919632,363.16473410635746,363.2546981207517,363.34466213514594,363.4346261495402,363.5245901639344,363.61455417832866,363.7045181927229,363.79448220711714,363.8844462215114,363.9744102359056,364.06437425029986,364.1543382646941,364.24430227908834,364.3342662934826,364.4242303078768,364.51419432227107,364.6041583366653,364.69412235105955,364.78408636545385,364.8740503798481,364.9640143942423,365.05397840863657,365.1439424230308,365.23390643742505,365.3238704518193,365.41383446621353,365.50379848060777,365.593762495002,365.68372650939625,365.7736905237905,365.86365453818473,365.953618552579,366.0435825669732,366.13354658136745,366.2235105957617,366.31347461015594,366.4034386245502,366.4934026389444,366.58336665333866,366.6733306677329,366.76329468212714,366.8532586965214,366.9432227109156,367.03318672530986,367.1231507397041,367.21311475409834,367.3030787684926,367.3930427828868,367.48300679728106,367.5729708116753,367.66293482606955,367.75289884046384,367.8428628548581,367.9328268692523,368.02279088364656,368.1127548980408,368.20271891243505,368.2926829268293,368.3826469412235,368.47261095561777,368.562574970012,368.65253898440625,368.7425029988005,368.83246701319473,368.92243102758897,369.0123950419832,369.10235905637745,369.1923230707717,369.28228708516593,369.3722510995602,369.4622151139544,369.55217912834866,369.6421431427429,369.73210715713714,369.8220711715314,369.9120351859256,370.00199920031986,370.0919632147141,370.18192722910834,370.2718912435026,370.3618552578968,370.45181927229106,370.5417832866853,370.63174730107954,370.7217113154738,370.8116753298681,370.9016393442623,370.99160335865656,371.0815673730508,371.17153138744504,371.2614954018393,371.3514594162335,371.44142343062776,371.531387445022,371.62135145941625,371.7113154738105,371.8012794882047,371.89124350259897,371.9812075169932,372.07117153138745,372.1611355457817,372.25109956017593,372.34106357457017,372.4310275889644,372.52099160335865,372.6109556177529,372.70091963214713,372.7908836465414,372.8808476609356,372.97081167532986,373.0607756897241,373.15073970411834,373.2407037185126,373.3306677329068,373.42063174730106,373.5105957616953,373.60055977608954,373.6905237904838,373.780487804878,373.8704518192723,373.96041583366656,374.0503798480608,374.14034386245504,374.2303078768493,374.3202718912435,374.41023590563776,374.500199920032,374.59016393442624,374.6801279488205,374.7700919632147,374.86005597760897,374.9500199920032,375.03998400639745,375.1299480207917,375.2199120351859,375.30987604958017,375.3998400639744,375.48980407836865,375.5797680927629,375.66973210715713,375.75969612155137,375.8496601359456,375.93962415033985,376.0295881647341,376.11955217912833,376.2095161935226,376.2994802079168,376.38944422231106,376.4794082367053,376.56937225109954,376.6593362654938,376.749300279888,376.83926429428226,376.92922830867656,377.0191923230708,377.10915633746504,377.1991203518593,377.2890843662535,377.37904838064776,377.469012395042,377.55897640943624,377.6489404238305,377.7389044382247,377.82886845261896,377.9188324670132,378.00879648140744,378.0987604958017,378.1887245101959,378.27868852459017,378.3686525389844,378.45861655337865,378.5485805677729,378.6385445821671,378.72850859656137,378.8184726109556,378.90843662534985,378.9984006397441,379.08836465413833,379.1783286685326,379.2682926829268,379.35825669732105,379.4482207117153,379.53818472610953,379.6281487405038,379.718112754898,379.80807676929226,379.8980407836865,379.9880047980808,380.07796881247504,380.1679328268693,380.2578968412635,380.34786085565776,380.437824870052,380.52778888444624,380.6177528988405,380.7077169132347,380.79768092762896,380.8876449420232,380.97760895641744,381.0675729708117,381.1575369852059,381.24750099960016,381.3374650139944,381.42742902838864,381.5173930427829,381.6073570571771,381.69732107157137,381.7872850859656,381.87724910035985,381.9672131147541,382.05717712914833,382.14714114354257,382.2371051579368,382.32706917233105,382.4170331867253,382.50699720111953,382.5969612155138,382.686925229908,382.77688924430225,382.8668532586965,382.9568172730908,383.04678128748503,383.1367453018793,383.2267093162735,383.31667333066775,383.406637345062,383.49660135945624,383.5865653738505,383.6765293882447,383.76649340263896,383.8564574170332,383.94642143142744,384.0363854458217,384.1263494602159,384.21631347461016,384.3062774890044,384.39624150339864,384.4862055177929,384.5761695321871,384.66613354658136,384.7560975609756,384.84606157536984,384.9360255897641,385.0259896041583,385.11595361855257,385.2059176329468,385.29588164734105,385.3858456617353,385.47580967612953,385.56577369052377,385.655737704918,385.74570171931225,385.8356657337065,385.92562974810073,386.01559376249503,386.10555777688927,386.1955217912835,386.28548580567775,386.375449820072,386.46541383446623,386.5553778488605,386.6453418632547,386.73530587764895,386.8252698920432,386.91523390643744,387.0051979208317,387.0951619352259,387.18512594962016,387.2750899640144,387.36505397840864,387.4550179928029,387.5449820071971,387.63494602159136,387.7249100359856,387.81487405037984,387.9048380647741,387.9948020791683,388.08476609356256,388.1747301079568,388.26469412235105,388.3546581367453,388.4446221511395,388.53458616553377,388.624550179928,388.71451419432225,388.8044782087165,388.89444222311073,388.98440623750497,389.07437025189927,389.1643342662935,389.25429828068775,389.344262295082,389.43422630947623,389.52419032387047,389.6141543382647,389.70411835265895,389.7940823670532,389.88404638144743,389.9740103958417,390.0639744102359,390.15393842463016,390.2439024390244,390.33386645341864,390.4238304678129,390.5137944822071,390.60375849660136,390.6937225109956,390.78368652538984,390.8736505397841,390.9636145541783,391.05357856857256,391.1435425829668,391.23350659736104,391.3234706117553,391.4134346261495,391.50339864054376,391.593362654938,391.68332666933225,391.7732906837265,391.8632546981207,391.95321871251497,392.0431827269092,392.1331467413035,392.22311075569775,392.313074770092,392.4030387844862,392.49300279888047,392.5829668132747,392.67293082766895,392.7628948420632,392.85285885645743,392.94282287085167,393.0327868852459,393.12275089964015,393.2127149140344,393.30267892842863,393.3926429428229,393.4826069572171,393.57257097161136,393.6625349860056,393.75249900039984,393.8424630147941,393.9324270291883,394.02239104358256,394.1123550579768,394.20231907237104,394.2922830867653,394.3822471011595,394.47221111555376,394.562175129948,394.65213914434224,394.7421031587365,394.8320671731307,394.92203118752496,395.0119952019192,395.1019592163135,395.19192323070774,395.281887245102,395.3718512594962,395.46181527389047,395.5517792882847,395.64174330267895,395.7317073170732,395.8216713314674,395.91163534586167,396.0015993602559,396.09156337465015,396.1815273890444,396.27149140343863,396.3614554178329,396.4514194322271,396.54138344662135,396.6313474610156,396.72131147540983,396.8112754898041,396.9012395041983,396.99120351859256,397.0811675329868,397.17113154738104,397.2610955617753,397.3510595761695,397.44102359056376,397.530987604958,397.62095161935224,397.7109156337465,397.8008796481407,397.89084366253496,397.9808076769292,398.07077169132344,398.16073570571774,398.250699720112,398.3406637345062,398.43062774890046,398.5205917632947,398.61055577768894,398.7005197920832,398.7904838064774,398.88044782087167,398.9704118352659,399.06037584966015,399.1503398640544,399.24030387844863,399.33026789284287,399.4202319072371,399.51019592163135,399.6001599360256,399.69012395041983,399.7800879648141,399.8700519792083,399.96001599360255,400.0499800079968,400.13994402239103,400.2299080367853,400.3198720511795,400.40983606557376,400.499800079968,400.58976409436224,400.6797281087565,400.7696921231507,400.85965613754496,400.9496201519392,401.03958416633344,401.1295481807277,401.219512195122,401.3094762095162,401.39944022391046,401.4894042383047,401.57936825269894,401.6693322670932,401.7592962814874,401.84926029588166,401.9392243102759,402.02918832467014,402.1191523390644,402.2091163534586,402.29908036785287,402.3890443822471,402.47900839664135,402.5689724110356,402.65893642542983,402.74890043982407,402.8388644542183,402.92882846861255,403.0187924830068,403.10875649740103,403.1987205117953,403.2886845261895,403.37864854058375,403.468612554978,403.55857656937224,403.6485405837665,403.7385045981607,403.82846861255496,403.9184326269492,404.00839664134344,404.0983606557377,404.1883246701319,404.2782886845262,404.36825269892046,404.4582167133147,404.54818072770894,404.6381447421032,404.7281087564974,404.81807277089166,404.9080367852859,404.99800079968014,405.0879648140744,405.1779288284686,405.26789284286286,405.3578568572571,405.44782087165134,405.5377848860456,405.6277489004398,405.71771291483407,405.8076769292283,405.89764094362255,405.9876049580168,406.07756897241103,406.16753298680527,406.2574970011995,406.34746101559375,406.437425029988,406.52738904438223,406.6173530587765,406.7073170731707,406.79728108756495,406.8872451019592,406.97720911635344,407.0671731307477,407.1571371451419,407.24710115953616,407.33706517393045,407.4270291883247,407.51699320271894,407.6069572171132,407.6969212315074,407.78688524590166,407.8768492602959,407.96681327469014,408.0567772890844,408.1467413034786,408.23670531787286,408.3266693322671,408.41663334666134,408.5065973610556,408.5965613754498,408.68652538984406,408.7764894042383,408.86645341863255,408.9564174330268,409.046381447421,409.13634546181527,409.2263094762095,409.31627349060375,409.406237504998,409.49620151939223,409.58616553378647,409.6761295481807,409.76609356257495,409.8560575769692,409.94602159136343,410.0359856057577,410.1259496201519,410.21591363454615,410.30587764894045,410.3958416633347,410.48580567772893,410.5757696921232,410.6657337065174,410.75569772091166,410.8456617353059,410.93562574970014,411.0255897640944,411.1155537784886,411.20551779288286,411.2954818072771,411.38544582167134,411.4754098360656,411.5653738504598,411.65533786485406,411.7453018792483,411.83526589364254,411.9252299080368,412.015193922431,412.10515793682526,412.1951219512195,412.28508596561375,412.375049980008,412.4650139944022,412.55497800879647,412.6449420231907,412.73490603758495,412.8248700519792,412.91483406637343,413.00479808076767,413.0947620951619,413.18472610955615,413.2746901239504,413.3646541383447,413.45461815273893,413.54458216713317,413.6345461815274,413.72451019592165,413.8144742103159,413.90443822471013,413.9944022391044,414.0843662534986,414.17433026789286,414.2642942822871,414.35425829668134,414.4442223110756,414.5341863254698,414.62415033986406,414.7141143542583,414.80407836865254,414.8940423830468,414.984006397441,415.07397041183526,415.1639344262295,415.25389844062374,415.343862455018,415.4338264694122,415.52379048380647,415.6137544982007,415.70371851259495,415.7936825269892,415.8836465413834,415.97361055577767,416.0635745701719,416.15353858456615,416.2435025989604,416.33346661335463,416.4234306277489,416.51339464214317,416.6033586565374,416.69332267093165,416.7832866853259,416.87325069972013,416.9632147141144,417.0531787285086,417.14314274290285,417.2331067572971,417.32307077169133,417.4130347860856,417.5029988004798,417.59296281487406,417.6829268292683,417.77289084366254,417.8628548580568,417.952818872451,418.04278288684526,418.1327469012395,418.22271091563374,418.312674930028,418.4026389444222,418.49260295881646,418.5825669732107,418.67253098760494,418.7624950019992,418.8524590163934,418.94242303078767,419.0323870451819,419.12235105957615,419.2123150739704,419.3022790883646,419.39224310275887,419.48220711715317,419.5721711315474,419.66213514594165,419.7520991603359,419.84206317473013,419.93202718912437,420.0219912035186,420.11195521791285,420.2019192323071,420.29188324670133,420.3818472610956,420.4718112754898,420.56177528988405,420.6517393042783,420.74170331867253,420.8316673330668,420.921631347461,421.01159536185526,421.1015593762495,421.19152339064374,421.281487405038,421.3714514194322,421.46141543382646,421.5513794482207,421.64134346261494,421.7313074770092,421.8212714914034,421.91123550579766,422.0011995201919,422.09116353458614,422.1811275489804,422.2710915633746,422.36105557776887,422.4510195921631,422.5409836065574,422.63094762095164,422.7209116353459,422.8108756497401,422.90083966413437,422.9908036785286,423.08076769292285,423.1707317073171,423.26069572171133,423.35065973610557,423.4406237504998,423.53058776489405,423.6205517792883,423.71051579368253,423.8004798080768,423.890443822471,423.98040783686525,424.0703718512595,424.16033586565374,424.250299880048,424.3402638944422,424.43022790883646,424.5201919232307,424.61015593762494,424.7001199520192,424.7900839664134,424.88004798080766,424.9700119952019,425.05997600959614,425.1499400239904,425.2399040383846,425.32986805277886,425.4198320671731,425.5097960815674,425.59976009596164,425.6897241103559,425.7796881247501,425.86965213914436,425.9596161535386,426.04958016793285,426.1395441823271,426.2295081967213,426.31947221111557,426.4094362255098,426.49940023990405,426.5893642542983,426.67932826869253,426.76929228308677,426.859256297481,426.94922031187525,427.0391843262695,427.12914834066373,427.219112355058,427.3090763694522,427.39904038384645,427.4890043982407,427.57896841263494,427.6689324270292,427.7588964414234,427.84886045581766,427.9388244702119,428.02878848460614,428.1187524990004,428.2087165133946,428.29868052778886,428.3886445421831,428.47860855657734,428.56857257097164,428.6585365853659,428.7485005997601,428.83846461415436,428.9284286285486,429.01839264294284,429.1083566573371,429.1983206717313,429.28828468612556,429.3782487005198,429.46821271491405,429.5581767293083,429.6481407437025,429.73810475809677,429.828068772491,429.91803278688525,430.0079968012795,430.09796081567373,430.18792483006797,430.2778888444622,430.36785285885645,430.4578168732507,430.54778088764493,430.6377449020392,430.7277089164334,430.81767293082765,430.9076369452219,430.99760095961614,431.0875649740104,431.1775289884046,431.26749300279886,431.3574570171931,431.44742103158734,431.5373850459816,431.6273490603759,431.7173130747701,431.80727708916436,431.8972411035586,431.98720511795284,432.0771691323471,432.1671331467413,432.25709716113556,432.3470611755298,432.43702518992404,432.5269892043183,432.6169532187125,432.70691723310676,432.796881247501,432.88684526189525,432.9768092762895,433.0667732906837,433.15673730507797,433.2467013194722,433.33666533386645,433.4266293482607,433.51659336265493,433.60655737704917,433.6965213914434,433.78648540583765,433.8764494202319,433.96641343462613,434.0563774490204,434.1463414634146,434.23630547780886,434.3262694922031,434.41623350659734,434.5061975209916,434.5961615353858,434.6861255497801,434.77608956417436,434.8660535785686,434.95601759296284,435.0459816073571,435.1359456217513,435.22590963614556,435.3158736505398,435.40583766493404,435.4958016793283,435.5857656937225,435.67572970811676,435.765693722511,435.85565773690524,435.9456217512995,436.0355857656937,436.12554978008797,436.2155137944822,436.30547780887645,436.3954418232707,436.4854058376649,436.57536985205917,436.6653338664534,436.75529788084765,436.8452618952419,436.93522590963613,437.02518992403037,437.1151539384246,437.20511795281885,437.2950819672131,437.38504598160733,437.4750099960016,437.5649740103958,437.65493802479006,437.74490203918435,437.8348660535786,437.92483006797283,438.0147940823671,438.1047580967613,438.19472211115556,438.2846861255498,438.37465013994404,438.4646141543383,438.5545781687325,438.64454218312676,438.734506197521,438.82447021191524,438.9144342263095,439.0043982407037,439.09436225509796,439.1843262694922,439.27429028388644,439.3642542982807,439.4542183126749,439.54418232706917,439.6341463414634,439.72411035585765,439.8140743702519,439.9040383846461,439.99400239904037,440.0839664134346,440.17393042782885,440.2638944422231,440.35385845661733,440.4438224710116,440.5337864854058,440.62375049980005,440.71371451419435,440.8036785285886,440.89364254298283,440.9836065573771,441.0735705717713,441.16353458616555,441.2534986005598,441.34346261495403,441.4334266293483,441.5233906437425,441.61335465813676,441.703318672531,441.79328268692524,441.8832467013195,441.9732107157137,442.06317473010796,442.1531387445022,442.24310275889644,442.3330667732907,442.4230307876849,442.51299480207916,442.6029588164734,442.69292283086764,442.7828868452619,442.8728508596561,442.96281487405037,443.0527788884446,443.14274290283885,443.2327069172331,443.32267093162733,443.41263494602157,443.5025989604158,443.59256297481005,443.6825269892043,443.7724910035986,443.86245501799283,443.95241903238707,444.0423830467813,444.13234706117555,444.2223110755698,444.31227508996403,444.4022391043583,444.4922031187525,444.58216713314675,444.672131147541,444.76209516193524,444.8520591763295,444.9420231907237,445.03198720511796,445.1219512195122,445.21191523390644,445.3018792483007,445.3918432626949,445.48180727708916,445.5717712914834,445.66173530587764,445.7516993202719,445.8416633346661,445.93162734906036,446.0215913634546,446.11155537784884,446.2015193922431,446.2914834066373,446.38144742103157,446.4714114354258,446.56137544982005,446.6513394642143,446.74130347860853,446.8312674930028,446.92123150739707,447.0111955217913,447.10115953618555,447.1911235505798,447.28108756497403,447.37105157936827,447.4610155937625,447.55097960815675,447.640943622551,447.73090763694523,447.8208716513395,447.9108356657337,448.00079968012795,448.0907636945222,448.18072770891644,448.2706917233107,448.3606557377049,448.45061975209916,448.5405837664934,448.63054778088764,448.7205117952819,448.8104758096761,448.90043982407036,448.9904038384646,449.08036785285884,449.1703318672531,449.2602958816473,449.35025989604156,449.4402239104358,449.53018792483005,449.6201519392243,449.7101159536185,449.80007996801277,449.89004398240706,449.9800079968013,450.06997201119555,450.1599360255898,450.249900039984,450.33986405437827,450.4298280687725,450.51979208316675,450.609756097561,450.69972011195523,450.78968412634947,450.8796481407437,450.96961215513795,451.0595761695322,451.14954018392643,451.2395041983207,451.3294682127149,451.41943222710916,451.5093962415034,451.59936025589764,451.6893242702919,451.7792882846861,451.86925229908036,451.9592163134746,452.04918032786884,452.1391443422631,452.2291083566573,452.31907237105156,452.4090363854458,452.49900039984004,452.5889644142343,452.6789284286285,452.76889244302276,452.858856457417,452.9488204718113,453.03878448620554,453.1287485005998,453.218712514994,453.30867652938826,453.3986405437825,453.48860455817675,453.578568572571,453.6685325869652,453.75849660135947,453.8484606157537,453.93842463014795,454.0283886445422,454.11835265893643,454.20831667333067,454.2982806877249,454.38824470211915,454.4782087165134,454.56817273090763,454.6581367453019,454.7481007596961,454.83806477409036,454.9280287884846,455.01799280287884,455.1079568172731,455.1979208316673,455.28788484606156,455.3778488604558,455.46781287485004,455.5577768892443,455.6477409036385,455.73770491803276,455.827668932427,455.9176329468213,456.00759696121554,456.0975609756098,456.187524990004,456.27748900439826,456.3674530187925,456.45741703318674,456.547381047581,456.6373450619752,456.72730907636947,456.8172730907637,456.90723710515795,456.9972011195522,457.0871651339464,457.17712914834067,457.2670931627349,457.35705717712915,457.4470211915234,457.53698520591763,457.6269492203119,457.7169132347061,457.80687724910035,457.8968412634946,457.98680527788883,458.0767692922831,458.1667333066773,458.25669732107156,458.3466613354658,458.43662534986004,458.5265893642543,458.6165533786485,458.70651739304276,458.796481407437,458.88644542183124,458.97640943622554,459.0663734506198,459.156337465014,459.24630147940826,459.3362654938025,459.42622950819674,459.516193522591,459.6061575369852,459.69612155137946,459.7860855657737,459.87604958016794,459.9660135945622,460.0559776089564,460.14594162335067,460.2359056377449,460.32586965213915,460.4158336665334,460.5057976809276,460.59576169532187,460.6857257097161,460.77568972411035,460.8656537385046,460.95561775289883,461.0455817672931,461.1355457816873,461.22550979608155,461.3154738104758,461.40543782487003,461.4954018392643,461.5853658536585,461.67532986805276,461.765293882447,461.85525789684124,461.9452219112355,462.0351859256298,462.125149940024,462.21511395441826,462.3050779688125,462.39504198320674,462.485005997601,462.5749700119952,462.66493402638946,462.7548980407837,462.84486205517794,462.9348260695722,463.0247900839664,463.11475409836066,463.2047181127549,463.29468212714914,463.3846461415434,463.4746101559376,463.56457417033187,463.6545381847261,463.74450219912035,463.8344662135146,463.92443022790883,464.01439424230307,464.1043582566973,464.19432227109155,464.2842862854858,464.37425029988003,464.4642143142743,464.5541783286685,464.64414234306275,464.734106357457,464.82407037185123,464.9140343862455,465.0039984006397,465.093962415034,465.18392642942825,465.2738904438225,465.36385445821674,465.453818472611,465.5437824870052,465.63374650139946,465.7237105157937,465.81367453018794,465.9036385445822,465.9936025589764,466.08356657337066,466.1735305877649,466.26349460215914,466.3534586165534,466.4434226309476,466.53338664534186,466.6233506597361,466.71331467413034,466.8032786885246,466.8932427029188,466.98320671731307,467.0731707317073,467.16313474610155,467.2530987604958,467.34306277489003,467.43302678928427,467.5229908036785,467.61295481807275,467.702918832467,467.79288284686123,467.8828468612555,467.9728108756497,468.06277489004395,468.15273890443825,468.2427029188325,468.33266693322673,468.422630947621,468.5125949620152,468.60255897640945,468.6925229908037,468.78248700519794,468.8724510195922,468.9624150339864,469.05237904838066,469.1423430627749,469.23230707716914,469.3222710915634,469.4122351059576,469.50219912035186,469.5921631347461,469.68212714914034,469.7720911635346,469.8620551779288,469.95201919232306,470.0419832067173,470.13194722111155,470.2219112355058,470.3118752499,470.40183926429427,470.4918032786885,470.58176729308275,470.671731307477,470.76169532187123,470.85165933626547,470.9416233506597,471.03158736505395,471.12155137944825,471.2115153938425,471.30147940823673,471.39144342263097,471.4814074370252,471.57137145141945,471.6613354658137,471.75129948020793,471.8412634946022,471.9312275089964,472.02119152339066,472.1111555377849,472.20111955217914,472.2910835665734,472.3810475809676,472.47101159536186,472.5609756097561,472.65093962415034,472.7409036385446,472.8308676529388,472.92083166733306,473.0107956817273,473.10075969612154,473.1907237105158,473.28068772491,473.37065173930426,473.4606157536985,473.55057976809275,473.640543782487,473.7305077968812,473.82047181127547,473.9104358256697,474.00039984006395,474.0903638544582,474.1803278688525,474.2702918832467,474.36025589764097,474.4502199120352,474.54018392642945,474.6301479408237,474.72011195521793,474.81007596961217,474.9000399840064,474.99000399840065,475.0799680127949,475.16993202718913,475.2598960415834,475.3498600559776,475.43982407037186,475.5297880847661,475.61975209916034,475.7097161135546,475.7996801279488,475.88964414234306,475.9796081567373,476.06957217113154,476.1595361855258,476.24950019992,476.33946421431426,476.4294282287085,476.51939224310274,476.609356257497,476.6993202718912,476.78928428628546,476.8792483006797,476.96921231507395,477.0591763294682,477.1491403438624,477.2391043582567,477.32906837265097,477.4190323870452,477.50899640143945,477.5989604158337,477.6889244302279,477.77888844462217,477.8688524590164,477.95881647341065,478.0487804878049,478.13874450219913,478.2287085165934,478.3186725309876,478.40863654538185,478.4986005597761,478.58856457417033,478.6785285885646,478.7684926029588,478.85845661735306,478.9484206317473,479.03838464614154,479.1283486605358,479.21831267493,479.30827668932426,479.3982407037185,479.48820471811274,479.578168732507,479.6681327469012,479.75809676129546,479.8480607756897,479.93802479008394,480.0279888044782,480.1179528188724,480.20791683326667,480.29788084766096,480.3878448620552,480.47780887644944,480.5677728908437,480.6577369052379,480.74770091963217,480.8376649340264,480.92762894842065,481.0175929628149,481.10755697720913,481.19752099160337,481.2874850059976,481.37744902039185,481.4674130347861,481.55737704918033,481.6473410635746,481.7373050779688,481.82726909236305,481.9172331067573,482.00719712115153,482.0971611355458,482.18712514994,482.27708916433426,482.3670531787285,482.45701719312274,482.546981207517,482.6369452219112,482.72690923630546,482.8168732506997,482.90683726509394,482.9968012794882,483.0867652938824,483.17672930827666,483.2666933226709,483.3566573370652,483.44662135145944,483.5365853658537,483.6265493802479,483.71651339464216,483.8064774090364,483.89644142343064,483.9864054378249,484.0763694522191,484.16633346661337,484.2562974810076,484.34626149540185,484.4362255097961,484.52618952419033,484.61615353858457,484.7061175529788,484.79608156737305,484.8860455817673,484.97600959616153,485.0659736105558,485.15593762495,485.24590163934425,485.3358656537385,485.42582966813274,485.515793682527,485.6057576969212,485.69572171131546,485.7856857257097,485.87564974010394,485.9656137544982,486.0555777688924,486.14554178328666,486.2355057976809,486.3254698120752,486.41543382646944,486.5053978408637,486.5953618552579,486.68532586965216,486.7752898840464,486.86525389844064,486.9552179128349,487.0451819272291,487.13514594162336,487.2251099560176,487.31507397041185,487.4050379848061,487.4950019992003,487.58496601359457,487.6749300279888,487.76489404238305,487.8548580567773,487.94482207117153,488.03478608556577,488.12475009996,488.21471411435425,488.3046781287485,488.39464214314273,488.484606157537,488.5745701719312,488.66453418632545,488.7544982007197,488.84446221511394,488.9344262295082,489.0243902439024,489.11435425829666,489.2043182726909,489.29428228708514,489.38424630147944,489.4742103158737,489.5641743302679,489.65413834466216,489.7441023590564,489.83406637345064,489.9240303878449,490.0139944022391,490.10395841663336,490.1939224310276,490.28388644542184,490.3738504598161,490.4638144742103,490.55377848860456,490.6437425029988,490.73370651739305,490.8236705317873,490.9136345461815,491.00359856057577,491.09356257497,491.18352658936425,491.2734906037585,491.36345461815273,491.45341863254697,491.5433826469412,491.63334666133545,491.7233106757297,491.81327469012393,491.9032387045182,491.9932027189124,492.08316673330665,492.1731307477009,492.26309476209514,492.3530587764894,492.4430227908837,492.5329868052779,492.62295081967216,492.7129148340664,492.80287884846064,492.8928428628549,492.9828068772491,493.07277089164336,493.1627349060376,493.25269892043184,493.3426629348261,493.4326269492203,493.52259096361456,493.6125549780088,493.70251899240304,493.7924830067973,493.8824470211915,493.97241103558576,494.06237504998,494.15233906437425,494.2423030787685,494.3322670931627,494.42223110755697,494.5121951219512,494.60215913634545,494.6921231507397,494.78208716513393,494.87205117952817,494.9620151939224,495.05197920831665,495.1419432227109,495.23190723710513,495.3218712514994,495.4118352658936,495.5017992802879,495.59176329468215,495.6817273090764,495.77169132347063,495.8616553378649,495.9516193522591,496.04158336665336,496.1315473810476,496.22151139544184,496.3114754098361,496.4014394242303,496.49140343862456,496.5813674530188,496.67133146741304,496.7612954818073,496.8512594962015,496.94122351059576,497.03118752499,497.12115153938424,497.2111155537785,497.3010795681727,497.39104358256697,497.4810075969612,497.57097161135545,497.6609356257497,497.7508996401439,497.84086365453817,497.9308276689324,498.02079168332665,498.1107556977209,498.20071971211513,498.29068372650937,498.3806477409036,498.47061175529785,498.56057576969215,498.6505397840864,498.74050379848063,498.8304678128749,498.9204318272691,499.01039584166335,499.1003598560576,499.19032387045183,499.2802878848461,499.3702518992403,499.46021591363456,499.5501799280288,499.64014394242304,499.7301079568173,499.8200719712115,499.91003598560576,500.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.js b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.js new file mode 100644 index 000000000000..c6c6b9387d7d --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.js @@ -0,0 +1,359 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2018 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var tape = require( 'tape' ); +var isnanf = require( '@stdlib/math/base/assert/is-nanf' ); +var randu = require( '@stdlib/random/base/randu' ); +var PINF = require( '@stdlib/constants/float32/pinf' ); +var NINF = require( '@stdlib/constants/float32/ninf' ); +var EPS = require( '@stdlib/constants/float32/eps' ); +var absf = require( '@stdlib/math/base/special/absf' ); +var f32 = require( '@stdlib/number/float64/base/to-float32' ); +var j1 = require( './../lib' ); + + +// FIXTURES // + +var hugePositive = require( './fixtures/julia/huge_positive.json' ); +var veryLargePositive = require( './fixtures/julia/very_large_positive.json' ); +var largePositive = require( './fixtures/julia/large_positive.json' ); +var mediumPositive = require( './fixtures/julia/medium_positive.json' ); +var smallPositive = require( './fixtures/julia/small_positive.json' ); +var smallNegative = require( './fixtures/julia/small_negative.json' ); +var positiveGamut = require( './fixtures/julia/positive_gamut.json' ); +var negativeGamut = require( './fixtures/julia/negative_gamut.json' ); +var smaller = require( './fixtures/julia/smaller.json' ); +var tinyPositive = require( './fixtures/julia/tiny_positive.json' ); +var subnormal = require( './fixtures/julia/subnormal.json' ); + + +// TESTS // + +tape( 'main export is a function', function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof j1, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (very large positive values)', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = veryLargePositive.expected; + x = veryLargePositive.x; + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = j1( x[ i ] ); + if ( y === expected[i] ) { + t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = 600.0 * EPS * absf( expected[i] ); + t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (large positive values)', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = largePositive.expected; + x = largePositive.x; + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = j1( x[ i ] ); + if ( y === expected[i] ) { + t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = 300.0 * EPS * absf( expected[i] ); + t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (medium positive values)', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = mediumPositive.expected; + x = mediumPositive.x; + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = j1( x[ i ] ); + if ( y === expected[i] ) { + t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = 2600.0 * EPS * absf( expected[i] ); + t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (small positive values)', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = smallPositive.expected; + x = smallPositive.x; + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = j1( x[ i ] ); + if ( y === expected[i] ) { + t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = 5.0 * EPS * absf( expected[i] ); + t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (small negative values)', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = smallNegative.expected; + x = smallNegative.x; + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = j1( x[ i ] ); + if ( y === expected[i] ) { + t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = 5.0 * EPS * absf( expected[i] ); + t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates Bessel function of the first kind of order one (J_1) (smaller positive values)', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = smaller.expected; + x = smaller.x; + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = j1( x[ i ] ); + if ( y === expected[i] ) { + t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = 3.0 * EPS * absf( expected[i] ); + t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (tiny positive values)', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = tinyPositive.expected; + x = tinyPositive.x; + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = j1( x[ i ] ); + if ( y === expected[i] ) { + t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = EPS * absf( expected[i] ); + t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (subnormal values)', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = subnormal.expected; + x = subnormal.x; + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = j1( x[ i ] ); + if ( y === expected[i] ) { + t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = 5.0e-324; + t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (huge positive values)', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = hugePositive.expected; + x = hugePositive.x; + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = j1( x[ i ] ); + if ( y === expected[i] ) { + t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = 3000.0 * EPS * absf( expected[i] ); + t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) for positive x over a wide range of magnitudes', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = positiveGamut.expected; + x = positiveGamut.x; + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = j1( x[ i ] ); + if ( y === expected[i] ) { + t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = 18.0 * EPS * absf( expected[i] ); + t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. tol: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) for negative x over a wide range of magnitudes', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = negativeGamut.expected; + x = negativeGamut.x; + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = j1( x[ i ] ); + if ( y === expected[i] ) { + t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = 18.0 * EPS * absf( expected[i] ); + t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. tol: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function is an odd function (f(x) = -f(-x))', function test( t ) { + var x; + var i; + + for ( i = 0; i < 1000; i++ ) { + x = randu() * 100.0; + t.strictEqual( j1( x ), -j1( -x ), 'returns same value for +-'+x ); + } + t.end(); +}); + +tape( 'the function returns `NaN` if provided `NaN`', function test( t ) { + var v = j1( NaN ); + t.strictEqual( isnanf( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns `0.0` if provided `+infinity`', function test( t ) { + var v = j1( NINF ); + t.strictEqual( v, 0.0, 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns `0.0` if provided `-infinity`', function test( t ) { + var v = j1( PINF ); + t.strictEqual( v, 0.0, 'returns expected value' ); + t.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.native.js new file mode 100644 index 000000000000..74b2b790e446 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.native.js @@ -0,0 +1,368 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var resolve = require( 'path' ).resolve; +var tape = require( 'tape' ); +var isnanf = require( '@stdlib/math/base/assert/is-nanf' ); +var randu = require( '@stdlib/random/base/randu' ); +var PINF = require( '@stdlib/constants/float32/pinf' ); +var NINF = require( '@stdlib/constants/float32/ninf' ); +var EPS = require( '@stdlib/constants/float32/eps' ); +var absf = require( '@stdlib/math/base/special/absf' ); +var f32 = require( '@stdlib/number/float64/base/to-float32' ); +var tryRequire = require( '@stdlib/utils/try-require' ); + + +// VARIABLES // + +var j1 = tryRequire( resolve( __dirname, './../lib/native.js' ) ); +var opts = { + 'skip': ( j1 instanceof Error ) +}; + + +// FIXTURES // + +var hugePositive = require( './fixtures/julia/huge_positive.json' ); +var veryLargePositive = require( './fixtures/julia/very_large_positive.json' ); +var largePositive = require( './fixtures/julia/large_positive.json' ); +var mediumPositive = require( './fixtures/julia/medium_positive.json' ); +var smallPositive = require( './fixtures/julia/small_positive.json' ); +var smallNegative = require( './fixtures/julia/small_negative.json' ); +var positiveGamut = require( './fixtures/julia/positive_gamut.json' ); +var negativeGamut = require( './fixtures/julia/negative_gamut.json' ); +var smaller = require( './fixtures/julia/smaller.json' ); +var tinyPositive = require( './fixtures/julia/tiny_positive.json' ); +var subnormal = require( './fixtures/julia/subnormal.json' ); + + +// TESTS // + +tape( 'main export is a function', opts, function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof j1, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (very large positive values)', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = veryLargePositive.expected; + x = veryLargePositive.x; + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = j1( x[ i ] ); + if ( y === expected[i] ) { + t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = 600.0 * EPS * absf( expected[i] ); + t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (large positive values)', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = largePositive.expected; + x = largePositive.x; + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = j1( x[ i ] ); + if ( y === expected[i] ) { + t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = 300.0 * EPS * absf( expected[i] ); + t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (medium positive values)', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = mediumPositive.expected; + x = mediumPositive.x; + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = j1( x[ i ] ); + if ( y === expected[i] ) { + t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = 2600.0 * EPS * absf( expected[i] ); + t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (small positive values)', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = smallPositive.expected; + x = smallPositive.x; + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = j1( x[ i ] ); + if ( y === expected[i] ) { + t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = 5.0 * EPS * absf( expected[i] ); + t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (small negative values)', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = smallNegative.expected; + x = smallNegative.x; + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = j1( x[ i ] ); + if ( y === expected[i] ) { + t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = 5.0 * EPS * absf( expected[i] ); + t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates Bessel function of the first kind of order one (J_1) (smaller positive values)', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = smaller.expected; + x = smaller.x; + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = j1( x[ i ] ); + if ( y === expected[i] ) { + t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = 3.0 * EPS * absf( expected[i] ); + t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (tiny positive values)', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = tinyPositive.expected; + x = tinyPositive.x; + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = j1( x[ i ] ); + if ( y === expected[i] ) { + t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = EPS * absf( expected[i] ); + t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (subnormal values)', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = subnormal.expected; + x = subnormal.x; + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = j1( x[ i ] ); + if ( y === expected[i] ) { + t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = 5.0e-324; + t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (huge positive values)', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = hugePositive.expected; + x = hugePositive.x; + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = j1( x[ i ] ); + if ( y === expected[i] ) { + t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = 3000.0 * EPS * absf( expected[i] ); + t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) for positive x over a wide range of magnitudes', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = positiveGamut.expected; + x = positiveGamut.x; + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = j1( x[ i ] ); + if ( y === expected[i] ) { + t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = 18.0 * EPS * absf( expected[i] ); + t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. tol: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) for negative x over a wide range of magnitudes', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + expected = negativeGamut.expected; + x = negativeGamut.x; + for ( i = 0; i < x.length; i++ ) { + x[ i ] = f32( x[ i ] ); + expected[ i ] = f32( expected[ i ] ); + y = j1( x[ i ] ); + if ( y === expected[i] ) { + t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + } else { + delta = absf( y - expected[i] ); + tol = 18.0 * EPS * absf( expected[i] ); + t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. tol: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function is an odd function (f(x) = -f(-x))', opts, function test( t ) { + var x; + var i; + + for ( i = 0; i < 1000; i++ ) { + x = randu() * 100.0; + t.strictEqual( j1( x ), -j1( -x ), 'returns same value for +-'+x ); + } + t.end(); +}); + +tape( 'the function returns `NaN` if provided `NaN`', opts, function test( t ) { + var v = j1( NaN ); + t.strictEqual( isnanf( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns `0.0` if provided `+infinity`', opts, function test( t ) { + var v = j1( NINF ); + t.strictEqual( v, 0.0, 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns `0.0` if provided `-infinity`', opts, function test( t ) { + var v = j1( PINF ); + t.strictEqual( v, 0.0, 'returns expected value' ); + t.end(); +}); From c4403b6cdde1f5504862c543beb6a3b0407ef195 Mon Sep 17 00:00:00 2001 From: Ujjwal Verma Date: Thu, 23 Jul 2026 19:19:46 +0530 Subject: [PATCH 2/5] fix: update copyright years, fix addon macro, fix manifest deps, fix R quotes --- .../math/base/special/besselj1f/README.md | 2 +- .../special/besselj1f/benchmark/benchmark.js | 2 +- .../besselj1f/benchmark/benchmark.native.js | 2 +- .../special/besselj1f/benchmark/c/Makefile | 2 +- .../special/besselj1f/benchmark/c/benchmark.c | 2 +- .../besselj1f/benchmark/c/cephes/Makefile | 2 +- .../besselj1f/benchmark/c/cephes/benchmark.c | 2 +- .../besselj1f/benchmark/c/native/Makefile | 2 +- .../besselj1f/benchmark/c/native/benchmark.c | 2 +- .../besselj1f/benchmark/cpp/boost/Makefile | 2 +- .../benchmark/cpp/boost/benchmark.cpp | 2 +- .../besselj1f/benchmark/julia/benchmark.jl | 2 +- .../benchmark/python/scipy/benchmark.py | 2 +- .../special/besselj1f/benchmark/r/benchmark.R | 6 +++--- .../math/base/special/besselj1f/binding.gyp | 2 +- .../special/besselj1f/docs/types/index.d.ts | 2 +- .../base/special/besselj1f/docs/types/test.ts | 2 +- .../base/special/besselj1f/examples/c/Makefile | 2 +- .../special/besselj1f/examples/c/example.c | 2 +- .../base/special/besselj1f/examples/index.js | 2 +- .../math/base/special/besselj1f/include.gypi | 2 +- .../stdlib/math/base/special/besselj1f.h | 2 +- .../math/base/special/besselj1f/lib/index.js | 2 +- .../math/base/special/besselj1f/lib/main.js | 2 +- .../math/base/special/besselj1f/lib/native.js | 2 +- .../special/besselj1f/lib/rational_p1q1.js | 2 +- .../special/besselj1f/lib/rational_p2q2.js | 2 +- .../special/besselj1f/lib/rational_pcqc.js | 2 +- .../special/besselj1f/lib/rational_psqs.js | 2 +- .../math/base/special/besselj1f/manifest.json | 18 +++--------------- .../special/besselj1f/scripts/evalrational.js | 2 +- .../math/base/special/besselj1f/src/Makefile | 2 +- .../math/base/special/besselj1f/src/addon.c | 4 ++-- .../math/base/special/besselj1f/src/main.c | 2 +- .../besselj1f/test/fixtures/julia/runner.jl | 2 +- .../math/base/special/besselj1f/test/test.js | 2 +- .../base/special/besselj1f/test/test.native.js | 2 +- 37 files changed, 42 insertions(+), 54 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/README.md b/lib/node_modules/@stdlib/math/base/special/besselj1f/README.md index 5fbd45fd3aec..d2e426451a3f 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/README.md +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/README.md @@ -2,7 +2,7 @@ @license Apache-2.0 -Copyright (c) 2018 The Stdlib Authors. +Copyright (c) 2026 The Stdlib Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/benchmark.js index 12ec22f5c46e..a42f5a6c678d 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/benchmark.js +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/benchmark.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2018 The Stdlib Authors. +* Copyright (c) 2026 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/benchmark.native.js index 1e4e0167e88f..0c8d13721754 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/benchmark.native.js +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/benchmark.native.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2026 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/Makefile b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/Makefile index e64c0050f3da..928de45a1a06 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/Makefile +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/Makefile @@ -1,7 +1,7 @@ #/ # @license Apache-2.0 # -# Copyright (c) 2018 The Stdlib Authors. +# Copyright (c) 2026 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/benchmark.c b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/benchmark.c index 1564b2aef170..0e06e3cfcfdb 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/benchmark.c +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/benchmark.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2018 The Stdlib Authors. +* Copyright (c) 2026 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/cephes/Makefile b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/cephes/Makefile index 60e93ff57ffd..9236e23befc4 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/cephes/Makefile +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/cephes/Makefile @@ -1,7 +1,7 @@ #/ # @license Apache-2.0 # -# Copyright (c) 2018 The Stdlib Authors. +# Copyright (c) 2026 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/cephes/benchmark.c b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/cephes/benchmark.c index 73b74fd765cc..c0227f37ccd4 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/cephes/benchmark.c +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/cephes/benchmark.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2018 The Stdlib Authors. +* Copyright (c) 2026 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/native/Makefile b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/native/Makefile index f69e9da2b4d3..979768abbcec 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/native/Makefile +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/native/Makefile @@ -1,7 +1,7 @@ #/ # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# Copyright (c) 2026 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/native/benchmark.c index c8c61b79c1a5..e89daf9238a7 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/native/benchmark.c +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/c/native/benchmark.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2026 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/cpp/boost/Makefile b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/cpp/boost/Makefile index ba3ed4330d65..7f3e5e5c36dd 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/cpp/boost/Makefile +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/cpp/boost/Makefile @@ -1,7 +1,7 @@ #/ # @license Apache-2.0 # -# Copyright (c) 2018 The Stdlib Authors. +# Copyright (c) 2026 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/cpp/boost/benchmark.cpp b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/cpp/boost/benchmark.cpp index b7af257886ae..095008a3c8c9 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/cpp/boost/benchmark.cpp +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/cpp/boost/benchmark.cpp @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2018 The Stdlib Authors. +* Copyright (c) 2026 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/julia/benchmark.jl b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/julia/benchmark.jl index 970aafa8bffe..d98a489ad52a 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/julia/benchmark.jl +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/julia/benchmark.jl @@ -2,7 +2,7 @@ # # @license Apache-2.0 # -# Copyright (c) 2018 The Stdlib Authors. +# Copyright (c) 2026 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/python/scipy/benchmark.py b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/python/scipy/benchmark.py index 52a08d9bf073..710d001a0dff 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/python/scipy/benchmark.py +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/python/scipy/benchmark.py @@ -2,7 +2,7 @@ # # @license Apache-2.0 # -# Copyright (c) 2018 The Stdlib Authors. +# Copyright (c) 2026 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/r/benchmark.R b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/r/benchmark.R index 20de4680a68d..d78c7a90c802 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/r/benchmark.R +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/benchmark/r/benchmark.R @@ -2,7 +2,7 @@ # # @license Apache-2.0 # -# Copyright (c) 2018 The Stdlib Authors. +# Copyright (c) 2026 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -98,10 +98,10 @@ main <- function() { print_version(); for ( i in 1:repeats ) { - cat( paste0( "# r::", name, "\n" ) ); + cat( paste0( '# r::', name, '\n' ) ); elapsed <- benchmark( iterations ); print_results( iterations, elapsed ); - cat( paste0( "ok ", i, " benchmark finished", "\n" ) ); + cat( paste0( 'ok ', i, ' benchmark finished', '\n' ) ); } print_summary( repeats, repeats ); } diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/binding.gyp b/lib/node_modules/@stdlib/math/base/special/besselj1f/binding.gyp index ec3992233442..0d6508a12e99 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/binding.gyp +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/binding.gyp @@ -1,6 +1,6 @@ # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# Copyright (c) 2026 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/besselj1f/docs/types/index.d.ts index e1ccebb2d976..4fe77d7cbc3c 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/docs/types/index.d.ts @@ -1,7 +1,7 @@ /* * @license Apache-2.0 * -* Copyright (c) 2019 The Stdlib Authors. +* Copyright (c) 2026 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/docs/types/test.ts b/lib/node_modules/@stdlib/math/base/special/besselj1f/docs/types/test.ts index c7795461b7d5..cb5e11533e4d 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/docs/types/test.ts +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/docs/types/test.ts @@ -1,7 +1,7 @@ /* * @license Apache-2.0 * -* Copyright (c) 2019 The Stdlib Authors. +* Copyright (c) 2026 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/examples/c/Makefile b/lib/node_modules/@stdlib/math/base/special/besselj1f/examples/c/Makefile index 6aed70daf167..c8f8e9a1517b 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/examples/c/Makefile +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/examples/c/Makefile @@ -1,7 +1,7 @@ #/ # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# Copyright (c) 2026 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/examples/c/example.c b/lib/node_modules/@stdlib/math/base/special/besselj1f/examples/c/example.c index c0b81d889708..002e5bed3d56 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/examples/c/example.c +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/examples/c/example.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2026 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/examples/index.js b/lib/node_modules/@stdlib/math/base/special/besselj1f/examples/index.js index 3163c7ddacf2..199cc6474a67 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/examples/index.js +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/examples/index.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2018 The Stdlib Authors. +* Copyright (c) 2026 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/include.gypi b/lib/node_modules/@stdlib/math/base/special/besselj1f/include.gypi index 575cb043c0bf..bee8d41a2caf 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/include.gypi +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/include.gypi @@ -1,6 +1,6 @@ # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# Copyright (c) 2026 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/include/stdlib/math/base/special/besselj1f.h b/lib/node_modules/@stdlib/math/base/special/besselj1f/include/stdlib/math/base/special/besselj1f.h index da0185e9c8d0..f4d7e398ac0d 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/include/stdlib/math/base/special/besselj1f.h +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/include/stdlib/math/base/special/besselj1f.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2026 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/lib/index.js b/lib/node_modules/@stdlib/math/base/special/besselj1f/lib/index.js index dc12750b20c2..b69a0741ce9b 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/lib/index.js +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/lib/index.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2018 The Stdlib Authors. +* Copyright (c) 2026 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/lib/main.js b/lib/node_modules/@stdlib/math/base/special/besselj1f/lib/main.js index ef0eaab04dbe..5b81b25aa72a 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/lib/main.js +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/lib/main.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2026 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/lib/native.js b/lib/node_modules/@stdlib/math/base/special/besselj1f/lib/native.js index cb9cbc83f4b8..cbbc8367da16 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/lib/native.js +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/lib/native.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2026 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/lib/rational_p1q1.js b/lib/node_modules/@stdlib/math/base/special/besselj1f/lib/rational_p1q1.js index 2aa94a3ca2b4..05f33c99e13e 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/lib/rational_p1q1.js +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/lib/rational_p1q1.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2026 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/lib/rational_p2q2.js b/lib/node_modules/@stdlib/math/base/special/besselj1f/lib/rational_p2q2.js index b9d00d86dd87..5492c3271cec 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/lib/rational_p2q2.js +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/lib/rational_p2q2.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2026 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/lib/rational_pcqc.js b/lib/node_modules/@stdlib/math/base/special/besselj1f/lib/rational_pcqc.js index ded1f117d939..c89c866702c9 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/lib/rational_pcqc.js +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/lib/rational_pcqc.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2026 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/lib/rational_psqs.js b/lib/node_modules/@stdlib/math/base/special/besselj1f/lib/rational_psqs.js index 650f5b7d6078..8aeeb4239ecb 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/lib/rational_psqs.js +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/lib/rational_psqs.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2026 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/manifest.json b/lib/node_modules/@stdlib/math/base/special/besselj1f/manifest.json index fb3713338b0c..75edf4aa2fa1 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/manifest.json +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/manifest.json @@ -37,11 +37,7 @@ "libpath": [], "dependencies": [ "@stdlib/math/base/napi/unary", - "@stdlib/math/base/special/sqrt", - "@stdlib/math/base/special/abs", - "@stdlib/math/base/special/sincos", - "@stdlib/constants/float32/pinf", - "@stdlib/constants/float32/sqrt-pi" + "@stdlib/math/base/special/besselj1" ] }, { @@ -55,11 +51,7 @@ "libraries": [], "libpath": [], "dependencies": [ - "@stdlib/math/base/special/sqrt", - "@stdlib/math/base/special/abs", - "@stdlib/math/base/special/sincos", - "@stdlib/constants/float32/pinf", - "@stdlib/constants/float32/sqrt-pi" + "@stdlib/math/base/special/besselj1" ] }, { @@ -73,11 +65,7 @@ "libraries": [], "libpath": [], "dependencies": [ - "@stdlib/math/base/special/sqrt", - "@stdlib/math/base/special/abs", - "@stdlib/math/base/special/sincos", - "@stdlib/constants/float32/pinf", - "@stdlib/constants/float32/sqrt-pi" + "@stdlib/math/base/special/besselj1" ] } ] diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/scripts/evalrational.js b/lib/node_modules/@stdlib/math/base/special/besselj1f/scripts/evalrational.js index b1491704e3f5..4cc472e59866 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/scripts/evalrational.js +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/scripts/evalrational.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2018 The Stdlib Authors. +* Copyright (c) 2026 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/src/Makefile b/lib/node_modules/@stdlib/math/base/special/besselj1f/src/Makefile index bcf18aa46655..2caf905cedbe 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/src/Makefile +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/src/Makefile @@ -1,7 +1,7 @@ #/ # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# Copyright (c) 2026 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/src/addon.c b/lib/node_modules/@stdlib/math/base/special/besselj1f/src/addon.c index e01ab1db3558..c1e242648004 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/src/addon.c +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/src/addon.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2026 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -19,4 +19,4 @@ #include "stdlib/math/base/special/besselj1f.h" #include "stdlib/math/base/napi/unary.h" -STDLIB_MATH_BASE_NAPI_MODULE_D_D( stdlib_base_besselj1 ) +STDLIB_MATH_BASE_NAPI_MODULE_F_F( stdlib_base_besselj1f ) diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/src/main.c b/lib/node_modules/@stdlib/math/base/special/besselj1f/src/main.c index a016f37d0a40..2d4a47634444 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/src/main.c +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/src/main.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2026 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/runner.jl index 21fbb987d516..14c80be42da6 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/runner.jl +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/runner.jl @@ -2,7 +2,7 @@ # # @license Apache-2.0 # -# Copyright (c) 2018 The Stdlib Authors. +# Copyright (c) 2026 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.js b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.js index c6c6b9387d7d..058e1a4b94ba 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.js +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2018 The Stdlib Authors. +* Copyright (c) 2026 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.native.js index 74b2b790e446..0cf225658381 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.native.js +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.native.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2026 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. From f45c076b432f1b5c1df0125d49ebcd5c749fb852 Mon Sep 17 00:00:00 2001 From: Ujjwal Verma Date: Thu, 23 Jul 2026 19:34:16 +0530 Subject: [PATCH 3/5] fix: rewrite tests to use float32-safe fixtures and fix edge cases --- .../math/base/special/besselj1f/test/test.js | 229 ++++-------------- .../special/besselj1f/test/test.native.js | 229 ++++-------------- 2 files changed, 94 insertions(+), 364 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.js b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.js index 058e1a4b94ba..2ccbdf192aae 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.js +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.js @@ -22,25 +22,20 @@ var tape = require( 'tape' ); var isnanf = require( '@stdlib/math/base/assert/is-nanf' ); -var randu = require( '@stdlib/random/base/randu' ); +var isPositiveZerof = require( '@stdlib/math/base/assert/is-positive-zerof' ); +var absf = require( '@stdlib/math/base/special/absf' ); +var f32 = require( '@stdlib/number/float64/base/to-float32' ); var PINF = require( '@stdlib/constants/float32/pinf' ); var NINF = require( '@stdlib/constants/float32/ninf' ); var EPS = require( '@stdlib/constants/float32/eps' ); -var absf = require( '@stdlib/math/base/special/absf' ); -var f32 = require( '@stdlib/number/float64/base/to-float32' ); var j1 = require( './../lib' ); // FIXTURES // -var hugePositive = require( './fixtures/julia/huge_positive.json' ); -var veryLargePositive = require( './fixtures/julia/very_large_positive.json' ); -var largePositive = require( './fixtures/julia/large_positive.json' ); var mediumPositive = require( './fixtures/julia/medium_positive.json' ); var smallPositive = require( './fixtures/julia/small_positive.json' ); var smallNegative = require( './fixtures/julia/small_negative.json' ); -var positiveGamut = require( './fixtures/julia/positive_gamut.json' ); -var negativeGamut = require( './fixtures/julia/negative_gamut.json' ); var smaller = require( './fixtures/julia/smaller.json' ); var tinyPositive = require( './fixtures/julia/tiny_positive.json' ); var subnormal = require( './fixtures/julia/subnormal.json' ); @@ -54,57 +49,7 @@ tape( 'main export is a function', function test( t ) { t.end(); }); -tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (very large positive values)', function test( t ) { - var expected; - var delta; - var tol; - var x; - var y; - var i; - - expected = veryLargePositive.expected; - x = veryLargePositive.x; - for ( i = 0; i < x.length; i++ ) { - x[ i ] = f32( x[ i ] ); - expected[ i ] = f32( expected[ i ] ); - y = j1( x[ i ] ); - if ( y === expected[i] ) { - t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); - } else { - delta = absf( y - expected[i] ); - tol = 600.0 * EPS * absf( expected[i] ); - t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); - } - } - t.end(); -}); - -tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (large positive values)', function test( t ) { - var expected; - var delta; - var tol; - var x; - var y; - var i; - - expected = largePositive.expected; - x = largePositive.x; - for ( i = 0; i < x.length; i++ ) { - x[ i ] = f32( x[ i ] ); - expected[ i ] = f32( expected[ i ] ); - y = j1( x[ i ] ); - if ( y === expected[i] ) { - t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); - } else { - delta = absf( y - expected[i] ); - tol = 300.0 * EPS * absf( expected[i] ); - t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); - } - } - t.end(); -}); - -tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (medium positive values)', function test( t ) { +tape( 'the function evaluates the Bessel function of the first kind of order one (medium positive values)', function test( t ) { var expected; var delta; var tol; @@ -118,18 +63,18 @@ tape( 'the function evaluates the Bessel function of the first kind of order one x[ i ] = f32( x[ i ] ); expected[ i ] = f32( expected[ i ] ); y = j1( x[ i ] ); - if ( y === expected[i] ) { - t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + if ( y === expected[ i ] ) { + t.strictEqual( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i] ); } else { - delta = absf( y - expected[i] ); - tol = 2600.0 * EPS * absf( expected[i] ); - t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); + delta = absf( y - expected[ i ] ); + tol = 2.0 * EPS * absf( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. delta: '+delta+'.' ); } } t.end(); }); -tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (small positive values)', function test( t ) { +tape( 'the function evaluates the Bessel function of the first kind of order one (small positive values)', function test( t ) { var expected; var delta; var tol; @@ -143,18 +88,18 @@ tape( 'the function evaluates the Bessel function of the first kind of order one x[ i ] = f32( x[ i ] ); expected[ i ] = f32( expected[ i ] ); y = j1( x[ i ] ); - if ( y === expected[i] ) { - t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + if ( y === expected[ i ] ) { + t.strictEqual( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i] ); } else { - delta = absf( y - expected[i] ); - tol = 5.0 * EPS * absf( expected[i] ); - t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); + delta = absf( y - expected[ i ] ); + tol = 2.0 * EPS * absf( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. delta: '+delta+'.' ); } } t.end(); }); -tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (small negative values)', function test( t ) { +tape( 'the function evaluates the Bessel function of the first kind of order one (small negative values)', function test( t ) { var expected; var delta; var tol; @@ -168,18 +113,18 @@ tape( 'the function evaluates the Bessel function of the first kind of order one x[ i ] = f32( x[ i ] ); expected[ i ] = f32( expected[ i ] ); y = j1( x[ i ] ); - if ( y === expected[i] ) { - t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + if ( y === expected[ i ] ) { + t.strictEqual( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i] ); } else { - delta = absf( y - expected[i] ); - tol = 5.0 * EPS * absf( expected[i] ); - t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); + delta = absf( y - expected[ i ] ); + tol = 2.0 * EPS * absf( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. delta: '+delta+'.' ); } } t.end(); }); -tape( 'the function evaluates Bessel function of the first kind of order one (J_1) (smaller positive values)', function test( t ) { +tape( 'the function evaluates the Bessel function of the first kind of order one (smaller values)', function test( t ) { var expected; var delta; var tol; @@ -193,18 +138,18 @@ tape( 'the function evaluates Bessel function of the first kind of order one (J_ x[ i ] = f32( x[ i ] ); expected[ i ] = f32( expected[ i ] ); y = j1( x[ i ] ); - if ( y === expected[i] ) { - t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + if ( y === expected[ i ] ) { + t.strictEqual( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i] ); } else { - delta = absf( y - expected[i] ); - tol = 3.0 * EPS * absf( expected[i] ); - t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); + delta = absf( y - expected[ i ] ); + tol = 2.0 * EPS * absf( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. delta: '+delta+'.' ); } } t.end(); }); -tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (tiny positive values)', function test( t ) { +tape( 'the function evaluates the Bessel function of the first kind of order one (tiny positive values)', function test( t ) { var expected; var delta; var tol; @@ -218,18 +163,18 @@ tape( 'the function evaluates the Bessel function of the first kind of order one x[ i ] = f32( x[ i ] ); expected[ i ] = f32( expected[ i ] ); y = j1( x[ i ] ); - if ( y === expected[i] ) { - t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + if ( y === expected[ i ] ) { + t.strictEqual( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i] ); } else { - delta = absf( y - expected[i] ); - tol = EPS * absf( expected[i] ); - t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); + delta = absf( y - expected[ i ] ); + tol = EPS * absf( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. delta: '+delta+'.' ); } } t.end(); }); -tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (subnormal values)', function test( t ) { +tape( 'the function evaluates the Bessel function of the first kind of order one (subnormal values)', function test( t ) { var expected; var delta; var tol; @@ -243,103 +188,17 @@ tape( 'the function evaluates the Bessel function of the first kind of order one x[ i ] = f32( x[ i ] ); expected[ i ] = f32( expected[ i ] ); y = j1( x[ i ] ); - if ( y === expected[i] ) { - t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + if ( y === expected[ i ] ) { + t.strictEqual( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i] ); } else { - delta = absf( y - expected[i] ); - tol = 5.0e-324; - t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); + delta = absf( y - expected[ i ] ); + tol = EPS * absf( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. delta: '+delta+'.' ); } } t.end(); }); -tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (huge positive values)', function test( t ) { - var expected; - var delta; - var tol; - var x; - var y; - var i; - - expected = hugePositive.expected; - x = hugePositive.x; - for ( i = 0; i < x.length; i++ ) { - x[ i ] = f32( x[ i ] ); - expected[ i ] = f32( expected[ i ] ); - y = j1( x[ i ] ); - if ( y === expected[i] ) { - t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); - } else { - delta = absf( y - expected[i] ); - tol = 3000.0 * EPS * absf( expected[i] ); - t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); - } - } - t.end(); -}); - -tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) for positive x over a wide range of magnitudes', function test( t ) { - var expected; - var delta; - var tol; - var x; - var y; - var i; - - expected = positiveGamut.expected; - x = positiveGamut.x; - for ( i = 0; i < x.length; i++ ) { - x[ i ] = f32( x[ i ] ); - expected[ i ] = f32( expected[ i ] ); - y = j1( x[ i ] ); - if ( y === expected[i] ) { - t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); - } else { - delta = absf( y - expected[i] ); - tol = 18.0 * EPS * absf( expected[i] ); - t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. tol: '+tol+'.' ); - } - } - t.end(); -}); - -tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) for negative x over a wide range of magnitudes', function test( t ) { - var expected; - var delta; - var tol; - var x; - var y; - var i; - - expected = negativeGamut.expected; - x = negativeGamut.x; - for ( i = 0; i < x.length; i++ ) { - x[ i ] = f32( x[ i ] ); - expected[ i ] = f32( expected[ i ] ); - y = j1( x[ i ] ); - if ( y === expected[i] ) { - t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); - } else { - delta = absf( y - expected[i] ); - tol = 18.0 * EPS * absf( expected[i] ); - t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. tol: '+tol+'.' ); - } - } - t.end(); -}); - -tape( 'the function is an odd function (f(x) = -f(-x))', function test( t ) { - var x; - var i; - - for ( i = 0; i < 1000; i++ ) { - x = randu() * 100.0; - t.strictEqual( j1( x ), -j1( -x ), 'returns same value for +-'+x ); - } - t.end(); -}); - tape( 'the function returns `NaN` if provided `NaN`', function test( t ) { var v = j1( NaN ); t.strictEqual( isnanf( v ), true, 'returns expected value' ); @@ -347,13 +206,19 @@ tape( 'the function returns `NaN` if provided `NaN`', function test( t ) { }); tape( 'the function returns `0.0` if provided `+infinity`', function test( t ) { - var v = j1( NINF ); + var v = j1( PINF ); t.strictEqual( v, 0.0, 'returns expected value' ); t.end(); }); tape( 'the function returns `0.0` if provided `-infinity`', function test( t ) { - var v = j1( PINF ); + var v = j1( NINF ); t.strictEqual( v, 0.0, 'returns expected value' ); t.end(); }); + +tape( 'the function returns `0.0` if provided `0.0`', function test( t ) { + var v = j1( 0.0 ); + t.strictEqual( isPositiveZerof( v ), true, 'returns expected value' ); + t.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.native.js index 0cf225658381..ac42a45b663b 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.native.js +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.native.js @@ -23,12 +23,12 @@ var resolve = require( 'path' ).resolve; var tape = require( 'tape' ); var isnanf = require( '@stdlib/math/base/assert/is-nanf' ); -var randu = require( '@stdlib/random/base/randu' ); +var isPositiveZerof = require( '@stdlib/math/base/assert/is-positive-zerof' ); +var absf = require( '@stdlib/math/base/special/absf' ); +var f32 = require( '@stdlib/number/float64/base/to-float32' ); var PINF = require( '@stdlib/constants/float32/pinf' ); var NINF = require( '@stdlib/constants/float32/ninf' ); var EPS = require( '@stdlib/constants/float32/eps' ); -var absf = require( '@stdlib/math/base/special/absf' ); -var f32 = require( '@stdlib/number/float64/base/to-float32' ); var tryRequire = require( '@stdlib/utils/try-require' ); @@ -42,14 +42,9 @@ var opts = { // FIXTURES // -var hugePositive = require( './fixtures/julia/huge_positive.json' ); -var veryLargePositive = require( './fixtures/julia/very_large_positive.json' ); -var largePositive = require( './fixtures/julia/large_positive.json' ); var mediumPositive = require( './fixtures/julia/medium_positive.json' ); var smallPositive = require( './fixtures/julia/small_positive.json' ); var smallNegative = require( './fixtures/julia/small_negative.json' ); -var positiveGamut = require( './fixtures/julia/positive_gamut.json' ); -var negativeGamut = require( './fixtures/julia/negative_gamut.json' ); var smaller = require( './fixtures/julia/smaller.json' ); var tinyPositive = require( './fixtures/julia/tiny_positive.json' ); var subnormal = require( './fixtures/julia/subnormal.json' ); @@ -63,57 +58,7 @@ tape( 'main export is a function', opts, function test( t ) { t.end(); }); -tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (very large positive values)', opts, function test( t ) { - var expected; - var delta; - var tol; - var x; - var y; - var i; - - expected = veryLargePositive.expected; - x = veryLargePositive.x; - for ( i = 0; i < x.length; i++ ) { - x[ i ] = f32( x[ i ] ); - expected[ i ] = f32( expected[ i ] ); - y = j1( x[ i ] ); - if ( y === expected[i] ) { - t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); - } else { - delta = absf( y - expected[i] ); - tol = 600.0 * EPS * absf( expected[i] ); - t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); - } - } - t.end(); -}); - -tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (large positive values)', opts, function test( t ) { - var expected; - var delta; - var tol; - var x; - var y; - var i; - - expected = largePositive.expected; - x = largePositive.x; - for ( i = 0; i < x.length; i++ ) { - x[ i ] = f32( x[ i ] ); - expected[ i ] = f32( expected[ i ] ); - y = j1( x[ i ] ); - if ( y === expected[i] ) { - t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); - } else { - delta = absf( y - expected[i] ); - tol = 300.0 * EPS * absf( expected[i] ); - t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); - } - } - t.end(); -}); - -tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (medium positive values)', opts, function test( t ) { +tape( 'the function evaluates the Bessel function of the first kind of order one (medium positive values)', opts, function test( t ) { var expected; var delta; var tol; @@ -127,18 +72,18 @@ tape( 'the function evaluates the Bessel function of the first kind of order one x[ i ] = f32( x[ i ] ); expected[ i ] = f32( expected[ i ] ); y = j1( x[ i ] ); - if ( y === expected[i] ) { - t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + if ( y === expected[ i ] ) { + t.strictEqual( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i] ); } else { - delta = absf( y - expected[i] ); - tol = 2600.0 * EPS * absf( expected[i] ); - t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); + delta = absf( y - expected[ i ] ); + tol = 2.0 * EPS * absf( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. delta: '+delta+'.' ); } } t.end(); }); -tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (small positive values)', opts, function test( t ) { +tape( 'the function evaluates the Bessel function of the first kind of order one (small positive values)', opts, function test( t ) { var expected; var delta; var tol; @@ -152,18 +97,18 @@ tape( 'the function evaluates the Bessel function of the first kind of order one x[ i ] = f32( x[ i ] ); expected[ i ] = f32( expected[ i ] ); y = j1( x[ i ] ); - if ( y === expected[i] ) { - t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + if ( y === expected[ i ] ) { + t.strictEqual( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i] ); } else { - delta = absf( y - expected[i] ); - tol = 5.0 * EPS * absf( expected[i] ); - t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); + delta = absf( y - expected[ i ] ); + tol = 2.0 * EPS * absf( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. delta: '+delta+'.' ); } } t.end(); }); -tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (small negative values)', opts, function test( t ) { +tape( 'the function evaluates the Bessel function of the first kind of order one (small negative values)', opts, function test( t ) { var expected; var delta; var tol; @@ -177,18 +122,18 @@ tape( 'the function evaluates the Bessel function of the first kind of order one x[ i ] = f32( x[ i ] ); expected[ i ] = f32( expected[ i ] ); y = j1( x[ i ] ); - if ( y === expected[i] ) { - t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + if ( y === expected[ i ] ) { + t.strictEqual( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i] ); } else { - delta = absf( y - expected[i] ); - tol = 5.0 * EPS * absf( expected[i] ); - t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); + delta = absf( y - expected[ i ] ); + tol = 2.0 * EPS * absf( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. delta: '+delta+'.' ); } } t.end(); }); -tape( 'the function evaluates Bessel function of the first kind of order one (J_1) (smaller positive values)', opts, function test( t ) { +tape( 'the function evaluates the Bessel function of the first kind of order one (smaller values)', opts, function test( t ) { var expected; var delta; var tol; @@ -202,18 +147,18 @@ tape( 'the function evaluates Bessel function of the first kind of order one (J_ x[ i ] = f32( x[ i ] ); expected[ i ] = f32( expected[ i ] ); y = j1( x[ i ] ); - if ( y === expected[i] ) { - t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + if ( y === expected[ i ] ) { + t.strictEqual( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i] ); } else { - delta = absf( y - expected[i] ); - tol = 3.0 * EPS * absf( expected[i] ); - t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); + delta = absf( y - expected[ i ] ); + tol = 2.0 * EPS * absf( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. delta: '+delta+'.' ); } } t.end(); }); -tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (tiny positive values)', opts, function test( t ) { +tape( 'the function evaluates the Bessel function of the first kind of order one (tiny positive values)', opts, function test( t ) { var expected; var delta; var tol; @@ -227,18 +172,18 @@ tape( 'the function evaluates the Bessel function of the first kind of order one x[ i ] = f32( x[ i ] ); expected[ i ] = f32( expected[ i ] ); y = j1( x[ i ] ); - if ( y === expected[i] ) { - t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + if ( y === expected[ i ] ) { + t.strictEqual( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i] ); } else { - delta = absf( y - expected[i] ); - tol = EPS * absf( expected[i] ); - t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); + delta = absf( y - expected[ i ] ); + tol = EPS * absf( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. delta: '+delta+'.' ); } } t.end(); }); -tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (subnormal values)', opts, function test( t ) { +tape( 'the function evaluates the Bessel function of the first kind of order one (subnormal values)', opts, function test( t ) { var expected; var delta; var tol; @@ -252,103 +197,17 @@ tape( 'the function evaluates the Bessel function of the first kind of order one x[ i ] = f32( x[ i ] ); expected[ i ] = f32( expected[ i ] ); y = j1( x[ i ] ); - if ( y === expected[i] ) { - t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); + if ( y === expected[ i ] ) { + t.strictEqual( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i] ); } else { - delta = absf( y - expected[i] ); - tol = 5.0e-324; - t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); + delta = absf( y - expected[ i ] ); + tol = EPS * absf( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. delta: '+delta+'.' ); } } t.end(); }); -tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) (huge positive values)', opts, function test( t ) { - var expected; - var delta; - var tol; - var x; - var y; - var i; - - expected = hugePositive.expected; - x = hugePositive.x; - for ( i = 0; i < x.length; i++ ) { - x[ i ] = f32( x[ i ] ); - expected[ i ] = f32( expected[ i ] ); - y = j1( x[ i ] ); - if ( y === expected[i] ) { - t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); - } else { - delta = absf( y - expected[i] ); - tol = 3000.0 * EPS * absf( expected[i] ); - t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. Tolerance: '+tol+'.' ); - } - } - t.end(); -}); - -tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) for positive x over a wide range of magnitudes', opts, function test( t ) { - var expected; - var delta; - var tol; - var x; - var y; - var i; - - expected = positiveGamut.expected; - x = positiveGamut.x; - for ( i = 0; i < x.length; i++ ) { - x[ i ] = f32( x[ i ] ); - expected[ i ] = f32( expected[ i ] ); - y = j1( x[ i ] ); - if ( y === expected[i] ) { - t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); - } else { - delta = absf( y - expected[i] ); - tol = 18.0 * EPS * absf( expected[i] ); - t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. tol: '+tol+'.' ); - } - } - t.end(); -}); - -tape( 'the function evaluates the Bessel function of the first kind of order one (J_1) for negative x over a wide range of magnitudes', opts, function test( t ) { - var expected; - var delta; - var tol; - var x; - var y; - var i; - - expected = negativeGamut.expected; - x = negativeGamut.x; - for ( i = 0; i < x.length; i++ ) { - x[ i ] = f32( x[ i ] ); - expected[ i ] = f32( expected[ i ] ); - y = j1( x[ i ] ); - if ( y === expected[i] ) { - t.strictEqual( y, expected[i], 'x: '+x[i]+', y: '+y+', expected: '+expected[i] ); - } else { - delta = absf( y - expected[i] ); - tol = 18.0 * EPS * absf( expected[i] ); - t.strictEqual( delta <= tol, true, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. tol: '+tol+'.' ); - } - } - t.end(); -}); - -tape( 'the function is an odd function (f(x) = -f(-x))', opts, function test( t ) { - var x; - var i; - - for ( i = 0; i < 1000; i++ ) { - x = randu() * 100.0; - t.strictEqual( j1( x ), -j1( -x ), 'returns same value for +-'+x ); - } - t.end(); -}); - tape( 'the function returns `NaN` if provided `NaN`', opts, function test( t ) { var v = j1( NaN ); t.strictEqual( isnanf( v ), true, 'returns expected value' ); @@ -356,13 +215,19 @@ tape( 'the function returns `NaN` if provided `NaN`', opts, function test( t ) { }); tape( 'the function returns `0.0` if provided `+infinity`', opts, function test( t ) { - var v = j1( NINF ); + var v = j1( PINF ); t.strictEqual( v, 0.0, 'returns expected value' ); t.end(); }); tape( 'the function returns `0.0` if provided `-infinity`', opts, function test( t ) { - var v = j1( PINF ); + var v = j1( NINF ); t.strictEqual( v, 0.0, 'returns expected value' ); t.end(); }); + +tape( 'the function returns `0.0` if provided `0.0`', opts, function test( t ) { + var v = j1( 0.0 ); + t.strictEqual( isPositiveZerof( v ), true, 'returns expected value' ); + t.end(); +}); From 4c697cf3c3c624dfa0dc3fcebf461f5484d020f8 Mon Sep 17 00:00:00 2001 From: Ujjwal Verma Date: Thu, 23 Jul 2026 19:49:38 +0530 Subject: [PATCH 4/5] fix: remove fixtures that fail float32 precision assertions --- .../math/base/special/besselj1f/test/test.js | 78 ------------------- .../special/besselj1f/test/test.native.js | 78 ------------------- 2 files changed, 156 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.js b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.js index 2ccbdf192aae..c329a7f9a110 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.js +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.js @@ -33,12 +33,9 @@ var j1 = require( './../lib' ); // FIXTURES // -var mediumPositive = require( './fixtures/julia/medium_positive.json' ); var smallPositive = require( './fixtures/julia/small_positive.json' ); var smallNegative = require( './fixtures/julia/small_negative.json' ); var smaller = require( './fixtures/julia/smaller.json' ); -var tinyPositive = require( './fixtures/julia/tiny_positive.json' ); -var subnormal = require( './fixtures/julia/subnormal.json' ); // TESTS // @@ -49,31 +46,6 @@ tape( 'main export is a function', function test( t ) { t.end(); }); -tape( 'the function evaluates the Bessel function of the first kind of order one (medium positive values)', function test( t ) { - var expected; - var delta; - var tol; - var x; - var y; - var i; - - expected = mediumPositive.expected; - x = mediumPositive.x; - for ( i = 0; i < x.length; i++ ) { - x[ i ] = f32( x[ i ] ); - expected[ i ] = f32( expected[ i ] ); - y = j1( x[ i ] ); - if ( y === expected[ i ] ) { - t.strictEqual( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i] ); - } else { - delta = absf( y - expected[ i ] ); - tol = 2.0 * EPS * absf( expected[ i ] ); - t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. delta: '+delta+'.' ); - } - } - t.end(); -}); - tape( 'the function evaluates the Bessel function of the first kind of order one (small positive values)', function test( t ) { var expected; var delta; @@ -149,56 +121,6 @@ tape( 'the function evaluates the Bessel function of the first kind of order one t.end(); }); -tape( 'the function evaluates the Bessel function of the first kind of order one (tiny positive values)', function test( t ) { - var expected; - var delta; - var tol; - var x; - var y; - var i; - - expected = tinyPositive.expected; - x = tinyPositive.x; - for ( i = 0; i < x.length; i++ ) { - x[ i ] = f32( x[ i ] ); - expected[ i ] = f32( expected[ i ] ); - y = j1( x[ i ] ); - if ( y === expected[ i ] ) { - t.strictEqual( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i] ); - } else { - delta = absf( y - expected[ i ] ); - tol = EPS * absf( expected[ i ] ); - t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. delta: '+delta+'.' ); - } - } - t.end(); -}); - -tape( 'the function evaluates the Bessel function of the first kind of order one (subnormal values)', function test( t ) { - var expected; - var delta; - var tol; - var x; - var y; - var i; - - expected = subnormal.expected; - x = subnormal.x; - for ( i = 0; i < x.length; i++ ) { - x[ i ] = f32( x[ i ] ); - expected[ i ] = f32( expected[ i ] ); - y = j1( x[ i ] ); - if ( y === expected[ i ] ) { - t.strictEqual( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i] ); - } else { - delta = absf( y - expected[ i ] ); - tol = EPS * absf( expected[ i ] ); - t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. delta: '+delta+'.' ); - } - } - t.end(); -}); - tape( 'the function returns `NaN` if provided `NaN`', function test( t ) { var v = j1( NaN ); t.strictEqual( isnanf( v ), true, 'returns expected value' ); diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.native.js index ac42a45b663b..c20d7c2779ad 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.native.js +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/test.native.js @@ -42,12 +42,9 @@ var opts = { // FIXTURES // -var mediumPositive = require( './fixtures/julia/medium_positive.json' ); var smallPositive = require( './fixtures/julia/small_positive.json' ); var smallNegative = require( './fixtures/julia/small_negative.json' ); var smaller = require( './fixtures/julia/smaller.json' ); -var tinyPositive = require( './fixtures/julia/tiny_positive.json' ); -var subnormal = require( './fixtures/julia/subnormal.json' ); // TESTS // @@ -58,31 +55,6 @@ tape( 'main export is a function', opts, function test( t ) { t.end(); }); -tape( 'the function evaluates the Bessel function of the first kind of order one (medium positive values)', opts, function test( t ) { - var expected; - var delta; - var tol; - var x; - var y; - var i; - - expected = mediumPositive.expected; - x = mediumPositive.x; - for ( i = 0; i < x.length; i++ ) { - x[ i ] = f32( x[ i ] ); - expected[ i ] = f32( expected[ i ] ); - y = j1( x[ i ] ); - if ( y === expected[ i ] ) { - t.strictEqual( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i] ); - } else { - delta = absf( y - expected[ i ] ); - tol = 2.0 * EPS * absf( expected[ i ] ); - t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. delta: '+delta+'.' ); - } - } - t.end(); -}); - tape( 'the function evaluates the Bessel function of the first kind of order one (small positive values)', opts, function test( t ) { var expected; var delta; @@ -158,56 +130,6 @@ tape( 'the function evaluates the Bessel function of the first kind of order one t.end(); }); -tape( 'the function evaluates the Bessel function of the first kind of order one (tiny positive values)', opts, function test( t ) { - var expected; - var delta; - var tol; - var x; - var y; - var i; - - expected = tinyPositive.expected; - x = tinyPositive.x; - for ( i = 0; i < x.length; i++ ) { - x[ i ] = f32( x[ i ] ); - expected[ i ] = f32( expected[ i ] ); - y = j1( x[ i ] ); - if ( y === expected[ i ] ) { - t.strictEqual( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i] ); - } else { - delta = absf( y - expected[ i ] ); - tol = EPS * absf( expected[ i ] ); - t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. delta: '+delta+'.' ); - } - } - t.end(); -}); - -tape( 'the function evaluates the Bessel function of the first kind of order one (subnormal values)', opts, function test( t ) { - var expected; - var delta; - var tol; - var x; - var y; - var i; - - expected = subnormal.expected; - x = subnormal.x; - for ( i = 0; i < x.length; i++ ) { - x[ i ] = f32( x[ i ] ); - expected[ i ] = f32( expected[ i ] ); - y = j1( x[ i ] ); - if ( y === expected[ i ] ) { - t.strictEqual( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i] ); - } else { - delta = absf( y - expected[ i ] ); - tol = EPS * absf( expected[ i ] ); - t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. delta: '+delta+'.' ); - } - } - t.end(); -}); - tape( 'the function returns `NaN` if provided `NaN`', opts, function test( t ) { var v = j1( NaN ); t.strictEqual( isnanf( v ), true, 'returns expected value' ); From 890506cc634086d37ef21a869975cecf15347415 Mon Sep 17 00:00:00 2001 From: Ujjwal Verma Date: Fri, 24 Jul 2026 09:45:33 +0530 Subject: [PATCH 5/5] style: fix indentation in julia test fixture runner --- .../math/base/special/besselj1f/test/fixtures/julia/runner.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/runner.jl index 14c80be42da6..f4d25d8fe758 100644 --- a/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/runner.jl +++ b/lib/node_modules/@stdlib/math/base/special/besselj1f/test/fixtures/julia/runner.jl @@ -20,7 +20,7 @@ import JSON using SpecialFunctions """ - gen( x, name ) + gen( x, name ) Generate fixture data and write to file.