diff --git a/lib/node_modules/@stdlib/math/base/special/covercosf/README.md b/lib/node_modules/@stdlib/math/base/special/covercosf/README.md
new file mode 100644
index 000000000000..504452d9b317
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/covercosf/README.md
@@ -0,0 +1,200 @@
+
+
+# Covercosine
+
+> Compute the [coversed cosine][coversed-cosine] of a single-precision floating-point number (in radians).
+
+
+
+The [coversed cosine][coversed-cosine] is defined as
+
+
+
+```math
+\mathop{\mathrm{covercos}}(\theta) = 1 + \sin \theta
+```
+
+
+
+
+
+
+
+
+
+## Usage
+
+```javascript
+var covercosf = require( '@stdlib/math/base/special/covercosf' );
+```
+
+#### covercosf( x )
+
+Computes the [coversed cosine][coversed-cosine] of a single-precision floating-point number (in radians).
+
+```javascript
+var v = covercosf( 0.0 );
+// returns 1.0
+
+v = covercosf( 3.141592653589793/2.0 );
+// returns 2.0
+
+v = covercosf( -3.141592653589793/6.0 );
+// returns 0.5
+```
+
+
+
+
+
+
+
+## Examples
+
+
+
+```javascript
+var uniform = require( '@stdlib/random/array/uniform' );
+var logEachMap = require( '@stdlib/console/log-each-map' );
+var TWO_PI = require( '@stdlib/constants/float32/two-pi' );
+var covercosf = require( '@stdlib/math/base/special/covercosf' );
+
+var opts = {
+ 'dtype': 'float32'
+};
+var x = uniform( 100, 0.0, TWO_PI, opts );
+
+logEachMap( 'covercosf(%0.4f) = %0.4f', x, covercosf );
+```
+
+
+
+
+
+
+
+* * *
+
+
+
+## C APIs
+
+
+
+
+
+
+
+
+
+
+
+### Usage
+
+```c
+#include "stdlib/math/base/special/covercosf.h"
+```
+
+#### stdlib_base_covercosf( x )
+
+Computes the [coversed cosine][coversed-cosine] of a single-precision floating-point number (in radians).
+
+```c
+float out = stdlib_base_covercosf( 0.0f );
+// returns 1.0f
+
+out = stdlib_base_covercosf( 3.141592653589793f / 2.0f );
+// returns 2.0f
+```
+
+The function accepts the following arguments:
+
+- **x**: `[in] float` input value.
+
+```c
+float stdlib_base_covercosf( const float x );
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+### Examples
+
+```c
+#include "stdlib/math/base/special/covercosf.h"
+#include
+
+int main( void ) {
+ const float x[] = { 0.0f, 0.523f, 0.785f, 1.047f, 3.14f };
+
+ float y;
+ int i;
+ for ( i = 0; i < 5; i++ ) {
+ y = stdlib_base_covercosf( x[ i ] );
+ printf( "covercosf(%f) = %f\n", x[ i ], y );
+ }
+}
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+[coversed-cosine]: https://en.wikipedia.org/wiki/Versine
+
+
+
+
+
+
+
+
diff --git a/lib/node_modules/@stdlib/math/base/special/covercosf/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/covercosf/benchmark/benchmark.js
new file mode 100644
index 000000000000..6e9358ba4319
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/covercosf/benchmark/benchmark.js
@@ -0,0 +1,54 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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 isnanf = require( '@stdlib/math/base/assert/is-nanf' );
+var pkg = require( './../package.json' ).name;
+var covercosf = require( './../lib' );
+
+
+// MAIN //
+
+bench( pkg, function benchmark( b ) {
+ var x;
+ var y;
+ var i;
+
+ x = uniform( 100, -10.0, 10.0, {
+ 'dtype': 'float32'
+ });
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ y = covercosf( x[ i%x.length ] );
+ if ( isnanf( y ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ }
+ b.toc();
+ if ( isnanf( y ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ b.pass( 'benchmark finished' );
+ b.end();
+});
diff --git a/lib/node_modules/@stdlib/math/base/special/covercosf/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/math/base/special/covercosf/benchmark/benchmark.native.js
new file mode 100644
index 000000000000..e0094bd94f82
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/covercosf/benchmark/benchmark.native.js
@@ -0,0 +1,63 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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 isnanf = require( '@stdlib/math/base/assert/is-nanf' );
+var tryRequire = require( '@stdlib/utils/try-require' );
+var pkg = require( './../package.json' ).name;
+
+
+// VARIABLES //
+
+var covercosf = tryRequire( resolve( __dirname, './../lib/native.js' ) );
+var opts = {
+ 'skip': ( covercosf instanceof Error )
+};
+
+
+// MAIN //
+
+bench( pkg+'::native', opts, function benchmark( b ) {
+ var x;
+ var y;
+ var i;
+
+ x = uniform( 100, -10.0, 10.0, {
+ 'dtype': 'float32'
+ });
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ y = covercosf( x[ i%x.length ] );
+ if ( isnanf( y ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ }
+ b.toc();
+ if ( isnanf( y ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ b.pass( 'benchmark finished' );
+ b.end();
+});
diff --git a/lib/node_modules/@stdlib/math/base/special/covercosf/benchmark/c/Makefile b/lib/node_modules/@stdlib/math/base/special/covercosf/benchmark/c/Makefile
new file mode 100644
index 000000000000..d564e8b2d6f9
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/covercosf/benchmark/c/Makefile
@@ -0,0 +1,127 @@
+#/
+# @license Apache-2.0
+#
+# Copyright (c) 2025 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/covercosf/benchmark/c/benchmark.c b/lib/node_modules/@stdlib/math/base/special/covercosf/benchmark/c/benchmark.c
new file mode 100644
index 000000000000..3587e77b585c
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/covercosf/benchmark/c/benchmark.c
@@ -0,0 +1,137 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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 "covercosf"
+#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 [min,max).
+*
+* @param min minimum value (inclusive)
+* @param max maximum value (exclusive)
+* @return random number
+*/
+static float random_uniform( const float min, const float max ) {
+ float v = (float)rand() / ( (float)RAND_MAX + 1.0f );
+ return min + ( v*(max-min) );
+}
+
+/**
+* Runs a benchmark.
+*
+* @return elapsed time in seconds
+*/
+static double benchmark( void ) {
+ float x[ 100 ];
+ double elapsed;
+ double t;
+ float y;
+ int i;
+
+ for ( i = 0; i < 100; i++ ) {
+ x[ i ] = random_uniform( -10.0f, 10.0f );
+ }
+
+ t = tic();
+ for ( i = 0; i < ITERATIONS; i++ ) {
+ y = 1.0f + sinf( 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/covercosf/benchmark/c/native/Makefile b/lib/node_modules/@stdlib/math/base/special/covercosf/benchmark/c/native/Makefile
new file mode 100644
index 000000000000..a4bd7b38fd74
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/covercosf/benchmark/c/native/Makefile
@@ -0,0 +1,146 @@
+#/
+# @license Apache-2.0
+#
+# Copyright (c) 2025 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/covercosf/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/math/base/special/covercosf/benchmark/c/native/benchmark.c
new file mode 100644
index 000000000000..2c26fa51e316
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/covercosf/benchmark/c/native/benchmark.c
@@ -0,0 +1,138 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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/covercosf.h"
+#include
+#include
+#include
+#include
+#include
+
+#define NAME "covercosf"
+#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 [min,max).
+*
+* @param min minimum value (inclusive)
+* @param max maximum value (exclusive)
+* @return random number
+*/
+static float random_uniform( const float min, const float max ) {
+ float v = (float)rand() / ( (float)RAND_MAX + 1.0f );
+ return min + ( v*(max-min) );
+}
+
+/**
+* Runs a benchmark.
+*
+* @return elapsed time in seconds
+*/
+static double benchmark( void ) {
+ float x[ 100 ];
+ double elapsed;
+ double t;
+ float y;
+ int i;
+
+ for ( i = 0; i < 100; i++ ) {
+ x[ i ] = random_uniform( -10.0f, 10.0f );
+ }
+
+ t = tic();
+ for ( i = 0; i < ITERATIONS; i++ ) {
+ y = stdlib_base_covercosf( 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/covercosf/binding.gyp b/lib/node_modules/@stdlib/math/base/special/covercosf/binding.gyp
new file mode 100644
index 000000000000..68a1ca11d160
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/covercosf/binding.gyp
@@ -0,0 +1,170 @@
+# @license Apache-2.0
+#
+# Copyright (c) 2025 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/covercosf/docs/repl.txt b/lib/node_modules/@stdlib/math/base/special/covercosf/docs/repl.txt
new file mode 100644
index 000000000000..70422b39fa26
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/covercosf/docs/repl.txt
@@ -0,0 +1,33 @@
+
+{{alias}}( x )
+ Computes the coversed cosine of a single-precision floating-point number
+ (in radians).
+
+ The coversed cosine is defined as `1 + sin(x)`.
+
+ Parameters
+ ----------
+ x: number
+ Input value (in radians).
+
+ Returns
+ -------
+ y: number
+ Coversed cosine.
+
+ Examples
+ --------
+ > var y = {{alias}}( 3.14 )
+ ~1.0016
+ > y = {{alias}}( -4.2 )
+ ~1.8716
+ > y = {{alias}}( -4.6 )
+ ~1.9937
+ > y = {{alias}}( 9.5 )
+ ~0.9248
+ > y = {{alias}}( -0.0 )
+ 1.0
+
+ See Also
+ --------
+
diff --git a/lib/node_modules/@stdlib/math/base/special/covercosf/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/covercosf/docs/types/index.d.ts
new file mode 100644
index 000000000000..132ab60ee609
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/covercosf/docs/types/index.d.ts
@@ -0,0 +1,48 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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 coversed cosine of a single-precision floating-point number (in radians).
+*
+* @param x - input value (in radians)
+* @returns coversed cosine
+*
+* @example
+* var v = covercosf( 0.0 );
+* // returns 1.0
+*
+* @example
+* var v = covercosf( 3.141592653589793/2.0 );
+* // returns 2.0
+*
+* @example
+* var v = covercosf( -3.141592653589793/6.0 );
+* // returns 0.5
+*
+* @example
+* var v = covercosf( NaN );
+* // returns NaN
+*/
+declare function covercosf( x: number ): number;
+
+
+// EXPORTS //
+
+export = covercosf;
diff --git a/lib/node_modules/@stdlib/math/base/special/covercosf/docs/types/test.ts b/lib/node_modules/@stdlib/math/base/special/covercosf/docs/types/test.ts
new file mode 100644
index 000000000000..6c6cd5ce32b6
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/covercosf/docs/types/test.ts
@@ -0,0 +1,44 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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 covercosf = require( './index' );
+
+
+// TESTS //
+
+// The function returns a number...
+{
+ covercosf( 8 ); // $ExpectType number
+}
+
+// The compiler throws an error if the function is provided a value other than a number...
+{
+ covercosf( true ); // $ExpectError
+ covercosf( false ); // $ExpectError
+ covercosf( null ); // $ExpectError
+ covercosf( undefined ); // $ExpectError
+ covercosf( '5' ); // $ExpectError
+ covercosf( [] ); // $ExpectError
+ covercosf( {} ); // $ExpectError
+ covercosf( ( x: number ): number => x ); // $ExpectError
+}
+
+// The compiler throws an error if the function is provided insufficient arguments...
+{
+ covercosf(); // $ExpectError
+}
diff --git a/lib/node_modules/@stdlib/math/base/special/covercosf/examples/c/Makefile b/lib/node_modules/@stdlib/math/base/special/covercosf/examples/c/Makefile
new file mode 100644
index 000000000000..25ced822f96a
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/covercosf/examples/c/Makefile
@@ -0,0 +1,146 @@
+#/
+# @license Apache-2.0
+#
+# Copyright (c) 2025 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/covercosf/examples/c/example.c b/lib/node_modules/@stdlib/math/base/special/covercosf/examples/c/example.c
new file mode 100644
index 000000000000..a2b5c95ce43c
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/covercosf/examples/c/example.c
@@ -0,0 +1,31 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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/covercosf.h"
+#include
+
+int main( void ) {
+ const float x[] = { 0.0f, 0.523f, 0.785f, 1.047f, 3.14f };
+
+ float y;
+ int i;
+ for ( i = 0; i < 5; i++ ) {
+ y = stdlib_base_covercosf( x[ i ] );
+ printf( "covercosf(%f) = %f\n", x[ i ], y );
+ }
+}
diff --git a/lib/node_modules/@stdlib/math/base/special/covercosf/examples/index.js b/lib/node_modules/@stdlib/math/base/special/covercosf/examples/index.js
new file mode 100644
index 000000000000..f7a7eccf4bce
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/covercosf/examples/index.js
@@ -0,0 +1,31 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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 TWO_PI = require( '@stdlib/constants/float32/two-pi' );
+var covercosf = require( './../lib' );
+
+var opts = {
+ 'dtype': 'float32'
+};
+var x = uniform( 100, 0.0, TWO_PI, opts );
+
+logEachMap( 'covercosf(%0.4f) = %0.4f', x, covercosf );
diff --git a/lib/node_modules/@stdlib/math/base/special/covercosf/include.gypi b/lib/node_modules/@stdlib/math/base/special/covercosf/include.gypi
new file mode 100644
index 000000000000..ecfaf82a3279
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/covercosf/include.gypi
@@ -0,0 +1,53 @@
+# @license Apache-2.0
+#
+# Copyright (c) 2025 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",
+ "covercos",
+ "covercosf",
+ "covercosin",
+ "covercosine",
+ "coversed",
+ "covercosinus",
+ "cvc",
+ "versed",
+ "cosine",
+ "cos",
+ "sine",
+ "sin",
+ "trig",
+ "trigonometry",
+ "radians",
+ "angle"
+ ],
+ "__stdlib__": {
+ "scaffold": {
+ "$schema": "math/base@v1.0",
+ "base_alias": "covercos",
+ "alias": "covercosf",
+ "pkg_desc": "compute the coversed cosine of a single-precision floating-point number (in radians)",
+ "desc": "computes the coversed cosine of a single-precision floating-point number (in radians)",
+ "short_desc": "coversed cosine",
+ "parameters": [
+ {
+ "name": "x",
+ "desc": "input value (in radians)",
+ "type": {
+ "javascript": "number",
+ "jsdoc": "number",
+ "c": "float",
+ "dtype": "float32"
+ },
+ "domain": [
+ {
+ "min": "-infinity",
+ "max": "infinity"
+ }
+ ],
+ "rand": {
+ "prng": "random/base/uniform",
+ "parameters": [
+ -10,
+ 10
+ ]
+ },
+ "example_values": [
+ 64,
+ 27,
+ 0,
+ 0.1,
+ -9,
+ 8,
+ -1,
+ 125,
+ -10.2,
+ 11.3,
+ -12.4,
+ 3.5,
+ -1.6,
+ 15.7,
+ -16,
+ 17.9,
+ -188,
+ 19.11,
+ -200,
+ 21.15
+ ]
+ }
+ ],
+ "output_policy": "real_floating_point_and_generic",
+ "returns": {
+ "desc": "coversed cosine",
+ "type": {
+ "javascript": "number",
+ "jsdoc": "number",
+ "c": "float",
+ "dtype": "float32"
+ }
+ },
+ "keywords": [
+ "covercos",
+ "covercosf",
+ "covercosin",
+ "covercosine",
+ "coversed",
+ "covercosinus",
+ "cvc",
+ "versed",
+ "cosine",
+ "cos",
+ "sine",
+ "sin",
+ "trig",
+ "trigonometry",
+ "radians",
+ "angle"
+ ],
+ "extra_keywords": []
+ }
+ }
+}
diff --git a/lib/node_modules/@stdlib/math/base/special/covercosf/src/Makefile b/lib/node_modules/@stdlib/math/base/special/covercosf/src/Makefile
new file mode 100644
index 000000000000..7733b6180cb4
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/covercosf/src/Makefile
@@ -0,0 +1,70 @@
+#/
+# @license Apache-2.0
+#
+# Copyright (c) 2025 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/covercosf/src/addon.c b/lib/node_modules/@stdlib/math/base/special/covercosf/src/addon.c
new file mode 100644
index 000000000000..62b42d953c71
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/covercosf/src/addon.c
@@ -0,0 +1,22 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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/covercosf.h"
+#include "stdlib/math/base/napi/unary.h"
+
+STDLIB_MATH_BASE_NAPI_MODULE_F_F( stdlib_base_covercosf )
diff --git a/lib/node_modules/@stdlib/math/base/special/covercosf/src/main.c b/lib/node_modules/@stdlib/math/base/special/covercosf/src/main.c
new file mode 100644
index 000000000000..5796b5eacce0
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/covercosf/src/main.c
@@ -0,0 +1,34 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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/covercosf.h"
+#include "stdlib/math/base/special/sinf.h"
+
+/**
+* Computes the coversed cosine of a single-precision floating-point number (in radians).
+*
+* @param x input value (in radians)
+* @return coversed cosine
+*
+* @example
+* float y = stdlib_base_covercosf( 3.141592653589793f / 2.0f );
+* // returns 2.0f
+*/
+float stdlib_base_covercosf( const float x ) {
+ return 1.0f + stdlib_base_sinf( x );
+}
diff --git a/lib/node_modules/@stdlib/math/base/special/covercosf/test/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/covercosf/test/fixtures/julia/REQUIRE
new file mode 100644
index 000000000000..308c3be89c85
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/covercosf/test/fixtures/julia/REQUIRE
@@ -0,0 +1,2 @@
+julia 1.5
+JSON 0.21
diff --git a/lib/node_modules/@stdlib/math/base/special/covercosf/test/fixtures/julia/huge_negative.json b/lib/node_modules/@stdlib/math/base/special/covercosf/test/fixtures/julia/huge_negative.json
new file mode 100644
index 000000000000..cfe9126f07cb
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/covercosf/test/fixtures/julia/huge_negative.json
@@ -0,0 +1 @@
+{"expected":[0.89171827,0.8690233,0.7403033,0.6160575,0.4984268,0.2840206,0.29096806,0.12728584,0.13216275,0.030436337,0.00031888485,0.00011789799,1.4841557e-5,9.894371e-6,0.14782691,0.14268774,0.13763255,0.13266194,0.5252253,0.5165343,1.0504899,1.0405986,1.0307035,1.0208054,1.0109051,1.0010039,0.99110246,1.8962518,1.8918161,1.8872931,1.882683,1.8779864,1.8732038,1.8683355,1.8633821,1.8302269,1.8357054,1.8411021,1.8464162,1.8516474,0.89914906,1.8618588,0.9188696,1.8717322,0.93862194,1.8812637,0.95839834,0.08249676,0.9781911,0.09055233,0.99799234,0.09896457,1.0177944,0.10773015,0.20494294,0.11684561,0.19308841,0.12630743,0.18155026,0.1361118,0.17033315,0.14625502,0.15944135,1.1215284,0.14887917,1.1018496,0.13865072,1.0821309,0.1287601,1.06238,1.9255795,1.0426046,1.917902,1.0228125,1.9098647,1.0030115,1.9014704,1.7822659,1.8927226,1.7944479,0.79932654,1.8063183,1.8741806,0.9238732,0.8382741,1.8291061,1.8542672,0.04706335,0.8774754,1.8505934,1.8330141,0.05981481,0.91686875,1.8707467,0.27016604,0.07404095,0.9563925,1.8895344,0.24366981,0.089719355,0.99598473,1.2402809,0.21835989,0.10682547,1.0355833,1.2016567,0.19427586,0.12533247,1.9644593,1.1627164,0.17145556,0.1452114,1.9532405,1.1235209,0.14993483,1.701478,1.9405267,1.0841315,0.12974733,1.7291474,1.9263377,1.0446103,0.11092472,1.7556732,1.9106958,1.0050191,0.7587449,1.7810136,1.8936255,0.96541995,0.7973602,1.8051292,1.8751537,0.035275936,0.8362932,1.827982,1.8553091,0.046456575,0.8754831,1.8495361,0.2992378,0.059132814,0.91486824,1.8697578,0.27154,0.073284686,0.95438695,1.2804556,0.24498475,0.088890076,0.9939771,1.2422291,0.21961367,0.10592443,1.9746168,1.2036227,0.19546658,0.1243611,1.9649878,1.1646969,0.60681725,0.14417118,1.9538453,0.0022013783,0.15099388,1.7000458,1.1518118,1.0861319,0.6808063,0.18778503,1.9270921,0.010577738,0.11184555,1.7543566,0.42219746,1.0070267,0.7567971,1.4655946,1.8945248,0.025158942,0.07826704,1.8039368,0.35942584,0.92787737,0.83431304,1.3941056,1.8563476,0.045853734,1.9978647,1.8484752,0.3006714,1.5105445,0.9128681,1.3201449,1.8128002,0.07253218,1.9895674,1.8876927,0.24630266,1.576983,0.9919695,1.2441765,0.5335172,0.10502696,1.9750643,1.9213432,0.19666058,1.6398029,1.0711213,1.1666769,0.60497206,0.14313442,1.9544463,0.0020702481,0.1520564,1.6986108,0.4903189,1.0881319,0.6789043,0.18661553,1.9278427,0.010288477,0.1127699,1.7530372,0.42383724,1.0090343,0.75485015,1.4673705,1.8954203,0.024713457,1.9998744,1.8027413,0.36096877,0.9298799,0.83233345,1.3959498,1.8573827,0.045254648,1.9979938,1.847411,0.30210787,1.5088172,0.9108682,1.3220463,1.813968,0.071783364,1.9898546,1.8867666,0.24762368,1.575342,0.989962,1.2461228,0.53174233,0.10413313,1.9755079,0.00014215708,0.1978578,1.6382587,1.0691187,1.1686561,0.60312855,0.14210117,1.9550434,0.001943171,0.1531223,1.6971729,0.49204725,1.0901315,0.6770036,1.537554,1.9285896,0.010003209,0.11369789,1.7517147,0.4254793,1.0110418,0.7529043,1.4691445,1.8963125,0.024271846,1.9998405,1.8015424,0.36251432,1.4372967,0.8303546,1.3977927,1.8584142,0.044659495,1.9981189,1.8463434,0.30354714,1.5070878,0.9088688,1.3239462,0.46159977,0.071038306,1.9901379,1.8858368,0.24894768,1.5736988,0.9879545,1.2480682,0.52996933,0.103242934,1.9759475,0.00017803907,0.19905823,1.636712,0.5636062,1.1706346,0.60128653,0.14107132,1.9556367,0.0018200874,0.15419167,1.6957321,0.49377763,1.0921308,0.67510426,1.5392458,0.27696806,1.9701698,0.11462945,1.7503892,0.42712367,1.3628932,0.8676583,0.23261684,1.8972008,0.023834169,1.9998026,0.033228815,1.3001046,0.9338859,0.8283764,1.3996339,0.3950069,1.7760618,0.052375376,1.8452723,0.30498928,1.5053564,0.71294105,0.343382,1.816294,0.070297,1.9904172,0.005004704,1.9431778,0.7772968,0.985947,1.2500126,0.52819824,1.6668496,0.17589921,1.9189851,0.20026189,1.6351626,0.5654135,1.2093785,1.7149425,0.14004493,1.9562261,0.0017009974,1.9837891,0.08648127,1.1438696,1.0941297,0.6732062,1.5409355,0.2755826,1.9696813,0.115564525,1.7490606,0.42877036,1.3610218,0.8696486,0.23133111,1.8980856,0.023400426,1.9997606,0.033744037,1.8779848,0.93588924,0.8263989,1.4014733,0.39340955,1.7773263,0.05301851,1.844198,0.30643415,1.503623,0.7148648,1.0504861,1.817452,0.069559455,1.9906924,0.00520736,1.9425088,0.7792545,0.9839396,1.251956,0.52642906,1.6683443,0.17476368,1.9181917,0.20146877,1.6336107,0.5672225,1.2074149,1.7163446,0.13902205,1.9568117,0.0015859604,1.983427,0.087299824,1.1418825,1.0961282,0.6713095,1.542623,0.27420008,1.8678391,0.11650318,1.7477291,0.4304194,1.3591487,0.8716393,0.23004848,1.8989668,0.022970617,1.9997146,0.034263074,1.8770219,0.93789285,0.8244221,1.4033113,0.3918147,1.7785878,0.05366546,1.8431201,0.30788183,1.5018876,0.71678966,1.048481,1.8186067,0.06882566,1.9909637,0.0054139495,1.941836,0.78121305,0.9819323,1.2538984,0.5246618,1.6698363,0.17363143,1.9173945,0.20267886,1.6320562,0.56903327,1.2054505,1.0317105,0.13800263,1.9573934,0.0014749765,1.9830611,0.08812201,1.139895,1.0981264,0.66941404,1.5443082,0.27282047,1.8688347,0.11744541,1.7463945,0.43207067,1.3572744,0.8736306,0.22876894,1.8998444,0.022544742,1.9996648,0.034786046,1.8760555,0.93989676,0.822446,1.4051476,0.39022225,1.7798462,0.054316163,1.8420389,0.3093323,1.5001501,0.71871567,1.0464756,1.8197582,0.068095565,1.991231,0.0056245923,1.9411594,0.16540086,0.979925,1.2558397,0.5228964,1.6713257,0.17250252,1.9165937,0.20389223,1.6304991,0.5708457,1.2034853,1.033717,0.13698667,1.9579712,0.0013679862,1.9826912,0.08894789,1.1379068,1.1001241,0.6675199,1.5459913,0.27144384,1.869827,0.118391216,1.7450569,0.43372422,1.3553985,0.8756224,0.88630706,1.9007183,0.0221228,1.9996107,0.03531295,1.8750857,0.9419009,0.82047063,1.4069822,0.3886323,1.7811012,0.09343737,1.8409542,0.31078553,1.4984106,0.7206428,1.0444701,1.8209064,0.06736928,1.9914943,0.0058392286,1.940479,0.1665085,0.9779178,1.2577801,0.52113295,1.6728122,0.171377,1.9157891,0.20510876,1.6289396,0.57265997,1.2015193,1.0357236,0.13597417,1.9585452,0.0012649894,1.9823172,0.08977747,1.786537,1.1021215,0.6656271,1.5476723,0.27007008,1.8708158,0.11934054,1.7437162,0.4353801,1.3535212,0.8776147,0.8843127,1.9015887,0.021704793,1.9995527,0.03584367,1.8741124,0.94390523,0.818496,1.4088153,0.3870448,1.7823533,0.09259182,1.8398662,0.3122416,1.496669,0.7225711,1.0424643,1.8220512,0.066646755,1.9917536,0.0060578585,1.9397948,0.1676194,0.9759107,1.2597193,0.51937145,1.6742961,0.17025477,1.938165,0.20632851,1.6273775,0.5744759,1.1995524,1.0377297,0.13496518,1.9591153,0.0011660457,1.9819393,0.09061074,1.7852957,1.1041185,0.66373575,1.5493509,0.2686993,1.8718009,0.12029344,1.7423728,0.43703824,1.3516426,0.8796075,0.88231874,1.9024553,0.02129078,1.9994906,0.036378324,1.8731353,0.94590986,0.81652206,1.4106467,0.38545978,1.7836021,0.09174991,1.9814191,0.0010379553,1.9598846,1.4703892,0.33434463,1.8231926,0.06592798,1.9920089,0.0062805414,1.9391067,0.16873378,1.6763102,0.5169786,1.2623553,1.9982044,0.01592505,1.914169,0.20755142,1.6258128,0.5762936,1.1975847,1.0397359,0.72519565,1.4942971,0.31422645,1.5725433,0.6374854,1.1319389,1.1061149,0.6618457,1.5510273,0.26733148,1.8727827,0.0365718,1.9994674,0.021142602,0.59999377,1.6053166,0.22368199,1.9033184,0.0208807,1.9994245,0.036916852,1.872155,0.2682063,1.5499549,0.66305494,0.009526789,1.9949546,0.056957304,1.8376799,0.31516194,1.49318,0.72643095,1.0384524,1.1988438,0.57513034,1.6268142,0.20676857,1.4342206,0.79101884,0.9718968,1.2635946,0.51585424,1.6772559,0.16802037,1.9395474,0.0061376095,1.9918461,0.066387415,0.45872283,1.7246974,0.13295764,1.9602439,0.000980258,1.9811718,0.092288196,1.7828034,0.38647366,1.4094751,0.817785,0.00024837255,1.9661512,0.12220985,1.7396765,0.44036132,1.3478808,0.8835945,0.8783323,1.3528448,0.43597704,1.7432327,0.49672806,1.2847457,0.94991964,0.8125764,1.4143045,0.38229716,1.7860904,0.09007716,1.9821815,0.0012289286,1.958751,1.4739288,0.33135355,1.8254657,0.0645017,1.9925075,0.0067378283,1.9377195,0.1709724,1.673347,0.5204983,1.2584785,1.9984368,0.016646683,1.912534,0.2100069,1.6226759,0.579934,1.193647,1.0437477,0.72133714,1.4977837,0.31130964,1.8405627,0.64123046,1.1279577,1.1101067,0.65806973,1.5543735,0.26460463,1.8747356,0.035503626,1.9995903,0.021971822,1.9010322,1.6085078,0.22115725,1.9050336,0.020072341,1.9992802,0.03800553,1.8701835,0.2709487,1.546597,0.66683805,1.1008435,1.9945438,0.058300674,1.8354802,0.31809342,1.4896832,0.73029524,1.0344397,1.2027773,0.57149893,1.6299378,0.20432997,1.4306002,0.79494715,0.96788335,1.2674658,0.51234484,1.6802046,0.16579938,1.9409148,0.0057014227,1.9913263,0.06783354,0.45535094,1.7274584,0.1309641,1.9613571,0.00081056356,1.9803884,0.09398025,1.7802985,0.3896494,1.4058086,0.8217345,0.00034588575,1.9651077,0.12414044,1.7369685,0.44369346,1.3441136,0.8875834,0.87434787,1.356599,0.43266594,1.745913,0.5002018,1.2808944,0.95393026,0.80863386,1.4179555,0.3791445,1.7885659,0.08841908,1.9829283,0.0014359355,1.957602,0.1376363,0.32837325,1.8277255,0.06309056,1.99299,0.0072111487,1.936317,0.17322445,1.670373,0.52402574,1.2545977,0.98120934,0.017384231,1.9108845,0.21247506,1.619529,0.5835812,1.1897062,1.0477587,0.71748316,1.501262,0.3084039,1.842731,0.64498127,1.1239744,1.1140966,0.65429926,1.5577109,0.26188964,1.8766743,0.034451008,1.9996972,0.022816777,1.8992834,1.6116891,0.2186451,1.906734,0.019279778,1.99912,0.039109707,1.8681982,0.27370286,1.5432302,0.67062664,1.0968479,1.9941168,0.059659183,1.833267,0.3210358,1.4861783,0.7341639,1.0304266,1.2067075,0.56787443,1.6330512,0.20190424,1.4269726,0.7988787,0.9638704,1.2713326,0.5088433,1.6831424,0.16359186,1.942267,0.0052812696,1.9907906,0.06929475,1.8178682,1.7302076,0.12898457,1.9624548,0.000657022,1.9795892,0.09568697,1.777781,0.3928349,1.4021355,0.8256869,0.9366108,1.9640484,0.1260851,1.7342485,0.44703454,1.3403409,0.89157414,0.87036544,1.3603474,0.42936403,1.7485814,0.115902185,1.2770386,0.95794165,0.80469435,1.4215999,0.37600183,1.7910287,0.08677566,1.9836591,0.0016590953,1.9564375,0.13967615,0.3254038,1.829972,0.061694443,1.9934567,0.007700503,1.9348996,0.17548984,1.6673882,0.52756083,1.2507126,0.98522407,0.018137574,1.9092202,0.21495593,1.6163722,0.5872351,1.1857624,1.051769,0.7136338,1.5047324,0.30550933,1.8448858,0.64873785,1.1199892,1.1180848,0.65053433,1.5610392,0.25918663,1.8785989,0.033413947,1.9997879,0.023677468,1.89752,1.6148608,0.21614552,1.9084201,0.01850301,1.9989434,0.04022944,1.8661987,0.27646875,1.5398546,0.6744205,1.0928508,1.1451406,0.06103289,1.8310404,0.32398915,1.4826655,0.7380368,1.026413,1.2106344,0.5642569,1.6361542,0.19949132,1.9194908,0.8028136,0.95985806,1.275195,0.5053497,1.6860693,0.16139781,1.9436039,0.0048772097,1.9902389,0.07077092,1.8155513,1.732945,0.12701905,1.963537,0.0005195141,1.9787742,0.097408295,1.7752512,0.39603025,1.398456,0.82964206,0.93260413,1.9629737,0.12804389,1.7315167,0.4503845,1.3365625,0.8955666,0.8663851,1.36409,0.42607123,1.7512376,0.114032984,1.2731782,0.9619537,0.800758,1.4252374,0.37286925,1.7934787,0.08514696,1.984374,0.0018983483,1.9552575,0.14172983,0.32244527,1.832205,0.060313523,1.9939072,0.008205831,1.9334669,0.17776853,1.6643926,0.53110355,1.2468237,0.989239,0.7740885,1.9075413,0.21744949,1.6132054,0.59089565,1.1818155,1.0557785,0.709789,1.5081946,0.30262595,1.847027,0.051329017,1.116002,1.1220709,0.646775,1.5643585,0.25649548,1.8805094,0.032392442,1.9998626,0.024553955,1.895742,0.23473191,0.21365857,1.9100913,0.017742097,1.9987509,0.04136461,1.8641852,0.27924627,1.5364704,0.6782196,1.088852,1.1491122,0.06242174,1.8288002,0.3269534,1.479145,0.741914,1.0223988,1.2145579,0.5606464,1.6392472,0.19709134,1.9210619,0.8067516,0.95584637,1.279053,0.5018641,1.6889849,0.1592173,1.9449255,0.004489124,1.9896712,0.07226205,1.8132211,1.7356706,0.12506765,1.9646037,0.00039815903,1.9779434,0.0991441,1.7727087,0.3992353,1.39477,0.83360004,0.9285986,1.9618834,0.13001674,1.7287731,0.45374334,1.3327788,0.8995607,0.86240697,1.3678267,0.4227878,1.7538818,0.11217803,1.971441,0.96596634,0.7968248,1.4288682,0.36974674,1.7959161,0.08353305,1.9850732,0.0021536946,1.9540622,0.1437974,1.7098141,1.8344246,0.058947742,1.9943419,0.008727193,1.9320192,0.18006045,1.6613863,0.5346538,1.2429307,0.99325407,0.77017885,1.9058477,0.21995562,1.6100287,0.5945629,1.1778657,1.059787,0.7059488,1.5116487,0.2997538,1.8491545,0.05006677,1.1120129,1.1260552,0.64302146,1.5676687,0.25381637,1.8824055,0.031386554,1.9999211,0.025446117,1.8939497,0.23732275,0.21118432,1.9117479,0.01699704,1.9985422,0.04251522,1.8621578,0.2820354,1.5330775,0.6820239,1.084852,1.1530814,0.06382573,1.8265469,0.32992852,1.4756169,0.74579525,1.0183845,1.2184778,0.55704296,1.6423297,0.19470435,1.922618,0.012352824,0.9518354,1.2829065,0.49838644,1.6918895,0.15705031,1.9462321,0.0041171312,1.9890878,0.07376814,1.8108778,0.35043603,0.12313032,1.9656546,0.00029295683,1.9770968,0.10089445,1.7701536,0.40245003,1.3910776,0.83756065,0.92459416,1.3089771,0.1320036,1.7260177,0.457111,1.3289897,0.90355647,0.858431,1.3715575,0.41951358,1.7565138,0.110337436,1.9723859,0.9699796,0.79289496,1.432492,0.36663443,1.7983406,0.081933856,1.9857564,0.0024251342,1.9528515,0.14587873,1.70698,1.8366308,0.0575971,1.9947603,0.009264469,1.9305565,0.1823656,1.6583693,0.5382116,1.2390337,0.99726933,0.7662729,1.9041395,0.2224744,1.6068423,0.59823656,1.173913,1.0637946,0.7021135,1.5150943,0.29689294,1.8512683,0.0488199,1.108022,1.1300374,0.63927364,1.5709696,0.25114924,1.8842876,0.030396283,1.9999635,0.026354015,1.892143,0.23992586,1.5849247,0.6233777,1.1469733,1.0910062,0.67617255,1.5382944,1.674896,0.16980147,1.938446,0.006496966,1.992249,0.065244794,1.8242801,0.33291447,1.472081,0.7496807,1.0143697,1.2223943,0.55344665,1.645402,0.1923303,1.9241593,0.011731625,1.9963632,0.052015305,1.8458753,0.3041777,1.5063307,1.3508817,0.88041425,0.8815118,1.3498464,0.43862456,1.7410862,0.12120712,1.9666901,0.00020378828,1.9762346,0.102659345,1.7675862,0.4056744,1.387379,0.8415239,0.92059094,1.3127935,0.47155106,1.7141523,0.1406219,1.955895,0.0017674565,1.9839909,1.9388273,0.16918576,1.6757114,0.5176903,1.261571,0.97399324,0.78896844,1.4361088,0.3635323,1.8007522,0.080349505,1.9864237,0.0027126074,1.9516255,0.14797384,1.7041347,0.48366666,1.2992666,0.93476224,0.82751125,1.4004388,0.39430785,0.26677865,1.8731791,0.036354363,1.9994935,0.021309137,1.9024167,0.22500563,1.6036459,0.6019168,1.1699575,1.0678012,0.69828296,1.5185318,0.29404342,1.8533683,0.04758829,1.9974732,0.0140013695,1.9186385,0.20078945,1.634484,0.56620467,0.72721267,1.0376403,1.1996402,0.5743948,1.6274471,0.20627397,1.915017,0.015554428,1.9980766,0.044862747,1.8580616,0.28764844,1.5262661,0.6896478,1.0768478,1.1610123,0.6102537,1.5963898,0.23076957,1.8984716,0.023211896,1.9997411,0.033970594,0.09262943,1.7822975,0.3871156,1.4087335,0.8185841,0.9438158,1.2905998,0.49145555,1.6976652,0.15275717,1.9487994,0.0034213066,1.9878727,0.07682514,1.8061521,0.3565626,1.4442531,0.7801112,0.98306143,1.2528058,0.5256557,1.6689973,1.7865924,0.089740396,1.982334,0.0012695193,1.9585197,0.13601929,1.720472,0.4638725,1.3213956,0.9115526,0.850486,1.3790011,0.4129933,1.7617412,0.10669929,1.9742287,6.181002e-5,1.968972,0.11691493,1.7471457,0.4311415,1.358329,1.1928498,1.0445595,0.72055686,1.4984882,0.31072068,1.8410027,0.054941475,1.9955492,0.010387003,1.9275863,0.18701541,1.6523037,0.5453494,1.2312284,1.0052998,0.75847244,1.4640657,0.33969903,1.8191109,0.06850582,1.9910812,0.0055056214,1.9415405,1.8697829,0.27150518,1.5459163,0.6676044,1.100035,1.1379955,0.6317955,1.577544,0.24585128,1.8880088,0.028462648,1.9999999,0.028216839,1.8884865,0.24516886,1.5783925,0.630829,1.1390252,1.0990003,0.66858524,1.5450448,0.27221787,0.16535151,1.9411896,0.005615115,1.9912192,0.06812805,1.8197069,0.3389185,1.4649866,0.7574636,1.0063396,1.2302165,0.54627573,1.6515152,0.1876213,1.9271972,0.010537028,1.9956467,0.054602087,1.8415647,0.3099677,1.4993894,0.7195586,0.8883909,0.8735417,1.357358,0.43199694,1.7464541,0.11740333,1.9687144,7.390976e-5,1.9744627,0.106232405,1.7624145,0.41215187,1.3799632,0.849458,0.91258836,1.3204108,0.46475053,1.7197505,0.13654327,1.9582229,0.0013224483,1.9825281,0.08931035,0.17368186,1.6697698,0.5247406,1.2538117,0.9820218,0.78112566,1.4433212,0.35735893,1.8055365,0.07722533,1.9877107,0.0033358932,1.9491273,0.15220529,1.6984098,0.49056047,1.2915945,0.9427777,0.8196067,1.4077843,0.38793755,1.7816494,1.877065,0.03423983,1.9997168,0.02298969,1.8989277,0.23010564,1.5972241,0.6092963,1.1620384,1.075811,0.69063646,1.5253816,0.28837854,1.8575271,0.0451712,1.9980116,0.015372276,1.915436,0.20564193,1.6282566,0.57345414,1.2006589,1.0296143,1.2075025,0.5671417,1.6336799,0.20141488,1.9182272,0.014175296,1.9975464,0.047271848,1.8539099,0.29330736,1.5194206,0.69729173,1.0688386,1.1689328,0.6028708,1.6028166,0.22566319,1.9019682,0.021523178,1.999526,0.036077082,0.09603417,1.7772701,0.39348078,1.4013913,0.8264871,0.93579984,1.2982743,0.4845574,1.703396,0.14851862,1.9513054,0.0027896762,1.986594,0.07994163,1.8013744,0.36273068,1.4370443,0.7879522,0.9750327,1.2605673,0.5186014,1.6749445,0.16976488,0.086444855,1.9838052,0.0017062426,1.9561999,0.14009064,1.7148798,0.4706686,1.3137809,0.9195545,0.84255064,1.3864202,0.40651095,1.7669194,0.10311872,1.9760087,0.00018334389,1.9669558,0.120711446,1.741784,0.43776435,1.3508203,0.8804794,1.0525806,0.7128553,1.5054338,0.30492485,1.8453202,0.052346766,1.996274,0.011573374,1.924556,0.19171762,1.6461959,0.5525166,1.223408,1.01333,0.7506875,1.4711641,0.33368945,1.823691,0.0656147,1.9921193,0.006379187,1.9388046,1.8657923,0.27702993,1.5391705,0.67518896,1.0920416,1.1459446,0.62434113,1.5840812,0.24060196,1.8916728,0.026591659,1.9999719,0.030142367,1.8847727,0.2504605,1.5718229,0.63830405,1.1310683,1.1069882,0.6610193,1.55176,0.266734,1.873211,1.9438727,0.0047973394,1.9901254,0.071071446,1.8150808,0.34496516,1.457862,0.76526207,0.99830914,1.2380239,0.53913414,1.6575863,0.18296468,1.9301753,0.009406209,1.9948661,0.057249844,1.8371999,0.31580222,1.4924159,0.72727585,1.0375746,0.86557984,1.3648467,0.42540598,1.7517738,0.1136564,1.9706762,8.523464e-6,1.9726281,0.1098631,1.7571933,0.4186672,1.3725226,0.8574017,0.9045915,1.3280076,0.4579845,1.7253023,0.13252038,1.9604888,0.0009417534,1.9810019,0.09265703,0.1782313,1.663785,0.5318215,1.246036,0.99005157,0.77329695,1.4505053,0.351227,1.8102689,0.074160576,1.988934,0.0040234327,1.946568,0.15649134,1.6926398,0.4974872,1.2839037,0.95079684,0.8117138,1.4151037,0.3816067,1.7866329,0.089713216,0.03218758,1.9998757,0.024733245,1.8953805,0.23525524,1.5907638,0.6167011,1.1541089,1.0838159,0.68300986,1.5321975,0.2827596,1.8616307,0.042815685,1.9984856,0.016806662,1.9121745,0.21054566,1.6219885,0.58073115,1.1927853,1.0446252,1.2153515,0.5599165,1.6398718,0.19660723,1.921378,0.012859702,1.9969522,0.0497424,1.8497031,0.29901183,1.5125418,0.7049552,1.060825,1.1768423,0.5955136,1.6092045,0.22060668,1.9054067,0.01989764,1.9992466,0.038245738,1.8697505,1.7721925,0.39988512,1.3940232,0.83440137,0.927788,1.3059297,0.47769254,1.7090813,0.14433503,1.9537501,0.0022224188,1.9852517,0.083117485,1.7965451,0.36893982,1.4298072,0.7958068,0.96700555,1.268312,0.51157826,1.6808481,0.16531539,1.9412118,1.9852128,0.0022073388,1.9538184,0.14421749,1.7092414,0.47749883,1.3061459,0.92756146,0.83462536,1.3938144,0.40006685,1.7720481,0.099595964,1.9777257,0.00036936998,1.9648772,0.12456459,1.7363746,0.4444235,1.3432889,0.88845617,0.8734766,0.7051723,1.5123466,0.2991739,1.8495834,0.04981321,1.9969344,0.0128234625,1.9214664,0.19647199,1.6400464,0.5597125,1.2155733,1.0213593,0.74291867,1.4782321,0.32772285,1.828218,0.0627839,1.9930935,0.007316828,1.9360082,0.17371887,0.2826013,1.5323899,0.68279445,1.0840423,1.1538844,0.61691093,1.5905805,0.23540163,1.8952794,0.024783432,1.9998792,0.03213048,1.8810017,0.25580055,1.5652165,0.6458025,1.1231029,1.1149691,0.6534753,1.5584396,0.2612974,1.8770964,1.9464947,0.0040438175,1.9889677,0.074074745,1.810402,0.35105413,1.450708,0.7730757,0.9902787,1.2458159,0.53202224,1.6636151,0.17836076,1.9330935,0.008339345,1.9940214,0.0599584,1.8327811,0.32168084,1.4854106,0.7350106,1.0295486,1.2075667,1.3723118,0.4188521,1.757045,0.109966636,1.9725752,7.6293945e-6,1.9707308,0.11355126,1.7519236,0.42522007,1.3650582,0.8653547,0.8966007,1.3355832,0.45125347,1.7308073,0.12855345,1.9626929,0.00062555075,1.9794123,0.09606224,1.7772288,1.6577575,0.53893256,1.2382445,0.9980819,0.7654829,1.4576601,0.34513688,1.814949,0.07115561,1.9900935,0.0047751665,1.9439476,0.16083181,1.6868253,0.50444627,1.2761946,0.95881915,0.80383307,1.4223962,0.3753158,1.7915657,0.08641815,0.03019774,1.9999701,0.026539624,1.8917756,0.2404542,1.5842655,0.6241306,1.1461694,1.0918155,0.67540383,1.538979,0.27718693,1.8656785,0.04052192,1.9988952,0.018304467,1.9088542,0.2155003,1.6156805,0.5880352,1.1848993,1.0526462,0.7127924,0.5527197,1.6460224,0.19185138,1.9244695,0.011607826,1.9962935,0.052274287,1.8454416,0.30476153,1.5056298,0.71263766,1.0528075,1.1847405,0.58818245,1.6155531,0.21560043,1.9087868,0.018335223,1.9989027,0.04047638,1.8657594,0.2770753,0.40632814,1.3866297,0.8423263,0.91978085,1.3135653,0.47086138,1.714721,0.14020663,1.9561334,0.0017195344,1.9838458,0.08635247,1.7916644,0.37518966,1.4225426,0.8036747,0.95898056,1.2760394,0.5045866,1.686708,0.16091967,1.9438943,1.986557,0.0027727485,1.9513755,0.14839953,1.7035574,0.48436278,1.2984911,0.93557316,0.8267108,1.4011832,0.39366144,1.777127,0.096131325,1.9793797,0.0006198287,1.9627366,0.12847424,1.7309176,0.4511184,1.3357353,0.8964401,0.86551476,1.3649079,1.5192266,0.29346812,1.8537917,0.04734087,1.9975306,0.014137208,1.9183171,0.20127815,1.6338557,0.56693697,1.2077248,1.0293872,0.73516643,1.4852693,0.32179958,1.8326917,0.060013473,1.9940038,0.008318543,1.9331515,0.17826873,1.6637359,1.5255749,0.6904204,1.0760375,1.1618142,0.6095054,1.5970418,0.2302506,1.898828,0.023038149,1.9997222,0.03418094,1.877174,0.2611885,1.5585736,0.65332377,1.1151296,1.1229426,0.64595354,1.5650833,0.25590843,1.8809253,0.03217107,0.0033544302,1.9877462,0.07713777,1.8056711,0.3571849,1.4435248,0.780904,0.98224896,1.253592,0.5249405,1.6696011,0.17380983,1.9359515,0.007336378,1.9931124,0.06272757,1.8283086,0.32760328,1.478374,0.74276257,1.0215209,1.2154156,0.5598576,0.41233563,1.7622674,0.10633433,1.9744117,7.1167946e-5,1.9687707,0.11729652,1.7466052,0.43180996,1.3575702,0.8733164,0.8886167,1.3431371,0.4445578,1.7362652,0.12464267,1.9648348,0.00037378073,1.9777596,0.09952575,1.7721508,0.39993763,0.5460733,1.2304376,1.0061125,0.75768393,1.4647853,0.33908898,1.8195767,0.06821048,1.9911891,0.0055910945,1.9412663,0.16522646,1.6809664,0.5114373,1.2684675,0.96684414,0.79596496,1.4296614,0.3690651,1.7964475,0.08318198,1.985224,2.0,0.028408825,1.8881133,0.24570215,1.5777295,0.6315843,1.1382204,1.0998089,0.66781867,1.545726,0.2716608,1.8696707,0.038289964,1.9992404,0.019865572,1.9054754,0.22050548,1.6093326,0.5953659,1.1770014,1.0606637,0.70510954,0.5455518,1.6521314,0.18714768,1.9275013,0.010419667,1.9955707,0.054867208,1.8411255,0.3105561,1.4986851,0.7203387,1.0447865,1.1926268,0.5808778,1.6218619,0.21064478,1.9121083,0.016836166,1.9984944,0.042768955,1.8617127,0.28264707,1.5323343,1.3792113,0.8502614,0.9117789,1.3211806,0.4640643,1.7203145,0.13613367,1.9584548,0.0012809634,1.9823766,0.08964634,1.7867327,0.3814798,1.4152505,0.81155515,0.9509582,1.2837489,0.49762684,1.6925234,0.15657812,1.9465159,0.0040379167,0.0034025311,1.9488711,0.15263653,1.6978279,0.49125993,1.2908171,0.94358903,0.8188075,1.4085262,0.38729513,1.782156,0.09272498,1.9809704,0.00093477964,1.9605337,0.13244003,1.7254136,0.4578488,1.3281602,0.9044307,0.8575616,1.3723727,1.5260729,0.28780788,1.8579448,0.04493004,1.9980624,0.015514493,1.9151087,0.20613581,1.627624,0.5741893,1.1998627,1.0374132,0.72743124,1.4922752,0.31592005,1.8371115,0.057303727,1.9948497,0.009384155,1.9302347,0.18287158,1.657708,0.5389908,0.69806635,1.0680279,1.1697336,0.60212517,1.6034648,0.22514921,1.9023188,0.021355808,1.9995008,0.036293685,1.8732898,0.26662415,1.5518947,0.66086733,1.1071488,1.1309081,0.6384547,1.5716904,0.25056744,1.8846974,0.030181766,1.9999706,1.9864612,0.08026034,1.8008882,0.36335713,1.4363132,0.78874636,0.97422034,1.2613518,0.5178894,1.6755439,0.16931218,1.938749,0.006397426,1.9921396,0.06555718,1.8237826,0.333569,1.4713066,0.7505311,1.0134915,1.2232506,0.552661,0.40585715,1.7674406,0.1027596,1.9761853,0.00019925833,1.9667482,0.12109876,1.7412388,0.43843657,1.3500592,0.88128626,0.8806398,1.3506689,0.43789792,1.7416756,0.120788395,1.9669147,0.00018644333,1.9760438,0.10304725,1.7670231,0.40638095,1.3865693,1.2226158,1.0141425,0.74990064,1.4718807,0.3330837,1.8241515,0.0653255,1.9922209,0.006471157,1.9385245,0.16967487,1.6750636,0.5184599,1.2607232,0.9748712,0.78811,1.436899,0.36285514,1.8012779,0.08000493,1.9865677,0.002777636,0.030340731,1.8843937,0.25099868,1.571156,0.6390618,1.1302626,1.1077961,0.66025496,1.5524375,0.2661817,1.8736068,0.036120117,1.999521,0.021489859,1.902038,0.22556096,1.6029454,0.6027226,1.1690919,1.0686774,0.6974457,1.5192826,1.6581984,0.18249643,1.9304733,0.009295344,1.9947835,0.057521164,1.8367553,0.3163951,1.4917084,0.72805774,1.0367626,1.2005007,0.57360023,1.6281309,0.2057401,1.915371,0.015400469,1.9980217,0.04512322,1.8576102,0.2882651,1.525519,0.69048285,0.8582061,0.9037826,1.3287752,0.4573018,1.7258615,0.13211644,1.9607146,0.00090682507,1.9808438,0.09299898,1.7817501,0.3878098,1.4079318,0.8194479,0.942939,1.29144,0.49069953,1.6982942,0.15229094,1.9490764,0.0033490658,1.987736,1.9463056,0.15692812,1.6920536,0.49818993,1.2831244,0.9516085,0.81091577,1.4158428,0.38096827,1.7871344,0.089377105,1.9824979,0.0013141632,1.958269,0.13646185,1.7198627,0.4646141,1.3205638,0.9124275,0.84961766,1.3798137,0.41228253,0.2821936,1.8620428,0.042580783,1.9985299,0.016955316,1.9118412,0.21104473,1.621352,0.58146906,1.1919879,1.0454369,0.7197136,1.4992495,0.31008464,1.8414774,0.054654717,1.9956317,0.010513663,1.9272578,0.18752712,1.6516377,0.54613185,0.70573175,1.0600138,1.1776421,0.59477055,1.6098487,0.22009778,1.9057515,0.019736648,1.9992146,0.03846866,1.8693491,0.27210712,1.5451802,0.66843283,1.0991611,1.1388652,0.63097906,1.5782607,0.24527484,1.8884124,0.028254986,2.0,0.028424382,0.08344215,1.7960536,0.36957037,1.4290733,0.7966024,0.9661934,1.2690947,0.5108693,1.6814431,0.16486812,1.941486,0.005522549,1.9911027,0.06844705,1.8192035,0.33957773,1.4642088,0.7583157,1.0054613,1.2310711,0.54549325,1.6521811,1.7725644,0.09924275,1.977896,0.00039178133,1.9646635,0.12495768,1.7358245,0.44509935,1.3425255,0.88926375,0.8726706,1.3581781,0.4312743,1.7470382,0.116990745,1.9689319,6.365776e-5,1.9742651,0.10662669,1.7618458,0.4128626,1.3791505,1.2147797,1.0221717,0.74213344,1.4789457,0.32712144,1.8286731,0.062500775,1.9931886,0.0074152946,1.9357219,0.17417681,1.6691175,0.5255135,1.2529621,0.98289996,0.7802687,1.4441084,0.35668623,1.8060566,0.07688725,1.9878476,0.0034079552,1.9488504,0.15267134,1.6977808,0.49131644,1.2907543,0.94365454,0.81874293,1.4085861,0.3872432,1.7821969,0.09269738,1.9809833,0.0039711,1.988847,0.07438201,1.8099257,0.3516726,1.4499824,0.7738672,0.98946613,1.2466035,0.53130424,1.6642227,0.17789781,1.9333854,0.008234918,1.9939322,0.060235858,1.832331,0.3222782,1.4847,0.7357943,1.0287365,1.2083616,0.56635016,1.6343591,0.20088655,1.9185746,0.014028311,1.9974847,0.047539055,1.8534524,0.29392904,1.5186698,0.69812894,1.0679624,1.1697984,0.60206497,1.603517,0.22510773,1.9023471,0.021342337,1.9994986,0.03631127,1.8732578,0.2666688,1.6571451,0.5396538,1.2374552,0.9988946,0.764693,1.4583824,0.34452295,1.8154198,0.07085484,1.9902072,0.0048547983,1.9436791,0.16127408,1.6862345,0.5051522,1.2754134,0.9596311,0.8030363,1.4231325,0.3746814,1.792062,0.086088,1.9839622,0.0017579198,1.9559424,0.14053929,1.7142653,0.47141397,1.3129468,0.9204299,0.8416834,1.3872302,0.40580434,1.7674828,0.10273063,1.9761995,0.00020056963,1.9667315,0.12113005,1.7411947,0.43849087,1.3499976,0.8813514,0.8805746,1.3507304,0.5519931,1.6466426,0.19137305,1.9247789,0.011484683,1.9962232,0.052533865,1.8450073,0.3053459,1.5049285,0.7134161,1.0519959,1.1855391,0.58744204,1.6161933,0.21509665,1.9091256,0.018180668,1.9988643,0.04070556,1.8653524,0.277637,1.5384306,0.6760197,1.0911671,1.1468135,0.6235273,1.5847938,0.24003083,1.89207,0.02639085,1.9999648,0.030356765,1.884363,0.2510422,1.5711021,0.63912296,1.1301975,1.1078614,0.6601932,1.5524923,0.26613712,1.8736387,0.036102593,1.9995232,0.0028336048,1.9511249,0.14882582,1.7029797,0.4850592,1.2977154,0.93638414,0.82591057,1.4019275,0.39301544,1.7776382,0.09578401,1.9795434,0.00064879656,1.9625165,0.12887299,1.7303628,0.4517979,1.3349698,0.8972484,0.8647096,1.3656642,0.4246874,1.7523527,0.11325008,1.970887,5.3048134e-6,1.9724236,0.110263705,1.7566195,0.41938204,1.3717074,0.8582711,0.9037173,1.3288372,0.45724666,1.7259066,0.13208383,1.9607329,0.00090402365,1.980831,0.09302664,1.7817092,0.38786173,1.5248834,0.6911932,1.0752273,1.1626161,0.6087575,1.5976937,0.22973216,1.899184,0.022865057,1.9997027,0.03439188,1.8767836,0.2617364,1.5578995,0.6540861,1.1143223,1.123749,0.6451937,1.5657535,0.2553658,1.8813096,0.031966925,1.9998891,0.024927735,1.894989,0.23582143,1.590055,0.61751246,1.153241,1.084691,0.68217707,1.5329409,0.28214788,1.862076,0.04256183,1.9985335,0.016967356,1.9118142,0.21108502,1.6213006,0.58152866,1.1919235,1.0455024,0.7196506,1.4993063,0.4116783,1.7627931,0.105969965,1.9745941,8.124113e-5,1.9685689,0.1176787,1.7460644,0.4324789,1.3568112,0.8741225,0.88780916,1.3439003,0.44388223,1.736815,0.124250054,1.9650481,0.00035190582,1.9775889,0.09987944,1.7716341,0.40058786,1.3932159,0.83526754,0.92691207,1.3067657,0.4769438,1.7097003,0.14388084,1.9540138,0.0021643043,1.985101,0.08346844,1.7960138,0.36962134,1.4290141,0.7966667,0.96612775,1.2691579,0.51081204,1.6814911,0.164832,1.941508,0.005515635,1.9910939,0.028601468,1.8877394,0.2462359,1.577066,0.63233984,1.1374156,1.1006175,0.66705227,1.5464067,0.27110422,1.8700716,0.03806758,1.9992716,0.020027041,1.9051301,0.2210148,1.6086881,0.59610915,1.1762015,1.0614748,0.7043332,1.5131006,0.29854763,1.8500462,0.049539804,1.9970027,0.01296401,1.9211247,0.19699508,1.6393714,0.5605013,1.2147156,1.0222374,0.74207,1.4790033,0.32707292,1.8287098,0.062477946,1.9931962,0.0074232817,1.9356987,0.17421389,1.6690686,0.5255713,1.3784592,0.85106486,0.9109695,1.32195,0.46337843,1.7208779,0.1357246,1.9586864,0.0012401938,1.9822242,0.08998293,1.7862308,0.38211852,1.4145112,0.8123533,0.95014656,1.284528,0.49692434,1.6931093,0.15614182,1.9467778,0.0039652586,1.9888372,0.07440686,1.8098872,0.3517226,1.4499238,0.77393115,0.9894005,1.2466671,0.5312462,1.6642718,0.17786044,1.933409,0.008226514,1.9939251,0.06025827,1.8322945,0.32232648,1.4846425,0.7358576,1.0286708,1.2084258,0.566291,1.6344099,0.28723764,1.8583621,0.044689476,1.9981127,0.015657425,1.9147806,0.20663023,1.6269913,0.5749247,1.1990664,1.0382253,0.72664946,1.4929824,0.31532753,1.8375559,0.057032883,1.9949317,0.009495556,1.9299362,0.18334025,1.6570957,0.5397121,1.2373915,0.9989602,0.7646292,1.4584408,0.34447336,1.8154578,0.07083058,1.9902165,0.004861295,1.9436574,0.16130984,1.6861867,0.5052093,1.2753503,0.9596967,0.80297196,1.423192,0.3746302,1.7921021,0.08606136,1.9839739,0.0017617941,1.9863274,0.08057958,1.8004012,0.363984,1.4355819,0.78954077,0.973408,1.2621361,0.5171776,1.6761428,0.16886008,1.9390287,0.0063059926,1.9920375,0.06584686,1.8233216,0.3341751,1.4705898,0.7513181,1.012679,1.2240427,0.55193436,1.6466926,0.19133443,1.924804,0.011474788,1.9962176,0.052554905,1.8449721,0.3053931,1.5048718,0.71347904,1.0519303,1.1856036,0.5873822,1.616245,0.215056,1.909153,0.018168211,1.9988612,0.0407241,1.8653195,0.27768242,1.5383753,0.67608184,1.2218236,1.014955,0.7491139,1.4725971,0.3324784,1.8246114,0.06503695,1.9923217,0.0065637827,1.9382436,0.17012799,1.674464,0.51917225,1.2599386,0.9756836,0.7873159,1.4376298,0.36222905,1.8017638,0.07968676,1.9867,0.0028384924,1.9511045,0.14886028,1.7029331,0.48511547,1.2976528,0.93644965,0.82584596,1.4019876,0.39296323,1.7776796,0.095755935,1.9795568,0.00065118074,1.9624987,0.12890524,1.730318,0.4518528,1.3349079,0.89731365,0.8646445,1.3657254,0.42463368,1.7523959,0.18202865,1.9307708,0.009185135,1.9947003,0.05779308,1.8363099,0.3169884,1.4910007,0.7288399,1.0359505,1.2012967,0.57286537,1.628763,0.20524663,1.9156978,0.015258729,1.9979703,0.045364857,1.857192,0.28883612,1.5248275,0.6912557,1.0751618,1.1626809,0.60869706,1.5977463,0.22969025,1.8992126,0.02285111,1.9997011,0.034408987,1.8767519,0.26178068,1.5578449,0.6541477,1.1142571,1.1238141,0.6451323,1.5658076,0.25532198,1.8813406,0.031950474,1.9998901,0.024942279,1.9460425,0.15736544,1.6914667,0.49889296,1.2823449,0.9524202,0.8101179,1.4165816,0.38033032,1.7876353,0.08904159,1.9826491,0.0013561249,1.9580364,0.13687193,1.7192984,0.46530062,1.319794,0.913237,0.8488143,1.3805653,0.41162527,1.7628355,0.10594058,1.9746087,8.2075596e-5,1.9685526,0.11770958,1.7460207,0.4325329,1.3567499,0.87418765,0.8877439,1.343962,0.4438277,1.7368593,0.124218404,1.9650652,0.0003501773,1.9775751,0.099908054,1.7715924,0.40064043,1.3931556,0.83533233,1.0592027,1.1784418,0.59402776,1.6104925,0.21958941,1.9060955,0.019576311,1.9991822,0.038692176,1.8689473,0.27266455,1.5444988,0.6691996,1.0983524,1.13967,0.63022393,1.5789235,0.24474198,1.8887851,0.028063476,1.9999993,0.028617084,1.8877093,0.24627906,1.5770123,0.63240093,1.1373506,1.1006829,0.6669904,1.5464617,0.27105927,1.870104,0.03804964,1.9992741,0.020040154,1.9051023,0.22105592,1.6086359,0.5961692,1.1761369,1.0615404,0.7042705,1.513157,0.29850084,1.7730801,0.098890126,1.9780655,0.00041484833,1.964449,0.12535131,1.735274,0.44577557,1.341762,0.8900714,0.8718646,1.3589368,0.43060613,1.7475781,0.11660963,1.9691327,5.477667e-5,1.9740816,0.106992066,1.7613192,0.41352057,1.3783984,0.8511298,0.9109041,1.3220122,0.463323,1.7209234,0.13569158,1.9587051,0.0012369156,1.982212,0.090010166,1.7861902,0.38217014,1.4144514,0.8124178,0.950081,1.284591,0.49686766,1.6931567,0.15610659,1.9467989,0.0039594173,1.9888275,0.07443172,1.8802316,0.25688714,1.563875,0.64732283,1.1214899,1.1165835,0.6519512,1.559787,0.26020288,1.8778759,0.03380257,1.9997556,0.02335155,1.8981855,0.2311858,1.595867,0.6108534,1.1603696,1.0774969,0.689029,1.5268196,0.28719163,1.8583958,0.044670105,1.9981167,0.015668988,1.9147542,0.20667022,1.62694,0.5749841,1.1990021,1.038291,0.72658634,1.4930396,0.31527966,1.8375916,0.05701101,1.9949384,0.009504557,1.929912,0.18337816,1.6570462,0.53977036,1.2373277,0.9990259,0.89498436,1.3371137,0.4498955,1.7319157,0.12775743,1.9631314,0.0005694032,1.9790828,0.096758485,1.7762051,0.39482605,1.399842,0.8281526,0.93411255,1.2998879,0.48310918,1.7045968,0.1476332,1.9518254,0.0026649237,1.9863167,0.08060539,1.8003619,0.36403465,1.4355228,0.7896049,0.97334236,1.2621994,0.51712006,1.6761912,0.16882354,1.9390513,0.0062986016,1.9920292,0.065870285,1.8232844,0.3342241,1.4705318,0.7513817,1.0126133,1.2241066,0.5518757,1.6467427,0.1912958,1.8664911,0.04006517,1.9989703,0.018615305,1.9081751,0.21650916,1.614399,0.5895167,1.1833018,1.0542691,0.711236,1.506892,0.30371022,1.8462224,0.051808238,1.9964184,0.011831284,1.9239104,0.1927144,1.6449045,0.55402935,1.2217596,1.0150207,0.7490504,1.4726549,0.33242953,1.8246486,0.06501365,1.9923298,0.006571293,1.9382209,0.17016464,1.6744155,0.51922977,1.2598753,0.97574925,0.7872518,1.4376888,0.36217844,1.8018031,0.07966107,1.9867108,0.0028434396,1.9510843,0.14889473,1.7906704,0.37645942,1.4210689,0.8052685,0.9573567,1.277601,0.50317544,1.6878884,0.16003668,1.9444298,0.004633367,1.9898869,0.071698844,1.8141,0.34624374,1.4563581,0.766906,0.9966182,1.2396659,0.53763413,1.6588593,0.18199092,1.9307947,0.009176254,1.9946935,0.057815075,1.8362739,0.3170364,1.4909434,0.72890306,1.035885,1.2013611,0.572806,1.628814,0.20520675,1.9157243,0.015247345,1.997966,0.045384407,1.8571582,0.28888232,1.5247717,0.6913181,1.0750964,1.1627457,0.73359954,1.4866898,0.3206061,1.8335905,0.059460163,1.9941801,0.008529007,1.932566,0.179196,1.6625195,0.53331625,1.2443968,0.9917424,0.77165043,1.4520141,0.34994113,1.8112588,0.073522925,1.9891834,0.0041763783,1.9460213,0.15740079,1.6914194,0.49894983,1.282282,0.95248574,0.81005347,1.4166414,0.38027877,1.7876759,0.08901453,1.9826612,0.0013595223,1.9580176,0.13690507,1.7192528,0.4653561,1.3197318,0.9133024,0.8487494,1.380626,0.41157216,1.762878,0.105911136,1.9365225,0.007141173,1.9929208,0.063295364,1.8273969,0.32880712,1.4769461,0.7443335,1.0198959,1.2170024,0.55839884,1.6411703,0.19560152,1.9220339,0.012590826,1.9968188,0.05027044,1.8488104,0.30021876,1.5110891,0.7065712,1.0591371,1.1785064,0.5939678,1.6105444,0.2195484,1.9061233,0.019563377,1.9991796,0.038710237,1.8689148,0.2727096,1.5444437,0.6692616,1.0982871,1.139735,0.63016295,1.5789771,0.24469894,1.8888152,0.028048038,1.9999993,0.0286327,1.8876791,0.24632215,1.6797754,0.512856,1.2669016,0.96846855,0.79437417,1.4311284,0.367805,1.7974292,0.082534194,1.985501,0.0023210645,1.953309,0.1450935,1.7080483,0.47894132,1.3045357,0.92924803,0.83295804,1.3953681,0.3987149,1.7731217,0.098861635,1.9780792,0.00041675568,1.9644318,0.12538314,1.7352295,0.44583017,1.3417002,0.89013666,0.87179947,1.3589981,0.43055212,1.7476218,0.11657888,1.9691489,5.4121017e-5,1.9740667,0.10702163,1.7612766,0.41357374,1.3783377,0.85119474,0.9108387,1.1942214,0.57940274,1.6231339,0.20964807,1.9127734,0.016540468,1.9984039,0.043240428,1.8608868,0.28378034,1.5309577,0.6843985,1.0823573,1.155555,0.61534953,1.5919442,0.23431295,1.8960314,0.024410725,1.9998515,0.03255701,1.8802005,0.25693107,1.5638208,0.6473843,1.1214247,1.1166487,0.6518896,1.5598415,0.26015872,1.8779074,0.03378564,1.999757,0.023365676,1.8981566,0.23122776,1.5958143,0.6109139,1.1603049,1.0775623,0.6889665,1.5268754,0.28714556,1.8584294,0.044650674,1.9812847,0.0010063648,1.9600804,0.13324946,1.724294,0.45921516,1.3266245,0.90604866,0.8559531,1.3738806,0.41747683,1.7581487,0.10919708,1.9729671,1.5616417e-5,1.9703232,0.11433512,1.7508078,0.42660457,1.3634834,0.86703044,0.89491904,1.3371756,0.44984066,1.7319605,0.1277253,1.9631491,0.0005671978,1.9790695,0.09678668,1.7761637,0.39487827,1.399782,0.82821727,0.93404704,1.2999505,0.48305297,1.7046434,0.14759886,1.9518454,0.0026601553,1.9863058,0.080631256,1.8003225,0.36408532,1.5505387,0.6623967,1.1055328,1.1325192,0.6369398,1.5730231,0.2494924,1.8854538,0.029786766,1.9999816,0.026928008,1.8910093,0.24155515,1.5828924,0.625698,1.1444964,1.0934991,0.67380494,1.5404027,0.27601945,1.8665237,0.04004681,1.9989731,0.018627882,1.9081476,0.21655,1.6143471,0.5895766,1.1832373,1.0543346,0.7111732,1.5069486,0.30366307,1.8462574,0.051787376,1.996424,0.011841357,1.9238853,0.19275314,1.6448543,0.5540881,1.2216955,1.0150864,0.74898684,1.3521905,0.4365545,1.7427648,0.120015204,1.9673278,0.00015640259,1.9756889,0.10376704,1.7659793,0.40768963,1.3850698,0.8439962,0.9180955,1.3151704,0.46942735,1.7159026,0.13934445,1.9566274,0.0016218424,1.9835417,0.08704114,1.7906302,0.37651074,1.4210094,0.80533296,0.9572911,1.2776641,0.5031185,1.6879361,0.16000104,1.9444513,0.004627049,1.9898776,0.07172328,1.8140619,0.34629345,1.4562997,0.76696986,0.9965526,1.2397296,0.53757596,1.6589086,0.18195313,1.9308188,0.009167373,1.99957,0.021826327,1.9013352,0.22659022,1.6016481,0.6042146,1.1674899,1.0702988,0.69589704,1.5206709,0.2922725,1.8546708,0.04682815,1.997648,0.01442194,1.9176464,0.20229673,1.6325469,0.56846166,1.2060704,1.0310774,0.73353624,1.4867471,0.32055795,1.8336267,0.05943787,1.9941871,0.0085375905,1.9325423,0.17923349,1.6624703,0.5333743,1.2443331,0.99180806,0.7715865,1.4520726,0.34989125,1.8112972,0.07349819,1.9891931,0.0041823387,1.9460001,0.15743613,1.6913719,0.38909572,1.4064474,0.8210466,0.9413164,1.2929944,0.4893015,1.6994567,0.15142995,1.9495872,0.0032175183,1.9874809,0.07779032,1.8046683,0.35848105,1.4420087,0.7825541,0.98055834,1.2552272,0.52345324,1.670856,0.17285842,1.9365455,0.007133305,1.992913,0.06331831,1.8273599,0.3288558,1.4768884,0.7443969,1.0198302,1.2170665,0.55833995,1.6412208,0.19556254,1.9220593,0.012580454,1.9968135,0.050291,1.8487756,0.30026567,1.5110326,0.70663404,1.0590715,1.178571,0.5939078,1.500657,0.30890906,1.8423545,0.054126024,1.9957821,0.010749996,1.926648,0.18847573,1.650404,0.5475806,1.228792,1.0078033,0.7560438,1.4662819,0.33782095,1.8205445,0.067598045,1.9914117,0.005771041,1.9406941,0.16615862,1.6797272,0.51291335,1.2668383,0.9685341,0.7943099,1.4311876,0.36775416,1.7974689,0.08250809,1.9855123,0.0023255348,1.9532893,0.14512753,1.7080021,0.47899735,1.3044732,0.9293135,0.8328933,1.3954284,0.39866245,1.7731633,0.0988332,1.9780929,0.00041866302,1.990885,0.069039226,1.8182703,0.34079897,1.4627687,0.75989306,1.0038362,1.2326521,0.54404616,1.6534123,0.18616396,1.928132,0.010177672,1.9954102,0.055420995,1.8402097,0.31178188,1.4972188,0.7219625,1.0430973,1.1942858,0.5793432,1.6231854,0.20960784,1.9128002,0.016528606,1.9984002,0.0432595,1.8608534,0.28382617,1.5309021,0.68446076,1.0822918,1.1556199,0.615289,1.5919971,0.23427069,1.8960605,0.0243963,1.9998504,0.03257364,1.8801694,0.256975,1.5637666,0.52694476,1.2513894,0.98452497,0.7786835,1.4455639,0.35544282,1.8070173,0.07626349,1.9880989,0.0035433173,1.948336,0.1535356,1.6966158,0.49271637,1.2891989,0.9452773,0.8171448,1.410069,0.38595963,1.7832084,0.09201521,1.9812974,0.0010092854,1.960062,0.13328224,1.7242486,0.45927042,1.3265624,0.906114,0.8558882,1.3739415,0.4174235,1.7581915,0.10916722,1.9729824,1.603365e-5,1.9703074,0.11436558,1.7507644,0.42665833,1.3634224,0.8670955,0.8948538,1.3372374,0.44978583,1.6356146,0.19991052,1.9192158,0.013758361,1.9973681,0.048035443,1.8526044,0.29508084,1.5172796,0.6996788,1.0663408,1.1713998,0.60057443,1.6048121,0.22408146,1.9030464,0.021009624,1.9994459,0.036746502,1.8724647,0.26777476,1.550484,0.66245854,1.1054674,1.1325843,0.6368786,1.573077,0.24944901,1.8854843,0.029770851,1.9999821,0.026943147,1.8909795,0.24159789,1.582839,0.6257589,1.1444315,1.0935644,0.6737429,1.5404578,0.27597415,1.8665566,0.040028393,1.9989761,0.018640518,1.9554641,0.14137125,1.7131269,0.4727943,1.3114028,0.9220501],"x":[-1.8110049e18,-5.2211715e32,-1.0442343e33,-1.5663515e33,-2.0884686e33,-2.6105856e33,-3.132703e33,-3.65482e33,-4.1769372e33,-4.6990542e33,-5.221171e33,-5.7432885e33,-6.265406e33,-6.787523e33,-7.30964e33,-7.831757e33,-8.3538744e33,-8.875992e33,-9.3981084e33,-9.920226e33,-1.0442342e34,-1.096446e34,-1.1486577e34,-1.2008694e34,-1.2530812e34,-1.3052929e34,-1.3575046e34,-1.4097162e34,-1.461928e34,-1.5141397e34,-1.5663514e34,-1.6185631e34,-1.6707749e34,-1.7229866e34,-1.7751983e34,-1.82741e34,-1.8796217e34,-1.9318334e34,-1.9840451e34,-2.0362569e34,-2.0884685e34,-2.1406803e34,-2.192892e34,-2.2451038e34,-2.2973154e34,-2.3495273e34,-2.4017389e34,-2.4539505e34,-2.5061623e34,-2.558374e34,-2.6105858e34,-2.6627974e34,-2.7150092e34,-2.7672208e34,-2.8194325e34,-2.8716443e34,-2.923856e34,-2.9760678e34,-3.0282794e34,-3.0804912e34,-3.1327028e34,-3.1849147e34,-3.2371263e34,-3.289338e34,-3.3415498e34,-3.3937614e34,-3.4459732e34,-3.4981848e34,-3.5503967e34,-3.6026083e34,-3.65482e34,-3.7070317e34,-3.7592434e34,-3.8114552e34,-3.8636668e34,-3.9158787e34,-3.9680903e34,-4.020302e34,-4.0725137e34,-4.1247253e34,-4.176937e34,-4.229149e34,-4.2813607e34,-4.3335725e34,-4.385784e34,-4.4379957e34,-4.4902076e34,-4.542419e34,-4.594631e34,-4.6468427e34,-4.6990545e34,-4.751266e34,-4.8034777e34,-4.8556896e34,-4.907901e34,-4.960113e34,-5.0123246e34,-5.0645365e34,-5.116748e34,-5.1689597e34,-5.2211716e34,-5.273383e34,-5.325595e34,-5.3778066e34,-5.4300185e34,-5.48223e34,-5.5344417e34,-5.5866536e34,-5.638865e34,-5.691077e34,-5.7432886e34,-5.7955005e34,-5.847712e34,-5.8999237e34,-5.9521355e34,-6.004347e34,-6.056559e34,-6.1087706e34,-6.1609825e34,-6.213194e34,-6.2654057e34,-6.3176175e34,-6.3698294e34,-6.4220407e34,-6.4742526e34,-6.5264645e34,-6.578676e34,-6.6308877e34,-6.6830995e34,-6.7353114e34,-6.7875227e34,-6.8397346e34,-6.8919464e34,-6.944158e34,-6.9963697e34,-7.0485815e34,-7.1007934e34,-7.1530047e34,-7.2052166e34,-7.2574284e34,-7.30964e34,-7.3618516e34,-7.4140635e34,-7.4662754e34,-7.5184867e34,-7.5706986e34,-7.6229104e34,-7.675122e34,-7.7273336e34,-7.7795455e34,-7.8317573e34,-7.8839687e34,-7.9361806e34,-7.9883924e34,-8.040604e34,-8.0928156e34,-8.1450275e34,-8.1972393e34,-8.2494507e34,-8.3016625e34,-8.353874e34,-8.406086e34,-8.458298e34,-8.510509e34,-8.562721e34,-8.614933e34,-8.667145e34,-8.719356e34,-8.771568e34,-8.82378e34,-8.875991e34,-8.928203e34,-8.980415e34,-9.032627e34,-9.084838e34,-9.13705e34,-9.189262e34,-9.241473e34,-9.293685e34,-9.345897e34,-9.398109e34,-9.45032e34,-9.502532e34,-9.554744e34,-9.606955e34,-9.659167e34,-9.711379e34,-9.7635905e34,-9.815802e34,-9.868014e34,-9.920226e34,-9.972437e34,-1.0024649e35,-1.0076861e35,-1.0129073e35,-1.0181284e35,-1.0233496e35,-1.0285708e35,-1.0337919e35,-1.0390131e35,-1.0442343e35,-1.0494554e35,-1.0546766e35,-1.0598978e35,-1.065119e35,-1.0703402e35,-1.0755613e35,-1.0807825e35,-1.0860037e35,-1.0912248e35,-1.096446e35,-1.1016672e35,-1.1068883e35,-1.1121095e35,-1.1173307e35,-1.1225518e35,-1.127773e35,-1.1329942e35,-1.1382154e35,-1.1434366e35,-1.1486577e35,-1.1538789e35,-1.1591001e35,-1.1643212e35,-1.1695424e35,-1.1747636e35,-1.1799847e35,-1.1852059e35,-1.1904271e35,-1.1956482e35,-1.2008694e35,-1.2060906e35,-1.2113118e35,-1.216533e35,-1.2217541e35,-1.2269753e35,-1.2321965e35,-1.2374176e35,-1.2426388e35,-1.24786e35,-1.2530811e35,-1.2583023e35,-1.2635235e35,-1.2687446e35,-1.2739659e35,-1.279187e35,-1.2844081e35,-1.2896294e35,-1.2948505e35,-1.3000717e35,-1.3052929e35,-1.310514e35,-1.3157352e35,-1.3209564e35,-1.3261775e35,-1.3313987e35,-1.3366199e35,-1.341841e35,-1.3470623e35,-1.3522834e35,-1.3575045e35,-1.3627258e35,-1.3679469e35,-1.3731681e35,-1.3783893e35,-1.3836104e35,-1.3888316e35,-1.3940528e35,-1.3992739e35,-1.4044951e35,-1.4097163e35,-1.4149374e35,-1.4201587e35,-1.4253798e35,-1.4306009e35,-1.4358222e35,-1.4410433e35,-1.4462645e35,-1.4514857e35,-1.4567068e35,-1.461928e35,-1.4671492e35,-1.4723703e35,-1.4775915e35,-1.4828127e35,-1.4880338e35,-1.4932551e35,-1.4984762e35,-1.5036973e35,-1.5089186e35,-1.5141397e35,-1.5193608e35,-1.5245821e35,-1.5298032e35,-1.5350244e35,-1.5402456e35,-1.5454667e35,-1.550688e35,-1.5559091e35,-1.5611302e35,-1.5663515e35,-1.5715726e35,-1.5767937e35,-1.582015e35,-1.5872361e35,-1.5924572e35,-1.5976785e35,-1.6028996e35,-1.6081208e35,-1.613342e35,-1.6185631e35,-1.6237844e35,-1.6290055e35,-1.6342266e35,-1.6394479e35,-1.644669e35,-1.6498901e35,-1.6551114e35,-1.6603325e35,-1.6655536e35,-1.6707748e35,-1.6759961e35,-1.6812173e35,-1.6864384e35,-1.6916595e35,-1.6968807e35,-1.7021018e35,-1.7073231e35,-1.7125443e35,-1.7177654e35,-1.7229865e35,-1.7282077e35,-1.733429e35,-1.7386501e35,-1.7438713e35,-1.7490924e35,-1.7543135e35,-1.7595347e35,-1.764756e35,-1.7699772e35,-1.7751983e35,-1.7804194e35,-1.7856406e35,-1.7908619e35,-1.796083e35,-1.8013042e35,-1.8065253e35,-1.8117464e35,-1.8169676e35,-1.822189e35,-1.82741e35,-1.8326312e35,-1.8378523e35,-1.8430735e35,-1.8482946e35,-1.853516e35,-1.858737e35,-1.8639582e35,-1.8691793e35,-1.8744005e35,-1.8796218e35,-1.884843e35,-1.890064e35,-1.8952852e35,-1.9005063e35,-1.9057275e35,-1.9109488e35,-1.91617e35,-1.921391e35,-1.9266122e35,-1.9318334e35,-1.9370547e35,-1.9422758e35,-1.947497e35,-1.9527181e35,-1.9579392e35,-1.9631604e35,-1.9683817e35,-1.9736028e35,-1.978824e35,-1.9840451e35,-1.9892663e35,-1.9944874e35,-1.9997087e35,-2.0049299e35,-2.010151e35,-2.0153721e35,-2.0205933e35,-2.0258146e35,-2.0310357e35,-2.0362569e35,-2.041478e35,-2.0466991e35,-2.0519203e35,-2.0571416e35,-2.0623627e35,-2.0675839e35,-2.072805e35,-2.0780262e35,-2.0832475e35,-2.0884686e35,-2.0936898e35,-2.0989109e35,-2.104132e35,-2.1093532e35,-2.1145745e35,-2.1197956e35,-2.1250168e35,-2.130238e35,-2.135459e35,-2.1406804e35,-2.1459015e35,-2.1511227e35,-2.1563438e35,-2.161565e35,-2.166786e35,-2.1720074e35,-2.1772285e35,-2.1824497e35,-2.1876708e35,-2.192892e35,-2.198113e35,-2.2033344e35,-2.2085555e35,-2.2137767e35,-2.2189978e35,-2.224219e35,-2.2294403e35,-2.2346614e35,-2.2398826e35,-2.2451037e35,-2.2503248e35,-2.255546e35,-2.2607673e35,-2.2659884e35,-2.2712096e35,-2.2764307e35,-2.2816518e35,-2.2868732e35,-2.2920943e35,-2.2973154e35,-2.3025366e35,-2.3077577e35,-2.3129789e35,-2.3182002e35,-2.3234213e35,-2.3286425e35,-2.3338636e35,-2.3390847e35,-2.344306e35,-2.3495272e35,-2.3547483e35,-2.3599695e35,-2.3651906e35,-2.3704117e35,-2.375633e35,-2.3808542e35,-2.3860754e35,-2.3912965e35,-2.3965176e35,-2.4017388e35,-2.40696e35,-2.4121812e35,-2.4174024e35,-2.4226235e35,-2.4278446e35,-2.433066e35,-2.4382871e35,-2.4435082e35,-2.4487294e35,-2.4539505e35,-2.4591717e35,-2.464393e35,-2.4696141e35,-2.4748353e35,-2.4800564e35,-2.4852775e35,-2.4904989e35,-2.49572e35,-2.5009411e35,-2.5061623e35,-2.5113834e35,-2.5166045e35,-2.5218259e35,-2.527047e35,-2.5322681e35,-2.5374893e35,-2.5427104e35,-2.5479318e35,-2.5531529e35,-2.558374e35,-2.5635952e35,-2.5688163e35,-2.5740374e35,-2.5792588e35,-2.58448e35,-2.589701e35,-2.5949222e35,-2.6001433e35,-2.6053644e35,-2.6105858e35,-2.615807e35,-2.621028e35,-2.6262492e35,-2.6314703e35,-2.6366917e35,-2.6419128e35,-2.647134e35,-2.652355e35,-2.6575762e35,-2.6627973e35,-2.6680187e35,-2.6732398e35,-2.678461e35,-2.683682e35,-2.6889032e35,-2.6941245e35,-2.6993457e35,-2.7045668e35,-2.709788e35,-2.715009e35,-2.7202302e35,-2.7254516e35,-2.7306727e35,-2.7358938e35,-2.741115e35,-2.7463361e35,-2.7515572e35,-2.7567786e35,-2.7619997e35,-2.7672208e35,-2.772442e35,-2.7776631e35,-2.7828845e35,-2.7881056e35,-2.7933267e35,-2.7985479e35,-2.803769e35,-2.8089901e35,-2.8142115e35,-2.8194326e35,-2.8246537e35,-2.8298749e35,-2.835096e35,-2.8403173e35,-2.8455385e35,-2.8507596e35,-2.8559808e35,-2.8612019e35,-2.866423e35,-2.8716444e35,-2.8768655e35,-2.8820866e35,-2.8873078e35,-2.892529e35,-2.8977502e35,-2.9029714e35,-2.9081925e35,-2.9134136e35,-2.9186348e35,-2.923856e35,-2.9290773e35,-2.9342984e35,-2.9395195e35,-2.9447407e35,-2.9499618e35,-2.955183e35,-2.9604043e35,-2.9656254e35,-2.9708465e35,-2.9760677e35,-2.9812888e35,-2.9865101e35,-2.9917313e35,-2.9969524e35,-3.0021735e35,-3.0073947e35,-3.0126158e35,-3.0178372e35,-3.0230583e35,-3.0282794e35,-3.0335006e35,-3.0387217e35,-3.043943e35,-3.0491642e35,-3.0543853e35,-3.0596064e35,-3.0648276e35,-3.0700487e35,-3.07527e35,-3.0804912e35,-3.0857123e35,-3.0909335e35,-3.0961546e35,-3.101376e35,-3.106597e35,-3.1118182e35,-3.1170393e35,-3.1222605e35,-3.1274816e35,-3.132703e35,-3.137924e35,-3.1431452e35,-3.1483663e35,-3.1535875e35,-3.1588086e35,-3.16403e35,-3.169251e35,-3.1744722e35,-3.1796934e35,-3.1849145e35,-3.1901358e35,-3.195357e35,-3.2005781e35,-3.2057992e35,-3.2110204e35,-3.2162415e35,-3.2214628e35,-3.226684e35,-3.2319051e35,-3.2371262e35,-3.2423474e35,-3.2475687e35,-3.2527899e35,-3.258011e35,-3.2632321e35,-3.2684533e35,-3.2736744e35,-3.2788957e35,-3.2841169e35,-3.289338e35,-3.2945591e35,-3.2997803e35,-3.3050016e35,-3.3102227e35,-3.3154439e35,-3.320665e35,-3.325886e35,-3.3311073e35,-3.3363284e35,-3.3415496e35,-3.3467707e35,-3.3519922e35,-3.3572134e35,-3.3624345e35,-3.3676556e35,-3.3728768e35,-3.378098e35,-3.383319e35,-3.38854e35,-3.3937613e35,-3.3989825e35,-3.4042036e35,-3.409425e35,-3.4146463e35,-3.4198674e35,-3.4250885e35,-3.4303097e35,-3.4355308e35,-3.440752e35,-3.445973e35,-3.4511942e35,-3.4564153e35,-3.4616365e35,-3.466858e35,-3.472079e35,-3.4773003e35,-3.4825214e35,-3.4877426e35,-3.4929637e35,-3.498185e35,-3.503406e35,-3.508627e35,-3.5138482e35,-3.5190694e35,-3.524291e35,-3.529512e35,-3.534733e35,-3.5399543e35,-3.5451754e35,-3.5503966e35,-3.5556177e35,-3.560839e35,-3.56606e35,-3.571281e35,-3.5765023e35,-3.5817238e35,-3.586945e35,-3.592166e35,-3.5973872e35,-3.6026083e35,-3.6078295e35,-3.6130506e35,-3.6182717e35,-3.623493e35,-3.628714e35,-3.633935e35,-3.6391563e35,-3.644378e35,-3.649599e35,-3.65482e35,-3.6600412e35,-3.6652624e35,-3.6704835e35,-3.6757046e35,-3.6809258e35,-3.686147e35,-3.691368e35,-3.696589e35,-3.7018107e35,-3.707032e35,-3.712253e35,-3.717474e35,-3.7226953e35,-3.7279164e35,-3.7331375e35,-3.7383587e35,-3.7435798e35,-3.748801e35,-3.754022e35,-3.7592436e35,-3.7644647e35,-3.769686e35,-3.774907e35,-3.780128e35,-3.7853493e35,-3.7905704e35,-3.7957916e35,-3.8010127e35,-3.806234e35,-3.811455e35,-3.8166765e35,-3.8218976e35,-3.8271188e35,-3.83234e35,-3.837561e35,-3.842782e35,-3.8480033e35,-3.8532244e35,-3.8584456e35,-3.8636667e35,-3.868888e35,-3.8741094e35,-3.8793305e35,-3.8845517e35,-3.8897728e35,-3.894994e35,-3.900215e35,-3.9054362e35,-3.9106573e35,-3.9158785e35,-3.9210996e35,-3.9263207e35,-3.9315423e35,-3.9367634e35,-3.9419845e35,-3.9472057e35,-3.952427e35,-3.957648e35,-3.962869e35,-3.9680902e35,-3.9733114e35,-3.9785325e35,-3.9837536e35,-3.9889748e35,-3.9941963e35,-3.9994174e35,-4.0046386e35,-4.0098597e35,-4.015081e35,-4.020302e35,-4.025523e35,-4.0307443e35,-4.0359654e35,-4.0411865e35,-4.0464077e35,-4.051629e35,-4.0568503e35,-4.0620715e35,-4.0672926e35,-4.0725137e35,-4.077735e35,-4.082956e35,-4.088177e35,-4.0933983e35,-4.0986194e35,-4.1038406e35,-4.109062e35,-4.1142832e35,-4.1195044e35,-4.1247255e35,-4.1299466e35,-4.1351678e35,-4.140389e35,-4.14561e35,-4.150831e35,-4.1560523e35,-4.1612734e35,-4.166495e35,-4.171716e35,-4.1769372e35,-4.1821584e35,-4.1873795e35,-4.1926007e35,-4.1978218e35,-4.203043e35,-4.208264e35,-4.2134852e35,-4.2187063e35,-4.223928e35,-4.229149e35,-4.23437e35,-4.2395913e35,-4.2448124e35,-4.2500335e35,-4.2552547e35,-4.260476e35,-4.265697e35,-4.270918e35,-4.2761392e35,-4.2813608e35,-4.286582e35,-4.291803e35,-4.297024e35,-4.3022453e35,-4.3074664e35,-4.3126876e35,-4.3179087e35,-4.32313e35,-4.328351e35,-4.333572e35,-4.3387937e35,-4.3440148e35,-4.349236e35,-4.354457e35,-4.359678e35,-4.3648993e35,-4.3701205e35,-4.3753416e35,-4.3805627e35,-4.385784e35,-4.391005e35,-4.396226e35,-4.4014477e35,-4.406669e35,-4.41189e35,-4.417111e35,-4.4223322e35,-4.4275534e35,-4.4327745e35,-4.4379956e35,-4.4432168e35,-4.448438e35,-4.453659e35,-4.4588806e35,-4.4641017e35,-4.469323e35,-4.474544e35,-4.479765e35,-4.4849862e35,-4.4902074e35,-4.4954285e35,-4.5006497e35,-4.5058708e35,-4.511092e35,-4.5163135e35,-4.5215346e35,-4.5267557e35,-4.531977e35,-4.537198e35,-4.542419e35,-4.5476403e35,-4.5528614e35,-4.5580825e35,-4.5633037e35,-4.568525e35,-4.5737464e35,-4.5789675e35,-4.5841886e35,-4.5894098e35,-4.594631e35,-4.599852e35,-4.605073e35,-4.6102943e35,-4.6155154e35,-4.6207366e35,-4.6259577e35,-4.6311792e35,-4.6364004e35,-4.6416215e35,-4.6468427e35,-4.6520638e35,-4.657285e35,-4.662506e35,-4.667727e35,-4.6729483e35,-4.6781695e35,-4.6833906e35,-4.688612e35,-4.6938333e35,-4.6990544e35,-4.7042755e35,-4.7094967e35,-4.714718e35,-4.719939e35,-4.72516e35,-4.7303812e35,-4.7356024e35,-4.7408235e35,-4.7460446e35,-4.751266e35,-4.7564873e35,-4.7617084e35,-4.7669296e35,-4.7721507e35,-4.777372e35,-4.782593e35,-4.787814e35,-4.7930352e35,-4.7982564e35,-4.8034775e35,-4.808699e35,-4.81392e35,-4.8191413e35,-4.8243625e35,-4.8295836e35,-4.8348047e35,-4.840026e35,-4.845247e35,-4.850468e35,-4.8556893e35,-4.8609104e35,-4.866132e35,-4.871353e35,-4.8765742e35,-4.8817954e35,-4.8870165e35,-4.8922376e35,-4.8974588e35,-4.90268e35,-4.907901e35,-4.913122e35,-4.9183433e35,-4.923565e35,-4.928786e35,-4.934007e35,-4.9392282e35,-4.9444494e35,-4.9496705e35,-4.9548917e35,-4.9601128e35,-4.965334e35,-4.970555e35,-4.975776e35,-4.9809977e35,-4.986219e35,-4.99144e35,-4.996661e35,-5.0018823e35,-5.0071034e35,-5.0123245e35,-5.0175457e35,-5.022767e35,-5.027988e35,-5.033209e35,-5.0384306e35,-5.0436518e35,-5.048873e35,-5.054094e35,-5.059315e35,-5.0645363e35,-5.0697574e35,-5.0749786e35,-5.0801997e35,-5.085421e35,-5.090642e35,-5.0958635e35,-5.1010846e35,-5.1063058e35,-5.111527e35,-5.116748e35,-5.121969e35,-5.1271903e35,-5.1324115e35,-5.1376326e35,-5.1428537e35,-5.148075e35,-5.153296e35,-5.1585175e35,-5.1637387e35,-5.16896e35,-5.174181e35,-5.179402e35,-5.1846232e35,-5.1898444e35,-5.1950655e35,-5.2002866e35,-5.2055078e35,-5.210729e35,-5.2159504e35,-5.2211716e35,-5.2263927e35,-5.231614e35,-5.236835e35,-5.242056e35,-5.2472772e35,-5.2524984e35,-5.2577195e35,-5.2629406e35,-5.2681618e35,-5.2733833e35,-5.2786045e35,-5.2838256e35,-5.2890467e35,-5.294268e35,-5.299489e35,-5.30471e35,-5.3099313e35,-5.3151524e35,-5.3203735e35,-5.3255947e35,-5.3308162e35,-5.3360373e35,-5.3412585e35,-5.3464796e35,-5.3517008e35,-5.356922e35,-5.362143e35,-5.367364e35,-5.3725853e35,-5.3778064e35,-5.3830276e35,-5.388249e35,-5.3934702e35,-5.3986914e35,-5.4039125e35,-5.4091336e35,-5.4143548e35,-5.419576e35,-5.424797e35,-5.430018e35,-5.4352393e35,-5.4404605e35,-5.445682e35,-5.450903e35,-5.4561243e35,-5.4613454e35,-5.4665665e35,-5.4717877e35,-5.477009e35,-5.48223e35,-5.487451e35,-5.4926722e35,-5.4978934e35,-5.5031145e35,-5.508336e35,-5.513557e35,-5.5187783e35,-5.5239994e35,-5.5292206e35,-5.5344417e35,-5.539663e35,-5.544884e35,-5.550105e35,-5.5553262e35,-5.5605474e35,-5.565769e35,-5.57099e35,-5.576211e35,-5.5814323e35,-5.5866535e35,-5.5918746e35,-5.5970957e35,-5.602317e35,-5.607538e35,-5.612759e35,-5.6179803e35,-5.6232018e35,-5.628423e35,-5.633644e35,-5.6388652e35,-5.6440863e35,-5.6493075e35,-5.6545286e35,-5.6597498e35,-5.664971e35,-5.670192e35,-5.675413e35,-5.6806347e35,-5.685856e35,-5.691077e35,-5.696298e35,-5.7015192e35,-5.7067404e35,-5.7119615e35,-5.7171826e35,-5.7224038e35,-5.727625e35,-5.732846e35,-5.7380676e35,-5.7432887e35,-5.74851e35,-5.753731e35,-5.758952e35,-5.7641733e35,-5.7693944e35,-5.7746155e35,-5.7798367e35,-5.785058e35,-5.790279e35,-5.7955005e35,-5.8007216e35,-5.8059427e35,-5.811164e35,-5.816385e35,-5.821606e35,-5.8268273e35,-5.8320484e35,-5.8372696e35,-5.8424907e35,-5.847712e35,-5.8529334e35,-5.8581545e35,-5.8633756e35,-5.8685968e35,-5.873818e35,-5.879039e35,-5.88426e35,-5.8894813e35,-5.8947025e35,-5.8999236e35,-5.9051447e35,-5.910366e35,-5.9155874e35,-5.9208085e35,-5.9260297e35,-5.9312508e35,-5.936472e35,-5.941693e35,-5.9469142e35,-5.9521353e35,-5.9573565e35,-5.9625776e35,-5.9677988e35,-5.9730203e35,-5.9782414e35,-5.9834626e35,-5.9886837e35,-5.993905e35,-5.999126e35,-6.004347e35,-6.0095682e35,-6.0147894e35,-6.0200105e35,-6.0252316e35,-6.030453e35,-6.0356743e35,-6.0408954e35,-6.0461166e35,-6.0513377e35,-6.056559e35,-6.06178e35,-6.067001e35,-6.0722223e35,-6.0774434e35,-6.0826645e35,-6.087886e35,-6.0931072e35,-6.0983283e35,-6.1035495e35,-6.1087706e35,-6.1139917e35,-6.119213e35,-6.124434e35,-6.129655e35,-6.1348763e35,-6.1400974e35,-6.145319e35,-6.15054e35,-6.1557612e35,-6.1609824e35,-6.1662035e35,-6.1714246e35,-6.1766458e35,-6.181867e35,-6.187088e35,-6.192309e35,-6.1975303e35,-6.202752e35,-6.207973e35,-6.213194e35,-6.2184153e35,-6.2236364e35,-6.2288575e35,-6.2340787e35,-6.2392998e35,-6.244521e35,-6.249742e35,-6.2549632e35,-6.2601843e35,-6.265406e35,-6.270627e35,-6.275848e35,-6.2810693e35,-6.2862904e35,-6.2915116e35,-6.2967327e35,-6.301954e35,-6.307175e35,-6.312396e35,-6.3176172e35,-6.3228388e35,-6.32806e35,-6.333281e35,-6.338502e35,-6.3437233e35,-6.3489444e35,-6.3541656e35,-6.3593867e35,-6.364608e35,-6.369829e35,-6.37505e35,-6.3802717e35,-6.3854928e35,-6.390714e35,-6.395935e35,-6.4011562e35,-6.4063773e35,-6.4115985e35,-6.4168196e35,-6.4220407e35,-6.427262e35,-6.432483e35,-6.4377045e35,-6.4429257e35,-6.448147e35,-6.453368e35,-6.458589e35,-6.4638102e35,-6.4690314e35,-6.4742525e35,-6.4794736e35,-6.4846948e35,-6.489916e35,-6.4951374e35,-6.5003586e35,-6.5055797e35,-6.510801e35,-6.516022e35,-6.521243e35,-6.5264643e35,-6.5316854e35,-6.5369065e35,-6.5421277e35,-6.5473488e35,-6.5525703e35,-6.5577915e35,-6.5630126e35,-6.5682337e35,-6.573455e35,-6.578676e35,-6.583897e35,-6.5891183e35,-6.5943394e35,-6.5995606e35,-6.6047817e35,-6.6100032e35,-6.6152244e35,-6.6204455e35,-6.6256666e35,-6.6308878e35,-6.636109e35,-6.64133e35,-6.646551e35,-6.651772e35,-6.6569934e35,-6.6622146e35,-6.667436e35,-6.672657e35,-6.677878e35,-6.683099e35,-6.68832e35,-6.6935414e35,-6.698763e35,-6.7039845e35,-6.7092056e35,-6.714427e35,-6.719648e35,-6.724869e35,-6.73009e35,-6.735311e35,-6.7405324e35,-6.7457535e35,-6.750975e35,-6.756196e35,-6.761417e35,-6.766638e35,-6.771859e35,-6.77708e35,-6.7823015e35,-6.787523e35,-6.792744e35,-6.797965e35,-6.803186e35,-6.808407e35,-6.813629e35,-6.81885e35,-6.824071e35,-6.8292925e35,-6.834514e35,-6.839735e35,-6.844956e35,-6.850177e35,-6.855398e35,-6.860619e35,-6.8658405e35,-6.8710616e35,-6.876283e35,-6.881504e35,-6.886725e35,-6.891946e35,-6.897167e35,-6.9023884e35,-6.9076096e35,-6.912831e35,-6.918052e35,-6.923273e35,-6.928494e35,-6.933716e35,-6.938937e35,-6.944158e35,-6.9493794e35,-6.9546006e35,-6.959822e35,-6.965043e35,-6.970264e35,-6.975485e35,-6.980706e35,-6.985927e35,-6.9911485e35,-6.99637e35,-7.001591e35,-7.006812e35,-7.012033e35,-7.017254e35,-7.022475e35,-7.0276965e35,-7.032918e35,-7.038139e35,-7.04336e35,-7.048582e35,-7.053803e35,-7.059024e35,-7.064245e35,-7.069466e35,-7.0746875e35,-7.079909e35,-7.08513e35,-7.090351e35,-7.095572e35,-7.100793e35,-7.106014e35,-7.1112354e35,-7.1164566e35,-7.121678e35,-7.126899e35,-7.13212e35,-7.137341e35,-7.142562e35,-7.147783e35,-7.1530045e35,-7.158226e35,-7.1634476e35,-7.168669e35,-7.17389e35,-7.179111e35,-7.184332e35,-7.189553e35,-7.1947744e35,-7.1999955e35,-7.205217e35,-7.210438e35,-7.215659e35,-7.22088e35,-7.226101e35,-7.231322e35,-7.2365435e35,-7.241765e35,-7.246986e35,-7.252207e35,-7.257428e35,-7.262649e35,-7.26787e35,-7.2730914e35,-7.2783126e35,-7.2835345e35,-7.288756e35,-7.293977e35,-7.299198e35,-7.304419e35,-7.30964e35,-7.314861e35,-7.3200825e35,-7.3253036e35,-7.330525e35,-7.335746e35,-7.340967e35,-7.346188e35,-7.351409e35,-7.3566304e35,-7.3618515e35,-7.367073e35,-7.372294e35,-7.377515e35,-7.382736e35,-7.387957e35,-7.393178e35,-7.3984e35,-7.4036214e35,-7.4088426e35,-7.414064e35,-7.419285e35,-7.424506e35,-7.429727e35,-7.434948e35,-7.440169e35,-7.4453905e35,-7.450612e35,-7.455833e35,-7.461054e35,-7.466275e35,-7.471496e35,-7.476717e35,-7.4819385e35,-7.4871596e35,-7.492381e35,-7.497602e35,-7.502823e35,-7.508044e35,-7.513266e35,-7.518487e35,-7.523708e35,-7.5289295e35,-7.534151e35,-7.539372e35,-7.544593e35,-7.549814e35,-7.555035e35,-7.560256e35,-7.5654774e35,-7.5706986e35,-7.57592e35,-7.581141e35,-7.586362e35,-7.591583e35,-7.596804e35,-7.602025e35,-7.6072465e35,-7.612468e35,-7.617689e35,-7.62291e35,-7.628131e35,-7.633353e35,-7.638574e35,-7.643795e35,-7.6490164e35,-7.6542375e35,-7.659459e35,-7.66468e35,-7.669901e35,-7.675122e35,-7.680343e35,-7.685564e35,-7.6907855e35,-7.696007e35,-7.701228e35,-7.706449e35,-7.71167e35,-7.716891e35,-7.722112e35,-7.7273334e35,-7.7325546e35,-7.737776e35,-7.742997e35,-7.748219e35,-7.75344e35,-7.758661e35,-7.763882e35,-7.769103e35,-7.7743245e35,-7.7795456e35,-7.784767e35,-7.789988e35,-7.795209e35,-7.80043e35,-7.805651e35,-7.8108724e35,-7.8160935e35,-7.821315e35,-7.826536e35,-7.831757e35,-7.836978e35,-7.842199e35,-7.84742e35,-7.8526415e35,-7.857863e35,-7.8630846e35,-7.868306e35,-7.873527e35,-7.878748e35,-7.883969e35,-7.88919e35,-7.894411e35,-7.8996325e35,-7.904854e35,-7.910075e35,-7.915296e35,-7.920517e35,-7.925738e35,-7.930959e35,-7.9361805e35,-7.9414016e35,-7.946623e35,-7.951844e35,-7.957065e35,-7.962286e35,-7.967507e35,-7.9727284e35,-7.9779495e35,-7.9831715e35,-7.988393e35,-7.993614e35,-7.998835e35,-8.004056e35,-8.009277e35,-8.014498e35,-8.0197194e35,-8.0249406e35,-8.030162e35,-8.035383e35,-8.040604e35,-8.045825e35,-8.051046e35,-8.056267e35,-8.0614885e35,-8.06671e35,-8.071931e35,-8.077152e35,-8.082373e35,-8.087594e35,-8.092815e35,-8.098037e35,-8.103258e35,-8.1084795e35,-8.113701e35,-8.118922e35,-8.124143e35,-8.129364e35,-8.134585e35,-8.139806e35,-8.1450275e35,-8.150249e35,-8.15547e35,-8.160691e35,-8.165912e35,-8.171133e35,-8.176354e35,-8.1815754e35,-8.1867966e35,-8.192018e35,-8.197239e35,-8.20246e35,-8.207681e35,-8.212903e35,-8.218124e35,-8.223345e35,-8.2285664e35,-8.2337876e35,-8.239009e35,-8.24423e35,-8.249451e35,-8.254672e35,-8.259893e35,-8.2651144e35,-8.2703355e35,-8.275557e35,-8.280778e35,-8.285999e35,-8.29122e35,-8.296441e35,-8.301662e35,-8.3068835e35,-8.312105e35,-8.317326e35,-8.322547e35,-8.327769e35,-8.33299e35,-8.338211e35,-8.343432e35,-8.348653e35,-8.3538745e35,-8.359096e35,-8.364317e35,-8.369538e35,-8.374759e35,-8.37998e35,-8.385201e35,-8.3904225e35,-8.3956436e35,-8.400865e35,-8.406086e35,-8.411307e35,-8.416528e35,-8.421749e35,-8.4269704e35,-8.4321915e35,-8.437413e35,-8.442634e35,-8.447856e35,-8.453077e35,-8.458298e35,-8.463519e35,-8.46874e35,-8.4739614e35,-8.4791826e35,-8.484404e35,-8.489625e35,-8.494846e35,-8.500067e35,-8.505288e35,-8.510509e35,-8.5157305e35,-8.520952e35,-8.526173e35,-8.531394e35,-8.536615e35,-8.541836e35,-8.547057e35,-8.5522785e35,-8.5574996e35,-8.5627215e35,-8.567943e35,-8.573164e35,-8.578385e35,-8.583606e35,-8.588827e35,-8.594048e35,-8.5992695e35,-8.604491e35,-8.609712e35,-8.614933e35,-8.620154e35,-8.625375e35,-8.630596e35,-8.6358174e35,-8.6410386e35,-8.64626e35,-8.651481e35,-8.656702e35,-8.661923e35,-8.667144e35,-8.672365e35,-8.677587e35,-8.6828084e35,-8.6880296e35,-8.693251e35,-8.698472e35,-8.703693e35,-8.708914e35,-8.714135e35,-8.719356e35,-8.7245775e35,-8.729799e35,-8.73502e35,-8.740241e35,-8.745462e35,-8.750683e35,-8.755904e35,-8.7611255e35,-8.766347e35,-8.771568e35,-8.776789e35,-8.78201e35,-8.787231e35,-8.792452e35,-8.797674e35,-8.802895e35,-8.8081165e35,-8.813338e35,-8.818559e35,-8.82378e35,-8.829001e35,-8.834222e35,-8.839443e35,-8.8446644e35,-8.8498856e35,-8.855107e35,-8.860328e35,-8.865549e35,-8.87077e35,-8.875991e35,-8.881212e35,-8.8864335e35,-8.891655e35,-8.896876e35,-8.902097e35,-8.907318e35,-8.91254e35,-8.917761e35,-8.922982e35,-8.9282034e35,-8.9334245e35,-8.938646e35,-8.943867e35,-8.949088e35,-8.954309e35,-8.95953e35,-8.964751e35,-8.9699725e35,-8.975194e35,-8.980415e35,-8.985636e35,-8.990857e35,-8.996078e35,-9.001299e35,-9.0065204e35,-9.0117416e35,-9.016963e35,-9.022184e35,-9.027406e35,-9.032627e35,-9.037848e35,-9.043069e35,-9.04829e35,-9.0535115e35,-9.0587326e35,-9.063954e35,-9.069175e35,-9.074396e35,-9.079617e35,-9.084838e35,-9.0900594e35,-9.0952806e35,-9.100502e35,-9.105723e35,-9.110944e35,-9.116165e35,-9.121386e35,-9.126607e35,-9.1318285e35,-9.13705e35,-9.142271e35,-9.147493e35,-9.152714e35,-9.157935e35,-9.163156e35,-9.168377e35,-9.173598e35,-9.1788195e35,-9.184041e35,-9.189262e35,-9.194483e35,-9.199704e35,-9.204925e35,-9.210146e35,-9.2153675e35,-9.220589e35,-9.22581e35,-9.231031e35,-9.236252e35,-9.241473e35,-9.246694e35,-9.2519154e35,-9.2571366e35,-9.2623585e35,-9.26758e35,-9.272801e35,-9.278022e35,-9.283243e35,-9.288464e35,-9.293685e35,-9.2989064e35,-9.3041276e35,-9.309349e35,-9.31457e35,-9.319791e35,-9.325012e35,-9.330233e35,-9.335454e35,-9.3406755e35,-9.345897e35,-9.351118e35,-9.356339e35,-9.36156e35,-9.366781e35,-9.372002e35,-9.377224e35,-9.3824454e35,-9.3876665e35,-9.392888e35,-9.398109e35,-9.40333e35,-9.408551e35,-9.413772e35,-9.418993e35,-9.4242145e35,-9.429436e35,-9.434657e35,-9.439878e35,-9.445099e35,-9.45032e35,-9.455541e35,-9.4607624e35,-9.4659836e35,-9.471205e35,-9.476426e35,-9.481647e35,-9.486868e35,-9.492089e35,-9.497311e35,-9.502532e35,-9.5077535e35,-9.5129746e35,-9.518196e35,-9.523417e35,-9.528638e35,-9.533859e35,-9.53908e35,-9.5443014e35,-9.5495225e35,-9.554744e35,-9.559965e35,-9.565186e35,-9.570407e35,-9.575628e35,-9.580849e35,-9.5860705e35,-9.591292e35,-9.596513e35,-9.601734e35,-9.606955e35,-9.612177e35,-9.617398e35,-9.622619e35,-9.62784e35,-9.6330615e35,-9.638283e35,-9.643504e35,-9.648725e35,-9.653946e35,-9.659167e35,-9.664388e35,-9.6696095e35,-9.6748306e35,-9.680052e35,-9.685273e35,-9.690494e35,-9.695715e35,-9.700936e35,-9.7061574e35,-9.7113786e35,-9.7166e35,-9.721821e35,-9.727043e35,-9.732264e35,-9.737485e35,-9.742706e35,-9.747927e35,-9.7531484e35,-9.7583696e35,-9.763591e35,-9.768812e35,-9.774033e35,-9.779254e35,-9.784475e35,-9.789696e35,-9.7949175e35,-9.800139e35,-9.80536e35,-9.810581e35,-9.815802e35,-9.821023e35,-9.826244e35,-9.8314655e35,-9.836687e35,-9.8419085e35,-9.84713e35,-9.852351e35,-9.857572e35,-9.862793e35,-9.868014e35,-9.873235e35,-9.8784565e35,-9.883678e35,-9.888899e35,-9.89412e35,-9.899341e35,-9.904562e35,-9.909783e35,-9.9150044e35,-9.9202256e35,-9.925447e35,-9.930668e35,-9.935889e35,-9.94111e35,-9.946331e35,-9.951552e35,-9.9567735e35,-9.9619955e35,-9.9672166e35,-9.972438e35,-9.977659e35,-9.98288e35,-9.988101e35,-9.993322e35,-9.9985434e35,-1.00037645e36,-1.0008986e36,-1.0014207e36,-1.0019428e36,-1.0024649e36,-1.002987e36,-1.0035091e36,-1.00403125e36,-1.0045534e36,-1.0050755e36,-1.0055976e36,-1.0061197e36,-1.0066418e36,-1.0071639e36,-1.0076861e36,-1.0082082e36,-1.00873035e36,-1.0092525e36,-1.0097746e36,-1.0102967e36,-1.0108188e36,-1.0113409e36,-1.011863e36,-1.01238515e36,-1.01290726e36,-1.0134294e36,-1.0139515e36,-1.0144736e36,-1.0149957e36,-1.0155178e36,-1.01603994e36,-1.01656205e36,-1.0170842e36,-1.0176063e36,-1.0181284e36,-1.0186505e36,-1.0191727e36,-1.0196948e36,-1.0202169e36,-1.02073904e36,-1.02126116e36,-1.0217833e36,-1.0223054e36,-1.0228275e36,-1.0233496e36,-1.0238717e36,-1.0243938e36,-1.02491595e36,-1.0254381e36,-1.0259602e36,-1.0264823e36,-1.0270044e36,-1.0275265e36,-1.0280486e36,-1.02857075e36,-1.02909286e36,-1.029615e36,-1.0301371e36,-1.0306592e36,-1.0311814e36,-1.0317035e36,-1.0322256e36,-1.0327477e36,-1.03326985e36,-1.033792e36,-1.0343141e36,-1.0348362e36,-1.0353583e36,-1.0358804e36,-1.0364025e36,-1.03692464e36,-1.03744676e36,-1.0379689e36,-1.038491e36,-1.0390131e36,-1.0395352e36,-1.0400573e36,-1.0405794e36,-1.04110155e36,-1.0416237e36,-1.0421458e36,-1.042668e36,-1.0431901e36,-1.0437122e36,-1.0442343e36,-1.0447564e36,-1.04527854e36,-1.04580065e36,-1.0463228e36,-1.0468449e36,-1.047367e36,-1.0478891e36,-1.0484112e36,-1.0489333e36,-1.04945545e36,-1.0499776e36,-1.0504997e36,-1.0510218e36,-1.0515439e36,-1.052066e36,-1.0525881e36,-1.05311024e36,-1.05363236e36,-1.05415455e36,-1.0546767e36,-1.0551988e36,-1.0557209e36,-1.056243e36,-1.0567651e36,-1.0572872e36,-1.05780935e36,-1.05833146e36,-1.0588536e36,-1.0593757e36,-1.0598978e36,-1.0604199e36,-1.060942e36,-1.06146414e36,-1.06198625e36,-1.0625084e36,-1.0630305e36,-1.0635526e36,-1.0640747e36,-1.0645968e36,-1.0651189e36,-1.06564105e36,-1.06616324e36,-1.06668536e36,-1.0672075e36,-1.0677296e36,-1.0682517e36,-1.0687738e36,-1.0692959e36,-1.069818e36,-1.07034015e36,-1.0708623e36,-1.0713844e36,-1.0719065e36,-1.0724286e36,-1.0729507e36,-1.0734728e36,-1.07399495e36,-1.07451706e36,-1.0750392e36,-1.0755613e36,-1.0760834e36,-1.0766055e36,-1.0771276e36,-1.0776498e36,-1.0781719e36,-1.07869405e36,-1.0792162e36,-1.0797383e36,-1.0802604e36,-1.0807825e36,-1.0813046e36,-1.0818267e36,-1.08234884e36,-1.08287096e36,-1.0833931e36,-1.0839152e36,-1.0844373e36,-1.0849594e36,-1.0854815e36,-1.0860036e36,-1.08652575e36,-1.0870479e36,-1.08757e36,-1.0880921e36,-1.0886142e36,-1.0891364e36,-1.0896585e36,-1.0901806e36,-1.0907027e36,-1.09122485e36,-1.091747e36,-1.0922691e36,-1.0927912e36,-1.0933133e36,-1.0938354e36,-1.0943575e36,-1.09487965e36,-1.0954018e36,-1.0959239e36,-1.096446e36,-1.0969681e36,-1.0974902e36,-1.0980123e36,-1.09853444e36,-1.09905656e36,-1.0995787e36,-1.1001008e36,-1.1006229e36,-1.1011451e36,-1.1016672e36,-1.1021893e36,-1.1027114e36,-1.10323354e36,-1.10375566e36,-1.1042778e36,-1.1047999e36,-1.105322e36,-1.1058441e36,-1.1063662e36,-1.1068883e36,-1.10741045e36,-1.1079326e36,-1.1084547e36,-1.1089768e36,-1.1094989e36,-1.110021e36,-1.1105431e36,-1.11106525e36,-1.1115874e36,-1.1121095e36,-1.1126317e36,-1.1131538e36,-1.1136759e36,-1.114198e36,-1.1147201e36,-1.1152422e36,-1.11576435e36,-1.1162865e36,-1.1168086e36,-1.1173307e36,-1.1178528e36,-1.1183749e36,-1.118897e36,-1.11941914e36,-1.11994126e36,-1.1204634e36,-1.1209855e36,-1.1215076e36,-1.1220297e36,-1.1225518e36,-1.12307394e36,-1.12359605e36,-1.12411825e36,-1.12464036e36,-1.1251625e36,-1.1256846e36,-1.1262067e36,-1.1267288e36,-1.1272509e36,-1.12777304e36,-1.12829516e36,-1.1288173e36,-1.1293394e36,-1.1298615e36,-1.1303836e36,-1.1309057e36,-1.1314278e36,-1.13194995e36,-1.1324721e36,-1.1329942e36,-1.1335163e36,-1.1340384e36,-1.1345605e36,-1.1350826e36,-1.1356048e36,-1.1361269e36,-1.13664905e36,-1.1371712e36,-1.1376933e36,-1.1382154e36,-1.1387375e36,-1.1392596e36,-1.1397817e36,-1.14030385e36,-1.140826e36,-1.1413481e36,-1.1418702e36,-1.1423923e36,-1.1429144e36,-1.1434365e36,-1.14395864e36,-1.14448076e36,-1.1450029e36,-1.145525e36,-1.1460471e36,-1.1465692e36,-1.1470913e36,-1.1476135e36,-1.1481356e36,-1.14865774e36,-1.14917986e36,-1.149702e36,-1.1502241e36,-1.1507462e36,-1.1512683e36,-1.1517904e36,-1.1523125e36,-1.15283465e36,-1.1533568e36,-1.1538789e36,-1.154401e36,-1.1549231e36,-1.1554452e36,-1.1559673e36,-1.15648945e36,-1.1570116e36,-1.1575337e36,-1.1580558e36,-1.1585779e36,-1.1591001e36,-1.1596222e36,-1.1601443e36,-1.1606664e36,-1.16118855e36,-1.1617107e36,-1.1622328e36,-1.1627549e36,-1.163277e36,-1.1637991e36,-1.1643212e36,-1.16484334e36,-1.16536546e36,-1.1658876e36,-1.1664097e36,-1.1669318e36,-1.1674539e36,-1.167976e36,-1.1684981e36,-1.16902025e36,-1.1695424e36,-1.1700645e36,-1.1705867e36,-1.1711088e36,-1.1716309e36,-1.172153e36,-1.1726751e36,-1.17319724e36,-1.17371935e36,-1.1742415e36,-1.1747636e36,-1.1752857e36,-1.1758078e36,-1.1763299e36,-1.176852e36,-1.17737415e36,-1.1778963e36,-1.1784184e36,-1.1789405e36,-1.1794626e36,-1.1799847e36,-1.1805068e36,-1.18102894e36,-1.18155106e36,-1.1820732e36,-1.1825954e36,-1.1831175e36,-1.1836396e36,-1.1841617e36,-1.1846838e36,-1.1852059e36,-1.18572805e36,-1.18625016e36,-1.1867723e36,-1.1872944e36,-1.1878165e36,-1.1883386e36,-1.1888607e36,-1.18938284e36,-1.18990496e36,-1.1904271e36,-1.1909492e36,-1.1914713e36,-1.1919934e36,-1.1925155e36,-1.1930376e36,-1.19355975e36,-1.19408194e36,-1.19460406e36,-1.1951262e36,-1.1956483e36,-1.1961704e36,-1.1966925e36,-1.1972146e36,-1.1977367e36,-1.19825885e36,-1.198781e36,-1.1993031e36,-1.1998252e36,-1.2003473e36,-1.2008694e36,-1.2013915e36,-1.20191365e36,-1.2024358e36,-1.2029579e36,-1.20348e36,-1.2040021e36,-1.2045242e36,-1.2050463e36,-1.2055685e36,-1.2060906e36,-1.20661275e36,-1.2071349e36,-1.207657e36,-1.2081791e36,-1.2087012e36,-1.2092233e36,-1.2097454e36,-1.21026754e36,-1.21078966e36,-1.2113118e36,-1.2118339e36,-1.212356e36,-1.2128781e36,-1.2134002e36,-1.2139223e36,-1.21444445e36,-1.2149666e36,-1.2154887e36,-1.2160108e36,-1.2165329e36,-1.217055e36,-1.2175772e36,-1.2180993e36,-1.21862144e36,-1.21914355e36,-1.2196657e36,-1.2201878e36,-1.2207099e36,-1.221232e36,-1.2217541e36,-1.2222762e36,-1.22279835e36,-1.2233205e36,-1.2238426e36,-1.2243647e36,-1.2248868e36,-1.2254089e36,-1.225931e36,-1.22645314e36,-1.22697526e36,-1.2274974e36,-1.2280195e36,-1.2285416e36,-1.2290638e36,-1.2295859e36,-1.230108e36,-1.2306301e36,-1.23115225e36,-1.23167436e36,-1.2321965e36,-1.2327186e36,-1.2332407e36,-1.2337628e36,-1.2342849e36,-1.23480704e36,-1.23532915e36,-1.2358513e36,-1.2363734e36,-1.2368955e36,-1.2374176e36,-1.2379397e36,-1.2384618e36,-1.23898395e36,-1.2395061e36,-1.2400282e36,-1.2405504e36,-1.2410725e36,-1.2415946e36,-1.2421167e36,-1.2426388e36,-1.2431609e36,-1.24368305e36,-1.2442052e36,-1.2447273e36,-1.2452494e36,-1.2457715e36,-1.2462936e36,-1.2468157e36,-1.24733785e36,-1.24785996e36,-1.2483821e36,-1.2489042e36,-1.2494263e36,-1.2499484e36,-1.2504705e36,-1.25099264e36,-1.25151475e36,-1.2520369e36,-1.2525591e36,-1.2530812e36,-1.2536033e36,-1.2541254e36,-1.2546475e36,-1.2551696e36,-1.25569174e36,-1.25621386e36,-1.256736e36,-1.2572581e36,-1.2577802e36,-1.2583023e36,-1.2588244e36,-1.2593465e36,-1.25986865e36,-1.2603908e36,-1.2609129e36,-1.261435e36,-1.2619571e36,-1.2624792e36,-1.2630013e36,-1.26352345e36,-1.2640456e36,-1.26456775e36,-1.2650899e36,-1.265612e36,-1.2661341e36,-1.2666562e36,-1.2671783e36,-1.2677004e36,-1.26822255e36,-1.2687447e36,-1.2692668e36,-1.2697889e36,-1.270311e36,-1.2708331e36,-1.2713552e36,-1.27187734e36,-1.27239946e36,-1.2729216e36,-1.2734437e36,-1.2739658e36,-1.2744879e36,-1.27501e36,-1.2755322e36,-1.2760543e36,-1.27657645e36,-1.27709856e36,-1.2776207e36,-1.2781428e36,-1.2786649e36,-1.279187e36,-1.2797091e36,-1.28023124e36,-1.28075335e36,-1.2812755e36,-1.2817976e36,-1.2823197e36,-1.2828418e36,-1.2833639e36,-1.283886e36,-1.28440815e36,-1.2849303e36,-1.2854524e36,-1.2859745e36,-1.2864966e36,-1.2870188e36,-1.2875409e36,-1.288063e36,-1.2885851e36,-1.28910725e36,-1.2896294e36,-1.2901515e36,-1.2906736e36,-1.2911957e36,-1.2917178e36,-1.2922399e36,-1.29276205e36,-1.29328416e36,-1.2938063e36,-1.2943284e36,-1.2948505e36,-1.2953726e36,-1.2958947e36,-1.29641684e36,-1.29693895e36,-1.2974611e36,-1.2979832e36,-1.2985053e36,-1.2990275e36,-1.2995496e36,-1.3000717e36,-1.3005938e36,-1.30111594e36,-1.30163806e36,-1.3021602e36,-1.3026823e36,-1.3032044e36,-1.3037265e36,-1.3042486e36,-1.3047707e36,-1.30529285e36,-1.305815e36,-1.3063371e36,-1.3068592e36,-1.3073813e36,-1.3079034e36,-1.3084255e36,-1.30894765e36,-1.30946976e36,-1.3099919e36,-1.3105141e36,-1.3110362e36,-1.3115583e36,-1.3120804e36,-1.3126025e36,-1.3131246e36,-1.31364675e36,-1.3141689e36,-1.314691e36,-1.3152131e36,-1.3157352e36,-1.3162573e36,-1.3167794e36,-1.31730154e36,-1.31782366e36,-1.3183458e36,-1.3188679e36,-1.31939e36,-1.3199121e36,-1.3204342e36,-1.3209563e36,-1.32147845e36,-1.32200064e36,-1.32252276e36,-1.3230449e36,-1.323567e36,-1.3240891e36,-1.3246112e36,-1.3251333e36,-1.3256554e36,-1.32617755e36,-1.3266997e36,-1.3272218e36,-1.3277439e36,-1.328266e36,-1.3287881e36,-1.3293102e36,-1.3298323e36,-1.3303545e36,-1.3308766e36,-1.3313987e36,-1.3319208e36,-1.3324429e36,-1.332965e36,-1.3334871e36,-1.3340093e36,-1.3345314e36,-1.3350535e36,-1.3355756e36,-1.3360977e36,-1.3366198e36,-1.337142e36,-1.337664e36,-1.3381862e36,-1.3387083e36,-1.3392304e36,-1.3397527e36,-1.3402748e36,-1.3407969e36,-1.341319e36,-1.3418411e36,-1.3423632e36,-1.3428853e36,-1.3434075e36,-1.3439296e36,-1.3444517e36,-1.3449738e36,-1.3454959e36,-1.346018e36,-1.3465401e36,-1.3470623e36,-1.3475844e36,-1.3481065e36,-1.3486286e36,-1.3491507e36,-1.3496728e36,-1.350195e36,-1.350717e36,-1.3512392e36,-1.3517613e36,-1.3522834e36,-1.3528055e36,-1.3533276e36,-1.3538497e36,-1.3543718e36,-1.354894e36,-1.355416e36,-1.3559382e36,-1.3564603e36,-1.3569824e36,-1.3575045e36,-1.3580266e36,-1.3585488e36,-1.3590709e36,-1.359593e36,-1.3601151e36,-1.3606372e36,-1.3611593e36,-1.3616814e36,-1.3622035e36,-1.3627258e36,-1.363248e36,-1.36377e36,-1.3642922e36,-1.3648143e36,-1.3653364e36,-1.3658585e36,-1.3663806e36,-1.3669027e36,-1.3674248e36,-1.367947e36,-1.368469e36,-1.3689912e36,-1.3695133e36,-1.3700354e36,-1.3705575e36,-1.3710796e36,-1.3716018e36,-1.3721239e36,-1.372646e36,-1.3731681e36,-1.3736902e36,-1.3742123e36,-1.3747344e36,-1.3752565e36,-1.3757787e36,-1.3763008e36,-1.3768229e36,-1.377345e36,-1.3778671e36,-1.3783892e36,-1.3789113e36,-1.3794335e36,-1.3799556e36,-1.3804777e36,-1.3809998e36,-1.3815219e36,-1.382044e36,-1.3825661e36,-1.3830883e36,-1.3836104e36,-1.3841325e36,-1.3846546e36,-1.3851767e36,-1.3856988e36,-1.3862211e36,-1.3867432e36,-1.3872653e36,-1.3877874e36,-1.3883095e36,-1.3888317e36,-1.3893538e36,-1.3898759e36,-1.390398e36,-1.3909201e36,-1.3914422e36,-1.3919643e36,-1.3924865e36,-1.3930086e36,-1.3935307e36,-1.3940528e36,-1.3945749e36,-1.395097e36,-1.3956191e36,-1.3961412e36,-1.3966634e36,-1.3971855e36,-1.3977076e36,-1.3982297e36,-1.3987518e36,-1.399274e36,-1.399796e36,-1.4003182e36,-1.4008403e36,-1.4013624e36,-1.4018845e36,-1.4024066e36,-1.4029287e36,-1.4034508e36,-1.403973e36,-1.404495e36,-1.4050172e36,-1.4055393e36,-1.4060614e36,-1.4065835e36,-1.4071056e36,-1.4076277e36,-1.4081499e36,-1.408672e36,-1.4091941e36,-1.4097164e36,-1.4102385e36,-1.4107606e36,-1.4112827e36,-1.4118048e36,-1.412327e36,-1.412849e36,-1.4133712e36,-1.4138933e36,-1.4144154e36,-1.4149375e36,-1.4154596e36,-1.4159817e36,-1.4165038e36,-1.417026e36,-1.417548e36,-1.4180702e36,-1.4185923e36,-1.4191144e36,-1.4196365e36,-1.4201586e36,-1.4206807e36,-1.4212029e36,-1.421725e36,-1.4222471e36,-1.4227692e36,-1.4232913e36,-1.4238134e36,-1.4243355e36,-1.4248577e36,-1.4253798e36,-1.4259019e36,-1.426424e36,-1.4269461e36,-1.4274682e36,-1.4279903e36,-1.4285125e36,-1.4290346e36,-1.4295567e36,-1.4300788e36,-1.4306009e36,-1.431123e36,-1.4316451e36,-1.4321672e36,-1.4326895e36,-1.4332116e36,-1.4337337e36,-1.4342559e36,-1.434778e36,-1.4353001e36,-1.4358222e36,-1.4363443e36,-1.4368664e36,-1.4373885e36,-1.4379107e36,-1.4384328e36,-1.4389549e36,-1.439477e36,-1.4399991e36,-1.4405212e36,-1.4410433e36,-1.4415654e36,-1.4420876e36,-1.4426097e36,-1.4431318e36,-1.4436539e36,-1.444176e36,-1.4446981e36,-1.4452202e36,-1.4457424e36,-1.4462645e36,-1.4467866e36,-1.4473087e36,-1.4478308e36,-1.448353e36,-1.448875e36,-1.4493972e36,-1.4499193e36,-1.4504414e36,-1.4509635e36,-1.4514856e36,-1.4520077e36,-1.4525298e36,-1.453052e36,-1.453574e36,-1.4540962e36,-1.4546183e36,-1.4551404e36,-1.4556625e36,-1.4561848e36,-1.4567069e36,-1.457229e36,-1.4577511e36,-1.4582732e36,-1.4587954e36,-1.4593175e36,-1.4598396e36,-1.4603617e36,-1.4608838e36,-1.461406e36,-1.461928e36,-1.4624502e36,-1.4629723e36,-1.4634944e36,-1.4640165e36,-1.4645386e36,-1.4650607e36,-1.4655828e36,-1.466105e36,-1.466627e36,-1.4671492e36,-1.4676713e36,-1.4681934e36,-1.4687155e36,-1.4692376e36,-1.4697597e36,-1.4702819e36,-1.470804e36,-1.4713261e36,-1.4718482e36,-1.4723703e36,-1.4728924e36,-1.4734145e36,-1.4739367e36,-1.4744588e36,-1.4749809e36,-1.475503e36,-1.4760251e36,-1.4765472e36,-1.4770693e36,-1.4775914e36,-1.4781136e36,-1.4786357e36,-1.4791578e36,-1.47968e36,-1.4802022e36,-1.4807243e36,-1.4812464e36,-1.4817685e36,-1.4822906e36,-1.4828127e36,-1.4833349e36,-1.483857e36,-1.4843791e36,-1.4849012e36,-1.4854233e36,-1.4859454e36,-1.4864675e36,-1.4869896e36,-1.4875118e36,-1.4880339e36,-1.488556e36,-1.4890781e36,-1.4896002e36,-1.4901223e36,-1.4906444e36,-1.4911666e36,-1.4916887e36,-1.4922108e36,-1.4927329e36,-1.493255e36,-1.4937771e36,-1.4942992e36,-1.4948214e36,-1.4953435e36,-1.4958656e36,-1.4963877e36,-1.4969098e36,-1.4974319e36,-1.497954e36,-1.4984761e36,-1.4989983e36,-1.4995204e36,-1.5000425e36,-1.5005646e36,-1.5010867e36,-1.5016088e36,-1.502131e36,-1.5026532e36,-1.5031753e36,-1.5036974e36,-1.5042196e36,-1.5047417e36,-1.5052638e36,-1.5057859e36,-1.506308e36,-1.5068301e36,-1.5073522e36,-1.5078744e36,-1.5083965e36,-1.5089186e36,-1.5094407e36,-1.5099628e36,-1.5104849e36,-1.511007e36,-1.5115291e36,-1.5120513e36,-1.5125734e36,-1.5130955e36,-1.5136176e36,-1.5141397e36,-1.5146618e36,-1.515184e36,-1.515706e36,-1.5162282e36,-1.5167503e36,-1.5172724e36,-1.5177945e36,-1.5183166e36,-1.5188387e36,-1.5193608e36,-1.519883e36,-1.520405e36,-1.5209272e36,-1.5214493e36,-1.5219714e36,-1.5224935e36,-1.5230156e36,-1.5235378e36,-1.5240599e36,-1.524582e36,-1.5251041e36,-1.5256262e36,-1.5261485e36,-1.5266706e36,-1.5271927e36,-1.5277148e36,-1.528237e36,-1.528759e36,-1.5292812e36,-1.5298033e36,-1.5303254e36,-1.5308475e36,-1.5313696e36,-1.5318917e36,-1.5324138e36,-1.532936e36,-1.533458e36,-1.5339802e36,-1.5345023e36,-1.5350244e36,-1.5355465e36,-1.5360686e36,-1.5365908e36,-1.5371129e36,-1.537635e36,-1.5381571e36,-1.5386792e36,-1.5392013e36,-1.5397234e36,-1.5402456e36,-1.5407677e36,-1.5412898e36,-1.5418119e36,-1.542334e36,-1.5428561e36,-1.5433782e36,-1.5439003e36,-1.5444225e36,-1.5449446e36,-1.5454667e36,-1.5459888e36,-1.5465109e36,-1.547033e36,-1.5475551e36,-1.5480773e36,-1.5485994e36,-1.5491216e36,-1.5496438e36,-1.5501659e36,-1.550688e36,-1.5512101e36,-1.5517322e36,-1.5522543e36,-1.5527764e36,-1.5532985e36,-1.5538207e36,-1.5543428e36,-1.5548649e36,-1.555387e36,-1.5559091e36,-1.5564312e36,-1.5569533e36,-1.5574755e36,-1.5579976e36,-1.5585197e36,-1.5590418e36,-1.5595639e36,-1.560086e36,-1.5606081e36,-1.5611303e36,-1.5616524e36,-1.5621745e36,-1.5626966e36,-1.5632187e36,-1.5637408e36,-1.564263e36,-1.564785e36,-1.5653072e36,-1.5658293e36,-1.5663514e36,-1.5668735e36,-1.5673956e36,-1.5679177e36,-1.5684398e36,-1.568962e36,-1.569484e36,-1.5700062e36,-1.5705283e36,-1.5710504e36,-1.5715725e36,-1.5720946e36,-1.5726169e36,-1.573139e36,-1.5736611e36,-1.5741833e36,-1.5747054e36,-1.5752275e36,-1.5757496e36,-1.5762717e36,-1.5767938e36,-1.577316e36,-1.577838e36,-1.5783602e36,-1.5788823e36,-1.5794044e36,-1.5799265e36,-1.5804486e36,-1.5809707e36,-1.5814928e36,-1.582015e36,-1.582537e36,-1.5830592e36,-1.5835813e36,-1.5841034e36,-1.5846255e36,-1.5851476e36,-1.5856698e36,-1.5861919e36,-1.586714e36,-1.5872361e36,-1.5877582e36,-1.5882803e36,-1.5888024e36,-1.5893245e36,-1.5898467e36,-1.5903688e36,-1.5908909e36,-1.591413e36,-1.5919351e36,-1.5924572e36,-1.5929793e36,-1.5935015e36,-1.5940236e36,-1.5945457e36,-1.5950678e36,-1.5955899e36,-1.5961122e36,-1.5966343e36,-1.5971564e36,-1.5976785e36,-1.5982006e36,-1.5987227e36,-1.5992449e36,-1.599767e36,-1.6002891e36,-1.6008112e36,-1.6013333e36,-1.6018554e36,-1.6023775e36,-1.6028997e36,-1.6034218e36,-1.6039439e36,-1.604466e36,-1.6049881e36,-1.6055102e36,-1.6060323e36,-1.6065545e36,-1.6070766e36,-1.6075987e36,-1.6081208e36,-1.6086429e36,-1.609165e36,-1.6096871e36,-1.6102092e36,-1.6107314e36,-1.6112535e36,-1.6117756e36,-1.6122977e36,-1.6128198e36,-1.613342e36,-1.613864e36,-1.6143862e36,-1.6149083e36,-1.6154304e36,-1.6159525e36,-1.6164746e36,-1.6169967e36,-1.6175188e36,-1.618041e36,-1.618563e36,-1.6190853e36,-1.6196075e36,-1.6201296e36,-1.6206517e36,-1.6211738e36,-1.6216959e36,-1.622218e36,-1.6227401e36,-1.6232622e36,-1.6237844e36,-1.6243065e36,-1.6248286e36,-1.6253507e36,-1.6258728e36,-1.626395e36,-1.626917e36,-1.6274392e36,-1.6279613e36,-1.6284834e36,-1.6290055e36,-1.6295276e36,-1.6300497e36,-1.6305718e36,-1.631094e36,-1.631616e36,-1.6321382e36,-1.6326603e36,-1.6331824e36,-1.6337045e36,-1.6342266e36,-1.6347487e36,-1.6352709e36,-1.635793e36,-1.6363151e36,-1.6368372e36,-1.6373593e36,-1.6378814e36,-1.6384035e36,-1.6389257e36,-1.6394478e36,-1.6399699e36,-1.640492e36,-1.6410141e36,-1.6415362e36,-1.6420583e36,-1.6425806e36,-1.6431027e36,-1.6436248e36,-1.644147e36,-1.644669e36,-1.6451912e36,-1.6457133e36,-1.6462354e36,-1.6467575e36,-1.6472796e36,-1.6478017e36,-1.6483239e36,-1.648846e36,-1.6493681e36,-1.6498902e36,-1.6504123e36,-1.6509344e36,-1.6514565e36,-1.6519787e36,-1.6525008e36,-1.6530229e36,-1.653545e36,-1.6540671e36,-1.6545892e36,-1.6551113e36,-1.6556334e36,-1.6561556e36,-1.6566777e36,-1.6571998e36,-1.6577219e36,-1.658244e36,-1.6587661e36,-1.6592882e36,-1.6598104e36,-1.6603325e36,-1.6608546e36,-1.6613767e36,-1.6618988e36,-1.662421e36,-1.662943e36,-1.6634652e36,-1.6639873e36,-1.6645094e36,-1.6650315e36,-1.6655538e36,-1.6660759e36,-1.666598e36,-1.6671201e36,-1.6676422e36,-1.6681643e36,-1.6686864e36,-1.6692086e36,-1.6697307e36,-1.6702528e36,-1.6707749e36,-1.671297e36,-1.6718191e36,-1.6723412e36,-1.6728634e36,-1.6733855e36,-1.6739076e36,-1.6744297e36,-1.6749518e36,-1.675474e36,-1.675996e36,-1.6765181e36,-1.6770403e36,-1.6775624e36,-1.6780845e36,-1.6786066e36,-1.6791287e36,-1.6796508e36,-1.680173e36,-1.680695e36,-1.6812172e36,-1.6817393e36,-1.6822614e36,-1.6827835e36,-1.6833056e36,-1.6838277e36,-1.6843499e36,-1.684872e36,-1.6853941e36,-1.6859162e36,-1.6864383e36,-1.6869604e36,-1.6874825e36,-1.6880046e36,-1.6885268e36,-1.689049e36,-1.6895711e36,-1.6900933e36,-1.6906154e36,-1.6911375e36,-1.6916596e36,-1.6921817e36,-1.6927038e36,-1.693226e36,-1.693748e36,-1.6942702e36,-1.6947923e36,-1.6953144e36,-1.6958365e36,-1.6963586e36,-1.6968807e36,-1.6974029e36,-1.697925e36,-1.698447e36,-1.6989692e36,-1.6994913e36,-1.7000134e36,-1.7005355e36,-1.7010576e36,-1.7015798e36,-1.7021019e36,-1.702624e36,-1.7031461e36,-1.7036682e36,-1.7041903e36,-1.7047124e36,-1.7052346e36,-1.7057567e36,-1.7062788e36,-1.7068009e36,-1.707323e36,-1.7078451e36,-1.7083672e36,-1.7088894e36,-1.7094115e36,-1.7099336e36,-1.7104557e36,-1.7109778e36,-1.7114999e36,-1.712022e36,-1.7125443e36,-1.7130664e36,-1.7135885e36,-1.7141106e36,-1.7146328e36,-1.7151549e36,-1.715677e36,-1.7161991e36,-1.7167212e36,-1.7172433e36,-1.7177654e36,-1.7182876e36,-1.7188097e36,-1.7193318e36,-1.7198539e36,-1.720376e36,-1.7208981e36,-1.7214202e36,-1.7219423e36,-1.7224645e36,-1.7229866e36,-1.7235087e36,-1.7240308e36,-1.7245529e36,-1.725075e36,-1.7255971e36,-1.7261193e36,-1.7266414e36,-1.7271635e36,-1.7276856e36,-1.7282077e36,-1.7287298e36,-1.729252e36,-1.729774e36,-1.7302962e36,-1.7308183e36,-1.7313404e36,-1.7318625e36,-1.7323846e36,-1.7329067e36,-1.7334288e36,-1.733951e36,-1.734473e36,-1.7349952e36,-1.7355175e36,-1.7360396e36,-1.7365617e36,-1.7370838e36,-1.7376059e36,-1.738128e36,-1.7386501e36,-1.7391723e36,-1.7396944e36,-1.7402165e36,-1.7407386e36,-1.7412607e36,-1.7417828e36,-1.742305e36,-1.742827e36,-1.7433492e36,-1.7438713e36,-1.7443934e36,-1.7449155e36,-1.7454376e36,-1.7459597e36,-1.7464818e36,-1.747004e36,-1.747526e36,-1.7480482e36,-1.7485703e36,-1.7490924e36,-1.7496145e36,-1.7501366e36,-1.7506588e36,-1.7511809e36,-1.751703e36,-1.7522251e36,-1.7527472e36,-1.7532693e36,-1.7537914e36,-1.7543135e36,-1.7548357e36,-1.7553578e36,-1.7558799e36,-1.756402e36,-1.7569241e36,-1.7574462e36,-1.7579683e36,-1.7584905e36,-1.7590127e36,-1.7595348e36,-1.760057e36,-1.760579e36,-1.7611012e36,-1.7616233e36,-1.7621454e36,-1.7626675e36,-1.7631896e36,-1.7637118e36,-1.7642339e36,-1.764756e36,-1.7652781e36,-1.7658002e36,-1.7663223e36,-1.7668444e36,-1.7673665e36,-1.7678887e36,-1.7684108e36,-1.7689329e36,-1.769455e36,-1.7699771e36,-1.7704992e36,-1.7710213e36,-1.7715435e36,-1.7720656e36,-1.7725877e36,-1.7731098e36,-1.7736319e36,-1.774154e36,-1.7746761e36,-1.7751983e36,-1.7757204e36,-1.7762425e36,-1.7767646e36,-1.7772867e36,-1.7778088e36,-1.778331e36,-1.778853e36,-1.7793752e36,-1.7798973e36,-1.7804194e36,-1.7809415e36,-1.7814636e36,-1.7819857e36,-1.782508e36,-1.7830301e36,-1.7835522e36,-1.7840743e36,-1.7845965e36,-1.7851186e36,-1.7856407e36,-1.7861628e36,-1.7866849e36,-1.787207e36,-1.7877291e36,-1.7882513e36,-1.7887734e36,-1.7892955e36,-1.7898176e36,-1.7903397e36,-1.7908618e36,-1.791384e36,-1.791906e36,-1.7924282e36,-1.7929503e36,-1.7934724e36,-1.7939945e36,-1.7945166e36,-1.7950387e36,-1.7955608e36,-1.796083e36,-1.796605e36,-1.7971272e36,-1.7976493e36,-1.7981714e36,-1.7986935e36,-1.7992156e36,-1.7997377e36,-1.8002599e36,-1.800782e36,-1.8013041e36,-1.8018262e36,-1.8023483e36,-1.8028704e36,-1.8033925e36,-1.8039147e36,-1.8044368e36,-1.8049589e36,-1.8054812e36,-1.8060033e36,-1.8065254e36,-1.8070475e36,-1.8075696e36,-1.8080917e36,-1.8086138e36,-1.809136e36,-1.809658e36,-1.8101802e36,-1.8107023e36,-1.8112244e36,-1.8117465e36,-1.8122686e36,-1.8127907e36,-1.8133129e36,-1.813835e36,-1.8143571e36,-1.8148792e36,-1.8154013e36,-1.8159234e36,-1.8164455e36,-1.8169677e36,-1.8174898e36,-1.8180119e36,-1.818534e36,-1.8190561e36,-1.8195782e36,-1.8201003e36,-1.8206225e36,-1.8211446e36,-1.8216667e36,-1.8221888e36,-1.8227109e36,-1.823233e36,-1.8237551e36,-1.8242772e36,-1.8247994e36,-1.8253215e36,-1.8258436e36,-1.8263657e36,-1.8268878e36,-1.82741e36,-1.827932e36,-1.8284542e36,-1.8289764e36,-1.8294985e36,-1.8300207e36,-1.8305428e36,-1.8310649e36,-1.831587e36,-1.8321091e36,-1.8326312e36,-1.8331533e36,-1.8336754e36,-1.8341976e36,-1.8347197e36,-1.8352418e36,-1.8357639e36,-1.836286e36,-1.8368081e36,-1.8373302e36,-1.8378524e36,-1.8383745e36,-1.8388966e36,-1.8394187e36,-1.8399408e36,-1.840463e36,-1.840985e36,-1.8415072e36,-1.8420293e36,-1.8425514e36,-1.8430735e36,-1.8435956e36,-1.8441177e36,-1.8446398e36,-1.845162e36,-1.845684e36,-1.8462062e36,-1.8467283e36,-1.8472504e36,-1.8477725e36,-1.8482946e36,-1.8488167e36,-1.8493389e36,-1.849861e36,-1.8503831e36,-1.8509052e36,-1.8514273e36,-1.8519496e36,-1.8524717e36,-1.8529938e36,-1.853516e36,-1.854038e36,-1.8545602e36,-1.8550823e36,-1.8556044e36,-1.8561265e36,-1.8566486e36,-1.8571707e36,-1.8576928e36,-1.858215e36,-1.858737e36,-1.8592592e36,-1.8597813e36,-1.8603034e36,-1.8608255e36,-1.8613476e36,-1.8618697e36,-1.8623919e36,-1.862914e36,-1.8634361e36,-1.8639582e36,-1.8644803e36,-1.8650024e36,-1.8655245e36,-1.8660467e36,-1.8665688e36,-1.8670909e36,-1.867613e36,-1.8681351e36,-1.8686572e36,-1.8691793e36,-1.8697014e36,-1.8702236e36,-1.8707457e36,-1.8712678e36,-1.8717899e36,-1.872312e36,-1.8728341e36,-1.8733562e36,-1.8738784e36,-1.8744005e36,-1.8749226e36,-1.8754449e36,-1.875967e36,-1.8764891e36,-1.8770112e36,-1.8775333e36,-1.8780554e36,-1.8785775e36,-1.8790996e36,-1.8796218e36,-1.8801439e36,-1.880666e36,-1.8811881e36,-1.8817102e36,-1.8822323e36,-1.8827544e36,-1.8832766e36,-1.8837987e36,-1.8843208e36,-1.8848429e36,-1.885365e36,-1.8858871e36,-1.8864092e36,-1.8869314e36,-1.8874535e36,-1.8879756e36,-1.8884977e36,-1.8890198e36,-1.8895419e36,-1.890064e36,-1.8905861e36,-1.8911083e36,-1.8916304e36,-1.8921525e36,-1.8926746e36,-1.8931967e36,-1.8937188e36,-1.894241e36,-1.894763e36,-1.8952852e36,-1.8958073e36,-1.8963294e36,-1.8968515e36,-1.8973736e36,-1.8978957e36,-1.8984179e36,-1.8989401e36,-1.8994622e36,-1.8999844e36,-1.9005065e36,-1.9010286e36,-1.9015507e36,-1.9020728e36,-1.9025949e36,-1.903117e36,-1.9036391e36,-1.9041613e36,-1.9046834e36,-1.9052055e36,-1.9057276e36,-1.9062497e36,-1.9067718e36,-1.907294e36,-1.907816e36,-1.9083382e36,-1.9088603e36,-1.9093824e36,-1.9099045e36,-1.9104266e36,-1.9109487e36,-1.9114708e36,-1.911993e36,-1.912515e36,-1.9130372e36,-1.9135593e36,-1.9140814e36,-1.9146035e36,-1.9151256e36,-1.9156478e36,-1.9161699e36,-1.916692e36,-1.9172141e36,-1.9177362e36,-1.9182583e36,-1.9187804e36,-1.9193026e36,-1.9198247e36,-1.9203468e36,-1.9208689e36,-1.921391e36,-1.9219133e36,-1.9224354e36,-1.9229575e36,-1.9234796e36,-1.9240017e36,-1.9245238e36,-1.925046e36,-1.925568e36,-1.9260902e36,-1.9266123e36,-1.9271344e36,-1.9276565e36,-1.9281786e36,-1.9287008e36,-1.9292229e36,-1.929745e36,-1.9302671e36,-1.9307892e36,-1.9313113e36,-1.9318334e36,-1.9323556e36,-1.9328777e36,-1.9333998e36,-1.9339219e36,-1.934444e36,-1.9349661e36,-1.9354882e36,-1.9360103e36,-1.9365325e36,-1.9370546e36,-1.9375767e36,-1.9380988e36,-1.9386209e36,-1.939143e36,-1.9396651e36,-1.9401873e36,-1.9407094e36,-1.9412315e36,-1.9417536e36,-1.9422757e36,-1.9427978e36,-1.94332e36,-1.943842e36,-1.9443642e36,-1.9448863e36,-1.9454086e36,-1.9459307e36,-1.9464528e36,-1.9469749e36,-1.947497e36,-1.9480191e36,-1.9485412e36,-1.9490633e36,-1.9495855e36,-1.9501076e36,-1.9506297e36,-1.9511518e36,-1.9516739e36,-1.952196e36,-1.9527181e36,-1.9532403e36,-1.9537624e36,-1.9542845e36,-1.9548066e36,-1.9553287e36,-1.9558508e36,-1.956373e36,-1.956895e36,-1.9574172e36,-1.9579393e36,-1.9584614e36,-1.9589835e36,-1.9595056e36,-1.9600277e36,-1.9605498e36,-1.961072e36,-1.961594e36,-1.9621162e36,-1.9626383e36,-1.9631604e36,-1.9636825e36,-1.9642046e36,-1.9647268e36,-1.9652489e36,-1.965771e36,-1.9662931e36,-1.9668152e36,-1.9673373e36,-1.9678594e36,-1.9683817e36,-1.9689038e36,-1.969426e36,-1.969948e36,-1.9704702e36,-1.9709923e36,-1.9715144e36,-1.9720365e36,-1.9725586e36,-1.9730807e36,-1.9736028e36,-1.974125e36,-1.974647e36,-1.9751692e36,-1.9756913e36,-1.9762134e36,-1.9767355e36,-1.9772576e36,-1.9777798e36,-1.9783019e36,-1.978824e36,-1.9793461e36,-1.9798682e36,-1.9803903e36,-1.9809124e36,-1.9814345e36,-1.9819567e36,-1.9824788e36,-1.9830009e36,-1.983523e36,-1.9840451e36,-1.9845672e36,-1.9850893e36,-1.9856115e36,-1.9861336e36,-1.9866557e36,-1.9871778e36,-1.9876999e36,-1.988222e36,-1.9887441e36,-1.9892663e36,-1.9897884e36,-1.9903105e36,-1.9908326e36,-1.9913547e36,-1.991877e36,-1.9923991e36,-1.9929212e36,-1.9934433e36,-1.9939654e36,-1.9944875e36,-1.9950097e36,-1.9955318e36,-1.9960539e36,-1.996576e36,-1.9970981e36,-1.9976202e36,-1.9981423e36,-1.9986645e36,-1.9991866e36,-1.9997087e36,-2.0002308e36,-2.0007529e36,-2.001275e36,-2.0017971e36,-2.0023192e36,-2.0028414e36,-2.0033635e36,-2.0038856e36,-2.0044077e36,-2.0049298e36,-2.005452e36,-2.005974e36,-2.0064962e36,-2.0070183e36,-2.0075404e36,-2.0080625e36,-2.0085846e36,-2.0091067e36,-2.0096288e36,-2.010151e36,-2.010673e36,-2.0111952e36,-2.0117173e36,-2.0122394e36,-2.0127615e36,-2.0132836e36,-2.0138057e36,-2.0143279e36,-2.01485e36,-2.0153722e36,-2.0158944e36,-2.0164165e36,-2.0169386e36,-2.0174607e36,-2.0179828e36,-2.018505e36,-2.019027e36,-2.0195492e36,-2.0200713e36,-2.0205934e36,-2.0211155e36,-2.0216376e36,-2.0221597e36,-2.0226818e36,-2.023204e36,-2.023726e36,-2.0242482e36,-2.0247703e36,-2.0252924e36,-2.0258145e36,-2.0263366e36,-2.0268587e36,-2.0273809e36,-2.027903e36,-2.0284251e36,-2.0289472e36,-2.0294693e36,-2.0299914e36,-2.0305135e36,-2.0310357e36,-2.0315578e36,-2.0320799e36,-2.032602e36,-2.0331241e36,-2.0336462e36,-2.0341683e36,-2.0346904e36,-2.0352126e36,-2.0357347e36,-2.0362568e36,-2.0367789e36,-2.037301e36,-2.0378231e36,-2.0383454e36,-2.0388675e36,-2.0393896e36,-2.0399117e36,-2.0404339e36,-2.040956e36,-2.0414781e36,-2.0420002e36,-2.0425223e36,-2.0430444e36,-2.0435665e36,-2.0440887e36,-2.0446108e36,-2.0451329e36,-2.045655e36,-2.0461771e36,-2.0466992e36,-2.0472213e36,-2.0477434e36,-2.0482656e36,-2.0487877e36,-2.0493098e36,-2.0498319e36,-2.050354e36,-2.0508761e36,-2.0513982e36,-2.0519204e36,-2.0524425e36,-2.0529646e36,-2.0534867e36,-2.0540088e36,-2.054531e36,-2.055053e36,-2.0555752e36,-2.0560973e36,-2.0566194e36,-2.0571415e36,-2.0576636e36,-2.0581857e36,-2.0587078e36,-2.05923e36,-2.059752e36,-2.0602742e36,-2.0607963e36,-2.0613184e36,-2.0618407e36,-2.0623628e36,-2.0628849e36,-2.063407e36,-2.0639291e36,-2.0644512e36,-2.0649734e36,-2.0654955e36,-2.0660176e36,-2.0665397e36,-2.0670618e36,-2.067584e36,-2.068106e36,-2.0686282e36,-2.0691503e36,-2.0696724e36,-2.0701945e36,-2.0707166e36,-2.0712387e36,-2.0717608e36,-2.072283e36,-2.072805e36,-2.0733272e36,-2.0738493e36,-2.0743714e36,-2.0748935e36,-2.0754156e36,-2.0759377e36,-2.0764599e36,-2.076982e36,-2.0775041e36,-2.0780262e36,-2.0785483e36,-2.0790704e36,-2.0795925e36,-2.0801146e36,-2.0806368e36,-2.0811589e36,-2.081681e36,-2.0822031e36,-2.0827252e36,-2.0832473e36,-2.0837694e36,-2.0842916e36,-2.0848137e36,-2.085336e36,-2.085858e36,-2.0863802e36,-2.0869023e36,-2.0874244e36,-2.0879465e36]}
diff --git a/lib/node_modules/@stdlib/math/base/special/covercosf/test/fixtures/julia/huge_positive.json b/lib/node_modules/@stdlib/math/base/special/covercosf/test/fixtures/julia/huge_positive.json
new file mode 100644
index 000000000000..0f5caac8b75a
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/covercosf/test/fixtures/julia/huge_positive.json
@@ -0,0 +1 @@
+{"expected":[1.1082817,1.1309767,1.2596967,1.3839425,1.5015732,1.7159793,1.7090319,1.8727142,1.8678372,1.9695637,1.9996811,1.9998821,1.9999852,1.9999901,1.8521731,1.8573122,1.8623674,1.8673381,1.4747747,1.4834657,0.94951016,0.9594013,0.9692965,0.9791947,0.9890949,0.9989962,1.0088975,0.1037482,0.1081838,0.1127069,0.11731696,0.12201351,0.12679619,0.13166445,0.13661784,0.16977316,0.1642946,0.15889794,0.15358377,0.14835262,1.1008509,0.13814121,1.0811304,0.12826777,1.061378,0.11873621,1.0416017,1.9175032,1.0218089,1.9094477,1.0020076,1.9010354,0.98220557,1.8922698,1.795057,1.8831544,1.8069116,1.8736925,1.8184497,1.8638883,1.8296669,1.853745,1.8405586,0.8784717,1.8511208,0.89815044,1.8613493,0.91786915,1.8712399,0.93762004,0.07442045,0.95739543,0.08209795,0.9771875,0.090135396,0.99698853,0.09852964,0.21773416,0.10727739,0.20555216,1.2006735,0.19368172,0.1258195,1.0761268,1.1617259,0.17089391,0.14573276,1.9529366,1.1225246,0.14940655,0.16698587,1.9401852,1.0831312,0.12925327,1.729834,1.9259591,1.0436075,0.110465646,1.7563303,1.9102807,1.0040152,0.7597192,1.78164,1.8931745,0.9644168,0.79834324,1.8057241,1.8746675,0.0355407,0.8372836,1.8285444,1.8547885,0.046759486,0.87647915,1.8500652,0.298522,0.059473336,0.91586846,1.8702526,0.27085263,0.07366234,0.95538974,1.8890753,0.24432689,0.08930427,0.99498093,1.241255,0.21898639,0.1063745,1.03458,1.2026398,0.19487083,0.12484634,1.9647241,1.1637068,0.17201805,0.14469087,1.9535434,1.124517,0.15046394,1.7007623,1.9408672,1.0851318,0.13024223,1.7284601,1.9267154,1.045613,0.71954435,1.7550153,1.9111099,1.0060228,0.75777084,1.7803863,1.8940756,0.025383234,0.7963773,1.8045335,1.875639,0.035012186,0.83530307,1.3931828,1.8558288,0.046154678,1.9977987,1.8490062,0.29995424,0.84818816,0.9138681,1.3191937,1.812215,0.072907925,1.9894223,1.8881545,0.24564332,1.5778025,0.9929733,1.2432029,0.53440535,0.10547525,1.9748411,1.9217329,0.19606316,1.6405742,1.0721226,1.165687,0.60589445,0.14365238,1.9541463,0.0021353364,0.15152472,1.6993287,0.48945552,1.087132,0.6798551,0.18719989,1.9274678,0.010432601,0.11230731,1.7536974,0.42301708,1.0080304,0.7558235,1.4664829,1.894973,0.024935722,0.07865679,1.8033395,0.360197,0.9288786,0.8333232,1.3950279,1.8568656,0.045553684,1.9979298,1.8479435,0.30138928,1.5096811,0.9118681,1.3210957,1.8133845,0.072157264,1.9897115,1.8872302,0.24696279,1.5761628,0.9909658,1.2451499,0.5326295,0.10457963,1.9752865,0.0001257062,0.19725877,1.6390312,1.0701201,1.1676666,0.6040501,0.14261734,1.9547453,0.0020061731,0.15258896,1.6978922,0.4911828,1.0891317,0.6779538,0.186032,1.9282167,0.010145366,0.11323345,1.7523763,0.42465794,1.010038,0.7538771,1.4682577,1.8958669,0.024492145,1.9998579,1.8021421,0.36174124,0.9308813,0.83134395,1.3968714,1.8578988,0.044956565,1.9980569,1.8468777,0.30282718,1.5079527,0.9098685,1.3229964,0.4624459,0.07141036,1.9899968,1.8863021,0.2482853,1.5745207,0.98895824,1.2470957,0.53085554,0.103687584,1.9757282,0.00015956163,0.1984576,1.6374857,0.56270325,1.1696454,0.6022073,0.14158583,1.9553405,0.0018811226,0.1536566,1.6964529,0.49291217,1.0911312,0.67605376,1.5384002,1.9289618,0.009862065,0.11416322,1.7510524,0.42630118,1.0120455,0.7519317,1.4700307,1.8967571,0.0240525,1.9998219,1.8009417,0.36328804,1.4363937,0.82936543,1.3987135,1.8589287,0.04436332,1.9981799,1.8458083,0.30426788,1.5062224,0.9078692,1.3248957,0.46075416,1.723032,0.029830158,1.8853705,0.24961078,1.5728763,0.6371068,1.1323417,1.7673831,0.10279918,1.9761658,0.00019747019,1.9667711,0.69989544,1.0661142,1.1716236,0.6003662,1.6049931,0.22393817,1.9476247,0.15472764,1.6950107,0.49464357,1.287059,1.656618,0.18370605,1.929703,0.009582818,1.9949954,0.05682218,1.2227032,1.014053,0.74998736,1.4718018,0.33315045,1.8241007,0.08101487,1.7997382,0.3648374,1.4345865,0.7906215,0.2850576,1.8599551,0.04377389,1.998299,0.016210914,1.9135187,0.8561304,0.90587026,1.3267938,0.45906448,1.7244174,0.030318797,1.8844354,0.25093937,1.5712297,0.63897824,1.1303514,1.7686689,0.101914346,1.9765996,0.00023937225,1.9662559,0.1220153,1.0641108,1.1736012,0.59852666,1.6065905,0.2226736,1.9469814,0.15580207,1.6935658,0.496377,1.2851353,0.94951385,0.18254799,1.9304405,0.009307563,1.9947927,0.057491183,1.2207456,1.0160604,0.748044,1.473571,0.33165574,1.8252363,0.08180833,1.7985313,0.36638933,1.4327775,0.79258513,0.28365535,1.8609779,0.043188334,1.998414,0.016572952,1.9127002,0.85811746,0.9038718,1.3286905,0.45737702,1.7257999,0.1321609,1.8834968,0.25227094,1.5695806,0.6408512,1.1283607,1.7699516,0.10103315,1.9770293,0.00028532743,1.9657369,0.12297809,1.0621071,1.1755779,0.59668875,1.6081853,0.22141218,1.9463346,0.15687996,1.6921182,0.49811244,1.2832103,0.951519,0.18139327,1.9311743,0.009036243,1.994586,0.058164,1.218787,1.0180677,0.7461016,1.4753382,0.33016372,1.8263686,0.08260548,1.7973211,0.36794382,1.4309667,0.79454947,0.9682895,1.8619974,0.04260665,1.998525,0.016938925,1.911878,0.86010504,0.9018736,1.330586,0.45569175,1.7271795,0.1311652,1.8825545,0.25360548,1.5679293,0.6427256,1.1263694,1.771231,0.10015559,1.9774553,0.00033527613,1.965214,0.12394446,1.0601032,1.177554,0.59485245,1.6097777,0.22015387,1.9456838,0.15796119,1.6906676,0.49984992,1.2812843,0.9535244,0.18024182,1.9319044,0.008768976,1.9943755,0.058840632,1.8345991,1.020075,0.7441603,1.4771036,0.32867438,1.8274975,0.08340633,1.7961078,0.36950088,1.4291543,0.7965147,0.9662829,1.8630133,0.042028785,1.998632,0.017308831,1.9110521,0.8620932,0.8998759,1.3324801,0.4540087,1.7285562,0.13017297,1.8816087,0.25494313,1.5662758,0.64460146,1.1243776,1.113693,0.09928167,1.9778771,0.00038927794,1.9646871,0.12491429,1.0580992,1.1795293,0.59301776,1.6113677,0.21889871,1.9065626,0.15904582,1.6892145,0.5015894,1.2793572,0.9555299,0.17909366,1.9326308,0.008505702,1.9941608,0.05952102,1.8334916,1.0220822,0.74222,1.478867,0.32718772,1.828623,0.08421087,1.7948912,0.37106043,1.42734,0.79848075,0.9642765,1.8640258,0.041454792,1.998735,0.017682731,1.9102225,0.21346295,0.8978785,1.3343729,0.4523278,1.7299299,0.12918425,1.8806595,0.2562837,1.5646199,0.6464788,1.1223853,1.1156874,0.09841132,1.9782952,0.00044733286,1.9641564,0.12588769,1.0560948,1.181504,0.59118474,1.6129552,0.21764672,1.9074082,0.1601339,1.6877584,0.50333095,1.2774289,0.9575357,0.17794883,1.9333532,0.008246422,1.9939421,0.06020522,1.8323805,1.0240893,0.74028075,1.4806285,0.3257038,1.8297453,0.06183505,1.7936715,0.37262255,1.4255241,0.8004476,0.9622702,1.8650348,0.040884674,1.9988339,0.018060625,1.9093893,0.21470433,0.8958816,1.3362643,0.45064914,1.7313007,0.12819904,1.8797066,0.2576273,1.5629618,0.64835745,1.1203926,1.1176813,0.09754467,1.9787092,0.0005093813,1.9636216,0.12686461,1.0540901,1.1834779,0.5893533,1.6145402,0.21639788,1.9082501,0.018580914,1.998962,0.040115416,0.52961075,1.6656554,0.17680734,1.934072,0.0079910755,1.9937195,0.060893238,1.8312662,0.32368982,1.4830214,0.73764473,0.0017956495,1.984075,0.085831046,1.7924485,0.37418717,1.4237064,0.80241525,0.9602641,1.2748044,0.50570285,1.6857736,0.42745674,1.3625146,0.86806107,0.8938851,1.3381543,0.4489727,1.7326685,0.1272173,1.9634283,0.0005326867,1.9788574,1.4000063,0.39468342,1.7763181,0.096681654,1.9791193,0.00057548285,1.9630831,0.12784505,1.7317936,0.4500451,1.336945,1.9904733,0.005045414,1.9430428,0.16232008,1.684838,0.50681996,1.2735691,0.9615477,0.80115616,1.4248697,0.37318575,1.7932315,0.56577945,1.2089812,1.0281032,0.7364054,1.4841458,0.32274413,1.8319796,0.06045258,1.9938624,0.008153975,1.9336126,1.5412772,0.2753026,1.8670423,0.039756,1.9990197,0.018828213,1.9077117,0.21719658,1.6135263,0.590525,1.182215,1.9997516,0.033848763,1.8777902,0.26032346,1.5596387,0.6521191,1.1164055,1.1216676,0.64715517,1.564023,0.25676727,1.5032719,0.7152543,1.0500803,1.1874236,0.58569556,1.6177028,0.21390963,1.9099228,0.017818391,1.9987711,0.041249037,0.5260712,1.6686465,0.17453426,1.9354982,0.0074924827,1.9932622,0.062280536,1.8290277,0.326653,1.4795017,0.7415215,0.0015631914,1.9833534,0.08746594,1.789993,0.37732404,1.420066,0.806353,0.95625234,1.2786629,0.5022164,1.6886904,0.1594373,1.3587695,0.8720423,0.88989335,1.3419303,0.44562644,1.7353954,0.12526447,1.9644964,0.00040972233,1.9780282,0.09896779,0.39149225,1.7788427,0.09496647,1.9799277,0.0007197261,1.9619944,0.12981647,1.7290514,0.45340306,1.333162,0.89915645,0.005456269,1.9416993,0.16451985,1.6819066,0.5103169,1.2697048,0.96556026,0.7972227,1.4285011,0.37006223,1.79567,0.5693999,1.2050529,1.0321167,0.7325342,1.4876552,0.31979537,1.8342006,0.05908525,1.9942986,0.008673668,1.9321665,1.5446491,0.27254164,1.869036,0.038642824,1.9991894,0.019611597,1.9060197,0.21970147,1.6103506,0.59419143,1.1782655,1.999654,0.03489238,1.8758595,0.26303154,1.5563066,0.6558864,1.1124166,1.1256521,0.643401,1.567334,0.2540869,1.4997982,0.7191056,1.0460697,1.1913662,0.5820445,1.6208556,0.21143413,1.9115809,0.017071664,1.998564,0.042398036,1.8623637,1.6716268,0.17227447,1.9369094,0.0070099235,1.9927888,0.06368297,1.8267756,0.32962698,1.4759743,0.74540234,1.0187907,1.9826157,0.0891155,1.7875249,0.38047093,1.4164188,0.8102938,0.95224124,1.2825168,0.498738,1.691596,0.15726894,1.3550187,0.87602556,0.88590336,1.3457007,0.4422891,1.7381103,0.123325706,1.965549,0.0003028512,1.9771832,0.10071665,0.38831085,1.7813549,0.09326595,1.9807203,0.0008800626,1.9608903,0.1318019,1.7262971,0.45676982,1.3293734,0.90315205,0.0058831573,1.9403408,0.16673303,1.6789641,0.5138217,1.2658361,0.96957344,0.79329246,1.4321256,0.3669489,1.7980957,0.5730273,1.2011212,1.0361296,0.7286674,1.4911567,0.31685758,1.8364081,0.05773312,1.9947188,0.009209394,1.9307053,0.18213171,0.26979244,1.8710154,0.037545204,1.9993429,0.020410836,1.9043131,0.22221893,1.6071651,0.5978645,1.1743131,1.0633892,0.035951555,1.873915,0.26575148,1.5529654,0.65965915,1.1084259,1.1296345,0.6396526,1.570636,0.2514186,1.8840978,0.7229614,1.0420583,1.1953057,0.57840014,1.6239982,0.20897126,1.9132243,0.016340852,1.9983408,0.04356253,1.8603239,1.6745962,0.17002803,1.9383056,0.0065432787,1.9922996,0.06510049,1.8245101,0.3326118,1.4724392,0.74928737,1.014776,1.9818624,0.09077978,1.7850441,0.38362777,1.4127649,0.81423765,0.948231,1.2863662,0.49526763,1.6944907,0.15511417,1.3512621,0.88001084,0.8819153,1.3494656,0.43896085,1.7408134,0.12140113,1.9665861,0.00021207333,1.9763225,0.102480054,0.3851393,1.7838545,0.09157997,1.981497,0.0010565519,1.9597706,0.13380134,1.7235312,0.46014535,1.3255795,0.90714926,0.8548593,1.9389671,0.16895968,1.6760108,0.51733446,1.2619631,0.9735871,0.7893656,1.4357431,0.36384577,1.8005087,0.080509186,1.1971865,1.0401419,0.724805,1.4946504,0.3139308,1.8386022,0.056396127,1.9951228,0.009761035,1.929229,0.18444872,0.26705498,1.872981,0.036463022,1.9994805,0.02122581,1.9025917,0.22474891,1.6039698,0.601544,1.170358,1.0673958,0.037026286,1.8719561,0.26848328,1.5496155,0.6634375,1.1044334,1.1336149,0.63591003,1.5739288,0.24876231,1.885967,0.7268218,1.0380464,1.199242,0.5747626,1.6271307,0.20652121,1.9148531,0.015625894,1.9981017,0.044742465,1.8582702,1.6775547,0.167795,1.9396865,0.006092727,1.9917941,0.06653309,1.8222315,0.3356074,1.4688964,0.7531764,1.010761,1.2259115,0.092458725,1.7825506,0.38679457,1.4091043,0.8181845,0.9442215,1.290211,0.49180543,1.6973741,0.15297306,1.948671,0.88399804,0.87792903,1.353225,0.4356416,1.7435045,0.11949068,1.9676075,0.00013744831,1.975446,0.10425794,1.7652681,1.7863414,0.08990872,1.9822578,0.0012491345,1.9586353,0.13581479,1.7207537,0.4635296,1.3217804,0.9111479,0.8508877,1.9375782,0.17119974,1.6730466,0.52085495,1.258086,0.9776012,0.7854421,1.4393536,0.36075288,1.8029087,0.07893813,1.1932484,1.0441536,0.72094697,1.4981359,0.31101507,1.8407826,0.055074394,1.9955108,0.01032871,1.927738,0.1867789,0.26432937,1.8749323,0.035396397,1.9996018,0.02205658,1.9008559,0.2272914,1.6007648,0.60523,1.1664,1.0714015,0.038116574,1.8699832,0.27122688,1.5462567,0.6672212,1.1004393,1.137593,0.6321733,1.5772122,0.24611819,1.8878219,0.02855897,1.0340337,1.2031752,0.5711318,1.6302533,0.20408392,1.916467,0.014926791,1.9978464,0.045937777,1.8562026,0.29018593,0.16557539,1.9410522,0.0056582093,1.9912728,0.06798077,1.8199396,0.3386137,1.4653462,0.7570694,1.0067459,1.2298212,0.09415233,1.7800443,0.38997126,1.4054371,0.8221343,0.94021297,1.2940512,0.4883514,1.7002462,0.15084559,1.9499333,0.88798714,0.8739448,1.3569785,0.43233138,1.7461836,0.11759442,1.9686134,7.8976154e-5,1.9745538,0.10605025,1.7626772,1.7888157,0.08825207,1.9830029,0.0014578104,1.9574847,0.13784212,1.7179646,0.46692246,1.3179761,0.915148,0.8469186,1.9361743,0.1734531,1.6700715,0.5243831,1.2542048,0.9816156,0.7815221,1.442957,0.35767025,1.8052957,0.07738197,1.9876472,1.0481646,0.71709347,1.5016136,0.30811048,1.8429496,0.05376786,1.9958829,0.01091224,1.9262319,0.18912214,1.649564,1.8768697,0.03434533,1.999707,0.022903144,1.8991055,0.22984636,1.5975499,0.60892236,1.1624393,1.0754058,0.6910229,1.8679965,0.27398223,1.542889,0.6710103,1.0964435,1.141569,0.6284425,1.5804864,0.24348617,1.8896625,0.027614057,1.0300205,1.207105,0.56750804,1.6333656,0.2016595,1.9180661,0.014243543,1.9975748,0.047148466,1.8541212,0.29301995,0.16336924,1.9424028,0.0052396655,1.9907355,0.069443405,1.8176343,0.34163064,1.4617884,0.7609663,1.0027307,1.2337271,0.09586048,1.7775257,0.39315778,1.4017634,0.826087,0.9362053,1.2978865,0.48490566,1.7031071,0.14873177,1.9511801,0.891978,0.8699626,1.3607264,0.42903036,1.7488508,0.115712404,1.9696038,3.6537647e-5,1.9736459,0.10785693,1.7600741,0.41507524,1.3766223,0.85302675,0.90899384,1.3238275,0.46170557,0.32510394,1.8301985,0.061554015,1.9935031,0.0077509284,1.9347552,0.17571986,1.6670855,0.527919,1.2503192,0.98563033,0.7776056,1.4465533,0.35459805,1.8076696,0.07584065,1.9882684,0.0036368966,1.9479847,0.15412468,1.6958222,0.49366933,0.6491183,1.1195858,1.1184882,0.65015364,1.5613754,0.25891376,1.8787929,0.033309877,1.9997962,0.023765445,1.8973407,0.23241377,1.5943255,0.61262095,1.1584761,1.0794091,0.6872065,1.5284489,0.28584766,1.8593781,0.044104993,1.9982326,0.016009033,0.061172783,1.8308142,0.3242886,1.4823097,0.73842895,1.0260067,1.2110316,0.5638912,1.6364677,0.1992479,1.9196506,0.01357621,1.9972874,0.048374534,1.8520262,0.29586536,1.5163333,0.70073336,1.0652378,1.1724888,0.5995612,1.6056921,1.7332213,0.12682092,1.9636457,0.0005065203,1.9786909,0.097583234,1.7749944,0.39635408,1.3980832,0.8300425,0.93219876,1.301717,0.4814682,1.7059566,0.14663172,1.9524117,0.0025268197,1.9859986,0.08136153,1.7992105,0.365516,1.4337953,1.2727873,0.9623597,0.80035985,1.4256052,0.3725528,1.793726,0.08498299,1.9844456,0.0019234419,1.9551373,0.14193845,1.7123516,0.47373396,1.3103522,0.9231522,0.8389877,1.3897463,0.40361017,1.7692304,0.101528406,1.976788,0.00025898218,1.9660294,1.9073706,0.21770251,1.6128844,0.5912665,1.1814159,1.0561842,0.7094002,1.5085444,0.3023348,1.8472428,0.05120063,1.9965787,0.01212728,1.9231749,0.19384784,1.6434374,0.5557469,1.2198888,1.0169386,0.7471942,1.4743443,0.3310027,0.21340764,1.9102596,0.017665982,1.9987304,0.041480303,1.8639808,0.27952802,1.5361276,0.67860436,1.0884473,1.149514,0.6209989,1.5870067,0.23825884,1.8933008,0.02577126,1.9999382,0.031028092,1.883085,0.2528544,1.5688585,0.641671,0.80715024,0.95544046,1.2794431,0.5015118,1.6892793,0.15899736,1.9450586,0.0044507384,1.989613,0.07241374,1.8129846,0.34769636,1.4546506,0.7687717,0.9947002,1.2415276,0.5359343,1.660301,0.18088913,1.9314942,0.008918822,1.9944944,0.05845958,0.13021713,1.7284949,0.45408374,1.3323956,0.899965,0.8620045,1.3682045,0.42245603,1.7541487,0.11199117,1.9715374,1.1920929e-7,1.9717832,0.111513495,1.7548311,0.4216075,1.369171,0.8609747,0.9009996,1.3314147,0.45495522,1.7277821,1.8346485,0.058810353,1.9943849,0.008780837,1.9318719,0.18029308,1.6610816,0.5350135,1.2425364,0.9936604,0.76978344,1.4537243,0.3484848,1.8123786,0.07280272,1.989463,0.004353285,1.9453979,0.15843529,1.6900322,0.50061065,1.2804414,1.1116091,1.1264583,0.64264196,1.568003,0.25354588,1.8825967,0.031285644,1.9999261,0.025537252,1.8937676,0.2375856,1.5878482,0.6200369,1.150542,1.0874116,0.67958915,1.5352495,0.28024948,1.8634567,0.041777194,1.9986775,0.01747191,1.9106896,1.8263181,0.33023018,1.4752594,0.7461883,1.0179782,1.2188743,0.5566787,1.6426411,0.19446349,1.9227747,0.012289226,1.996664,0.050872684,1.8477948,0.3015902,1.5094395,0.70840544,1.0572222,1.1803933,0.59221566,1.6120625,0.21835065,0.12293506,1.9657602,0.00028318167,1.9770103,0.10107237,1.7698944,0.40277588,1.3907037,0.83796155,0.924189,1.3093636,0.47461838,1.7116215,0.14247286,1.9548287,0.0019884706,1.9846277,0.08456397,1.794358,0.3717435,1.4265459,0.7993411,0.9703857,0.79249746,1.4328582,0.36632007,1.7985852,0.081772864,1.9858247,0.002453506,1.9527282,0.14609015,1.7066927,0.48057938,1.3027083,0.9311614,0.8310672,1.3971292,0.39718342,1.7743368,0.09803176,1.9784768,0.00047397614,1.963923,1.9039658,0.22272992,1.6065192,0.5986087,1.1735129,1.0642002,0.70172566,1.5154426,0.29660404,1.8514814,0.04869455,1.9972103,0.013405979,1.9200584,0.1986255,1.6372693,0.56295574,1.2120478,1.0249673,0.7394327,1.4813986,0.32505548,1.8302351,1.9135551,0.01619488,1.9982938,0.043800116,1.8599093,0.28512025,1.5293314,0.6862191,1.0804455,1.1574494,0.61357975,1.593489,0.23308063,1.8968813,0.023991346,1.9998167,0.03304422,1.8792886,0.25821602,1.5622356,0.64917976,1.1195205,0.9474194,1.2871447,0.49456626,1.6950752,0.15467978,1.9476533,0.0037260652,1.9884267,0.07544392,1.8082824,0.35380417,1.4474834,0.77659196,0.98667,1.2493125,0.5288359,1.6663105,0.17630899,1.9343853,0.007880688,1.9936209,0.061195374,0.13420773,1.72297,0.46082956,1.324811,0.9079584,0.85405535,1.3756589,0.4159189,1.759398,0.10832715,1.9734083,2.8192997e-5,1.9698577,0.11522734,1.7495395,0.42817706,1.361696,0.8689317,0.8930118,1.3389807,0.44823998,1.733266,0.12678897,0.05612737,1.9952027,0.009874642,1.9289286,0.18491924,1.6550348,0.542138,1.234738,1.0016909,0.7619761,1.4608659,0.34241366,1.8170353,0.069824636,1.9905938,0.005133927,1.9427502,0.16280013,1.6841978,0.50758415,1.2727242,0.9624253,1.1344202,0.6351533,1.574594,0.24822623,1.8863436,0.029323876,1.9999914,0.027371943,1.890137,0.24280661,1.5813328,0.62747735,1.1425983,1.0954086,0.6719924,1.5420156,0.27469766,1.8674796,0.039511204,1.9990582,0.018998206,1.9073429,1.8217688,0.33621496,1.4681785,0.75396395,1.0099485,1.226703,0.5494948,1.648773,0.18973106,1.9258394,0.01106602,1.9959766,0.053431988,1.8435087,0.3073601,1.5025128,0.7160963,1.0492032,1.1882862,0.5848964,1.6183933,0.2133671,1.9102868,1.9678124,0.00012433529,1.9752667,0.1046195,1.7647448,0.40923613,1.3832989,0.8458911,0.91618407,1.3169901,0.46780246,1.7172403,0.13836938,1.9571843,0.0015144944,1.9831934,0.08782548,1.7894543,0.37801152,1.4192688,0.8072147,0.9553749,0.78464854,1.4400835,0.36012816,1.8033928,0.07862198,1.9871403,0.003047824,1.9502575,0.15029687,1.7009882,0.4874583,1.2950448,0.939175,0.8231576,1.4044864,0.39079553,1.7793933,0.09459329,1.9801023,0.0007534027,1.9617543,0.13024956,0.22780752,1.6001148,0.60597676,1.1655986,1.072212,0.69407034,1.5223074,0.2909187,1.855665,0.046249807,1.9977776,0.014748335,1.9168825,0.20345485,1.6310601,0.57019275,1.2041931,1.0329944,0.731688,1.4884217,0.31915182,1.8346846,0.05878818,0.014787197,1.9977927,0.04618156,1.8557825,0.29075855,1.5225012,0.6938541,1.0724385,1.1653746,0.60618556,1.5999331,0.22795188,1.900404,0.022274315,1.9996307,0.035122752,1.8754354,0.26362544,1.5555766,0.6567111,1.1115439,1.1265234,1.2948277,0.48765337,1.7008262,0.15041667,1.9501867,0.003065586,1.9871765,0.07853371,1.8035281,0.35995358,1.4402875,0.7844267,0.9786407,1.2570813,0.52176785,1.6722772,0.17178196,1.937216,0.00690645,1.9926832,0.063991725,1.8262811,1.7173986,0.46761018,1.3172055,0.9159577,0.8461156,1.3830891,0.40941948,1.7645984,0.10472065,1.9752166,0.00012075901,1.9678695,0.11899823,1.7441995,0.43478346,1.3541975,0.8768971,0.88503087,1.3465247,0.4415604,1.7387025,0.122903526,0.0535053,1.9959562,0.011032343,1.9259253,0.18959796,1.6489458,0.54929197,1.2269243,1.0097213,0.7541841,1.4679778,0.3363849,1.8216393,0.06690651,1.9916606,0.005978644,1.9400415,0.16721892,1.6783192,0.5145894,1.2649894,0.9704513,0.79243326,0.62768817,1.5811479,0.24295503,1.8900334,0.027424753,1.9999924,0.029269278,1.8864487,0.24807644,1.57478,0.6349418,1.1346452,1.1033993,0.6644168,1.5487466,0.26919264,1.8714466,0.037307143,1.9993744,0.020587742,1.9039378,0.22277123,0.34224254,1.4610674,0.76175547,1.0019181,1.2345171,0.5423399,1.6548631,0.1850509,1.9288445,0.00990653,1.9952248,0.056052387,1.8391682,0.31317466,1.4955537,0.7238054,1.0411808,1.196167,0.5776039,1.6246842,0.20843428,1.9135818,1.9698023,2.9921532e-5,1.9734604,0.10822433,1.7595458,0.41573453,1.3758694,0.8538306,0.9081846,1.3245962,0.4610209,1.7228131,0.13432139,1.9594781,0.0011048913,1.9816955,0.09114581,1.7844996,0.3843196,1.4119648,0.81510067,0.9473539,1.2872076,1.4472803,0.35397756,1.8081486,0.07553053,1.9883921,0.0037064552,1.9477258,0.15455842,1.6952385,0.49437028,1.2873623,0.94719255,0.81525946,1.4118176,0.38444692,1.7843995,0.09121317,1.9816648,0.0010973215,1.9595237,0.13424057,1.7229247,1.5936718,0.6133703,1.1576737,1.0802191,0.6864348,1.5291386,0.2852791,1.8597934,0.043866634,1.9982805,0.01615417,1.9136475,0.20833558,1.6248103,0.5774574,1.1963253,1.0410194,0.7239607,1.4954134,0.3132921,1.8390803,0.056105733,0.013443053,1.9972272,0.048624575,1.8516004,0.29644263,1.5156372,0.7015089,1.0644269,1.1732892,0.59881675,1.6063385,0.22287291,1.9038687,0.020620346,1.9993801,0.037263453,1.8715258,0.26908243,1.5488815,0.6642647,1.10356,1.1344852,0.63509214,0.4807735,1.7065319,0.14620835,1.9526591,0.0024694204,1.9858627,0.08168292,1.7987218,0.3661443,1.433063,0.79227525,0.97061276,1.2648336,0.51473063,1.6782005,0.16730839,1.9399865,0.005996287,1.9916815,0.06684846,1.8217313,0.33626407,0.47442514,1.3095796,0.9239625,0.8381857,1.3904946,0.4029581,1.7697494,0.10117191,1.9769619,0.00027781725,1.9658191,0.12282598,1.7388115,0.4414264,1.3466762,0.8848704,0.8770574,1.3540465,0.43491673,1.7440915,0.1190747,1.967829,1.9966456,0.012253761,1.9228623,0.1943289,1.6428151,0.5564751,1.2190961,1.0177511,0.746408,1.4750595,0.33039892,1.8261902,0.06404859,1.9926636,0.006887555,1.9372724,0.17169148,1.6723967,0.521626,1.2572374,0.9784792,0.7845844,1.4401424,1.5876644,0.23773259,1.8936657,0.025588274,1.9999288,0.031229258,1.8827035,0.25339478,1.5681901,0.6424298,1.1266836,1.1113833,0.65686285,1.5554422,0.26373476,1.8753574,0.03516519,1.9996262,0.0222404,1.9004743,0.22784925,1.6000624,1.4539267,0.76956236,0.99388754,1.242316,0.53521466,1.6609111,0.18042326,1.9317895,0.008810878,1.9944088,0.058733642,1.8347735,0.31903356,1.4885627,0.73153245,1.0331559,1.204035,0.5703386,1.630935,0.20355254,1.916818,0.014775932,5.9604645e-8,1.9715912,0.11188668,1.7542979,0.4222706,1.3684157,0.8617795,0.900191,1.3321813,0.45427406,1.7283392,0.13032925,1.96171,0.0007596612,1.9801345,0.09452468,1.7794945,0.39066744,1.4046341,0.82299864,0.93933624,1.2948904,1.4544482,0.34786856,1.8128524,0.07249868,1.9895804,0.0044294,1.9451327,0.15887451,1.6894438,0.5013149,1.2796613,0.95521355,0.80737317,1.4191222,0.378138,1.7893553,0.0878917,1.9831638,0.0015056133,1.957231,0.13828737,1.7173529,0.46766573,0.6207887,1.1497387,1.0882211,0.6788195,1.5359356,0.27968556,1.8638663,0.041545093,1.998719,0.017623484,1.9103537,0.21326739,1.6185203,0.58474946,1.1884449,1.0490419,0.71625113,1.5023732,0.30747664,1.8434219,0.053484082,1.9959621,1.9965975,0.051128864,1.8473635,0.30217206,1.5087401,0.70918286,1.056411,1.1811925,0.5914738,1.6127049,0.21784401,1.907275,0.019029558,1.9990652,0.039466262,1.8675599,0.2745865,1.5421512,0.67183983,1.0955693,1.1424384,0.62762725,0.47392714,1.712192,0.14205515,1.95507,0.0019375682,1.9844855,0.08489138,1.7938643,0.3723759,1.4258107,0.8001372,0.9625867,1.2725687,0.50772476,1.6840799,0.16288847,1.9426963,0.0051502585,1.9906158,0.06976539,1.8171284,0.34229195,1.4610093,1.3019336,0.93197215,0.83026636,1.3978748,0.39653522,1.7748508,0.097681165,1.9786441,0.0004993081,1.9637063,0.12671024,1.7333758,0.44810528,1.3391327,0.89285123,0.8690918,1.3615453,0.42830956,1.7494326,0.11530262,1.9698182,2.9444695e-5,0.013538897,1.9197397,0.19911182,1.6366429,0.5636868,1.2112536,1.0257796,0.73864824,1.4821106,0.3244561,1.8306878,0.061251044,1.9936025,0.007860422,1.9344428,0.17621744,1.666431,0.52869344,1.2494689,0.9865085,0.77674943,1.447339,1.5941429,0.23255938,1.8972404,0.023814738,1.9998007,0.033251703,1.8789012,0.25876123,1.5615635,0.64994085,1.1187137,1.1193602,0.64933103,1.5621021,0.25832433,1.8792117,0.033085406,1.9998136,0.02395618,1.8969527,0.23297697,1.5936191,0.6134308,0.77738416,0.9858574,1.2500994,0.52811927,1.6669164,0.17584848,1.9346745,0.007779181,1.9935288,0.061475575,1.8303251,0.32493633,1.4815401,0.73927677,1.0251287,1.21189,0.56310105,1.6371448,0.19872212,1.9199951,0.013432324,1.9972224,1.9696593,0.11560631,1.7490013,0.42884392,1.3609382,0.8697374,0.89220387,1.339745,0.44756246,1.7338183,0.1263932,1.9638798,0.00047892332,1.9785101,0.09796202,1.7744391,0.39705455,1.3972774,0.830908,0.9313226,1.3025544,0.48071742,0.34180164,1.8175036,0.06952661,1.9907047,0.0052164793,1.9424789,0.16324478,1.683605,0.5082916,1.2719423,0.96323735,0.79949933,1.4263997,0.37186915,1.7942599,0.084629,1.9845996,0.0019782782,1.9548768,0.14238983,1.7117349,0.474481,1.3095171,1.1417938,1.0962174,0.67122483,1.5426981,0.27413845,1.8678836,0.03928536,1.9990932,0.019156158,1.907001,0.21824992,1.6121902,0.5920682,1.1805521,1.0570611,0.70855993,1.5093005,0.30170584,1.8477091,0.050923526,1.9966509,0.012264013,0.053694367,1.8430719,0.3079465,1.5018101,0.71687555,1.0483915,1.1890842,0.5841572,1.6190317,0.21286559,1.9106228,0.01750201,1.9986858,0.041731,1.8635381,0.28013736,1.5353858,0.67943615,1.0875726,1.1503824,0.6201863,1.5877175,1.7178063,0.13795722,1.9574192,0.001470089,1.9830446,0.08815879,1.7889552,0.37864798,1.418531,0.8080121,0.9545631,1.2802863,0.5007506,1.6899154,0.15852255,1.9453453,0.004368365,1.9894863,0.072742224,1.8124728,0.34836233,1.4538682,1.2942683,0.93998617,0.8223579,1.4052294,0.39015126,1.7799022,0.09424859,1.9802634,0.0007852912,1.9615314,0.13065088,1.7278929,0.4548198,1.3315672,0.9008389,0.8611347,1.3690209,0.42173928,1.7547252,0.11158764,1.971745,5.9604645e-8,1.9715756,1.9165578,0.20394641,1.6304296,0.57092667,1.2033976,1.0338066,0.7309053,1.4891307,0.3185569,1.8351319,0.058514,1.9944775,0.008897364,1.9315529,0.1807965,1.6604223,0.5357912,1.2416843,0.99453866,0.7689288,1.4545068,0.3478188,0.22743565,1.9007573,0.022104084,1.9996083,0.035336554,1.8750423,0.26417553,1.5549006,0.6574745,1.1107363,1.1273295,0.6418218,1.5687257,0.25296175,1.8830092,0.031068027,1.9999363,0.025734842,1.8933733,0.23815423,1.5871375,0.6208495,0.78522027,0.97782826,1.2578666,0.5210543,1.6728785,0.17132682,1.9374993,0.00681144,1.9925847,0.064278066,1.8258232,0.3308826,1.4744865,0.7470379,1.0171001,1.2197312,0.55589163,1.6433138,0.19394338,1.9231128,0.012152374,1.996592,0.051149607,1.8473287,0.3022191,1.5086836,0.7092456,1.0563455,1.1812571,0.59141386,1.6127567,0.21780312,1.9073026,0.019016802,1.9960289,0.011153042,1.9256179,0.19007432,1.6483274,0.5500176,1.2261328,1.0105338,0.7533965,1.4686958,0.33577722,1.8221022,0.06661457,1.991765,0.0060676932,1.9397641,0.16766906,1.6777217,0.51530004,1.2642057,0.9712636,0.7916384,1.4336498,0.36564088,1.7991135,0.08142537,1.9859717,0.0025153756,1.952461,0.1465475,1.7060709,0.4813301,1.3018711,0.9320376,0.8302016,1.397935,0.39648288,1.7748923,0.09765285,1.9786577,0.0005013943,1.9636887,0.12674224,1.7333312,0.34285486,1.4603462,0.76254475,1.0011054,1.235307,0.5416176,1.655477,0.1845802,1.9291451,0.009792745,1.9951452,0.056320965,1.8387259,0.31376553,1.4948478,0.7245866,1.0403689,1.1969637,0.57686746,1.6253185,0.20793796,1.913912,0.016037822,1.9982421,0.044057548,1.8594607,0.28573465,1.528586,0.68705314,1.07957,1.1583166,0.61276984,1.5941956,0.2325173,1.8972694,0.023800492,1.9997995,0.03326851,1.87887,0.25880527,1.5615091,0.65000236,1.1186485,1.1194254,0.6492696,1.4480069,0.35335743,1.8086269,0.075221,1.9885154,0.003776729,1.9474661,0.1549927,1.6946541,0.49507153,1.2865839,0.94800407,0.8144609,1.412558,0.3838067,1.7849033,0.090874374,1.9818194,0.0011357069,1.9592944,0.13464755,1.722363,0.46156943,1.3239803,0.90883297,0.85318655,1.3764727,0.41520625,1.7599692,0.107929945,1.9736092,3.516674e-5,1.9696432,0.115636945,1.7489579,0.4288978,1.360877,0.8698025,0.8921386,1.3398068,0.44750774,1.7338629,0.12636125,1.9638975,0.00047689676,1.9971664,0.048875153,1.8511741,0.29702032,1.5149407,0.7022845,1.0636159,1.1740894,0.5980725,1.6069846,0.22236174,1.904216,0.020456493,1.9993513,0.037483513,1.871127,0.26963723,1.548202,0.66503024,1.1027516,1.1352904,0.6343357,1.5753126,0.24764735,1.88675,0.029113114,1.9999948,0.027576387,1.8897363,0.24338055,1.5806179,0.62829256,1.1417289,1.0962827,0.67116284,1.5427533,0.27409333,1.8679161,0.039267123,1.9990959,0.019168973,1.9069734,0.2182908,1.6121383,0.4751166,1.3088068,0.92477274,0.83738387,1.3912425,0.40230638,1.7702678,0.10081607,1.977135,0.00029730797,1.9656081,0.12321645,1.7382636,0.44210058,1.3459139,0.8856777,0.876251,1.3548063,0.43424648,1.7446342,0.11869037,1.9680331,0.00011086464,1.9750723,0.10501093,1.7641785,0.409945,1.3824875,0.84675896,0.91530895,1.3178229,0.46705914,1.7178521,0.13792396,1.9574382,0.0014665127,1.9830327,0.08818573,1.7889149,0.37869942,1.4184713,0.80807656,0.9544975,1.2803494,0.5006937,1.5883217,0.23720688,1.8940301,0.025405943,1.9999187,0.03143108,1.8823214,0.25393564,1.5675211,0.64318883,1.1258775,1.1121908,0.6560997,1.5561178,0.26318508,1.87575,0.034951866,1.9996481,0.022411168,1.9001205,0.22836584,1.5994122,0.6067841,1.1647325,1.0730879,0.6932343,1.5230563,0.2902997,1.8561192,0.045986176,1.9978356,0.014898956,1.9165316,0.20398617,1.6303787,0.5709859,1.2033334,1.0338722,0.7308421,1.489188,0.31850886,1.835168,0.058491886,1.9944844,0.008906066,1.9713986,0.11226052,1.7537642,0.42293406,1.3676602,0.8625844,0.8993825,1.3329477,0.4535933,1.7288958,0.12992841,1.9619324,0.00072836876,1.979973,0.09486991,1.7789853,0.39131194,1.4038908,0.82379854,0.93852514,1.2956668,0.48689932,1.7014524,0.14995378,1.9504602,0.0029972792,1.987036,0.07887524,1.803005,0.36062866,1.4394987,0.7852844,0.97776264,1.25793,0.5209967,1.6729271,0.1712901,1.937522,0.0068038106,1.9925767,0.06430125,1.8257861,0.33093143,1.4744287,0.6215408,1.1489351,1.0890305,0.67805004,1.5366216,0.2791221,1.8642755,0.04131359,1.9987597,0.017775714,1.910017,0.21376926,1.6178815,0.5854888,1.1876466,1.0498534,0.71547204,1.5030756,0.30689067,1.8438582,0.05322224,1.9960347,0.0111628175,1.9255931,0.19011283,1.6482774,0.5500762,1.2260689,1.0105995,0.7533329,1.4687538,0.3357281,1.8221395,0.066591024,1.9917735,0.006074965,1.9397417,0.16770548,1.6776736,0.5153575,1.2641424,0.9713292,0.7915742,1.433709,0.3655901,1.7127624,0.14163792,1.9553106,0.0018873215,1.9843426,0.08521932,1.7933698,0.3730088,1.4250753,0.80093354,0.9617747,1.2733505,0.5070176,1.6846725,0.16244417,1.9429672,0.0050682425,1.9905045,0.07006389,1.8166597,0.34290433,1.4602879,0.7626085,1.0010397,1.2353708,0.5415592,1.6555266,0.18454224,1.9291694,0.009783566,1.9951386,0.05634266,1.8386902,0.31381333,1.4947907,0.72464967,1.0403033,1.197028,0.576808,1.6253698,0.2078979,1.9139386,0.01602614,1.9982382,0.013672531,1.9194205,0.19959873,1.636016,0.56441814,1.2104592,1.026592,0.7378639,1.4828224,0.3238572,1.8311399,0.06097132,1.9936941,0.007962465,1.9341531,0.17667836,1.6658249,0.52941024,1.2486819,0.987321,0.77595735,1.4480656,0.35330737,1.8086655,0.07519603,1.9885252,0.0037823915,1.9474452,0.1550278,1.6946069,0.4951282,1.286521,0.94806963,0.8143964,1.4126178,0.38375497,1.784944,0.090847075,1.9818318,0.0011388063,1.959276,0.13468045,1.7223176,0.46162474,1.3239181,0.7781764,0.9850449,1.2508861,0.52740294,1.6675216,0.17538851,1.934963,0.00767833,1.9934362,0.061756432,1.829872,0.32553607,1.4808278,0.7400614,1.0243164,1.212684,0.5623702,1.6377709,0.19823623,1.9203132,0.013299942,1.9971615,0.04889548,1.8511398,0.297067,1.5148845,0.70234716,1.0635504,1.174154,0.59801245,1.6070368,0.22232044,1.9042441,0.02044326,1.9993489,0.037501335,1.8710947,0.26968205,1.5481472,0.6650921,1.1026863,1.1353555,0.6342746,1.5753663,0.24760413,1.8179713,0.069229245,1.9908149,0.0052996874,1.9422069,0.16369003,1.6830115,0.50899935,1.2711601,0.96404946,0.79870325,1.4271346,0.37123704,1.7947533,0.08430213,1.9847412,0.002029717,1.9546351,0.14280802,1.7111639,0.47517252,1.3087443,0.92483824,0.83731914,1.391303,0.40225375,1.7703097,0.10078734,1.9771489,0.0002988577,1.965591,0.12324804,1.7382193,0.44215506,1.3458524,0.8857429,0.87618583,1.3548677,0.43419236,1.744678,0.11865938,1.9680495,0.00010985136,1.9750577,0.053957403,1.8426346,0.3085333,1.501107,0.71765506,1.0475798,1.1898822,0.58341837,1.6196697,0.21236467,1.9109584,0.017350972,1.9986439,0.041963637,1.8631281,0.28070164,1.5346994,0.68020594,1.086763,1.1511858,0.6194347,1.5883747,0.23716444,1.8940594,0.02539128,1.999918,0.03144741,1.8822904,0.25397933,1.5674671,0.6432501,1.1258123,1.112256,0.65603805,1.5561724,0.26314074,1.8757815,0.0349347,1.9996498,0.022424996,1.9000919,0.22840762,1.5993595,0.6068445,1.1646677,0.9407973,0.82155824,1.4059722,0.38950747,1.7804105,0.093904495,1.9804237,0.0008177757,1.9613078,0.13105273,1.7273355,0.4555012,1.3308004,0.90164757,0.86033,1.369776,0.42107648,1.7552581,0.111214876,1.9719365,7.1525574e-7,1.9713829,0.11229074,1.753721,0.4229877,1.367599,0.86264944,0.89931715,1.3330096,0.4535383,1.7289407,0.12989604,1.9619503,0.00072586536,1.9799598,0.09489781,1.778944,0.39136404,1.4038308,0.82386315,0.93845963,1.2957295,0.486843,1.7014992,0.22691995,1.9011099,0.02193451,1.9995852,0.035550952,1.8746487,0.26472604,1.5542245,0.65823805,1.1099286,1.1281354,0.6410632,1.5693939,0.2524218,1.8833904,0.030867398,1.9999452,0.025918365,1.893008,0.23868084,1.5864794,0.6216015,1.1488702,1.089096,0.6779878,1.536677,0.27907664,1.8643084,0.041294932,1.9987631,0.017788053,1.9099898,0.21380985,1.6178298,0.5855486,1.1875823,1.049919,0.7154091,1.5031323,0.30684334,1.8438934,0.05320108,1.9960406,0.011172593,1.9255683,0.11976832,1.7431128,0.43612498,1.3526771,0.8785101,0.8834166,1.3480488,0.4402129,1.7397971,0.122124076,1.9661975,0.00024437904,1.9766484,0.10181445,1.7688142,0.40413296,1.3891466,0.83963037,0.92250305,1.310971,0.4731804,1.7128084,0.14160424,1.9553299,0.001883328,1.984331,0.08524585,1.7933297,0.37305993,1.4250159,0.80099785,0.9617091,1.2734137,0.50696045,1.6847203,0.16240835,1.942989,0.0050616264,1.9904954,0.07008803,1.8166218,0.3429538,1.4602296,0.7626723,1.0009742,1.1050156,0.66288626,1.5501045,0.26808423,1.8722426,0.03686863,1.9994307,0.020917118,1.9032415,0.22379494,1.605174,0.600158,1.1718473,1.0658875,0.70011216,1.5168908,0.29540318,1.8523668,0.04817468,1.9973351,0.013683319,1.9193946,0.19963807,1.6359653,0.5644772,1.2103951,1.0266576,0.7378006,1.4828799,0.3238088,1.8311765,0.06094873,1.9937015,0.00797075,1.9341297,0.17671561,1.6657759,0.5294682,1.2486184,0.9873867,0.7758934,1.4481243,0.3532573,1.8087041,0.13350892,1.9599348,0.0010297894,1.9813848,0.09182489,1.7834909,0.3856011,1.4104834,0.8166982,0.9457309,1.288764,0.49310797,1.6962898,0.1537776,1.9481918,0.003581643,1.9881687,0.07608956,1.8072855,0.3550955,1.4459707,0.77824044,0.9849793,1.2509496,0.52734506,1.6675705,0.17535138,1.9349864,0.0076702237,1.9934287,0.06177914,1.8298354,0.32558453,1.4807702,0.74012476,1.0242507,1.2127483,0.5623112,1.6378216,0.19819695,1.9203389,0.013289273,1.9971566,0.048915744,1.8511052,0.2093296,1.6235406,0.5789311,1.1947315,1.0426433,0.722399,1.4968245,0.31211156,1.8399633,0.055570245,1.9953666,0.01011312,1.9283011,0.18590003,1.6537563,0.5436419,1.233094,1.0033817,0.76033413,1.4623659,0.3411407,1.8180091,0.069205225,1.9908237,0.0053064227,1.9421849,0.16372603,1.6829636,0.50905657,1.271097,0.9641151,0.79863894,1.427194,0.37118602,1.7947932,0.08427578,1.9847527,0.0020338893,1.9546156,0.14284182,1.7111177,0.47522837,1.308682,0.9249037,0.83725435,1.2664005,0.5133102,1.6793939,0.16640949,1.9405398,0.0058199167,1.991471,0.06743395,1.820804,0.33748055,1.4666837,0.7556032,1.0082576,1.2283496,0.5479859,1.6500589,0.18874127,1.9264771,0.010816574,1.9958236,0.05397868,1.8425992,0.3085807,1.5010502,0.717718,1.0475142,1.1899465,0.58335865,1.6197212,0.2123242,1.9109855,0.017338812,1.9986405,0.041982472,1.8630949,0.28074723,1.5346439,0.68026817,1.0866976,1.1512506,0.61937404,1.5884278,0.237122,1.8940889,0.063477516,1.9928589,0.0070792437,1.9367046,0.17260313,1.6711929,0.5230539,1.2556665,0.9801041,0.7829976,1.4416012,0.35882968,1.8043985,0.077966094,1.9874091,0.0031811595,1.9497296,0.15118963,1.6997812,0.4889109,1.2934288,0.9408629,0.8214936,1.4060322,0.3894555,1.7804515,0.09387672,1.9804366,0.00082045794,1.9612898,0.13108522,1.7272904,0.45555627,1.3307384,0.9017129,0.860265,1.369837,0.42102295,1.755301,0.111184776,1.971952,7.748604e-7,1.9713674,0.11232096,1.7536778,0.32022464,1.487144,0.7330984,1.0315315,1.2056258,0.5688716,1.632195,0.2025708,1.9174658,0.014498889,1.997679,0.04669088,1.8549066,0.2919516,1.5210587,0.69546425,1.070752,1.167042,0.6046319,1.6012851,0.22687829,1.9011383,0.0219208,1.9995832,0.035568297,1.8746169,0.2647705,1.5541699,0.6582998,1.1098634,1.1282005,0.64100194,1.5694479,0.25237817,1.8834212,0.030851185,1.9999459,0.025933206,1.8929784,0.2387234,1.5864263,0.62166226,1.1488053,1.0891613,0.8057786,1.4205973,0.37686604,1.7903519,0.08722663,1.9834595,0.0015960932,1.9567596,0.13911319,1.7162197,0.4690423,1.3156016,0.9176428,0.84444505,1.3846505,0.40805578,1.765687,0.10396868,1.9755893,0.00014847517,1.967443,0.119799495,1.7430689,0.43617916,1.3526157,0.8785753,0.8833514,1.3481104,0.4401585,1.7398412,0.122092605,1.9662144,0.00024294853,1.9766343,0.1018433,1.7687722,0.40418565,1.3890861,0.83969516,0.9224376,1.3110335,0.47312462,1.7128544,0.14157057,1.9553493,0.018715262,1.9989936,0.039919615,1.8667505,0.2757061,1.5407848,0.6733755,1.0939513,1.1440469,0.6261194,1.5825231,0.24185133,1.8908029,0.027032852,1.9999844,0.029676795,1.8856649,0.24919224,1.5733955,0.6365165,1.1329696,1.105081,0.66282445,1.5501593,0.26803952,1.8722746,0.03685099,1.9994328,0.020930469,1.9032133,0.2238363,1.6051217,0.6002181,1.1717827,1.065953,0.7000495,1.516947,0.29535663,1.8524011,0.048154533,1.9973398,0.013694167,1.9193687,0.19967741,1.6359147,0.44946134,1.3376033,0.89446723,0.86748075,1.3630602,0.42697686,1.7505076,0.11454618,1.9702132,1.8298626e-5,1.973072,0.10899073,1.7584448,0.41710764,1.374302,0.85550356,0.906501,1.326195,0.4595974,1.7239805,0.1334762,1.9599532,0.0010268092,1.9813721,0.09185237,1.78345,0.3856529,1.4104234,0.8167627,0.9456654,1.2888268,0.4930514,1.696337,0.15374261,1.9482126,0.0035760999,1.9881587,0.076114655,1.8072469,0.3551457,1.4459119,0.77830446,0.98491365,1.2510132,0.64780945,1.5634456,0.25723517,1.8799849,0.032672107,1.9998436,0.024311066,1.896233,0.23402077,1.5923104,0.6149302,1.1560037,1.0819044,0.6848296,1.5305727,0.2840975,1.8606555,0.04337269,1.9983782,0.016458273,1.9129589,0.20936978,1.6234893,0.5789906,1.1946671,1.0427089,0.72233593,1.4968815,0.31206393,1.839999,0.055548668,1.995373,0.010122418,1.9282768,0.18593818,1.6537066,0.54370034,1.2330301,1.0034474,0.7602704,1.462424,0.34109133,1.8180468,0.069181204,1.9908326,0.0004299879,1.9781737,0.09866476,1.7734098,0.3983519,1.3957853,0.8325101,0.9297012,1.3041029,0.47932917,1.7077274,0.1453293,1.9531718,0.002352059,1.9855781,0.08235359,1.7977033,0.36745304,1.4315383,0.7939296,0.9689226,1.2664638,0.51325285,1.679442,0.16637325,1.9405621,0.005812824,1.9914625,0.06745762,1.8207664,0.33752972,1.4666257,0.75566685,1.008192,1.2284135,0.5479273,1.6501088,0.18870288,1.9265018,0.010806918,1.9958177,0.05399996,1.8425639,0.30862814,1.6109042,0.5935526,1.1789534,1.0586835,0.7070056,1.5106986,0.30054337,1.8485701,0.050412774,1.9967825,0.012519062,1.9222097,0.1953317,1.641519,0.5579912,1.2174459,1.0194416,0.7447728,1.4765468,0.329144,1.8271415,0.06345451,1.9928668,0.007087052,1.9366817,0.17264003,1.6711442,0.5231116,1.2556031,0.9801697,0.7829335,1.44166,0.35877925,1.8044374,0.0779407,1.9874196,0.0031864047,1.9497089,0.15122432,1.6997343,0.48896736,1.293366,0.9409284,0.821429,1.4060922,0.49934304,1.691091,0.15764552,1.945874,0.0042179227,1.98925,0.07335198,1.8115243,0.34959596,1.4524194,0.7712081,0.9921967,1.2439562,0.5337181,1.662179,0.17945558,1.9324019,0.008588314,1.994229,0.059305966,1.8338413,0.3202728,1.4870867,0.7331617,1.0314659,1.20569,0.5688124,1.6322458,0.20253116,1.9174919,0.014487743,1.9976745,0.04671067,1.8548725,0.2919979,1.5210027,0.6955268,1.0706865,1.1671067,0.6045716,1.6013376,0.22683668,1.9011668,0.02190715,1.9995813,0.009114981,1.9309608,0.18172967,1.659201,0.5372313,1.2401069,0.9961639,0.7673479,1.4559538,0.3465876,1.8138361,0.07186788,1.9898224,0.004589796,1.944579,0.15979022,1.6882181,0.5027812,1.2780375,0.9569028,0.80571425,1.4206568,0.37681466,1.7903922,0.08719981,1.9834714,0.0015997887,1.9567405,0.13914657,1.7161739,0.4690979,1.3155392,0.91770816,0.8443802,1.384711,0.40800285,1.7657293,0.10393953,1.9756037,0.00014960766,1.9674263,0.11983067,1.7430251,0.4362334,1.4730552,0.7486106,1.015475,1.2213165,0.5544361,1.6445572,0.19298261,1.9237366,0.011901081,1.9964566,0.051663995,1.8464644,0.30338418,1.5072837,0.71080106,1.0547227,1.1828551,0.589931,1.6140404,0.21679157,1.9079847,0.018702626,1.9989908,0.039937973,1.8667178,0.2757514,1.5407295,0.67343754,1.093886,1.1441119,0.62605846,1.5825765,0.24180853,1.8908328,0.027017653,1.999984,0.02969265,1.8856344,0.24923557,1.5733416,0.63657767,1.1329045,1.1051462,0.66276264,1.5502142,0.3643853,1.8000895,0.0807842,1.9862416,0.002631843,1.9519646,0.14739567,1.7049191,0.48272032,1.3003212,0.9336592,0.8286002,1.3994255,0.3951878,1.7759185,0.09695357,1.9789903,0.0005541444,1.9632535,0.12753528,1.7322252,0.44951612,1.3375415,0.8945325,0.86741567,1.3631214,0.42692304,1.750551,0.11451566,1.9702291,1.7881393e-5,1.9730568,0.10902053,1.7584021,0.417161,1.3742411,0.8555685,0.9064356,1.3262571,0.45954216,1.7240258,0.13344342,1.9599717,0.0010238886,1.9813595,0.044535935,1.8586287,0.28687304,1.5272057,0.6885972,1.0779499],"x":[1.8110049e18,5.2211715e32,1.0442343e33,1.5663515e33,2.0884686e33,2.6105856e33,3.132703e33,3.65482e33,4.1769372e33,4.6990542e33,5.221171e33,5.7432885e33,6.265406e33,6.787523e33,7.30964e33,7.831757e33,8.3538744e33,8.875992e33,9.3981084e33,9.920226e33,1.0442342e34,1.096446e34,1.1486577e34,1.2008694e34,1.2530812e34,1.3052929e34,1.3575046e34,1.4097162e34,1.461928e34,1.5141397e34,1.5663514e34,1.6185631e34,1.6707749e34,1.7229866e34,1.7751983e34,1.82741e34,1.8796217e34,1.9318334e34,1.9840451e34,2.0362569e34,2.0884685e34,2.1406803e34,2.192892e34,2.2451038e34,2.2973154e34,2.3495273e34,2.4017389e34,2.4539505e34,2.5061623e34,2.558374e34,2.6105858e34,2.6627974e34,2.7150092e34,2.7672208e34,2.8194325e34,2.8716443e34,2.923856e34,2.9760678e34,3.0282794e34,3.0804912e34,3.1327028e34,3.1849147e34,3.2371263e34,3.289338e34,3.3415498e34,3.3937614e34,3.4459732e34,3.4981848e34,3.5503967e34,3.6026083e34,3.65482e34,3.7070317e34,3.7592434e34,3.8114552e34,3.8636668e34,3.9158787e34,3.9680903e34,4.020302e34,4.0725137e34,4.1247253e34,4.176937e34,4.229149e34,4.2813607e34,4.3335725e34,4.385784e34,4.4379957e34,4.4902076e34,4.542419e34,4.594631e34,4.6468427e34,4.6990545e34,4.751266e34,4.8034777e34,4.8556896e34,4.907901e34,4.960113e34,5.0123246e34,5.0645365e34,5.116748e34,5.1689597e34,5.2211716e34,5.273383e34,5.325595e34,5.3778066e34,5.4300185e34,5.48223e34,5.5344417e34,5.5866536e34,5.638865e34,5.691077e34,5.7432886e34,5.7955005e34,5.847712e34,5.8999237e34,5.9521355e34,6.004347e34,6.056559e34,6.1087706e34,6.1609825e34,6.213194e34,6.2654057e34,6.3176175e34,6.3698294e34,6.4220407e34,6.4742526e34,6.5264645e34,6.578676e34,6.6308877e34,6.6830995e34,6.7353114e34,6.7875227e34,6.8397346e34,6.8919464e34,6.944158e34,6.9963697e34,7.0485815e34,7.1007934e34,7.1530047e34,7.2052166e34,7.2574284e34,7.30964e34,7.3618516e34,7.4140635e34,7.4662754e34,7.5184867e34,7.5706986e34,7.6229104e34,7.675122e34,7.7273336e34,7.7795455e34,7.8317573e34,7.8839687e34,7.9361806e34,7.9883924e34,8.040604e34,8.0928156e34,8.1450275e34,8.1972393e34,8.2494507e34,8.3016625e34,8.353874e34,8.406086e34,8.458298e34,8.510509e34,8.562721e34,8.614933e34,8.667145e34,8.719356e34,8.771568e34,8.82378e34,8.875991e34,8.928203e34,8.980415e34,9.032627e34,9.084838e34,9.13705e34,9.189262e34,9.241473e34,9.293685e34,9.345897e34,9.398109e34,9.45032e34,9.502532e34,9.554744e34,9.606955e34,9.659167e34,9.711379e34,9.7635905e34,9.815802e34,9.868014e34,9.920226e34,9.972437e34,1.0024649e35,1.0076861e35,1.0129073e35,1.0181284e35,1.0233496e35,1.0285708e35,1.0337919e35,1.0390131e35,1.0442343e35,1.0494554e35,1.0546766e35,1.0598978e35,1.065119e35,1.0703402e35,1.0755613e35,1.0807825e35,1.0860037e35,1.0912248e35,1.096446e35,1.1016672e35,1.1068883e35,1.1121095e35,1.1173307e35,1.1225518e35,1.127773e35,1.1329942e35,1.1382154e35,1.1434366e35,1.1486577e35,1.1538789e35,1.1591001e35,1.1643212e35,1.1695424e35,1.1747636e35,1.1799847e35,1.1852059e35,1.1904271e35,1.1956482e35,1.2008694e35,1.2060906e35,1.2113118e35,1.216533e35,1.2217541e35,1.2269753e35,1.2321965e35,1.2374176e35,1.2426388e35,1.24786e35,1.2530811e35,1.2583023e35,1.2635235e35,1.2687446e35,1.2739659e35,1.279187e35,1.2844081e35,1.2896294e35,1.2948505e35,1.3000717e35,1.3052929e35,1.310514e35,1.3157352e35,1.3209564e35,1.3261775e35,1.3313987e35,1.3366199e35,1.341841e35,1.3470623e35,1.3522834e35,1.3575045e35,1.3627258e35,1.3679469e35,1.3731681e35,1.3783893e35,1.3836104e35,1.3888316e35,1.3940528e35,1.3992739e35,1.4044951e35,1.4097163e35,1.4149374e35,1.4201587e35,1.4253798e35,1.4306009e35,1.4358222e35,1.4410433e35,1.4462645e35,1.4514857e35,1.4567068e35,1.461928e35,1.4671492e35,1.4723703e35,1.4775915e35,1.4828127e35,1.4880338e35,1.4932551e35,1.4984762e35,1.5036973e35,1.5089186e35,1.5141397e35,1.5193608e35,1.5245821e35,1.5298032e35,1.5350244e35,1.5402456e35,1.5454667e35,1.550688e35,1.5559091e35,1.5611302e35,1.5663515e35,1.5715726e35,1.5767937e35,1.582015e35,1.5872361e35,1.5924572e35,1.5976785e35,1.6028996e35,1.6081208e35,1.613342e35,1.6185631e35,1.6237844e35,1.6290055e35,1.6342266e35,1.6394479e35,1.644669e35,1.6498901e35,1.6551114e35,1.6603325e35,1.6655536e35,1.6707748e35,1.6759961e35,1.6812173e35,1.6864384e35,1.6916595e35,1.6968807e35,1.7021018e35,1.7073231e35,1.7125443e35,1.7177654e35,1.7229865e35,1.7282077e35,1.733429e35,1.7386501e35,1.7438713e35,1.7490924e35,1.7543135e35,1.7595347e35,1.764756e35,1.7699772e35,1.7751983e35,1.7804194e35,1.7856406e35,1.7908619e35,1.796083e35,1.8013042e35,1.8065253e35,1.8117464e35,1.8169676e35,1.822189e35,1.82741e35,1.8326312e35,1.8378523e35,1.8430735e35,1.8482946e35,1.853516e35,1.858737e35,1.8639582e35,1.8691793e35,1.8744005e35,1.8796218e35,1.884843e35,1.890064e35,1.8952852e35,1.9005063e35,1.9057275e35,1.9109488e35,1.91617e35,1.921391e35,1.9266122e35,1.9318334e35,1.9370547e35,1.9422758e35,1.947497e35,1.9527181e35,1.9579392e35,1.9631604e35,1.9683817e35,1.9736028e35,1.978824e35,1.9840451e35,1.9892663e35,1.9944874e35,1.9997087e35,2.0049299e35,2.010151e35,2.0153721e35,2.0205933e35,2.0258146e35,2.0310357e35,2.0362569e35,2.041478e35,2.0466991e35,2.0519203e35,2.0571416e35,2.0623627e35,2.0675839e35,2.072805e35,2.0780262e35,2.0832475e35,2.0884686e35,2.0936898e35,2.0989109e35,2.104132e35,2.1093532e35,2.1145745e35,2.1197956e35,2.1250168e35,2.130238e35,2.135459e35,2.1406804e35,2.1459015e35,2.1511227e35,2.1563438e35,2.161565e35,2.166786e35,2.1720074e35,2.1772285e35,2.1824497e35,2.1876708e35,2.192892e35,2.198113e35,2.2033344e35,2.2085555e35,2.2137767e35,2.2189978e35,2.224219e35,2.2294403e35,2.2346614e35,2.2398826e35,2.2451037e35,2.2503248e35,2.255546e35,2.2607673e35,2.2659884e35,2.2712096e35,2.2764307e35,2.2816518e35,2.2868732e35,2.2920943e35,2.2973154e35,2.3025366e35,2.3077577e35,2.3129789e35,2.3182002e35,2.3234213e35,2.3286425e35,2.3338636e35,2.3390847e35,2.344306e35,2.3495272e35,2.3547483e35,2.3599695e35,2.3651906e35,2.3704117e35,2.375633e35,2.3808542e35,2.3860754e35,2.3912965e35,2.3965176e35,2.4017388e35,2.40696e35,2.4121812e35,2.4174024e35,2.4226235e35,2.4278446e35,2.433066e35,2.4382871e35,2.4435082e35,2.4487294e35,2.4539505e35,2.4591717e35,2.464393e35,2.4696141e35,2.4748353e35,2.4800564e35,2.4852775e35,2.4904989e35,2.49572e35,2.5009411e35,2.5061623e35,2.5113834e35,2.5166045e35,2.5218259e35,2.527047e35,2.5322681e35,2.5374893e35,2.5427104e35,2.5479318e35,2.5531529e35,2.558374e35,2.5635952e35,2.5688163e35,2.5740374e35,2.5792588e35,2.58448e35,2.589701e35,2.5949222e35,2.6001433e35,2.6053644e35,2.6105858e35,2.615807e35,2.621028e35,2.6262492e35,2.6314703e35,2.6366917e35,2.6419128e35,2.647134e35,2.652355e35,2.6575762e35,2.6627973e35,2.6680187e35,2.6732398e35,2.678461e35,2.683682e35,2.6889032e35,2.6941245e35,2.6993457e35,2.7045668e35,2.709788e35,2.715009e35,2.7202302e35,2.7254516e35,2.7306727e35,2.7358938e35,2.741115e35,2.7463361e35,2.7515572e35,2.7567786e35,2.7619997e35,2.7672208e35,2.772442e35,2.7776631e35,2.7828845e35,2.7881056e35,2.7933267e35,2.7985479e35,2.803769e35,2.8089901e35,2.8142115e35,2.8194326e35,2.8246537e35,2.8298749e35,2.835096e35,2.8403173e35,2.8455385e35,2.8507596e35,2.8559808e35,2.8612019e35,2.866423e35,2.8716444e35,2.8768655e35,2.8820866e35,2.8873078e35,2.892529e35,2.8977502e35,2.9029714e35,2.9081925e35,2.9134136e35,2.9186348e35,2.923856e35,2.9290773e35,2.9342984e35,2.9395195e35,2.9447407e35,2.9499618e35,2.955183e35,2.9604043e35,2.9656254e35,2.9708465e35,2.9760677e35,2.9812888e35,2.9865101e35,2.9917313e35,2.9969524e35,3.0021735e35,3.0073947e35,3.0126158e35,3.0178372e35,3.0230583e35,3.0282794e35,3.0335006e35,3.0387217e35,3.043943e35,3.0491642e35,3.0543853e35,3.0596064e35,3.0648276e35,3.0700487e35,3.07527e35,3.0804912e35,3.0857123e35,3.0909335e35,3.0961546e35,3.101376e35,3.106597e35,3.1118182e35,3.1170393e35,3.1222605e35,3.1274816e35,3.132703e35,3.137924e35,3.1431452e35,3.1483663e35,3.1535875e35,3.1588086e35,3.16403e35,3.169251e35,3.1744722e35,3.1796934e35,3.1849145e35,3.1901358e35,3.195357e35,3.2005781e35,3.2057992e35,3.2110204e35,3.2162415e35,3.2214628e35,3.226684e35,3.2319051e35,3.2371262e35,3.2423474e35,3.2475687e35,3.2527899e35,3.258011e35,3.2632321e35,3.2684533e35,3.2736744e35,3.2788957e35,3.2841169e35,3.289338e35,3.2945591e35,3.2997803e35,3.3050016e35,3.3102227e35,3.3154439e35,3.320665e35,3.325886e35,3.3311073e35,3.3363284e35,3.3415496e35,3.3467707e35,3.3519922e35,3.3572134e35,3.3624345e35,3.3676556e35,3.3728768e35,3.378098e35,3.383319e35,3.38854e35,3.3937613e35,3.3989825e35,3.4042036e35,3.409425e35,3.4146463e35,3.4198674e35,3.4250885e35,3.4303097e35,3.4355308e35,3.440752e35,3.445973e35,3.4511942e35,3.4564153e35,3.4616365e35,3.466858e35,3.472079e35,3.4773003e35,3.4825214e35,3.4877426e35,3.4929637e35,3.498185e35,3.503406e35,3.508627e35,3.5138482e35,3.5190694e35,3.524291e35,3.529512e35,3.534733e35,3.5399543e35,3.5451754e35,3.5503966e35,3.5556177e35,3.560839e35,3.56606e35,3.571281e35,3.5765023e35,3.5817238e35,3.586945e35,3.592166e35,3.5973872e35,3.6026083e35,3.6078295e35,3.6130506e35,3.6182717e35,3.623493e35,3.628714e35,3.633935e35,3.6391563e35,3.644378e35,3.649599e35,3.65482e35,3.6600412e35,3.6652624e35,3.6704835e35,3.6757046e35,3.6809258e35,3.686147e35,3.691368e35,3.696589e35,3.7018107e35,3.707032e35,3.712253e35,3.717474e35,3.7226953e35,3.7279164e35,3.7331375e35,3.7383587e35,3.7435798e35,3.748801e35,3.754022e35,3.7592436e35,3.7644647e35,3.769686e35,3.774907e35,3.780128e35,3.7853493e35,3.7905704e35,3.7957916e35,3.8010127e35,3.806234e35,3.811455e35,3.8166765e35,3.8218976e35,3.8271188e35,3.83234e35,3.837561e35,3.842782e35,3.8480033e35,3.8532244e35,3.8584456e35,3.8636667e35,3.868888e35,3.8741094e35,3.8793305e35,3.8845517e35,3.8897728e35,3.894994e35,3.900215e35,3.9054362e35,3.9106573e35,3.9158785e35,3.9210996e35,3.9263207e35,3.9315423e35,3.9367634e35,3.9419845e35,3.9472057e35,3.952427e35,3.957648e35,3.962869e35,3.9680902e35,3.9733114e35,3.9785325e35,3.9837536e35,3.9889748e35,3.9941963e35,3.9994174e35,4.0046386e35,4.0098597e35,4.015081e35,4.020302e35,4.025523e35,4.0307443e35,4.0359654e35,4.0411865e35,4.0464077e35,4.051629e35,4.0568503e35,4.0620715e35,4.0672926e35,4.0725137e35,4.077735e35,4.082956e35,4.088177e35,4.0933983e35,4.0986194e35,4.1038406e35,4.109062e35,4.1142832e35,4.1195044e35,4.1247255e35,4.1299466e35,4.1351678e35,4.140389e35,4.14561e35,4.150831e35,4.1560523e35,4.1612734e35,4.166495e35,4.171716e35,4.1769372e35,4.1821584e35,4.1873795e35,4.1926007e35,4.1978218e35,4.203043e35,4.208264e35,4.2134852e35,4.2187063e35,4.223928e35,4.229149e35,4.23437e35,4.2395913e35,4.2448124e35,4.2500335e35,4.2552547e35,4.260476e35,4.265697e35,4.270918e35,4.2761392e35,4.2813608e35,4.286582e35,4.291803e35,4.297024e35,4.3022453e35,4.3074664e35,4.3126876e35,4.3179087e35,4.32313e35,4.328351e35,4.333572e35,4.3387937e35,4.3440148e35,4.349236e35,4.354457e35,4.359678e35,4.3648993e35,4.3701205e35,4.3753416e35,4.3805627e35,4.385784e35,4.391005e35,4.396226e35,4.4014477e35,4.406669e35,4.41189e35,4.417111e35,4.4223322e35,4.4275534e35,4.4327745e35,4.4379956e35,4.4432168e35,4.448438e35,4.453659e35,4.4588806e35,4.4641017e35,4.469323e35,4.474544e35,4.479765e35,4.4849862e35,4.4902074e35,4.4954285e35,4.5006497e35,4.5058708e35,4.511092e35,4.5163135e35,4.5215346e35,4.5267557e35,4.531977e35,4.537198e35,4.542419e35,4.5476403e35,4.5528614e35,4.5580825e35,4.5633037e35,4.568525e35,4.5737464e35,4.5789675e35,4.5841886e35,4.5894098e35,4.594631e35,4.599852e35,4.605073e35,4.6102943e35,4.6155154e35,4.6207366e35,4.6259577e35,4.6311792e35,4.6364004e35,4.6416215e35,4.6468427e35,4.6520638e35,4.657285e35,4.662506e35,4.667727e35,4.6729483e35,4.6781695e35,4.6833906e35,4.688612e35,4.6938333e35,4.6990544e35,4.7042755e35,4.7094967e35,4.714718e35,4.719939e35,4.72516e35,4.7303812e35,4.7356024e35,4.7408235e35,4.7460446e35,4.751266e35,4.7564873e35,4.7617084e35,4.7669296e35,4.7721507e35,4.777372e35,4.782593e35,4.787814e35,4.7930352e35,4.7982564e35,4.8034775e35,4.808699e35,4.81392e35,4.8191413e35,4.8243625e35,4.8295836e35,4.8348047e35,4.840026e35,4.845247e35,4.850468e35,4.8556893e35,4.8609104e35,4.866132e35,4.871353e35,4.8765742e35,4.8817954e35,4.8870165e35,4.8922376e35,4.8974588e35,4.90268e35,4.907901e35,4.913122e35,4.9183433e35,4.923565e35,4.928786e35,4.934007e35,4.9392282e35,4.9444494e35,4.9496705e35,4.9548917e35,4.9601128e35,4.965334e35,4.970555e35,4.975776e35,4.9809977e35,4.986219e35,4.99144e35,4.996661e35,5.0018823e35,5.0071034e35,5.0123245e35,5.0175457e35,5.022767e35,5.027988e35,5.033209e35,5.0384306e35,5.0436518e35,5.048873e35,5.054094e35,5.059315e35,5.0645363e35,5.0697574e35,5.0749786e35,5.0801997e35,5.085421e35,5.090642e35,5.0958635e35,5.1010846e35,5.1063058e35,5.111527e35,5.116748e35,5.121969e35,5.1271903e35,5.1324115e35,5.1376326e35,5.1428537e35,5.148075e35,5.153296e35,5.1585175e35,5.1637387e35,5.16896e35,5.174181e35,5.179402e35,5.1846232e35,5.1898444e35,5.1950655e35,5.2002866e35,5.2055078e35,5.210729e35,5.2159504e35,5.2211716e35,5.2263927e35,5.231614e35,5.236835e35,5.242056e35,5.2472772e35,5.2524984e35,5.2577195e35,5.2629406e35,5.2681618e35,5.2733833e35,5.2786045e35,5.2838256e35,5.2890467e35,5.294268e35,5.299489e35,5.30471e35,5.3099313e35,5.3151524e35,5.3203735e35,5.3255947e35,5.3308162e35,5.3360373e35,5.3412585e35,5.3464796e35,5.3517008e35,5.356922e35,5.362143e35,5.367364e35,5.3725853e35,5.3778064e35,5.3830276e35,5.388249e35,5.3934702e35,5.3986914e35,5.4039125e35,5.4091336e35,5.4143548e35,5.419576e35,5.424797e35,5.430018e35,5.4352393e35,5.4404605e35,5.445682e35,5.450903e35,5.4561243e35,5.4613454e35,5.4665665e35,5.4717877e35,5.477009e35,5.48223e35,5.487451e35,5.4926722e35,5.4978934e35,5.5031145e35,5.508336e35,5.513557e35,5.5187783e35,5.5239994e35,5.5292206e35,5.5344417e35,5.539663e35,5.544884e35,5.550105e35,5.5553262e35,5.5605474e35,5.565769e35,5.57099e35,5.576211e35,5.5814323e35,5.5866535e35,5.5918746e35,5.5970957e35,5.602317e35,5.607538e35,5.612759e35,5.6179803e35,5.6232018e35,5.628423e35,5.633644e35,5.6388652e35,5.6440863e35,5.6493075e35,5.6545286e35,5.6597498e35,5.664971e35,5.670192e35,5.675413e35,5.6806347e35,5.685856e35,5.691077e35,5.696298e35,5.7015192e35,5.7067404e35,5.7119615e35,5.7171826e35,5.7224038e35,5.727625e35,5.732846e35,5.7380676e35,5.7432887e35,5.74851e35,5.753731e35,5.758952e35,5.7641733e35,5.7693944e35,5.7746155e35,5.7798367e35,5.785058e35,5.790279e35,5.7955005e35,5.8007216e35,5.8059427e35,5.811164e35,5.816385e35,5.821606e35,5.8268273e35,5.8320484e35,5.8372696e35,5.8424907e35,5.847712e35,5.8529334e35,5.8581545e35,5.8633756e35,5.8685968e35,5.873818e35,5.879039e35,5.88426e35,5.8894813e35,5.8947025e35,5.8999236e35,5.9051447e35,5.910366e35,5.9155874e35,5.9208085e35,5.9260297e35,5.9312508e35,5.936472e35,5.941693e35,5.9469142e35,5.9521353e35,5.9573565e35,5.9625776e35,5.9677988e35,5.9730203e35,5.9782414e35,5.9834626e35,5.9886837e35,5.993905e35,5.999126e35,6.004347e35,6.0095682e35,6.0147894e35,6.0200105e35,6.0252316e35,6.030453e35,6.0356743e35,6.0408954e35,6.0461166e35,6.0513377e35,6.056559e35,6.06178e35,6.067001e35,6.0722223e35,6.0774434e35,6.0826645e35,6.087886e35,6.0931072e35,6.0983283e35,6.1035495e35,6.1087706e35,6.1139917e35,6.119213e35,6.124434e35,6.129655e35,6.1348763e35,6.1400974e35,6.145319e35,6.15054e35,6.1557612e35,6.1609824e35,6.1662035e35,6.1714246e35,6.1766458e35,6.181867e35,6.187088e35,6.192309e35,6.1975303e35,6.202752e35,6.207973e35,6.213194e35,6.2184153e35,6.2236364e35,6.2288575e35,6.2340787e35,6.2392998e35,6.244521e35,6.249742e35,6.2549632e35,6.2601843e35,6.265406e35,6.270627e35,6.275848e35,6.2810693e35,6.2862904e35,6.2915116e35,6.2967327e35,6.301954e35,6.307175e35,6.312396e35,6.3176172e35,6.3228388e35,6.32806e35,6.333281e35,6.338502e35,6.3437233e35,6.3489444e35,6.3541656e35,6.3593867e35,6.364608e35,6.369829e35,6.37505e35,6.3802717e35,6.3854928e35,6.390714e35,6.395935e35,6.4011562e35,6.4063773e35,6.4115985e35,6.4168196e35,6.4220407e35,6.427262e35,6.432483e35,6.4377045e35,6.4429257e35,6.448147e35,6.453368e35,6.458589e35,6.4638102e35,6.4690314e35,6.4742525e35,6.4794736e35,6.4846948e35,6.489916e35,6.4951374e35,6.5003586e35,6.5055797e35,6.510801e35,6.516022e35,6.521243e35,6.5264643e35,6.5316854e35,6.5369065e35,6.5421277e35,6.5473488e35,6.5525703e35,6.5577915e35,6.5630126e35,6.5682337e35,6.573455e35,6.578676e35,6.583897e35,6.5891183e35,6.5943394e35,6.5995606e35,6.6047817e35,6.6100032e35,6.6152244e35,6.6204455e35,6.6256666e35,6.6308878e35,6.636109e35,6.64133e35,6.646551e35,6.651772e35,6.6569934e35,6.6622146e35,6.667436e35,6.672657e35,6.677878e35,6.683099e35,6.68832e35,6.6935414e35,6.698763e35,6.7039845e35,6.7092056e35,6.714427e35,6.719648e35,6.724869e35,6.73009e35,6.735311e35,6.7405324e35,6.7457535e35,6.750975e35,6.756196e35,6.761417e35,6.766638e35,6.771859e35,6.77708e35,6.7823015e35,6.787523e35,6.792744e35,6.797965e35,6.803186e35,6.808407e35,6.813629e35,6.81885e35,6.824071e35,6.8292925e35,6.834514e35,6.839735e35,6.844956e35,6.850177e35,6.855398e35,6.860619e35,6.8658405e35,6.8710616e35,6.876283e35,6.881504e35,6.886725e35,6.891946e35,6.897167e35,6.9023884e35,6.9076096e35,6.912831e35,6.918052e35,6.923273e35,6.928494e35,6.933716e35,6.938937e35,6.944158e35,6.9493794e35,6.9546006e35,6.959822e35,6.965043e35,6.970264e35,6.975485e35,6.980706e35,6.985927e35,6.9911485e35,6.99637e35,7.001591e35,7.006812e35,7.012033e35,7.017254e35,7.022475e35,7.0276965e35,7.032918e35,7.038139e35,7.04336e35,7.048582e35,7.053803e35,7.059024e35,7.064245e35,7.069466e35,7.0746875e35,7.079909e35,7.08513e35,7.090351e35,7.095572e35,7.100793e35,7.106014e35,7.1112354e35,7.1164566e35,7.121678e35,7.126899e35,7.13212e35,7.137341e35,7.142562e35,7.147783e35,7.1530045e35,7.158226e35,7.1634476e35,7.168669e35,7.17389e35,7.179111e35,7.184332e35,7.189553e35,7.1947744e35,7.1999955e35,7.205217e35,7.210438e35,7.215659e35,7.22088e35,7.226101e35,7.231322e35,7.2365435e35,7.241765e35,7.246986e35,7.252207e35,7.257428e35,7.262649e35,7.26787e35,7.2730914e35,7.2783126e35,7.2835345e35,7.288756e35,7.293977e35,7.299198e35,7.304419e35,7.30964e35,7.314861e35,7.3200825e35,7.3253036e35,7.330525e35,7.335746e35,7.340967e35,7.346188e35,7.351409e35,7.3566304e35,7.3618515e35,7.367073e35,7.372294e35,7.377515e35,7.382736e35,7.387957e35,7.393178e35,7.3984e35,7.4036214e35,7.4088426e35,7.414064e35,7.419285e35,7.424506e35,7.429727e35,7.434948e35,7.440169e35,7.4453905e35,7.450612e35,7.455833e35,7.461054e35,7.466275e35,7.471496e35,7.476717e35,7.4819385e35,7.4871596e35,7.492381e35,7.497602e35,7.502823e35,7.508044e35,7.513266e35,7.518487e35,7.523708e35,7.5289295e35,7.534151e35,7.539372e35,7.544593e35,7.549814e35,7.555035e35,7.560256e35,7.5654774e35,7.5706986e35,7.57592e35,7.581141e35,7.586362e35,7.591583e35,7.596804e35,7.602025e35,7.6072465e35,7.612468e35,7.617689e35,7.62291e35,7.628131e35,7.633353e35,7.638574e35,7.643795e35,7.6490164e35,7.6542375e35,7.659459e35,7.66468e35,7.669901e35,7.675122e35,7.680343e35,7.685564e35,7.6907855e35,7.696007e35,7.701228e35,7.706449e35,7.71167e35,7.716891e35,7.722112e35,7.7273334e35,7.7325546e35,7.737776e35,7.742997e35,7.748219e35,7.75344e35,7.758661e35,7.763882e35,7.769103e35,7.7743245e35,7.7795456e35,7.784767e35,7.789988e35,7.795209e35,7.80043e35,7.805651e35,7.8108724e35,7.8160935e35,7.821315e35,7.826536e35,7.831757e35,7.836978e35,7.842199e35,7.84742e35,7.8526415e35,7.857863e35,7.8630846e35,7.868306e35,7.873527e35,7.878748e35,7.883969e35,7.88919e35,7.894411e35,7.8996325e35,7.904854e35,7.910075e35,7.915296e35,7.920517e35,7.925738e35,7.930959e35,7.9361805e35,7.9414016e35,7.946623e35,7.951844e35,7.957065e35,7.962286e35,7.967507e35,7.9727284e35,7.9779495e35,7.9831715e35,7.988393e35,7.993614e35,7.998835e35,8.004056e35,8.009277e35,8.014498e35,8.0197194e35,8.0249406e35,8.030162e35,8.035383e35,8.040604e35,8.045825e35,8.051046e35,8.056267e35,8.0614885e35,8.06671e35,8.071931e35,8.077152e35,8.082373e35,8.087594e35,8.092815e35,8.098037e35,8.103258e35,8.1084795e35,8.113701e35,8.118922e35,8.124143e35,8.129364e35,8.134585e35,8.139806e35,8.1450275e35,8.150249e35,8.15547e35,8.160691e35,8.165912e35,8.171133e35,8.176354e35,8.1815754e35,8.1867966e35,8.192018e35,8.197239e35,8.20246e35,8.207681e35,8.212903e35,8.218124e35,8.223345e35,8.2285664e35,8.2337876e35,8.239009e35,8.24423e35,8.249451e35,8.254672e35,8.259893e35,8.2651144e35,8.2703355e35,8.275557e35,8.280778e35,8.285999e35,8.29122e35,8.296441e35,8.301662e35,8.3068835e35,8.312105e35,8.317326e35,8.322547e35,8.327769e35,8.33299e35,8.338211e35,8.343432e35,8.348653e35,8.3538745e35,8.359096e35,8.364317e35,8.369538e35,8.374759e35,8.37998e35,8.385201e35,8.3904225e35,8.3956436e35,8.400865e35,8.406086e35,8.411307e35,8.416528e35,8.421749e35,8.4269704e35,8.4321915e35,8.437413e35,8.442634e35,8.447856e35,8.453077e35,8.458298e35,8.463519e35,8.46874e35,8.4739614e35,8.4791826e35,8.484404e35,8.489625e35,8.494846e35,8.500067e35,8.505288e35,8.510509e35,8.5157305e35,8.520952e35,8.526173e35,8.531394e35,8.536615e35,8.541836e35,8.547057e35,8.5522785e35,8.5574996e35,8.5627215e35,8.567943e35,8.573164e35,8.578385e35,8.583606e35,8.588827e35,8.594048e35,8.5992695e35,8.604491e35,8.609712e35,8.614933e35,8.620154e35,8.625375e35,8.630596e35,8.6358174e35,8.6410386e35,8.64626e35,8.651481e35,8.656702e35,8.661923e35,8.667144e35,8.672365e35,8.677587e35,8.6828084e35,8.6880296e35,8.693251e35,8.698472e35,8.703693e35,8.708914e35,8.714135e35,8.719356e35,8.7245775e35,8.729799e35,8.73502e35,8.740241e35,8.745462e35,8.750683e35,8.755904e35,8.7611255e35,8.766347e35,8.771568e35,8.776789e35,8.78201e35,8.787231e35,8.792452e35,8.797674e35,8.802895e35,8.8081165e35,8.813338e35,8.818559e35,8.82378e35,8.829001e35,8.834222e35,8.839443e35,8.8446644e35,8.8498856e35,8.855107e35,8.860328e35,8.865549e35,8.87077e35,8.875991e35,8.881212e35,8.8864335e35,8.891655e35,8.896876e35,8.902097e35,8.907318e35,8.91254e35,8.917761e35,8.922982e35,8.9282034e35,8.9334245e35,8.938646e35,8.943867e35,8.949088e35,8.954309e35,8.95953e35,8.964751e35,8.9699725e35,8.975194e35,8.980415e35,8.985636e35,8.990857e35,8.996078e35,9.001299e35,9.0065204e35,9.0117416e35,9.016963e35,9.022184e35,9.027406e35,9.032627e35,9.037848e35,9.043069e35,9.04829e35,9.0535115e35,9.0587326e35,9.063954e35,9.069175e35,9.074396e35,9.079617e35,9.084838e35,9.0900594e35,9.0952806e35,9.100502e35,9.105723e35,9.110944e35,9.116165e35,9.121386e35,9.126607e35,9.1318285e35,9.13705e35,9.142271e35,9.147493e35,9.152714e35,9.157935e35,9.163156e35,9.168377e35,9.173598e35,9.1788195e35,9.184041e35,9.189262e35,9.194483e35,9.199704e35,9.204925e35,9.210146e35,9.2153675e35,9.220589e35,9.22581e35,9.231031e35,9.236252e35,9.241473e35,9.246694e35,9.2519154e35,9.2571366e35,9.2623585e35,9.26758e35,9.272801e35,9.278022e35,9.283243e35,9.288464e35,9.293685e35,9.2989064e35,9.3041276e35,9.309349e35,9.31457e35,9.319791e35,9.325012e35,9.330233e35,9.335454e35,9.3406755e35,9.345897e35,9.351118e35,9.356339e35,9.36156e35,9.366781e35,9.372002e35,9.377224e35,9.3824454e35,9.3876665e35,9.392888e35,9.398109e35,9.40333e35,9.408551e35,9.413772e35,9.418993e35,9.4242145e35,9.429436e35,9.434657e35,9.439878e35,9.445099e35,9.45032e35,9.455541e35,9.4607624e35,9.4659836e35,9.471205e35,9.476426e35,9.481647e35,9.486868e35,9.492089e35,9.497311e35,9.502532e35,9.5077535e35,9.5129746e35,9.518196e35,9.523417e35,9.528638e35,9.533859e35,9.53908e35,9.5443014e35,9.5495225e35,9.554744e35,9.559965e35,9.565186e35,9.570407e35,9.575628e35,9.580849e35,9.5860705e35,9.591292e35,9.596513e35,9.601734e35,9.606955e35,9.612177e35,9.617398e35,9.622619e35,9.62784e35,9.6330615e35,9.638283e35,9.643504e35,9.648725e35,9.653946e35,9.659167e35,9.664388e35,9.6696095e35,9.6748306e35,9.680052e35,9.685273e35,9.690494e35,9.695715e35,9.700936e35,9.7061574e35,9.7113786e35,9.7166e35,9.721821e35,9.727043e35,9.732264e35,9.737485e35,9.742706e35,9.747927e35,9.7531484e35,9.7583696e35,9.763591e35,9.768812e35,9.774033e35,9.779254e35,9.784475e35,9.789696e35,9.7949175e35,9.800139e35,9.80536e35,9.810581e35,9.815802e35,9.821023e35,9.826244e35,9.8314655e35,9.836687e35,9.8419085e35,9.84713e35,9.852351e35,9.857572e35,9.862793e35,9.868014e35,9.873235e35,9.8784565e35,9.883678e35,9.888899e35,9.89412e35,9.899341e35,9.904562e35,9.909783e35,9.9150044e35,9.9202256e35,9.925447e35,9.930668e35,9.935889e35,9.94111e35,9.946331e35,9.951552e35,9.9567735e35,9.9619955e35,9.9672166e35,9.972438e35,9.977659e35,9.98288e35,9.988101e35,9.993322e35,9.9985434e35,1.00037645e36,1.0008986e36,1.0014207e36,1.0019428e36,1.0024649e36,1.002987e36,1.0035091e36,1.00403125e36,1.0045534e36,1.0050755e36,1.0055976e36,1.0061197e36,1.0066418e36,1.0071639e36,1.0076861e36,1.0082082e36,1.00873035e36,1.0092525e36,1.0097746e36,1.0102967e36,1.0108188e36,1.0113409e36,1.011863e36,1.01238515e36,1.01290726e36,1.0134294e36,1.0139515e36,1.0144736e36,1.0149957e36,1.0155178e36,1.01603994e36,1.01656205e36,1.0170842e36,1.0176063e36,1.0181284e36,1.0186505e36,1.0191727e36,1.0196948e36,1.0202169e36,1.02073904e36,1.02126116e36,1.0217833e36,1.0223054e36,1.0228275e36,1.0233496e36,1.0238717e36,1.0243938e36,1.02491595e36,1.0254381e36,1.0259602e36,1.0264823e36,1.0270044e36,1.0275265e36,1.0280486e36,1.02857075e36,1.02909286e36,1.029615e36,1.0301371e36,1.0306592e36,1.0311814e36,1.0317035e36,1.0322256e36,1.0327477e36,1.03326985e36,1.033792e36,1.0343141e36,1.0348362e36,1.0353583e36,1.0358804e36,1.0364025e36,1.03692464e36,1.03744676e36,1.0379689e36,1.038491e36,1.0390131e36,1.0395352e36,1.0400573e36,1.0405794e36,1.04110155e36,1.0416237e36,1.0421458e36,1.042668e36,1.0431901e36,1.0437122e36,1.0442343e36,1.0447564e36,1.04527854e36,1.04580065e36,1.0463228e36,1.0468449e36,1.047367e36,1.0478891e36,1.0484112e36,1.0489333e36,1.04945545e36,1.0499776e36,1.0504997e36,1.0510218e36,1.0515439e36,1.052066e36,1.0525881e36,1.05311024e36,1.05363236e36,1.05415455e36,1.0546767e36,1.0551988e36,1.0557209e36,1.056243e36,1.0567651e36,1.0572872e36,1.05780935e36,1.05833146e36,1.0588536e36,1.0593757e36,1.0598978e36,1.0604199e36,1.060942e36,1.06146414e36,1.06198625e36,1.0625084e36,1.0630305e36,1.0635526e36,1.0640747e36,1.0645968e36,1.0651189e36,1.06564105e36,1.06616324e36,1.06668536e36,1.0672075e36,1.0677296e36,1.0682517e36,1.0687738e36,1.0692959e36,1.069818e36,1.07034015e36,1.0708623e36,1.0713844e36,1.0719065e36,1.0724286e36,1.0729507e36,1.0734728e36,1.07399495e36,1.07451706e36,1.0750392e36,1.0755613e36,1.0760834e36,1.0766055e36,1.0771276e36,1.0776498e36,1.0781719e36,1.07869405e36,1.0792162e36,1.0797383e36,1.0802604e36,1.0807825e36,1.0813046e36,1.0818267e36,1.08234884e36,1.08287096e36,1.0833931e36,1.0839152e36,1.0844373e36,1.0849594e36,1.0854815e36,1.0860036e36,1.08652575e36,1.0870479e36,1.08757e36,1.0880921e36,1.0886142e36,1.0891364e36,1.0896585e36,1.0901806e36,1.0907027e36,1.09122485e36,1.091747e36,1.0922691e36,1.0927912e36,1.0933133e36,1.0938354e36,1.0943575e36,1.09487965e36,1.0954018e36,1.0959239e36,1.096446e36,1.0969681e36,1.0974902e36,1.0980123e36,1.09853444e36,1.09905656e36,1.0995787e36,1.1001008e36,1.1006229e36,1.1011451e36,1.1016672e36,1.1021893e36,1.1027114e36,1.10323354e36,1.10375566e36,1.1042778e36,1.1047999e36,1.105322e36,1.1058441e36,1.1063662e36,1.1068883e36,1.10741045e36,1.1079326e36,1.1084547e36,1.1089768e36,1.1094989e36,1.110021e36,1.1105431e36,1.11106525e36,1.1115874e36,1.1121095e36,1.1126317e36,1.1131538e36,1.1136759e36,1.114198e36,1.1147201e36,1.1152422e36,1.11576435e36,1.1162865e36,1.1168086e36,1.1173307e36,1.1178528e36,1.1183749e36,1.118897e36,1.11941914e36,1.11994126e36,1.1204634e36,1.1209855e36,1.1215076e36,1.1220297e36,1.1225518e36,1.12307394e36,1.12359605e36,1.12411825e36,1.12464036e36,1.1251625e36,1.1256846e36,1.1262067e36,1.1267288e36,1.1272509e36,1.12777304e36,1.12829516e36,1.1288173e36,1.1293394e36,1.1298615e36,1.1303836e36,1.1309057e36,1.1314278e36,1.13194995e36,1.1324721e36,1.1329942e36,1.1335163e36,1.1340384e36,1.1345605e36,1.1350826e36,1.1356048e36,1.1361269e36,1.13664905e36,1.1371712e36,1.1376933e36,1.1382154e36,1.1387375e36,1.1392596e36,1.1397817e36,1.14030385e36,1.140826e36,1.1413481e36,1.1418702e36,1.1423923e36,1.1429144e36,1.1434365e36,1.14395864e36,1.14448076e36,1.1450029e36,1.145525e36,1.1460471e36,1.1465692e36,1.1470913e36,1.1476135e36,1.1481356e36,1.14865774e36,1.14917986e36,1.149702e36,1.1502241e36,1.1507462e36,1.1512683e36,1.1517904e36,1.1523125e36,1.15283465e36,1.1533568e36,1.1538789e36,1.154401e36,1.1549231e36,1.1554452e36,1.1559673e36,1.15648945e36,1.1570116e36,1.1575337e36,1.1580558e36,1.1585779e36,1.1591001e36,1.1596222e36,1.1601443e36,1.1606664e36,1.16118855e36,1.1617107e36,1.1622328e36,1.1627549e36,1.163277e36,1.1637991e36,1.1643212e36,1.16484334e36,1.16536546e36,1.1658876e36,1.1664097e36,1.1669318e36,1.1674539e36,1.167976e36,1.1684981e36,1.16902025e36,1.1695424e36,1.1700645e36,1.1705867e36,1.1711088e36,1.1716309e36,1.172153e36,1.1726751e36,1.17319724e36,1.17371935e36,1.1742415e36,1.1747636e36,1.1752857e36,1.1758078e36,1.1763299e36,1.176852e36,1.17737415e36,1.1778963e36,1.1784184e36,1.1789405e36,1.1794626e36,1.1799847e36,1.1805068e36,1.18102894e36,1.18155106e36,1.1820732e36,1.1825954e36,1.1831175e36,1.1836396e36,1.1841617e36,1.1846838e36,1.1852059e36,1.18572805e36,1.18625016e36,1.1867723e36,1.1872944e36,1.1878165e36,1.1883386e36,1.1888607e36,1.18938284e36,1.18990496e36,1.1904271e36,1.1909492e36,1.1914713e36,1.1919934e36,1.1925155e36,1.1930376e36,1.19355975e36,1.19408194e36,1.19460406e36,1.1951262e36,1.1956483e36,1.1961704e36,1.1966925e36,1.1972146e36,1.1977367e36,1.19825885e36,1.198781e36,1.1993031e36,1.1998252e36,1.2003473e36,1.2008694e36,1.2013915e36,1.20191365e36,1.2024358e36,1.2029579e36,1.20348e36,1.2040021e36,1.2045242e36,1.2050463e36,1.2055685e36,1.2060906e36,1.20661275e36,1.2071349e36,1.207657e36,1.2081791e36,1.2087012e36,1.2092233e36,1.2097454e36,1.21026754e36,1.21078966e36,1.2113118e36,1.2118339e36,1.212356e36,1.2128781e36,1.2134002e36,1.2139223e36,1.21444445e36,1.2149666e36,1.2154887e36,1.2160108e36,1.2165329e36,1.217055e36,1.2175772e36,1.2180993e36,1.21862144e36,1.21914355e36,1.2196657e36,1.2201878e36,1.2207099e36,1.221232e36,1.2217541e36,1.2222762e36,1.22279835e36,1.2233205e36,1.2238426e36,1.2243647e36,1.2248868e36,1.2254089e36,1.225931e36,1.22645314e36,1.22697526e36,1.2274974e36,1.2280195e36,1.2285416e36,1.2290638e36,1.2295859e36,1.230108e36,1.2306301e36,1.23115225e36,1.23167436e36,1.2321965e36,1.2327186e36,1.2332407e36,1.2337628e36,1.2342849e36,1.23480704e36,1.23532915e36,1.2358513e36,1.2363734e36,1.2368955e36,1.2374176e36,1.2379397e36,1.2384618e36,1.23898395e36,1.2395061e36,1.2400282e36,1.2405504e36,1.2410725e36,1.2415946e36,1.2421167e36,1.2426388e36,1.2431609e36,1.24368305e36,1.2442052e36,1.2447273e36,1.2452494e36,1.2457715e36,1.2462936e36,1.2468157e36,1.24733785e36,1.24785996e36,1.2483821e36,1.2489042e36,1.2494263e36,1.2499484e36,1.2504705e36,1.25099264e36,1.25151475e36,1.2520369e36,1.2525591e36,1.2530812e36,1.2536033e36,1.2541254e36,1.2546475e36,1.2551696e36,1.25569174e36,1.25621386e36,1.256736e36,1.2572581e36,1.2577802e36,1.2583023e36,1.2588244e36,1.2593465e36,1.25986865e36,1.2603908e36,1.2609129e36,1.261435e36,1.2619571e36,1.2624792e36,1.2630013e36,1.26352345e36,1.2640456e36,1.26456775e36,1.2650899e36,1.265612e36,1.2661341e36,1.2666562e36,1.2671783e36,1.2677004e36,1.26822255e36,1.2687447e36,1.2692668e36,1.2697889e36,1.270311e36,1.2708331e36,1.2713552e36,1.27187734e36,1.27239946e36,1.2729216e36,1.2734437e36,1.2739658e36,1.2744879e36,1.27501e36,1.2755322e36,1.2760543e36,1.27657645e36,1.27709856e36,1.2776207e36,1.2781428e36,1.2786649e36,1.279187e36,1.2797091e36,1.28023124e36,1.28075335e36,1.2812755e36,1.2817976e36,1.2823197e36,1.2828418e36,1.2833639e36,1.283886e36,1.28440815e36,1.2849303e36,1.2854524e36,1.2859745e36,1.2864966e36,1.2870188e36,1.2875409e36,1.288063e36,1.2885851e36,1.28910725e36,1.2896294e36,1.2901515e36,1.2906736e36,1.2911957e36,1.2917178e36,1.2922399e36,1.29276205e36,1.29328416e36,1.2938063e36,1.2943284e36,1.2948505e36,1.2953726e36,1.2958947e36,1.29641684e36,1.29693895e36,1.2974611e36,1.2979832e36,1.2985053e36,1.2990275e36,1.2995496e36,1.3000717e36,1.3005938e36,1.30111594e36,1.30163806e36,1.3021602e36,1.3026823e36,1.3032044e36,1.3037265e36,1.3042486e36,1.3047707e36,1.30529285e36,1.305815e36,1.3063371e36,1.3068592e36,1.3073813e36,1.3079034e36,1.3084255e36,1.30894765e36,1.30946976e36,1.3099919e36,1.3105141e36,1.3110362e36,1.3115583e36,1.3120804e36,1.3126025e36,1.3131246e36,1.31364675e36,1.3141689e36,1.314691e36,1.3152131e36,1.3157352e36,1.3162573e36,1.3167794e36,1.31730154e36,1.31782366e36,1.3183458e36,1.3188679e36,1.31939e36,1.3199121e36,1.3204342e36,1.3209563e36,1.32147845e36,1.32200064e36,1.32252276e36,1.3230449e36,1.323567e36,1.3240891e36,1.3246112e36,1.3251333e36,1.3256554e36,1.32617755e36,1.3266997e36,1.3272218e36,1.3277439e36,1.328266e36,1.3287881e36,1.3293102e36,1.3298323e36,1.3303545e36,1.3308766e36,1.3313987e36,1.3319208e36,1.3324429e36,1.332965e36,1.3334871e36,1.3340093e36,1.3345314e36,1.3350535e36,1.3355756e36,1.3360977e36,1.3366198e36,1.337142e36,1.337664e36,1.3381862e36,1.3387083e36,1.3392304e36,1.3397527e36,1.3402748e36,1.3407969e36,1.341319e36,1.3418411e36,1.3423632e36,1.3428853e36,1.3434075e36,1.3439296e36,1.3444517e36,1.3449738e36,1.3454959e36,1.346018e36,1.3465401e36,1.3470623e36,1.3475844e36,1.3481065e36,1.3486286e36,1.3491507e36,1.3496728e36,1.350195e36,1.350717e36,1.3512392e36,1.3517613e36,1.3522834e36,1.3528055e36,1.3533276e36,1.3538497e36,1.3543718e36,1.354894e36,1.355416e36,1.3559382e36,1.3564603e36,1.3569824e36,1.3575045e36,1.3580266e36,1.3585488e36,1.3590709e36,1.359593e36,1.3601151e36,1.3606372e36,1.3611593e36,1.3616814e36,1.3622035e36,1.3627258e36,1.363248e36,1.36377e36,1.3642922e36,1.3648143e36,1.3653364e36,1.3658585e36,1.3663806e36,1.3669027e36,1.3674248e36,1.367947e36,1.368469e36,1.3689912e36,1.3695133e36,1.3700354e36,1.3705575e36,1.3710796e36,1.3716018e36,1.3721239e36,1.372646e36,1.3731681e36,1.3736902e36,1.3742123e36,1.3747344e36,1.3752565e36,1.3757787e36,1.3763008e36,1.3768229e36,1.377345e36,1.3778671e36,1.3783892e36,1.3789113e36,1.3794335e36,1.3799556e36,1.3804777e36,1.3809998e36,1.3815219e36,1.382044e36,1.3825661e36,1.3830883e36,1.3836104e36,1.3841325e36,1.3846546e36,1.3851767e36,1.3856988e36,1.3862211e36,1.3867432e36,1.3872653e36,1.3877874e36,1.3883095e36,1.3888317e36,1.3893538e36,1.3898759e36,1.390398e36,1.3909201e36,1.3914422e36,1.3919643e36,1.3924865e36,1.3930086e36,1.3935307e36,1.3940528e36,1.3945749e36,1.395097e36,1.3956191e36,1.3961412e36,1.3966634e36,1.3971855e36,1.3977076e36,1.3982297e36,1.3987518e36,1.399274e36,1.399796e36,1.4003182e36,1.4008403e36,1.4013624e36,1.4018845e36,1.4024066e36,1.4029287e36,1.4034508e36,1.403973e36,1.404495e36,1.4050172e36,1.4055393e36,1.4060614e36,1.4065835e36,1.4071056e36,1.4076277e36,1.4081499e36,1.408672e36,1.4091941e36,1.4097164e36,1.4102385e36,1.4107606e36,1.4112827e36,1.4118048e36,1.412327e36,1.412849e36,1.4133712e36,1.4138933e36,1.4144154e36,1.4149375e36,1.4154596e36,1.4159817e36,1.4165038e36,1.417026e36,1.417548e36,1.4180702e36,1.4185923e36,1.4191144e36,1.4196365e36,1.4201586e36,1.4206807e36,1.4212029e36,1.421725e36,1.4222471e36,1.4227692e36,1.4232913e36,1.4238134e36,1.4243355e36,1.4248577e36,1.4253798e36,1.4259019e36,1.426424e36,1.4269461e36,1.4274682e36,1.4279903e36,1.4285125e36,1.4290346e36,1.4295567e36,1.4300788e36,1.4306009e36,1.431123e36,1.4316451e36,1.4321672e36,1.4326895e36,1.4332116e36,1.4337337e36,1.4342559e36,1.434778e36,1.4353001e36,1.4358222e36,1.4363443e36,1.4368664e36,1.4373885e36,1.4379107e36,1.4384328e36,1.4389549e36,1.439477e36,1.4399991e36,1.4405212e36,1.4410433e36,1.4415654e36,1.4420876e36,1.4426097e36,1.4431318e36,1.4436539e36,1.444176e36,1.4446981e36,1.4452202e36,1.4457424e36,1.4462645e36,1.4467866e36,1.4473087e36,1.4478308e36,1.448353e36,1.448875e36,1.4493972e36,1.4499193e36,1.4504414e36,1.4509635e36,1.4514856e36,1.4520077e36,1.4525298e36,1.453052e36,1.453574e36,1.4540962e36,1.4546183e36,1.4551404e36,1.4556625e36,1.4561848e36,1.4567069e36,1.457229e36,1.4577511e36,1.4582732e36,1.4587954e36,1.4593175e36,1.4598396e36,1.4603617e36,1.4608838e36,1.461406e36,1.461928e36,1.4624502e36,1.4629723e36,1.4634944e36,1.4640165e36,1.4645386e36,1.4650607e36,1.4655828e36,1.466105e36,1.466627e36,1.4671492e36,1.4676713e36,1.4681934e36,1.4687155e36,1.4692376e36,1.4697597e36,1.4702819e36,1.470804e36,1.4713261e36,1.4718482e36,1.4723703e36,1.4728924e36,1.4734145e36,1.4739367e36,1.4744588e36,1.4749809e36,1.475503e36,1.4760251e36,1.4765472e36,1.4770693e36,1.4775914e36,1.4781136e36,1.4786357e36,1.4791578e36,1.47968e36,1.4802022e36,1.4807243e36,1.4812464e36,1.4817685e36,1.4822906e36,1.4828127e36,1.4833349e36,1.483857e36,1.4843791e36,1.4849012e36,1.4854233e36,1.4859454e36,1.4864675e36,1.4869896e36,1.4875118e36,1.4880339e36,1.488556e36,1.4890781e36,1.4896002e36,1.4901223e36,1.4906444e36,1.4911666e36,1.4916887e36,1.4922108e36,1.4927329e36,1.493255e36,1.4937771e36,1.4942992e36,1.4948214e36,1.4953435e36,1.4958656e36,1.4963877e36,1.4969098e36,1.4974319e36,1.497954e36,1.4984761e36,1.4989983e36,1.4995204e36,1.5000425e36,1.5005646e36,1.5010867e36,1.5016088e36,1.502131e36,1.5026532e36,1.5031753e36,1.5036974e36,1.5042196e36,1.5047417e36,1.5052638e36,1.5057859e36,1.506308e36,1.5068301e36,1.5073522e36,1.5078744e36,1.5083965e36,1.5089186e36,1.5094407e36,1.5099628e36,1.5104849e36,1.511007e36,1.5115291e36,1.5120513e36,1.5125734e36,1.5130955e36,1.5136176e36,1.5141397e36,1.5146618e36,1.515184e36,1.515706e36,1.5162282e36,1.5167503e36,1.5172724e36,1.5177945e36,1.5183166e36,1.5188387e36,1.5193608e36,1.519883e36,1.520405e36,1.5209272e36,1.5214493e36,1.5219714e36,1.5224935e36,1.5230156e36,1.5235378e36,1.5240599e36,1.524582e36,1.5251041e36,1.5256262e36,1.5261485e36,1.5266706e36,1.5271927e36,1.5277148e36,1.528237e36,1.528759e36,1.5292812e36,1.5298033e36,1.5303254e36,1.5308475e36,1.5313696e36,1.5318917e36,1.5324138e36,1.532936e36,1.533458e36,1.5339802e36,1.5345023e36,1.5350244e36,1.5355465e36,1.5360686e36,1.5365908e36,1.5371129e36,1.537635e36,1.5381571e36,1.5386792e36,1.5392013e36,1.5397234e36,1.5402456e36,1.5407677e36,1.5412898e36,1.5418119e36,1.542334e36,1.5428561e36,1.5433782e36,1.5439003e36,1.5444225e36,1.5449446e36,1.5454667e36,1.5459888e36,1.5465109e36,1.547033e36,1.5475551e36,1.5480773e36,1.5485994e36,1.5491216e36,1.5496438e36,1.5501659e36,1.550688e36,1.5512101e36,1.5517322e36,1.5522543e36,1.5527764e36,1.5532985e36,1.5538207e36,1.5543428e36,1.5548649e36,1.555387e36,1.5559091e36,1.5564312e36,1.5569533e36,1.5574755e36,1.5579976e36,1.5585197e36,1.5590418e36,1.5595639e36,1.560086e36,1.5606081e36,1.5611303e36,1.5616524e36,1.5621745e36,1.5626966e36,1.5632187e36,1.5637408e36,1.564263e36,1.564785e36,1.5653072e36,1.5658293e36,1.5663514e36,1.5668735e36,1.5673956e36,1.5679177e36,1.5684398e36,1.568962e36,1.569484e36,1.5700062e36,1.5705283e36,1.5710504e36,1.5715725e36,1.5720946e36,1.5726169e36,1.573139e36,1.5736611e36,1.5741833e36,1.5747054e36,1.5752275e36,1.5757496e36,1.5762717e36,1.5767938e36,1.577316e36,1.577838e36,1.5783602e36,1.5788823e36,1.5794044e36,1.5799265e36,1.5804486e36,1.5809707e36,1.5814928e36,1.582015e36,1.582537e36,1.5830592e36,1.5835813e36,1.5841034e36,1.5846255e36,1.5851476e36,1.5856698e36,1.5861919e36,1.586714e36,1.5872361e36,1.5877582e36,1.5882803e36,1.5888024e36,1.5893245e36,1.5898467e36,1.5903688e36,1.5908909e36,1.591413e36,1.5919351e36,1.5924572e36,1.5929793e36,1.5935015e36,1.5940236e36,1.5945457e36,1.5950678e36,1.5955899e36,1.5961122e36,1.5966343e36,1.5971564e36,1.5976785e36,1.5982006e36,1.5987227e36,1.5992449e36,1.599767e36,1.6002891e36,1.6008112e36,1.6013333e36,1.6018554e36,1.6023775e36,1.6028997e36,1.6034218e36,1.6039439e36,1.604466e36,1.6049881e36,1.6055102e36,1.6060323e36,1.6065545e36,1.6070766e36,1.6075987e36,1.6081208e36,1.6086429e36,1.609165e36,1.6096871e36,1.6102092e36,1.6107314e36,1.6112535e36,1.6117756e36,1.6122977e36,1.6128198e36,1.613342e36,1.613864e36,1.6143862e36,1.6149083e36,1.6154304e36,1.6159525e36,1.6164746e36,1.6169967e36,1.6175188e36,1.618041e36,1.618563e36,1.6190853e36,1.6196075e36,1.6201296e36,1.6206517e36,1.6211738e36,1.6216959e36,1.622218e36,1.6227401e36,1.6232622e36,1.6237844e36,1.6243065e36,1.6248286e36,1.6253507e36,1.6258728e36,1.626395e36,1.626917e36,1.6274392e36,1.6279613e36,1.6284834e36,1.6290055e36,1.6295276e36,1.6300497e36,1.6305718e36,1.631094e36,1.631616e36,1.6321382e36,1.6326603e36,1.6331824e36,1.6337045e36,1.6342266e36,1.6347487e36,1.6352709e36,1.635793e36,1.6363151e36,1.6368372e36,1.6373593e36,1.6378814e36,1.6384035e36,1.6389257e36,1.6394478e36,1.6399699e36,1.640492e36,1.6410141e36,1.6415362e36,1.6420583e36,1.6425806e36,1.6431027e36,1.6436248e36,1.644147e36,1.644669e36,1.6451912e36,1.6457133e36,1.6462354e36,1.6467575e36,1.6472796e36,1.6478017e36,1.6483239e36,1.648846e36,1.6493681e36,1.6498902e36,1.6504123e36,1.6509344e36,1.6514565e36,1.6519787e36,1.6525008e36,1.6530229e36,1.653545e36,1.6540671e36,1.6545892e36,1.6551113e36,1.6556334e36,1.6561556e36,1.6566777e36,1.6571998e36,1.6577219e36,1.658244e36,1.6587661e36,1.6592882e36,1.6598104e36,1.6603325e36,1.6608546e36,1.6613767e36,1.6618988e36,1.662421e36,1.662943e36,1.6634652e36,1.6639873e36,1.6645094e36,1.6650315e36,1.6655538e36,1.6660759e36,1.666598e36,1.6671201e36,1.6676422e36,1.6681643e36,1.6686864e36,1.6692086e36,1.6697307e36,1.6702528e36,1.6707749e36,1.671297e36,1.6718191e36,1.6723412e36,1.6728634e36,1.6733855e36,1.6739076e36,1.6744297e36,1.6749518e36,1.675474e36,1.675996e36,1.6765181e36,1.6770403e36,1.6775624e36,1.6780845e36,1.6786066e36,1.6791287e36,1.6796508e36,1.680173e36,1.680695e36,1.6812172e36,1.6817393e36,1.6822614e36,1.6827835e36,1.6833056e36,1.6838277e36,1.6843499e36,1.684872e36,1.6853941e36,1.6859162e36,1.6864383e36,1.6869604e36,1.6874825e36,1.6880046e36,1.6885268e36,1.689049e36,1.6895711e36,1.6900933e36,1.6906154e36,1.6911375e36,1.6916596e36,1.6921817e36,1.6927038e36,1.693226e36,1.693748e36,1.6942702e36,1.6947923e36,1.6953144e36,1.6958365e36,1.6963586e36,1.6968807e36,1.6974029e36,1.697925e36,1.698447e36,1.6989692e36,1.6994913e36,1.7000134e36,1.7005355e36,1.7010576e36,1.7015798e36,1.7021019e36,1.702624e36,1.7031461e36,1.7036682e36,1.7041903e36,1.7047124e36,1.7052346e36,1.7057567e36,1.7062788e36,1.7068009e36,1.707323e36,1.7078451e36,1.7083672e36,1.7088894e36,1.7094115e36,1.7099336e36,1.7104557e36,1.7109778e36,1.7114999e36,1.712022e36,1.7125443e36,1.7130664e36,1.7135885e36,1.7141106e36,1.7146328e36,1.7151549e36,1.715677e36,1.7161991e36,1.7167212e36,1.7172433e36,1.7177654e36,1.7182876e36,1.7188097e36,1.7193318e36,1.7198539e36,1.720376e36,1.7208981e36,1.7214202e36,1.7219423e36,1.7224645e36,1.7229866e36,1.7235087e36,1.7240308e36,1.7245529e36,1.725075e36,1.7255971e36,1.7261193e36,1.7266414e36,1.7271635e36,1.7276856e36,1.7282077e36,1.7287298e36,1.729252e36,1.729774e36,1.7302962e36,1.7308183e36,1.7313404e36,1.7318625e36,1.7323846e36,1.7329067e36,1.7334288e36,1.733951e36,1.734473e36,1.7349952e36,1.7355175e36,1.7360396e36,1.7365617e36,1.7370838e36,1.7376059e36,1.738128e36,1.7386501e36,1.7391723e36,1.7396944e36,1.7402165e36,1.7407386e36,1.7412607e36,1.7417828e36,1.742305e36,1.742827e36,1.7433492e36,1.7438713e36,1.7443934e36,1.7449155e36,1.7454376e36,1.7459597e36,1.7464818e36,1.747004e36,1.747526e36,1.7480482e36,1.7485703e36,1.7490924e36,1.7496145e36,1.7501366e36,1.7506588e36,1.7511809e36,1.751703e36,1.7522251e36,1.7527472e36,1.7532693e36,1.7537914e36,1.7543135e36,1.7548357e36,1.7553578e36,1.7558799e36,1.756402e36,1.7569241e36,1.7574462e36,1.7579683e36,1.7584905e36,1.7590127e36,1.7595348e36,1.760057e36,1.760579e36,1.7611012e36,1.7616233e36,1.7621454e36,1.7626675e36,1.7631896e36,1.7637118e36,1.7642339e36,1.764756e36,1.7652781e36,1.7658002e36,1.7663223e36,1.7668444e36,1.7673665e36,1.7678887e36,1.7684108e36,1.7689329e36,1.769455e36,1.7699771e36,1.7704992e36,1.7710213e36,1.7715435e36,1.7720656e36,1.7725877e36,1.7731098e36,1.7736319e36,1.774154e36,1.7746761e36,1.7751983e36,1.7757204e36,1.7762425e36,1.7767646e36,1.7772867e36,1.7778088e36,1.778331e36,1.778853e36,1.7793752e36,1.7798973e36,1.7804194e36,1.7809415e36,1.7814636e36,1.7819857e36,1.782508e36,1.7830301e36,1.7835522e36,1.7840743e36,1.7845965e36,1.7851186e36,1.7856407e36,1.7861628e36,1.7866849e36,1.787207e36,1.7877291e36,1.7882513e36,1.7887734e36,1.7892955e36,1.7898176e36,1.7903397e36,1.7908618e36,1.791384e36,1.791906e36,1.7924282e36,1.7929503e36,1.7934724e36,1.7939945e36,1.7945166e36,1.7950387e36,1.7955608e36,1.796083e36,1.796605e36,1.7971272e36,1.7976493e36,1.7981714e36,1.7986935e36,1.7992156e36,1.7997377e36,1.8002599e36,1.800782e36,1.8013041e36,1.8018262e36,1.8023483e36,1.8028704e36,1.8033925e36,1.8039147e36,1.8044368e36,1.8049589e36,1.8054812e36,1.8060033e36,1.8065254e36,1.8070475e36,1.8075696e36,1.8080917e36,1.8086138e36,1.809136e36,1.809658e36,1.8101802e36,1.8107023e36,1.8112244e36,1.8117465e36,1.8122686e36,1.8127907e36,1.8133129e36,1.813835e36,1.8143571e36,1.8148792e36,1.8154013e36,1.8159234e36,1.8164455e36,1.8169677e36,1.8174898e36,1.8180119e36,1.818534e36,1.8190561e36,1.8195782e36,1.8201003e36,1.8206225e36,1.8211446e36,1.8216667e36,1.8221888e36,1.8227109e36,1.823233e36,1.8237551e36,1.8242772e36,1.8247994e36,1.8253215e36,1.8258436e36,1.8263657e36,1.8268878e36,1.82741e36,1.827932e36,1.8284542e36,1.8289764e36,1.8294985e36,1.8300207e36,1.8305428e36,1.8310649e36,1.831587e36,1.8321091e36,1.8326312e36,1.8331533e36,1.8336754e36,1.8341976e36,1.8347197e36,1.8352418e36,1.8357639e36,1.836286e36,1.8368081e36,1.8373302e36,1.8378524e36,1.8383745e36,1.8388966e36,1.8394187e36,1.8399408e36,1.840463e36,1.840985e36,1.8415072e36,1.8420293e36,1.8425514e36,1.8430735e36,1.8435956e36,1.8441177e36,1.8446398e36,1.845162e36,1.845684e36,1.8462062e36,1.8467283e36,1.8472504e36,1.8477725e36,1.8482946e36,1.8488167e36,1.8493389e36,1.849861e36,1.8503831e36,1.8509052e36,1.8514273e36,1.8519496e36,1.8524717e36,1.8529938e36,1.853516e36,1.854038e36,1.8545602e36,1.8550823e36,1.8556044e36,1.8561265e36,1.8566486e36,1.8571707e36,1.8576928e36,1.858215e36,1.858737e36,1.8592592e36,1.8597813e36,1.8603034e36,1.8608255e36,1.8613476e36,1.8618697e36,1.8623919e36,1.862914e36,1.8634361e36,1.8639582e36,1.8644803e36,1.8650024e36,1.8655245e36,1.8660467e36,1.8665688e36,1.8670909e36,1.867613e36,1.8681351e36,1.8686572e36,1.8691793e36,1.8697014e36,1.8702236e36,1.8707457e36,1.8712678e36,1.8717899e36,1.872312e36,1.8728341e36,1.8733562e36,1.8738784e36,1.8744005e36,1.8749226e36,1.8754449e36,1.875967e36,1.8764891e36,1.8770112e36,1.8775333e36,1.8780554e36,1.8785775e36,1.8790996e36,1.8796218e36,1.8801439e36,1.880666e36,1.8811881e36,1.8817102e36,1.8822323e36,1.8827544e36,1.8832766e36,1.8837987e36,1.8843208e36,1.8848429e36,1.885365e36,1.8858871e36,1.8864092e36,1.8869314e36,1.8874535e36,1.8879756e36,1.8884977e36,1.8890198e36,1.8895419e36,1.890064e36,1.8905861e36,1.8911083e36,1.8916304e36,1.8921525e36,1.8926746e36,1.8931967e36,1.8937188e36,1.894241e36,1.894763e36,1.8952852e36,1.8958073e36,1.8963294e36,1.8968515e36,1.8973736e36,1.8978957e36,1.8984179e36,1.8989401e36,1.8994622e36,1.8999844e36,1.9005065e36,1.9010286e36,1.9015507e36,1.9020728e36,1.9025949e36,1.903117e36,1.9036391e36,1.9041613e36,1.9046834e36,1.9052055e36,1.9057276e36,1.9062497e36,1.9067718e36,1.907294e36,1.907816e36,1.9083382e36,1.9088603e36,1.9093824e36,1.9099045e36,1.9104266e36,1.9109487e36,1.9114708e36,1.911993e36,1.912515e36,1.9130372e36,1.9135593e36,1.9140814e36,1.9146035e36,1.9151256e36,1.9156478e36,1.9161699e36,1.916692e36,1.9172141e36,1.9177362e36,1.9182583e36,1.9187804e36,1.9193026e36,1.9198247e36,1.9203468e36,1.9208689e36,1.921391e36,1.9219133e36,1.9224354e36,1.9229575e36,1.9234796e36,1.9240017e36,1.9245238e36,1.925046e36,1.925568e36,1.9260902e36,1.9266123e36,1.9271344e36,1.9276565e36,1.9281786e36,1.9287008e36,1.9292229e36,1.929745e36,1.9302671e36,1.9307892e36,1.9313113e36,1.9318334e36,1.9323556e36,1.9328777e36,1.9333998e36,1.9339219e36,1.934444e36,1.9349661e36,1.9354882e36,1.9360103e36,1.9365325e36,1.9370546e36,1.9375767e36,1.9380988e36,1.9386209e36,1.939143e36,1.9396651e36,1.9401873e36,1.9407094e36,1.9412315e36,1.9417536e36,1.9422757e36,1.9427978e36,1.94332e36,1.943842e36,1.9443642e36,1.9448863e36,1.9454086e36,1.9459307e36,1.9464528e36,1.9469749e36,1.947497e36,1.9480191e36,1.9485412e36,1.9490633e36,1.9495855e36,1.9501076e36,1.9506297e36,1.9511518e36,1.9516739e36,1.952196e36,1.9527181e36,1.9532403e36,1.9537624e36,1.9542845e36,1.9548066e36,1.9553287e36,1.9558508e36,1.956373e36,1.956895e36,1.9574172e36,1.9579393e36,1.9584614e36,1.9589835e36,1.9595056e36,1.9600277e36,1.9605498e36,1.961072e36,1.961594e36,1.9621162e36,1.9626383e36,1.9631604e36,1.9636825e36,1.9642046e36,1.9647268e36,1.9652489e36,1.965771e36,1.9662931e36,1.9668152e36,1.9673373e36,1.9678594e36,1.9683817e36,1.9689038e36,1.969426e36,1.969948e36,1.9704702e36,1.9709923e36,1.9715144e36,1.9720365e36,1.9725586e36,1.9730807e36,1.9736028e36,1.974125e36,1.974647e36,1.9751692e36,1.9756913e36,1.9762134e36,1.9767355e36,1.9772576e36,1.9777798e36,1.9783019e36,1.978824e36,1.9793461e36,1.9798682e36,1.9803903e36,1.9809124e36,1.9814345e36,1.9819567e36,1.9824788e36,1.9830009e36,1.983523e36,1.9840451e36,1.9845672e36,1.9850893e36,1.9856115e36,1.9861336e36,1.9866557e36,1.9871778e36,1.9876999e36,1.988222e36,1.9887441e36,1.9892663e36,1.9897884e36,1.9903105e36,1.9908326e36,1.9913547e36,1.991877e36,1.9923991e36,1.9929212e36,1.9934433e36,1.9939654e36,1.9944875e36,1.9950097e36,1.9955318e36,1.9960539e36,1.996576e36,1.9970981e36,1.9976202e36,1.9981423e36,1.9986645e36,1.9991866e36,1.9997087e36,2.0002308e36,2.0007529e36,2.001275e36,2.0017971e36,2.0023192e36,2.0028414e36,2.0033635e36,2.0038856e36,2.0044077e36,2.0049298e36,2.005452e36,2.005974e36,2.0064962e36,2.0070183e36,2.0075404e36,2.0080625e36,2.0085846e36,2.0091067e36,2.0096288e36,2.010151e36,2.010673e36,2.0111952e36,2.0117173e36,2.0122394e36,2.0127615e36,2.0132836e36,2.0138057e36,2.0143279e36,2.01485e36,2.0153722e36,2.0158944e36,2.0164165e36,2.0169386e36,2.0174607e36,2.0179828e36,2.018505e36,2.019027e36,2.0195492e36,2.0200713e36,2.0205934e36,2.0211155e36,2.0216376e36,2.0221597e36,2.0226818e36,2.023204e36,2.023726e36,2.0242482e36,2.0247703e36,2.0252924e36,2.0258145e36,2.0263366e36,2.0268587e36,2.0273809e36,2.027903e36,2.0284251e36,2.0289472e36,2.0294693e36,2.0299914e36,2.0305135e36,2.0310357e36,2.0315578e36,2.0320799e36,2.032602e36,2.0331241e36,2.0336462e36,2.0341683e36,2.0346904e36,2.0352126e36,2.0357347e36,2.0362568e36,2.0367789e36,2.037301e36,2.0378231e36,2.0383454e36,2.0388675e36,2.0393896e36,2.0399117e36,2.0404339e36,2.040956e36,2.0414781e36,2.0420002e36,2.0425223e36,2.0430444e36,2.0435665e36,2.0440887e36,2.0446108e36,2.0451329e36,2.045655e36,2.0461771e36,2.0466992e36,2.0472213e36,2.0477434e36,2.0482656e36,2.0487877e36,2.0493098e36,2.0498319e36,2.050354e36,2.0508761e36,2.0513982e36,2.0519204e36,2.0524425e36,2.0529646e36,2.0534867e36,2.0540088e36,2.054531e36,2.055053e36,2.0555752e36,2.0560973e36,2.0566194e36,2.0571415e36,2.0576636e36,2.0581857e36,2.0587078e36,2.05923e36,2.059752e36,2.0602742e36,2.0607963e36,2.0613184e36,2.0618407e36,2.0623628e36,2.0628849e36,2.063407e36,2.0639291e36,2.0644512e36,2.0649734e36,2.0654955e36,2.0660176e36,2.0665397e36,2.0670618e36,2.067584e36,2.068106e36,2.0686282e36,2.0691503e36,2.0696724e36,2.0701945e36,2.0707166e36,2.0712387e36,2.0717608e36,2.072283e36,2.072805e36,2.0733272e36,2.0738493e36,2.0743714e36,2.0748935e36,2.0754156e36,2.0759377e36,2.0764599e36,2.076982e36,2.0775041e36,2.0780262e36,2.0785483e36,2.0790704e36,2.0795925e36,2.0801146e36,2.0806368e36,2.0811589e36,2.081681e36,2.0822031e36,2.0827252e36,2.0832473e36,2.0837694e36,2.0842916e36,2.0848137e36,2.085336e36,2.085858e36,2.0863802e36,2.0869023e36,2.0874244e36,2.0879465e36]}
diff --git a/lib/node_modules/@stdlib/math/base/special/covercosf/test/fixtures/julia/large_negative.json b/lib/node_modules/@stdlib/math/base/special/covercosf/test/fixtures/julia/large_negative.json
new file mode 100644
index 000000000000..f4a8679434f7
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/covercosf/test/fixtures/julia/large_negative.json
@@ -0,0 +1 @@
+{"expected":[0.9541813,1.9940387,1.2167554,0.053225935,0.5767956,1.1553746,1.6095309,1.0624423,0.23312455,0.72270983,1.3069754,1.4789535,0.033573687,1.8516784,0.8753592,1.8054541,0.015644848,1.5498631,0.46716684,1.9805846,1.5843077,1.186353,0.15911072,1.9714322,0.50336516,0.7123635,1.8926694,0.4675064,0.75266224,1.8730426,0.045282125,1.4414684,1.3468786,0.08092904,1.9185516,1.3073572,0.09821153,1.9342774,0.6154211,0.5952331,1.948369,0.1079244,0.63382286,1.4977766,0.08980936,1.8401763,1.4610755,0.073286355,1.862118,1.4235679,0.44903827,1.8825516,0.19532645,0.4844154,1.9014413,0.17120439,0.5206944,1.6019965,0.14853197,1.7660303,1.5680814,0.31813556,1.7922387,1.5331726,0.34931815,1.8170613,0.27560282,0.38163888,1.726209,0.2474103,0.41504127,1.6968277,0.22053427,1.679937,1.6662275,0.23228067,1.7100034,1.6344619,0.25974613,1.738828,1.6015865,0.2885064,1.8062334,0.11621398,0.31851125,1.780791,0.13655144,0.34970814,1.7539829,0.15839928,1.9112775,1.7258558,0.18171924,1.8932618,1.6964593,0.20647049,1.8736835,0.06478745,0.23260981,1.852577,0.080411255,0.26009148,1.8299791,0.097643614,1.9554975,1.8059294,0.11645436,1.9423268,1.7804701,0.1368106,1.9275075,0.027946651,0.15867674,1.911066,0.03861308,0.18201452,1.8930309,0.050961196,1.9848154,1.8734336,0.06496942,1.976695,0.0024615526,0.08061314,1.966866,0.006266117,0.097865045,1.9553459,0.011808872,1.9999704,1.9421546,0.019080162,1.998774,1.9273155,0.02806729,1.9958305,0.0015004277,0.038754523,1.9911451,8.3982944e-5,0.051123142,1.9847262,0.00041657686,1.9931319,1.9765847,0.002497673,1.9971555,1.9667349,0.0063236356,1.999435,0.01611197,0.01188767,1.9999664,0.009496689,0.019180119,1.9987484,0.0046139956,1.9708042,1.9957836,0.0014724135,0.038896203,0.059448063,7.748604e-5,0.051285386,0.04606843,0.00043153763,0.17296839,0.03435749,0.0025340915,0.15018564,0.024335563,0.0063813925,0.12888932,0.016020298,0.011966765,0.10911679,0.009426236,0.019280374,0.09090257,0.0045648813,0.2494852,0.07427853,0.0014446974,0.22250849,0.05927378,7.122755e-5,0.19689178,0.04591453,0.00044679642,0.17267984,0.034224153,0.0025707483,0.1499151,0.02422309,0.3377071,0.12863725,0.015928924,0.30695724,0.10888368,0.009356022,0.27741963,0.090688765,0.0045160055,0.24914593,0.07408446,0.4712878,0.22218567,0.059099734,0.43625826,0.19658595,0.04576081,0.40221477,0.17239153,0.034091115,0.36921692,0.14964479,0.024110913,0.33732247,0.12838548,0.581206,0.30658716,0.108650744,0.5436016,0.27706474,0.0904752,0.5067954,0.2488069,0.07389063,0.47085202,0.22186303,0.058925927,0.43583423,0.1962803,0.6976558,0.4018032,0.1721034,0.65806293,0.36881858,0.14937466,0.61906826,0.33693802,0.12813383,0.5807398,0.30621725,0.8601017,0.5431447,0.2767101,0.818821,0.50634885,0.24846804,0.77785724,0.47041637,0.22154063,0.73728204,0.43541032,0.19597489,0.69716644,0.4013918,0.98460776,0.6575805,0.36842036,0.9428119,0.61859345,0.3365537,0.90111613,0.5802737,0.30584753,0.8595933,0.542688,0.27635556,0.81831604,0.5059023,1.1093539,0.7773566,0.4699809,1.0676948,0.7367866,0.43498653,1.0259172,0.6966771,0.40098053,0.9840943,0.65709805,0.36802232,0.94229925,0.6181189,1.2323945,0.90060514,0.57980764,1.1915218,0.8590849,0.54223144,1.1503141,0.81781113,0.505456,1.1088434,0.77685606,1.3906441,1.0671824,0.7362913,1.3518106,1.0254039,0.69618785,1.3123617,0.9835809,0.65661573,1.2723665,0.94178665,0.6176443,1.231895,0.9000942,1.5023348,1.1910177,0.85857654,1.4657398,1.1498064,0.8173063,1.4283302,1.108333,0.7763555,0.4691103,1.8558476,1.6389167,1.3513299,1.0248905,0.6956986,0.40015852,1.8096375,1.5724053,1.2718725,0.94127405,0.6171699,1.9298406,1.7577653,1.5018908,1.1905137,0.8580682,0.54131866,1.8958439,1.7005932,1.4278661,1.1078225,0.77585506,1.9780258,1.8555818,1.6385216,1.350849,1.0243772,0.6952095,1.9571857,1.8093361,1.5719843,1.2713783,0.94076145,0.61669564,1.9296515,1.7574301,1.5014465,1.1900096,0.85756,1.9919609,1.8956156,1.7002268,1.4274019,1.107312,0.7753547,1.9779186,1.8553159,1.6381264,1.3503681,1.0238639,1.9992038,1.9570371,1.8090343,1.571563,1.270884,0.94024885,1.9990432,1.9294622,1.7570946,1.5010023,1.1895055,0.85705173,1.9918957,1.895387,1.6998601,1.4269376,1.1068014,1.9924393,1.9778111,1.8550497,1.6377308,1.3498871,1.0233505,1.9992242,1.956888,1.8087325,1.5711415,1.2703897,1.95829,1.9990207,1.9292727,1.7567592,1.5005578,1.1890012,1.9788189,1.9918303,1.8951583,1.6994932,1.4264733,1.897543,1.9925022,1.9777035,1.8547833,1.6373353,1.3494061,1.9312463,1.9992442,1.9567387,1.8084303,1.57072,1.2698953,1.9584366,1.9989979,1.9290829,1.7564234,1.5001132,1.8578267,1.9789238,1.9917648,1.8949293,1.6991262,1.4260087,1.8977693,1.9925649,1.9775956,1.8545167,1.6369395,1.760598,1.9314332,1.999264,1.9565892,1.808128,1.5702982,1.8121843,1.9585829,1.9989748,1.9288929,1.7560873,1.6422586,1.8580904,1.9790287,1.9916989,1.8947,1.6987588,1.7040569,1.8979955,1.9926271,1.9774873,1.85425,1.6365435,1.7609313,1.93162,1.9992837,1.9564395,1.8078254,1.5763882,1.8124838,1.958729,1.9989514,1.9287026,1.7557513,1.642652,1.8583541,1.9791331,1.9916327,1.8944706,1.4327217,1.7044215,1.8982213,1.9926894,1.9773788,1.8539829,1.506536,1.7612643,1.9318066,1.999303,1.9562894,1.277045,1.5768077,1.812783,1.958875,1.9989277,1.9285121,1.3563609,1.6430454,1.8586173,1.9792373,1.9915663,1.8942409,1.4331846,1.7047858,1.8984468,1.9927511,1.9772701,1.196295,1.5069788,1.7615972,1.9319928,1.9993219,1.9561391,1.2775383,1.5772271,1.813082,1.9590206,1.9989038,1.0307808,1.3568407,1.6434386,1.8588805,1.9793413,1.9914997,1.1141889,1.4336474,1.70515,1.8986721,1.9928128,1.9771612,1.1967984,1.5074213,1.7619298,1.9321787,1.9993408,0.9476702,1.2780316,1.5776464,1.8133808,1.9591659,1.9988797,1.0312941,1.3573203,1.6438315,1.8591434,1.979445,0.7826039,1.1146991,1.43411,1.705514,1.8988972,1.9928741,0.8649211,1.1973019,1.5078636,1.7622623,1.9323645,0.6235715,0.948183,1.2785249,1.5780654,1.8136795,1.959311,0.70229733,1.0318073,1.3577999,1.6442244,1.859406,1.9795485,0.78310513,1.1152092,1.4345726,1.7058778,1.8991221,0.54793626,0.86542994,1.1978053,1.508306,1.7625945,1.93255,0.6240473,0.94869584,1.2790179,1.5784843,1.8139778,0.4061224,0.7027875,1.0323205,1.3582793,1.6446171,1.8596685,0.475424,0.78360647,1.1157192,1.435035,1.7062414,0.2807917,0.5483943,0.8659388,1.1983086,1.508748,1.7629266,0.34136045,0.62452316,0.9492087,1.2795111,1.5789032,1.814276,0.40653557,0.7032778,1.0328338,1.3587587,1.6450095,0.22557765,0.47586125,0.7841078,1.1162293,1.4354973,1.706605,0.28114855,0.54885256,0.8664476,1.1988119,1.5091901,0.13128906,0.34174693,0.62499905,0.9497215,1.280004,1.5793219,0.17571342,0.40694898,0.70376825,1.033347,1.3592379,0.061111808,0.22590262,0.47629863,0.7846092,1.1167393,1.4359595,1.7069681,1.8997953,1.9931167,0.114663064,0.011151373,0.016993523,0.13154352,0.34213358,0.62547517,0.95023435,1.280497,1.5797403,1.8148718,1.9598889,0.20414042,0.049598575,0.00015884638,0.061288655,0.22622776,0.47673613,0.7851107,1.1172493,1.4364215,1.7073312,1.9000192,0.3157071,0.11442441,0.01107502,0.017087936,0.13179821,0.34252042,0.6259513,0.9507472,1.2809898,1.5801586,1.8151693,0.4462664,0.20382965,0.049439013,0.0001681447,0.0614658,0.22655314,0.47717375,0.7856122,1.1177591,1.4368834,1.707694,0.59219474,0.3153327,0.11418605,0.010998964,0.017182589,0.13205314,0.34290737,0.6264276,0.9512601,1.2814826,1.5805767,1.8154666,0.44583887,0.20351905,0.04927969,0.00017768145,0.061643183,0.22687876,0.47761154,0.7861138,1.1182691,1.4373453,1.7080568,0.59172595,0.3149585,0.11394787,0.010923147,0.01727748,0.1323083,0.34329456,0.62690395,0.951773,1.2819753,1.5809947,0.74894476,0.4454115,0.20320863,0.049120605,0.00018751621,0.061820805,0.22720456,0.47804952,0.78661543,1.118779,1.4378071,0.9131316,0.5912572,0.31458455,0.11370993,0.0108475685,0.017372668,0.13256365,0.34368187,0.62738043,0.9522859,1.2824678,1.0797296,0.7484477,0.44498432,0.20289844,0.04896176,0.0001975894,0.061998665,0.22753054,0.47848755,0.7871171,1.1192888,1.2441145,0.91262007,0.59078866,0.3142107,0.11347222,0.010772288,0.017468095,0.13281924,0.34406936,0.62785697,0.9527988,1.2829604,1.0792177,0.7479508,0.44455725,0.2025885,0.04880321,0.0002079606,0.062176764,0.22785676,0.47892576,0.7876189,1.1197985,1.2436166,0.91210854,0.59032017,0.3138371,0.11323476,0.010697246,0.01756376,0.13307506,0.3444571,0.6283336,0.9533117,1.4012538,1.0787058,0.74745387,0.4441303,0.20227873,0.04864484,0.00021851063,0.0623551,0.22818315,0.4793641,0.7881207,1.5477543,1.2431185,0.9115971,0.58985186,0.3134637,0.11299753,0.010622442,0.017659724,0.13333112,0.34484494,0.6288104,1.6790516,1.4007834,1.0781939,0.74695706,0.44370353,0.2019692,0.04848677,0.00022941828,0.062533736,0.22850972,0.47980255,1.7915016,1.5473245,1.2426205,0.9110856,0.58938354,0.31309038,0.112760544,0.010547936,0.017755926,0.13358742,0.34523296,1.8819835,1.6786745,1.4003129,1.0776819,0.7464603,0.44327688,0.20165986,0.048328936,0.00024050474,0.06271261,0.22883654,0.48024118,1.7911878,1.5468948,1.2421222,0.91057414,0.5889154,0.31271732,0.112523794,0.010473669,0.017852426,0.13384396,0.34562117,1.8817413,1.6782973,1.3998424,1.07717,0.74596363,0.4428504,0.20135075,0.04817134,0.00025194883,0.06289172,0.22916353,1.9478221,1.7908735,1.5464647,1.241624,0.91006273,0.58844733,0.31234437,0.11228728,0.010399699,0.017949104,0.13410068,1.9875957,1.881499,1.6779199,1.3993716,1.076658,0.74546707,0.44242406,0.20104182,0.048014045,0.00026357174,0.06307107,1.9999584,1.9476582,1.7905593,1.5460346,1.2411257,0.9095513,0.58797944,0.31197166,0.11205095,0.010325968,0.018046081,1.984567,1.987515,1.8812563,1.6775423,1.3989007,1.076146,0.74497044,0.4419979,0.20073313,0.047856987,0.00027549267,0.06325066,1.9999629,1.947494,1.7902447,1.5456045,1.2406273,0.90904,0.5875116,0.31159914,0.111814916,0.010252476,0.018143356,1.9846568,1.9874339,1.8810136,1.6771646,1.3984299,1.075634,0.744474,0.44157183,0.20042467,0.047700167,0.00028771162,1.9420213,1.9999672,1.9473298,1.7899299,1.545174,1.2401289,0.90852857,0.5870439,0.3112268,0.11157906,0.010179281,1.8732398,1.9847462,1.9873526,1.8807706,1.6767867,1.3979589,1.075122,0.7439776,0.44114596,0.2001164,0.047543585,1.7802212,1.9421934,1.9999713,1.9471653,1.7896149,1.5447434,1.2396303,0.9080173,0.5865763,0.3108546,0.1113435,1.6655474,1.8734899,1.9848354,1.9872711,1.8805273,1.6764085,1.3974878,1.07461,0.7434813,0.4407202,0.1998083,1.5324013,1.7805423,1.9423654,1.999975,1.9470004,1.7892997,1.5443127,1.2391318,0.907506,0.5861088,0.31048262,0.111108124,1.6659305,1.8737397,1.9849244,1.9871893,1.8802838,1.6760302,1.3970165,1.0740979,0.742985,0.44029462,0.19950044,1.5328358,1.780863,1.9425371,1.9999785,1.9468353,1.7889843,1.5438819,1.2386332,0.9069947,0.5856414,0.3101108,1.3849521,1.6663135,1.8739893,1.9850131,1.9871073,1.88004,1.6756518,1.3965452,1.0735857,0.74248874,0.43986917,1.226384,1.5332704,1.7811837,1.9427085,1.9999818,1.94667,1.7886688,1.543451,1.2381345,0.9064834,0.5851741,1.0615325,1.385426,1.6666963,1.8742387,1.9851016,1.9870249,1.879796,1.6752732,1.3960737,1.0730736,0.7419926,0.89497316,1.2268841,1.5337046,1.7815043,1.9428797,1.9999847,1.9465044,1.788353,1.5430198,1.2376357,0.9059722,0.5847069,1.062045,1.3858998,1.667079,1.8744879,1.9851897,1.9869423,1.8795519,1.6748943,1.3956022,1.0725615,0.74149656,0.89548385,1.2273842,1.5341388,1.7818246,1.9430506,1.9999874,1.9463387,1.788037,1.5425886,1.237137,0.905461,0.73182356,1.0625576,1.3863734,1.6674614,1.8747368,1.9852777,1.9868596,1.8793074,1.6745152,1.3951305,1.0720494,0.5756066,0.89599454,1.2278842,1.5345728,1.7821445,1.9432213,1.9999899,1.9461725,1.7877207,1.5421572,1.2366381,0.43116868,0.7323183,1.06307,1.386847,1.6678438,1.8749856,1.9853654,1.9867764,1.8790628,1.6741362,1.3946588,0.30251884,0.57607156,0.8965053,1.2283841,1.5350068,1.7824645,1.9433918,1.9999921,1.9460062,1.7874043,1.5417256,0.19322777,0.4315911,0.73281306,1.0635824,1.3873205,1.6682258,1.8752341,1.9854527,1.986693,1.8788178,1.6737568,1.3941869,0.3028869,0.57653666,0.89701605,1.2288841,1.5354404,1.7827841,1.9435619,1.999994,1.9458396,1.7870877,1.5412939,0.19353127,0.43201363,0.73330796,1.0640949,1.3877938,1.6686077,1.8754823,1.9855399,1.9866095,1.8785727,1.6733773,0.106559396,0.30325514,0.5770019,0.8975268,1.229384,1.5358741,1.7831035,1.9437318,1.9999957,1.9456728,1.7867708,0.044385135,0.19383502,0.43243635,0.73380286,1.0646074,1.388267,1.6689895,1.8757303,1.9856267,1.9865255,1.8783274,0.008734167,0.106790125,0.30362362,0.57746726,0.8980376,1.2298837,1.5363076,1.7834227,1.9439015,1.999997,1.9455057,0.00059604645,0.04453653,0.19413894,0.43285918,0.7342979,1.0651197,1.3887403,1.6693711,1.8759782,1.9857134,1.9864414,1.8780818,0.008801997,0.10702115,0.3039922,0.5779327,0.8985484,1.2303834,1.5367409,1.7837417,1.944071,1.9999981,1.9453385,0.0005784631,0.044688165,0.1944431,0.4332822,0.73479295,1.0656321,1.3892133,1.6697525,1.8762257,1.9857998,1.986357,0.020094037,0.008870125,0.10725242,0.304361,0.5783983,0.8990593,1.230883,1.537174,1.7840606,1.9442402,1.999999,0.06680715,0.0005611181,0.044840097,0.19474745,0.43370533,0.735288,1.0661445,1.3896862,1.6701337,1.8764731,1.9858859,0.13942122,0.019991755,0.008938491,0.107483864,0.30473,0.578864,0.89957017,1.2313826,1.5376072,1.7843792,1.9444091,0.23592085,0.066622734,0.0005440116,0.044992268,0.19505203,0.43412858,0.7357833,1.0666568,1.3901591,1.6705148,1.8767202,0.35362768,0.1391598,0.019889712,0.009007156,0.10771561,0.30509913,0.5793297,0.9000811,1.2318821,1.53804,1.7846977,1.9445778,2.0,1.944835,1.7851834,1.5387008,1.2326448,1.9638929,1.8232749,1.5916132,1.2945267,0.9648694,0.6390971,0.35323596,0.13889861,0.019787908,0.009076059,0.10794753,0.3054685,0.57979566,0.900592,1.2323816,1.5384728,1.7850158,1.9447463,2.0,1.9446666,1.7848654,1.5382681,1.99795,1.9637561,1.8229833,1.5911992,1.2940359,0.96435624,0.63861823,0.35284442,0.13863766,0.0196864,0.0091452,0.10817969,0.305838,0.5802617,0.90110296,1.232881,1.5389054,1.7853339,1.9449145,1.9999998,1.9444981,1.7845471,1.5378354,1.9979827,1.963619,1.8226914,1.5907848,1.2935451,0.96384305,0.6381395,0.35245305,0.13837689,0.019585133,0.00921458,0.10841215,0.30620772,0.5807278,0.90161395,1.2333803,1.5393379,1.7856517,1.9450824,1.9999993,1.9443293,1.7842286,1.9221811,1.9980152,1.9634817,1.8223994,1.5903704,1.2930542,0.9633299,0.63766086,0.35206187,0.13811642,0.019484162,0.009284258,0.10864478,0.30657762,0.58119404,0.902125,1.2338796,1.5397701,1.7859693,1.9452502,1.9999986,1.9441602,1.7447087,1.9223796,1.9980474,1.963344,1.8221072,1.5899559,1.2925632,0.9628168,0.63718235,0.3516708,0.13785613,0.01938343,0.009354234,0.10887766,0.3069477,0.5816604,0.902636,1.2343788,1.5402024,1.7862866,1.9454176,1.9999976,1.943991,1.7450511,1.9225779,1.9980793,1.963206,1.8218148,1.5895412,1.2920722,0.96230364,0.63670385,0.3512799,0.13759607,0.019282937,0.009424448,0.10911077,0.30731797,0.58212686,0.9031471,1.2348781,1.5406344,1.7866037,1.9455848,1.9999964,1.4855804,1.7453936,1.9227759,1.998111,1.963068,1.821522,1.5891263,1.291581,0.9617905,0.63622546,0.35088927,0.13733625,0.019182682,0.009494901,0.109344125,0.30768842,0.58259344,0.90365815,1.2353771,1.5410664,1.7869207,1.9457517,1.1725743,1.4860294,1.7457359,1.9229736,1.9981425,1.9629295,1.8212292,1.5887115,1.2910898,0.9612774,0.63574725,0.35049874,0.13707662,0.019082725,0.009565592,0.109577715,0.30805904,0.5830601,0.90416926,1.2358761,1.5414982,1.7872374,1.9459184,1.17308,1.4864781,1.7460778,1.923171,1.9981736,1.962791,1.8209361,1.5882962,1.2905985,0.9607643,0.63526905,0.35010839,0.13681728,0.018983006,0.009636581,0.109811544,0.30842984,0.58352685,0.90468043,1.2363751,1.5419297,1.787554,0.84104854,1.1735858,1.4869266,1.7464197,1.9233685,1.9982045,1.962652,1.8206427,1.587881,1.2901071,0.9602512,0.634791,0.34971815,0.13655812,0.018883586,0.009707868,0.11004561,0.30880082,0.5839938,0.9051916,1.236874,1.5423613,0.5265416,0.84155554,1.1740915,1.487375,1.7467613,1.9235654,1.9982351,1.962513,1.8203492,1.5874655,1.2896156,0.95973814,0.634313,0.34932816,0.1362992,0.018784404,0.009779334,0.11027992,0.30917203,0.58446074,0.90570277,1.2373729,1.5427926,0.5269939,0.8420626,1.174597,1.4878234,1.7471027,1.9237621,1.9982655,1.9623735,1.8200555,1.5870498,1.2891241,0.95922506,0.63383514,0.34893835,0.13604051,0.01868546,0.009851098,0.11051446,0.30954337,0.5849279,0.906214,1.2378716,0.2645815,0.5274464,0.84256965,1.1751026,1.4882715,1.7474439,1.9239587,1.9982955,1.9622338,1.8197615,1.5866342,1.2886326,0.958712,0.6333574,0.34854865,0.13578206,0.018586814,0.00992316,0.110749185,0.3099149,0.5853951,0.9067252,0.08324933,0.26492953,0.527899,0.8430767,1.1756082,1.4887196,1.747785,1.924155,1.9983253,1.9620938,1.8194673,1.5862181,1.2881409,0.95819896,0.6328797,0.3481592,0.13552386,0.018488407,0.0099954605,0.110984206,0.31028664,0.5858624,0.002989471,0.08345461,0.26527774,0.5283517,0.8435839,1.1761136,1.4891676,1.7481258,1.924351,1.9983549,1.9619538,1.8191729,1.5858021,1.2876492,0.95768595,0.63240206,0.34776986,0.13526583,0.018390238,0.010067999,0.111219406,0.3106585,0.5863299,0.0030292869,0.083660066,0.2656262,0.52880454,0.84409106,1.176619,1.4896153,1.7484665,1.9245468,1.9983842,1.9618133,1.8188782,1.5853858,1.2871573,0.9571729,0.6319246,0.3473807,0.13500804,0.018292308,0.010140777,0.111454904,0.31103063,0.032520592,0.0030693412,0.08386582,0.26597482,0.52925754,0.8445983,1.1771245,1.490063,1.7488068,1.9247423,1.9984133,1.9616727,1.8185835,1.5849695,1.2866654,0.95665985,0.6314472,0.34699172,0.13475049,0.018194675,0.010213852,0.11169058,0.16867703,0.032390833,0.0031096935,0.084071755,0.26632363,0.52971065,0.8451056,1.1776298,1.4905105,1.7491472,1.9249377,1.9984422,1.9615316,1.8182883,1.5845529,1.2861735,0.9561469,0.6309699,0.34660292,0.13449317,0.018097341,0.010287225,0.111926556,0.1683917,0.032261312,0.0031502843,0.08427799,0.26667267,0.5301639,0.8456129,1.1781352,1.490958,1.7494872,1.9251328,1.9984705,1.9613905,1.8179932,1.5841362,1.2856814,0.9556339,0.6304927,0.3462143,0.1342361,0.018000185,0.010360777,0.39607793,0.16810668,0.03213209,0.003191173,0.0844844,0.2670219,0.53061724,0.84612024,1.1786404,1.4914052,1.7498269,1.9253275,1.9984989,1.9612491,1.8176976,1.5837193,1.2851893,0.9551209,0.6300156,0.3458258,0.1339792,0.017903328,0.69034684,0.39566875,0.16782182,0.032003045,0.0032323003,0.08469111,0.26737124,0.5310707,0.84662765,1.1791456,1.4918524,1.7501667,1.9255221,1.9985268,1.9611075,1.8174019,1.5833023,1.284697,0.95460796,0.6295386,0.34543753,0.1337226,0.017806709,0.6898587,0.39525968,0.16753721,0.03187436,0.003273666,0.084898055,0.26772088,0.5315243,0.84713507,1.1796508,1.4922994,1.750506,1.9257164,1.9985546,1.9609654,1.817106,1.5828851,1.2842047,0.954095,0.6290617,0.34504938,0.13346618,1.0182419,0.6893705,0.3948508,0.16725278,0.03174585,0.0033153296,0.08510518,0.26807064,0.531978,0.84764254,1.1801559,1.4927464,1.7508453,1.9259106,1.9985821,1.9608233,1.8168099,1.5824678,1.2837124,0.95358205,0.62858486,0.34466147,1.3446138,1.0177284,0.68888247,0.39444208,0.16696858,0.03161764,0.0033572316,0.085312605,0.26842064,0.53243184,0.8481501,1.180661,1.493193,1.7511843,1.9261044,1.9986093,1.9606808,1.8165135,1.5820503,1.2832199,0.9530691,0.62810814,0.3442737,1.3441317,1.017215,0.6883945,0.39403355,0.16668463,0.03148967,0.003399372,0.08552027,0.2687708,0.5328858,0.8486576,1.1811659,1.4936397,1.7515233,1.926298,1.9986362,1.9605381,1.816217,1.5816327,1.2827275,0.9525562,0.62763155,1.6325943,1.3436496,1.0167016,0.6879066,0.39362514,0.16640091,0.031361938,0.0034418106,0.08572817,0.26912117,0.5333399,0.84916526,1.1816709,1.4940861,1.7518618,1.9264914,1.998663,1.9603952,1.8159201,1.5812149,1.2822349,0.9520433,1.8513131,1.6321967,1.3431673,1.0161881,0.6874188,0.3932169,0.16611737,0.031234443,0.0034845471,0.08593631,0.2694717,0.53379416,0.8496729,1.1821759,1.4945326,1.7522004,1.9266845,1.9986893,1.960252,1.8156233,1.5807971,1.2817422,1.9761741,1.8510436,1.6317986,1.342685,1.0156747,0.68693113,0.39280885,0.16583407,0.031107247,0.0035274625,0.086144686,0.26982248,0.5342485,0.85018057,1.1826807,1.4949788,1.7525387,1.9268773,1.9987154,1.9601085,1.815326,1.580379,1.2812495,1.9760625,1.8507738,1.6314006,1.3422025,1.0151613,0.68644345,0.39240092,0.16555095,0.030980289,0.0035706758,0.0863533,0.27017343,0.5347029,0.8506883,1.1831856,1.4954249,1.7528766,1.9270699,1.9987414,1.9599648,1.8150287,1.5799607,1.99347,1.9759507,1.8505039,1.6310022,1.34172,1.0146478,0.6859559,0.39199317,0.16526812,0.03085363,0.0036141872,0.08656216,0.27052456,0.5351575,0.85119605,1.1836903,1.4958708,1.7532146,1.9272623,1.9987669,1.9598209,1.8147309,1.9013469,1.9935285,1.9758387,1.8502337,1.6306038,1.3412373,1.0141344,0.68546844,0.39158553,0.16498548,0.030727148,0.003657937,0.08677125,0.27087587,0.5356122,0.8517038,1.184195,1.4963167,1.7535522,1.9274545,1.9987923,1.9596766,1.8144331,1.9015691,1.9935867,1.9757264,1.8499632,1.6302052,1.3407546,1.013621,0.68498105,0.39117813,0.16470301,0.030600965,0.0037019253,0.08698058,0.27122742,0.536067,0.85221165,1.1846998,1.4967625,1.7538896,1.9276464,1.9988174,1.9595321,1.7102114,1.9017912,1.9936446,1.9756138,1.8496926,1.6298065,1.3402718,1.0131075,0.6844937,0.39077085,0.16442084,0.03047508,0.0037462115,0.08719021,0.2715791,0.536522,0.85271955,1.1852044,1.497208,1.7542269,1.9278381,1.9988422,1.4405524,1.7105727,1.9020131,1.9937023,1.975501,1.8494217,1.6294075,1.3397889,1.0125941,0.6840065,0.39036375,0.16413885,0.030349374,0.0037907362,0.08740002,0.271931,0.53697705,0.85322744,1.185709,1.4976535,1.754564,1.9280294,1.9988668,1.4410133,1.7109339,1.9022346,1.9937596,1.9753878,1.8491507,1.6290084,1.3393059,1.0120807,0.68351936,0.38995677,0.16385704,0.030223966,0.003835559,0.087610066,0.27228314,0.53743225,0.8537354,1.1862135,1.4980989,1.7549008,1.9282205,1.1228318,1.4414741,1.711295,1.9024559,1.9938169,1.9752744,1.8488793,1.6286092,1.3388228,1.0115672,0.6830323,0.38954997,0.16357553,0.030098796,0.00388062,0.08782035,0.2726354,0.5378876,0.8542434,1.186718,1.498544,1.7552376,0.79110813,1.1233414,1.4419348,1.7116559,1.902677,1.9938737,1.9751608,1.8486078,1.6282097,1.3383397,1.0110537,0.6825453,0.38914335,0.1632942,0.029973865,0.0039259195,0.088030934,0.2729879,0.53834295,0.8547514,1.1872225,1.4989891,1.755574,0.7916103,1.123851,1.4423953,1.7120166,1.9028978,1.9939303,1.975047,1.848336,1.6278101,1.3378565,1.0105402,0.68205845,0.38873684,0.1630131,0.029849231,0.003971517,0.0882417,0.27334058,0.5387986,0.8552595,1.1877269,1.499434,0.48285425,0.7921125,1.1243606,1.4428558,1.712377,1.9031184,1.9939867,1.9749329,1.8480641,1.6274104,1.3373731,1.0100268,0.68157166,0.38833058,0.16273218,0.029724836,0.0040174127,0.08845276,0.27369344,0.5392542,0.8557676,1.1882311,0.23111379,0.48329383,0.7926148,1.12487,1.4433161,1.7127373,1.9033389,1.9940429,1.9748185,1.8477919,1.6270103,1.3368897,1.0095134,0.68108493,0.38792443,0.16245157,0.02960068,0.004063487,0.088663995,0.27404648,0.53971004,0.85627574,0.06414348,0.23144221,0.48373353,0.79311717,1.1253794,1.4437764,1.7130973,1.903559,1.9940987,1.9747038,1.8475194,1.6266103,1.3364062,1.0089998,0.68059826,0.3875184,0.16217113,0.029476821,0.0041098595,0.08887547,0.2743997,0.54016596,0.85678387,0.06432456,0.23177087,0.48417336,0.79361963,1.1258888,1.4442365,1.7134572,1.9037788,1.9941542,1.9745889,1.8472468,1.62621,1.3359226,1.0084864,0.68011177,0.38711262,0.16189086,0.029353201,0.00415653,0.08908725,0.27475315,0.540622,0.0003656745,0.064505875,0.23209965,0.4846133,0.7941221,1.1263983,1.4446964,1.7138169,1.9039985,1.9942095,1.9744738,1.8469739,1.6258097,1.3354388,1.007973,0.6796253,0.38670695,0.1616109,0.02922982,0.0042034388,0.08929926,0.2751068,0.04661697,0.0003796816,0.06468743,0.23242873,0.48505342,0.79462457,1.1269076,1.4451563,1.7141764,1.904218,1.9942646,1.9743583,1.8467008,1.625409,1.3349551,1.0074594,0.6791389,0.3863014,0.16133112,0.029106736,0.004250586,0.089511454,0.2754606,0.04646218,0.0003939271,0.064869225,0.23275793,0.48549366,0.79512715,1.127417,1.445616,1.7145357,1.9044371,1.9943194,1.9742427,1.8464274,1.6250082,1.3344712,1.006946,0.6786526,0.3858961,0.16105151,0.028983831,0.0042979717,0.089723945,0.19767272,0.046307564,0.00040847063,0.06505132,0.23308736,0.48593408,0.7956298,1.1279262,1.4460757,1.714895,1.904656,1.9943738,1.9741268,1.846154,1.6246073,1.3339872,1.0064325,0.6781664,0.3854909,0.1607722,0.028861225,0.004345715,0.43734032,0.19736636,0.046153247,0.0004233122,0.06523359,0.23341703,0.48637456,0.79613245,1.1284355,1.4465352,1.7152538,1.9048748,1.9944282,1.9740107,1.8458802,1.6242063,1.3335032,1.005919,0.67768025,0.38508588,0.16049308,0.028738916,0.004393637,0.43691587,0.19706017,0.04599917,0.00043839216,0.06541616,0.23374683,0.4868152,0.7966352,1.1289448,1.4469945,1.7156126,1.9050932,1.9944822,1.9738941,1.8456061,1.623805,1.333019,1.0054055,0.67719424,0.38468105,0.16021419,0.028616786,0.7385458,0.4364916,0.19675416,0.04584533,0.00045371056,0.065598965,0.23407686,0.487256,0.797138,1.1294539,1.4474539,1.7159712,1.9053113,1.9945359,1.9737775,1.8453319,1.6234035,1.3325348,1.004892,0.6767082,0.38427633,0.15993553,1.0690012,0.7380502,0.43606746,0.19644845,0.04569179,0.00046932697,0.06578201,0.23440713,0.48769695,0.79764086,1.129963,1.447913,1.7163296,1.9055295,1.9945893,1.9736605,1.8450575,1.623002,1.3320506,1.0043786,0.6762223,0.3838718,0.15965706,1.0684888,0.73755467,0.4356435,0.19614291,0.045538485,0.0004851818,0.065965295,0.23473758,0.48813802,0.79814374,1.1304722,1.4483721,1.7166878,1.9057472,1.9946425,1.9735434,1.8447828,1.6226003,1.3315661,1.003865,0.67573655,0.38346744,1.3913766,1.0679766,0.73705924,0.4352197,0.19583756,0.04538542,0.00050127506,0.06614882,0.2350682,0.48857915,0.7986467,1.1309812,1.448831,1.7170458,1.9059646,1.9946954,1.9734259,1.8445079,1.6221983,1.3310816,1.0033516,0.6752509,1.6711149,1.3909041,1.0674642,0.7365638,0.43479598,0.19553244,0.045232594,0.00051766634,0.06633258,0.23539907,0.48902053,0.7991497,1.1314903,1.4492898,1.7174037,1.9061819,1.9947481,1.9733081,1.8442328,1.6217963,1.330597,1.0028381,1.8768623,1.6707342,1.3904314,1.066952,0.7360685,0.43437248,0.1952275,0.045080006,0.00053435564,0.06651664,0.23573011,0.48946196,0.79965276,1.1319994,1.4497485,1.7177613,1.906399,1.9948006,1.9731902,1.8439574,1.621394,1.3301125,1.0023246,1.8766154,1.6703532,1.3899586,1.0664396,0.7355733,0.4339491,0.19492286,0.044927716,0.00055122375,0.066700876,0.23606133,0.48990357,0.8001559,1.1325083,1.450207,1.7181187,1.9066157,1.9948528,1.9730719,1.8436819,1.6209916,1.3296276,1.9858494,1.8763683,1.6699721,1.3894857,1.0659273,0.7350781,0.43352586,0.19461834,0.044775665,0.0005684495,0.06688541,0.2363928,0.4903453,0.800659,1.1330173,1.4506655,1.718476,1.9068323,1.9949048,1.9729536,1.8434062,1.620589,1.9863927,1.9857631,1.8761208,1.6695907,1.3890127,1.0654149,0.73458296,0.4331028,0.19431406,0.04462385,0.00058585405,0.067070186,0.23672444,0.49078715,0.80116224,1.1335262,1.4511238,1.718833,1.9070487,1.9949563,1.9728347,1.8431301,1.6201863,1.3286579,1.0007842,0.67282367,0.38104463,0.15771413,0.027529538,0.004887581,0.09229225,0.28007764,0.5474771,0.8649198,0.48664993,0.23362309,0.06534767,0.00043267012,0.046056926,0.19717497,0.43707508,0.7392274,1.0702178,1.3934431,1.6731585,1.8784314,1.9865611,1.98559,1.8756251,1.6688277,1.3880664,1.0643901,0.733593,0.43225706,0.19370621,0.044321,0.00062155724,0.06744045,0.23738837,0.49167126,0.8021688,1.1345439,1.4520402,1.7195466,1.9074805,1.9950588,1.9725964,1.8425775,1.6193804,1.3276877,0.9997571,0.67185336,0.38023835,0.157161,0.027290702,0.004989505,0.09272361,0.2807908,1.1277351,0.79544127,0.48576885,0.23296374,0.06498301,0.000402987,0.04636556,0.1977877,0.4379242,0.740219,1.0712422,1.394387,1.6739177,1.8789217,1.9867284,1.9854157,1.8751287,1.6680639,1.3871198,1.0633651,0.7326032,0.43141192,0.19309914,0.044019163,0.0006582737,0.06781167,0.23805308,0.49255598,0.80317557,1.1355615,1.452956,1.7202594,1.9079115,1.9951603,1.9723572,1.842024,1.6185738,1.3267174,0.9987301,0.6708834,0.37943274,0.15660876,0.027052939,0.0050925016,0.09315598,1.4449838,1.1267166,0.7944361,0.48488832,0.23230523,0.0646193,0.00037437677,0.046675146,0.19840127,0.43877393,0.7412109,1.0722666,1.3953305,1.6746761,1.8794111,1.9868946,1.9852405,1.8746313,1.6672993,1.3861725,1.0623403,0.73161376,0.43056744,0.19249296,0.04371828,0.00069606304,0.0681839,0.23871863,0.49344116,0.8041826,1.1365789,1.4538714,1.7209715,1.9083414,1.9952607,1.972117,1.8414695,1.6177665,1.3257465,0.99770314,0.66991377,0.37862772,0.15605736,0.02681619,0.0051965714,1.7133222,1.4440639,1.1256977,0.79343116,0.4840083,0.23164755,0.06425661,0.00034677982,0.046985745,0.19901568,0.4396242,0.742203,1.0732908,1.3962736,1.6754336,1.8798995,1.9870598,1.985064,1.874133,1.6665341,1.385225,1.0613152,0.7306246,0.4297235,0.19188756,0.043418467,0.00073492527,0.06855714,0.23938495,0.4943269,0.8051898,1.1375961,1.4547862,1.7216828,1.9087706,1.99536,1.9718755,1.8409142,1.6169586,1.3247753,0.9966762,0.6689446,0.3778234,0.15550691,1.9940218,1.9032562,1.7126021,1.4431435,1.1246789,0.7924264,0.4831289,0.23099065,0.06389493,0.00032031536,0.0472973,0.19963098,0.44047505,0.7431954,1.0743151,1.3972163,1.6761906,1.8803871,1.987224,1.9848868,1.8736337,1.6657681,1.3842771,1.0602901,0.7296357,0.42888016,0.1912831,0.04311961,0.0007748008,0.06893134,0.24005204,0.49521315,0.8061972,1.1386133,1.4557006,1.7223933,1.9091985,1.9954584,1.9716332,1.840358,1.61615,1.3238039,0.9956492,0.66797566,0.3770197,1.9750898,1.9939091,1.9028151,1.7118812,1.4422226,1.1236598,0.7914219,0.48225003,0.23033458,0.0635342,0.00029480457,0.047609925,0.20024705,0.44132656,0.7441881,1.0753391,1.3981587,1.6769469,1.8808737,1.9873872,1.9847083,1.8731335,1.6650014,1.3833288,1.0592649,0.7286471,0.42803746,0.19067943,0.042821825,0.00081574917,0.06930649,0.24071997,0.4961,0.80720484,1.1396303,1.4566145,1.723103,1.9096258,1.9955555,1.9713898,1.8398008,1.6153408,1.3228321,0.99462223,0.6670071,1.8489811,1.975317,1.9937954,1.9023728,1.7111596,1.4413012,1.1226406,0.7904176,0.48137164,0.22967929,0.063174486,0.00027042627,0.047923565,0.20086402,0.4421786,0.745181,1.0763632,1.3991005,1.6777024,1.8813593,1.9875492,1.9845289,1.8726325,1.6642342,1.38238,1.0582397,0.72765887,0.42719537,0.19007665,0.042524993,0.00085771084,0.06968266,0.24138868,0.49698734,0.80821264,1.1406472,1.4575279,1.7238121,1.9100518,1.9956517,1.9711454,1.8392429,1.614531,1.3218598,1.3399701,1.6295571,1.8495233,1.9755433,1.9936807,1.9019299,1.7104373,1.4403794,1.1216214,0.7894136,0.48049384,0.22902483,0.062815726,0.00024706125,0.04823816,0.20148182,0.44303125,0.7461742,1.0773871,1.4000419,1.6784573,1.881844,1.9877102,1.9843484,1.8721304,1.6634661,1.381431,1.0572145,0.72667086,0.42635387,0.1894747,0.042229235,0.000900805,0.070059836,0.24205822,0.49787515,0.8092207,1.1416639,1.4584409,1.7245202,1.910477,1.9957469,1.9708999,1.8386841,1.6137204,1.0138136,1.3409357,1.6303548,1.8500648,1.9757686,1.9935648,1.9014859,1.7097142,1.4394572,1.1206019,0.7884097,0.47961664,0.2283712,0.06245798,0.00022476912,0.048553765,0.20210046,0.4438845,0.7471677,1.078411,1.400983,1.6792114,1.8823278,1.9878702,1.9841669,1.8716276,1.6626973,1.3804814,1.0561892,0.7256831,0.42551297,0.18887365,0.04193443,0.00094491243,0.07043797,0.24272853,0.49876356,0.8102289,1.1426804,1.4593533,1.7252277,1.9109013,1.995841,1.9706535,0.3921461,0.68613875,1.0148405,1.3419011,1.6311517,1.8506052,1.9759927,1.993448,1.9010408,1.7089902,1.4385345,1.1195824,0.7874061,0.47873992,0.22771835,0.062101185,0.00020349026,0.048870385,0.20271993,0.44473833,0.7481615,1.0794348,1.4019235,1.6799648,1.8828107,1.9880292,1.9839845,1.8711237,1.6619279,1.3795314,1.0551637,0.7246957,0.42467266,0.18827343,0.04164064,0.0009900331,0.07081705,0.24339968,0.4996525,0.81123734,1.1436968,1.4602654,1.7259345,1.9113245,1.995934,0.16594028,0.39296192,0.68711406,1.0158674,1.342866,1.631948,1.8511448,1.9762158,1.9933302,1.900595,1.7082655,1.4376112,1.1185627,0.7864027,0.4778638,0.22706634,0.061745405,0.00018334389,0.049188018,0.20334023,0.44559276,0.7491555,1.0804584,1.4028637,1.6807175,1.8832927,1.9881871,1.9838009,1.8706188,1.6611577,1.378581,1.0541383,0.7237085,0.42383295,0.18767405,0.04134786,0.0010362864,0.07119715,0.2440716,0.5005419,0.8122459,1.144713,1.4611769,1.7266405,1.911747,0.0314098,0.1665073,0.39377832,0.6880896,1.0168942,1.3438305,1.6327436,1.8516834,1.976438,1.9932113,1.9001482,1.7075403,1.4366876,1.1175429,0.78539956,0.4769882,0.22641516,0.06139064,0.0001642108,0.049506664,0.20396137,0.44644773,0.7501498,1.081482,1.4038035,1.6814694,1.8837736,1.988344,1.9836161,1.8701131,1.6603869,1.3776304,1.0531127,0.72272164,0.4229939,0.18707556,0.041056156,0.0010835528,0.071578205,0.2447443,0.50143194,0.8132547,1.1457292,1.4620879,0.08523476,0.0033414364,0.031665683,0.16707522,0.39459538,0.6890656,1.017921,1.3447946,1.6335385,1.8522211,1.976659,1.9930912,1.8997003,1.706814,1.4357635,1.116523,0.7843966,0.47611314,0.22576475,0.061036825,0.00014609098,0.049826264,0.2045834,0.4473033,0.75114435,1.0825056,1.4047427,1.6822207,1.8842537,1.9884998,1.9834305,1.8696065,1.6596153,1.3766792,1.0520872,0.72173506,0.42215538,0.1864779,0.040765405,0.0011318326,0.07196021,0.24541783,0.50232244,0.81426376,1.1467451,0.2675897,0.08482039,0.003258109,0.03192258,0.16764396,0.3954131,0.6900418,1.0189478,1.3457584,1.6343327,1.8527579,1.9768791,1.9929702,1.8992515,1.7060874,1.4348389,1.115503,0.78339386,0.47523862,0.22511524,0.060684025,0.00012910366,0.050146937,0.20520622,0.44815946,0.75213915,1.083529,1.4056816,1.6829712,1.8847328,1.9886546,1.9832438,1.869099,1.6588432,1.3757277,1.0510616,0.7207488,0.42131752,0.18588108,0.040475667,0.0011812449,0.07234323,0.24609214,0.50321347,0.8459299,0.5304471,0.26689082,0.08440691,0.003175795,0.032180548,0.1682136,0.39623147,0.69101834,1.0199746,1.3467219,1.6351264,1.8532939,1.9770982,1.9928482,1.8988018,1.7053597,1.4339138,1.1144828,0.78239137,0.4743647,0.22446644,0.06033224,0.000113129616,0.050468564,0.20582992,0.4490162,0.7531342,1.0845524,1.4066201,1.683721,1.885211,1.9888083,1.9830561,1.8685906,1.6580702,1.3747758,1.050036,0.7197628,0.42048025,0.18528515,0.04018694,0.0012316704,0.07272726,0.24676722,1.1774403,0.8449153,0.52954066,0.2661928,0.08399445,0.003094554,0.03243947,0.16878408,0.39705044,0.69199526,1.0210013,1.3476851,1.6359192,1.8538289,1.9773163,1.9927249,1.8983512,1.7046313,1.4329884,1.1134624,0.7813891,0.4734913,0.22381854,0.059981406,9.816885e-5,0.050791204,0.2064544,0.44987357,0.7541295,1.0855756,1.4075582,1.6844699,1.8856883,1.988961,1.9828674,1.8680813,1.6572967,1.3738234,1.0490103,0.7187771,0.41964364,0.18469006,0.03989923,0.0012831688,0.07311225,1.4894474,1.1764295,0.8439008,0.52863467,0.26549548,0.08358294,0.003014326,0.032699466,0.16935551,0.39787006,0.6929725,1.0220281,1.3486478,1.6367115,1.8543631,1.9775332,1.9926008,1.8978996,1.7039022,1.4320624,1.112442,0.7803871,0.47261846,0.22317141,0.059631586,8.434057e-5,0.051114857,0.20707977,0.45073146,0.7551251,1.0865988,1.4084958,1.6852183,1.8861647,1.9891126,1.9826775,1.867571,1.6565223,1.3728707,1.0479845,0.71779174,0.41880763,0.18409586,0.03961253,1.9240813,1.7476571,1.4885515,1.1754185,0.8428865,0.52772915,0.26479894,0.08317244,0.0029351711,0.032960415,0.16992778,0.39869034,0.69395,1.0230548,1.3496101,1.637503,1.8548963,1.9777491,1.9924755,1.897447,1.7031724,1.431136,1.1114216,0.7793853,0.4717462,0.22252512,0.05928272,7.1525574e-5,0.051439464,0.20770597,0.45158994,0.756121,1.0876219,1.4094329,1.685966,1.8866401,1.9892633,1.9824867,1.8670597,1.6557473,1.3719176,1.0469586,0.71680665,0.4179722,0.1835025,1.9982541,1.9236884,1.7469747,1.4876552,1.1744074,0.84187233,0.52682424,0.26410317,0.08276284,0.002857089,0.033222437,0.17050087,0.39951122,0.6949279,1.0240816,1.3505721,1.638294,1.8554287,1.9779642,1.9923494,1.8969935,1.7024418,1.4302092,1.1104009,0.77838373,0.4708745,0.22187966,0.058934867,5.978346e-5,0.051765084,0.20833296,0.45244896,0.75711703,1.0886449,1.4103696,1.686713,1.8871145,1.9894128,1.9822948,1.8665476,1.6549716,1.370964,1.0459328,0.71582186,0.41713738,1.9627042,1.9981929,1.9232944,1.7462914,1.4867584,1.173396,0.84085834,0.5259197,0.26340818,0.08235425,0.0027800202,0.033485472,0.17107493,0.40033275,0.69590604,1.0251082,1.3515338,1.6390841,1.8559601,1.978178,1.9922221,1.8965391,1.7017105,1.4292818,1.1093801,0.7773824,0.4700033,0.22123498,0.058588028,4.9054623e-5,0.052091718,0.20896083,0.45330864,0.75811344,1.0896678,1.411306,1.6874591,1.887588,1.9895613,1.9821019,1.8660346,1.6541952,1.3700101,1.0449069,1.5888672,1.8213391,1.9629815,1.9981307,1.9228995,1.7456075,1.485861,1.1723845,0.8398446,0.5250157,0.26271403,0.08194661,0.0027040243,0.03374952,0.17164981,0.40115494,0.6968846,1.0261348,1.352495,1.6398737,1.8564906,1.9783909,1.9920936,1.8960836,1.7009785,1.428354,1.1083592,0.7763813,0.46913272,0.22059119,0.058242142,3.939867e-5,0.052419364,0.20958954,0.45416886,0.75911003,1.0906906,1.4122419,1.6882045,1.8880607,1.9897089,1.981908,1.8655207,1.6534181,1.3690559,1.2922564,1.5896969,1.8219244,1.9632578,1.9980674,1.9225035,1.7449228,1.484963,1.1713728,0.83883095,0.5241122,0.2620206,0.08153993,0.0026291013,0.034014583,0.17222553,0.40197772,0.6978634,1.0271615,1.3534559,1.6406627,1.8570204,1.9786026,1.9919642,1.8956273,1.7002456,1.4274259,1.1073383,0.77538043,0.46826267,0.21994817,0.05789727,3.08156e-5,0.052748024,0.21021903,0.45502967,0.7601069,1.0917133,1.4131773,1.6889493,1.8885324,1.9898553,1.9817129,1.8650059,0.6378404,0.96352243,1.2932384,1.5905259,1.822509,1.9635332,1.998003,1.9221066,1.7442372,1.4840647,1.1703609,0.83781743,0.5232092,0.26132792,0.0811342,0.0025551915,0.034280658,0.17280221,0.40280116,0.6988425,1.0281881,1.3544164,1.6414509,1.8575491,1.9788134,1.9918337,1.89517,1.6995121,1.4264972,1.1063172,0.77437985,0.46739316,0.21930593,0.05755341,2.3305416e-5,0.05307764,0.2108494,0.455891,0.76110405,1.0927359,1.4141123,1.6896932,1.889003,1.9900007,1.981517,0.35299128,0.6387979,0.96454877,1.2942201,1.5913544,1.8230927,1.9638075,1.9979377,1.9217088,1.7435508,1.4831657,1.1693488,0.83680415,0.5223068,0.2606361,0.080729485,0.0024823546,0.034547746,0.17337972,0.4036252,0.699822,1.0292146,1.3553765,1.6422384,1.8580768,1.9790232,1.9917023,1.8947119,1.6987779,1.4255681,1.1052959,0.77337945,0.46652424,0.21866459,0.057210565,1.680851e-5,0.053408265,0.21148062,0.45675296,0.7621014,1.0937583,1.4150469,1.6904366,1.889473,1.990145,0.13925785,0.35377467,0.6397557,0.9655751,1.2952014,1.5921823,1.8236754,1.9640808,1.9978712,1.92131,1.7428637,1.4822664,1.1683366,0.835791,0.52140474,0.25994498,0.08032572,0.002410531,0.034815848,0.17395806,0.40444988,0.7008018,1.0302411,1.3563362,1.6430252,1.8586038,1.979232,1.9915698,1.8942527,1.6980429,1.4246385,1.1042746,0.7723793,0.46565592,0.21802408,0.056868672,1.1384487e-5,0.053739905,0.2121126,0.45761544,0.763099,1.0947808,1.415981,1.691179,0.008844554,0.020132482,0.13978106,0.35455877,0.64071393,0.9666015,1.2961825,1.5930095,1.8242574,1.9643531,1.9978037,1.9209101,1.7421758,1.4813665,1.1673242,0.8347781,0.5205033,0.2592547,0.079922915,0.00233984,0.035085022,0.17453736,0.40527517,0.70178187,1.0312676,1.3572956,1.6438113,1.8591299,1.9794397,1.9914361,1.8937926,1.6973071,1.4237084,1.1032531,0.7713794,0.46478808,0.21738434,0.056527734,7.033348e-6,0.05407256,0.21274549,0.45847857,0.7640969,1.0958031,1.4169147,0.10670352,0.008708775,0.020337999,0.14030522,0.35534352,0.6416725,0.96762794,1.2971632,1.5938361,1.8248384,1.9646243,1.9977351,1.9205093,1.7414871,1.4804661,1.1663116,0.83376527,0.5196023,0.2585652,0.07952112,0.0022701025,0.03535515,0.1751175,0.4061011,0.7027623,1.0322942,1.3582547,1.6445968,1.8596549,1.9796463,1.9913015,1.8933315,1.6965706,1.422778,1.1022316,0.7703797,0.4639209,0.21674544,0.056187868,3.695488e-6,0.054406166,0.21337914,0.45934218,0.765095,0.5763622,0.3027488,0.10624242,0.008574069,0.020544589,0.14083028,0.356129,0.64263153,0.9686544,1.2981436,1.5946622,1.8254187,1.9648945,1.9976655,1.9201076,1.7407978,1.4795651,1.1652988,0.8327527,0.5187019,0.25787646,0.07912028,0.0022014976,0.03562635,0.17569846,0.40692765,0.703743,1.0333205,1.3592134,1.6453817,1.8601792,1.979852,1.9911659,1.8928695,1.6958334,1.4218471,1.10121,0.76938033,0.46305424,0.21610737,0.055848956,1.4305115e-6,0.054740846,0.21401364,0.46020645,0.895803,0.5754321,0.30201304,0.10578227,0.008440375,0.020752251,0.14135623,0.35691512,0.64359087,0.9696809,1.2991238,1.5954875,1.825998,1.9651637,1.9975948,1.9197049,1.7401075,1.4786637,1.1642859,0.83174026,0.5178019,0.2571885,0.07872039,0.002133906,0.035898507,0.17628032,0.40775484,0.7047241,1.0343469,1.3601716,1.6461658,1.8607025,1.9800565,1.991029,1.8924066,1.6950954,1.4209157,1.1001881,0.7683811,0.46218812,0.21547014,0.055511057,2.3841858e-7,0.05507642,0.21464902,1.2266965,0.89478165,0.5745025,0.30127794,0.10532302,0.008307755,0.020960867,0.14188308,0.3577019,0.64455056,0.9707074,1.3001037,1.5963123,1.8265765,1.9654319,1.9975231,1.9193013,1.7394164,1.4777617,1.1632729,0.830728,0.51690245,0.25650132,0.07832146,0.002067387,0.036171734,0.17686307,0.4085827,0.7057054,1.0353733,1.3611294,1.6469493,1.8612249,1.9802601,1.9908912,1.8919427,1.6943567,1.4199839,1.0991663,0.7673822,0.4613226,0.21483374,0.055174112,5.9604645e-8,1.7807428,1.5326729,1.2256961,0.8937604,0.57357335,0.3005436,0.10486472,0.008176208,0.021170557,0.14241081,0.3584894,0.6455107,0.971734,1.3010831,1.5971363,1.8271539,1.9656991,1.9974504,1.9188966,1.7387247,1.4768593,1.1622596,0.8297159,0.5160035,0.2558149,0.07792354,0.0020018816,0.036445975,0.17744666,0.40941113,0.7066871,1.0363996,1.3620869,1.647732,1.8617463,1.9804627,1.9907525,1.8914778,1.6936173,1.4190516,1.0981443,0.7663835,0.46045762,0.21419817,0.05483824,1.9421289,1.7801006,1.5318034,1.2246956,0.8927393,0.5726447,0.29981005,0.10440737,0.008045673,0.021381259,0.14293951,0.35927755,0.64647114,0.97276056,1.3020623,1.5979598,1.8277307,1.9659653,1.9973766,1.9184909,1.7380321,1.4759563,1.1612461,0.828704,0.5151051,0.25512928,0.07752657,0.0019375086,0.03672123,0.17803115,0.41024017,0.707669,1.0374259,1.363044,1.648514,1.8622669,1.9806641,1.9906126,1.8910122,1.6928772,1.418119,1.0971223,0.76538503,0.45959324,0.21356338,1.9999613,1.9417841,1.7794577,1.5309334,1.2236947,0.89171827],"x":[-1.6470994e6,-4.5286444e14,-9.057289e14,-1.3585933e15,-1.8114578e15,-2.264322e15,-2.7171866e15,-3.170051e15,-3.6229155e15,-4.0757798e15,-4.528644e15,-4.9815087e15,-5.434373e15,-5.887238e15,-6.340102e15,-6.7929664e15,-7.245831e15,-7.6986956e15,-8.1515596e15,-8.604424e15,-9.057288e15,-9.510153e15,-9.963017e15,-1.0415882e16,-1.0868747e16,-1.1321611e16,-1.1774476e16,-1.2227339e16,-1.2680204e16,-1.3133068e16,-1.3585933e16,-1.4038797e16,-1.4491662e16,-1.4944527e16,-1.5397391e16,-1.5850255e16,-1.6303119e16,-1.6755984e16,-1.7208848e16,-1.7661713e16,-1.8114576e16,-1.8567442e16,-1.9020306e16,-1.9473171e16,-1.9926035e16,-2.03789e16,-2.0831764e16,-2.1284627e16,-2.1737493e16,-2.2190357e16,-2.2643222e16,-2.3096086e16,-2.3548951e16,-2.4001815e16,-2.4454678e16,-2.4907544e16,-2.5360407e16,-2.5813273e16,-2.6266137e16,-2.6719002e16,-2.7171866e16,-2.7624731e16,-2.8077595e16,-2.8530458e16,-2.8983324e16,-2.9436188e16,-2.9889053e16,-3.0341917e16,-3.0794782e16,-3.1247646e16,-3.170051e16,-3.2153375e16,-3.2606239e16,-3.3059104e16,-3.3511968e16,-3.3964833e16,-3.4417697e16,-3.487056e16,-3.5323426e16,-3.577629e16,-3.6229153e16,-3.668202e16,-3.7134884e16,-3.758775e16,-3.804061e16,-3.8493477e16,-3.8946343e16,-3.9399204e16,-3.985207e16,-4.0304935e16,-4.07578e16,-4.1210662e16,-4.1663528e16,-4.2116393e16,-4.2569255e16,-4.302212e16,-4.3474986e16,-4.392785e16,-4.4380713e16,-4.483358e16,-4.5286444e16,-4.5739306e16,-4.619217e16,-4.6645037e16,-4.7097903e16,-4.7550764e16,-4.800363e16,-4.8456495e16,-4.8909357e16,-4.9362222e16,-4.981509e16,-5.0267954e16,-5.0720815e16,-5.117368e16,-5.1626546e16,-5.2079408e16,-5.2532273e16,-5.298514e16,-5.3438005e16,-5.3890866e16,-5.434373e16,-5.4796597e16,-5.5249463e16,-5.5702324e16,-5.615519e16,-5.6608056e16,-5.7060917e16,-5.7513783e16,-5.796665e16,-5.8419514e16,-5.8872375e16,-5.932524e16,-5.9778106e16,-6.0230968e16,-6.0683833e16,-6.11367e16,-6.1589565e16,-6.2042426e16,-6.249529e16,-6.2948157e16,-6.340102e16,-6.3853884e16,-6.430675e16,-6.4759616e16,-6.5212477e16,-6.5665343e16,-6.611821e16,-6.657107e16,-6.7023935e16,-6.74768e16,-6.7929667e16,-6.838253e16,-6.8835394e16,-6.928826e16,-6.974112e16,-7.0193986e16,-7.064685e16,-7.1099718e16,-7.155258e16,-7.2005445e16,-7.245831e16,-7.291118e16,-7.336404e16,-7.38169e16,-7.426977e16,-7.472263e16,-7.51755e16,-7.562836e16,-7.608122e16,-7.653409e16,-7.698695e16,-7.7439815e16,-7.7892685e16,-7.834555e16,-7.879841e16,-7.925128e16,-7.970414e16,-8.0157e16,-8.060987e16,-8.106273e16,-8.15156e16,-8.196846e16,-8.2421324e16,-8.2874194e16,-8.3327056e16,-8.377992e16,-8.423279e16,-8.468565e16,-8.513851e16,-8.559138e16,-8.604424e16,-8.64971e16,-8.694997e16,-8.740283e16,-8.78557e16,-8.8308565e16,-8.876143e16,-8.92143e16,-8.966716e16,-9.012002e16,-9.057289e16,-9.102575e16,-9.147861e16,-9.193148e16,-9.238434e16,-9.283721e16,-9.329007e16,-9.3742935e16,-9.4195805e16,-9.464867e16,-9.510153e16,-9.55544e16,-9.600726e16,-9.646012e16,-9.691299e16,-9.736585e16,-9.781871e16,-9.827158e16,-9.8724445e16,-9.9177315e16,-9.963018e16,-1.0008304e17,-1.0053591e17,-1.0098877e17,-1.0144163e17,-1.018945e17,-1.0234736e17,-1.0280022e17,-1.0325309e17,-1.0370595e17,-1.04158815e17,-1.04611685e17,-1.0506455e17,-1.0551742e17,-1.0597028e17,-1.0642314e17,-1.0687601e17,-1.0732887e17,-1.0778173e17,-1.082346e17,-1.0868746e17,-1.09140324e17,-1.09593194e17,-1.1004606e17,-1.1049893e17,-1.1095179e17,-1.1140465e17,-1.1185752e17,-1.1231038e17,-1.1276324e17,-1.1321611e17,-1.1366897e17,-1.1412183e17,-1.145747e17,-1.15027565e17,-1.1548043e17,-1.159333e17,-1.1638616e17,-1.1683903e17,-1.1729189e17,-1.1774475e17,-1.1819762e17,-1.1865048e17,-1.1910334e17,-1.1955621e17,-1.2000907e17,-1.20461936e17,-1.20914806e17,-1.2136767e17,-1.2182053e17,-1.222734e17,-1.2272626e17,-1.2317913e17,-1.2363199e17,-1.2408485e17,-1.2453772e17,-1.2499058e17,-1.25443445e17,-1.25896315e17,-1.2634918e17,-1.2680204e17,-1.2725491e17,-1.2770777e17,-1.2816063e17,-1.286135e17,-1.2906636e17,-1.2951923e17,-1.2997209e17,-1.3042495e17,-1.3087782e17,-1.31330685e17,-1.3178355e17,-1.3223642e17,-1.3268928e17,-1.3314214e17,-1.3359501e17,-1.3404787e17,-1.3450074e17,-1.349536e17,-1.3540646e17,-1.3585933e17,-1.36312195e17,-1.3676506e17,-1.3721793e17,-1.3767079e17,-1.3812365e17,-1.3857652e17,-1.3902938e17,-1.3948224e17,-1.3993511e17,-1.4038797e17,-1.4084084e17,-1.412937e17,-1.41746565e17,-1.42199435e17,-1.426523e17,-1.4310516e17,-1.4355803e17,-1.4401089e17,-1.4446375e17,-1.4491661e17,-1.4536949e17,-1.4582235e17,-1.4627521e17,-1.4672807e17,-1.4718094e17,-1.476338e17,-1.4808668e17,-1.4853954e17,-1.489924e17,-1.4944526e17,-1.4989812e17,-1.50351e17,-1.5080386e17,-1.5125672e17,-1.5170958e17,-1.5216244e17,-1.526153e17,-1.5306818e17,-1.5352105e17,-1.539739e17,-1.5442677e17,-1.5487963e17,-1.5533251e17,-1.5578537e17,-1.5623823e17,-1.566911e17,-1.5714395e17,-1.5759682e17,-1.580497e17,-1.5850256e17,-1.5895542e17,-1.5940828e17,-1.5986114e17,-1.60314e17,-1.6076688e17,-1.6121974e17,-1.616726e17,-1.6212546e17,-1.6257832e17,-1.630312e17,-1.6348406e17,-1.6393693e17,-1.6438979e17,-1.6484265e17,-1.6529551e17,-1.6574839e17,-1.6620125e17,-1.6665411e17,-1.6710697e17,-1.6755983e17,-1.6801271e17,-1.6846557e17,-1.6891844e17,-1.693713e17,-1.6982416e17,-1.7027702e17,-1.707299e17,-1.7118276e17,-1.7163562e17,-1.7208848e17,-1.7254134e17,-1.729942e17,-1.7344708e17,-1.7389994e17,-1.743528e17,-1.7480567e17,-1.7525853e17,-1.757114e17,-1.7616427e17,-1.7661713e17,-1.7706999e17,-1.7752285e17,-1.7797571e17,-1.784286e17,-1.7888145e17,-1.7933432e17,-1.7978718e17,-1.8024004e17,-1.8069292e17,-1.8114578e17,-1.8159864e17,-1.820515e17,-1.8250436e17,-1.8295722e17,-1.834101e17,-1.8386296e17,-1.8431582e17,-1.8476869e17,-1.8522155e17,-1.8567443e17,-1.8612729e17,-1.8658015e17,-1.8703301e17,-1.8748587e17,-1.8793873e17,-1.8839161e17,-1.8884447e17,-1.8929733e17,-1.897502e17,-1.9020306e17,-1.9065592e17,-1.911088e17,-1.9156166e17,-1.9201452e17,-1.9246738e17,-1.9292024e17,-1.9337312e17,-1.9382598e17,-1.9427884e17,-1.947317e17,-1.9518457e17,-1.9563743e17,-1.960903e17,-1.9654317e17,-1.9699603e17,-1.9744889e17,-1.9790175e17,-1.9835463e17,-1.9880749e17,-1.9926035e17,-1.9971321e17,-2.0016607e17,-2.0061894e17,-2.0107181e17,-2.0152468e17,-2.0197754e17,-2.024304e17,-2.0288326e17,-2.0333614e17,-2.03789e17,-2.0424186e17,-2.0469472e17,-2.0514758e17,-2.0560045e17,-2.0605332e17,-2.0650619e17,-2.0695905e17,-2.074119e17,-2.0786477e17,-2.0831763e17,-2.0877051e17,-2.0922337e17,-2.0967623e17,-2.101291e17,-2.1058195e17,-2.1103483e17,-2.114877e17,-2.1194056e17,-2.1239342e17,-2.1284628e17,-2.1329914e17,-2.1375202e17,-2.1420488e17,-2.1465774e17,-2.151106e17,-2.1556346e17,-2.1601634e17,-2.164692e17,-2.1692206e17,-2.1737493e17,-2.1782779e17,-2.1828065e17,-2.1873353e17,-2.1918639e17,-2.1963925e17,-2.2009211e17,-2.2054497e17,-2.2099785e17,-2.2145071e17,-2.2190357e17,-2.2235644e17,-2.228093e17,-2.2326216e17,-2.2371504e17,-2.241679e17,-2.2462076e17,-2.2507362e17,-2.2552648e17,-2.2597934e17,-2.2643222e17,-2.2688508e17,-2.2733794e17,-2.277908e17,-2.2824367e17,-2.2869655e17,-2.291494e17,-2.2960227e17,-2.3005513e17,-2.3050799e17,-2.3096085e17,-2.3141373e17,-2.318666e17,-2.3231945e17,-2.3277232e17,-2.3322518e17,-2.3367806e17,-2.3413092e17,-2.3458378e17,-2.3503664e17,-2.354895e17,-2.3594236e17,-2.3639524e17,-2.368481e17,-2.3730096e17,-2.3775382e17,-2.3820669e17,-2.3865955e17,-2.3911243e17,-2.3956529e17,-2.4001815e17,-2.4047101e17,-2.4092387e17,-2.4137675e17,-2.4182961e17,-2.4228247e17,-2.4273533e17,-2.431882e17,-2.4364106e17,-2.4409394e17,-2.445468e17,-2.4499966e17,-2.4545252e17,-2.4590538e17,-2.4635826e17,-2.4681112e17,-2.4726398e17,-2.4771684e17,-2.481697e17,-2.4862257e17,-2.4907544e17,-2.495283e17,-2.4998117e17,-2.5043403e17,-2.5088689e17,-2.5133977e17,-2.5179263e17,-2.5224549e17,-2.5269835e17,-2.5315121e17,-2.5360407e17,-2.5405695e17,-2.5450981e17,-2.5496268e17,-2.5541554e17,-2.558684e17,-2.5632126e17,-2.5677414e17,-2.57227e17,-2.5767986e17,-2.5813272e17,-2.5858558e17,-2.5903846e17,-2.5949132e17,-2.5994419e17,-2.6039705e17,-2.608499e17,-2.6130277e17,-2.6175565e17,-2.6220851e17,-2.6266137e17,-2.6311423e17,-2.635671e17,-2.6401997e17,-2.6447283e17,-2.649257e17,-2.6537856e17,-2.6583142e17,-2.6628428e17,-2.6673716e17,-2.6719002e17,-2.6764288e17,-2.6809574e17,-2.685486e17,-2.6900148e17,-2.6945434e17,-2.699072e17,-2.7036007e17,-2.7081293e17,-2.7126579e17,-2.7171867e17,-2.7217153e17,-2.7262439e17,-2.7307725e17,-2.7353011e17,-2.7398297e17,-2.7443585e17,-2.7488871e17,-2.7534157e17,-2.7579444e17,-2.762473e17,-2.7670018e17,-2.7715304e17,-2.776059e17,-2.7805876e17,-2.7851162e17,-2.7896448e17,-2.7941736e17,-2.7987022e17,-2.8032308e17,-2.8077595e17,-2.812288e17,-2.8168168e17,-2.8213455e17,-2.825874e17,-2.8304027e17,-2.8349313e17,-2.83946e17,-2.8439887e17,-2.8485173e17,-2.853046e17,-2.8575745e17,-2.8621032e17,-2.866632e17,-2.8711606e17,-2.8756892e17,-2.8802178e17,-2.8847464e17,-2.889275e17,-2.8938036e17,-2.8983322e17,-2.902861e17,-2.9073898e17,-2.9119184e17,-2.916447e17,-2.9209756e17,-2.9255043e17,-2.930033e17,-2.9345615e17,-2.93909e17,-2.9436187e17,-2.9481473e17,-2.952676e17,-2.957205e17,-2.9617335e17,-2.966262e17,-2.9707907e17,-2.9753194e17,-2.979848e17,-2.9843766e17,-2.9889052e17,-2.9934338e17,-2.9979624e17,-3.002491e17,-3.00702e17,-3.0115486e17,-3.0160772e17,-3.020606e17,-3.0251344e17,-3.029663e17,-3.0341917e17,-3.0387203e17,-3.043249e17,-3.0477775e17,-3.052306e17,-3.056835e17,-3.0613637e17,-3.0658923e17,-3.070421e17,-3.0749495e17,-3.079478e17,-3.0840068e17,-3.0885354e17,-3.093064e17,-3.0975926e17,-3.1021212e17,-3.1066502e17,-3.1111788e17,-3.1157074e17,-3.120236e17,-3.1247646e17,-3.1292932e17,-3.133822e17,-3.1383505e17,-3.142879e17,-3.1474077e17,-3.1519363e17,-3.156465e17,-3.160994e17,-3.1655225e17,-3.170051e17,-3.1745797e17,-3.1791083e17,-3.183637e17,-3.1881656e17,-3.1926942e17,-3.1972228e17,-3.2017514e17,-3.20628e17,-3.210809e17,-3.2153376e17,-3.2198662e17,-3.2243948e17,-3.2289234e17,-3.233452e17,-3.2379807e17,-3.2425093e17,-3.247038e17,-3.2515665e17,-3.256095e17,-3.260624e17,-3.2651527e17,-3.2696813e17,-3.27421e17,-3.2787385e17,-3.283267e17,-3.2877957e17,-3.2923244e17,-3.296853e17,-3.3013816e17,-3.3059102e17,-3.310439e17,-3.3149678e17,-3.3194964e17,-3.324025e17,-3.3285536e17,-3.3330822e17,-3.337611e17,-3.3421395e17,-3.346668e17,-3.3511967e17,-3.3557253e17,-3.3602543e17,-3.364783e17,-3.3693115e17,-3.37384e17,-3.3783687e17,-3.3828973e17,-3.387426e17,-3.3919545e17,-3.396483e17,-3.4010118e17,-3.4055404e17,-3.4100693e17,-3.414598e17,-3.4191266e17,-3.4236552e17,-3.4281838e17,-3.4327124e17,-3.437241e17,-3.4417696e17,-3.4462983e17,-3.450827e17,-3.4553555e17,-3.459884e17,-3.464413e17,-3.4689417e17,-3.4734703e17,-3.477999e17,-3.4825275e17,-3.487056e17,-3.4915847e17,-3.4961133e17,-3.500642e17,-3.5051706e17,-3.5096992e17,-3.514228e17,-3.5187568e17,-3.5232854e17,-3.527814e17,-3.5323426e17,-3.5368712e17,-3.5413998e17,-3.5459284e17,-3.550457e17,-3.5549857e17,-3.5595143e17,-3.5640432e17,-3.568572e17,-3.5731005e17,-3.577629e17,-3.5821577e17,-3.5866863e17,-3.591215e17,-3.5957435e17,-3.600272e17,-3.6048008e17,-3.6093294e17,-3.6138583e17,-3.618387e17,-3.6229156e17,-3.627444e17,-3.6319728e17,-3.6365014e17,-3.64103e17,-3.6455586e17,-3.6500872e17,-3.654616e17,-3.6591445e17,-3.6636734e17,-3.668202e17,-3.6727306e17,-3.6772593e17,-3.681788e17,-3.6863165e17,-3.690845e17,-3.6953737e17,-3.6999023e17,-3.704431e17,-3.7089596e17,-3.7134885e17,-3.718017e17,-3.7225457e17,-3.7270744e17,-3.731603e17,-3.7361316e17,-3.7406602e17,-3.7451888e17,-3.7497174e17,-3.754246e17,-3.7587746e17,-3.7633036e17,-3.7678322e17,-3.772361e17,-3.7768894e17,-3.781418e17,-3.7859467e17,-3.7904753e17,-3.795004e17,-3.7995325e17,-3.804061e17,-3.8085897e17,-3.8131184e17,-3.8176473e17,-3.822176e17,-3.8267045e17,-3.831233e17,-3.8357618e17,-3.8402904e17,-3.844819e17,-3.8493476e17,-3.8538762e17,-3.858405e17,-3.8629334e17,-3.8674624e17,-3.871991e17,-3.8765196e17,-3.8810482e17,-3.885577e17,-3.8901055e17,-3.894634e17,-3.8991627e17,-3.9036913e17,-3.90822e17,-3.9127485e17,-3.9172775e17,-3.921806e17,-3.9263347e17,-3.9308633e17,-3.935392e17,-3.9399206e17,-3.9444492e17,-3.9489778e17,-3.9535064e17,-3.958035e17,-3.9625636e17,-3.9670926e17,-3.9716212e17,-3.9761498e17,-3.9806784e17,-3.985207e17,-3.9897357e17,-3.9942643e17,-3.998793e17,-4.0033215e17,-4.00785e17,-4.0123787e17,-4.0169077e17,-4.0214363e17,-4.025965e17,-4.0304935e17,-4.035022e17,-4.0395507e17,-4.0440794e17,-4.048608e17,-4.0531366e17,-4.0576652e17,-4.0621938e17,-4.0667228e17,-4.0712514e17,-4.07578e17,-4.0803086e17,-4.0848372e17,-4.089366e17,-4.0938945e17,-4.098423e17,-4.1029517e17,-4.1074803e17,-4.112009e17,-4.1165375e17,-4.1210665e17,-4.125595e17,-4.1301237e17,-4.1346523e17,-4.139181e17,-4.1437095e17,-4.148238e17,-4.1527668e17,-4.1572954e17,-4.161824e17,-4.1663526e17,-4.1708816e17,-4.1754102e17,-4.1799388e17,-4.1844674e17,-4.188996e17,-4.1935246e17,-4.1980532e17,-4.202582e17,-4.2071105e17,-4.211639e17,-4.2161677e17,-4.2206967e17,-4.2252253e17,-4.229754e17,-4.2342825e17,-4.238811e17,-4.2433397e17,-4.2478683e17,-4.252397e17,-4.2569256e17,-4.2614542e17,-4.2659828e17,-4.2705118e17,-4.2750404e17,-4.279569e17,-4.2840976e17,-4.2886262e17,-4.2931548e17,-4.2976834e17,-4.302212e17,-4.3067407e17,-4.3112693e17,-4.315798e17,-4.320327e17,-4.3248555e17,-4.329384e17,-4.3339127e17,-4.3384413e17,-4.34297e17,-4.3474985e17,-4.352027e17,-4.3565558e17,-4.3610844e17,-4.365613e17,-4.370142e17,-4.3746706e17,-4.379199e17,-4.3837278e17,-4.3882564e17,-4.392785e17,-4.3973136e17,-4.4018422e17,-4.406371e17,-4.4108995e17,-4.415428e17,-4.419957e17,-4.4244856e17,-4.4290143e17,-4.433543e17,-4.4380715e17,-4.4426e17,-4.4471287e17,-4.4516573e17,-4.456186e17,-4.4607146e17,-4.465243e17,-4.4697718e17,-4.4743007e17,-4.4788293e17,-4.483358e17,-4.4878866e17,-4.4924152e17,-4.4969438e17,-4.5014724e17,-4.506001e17,-4.5105296e17,-4.5150583e17,-4.519587e17,-4.5241158e17,-4.5286444e17,-4.533173e17,-4.5377017e17,-4.5422303e17,-4.546759e17,-4.5512875e17,-4.555816e17,-4.5603447e17,-4.5648733e17,-4.569402e17,-4.573931e17,-4.5784595e17,-4.582988e17,-4.5875168e17,-4.5920454e17,-4.596574e17,-4.6011026e17,-4.6056312e17,-4.6101598e17,-4.6146884e17,-4.619217e17,-4.623746e17,-4.6282746e17,-4.6328032e17,-4.637332e17,-4.6418605e17,-4.646389e17,-4.6509177e17,-4.6554463e17,-4.659975e17,-4.6645035e17,-4.669032e17,-4.673561e17,-4.6780897e17,-4.6826183e17,-4.687147e17,-4.6916756e17,-4.696204e17,-4.7007328e17,-4.7052614e17,-4.70979e17,-4.7143186e17,-4.7188472e17,-4.7233762e17,-4.7279048e17,-4.7324334e17,-4.736962e17,-4.7414907e17,-4.7460193e17,-4.750548e17,-4.7550765e17,-4.759605e17,-4.7641337e17,-4.7686623e17,-4.773191e17,-4.77772e17,-4.7822485e17,-4.786777e17,-4.7913057e17,-4.7958344e17,-4.800363e17,-4.8048916e17,-4.8094202e17,-4.8139488e17,-4.8184774e17,-4.823006e17,-4.827535e17,-4.8320636e17,-4.8365922e17,-4.841121e17,-4.8456494e17,-4.850178e17,-4.8547067e17,-4.8592353e17,-4.863764e17,-4.8682925e17,-4.872821e17,-4.87735e17,-4.8818787e17,-4.8864073e17,-4.890936e17,-4.8954645e17,-4.899993e17,-4.9045218e17,-4.9090504e17,-4.913579e17,-4.9181076e17,-4.9226362e17,-4.9271652e17,-4.9316938e17,-4.9362224e17,-4.940751e17,-4.9452796e17,-4.9498082e17,-4.954337e17,-4.9588655e17,-4.963394e17,-4.9679227e17,-4.9724513e17,-4.9769803e17,-4.981509e17,-4.9860375e17,-4.990566e17,-4.9950947e17,-4.9996233e17,-5.004152e17,-5.0086806e17,-5.0132092e17,-5.0177378e17,-5.0222664e17,-5.0267954e17,-5.031324e17,-5.0358526e17,-5.0403812e17,-5.0449098e17,-5.0494384e17,-5.053967e17,-5.0584957e17,-5.0630243e17,-5.067553e17,-5.0720815e17,-5.0766105e17,-5.081139e17,-5.0856677e17,-5.0901963e17,-5.094725e17,-5.0992535e17,-5.103782e17,-5.1083108e17,-5.1128394e17,-5.117368e17,-5.1218966e17,-5.1264252e17,-5.130954e17,-5.1354828e17,-5.1400114e17,-5.14454e17,-5.1490686e17,-5.1535972e17,-5.158126e17,-5.1626545e17,-5.167183e17,-5.1717117e17,-5.1762403e17,-5.1807693e17,-5.185298e17,-5.1898265e17,-5.194355e17,-5.1988837e17,-5.2034123e17,-5.207941e17,-5.2124695e17,-5.216998e17,-5.2215268e17,-5.2260554e17,-5.2305843e17,-5.235113e17,-5.2396416e17,-5.2441702e17,-5.2486988e17,-5.2532274e17,-5.257756e17,-5.2622846e17,-5.2668133e17,-5.271342e17,-5.2758705e17,-5.2803994e17,-5.284928e17,-5.2894567e17,-5.2939853e17,-5.298514e17,-5.3030425e17,-5.307571e17,-5.3120997e17,-5.3166283e17,-5.321157e17,-5.3256856e17,-5.3302145e17,-5.334743e17,-5.3392718e17,-5.3438004e17,-5.348329e17,-5.3528576e17,-5.3573862e17,-5.3619148e17,-5.3664434e17,-5.370972e17,-5.3755007e17,-5.3800296e17,-5.3845582e17,-5.389087e17,-5.3936155e17,-5.398144e17,-5.4026727e17,-5.4072013e17,-5.41173e17,-5.4162585e17,-5.420787e17,-5.4253158e17,-5.4298444e17,-5.4343733e17,-5.438902e17,-5.4434306e17,-5.447959e17,-5.4524878e17,-5.4570164e17,-5.461545e17,-5.4660736e17,-5.4706022e17,-5.475131e17,-5.4796595e17,-5.4841884e17,-5.488717e17,-5.4932456e17,-5.4977743e17,-5.502303e17,-5.5068315e17,-5.51136e17,-5.5158887e17,-5.5204173e17,-5.524946e17,-5.5294746e17,-5.5340035e17,-5.538532e17,-5.5430607e17,-5.5475894e17,-5.552118e17,-5.5566466e17,-5.5611752e17,-5.5657038e17,-5.5702324e17,-5.574761e17,-5.5792896e17,-5.5838186e17,-5.5883472e17,-5.592876e17,-5.5974044e17,-5.601933e17,-5.6064617e17,-5.6109903e17,-5.615519e17,-5.6200475e17,-5.624576e17,-5.6291047e17,-5.6336337e17,-5.6381623e17,-5.642691e17,-5.6472195e17,-5.651748e17,-5.6562768e17,-5.6608054e17,-5.665334e17,-5.6698626e17,-5.6743912e17,-5.67892e17,-5.6834488e17,-5.6879774e17,-5.692506e17,-5.6970346e17,-5.7015632e17,-5.706092e17,-5.7106205e17,-5.715149e17,-5.7196777e17,-5.7242063e17,-5.728735e17,-5.733264e17,-5.7377925e17,-5.742321e17,-5.7468497e17,-5.7513783e17,-5.755907e17,-5.7604356e17,-5.764964e17,-5.769493e17,-5.7740214e17,-5.77855e17,-5.7830786e17,-5.787607e17,-5.792136e17,-5.7966645e17,-5.801193e17,-5.805722e17,-5.810251e17,-5.8147796e17,-5.819308e17,-5.823837e17,-5.8283655e17,-5.832894e17,-5.837423e17,-5.841951e17,-5.84648e17,-5.8510085e17,-5.855537e17,-5.860066e17,-5.8645944e17,-5.869123e17,-5.8736516e17,-5.87818e17,-5.882709e17,-5.8872374e17,-5.891766e17,-5.8962947e17,-5.900823e17,-5.905352e17,-5.909881e17,-5.91441e17,-5.9189384e17,-5.923467e17,-5.9279956e17,-5.932524e17,-5.937053e17,-5.9415815e17,-5.94611e17,-5.950639e17,-5.955167e17,-5.959696e17,-5.9642245e17,-5.968753e17,-5.973282e17,-5.9778104e17,-5.982339e17,-5.9868676e17,-5.991396e17,-5.995925e17,-6.0004535e17,-6.004982e17,-6.009511e17,-6.01404e17,-6.0185686e17,-6.023097e17,-6.027626e17,-6.0321544e17,-6.036683e17,-6.041212e17,-6.04574e17,-6.050269e17,-6.0547975e17,-6.059326e17,-6.063855e17,-6.0683833e17,-6.072912e17,-6.0774406e17,-6.081969e17,-6.086498e17,-6.0910264e17,-6.095555e17,-6.1000836e17,-6.104612e17,-6.109141e17,-6.11367e17,-6.118199e17,-6.1227274e17,-6.127256e17,-6.1317846e17,-6.136313e17,-6.140842e17,-6.1453705e17,-6.149899e17,-6.154428e17,-6.158956e17,-6.163485e17,-6.1680135e17,-6.172542e17,-6.177071e17,-6.1815994e17,-6.186128e17,-6.1906566e17,-6.195185e17,-6.199714e17,-6.2042424e17,-6.208771e17,-6.2133004e17,-6.217829e17,-6.2223576e17,-6.226886e17,-6.231415e17,-6.2359434e17,-6.240472e17,-6.2450006e17,-6.249529e17,-6.254058e17,-6.2585865e17,-6.263115e17,-6.267644e17,-6.272172e17,-6.276701e17,-6.2812296e17,-6.285758e17,-6.290287e17,-6.2948154e17,-6.299344e17,-6.3038726e17,-6.308401e17,-6.31293e17,-6.317459e17,-6.321988e17,-6.3265164e17,-6.331045e17,-6.3355736e17,-6.340102e17,-6.344631e17,-6.3491594e17,-6.353688e17,-6.358217e17,-6.362745e17,-6.367274e17,-6.3718025e17,-6.376331e17,-6.38086e17,-6.3853884e17,-6.389917e17,-6.3944456e17,-6.398974e17,-6.403503e17,-6.4080314e17,-6.41256e17,-6.417089e17,-6.421618e17,-6.4261466e17,-6.430675e17,-6.435204e17,-6.4397324e17,-6.444261e17,-6.4487896e17,-6.453318e17,-6.457847e17,-6.4623755e17,-6.466904e17,-6.471433e17,-6.475961e17,-6.48049e17,-6.4850185e17,-6.489547e17,-6.494076e17,-6.4986044e17,-6.503133e17,-6.5076616e17,-6.51219e17,-6.5167195e17,-6.521248e17,-6.525777e17,-6.5303054e17,-6.534834e17,-6.5393626e17,-6.543891e17,-6.54842e17,-6.5529484e17,-6.557477e17,-6.5620057e17,-6.566534e17,-6.571063e17,-6.5755915e17,-6.58012e17,-6.584649e17,-6.589177e17,-6.593706e17,-6.5982346e17,-6.602763e17,-6.607292e17,-6.6118204e17,-6.616349e17,-6.620878e17,-6.625407e17,-6.6299355e17,-6.634464e17,-6.638993e17,-6.6435214e17,-6.64805e17,-6.6525786e17,-6.657107e17,-6.661636e17,-6.6661645e17,-6.670693e17,-6.675222e17,-6.67975e17,-6.684279e17,-6.6888075e17,-6.693336e17,-6.697865e17,-6.7023934e17,-6.706922e17,-6.7114506e17,-6.715979e17,-6.7205085e17,-6.725037e17,-6.729566e17,-6.734094e17,-6.738623e17,-6.7431516e17,-6.74768e17,-6.752209e17,-6.7567374e17,-6.761266e17,-6.7657946e17,-6.770323e17,-6.774852e17,-6.7793805e17,-6.783909e17,-6.788438e17,-6.792966e17,-6.797495e17,-6.8020235e17,-6.806552e17,-6.811081e17,-6.8156094e17,-6.820139e17,-6.824667e17,-6.829196e17,-6.8337245e17,-6.838253e17,-6.842782e17,-6.8473104e17,-6.851839e17,-6.8563676e17,-6.860896e17,-6.865425e17,-6.8699534e17,-6.874482e17,-6.879011e17,-6.883539e17,-6.888068e17,-6.8925965e17,-6.897125e17,-6.901654e17,-6.906182e17,-6.910711e17,-6.9152396e17,-6.919768e17,-6.9242975e17,-6.928826e17,-6.933355e17,-6.937883e17,-6.942412e17,-6.9469406e17,-6.951469e17,-6.955998e17,-6.9605264e17,-6.965055e17,-6.9695836e17,-6.974112e17,-6.978641e17,-6.9831695e17,-6.987698e17,-6.992227e17,-6.996755e17,-7.001284e17,-7.0058125e17,-7.010341e17,-7.01487e17,-7.0193984e17,-7.023928e17,-7.028456e17,-7.032985e17,-7.0375135e17,-7.042042e17,-7.046571e17,-7.0510993e17,-7.055628e17,-7.0601566e17,-7.064685e17,-7.069214e17,-7.0737424e17,-7.078271e17,-7.0827996e17,-7.087328e17,-7.091857e17,-7.0963855e17,-7.100914e17,-7.105443e17,-7.109971e17,-7.1145e17,-7.1190286e17,-7.123558e17,-7.1280865e17,-7.132615e17,-7.137144e17,-7.141672e17,-7.146201e17,-7.1507295e17,-7.155258e17,-7.159787e17,-7.1643154e17,-7.168844e17,-7.1733726e17,-7.177901e17,-7.18243e17,-7.1869584e17,-7.191487e17,-7.196016e17,-7.200544e17,-7.205073e17,-7.2096015e17,-7.21413e17,-7.218659e17,-7.223188e17,-7.2277167e17,-7.232245e17,-7.236774e17,-7.2413025e17,-7.245831e17,-7.25036e17,-7.254888e17,-7.259417e17,-7.2639456e17,-7.268474e17,-7.273003e17,-7.2775314e17,-7.28206e17,-7.2865886e17,-7.291117e17,-7.295646e17,-7.3001745e17,-7.304703e17,-7.309232e17,-7.31376e17,-7.318289e17,-7.3228175e17,-7.327347e17,-7.3318754e17,-7.336404e17,-7.340933e17,-7.345461e17,-7.34999e17,-7.3545185e17,-7.359047e17,-7.363576e17,-7.3681044e17,-7.372633e17,-7.3771616e17,-7.38169e17,-7.386219e17,-7.3907474e17,-7.395276e17,-7.3998047e17,-7.404333e17,-7.408862e17,-7.4133905e17,-7.417919e17,-7.422448e17,-7.426977e17,-7.4315056e17,-7.436034e17,-7.440563e17,-7.4450915e17,-7.44962e17,-7.454149e17,-7.458677e17,-7.463206e17,-7.4677345e17,-7.472263e17,-7.476792e17,-7.4813204e17,-7.485849e17,-7.4903776e17,-7.494906e17,-7.499435e17,-7.5039634e17,-7.508492e17,-7.513021e17,-7.517549e17,-7.522078e17,-7.526607e17,-7.531136e17,-7.5356644e17,-7.540193e17,-7.544722e17,-7.54925e17,-7.553779e17,-7.5583075e17,-7.562836e17,-7.567365e17,-7.571893e17,-7.576422e17,-7.5809506e17,-7.585479e17,-7.590008e17,-7.5945364e17,-7.599065e17,-7.6035936e17,-7.608122e17,-7.612651e17,-7.6171795e17,-7.621708e17,-7.626237e17,-7.630766e17,-7.6352946e17,-7.639823e17,-7.644352e17,-7.6488805e17,-7.653409e17,-7.657938e17,-7.662466e17,-7.666995e17,-7.6715235e17,-7.676052e17,-7.680581e17,-7.6851094e17,-7.689638e17,-7.6941666e17,-7.698695e17,-7.703224e17,-7.7077524e17,-7.712281e17,-7.71681e17,-7.721338e17,-7.725867e17,-7.730396e17,-7.734925e17,-7.7394534e17,-7.743982e17,-7.7485106e17,-7.753039e17,-7.757568e17,-7.7620965e17,-7.766625e17,-7.771154e17,-7.775682e17,-7.780211e17,-7.7847395e17,-7.789268e17,-7.793797e17,-7.7983254e17,-7.802854e17,-7.8073826e17,-7.811911e17,-7.81644e17,-7.8209685e17,-7.825497e17,-7.8300264e17,-7.834555e17,-7.8390836e17,-7.843612e17,-7.848141e17,-7.8526694e17,-7.857198e17,-7.861727e17,-7.866255e17,-7.870784e17,-7.8753125e17,-7.879841e17,-7.88437e17,-7.8888983e17,-7.893427e17,-7.8979556e17,-7.902484e17,-7.907013e17,-7.9115414e17,-7.91607e17,-7.9205986e17,-7.925127e17,-7.929656e17,-7.934185e17,-7.938714e17,-7.9432424e17,-7.947771e17,-7.9522996e17,-7.956828e17,-7.961357e17,-7.9658855e17,-7.970414e17,-7.974943e17,-7.979471e17,-7.984e17,-7.9885285e17,-7.993057e17,-7.997586e17,-8.0021144e17,-8.006643e17,-8.0111716e17,-8.0157e17,-8.020229e17,-8.0247574e17,-8.029286e17,-8.0338154e17,-8.038344e17,-8.0428726e17,-8.047401e17,-8.05193e17,-8.0564584e17,-8.060987e17,-8.0655156e17,-8.070044e17,-8.074573e17,-8.0791015e17,-8.08363e17,-8.088159e17,-8.092687e17,-8.097216e17,-8.1017446e17,-8.106273e17,-8.110802e17,-8.1153304e17,-8.119859e17,-8.1243876e17,-8.128916e17,-8.1334455e17,-8.137974e17,-8.142503e17,-8.1470314e17,-8.15156e17,-8.1560886e17,-8.160617e17,-8.165146e17,-8.1696744e17,-8.174203e17,-8.178732e17,-8.18326e17,-8.187789e17,-8.1923175e17,-8.196846e17,-8.201375e17,-8.2059034e17,-8.210432e17,-8.2149606e17,-8.219489e17,-8.224018e17,-8.2285464e17,-8.233075e17,-8.237604e17,-8.242133e17,-8.2466616e17,-8.25119e17,-8.255719e17,-8.2602474e17,-8.264776e17,-8.2693046e17,-8.273833e17,-8.278362e17,-8.2828905e17,-8.287419e17,-8.291948e17,-8.296476e17,-8.301005e17,-8.3055335e17,-8.310062e17,-8.314591e17,-8.3191194e17,-8.323648e17,-8.3281766e17,-8.332705e17,-8.3372345e17,-8.341763e17,-8.346292e17,-8.3508204e17,-8.355349e17,-8.3598776e17,-8.364406e17,-8.368935e17,-8.3734634e17,-8.377992e17,-8.382521e17,-8.387049e17,-8.391578e17,-8.3961065e17,-8.400635e17,-8.405164e17,-8.409692e17,-8.414221e17,-8.4187496e17,-8.423278e17,-8.427807e17,-8.4323354e17,-8.436865e17,-8.441393e17,-8.445922e17,-8.4504505e17,-8.454979e17,-8.459508e17,-8.4640364e17,-8.468565e17,-8.4730936e17,-8.477622e17,-8.482151e17,-8.4866795e17,-8.491208e17,-8.495737e17,-8.500265e17,-8.504794e17,-8.5093225e17,-8.513851e17,-8.51838e17,-8.5229084e17,-8.527437e17,-8.5319656e17,-8.536495e17,-8.5410235e17,-8.545552e17,-8.550081e17,-8.5546093e17,-8.559138e17,-8.5636666e17,-8.568195e17,-8.572724e17,-8.5772524e17,-8.581781e17,-8.5863096e17,-8.590838e17,-8.595367e17,-8.5998955e17,-8.604424e17,-8.608953e17,-8.613481e17,-8.61801e17,-8.6225385e17,-8.627067e17,-8.631596e17,-8.6361244e17,-8.640654e17,-8.645182e17,-8.649711e17,-8.6542395e17,-8.658768e17,-8.663297e17,-8.6678254e17,-8.672354e17,-8.6768826e17,-8.681411e17,-8.68594e17,-8.6904684e17,-8.694997e17,-8.699526e17,-8.704054e17,-8.708583e17,-8.7131115e17,-8.71764e17,-8.722169e17,-8.7266973e17,-8.731226e17,-8.7357546e17,-8.740284e17,-8.7448125e17,-8.749341e17,-8.75387e17,-8.758398e17,-8.762927e17,-8.7674556e17,-8.771984e17,-8.776513e17,-8.7810414e17,-8.78557e17,-8.7900986e17,-8.794627e17,-8.799156e17,-8.8036845e17,-8.808213e17,-8.812742e17,-8.81727e17,-8.821799e17,-8.8263275e17,-8.830856e17,-8.835385e17,-8.839914e17,-8.844443e17,-8.848971e17,-8.8535e17,-8.8580285e17,-8.862557e17,-8.867086e17,-8.8716144e17,-8.876143e17,-8.8806716e17,-8.8852e17,-8.889729e17,-8.8942574e17,-8.898786e17,-8.9033146e17,-8.907843e17,-8.912372e17,-8.9169005e17,-8.921429e17,-8.925958e17,-8.930486e17,-8.935015e17,-8.9395436e17,-8.944073e17,-8.9486015e17,-8.95313e17,-8.957659e17,-8.962187e17,-8.966716e17,-8.9712445e17,-8.975773e17,-8.980302e17,-8.9848304e17,-8.989359e17,-8.9938876e17,-8.998416e17,-9.002945e17,-9.0074734e17,-9.012002e17,-9.016531e17,-9.021059e17,-9.025588e17,-9.0301165e17,-9.034645e17,-9.039174e17,-9.043703e17,-9.0482317e17,-9.05276e17,-9.057289e17,-9.0618175e17,-9.066346e17,-9.070875e17,-9.075403e17,-9.079932e17,-9.0844606e17,-9.088989e17,-9.093518e17,-9.0980464e17,-9.102575e17,-9.1071036e17,-9.111632e17,-9.116161e17,-9.1206895e17,-9.125218e17,-9.129747e17,-9.134275e17,-9.138804e17,-9.143333e17,-9.147862e17,-9.1523905e17,-9.156919e17,-9.161448e17,-9.165976e17,-9.170505e17,-9.1750335e17,-9.179562e17,-9.184091e17,-9.1886194e17,-9.193148e17,-9.1976766e17,-9.202205e17,-9.206734e17,-9.2112624e17,-9.215791e17,-9.2203197e17,-9.224848e17,-9.229377e17,-9.2339055e17,-9.238434e17,-9.242963e17,-9.247492e17,-9.2520206e17,-9.256549e17,-9.261078e17,-9.2656065e17,-9.270135e17,-9.274664e17,-9.279192e17,-9.283721e17,-9.2882495e17,-9.292778e17,-9.297307e17,-9.3018354e17,-9.306364e17,-9.3108926e17,-9.315421e17,-9.31995e17,-9.3244785e17,-9.329007e17,-9.333536e17,-9.338064e17,-9.342593e17,-9.347122e17,-9.351651e17,-9.3561794e17,-9.360708e17,-9.365237e17,-9.369765e17,-9.374294e17,-9.3788225e17,-9.383351e17,-9.38788e17,-9.392408e17,-9.396937e17,-9.4014656e17,-9.405994e17,-9.410523e17,-9.4150514e17,-9.41958e17,-9.4241086e17,-9.428637e17,-9.433166e17,-9.4376945e17,-9.442223e17,-9.4467524e17,-9.451281e17,-9.4558096e17,-9.460338e17,-9.464867e17,-9.4693955e17,-9.473924e17,-9.478453e17,-9.482981e17,-9.48751e17,-9.4920385e17,-9.496567e17,-9.501096e17,-9.5056244e17,-9.510153e17,-9.5146816e17,-9.51921e17,-9.523739e17,-9.5282674e17,-9.532796e17,-9.537325e17,-9.541853e17,-9.546382e17,-9.550911e17,-9.55544e17,-9.5599684e17,-9.564497e17,-9.5690256e17,-9.573554e17,-9.578083e17,-9.5826115e17,-9.58714e17,-9.591669e17,-9.596197e17,-9.600726e17,-9.6052546e17,-9.609783e17,-9.614312e17,-9.6188404e17,-9.623369e17,-9.6278976e17,-9.632426e17,-9.636955e17,-9.6414835e17,-9.646012e17,-9.6505414e17,-9.65507e17,-9.6595986e17,-9.664127e17,-9.668656e17,-9.6731844e17,-9.677713e17,-9.682242e17,-9.68677e17,-9.691299e17,-9.6958275e17,-9.700356e17,-9.704885e17,-9.7094134e17,-9.713942e17,-9.7184706e17,-9.722999e17,-9.727528e17,-9.7320564e17,-9.736585e17,-9.7411136e17,-9.745642e17,-9.7501716e17,-9.7547e17,-9.759229e17,-9.7637574e17,-9.768286e17,-9.7728146e17,-9.777343e17,-9.781872e17,-9.7864005e17,-9.790929e17,-9.795458e17,-9.799986e17,-9.804515e17,-9.8090435e17,-9.813572e17,-9.818101e17,-9.8226294e17,-9.827158e17,-9.8316866e17,-9.836215e17,-9.840744e17,-9.8452724e17,-9.849802e17,-9.8543304e17,-9.858859e17,-9.8633876e17,-9.867916e17,-9.872445e17,-9.8769734e17,-9.881502e17,-9.8860307e17,-9.890559e17,-9.895088e17,-9.8996165e17,-9.904145e17,-9.908674e17,-9.913202e17,-9.917731e17,-9.9222596e17,-9.926788e17,-9.931317e17,-9.9358454e17,-9.940374e17,-9.9449026e17,-9.949431e17,-9.9539605e17,-9.958489e17,-9.963018e17,-9.9675464e17,-9.972075e17,-9.9766036e17,-9.981132e17,-9.985661e17,-9.9901895e17,-9.994718e17,-9.999247e17,-1.0003775e18,-1.0008304e18,-1.00128325e18,-1.0017361e18,-1.002189e18,-1.00264184e18,-1.0030947e18,-1.00354756e18,-1.0040004e18,-1.0044533e18,-1.00490614e18,-1.0053591e18,-1.0058119e18,-1.0062648e18,-1.00671766e18,-1.0071705e18,-1.0076234e18,-1.00807624e18,-1.0085291e18,-1.00898196e18,-1.0094348e18,-1.0098877e18,-1.01034055e18,-1.0107934e18,-1.0112463e18,-1.0116991e18,-1.012152e18,-1.01260485e18,-1.0130577e18,-1.0135106e18,-1.01396344e18,-1.0144163e18,-1.01486916e18,-1.0153221e18,-1.01577495e18,-1.0162278e18,-1.0166807e18,-1.01713354e18,-1.0175864e18,-1.01803926e18,-1.0184921e18,-1.018945e18,-1.01939784e18,-1.0198507e18,-1.0203036e18,-1.0207564e18,-1.0212093e18,-1.02166215e18,-1.022115e18,-1.0225679e18,-1.0230207e18,-1.0234736e18,-1.02392646e18,-1.0243793e18,-1.0248322e18,-1.02528504e18,-1.025738e18,-1.0261908e18,-1.0266437e18,-1.02709656e18,-1.0275494e18,-1.0280023e18,-1.02845514e18,-1.028908e18,-1.02936086e18,-1.0298137e18,-1.0302666e18,-1.03071945e18,-1.0311723e18,-1.0316252e18,-1.032078e18,-1.0325309e18,-1.03298375e18,-1.0334366e18,-1.0338895e18,-1.03434234e18,-1.0347952e18,-1.03524806e18,-1.035701e18,-1.03615385e18,-1.0366067e18,-1.0370596e18,-1.03751243e18,-1.0379653e18,-1.03841816e18,-1.038871e18,-1.0393239e18,-1.03977674e18,-1.0402296e18,-1.04068246e18,-1.0411353e18,-1.0415882e18,-1.04204105e18,-1.0424939e18,-1.0429468e18,-1.0433996e18,-1.0438525e18,-1.04430536e18,-1.0447582e18,-1.0452111e18,-1.045664e18,-1.0461169e18,-1.0465697e18,-1.0470226e18,-1.04747545e18,-1.0479283e18,-1.0483812e18,-1.04883404e18,-1.0492869e18,-1.04973976e18,-1.0501926e18,-1.0506455e18,-1.05109834e18,-1.0515512e18,-1.0520041e18,-1.0524569e18,-1.0529098e18,-1.05336265e18,-1.0538155e18,-1.0542684e18,-1.05472123e18,-1.0551741e18,-1.05562696e18,-1.0560799e18,-1.05653275e18,-1.0569856e18,-1.0574385e18,-1.0578913e18,-1.0583442e18,-1.05879706e18,-1.0592499e18,-1.0597028e18,-1.06015564e18,-1.0606085e18,-1.06106136e18,-1.0615142e18,-1.0619671e18,-1.06241995e18,-1.0628728e18,-1.0633257e18,-1.0637785e18,-1.0642314e18,-1.06468425e18,-1.0651371e18,-1.06559e18,-1.0660429e18,-1.0664958e18,-1.0669486e18,-1.0674015e18,-1.06785435e18,-1.0683072e18,-1.0687601e18,-1.06921294e18,-1.0696658e18,-1.07011866e18,-1.0705715e18,-1.0710244e18,-1.07147724e18,-1.0719301e18,-1.07238297e18,-1.0728358e18,-1.0732887e18,-1.07374155e18,-1.0741944e18,-1.0746473e18,-1.0751001e18,-1.075553e18,-1.0760059e18,-1.0764588e18,-1.07691165e18,-1.0773645e18,-1.0778174e18,-1.0782702e18,-1.0787231e18,-1.07917595e18,-1.0796288e18,-1.0800817e18,-1.08053454e18,-1.0809874e18,-1.08144026e18,-1.0818931e18,-1.082346e18,-1.08279884e18,-1.0832517e18,-1.0837046e18,-1.0841574e18,-1.0846103e18,-1.08506315e18,-1.085516e18,-1.0859689e18,-1.0864218e18,-1.0868747e18,-1.0873275e18,-1.0877804e18,-1.08823325e18,-1.0886861e18,-1.089139e18,-1.0895918e18,-1.0900447e18,-1.09049756e18,-1.0909504e18,-1.0914033e18,-1.09185614e18,-1.092309e18,-1.09276186e18,-1.0932147e18,-1.0936676e18,-1.09412045e18,-1.0945733e18,-1.0950262e18,-1.095479e18,-1.0959319e18,-1.0963848e18,-1.0968377e18,-1.09729055e18,-1.0977434e18,-1.0981963e18,-1.0986491e18,-1.099102e18,-1.09955485e18,-1.1000077e18,-1.1004606e18,-1.10091344e18,-1.1013663e18,-1.10181916e18,-1.102272e18,-1.1027249e18,-1.10317774e18,-1.1036306e18,-1.1040835e18,-1.1045363e18,-1.1049892e18,-1.10544205e18,-1.1058949e18,-1.10634784e18,-1.1068007e18,-1.10725356e18,-1.1077064e18,-1.1081593e18,-1.10861215e18,-1.109065e18,-1.1095179e18,-1.1099707e18,-1.1104236e18,-1.11087645e18,-1.1113293e18,-1.1117822e18,-1.11223504e18,-1.1126879e18,-1.11314076e18,-1.1135936e18,-1.1140465e18,-1.11449935e18,-1.1149522e18,-1.1154051e18,-1.1158579e18,-1.11631086e18,-1.1167637e18,-1.1172166e18,-1.11766944e18,-1.1181223e18,-1.1185752e18,-1.119028e18,-1.1194809e18,-1.11993375e18,-1.1203866e18,-1.1208395e18,-1.12129233e18,-1.1217452e18,-1.12219806e18,-1.1226509e18,-1.1231038e18,-1.12355664e18,-1.1240095e18,-1.12446236e18,-1.1249152e18,-1.1253681e18,-1.12582095e18,-1.1262738e18,-1.12672674e18,-1.1271796e18,-1.12763246e18,-1.1280853e18,-1.1285382e18,-1.12899105e18,-1.1294439e18,-1.1298968e18,-1.1303496e18,-1.1308025e18,-1.13125535e18,-1.1317082e18,-1.1321611e18,-1.13261394e18,-1.1330668e18,-1.13351966e18,-1.1339725e18,-1.1344254e18,-1.13487824e18,-1.1353311e18,-1.135784e18,-1.1362368e18,-1.13668976e18,-1.1371426e18,-1.1375955e18,-1.13804834e18,-1.1385012e18,-1.13895406e18,-1.1394069e18,-1.1398598e18,-1.14031265e18,-1.1407655e18,-1.1412184e18,-1.1416712e18,-1.1421241e18,-1.14257696e18,-1.1430298e18,-1.1434827e18,-1.14393554e18,-1.1443884e18,-1.14484126e18,-1.1452941e18,-1.145747e18,-1.14619985e18,-1.1466528e18,-1.14710564e18,-1.1475585e18,-1.14801136e18,-1.1484642e18,-1.1489171e18,-1.14936994e18,-1.1498228e18,-1.1502757e18,-1.1507285e18,-1.1511814e18,-1.15163425e18,-1.1520871e18,-1.15254e18,-1.1529928e18,-1.1534457e18,-1.1538986e18,-1.1543514e18,-1.1548043e18,-1.1552571e18,-1.15571e18,-1.1561629e18,-1.1566157e18,-1.1570686e18,-1.1575214e18,-1.1579743e18,-1.1584272e18,-1.15888e18,-1.1593329e18,-1.1597858e18,-1.1602386e18,-1.1606915e18,-1.1611443e18,-1.1615972e18,-1.1620502e18,-1.162503e18,-1.1629559e18,-1.1634088e18,-1.1638616e18,-1.1643145e18,-1.1647674e18,-1.1652202e18,-1.1656731e18,-1.166126e18,-1.1665788e18,-1.1670317e18,-1.1674845e18,-1.1679374e18,-1.1683903e18,-1.1688431e18,-1.169296e18,-1.1697488e18,-1.1702017e18,-1.1706546e18,-1.1711074e18,-1.1715603e18,-1.1720131e18,-1.172466e18,-1.1729189e18,-1.1733717e18,-1.1738246e18,-1.1742775e18,-1.1747303e18,-1.1751832e18,-1.175636e18,-1.1760889e18,-1.1765418e18,-1.1769946e18,-1.1774475e18,-1.1779003e18,-1.1783532e18,-1.1788061e18,-1.1792589e18,-1.1797118e18,-1.1801647e18,-1.1806175e18,-1.1810704e18,-1.1815232e18,-1.1819762e18,-1.1824291e18,-1.182882e18,-1.1833348e18,-1.1837877e18,-1.1842405e18,-1.1846934e18,-1.1851463e18,-1.1855991e18,-1.186052e18,-1.1865049e18,-1.1869577e18,-1.1874106e18,-1.1878634e18,-1.1883163e18,-1.1887692e18,-1.189222e18,-1.1896749e18,-1.1901277e18,-1.1905806e18,-1.1910335e18,-1.1914863e18,-1.1919392e18,-1.192392e18,-1.1928449e18,-1.1932978e18,-1.1937506e18,-1.1942035e18,-1.1946564e18,-1.1951092e18,-1.1955621e18,-1.196015e18,-1.1964678e18,-1.1969207e18,-1.1973735e18,-1.1978264e18,-1.1982792e18,-1.1987321e18,-1.199185e18,-1.1996378e18,-1.2000907e18,-1.2005436e18,-1.2009964e18,-1.2014493e18,-1.2019021e18,-1.2023551e18,-1.202808e18,-1.2032609e18,-1.2037137e18,-1.2041666e18,-1.2046194e18,-1.2050723e18,-1.2055252e18,-1.205978e18,-1.2064309e18,-1.2068837e18,-1.2073366e18,-1.2077895e18,-1.2082423e18,-1.2086952e18,-1.209148e18,-1.2096009e18,-1.2100538e18,-1.2105066e18,-1.2109595e18,-1.2114124e18,-1.2118652e18,-1.2123181e18,-1.212771e18,-1.2132238e18,-1.2136767e18,-1.2141295e18,-1.2145824e18,-1.2150353e18,-1.2154881e18,-1.215941e18,-1.2163938e18,-1.2168467e18,-1.2172996e18,-1.2177524e18,-1.2182053e18,-1.2186581e18,-1.219111e18,-1.2195639e18,-1.2200167e18,-1.2204696e18,-1.2209225e18,-1.2213753e18,-1.2218282e18,-1.222281e18,-1.222734e18,-1.2231869e18,-1.2236398e18,-1.2240926e18,-1.2245455e18,-1.2249983e18,-1.2254512e18,-1.225904e18,-1.2263569e18,-1.2268098e18,-1.2272626e18,-1.2277155e18,-1.2281684e18,-1.2286212e18,-1.2290741e18,-1.229527e18,-1.2299798e18,-1.2304327e18,-1.2308855e18,-1.2313384e18,-1.2317913e18,-1.2322441e18,-1.232697e18,-1.2331498e18,-1.2336027e18,-1.2340556e18,-1.2345084e18,-1.2349613e18,-1.2354142e18,-1.235867e18,-1.2363199e18,-1.2367727e18,-1.2372256e18,-1.2376785e18,-1.2381313e18,-1.2385842e18,-1.239037e18,-1.2394899e18,-1.2399428e18,-1.2403956e18,-1.2408485e18,-1.2413013e18,-1.2417542e18,-1.2422071e18,-1.2426601e18,-1.243113e18,-1.2435658e18,-1.2440187e18,-1.2444715e18,-1.2449244e18,-1.2453772e18,-1.2458301e18,-1.246283e18,-1.2467358e18,-1.2471887e18,-1.2476415e18,-1.2480944e18,-1.2485473e18,-1.2490001e18,-1.249453e18,-1.2499059e18,-1.2503587e18,-1.2508116e18,-1.2512644e18,-1.2517173e18,-1.2521702e18,-1.252623e18,-1.2530759e18,-1.2535287e18,-1.2539816e18,-1.2544345e18,-1.2548873e18,-1.2553402e18,-1.255793e18,-1.2562459e18,-1.2566988e18,-1.2571516e18,-1.2576045e18,-1.2580574e18,-1.2585102e18,-1.2589631e18,-1.259416e18,-1.2598688e18,-1.2603217e18,-1.2607745e18,-1.2612274e18,-1.2616802e18,-1.2621331e18,-1.262586e18,-1.263039e18,-1.2634918e18,-1.2639447e18,-1.2643976e18,-1.2648504e18,-1.2653033e18,-1.2657561e18,-1.266209e18,-1.2666619e18,-1.2671147e18,-1.2675676e18,-1.2680204e18,-1.2684733e18,-1.2689262e18,-1.269379e18,-1.2698319e18,-1.2702848e18,-1.2707376e18,-1.2711905e18,-1.2716433e18,-1.2720962e18,-1.272549e18,-1.2730019e18,-1.2734548e18,-1.2739076e18,-1.2743605e18,-1.2748134e18,-1.2752662e18,-1.2757191e18,-1.276172e18,-1.2766248e18,-1.2770777e18,-1.2775305e18,-1.2779834e18,-1.2784363e18,-1.2788891e18,-1.279342e18,-1.2797948e18,-1.2802477e18,-1.2807006e18,-1.2811534e18,-1.2816063e18,-1.2820591e18,-1.282512e18,-1.2829649e18,-1.2834179e18,-1.2838707e18,-1.2843236e18,-1.2847765e18,-1.2852293e18,-1.2856822e18,-1.286135e18,-1.2865879e18,-1.2870408e18,-1.2874936e18,-1.2879465e18,-1.2883993e18,-1.2888522e18,-1.289305e18,-1.2897579e18,-1.2902108e18,-1.2906636e18,-1.2911165e18,-1.2915694e18,-1.2920222e18,-1.2924751e18,-1.292928e18,-1.2933808e18,-1.2938337e18,-1.2942865e18,-1.2947394e18,-1.2951923e18,-1.2956451e18,-1.296098e18,-1.2965508e18,-1.2970037e18,-1.2974566e18,-1.2979094e18,-1.2983623e18,-1.2988152e18,-1.299268e18,-1.2997209e18,-1.3001737e18,-1.3006266e18,-1.3010795e18,-1.3015323e18,-1.3019852e18,-1.302438e18,-1.3028909e18,-1.3033439e18,-1.3037968e18,-1.3042496e18,-1.3047025e18,-1.3051553e18,-1.3056082e18,-1.3060611e18,-1.306514e18,-1.3069668e18,-1.3074197e18,-1.3078725e18,-1.3083254e18,-1.3087782e18,-1.3092311e18,-1.309684e18,-1.3101368e18,-1.3105897e18,-1.3110425e18,-1.3114954e18,-1.3119483e18,-1.3124011e18,-1.312854e18,-1.3133069e18,-1.3137597e18,-1.3142126e18,-1.3146654e18,-1.3151183e18,-1.3155712e18,-1.316024e18,-1.3164769e18,-1.3169297e18,-1.3173826e18,-1.3178355e18,-1.3182883e18,-1.3187412e18,-1.319194e18,-1.3196469e18,-1.3200998e18,-1.3205526e18,-1.3210055e18,-1.3214584e18,-1.3219112e18,-1.3223641e18,-1.322817e18,-1.3232698e18,-1.3237228e18,-1.3241757e18,-1.3246285e18,-1.3250814e18,-1.3255342e18,-1.3259871e18,-1.32644e18,-1.3268928e18,-1.3273457e18,-1.3277986e18,-1.3282514e18,-1.3287043e18,-1.3291571e18,-1.32961e18,-1.3300629e18,-1.3305157e18,-1.3309686e18,-1.3314214e18,-1.3318743e18,-1.3323272e18,-1.33278e18,-1.3332329e18,-1.3336858e18,-1.3341386e18,-1.3345915e18,-1.3350443e18,-1.3354972e18,-1.33595e18,-1.3364029e18,-1.3368558e18,-1.3373086e18,-1.3377615e18,-1.3382144e18,-1.3386672e18,-1.3391201e18,-1.339573e18,-1.3400258e18,-1.3404787e18,-1.3409315e18,-1.3413844e18,-1.3418373e18,-1.3422901e18,-1.342743e18,-1.3431958e18,-1.3436488e18,-1.3441017e18,-1.3445546e18,-1.3450074e18,-1.3454603e18,-1.3459131e18,-1.346366e18,-1.3468189e18,-1.3472717e18,-1.3477246e18,-1.3481775e18,-1.3486303e18,-1.3490832e18,-1.349536e18,-1.3499889e18,-1.3504418e18,-1.3508946e18,-1.3513475e18,-1.3518003e18,-1.3522532e18,-1.352706e18,-1.3531589e18,-1.3536118e18,-1.3540646e18,-1.3545175e18,-1.3549704e18,-1.3554232e18,-1.3558761e18,-1.356329e18,-1.3567818e18,-1.3572347e18,-1.3576875e18,-1.3581404e18,-1.3585933e18,-1.3590461e18,-1.359499e18,-1.3599518e18,-1.3604047e18,-1.3608576e18,-1.3613104e18,-1.3617633e18,-1.3622162e18,-1.362669e18,-1.3631219e18,-1.3635747e18,-1.3640277e18,-1.3644806e18,-1.3649335e18,-1.3653863e18,-1.3658392e18,-1.366292e18,-1.3667449e18,-1.3671978e18,-1.3676506e18,-1.3681035e18,-1.3685564e18,-1.3690092e18,-1.3694621e18,-1.369915e18,-1.3703678e18,-1.3708207e18,-1.3712735e18,-1.3717264e18,-1.3721792e18,-1.3726321e18,-1.373085e18,-1.3735378e18,-1.3739907e18,-1.3744435e18,-1.3748964e18,-1.3753493e18,-1.3758021e18,-1.376255e18,-1.3767079e18,-1.3771607e18,-1.3776136e18,-1.3780664e18,-1.3785193e18,-1.3789722e18,-1.379425e18,-1.3798779e18,-1.3803307e18,-1.3807836e18,-1.3812365e18,-1.3816893e18,-1.3821422e18,-1.382595e18,-1.3830479e18,-1.3835008e18,-1.3839536e18,-1.3844066e18,-1.3848595e18,-1.3853124e18,-1.3857652e18,-1.3862181e18,-1.386671e18,-1.3871238e18,-1.3875767e18,-1.3880295e18,-1.3884824e18,-1.3889352e18,-1.3893881e18,-1.389841e18,-1.3902938e18,-1.3907467e18,-1.3911996e18,-1.3916524e18,-1.3921053e18,-1.3925581e18,-1.393011e18,-1.3934639e18,-1.3939167e18,-1.3943696e18,-1.3948224e18,-1.3952753e18,-1.3957282e18,-1.396181e18,-1.3966339e18,-1.3970868e18,-1.3975396e18,-1.3979925e18,-1.3984453e18,-1.3988982e18,-1.399351e18,-1.3998039e18,-1.4002568e18,-1.4007096e18,-1.4011625e18,-1.4016154e18,-1.4020682e18,-1.4025211e18,-1.402974e18,-1.4034268e18,-1.4038797e18,-1.4043327e18,-1.4047855e18,-1.4052384e18,-1.4056913e18,-1.4061441e18,-1.406597e18,-1.4070498e18,-1.4075027e18,-1.4079556e18,-1.4084084e18,-1.4088613e18,-1.4093141e18,-1.409767e18,-1.4102199e18,-1.4106727e18,-1.4111256e18,-1.4115785e18,-1.4120313e18,-1.4124842e18,-1.412937e18,-1.4133899e18,-1.4138428e18,-1.4142956e18,-1.4147485e18,-1.4152013e18,-1.4156542e18,-1.416107e18,-1.4165599e18,-1.4170128e18,-1.4174657e18,-1.4179185e18,-1.4183714e18,-1.4188242e18,-1.4192771e18,-1.41973e18,-1.4201828e18,-1.4206357e18,-1.4210885e18,-1.4215414e18,-1.4219943e18,-1.4224471e18,-1.4229e18,-1.4233528e18,-1.4238057e18,-1.4242586e18,-1.4247116e18,-1.4251644e18,-1.4256173e18,-1.4260702e18,-1.426523e18,-1.4269759e18,-1.4274287e18,-1.4278816e18,-1.4283345e18,-1.4287873e18,-1.4292402e18,-1.429693e18,-1.4301459e18,-1.4305988e18,-1.4310516e18,-1.4315045e18,-1.4319574e18,-1.4324102e18,-1.4328631e18,-1.433316e18,-1.4337688e18,-1.4342217e18,-1.4346745e18,-1.4351274e18,-1.4355802e18,-1.4360331e18,-1.436486e18,-1.4369388e18,-1.4373917e18,-1.4378445e18,-1.4382974e18,-1.4387503e18,-1.4392031e18,-1.439656e18,-1.4401089e18,-1.4405617e18,-1.4410146e18,-1.4414674e18,-1.4419203e18,-1.4423732e18,-1.442826e18,-1.4432789e18,-1.4437317e18,-1.4441846e18,-1.4446376e18,-1.4450905e18,-1.4455433e18,-1.4459962e18,-1.446449e18,-1.4469019e18,-1.4473548e18,-1.4478076e18,-1.4482605e18,-1.4487134e18,-1.4491662e18,-1.4496191e18,-1.450072e18,-1.4505248e18,-1.4509777e18,-1.4514305e18,-1.4518834e18,-1.4523363e18,-1.4527891e18,-1.453242e18,-1.4536948e18,-1.4541477e18,-1.4546006e18,-1.4550534e18,-1.4555063e18,-1.4559591e18,-1.456412e18,-1.4568649e18,-1.4573177e18,-1.4577706e18,-1.4582234e18,-1.4586763e18,-1.4591292e18,-1.459582e18,-1.4600349e18,-1.4604878e18,-1.4609406e18,-1.4613935e18,-1.4618463e18,-1.4622992e18,-1.462752e18,-1.4632049e18,-1.4636578e18,-1.4641106e18,-1.4645635e18,-1.4650165e18,-1.4654694e18,-1.4659222e18,-1.4663751e18,-1.466828e18,-1.4672808e18,-1.4677337e18,-1.4681865e18,-1.4686394e18,-1.4690923e18,-1.4695451e18,-1.469998e18,-1.4704508e18,-1.4709037e18,-1.4713566e18,-1.4718094e18,-1.4722623e18,-1.4727151e18,-1.473168e18,-1.4736209e18,-1.4740737e18,-1.4745266e18,-1.4749795e18,-1.4754323e18,-1.4758852e18,-1.476338e18,-1.4767909e18,-1.4772438e18,-1.4776966e18,-1.4781495e18,-1.4786023e18,-1.4790552e18,-1.4795081e18,-1.4799609e18,-1.4804138e18,-1.4808667e18,-1.4813195e18,-1.4817724e18,-1.4822252e18,-1.4826781e18,-1.483131e18,-1.4835838e18,-1.4840367e18,-1.4844895e18,-1.4849424e18,-1.4853954e18,-1.4858483e18,-1.4863011e18,-1.486754e18,-1.4872068e18,-1.4876597e18,-1.4881126e18,-1.4885654e18,-1.4890183e18,-1.4894712e18,-1.489924e18,-1.4903769e18,-1.4908297e18,-1.4912826e18,-1.4917355e18,-1.4921883e18,-1.4926412e18,-1.493094e18,-1.4935469e18,-1.4939998e18,-1.4944526e18,-1.4949055e18,-1.4953584e18,-1.4958112e18,-1.4962641e18,-1.496717e18,-1.4971698e18,-1.4976227e18,-1.4980755e18,-1.4985284e18,-1.4989812e18,-1.4994341e18,-1.499887e18,-1.5003398e18,-1.5007927e18,-1.5012456e18,-1.5016984e18,-1.5021513e18,-1.5026041e18,-1.503057e18,-1.5035099e18,-1.5039627e18,-1.5044156e18,-1.5048684e18,-1.5053214e18,-1.5057743e18,-1.5062272e18,-1.50668e18,-1.5071329e18,-1.5075857e18,-1.5080386e18,-1.5084915e18,-1.5089443e18,-1.5093972e18,-1.50985e18,-1.5103029e18,-1.5107558e18,-1.5112086e18,-1.5116615e18,-1.5121144e18,-1.5125672e18,-1.5130201e18,-1.513473e18,-1.5139258e18,-1.5143787e18,-1.5148315e18,-1.5152844e18,-1.5157373e18,-1.5161901e18,-1.516643e18,-1.5170958e18,-1.5175487e18,-1.5180016e18,-1.5184544e18,-1.5189073e18,-1.5193601e18,-1.519813e18,-1.5202659e18,-1.5207187e18,-1.5211716e18,-1.5216244e18,-1.5220773e18,-1.5225302e18,-1.522983e18,-1.5234359e18,-1.5238888e18,-1.5243416e18,-1.5247945e18,-1.5252473e18,-1.5257003e18,-1.5261532e18,-1.526606e18,-1.5270589e18,-1.5275118e18,-1.5279646e18,-1.5284175e18,-1.5288704e18,-1.5293232e18,-1.5297761e18,-1.530229e18,-1.5306818e18,-1.5311347e18,-1.5315875e18,-1.5320404e18,-1.5324933e18,-1.5329461e18,-1.533399e18,-1.5338518e18,-1.5343047e18,-1.5347576e18,-1.5352104e18,-1.5356633e18,-1.5361162e18,-1.536569e18,-1.5370219e18,-1.5374747e18,-1.5379276e18,-1.5383805e18,-1.5388333e18,-1.5392862e18,-1.539739e18,-1.5401919e18,-1.5406448e18,-1.5410976e18,-1.5415505e18,-1.5420033e18,-1.5424562e18,-1.5429091e18,-1.543362e18,-1.5438148e18,-1.5442677e18,-1.5447205e18,-1.5451734e18,-1.5456262e18,-1.5460792e18,-1.5465321e18,-1.546985e18,-1.5474378e18,-1.5478907e18,-1.5483435e18,-1.5487964e18,-1.5492493e18,-1.5497021e18,-1.550155e18,-1.5506079e18,-1.5510607e18,-1.5515136e18,-1.5519664e18,-1.5524193e18,-1.5528722e18,-1.553325e18,-1.5537779e18,-1.5542307e18,-1.5546836e18,-1.5551365e18,-1.5555893e18,-1.5560422e18,-1.556495e18,-1.5569479e18,-1.5574008e18,-1.5578536e18,-1.5583065e18,-1.5587594e18,-1.5592122e18,-1.5596651e18,-1.560118e18,-1.5605708e18,-1.5610237e18,-1.5614765e18,-1.5619294e18,-1.5623822e18,-1.5628351e18,-1.563288e18,-1.5637408e18,-1.5641937e18,-1.5646466e18,-1.5650994e18,-1.5655523e18,-1.5660053e18,-1.5664581e18,-1.566911e18,-1.5673639e18,-1.5678167e18,-1.5682696e18,-1.5687224e18,-1.5691753e18,-1.5696282e18,-1.570081e18,-1.5705339e18,-1.5709867e18,-1.5714396e18,-1.5718925e18,-1.5723453e18,-1.5727982e18,-1.573251e18,-1.5737039e18,-1.5741568e18,-1.5746096e18,-1.5750625e18,-1.5755154e18,-1.5759682e18,-1.5764211e18,-1.576874e18,-1.5773268e18,-1.5777797e18,-1.5782325e18,-1.5786854e18,-1.5791383e18,-1.5795911e18,-1.580044e18,-1.5804968e18,-1.5809497e18,-1.5814026e18,-1.5818554e18,-1.5823083e18,-1.5827611e18,-1.583214e18,-1.5836669e18,-1.5841197e18,-1.5845726e18,-1.5850255e18,-1.5854783e18,-1.5859312e18,-1.5863842e18,-1.586837e18,-1.5872899e18,-1.5877428e18,-1.5881956e18,-1.5886485e18,-1.5891013e18,-1.5895542e18,-1.590007e18,-1.5904599e18,-1.5909128e18,-1.5913656e18,-1.5918185e18,-1.5922714e18,-1.5927242e18,-1.5931771e18,-1.59363e18,-1.5940828e18,-1.5945357e18,-1.5949885e18,-1.5954414e18,-1.5958943e18,-1.5963471e18,-1.5968e18,-1.5972528e18,-1.5977057e18,-1.5981586e18,-1.5986114e18,-1.5990643e18,-1.5995172e18,-1.59997e18,-1.6004229e18,-1.6008757e18,-1.6013286e18,-1.6017815e18,-1.6022343e18,-1.6026872e18,-1.60314e18,-1.6035929e18,-1.6040458e18,-1.6044986e18,-1.6049515e18,-1.6054043e18,-1.6058572e18,-1.6063102e18,-1.6067631e18,-1.607216e18,-1.6076688e18,-1.6081217e18,-1.6085745e18,-1.6090274e18,-1.6094802e18,-1.6099331e18,-1.610386e18,-1.6108388e18,-1.6112917e18,-1.6117445e18,-1.6121974e18,-1.6126503e18,-1.6131031e18,-1.613556e18,-1.6140089e18,-1.6144617e18,-1.6149146e18,-1.6153674e18,-1.6158203e18,-1.6162732e18,-1.616726e18,-1.6171789e18,-1.6176317e18,-1.6180846e18,-1.6185375e18,-1.6189903e18,-1.6194432e18,-1.619896e18,-1.6203489e18,-1.6208018e18,-1.6212546e18,-1.6217075e18,-1.6221604e18,-1.6226132e18,-1.6230661e18,-1.623519e18,-1.6239718e18,-1.6244247e18,-1.6248775e18,-1.6253304e18,-1.6257832e18,-1.6262361e18,-1.6266891e18,-1.627142e18,-1.6275948e18,-1.6280477e18,-1.6285006e18,-1.6289534e18,-1.6294063e18,-1.6298591e18,-1.630312e18,-1.6307649e18,-1.6312177e18,-1.6316706e18,-1.6321234e18,-1.6325763e18,-1.6330292e18,-1.633482e18,-1.6339349e18,-1.6343878e18,-1.6348406e18,-1.6352935e18,-1.6357463e18,-1.6361992e18,-1.636652e18,-1.6371049e18,-1.6375578e18,-1.6380106e18,-1.6384635e18,-1.6389164e18,-1.6393692e18,-1.6398221e18,-1.640275e18,-1.6407278e18,-1.6411807e18,-1.6416335e18,-1.6420864e18,-1.6425393e18,-1.6429921e18,-1.643445e18,-1.6438978e18,-1.6443507e18,-1.6448036e18,-1.6452564e18,-1.6457093e18,-1.6461621e18,-1.646615e18,-1.647068e18,-1.6475209e18,-1.6479737e18,-1.6484266e18,-1.6488795e18,-1.6493323e18,-1.6497852e18,-1.650238e18,-1.6506909e18,-1.6511438e18,-1.6515966e18,-1.6520495e18,-1.6525023e18,-1.6529552e18,-1.653408e18,-1.6538609e18,-1.6543138e18,-1.6547666e18,-1.6552195e18,-1.6556724e18,-1.6561252e18,-1.6565781e18,-1.657031e18,-1.6574838e18,-1.6579367e18,-1.6583895e18,-1.6588424e18,-1.6592953e18,-1.6597481e18,-1.660201e18,-1.6606538e18,-1.6611067e18,-1.6615596e18,-1.6620124e18,-1.6624653e18,-1.6629182e18,-1.663371e18,-1.6638239e18,-1.6642767e18,-1.6647296e18,-1.6651825e18,-1.6656353e18,-1.6660882e18,-1.666541e18,-1.666994e18,-1.6674469e18,-1.6678998e18,-1.6683526e18,-1.6688055e18,-1.6692583e18,-1.6697112e18,-1.6701641e18,-1.670617e18,-1.6710698e18,-1.6715227e18,-1.6719755e18,-1.6724284e18,-1.6728812e18,-1.6733341e18,-1.673787e18,-1.6742398e18,-1.6746927e18,-1.6751455e18,-1.6755984e18,-1.6760513e18,-1.6765041e18,-1.676957e18,-1.6774099e18,-1.6778627e18,-1.6783156e18,-1.6787684e18,-1.6792213e18,-1.6796742e18,-1.680127e18,-1.6805799e18,-1.6810327e18,-1.6814856e18,-1.6819385e18,-1.6823913e18,-1.6828442e18,-1.683297e18,-1.6837499e18,-1.6842028e18,-1.6846556e18,-1.6851085e18,-1.6855614e18,-1.6860142e18,-1.6864671e18,-1.68692e18,-1.687373e18,-1.6878258e18,-1.6882787e18,-1.6887315e18,-1.6891844e18,-1.6896372e18,-1.6900901e18,-1.690543e18,-1.6909958e18,-1.6914487e18,-1.6919016e18,-1.6923544e18,-1.6928073e18,-1.6932601e18,-1.693713e18,-1.6941659e18,-1.6946187e18,-1.6950716e18,-1.6955244e18,-1.6959773e18,-1.6964302e18,-1.696883e18,-1.6973359e18,-1.6977888e18,-1.6982416e18,-1.6986945e18,-1.6991473e18,-1.6996002e18,-1.700053e18,-1.7005059e18,-1.7009588e18,-1.7014116e18,-1.7018645e18,-1.7023174e18,-1.7027702e18,-1.7032231e18,-1.703676e18,-1.7041288e18,-1.7045817e18,-1.7050345e18,-1.7054874e18,-1.7059403e18,-1.7063931e18,-1.706846e18,-1.707299e18,-1.7077518e18,-1.7082047e18,-1.7086576e18,-1.7091104e18,-1.7095633e18,-1.7100161e18,-1.710469e18,-1.7109219e18,-1.7113747e18,-1.7118276e18,-1.7122805e18,-1.7127333e18,-1.7131862e18,-1.713639e18,-1.7140919e18,-1.7145448e18,-1.7149976e18,-1.7154505e18,-1.7159033e18,-1.7163562e18,-1.716809e18,-1.7172619e18,-1.7177148e18,-1.7181677e18,-1.7186205e18,-1.7190734e18,-1.7195262e18,-1.7199791e18,-1.720432e18,-1.7208848e18,-1.7213377e18,-1.7217905e18,-1.7222434e18,-1.7226963e18,-1.7231491e18,-1.723602e18,-1.7240548e18,-1.7245077e18,-1.7249606e18,-1.7254134e18,-1.7258663e18,-1.7263192e18,-1.726772e18,-1.7272249e18,-1.7276779e18,-1.7281307e18,-1.7285836e18,-1.7290365e18,-1.7294893e18,-1.7299422e18,-1.730395e18,-1.7308479e18,-1.7313008e18,-1.7317536e18,-1.7322065e18,-1.7326594e18,-1.7331122e18,-1.7335651e18,-1.734018e18,-1.7344708e18,-1.7349237e18,-1.7353765e18,-1.7358294e18,-1.7362822e18,-1.7367351e18,-1.737188e18,-1.7376408e18,-1.7380937e18,-1.7385465e18,-1.7389994e18,-1.7394523e18,-1.7399051e18,-1.740358e18,-1.7408109e18,-1.7412637e18,-1.7417166e18,-1.7421694e18,-1.7426223e18,-1.7430752e18,-1.743528e18,-1.7439809e18,-1.7444337e18,-1.7448866e18,-1.7453395e18,-1.7457923e18,-1.7462452e18,-1.746698e18,-1.7471509e18,-1.7476038e18,-1.7480568e18,-1.7485096e18,-1.7489625e18,-1.7494154e18,-1.7498682e18,-1.7503211e18,-1.750774e18,-1.7512268e18,-1.7516797e18,-1.7521325e18,-1.7525854e18,-1.7530382e18,-1.7534911e18,-1.753944e18,-1.7543968e18,-1.7548497e18,-1.7553026e18,-1.7557554e18,-1.7562083e18,-1.7566611e18,-1.757114e18,-1.7575669e18,-1.7580197e18,-1.7584726e18,-1.7589254e18,-1.7593783e18,-1.7598312e18,-1.760284e18,-1.7607369e18,-1.7611898e18,-1.7616426e18,-1.7620955e18,-1.7625483e18,-1.7630012e18,-1.763454e18,-1.7639069e18,-1.7643598e18,-1.7648126e18,-1.7652655e18,-1.7657184e18,-1.7661712e18,-1.7666241e18,-1.767077e18,-1.7675298e18,-1.7679828e18,-1.7684357e18,-1.7688885e18,-1.7693414e18,-1.7697943e18,-1.7702471e18,-1.7707e18,-1.7711528e18,-1.7716057e18,-1.7720586e18,-1.7725114e18,-1.7729643e18,-1.7734171e18,-1.77387e18,-1.7743229e18,-1.7747757e18,-1.7752286e18,-1.7756815e18,-1.7761343e18,-1.7765872e18,-1.77704e18,-1.7774929e18,-1.7779458e18,-1.7783986e18,-1.7788515e18,-1.7793043e18,-1.7797572e18,-1.78021e18,-1.7806629e18,-1.7811158e18,-1.7815687e18,-1.7820215e18,-1.7824744e18,-1.7829272e18,-1.7833801e18,-1.783833e18,-1.7842858e18,-1.7847387e18,-1.7851915e18,-1.7856444e18,-1.7860973e18,-1.7865501e18,-1.787003e18,-1.7874558e18,-1.7879087e18,-1.7883617e18,-1.7888146e18,-1.7892674e18,-1.7897203e18,-1.7901732e18,-1.790626e18,-1.7910789e18,-1.7915317e18,-1.7919846e18,-1.7924375e18,-1.7928903e18,-1.7933432e18,-1.793796e18,-1.7942489e18,-1.7947018e18,-1.7951546e18,-1.7956075e18,-1.7960604e18,-1.7965132e18,-1.7969661e18,-1.797419e18,-1.7978718e18,-1.7983247e18,-1.7987775e18,-1.7992304e18,-1.7996832e18,-1.8001361e18,-1.800589e18,-1.8010418e18,-1.8014947e18,-1.8019476e18,-1.8024004e18,-1.8028533e18,-1.8033061e18,-1.803759e18,-1.8042119e18,-1.8046647e18,-1.8051176e18,-1.8055704e18,-1.8060233e18,-1.8064762e18,-1.806929e18,-1.8073819e18,-1.8078347e18,-1.8082876e18,-1.8087406e18,-1.8091935e18,-1.8096463e18,-1.8100992e18,-1.810552e18,-1.8110049e18]}
diff --git a/lib/node_modules/@stdlib/math/base/special/covercosf/test/fixtures/julia/large_positive.json b/lib/node_modules/@stdlib/math/base/special/covercosf/test/fixtures/julia/large_positive.json
new file mode 100644
index 000000000000..43df8349bd15
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/covercosf/test/fixtures/julia/large_positive.json
@@ -0,0 +1 @@
+{"expected":[1.0458187,0.005961299,0.7832446,1.946774,1.4232044,0.84462535,0.390469,0.93755776,1.7668755,1.2772901,0.6930246,0.5210465,1.9664264,0.14832169,1.1246408,0.19454587,1.9843552,0.4501369,1.5328331,0.019415438,0.41569227,0.81364703,1.8408892,0.02856785,1.4966348,1.2876365,0.10733056,1.5324936,1.2473377,0.12695748,1.9547179,0.55853164,0.65312135,1.919071,0.081448436,0.6926428,1.9017885,0.065722585,1.384579,1.4047669,0.051630974,1.8920755,1.3661771,0.5022234,1.9101906,0.15982366,0.53892446,1.9267137,0.13788205,0.5764321,1.5509617,0.11744845,1.8046736,1.5155846,0.098558605,1.8287957,1.4793056,0.39800346,1.8514681,0.23396975,0.43191856,1.6818645,0.20776135,0.4668274,1.6506819,0.1829387,1.7243972,1.6183611,0.27379096,1.7525897,1.5849588,0.30317235,1.7794657,0.320063,0.33377254,1.7677193,0.28999656,0.36553818,1.7402539,0.261172,0.39841354,1.7114936,0.19376665,1.883786,1.6814888,0.21920902,1.8634486,1.6502919,0.2460171,1.8416007,0.08872241,0.2741441,1.8182807,0.10673821,0.3035407,1.7935295,0.12631655,1.9352126,1.7673903,0.14742303,1.9195888,1.7399085,0.17002094,1.9023564,0.044502437,0.19407058,1.8835456,0.057673275,0.21952993,1.8631895,0.07249248,1.9720533,1.8413233,0.088934004,1.9613869,1.8179855,0.10696918,1.9490387,0.015184581,0.12656647,1.9350306,0.023305058,1.9975384,1.9193869,0.033133924,1.9937339,1.9021349,0.04465407,1.9881911,2.9623508e-5,0.057845294,1.9809198,0.0012260079,0.07268453,1.9719326,0.004169464,1.9984996,1.9612455,0.008854806,1.9999161,1.9488769,0.015273869,1.9995835,0.0068681836,0.023415387,1.9975023,0.0028444529,0.033265114,1.9936764,0.0005649924,1.983888,1.9881123,3.3676624e-5,1.9905033,1.98082,0.0012515783,1.995386,0.029195786,0.0042164326,1.9985275,1.9611038,1.940552,1.9999225,1.9487146,1.9539316,1.9995685,1.8270316,1.9656425,1.9974658,1.8498144,1.9756644,1.9936186,1.8711107,1.9839797,1.9880333,1.8908832,1.9905738,1.9807196,1.9090974,1.9954351,1.7505147,1.9257214,1.9985553,1.7774916,1.9407263,1.9999287,1.8031082,1.9540855,1.9995532,1.8273201,1.9657758,1.9974293,1.8500849,1.9757769,1.662293,1.8713627,1.984071,1.6930428,1.8911164,1.990644,1.7225804,1.9093113,1.995484,1.750854,1.9259155,1.5287123,1.7778144,1.9409003,1.5637417,1.8034141,1.9542391,1.5977852,1.8276085,1.9659089,1.6307831,1.8503551,1.9758891,1.6626775,1.8716145,1.4187939,1.6934128,1.8913493,1.4563985,1.7229352,1.9095248,1.4932046,1.751193,1.9261093,1.529148,1.778137,1.9410741,1.5641658,1.8037198,1.3023442,1.5981967,1.8278966,1.3419371,1.6311815,1.8506253,1.3809317,1.663062,1.8718662,1.4192603,1.6937828,1.1398983,1.4568553,1.72329,1.1811789,1.4936512,1.751532,1.2221427,1.5295837,1.7784593,1.262718,1.5645897,1.8040252,1.3028336,1.5986083,1.0153923,1.3424195,1.6315796,1.057188,1.3814065,1.6634463,1.0988839,1.4197264,1.6941525,1.1404067,1.457312,1.7236445,1.1816839,1.4940977,0.89064616,1.2226434,1.530019,0.9323053,1.2632134,1.5650134,0.9740828,1.3033229,1.5990195,1.0159056,1.342902,1.6319777,1.0577008,1.3818811,0.76760554,1.0993948,1.4201924,0.80847824,1.1409152,1.4577686,0.84968597,1.1821889,1.494544,0.89115655,1.2231439,0.609356,0.9328176,1.2637087,0.6481894,0.97459614,1.3038121,0.6876382,1.016419,1.3433843,0.7276334,1.0582134,1.3823557,0.76810503,1.0999057,0.49766517,0.80898225,1.1414235,0.53426015,0.8501936,1.1826937,0.5716698,0.891667,1.2236445,1.5308897,0.14415246,0.36108333,0.6486701,0.97510946,1.3043014,1.5998415,0.19036245,0.42759466,0.7281275,1.058726,1.3828301,0.070159376,0.24223477,0.49810922,0.8094863,1.1419318,1.4586813,0.10415614,0.2994067,0.5721339,0.8921775,1.2241449,0.021974206,0.14441818,0.36147845,0.64915097,0.9756228,1.3047905,0.042814195,0.19066393,0.42801577,0.7286217,1.0592386,1.3833044,0.07034844,0.24256992,0.49855345,0.8099904,1.1424401,0.008039117,0.10438442,0.29977322,0.5725981,0.89268804,1.2246454,0.022081375,0.14468408,0.3618737,0.64963186,0.97613615,0.00079619884,0.04296291,0.19096565,0.42843705,0.72911596,1.0597512,0.00095671415,0.070537746,0.24290532,0.49899775,0.8104946,1.1429483,0.008104265,0.10461295,0.3001399,0.57306236,0.89319855,0.0075606704,0.022188842,0.14495027,0.36226916,0.6501128,0.97664946,0.00077581406,0.04311198,0.19126755,0.42885846,0.7296103,0.04171002,0.0009793043,0.07072729,0.2432409,0.49944222,0.8109988,0.021181107,0.008169591,0.10484171,0.30050677,0.57352674,0.10245699,0.0074977875,0.022296548,0.14521664,0.36266476,0.6505939,0.06875372,0.0007557273,0.04326123,0.19156969,0.42928004,0.7301047,0.04156339,0.0010021329,0.07091713,0.24357665,0.4998868,0.14217335,0.021076143,0.008235216,0.10507071,0.30087382,0.57399124,0.10223067,0.007435143,0.022404492,0.14548326,0.36306053,0.23940206,0.06856674,0.00073593855,0.043410778,0.191872,0.4297018,0.18781573,0.041417062,0.0010252595,0.07110715,0.24391264,0.35774142,0.14190954,0.020971358,0.008301139,0.10529995,0.3012411,0.29594314,0.10200459,0.0073727965,0.022512674,0.1457501,0.3634565,0.2390688,0.06838,0.0007163286,0.043560565,0.19217455,0.42361176,0.18751627,0.04127091,0.0010486245,0.07129747,0.24424875,0.3573479,0.14164597,0.02086687,0.0083673,0.10552943,0.56727827,0.29557854,0.101778805,0.0073106885,0.022621155,0.14601713,0.49346393,0.23873574,0.068193495,0.0006970167,0.04371059,0.722955,0.42319226,0.187217,0.04112506,0.0010722876,0.07148796,0.643639,0.35695457,0.14138263,0.020762682,0.0084337,0.105759144,0.5668154,0.29521418,0.1015532,0.007248819,0.022729874,0.803705,0.4930213,0.2384029,0.06800729,0.00067800283,0.043860853,0.72246164,0.42277288,0.18691796,0.040979445,0.001096189,0.96921915,0.6431593,0.35656142,0.14111954,0.020658731,0.008500397,0.88581103,0.5663526,0.29485,0.10132784,0.0071872473,0.02283889,0.8032015,0.49257874,0.23807019,0.067821264,0.0006592274,1.0523298,0.72196835,0.42235363,0.18661916,0.04083407,0.0011203289,0.9687059,0.6426797,0.35616845,0.14085662,0.02055502,1.217396,0.88530093,0.56588995,0.294486,0.10110277,0.007125914,1.1350789,0.8026981,0.49213636,0.23773772,0.06763548,1.3764285,1.0518169,0.7214751,0.42193455,0.18632054,0.040688932,1.2977027,0.9681927,0.6422001,0.3557756,0.140594,0.020451546,1.2168949,0.88479084,0.5654274,0.29412216,0.10087788,1.4520638,1.1345701,0.8021947,0.49169403,0.23740548,0.06744999,1.3759527,1.0513042,0.720982,0.42151564,0.18602216,1.5938776,1.2972125,0.96767944,0.64172065,0.35538292,0.14033157,1.524576,1.2163936,0.88428074,0.564965,0.29375857,1.7192082,1.4516057,1.1340612,0.8016914,0.49125195,0.23707342,1.6586396,1.3754768,1.0507914,0.7204889,0.42109686,0.18572396,1.5934644,1.2967222,0.96716624,0.6412413,0.35499048,1.7744224,1.5241387,1.2158922,0.88377076,0.5645027,0.2933951,1.7188514,1.4511474,1.1335523,0.8011881,0.49080992,1.868711,1.6582531,1.375001,1.0502785,0.719996,0.4206782,1.8242866,1.593051,1.2962317,0.966653,0.6407621,1.9388882,1.7740974,1.5237014,1.2153908,0.8832607,0.56404054,0.29303187,0.100204706,0.0068832636,1.8853369,1.9888487,1.9830065,1.8684565,1.6578665,1.3745248,1.0497657,0.71950305,0.42025977,0.18512827,0.040111005,1.7958596,1.9504014,1.9998412,1.9387114,1.7737722,1.5232639,1.2148893,0.88275075,0.5635785,0.29266876,0.09998077,1.6842929,1.8855755,1.988925,1.9829121,1.8682017,1.6574795,1.3740487,1.0492527,0.71901023,0.4198414,0.18483073,1.5537336,1.7961704,1.950561,1.9998319,1.9385343,1.7734468,1.5228262,1.2143878,0.88224083,0.56311655,0.2923059,1.4078052,1.6846673,1.885814,1.989001,1.9828174,1.8679469,1.6570926,1.3735723,1.0487399,0.7185174,0.41942328,0.18453342,1.5541611,1.7964809,1.9507203,1.9998224,1.9383569,1.7731212,1.5223885,1.2138863,0.8817309,0.56265473,0.2919432,1.408274,1.6850414,1.8860521,1.9890769,1.9827225,1.8676918,1.6567054,1.373096,1.0482271,0.71802473,0.41900527,1.2510552,1.5545886,1.7967913,1.9508793,1.9998125,1.9381793,1.7727954,1.5219505,1.2133846,0.88122106,0.562193,1.0868684,1.4087428,1.6854155,1.8862901,1.9891524,1.9826274,1.8674364,1.6563182,1.3726196,1.0477141,0.71753216,0.92027044,1.2515523,1.5550157,1.7971015,1.9510382,1.9998024,1.9380014,1.7724695,1.5215125,1.2128829,0.8807112,0.7558854,1.0873799,1.4092114,1.6857893,1.8865278,1.9892278,1.9825319,1.8671808,1.6559306,1.372143,1.0472013,0.7170396,0.9207823,1.2520492,1.5554428,1.7974114,1.9511968,1.9997921,1.9378233,1.7721432,1.5210743,1.2123811,0.8802014,0.7563834,1.0878915,1.4096799,1.686163,1.8867652,1.9893028,1.9824362,1.866925,1.6555429,1.3716664,1.0466883,0.5987462,0.9212942,1.2525461,1.5558697,1.7977213,1.9513552,1.9997815,1.937645,1.7718168,1.5206358,1.2118794,0.45224577,0.7568815,1.088403,1.4101481,1.6865363,1.8870025,1.9893775,1.9823403,1.8666689,1.6551551,1.3711896,0.32094842,0.5992166,0.9218061,1.2530429,1.5562965,1.7980309,1.9515133,1.9997706,1.9374663,1.7714903,1.5201974,0.20849836,0.45267546,0.7573796,1.0889144,1.4106164,1.6869097,1.8872395,1.9894521,1.982244,1.8664126,1.654767,0.11801654,0.32132548,0.59968704,0.92231804,1.2535397,1.5567231,1.7983401,1.9516711,1.9997594,1.9372873,1.7711635,1.5197588,0.2088123,0.45310527,0.75787777,1.0894258,1.4110847,1.6872827,1.8874762,1.9895263,1.9821476,1.8661561,1.6543789,0.118258655,0.32170272,0.6001576,0.92283,1.2540364,1.5571496,1.7986493,1.9518287,1.999748,1.9371083,1.7708365,0.052177966,0.20912641,0.45353526,0.758376,1.0899373,1.4115527,1.6876557,1.8877127,1.9896003,1.9820509,1.8658993,0.012404323,0.11850101,0.32208008,0.6006284,0.923342,1.2545329,1.557576,1.7989582,1.951986,1.9997364,1.936929,4.1604042e-5,0.05234182,0.20944077,0.45396537,0.7588743,1.0904487,1.4120206,1.6880283,1.887949,1.9896741,1.9819539,0.015432954,0.012485087,0.1187436,0.32245767,0.6010992,0.923854,1.2550296,1.5580021,1.7992668,1.952143,1.9997245,1.9367493,3.707409e-5,0.05250591,0.2097553,0.4543956,0.7593727,1.09096,1.4124885,1.6884009,1.888185,1.9897475,1.9818566,0.015343189,0.01256609,0.11898643,0.32283545,0.6015701,0.924366,1.2555261,1.5584282,1.7995753,1.9522998,1.9997122,0.05797875,3.2782555e-5,0.05267024,0.21007007,0.454826,0.7598711,1.0914714,1.4129561,1.6887732,1.8884209,1.9898207,0.1267603,0.015253723,0.01264739,0.119229436,0.32321334,0.6020411,0.924878,1.2560225,1.5588541,1.7998836,1.9524565,0.21977884,0.05780661,2.8729439e-5,0.05283481,0.21038508,0.45525658,0.76036966,1.0919827,1.4134238,1.6891453,1.8886565,0.33445257,0.1265102,0.015164554,0.0127289295,0.11947274,0.32359147,0.60251224,0.92539006,1.2565187,1.5592798,1.8001916,0.46759874,0.21945775,0.05763465,2.4974346e-5,0.052999616,0.21070027,0.45568722,0.7608682,1.092494,1.4138912,1.6895174,1.8888919,0.33406943,0.12626034,0.015075564,0.012810707,0.11971623,0.32396978,0.6029835,0.9259021,1.257015,1.5597054,1.8004996,0.46716416,0.2191369,0.05746299,2.1457672e-5,0.05316466,0.21101564,0.4561181,0.76136684,1.0930053,1.4143586,1.6898892,0.6150479,0.33368647,0.12601072,0.014986873,0.012892783,0.11995995,0.3243482,0.6034548,0.92641425,1.2575113,1.5601308,0.773616,0.4667297,0.21881622,0.057291508,1.8239021e-5,0.053330004,0.21133125,0.45654905,0.7618655,1.0935166,1.4148259,0.9384675,0.61457396,0.33330363,0.12576127,0.014898419,0.012975097,0.12020397,0.32472688,0.6039263,0.9269263,1.2580074,1.1050268,0.7731159,0.46629536,0.21849573,0.057120323,1.5258789e-5,0.053495586,0.21164703,0.45698017,0.76236427,1.0940278,1.4152931,0.93795496,0.6141002,0.33292103,0.12551212,0.014810264,0.013057649,0.12044817,0.32510573,0.60439783,0.92743844,1.2585034,1.1045161,0.7726158,0.4658612,0.21817547,0.056949437,1.257658e-5,0.053661406,0.21196306,0.4574114,0.7628631,1.094539,1.2681764,0.9374425,0.6136266,0.33253855,0.12526315,0.014722347,0.0131405,0.12069261,0.3254847,0.6048695,0.9279506,1.4243934,1.1040055,0.77211577,0.46542716,0.2178554,0.05677873,1.013279e-5,0.053827465,0.21227932,0.45784283,0.76336193,1.5688313,1.2676817,0.93693,0.613153,0.33215624,0.12501442,0.014634669,0.0132235885,0.12093723,0.3258639,0.60534126,1.6974812,1.4239285,1.1034948,0.77161586,0.4649933,0.21753556,0.05660826,7.927418e-6,0.05399382,0.2125957,0.45827436,1.8067722,1.568409,1.2671869,0.9364175,0.61267954,0.33177418,0.12476593,0.014547288,0.013306975,0.12118214,0.32624322,0.60581315,1.697113,1.4234633,1.102984,0.77111596,0.46455956,0.2172159,0.05643809,6.020069e-6,0.054160357,0.21291238,0.45870608,1.8064687,1.5679864,1.266692,0.9359051,0.61220616,0.33139223,0.12451768,0.014460146,0.013390601,0.1214273,0.32662278,1.8934406,1.6967449,1.4229981,1.1024733,0.7706161,0.46412593,0.21689647,0.056268156,4.351139e-6,0.05432719,0.21322924,1.9556148,1.806165,1.5675637,1.2661972,0.9353927,0.6117329,0.33101046,0.124269664,0.014373243,0.013474464,0.12167263,1.9912658,1.8932099,1.6963763,1.4225328,1.1019624,0.7701163,0.46369243,0.21657723,0.05609846,2.9802322e-6,0.05449426,1.999404,1.9554634,1.805861,1.5671408,1.2657021,0.93488026,0.61125976,0.33062893,0.12402183,0.014286637,0.013558626,0.12191826,1.9911981,1.8929789,1.6960077,1.4220673,1.1014516,0.7696166,0.4632591,0.21625823,0.055929005,1.847744e-6,0.054661572,1.9994216,1.9553118,1.8055569,1.5667179,1.265207,0.93436784,0.6107867,0.33024752,0.12377429,0.01420027,0.013643026,1.979906,1.9911299,1.8927476,1.695639,1.4216018,1.1009407,0.769117,0.46282595,0.2159394,0.055759788,1.013279e-6,1.9331928,1.9994389,1.9551599,1.8052526,1.5662947,1.264712,0.9338555,0.6103138,0.3298663,0.12352693,0.014114201,1.8605788,1.9800082,1.9910614,1.8925161,1.6952701,1.421136,1.1004298,0.7686174,0.46239287,0.21562076,0.055590868,1.7640791,1.9333773,1.9994559,1.9550078,1.804948,1.5658715,1.2642167,0.9333431,0.60984087,0.32948524,0.12327981,1.6463723,1.8608402,1.9801103,1.9909928,1.8922844,1.6949009,1.4206703,1.099919,0.7681179,0.46195996,0.21530235,0.055422187,5.9604645e-8,0.055165052,0.21481657,0.46129918,0.7673552,0.036107063,0.17672515,0.40838683,0.7054733,1.0351306,1.3609029,1.646764,1.8611014,1.9802121,1.9909239,1.8920524,1.6945314,1.4202044,1.099408,0.7676184,0.46152723,0.21498418,0.055253744,0.0,0.055333376,0.21513462,0.4617319,0.0020500422,0.036243916,0.17701674,0.4088009,0.7059641,1.0356438,1.3613818,1.6471555,1.8613623,1.9803135,1.9908547,1.8918203,1.694162,1.4197383,1.098897,0.767119,0.46109462,0.21466619,0.05508554,1.7881393e-7,0.055501938,0.21545297,0.4621647,0.0020173192,0.036381006,0.17730856,0.40921515,0.7064549,1.0361569,1.3618605,1.647547,1.861623,1.9804149,1.9907854,1.8915879,1.6937923,1.4192722,1.098386,0.7666197,0.46066213,0.21434838,0.054917574,6.556511e-7,0.05567074,0.21577144,0.07781881,0.0019848347,0.036518395,0.17760056,0.40962952,0.7069458,1.0366701,1.3623391,1.6479381,1.8618836,1.9805158,1.9907157,1.8913553,1.6934223,1.418806,1.097875,0.7661204,0.4602298,0.2140308,0.054749846,1.3709068e-6,0.055839837,0.25529134,0.07762039,0.0019526482,0.036656022,0.1778928,0.41004407,0.7074368,1.0371833,1.3628176,1.6483293,1.8621439,1.9806166,1.9906458,1.8911223,1.6930523,1.4183396,1.097364,0.7656212,0.45979762,0.21371347,0.054582417,2.3841858e-6,0.056009114,0.2549488,0.07742214,0.0019207001,0.036793888,0.17818528,0.41045874,0.7079278,1.0376964,1.3632962,1.64872,1.8624039,1.9807171,1.9905756,1.8908892,1.692682,1.4178731,1.0968529,0.765122,0.45936555,0.21339631,0.054415226,3.6358833e-6,0.5144195,0.25460637,0.077224135,0.0018889904,0.03693205,0.17847794,0.4108736,0.70841897,1.0382094,1.3637745,1.6491108,1.8626637,1.9808173,1.9905051,1.8906559,1.6923115,1.4174066,1.0963418,0.7646229,0.45893365,0.21307933,0.054248273,0.8274257,0.5139707,0.25426418,0.07702637,0.0018575788,0.037070453,0.17877084,0.41128856,0.7089102,1.0387226,1.3642528,1.6495013,1.8629234,1.9809172,1.9904344,1.8904223,1.691941,1.41694,1.0958307,0.76412386,0.45850188,0.2127626,0.05408156,0.82692,0.51352197,0.25392216,0.0768289,0.0018264055,0.037209094,0.17906392,0.41170377,0.7094015,1.0392357,1.364731,1.6498916,1.8631828,1.981017,1.9903634,1.8901885,1.6915702,1.4164732,1.0953196,0.7636249,0.45807028,0.21244603,1.1589514,0.8264142,0.5130734,0.25358033,0.076631606,0.0017955303,0.037347972,0.17935729,0.41211903,0.70989287,1.0397488,1.365209,1.6502819,1.863442,1.9811164,1.9902921,1.8899543,1.6911992,1.4160062,1.0948085,0.763126,0.4576388,1.4734584,1.1584444,0.82590854,0.512625,0.25323874,0.07643461,0.0017648935,0.03748709,0.17965078,0.41253453,0.7103843,1.0402619,1.365687,1.6506718,1.8637009,1.9812156,1.9902207,1.8897201,1.690828,1.4155393,1.0942972,0.7626271,0.45720744,1.4730061,1.1579374,0.825403,0.51217663,0.25289726,0.07623786,0.0017345548,0.037626505,0.17994457,0.41295016,0.71087587,1.040775,1.3661649,1.6510617,1.8639596,1.9813145,1.9901489,1.8894856,1.6904566,1.4150721,1.093786,0.76212835,1.7354186,1.4725536,1.1574304,0.82489735,0.51172847,0.2525561,0.07604134,0.0017044544,0.03776616,0.18023854,0.4133659,0.7113674,1.041288,1.3666426,1.6514513,1.864218,1.9814131,1.9900768,1.8892508,1.6900852,1.4146049,1.0932747,1.9167507,1.7350705,1.472101,1.1569233,0.82439184,0.5112804,0.25221503,0.075845,0.0016745925,0.03790611,0.1805327,0.41378182,0.7118591,1.0418011,1.3671203,1.6518408,1.8644762,1.9815116,1.9900045,1.8890158,1.6897134,1.4141376,1.9970105,1.9165454,1.7347223,1.4716482,1.156416,0.82388633,0.5108324,0.2518742,0.07564896,0.0016450286,0.03804624,0.18082714,0.41419792,0.71235085,1.042314,1.3675979,1.6522301,1.8647342,1.9816098,1.9899321,1.8887806,1.6893415,1.4136701,1.9969707,1.9163399,1.7343738,1.4711955,1.155909,0.8233809,0.5103847,0.25153357,0.07545316,0.0016157627,0.03818667,0.18112177,0.41461414,0.7128427,1.0428271,1.3680754,1.6526194,1.8649919,1.9817077,1.9898592,1.888545,1.6889694,1.9674795,1.9969306,1.9161341,1.7340252,1.4707425,1.1554017,0.8228755,0.50993705,0.25119317,0.07525766,0.0015866756,0.038327336,0.18141657,0.41503054,0.71333456,1.0433401,1.3685528,1.6530082,1.8652495,1.9818053,1.9897861,1.8883095,1.8313229,1.9676092,1.9968903,1.9159282,1.7336764,1.4702893,1.1548944,0.8223702,0.5094895,0.25085288,0.075062335,0.0015578866,0.0384683,0.18171161,0.41544712,0.71382654,1.0438532,1.3690301,1.6533971,1.8655069,1.9819026,1.9897127,1.8880734,1.8316083,1.9677386,1.9968498,1.915722,1.7333274,1.4698361,1.1543871,0.82186484,0.509042,0.25051284,0.07486725,0.0015293956,0.038609445,0.1820069,0.4158638,0.71431863,1.0443661,1.3695073,1.6537857,1.8657639,1.9819999,1.9896393,1.6039221,1.8318933,1.9678679,1.9968088,1.9155157,1.7329781,1.4693828,1.1538798,0.82135963,0.50859475,0.25017303,0.07467246,0.001501143,0.038750887,0.18230236,0.4162807,0.7148107,1.0448791,1.3699844,1.6541742,1.8660208,1.9820967,1.3096532,1.6043313,1.8321781,1.967997,1.9967678,1.915309,1.7326288,1.4689293,1.1533723,0.8208544,0.5081476,0.2498334,0.07447785,0.0014731288,0.038892567,0.18259805,0.41669768,0.71530294,1.045392,1.3704615,1.6545625,1.8662775,1.9821932,1.3101413,1.6047404,1.8324628,1.9681256,1.9967263,1.915102,1.7322791,1.4684757,1.1528649,0.8203492,0.50770056,0.24949396,0.07428354,0.0014454126,0.039034545,0.18289399,0.41711485,0.7157953,1.045905,1.3709383,1.6549506,1.8665338,0.9817582,1.3106295,1.6051493,1.8327472,1.9682541,1.9966847,1.9148948,1.7319293,1.468022,1.1523575,0.8198441,0.5072537,0.24915469,0.07408941,0.0014179349,0.039176702,0.1831901,0.41753215,0.7162876,1.046418,1.3714151,1.6553385,0.6553862,0.9822716,1.3111175,1.6055579,1.8330314,1.9683824,1.9966428,1.9146874,1.7315793,1.4675682,1.1518499,0.81933904,0.50680697,0.24881566,0.07389557,0.0013907552,0.039319158,0.18348646,0.41794962,0.71678007,1.0469309,1.3718919,1.6557263,0.6558683,0.982785,1.3116055,1.6059664,1.8333154,1.9685104,1.9966006,1.9144797,1.7312292,1.4671142,1.1513424,0.818834,0.5063603,0.2484768,0.07370198,0.0013638139,0.03946185,0.18378305,0.41836727,0.7172725,1.0474439,1.3723685,0.36740565,0.65635043,0.9832984,1.3120934,1.6063749,1.8335991,1.9686381,1.9965582,1.9142718,1.7308788,1.46666,1.1508348,0.81832904,0.50591385,0.24813813,0.07350862,0.001337111,0.039604783,0.18407983,0.41878504,0.7177651,1.0479567,0.14868689,0.3678034,0.6568327,0.98381186,1.3125812,1.6067832,1.8338826,1.9687655,1.9965155,1.9140637,1.7305284,1.4662058,1.1503271,0.8178241,0.5054674,0.24779963,0.0733155,0.0013107061,0.039748013,0.18437678,0.41920292,0.7182578,0.023825943,0.14895642,0.36820138,0.657315,0.9843253,1.3130689,1.6071911,1.8341659,1.9688928,1.9964726,1.9138553,1.7301775,1.4657515,1.1498195,0.8173193,0.5050212,0.24746138,0.07312268,0.0012845397,0.03989148,0.18467402,0.41962105,0.7187505,0.023937464,0.14922619,0.36859947,0.65779746,0.9848387,1.3135566,1.607599,1.834449,1.9690197,1.9964293,1.9136467,1.7298266,1.4652971,1.1493118,0.8168144,0.50457513,0.24712336,0.07293004,0.0012586713,0.04003519,0.18497139,0.4200393,0.006529987,0.024049282,0.14949614,0.36899775,0.65828,0.98535216,1.3140441,1.6080068,1.8347318,1.9691464,1.9963858,1.9134378,1.7294755,1.4648426,1.148804,0.8163097,0.5041291,0.24678546,0.072737634,0.0012330413,0.040179133,0.18526906,0.09865308,0.0064715147,0.024161339,0.14976633,0.36939615,0.6587627,0.9858656,1.3145316,1.6084144,1.8350146,1.9692729,1.9963421,1.9132288,1.7291241,1.4643878,1.1482961,0.81580496,0.50368327,0.2464478,0.07254553,0.0012077093,0.040323377,0.1855669,0.09843081,0.0064133406,0.024273694,0.15003675,0.3697948,0.6592454,0.986379,1.3150189,1.6088219,1.835297,1.969399,1.9962981,1.9130194,1.7287726,1.463933,1.1477883,0.8153002,0.50323755,0.24611038,0.0723536,0.0011825562,0.04046786,0.2897886,0.098208785,0.006355405,0.024386227,0.15030742,0.37019354,0.65972817,0.98689246,1.3155062,1.6092291,1.8355792,1.9695249,1.9962537,1.9128098,1.728421,1.4634781,1.1472805,0.8147956,0.502792,0.24577308,0.07216197,0.0011577606,0.55944765,0.28942722,0.097986996,0.0062977076,0.024499059,0.15057826,0.37059247,0.6602111,0.9874059,1.3159935,1.6096363,1.8358612,1.9696506,1.9962093,1.9126,1.7280691,1.463023,1.1467726,0.814291,0.5023465,0.24543601,0.07197058,0.0011332035,0.55898666,0.28906602,0.097765386,0.0062403083,0.024612188,0.15084934,0.3709916,0.66069406,0.98791933,1.3164806,1.6100433,1.836143,1.969776,1.9961644,1.91239,1.7277169,1.4625678,1.1462646,0.8137865,0.50190115,0.24509919,0.07177943,0.8771682,0.5585259,0.288705,0.097544074,0.0061831474,0.024725556,0.15112066,0.37139088,0.66117716,0.9884328,1.3169677,1.61045,1.8364245,1.9699012,1.9961194,1.9121797,1.7273645,1.4621124,1.1457566,0.813282,0.501456,0.24476248,1.2088919,0.87665856,0.5580652,0.28834414,0.097323,0.0061262846,0.024839163,0.15139222,0.3717903,0.6616603,0.98894626,1.3174547,1.6108567,1.8367058,1.9700261,1.9960741,1.9119691,1.7270122,1.461657,1.1452487,0.8127776,0.5010109,0.24442601,1.2083898,0.876149,0.5576047,0.28798348,0.097102165,0.00606966,0.024953008,0.15166396,0.37218988,0.6621435,0.98945975,1.3179415,1.6112632,1.8369869,1.9701507,1.9960284,1.9117583,1.7266594,1.4612014,1.1447406,0.81227314,0.500566,1.5171458,1.2078874,0.8756395,0.55714417,0.28762305,0.09688157,0.006013274,0.02506715,0.15193594,0.37258965,0.66262686,0.9899732,1.3184283,1.6116694,1.8372679,1.9702752,1.9959826,1.9115472,1.7263066,1.4607458,1.1442324,0.81176883,1.7688862,1.5167062,1.2073852,0.87513,0.5566839,0.28726274,0.09666115,0.005957186,0.025181532,0.15220815,0.3729896,0.6631103,0.9904867,1.3189151,1.6120756,1.8375485,1.9703994,1.9959365,1.911336,1.7259536,1.46029,1.1437243,1.9358566,1.7685578,1.5162665,1.2068828,0.87462056,0.55622363,0.28690267,0.09644103,0.0059013367,0.025296152,0.1524806,0.37338972,0.6635938,0.9910001,1.3194017,1.6124816,1.8378289,1.9705231,1.9958901,1.9111245,1.7256002,1.4598341,1.1432161,1.9356754,1.7682291,1.5158267,1.2063804,0.8741111,0.55576354,0.28654277,0.09622115,0.005845785,0.02541107,0.15275323,0.37378997,0.6640774,0.9915136,1.3198882,1.6128874,1.8381091,1.9706469,1.9958434,1.9109128,1.7252469,1.459378,1.9996343,1.9354942,1.7679003,1.5153867,1.2058779,0.87360173,0.5553036,0.28618306,0.096001506,0.005790472,0.025526166,0.1530261,0.3741904,0.66456115,0.9920271,1.3203747,1.613293,1.8383892,1.9707701,1.9957966,1.9107008,1.7248932,1.953383,1.9996203,1.9353125,1.7675712,1.5149466,1.2053754,0.8730924,0.55484366,0.28582352,0.0957821,0.005735457,0.02564162,0.15329921,0.374591,0.6650449,0.99254054,1.3208611,1.6136986,1.8386688,1.9708933,1.9957495,1.9104886,1.7245394,1.9535378,1.9996061,1.9351308,1.7672421,1.5145063,1.2048728,0.87258303,0.55438393,0.28546423,0.095562875,0.0056806207,0.025757253,0.15357256,0.37499177,0.6655288,0.99305403,1.3213475,1.6141039,1.8389485,1.9710162,1.995702,1.910276,1.8023273,1.9536924,1.9995916,1.9349487,1.7669127,1.514066,1.2043703,0.87207377,0.5539243,0.28510505,0.09534395,0.005626142,0.025873184,0.15384609,0.37539268,0.66601276,0.9935675,1.3218336,1.6145091,1.8392278,1.9711387,1.9956543,1.5626597,1.8026336,1.9538467,1.9995767,1.9347664,1.766583,1.5136254,1.2038676,0.8715645,0.5534648,0.2847461,0.09512526,0.005571842,0.025989354,0.15411985,0.37579376,0.6664968,0.994081,1.3223197,1.6149142,1.8395069,1.971261,1.9956064,1.5630841,1.8029399,1.9540008,1.9995615,1.9345839,1.7662532,1.5131848,1.2033648,0.8710553,0.5530054,0.28438735,0.09490681,0.0055178404,0.026105821,0.15439385,0.376195,0.666981,0.9945945,1.3228058,1.615319,1.8397858,1.9713832,1.2614542,1.5635084,1.8032458,1.9541547,1.9995463,1.934401,1.7659231,1.512744,1.202862,0.8705461,0.55254614,0.28402877,0.094688594,0.0054641366,0.026222467,0.1546681,0.37659645,0.6674652,0.99510795,1.3232918,1.6157236,1.8400645,0.9309988,1.2619498,1.5639325,1.8035516,1.9543083,1.9995307,1.9342179,1.7655928,1.5123031,1.2023592,0.87003696,0.55208695,0.28367037,0.09447056,0.0054106712,0.026339471,0.15494251,0.376998,0.6679495,0.99562144,1.3237777,1.6161282,1.840343,0.9315111,1.2624453,1.5643566,1.8038571,1.9544616,1.9995148,1.9340347,1.7652624,1.511862,1.2018563,0.8695278,0.55162793,0.2833122,0.094252825,0.0053574443,0.026456654,0.15521717,0.37739974,0.6684339,0.99613494,1.3242635,1.6165326,0.6086234,0.9320234,1.2629408,1.5647802,1.8041625,1.9546146,1.9994987,1.9338512,1.7649318,1.5114208,1.2013533,0.86901873,0.55116904,0.28295416,0.09403533,0.0053045154,0.026574135,0.15549207,0.37780166,0.6689184,0.99664843,1.3247491,0.32888508,0.60909593,0.9325357,1.2634362,1.565204,1.8044676,1.9547675,1.9994824,1.9336674,1.764601,1.5109794,1.2008502,0.86850965,0.5507102,0.28259635,0.09381807,0.005251825,0.026691854,0.15576714,0.37820375,0.66940296,0.9971619,0.12313765,0.32926583,0.6095686,0.93304807,1.2639315,1.5656276,1.8047725,1.95492,1.9994657,1.9334834,1.7642698,1.5105381,1.2003473,0.8680007,0.5502515,0.28223872,0.09360105,0.005199373,0.026809812,0.15604252,0.37860596,0.6698876,0.9976754,0.123384595,0.32964683,0.6100414,0.9335604,1.2644267,1.5660509,1.8050771,1.9550723,1.9994488,1.9332991,1.7639387,1.5100964,1.1998441,0.8674917,0.54979295,0.28188127,0.093384266,0.0051472187,0.026928067,0.15631807,0.3790084,0.67037237,0.014150679,0.123631775,0.33002794,0.6105143,0.93407273,1.2649219,1.5664742,1.8053817,1.9552243,1.9994316,1.9331145,1.7636073,1.5096548,1.199341,0.86698276,0.5493345,0.281524,0.09316766,0.005095303,0.027046502,0.1565938,0.37941092,0.013607204,0.014236867,0.123879254,0.33040923,0.6109873,0.93458515,1.2654171,1.5668972,1.805686,1.9553761,1.9994142,1.9329298,1.7632756,1.5092129,1.1988378,0.86647385,0.54887617,0.28116697,0.09295136,0.0050436854,0.027165294,0.15686983,0.37981367,0.67134213,0.9992159,1.3271763,1.6189554,1.8422859,1.9724705,1.9951124,1.9077077,1.7199223,1.4525229,1.1350802,1.51335,1.766377,1.9346523,1.9995673,1.953943,1.802825,1.5629249,1.2607726,0.92978215,0.60655695,0.32684147,0.12156856,0.01343888,0.0144100785,0.12437481,0.33117235,0.6119336,0.93560994,1.266407,1.567743,1.8062937,1.9556789,1.9993784,1.9325595,1.7626116,1.5083287,1.1978312,0.8654561,0.5479598,0.28045338,0.09251946,0.0049411654,0.027403533,0.15742248,0.38061965,0.67231226,1.0002428,1.3281467,1.6197617,1.842839,1.9727093,1.9950105,1.9072764,1.7192092,0.8722648,1.2045587,1.5142312,1.7670362,1.935017,1.9995971,1.9536345,1.8022122,1.5620759,1.259781,0.9287578,0.605613,0.32608235,0.12107825,0.01327157,0.014584303,0.124871254,0.33193618,0.6128803,0.93663484,1.2673968,1.568588,1.8069009,1.9559808,1.9993417,1.9321883,1.7619469,1.507444,1.1968244,0.86443853,0.54704404,0.27974057,0.09208852,0.0048397183,0.027642846,0.15797603,0.38142622,0.6732827,1.0012698,1.3291166,1.6205673,1.8433912,1.9729471,1.9949075,1.906844,0.55501616,0.87328345,1.2055639,1.5151117,1.7676947,1.9353807,1.9996257,1.9533248,1.8015988,1.5612261,1.2587891,0.9277334,0.60466945,0.32532394,0.1205889,0.013105333,0.0147596,0.12536871,0.33270073,0.6138274,0.9376598,1.2683862,1.5694325,1.807507,1.9562817,1.9993039,1.9318161,1.7612814,1.5065589,1.1958175,0.8634211,0.54612863,0.27902853,0.09165853,0.004739344,0.027883112,0.15853047,0.3822335,0.67425346,1.0022968,1.3300862,1.6213722,1.8439426,1.9731839,1.9948034,0.28667778,0.5559361,0.8743022,1.2065688,1.5159917,1.7683525,1.9357433,1.9996532,1.9530143,1.8009844,1.5603758,1.257797,0.9267092,0.6037264,0.3245663,0.12010044,0.012940168,0.014935911,0.12586701,0.33346593,0.61477494,0.9386848,1.2693753,1.5702765,1.8081124,1.9565816,1.9992651,1.9314429,1.7606151,1.5056732,1.1948102,0.8624038,0.5452138,0.27831727,0.0912295,0.004639983,0.028124452,0.15908581,0.38304138,0.67522466,1.0033238,1.3310554,1.6221766,1.8444932,0.0059782267,0.09674382,0.28739786,0.5568565,0.87532115,1.2075737,1.5168711,1.7690094,1.936105,1.9996797,1.9527028,1.800369,1.559525,1.2568046,0.925685,0.6027837,0.32380933,0.11961293,0.012776017,0.0151132345,0.12636626,0.3342319,0.6157229,0.9397099,1.2703643,1.5711198,1.8087169,1.9568803,1.9992251,1.9310687,1.759948,1.5047868,1.1938028,0.86138666,0.54429936,0.27760673,0.09080142,0.004541695,0.028366804,0.15964204,0.38384998,0.6761961,1.0043508,1.3320243,1.6229804,0.024910271,0.0060908794,0.097184956,0.28811878,0.5577774,0.87634015,1.2085781,1.51775,1.7696655,1.9364657,1.9997052,1.9523901,1.799753,1.5586734,1.2558119,0.92466086,0.60184133,0.32305306,0.11912638,0.012612879,0.015291631,0.12686646,0.33499855,0.6166712,0.94073504,1.2713529,1.5719626,1.8093206,1.9571781,1.9991843,1.9306935,1.75928,1.5039,1.1927952,0.8603697,0.5433855,0.27689695,0.09037429,0.00444448,0.02861023,0.1601991,0.38465917,0.6771679,1.0053778,1.3329929,0.15101886,0.024682999,0.0062045455,0.0976271,0.2888404,0.5586988,0.87735933,1.2095823,1.5186284,1.7703207,1.9368255,1.9997296,1.9520764,1.7991359,1.5578214,1.2548189,0.92363685,0.6008995,0.3222975,0.11864072,0.012450814,0.015471101,0.12736756,0.3357659,0.61761993,0.94176024,1.2723411,1.5728047,1.8099234,1.957475,1.9991423,1.9303174,1.7586113,1.5030127,1.1917874,0.8593528,0.54247206,0.27618796,0.08994812,0.004348278,0.028854609,0.16075712,0.38546902,0.6781401,0.6600299,0.3704428,0.15047663,0.02445674,0.0063192844,0.098070145,0.28956276,0.55962056,0.8783786,1.2105864,1.5195062,1.7709751,1.9371843,1.999753,1.9517618,1.7985182,1.5569687,1.2538258,0.9226129,0.59995806,0.32154274,0.118155956,0.0122897625,0.015651584,0.12786955,0.3365339,0.618569,0.9427855,1.2733291,1.5736461,1.8105253,1.9577708,1.9990993,1.9299402,1.7579417,1.5021248,1.1907793,0.85833615,0.5415591,0.27547973,0.08952296,0.004253149,0.02910006,0.16131598,0.38627952,0.9861864,0.6590643,0.36964524,0.1499353,0.024231493,0.0064350963,0.09851414,0.2902859,0.5605428,0.87939805,1.2115903,1.5203834,1.7716289,1.937542,1.9997752,1.9514463,1.7978995,1.5561155,1.2528323,0.921589,0.599017,0.32078862,0.117672145,0.012129784,0.01583308,0.12837249,0.33730268,0.61951864,0.9438109,1.2743169,1.574487,1.8111264,1.9580655,1.9990551,1.9295621,1.7572715,1.5012364,1.1897712,0.8573196,0.5406467,0.2747723,0.08909869,0.0041590333,0.029346526,1.6078539,1.3138613,0.9851595,0.658099,0.36884832,0.14939481,0.02400732,0.006551981,0.09895915,0.29100978,0.56146556,0.8804176,1.2125939,1.52126,1.7722816,1.9378989,1.9997965,1.9511297,1.7972801,1.5552616,1.2518384,0.92056525,0.59807646,0.32003522,0.11718929,0.011970818,0.01601559,0.12887633,0.33807212,0.62046856,0.94483626,1.2753043,1.5753274,1.8117266,1.9583594,1.99901,1.929183,1.7566004,1.5003475,1.1887627,0.8563032,0.53973466,0.27406555,0.08867544,0.0040659904,1.8340597,1.607038,1.312886,0.98413265,0.65713406,0.36805207,0.14885527,0.02378416,0.0066698194,0.09940505,0.2917344,0.5623888,0.8814373,1.2135973,1.5221362,1.7729337,1.9382546,1.9998167,1.950812,1.7966597,1.5544072,1.2508445,0.9195416,0.59713626,0.31928253,0.116707385,0.011812925,0.016199172,0.12938112,0.33884227,0.6214189,0.9458617,1.2762915,1.5761671,1.812326,1.9586521,1.9989637,1.9288028,1.7559284,1.4994581,1.187754,0.85528696,0.5388232,0.2733596,0.08825308,1.9685903,1.8334928,1.6062217,1.3119104,0.98310584,0.65616953,0.36725646,0.14831662,0.023562014,0.00678879,0.09985191,0.29245973,0.5633124,0.8824571,1.2146004,1.5230118,1.7735848,1.9386094,1.9998357,1.9504933,1.7960386,1.5535523,1.2498503,0.91851795,0.59619653,0.31853062,0.116226375,0.011656046,0.016383827,0.1298868,0.33961308,0.62236965,0.9468872,1.2772784,1.5770061,1.8129244,1.9589438,1.9989164,1.9284217,1.7552557,1.498568,1.1867453,0.8542708,0.53791213,1.9147652,1.9966586,1.9683343,1.8329248,1.6054046,1.3109344,0.98207897,0.65520537,0.36646152,0.14777887,0.02334088,0.0069087744,0.100299716,0.2931859,0.5642365,0.88347703,1.2156035,1.5238869,1.7742352,1.9389632,1.9998538,1.9501737,1.7954166,1.5526967,1.2488557,0.9174944,0.5952572,0.31777936,0.11574626,0.011500239,0.016569495,0.13039345,0.34038466,0.6233208,0.94791275,1.278265,1.5778446,1.8135221,1.9592346,1.9988682,1.9280398,1.7545822,1.4976776,1.1857362,0.8532549,1.7324103,1.9151796,1.9967419,1.9680774,1.832356,1.6045868,1.3099582,0.98105216,0.65424156,0.36566728,0.14724207,0.02312082,0.0070298314,0.10074848,0.2939127,0.5651611,0.88449705,1.2166061,1.5247614,1.7748847,1.939316,1.9998709,1.9498531,1.7947938,1.5518405,1.2478609,0.916471,0.59431833,0.31702882,0.11526716,0.011345446,0.016756177,0.13090098,0.34115684,0.62427235,0.94893837,1.2792512,1.5786824,1.8141189,1.9595244,1.9988188,1.9276568,1.7539079,1.4967866,1.1540701,1.4695529,1.7331092,1.9155931,1.9968243,1.9678195,1.8317864,1.6037686,1.3089817,0.9800254,0.65327805,0.3648737,0.1467061,0.022901773,0.0071519017,0.1011982,0.2946403,0.5660862,0.88551724,1.2176087,1.5256352,1.7755336,1.9396677,1.9998869,1.9495314,1.7941701,1.5509838,1.2468657,0.91544765,0.59337986,0.31627905,0.11478895,0.011191726,0.016943872,0.1314094,0.3419298,0.62522423,0.94996405,1.2802372,1.5795197,1.8147149,1.9598131,1.9987683,1.9272728,1.7532327,0.8225597,1.1550847,1.4704593,1.7338072,1.9160056,1.9969054,1.9675605,1.8312159,1.6029496,1.3080047,0.9789986,0.65231496,0.3640808,0.14617103,0.02268374,0.007275045,0.10164881,0.29536867,0.56701165,0.88653755,1.2186109,1.5265087,1.7761815,1.9400187,1.9999018,1.9492087,1.7935456,1.5501264,1.2458705,0.91442436,0.59244186,0.31553,0.114311635,0.011039019,0.01713264,0.13191873,0.3427034,0.6261766,0.9509898,1.2812228,1.5803564,1.81531,1.9601008,1.9987168,1.9268878,0.51055264,0.8235705,1.1560992,1.4713653,1.7345045,1.9164171,1.9969857,1.9673005,1.8306445,1.6021299,1.3070276,0.97797185,0.6513522,0.36328852,0.14563692,0.022466779,0.0073992014,0.10210043,0.29609776,0.5679376,0.8875579,1.219613,1.5273815,1.7768285,1.9403684,1.9999156,1.9488852,1.7929202,1.5492685,1.2448748,0.9134012,0.5915042,0.3147816,0.113835335,0.010887325,0.01732248,0.132429,0.34347773,0.6271293,0.9520156,1.2822082,1.5811924,1.8159041,1.9603875,0.075918615,0.25234294,0.5114485,0.8245815,1.1571136,1.4722708,1.7352011,1.9168276,1.9970648,1.9670396,1.8300722,1.6013097,1.3060501,0.97694516,0.6503899,0.36249697,0.14510363,0.022250831,0.0075244308,0.10255301,0.2968276,0.568864,0.8885785,1.2206147,1.5282538,1.7774749,1.9407172,1.9999285,1.9485605,1.792294,1.54841,1.2438791,0.91237813,0.59056705,0.314034,0.11335993,0.0107367635,0.017513335,0.13294023,0.3442527,0.6280824,0.9530414,1.2831933,1.5820278,1.8164976,0.0017459393,0.07631165,0.25302535,0.51234484,0.82559264,1.1581277,1.4731758,1.7358968,1.9172372,1.9971429,1.9667776,1.8294991,1.6004888,1.3050721,0.9759185,0.6494279,0.36170608,0.1445713,0.022035897,0.0076506734,0.10300648,0.2975582,0.56979084,0.8895991,1.2216163,1.5291255,1.7781203,1.9410651,1.9999402,1.9482349,1.791667,1.547551,1.242883,0.91135514,0.58963037,0.31328708,0.112885416,0.010587156,0.017705202,0.13345236,0.34502846,0.62903595,0.95406723,1.2841781,1.5828626,0.03729582,0.0018070936,0.076705575,0.25370854,0.51324165,0.82660395,1.1591417,1.4740803,1.7365918,1.9176457,1.99722,1.9665146,1.8289251,1.5996673,1.304094,0.9748918,0.6484662,0.36091584,0.14403987,0.021822035,0.007777989,0.10346091,0.29828948,0.57071817,0.8906199,1.2226176,1.5299966,1.778765,1.941412,1.9999509,1.9479083,1.7910392,1.5466914,1.2418866,0.91033226,0.588694,0.3125409,0.112411916,0.010438681,0.017898083,0.13396537,0.3458048,0.62998986,0.9550932,0.41113287,0.17866093,0.037018478,0.0018693209,0.077100575,0.2543925,0.51413906,0.8276155,1.1601554,1.4749843,1.737286,1.9180534,1.997296,1.9662504,1.8283502,1.598845,1.3031154,0.97386515,0.64750504,0.36012626,0.14350933,0.021609128,0.007906377,0.10391635,0.29902154,0.571646,0.8916408,1.2236187,1.5308673,1.7794088,1.9417579,1.9999607,1.9475806,1.7904105,1.5458312,1.2408899,0.90930945,0.5877581,0.31179547,0.11193931,0.010291159,0.018092036,0.13447928,0.34658188,0.63094413,0.70774364,0.41030318,0.17807555,0.03674215,0.001932621,0.07749647,0.25507724,0.51503694,0.82862717,1.161169,1.4758878,1.7379794,1.9184601,1.997371,1.9659854,1.8277745,1.5980222,1.3021367,0.9728385,0.6465441,0.3593374,0.14297968,0.021397352,0.008035779,0.10437268,0.29975438,0.57257414,0.89266175,1.2246195,1.5317373,1.7800518,1.9421027,1.9999692,1.947252,1.789781,1.5449703,1.2398931,0.90828675,0.5868227,0.3110507,0.11146766,0.010144711,0.018287063,0.13499415,1.3621596,1.0364776,0.7067616,0.40947407,0.17749101,0.036466837,0.001996994,0.07789338,0.25576282,0.5159353,0.8296391,1.1621826,1.4767908,1.738672,1.9188658,1.9974449,1.9657193,1.8271978,1.5971988,1.3011575,0.9718119,0.6455836,0.35854918,0.14245093,0.02118653,0.008166254,0.10482997,0.30048788,0.57350284,0.89368284,1.2256202,1.5326068,1.780694,1.9424466,1.9999766,1.9469223,1.7891506,1.544109,1.238896,0.9072641,0.5858877,0.31030673,0.1109969,0.009999335,0.018483043,1.6470087,1.3612021,1.0354513,0.7057799,0.40864557,0.17690736,0.036192536,0.0020623803,0.07829124,0.25644916,0.5168342,0.8306511,1.1631958,1.4776932,1.7393639,1.9192705,1.9975176,1.9654522,1.8266203,1.5963748,1.300178,0.9707854,0.6446235,0.35776168,0.14192313,0.020976782,0.008297741,0.10528815,0.30122215,0.57443196,0.8947041,1.2266206,1.5334758,1.7813354,1.9427894,1.9999832,1.9465917,1.7885194,1.543247,1.2378986,0.90624166,0.5849531,0.30956346,0.1105271,0.009854972,1.8607421,1.6462253,1.3602443,1.0344249,0.7047986,0.40781772,0.17632455,0.03591925,0.0021288395,0.07869005,0.2571363,0.5177336,0.83166337,1.164209,1.4785953,1.7400551,1.9196743,1.9975895,1.9651842,1.8260419,1.5955501,1.2991982,0.9697588,0.64366376,0.35697484,0.14139616,0.020768046,0.008430302,0.10574734,0.3019572,0.5753615,0.89572537,1.2276207,1.5343441,1.781976,1.9431313,1.9999886,1.9462601,1.7878873,1.5423846,1.2369009,0.9052192,0.584019,0.3088209,1.9911554,1.9798675,1.860219,1.6454413,1.3592861,1.0333985,0.7038175,0.40699047,0.17574263,0.035646975,0.002196312,0.07908988,0.25782418,0.5186335,0.8326758,1.1652219,1.4794967,1.7407453,1.9200771,1.9976602,1.964915,1.8254626,1.5947249,1.2982181,0.96873236,0.64270437,0.35618865,0.14087015,0.020560324,0.008563876,0.10620743,0.3026929,0.57629156,0.8967469,1.2286206,1.5352119,1.7826157,1.9434723,1.999993,1.9459274,1.7872546,1.5415214,1.2359031,0.9041969,0.5830853,1.8932965,1.9912913,1.979662,1.8596947,1.6446564,1.3583275,1.0323721,0.70283675,0.40616387,0.17516154,0.035375714,0.0022648573,0.07949066,0.25851285,0.51953393,0.8336884,1.1662347,1.4803977,1.7414348,1.9204788,1.9977299,1.9646449,1.8248825,1.5938989,1.2972376,0.96770585,0.6417453,0.35540318,0.14034504,0.020353675,0.008698523,0.10666847,0.30342942,0.577222,0.8977684,1.2296202,1.5360792,1.7832546,1.9438121,1.9999963,1.9455938,1.7866209,1.5406578,1.234905,1.4236379,1.6972512,1.8937576,1.991426,1.9794555,1.8591697,1.6438711,1.3573685,1.0313456,0.7018563,0.40533787,0.17458135,0.035105467,0.0023344755,0.0798924,0.2592023,0.52043486,0.8347011,1.1672473,1.4812981,1.7421236,1.9208797,1.9977984,1.9643736,1.8243015,1.5930724,1.296257,0.96667945,0.6407867,0.35461837,0.13982087,0.020148039,0.008834183,0.10713047,0.30416662,0.5781529,0.89879006,1.2306197,1.5369458,1.7838926,1.944151,1.9999986,1.9452591,1.7859864,1.5397935,1.104197,1.4245679,1.697987,1.8942177,1.9915596,1.9792478,1.8586438,1.6430849,1.3564091,1.0303191,0.70087624,0.40451252,0.17400205,0.034836292,0.0024051666,0.080295086,0.25989252,0.5213363,0.8357141,1.1682597,1.4821981,1.7428114,1.9212797,1.9978662,1.9641016,1.8237197,1.5922451,1.2952759,0.96565306,0.63982844,0.3538342,0.13929754,0.019943416,0.008970916,0.10759342,0.30490458,0.5790843,0.8998118,1.2316189,1.5378119,1.7845299,1.944489,1.9999998,1.9449236,1.785351,0.7733035,1.1052184,1.4254975,1.6987221,1.8946769,1.9916923,1.9790392,1.8581169,1.6422981,1.3554494,1.0292926,0.6998964,0.40368778,0.17342359,0.03456807,0.002476871,0.08069879,0.26058358,0.52223825,0.8367272,1.1692721,1.4830976,1.7434987,1.9216785,1.9979327,1.9638283,1.8231369,1.5914173,1.2942946,0.96462667,0.6388706,0.35305077,0.13877517,0.019739866,0.009108722,0.10805732,0.30564326,0.5800161,0.90083367,1.2326179,1.5386775,1.7851663,1.9448259,2.0,0.21925724,0.46732718,0.77430385,1.1062396,1.4264266,1.6994565,1.8951353,1.9918238,1.9788294,1.8575892,1.6415106,1.3544893,1.0282661,0.6989169,0.40286368,0.17284602,0.034300923,0.0025495887,0.081103444,0.26127535,0.52314067,0.8377405,1.170284,1.4839965,1.7441851,1.9220765,1.9979981,1.963554,1.8225534,1.5905888,1.2933129,0.96360034,0.6379131,0.35226798,0.13825369,0.01953733,0.009247541,0.10852212,0.30638266,0.5809483,0.90185565,1.2336165,1.5395424,1.7858019,1.9451618,0.057871163,0.21989936,0.46819663,0.77530444,1.1072607,1.4273553,1.70019,1.8955927,1.9919543,1.9786187,1.8570604,1.6407225,1.3535289,1.0272394,0.6979377,0.40204024,0.17226934,0.03403473,0.0026234388,0.08150905,0.26196796,0.5240437,0.83875394,1.171296,1.4848949,1.7448707,1.9224734,1.9980625,1.9632788,1.8219688,1.5897598,1.292331,0.96257406,0.636956,0.3514859,0.1377331,0.019335866,0.009387374,0.10898787,0.30712283,0.581881,0.90287775,1.234615,1.5404067,1.7864366,3.874302e-5,0.058215916,0.22054231,0.46906662,0.7763053,1.1082817],"x":[1.6470994e6,4.5286444e14,9.057289e14,1.3585933e15,1.8114578e15,2.264322e15,2.7171866e15,3.170051e15,3.6229155e15,4.0757798e15,4.528644e15,4.9815087e15,5.434373e15,5.887238e15,6.340102e15,6.7929664e15,7.245831e15,7.6986956e15,8.1515596e15,8.604424e15,9.057288e15,9.510153e15,9.963017e15,1.0415882e16,1.0868747e16,1.1321611e16,1.1774476e16,1.2227339e16,1.2680204e16,1.3133068e16,1.3585933e16,1.4038797e16,1.4491662e16,1.4944527e16,1.5397391e16,1.5850255e16,1.6303119e16,1.6755984e16,1.7208848e16,1.7661713e16,1.8114576e16,1.8567442e16,1.9020306e16,1.9473171e16,1.9926035e16,2.03789e16,2.0831764e16,2.1284627e16,2.1737493e16,2.2190357e16,2.2643222e16,2.3096086e16,2.3548951e16,2.4001815e16,2.4454678e16,2.4907544e16,2.5360407e16,2.5813273e16,2.6266137e16,2.6719002e16,2.7171866e16,2.7624731e16,2.8077595e16,2.8530458e16,2.8983324e16,2.9436188e16,2.9889053e16,3.0341917e16,3.0794782e16,3.1247646e16,3.170051e16,3.2153375e16,3.2606239e16,3.3059104e16,3.3511968e16,3.3964833e16,3.4417697e16,3.487056e16,3.5323426e16,3.577629e16,3.6229153e16,3.668202e16,3.7134884e16,3.758775e16,3.804061e16,3.8493477e16,3.8946343e16,3.9399204e16,3.985207e16,4.0304935e16,4.07578e16,4.1210662e16,4.1663528e16,4.2116393e16,4.2569255e16,4.302212e16,4.3474986e16,4.392785e16,4.4380713e16,4.483358e16,4.5286444e16,4.5739306e16,4.619217e16,4.6645037e16,4.7097903e16,4.7550764e16,4.800363e16,4.8456495e16,4.8909357e16,4.9362222e16,4.981509e16,5.0267954e16,5.0720815e16,5.117368e16,5.1626546e16,5.2079408e16,5.2532273e16,5.298514e16,5.3438005e16,5.3890866e16,5.434373e16,5.4796597e16,5.5249463e16,5.5702324e16,5.615519e16,5.6608056e16,5.7060917e16,5.7513783e16,5.796665e16,5.8419514e16,5.8872375e16,5.932524e16,5.9778106e16,6.0230968e16,6.0683833e16,6.11367e16,6.1589565e16,6.2042426e16,6.249529e16,6.2948157e16,6.340102e16,6.3853884e16,6.430675e16,6.4759616e16,6.5212477e16,6.5665343e16,6.611821e16,6.657107e16,6.7023935e16,6.74768e16,6.7929667e16,6.838253e16,6.8835394e16,6.928826e16,6.974112e16,7.0193986e16,7.064685e16,7.1099718e16,7.155258e16,7.2005445e16,7.245831e16,7.291118e16,7.336404e16,7.38169e16,7.426977e16,7.472263e16,7.51755e16,7.562836e16,7.608122e16,7.653409e16,7.698695e16,7.7439815e16,7.7892685e16,7.834555e16,7.879841e16,7.925128e16,7.970414e16,8.0157e16,8.060987e16,8.106273e16,8.15156e16,8.196846e16,8.2421324e16,8.2874194e16,8.3327056e16,8.377992e16,8.423279e16,8.468565e16,8.513851e16,8.559138e16,8.604424e16,8.64971e16,8.694997e16,8.740283e16,8.78557e16,8.8308565e16,8.876143e16,8.92143e16,8.966716e16,9.012002e16,9.057289e16,9.102575e16,9.147861e16,9.193148e16,9.238434e16,9.283721e16,9.329007e16,9.3742935e16,9.4195805e16,9.464867e16,9.510153e16,9.55544e16,9.600726e16,9.646012e16,9.691299e16,9.736585e16,9.781871e16,9.827158e16,9.8724445e16,9.9177315e16,9.963018e16,1.0008304e17,1.0053591e17,1.0098877e17,1.0144163e17,1.018945e17,1.0234736e17,1.0280022e17,1.0325309e17,1.0370595e17,1.04158815e17,1.04611685e17,1.0506455e17,1.0551742e17,1.0597028e17,1.0642314e17,1.0687601e17,1.0732887e17,1.0778173e17,1.082346e17,1.0868746e17,1.09140324e17,1.09593194e17,1.1004606e17,1.1049893e17,1.1095179e17,1.1140465e17,1.1185752e17,1.1231038e17,1.1276324e17,1.1321611e17,1.1366897e17,1.1412183e17,1.145747e17,1.15027565e17,1.1548043e17,1.159333e17,1.1638616e17,1.1683903e17,1.1729189e17,1.1774475e17,1.1819762e17,1.1865048e17,1.1910334e17,1.1955621e17,1.2000907e17,1.20461936e17,1.20914806e17,1.2136767e17,1.2182053e17,1.222734e17,1.2272626e17,1.2317913e17,1.2363199e17,1.2408485e17,1.2453772e17,1.2499058e17,1.25443445e17,1.25896315e17,1.2634918e17,1.2680204e17,1.2725491e17,1.2770777e17,1.2816063e17,1.286135e17,1.2906636e17,1.2951923e17,1.2997209e17,1.3042495e17,1.3087782e17,1.31330685e17,1.3178355e17,1.3223642e17,1.3268928e17,1.3314214e17,1.3359501e17,1.3404787e17,1.3450074e17,1.349536e17,1.3540646e17,1.3585933e17,1.36312195e17,1.3676506e17,1.3721793e17,1.3767079e17,1.3812365e17,1.3857652e17,1.3902938e17,1.3948224e17,1.3993511e17,1.4038797e17,1.4084084e17,1.412937e17,1.41746565e17,1.42199435e17,1.426523e17,1.4310516e17,1.4355803e17,1.4401089e17,1.4446375e17,1.4491661e17,1.4536949e17,1.4582235e17,1.4627521e17,1.4672807e17,1.4718094e17,1.476338e17,1.4808668e17,1.4853954e17,1.489924e17,1.4944526e17,1.4989812e17,1.50351e17,1.5080386e17,1.5125672e17,1.5170958e17,1.5216244e17,1.526153e17,1.5306818e17,1.5352105e17,1.539739e17,1.5442677e17,1.5487963e17,1.5533251e17,1.5578537e17,1.5623823e17,1.566911e17,1.5714395e17,1.5759682e17,1.580497e17,1.5850256e17,1.5895542e17,1.5940828e17,1.5986114e17,1.60314e17,1.6076688e17,1.6121974e17,1.616726e17,1.6212546e17,1.6257832e17,1.630312e17,1.6348406e17,1.6393693e17,1.6438979e17,1.6484265e17,1.6529551e17,1.6574839e17,1.6620125e17,1.6665411e17,1.6710697e17,1.6755983e17,1.6801271e17,1.6846557e17,1.6891844e17,1.693713e17,1.6982416e17,1.7027702e17,1.707299e17,1.7118276e17,1.7163562e17,1.7208848e17,1.7254134e17,1.729942e17,1.7344708e17,1.7389994e17,1.743528e17,1.7480567e17,1.7525853e17,1.757114e17,1.7616427e17,1.7661713e17,1.7706999e17,1.7752285e17,1.7797571e17,1.784286e17,1.7888145e17,1.7933432e17,1.7978718e17,1.8024004e17,1.8069292e17,1.8114578e17,1.8159864e17,1.820515e17,1.8250436e17,1.8295722e17,1.834101e17,1.8386296e17,1.8431582e17,1.8476869e17,1.8522155e17,1.8567443e17,1.8612729e17,1.8658015e17,1.8703301e17,1.8748587e17,1.8793873e17,1.8839161e17,1.8884447e17,1.8929733e17,1.897502e17,1.9020306e17,1.9065592e17,1.911088e17,1.9156166e17,1.9201452e17,1.9246738e17,1.9292024e17,1.9337312e17,1.9382598e17,1.9427884e17,1.947317e17,1.9518457e17,1.9563743e17,1.960903e17,1.9654317e17,1.9699603e17,1.9744889e17,1.9790175e17,1.9835463e17,1.9880749e17,1.9926035e17,1.9971321e17,2.0016607e17,2.0061894e17,2.0107181e17,2.0152468e17,2.0197754e17,2.024304e17,2.0288326e17,2.0333614e17,2.03789e17,2.0424186e17,2.0469472e17,2.0514758e17,2.0560045e17,2.0605332e17,2.0650619e17,2.0695905e17,2.074119e17,2.0786477e17,2.0831763e17,2.0877051e17,2.0922337e17,2.0967623e17,2.101291e17,2.1058195e17,2.1103483e17,2.114877e17,2.1194056e17,2.1239342e17,2.1284628e17,2.1329914e17,2.1375202e17,2.1420488e17,2.1465774e17,2.151106e17,2.1556346e17,2.1601634e17,2.164692e17,2.1692206e17,2.1737493e17,2.1782779e17,2.1828065e17,2.1873353e17,2.1918639e17,2.1963925e17,2.2009211e17,2.2054497e17,2.2099785e17,2.2145071e17,2.2190357e17,2.2235644e17,2.228093e17,2.2326216e17,2.2371504e17,2.241679e17,2.2462076e17,2.2507362e17,2.2552648e17,2.2597934e17,2.2643222e17,2.2688508e17,2.2733794e17,2.277908e17,2.2824367e17,2.2869655e17,2.291494e17,2.2960227e17,2.3005513e17,2.3050799e17,2.3096085e17,2.3141373e17,2.318666e17,2.3231945e17,2.3277232e17,2.3322518e17,2.3367806e17,2.3413092e17,2.3458378e17,2.3503664e17,2.354895e17,2.3594236e17,2.3639524e17,2.368481e17,2.3730096e17,2.3775382e17,2.3820669e17,2.3865955e17,2.3911243e17,2.3956529e17,2.4001815e17,2.4047101e17,2.4092387e17,2.4137675e17,2.4182961e17,2.4228247e17,2.4273533e17,2.431882e17,2.4364106e17,2.4409394e17,2.445468e17,2.4499966e17,2.4545252e17,2.4590538e17,2.4635826e17,2.4681112e17,2.4726398e17,2.4771684e17,2.481697e17,2.4862257e17,2.4907544e17,2.495283e17,2.4998117e17,2.5043403e17,2.5088689e17,2.5133977e17,2.5179263e17,2.5224549e17,2.5269835e17,2.5315121e17,2.5360407e17,2.5405695e17,2.5450981e17,2.5496268e17,2.5541554e17,2.558684e17,2.5632126e17,2.5677414e17,2.57227e17,2.5767986e17,2.5813272e17,2.5858558e17,2.5903846e17,2.5949132e17,2.5994419e17,2.6039705e17,2.608499e17,2.6130277e17,2.6175565e17,2.6220851e17,2.6266137e17,2.6311423e17,2.635671e17,2.6401997e17,2.6447283e17,2.649257e17,2.6537856e17,2.6583142e17,2.6628428e17,2.6673716e17,2.6719002e17,2.6764288e17,2.6809574e17,2.685486e17,2.6900148e17,2.6945434e17,2.699072e17,2.7036007e17,2.7081293e17,2.7126579e17,2.7171867e17,2.7217153e17,2.7262439e17,2.7307725e17,2.7353011e17,2.7398297e17,2.7443585e17,2.7488871e17,2.7534157e17,2.7579444e17,2.762473e17,2.7670018e17,2.7715304e17,2.776059e17,2.7805876e17,2.7851162e17,2.7896448e17,2.7941736e17,2.7987022e17,2.8032308e17,2.8077595e17,2.812288e17,2.8168168e17,2.8213455e17,2.825874e17,2.8304027e17,2.8349313e17,2.83946e17,2.8439887e17,2.8485173e17,2.853046e17,2.8575745e17,2.8621032e17,2.866632e17,2.8711606e17,2.8756892e17,2.8802178e17,2.8847464e17,2.889275e17,2.8938036e17,2.8983322e17,2.902861e17,2.9073898e17,2.9119184e17,2.916447e17,2.9209756e17,2.9255043e17,2.930033e17,2.9345615e17,2.93909e17,2.9436187e17,2.9481473e17,2.952676e17,2.957205e17,2.9617335e17,2.966262e17,2.9707907e17,2.9753194e17,2.979848e17,2.9843766e17,2.9889052e17,2.9934338e17,2.9979624e17,3.002491e17,3.00702e17,3.0115486e17,3.0160772e17,3.020606e17,3.0251344e17,3.029663e17,3.0341917e17,3.0387203e17,3.043249e17,3.0477775e17,3.052306e17,3.056835e17,3.0613637e17,3.0658923e17,3.070421e17,3.0749495e17,3.079478e17,3.0840068e17,3.0885354e17,3.093064e17,3.0975926e17,3.1021212e17,3.1066502e17,3.1111788e17,3.1157074e17,3.120236e17,3.1247646e17,3.1292932e17,3.133822e17,3.1383505e17,3.142879e17,3.1474077e17,3.1519363e17,3.156465e17,3.160994e17,3.1655225e17,3.170051e17,3.1745797e17,3.1791083e17,3.183637e17,3.1881656e17,3.1926942e17,3.1972228e17,3.2017514e17,3.20628e17,3.210809e17,3.2153376e17,3.2198662e17,3.2243948e17,3.2289234e17,3.233452e17,3.2379807e17,3.2425093e17,3.247038e17,3.2515665e17,3.256095e17,3.260624e17,3.2651527e17,3.2696813e17,3.27421e17,3.2787385e17,3.283267e17,3.2877957e17,3.2923244e17,3.296853e17,3.3013816e17,3.3059102e17,3.310439e17,3.3149678e17,3.3194964e17,3.324025e17,3.3285536e17,3.3330822e17,3.337611e17,3.3421395e17,3.346668e17,3.3511967e17,3.3557253e17,3.3602543e17,3.364783e17,3.3693115e17,3.37384e17,3.3783687e17,3.3828973e17,3.387426e17,3.3919545e17,3.396483e17,3.4010118e17,3.4055404e17,3.4100693e17,3.414598e17,3.4191266e17,3.4236552e17,3.4281838e17,3.4327124e17,3.437241e17,3.4417696e17,3.4462983e17,3.450827e17,3.4553555e17,3.459884e17,3.464413e17,3.4689417e17,3.4734703e17,3.477999e17,3.4825275e17,3.487056e17,3.4915847e17,3.4961133e17,3.500642e17,3.5051706e17,3.5096992e17,3.514228e17,3.5187568e17,3.5232854e17,3.527814e17,3.5323426e17,3.5368712e17,3.5413998e17,3.5459284e17,3.550457e17,3.5549857e17,3.5595143e17,3.5640432e17,3.568572e17,3.5731005e17,3.577629e17,3.5821577e17,3.5866863e17,3.591215e17,3.5957435e17,3.600272e17,3.6048008e17,3.6093294e17,3.6138583e17,3.618387e17,3.6229156e17,3.627444e17,3.6319728e17,3.6365014e17,3.64103e17,3.6455586e17,3.6500872e17,3.654616e17,3.6591445e17,3.6636734e17,3.668202e17,3.6727306e17,3.6772593e17,3.681788e17,3.6863165e17,3.690845e17,3.6953737e17,3.6999023e17,3.704431e17,3.7089596e17,3.7134885e17,3.718017e17,3.7225457e17,3.7270744e17,3.731603e17,3.7361316e17,3.7406602e17,3.7451888e17,3.7497174e17,3.754246e17,3.7587746e17,3.7633036e17,3.7678322e17,3.772361e17,3.7768894e17,3.781418e17,3.7859467e17,3.7904753e17,3.795004e17,3.7995325e17,3.804061e17,3.8085897e17,3.8131184e17,3.8176473e17,3.822176e17,3.8267045e17,3.831233e17,3.8357618e17,3.8402904e17,3.844819e17,3.8493476e17,3.8538762e17,3.858405e17,3.8629334e17,3.8674624e17,3.871991e17,3.8765196e17,3.8810482e17,3.885577e17,3.8901055e17,3.894634e17,3.8991627e17,3.9036913e17,3.90822e17,3.9127485e17,3.9172775e17,3.921806e17,3.9263347e17,3.9308633e17,3.935392e17,3.9399206e17,3.9444492e17,3.9489778e17,3.9535064e17,3.958035e17,3.9625636e17,3.9670926e17,3.9716212e17,3.9761498e17,3.9806784e17,3.985207e17,3.9897357e17,3.9942643e17,3.998793e17,4.0033215e17,4.00785e17,4.0123787e17,4.0169077e17,4.0214363e17,4.025965e17,4.0304935e17,4.035022e17,4.0395507e17,4.0440794e17,4.048608e17,4.0531366e17,4.0576652e17,4.0621938e17,4.0667228e17,4.0712514e17,4.07578e17,4.0803086e17,4.0848372e17,4.089366e17,4.0938945e17,4.098423e17,4.1029517e17,4.1074803e17,4.112009e17,4.1165375e17,4.1210665e17,4.125595e17,4.1301237e17,4.1346523e17,4.139181e17,4.1437095e17,4.148238e17,4.1527668e17,4.1572954e17,4.161824e17,4.1663526e17,4.1708816e17,4.1754102e17,4.1799388e17,4.1844674e17,4.188996e17,4.1935246e17,4.1980532e17,4.202582e17,4.2071105e17,4.211639e17,4.2161677e17,4.2206967e17,4.2252253e17,4.229754e17,4.2342825e17,4.238811e17,4.2433397e17,4.2478683e17,4.252397e17,4.2569256e17,4.2614542e17,4.2659828e17,4.2705118e17,4.2750404e17,4.279569e17,4.2840976e17,4.2886262e17,4.2931548e17,4.2976834e17,4.302212e17,4.3067407e17,4.3112693e17,4.315798e17,4.320327e17,4.3248555e17,4.329384e17,4.3339127e17,4.3384413e17,4.34297e17,4.3474985e17,4.352027e17,4.3565558e17,4.3610844e17,4.365613e17,4.370142e17,4.3746706e17,4.379199e17,4.3837278e17,4.3882564e17,4.392785e17,4.3973136e17,4.4018422e17,4.406371e17,4.4108995e17,4.415428e17,4.419957e17,4.4244856e17,4.4290143e17,4.433543e17,4.4380715e17,4.4426e17,4.4471287e17,4.4516573e17,4.456186e17,4.4607146e17,4.465243e17,4.4697718e17,4.4743007e17,4.4788293e17,4.483358e17,4.4878866e17,4.4924152e17,4.4969438e17,4.5014724e17,4.506001e17,4.5105296e17,4.5150583e17,4.519587e17,4.5241158e17,4.5286444e17,4.533173e17,4.5377017e17,4.5422303e17,4.546759e17,4.5512875e17,4.555816e17,4.5603447e17,4.5648733e17,4.569402e17,4.573931e17,4.5784595e17,4.582988e17,4.5875168e17,4.5920454e17,4.596574e17,4.6011026e17,4.6056312e17,4.6101598e17,4.6146884e17,4.619217e17,4.623746e17,4.6282746e17,4.6328032e17,4.637332e17,4.6418605e17,4.646389e17,4.6509177e17,4.6554463e17,4.659975e17,4.6645035e17,4.669032e17,4.673561e17,4.6780897e17,4.6826183e17,4.687147e17,4.6916756e17,4.696204e17,4.7007328e17,4.7052614e17,4.70979e17,4.7143186e17,4.7188472e17,4.7233762e17,4.7279048e17,4.7324334e17,4.736962e17,4.7414907e17,4.7460193e17,4.750548e17,4.7550765e17,4.759605e17,4.7641337e17,4.7686623e17,4.773191e17,4.77772e17,4.7822485e17,4.786777e17,4.7913057e17,4.7958344e17,4.800363e17,4.8048916e17,4.8094202e17,4.8139488e17,4.8184774e17,4.823006e17,4.827535e17,4.8320636e17,4.8365922e17,4.841121e17,4.8456494e17,4.850178e17,4.8547067e17,4.8592353e17,4.863764e17,4.8682925e17,4.872821e17,4.87735e17,4.8818787e17,4.8864073e17,4.890936e17,4.8954645e17,4.899993e17,4.9045218e17,4.9090504e17,4.913579e17,4.9181076e17,4.9226362e17,4.9271652e17,4.9316938e17,4.9362224e17,4.940751e17,4.9452796e17,4.9498082e17,4.954337e17,4.9588655e17,4.963394e17,4.9679227e17,4.9724513e17,4.9769803e17,4.981509e17,4.9860375e17,4.990566e17,4.9950947e17,4.9996233e17,5.004152e17,5.0086806e17,5.0132092e17,5.0177378e17,5.0222664e17,5.0267954e17,5.031324e17,5.0358526e17,5.0403812e17,5.0449098e17,5.0494384e17,5.053967e17,5.0584957e17,5.0630243e17,5.067553e17,5.0720815e17,5.0766105e17,5.081139e17,5.0856677e17,5.0901963e17,5.094725e17,5.0992535e17,5.103782e17,5.1083108e17,5.1128394e17,5.117368e17,5.1218966e17,5.1264252e17,5.130954e17,5.1354828e17,5.1400114e17,5.14454e17,5.1490686e17,5.1535972e17,5.158126e17,5.1626545e17,5.167183e17,5.1717117e17,5.1762403e17,5.1807693e17,5.185298e17,5.1898265e17,5.194355e17,5.1988837e17,5.2034123e17,5.207941e17,5.2124695e17,5.216998e17,5.2215268e17,5.2260554e17,5.2305843e17,5.235113e17,5.2396416e17,5.2441702e17,5.2486988e17,5.2532274e17,5.257756e17,5.2622846e17,5.2668133e17,5.271342e17,5.2758705e17,5.2803994e17,5.284928e17,5.2894567e17,5.2939853e17,5.298514e17,5.3030425e17,5.307571e17,5.3120997e17,5.3166283e17,5.321157e17,5.3256856e17,5.3302145e17,5.334743e17,5.3392718e17,5.3438004e17,5.348329e17,5.3528576e17,5.3573862e17,5.3619148e17,5.3664434e17,5.370972e17,5.3755007e17,5.3800296e17,5.3845582e17,5.389087e17,5.3936155e17,5.398144e17,5.4026727e17,5.4072013e17,5.41173e17,5.4162585e17,5.420787e17,5.4253158e17,5.4298444e17,5.4343733e17,5.438902e17,5.4434306e17,5.447959e17,5.4524878e17,5.4570164e17,5.461545e17,5.4660736e17,5.4706022e17,5.475131e17,5.4796595e17,5.4841884e17,5.488717e17,5.4932456e17,5.4977743e17,5.502303e17,5.5068315e17,5.51136e17,5.5158887e17,5.5204173e17,5.524946e17,5.5294746e17,5.5340035e17,5.538532e17,5.5430607e17,5.5475894e17,5.552118e17,5.5566466e17,5.5611752e17,5.5657038e17,5.5702324e17,5.574761e17,5.5792896e17,5.5838186e17,5.5883472e17,5.592876e17,5.5974044e17,5.601933e17,5.6064617e17,5.6109903e17,5.615519e17,5.6200475e17,5.624576e17,5.6291047e17,5.6336337e17,5.6381623e17,5.642691e17,5.6472195e17,5.651748e17,5.6562768e17,5.6608054e17,5.665334e17,5.6698626e17,5.6743912e17,5.67892e17,5.6834488e17,5.6879774e17,5.692506e17,5.6970346e17,5.7015632e17,5.706092e17,5.7106205e17,5.715149e17,5.7196777e17,5.7242063e17,5.728735e17,5.733264e17,5.7377925e17,5.742321e17,5.7468497e17,5.7513783e17,5.755907e17,5.7604356e17,5.764964e17,5.769493e17,5.7740214e17,5.77855e17,5.7830786e17,5.787607e17,5.792136e17,5.7966645e17,5.801193e17,5.805722e17,5.810251e17,5.8147796e17,5.819308e17,5.823837e17,5.8283655e17,5.832894e17,5.837423e17,5.841951e17,5.84648e17,5.8510085e17,5.855537e17,5.860066e17,5.8645944e17,5.869123e17,5.8736516e17,5.87818e17,5.882709e17,5.8872374e17,5.891766e17,5.8962947e17,5.900823e17,5.905352e17,5.909881e17,5.91441e17,5.9189384e17,5.923467e17,5.9279956e17,5.932524e17,5.937053e17,5.9415815e17,5.94611e17,5.950639e17,5.955167e17,5.959696e17,5.9642245e17,5.968753e17,5.973282e17,5.9778104e17,5.982339e17,5.9868676e17,5.991396e17,5.995925e17,6.0004535e17,6.004982e17,6.009511e17,6.01404e17,6.0185686e17,6.023097e17,6.027626e17,6.0321544e17,6.036683e17,6.041212e17,6.04574e17,6.050269e17,6.0547975e17,6.059326e17,6.063855e17,6.0683833e17,6.072912e17,6.0774406e17,6.081969e17,6.086498e17,6.0910264e17,6.095555e17,6.1000836e17,6.104612e17,6.109141e17,6.11367e17,6.118199e17,6.1227274e17,6.127256e17,6.1317846e17,6.136313e17,6.140842e17,6.1453705e17,6.149899e17,6.154428e17,6.158956e17,6.163485e17,6.1680135e17,6.172542e17,6.177071e17,6.1815994e17,6.186128e17,6.1906566e17,6.195185e17,6.199714e17,6.2042424e17,6.208771e17,6.2133004e17,6.217829e17,6.2223576e17,6.226886e17,6.231415e17,6.2359434e17,6.240472e17,6.2450006e17,6.249529e17,6.254058e17,6.2585865e17,6.263115e17,6.267644e17,6.272172e17,6.276701e17,6.2812296e17,6.285758e17,6.290287e17,6.2948154e17,6.299344e17,6.3038726e17,6.308401e17,6.31293e17,6.317459e17,6.321988e17,6.3265164e17,6.331045e17,6.3355736e17,6.340102e17,6.344631e17,6.3491594e17,6.353688e17,6.358217e17,6.362745e17,6.367274e17,6.3718025e17,6.376331e17,6.38086e17,6.3853884e17,6.389917e17,6.3944456e17,6.398974e17,6.403503e17,6.4080314e17,6.41256e17,6.417089e17,6.421618e17,6.4261466e17,6.430675e17,6.435204e17,6.4397324e17,6.444261e17,6.4487896e17,6.453318e17,6.457847e17,6.4623755e17,6.466904e17,6.471433e17,6.475961e17,6.48049e17,6.4850185e17,6.489547e17,6.494076e17,6.4986044e17,6.503133e17,6.5076616e17,6.51219e17,6.5167195e17,6.521248e17,6.525777e17,6.5303054e17,6.534834e17,6.5393626e17,6.543891e17,6.54842e17,6.5529484e17,6.557477e17,6.5620057e17,6.566534e17,6.571063e17,6.5755915e17,6.58012e17,6.584649e17,6.589177e17,6.593706e17,6.5982346e17,6.602763e17,6.607292e17,6.6118204e17,6.616349e17,6.620878e17,6.625407e17,6.6299355e17,6.634464e17,6.638993e17,6.6435214e17,6.64805e17,6.6525786e17,6.657107e17,6.661636e17,6.6661645e17,6.670693e17,6.675222e17,6.67975e17,6.684279e17,6.6888075e17,6.693336e17,6.697865e17,6.7023934e17,6.706922e17,6.7114506e17,6.715979e17,6.7205085e17,6.725037e17,6.729566e17,6.734094e17,6.738623e17,6.7431516e17,6.74768e17,6.752209e17,6.7567374e17,6.761266e17,6.7657946e17,6.770323e17,6.774852e17,6.7793805e17,6.783909e17,6.788438e17,6.792966e17,6.797495e17,6.8020235e17,6.806552e17,6.811081e17,6.8156094e17,6.820139e17,6.824667e17,6.829196e17,6.8337245e17,6.838253e17,6.842782e17,6.8473104e17,6.851839e17,6.8563676e17,6.860896e17,6.865425e17,6.8699534e17,6.874482e17,6.879011e17,6.883539e17,6.888068e17,6.8925965e17,6.897125e17,6.901654e17,6.906182e17,6.910711e17,6.9152396e17,6.919768e17,6.9242975e17,6.928826e17,6.933355e17,6.937883e17,6.942412e17,6.9469406e17,6.951469e17,6.955998e17,6.9605264e17,6.965055e17,6.9695836e17,6.974112e17,6.978641e17,6.9831695e17,6.987698e17,6.992227e17,6.996755e17,7.001284e17,7.0058125e17,7.010341e17,7.01487e17,7.0193984e17,7.023928e17,7.028456e17,7.032985e17,7.0375135e17,7.042042e17,7.046571e17,7.0510993e17,7.055628e17,7.0601566e17,7.064685e17,7.069214e17,7.0737424e17,7.078271e17,7.0827996e17,7.087328e17,7.091857e17,7.0963855e17,7.100914e17,7.105443e17,7.109971e17,7.1145e17,7.1190286e17,7.123558e17,7.1280865e17,7.132615e17,7.137144e17,7.141672e17,7.146201e17,7.1507295e17,7.155258e17,7.159787e17,7.1643154e17,7.168844e17,7.1733726e17,7.177901e17,7.18243e17,7.1869584e17,7.191487e17,7.196016e17,7.200544e17,7.205073e17,7.2096015e17,7.21413e17,7.218659e17,7.223188e17,7.2277167e17,7.232245e17,7.236774e17,7.2413025e17,7.245831e17,7.25036e17,7.254888e17,7.259417e17,7.2639456e17,7.268474e17,7.273003e17,7.2775314e17,7.28206e17,7.2865886e17,7.291117e17,7.295646e17,7.3001745e17,7.304703e17,7.309232e17,7.31376e17,7.318289e17,7.3228175e17,7.327347e17,7.3318754e17,7.336404e17,7.340933e17,7.345461e17,7.34999e17,7.3545185e17,7.359047e17,7.363576e17,7.3681044e17,7.372633e17,7.3771616e17,7.38169e17,7.386219e17,7.3907474e17,7.395276e17,7.3998047e17,7.404333e17,7.408862e17,7.4133905e17,7.417919e17,7.422448e17,7.426977e17,7.4315056e17,7.436034e17,7.440563e17,7.4450915e17,7.44962e17,7.454149e17,7.458677e17,7.463206e17,7.4677345e17,7.472263e17,7.476792e17,7.4813204e17,7.485849e17,7.4903776e17,7.494906e17,7.499435e17,7.5039634e17,7.508492e17,7.513021e17,7.517549e17,7.522078e17,7.526607e17,7.531136e17,7.5356644e17,7.540193e17,7.544722e17,7.54925e17,7.553779e17,7.5583075e17,7.562836e17,7.567365e17,7.571893e17,7.576422e17,7.5809506e17,7.585479e17,7.590008e17,7.5945364e17,7.599065e17,7.6035936e17,7.608122e17,7.612651e17,7.6171795e17,7.621708e17,7.626237e17,7.630766e17,7.6352946e17,7.639823e17,7.644352e17,7.6488805e17,7.653409e17,7.657938e17,7.662466e17,7.666995e17,7.6715235e17,7.676052e17,7.680581e17,7.6851094e17,7.689638e17,7.6941666e17,7.698695e17,7.703224e17,7.7077524e17,7.712281e17,7.71681e17,7.721338e17,7.725867e17,7.730396e17,7.734925e17,7.7394534e17,7.743982e17,7.7485106e17,7.753039e17,7.757568e17,7.7620965e17,7.766625e17,7.771154e17,7.775682e17,7.780211e17,7.7847395e17,7.789268e17,7.793797e17,7.7983254e17,7.802854e17,7.8073826e17,7.811911e17,7.81644e17,7.8209685e17,7.825497e17,7.8300264e17,7.834555e17,7.8390836e17,7.843612e17,7.848141e17,7.8526694e17,7.857198e17,7.861727e17,7.866255e17,7.870784e17,7.8753125e17,7.879841e17,7.88437e17,7.8888983e17,7.893427e17,7.8979556e17,7.902484e17,7.907013e17,7.9115414e17,7.91607e17,7.9205986e17,7.925127e17,7.929656e17,7.934185e17,7.938714e17,7.9432424e17,7.947771e17,7.9522996e17,7.956828e17,7.961357e17,7.9658855e17,7.970414e17,7.974943e17,7.979471e17,7.984e17,7.9885285e17,7.993057e17,7.997586e17,8.0021144e17,8.006643e17,8.0111716e17,8.0157e17,8.020229e17,8.0247574e17,8.029286e17,8.0338154e17,8.038344e17,8.0428726e17,8.047401e17,8.05193e17,8.0564584e17,8.060987e17,8.0655156e17,8.070044e17,8.074573e17,8.0791015e17,8.08363e17,8.088159e17,8.092687e17,8.097216e17,8.1017446e17,8.106273e17,8.110802e17,8.1153304e17,8.119859e17,8.1243876e17,8.128916e17,8.1334455e17,8.137974e17,8.142503e17,8.1470314e17,8.15156e17,8.1560886e17,8.160617e17,8.165146e17,8.1696744e17,8.174203e17,8.178732e17,8.18326e17,8.187789e17,8.1923175e17,8.196846e17,8.201375e17,8.2059034e17,8.210432e17,8.2149606e17,8.219489e17,8.224018e17,8.2285464e17,8.233075e17,8.237604e17,8.242133e17,8.2466616e17,8.25119e17,8.255719e17,8.2602474e17,8.264776e17,8.2693046e17,8.273833e17,8.278362e17,8.2828905e17,8.287419e17,8.291948e17,8.296476e17,8.301005e17,8.3055335e17,8.310062e17,8.314591e17,8.3191194e17,8.323648e17,8.3281766e17,8.332705e17,8.3372345e17,8.341763e17,8.346292e17,8.3508204e17,8.355349e17,8.3598776e17,8.364406e17,8.368935e17,8.3734634e17,8.377992e17,8.382521e17,8.387049e17,8.391578e17,8.3961065e17,8.400635e17,8.405164e17,8.409692e17,8.414221e17,8.4187496e17,8.423278e17,8.427807e17,8.4323354e17,8.436865e17,8.441393e17,8.445922e17,8.4504505e17,8.454979e17,8.459508e17,8.4640364e17,8.468565e17,8.4730936e17,8.477622e17,8.482151e17,8.4866795e17,8.491208e17,8.495737e17,8.500265e17,8.504794e17,8.5093225e17,8.513851e17,8.51838e17,8.5229084e17,8.527437e17,8.5319656e17,8.536495e17,8.5410235e17,8.545552e17,8.550081e17,8.5546093e17,8.559138e17,8.5636666e17,8.568195e17,8.572724e17,8.5772524e17,8.581781e17,8.5863096e17,8.590838e17,8.595367e17,8.5998955e17,8.604424e17,8.608953e17,8.613481e17,8.61801e17,8.6225385e17,8.627067e17,8.631596e17,8.6361244e17,8.640654e17,8.645182e17,8.649711e17,8.6542395e17,8.658768e17,8.663297e17,8.6678254e17,8.672354e17,8.6768826e17,8.681411e17,8.68594e17,8.6904684e17,8.694997e17,8.699526e17,8.704054e17,8.708583e17,8.7131115e17,8.71764e17,8.722169e17,8.7266973e17,8.731226e17,8.7357546e17,8.740284e17,8.7448125e17,8.749341e17,8.75387e17,8.758398e17,8.762927e17,8.7674556e17,8.771984e17,8.776513e17,8.7810414e17,8.78557e17,8.7900986e17,8.794627e17,8.799156e17,8.8036845e17,8.808213e17,8.812742e17,8.81727e17,8.821799e17,8.8263275e17,8.830856e17,8.835385e17,8.839914e17,8.844443e17,8.848971e17,8.8535e17,8.8580285e17,8.862557e17,8.867086e17,8.8716144e17,8.876143e17,8.8806716e17,8.8852e17,8.889729e17,8.8942574e17,8.898786e17,8.9033146e17,8.907843e17,8.912372e17,8.9169005e17,8.921429e17,8.925958e17,8.930486e17,8.935015e17,8.9395436e17,8.944073e17,8.9486015e17,8.95313e17,8.957659e17,8.962187e17,8.966716e17,8.9712445e17,8.975773e17,8.980302e17,8.9848304e17,8.989359e17,8.9938876e17,8.998416e17,9.002945e17,9.0074734e17,9.012002e17,9.016531e17,9.021059e17,9.025588e17,9.0301165e17,9.034645e17,9.039174e17,9.043703e17,9.0482317e17,9.05276e17,9.057289e17,9.0618175e17,9.066346e17,9.070875e17,9.075403e17,9.079932e17,9.0844606e17,9.088989e17,9.093518e17,9.0980464e17,9.102575e17,9.1071036e17,9.111632e17,9.116161e17,9.1206895e17,9.125218e17,9.129747e17,9.134275e17,9.138804e17,9.143333e17,9.147862e17,9.1523905e17,9.156919e17,9.161448e17,9.165976e17,9.170505e17,9.1750335e17,9.179562e17,9.184091e17,9.1886194e17,9.193148e17,9.1976766e17,9.202205e17,9.206734e17,9.2112624e17,9.215791e17,9.2203197e17,9.224848e17,9.229377e17,9.2339055e17,9.238434e17,9.242963e17,9.247492e17,9.2520206e17,9.256549e17,9.261078e17,9.2656065e17,9.270135e17,9.274664e17,9.279192e17,9.283721e17,9.2882495e17,9.292778e17,9.297307e17,9.3018354e17,9.306364e17,9.3108926e17,9.315421e17,9.31995e17,9.3244785e17,9.329007e17,9.333536e17,9.338064e17,9.342593e17,9.347122e17,9.351651e17,9.3561794e17,9.360708e17,9.365237e17,9.369765e17,9.374294e17,9.3788225e17,9.383351e17,9.38788e17,9.392408e17,9.396937e17,9.4014656e17,9.405994e17,9.410523e17,9.4150514e17,9.41958e17,9.4241086e17,9.428637e17,9.433166e17,9.4376945e17,9.442223e17,9.4467524e17,9.451281e17,9.4558096e17,9.460338e17,9.464867e17,9.4693955e17,9.473924e17,9.478453e17,9.482981e17,9.48751e17,9.4920385e17,9.496567e17,9.501096e17,9.5056244e17,9.510153e17,9.5146816e17,9.51921e17,9.523739e17,9.5282674e17,9.532796e17,9.537325e17,9.541853e17,9.546382e17,9.550911e17,9.55544e17,9.5599684e17,9.564497e17,9.5690256e17,9.573554e17,9.578083e17,9.5826115e17,9.58714e17,9.591669e17,9.596197e17,9.600726e17,9.6052546e17,9.609783e17,9.614312e17,9.6188404e17,9.623369e17,9.6278976e17,9.632426e17,9.636955e17,9.6414835e17,9.646012e17,9.6505414e17,9.65507e17,9.6595986e17,9.664127e17,9.668656e17,9.6731844e17,9.677713e17,9.682242e17,9.68677e17,9.691299e17,9.6958275e17,9.700356e17,9.704885e17,9.7094134e17,9.713942e17,9.7184706e17,9.722999e17,9.727528e17,9.7320564e17,9.736585e17,9.7411136e17,9.745642e17,9.7501716e17,9.7547e17,9.759229e17,9.7637574e17,9.768286e17,9.7728146e17,9.777343e17,9.781872e17,9.7864005e17,9.790929e17,9.795458e17,9.799986e17,9.804515e17,9.8090435e17,9.813572e17,9.818101e17,9.8226294e17,9.827158e17,9.8316866e17,9.836215e17,9.840744e17,9.8452724e17,9.849802e17,9.8543304e17,9.858859e17,9.8633876e17,9.867916e17,9.872445e17,9.8769734e17,9.881502e17,9.8860307e17,9.890559e17,9.895088e17,9.8996165e17,9.904145e17,9.908674e17,9.913202e17,9.917731e17,9.9222596e17,9.926788e17,9.931317e17,9.9358454e17,9.940374e17,9.9449026e17,9.949431e17,9.9539605e17,9.958489e17,9.963018e17,9.9675464e17,9.972075e17,9.9766036e17,9.981132e17,9.985661e17,9.9901895e17,9.994718e17,9.999247e17,1.0003775e18,1.0008304e18,1.00128325e18,1.0017361e18,1.002189e18,1.00264184e18,1.0030947e18,1.00354756e18,1.0040004e18,1.0044533e18,1.00490614e18,1.0053591e18,1.0058119e18,1.0062648e18,1.00671766e18,1.0071705e18,1.0076234e18,1.00807624e18,1.0085291e18,1.00898196e18,1.0094348e18,1.0098877e18,1.01034055e18,1.0107934e18,1.0112463e18,1.0116991e18,1.012152e18,1.01260485e18,1.0130577e18,1.0135106e18,1.01396344e18,1.0144163e18,1.01486916e18,1.0153221e18,1.01577495e18,1.0162278e18,1.0166807e18,1.01713354e18,1.0175864e18,1.01803926e18,1.0184921e18,1.018945e18,1.01939784e18,1.0198507e18,1.0203036e18,1.0207564e18,1.0212093e18,1.02166215e18,1.022115e18,1.0225679e18,1.0230207e18,1.0234736e18,1.02392646e18,1.0243793e18,1.0248322e18,1.02528504e18,1.025738e18,1.0261908e18,1.0266437e18,1.02709656e18,1.0275494e18,1.0280023e18,1.02845514e18,1.028908e18,1.02936086e18,1.0298137e18,1.0302666e18,1.03071945e18,1.0311723e18,1.0316252e18,1.032078e18,1.0325309e18,1.03298375e18,1.0334366e18,1.0338895e18,1.03434234e18,1.0347952e18,1.03524806e18,1.035701e18,1.03615385e18,1.0366067e18,1.0370596e18,1.03751243e18,1.0379653e18,1.03841816e18,1.038871e18,1.0393239e18,1.03977674e18,1.0402296e18,1.04068246e18,1.0411353e18,1.0415882e18,1.04204105e18,1.0424939e18,1.0429468e18,1.0433996e18,1.0438525e18,1.04430536e18,1.0447582e18,1.0452111e18,1.045664e18,1.0461169e18,1.0465697e18,1.0470226e18,1.04747545e18,1.0479283e18,1.0483812e18,1.04883404e18,1.0492869e18,1.04973976e18,1.0501926e18,1.0506455e18,1.05109834e18,1.0515512e18,1.0520041e18,1.0524569e18,1.0529098e18,1.05336265e18,1.0538155e18,1.0542684e18,1.05472123e18,1.0551741e18,1.05562696e18,1.0560799e18,1.05653275e18,1.0569856e18,1.0574385e18,1.0578913e18,1.0583442e18,1.05879706e18,1.0592499e18,1.0597028e18,1.06015564e18,1.0606085e18,1.06106136e18,1.0615142e18,1.0619671e18,1.06241995e18,1.0628728e18,1.0633257e18,1.0637785e18,1.0642314e18,1.06468425e18,1.0651371e18,1.06559e18,1.0660429e18,1.0664958e18,1.0669486e18,1.0674015e18,1.06785435e18,1.0683072e18,1.0687601e18,1.06921294e18,1.0696658e18,1.07011866e18,1.0705715e18,1.0710244e18,1.07147724e18,1.0719301e18,1.07238297e18,1.0728358e18,1.0732887e18,1.07374155e18,1.0741944e18,1.0746473e18,1.0751001e18,1.075553e18,1.0760059e18,1.0764588e18,1.07691165e18,1.0773645e18,1.0778174e18,1.0782702e18,1.0787231e18,1.07917595e18,1.0796288e18,1.0800817e18,1.08053454e18,1.0809874e18,1.08144026e18,1.0818931e18,1.082346e18,1.08279884e18,1.0832517e18,1.0837046e18,1.0841574e18,1.0846103e18,1.08506315e18,1.085516e18,1.0859689e18,1.0864218e18,1.0868747e18,1.0873275e18,1.0877804e18,1.08823325e18,1.0886861e18,1.089139e18,1.0895918e18,1.0900447e18,1.09049756e18,1.0909504e18,1.0914033e18,1.09185614e18,1.092309e18,1.09276186e18,1.0932147e18,1.0936676e18,1.09412045e18,1.0945733e18,1.0950262e18,1.095479e18,1.0959319e18,1.0963848e18,1.0968377e18,1.09729055e18,1.0977434e18,1.0981963e18,1.0986491e18,1.099102e18,1.09955485e18,1.1000077e18,1.1004606e18,1.10091344e18,1.1013663e18,1.10181916e18,1.102272e18,1.1027249e18,1.10317774e18,1.1036306e18,1.1040835e18,1.1045363e18,1.1049892e18,1.10544205e18,1.1058949e18,1.10634784e18,1.1068007e18,1.10725356e18,1.1077064e18,1.1081593e18,1.10861215e18,1.109065e18,1.1095179e18,1.1099707e18,1.1104236e18,1.11087645e18,1.1113293e18,1.1117822e18,1.11223504e18,1.1126879e18,1.11314076e18,1.1135936e18,1.1140465e18,1.11449935e18,1.1149522e18,1.1154051e18,1.1158579e18,1.11631086e18,1.1167637e18,1.1172166e18,1.11766944e18,1.1181223e18,1.1185752e18,1.119028e18,1.1194809e18,1.11993375e18,1.1203866e18,1.1208395e18,1.12129233e18,1.1217452e18,1.12219806e18,1.1226509e18,1.1231038e18,1.12355664e18,1.1240095e18,1.12446236e18,1.1249152e18,1.1253681e18,1.12582095e18,1.1262738e18,1.12672674e18,1.1271796e18,1.12763246e18,1.1280853e18,1.1285382e18,1.12899105e18,1.1294439e18,1.1298968e18,1.1303496e18,1.1308025e18,1.13125535e18,1.1317082e18,1.1321611e18,1.13261394e18,1.1330668e18,1.13351966e18,1.1339725e18,1.1344254e18,1.13487824e18,1.1353311e18,1.135784e18,1.1362368e18,1.13668976e18,1.1371426e18,1.1375955e18,1.13804834e18,1.1385012e18,1.13895406e18,1.1394069e18,1.1398598e18,1.14031265e18,1.1407655e18,1.1412184e18,1.1416712e18,1.1421241e18,1.14257696e18,1.1430298e18,1.1434827e18,1.14393554e18,1.1443884e18,1.14484126e18,1.1452941e18,1.145747e18,1.14619985e18,1.1466528e18,1.14710564e18,1.1475585e18,1.14801136e18,1.1484642e18,1.1489171e18,1.14936994e18,1.1498228e18,1.1502757e18,1.1507285e18,1.1511814e18,1.15163425e18,1.1520871e18,1.15254e18,1.1529928e18,1.1534457e18,1.1538986e18,1.1543514e18,1.1548043e18,1.1552571e18,1.15571e18,1.1561629e18,1.1566157e18,1.1570686e18,1.1575214e18,1.1579743e18,1.1584272e18,1.15888e18,1.1593329e18,1.1597858e18,1.1602386e18,1.1606915e18,1.1611443e18,1.1615972e18,1.1620502e18,1.162503e18,1.1629559e18,1.1634088e18,1.1638616e18,1.1643145e18,1.1647674e18,1.1652202e18,1.1656731e18,1.166126e18,1.1665788e18,1.1670317e18,1.1674845e18,1.1679374e18,1.1683903e18,1.1688431e18,1.169296e18,1.1697488e18,1.1702017e18,1.1706546e18,1.1711074e18,1.1715603e18,1.1720131e18,1.172466e18,1.1729189e18,1.1733717e18,1.1738246e18,1.1742775e18,1.1747303e18,1.1751832e18,1.175636e18,1.1760889e18,1.1765418e18,1.1769946e18,1.1774475e18,1.1779003e18,1.1783532e18,1.1788061e18,1.1792589e18,1.1797118e18,1.1801647e18,1.1806175e18,1.1810704e18,1.1815232e18,1.1819762e18,1.1824291e18,1.182882e18,1.1833348e18,1.1837877e18,1.1842405e18,1.1846934e18,1.1851463e18,1.1855991e18,1.186052e18,1.1865049e18,1.1869577e18,1.1874106e18,1.1878634e18,1.1883163e18,1.1887692e18,1.189222e18,1.1896749e18,1.1901277e18,1.1905806e18,1.1910335e18,1.1914863e18,1.1919392e18,1.192392e18,1.1928449e18,1.1932978e18,1.1937506e18,1.1942035e18,1.1946564e18,1.1951092e18,1.1955621e18,1.196015e18,1.1964678e18,1.1969207e18,1.1973735e18,1.1978264e18,1.1982792e18,1.1987321e18,1.199185e18,1.1996378e18,1.2000907e18,1.2005436e18,1.2009964e18,1.2014493e18,1.2019021e18,1.2023551e18,1.202808e18,1.2032609e18,1.2037137e18,1.2041666e18,1.2046194e18,1.2050723e18,1.2055252e18,1.205978e18,1.2064309e18,1.2068837e18,1.2073366e18,1.2077895e18,1.2082423e18,1.2086952e18,1.209148e18,1.2096009e18,1.2100538e18,1.2105066e18,1.2109595e18,1.2114124e18,1.2118652e18,1.2123181e18,1.212771e18,1.2132238e18,1.2136767e18,1.2141295e18,1.2145824e18,1.2150353e18,1.2154881e18,1.215941e18,1.2163938e18,1.2168467e18,1.2172996e18,1.2177524e18,1.2182053e18,1.2186581e18,1.219111e18,1.2195639e18,1.2200167e18,1.2204696e18,1.2209225e18,1.2213753e18,1.2218282e18,1.222281e18,1.222734e18,1.2231869e18,1.2236398e18,1.2240926e18,1.2245455e18,1.2249983e18,1.2254512e18,1.225904e18,1.2263569e18,1.2268098e18,1.2272626e18,1.2277155e18,1.2281684e18,1.2286212e18,1.2290741e18,1.229527e18,1.2299798e18,1.2304327e18,1.2308855e18,1.2313384e18,1.2317913e18,1.2322441e18,1.232697e18,1.2331498e18,1.2336027e18,1.2340556e18,1.2345084e18,1.2349613e18,1.2354142e18,1.235867e18,1.2363199e18,1.2367727e18,1.2372256e18,1.2376785e18,1.2381313e18,1.2385842e18,1.239037e18,1.2394899e18,1.2399428e18,1.2403956e18,1.2408485e18,1.2413013e18,1.2417542e18,1.2422071e18,1.2426601e18,1.243113e18,1.2435658e18,1.2440187e18,1.2444715e18,1.2449244e18,1.2453772e18,1.2458301e18,1.246283e18,1.2467358e18,1.2471887e18,1.2476415e18,1.2480944e18,1.2485473e18,1.2490001e18,1.249453e18,1.2499059e18,1.2503587e18,1.2508116e18,1.2512644e18,1.2517173e18,1.2521702e18,1.252623e18,1.2530759e18,1.2535287e18,1.2539816e18,1.2544345e18,1.2548873e18,1.2553402e18,1.255793e18,1.2562459e18,1.2566988e18,1.2571516e18,1.2576045e18,1.2580574e18,1.2585102e18,1.2589631e18,1.259416e18,1.2598688e18,1.2603217e18,1.2607745e18,1.2612274e18,1.2616802e18,1.2621331e18,1.262586e18,1.263039e18,1.2634918e18,1.2639447e18,1.2643976e18,1.2648504e18,1.2653033e18,1.2657561e18,1.266209e18,1.2666619e18,1.2671147e18,1.2675676e18,1.2680204e18,1.2684733e18,1.2689262e18,1.269379e18,1.2698319e18,1.2702848e18,1.2707376e18,1.2711905e18,1.2716433e18,1.2720962e18,1.272549e18,1.2730019e18,1.2734548e18,1.2739076e18,1.2743605e18,1.2748134e18,1.2752662e18,1.2757191e18,1.276172e18,1.2766248e18,1.2770777e18,1.2775305e18,1.2779834e18,1.2784363e18,1.2788891e18,1.279342e18,1.2797948e18,1.2802477e18,1.2807006e18,1.2811534e18,1.2816063e18,1.2820591e18,1.282512e18,1.2829649e18,1.2834179e18,1.2838707e18,1.2843236e18,1.2847765e18,1.2852293e18,1.2856822e18,1.286135e18,1.2865879e18,1.2870408e18,1.2874936e18,1.2879465e18,1.2883993e18,1.2888522e18,1.289305e18,1.2897579e18,1.2902108e18,1.2906636e18,1.2911165e18,1.2915694e18,1.2920222e18,1.2924751e18,1.292928e18,1.2933808e18,1.2938337e18,1.2942865e18,1.2947394e18,1.2951923e18,1.2956451e18,1.296098e18,1.2965508e18,1.2970037e18,1.2974566e18,1.2979094e18,1.2983623e18,1.2988152e18,1.299268e18,1.2997209e18,1.3001737e18,1.3006266e18,1.3010795e18,1.3015323e18,1.3019852e18,1.302438e18,1.3028909e18,1.3033439e18,1.3037968e18,1.3042496e18,1.3047025e18,1.3051553e18,1.3056082e18,1.3060611e18,1.306514e18,1.3069668e18,1.3074197e18,1.3078725e18,1.3083254e18,1.3087782e18,1.3092311e18,1.309684e18,1.3101368e18,1.3105897e18,1.3110425e18,1.3114954e18,1.3119483e18,1.3124011e18,1.312854e18,1.3133069e18,1.3137597e18,1.3142126e18,1.3146654e18,1.3151183e18,1.3155712e18,1.316024e18,1.3164769e18,1.3169297e18,1.3173826e18,1.3178355e18,1.3182883e18,1.3187412e18,1.319194e18,1.3196469e18,1.3200998e18,1.3205526e18,1.3210055e18,1.3214584e18,1.3219112e18,1.3223641e18,1.322817e18,1.3232698e18,1.3237228e18,1.3241757e18,1.3246285e18,1.3250814e18,1.3255342e18,1.3259871e18,1.32644e18,1.3268928e18,1.3273457e18,1.3277986e18,1.3282514e18,1.3287043e18,1.3291571e18,1.32961e18,1.3300629e18,1.3305157e18,1.3309686e18,1.3314214e18,1.3318743e18,1.3323272e18,1.33278e18,1.3332329e18,1.3336858e18,1.3341386e18,1.3345915e18,1.3350443e18,1.3354972e18,1.33595e18,1.3364029e18,1.3368558e18,1.3373086e18,1.3377615e18,1.3382144e18,1.3386672e18,1.3391201e18,1.339573e18,1.3400258e18,1.3404787e18,1.3409315e18,1.3413844e18,1.3418373e18,1.3422901e18,1.342743e18,1.3431958e18,1.3436488e18,1.3441017e18,1.3445546e18,1.3450074e18,1.3454603e18,1.3459131e18,1.346366e18,1.3468189e18,1.3472717e18,1.3477246e18,1.3481775e18,1.3486303e18,1.3490832e18,1.349536e18,1.3499889e18,1.3504418e18,1.3508946e18,1.3513475e18,1.3518003e18,1.3522532e18,1.352706e18,1.3531589e18,1.3536118e18,1.3540646e18,1.3545175e18,1.3549704e18,1.3554232e18,1.3558761e18,1.356329e18,1.3567818e18,1.3572347e18,1.3576875e18,1.3581404e18,1.3585933e18,1.3590461e18,1.359499e18,1.3599518e18,1.3604047e18,1.3608576e18,1.3613104e18,1.3617633e18,1.3622162e18,1.362669e18,1.3631219e18,1.3635747e18,1.3640277e18,1.3644806e18,1.3649335e18,1.3653863e18,1.3658392e18,1.366292e18,1.3667449e18,1.3671978e18,1.3676506e18,1.3681035e18,1.3685564e18,1.3690092e18,1.3694621e18,1.369915e18,1.3703678e18,1.3708207e18,1.3712735e18,1.3717264e18,1.3721792e18,1.3726321e18,1.373085e18,1.3735378e18,1.3739907e18,1.3744435e18,1.3748964e18,1.3753493e18,1.3758021e18,1.376255e18,1.3767079e18,1.3771607e18,1.3776136e18,1.3780664e18,1.3785193e18,1.3789722e18,1.379425e18,1.3798779e18,1.3803307e18,1.3807836e18,1.3812365e18,1.3816893e18,1.3821422e18,1.382595e18,1.3830479e18,1.3835008e18,1.3839536e18,1.3844066e18,1.3848595e18,1.3853124e18,1.3857652e18,1.3862181e18,1.386671e18,1.3871238e18,1.3875767e18,1.3880295e18,1.3884824e18,1.3889352e18,1.3893881e18,1.389841e18,1.3902938e18,1.3907467e18,1.3911996e18,1.3916524e18,1.3921053e18,1.3925581e18,1.393011e18,1.3934639e18,1.3939167e18,1.3943696e18,1.3948224e18,1.3952753e18,1.3957282e18,1.396181e18,1.3966339e18,1.3970868e18,1.3975396e18,1.3979925e18,1.3984453e18,1.3988982e18,1.399351e18,1.3998039e18,1.4002568e18,1.4007096e18,1.4011625e18,1.4016154e18,1.4020682e18,1.4025211e18,1.402974e18,1.4034268e18,1.4038797e18,1.4043327e18,1.4047855e18,1.4052384e18,1.4056913e18,1.4061441e18,1.406597e18,1.4070498e18,1.4075027e18,1.4079556e18,1.4084084e18,1.4088613e18,1.4093141e18,1.409767e18,1.4102199e18,1.4106727e18,1.4111256e18,1.4115785e18,1.4120313e18,1.4124842e18,1.412937e18,1.4133899e18,1.4138428e18,1.4142956e18,1.4147485e18,1.4152013e18,1.4156542e18,1.416107e18,1.4165599e18,1.4170128e18,1.4174657e18,1.4179185e18,1.4183714e18,1.4188242e18,1.4192771e18,1.41973e18,1.4201828e18,1.4206357e18,1.4210885e18,1.4215414e18,1.4219943e18,1.4224471e18,1.4229e18,1.4233528e18,1.4238057e18,1.4242586e18,1.4247116e18,1.4251644e18,1.4256173e18,1.4260702e18,1.426523e18,1.4269759e18,1.4274287e18,1.4278816e18,1.4283345e18,1.4287873e18,1.4292402e18,1.429693e18,1.4301459e18,1.4305988e18,1.4310516e18,1.4315045e18,1.4319574e18,1.4324102e18,1.4328631e18,1.433316e18,1.4337688e18,1.4342217e18,1.4346745e18,1.4351274e18,1.4355802e18,1.4360331e18,1.436486e18,1.4369388e18,1.4373917e18,1.4378445e18,1.4382974e18,1.4387503e18,1.4392031e18,1.439656e18,1.4401089e18,1.4405617e18,1.4410146e18,1.4414674e18,1.4419203e18,1.4423732e18,1.442826e18,1.4432789e18,1.4437317e18,1.4441846e18,1.4446376e18,1.4450905e18,1.4455433e18,1.4459962e18,1.446449e18,1.4469019e18,1.4473548e18,1.4478076e18,1.4482605e18,1.4487134e18,1.4491662e18,1.4496191e18,1.450072e18,1.4505248e18,1.4509777e18,1.4514305e18,1.4518834e18,1.4523363e18,1.4527891e18,1.453242e18,1.4536948e18,1.4541477e18,1.4546006e18,1.4550534e18,1.4555063e18,1.4559591e18,1.456412e18,1.4568649e18,1.4573177e18,1.4577706e18,1.4582234e18,1.4586763e18,1.4591292e18,1.459582e18,1.4600349e18,1.4604878e18,1.4609406e18,1.4613935e18,1.4618463e18,1.4622992e18,1.462752e18,1.4632049e18,1.4636578e18,1.4641106e18,1.4645635e18,1.4650165e18,1.4654694e18,1.4659222e18,1.4663751e18,1.466828e18,1.4672808e18,1.4677337e18,1.4681865e18,1.4686394e18,1.4690923e18,1.4695451e18,1.469998e18,1.4704508e18,1.4709037e18,1.4713566e18,1.4718094e18,1.4722623e18,1.4727151e18,1.473168e18,1.4736209e18,1.4740737e18,1.4745266e18,1.4749795e18,1.4754323e18,1.4758852e18,1.476338e18,1.4767909e18,1.4772438e18,1.4776966e18,1.4781495e18,1.4786023e18,1.4790552e18,1.4795081e18,1.4799609e18,1.4804138e18,1.4808667e18,1.4813195e18,1.4817724e18,1.4822252e18,1.4826781e18,1.483131e18,1.4835838e18,1.4840367e18,1.4844895e18,1.4849424e18,1.4853954e18,1.4858483e18,1.4863011e18,1.486754e18,1.4872068e18,1.4876597e18,1.4881126e18,1.4885654e18,1.4890183e18,1.4894712e18,1.489924e18,1.4903769e18,1.4908297e18,1.4912826e18,1.4917355e18,1.4921883e18,1.4926412e18,1.493094e18,1.4935469e18,1.4939998e18,1.4944526e18,1.4949055e18,1.4953584e18,1.4958112e18,1.4962641e18,1.496717e18,1.4971698e18,1.4976227e18,1.4980755e18,1.4985284e18,1.4989812e18,1.4994341e18,1.499887e18,1.5003398e18,1.5007927e18,1.5012456e18,1.5016984e18,1.5021513e18,1.5026041e18,1.503057e18,1.5035099e18,1.5039627e18,1.5044156e18,1.5048684e18,1.5053214e18,1.5057743e18,1.5062272e18,1.50668e18,1.5071329e18,1.5075857e18,1.5080386e18,1.5084915e18,1.5089443e18,1.5093972e18,1.50985e18,1.5103029e18,1.5107558e18,1.5112086e18,1.5116615e18,1.5121144e18,1.5125672e18,1.5130201e18,1.513473e18,1.5139258e18,1.5143787e18,1.5148315e18,1.5152844e18,1.5157373e18,1.5161901e18,1.516643e18,1.5170958e18,1.5175487e18,1.5180016e18,1.5184544e18,1.5189073e18,1.5193601e18,1.519813e18,1.5202659e18,1.5207187e18,1.5211716e18,1.5216244e18,1.5220773e18,1.5225302e18,1.522983e18,1.5234359e18,1.5238888e18,1.5243416e18,1.5247945e18,1.5252473e18,1.5257003e18,1.5261532e18,1.526606e18,1.5270589e18,1.5275118e18,1.5279646e18,1.5284175e18,1.5288704e18,1.5293232e18,1.5297761e18,1.530229e18,1.5306818e18,1.5311347e18,1.5315875e18,1.5320404e18,1.5324933e18,1.5329461e18,1.533399e18,1.5338518e18,1.5343047e18,1.5347576e18,1.5352104e18,1.5356633e18,1.5361162e18,1.536569e18,1.5370219e18,1.5374747e18,1.5379276e18,1.5383805e18,1.5388333e18,1.5392862e18,1.539739e18,1.5401919e18,1.5406448e18,1.5410976e18,1.5415505e18,1.5420033e18,1.5424562e18,1.5429091e18,1.543362e18,1.5438148e18,1.5442677e18,1.5447205e18,1.5451734e18,1.5456262e18,1.5460792e18,1.5465321e18,1.546985e18,1.5474378e18,1.5478907e18,1.5483435e18,1.5487964e18,1.5492493e18,1.5497021e18,1.550155e18,1.5506079e18,1.5510607e18,1.5515136e18,1.5519664e18,1.5524193e18,1.5528722e18,1.553325e18,1.5537779e18,1.5542307e18,1.5546836e18,1.5551365e18,1.5555893e18,1.5560422e18,1.556495e18,1.5569479e18,1.5574008e18,1.5578536e18,1.5583065e18,1.5587594e18,1.5592122e18,1.5596651e18,1.560118e18,1.5605708e18,1.5610237e18,1.5614765e18,1.5619294e18,1.5623822e18,1.5628351e18,1.563288e18,1.5637408e18,1.5641937e18,1.5646466e18,1.5650994e18,1.5655523e18,1.5660053e18,1.5664581e18,1.566911e18,1.5673639e18,1.5678167e18,1.5682696e18,1.5687224e18,1.5691753e18,1.5696282e18,1.570081e18,1.5705339e18,1.5709867e18,1.5714396e18,1.5718925e18,1.5723453e18,1.5727982e18,1.573251e18,1.5737039e18,1.5741568e18,1.5746096e18,1.5750625e18,1.5755154e18,1.5759682e18,1.5764211e18,1.576874e18,1.5773268e18,1.5777797e18,1.5782325e18,1.5786854e18,1.5791383e18,1.5795911e18,1.580044e18,1.5804968e18,1.5809497e18,1.5814026e18,1.5818554e18,1.5823083e18,1.5827611e18,1.583214e18,1.5836669e18,1.5841197e18,1.5845726e18,1.5850255e18,1.5854783e18,1.5859312e18,1.5863842e18,1.586837e18,1.5872899e18,1.5877428e18,1.5881956e18,1.5886485e18,1.5891013e18,1.5895542e18,1.590007e18,1.5904599e18,1.5909128e18,1.5913656e18,1.5918185e18,1.5922714e18,1.5927242e18,1.5931771e18,1.59363e18,1.5940828e18,1.5945357e18,1.5949885e18,1.5954414e18,1.5958943e18,1.5963471e18,1.5968e18,1.5972528e18,1.5977057e18,1.5981586e18,1.5986114e18,1.5990643e18,1.5995172e18,1.59997e18,1.6004229e18,1.6008757e18,1.6013286e18,1.6017815e18,1.6022343e18,1.6026872e18,1.60314e18,1.6035929e18,1.6040458e18,1.6044986e18,1.6049515e18,1.6054043e18,1.6058572e18,1.6063102e18,1.6067631e18,1.607216e18,1.6076688e18,1.6081217e18,1.6085745e18,1.6090274e18,1.6094802e18,1.6099331e18,1.610386e18,1.6108388e18,1.6112917e18,1.6117445e18,1.6121974e18,1.6126503e18,1.6131031e18,1.613556e18,1.6140089e18,1.6144617e18,1.6149146e18,1.6153674e18,1.6158203e18,1.6162732e18,1.616726e18,1.6171789e18,1.6176317e18,1.6180846e18,1.6185375e18,1.6189903e18,1.6194432e18,1.619896e18,1.6203489e18,1.6208018e18,1.6212546e18,1.6217075e18,1.6221604e18,1.6226132e18,1.6230661e18,1.623519e18,1.6239718e18,1.6244247e18,1.6248775e18,1.6253304e18,1.6257832e18,1.6262361e18,1.6266891e18,1.627142e18,1.6275948e18,1.6280477e18,1.6285006e18,1.6289534e18,1.6294063e18,1.6298591e18,1.630312e18,1.6307649e18,1.6312177e18,1.6316706e18,1.6321234e18,1.6325763e18,1.6330292e18,1.633482e18,1.6339349e18,1.6343878e18,1.6348406e18,1.6352935e18,1.6357463e18,1.6361992e18,1.636652e18,1.6371049e18,1.6375578e18,1.6380106e18,1.6384635e18,1.6389164e18,1.6393692e18,1.6398221e18,1.640275e18,1.6407278e18,1.6411807e18,1.6416335e18,1.6420864e18,1.6425393e18,1.6429921e18,1.643445e18,1.6438978e18,1.6443507e18,1.6448036e18,1.6452564e18,1.6457093e18,1.6461621e18,1.646615e18,1.647068e18,1.6475209e18,1.6479737e18,1.6484266e18,1.6488795e18,1.6493323e18,1.6497852e18,1.650238e18,1.6506909e18,1.6511438e18,1.6515966e18,1.6520495e18,1.6525023e18,1.6529552e18,1.653408e18,1.6538609e18,1.6543138e18,1.6547666e18,1.6552195e18,1.6556724e18,1.6561252e18,1.6565781e18,1.657031e18,1.6574838e18,1.6579367e18,1.6583895e18,1.6588424e18,1.6592953e18,1.6597481e18,1.660201e18,1.6606538e18,1.6611067e18,1.6615596e18,1.6620124e18,1.6624653e18,1.6629182e18,1.663371e18,1.6638239e18,1.6642767e18,1.6647296e18,1.6651825e18,1.6656353e18,1.6660882e18,1.666541e18,1.666994e18,1.6674469e18,1.6678998e18,1.6683526e18,1.6688055e18,1.6692583e18,1.6697112e18,1.6701641e18,1.670617e18,1.6710698e18,1.6715227e18,1.6719755e18,1.6724284e18,1.6728812e18,1.6733341e18,1.673787e18,1.6742398e18,1.6746927e18,1.6751455e18,1.6755984e18,1.6760513e18,1.6765041e18,1.676957e18,1.6774099e18,1.6778627e18,1.6783156e18,1.6787684e18,1.6792213e18,1.6796742e18,1.680127e18,1.6805799e18,1.6810327e18,1.6814856e18,1.6819385e18,1.6823913e18,1.6828442e18,1.683297e18,1.6837499e18,1.6842028e18,1.6846556e18,1.6851085e18,1.6855614e18,1.6860142e18,1.6864671e18,1.68692e18,1.687373e18,1.6878258e18,1.6882787e18,1.6887315e18,1.6891844e18,1.6896372e18,1.6900901e18,1.690543e18,1.6909958e18,1.6914487e18,1.6919016e18,1.6923544e18,1.6928073e18,1.6932601e18,1.693713e18,1.6941659e18,1.6946187e18,1.6950716e18,1.6955244e18,1.6959773e18,1.6964302e18,1.696883e18,1.6973359e18,1.6977888e18,1.6982416e18,1.6986945e18,1.6991473e18,1.6996002e18,1.700053e18,1.7005059e18,1.7009588e18,1.7014116e18,1.7018645e18,1.7023174e18,1.7027702e18,1.7032231e18,1.703676e18,1.7041288e18,1.7045817e18,1.7050345e18,1.7054874e18,1.7059403e18,1.7063931e18,1.706846e18,1.707299e18,1.7077518e18,1.7082047e18,1.7086576e18,1.7091104e18,1.7095633e18,1.7100161e18,1.710469e18,1.7109219e18,1.7113747e18,1.7118276e18,1.7122805e18,1.7127333e18,1.7131862e18,1.713639e18,1.7140919e18,1.7145448e18,1.7149976e18,1.7154505e18,1.7159033e18,1.7163562e18,1.716809e18,1.7172619e18,1.7177148e18,1.7181677e18,1.7186205e18,1.7190734e18,1.7195262e18,1.7199791e18,1.720432e18,1.7208848e18,1.7213377e18,1.7217905e18,1.7222434e18,1.7226963e18,1.7231491e18,1.723602e18,1.7240548e18,1.7245077e18,1.7249606e18,1.7254134e18,1.7258663e18,1.7263192e18,1.726772e18,1.7272249e18,1.7276779e18,1.7281307e18,1.7285836e18,1.7290365e18,1.7294893e18,1.7299422e18,1.730395e18,1.7308479e18,1.7313008e18,1.7317536e18,1.7322065e18,1.7326594e18,1.7331122e18,1.7335651e18,1.734018e18,1.7344708e18,1.7349237e18,1.7353765e18,1.7358294e18,1.7362822e18,1.7367351e18,1.737188e18,1.7376408e18,1.7380937e18,1.7385465e18,1.7389994e18,1.7394523e18,1.7399051e18,1.740358e18,1.7408109e18,1.7412637e18,1.7417166e18,1.7421694e18,1.7426223e18,1.7430752e18,1.743528e18,1.7439809e18,1.7444337e18,1.7448866e18,1.7453395e18,1.7457923e18,1.7462452e18,1.746698e18,1.7471509e18,1.7476038e18,1.7480568e18,1.7485096e18,1.7489625e18,1.7494154e18,1.7498682e18,1.7503211e18,1.750774e18,1.7512268e18,1.7516797e18,1.7521325e18,1.7525854e18,1.7530382e18,1.7534911e18,1.753944e18,1.7543968e18,1.7548497e18,1.7553026e18,1.7557554e18,1.7562083e18,1.7566611e18,1.757114e18,1.7575669e18,1.7580197e18,1.7584726e18,1.7589254e18,1.7593783e18,1.7598312e18,1.760284e18,1.7607369e18,1.7611898e18,1.7616426e18,1.7620955e18,1.7625483e18,1.7630012e18,1.763454e18,1.7639069e18,1.7643598e18,1.7648126e18,1.7652655e18,1.7657184e18,1.7661712e18,1.7666241e18,1.767077e18,1.7675298e18,1.7679828e18,1.7684357e18,1.7688885e18,1.7693414e18,1.7697943e18,1.7702471e18,1.7707e18,1.7711528e18,1.7716057e18,1.7720586e18,1.7725114e18,1.7729643e18,1.7734171e18,1.77387e18,1.7743229e18,1.7747757e18,1.7752286e18,1.7756815e18,1.7761343e18,1.7765872e18,1.77704e18,1.7774929e18,1.7779458e18,1.7783986e18,1.7788515e18,1.7793043e18,1.7797572e18,1.78021e18,1.7806629e18,1.7811158e18,1.7815687e18,1.7820215e18,1.7824744e18,1.7829272e18,1.7833801e18,1.783833e18,1.7842858e18,1.7847387e18,1.7851915e18,1.7856444e18,1.7860973e18,1.7865501e18,1.787003e18,1.7874558e18,1.7879087e18,1.7883617e18,1.7888146e18,1.7892674e18,1.7897203e18,1.7901732e18,1.790626e18,1.7910789e18,1.7915317e18,1.7919846e18,1.7924375e18,1.7928903e18,1.7933432e18,1.793796e18,1.7942489e18,1.7947018e18,1.7951546e18,1.7956075e18,1.7960604e18,1.7965132e18,1.7969661e18,1.797419e18,1.7978718e18,1.7983247e18,1.7987775e18,1.7992304e18,1.7996832e18,1.8001361e18,1.800589e18,1.8010418e18,1.8014947e18,1.8019476e18,1.8024004e18,1.8028533e18,1.8033061e18,1.803759e18,1.8042119e18,1.8046647e18,1.8051176e18,1.8055704e18,1.8060233e18,1.8064762e18,1.806929e18,1.8073819e18,1.8078347e18,1.8082876e18,1.8087406e18,1.8091935e18,1.8096463e18,1.8100992e18,1.810552e18,1.8110049e18]}
diff --git a/lib/node_modules/@stdlib/math/base/special/covercosf/test/fixtures/julia/medium_negative.json b/lib/node_modules/@stdlib/math/base/special/covercosf/test/fixtures/julia/medium_negative.json
new file mode 100644
index 000000000000..24ceab28b456
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/covercosf/test/fixtures/julia/medium_negative.json
@@ -0,0 +1 @@
+{"expected":[0.99997765,1.199736,1.391443,1.5673714,1.7204292,1.8444469,1.9344473,1.9867479,1.9992732,1.9715184,1.9046023,1.8012221,1.6655451,1.5030403,1.3202584,1.124567,0.92385435,0.7262111,0.53960407,0.37155545,0.22883898,0.11720759,0.04116112,0.0037648678,0.0065262318,0.04933405,0.13046265,0.24664176,0.39318836,0.56419516,0.75276905,0.95130867,1.151811,1.3461939,1.5266219,1.6858221,1.8173772,1.9159844,1.9776685,1.9999436,1.9819114,1.924299,1.8294287,1.7011244,1.5445583,1.3660413,1.1727694,0.9725333,0.77340436,0.5834093,0.41020685,0.26073748,0.14111668,0.05611694,0.009164631,0.0021523237,0.03536266,0.10745704,0.21552926,0.35522312,0.5209075,0.7059039,0.9027551,1.1035261,1.3001242,1.4846244,1.6495895,1.7883703,1.8953722,1.9662821,1.9982418,1.9899628,1.9417791,1.8556328,1.7349964,1.5847328,1.4108988,1.2205018,1.0212165,0.8210759,0.6281477,0.4502086,0.29443133,0.16709512,0.073332846,0.016923964,0.00014233589,0.023664415,0.08654201,0.18624055,0.31874132,0.47870326,0.65967834,0.8543716,1.0549351,1.2532841,1.4414783,1.6118175,1.7574947,1.8726379,1.9526055,1.994174,1.9956679,1.9570272,1.8798091,1.7671266,1.6235213,1.4547825,1.2677116,1.0698494,0.8691716,0.6737674,0.4915135,0.32975632,0.19501638,0.0927248,0.027005017,0.00050610304,0.014296174,0.067819476,0.15891838,0.28392088,0.43778807,0.6143177,0.806394,1.0062745,1.205902,1.3972297,1.5725453,1.724782,1.8478031,1.9366497,1.9877405,1.999016,1.9700218,1.9019265,1.7974752,1.660878,1.4976412,1.3143449,1.1183168,0.9175773,0.7201603,0.53402346,0.3666699,0.22484547,0.11426711,0.039392114,0.0032387376,0.007264197,0.051306248,0.13358963,0.25079757,0.3982054,0.5698712,0.75887525,0.9575989,1.1580318,1.3520944,1.5319644,1.6903911,1.8209887,1.9184926,1.9789724,1.9999907,1.9806998,1.9218774,1.8258947,1.6966207,1.5392661,1.3601742,1.1665639,0.9662394,0.7672758,0.57769316,0.4051335,0.25655258,0.13793957,0.054075778,0.00834161,0.0025806427,0.037025094,0.110286474,0.21941173,0.3600021,0.52644414,0.711928,0.909024,1.1097871,1.3061247,1.4901227,1.6543641,1.7922285,1.8981586,1.9678843,1.9985952,1.9890532,1.9396433,1.8523567,1.7307122,1.579613,1.4051499,1.2143556,1.0149207,0.8148843,0.6223098,0.44495976,0.28998315,0.16362685,0.07098436,0.015789866,0.00026839972,0.025045514,0.089122474,0.18991643,0.32336438,0.4840871,0.665606,0.86060417,1.0612212,1.2593706,1.4470648,1.6167381,1.761551,1.8756663,1.954484,1.9948268,1.9950688,1.9552002,1.876828,1.7630719,1.6185861,1.4491656,1.2616394,1.0635666,0.8629315,0.6678215,0.48610157,0.3250965,0.19129646,0.090094745,0.02557081,0.00032562017,0.015376687,0.070117354,0.16234106,0.28833038,0.44300663,0.620135,0.8125755,1.012571,1.2120597,1.4030005,1.5776966,1.729106,1.8511255,1.9388367,1.9887038,1.998717,1.9684724,1.8991892,1.7936602,1.6561391,1.4921696,1.3083609,1.1121224,0.9113644,0.7141791,0.5285151,0.36185646,0.22092098,0.1113897,0.037677824,0.0027565956,0.008041441,0.053316116,0.13675106,0.25498307,0.40324628,0.57556427,0.7649911,0.96389097,1.1642463,1.3579811,1.5372858,1.6949328,1.8245676,1.9209642,1.9802376,1.9999981,1.9794492,1.9194193,1.8223281,1.6920893,1.5339527,1.3542929,1.1603518,0.9599468,0.7611565,0.5719938,0.40008378,0.25235605,0.13476539,0.0520519,0.0075496435,0.003052473,0.038741708,0.11317873,0.22336304,0.36485308,0.5319456,0.71790504,0.91523564,1.115983,1.3120552,1.4955486,1.6590667,1.7960182,1.9008827,1.9694481,1.998909,1.9881046,1.9374702,1.8490468,1.726399,1.5744703,1.3993851,1.2082009,1.0086242,0.80869997,0.61648685,0.43973297,0.2855631,0.16019177,0.06867266,0.01469481,0.00043410063,0.026465297,0.09173912,0.19362444,0.32801425,0.48949146,0.671547,0.86684227,1.067505,1.2654468,1.4526885,1.6216825,1.7656169,1.8786898,1.956343,1.9954467,1.9944246,1.9533176,1.8737831,1.7590268,1.6136745,1.4435854,1.2556157,1.0573422,0.8567572,0.6619463,0.48076218,0.32046342,0.1876086,0.08750075,0.024175286,0.0001847148,0.016496181,0.07245213,0.16579694,0.29276806,0.4482473,0.6259674,0.81876445,1.018867,1.2182091,1.4087553,1.582825,1.7334011,1.8544142,1.9409864,1.9896281,1.9983783,1.9668845,1.8964162,1.7898138,1.6513743,1.4866785,1.3023648,1.1058631,0.9050941,0.7081506,0.5229715,0.35702103,0.21698874,0.1085192,0.035984755,0.0023091435,0.008849978,0.05534345,0.13991553,0.25915706,0.4082616,0.5812188,0.7710568,0.97012335,1.1703943,1.3638535,1.5425858,1.6994469,1.8281137,1.9233996,1.9814639,1.9999658,1.9781597,1.9169246,1.8187287,1.6875304,1.5286181,1.3483975,1.1541332,0.95365584,0.75504667,0.56631136,0.3950578,0.24818915,0.13162553,0.050065637,0.0067970157,0.003563881,0.04049653,0.11610615,0.22734511,0.36972928,0.53751934,0.72395176,0.9215115,1.1222351,1.3180314,1.501008,1.6637894,1.7998137,1.9035981,1.9709588,1.9991808,1.9871264,1.9352815,1.8457358,1.7220991,1.569355,1.3936605,1.2020978,1.0023274,0.80252326,0.61067915,0.43452835,0.28117138,0.15679002,0.066397965,0.013638854,0.00063943863,0.027923644,0.0943917,0.19736433,0.33269078,0.49491602,0.67750096,0.8730856,1.0737861,1.2715124,1.4582942,1.6266023,1.7696525,1.8816783,1.9581643,1.9960272,1.9937408,1.9513973,1.8707035,1.7549121,1.6086907,1.4379332,1.2495229,1.0510546,0.8505282,0.65602696,0.47539103,0.31590182,0.18398821,0.08496761,0.02283138,8.434057e-5,0.017643273,0.07480049,0.16925198,0.29719043,0.4535098,0.63181454,0.8249606,1.0251623,1.22435,1.414494,1.5879301,1.7376671,1.8576691,1.9430989,1.990513,1.998,1.9652584,1.8936075,1.7859359,1.6465838,1.481168,1.2963568,1.0995996,0.89882755,0.7021338,0.51744676,0.35221118,0.21308762,0.10568404,0.03432983,0.001901269,0.009705484,0.057427943,0.1431449,0.2634012,0.4133494,0.5869452,0.7771909,0.97641796,1.1765956,1.3696548,1.5478134,1.7038898,1.831593,1.9257752,1.9826398,1.9998949,1.9768445,1.9144182,1.815097,1.6829443,1.5232625,1.3424883,1.1479086,0.9473667,0.74894655,0.5606461,0.39005584,0.24405205,0.12852013,0.04811704,0.0060837865,0.004114747,0.042289317,0.11906862,0.23135781,0.3746305,0.54311144,0.7300094,0.92779046,1.1284822,1.323995,1.5064477,1.6684858,1.8035775,1.9062777,1.9724461,1.9994159,1.9860997,1.9330344,1.8423591,1.7177287,1.5641671,1.3878644,1.1959268,0.99609166,0.7964141,0.6049429,0.42939627,0.27685034,0.15345412,0.064181745,0.012631655,0.0008843541,0.029420555,0.09708023,0.20113611,0.33739376,0.50036067,0.68346775,0.8793341,1.0800643,1.2775673,1.4638817,1.6314971,1.7736576,1.8846321,1.9599476,1.9965682,1.9930177,1.9494393,1.8675895,1.7507675,1.6036826,1.4322636,1.2434204,1.044765,0.84430504,0.65012115,0.47004068,0.31132257,0.18036461,0.08244574,0.021512926,2.2351742e-5,0.018840373,0.07720834,0.17277354,0.30168372,0.45874268,0.63761944,0.8311035,1.0313957,1.2304224,1.4201608,1.5929629,1.7418629,1.8608588,1.945174,1.9913586,1.9975822,1.9635937,1.8907635,1.782027,1.6417674,1.4756386,1.290337,1.093332,0.8925651,0.69612867,0.51194113,0.34742695,0.20921767,0.10288435,0.032713294,0.0015329719,0.010600269,0.05954975,0.14640826,0.2676745,0.41846043,0.59268785,0.78333384,0.9827135,1.1827899,1.3754983,1.5530704,1.7083486,1.8350737,1.9281375,1.9837885,1.9997836,1.9754779,1.9118514,1.8114686,1.678376,1.5179384,1.336623,1.1417385,0.94114065,0.74291533,0.555053,0.38512617,0.23994493,0.12544924,0.046206176,0.005409956,0.004705131,0.044120133,0.12206602,0.23540097,0.37955648,0.5487217,0.73607767,0.93407226,1.1347244,1.3299457,1.5118673,1.6731555,1.8073095,1.9089212,1.9738948,1.9996113,1.985034,1.9307504,1.838949,1.7133299,1.5589569,1.3820527,1.1897482,0.98979497,0.79025316,0.59916615,0.42423648,0.27251548,0.150119,0.061980784,0.0116535425,0.0011659861,0.03094089,0.099778,0.20490253,0.34207702,0.505772,0.68938905,0.88552666,1.0862786,1.2836112,1.4694508,1.6363671,1.7776318,1.8875506,1.9616928,1.9970696,1.9922552,1.9474435,1.8644409,1.7465932,1.5986507,1.426577,1.2373081,1.0384736,0.83808815,0.6442293,0.4647113,0.30677056,0.17677349,0.07996023,0.020233214,5.9604645e-8,0.020076334,0.079652786,0.17632794,0.3062048,0.46404815,0.64349544,0.8373132,1.0376889,1.2365452,1.4258666,1.5980215,1.7460705,1.8640459,1.947192,1.9921575,1.9971294,1.9619079,1.8879123,1.7781253,1.6369727,1.470144,1.2843642,1.0870609,0.8863068,0.6901356,0.5064549,0.34266865,0.20537907,0.10012025,0.031135023,0.0012042522,0.011534333,0.061708868,0.14970547,0.2719769,0.42359453,0.5984467,0.7894854,0.98900974,1.188977,1.3813269,1.5583055,1.7127793,1.8385212,1.9304631,1.9848983,1.9996328,1.9740727,1.9092484,1.8077726,1.6737361,1.5125418,1.3306869,1.1355025,0.9348559,0.73683524,0.5494226,0.38017255,0.23590738,0.122442305,0.0443511,0.004781544,0.005328715,0.0459705,0.12506866,0.23943484,0.38445896,0.5543498,0.7421565,0.9403567,1.140961,1.3358834,1.5172665,1.6777987,1.8110094,1.9115287,1.9753048,1.9997671,1.9839292,1.9284296,1.8355055,1.7089028,1.5537245,1.376226,1.183562,0.9834987,0.7841006,0.59340525,0.4190995,0.26820952,0.14681762,0.059817016,0.01071465,0.0014898181,0.032514334,0.10253769,0.2087372,0.3468321,0.51125586,0.69538057,0.8917843,1.0925502,1.2895854,1.4749476,1.641165,1.7815373,1.8904064,1.9633836,1.9975274,1.9914613,1.9454302,1.8612581,1.7423892,1.593595,1.4208734,1.2311865,1.0321807,0.8318776,0.6383515,0.45940322,0.3022461,0.17321503,0.07751119,0.018992364,1.7404556e-5,0.021351218,0.08213377,0.17991495,0.31075335,0.46937484,0.6493856,0.84352934,1.0439804,1.2426586,1.4315554,1.6030564,1.7502486,1.8671987,1.9491924,1.9929248,1.9966329,1.9601674,1.884998,1.7741549,1.632106,1.4645772,1.2783217,1.0808471,0.88011366,0.6842128,0.50104105,0.33798212,0.20160878,0.09741807,0.029609978,0.0009177327,0.012507498,0.06390524,0.15303636,0.27630812,0.42875153,0.6042216,0.79564524,0.9953064,1.1951567,1.3871403,1.5635185,1.7171817,1.8419356,1.9327517,1.985969,1.9994423,1.9726288,1.9066093,1.8040447,1.6690696,1.5071247,1.3247378,1.129261,0.9285737,0.7307656,0.5438102,0.37524348,0.2318604,0.119440556,0.042515576,0.0041862726,0.005997598,0.047876656,0.12813526,0.2435382,0.38943368,0.5599408,0.7481864,0.9465825,1.1471318,1.3417504,1.522593,1.6823704,1.8146417,1.9141002,1.9766762,1.9998832,1.9827852,1.9260719,1.832029,1.7044475,1.5484703,1.3703843,1.1773685,0.9772031,0.77795655,0.58766043,0.41398555,0.2639326,0.14355004,0.0576905,0.009814918,0.001853168,0.034126163,0.10533297,0.21260327,0.3516131,0.51675904,0.7013842,0.8980463,1.0988182,1.2956066,1.4804795,1.6459844,1.7854501,1.8932548,1.9650528,1.9979501,1.9906206,1.9433597,1.8580725,1.7381971,1.5885651,1.4152086,1.2251152,1.0259475,0.82573384,0.6325448,0.45416766,0.29774928,0.16968936,0.07509881,0.017790437,7.44462e-5,0.022664845,0.08465105,0.1835345,0.3153292,0.47472262,0.65528965,0.8497517,1.0502702,1.2487624,1.4372271,1.6080674,1.7543969,1.870317,1.9511552,1.9936528,1.9960968,1.9583888,1.8820486,1.7701536,1.6272142,1.458992,1.2722682,1.0745693,0.87386465,0.6782445,0.49559402,0.33327585,0.197833,0.09472507,0.02810824,0.00066781044,0.01350987,0.06611687,0.15636808,0.28062564,0.4338808,0.6099559,0.8017534,1.0015422,1.2012688,1.3929384,1.5687091,1.7215557,1.8453166,1.9350033,1.9870005,1.9992123,1.9711465,1.9039342,1.8002849,1.6643765,1.5016875,1.3187759,1.1230145,0.92229444,0.72470665,0.53821576,0.3703392,0.22784388,0.116473734,0.04071802,0.0036303997,0.00670594,0.049820542,0.13123637,0.24767154,0.39443266,0.56560385,0.75428534,0.9528714,1.1533573,1.3476613,1.5279512,1.68696,1.8182776,1.916611,1.9779961,1.999959,1.9816141,1.9237008,1.8285537,1.7000079,1.5432453,1.3645849,1.1711681,0.97090834,0.7718213,0.58193207,0.4088949,0.2596848,0.14031643,0.05560136,0.008954525,0.002256155,0.035776258,0.108163655,0.21650052,0.3564198,0.5222814,0.7073996,0.9043123,1.1050822,1.3016162,1.4859923,1.6507783,1.7893318,1.8960679,1.9666837,1.9983332,1.9897406,1.941252,1.8548219,1.7339346,1.5834628,1.409472,1.2189755,1.0196522,0.8195368,0.62669575,0.44890243,0.29332352,0.16623032,0.07274586,0.016638517,0.00016993284,0.024003923,0.08717978,0.1871509,0.31988746,0.48009115,0.6612073,0.85598004,1.0565581,1.2548563,1.4428815,1.6130543,1.7585152,1.8734009,1.9530802,1.9943414,1.9955213,1.9565723,1.8790643,1.7661219,1.6222975,1.4533886,1.2662039,1.0682886,0.86762065,0.67228884,0.4901669,0.32859606,0.19408911,0.09206796,0.026645064,0.00045752525,0.0145609975,0.06838697,0.15976572,0.28501385,0.43908262,0.6157617,0.80792916,1.007839,1.2074327,1.398665,1.5738273,1.7258589,1.8486316,1.9371965,1.9879835,1.9989455,1.9696405,1.9012233,1.7964933,1.6596572,1.4962306,1.3128012,1.116763,0.9160182,0.71865857,0.53263974,0.36545986,0.223858,0.1135419,0.03895849,0.0031141043,0.0074536204,0.0518021,0.13437194,0.25183475,0.39945567,0.5712842,0.760394,0.9591622,1.1595765,1.3535584,1.5332885,1.6915221,1.8218808,1.9191101,1.9792905,1.9999962,1.9803927,1.92127,1.8250115,1.6954973,1.5379479,1.3587142,1.165021,0.9646758,0.76575446,0.57627547,0.4038766,0.2555071,0.13714772,0.053569376,0.00814116,0.00269866,0.03746462,0.111029804,0.22042882,0.361252,0.52782273,0.7134266,0.9105821,1.1113421,1.3076138,1.4914858,1.6555464,1.7931821,1.8988452,1.9682765,1.9986769,1.9888213,1.9391068,1.8515375,1.7296431,1.5783374,1.4037192,1.2128272,1.0133562,0.813347,0.6208616,0.44365907,0.28888226,0.16277027,0.0704065,0.015514135,0.00030589104,0.025394678,0.089769244,0.19083476,0.3245172,0.48542804,0.6670809,0.8621536,1.0627828,1.2608812,1.4484637,1.6179689,1.7625641,1.8764207,1.9549675,1.9949906,1.9949063,1.9547179,1.8760452,1.7620597,1.6173561,1.4477671,1.260129,1.062005,0.8613819,0.66634625,0.48476005,0.32394284,0.19037712,0.08944684,0.025220454,0.00028687716,0.015651166,0.07069403,0.16319662,0.28943032,0.44430673,0.62158275,0.81411254,1.0141354,1.2135885,1.4044318,1.5789728,1.7301757,1.8519458,1.9393742,1.9889371,1.9986365,1.9680815,1.8985035,1.7927074,1.6549578,1.490807,1.3068722,1.1105677,0.9098061,0.71268016,0.52713597,0.36060572,0.21990287,0.110645294,0.037237108,0.0026373267,0.0082407,0.053821325,0.13754183,0.25602758,0.40450245,0.5769814,0.7665121,0.9654545,1.1657895,1.3594415,1.5386047,1.696057,1.8254516,1.9215728,1.9805459,1.9999938,1.9791324,1.9188027,1.8214368,1.6909591,1.5326293,1.3528295,1.1588072,0.95838356,0.7596375,0.5705803,0.39883274,0.25131792,0.13398206,0.05155486,0.0073589683,0.0031758547,0.0391742,0.11390281,0.22434956,0.36606234,0.5333288,0.7194064,0.91679466,1.1175369,1.3135992,1.4969599,1.6602885,1.7970011,1.9015871,1.9698308,1.9989809,1.9878628,1.9369245,1.8482192,1.7253227,1.573189,1.3979503,1.2066704,1.0070597,0.80716455,0.61504245,0.4384377,0.28446925,0.15934342,0.06810403,0.014428794,0.00048142672,0.026824057,0.09239483,0.1945507,0.32917374,0.4908374,0.67302513,0.86839306,1.0690659,1.2669549,1.454083,1.6229072,1.7666225,1.8794355,1.9567991,1.9955947,1.9942584,1.952844,1.8730211,1.7580073,1.6124384,1.4421827,1.2541027,1.0557191,0.85514855,0.66041684,0.47937357,0.31931645,0.18669724,0.08686185,0.023834527,0.00015586615,0.016780376,0.07303792,0.16666079,0.29387504,0.44955283,0.6274188,0.8203033,1.0204313,1.2197357,1.4101827,1.5840955,1.7344637,1.855226,1.9415147,1.9898516,1.998288,1.9664841,1.8957217,1.7888532,1.6501865,1.4853112,1.3008733,1.1043073,0.9035367,0.70665455,0.521597,0.35582358,0.21601653,0.10781145,0.035569966,0.0022041202,0.009058833,0.055857897,0.1407147,0.26020885,0.40957284,0.5826955,0.7726395,0.9717483,1.1719959,1.3653104,1.5438994,1.7005641,1.8289897,1.9239991,1.9817624,1.9999516,1.9778333,1.9162991,1.8178294,1.6863935,1.5272894,1.3469305,1.1525872,0.95209306,0.75353,0.5649021,0.39381278,0.24715841,0.13085073,0.04957795,0.0066161156,0.0036970973,0.040938377,0.11683899,0.22833925,0.37094474,0.5389071,0.7254559,0.9231017,1.123818,1.3195432,1.5023879,1.6649816,1.8007702,1.9042802,1.9713392,1.9992441,1.98687,1.9347157,1.8448837,1.7209947,1.568043,1.3921937,1.2005353,1.0007935,0.8010196,0.6092666,0.43326378,0.28010577,0.15596634,0.065838516,0.013382554,0.0006965995,0.028292,0.095056355,0.19829857,0.33385682,0.49626696,0.6789823,0.8746377,1.0753464,1.2730179,1.4596841,1.6278208,1.7706504,1.8824155,1.958611,1.9961653,1.9935648,1.9509144,1.869933,1.7538851,1.6074244,1.4364986,1.247978,1.0494615,0.8489512,0.65452963,0.4740337,0.31473923,0.18306726,0.08432531,0.02249372,6.490946e-5,0.017942846,0.07540697,0.17014092,0.29832602,0.45479518,0.63324124,0.82647115,1.026696,1.2258446,1.4158895,1.5891702,1.7387224,1.8584725,1.943618,1.9907267,1.9979,1.9648483,1.8929042,1.7849677,1.6453894,1.4797959,1.2948622,1.0980427,0.89727116,0.70064056,0.516077,0.35102004,0.21212316,0.10498512,0.03392464,0.0018060803,0.009924173,0.05795163,0.14396834,0.26448095,0.41464192,0.58839834,0.7787461,0.9780126,1.1781654,1.3711364,1.5491471,1.7050221,1.8324779,1.926377,1.9829345,1.9998703,1.9765021,1.9137715,1.8142073,1.681823,1.5219545,1.3410466,1.1463913,0.9458349,0.74743235,0.5592412,0.38881677,0.24302876,0.12775385,0.047638714,0.005912721,0.004257798,0.042740643,0.119810104,0.23235953,0.3758521,0.5445037,0.7315161,0.929351,1.1300336,1.3254747,1.507796,1.6696485,1.8045077,1.9069378,1.9728097,1.999469,1.9858334,1.9324594,1.8414984,1.7166171,1.5628495,1.3863935,1.1943624,0.99449664,0.7948527,0.6034781,0.42808706,0.27574956,0.15260613,0.06362069,0.012380183,0.00095003843,0.029791057,0.09774065,0.2020598,0.33854347,0.50169003,0.6849233,0.8808873,1.0816238,1.27907,1.4652672,1.6327095,1.7746478,1.8853605,1.9603848,1.9966965,1.992832,1.948947,1.8668103,1.7497332,1.6024346,1.4308523,1.2419026,1.0432019,0.8427598,0.6486559,0.46871454,0.31018895,0.17946929,0.08181268,0.0211851,1.2993813e-5,0.01914978,0.077824116,0.17367083,0.30282634,0.46008462,0.6391065,0.8326759,1.03299,1.2319742,1.4216077,1.5942465,1.7429315,1.8616693,1.9456738,1.9915588,1.9974744,1.9631824,1.8900652,1.78107,1.6405668,1.4742618,1.2888395,1.0917742,0.8910097,0.6946385,0.5105761,0.34624225,0.20826101,0.10219425,0.03231752,0.0014475584,0.010828674,0.060082734,0.1472243,0.26874083,0.41973394,0.5941173,0.7848615,0.98427784,1.184328,1.3769479,1.5543733,1.7094736,1.8359501,1.92873,1.9840734,1.9997492,1.9751257,1.9111955,1.8105354,1.6772032,1.5165732,1.3351206,1.1401594,0.9395484,0.7413742,0.5536251,0.38386905,0.23894894,0.12470639,0.045746386,0.005251825,0.004854977,0.044571877,0.122816205,0.23641026,0.3807842,0.55011845,0.7375871,0.9356335,1.1362745,1.3314222,1.5132107,1.6743118,1.8082318,1.9095724,1.9742488,1.9996536,1.984763,1.9301772,1.8380965,1.7122326,1.5576589,1.3806064,1.1882118,0.9882305,0.78869385,0.5977053,0.42293304,0.27142203,0.14927953,0.061429143,0.0114120245,0.0012443066,0.03133583,0.1004737,0.20587093,0.34327906,0.5071593,0.6909056,0.88711137,1.0878676,1.2850819,1.4708047,1.6375496,1.7785954,1.8882563,1.9621122,1.997186,1.9920597,1.9469419,1.8636533,1.7455513,1.5973969,1.4251614,1.235788,1.0369102,0.8365444,0.64276755,0.46339047,0.3056438,0.17588627,0.079348326,0.019921303,7.1525574e-7,0.020389497,0.08026582,0.17721611,0.3073324,0.4653697,0.64495766,0.8388872,1.0392827,1.2380947,1.4273093,1.5992992,1.7471316,1.8648477,1.9477023,1.9923555,1.9970074,1.9614706,1.8871772,1.7771225,1.6357423,1.4687357,1.2828346,1.0855327,0.88478285,0.68867743,0.5051213,0.3415134,0.2044487,0.099438965,0.030748844,0.0011286736,0.011772454,0.06225115,0.15052992,0.27305037,0.42487377,0.5998801,0.79101515,0.9905742,1.1905131,1.3827727,1.559603,1.7138758,1.8393728,1.931035,1.985168,1.9995892,1.9737177,1.908596,1.8068495,1.6725792,1.5111713,1.3291812,1.1339219,0.9332643,0.7352967,0.54799926,0.37892163,0.23487931,0.12167865,0.04388255,0.004627049,0.0054944158,0.04644978,0.12584221,0.24047142,0.3857168,0.5557236,0.74363893,0.94188803,1.1424797,1.337328,1.5185788,1.6789483,1.8119237,1.912171,1.9756492,1.9997995,1.9836485,1.9278471,1.8346448,1.7077985,1.5524211,1.3747759,1.1820238,0.98193437,0.7825732,0.59197634,0.4178267,0.26714414,0.14600259,0.059285164,0.010487437,0.001576364,0.03291124,0.1032424,0.20971358,0.34804076,0.51264805,0.69690025,0.89337015,1.0941383,1.2911117,1.4763507,1.6423881,1.7825314,1.8911312,1.96381,1.9976382,1.9912522,1.9449092,1.8604777,1.7413607,1.5923598,1.4194813,1.2296938,1.0306474,0.8303355,0.6368933,0.45808762,0.30112618,0.17233598,0.07690841,0.01869011,2.7894974e-5,0.021673977,0.082755804,0.18081129,0.31188774,0.47070163,0.65085125,0.84507483,1.0455434,1.2441761,1.4329662,1.6043037,1.751282,1.8679767,1.9496837,1.9931093,1.9965008,1.9597204,1.8842542,1.7731442,1.6308692,1.4631642,1.2767893,1.0792572,0.87853026,0.68269974,0.49965942,0.33678752,0.20064932,0.0967325,0.029225886,0.0008506775,0.012750566,0.06444591,0.15385294,0.27736765,0.43001127,0.6056308,0.7971771,0.9968709,1.1966909,1.3885823,1.5648103,1.7182711,1.8427788,1.9333146,1.986229,1.9993889,1.9722642,1.9059479,1.8031135,1.667906,1.5057757,1.3232577,1.1277094,0.9270133,0.72925913,0.5424185,0.3740226,0.23085958,0.11868572,0.04205662,0.0040417314,0.0061733127,0.048365474,0.12891752,0.24458241,0.39069772,0.5613737,0.7497304,0.9481754,1.1487093,1.343249,1.5239524,1.6835356,1.8155658,1.914721,1.9770045,1.9999053,1.9825006,1.9254918,1.831177,1.7033579,1.5471613,1.3689306,1.1758286,0.975639,0.7764313,0.58623564,0.41271853,0.26287442,0.14274341,0.057167947,0.00959748,0.0019496083,0.034532547,0.10603297,0.21356869,0.35280502,0.51812935,0.70287764,0.89960283,1.1003749,1.297101,1.481851,1.6472012,1.7864363,1.8939707,1.9654696,1.9980509,1.9904014,1.9428294,1.8572524,1.7371202,1.5872749,1.413757,1.2235607,1.0243529,0.82416344,0.6310618,0.45283186,0.29665798,0.1688354,0.074516594,0.01750356,9.435415e-5,0.022990763,0.08528221,0.18443888,0.31647038,0.47605455,0.65675867,0.8512987,1.0518328,1.2502775,1.4386337,1.6093087,1.755423,1.8710865,1.951637,1.9938276,1.9959576,1.957941,1.8813105,1.7691548,1.6259948,1.4576014,1.2707624,1.073009,0.8723128,0.67673457,0.49421734,0.33208793,0.19688165,0.09404862,0.027733982,0.0006108284,0.013772488,0.06668842,0.15722561,0.28173453,0.43519634,0.6114251,0.80331707,1.0031372,1.2028309,1.3943486,1.5699704,1.7226169,1.8461351,1.9355462,1.9872458,1.9991491,1.9707721,1.903264,1.7993457,1.6632063,1.5003335,1.3172926,1.1214616,0.9207347,0.7232029,0.53682864,0.36912453,0.22685063,0.11574203,0.040277302,0.003498435,0.006888032,0.05030936,0.13201225,0.24870318,0.39567846,0.5670136,0.7558318,0.95446473,1.1549332,1.3491564,1.5293052,1.6881182,1.8191934,1.9172474,1.9783278,1.9999721,1.9813083,1.9230886,1.8276595,1.698868,1.5419055,1.3630991,1.1696565,0.969375,0.77032804,0.580539,0.40765822,0.25865442,0.13953382,0.055088103,0.008746803,0.0023623705,0.03619218,0.10887253,0.21747369,0.35761803,0.5236565,0.70889604,0.90586984,1.106638,1.3031075,1.487359,1.6519654,1.7902914,1.8967612,1.967083,1.9984224,1.9895158,1.9407225,1.8540092,1.732871,1.5821667,1.4080162,1.2174189,1.0180575,0.8179682,0.6252165,0.44757217,0.29219586,0.16535068,0.07214981,0.01635003,0.00020062923,0.02435255,0.08783233,0.18808103,0.32105774,0.48140216,0.66265106,0.8574982,1.0580896,1.2563394,1.4442563,1.6142895,1.7595339,1.8741617,1.9535527,1.9945064,1.9953722,1.956115,1.8783175,1.7651155,1.621072,1.4519935,1.2646954,1.0667276,0.86607003,0.67081106,0.48882157,0.3274374,0.19316381,0.09141338,0.026287496,0.00041145086,0.014828205,0.06896788,0.16063166,0.2861299,0.44040388,0.6172348,0.8094948,1.009434,1.2089928,1.4001273,1.5751328,1.7269552,1.8494744,1.9377518,1.9882288,1.9988708,1.9692491,1.9005575,1.7955649,1.6585035,1.4948982,1.3113438,1.1152394,0.9144897,0.7171576,0.53125715,0.36425143,0.22287238,0.11281896,0.03852725,0.0029919744,0.007645488,0.052300334,0.13515633,0.25287372,0.40070736,0.5726981,0.76191324,0.9607254,1.1611208,1.3550215,1.5346115,1.6926515,1.8227711,1.9197254,1.979606,1.9999993,1.980077,1.9206486,1.8241091,1.6943502,1.5366027,1.357225,1.1634476,0.9630817,0.7642041,0.57483125,0.4025967,0.25444317,0.13634259,0.053055525,0.007939279,0.0028124452,0.037881672,0.11173338,0.22139055,0.36243308,0.5291755,0.7149259,0.91214055,1.1128967,1.309102,1.4928478,1.6567271,1.794134,1.8995299,1.9686662,1.9987562,1.9885868,1.9385681,1.8507161,1.7285724,1.5770603,1.4022872,1.2112982,1.0117918,0.81181014,0.6194143,0.44235963,0.28778315,0.16191572,0.06981981,0.015235543,0.000346601,0.02575308,0.090430915,0.191773,0.32569426,0.48679638,0.6685854,0.86373365,1.0643747,1.2624208,1.4498888,1.6192222,1.763595,1.8771877,1.9554214,1.9951428,1.9947505,1.9542603,1.8753045,1.7610655,1.6161245,1.4463676,1.2586179,1.0604435,0.8598326,0.66487175,0.48341978,0.32279086,0.1894598,0.088801205,0.024872482,0.00025063753,0.01592809,0.07127297,0.16405427,0.29053205,0.44560814,0.6230314,0.8156501,1.0156997,1.2151166,1.4058623,1.5802727,1.7312647,1.8527799,1.93992,1.9891725,1.998552,1.9676805,1.8978021,1.791734,1.6537516,1.4894167,1.3053538,1.1089822,0.9082176,0.71115273,0.5257311,0.35942698,0.21894401,0.10994494,0.03682351,0.0025271773,0.008438408,0.054318905,0.13833475,0.25707394,0.40576005,0.57839966,0.7680337,0.9670182,1.1673322,1.3609011,1.5399222,1.6971794,1.8263338,1.922179,1.9808519,1.999987,1.9788132,1.918184,1.8205435,1.6898272,1.5313044,1.3513651,1.1572623,0.9568204,0.75808954,0.5691403,0.39755887,0.2502615,0.13318563,0.051050544,0.007167101,0.0033041239,0.03961748,0.114643276,0.2253573,0.36729676,0.5347401,0.7209378,0.9183843,1.1191207,1.3150555,1.4982905,1.6614397,1.7979267,1.9022497,1.9702035,1.9990504,1.9876186,1.9363765,1.8473895,1.7242448,1.5719063,1.3965144,1.2051394,1.0054952,0.8056296,0.61359894,0.4371438,0.28337717,0.15849715,0.067537665,0.014165223,0.0005311966,0.027185142,0.093052804,0.19547892,0.33033484,0.49218458,0.6745041,0.8699744,1.0706571,1.2684917,1.4555035,1.6241543,1.7676456,1.8801937,1.9572617,1.995743,1.9940865,1.9523587,1.8722422,1.7569659,1.6111767,1.4407516,1.2525598,1.0541874,0.8536309,0.6589744,0.47806448,0.31819344,0.18580568,0.08622521,0.02349621,0.0001295209,0.017067015,0.07362598,0.1675266,0.29498374,0.45085967,0.6288712,0.8218426,1.0219955,1.2212617,1.4116092,1.5853647,1.7355247,1.856036,1.9420409,1.9900727,1.9981953,1.9660811,1.8950249,1.7878907,1.6489737,1.4839159,1.2993517,1.1027207,0.90194917,0.70513004,0.5201969,0.35460436,0.21502739,0.10709214,0.035149574,0.0020995736,0.0092743635,0.056384683,0.1415317,0.26128304,0.4108116,0.5840901,0.7741336,0.97328174,1.1735069,1.366738,1.5452117,1.7016798,1.8298637,1.9245961,1.9820588,1.999935,1.9775045,1.9156713,1.8169281,1.6852548,1.5259593,1.3454628,1.1510408,0.95053035,0.7520141,0.56349397,0.39256918,0.24612957,0.13007808,0.04909259,0.0064376593,0.0038326979,0.04138267,0.11758828,0.22935474,0.37218547,0.5403231,0.72699,0.92466176,1.1253704,1.3210254,1.5037401,1.6661493,1.8017063,1.904947,1.97171,1.9993037,1.9866161,1.9341586,1.8440456,1.7199097,1.5667546,1.390754,1.1990023,0.9992289,0.7994567,0.6077988,0.43195033,0.27899957,0.15511197,0.06528133,0.013128638,0.0007562041,0.028662682,0.09572327,0.19923472,0.33502454,0.49761915,0.68046445,0.87619007,1.0769063,1.2745227,1.461073,1.6290379,1.7716465,1.8831506,1.9590552,1.9963036,1.9933829,1.9504195,1.8691452,1.7528362,1.6061808,1.4350905,1.2464621,1.0478988,0.84740484,0.65306187,0.4727037,0.31360066,0.18216592,0.08369762,0.02216494,4.8279762e-5,0.01823908,0.07600409,0.1710149,0.29944158,0.45610738,0.6346972,0.82804227,1.0282904,1.2273982,1.4173396,1.5904584,1.7397761,1.8592739,1.9441347,1.9909382,1.9977974,1.9644359,1.8921986,1.7839973,1.6441935,1.4784226,1.2933669,1.0964856,0.895715,0.6991482,0.5147084,0.34983057,0.2111606,0.10427481,0.033513904,0.0017114878,0.010149598,0.05848795,0.14477813,0.2655418,0.41591108,0.5898247,0.7802722,0.9795768,1.1797047,1.3725888,1.5504539,1.7061307,1.8333437,1.9269651,1.983221,1.999844,1.9761636,1.9131348,1.813298,1.6806552,1.5205934,1.3395468,1.1448132,0.94424224,0.74591887,0.55783737,0.3875792,0.24200737,0.12698978,0.04716271,0.00574404,0.0044032335,0.043194354,0.12055379,0.23336315,0.37707525,0.5458971,0.7330236,0.9309117,1.1315848,1.3269536,1.5091434,1.6708324,1.8054541,1.9076085,1.9731779,1.9995189,1.9855698,1.931893,1.8406522,1.715525,1.5615556,1.38495,1.1928275,0.99293214,0.79332167,0.6020423,0.42680436,0.2746716,0.15177643,0.06307268,0.0121359825,0.0010194778,0.030171275,0.09842956,0.20302224,0.33974057,0.50307363,0.6864375,0.88244087,1.083183,1.280572,1.4666514,1.6339204,1.7756363,1.8860868,1.9608196,1.9968224,1.9926437,1.9484522,1.8660291,1.7486969,1.6011851,1.4294399,1.2403842,1.0416387,0.84118474,0.64716303,0.4673639,0.30903506,0.17855859,0.08119398,0.020865917,6.2584877e-6,0.019455671,0.078430355,0.17455298,0.30394888,0.46140218,0.6405661,0.83421856,1.0345536,1.2334958,1.423026,1.595504,1.7439778,1.8624623,1.9461813,1.9917604,1.9973599,1.9627525,1.8893371,1.7800729,1.6393645,1.4728837,1.2873412,1.0902162,0.8894546,0.693149,0.5092124,0.34505916,0.2073062,0.10150635,0.031924188,0.0013646483,0.011059523,0.060618043,0.1480425,0.2698089,0.42100888,0.5955477,0.7864195,0.98587275,1.1858954,1.3784248,1.5557001,1.7105753,1.8368077,1.929309,1.9843502,1.999713,1.9747777,1.9105498,1.8096181,1.6760511,1.515233,1.333646,1.1386101,0.93797153,0.7398485,0.55221194,0.38262552,0.23792511,0.12394345,0.04527521,0.005091369,0.0050116777,0.045039475,0.123561144,0.23742145,0.3820135,0.5515163,0.7390971,0.9371949,1.1378242,1.3328979,1.5145528,1.6754663,1.8091521,1.9102215,1.9746037,1.999694,1.984487,1.9295962,1.8372335,1.7111228,1.5563469,1.379145,1.18666,0.9866509,0.7871798,0.5962734,0.421656,0.27035123,0.14845824,0.060890377,0.01117754,0.0013235211,0.031725585,0.10115832,0.20682275,0.34445977,0.50853455,0.69240844,0.8886812,1.0894412,1.2865958,1.4721979,1.638766,1.7795858,1.8889809,1.9625418,1.997303,1.9918617,1.9464378,1.8628635,1.7445078,1.5961413,1.4237448,1.2342672,1.0353466,0.8350011,0.64130664,0.46207088,0.3045078,0.1749925,0.07873273,0.019608736,3.8146973e-6,0.020708084,0.08088714,0.17811507,0.3084727,0.46670544,0.6464349,0.8404165,1.040846,1.2396139,1.4287232,1.6005509,1.7481706,1.865632,1.9482005,1.9925474,1.9968853,1.9610393,1.8864543,1.7761273,1.634522,1.4673396,1.2813189,1.0839585,0.88321376,0.6871766,0.50374913,0.34032524,0.20349252,0.098766565,0.03036505,0.0010555983,0.012013018,0.06279564,0.15135646,0.27412564,0.42615438,0.6013145,0.7925454,0.9921387,1.1920488,1.3842317,1.5609114,1.7149812,1.8402305,1.9316105,1.9854379,1.9995427,1.9733565,1.907935,1.8059151,1.6714092,1.5098261,1.3277035,1.1323713,0.9317033,0.7337884,0.54660416,0.37769616,0.23387289,0.120931745,0.04342532,0.004477918,0.0056610703,0.046926856,0.12661052,0.24150002,0.3869642,0.5571395,0.7451663,0.94346523,1.1440431,1.3388147,1.5199288,1.680085,1.812836,1.912811,1.9759912,1.9998296,1.9833655,1.9272625,1.8337821,1.7066923,1.5511162,1.373325,1.1804851,0.98035485,0.7810315,0.59053457,0.41654295,0.2660702,0.14518172,0.05875045,0.010260463,0.0016663074,0.033314407,0.10392904,0.21067321,0.3492279,0.51401484,0.69839156,0.8949259,1.0956957,1.2926083,1.4777257,1.6435864,1.7835045,1.89184,1.96423,1.9977455,1.9910424,1.944391,1.8596716,1.7402995,1.5910863,1.4180467,1.2281559,1.0290682,0.8288089,0.63543594,0.4567734,0.300008,0.1714589,0.07630783,0.018390238,4.082918e-5,0.02199912,0.08338016,0.18170959,0.3130238,0.47204268,0.65233207,0.84663576,1.0471215,1.2457078,1.4343897,1.6055617,1.7523237,1.8687601,1.9501772,1.9932933,1.9963689,1.9592797,1.8835225,1.772151,1.6296544,1.461777,1.2752855,1.0776975,0.87697744,0.6812164,0.49830538,0.33561736,0.19970107,0.096055806,0.028847992,0.0007867813,0.01300329,0.065005064,0.15469593,0.27846056,0.43131006,0.6070831,0.7986944,0.99843544,1.1982247,1.3900235,1.5661008,1.7193588,1.8436198,1.9338751,1.9864864,1.999333,1.971897,1.9052844,1.8021712,1.6667295,1.5044122,1.3217623,1.1261424,0.92543775,0.72773874,0.5410143,0.3727914,0.22985089,0.11795467,0.04160887,0.0039024353,0.006348133,0.048847318,0.12968701,0.24560851,0.39193904,0.56278026,0.7512455,0.9497379,1.1502563,1.3447323,1.5252973,1.6846879,1.816479,1.9153583,1.9773401,1.9999259,1.9822052,1.9248923,1.8302976,1.702234,1.545851,1.367476,1.1742882,0.9740749,0.77490664,0.5848118,0.41145295,0.26181805,0.14193887,0.05664766,0.009382486,0.0020484924,0.03494537,0.106742084,0.21454549,0.3540101,0.51951426,0.7043865,0.9011748,1.1019466,1.298609,1.4832348,1.6483815,1.7874017,1.8946707,1.965876,1.9981472,1.9901838,1.9423068,1.8564458,1.7360619,1.5860078,1.412332,1.2220355,1.0227735,0.8226085,0.6295939,0.45151025,0.29553586,0.16795802,0.073919356,0.017210484,0.000117242336,0.023328781,0.08590937,0.18534523,0.31761318,0.4773878,0.65822864,0.852846,1.0533952,1.251792,1.4400392,1.6105485,1.7564471,1.8718538,1.9521213,1.9940016,1.9958143,1.9574864,1.8805628,1.7681441,1.624762,1.4561962,1.2692412,1.0714333,0.870746,0.67525446,0.4928683,0.33092433,0.19595045,0.093387306,0.027369201,0.00055736303,0.0140324235,0.067251325,0.15806878,0.28282398,0.4365008,0.61288124,0.8048663,1.004717,1.2043777,1.3957999,1.5712677,1.723708,1.846976,1.936103,1.9874961,1.9990839,1.9703954,1.9025916,1.7984047,1.6620346,1.4989784,1.3158084,1.1199086,0.91917515,0.72169983,0.5354426,0.3679114,0.22584969,0.115005314,0.03983462,0.0033676624,0.007074356,0.05080533,0.13279784,0.24974674,0.3969379,0.5684382,0.7573345,0.95602775,1.1564786,1.350622,1.530632,1.6892526,1.8200897,1.9178696,1.9786505,1.9999826,1.981006,1.9224856,1.8267717,1.6977372,1.5405772,1.3616266,1.1680993,0.96779597,0.7687907,0.57910544,0.40638614,0.25759506,0.13872993,0.054577112,0.008541584,0.0024710894,0.036610484,0.1095835,0.21844876,0.35881788,0.5250327,0.7103932,0.90742755,1.1081934,1.3046126,1.488738,1.6531625,1.7912583,1.8974591,1.9674839,1.9985099,1.9892864,1.9401854,1.8531861,1.7317953,1.5809063,1.4065874,1.2158915,1.0164932,0.81643,0.6237664,0.44626868,0.2910915,0.16448998,0.071567416,0.016069472,0.00023317337,0.024700344,0.08848089,0.1890043,0.32221842,0.48275357,0.6641387,0.8590621,1.0596666,1.2578661,1.4456711,1.6155114,1.7605506,1.8749205,1.9540228,1.994669,1.9952207,1.9556556,1.8775685,1.7641071,1.619845,1.4505973,1.2631863,1.0651512,0.8645046,0.66931975,0.48746443,0.3262691,0.19223154,0.09075463,0.025928855,0.00036734343,0.015100539,0.06953436,0.16148311,0.28722638,0.44170117,0.6186807,0.8110309,1.0109984,1.2105225,1.4015607,1.5764121,1.7280288,1.8502989,1.9382992,1.9884692,1.9987946,1.9688592,1.8998696,1.7946067,1.6573137,1.4935248,1.3098421,1.1136699,0.91291577,0.71565723,0.5298757,0.36304456,0.22188872,0.1120981,0.038098335,0.0028722286,0.007839799,0.052800834,0.13594288,0.2539146,0.40196055,0.574127,0.7634479,0.9623041,1.1626798,1.3564979,1.5359459,1.6937901,1.823668,1.9203444,1.9799223,2.0,1.9797652,1.9200366,1.8232219,1.6932235,1.5352818,1.3557632,1.1619039,0.9615183,0.762684,0.57341564,0.40134275,0.2533912,0.13554728,0.052548945,0.0077418685,0.0029321313,0.038313568,0.11246014,0.22238284,0.36365092,0.53056985,0.71641123,0.91369915,1.1144512,1.3105897,1.4942086,1.657906,1.7950839,1.9002123,1.9690535,1.998833,1.9883499,1.9380269,1.8498847,1.7274895,1.5757694,1.4008404,1.2097538,1.0102122,0.8102588,0.6179539,0.44104898,0.2866751,0.16105491,0.06924659,0.0149647,0.0003889799,0.026107073,0.091082215,0.19269532,0.3268504,0.4881398,0.67006195,0.8652837,1.0659359,1.2639301,1.4512992,1.620462,1.7646141,1.8779452,1.9558868,1.9952972,1.9945877,1.9537868,1.8745394,1.7600398,1.6149035,1.444967,1.2571063,1.0588818,0.85828364,0.6633981,0.48208076,0.3216405,0.18854445,0.08815777,0.024526954,0.0002168417,0.016210198,0.07185984,0.16492236,0.2916463,0.4469236,0.62449515,0.81720304,1.0172794,1.2166592,1.4073056,1.5815338,1.732331,1.853596,1.940453,1.9894009,1.9984666,1.9672847,1.8971121,1.7907773,1.6525669,1.4880518,1.3038635,1.1074116,0.9066446,0.7096406,0.52434087,0.35821462,0.21795845,0.10922587,0.03639996,0.0024161339,0.008645415,0.054836154,0.13912588,0.25811702,0.407013,0.57981884,0.76955587,0.9685819,1.1688744,1.3623598,1.5412385,1.6983056,1.8272182,1.922786,1.9811568,1.9999777,1.9784886,1.9175571,1.8196394,1.6886826,1.5299654,1.3498855,1.1556945,0.9552345,0.75657916,0.5677359,0.39631695,0.24922705,0.13240653,0.05055821,0.006981313,0.0034324527,0.04005468,0.11537528,0.22635251,0.368515,0.53613234,0.7224479,0.9199514,1.1206892,1.3165544,1.4996595,1.6626238,1.798878,1.9029331,1.9705869,1.9991169,1.9873731,1.9358288,1.8465619,1.7231652,1.5706222,1.3950777,1.2036078,1.0039307,0.80408764,0.6121493,0.43584502,0.28228152,0.15764886,0.066970825,0.013901472,0.0005838871,0.027552247,0.09371942,0.19641823,0.3315146,0.49355274,0.6760055,0.87151825,1.0722101,1.2699912,1.4568958,1.6253759,1.7686474,1.8809352,1.957713,1.995886,1.9939145,1.9518781,1.8714721,1.7559376,1.6099317,1.4393328,1.2510308,1.0526099,0.8520683,0.6574897,0.4767176,0.31703305,0.18488503,0.08559382,0.023161829,0.00010561943,0.017356038,0.074216366,0.1683945,0.29609418,0.45216787,0.6303244,0.8233899,1.0235673,1.2227948,1.4130414,1.5866387,1.736594,1.8568515,1.9425697,1.9902935,1.9980991,1.965672,1.8943157,1.7869121,1.6477885,1.4825528,1.2978657,1.101172,0.9003923,0.7036354,0.5188248,0.35341007,0.21405905,0.10638541,0.034737587,0.001998961,0.009489179,0.056906343,0.14233905,0.26234877,0.4120888,0.5855273,0.7756729,0.974861,1.1750699,1.3682144,1.5465162,1.7027882,1.8307314,1.9251881,1.9823525,1.999916,1.9771733,1.9150414,1.8160248,1.6841145,1.5246215,1.343987,1.1494864,0.9489602,0.7504913,0.5620732,0.39131498,0.24509251,0.1293,0.048604846,0.006259978,0.0039728284,0.041835785,0.118321836,0.23034787,0.37339813,0.5417131,0.7284954,0.92622197,1.1269224,1.3225067,1.505091,1.667321,1.802645,1.905615,1.97208,1.9993612,1.9863572,1.9335938,1.8431973,1.7188123,1.5654523,1.3892994,1.1974463,0.9976415,0.7979317,0.6063671,0.43066967,0.27792162,0.15427607,0.06472647,0.012877166,0.00081825256,0.029035807,0.09639561,0.20017737,0.33619958,0.49897915,0.6819546,0.8777503,1.0784814,1.2760414,1.4624743,1.6302652,1.7726504,1.8838941,1.9595037,1.9964361,1.9932029,1.9499342,1.8683742,1.7518055,1.6049356,1.4336812,1.2449455,1.046336,0.84585124,0.6515877,0.47136855,0.31245816,0.1812622,0.083069146,0.021835387,3.4034252e-5,0.01854068,0.07660937,0.17189944,0.30056983,0.4574402,0.6361754,0.8295762,1.0298467,1.228914,1.4187609,1.5917203,1.7408279,1.8600731,1.9446492,1.991147,1.9976919,1.9640192,1.8914875,1.7830205,1.6429902,1.4770348,1.2918562,1.094913,0.89414394,0.6976419,0.5133277,0.34862524,0.21018595,0.103583634,0.033115387,0.0016216636,0.010373116,0.059016287,0.14559,0.26660448,0.41718173,0.5912521,0.78180623,0.9811487,1.181251,1.3740473,1.5517659,1.7072431,1.8342159,1.9275566,1.9835081,1.9998147,1.9758196,1.9124866,1.8123734,1.6795138,1.5192635,1.338082,1.1432725,0.9426802,0.744406,0.55643463,0.38634312,0.24098778,0.1262241,0.04668677,0.005576968,0.004551828,0.043652594,0.1213032,0.23437852,0.37831193,0.5473052,0.7345464,0.93248785,1.1331507,1.3284535,1.510509,1.6719861,1.806376,1.9082611,1.9735365,1.9995661,1.9853038,1.9313244,1.8398038,1.7144313,1.560254,1.3834985,1.1912845,0.99136,0.7917837,0.60059345,0.42551053,0.27358496,0.15094078,0.062521696,0.011891842,0.0010923743,0.03055954,0.099104226,0.20396358,0.34091353,0.5044286,0.68791986,0.8839947,1.0847421,1.2820735,1.4680381,1.6351326,1.7766277,1.8868144,1.9612541,1.9969466,1.9924517,1.9479516,1.8652382,1.7476487,1.599922,1.4280093,1.2388468,1.0400565,0.83964777,0.64570665,0.4660436,0.30790764,0.17766953,0.08057755,0.020549178,1.9073486e-6,0.019764781,0.07904035,0.1754393,0.3050785,0.4627275,0.6420372,0.835773,1.0361286,1.2350316,1.4244568,1.5967724,1.7450352,1.8632627,1.9466927,1.9919624,1.9972456,1.9623303,1.8886223,1.7790954,1.6381608,1.4715047,1.2858424,1.0886542,0.887896,0.6916567,0.5078432,0.3438719,0.20634878,0.100815594,0.03153038,0.001283586,0.01129508,0.061160862,0.1488728,0.2708918,0.42230076,0.597,0.78794074,0.9874295,1.1874287,1.379869,1.556997,1.7116754,1.8376634,1.9298856,1.9846253,1.9996741,1.9744256,1.9098988,1.8086944,1.6748891,1.5138817,1.33216,1.1370454,0.93641007,0.7383381,0.55081016,0.38139248,0.23690808,0.12318641,0.044808686,0.0049337745,0.005170524,0.045508265,0.12432295,0.2384345,0.38324428,0.5529186,0.7406115,0.9387602,1.1393812,1.33438,1.5159035,1.6766276,1.8100772,1.9108746,1.9749529,1.9997314,1.9842107,1.9290168,1.836375,1.7100165,1.5550398,1.3776897,1.1851115,0.985075,0.7856364,0.59484255,0.42038035,0.26927966,0.14763701,0.060352623,0.010944307,0.0014055967,0.03211969,0.10185015,0.20778352,0.3456536,0.5098977,0.6938975,0.89023995,1.0910032,1.288098,1.4735832,1.6399748,1.7805696,1.8897016,1.9629679,1.9974174,1.9916613,1.9459314,1.8620698,1.7434598,1.5948814,1.4223201,1.2327385,1.0337753,0.8334469,0.63983595,0.460743,0.30338448,0.17410934,0.07812536,0.019300878,9.357929e-6,0.021027625,0.08150768,0.17901164,0.30961198,0.46803927,0.64791137,0.8419744,1.0424092,1.2411344,1.4301395,1.6018043,1.7492115,1.8664182,1.9486988,1.992738,1.9967597,1.9606019,1.8857229,1.7751398,1.6333106,1.4659542,1.2798135,1.0823936,0.8816525,0.68568367,0.5023831,0.3391416,0.20254064,0.09808391,0.02998364,0.0009848475,0.012256324,0.06334382,0.15218812,0.27520657,0.4274426,0.6027585,0.79408735,0.99371463,1.1935971,1.3856757,1.562206,1.7160754,1.8410798,1.93218,1.9857036,1.9994938,1.9729944,1.9072733,1.804981,1.670239,1.5084796,1.3262249,1.1308185,0.9301387,0.732275,0.5452051,0.37646627,0.23286217,0.120182455,0.04296714,0.0043299794,0.0058285,0.047401667,0.12737447,0.24252301,0.38820404,0.558548,0.7466869,0.9450369,1.1456006,1.340297,1.521276,1.6812408,1.8137465,1.9134496,1.9763316,1.9998574,1.9830791,1.9266727,1.832913,1.7055777,1.5498005,1.3718607,1.1789321,0.97879064,0.7795033,0.589105,0.4152699,0.26500452,0.1443674,0.058220387,0.0100367665,0.0017585158,0.03371924,0.10463065,0.21163476,0.35041732,0.51538527,0.6998872,0.8964876,1.0972596,1.2941113,1.479108,1.6447911,1.7844834,1.8925526,1.9646435,1.9978492,1.9908319,1.9438741,1.8588688,1.7392423,1.5898174,1.4166162,1.2266221,1.0274919,0.82725453,0.6339804,0.4554597,0.29889017,0.17058176,0.075707674,0.0180915,5.6266785e-5,0.022328615,0.0840109,0.18261677,0.3141713,0.4733712,0.6537999,0.8481839,1.0486876,1.2472286,1.435804,1.606812,1.7533596,1.8695388,1.9506674,1.9934745,1.9962345,1.9588364,1.8827877,1.7711537,1.6284347,1.4603834,1.2737741,1.076129,0.875415,0.679723,0.4969417,0.33443832,0.19876379,0.0953871,0.028475404,0.00072574615,0.013256907,0.06556356,0.15553743,0.2795515,0.43260682,0.6085338,0.80024076,1.0],"x":[-804.24774,-804.04663,-803.8455,-803.6444,-803.4433,-803.2422,-803.041,-802.8399,-802.6388,-802.4377,-802.2366,-802.03546,-801.83435,-801.63324,-801.4321,-801.231,-801.0299,-800.8288,-800.6277,-800.4266,-800.22546,-800.02435,-799.82324,-799.62213,-799.421,-799.2199,-799.0188,-798.8177,-798.6166,-798.41547,-798.21436,-798.01324,-797.81213,-797.611,-797.4099,-797.2088,-797.0077,-796.8066,-796.60547,-796.40436,-796.20325,-796.00214,-795.801,-795.5999,-795.3988,-795.1977,-794.9966,-794.7955,-794.59436,-794.39325,-794.19214,-793.99097,-793.78986,-793.58875,-793.38763,-793.1865,-792.9854,-792.7843,-792.5832,-792.3821,-792.18097,-791.97986,-791.77875,-791.57764,-791.3765,-791.1754,-790.9743,-790.7732,-790.5721,-790.371,-790.16986,-789.96875,-789.76764,-789.5665,-789.3654,-789.1643,-788.9632,-788.7621,-788.561,-788.35986,-788.15875,-787.95764,-787.75653,-787.5554,-787.3543,-787.1532,-786.9521,-786.751,-786.54987,-786.34875,-786.14764,-785.94653,-785.7454,-785.5443,-785.3432,-785.1421,-784.9409,-784.7398,-784.5387,-784.3376,-784.1365,-783.93536,-783.73425,-783.53314,-783.33203,-783.1309,-782.9298,-782.7287,-782.5276,-782.3265,-782.12537,-781.92426,-781.72314,-781.52203,-781.3209,-781.1198,-780.9187,-780.7176,-780.5165,-780.31537,-780.11426,-779.91315,-779.71204,-779.5109,-779.3098,-779.1087,-778.9076,-778.7065,-778.5054,-778.30426,-778.10315,-777.90204,-777.7009,-777.4998,-777.2987,-777.0976,-776.8965,-776.6954,-776.49426,-776.29315,-776.092,-775.89087,-775.68976,-775.48865,-775.28754,-775.0864,-774.8853,-774.6842,-774.4831,-774.282,-774.0809,-773.87976,-773.67865,-773.47754,-773.2764,-773.0753,-772.8742,-772.6731,-772.472,-772.2709,-772.06976,-771.86865,-771.66754,-771.46643,-771.2653,-771.0642,-770.8631,-770.662,-770.4609,-770.25977,-770.05865,-769.85754,-769.65643,-769.4553,-769.2542,-769.0531,-768.852,-768.6509,-768.44977,-768.24866,-768.04755,-767.84644,-767.6453,-767.4442,-767.2431,-767.04193,-766.8408,-766.6397,-766.4386,-766.2375,-766.0364,-765.83527,-765.63416,-765.43304,-765.23193,-765.0308,-764.8297,-764.6286,-764.4275,-764.2264,-764.02527,-763.82416,-763.62305,-763.42194,-763.2208,-763.0197,-762.8186,-762.6175,-762.4164,-762.2153,-762.01416,-761.81305,-761.61194,-761.4108,-761.2097,-761.0086,-760.8075,-760.6064,-760.4053,-760.20416,-760.00305,-759.80194,-759.6008,-759.3997,-759.1986,-758.9975,-758.7964,-758.5953,-758.39417,-758.19305,-757.9919,-757.7908,-757.58966,-757.38855,-757.18744,-756.9863,-756.7852,-756.5841,-756.383,-756.1819,-755.9808,-755.77966,-755.57855,-755.37744,-755.17633,-754.9752,-754.7741,-754.573,-754.3719,-754.1708,-753.96967,-753.76855,-753.56744,-753.36633,-753.1652,-752.9641,-752.763,-752.5619,-752.3608,-752.15967,-751.95856,-751.75745,-751.55634,-751.3552,-751.1541,-750.953,-750.7519,-750.5508,-750.3497,-750.14856,-749.94745,-749.74634,-749.5452,-749.3441,-749.14294,-748.94183,-748.7407,-748.5396,-748.3385,-748.1374,-747.9363,-747.73517,-747.53406,-747.33295,-747.13184,-746.9307,-746.7296,-746.5285,-746.3274,-746.1263,-745.9252,-745.72406,-745.52295,-745.32184,-745.1207,-744.9196,-744.7185,-744.5174,-744.3163,-744.1152,-743.91406,-743.71295,-743.51184,-743.3107,-743.1096,-742.9085,-742.7074,-742.5063,-742.3052,-742.10406,-741.90295,-741.70184,-741.50073,-741.2996,-741.0985,-740.8974,-740.6963,-740.4952,-740.29407,-740.0929,-739.8918,-739.6907,-739.48956,-739.28845,-739.08734,-738.8862,-738.6851,-738.484,-738.2829,-738.0818,-737.8807,-737.67957,-737.47845,-737.27734,-737.07623,-736.8751,-736.674,-736.4729,-736.2718,-736.0707,-735.86957,-735.66846,-735.46735,-735.26624,-735.0651,-734.864,-734.6629,-734.4618,-734.2607,-734.0596,-733.85846,-733.65735,-733.45624,-733.2551,-733.054,-732.8529,-732.6518,-732.4507,-732.2496,-732.04846,-731.84735,-731.64624,-731.4451,-731.24396,-731.04285,-730.84174,-730.6406,-730.4395,-730.2384,-730.0373,-729.8362,-729.6351,-729.43396,-729.23285,-729.03174,-728.8306,-728.6295,-728.4284,-728.2273,-728.0262,-727.8251,-727.62396,-727.42285,-727.22174,-727.0206,-726.8195,-726.6184,-726.4173,-726.2162,-726.0151,-725.81396,-725.61285,-725.41174,-725.21063,-725.0095,-724.8084,-724.6073,-724.4062,-724.2051,-724.00397,-723.80286,-723.60175,-723.40063,-723.1995,-722.9984,-722.7973,-722.5962,-722.3951,-722.1939,-721.9928,-721.7917,-721.5906,-721.38947,-721.18835,-720.98724,-720.78613,-720.585,-720.3839,-720.1828,-719.9817,-719.7806,-719.57947,-719.37836,-719.17725,-718.97614,-718.775,-718.5739,-718.3728,-718.1717,-717.9706,-717.7695,-717.56836,-717.36725,-717.16614,-716.965,-716.7639,-716.5628,-716.3617,-716.1606,-715.9595,-715.75836,-715.55725,-715.35614,-715.155,-714.9539,-714.7528,-714.5517,-714.3506,-714.1495,-713.94836,-713.74725,-713.54614,-713.34503,-713.14386,-712.94275,-712.74164,-712.5405,-712.3394,-712.1383,-711.9372,-711.7361,-711.535,-711.33386,-711.13275,-710.93164,-710.7305,-710.5294,-710.3283,-710.1272,-709.9261,-709.725,-709.52386,-709.32275,-709.12164,-708.92053,-708.7194,-708.5183,-708.3172,-708.1161,-707.915,-707.71387,-707.51276,-707.31165,-707.11053,-706.9094,-706.7083,-706.5072,-706.3061,-706.105,-705.9039,-705.70276,-705.50165,-705.30054,-705.0994,-704.8983,-704.6972,-704.4961,-704.2949,-704.0938,-703.8927,-703.6916,-703.4905,-703.28937,-703.08826,-702.88715,-702.68604,-702.4849,-702.2838,-702.0827,-701.8816,-701.6805,-701.4794,-701.27826,-701.07715,-700.87604,-700.6749,-700.4738,-700.2727,-700.0716,-699.8705,-699.6694,-699.46826,-699.26715,-699.06604,-698.8649,-698.6638,-698.4627,-698.2616,-698.0605,-697.8594,-697.65826,-697.45715,-697.25604,-697.05493,-696.8538,-696.6527,-696.4516,-696.2505,-696.0494,-695.84827,-695.64716,-695.44604,-695.2449,-695.04376,-694.84265,-694.64154,-694.4404,-694.2393,-694.0382,-693.8371,-693.636,-693.4349,-693.23376,-693.03265,-692.83154,-692.63043,-692.4293,-692.2282,-692.0271,-691.826,-691.6249,-691.42377,-691.22266,-691.02155,-690.82043,-690.6193,-690.4182,-690.2171,-690.016,-689.8149,-689.6138,-689.41266,-689.21155,-689.01044,-688.8093,-688.6082,-688.4071,-688.206,-688.0049,-687.8038,-687.60266,-687.40155,-687.20044,-686.9993,-686.7982,-686.5971,-686.39594,-686.1948,-685.9937,-685.7926,-685.5915,-685.3904,-685.1893,-684.98816,-684.78705,-684.58594,-684.3848,-684.1837,-683.9826,-683.7815,-683.5804,-683.3793,-683.17816,-682.97705,-682.77594,-682.5748,-682.3737,-682.1726,-681.9715,-681.7704,-681.5693,-681.36816,-681.16705,-680.96594,-680.76483,-680.5637,-680.3626,-680.1615,-679.9604,-679.7593,-679.55817,-679.35706,-679.15594,-678.95483,-678.7537,-678.5526,-678.3515,-678.1504,-677.9493,-677.74817,-677.54706,-677.3459,-677.1448,-676.94366,-676.74255,-676.54144,-676.34033,-676.1392,-675.9381,-675.737,-675.5359,-675.3348,-675.13367,-674.93256,-674.73145,-674.53033,-674.3292,-674.1281,-673.927,-673.7259,-673.5248,-673.32367,-673.12256,-672.92145,-672.72034,-672.5192,-672.3181,-672.117,-671.9159,-671.7148,-671.5137,-671.31256,-671.11145,-670.91034,-670.7092,-670.5081,-670.307,-670.1059,-669.9048,-669.7037,-669.50256,-669.30145,-669.10034,-668.89923,-668.6981,-668.497,-668.29584,-668.0947,-667.8936,-667.6925,-667.4914,-667.2903,-667.0892,-666.88806,-666.68695,-666.48584,-666.2847,-666.0836,-665.8825,-665.6814,-665.4803,-665.2792,-665.07806,-664.87695,-664.67584,-664.47473,-664.2736,-664.0725,-663.8714,-663.6703,-663.4692,-663.26807,-663.06696,-662.86584,-662.66473,-662.4636,-662.2625,-662.0614,-661.8603,-661.6592,-661.45807,-661.25696,-661.05585,-660.85474,-660.6536,-660.4525,-660.2514,-660.0503,-659.8492,-659.6481,-659.4469,-659.2458,-659.0447,-658.84357,-658.64246,-658.44135,-658.24023,-658.0391,-657.838,-657.6369,-657.4358,-657.2347,-657.03357,-656.83246,-656.63135,-656.43024,-656.2291,-656.028,-655.8269,-655.6258,-655.4247,-655.2236,-655.02246,-654.82135,-654.62024,-654.4191,-654.218,-654.0169,-653.8158,-653.6147,-653.4136,-653.21246,-653.01135,-652.81024,-652.60913,-652.408,-652.2069,-652.0058,-651.8047,-651.6036,-651.40247,-651.20135,-651.00024,-650.79913,-650.598,-650.39685,-650.19574,-649.9946,-649.7935,-649.5924,-649.3913,-649.1902,-648.9891,-648.78796,-648.58685,-648.38574,-648.18463,-647.9835,-647.7824,-647.5813,-647.3802,-647.1791,-646.97797,-646.77686,-646.57574,-646.37463,-646.1735,-645.9724,-645.7713,-645.5702,-645.3691,-645.16797,-644.96686,-644.76575,-644.56464,-644.3635,-644.1624,-643.9613,-643.7602,-643.5591,-643.358,-643.15686,-642.95575,-642.75464,-642.5535,-642.3524,-642.1513,-641.9502,-641.7491,-641.548,-641.3468,-641.1457,-640.9446,-640.74347,-640.54236,-640.34125,-640.14014,-639.939,-639.7379,-639.5368,-639.3357,-639.1346,-638.9335,-638.73236,-638.53125,-638.33014,-638.129,-637.9279,-637.7268,-637.5257,-637.3246,-637.1235,-636.92236,-636.72125,-636.52014,-636.31903,-636.1179,-635.9168,-635.7157,-635.5146,-635.3135,-635.11237,-634.91125,-634.71014,-634.50903,-634.3079,-634.1068,-633.9057,-633.7046,-633.5035,-633.30237,-633.10126,-632.90015,-632.69904,-632.49786,-632.29675,-632.09564,-631.89453,-631.6934,-631.4923,-631.2912,-631.0901,-630.889,-630.68787,-630.48676,-630.28564,-630.08453,-629.8834,-629.6823,-629.4812,-629.2801,-629.079,-628.87787,-628.67676,-628.47565,-628.27454,-628.0734,-627.8723,-627.6712,-627.4701,-627.269,-627.0679,-626.86676,-626.66565,-626.46454,-626.2634,-626.0623,-625.8612,-625.6601,-625.459,-625.2579,-625.05676,-624.85565,-624.65454,-624.4534,-624.2523,-624.0512,-623.8501,-623.649,-623.4478,-623.2467,-623.0456,-622.8445,-622.6434,-622.44226,-622.24115,-622.04004,-621.8389,-621.6378,-621.4367,-621.2356,-621.0345,-620.8334,-620.63226,-620.43115,-620.23004,-620.02893,-619.8278,-619.6267,-619.4256,-619.2245,-619.0234,-618.82227,-618.62115,-618.42004,-618.21893,-618.0178,-617.8167,-617.6156,-617.4145,-617.2134,-617.01227,-616.81116,-616.61005,-616.40894,-616.2078,-616.0067,-615.8056,-615.6045,-615.4034,-615.2023,-615.00116,-614.80005,-614.5989,-614.39777,-614.19666,-613.99554,-613.79443,-613.5933,-613.3922,-613.1911,-612.99,-612.7889,-612.58777,-612.38666,-612.18555,-611.98444,-611.7833,-611.5822,-611.3811,-611.18,-610.9789,-610.7778,-610.57666,-610.37555,-610.17444,-609.9733,-609.7722,-609.5711,-609.37,-609.1689,-608.9678,-608.76666,-608.56555,-608.36444,-608.1633,-607.9622,-607.7611,-607.56,-607.3589,-607.1578,-606.95667,-606.75555,-606.55444,-606.35333,-606.1522,-605.9511,-605.75,-605.5488,-605.3477,-605.1466,-604.9455,-604.7444,-604.5433,-604.34216,-604.14105,-603.93994,-603.73883,-603.5377,-603.3366,-603.1355,-602.9344,-602.7333,-602.53217,-602.33105,-602.12994,-601.92883,-601.7277,-601.5266,-601.3255,-601.1244,-600.9233,-600.72217,-600.52106,-600.31995,-600.11884,-599.9177,-599.7166,-599.5155,-599.3144,-599.1133,-598.9122,-598.71106,-598.50995,-598.30884,-598.1077,-597.9066,-597.7055,-597.5044,-597.3033,-597.1022,-596.90106,-596.69995,-596.4988,-596.29767,-596.09656,-595.89545,-595.69434,-595.4932,-595.2921,-595.091,-594.8899,-594.6888,-594.4877,-594.28656,-594.08545,-593.88434,-593.6832,-593.4821,-593.281,-593.0799,-592.8788,-592.6777,-592.47656,-592.27545,-592.07434,-591.8732,-591.6721,-591.471,-591.2699,-591.0688,-590.8677,-590.66656,-590.46545,-590.26434,-590.06323,-589.8621,-589.661,-589.4599,-589.2588,-589.0577,-588.85657,-588.65546,-588.45435,-588.25323,-588.0521,-587.851,-587.64984,-587.4487,-587.2476,-587.0465,-586.8454,-586.6443,-586.4432,-586.24207,-586.04095,-585.83984,-585.63873,-585.4376,-585.2365,-585.0354,-584.8343,-584.6332,-584.43207,-584.23096,-584.02985,-583.82874,-583.6276,-583.4265,-583.2254,-583.0243,-582.8232,-582.6221,-582.42096,-582.21985,-582.01874,-581.8176,-581.6165,-581.4154,-581.2143,-581.0132,-580.8121,-580.61096,-580.40985,-580.20874,-580.0076,-579.8065,-579.6054,-579.4043,-579.2032,-579.0021,-578.80096,-578.5998,-578.3987,-578.1976,-577.99646,-577.79535,-577.59424,-577.3931,-577.192,-576.9909,-576.7898,-576.5887,-576.3876,-576.18646,-575.98535,-575.78424,-575.5831,-575.382,-575.1809,-574.9798,-574.7787,-574.5776,-574.37646,-574.17535,-573.97424,-573.77313,-573.572,-573.3709,-573.1698,-572.9687,-572.7676,-572.56647,-572.36536,-572.16425,-571.96313,-571.762,-571.5609,-571.3598,-571.1587,-570.9576,-570.7565,-570.55536,-570.35425,-570.15314,-569.952,-569.75085,-569.54974,-569.34863,-569.1475,-568.9464,-568.7453,-568.5442,-568.3431,-568.14197,-567.94086,-567.73975,-567.53864,-567.3375,-567.1364,-566.9353,-566.7342,-566.5331,-566.332,-566.13086,-565.92975,-565.72864,-565.5275,-565.3264,-565.1253,-564.9242,-564.7231,-564.522,-564.32086,-564.11975,-563.91864,-563.7175,-563.5164,-563.3153,-563.1142,-562.9131,-562.712,-562.51086,-562.30975,-562.10864,-561.90753,-561.7064,-561.5053,-561.3042,-561.1031,-560.902,-560.7008,-560.4997,-560.2986,-560.0975,-559.89636,-559.69525,-559.49414,-559.293,-559.0919,-558.8908,-558.6897,-558.4886,-558.2875,-558.08636,-557.88525,-557.68414,-557.48303,-557.2819,-557.0808,-556.8797,-556.6786,-556.4775,-556.27637,-556.07526,-555.87415,-555.67303,-555.4719,-555.2708,-555.0697,-554.8686,-554.6675,-554.4664,-554.26526,-554.06415,-553.86304,-553.6619,-553.4608,-553.2597,-553.0586,-552.8575,-552.6564,-552.45526,-552.25415,-552.05304,-551.8519,-551.65076,-551.44965,-551.24854,-551.0474,-550.8463,-550.6452,-550.4441,-550.243,-550.0419,-549.84076,-549.63965,-549.43854,-549.2374,-549.0363,-548.8352,-548.6341,-548.433,-548.2319,-548.03076,-547.82965,-547.62854,-547.4274,-547.2263,-547.0252,-546.8241,-546.623,-546.4219,-546.22076,-546.01965,-545.81854,-545.61743,-545.4163,-545.2152,-545.0141,-544.813,-544.6119,-544.41077,-544.20966,-544.00854,-543.80743,-543.6063,-543.4052,-543.2041,-543.003,-542.8018,-542.6007,-542.3996,-542.1985,-541.9974,-541.79626,-541.59515,-541.39404,-541.19293,-540.9918,-540.7907,-540.5896,-540.3885,-540.1874,-539.98627,-539.78516,-539.58405,-539.38293,-539.1818,-538.9807,-538.7796,-538.5785,-538.3774,-538.1763,-537.97516,-537.77405,-537.57294,-537.3718,-537.1707,-536.9696,-536.7685,-536.5674,-536.3663,-536.16516,-535.96405,-535.76294,-535.5618,-535.3607,-535.1596,-534.9585,-534.7574,-534.5563,-534.35516,-534.15405,-533.95294,-533.7518,-533.55066,-533.34955,-533.14844,-532.9473,-532.7462,-532.5451,-532.344,-532.1429,-531.9418,-531.74066,-531.53955,-531.33844,-531.1373,-530.9362,-530.7351,-530.534,-530.3329,-530.1318,-529.93066,-529.72955,-529.52844,-529.32733,-529.1262,-528.9251,-528.724,-528.5229,-528.3218,-528.12067,-527.91956,-527.71844,-527.51733,-527.3162,-527.1151,-526.914,-526.7129,-526.5118,-526.31067,-526.10956,-525.90845,-525.70734,-525.5062,-525.3051,-525.104,-524.9029,-524.7017,-524.5006,-524.2995,-524.0984,-523.8973,-523.69617,-523.49506,-523.29395,-523.09283,-522.8917,-522.6906,-522.4895,-522.2884,-522.0873,-521.88617,-521.68506,-521.48395,-521.28284,-521.0817,-520.8806,-520.6795,-520.4784,-520.2773,-520.0762,-519.87506,-519.67395,-519.47284,-519.2717,-519.0706,-518.8695,-518.6684,-518.4673,-518.2662,-518.06506,-517.86395,-517.66284,-517.46173,-517.2606,-517.0595,-516.8584,-516.6573,-516.4562,-516.25507,-516.05396,-515.8528,-515.6517,-515.45056,-515.24945,-515.04834,-514.8472,-514.6461,-514.445,-514.2439,-514.0428,-513.8417,-513.64056,-513.43945,-513.23834,-513.03723,-512.8361,-512.635,-512.4339,-512.2328,-512.0317,-511.83057,-511.62946,-511.42834,-511.22723,-511.02612,-510.825,-510.6239,-510.4228,-510.22168,-510.02057,-509.81946,-509.61835,-509.41724,-509.21613,-509.01498,-508.81387,-508.61276,-508.41165,-508.21054,-508.00943,-507.80832,-507.6072,-507.4061,-507.205,-507.00388,-506.80276,-506.60165,-506.40054,-506.19943,-505.99832,-505.7972,-505.5961,-505.395,-505.19388,-504.99277,-504.79166,-504.5905,-504.3894,-504.1883,-503.98718,-503.78607,-503.58496,-503.38385,-503.18274,-502.98163,-502.78052,-502.5794,-502.3783,-502.1772,-501.97607,-501.77496,-501.57385,-501.37274,-501.17163,-500.97052,-500.7694,-500.5683,-500.3672,-500.16605,-499.96494,-499.76382,-499.5627,-499.3616,-499.1605,-498.95938,-498.75827,-498.55716,-498.35605,-498.15494,-497.95383,-497.75272,-497.5516,-497.3505,-497.14938,-496.94827,-496.74716,-496.54605,-496.34494,-496.14383,-495.94272,-495.7416,-495.54047,-495.33936,-495.13824,-494.93713,-494.73602,-494.5349,-494.3338,-494.1327,-493.93158,-493.73047,-493.52936,-493.32825,-493.12714,-492.92603,-492.7249,-492.5238,-492.3227,-492.12158,-491.92047,-491.71936,-491.51825,-491.31714,-491.116,-490.9149,-490.71378,-490.51266,-490.31155,-490.11044,-489.90933,-489.70822,-489.5071,-489.306,-489.1049,-488.90378,-488.70267,-488.50156,-488.30045,-488.09933,-487.89822,-487.6971,-487.496,-487.2949,-487.09378,-486.89267,-486.69153,-486.49042,-486.2893,-486.0882,-485.8871,-485.68597,-485.48486,-485.28375,-485.08264,-484.88153,-484.68042,-484.4793,-484.2782,-484.0771,-483.87598,-483.67487,-483.47375,-483.27264,-483.07153,-482.87042,-482.6693,-482.4682,-482.26706,-482.06595,-481.86484,-481.66373,-481.46262,-481.2615,-481.0604,-480.85928,-480.65817,-480.45706,-480.25595,-480.05484,-479.85373,-479.65262,-479.4515,-479.2504,-479.0493,-478.84818,-478.64706,-478.44595,-478.24484,-478.04373,-477.84262,-477.64148,-477.44037,-477.23926,-477.03815,-476.83704,-476.63593,-476.4348,-476.2337,-476.0326,-475.83148,-475.63037,-475.42926,-475.22815,-475.02704,-474.82593,-474.62482,-474.4237,-474.2226,-474.02148,-473.82037,-473.61926,-473.41815,-473.217,-473.0159,-472.8148,-472.61368,-472.41257,-472.21146,-472.01035,-471.80923,-471.60812,-471.407,-471.2059,-471.0048,-470.80368,-470.60257,-470.40146,-470.20035,-469.99924,-469.79813,-469.59702,-469.3959,-469.1948,-468.99368,-468.79254,-468.59143,-468.39032,-468.1892,-467.9881,-467.787,-467.58588,-467.38477,-467.18365,-466.98254,-466.78143,-466.58032,-466.3792,-466.1781,-465.977,-465.77588,-465.57477,-465.37366,-465.17255,-464.97144,-464.77032,-464.5692,-464.3681,-464.16696,-463.96585,-463.76474,-463.56363,-463.36252,-463.1614,-462.9603,-462.7592,-462.55807,-462.35696,-462.15585,-461.95474,-461.75363,-461.55252,-461.3514,-461.1503,-460.9492,-460.74808,-460.54697,-460.34586,-460.14474,-459.94363,-459.7425,-459.54138,-459.34027,-459.13916,-458.93805,-458.73694,-458.53583,-458.33472,-458.1336,-457.9325,-457.73138,-457.53027,-457.32916,-457.12805,-456.92694,-456.72583,-456.52472,-456.3236,-456.1225,-455.9214,-455.72028,-455.51917,-455.31802,-455.1169,-454.9158,-454.7147,-454.51358,-454.31247,-454.11136,-453.91025,-453.70914,-453.50803,-453.30692,-453.1058,-452.9047,-452.70358,-452.50247,-452.30136,-452.10025,-451.89914,-451.69803,-451.49692,-451.2958,-451.0947,-450.8936,-450.69244,-450.49133,-450.29022,-450.0891,-449.888,-449.6869,-449.48578,-449.28467,-449.08356,-448.88245,-448.68134,-448.48022,-448.2791,-448.078,-447.8769,-447.67578,-447.47467,-447.27356,-447.07245,-446.87134,-446.67023,-446.46912,-446.26797,-446.06686,-445.86575,-445.66464,-445.46353,-445.26242,-445.0613,-444.8602,-444.6591,-444.45798,-444.25687,-444.05576,-443.85464,-443.65353,-443.45242,-443.2513,-443.0502,-442.8491,-442.64798,-442.44687,-442.24576,-442.04465,-441.8435,-441.6424,-441.44128,-441.24017,-441.03906,-440.83795,-440.63684,-440.43573,-440.23462,-440.0335,-439.8324,-439.6313,-439.43018,-439.22906,-439.02795,-438.82684,-438.62573,-438.42462,-438.2235,-438.0224,-437.8213,-437.62018,-437.41907,-437.21793,-437.0168,-436.8157,-436.6146,-436.41348,-436.21237,-436.01126,-435.81015,-435.60904,-435.40793,-435.20682,-435.0057,-434.8046,-434.6035,-434.40237,-434.20126,-434.00015,-433.79904,-433.59793,-433.39682,-433.1957,-432.9946,-432.79346,-432.59235,-432.39124,-432.19012,-431.989,-431.7879,-431.5868,-431.38568,-431.18457,-430.98346,-430.78235,-430.58124,-430.38013,-430.17902,-429.9779,-429.7768,-429.57568,-429.37457,-429.17346,-428.97235,-428.77124,-428.57013,-428.369,-428.16788,-427.96677,-427.76566,-427.56454,-427.36343,-427.16232,-426.9612,-426.7601,-426.559,-426.35788,-426.15677,-425.95566,-425.75455,-425.55344,-425.35233,-425.1512,-424.9501,-424.749,-424.54788,-424.34677,-424.14566,-423.94452,-423.7434,-423.5423,-423.3412,-423.14008,-422.93896,-422.73785,-422.53674,-422.33563,-422.13452,-421.9334,-421.7323,-421.5312,-421.33008,-421.12897,-420.92786,-420.72675,-420.52563,-420.32452,-420.1234,-419.9223,-419.7212,-419.52008,-419.31894,-419.11783,-418.91672,-418.7156,-418.5145,-418.3134,-418.11227,-417.91116,-417.71005,-417.50894,-417.30783,-417.10672,-416.9056,-416.7045,-416.5034,-416.30228,-416.10117,-415.90005,-415.69894,-415.49783,-415.29672,-415.0956,-414.89447,-414.69336,-414.49225,-414.29114,-414.09003,-413.88892,-413.6878,-413.4867,-413.28558,-413.08447,-412.88336,-412.68225,-412.48114,-412.28003,-412.07892,-411.8778,-411.6767,-411.4756,-411.27448,-411.07336,-410.87225,-410.67114,-410.47,-410.2689,-410.06778,-409.86667,-409.66556,-409.46445,-409.26334,-409.06223,-408.8611,-408.66,-408.4589,-408.25778,-408.05667,-407.85556,-407.65445,-407.45334,-407.25223,-407.05112,-406.85,-406.6489,-406.44778,-406.24667,-406.04556,-405.84442,-405.6433,-405.4422,-405.2411,-405.03998,-404.83887,-404.63776,-404.43665,-404.23553,-404.03442,-403.8333,-403.6322,-403.4311,-403.22998,-403.02887,-402.82776,-402.62665,-402.42554,-402.22443,-402.02332,-401.8222,-401.6211,-401.41995,-401.21884,-401.01773,-400.81662,-400.6155,-400.4144,-400.2133,-400.01218,-399.81107,-399.60995,-399.40884,-399.20773,-399.00662,-398.8055,-398.6044,-398.4033,-398.20218,-398.00107,-397.79996,-397.59885,-397.39774,-397.19662,-396.99548,-396.79437,-396.59326,-396.39215,-396.19104,-395.98993,-395.78882,-395.5877,-395.3866,-395.1855,-394.98438,-394.78326,-394.58215,-394.38104,-394.17993,-393.97882,-393.7777,-393.5766,-393.3755,-393.17438,-392.97327,-392.77216,-392.57104,-392.3699,-392.1688,-391.96768,-391.76657,-391.56546,-391.36435,-391.16324,-390.96213,-390.76102,-390.5599,-390.3588,-390.15768,-389.95657,-389.75546,-389.55435,-389.35324,-389.15213,-388.95102,-388.7499,-388.5488,-388.3477,-388.14658,-387.94543,-387.74432,-387.5432,-387.3421,-387.141,-386.93988,-386.73877,-386.53766,-386.33655,-386.13544,-385.93433,-385.73322,-385.5321,-385.331,-385.12988,-384.92877,-384.72766,-384.52655,-384.32544,-384.12433,-383.92322,-383.7221,-383.52097,-383.31985,-383.11874,-382.91763,-382.71652,-382.5154,-382.3143,-382.1132,-381.91208,-381.71097,-381.50986,-381.30875,-381.10764,-380.90652,-380.7054,-380.5043,-380.3032,-380.10208,-379.90097,-379.69986,-379.49875,-379.29764,-379.09653,-378.8954,-378.69427,-378.49316,-378.29205,-378.09094,-377.88983,-377.68872,-377.4876,-377.2865,-377.0854,-376.88428,-376.68317,-376.48206,-376.28094,-376.07983,-375.87872,-375.6776,-375.4765,-375.2754,-375.07428,-374.87317,-374.67206,-374.47092,-374.2698,-374.0687,-373.86758,-373.66647,-373.46536,-373.26425,-373.06314,-372.86203,-372.66092,-372.4598,-372.2587,-372.0576,-371.85648,-371.65536,-371.45425,-371.25314,-371.05203,-370.85092,-370.6498,-370.4487,-370.2476,-370.04645,-369.84534,-369.64423,-369.4431,-369.242,-369.0409,-368.83978,-368.63867,-368.43756,-368.23645,-368.03534,-367.83423,-367.63312,-367.432,-367.2309,-367.0298,-366.82867,-366.62756,-366.42645,-366.22534,-366.02423,-365.82312,-365.62198,-365.42087,-365.21976,-365.01865,-364.81754,-364.61642,-364.4153,-364.2142,-364.0131,-363.81198,-363.61087,-363.40976,-363.20865,-363.00754,-362.80643,-362.60532,-362.4042,-362.2031,-362.00198,-361.80087,-361.59976,-361.39865,-361.19754,-360.9964,-360.7953,-360.59418,-360.39307,-360.19196,-359.99084,-359.78973,-359.58862,-359.3875,-359.1864,-358.9853,-358.78418,-358.58307,-358.38196,-358.18085,-357.97974,-357.77863,-357.5775,-357.3764,-357.1753,-356.97418,-356.77307,-356.57193,-356.37082,-356.1697,-355.9686,-355.7675,-355.56638,-355.36526,-355.16415,-354.96304,-354.76193,-354.56082,-354.3597,-354.1586,-353.9575,-353.75638,-353.55527,-353.35416,-353.15305,-352.95193,-352.75082,-352.5497,-352.3486,-352.14746,-351.94635,-351.74524,-351.54413,-351.34302,-351.1419,-350.9408,-350.7397,-350.53857,-350.33746,-350.13635,-349.93524,-349.73413,-349.53302,-349.3319,-349.1308,-348.9297,-348.72858,-348.52747,-348.32635,-348.12524,-347.92413,-347.72302,-347.52188,-347.32077,-347.11966,-346.91855,-346.71744,-346.51633,-346.31522,-346.1141,-345.913,-345.71188,-345.51077,-345.30966,-345.10855,-344.90744,-344.70633,-344.50522,-344.3041,-344.103,-343.9019,-343.70078,-343.49966,-343.29855,-343.0974,-342.8963,-342.6952,-342.49408,-342.29297,-342.09186,-341.89075,-341.68964,-341.48853,-341.2874,-341.0863,-340.8852,-340.68408,-340.48297,-340.28186,-340.08075,-339.87964,-339.67853,-339.47742,-339.2763,-339.0752,-338.87408,-338.67294,-338.47183,-338.27072,-338.0696,-337.8685,-337.6674,-337.46628,-337.26517,-337.06406,-336.86295,-336.66183,-336.46072,-336.2596,-336.0585,-335.8574,-335.65628,-335.45517,-335.25406,-335.05295,-334.85184,-334.65073,-334.44962,-334.2485,-334.04736,-333.84625,-333.64514,-333.44403,-333.24292,-333.0418,-332.8407,-332.6396,-332.43848,-332.23737,-332.03625,-331.83514,-331.63403,-331.43292,-331.2318,-331.0307,-330.8296,-330.62848,-330.42737,-330.22626,-330.02515,-329.82404,-329.6229,-329.42178,-329.22067,-329.01956,-328.81845,-328.61734,-328.41623,-328.21512,-328.014,-327.8129,-327.6118,-327.41068,-327.20956,-327.00845,-326.80734,-326.60623,-326.40512,-326.204,-326.0029,-325.8018,-325.60068,-325.39957,-325.19843,-324.9973,-324.7962,-324.5951,-324.39398,-324.19287,-323.99176,-323.79065,-323.58954,-323.38843,-323.18732,-322.9862,-322.7851,-322.58398,-322.38287,-322.18176,-321.98065,-321.77954,-321.57843,-321.37732,-321.1762,-320.9751,-320.774,-320.57285,-320.37173,-320.17062,-319.9695,-319.7684,-319.5673,-319.36618,-319.16507,-318.96396,-318.76285,-318.56174,-318.36063,-318.15952,-317.9584,-317.7573,-317.55618,-317.35507,-317.15396,-316.95285,-316.75174,-316.55063,-316.34952,-316.14838,-315.94727,-315.74615,-315.54504,-315.34393,-315.14282,-314.9417,-314.7406,-314.5395,-314.33838,-314.13727,-313.93616,-313.73505,-313.53394,-313.33282,-313.1317,-312.9306,-312.7295,-312.52838,-312.32727,-312.12616,-311.92505,-311.7239,-311.5228,-311.3217,-311.12057,-310.91946,-310.71835,-310.51724,-310.31613,-310.11502,-309.9139,-309.7128,-309.5117,-309.31058,-309.10947,-308.90836,-308.70724,-308.50613,-308.30502,-308.1039,-307.9028,-307.7017,-307.50058,-307.29944,-307.09833,-306.89722,-306.6961,-306.495,-306.29388,-306.09277,-305.89166,-305.69055,-305.48944,-305.28833,-305.08722,-304.8861,-304.685,-304.4839,-304.28278,-304.08167,-303.88055,-303.67944,-303.47833,-303.27722,-303.0761,-302.875,-302.67386,-302.47275,-302.27164,-302.07053,-301.86942,-301.6683,-301.4672,-301.26608,-301.06497,-300.86386,-300.66275,-300.46164,-300.26053,-300.05942,-299.8583,-299.6572,-299.4561,-299.25497,-299.05386,-298.85275,-298.65164,-298.45053,-298.2494,-298.04828,-297.84717,-297.64606,-297.44495,-297.24384,-297.04272,-296.8416,-296.6405,-296.4394,-296.23828,-296.03717,-295.83606,-295.63495,-295.43384,-295.23273,-295.03162,-294.8305,-294.6294,-294.42828,-294.22717,-294.02606,-293.82492,-293.6238,-293.4227,-293.2216,-293.02048,-292.81937,-292.61826,-292.41714,-292.21603,-292.01492,-291.8138,-291.6127,-291.4116,-291.21048,-291.00937,-290.80826,-290.60715,-290.40604,-290.20493,-290.0038,-289.8027,-289.6016,-289.40048,-289.19934,-288.99823,-288.79712,-288.596,-288.3949,-288.1938,-287.99268,-287.79156,-287.59045,-287.38934,-287.18823,-286.98712,-286.786,-286.5849,-286.3838,-286.18268,-285.98157,-285.78046,-285.57935,-285.37823,-285.17712,-284.976,-284.77487,-284.57376,-284.37265,-284.17154,-283.97043,-283.76932,-283.5682,-283.3671,-283.166,-282.96487,-282.76376,-282.56265,-282.36154,-282.16043,-281.95932,-281.7582,-281.5571,-281.356,-281.15488,-280.95377,-280.75266,-280.55154,-280.3504,-280.1493,-279.94818,-279.74707,-279.54596,-279.34485,-279.14374,-278.94263,-278.74152,-278.5404,-278.3393,-278.13818,-277.93707,-277.73596,-277.53485,-277.33374,-277.13263,-276.93152,-276.7304,-276.5293,-276.3282,-276.12708,-275.92596,-275.72482,-275.5237,-275.3226,-275.1215,-274.92038,-274.71927,-274.51816,-274.31705,-274.11594,-273.91483,-273.7137,-273.5126,-273.3115,-273.11038,-272.90927,-272.70816,-272.50705,-272.30594,-272.10483,-271.90372,-271.7026,-271.5015,-271.30035,-271.09924,-270.89813,-270.69702,-270.4959,-270.2948,-270.0937,-269.89258,-269.69147,-269.49036,-269.28925,-269.08813,-268.88702,-268.6859,-268.4848,-268.2837,-268.08258,-267.88147,-267.68036,-267.47925,-267.27814,-267.07703,-266.8759,-266.67477,-266.47366,-266.27255,-266.07144,-265.87033,-265.66922,-265.4681,-265.267,-265.0659,-264.86478,-264.66367,-264.46255,-264.26144,-264.06033,-263.85922,-263.6581,-263.457,-263.2559,-263.05478,-262.85367,-262.65256,-262.45145,-262.2503,-262.0492,-261.84808,-261.64697,-261.44586,-261.24475,-261.04364,-260.84253,-260.64142,-260.4403,-260.2392,-260.0381,-259.83698,-259.63586,-259.43475,-259.23364,-259.03253,-258.83142,-258.6303,-258.4292,-258.2281,-258.02698,-257.82584,-257.62473,-257.4236,-257.2225,-257.0214,-256.82028,-256.61917,-256.41806,-256.21695,-256.01584,-255.81473,-255.61362,-255.4125,-255.2114,-255.01028,-254.80917,-254.60806,-254.40694,-254.20583,-254.00471,-253.8036,-253.6025,-253.40138,-253.20027,-252.99916,-252.79805,-252.59694,-252.39583,-252.1947,-251.99359,-251.79248,-251.59137,-251.39026,-251.18915,-250.98804,-250.78693,-250.58582,-250.3847,-250.1836,-249.98247,-249.78136,-249.58025,-249.37914,-249.17802,-248.97691,-248.7758,-248.57469,-248.37358,-248.17247,-247.97136,-247.77023,-247.56912,-247.36801,-247.1669,-246.96579,-246.76468,-246.56357,-246.36246,-246.16135,-245.96024,-245.75912,-245.558,-245.35689,-245.15578,-244.95467,-244.75356,-244.55244,-244.35133,-244.15022,-243.94911,-243.748,-243.54689,-243.34576,-243.14465,-242.94354,-242.74243,-242.54132,-242.34021,-242.1391,-241.93799,-241.73688,-241.53577,-241.33466,-241.13353,-240.93242,-240.73131,-240.5302,-240.32909,-240.12798,-239.92686,-239.72575,-239.52464,-239.32353,-239.12242,-238.92131,-238.72018,-238.51907,-238.31796,-238.11685,-237.91574,-237.71463,-237.51352,-237.31241,-237.1113,-236.91019,-236.70908,-236.50795,-236.30684,-236.10573,-235.90462,-235.7035,-235.5024,-235.30128,-235.10017,-234.89906,-234.69795,-234.49684,-234.29572,-234.0946,-233.8935,-233.69238,-233.49127,-233.29016,-233.08905,-232.88794,-232.68683,-232.48572,-232.2846,-232.08348,-231.88237,-231.68126,-231.48015,-231.27904,-231.07793,-230.87682,-230.6757,-230.4746,-230.27348,-230.07237,-229.87125,-229.67014,-229.46902,-229.26791,-229.0668,-228.86569,-228.66458,-228.46347,-228.26236,-228.06125,-227.86014,-227.65901,-227.4579,-227.25679,-227.05568,-226.85457,-226.65346,-226.45235,-226.25124,-226.05013,-225.84901,-225.6479,-225.4468,-225.24567,-225.04456,-224.84344,-224.64233,-224.44122,-224.24011,-224.039,-223.83789,-223.63678,-223.43567,-223.23456,-223.03343,-222.83232,-222.63121,-222.4301,-222.22899,-222.02788,-221.82677,-221.62566,-221.42455,-221.22343,-221.02232,-220.8212,-220.62009,-220.41898,-220.21786,-220.01675,-219.81564,-219.61453,-219.41342,-219.21231,-219.0112,-218.81009,-218.60896,-218.40785,-218.20674,-218.00563,-217.80452,-217.60341,-217.4023,-217.20119,-217.00008,-216.79897,-216.59785,-216.39673,-216.19562,-215.9945,-215.7934,-215.59229,-215.39117,-215.19006,-214.98895,-214.78784,-214.58673,-214.38562,-214.1845,-213.98338,-213.78227,-213.58116,-213.38005,-213.17894,-212.97783,-212.77672,-212.5756,-212.3745,-212.17339,-211.97226,-211.77115,-211.57004,-211.36893,-211.16782,-210.9667,-210.7656,-210.56448,-210.36337,-210.16226,-209.96115,-209.76004,-209.55891,-209.3578,-209.1567,-208.95558,-208.75447,-208.55336,-208.35225,-208.15114,-207.95003,-207.74892,-207.5478,-207.34668,-207.14557,-206.94446,-206.74335,-206.54224,-206.34113,-206.14001,-205.9389,-205.7378,-205.53668,-205.33557,-205.13445,-204.93333,-204.73222,-204.53111,-204.33,-204.12889,-203.92778,-203.72667,-203.52556,-203.32445,-203.12334,-202.92221,-202.7211,-202.51999,-202.31888,-202.11777,-201.91666,-201.71555,-201.51443,-201.31332,-201.11221,-200.9111,-200.70998,-200.50887,-200.30775,-200.10664,-199.90553,-199.70442,-199.50331,-199.3022,-199.10109,-198.89998,-198.69887,-198.49774,-198.29663,-198.09552,-197.89441,-197.6933,-197.49219,-197.29108,-197.08997,-196.88885,-196.68774,-196.48663,-196.28552,-196.0844,-195.88329,-195.68217,-195.48106,-195.27995,-195.07884,-194.87773,-194.67662,-194.47551,-194.2744,-194.07329,-193.87216,-193.67105,-193.46994,-193.26883,-193.06772,-192.86661,-192.6655,-192.46439,-192.26328,-192.06216,-191.86105,-191.65993,-191.45882,-191.2577,-191.0566,-190.85548,-190.65437,-190.45326,-190.25215,-190.05104,-189.84993,-189.64882,-189.4477,-189.24658,-189.04547,-188.84436,-188.64325,-188.44214,-188.24103,-188.03992,-187.8388,-187.6377,-187.43658,-187.23546,-187.03435,-186.83324,-186.63213,-186.43102,-186.2299,-186.0288,-185.82768,-185.62657,-185.42546,-185.22435,-185.02322,-184.82211,-184.621,-184.41989,-184.21878,-184.01767,-183.81656,-183.61545,-183.41434,-183.21323,-183.01212,-182.81099,-182.60988,-182.40877,-182.20766,-182.00655,-181.80544,-181.60432,-181.40321,-181.2021,-181.00099,-180.79988,-180.59877,-180.39764,-180.19653,-179.99542,-179.79431,-179.5932,-179.39209,-179.19098,-178.98987,-178.78876,-178.58765,-178.38654,-178.18541,-177.9843,-177.78319,-177.58208,-177.38097,-177.17986,-176.97874,-176.77763,-176.57652,-176.37541,-176.1743,-175.97318,-175.77206,-175.57095,-175.36984,-175.16873,-174.96762,-174.76651,-174.5654,-174.36429,-174.16318,-173.96207,-173.76094,-173.55983,-173.35872,-173.15761,-172.9565,-172.75539,-172.55428,-172.35316,-172.15205,-171.95094,-171.74983,-171.5487,-171.3476,-171.14648,-170.94537,-170.74426,-170.54315,-170.34204,-170.14093,-169.93982,-169.73871,-169.5376,-169.33647,-169.13536,-168.93425,-168.73314,-168.53203,-168.33092,-168.1298,-167.9287,-167.72758,-167.52647,-167.32536,-167.12425,-166.92313,-166.72202,-166.5209,-166.3198,-166.11868,-165.91757,-165.71646,-165.51535,-165.31424,-165.11313,-164.91202,-164.71089,-164.50978,-164.30867,-164.10756,-163.90645,-163.70534,-163.50423,-163.30312,-163.102,-162.9009,-162.69978,-162.49866,-162.29755,-162.09644,-161.89532,-161.69421,-161.4931,-161.29199,-161.09088,-160.88977,-160.68866,-160.48755,-160.28642,-160.08531,-159.8842,-159.68309,-159.48198,-159.28087,-159.07976,-158.87865,-158.67754,-158.47643,-158.27531,-158.07419,-157.87308,-157.67197,-157.47086,-157.26974,-157.06863,-156.86752,-156.66641,-156.4653,-156.26419,-156.06308,-155.86195,-155.66084,-155.45973,-155.25862,-155.05751,-154.8564,-154.65529,-154.45418,-154.25307,-154.05196,-153.85085,-153.64972,-153.44861,-153.2475,-153.04639,-152.84528,-152.64417,-152.44305,-152.24194,-152.04083,-151.83972,-151.63861,-151.4375,-151.23637,-151.03526,-150.83415,-150.63304,-150.43193,-150.23082,-150.02971,-149.8286,-149.62749,-149.42638,-149.22527,-149.02414,-148.82303,-148.62192,-148.4208,-148.2197,-148.01859,-147.81747,-147.61636,-147.41525,-147.21414,-147.01303,-146.8119,-146.6108,-146.40968,-146.20857,-146.00746,-145.80635,-145.60524,-145.40413,-145.20302,-145.0019,-144.8008,-144.59967,-144.39856,-144.19745,-143.99634,-143.79523,-143.59412,-143.393,-143.1919,-142.99078,-142.78967,-142.58856,-142.38744,-142.18633,-141.98521,-141.7841,-141.583,-141.38188,-141.18077,-140.97966,-140.77855,-140.57744,-140.37633,-140.1752,-139.97409,-139.77298,-139.57187,-139.37076,-139.16965,-138.96854,-138.76743,-138.56631,-138.3652,-138.1641,-137.96298,-137.76186,-137.56075,-137.35963,-137.15852,-136.95741,-136.7563,-136.55519,-136.35408,-136.15297,-135.95186,-135.75075,-135.54962,-135.34851,-135.1474,-134.94629,-134.74518,-134.54407,-134.34296,-134.14185,-133.94073,-133.73962,-133.53851,-133.33739,-133.13628,-132.93517,-132.73405,-132.53294,-132.33183,-132.13072,-131.92961,-131.7285,-131.52739,-131.32628,-131.12515,-130.92404,-130.72293,-130.52182,-130.32071,-130.1196,-129.91849,-129.71738,-129.51627,-129.31516,-129.11404,-128.91292,-128.7118,-128.5107,-128.30959,-128.10847,-127.907364,-127.70625,-127.50514,-127.30403,-127.10291,-126.9018,-126.70069,-126.49958,-126.29847,-126.09735,-125.89624,-125.69513,-125.49402,-125.29291,-125.0918,-124.89068,-124.68957,-124.48846,-124.287346,-124.086235,-123.88512,-123.684006,-123.482895,-123.281784,-123.08067,-122.87956,-122.678444,-122.47733,-122.27622,-122.07511,-121.874,-121.67288,-121.47177,-121.27066,-121.06955,-120.86844,-120.66733,-120.46621,-120.2651,-120.06399,-119.86288,-119.661766,-119.460655,-119.25954,-119.058426,-118.857315,-118.656204,-118.45509,-118.253975,-118.052864,-117.85175,-117.65064,-117.44953,-117.24842,-117.0473,-116.84619,-116.64508,-116.44397,-116.24286,-116.04174,-115.84063,-115.63952,-115.43841,-115.2373,-115.03619,-114.83507,-114.63396,-114.432846,-114.231735,-114.030624,-113.829506,-113.628395,-113.427284,-113.22617,-113.02506,-112.82395,-112.62283,-112.42172,-112.22061,-112.0195,-111.81839,-111.61728,-111.41616,-111.21505,-111.01394,-110.81283,-110.61172,-110.4106,-110.20949,-110.00838,-109.80727,-109.606155,-109.405045,-109.203926,-109.002815,-108.801704,-108.60059,-108.39948,-108.198364,-107.99725,-107.79614,-107.59503,-107.39392,-107.19281,-106.99169,-106.79058,-106.58947,-106.38836,-106.18725,-105.98613,-105.78502,-105.58391,-105.3828,-105.18169,-104.980576,-104.77946,-104.57835,-104.377235,-104.176125,-103.97501,-103.7739,-103.572784,-103.37167,-103.17056,-102.96945,-102.76834,-102.56722,-102.36611,-102.165,-101.96389,-101.76278,-101.56167,-101.36055,-101.15944,-100.95833,-100.75722,-100.55611,-100.35499,-100.15388,-99.95277,-99.751656,-99.550545,-99.349434,-99.148315,-98.947205,-98.74609,-98.54498,-98.34387,-98.14276,-97.94164,-97.74053,-97.53942,-97.33831,-97.1372,-96.93608,-96.73497,-96.53386,-96.33275,-96.13164,-95.93053,-95.72941,-95.5283,-95.32719,-95.126076,-94.924965,-94.72385,-94.522736,-94.321625,-94.120514,-93.9194,-93.71829,-93.51717,-93.31606,-93.11495,-92.91384,-92.71273,-92.51161,-92.3105,-92.10939,-91.90828,-91.70717,-91.50606,-91.30494,-91.10383,-90.90272,-90.70161,-90.500496,-90.299385,-90.09827,-89.897156,-89.696045,-89.494934,-89.29382,-89.092705,-88.891594,-88.69048,-88.48937,-88.28826,-88.08715,-87.88603,-87.68492,-87.48381,-87.2827,-87.08159,-86.88047,-86.67936,-86.47825,-86.27714,-86.07603,-85.874916,-85.6738,-85.47269,-85.271576,-85.070465,-84.869354,-84.668236,-84.467125,-84.266014,-84.0649,-83.86379,-83.66268,-83.46156,-83.26045,-83.05934,-82.85823,-82.65712,-82.45601,-82.25489,-82.05378,-81.85267,-81.65156,-81.45045,-81.24933,-81.04822,-80.84711,-80.645996,-80.444885,-80.243774,-80.042656,-79.841545,-79.640434,-79.43932,-79.23821,-79.037094,-78.83598,-78.63487,-78.43376,-78.23265,-78.03154,-77.83042,-77.62931,-77.4282,-77.22709,-77.02598,-76.82486,-76.62375,-76.42264,-76.22153,-76.02042,-75.819305,-75.61819,-75.417076,-75.215965,-75.014854,-74.81374,-74.61263,-74.411514,-74.2104,-74.00929,-73.80818,-73.60707,-73.40595,-73.20484,-73.00373,-72.80262,-72.60151,-72.4004,-72.19928,-71.99817,-71.79706,-71.59595,-71.39484,-71.19372,-70.99261,-70.7915,-70.590385,-70.389275,-70.18816,-69.987045,-69.785934,-69.58482,-69.38371,-69.1826,-68.98149,-68.78037,-68.57926,-68.37815,-68.17704,-67.97593,-67.77481,-67.5737,-67.37259,-67.17148,-66.97037,-66.76926,-66.56814,-66.36703,-66.16592,-65.964806,-65.763695,-65.56258,-65.361465,-65.160355,-64.95924,-64.75813,-64.55702,-64.3559,-64.15479,-63.953682,-63.75257,-63.551456,-63.350346,-63.149235,-62.94812,-62.74701,-62.5459,-62.344784,-62.143673,-61.94256,-61.741447,-61.540337,-61.339222,-61.13811,-60.937,-60.735886,-60.534775,-60.333664,-60.13255,-59.93144,-59.730328,-59.529213,-59.328102,-59.126987,-58.925877,-58.724766,-58.52365,-58.32254,-58.12143,-57.920315,-57.719204,-57.518093,-57.31698,-57.115868,-56.914753,-56.713642,-56.51253,-56.311417,-56.110306,-55.909195,-55.70808,-55.50697,-55.30586,-55.104744,-54.903633,-54.702522,-54.501408,-54.300297,-54.099182,-53.89807,-53.69696,-53.495846,-53.294735,-53.093624,-52.89251,-52.6914,-52.490288,-52.289173,-52.088062,-51.88695,-51.685837,-51.484726,-51.28361,-51.0825,-50.88139,-50.680275,-50.479164,-50.278053,-50.07694,-49.875828,-49.674717,-49.473602,-49.27249,-49.07138,-48.870266,-48.669155,-48.46804,-48.26693,-48.06582,-47.864704,-47.663593,-47.462482,-47.261368,-47.060257,-46.859146,-46.65803,-46.45692,-46.255806,-46.054695,-45.853584,-45.65247,-45.45136,-45.250248,-45.049133,-44.848022,-44.64691,-44.445797,-44.244686,-44.043575,-43.84246,-43.64135,-43.440235,-43.239124,-43.038013,-42.8369,-42.635788,-42.434677,-42.233562,-42.03245,-41.83134,-41.630226,-41.429115,-41.228004,-41.02689,-40.82578,-40.624664,-40.423553,-40.222443,-40.021328,-39.820217,-39.619106,-39.41799,-39.21688,-39.01577,-38.814655,-38.613544,-38.41243,-38.21132,-38.01021,-37.809093,-37.607983,-37.40687,-37.205757,-37.004646,-36.803535,-36.60242,-36.40131,-36.2002,-35.999084,-35.797974,-35.59686,-35.39575,-35.194637,-34.993523,-34.79241,-34.5913,-34.390186,-34.189075,-33.987965,-33.78685,-33.58574,-33.38463,-33.183514,-32.982403,-32.78129,-32.580177,-32.379066,-32.17795,-31.976841,-31.775728,-31.574617,-31.373505,-31.172392,-30.97128,-30.770168,-30.569056,-30.367943,-30.166832,-29.96572,-29.764606,-29.563494,-29.362383,-29.16127,-28.960157,-28.759047,-28.557934,-28.356821,-28.155708,-27.954597,-27.753485,-27.552372,-27.351261,-27.150148,-26.949036,-26.747923,-26.546812,-26.3457,-26.144587,-25.943476,-25.742363,-25.54125,-25.340137,-25.139027,-24.937914,-24.736801,-24.53569,-24.334578,-24.133465,-23.932352,-23.731241,-23.530128,-23.329016,-23.127903,-22.926792,-22.72568,-22.524567,-22.323456,-22.122343,-21.92123,-21.720118,-21.519007,-21.317894,-21.116781,-20.91567,-20.714558,-20.513445,-20.312332,-20.111221,-19.910109,-19.708996,-19.507885,-19.306772,-19.10566,-18.904547,-18.703436,-18.502323,-18.30121,-18.1001,-17.898987,-17.697874,-17.496761,-17.29565,-17.094538,-16.893425,-16.692314,-16.491201,-16.290089,-16.088976,-15.887864,-15.686752,-15.48564,-15.284528,-15.083416,-14.882303,-14.681191,-14.480079,-14.278967,-14.077854,-13.876742,-13.675631,-13.474518,-13.273406,-13.072293,-12.8711815,-12.670069,-12.468957,-12.267845,-12.066732,-11.865621,-11.664508,-11.463396,-11.262283,-11.061172,-10.860059,-10.658947,-10.457835,-10.256722,-10.055611,-9.854498,-9.653386,-9.452273,-9.251162,-9.05005,-8.848937,-8.647825,-8.4467125,-8.245601,-8.044488,-7.843376,-7.642264,-7.4411516,-7.2400393,-7.038927,-6.8378153,-6.636703,-6.4355907,-6.2344785,-6.033366,-5.832254,-5.6311417,-5.4300294,-5.2289176,-5.0278053,-4.826693,-4.625581,-4.4244685,-4.2233562,-4.022244,-3.821132,-3.6200197,-3.4189076,-3.2177954,-3.016683,-2.8155708,-2.6144588,-2.4133465,-2.2122343,-2.011122,-1.8100098,-1.6088977,-1.4077854,-1.2066733,-1.005561,-0.80444884,-0.60333663,-0.40222442,-0.20111221,0.0]}
diff --git a/lib/node_modules/@stdlib/math/base/special/covercosf/test/fixtures/julia/medium_positive.json b/lib/node_modules/@stdlib/math/base/special/covercosf/test/fixtures/julia/medium_positive.json
new file mode 100644
index 000000000000..ddef69318632
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/covercosf/test/fixtures/julia/medium_positive.json
@@ -0,0 +1 @@
+{"expected":[1.0,1.1997592,1.3914661,1.5673932,1.7204485,1.8444626,1.9344364,1.9867431,1.9992743,1.9715246,1.9046129,1.8012362,1.6655617,1.5030583,1.320277,1.124585,0.92387104,0.7262258,0.5396166,0.37156528,0.22884631,0.117212355,0.041163564,0.0037654638,0.006525576,0.04933268,0.13046122,0.2466405,0.39318794,0.564196,0.7527713,0.9513124,1.1518161,1.3462001,1.5266287,1.6858287,1.8173833,1.9159892,1.9776714,1.9999437,1.9819086,1.9242923,1.8294182,1.7011099,1.5445403,1.3660196,1.1727455,0.9725081,0.7733779,0.5833838,0.4101826,0.26075774,0.1411311,0.05612594,0.009168208,0.0021507144,0.03535652,0.107447326,0.21551657,0.35520887,0.520892,0.7058888,0.90274036,1.1035124,1.3001127,1.4846147,1.6495826,1.7883652,1.8953693,1.9662807,1.9982414,1.9899633,1.9417796,1.8556325,1.7349955,1.5847301,1.410895,1.2204967,1.0212094,0.821068,0.6281393,0.45019948,0.29442227,0.16708696,0.0733273,0.016920924,0.00014263391,0.023668408,0.086550355,0.1862536,0.31875914,0.47872394,0.65970296,0.8543994,1.0549631,1.2533131,1.441452,1.6117959,1.757477,1.8726256,1.9525983,1.9941715,1.9956701,1.9570329,1.8798175,1.7671378,1.6235337,1.4547949,1.267725,1.0698613,0.8691815,0.6737751,0.49152046,0.32976097,0.19501895,0.09272665,0.027005553,0.00050610304,0.0142964125,0.06781995,0.15892017,0.28392452,0.43779397,0.61432433,0.80640286,1.0062854,1.2059126,1.3972415,1.5725574,1.7247934,1.8478119,1.9366562,1.9877436,1.9990151,1.9700164,1.901916,1.7974594,1.6608584,1.4976169,1.3143163,1.1183475,0.91760635,0.7201864,0.5340458,0.36668944,0.22486025,0.114277065,0.039398074,0.0032402873,0.007262051,0.0513013,0.13358176,0.2507884,0.3981958,0.56986046,0.75886554,0.9575908,1.1580256,1.3520887,1.5319607,1.690388,1.8209884,1.9184923,1.9789724,1.9999907,1.9806991,1.9218746,1.8258907,1.6966155,1.539257,1.360164,1.166553,0.9662247,0.76726145,0.5776798,0.40511858,0.25654018,0.13793015,0.054068506,0.00833869,0.0025824904,0.037032127,0.110298455,0.2194305,0.36002517,0.5264168,0.711902,0.9089969,1.10976,1.3061025,1.4901023,1.6543465,1.7922165,1.8981498,1.9678802,1.9985944,1.9890556,1.9396474,1.852363,1.7307203,1.5796196,1.4051574,1.2143636,1.014925,0.81488854,0.6223103,0.44496024,0.2899835,0.16362506,0.07098311,0.01578933,0.00026857853,0.025047123,0.089125454,0.18992287,0.32337242,0.48409647,0.66561997,0.86061877,1.0612398,1.2593884,1.4470813,1.6167557,1.7615654,1.8756771,1.9544917,1.9948294,1.9950662,1.9551914,1.8768137,1.7630919,1.6186075,1.4491899,1.2616619,1.0635899,0.8629547,0.66784,0.48611838,0.32511097,0.1913057,0.0901013,0.025574386,0.0003259182,0.015374601,0.070114374,0.16233665,0.28832465,0.44300306,0.620131,0.8125713,1.0125705,1.2120593,1.403,1.5776992,1.7291082,1.8511271,1.9388392,1.9887049,1.9987164,1.9684696,1.8991845,1.7936512,1.6561282,1.4921567,1.3083433,1.112104,0.91134584,0.71415764,0.5284954,0.36183918,0.22090453,0.111377716,0.03766966,0.0027543902,0.0080375075,0.053307354,0.13673729,0.2549649,0.4032275,0.5755431,0.76496834,0.96387136,1.164227,1.3579628,1.5372725,1.6949215,1.8245606,1.9209597,1.9802352,1.9999981,1.9794508,1.9194224,1.8223305,1.6920924,1.5339564,1.3542933,1.1603522,0.95994353,0.7611533,0.5719908,0.40007806,0.25235128,0.13476187,0.052048445,0.0075482726,0.0030533671,0.03874582,0.113185585,0.22337234,0.36486745,0.531962,0.71792656,0.91525793,1.1160053,1.3120801,1.4955714,1.6590865,1.7960365,1.9008958,1.9694405,1.9989076,1.9881082,1.9374783,1.8490592,1.726415,1.5744895,1.3994066,1.2082163,1.00864,0.80871546,0.61650145,0.43974602,0.28556877,0.16019619,0.06867564,0.01469624,0.0004338622,0.026463449,0.09173888,0.19362408,0.3280139,0.48949105,0.6715465,0.8668493,1.0675122,1.2654536,1.4526948,1.6216881,1.7656214,1.8786968,1.9563475,1.9954481,1.994423,1.9533132,1.873776,1.7590122,1.6136569,1.4435654,1.255594,1.0573198,0.85672754,0.66191804,0.48073655,0.3204862,0.18762666,0.08751345,0.024180412,0.00018519163,0.01649195,0.072443366,0.16578406,0.29275692,0.44823414,0.6259527,0.81874895,1.0188513,1.2181938,1.4087479,1.5828183,1.7333956,1.8544099,1.9409838,1.9896269,1.9983783,1.9668846,1.8964164,1.789814,1.6513748,1.4866723,1.3023582,1.1058561,0.905087,0.70814383,0.5229652,0.35700977,0.21697956,0.10851252,0.03598082,0.0023081899,0.008852959,0.05535078,0.13992691,0.25917208,0.40827966,0.5812391,0.771086,0.97015333,1.1704239,1.3638246,1.5425599,1.6994302,1.8281006,1.9233906,1.9814594,1.9999659,1.9781647,1.9169309,1.8187377,1.6875418,1.5286314,1.3484123,1.1541488,0.953664,0.75505453,0.5663187,0.3950643,0.24819452,0.13162577,0.050065815,0.0067970753,0.0035638213,0.04049635,0.116105914,0.22734964,0.36973482,0.53752565,0.7239586,0.92151856,1.1222497,1.3180454,1.5010209,1.6638005,1.7998226,1.9036044,1.9709642,1.9991817,1.9871228,1.9352735,1.8457239,1.7220783,1.5693303,1.3936329,1.2020683,1.0023586,0.80255365,0.61070067,0.4345476,0.28118765,0.1568026,0.06640631,0.013642728,0.0006388426,0.027919948,0.09438503,0.19735497,0.33267903,0.49490905,0.6774933,0.8730776,1.073778,1.2715046,1.4582869,1.6266019,1.7696521,1.8816781,1.9581642,1.9960272,1.9937401,1.9513952,1.8707,1.7549075,1.608685,1.4379268,1.2495086,1.0510398,0.8505136,0.6560131,0.47537845,0.31588548,0.18397528,0.08495855,0.022826672,8.404255e-5,0.017647445,0.074811876,0.16926867,0.29721177,0.45348382,0.6317857,0.8249301,1.025139,1.2243271,1.4144727,1.5879111,1.7376512,1.857661,1.9430937,1.9905108,1.9980011,1.9652624,1.8936145,1.7859409,1.64659,1.4811752,1.2963645,1.0996077,0.8988281,0.70213425,0.5174472,0.35221153,0.21308792,0.10568428,0.034327984,0.0019008517,0.009706497,0.057430267,0.14314854,0.26340604,0.41336137,0.5869586,0.7772053,0.9764327,1.1766101,1.3696756,1.5478321,1.7039058,1.8316054,1.9257836,1.982644,1.9998944,1.9768381,1.9144062,1.815115,1.682967,1.5232824,1.3425102,1.1479317,0.9473901,0.7489692,0.56066716,0.39006835,0.24406236,0.12852782,0.04812187,0.006085515,0.004114032,0.042286992,0.11906481,0.23135257,0.37462413,0.54310423,0.73000884,0.9277899,1.1284817,1.3239945,1.5064473,1.6684854,1.8035817,1.9062805,1.9724478,1.9994161,1.9860985,1.9330292,1.8423512,1.7177185,1.564155,1.3878508,1.1959124,0.9960693,0.7963922,0.60492235,0.42937785,0.27683485,0.15343815,0.064171195,0.012626886,0.0008831024,0.029413104,0.09706694,0.20112205,0.33737624,0.5003404,0.6834456,0.87931085,1.0800487,1.2775521,1.4638677,1.631485,1.7736475,1.8846247,1.9599453,1.9965675,1.9930186,1.9494418,1.8675935,1.750773,1.603683,1.4322641,1.2434208,1.0447655,0.8443056,0.6501145,0.47003466,0.31131738,0.18036056,0.08244288,0.021511436,2.2292137e-5,0.018843234,0.077214,0.17278183,0.30169433,0.4587615,0.6376403,0.83112556,1.0314181,1.2304442,1.4201812,1.5929871,1.741883,1.8608742,1.9451638,1.9913546,1.9975839,1.9636,1.8907741,1.7820415,1.6417854,1.4756591,1.2903594,1.0933554,0.8925883,0.6961364,0.5119482,0.34743315,0.20922267,0.10288793,0.03271532,0.0015333891,0.010599077,0.059547007,0.14640403,0.26766896,0.4184662,0.5926944,0.7833408,0.9827206,1.182797,1.3755049,1.5530764,1.7083538,1.8350776,1.9281402,1.9837898,1.9997832,1.975473,1.9118422,1.8114555,1.6783595,1.5179193,1.336602,1.1417164,0.9411183,0.7428937,0.55503297,0.3850965,0.23996013,0.12546057,0.04621321,0.0054124,0.004702866,0.04411322,0.122054815,0.2353859,0.37953812,0.5487008,0.73606986,0.93406415,1.1347163,1.329938,1.5118601,1.6731496,1.8073046,1.9089178,1.9738929,1.999611,1.9850353,1.9307535,1.8389452,1.7133249,1.558951,1.3820461,1.1897411,0.9897879,0.7902462,0.5991596,0.42423064,0.2725106,0.15011525,0.061973035,0.011650145,0.001167059,0.030946434,0.09978777,0.20491612,0.34209388,0.5057914,0.6894103,0.88554883,1.0863008,1.2835888,1.4694302,1.6363491,1.7776172,1.8875399,1.9616864,1.9970679,1.9922581,1.9474511,1.8644527,1.7466087,1.5986573,1.4265844,1.237316,1.0384817,0.83809614,0.64423686,0.46471822,0.30677646,0.17677814,0.079963386,0.020234883,5.9604645e-8,0.020077765,0.07965559,0.17633194,0.30620992,0.46405417,0.6435021,0.8373202,1.0376959,1.2365521,1.425873,1.5980394,1.7460854,1.8640571,1.9471991,1.9921602,1.9971278,1.9619017,1.8879019,1.7781112,1.6369555,1.4701242,1.2843428,1.0870843,0.88633007,0.6901579,0.5064752,0.3426863,0.20539331,0.10013044,0.031140804,0.0012053847,0.011530757,0.06170082,0.14970118,0.2719713,0.42358792,0.59843934,0.7894774,0.9890016,1.1889691,1.3813193,1.5582988,1.7127736,1.838517,1.9304657,1.9848995,1.9996326,1.9740711,1.9092454,1.8077685,1.6737309,1.5125356,1.3306803,1.1354954,0.9348488,0.73681366,0.54940265,0.38015497,0.23589289,0.122431576,0.044344485,0.0047793984,0.0053310394,0.045977235,0.12507951,0.23944938,0.38448864,0.55432886,0.74213386,0.9403333,1.1409379,1.3358613,1.5172465,1.6777816,1.8109957,1.911519,1.9752996,1.9997668,1.9839306,1.9284326,1.83551,1.7089086,1.5537313,1.3762336,1.18357,0.98350686,0.7841085,0.59341264,0.41909373,0.2682047,0.14681393,0.059814572,0.010713577,0.0014901757,0.032516122,0.10254085,0.2087416,0.34683752,0.51126206,0.69538736,0.89180654,1.0925725,1.2896068,1.4749672,1.6411822,1.7815512,1.8904165,1.9633895,1.9975289,1.9914584,1.9454229,1.8612701,1.7424049,1.5936139,1.4208946,1.2312093,1.032204,0.83190066,0.6383733,0.4594229,0.30226284,0.1732282,0.07751435,0.018993974,1.7404556e-5,0.02134955,0.08213049,0.1799103,0.31074744,0.46936798,0.64937794,0.84352136,1.0439723,1.2426655,1.4315618,1.6030622,1.7502532,1.8672022,1.9491947,1.9929256,1.9966323,1.9601654,1.8849947,1.7741504,1.6320887,1.4645574,1.2783002,1.0808249,0.8800915,0.6841916,0.5010217,0.33796537,0.2015953,0.097408414,0.029604554,0.0009161234,0.012503862,0.06389701,0.1530239,0.27629197,0.42873228,0.6042001,0.79562235,0.99528295,1.1951337,1.3871188,1.5634992,1.717176,1.8419312,1.9327487,1.9859676,1.9994426,1.9726307,1.9066126,1.8040495,1.6690757,1.5071317,1.3247455,1.129254,0.92856663,0.7307588,0.5438038,0.37523794,0.23185581,0.11943716,0.04251355,0.004185617,0.005998373,0.0478788,0.12814617,0.24355286,0.38945144,0.5599609,0.74820805,0.94660485,1.147154,1.3417714,1.5226122,1.6823869,1.8146548,1.9140906,1.9766712,1.9998827,1.9827895,1.9260807,1.832042,1.7044642,1.5484898,1.3704062,1.1773915,0.9772265,0.7779645,0.5876679,0.41399217,0.26393807,0.14355421,0.057693243,0.00981611,0.0018526912,0.034124017,0.105329335,0.21259826,0.35161853,0.51676524,0.701391,0.8980534,1.0988252,1.2956135,1.4804857,1.6459899,1.7854545,1.8932579,1.9650546,1.9979515,1.9906175,1.9433523,1.8580611,1.738182,1.588547,1.4151882,1.2250934,1.025925,0.82571185,0.632524,0.45414895,0.29776597,0.16970241,0.07510769,0.017794847,7.414818e-5,0.022659898,0.084641635,0.18352103,0.31531215,0.47470272,0.65526766,0.84974366,1.0502621,1.2487545,1.4372197,1.608061,1.7543914,1.8703129,1.9511527,1.9936519,1.9960976,1.9583912,1.8820453,1.7701491,1.6272086,1.4589857,1.2722613,1.0745622,0.8738576,0.6782377,0.49558783,0.33327055,0.19782877,0.094715595,0.028102994,0.000666976,0.013513565,0.06612486,0.15638012,0.2806412,0.43389922,0.60997653,0.80177534,1.0015645,1.2013056,1.3929169,1.56869,1.7215395,1.845304,1.9349949,1.9869967,1.9992132,1.9711521,1.9039443,1.8002989,1.6643827,1.5016947,1.3187835,1.1230226,0.92230254,0.7247145,0.538223,0.37034553,0.22784907,0.11647755,0.040720344,0.003631115,0.0067067742,0.049822748,0.13123989,0.24767625,0.39443833,0.5656103,0.75429225,0.95287853,1.1533642,1.3476679,1.5279573,1.6869762,1.8182905,1.9166198,1.9780009,1.9999592,1.9816098,1.9236922,1.828541,1.699992,1.5432266,1.3645641,1.1711911,0.97093177,0.7718441,0.5819533,0.40891373,0.25970054,0.14032835,0.055609047,0.008957624,0.0022545457,0.03577006,0.10816002,0.21649545,0.35641354,0.52227426,0.7073918,0.9043042,1.105074,1.3016084,1.4859852,1.6507721,1.7893268,1.896071,1.9666855,1.9983337,1.9897395,1.9412496,1.8548183,1.7339299,1.583457,1.4094654,1.2189685,1.0196451,0.8195148,0.626675,0.44888377,0.29330766,0.16621792,0.072737515,0.016634464,0.00017035007,0.02400881,0.0871889,0.18716395,0.31991506,0.4800712,0.6611853,0.8559569,1.0565348,1.2548337,1.4428605,1.6130358,1.7585,1.8733895,1.9530731,1.994339,1.995522,1.9565747,1.8790683,1.7661271,1.6223038,1.4533958,1.2662116,1.0682967,0.8676287,0.6722965,0.49017394,0.32859075,0.19408488,0.09206498,0.026643455,0.00045734644,0.01456219,0.068389535,0.1597696,0.2850188,0.43908852,0.6157683,0.80795115,1.0078614,1.2074547,1.3986855,1.5738456,1.7258744,1.8486435,1.9372044,1.987987,1.9989444,1.969635,1.9012334,1.7965075,1.6596748,1.4962509,1.3128234,1.1167862,0.9160415,0.71868104,0.53266037,0.36547798,0.22387272,0.113545716,0.038960755,0.00311476,0.007452607,0.051799536,0.13436788,0.25182933,0.3994491,0.5712768,0.76038605,0.959154,1.1595836,1.3535651,1.5332946,1.6915274,1.8218849,1.9191129,1.9792919,1.9999962,1.9803913,1.9212673,1.8250074,1.6954923,1.537929,1.3586934,1.1649989,0.96465343,0.76573277,0.5762552,0.40385866,0.2554922,0.1371364,0.053562164,0.008138299,0.0026969314,0.03745824,0.111019075,0.22041422,0.361234,0.5278021,0.7134042,0.9105588,1.1113188,1.3075916,1.4914654,1.6555402,1.7931772,1.8988416,1.9682744,1.9986765,1.9888225,1.9391096,1.8515418,1.7296488,1.578344,1.4037266,1.2128202,1.0133492,0.81334,0.620855,0.4436531,0.28887725,0.1627664,0.070403874,0.015512884,0.00030601025,0.025396287,0.08977854,0.19084787,0.3245337,0.48544723,0.66710204,0.86217576,1.0628052,1.2609029,1.4484837,1.6179864,1.7625785,1.8764389,1.9549606,1.9949883,1.9949086,1.9547248,1.8760566,1.762075,1.6173744,1.447788,1.2601515,1.0620284,0.86138994,0.66635394,0.48476702,0.32394886,0.19038188,0.08945024,0.025222301,0.00028711557,0.015649736,0.07069099,0.16319221,0.2894246,0.44429994,0.62157524,0.81410456,1.0141273,1.2135805,1.4044523,1.5789912,1.7301911,1.8519576,1.939382,1.9889405,1.9986353,1.9680758,1.8984936,1.7926939,1.6549408,1.4907876,1.306851,1.1105454,0.9097838,0.71265876,0.52711624,0.36063546,0.21992707,0.11066294,0.03724754,0.0026401281,0.008239627,0.053818643,0.13753772,0.25602216,0.4044959,0.57697403,0.76650417,0.9654464,1.1657814,1.3594339,1.5385978,1.6960511,1.8254471,1.9215696,1.9805443,1.9999938,1.9791341,1.9188061,1.8214414,1.6909649,1.5326362,1.352837,1.1588153,0.9583612,0.7596158,0.5705601,0.39881486,0.25130308,0.13397086,0.051547766,0.007356286,0.0031776428,0.039180398,0.11391318,0.22436368,0.36607963,0.53334856,0.71942794,0.916817,1.1175591,1.3135625,1.4969263,1.6602595,1.7969778,1.9015704,1.9698287,1.9989805,1.987864,1.9369273,1.8482236,1.7253284,1.5731957,1.3979577,1.2066784,1.0070679,0.80717254,0.61504996,0.43844444,0.28447497,0.15934783,0.06810701,0.014430165,0.0004811287,0.02682215,0.09239143,0.19454587,0.32916766,0.49085665,0.6730463,0.86841524,1.0690882,1.2669764,1.4541029,1.6229248,1.7666368,1.8794463,1.9568057,1.9955968,1.994256,1.9528372,1.8730102,1.7579926,1.6124208,1.4421626,1.2540811,1.0557578,0.8551868,0.6604532,0.4794066,0.31934476,0.18670201,0.08686519,0.023836315,0.00015604496,0.016778886,0.07303488,0.16665626,0.29386926,0.44954604,0.62741125,0.82029533,1.0204232,1.2197278,1.4101753,1.5840889,1.7344582,1.8552219,1.9415121,1.9898504,1.9982885,1.9664861,1.8957253,1.7888393,1.6501694,1.4852916,1.3008518,1.104285,0.90351444,0.70663315,0.52157736,0.35580647,0.21600264,0.10780138,0.035564065,0.00220263,0.009061873,0.05586523,0.14072615,0.26022393,0.4095416,0.5826604,0.77260184,0.9717096,1.1719577,1.3653028,1.5438926,1.7005584,1.8289851,1.923996,1.981761,1.9999517,1.977835,1.9163024,1.8178341,1.6863993,1.5272963,1.3469381,1.1525952,0.9521012,0.75353795,0.56490946,0.3938192,0.24716377,0.13085479,0.049580455,0.0066170692,0.003696382,0.040944755,0.11684948,0.2283535,0.37096214,0.53892696,0.72547734,0.9230936,1.1238099,1.3195355,1.5023808,1.6649754,1.8007653,1.9042767,1.9713373,1.9992437,1.9868714,1.9347186,1.844888,1.7210004,1.5680497,1.3922012,1.2005433,1.000771,0.80099773,0.609246,0.43324536,0.28009027,0.1559543,0.06584138,0.013383865,0.00069630146,0.028290093,0.0950529,0.19829369,0.33385074,0.49625993,0.6789746,0.8746296,1.0753382,1.27301,1.459677,1.6278145,1.7706453,1.8824117,1.9586173,1.9961673,1.9935623,1.9509075,1.8699219,1.7538705,1.6074308,1.436506,1.247986,1.0494696,0.84895927,0.65453726,0.4740407,0.3147452,0.18307191,0.08432859,0.022495449,6.496906e-5,0.017941296,0.07540387,0.17013633,0.29832017,0.45478833,0.63326204,0.8264932,1.0267183,1.2258663,1.4159099,1.5891883,1.738717,1.8584683,1.9436153,1.9907256,1.9979005,1.9648504,1.8929079,1.7849727,1.6453956,1.4798031,1.2948699,1.0980508,0.89727926,0.7006483,0.5160841,0.35102624,0.21210939,0.104975104,0.033918858,0.0018047094,0.009927273,0.05795914,0.14396411,0.2644754,0.4146353,0.5883909,0.7787382,0.97800446,1.1781573,1.3711288,1.5491403,1.7050163,1.8324734,1.926374,1.982933,1.9998705,1.9765038,1.9137747,1.8141943,1.6818066,1.5219355,1.3410256,1.1463691,0.9458125,0.7474402,0.5592485,0.3888232,0.24303412,0.12775785,0.047641218,0.0059135556,0.0042570233,0.04273832,0.11980629,0.23235434,0.37584573,0.5444965,0.7315083,0.92934287,1.1300256,1.325496,1.5078154,1.6696651,1.8045211,1.9069471,1.9728148,1.9994688,1.9858348,1.9324623,1.8415029,1.7166228,1.5628562,1.386401,1.1943704,0.99450475,0.79486066,0.6034856,0.42809373,0.27575517,0.15261048,0.06362355,0.012381434,0.0009496808,0.029796481,0.097750306,0.20207328,0.33856028,0.50170946,0.6849445,0.8808792,1.0816157,1.2790623,1.4652599,1.6327033,1.7746427,1.8853567,1.9603825,1.9966959,1.9928329,1.9489495,1.8668144,1.7497385,1.6024411,1.4308597,1.2419105,1.0431795,0.8427377,0.64863497,0.46869558,0.3101728,0.17945653,0.0818159,0.021186769,1.2993813e-5,0.019148171,0.07782096,0.17366624,0.30282056,0.46007776,0.63909894,0.8326678,1.0329819,1.2319663,1.4216003,1.59424,1.7429261,1.8616652,1.9456811,1.9915617,1.9974728,1.9631765,1.8900551,1.7810559,1.640573,1.4742689,1.2888472,1.0917823,0.8910178,0.69464624,0.5105833,0.34624845,0.20826596,0.102197826,0.032319605,0.0014480352,0.010827482,0.06007999,0.14722008,0.2687353,0.41972733,0.5941377,0.7848834,0.9843002,1.1843499,1.3769686,1.5543919,1.7094679,1.8359457,1.928727,1.984072,1.9997494,1.9751275,1.9111989,1.8105402,1.6772091,1.5165802,1.3351283,1.1401675,0.93955654,0.74138206,0.5536324,0.3838755,0.23893446,0.12469554,0.04573965,0.0052495003,0.0048571825,0.044578493,0.12281227,0.23640501,0.38077784,0.5501112,0.7375792,0.9356254,1.1362664,1.3314146,1.5132036,1.6743057,1.8082271,1.909569,1.974247,1.9996533,1.9847645,1.9301802,1.8380842,1.7122169,1.5576403,1.3805857,1.1881899,0.9882082,0.7887018,0.59771276,0.42293966,0.27142757,0.14928383,0.061431944,0.011413217,0.0012438893,0.031333804,0.100470126,0.20586598,0.34327298,0.5071522,0.6908979,0.88710326,1.0878595,1.2850741,1.4708245,1.6375669,1.7786095,1.8882666,1.9621184,1.9971876,1.9920607,1.9469445,1.8636575,1.7455568,1.5974033,1.4251688,1.2357959,1.0369183,0.83655244,0.6427751,0.46339732,0.3056497,0.17589092,0.079351485,0.019922912,6.556511e-7,0.020393968,0.08027458,0.17722887,0.30734855,0.4653886,0.6449785,0.8388792,1.0392746,1.2380868,1.4273019,1.5992926,1.7471263,1.8648436,1.9476997,1.9923545,1.9970081,1.9614727,1.887181,1.7771276,1.6357486,1.4687428,1.2828424,1.0855104,0.8847606,0.6886562,0.5051018,0.34149653,0.20443517,0.09944254,0.03075087,0.0011290908,0.011771202,0.06224829,0.15052563,0.27304476,0.4248671,0.5998727,0.79100716,0.990566,1.1905051,1.3827652,1.5595961,1.71387,1.8393683,1.9310322,1.9851718,1.9995885,1.9737124,1.9085866,1.8068361,1.6725626,1.5111785,1.329189,1.13393,0.9332724,0.7353046,0.54800653,0.378928,0.23488456,0.121682525,0.043884933,0.004627824,0.0054935813,0.046447337,0.12583822,0.24046612,0.38571042,0.5557437,0.74366057,0.9419104,1.1425017,1.3373489,1.5185978,1.6789422,1.811919,1.9121677,1.9756474,1.9997994,1.98365,1.9278502,1.8346493,1.7078042,1.5524278,1.3747835,1.1820319,0.98194253,0.78258115,0.5919838,0.41783333,0.26712888,0.14599091,0.059277594,0.010484219,0.0015776157,0.032916963,0.10323882,0.20970857,0.34803456,0.51264095,0.69689244,0.89336205,1.0941302,1.291104,1.4763435,1.6423819,1.7825263,1.8911275,1.9638078,1.9976376,1.9912531,1.944912,1.8604662,1.7413456,1.5923418,1.419461,1.229672,1.030625,0.83034354,0.6369009,0.45809448,0.30113202,0.17234051,0.07691151,0.018691659,2.783537e-5,0.021672308,0.082752585,0.18080658,0.31188184,0.47069472,0.6508436,0.8450668,1.0455352,1.2441682,1.4329864,1.6043215,1.7512968,1.8679878,1.9496906,1.993112,1.9965016,1.9597228,1.884258,1.7731494,1.6308755,1.4631714,1.276797,1.0792654,0.87853837,0.6827074,0.49966645,0.3367936,0.20065421,0.096736014,0.029227853,0.0008509755,0.012754142,0.06445384,0.15386486,0.2773831,0.43002963,0.6056514,0.7971691,0.99686277,1.1966829,1.3885748,1.5648036,1.7182655,1.8427744,1.9333116,1.9862275,1.9993892,1.972266,1.9059514,1.8031183,1.667912,1.5057826,1.3232654,1.1276872,0.926991,0.7292376,0.5423986,0.3740052,0.23084527,0.11868954,0.042059004,0.0040424466,0.0061724186,0.04836297,0.12891352,0.24457705,0.39069128,0.5613663,0.74972254,0.94816726,1.1487013,1.3432413,1.5239455,1.6835296,1.815561,1.9147178,1.9770093,1.9999056,1.9824965,1.9254835,1.8311646,1.703342,1.5471681,1.3689382,1.1758366,0.9756471,0.77643925,0.58624303,0.4127251,0.2628799,0.14274758,0.05717063,0.009598613,0.0019490719,0.03453046,0.10602933,0.21356368,0.35279882,0.518149,0.70289904,0.89962506,1.1003972,1.2971224,1.4818707,1.647195,1.7864313,1.893967,1.9654675,1.9980505,1.9904025,1.942832,1.8572567,1.7371256,1.5872815,1.4137644,1.2235687,1.024361,0.8241714,0.63106936,0.45283866,0.29664207,0.16882294,0.07450813,0.017499387,9.4652176e-5,0.022995532,0.08527893,0.18443418,0.31646442,0.47604764,0.65675104,0.85129064,1.0518246,1.2502697,1.4386263,1.6093023,1.7554176,1.8710825,1.9516345,1.9938266,1.9959583,1.9579434,1.8813143,1.7691405,1.6259774,1.4575815,1.2707409,1.0729867,0.87229055,0.6767423,0.49422437,0.33209395,0.19688648,0.09405202,0.02773583,0.0006110668,0.013771117,0.0666855,0.1572212,0.28172886,0.43518966,0.61141765,0.8033091,1.0031291,1.2028229,1.3943691,1.5699887,1.7226324,1.8461471,1.935554,1.9872494,1.9991493,1.9707742,1.9032675,1.7993507,1.6632125,1.5003406,1.3173003,1.1214697,0.9207428,0.7232107,0.5368358,0.36913085,0.22685581,0.11574578,0.040279567,0.0034991503,0.0068906546,0.050316393,0.13202333,0.24871796,0.39569628,0.56703377,0.7558239,0.9544566,1.1549251,1.3491488,1.5292983,1.6881123,1.8191887,1.9172442,1.9783261,1.9999721,1.9813099,1.9230917,1.827664,1.6988738,1.5419123,1.3631067,1.1696645,0.96935266,0.7703062,0.5805187,0.40764022,0.2586394,0.13952237,0.055090785,0.008747876,0.002361834,0.036190033,0.10886884,0.21746862,0.35761184,0.52364933,0.70888823,0.90586174,1.1066298,1.3030998,1.4873519,1.6519592,1.7902864,1.8967576,1.9670887,1.9984236,1.9895126,1.9407148,1.8539975,1.7328558,1.5821733,1.4080236,1.2174268,1.0180656,0.8179762,0.62522405,0.4475789,0.29220158,0.1653552,0.07215285,0.016351521,0.00020045042,0.024350762,0.087828994,0.18807626,0.32105172,0.4814213,0.6626721,0.8575204,1.0581119,1.256361,1.4442763,1.6142832,1.7595286,1.8741578,1.9535502,1.9945056,1.995373,1.9561174,1.8783214,1.7651207,1.6210784,1.4520007,1.2647033,1.0667357,0.8660781,0.6708188,0.4888286,0.32742083,0.19315058,0.09140402,0.02628237,0.0004107952,0.014832079,0.0689649,0.16062725,0.28612423,0.44039708,0.6172273,0.8094868,1.0094259,1.2089849,1.4001199,1.5751262,1.7269497,1.8494701,1.9377489,1.9882276,1.9988713,1.9692512,1.9005611,1.7955513,1.6584866,1.4948788,1.3113226,1.1152171,0.9144674,0.71716535,0.5312643,0.3642577,0.2228775,0.11282271,0.038529456,0.0029925704,0.007644534,0.05229771,0.13515228,0.25286835,0.40070087,0.5726908,0.7619053,0.9607173,1.1611128,1.3550423,1.5346303,1.6926676,1.822784,1.9197342,1.9796104,1.9999993,1.9800787,1.9206517,1.8241137,1.6943562,1.5366095,1.3572325,1.1634556,0.9630899,0.764212,0.57483864,0.4026032,0.2544486,0.1363467,0.053058147,0.007940292,0.002814114,0.03788781,0.11174363,0.22140461,0.3624503,0.52919525,0.71491814,0.91213244,1.1128887,1.3090944,1.4928408,1.6567209,1.7941291,1.8995264,1.9686642,1.9987557,1.988588,1.9385709,1.8507204,1.728578,1.5770669,1.4022946,1.2113061,1.0117694,0.8117882,0.6193936,0.4423411,0.28776747,0.1619035,0.06982279,0.015236974,0.0003463626,0.025751233,0.09042758,0.19176823,0.32568824,0.48678935,0.6685778,0.86372554,1.0643666,1.2624129,1.4498816,1.6192157,1.7635897,1.8771838,1.9554281,1.9951451,1.9947481,1.9542537,1.8752936,1.761051,1.616131,1.4463749,1.2586257,1.0604516,0.85984063,0.66487944,0.48342675,0.32279682,0.18946457,0.08880454,0.02487433,0.00025081635,0.01592666,0.07126993,0.1640498,0.29052633,0.44562674,0.6230521,0.81567204,1.0157222,1.2151386,1.4058827,1.580266,1.7312591,1.8527757,1.9399173,1.9891713,1.9985524,1.9676825,1.8978057,1.791739,1.6537578,1.4894239,1.3053615,1.1089903,0.9082257,0.71116054,0.52573824,0.35943323,0.21893,0.10993475,0.03681749,0.002525568,0.008441269,0.054326177,0.13833064,0.2570685,0.4057535,0.57839227,0.76802576,0.96701,1.1673241,1.3608935,1.5399153,1.6971736,1.8263292,1.9221759,1.9808502,1.999987,1.9788148,1.9181874,1.8205307,1.689811,1.5312855,1.3513441,1.1572402,0.9567981,0.7580974,0.5691477,0.39756536,0.25026685,0.13318968,0.051053107,0.0071680546,0.0033034682,0.039615214,0.11463946,0.22535217,0.36729044,0.5347329,0.72093,0.9183762,1.1191127,1.3150767,1.49831,1.6614566,1.7979403,1.9022593,1.9702089,1.9990499,1.9876199,1.9363793,1.8473939,1.7242504,1.571913,1.3965219,1.2051473,1.0055034,0.8056376,0.6136064,0.43715054,0.28338283,0.15850157,0.067540586,0.014166594,0.0005308986,0.027190328,0.09306222,0.19549221,0.33035147,0.4922039,0.67452526,0.8699663,1.070649,1.2684839,1.4554963,1.6241479,1.7676405,1.8801899,1.9572594,1.9957422,1.9940872,1.9523613,1.8722461,1.7569712,1.6111832,1.4407588,1.2525676,1.0541651,0.8536088,0.65895337,0.4780454,0.31817704,0.18579268,0.08622849,0.02349794,0.0001296401,0.017065525,0.07362294,0.16752207,0.29497796,0.45085287,0.6288636,0.8218346,1.0219874,1.2212539,1.4116017,1.5853581,1.735519,1.8560317,1.9420483,1.9900758,1.998194,1.9660754,1.8950149,1.7878768,1.6489799,1.483923,1.2993594,1.1027288,0.9019573,0.70513785,0.52020407,0.35461056,0.2150324,0.10709584,0.03515172,0.0021000504,0.009273231,0.056382,0.14152753,0.26127756,0.41082972,0.58411044,0.77415544,0.9733041,1.1735289,1.3667588,1.5452049,1.701674,1.829859,1.924593,1.9820571,1.9999352,1.9775063,1.9156747,1.8169327,1.6852608,1.5259663,1.3454704,1.1510488,0.9505385,0.75202197,0.5635013,0.39257562,0.24611485,0.13006699,0.049085677,0.006435156,0.0038346648,0.041389048,0.11758447,0.22934955,0.37217915,0.54031587,0.7269821,0.92465365,1.1253623,1.3210177,1.503733,1.6661432,1.8017014,1.9049437,1.971708,1.9993033,1.9866174,1.9341614,1.8440337,1.7198942,1.5667362,1.3907335,1.1989803,0.99920654,0.7994647,0.6078063,0.431957,0.27900523,0.15511632,0.06528419,0.01312995,0.0007559061,0.028660774,0.095719755,0.19922984,0.33501846,0.49761212,0.68045676,0.87618196,1.0768982,1.2745441,1.461093,1.6290553,1.7716608,1.8831611,1.9590616,1.9963028,1.9933839,1.950422,1.8691492,1.7528416,1.6061872,1.4350979,1.24647,1.047907,0.8474128,0.6530695,0.4727106,0.31360656,0.18217063,0.083700895,0.02216667,4.8339367e-5,0.018237531,0.07600099,0.17101032,0.2994358,0.45610058,0.6346896,0.8280042,1.0282518,1.2273605,1.4173045,1.5904272,1.7397912,1.8592854,1.9441421,1.9909412,1.9977958,1.9644301,1.8921885,1.7839835,1.6441765,1.478403,1.2933455,1.0964633,0.89569277,0.6991268,0.51468885,0.34981352,0.21114683,0.104278386,0.03351599,0.0017119646,0.010148406,0.05848521,0.1447739,0.2655363,0.41590452,0.5898173,0.78026426,0.97956866,1.1796967,1.3725812,1.5504472,1.706125,1.8333392,1.9269621,1.9832196,1.9998441,1.9761655,1.9131382,1.8133028,1.6806836,1.5206264,1.3395832,1.1448514,0.9442808,0.74589723,0.55781734,0.3875615,0.24199277,0.12697887,0.047155976,0.005741656,0.0044053197,0.04320085,0.1205644,0.23337752,0.37709278,0.54591703,0.73304516,0.9309341,1.1316069,1.3269749,1.5091627,1.6708262,1.8054492,1.9076052,1.973176,1.9995186,1.9855711,1.931896,1.8406565,1.7155308,1.5615623,1.3849576,1.1928355,0.99294025,0.7933296,0.6020497,0.42681104,0.27467722,0.15178078,0.06307554,0.012137234,0.0010191202,0.030169308,0.09841287,0.20299888,0.33971155,0.5030401,0.6864008,0.8824631,1.0832053,1.2805936,1.4666712,1.6339376,1.7756505,1.8860972,1.9608258,1.9968241,1.992641,1.9484451,1.8660179,1.748682,1.6011672,1.4294198,1.2403625,1.0416164,0.8411928,0.6471706,0.46737075,0.3090409,0.17856324,0.0811972,0.020867586,6.2584877e-6,0.019454122,0.078427196,0.17454833,0.30394304,0.46139532,0.6405585,0.8342105,1.0345454,1.2334878,1.4230186,1.5954976,1.7439724,1.8624582,1.9461787,1.9917593,1.9973626,1.9627628,1.8893547,1.7800971,1.6393943,1.472864,1.2873199,1.090194,0.8894324,0.69312775,0.50919294,0.3450423,0.20729262,0.10149652,0.031918585,0.0013634562,0.0110628605,0.060625732,0.14805424,0.2698242,0.42102712,0.5955681,0.7864115,0.9858646,1.1858875,1.3784173,1.5556933,1.7105696,1.8368034,1.929306,1.9843488,1.9997132,1.9747796,1.9105532,1.8096229,1.6760571,1.51524,1.3336537,1.1386181,0.9379949,0.739871,0.55223286,0.38264394,0.23794025,0.12395477,0.045282185,0.0050936937,0.005009353,0.0450325,0.12357926,0.23743594,0.38203108,0.55153626,0.73911875,0.9372172,1.1378464,1.3329191,1.5145719,1.6754827,1.8091652,1.9102308,1.9746053,1.9996941,1.9844859,1.9295936,1.8372297,1.7111177,1.5563409,1.3791385,1.186653,0.98664373,0.78717285,0.5962809,0.42166263,0.27035683,0.14846247,0.060893178,0.011178732,0.0013231039,0.03172356,0.101154745,0.2068178,0.34445363,0.50851417,0.69238615,0.8886579,1.0894178,1.2865734,1.4721773,1.6387479,1.7795712,1.8889701,1.9625354,1.9973013,1.9918588,1.9464307,1.8628523,1.7444929,1.5961235,1.4237245,1.2342455,1.0353242,0.83497906,0.6412858,0.46205205,0.30450267,0.17498845,0.07872999,0.019607365,3.8146973e-6,0.020709515,0.08088994,0.17811912,0.30847782,0.46671146,0.6464416,0.8404235,1.0408379,1.239606,1.4287158,1.6005443,1.7481652,1.865628,1.9481978,1.9925463,1.9968859,1.9610415,1.8864582,1.776142,1.6345401,1.4673603,1.2813414,1.0839818,0.88323694,0.68719876,0.5037694,0.34034282,0.20350665,0.0987767,0.030359566,0.001054585,0.012016475,0.06280345,0.15136832,0.274141,0.42617267,0.601335,0.79256725,0.99216104,1.1920708,1.3842382,1.5609174,1.7149861,1.8402343,1.931613,1.9854391,1.9995425,1.9733549,1.907932,1.8059108,1.6714039,1.5098331,1.3277111,1.1323793,0.93171144,0.7337962,0.5466114,0.37770253,0.23387814,0.12093562,0.043427706,0.004478693,0.005658567,0.046919763,0.12659913,0.24148476,0.38694572,0.55711854,0.74514365,0.94344187,1.14402,1.3387927,1.5199089,1.6801126,1.812849,1.9128202,1.975996,1.99983,1.9833615,1.9272542,1.8337697,1.7066765,1.5510976,1.3733042,1.1804632,0.98034775,0.7810245,0.590528,0.41653717,0.26606536,0.14517802,0.058748066,0.0102594495,0.0016667247,0.033316255,0.1039322,0.2106682,0.3492217,0.5140077,0.6983838,0.89491785,1.0956876,1.2926004,1.4777186,1.6435802,1.7834995,1.8918364,1.9642237,1.9977438,1.9910455,1.9443986,1.8596835,1.7403152,1.5911051,1.4180679,1.2281786,1.0290916,0.828832,0.6354151,0.45675462,0.29999202,0.17144638,0.07629925,0.018385947,4.1007996e-5,0.02200383,0.0833891,0.18172246,0.31304008,0.4720487,0.65233874,0.8466428,1.0471286,1.2457147,1.4343961,1.6055673,1.7523284,1.8687637,1.9501795,1.993294,1.9963696,1.9592819,1.8835263,1.7721561,1.6296608,1.4617842,1.2752934,1.0777056,0.87698555,0.6812241,0.4983124,0.33562344,0.19971508,0.09606576,0.028853536,0.0007876754,0.012999475,0.06499672,0.15468341,0.27844435,0.4312908,0.60706156,0.7987312,0.99845785,1.1982466,1.3900441,1.5661192,1.7193744,1.843632,1.9338832,1.9864901,1.9993322,1.9718918,1.9052749,1.8021669,1.6667242,1.504406,1.3217555,1.1261353,0.92543066,0.7277318,0.541008,0.37278587,0.22984636,0.11795133,0.041611195,0.0039031506,0.0063471794,0.048844814,0.12968302,0.24560314,0.3919326,0.56277287,0.75123763,0.94972974,1.1502483,1.3447104,1.5252774,1.6846708,1.8164655,1.915349,1.9773352,1.9999256,1.9822096,1.9249012,1.8303106,1.7022507,1.5458324,1.3674552,1.1742661,0.97405255,0.7748848,0.5847914,0.41143483,0.26180297,0.14192742,0.056640267,0.009379387,0.002049923,0.034947217,0.10674524,0.2145499,0.3540156,0.5195205,0.7043933,0.9011819,1.1019537,1.2986158,1.483241,1.648387,1.7873967,1.894667,1.9658738,1.9981468,1.990185,1.9423095,1.85645,1.7360674,1.5860145,1.4123396,1.2220434,1.0227969,0.8226315,0.62961566,0.4515298,0.29555243,0.16797101,0.07392818,0.017214775,0.00011688471,0.023323774,0.08589983,0.18535823,0.31762958,0.47740692,0.6582496,0.8528682,1.0534174,1.2518137,1.4400592,1.6105664,1.7564619,1.8718648,1.9521234,1.9940023,1.9958137,1.9574845,1.8805594,1.7681396,1.6247566,1.4561899,1.2692344,1.0714263,0.870739,0.67526215,0.49287528,0.33093035,0.19595528,0.09339076,0.027371109,0.00055760145,0.014031053,0.067248404,0.15806437,0.28281832,0.43648142,0.6128597,0.8048433,1.0046936,1.2043548,1.3957784,1.5712485,1.7236919,1.8469636,1.9360948,1.9874926,1.9990823,1.9703901,1.9025819,1.7983912,1.6620178,1.498959,1.3157872,1.1198863,0.91915286,0.7216783,0.53542274,0.36789405,0.22584516,0.115002036,0.03983265,0.0033670664,0.0070751905,0.050807595,0.13280135,0.24975145,0.39694363,0.5684446,0.7573414,0.9560196,1.1564707,1.3506144,1.5306251,1.6892467,1.820085,1.9178662,1.9786488,1.9999826,1.9810076,1.9224888,1.826785,1.6977539,1.5405967,1.3616486,1.1681224,0.96781933,0.7688135,0.57912666,0.40640497,0.25761074,0.13874185,0.05456984,0.008538663,0.0024726987,0.036616445,0.10959369,0.2184627,0.35883504,0.5250524,0.7104146,0.90744984,1.1082157,1.3046194,1.4887441,1.653168,1.7912629,1.8974624,1.9674857,1.9985101,1.9892853,1.9401829,1.8531823,1.7317905,1.5809004,1.4065948,1.2158995,1.0165013,0.816438,0.623774,0.44627547,0.29109722,0.16449445,0.071570456,0.016070902,0.00023299456,0.024695158,0.08847129,0.1889906,0.32220125,0.48273355,0.6641166,0.85903895,1.0596433,1.2578435,1.4456502,1.615541,1.7605652,1.8749313,1.9540296,1.9946713,1.9952185,1.9556489,1.8775578,1.7640927,1.6198275,1.4505774,1.2631648,1.0651441,0.86449754,0.6693131,0.4874583,0.32626384,0.1922273,0.09075165,0.025927246,0.0003671646,0.015101731,0.069536984,0.1614787,0.28722072,0.44169444,0.61867315,0.81102294,1.0109903,1.2105147,1.4015533,1.5764055,1.728023,1.8502946,1.9382911,1.9884657,1.9987957,1.9688649,1.8998797,1.794621,1.6573313,1.493545,1.3098644,1.1136932,0.9129391,0.7156358,0.52985597,0.36302727,0.22187465,0.112087786,0.038092196,0.0028705597,0.0078426,0.052807987,0.13595414,0.2539295,0.4019785,0.57413346,0.7634548,0.9623112,1.1626868,1.3565046,1.5359519,1.6937952,1.823672,1.9203472,1.9799237,2.0,1.9797668,1.9200398,1.8232265,1.6932294,1.5352887,1.3557707,1.1619118,0.96152645,0.76269186,0.573423,0.4013493,0.25340682,0.13555908,0.052556455,0.007744789,0.0029303432,0.03830719,0.11244935,0.22236818,0.36363286,0.53054917,0.7163888,0.91372144,1.1144733,1.310611,1.494228,1.657923,1.7950975,1.9002221,1.9690591,1.998834,1.9883465,1.9380193,1.8498809,1.7274845,1.5757635,1.4008338,1.2097468,1.010205,0.81025183,0.6179473,0.44104308,0.2866701,0.16105103,0.06924957,0.014966071,0.0003887415,0.026105225,0.09107882,0.19269049,0.3268444,0.48813277,0.6700543,0.8652757,1.0659277,1.2639223,1.4512783,1.6204436,1.7645991,1.877934,1.9558799,1.9952948,1.99459,1.9537938,1.8745508,1.7600551,1.6148739,1.444947,1.2570846,1.0588593,0.8582615,0.66337705,0.48206162,0.32162404,0.1885314,0.088148594,0.024522007,0.00021636486,0.01621145,0.07186252,0.16492623,0.29165137,0.44692957,0.6245017,0.8172101,1.0172865,1.2166662,1.4073122,1.5815396,1.7323256,1.8535917,1.9404502,1.9893997,1.998467,1.9672867,1.8971157,1.7907823,1.6525731,1.4880588,1.3038714,1.107435,0.9066679,0.70966303,0.52436143,0.35823262,0.21797305,0.10923654,0.03640622,0.0024178028,0.008641362,0.05482602,0.1391412,0.2581371,0.40703714,0.57983917,0.7695776,0.96860427,1.1688964,1.3623805,1.5412574,1.6983163,1.8272264,1.9227917,1.9811597,1.9999776,1.978487,1.9175543,1.8196354,1.6886774,1.5299593,1.3498788,1.155695,0.95523506,0.75657964,0.5677363,0.39631736,0.24923247,0.13241059,0.050560772,0.006982267,0.003431797,0.040052414,0.11536795,0.2263425,0.3685028,0.5361183,0.72243273,0.91993564,1.1206659,1.3165323,1.4996393,1.6626062,1.7988639,1.9029198,1.9705794,1.9991157,1.9873683,1.9358182,1.8465459,1.7231497,1.5706037,1.3950571,1.2035859,1.0039083,0.80407315,0.6121357,0.43583286,0.28227127,0.15764087,0.06696552,0.01390028,0.0005841255,0.027553916,0.0937224,0.19642246,0.33151424,0.49355233,0.676005,0.8715178,1.0722096,1.2699907,1.4568886,1.6253695,1.7686422,1.8809314,1.9577107,1.9958853,1.9939163,1.951883,1.8714799,1.755948,1.6099441,1.439354,1.2510535,1.0526333,0.85209143,0.6575117,0.4767375,0.3170557,0.18490303,0.08558172,0.02315545,0.0001052022,0.01736021,0.07422483,0.1684069,0.2961101,0.45218664,0.6303452,0.82340443,1.023582,1.2228091,1.4130548,1.5866506,1.7365987,1.8568552,1.9425721,1.9902945,1.9980987,1.9656701,1.894316,1.7869124,1.6477888,1.4825532,1.2978662,1.1011724,0.9004004,0.7036432,0.51883197,0.35341626,0.21406406,0.1063925,0.0347417,0.0019999743,0.009487033,0.056901097,0.14233094,0.26233298,0.41206992,0.58550596,0.7756501,0.9748376,1.1750394,1.3681855,1.5464902,1.7028096,1.8307481,1.9251995,1.9823568,1.9999156,1.9771686,1.9150324,1.8160118,1.6840982,1.524609,1.343973,1.1494718,0.94894546,0.750477,0.5620668,0.39130932,0.24508786,0.12929648,0.0486027,0.0062591434,0.003972769,0.041835666,0.1183216,0.23034751,0.3733977,0.54170585,0.7284876,0.92621386,1.1269144,1.322499,1.505084,1.6673093,1.8026357,1.9056083,1.9720764,1.9993606,1.9863611,1.9336021,1.84321,1.7188287,1.5654716,1.3893209,1.1974767,0.9976725,0.7979023,0.6063395,0.430645,0.27790087,0.15426415,0.064718544,0.01287359,0.00081914663,0.029041171,0.09640193,0.20018625,0.3362106,0.4989919,0.68196857,0.87776494,1.0784885,1.2760482,1.4624807,1.6302707,1.7726549,1.8838938,1.9595034,1.9964361,1.9932029,1.9499344,1.8683745,1.7518108,1.6049422,1.4336886,1.2449534,1.0463442,0.8458668,0.6516025,0.4713819,0.3124696,0.18127126,0.083075404,0.021840274,3.4213066e-5,0.01853615,0.07660043,0.17188632,0.30055308,0.45741415,0.63614655,0.82960576,1.0298766,1.2289432,1.4187813,1.5917385,1.7408429,1.8600845,1.9446566,1.99115,1.9976909,1.9640152,1.8914808,1.7830112,1.6429789,1.4770285,1.2918494,1.094906,0.8941369,0.6976351,0.5133215,0.3486256,0.2101863,0.10358387,0.033115506,0.0016217232,0.010371983,0.059013546,0.14558578,0.266599,0.4171751,0.59124464,0.78179085,0.9811329,1.1812356,1.3740326,1.5517527,1.707232,1.834203,1.9275479,1.9835038,1.9998152,1.9758247,1.9124992,1.8123914,1.6795366,1.5192378,1.3380537,1.1432428,0.9426578,0.74438435,0.55641454,0.38632548,0.24097323,0.12621695,0.046682358,0.0055754185,0.0045532584,0.043656945,0.121310234,0.23438305,0.37831748,0.54731154,0.7345532,0.93249494,1.1331577,1.3284531,1.5105085,1.6719857,1.8063755,1.9082608,1.9735347,1.9995658,1.9853052,1.9313273,1.8398082,1.7144369,1.560267,1.3835132,1.1913,0.99137574,0.79179907,0.6006149,0.42552972,0.27360106,0.15095317,0.06252986,0.011895418,0.0010909438,0.03055191,0.09911728,0.20398176,0.34093326,0.5044514,0.68794477,0.88401693,1.0847644,1.282095,1.4680544,1.6351469,1.776637,1.8868213,1.9612583,1.9969475,1.9924504,1.9479481,1.8652346,1.747644,1.5999162,1.4280062,1.2388436,1.0400531,0.8396483,0.64570713,0.4660473,0.30791074,0.17767197,0.08058077,0.020550847,1.9669533e-6,0.019762397,0.0790357,0.1754325,0.30506718,0.4627142,0.6420189,0.8357537,1.0361091,1.235009,1.4244357,1.5967537,1.7450169,1.863249,1.9466839,1.9919586,1.9972434,1.9623222,1.8886104,1.779079,1.6381435,1.4714849,1.285821,1.0886357,0.8878775,0.69163907,0.5078304,0.3438608,0.20633984,0.100810826,0.03152764,0.0012830496,0.011296153,0.061163306,0.14887452,0.27089405,0.4223035,0.5969995,0.78794026,0.987429,1.1874244,1.3798649,1.5569934,1.7116697,1.8376589,1.9298826,1.9846233,1.9996743,1.9744291,1.9099052,1.8087035,1.6749035,1.5138984,1.3321785,1.1370685,0.93643343,0.7383607,0.5508345,0.38141388,0.2369281,0.123171985,0.044799805,0.004931152,0.0051731467,0.045516074,0.12433374,0.23844898,0.38326192,0.55293524,0.74062943,0.93877876,1.1393958,1.334394,1.5159129,1.6766356,1.8100836,1.9108775,1.9749545,1.9997315,1.9842101,1.9290156,1.8363731,1.7100168,1.5550402,1.3776902,1.1851157,0.98507935,0.7856444,0.59485,0.42038697,0.26928782,0.14764327,0.060356736,0.010946691,0.0014047623,0.032115698,0.10184151,0.2077716,0.3456359,0.5098773,0.69387525,0.8902129,1.090976,1.288072,1.4735558,1.639998,1.7805883,1.8897135,1.9629749,1.9974194,1.9916584,1.9459243,1.8620604,1.7434474,1.5948665,1.4223068,1.2327242,1.0337605,0.83343613,0.63982576,0.46073383,0.30337936,0.17410529,0.078122616,0.019300222,9.357929e-6,0.021027505,0.081507504,0.17901134,0.30960888,0.46803558,0.6479055,0.8419682,1.0424011,1.2411247,1.4301288,1.6017946,1.7492025,1.8664104,1.9486938,1.9927359,1.9967613,1.9606079,1.8857329,1.7751546,1.6333301,1.4659765,1.2798398,1.0824227,0.88168323,0.6856552,0.5023588,0.339122,0.20252478,0.09807342,0.029978156,0.0009839535,0.012259543,0.06335032,0.15219694,0.27521807,0.4274547,0.6027703,0.794098,0.99372554,1.193606,1.3856823,1.562212,1.7160791,1.8410816,1.9321805,1.9857038,1.9994938,1.972995,1.9072752,1.8049836,1.6702437,1.5084865,1.3262327,1.1308284,0.9301506,0.73228836,0.5452175,0.3764786,0.2328735,0.12019086,0.042972803,0.004332006,0.0058259964,0.047394574,0.12736213,0.24250525,0.38818252,0.5585218,0.7467159,0.94506496,1.1456285,1.3403217,1.5212967,1.6812587,1.8137594,1.913458,1.9763355,1.9998577,1.9830761,1.9266672,1.8329048,1.7055687,1.5497913,1.3718523,1.1789241,0.97878355,0.7794982,0.5891012,0.41526723,0.26500356,0.14436716,0.058220863,0.010037124,0.0017582178,0.03371793,0.10462785,0.21162975,0.3504104,0.5153756,0.69987583,0.8964738,1.097245,1.2940961,1.4790925,1.6447768,1.7844708,1.892543,1.9646373,1.9978477,1.9908354,1.9438831,1.8588834,1.7392626,1.5897932,1.4165907,1.2265956,1.0274667,0.8272306,0.6339587,0.4554417,0.29887557,0.17057139,0.075701,0.01808852,5.6385994e-5,0.022331417,0.08401567,0.18262279,0.31417787,0.47337806,0.6538061,0.848189,1.0486914,1.247231,1.4358048,1.6068116,1.7533582,1.8695374,1.950666,1.9934738,1.9962351,1.9588389,1.8827925,1.7711611,1.6284446,1.4603959,1.2737889,1.0761456,0.875433,0.6797416,0.49695963,0.3344549,0.19877791,0.09539777,0.028481603,0.00072681904,0.013252139,0.06555271,0.15555304,0.27957082,0.43262863,0.6085569,0.800264,1.0000224],"x":[0.0,0.20111221,0.40222442,0.60333663,0.80444884,1.005561,1.2066733,1.4077854,1.6088977,1.8100098,2.011122,2.2122343,2.4133465,2.6144588,2.8155708,3.016683,3.2177954,3.4189076,3.6200197,3.821132,4.022244,4.2233562,4.4244685,4.625581,4.826693,5.0278053,5.2289176,5.4300294,5.6311417,5.832254,6.033366,6.2344785,6.4355907,6.636703,6.8378153,7.038927,7.2400393,7.4411516,7.642264,7.843376,8.044488,8.245601,8.4467125,8.647825,8.848937,9.05005,9.251162,9.452273,9.653386,9.854498,10.055611,10.256722,10.457835,10.658947,10.860059,11.061172,11.262283,11.463396,11.664508,11.865621,12.066732,12.267845,12.468957,12.670069,12.8711815,13.072293,13.273406,13.474518,13.675631,13.876742,14.077854,14.278967,14.480079,14.681191,14.882303,15.083416,15.284528,15.48564,15.686752,15.887864,16.088976,16.290089,16.491201,16.692314,16.893425,17.094538,17.29565,17.496761,17.697874,17.898987,18.1001,18.30121,18.502323,18.703436,18.904547,19.10566,19.306772,19.507885,19.708996,19.910109,20.111221,20.312332,20.513445,20.714558,20.91567,21.116781,21.317894,21.519007,21.720118,21.92123,22.122343,22.323456,22.524567,22.72568,22.926792,23.127903,23.329016,23.530128,23.731241,23.932352,24.133465,24.334578,24.53569,24.736801,24.937914,25.139027,25.340137,25.54125,25.742363,25.943476,26.144587,26.3457,26.546812,26.747923,26.949036,27.150148,27.351261,27.552372,27.753485,27.954597,28.155708,28.356821,28.557934,28.759047,28.960157,29.16127,29.362383,29.563494,29.764606,29.96572,30.166832,30.367943,30.569056,30.770168,30.97128,31.172392,31.373505,31.574617,31.775728,31.976841,32.17795,32.379066,32.580177,32.78129,32.982403,33.183514,33.38463,33.58574,33.78685,33.987965,34.189075,34.390186,34.5913,34.79241,34.993523,35.194637,35.39575,35.59686,35.797974,35.999084,36.2002,36.40131,36.60242,36.803535,37.004646,37.205757,37.40687,37.607983,37.809093,38.01021,38.21132,38.41243,38.613544,38.814655,39.01577,39.21688,39.41799,39.619106,39.820217,40.021328,40.222443,40.423553,40.624664,40.82578,41.02689,41.228004,41.429115,41.630226,41.83134,42.03245,42.233562,42.434677,42.635788,42.8369,43.038013,43.239124,43.440235,43.64135,43.84246,44.043575,44.244686,44.445797,44.64691,44.848022,45.049133,45.250248,45.45136,45.65247,45.853584,46.054695,46.255806,46.45692,46.65803,46.859146,47.060257,47.261368,47.462482,47.663593,47.864704,48.06582,48.26693,48.46804,48.669155,48.870266,49.07138,49.27249,49.473602,49.674717,49.875828,50.07694,50.278053,50.479164,50.680275,50.88139,51.0825,51.28361,51.484726,51.685837,51.88695,52.088062,52.289173,52.490288,52.6914,52.89251,53.093624,53.294735,53.495846,53.69696,53.89807,54.099182,54.300297,54.501408,54.702522,54.903633,55.104744,55.30586,55.50697,55.70808,55.909195,56.110306,56.311417,56.51253,56.713642,56.914753,57.115868,57.31698,57.518093,57.719204,57.920315,58.12143,58.32254,58.52365,58.724766,58.925877,59.126987,59.328102,59.529213,59.730328,59.93144,60.13255,60.333664,60.534775,60.735886,60.937,61.13811,61.339222,61.540337,61.741447,61.94256,62.143673,62.344784,62.5459,62.74701,62.94812,63.149235,63.350346,63.551456,63.75257,63.953682,64.15479,64.3559,64.55702,64.75813,64.95924,65.160355,65.361465,65.56258,65.763695,65.964806,66.16592,66.36703,66.56814,66.76926,66.97037,67.17148,67.37259,67.5737,67.77481,67.97593,68.17704,68.37815,68.57926,68.78037,68.98149,69.1826,69.38371,69.58482,69.785934,69.987045,70.18816,70.389275,70.590385,70.7915,70.99261,71.19372,71.39484,71.59595,71.79706,71.99817,72.19928,72.4004,72.60151,72.80262,73.00373,73.20484,73.40595,73.60707,73.80818,74.00929,74.2104,74.411514,74.61263,74.81374,75.014854,75.215965,75.417076,75.61819,75.819305,76.02042,76.22153,76.42264,76.62375,76.82486,77.02598,77.22709,77.4282,77.62931,77.83042,78.03154,78.23265,78.43376,78.63487,78.83598,79.037094,79.23821,79.43932,79.640434,79.841545,80.042656,80.243774,80.444885,80.645996,80.84711,81.04822,81.24933,81.45045,81.65156,81.85267,82.05378,82.25489,82.45601,82.65712,82.85823,83.05934,83.26045,83.46156,83.66268,83.86379,84.0649,84.266014,84.467125,84.668236,84.869354,85.070465,85.271576,85.47269,85.6738,85.874916,86.07603,86.27714,86.47825,86.67936,86.88047,87.08159,87.2827,87.48381,87.68492,87.88603,88.08715,88.28826,88.48937,88.69048,88.891594,89.092705,89.29382,89.494934,89.696045,89.897156,90.09827,90.299385,90.500496,90.70161,90.90272,91.10383,91.30494,91.50606,91.70717,91.90828,92.10939,92.3105,92.51161,92.71273,92.91384,93.11495,93.31606,93.51717,93.71829,93.9194,94.120514,94.321625,94.522736,94.72385,94.924965,95.126076,95.32719,95.5283,95.72941,95.93053,96.13164,96.33275,96.53386,96.73497,96.93608,97.1372,97.33831,97.53942,97.74053,97.94164,98.14276,98.34387,98.54498,98.74609,98.947205,99.148315,99.349434,99.550545,99.751656,99.95277,100.15388,100.35499,100.55611,100.75722,100.95833,101.15944,101.36055,101.56167,101.76278,101.96389,102.165,102.36611,102.56722,102.76834,102.96945,103.17056,103.37167,103.572784,103.7739,103.97501,104.176125,104.377235,104.57835,104.77946,104.980576,105.18169,105.3828,105.58391,105.78502,105.98613,106.18725,106.38836,106.58947,106.79058,106.99169,107.19281,107.39392,107.59503,107.79614,107.99725,108.198364,108.39948,108.60059,108.801704,109.002815,109.203926,109.405045,109.606155,109.80727,110.00838,110.20949,110.4106,110.61172,110.81283,111.01394,111.21505,111.41616,111.61728,111.81839,112.0195,112.22061,112.42172,112.62283,112.82395,113.02506,113.22617,113.427284,113.628395,113.829506,114.030624,114.231735,114.432846,114.63396,114.83507,115.03619,115.2373,115.43841,115.63952,115.84063,116.04174,116.24286,116.44397,116.64508,116.84619,117.0473,117.24842,117.44953,117.65064,117.85175,118.052864,118.253975,118.45509,118.656204,118.857315,119.058426,119.25954,119.460655,119.661766,119.86288,120.06399,120.2651,120.46621,120.66733,120.86844,121.06955,121.27066,121.47177,121.67288,121.874,122.07511,122.27622,122.47733,122.678444,122.87956,123.08067,123.281784,123.482895,123.684006,123.88512,124.086235,124.287346,124.48846,124.68957,124.89068,125.0918,125.29291,125.49402,125.69513,125.89624,126.09735,126.29847,126.49958,126.70069,126.9018,127.10291,127.30403,127.50514,127.70625,127.907364,128.10847,128.30959,128.5107,128.7118,128.91292,129.11404,129.31516,129.51627,129.71738,129.91849,130.1196,130.32071,130.52182,130.72293,130.92404,131.12515,131.32628,131.52739,131.7285,131.92961,132.13072,132.33183,132.53294,132.73405,132.93517,133.13628,133.33739,133.53851,133.73962,133.94073,134.14185,134.34296,134.54407,134.74518,134.94629,135.1474,135.34851,135.54962,135.75075,135.95186,136.15297,136.35408,136.55519,136.7563,136.95741,137.15852,137.35963,137.56075,137.76186,137.96298,138.1641,138.3652,138.56631,138.76743,138.96854,139.16965,139.37076,139.57187,139.77298,139.97409,140.1752,140.37633,140.57744,140.77855,140.97966,141.18077,141.38188,141.583,141.7841,141.98521,142.18633,142.38744,142.58856,142.78967,142.99078,143.1919,143.393,143.59412,143.79523,143.99634,144.19745,144.39856,144.59967,144.8008,145.0019,145.20302,145.40413,145.60524,145.80635,146.00746,146.20857,146.40968,146.6108,146.8119,147.01303,147.21414,147.41525,147.61636,147.81747,148.01859,148.2197,148.4208,148.62192,148.82303,149.02414,149.22527,149.42638,149.62749,149.8286,150.02971,150.23082,150.43193,150.63304,150.83415,151.03526,151.23637,151.4375,151.63861,151.83972,152.04083,152.24194,152.44305,152.64417,152.84528,153.04639,153.2475,153.44861,153.64972,153.85085,154.05196,154.25307,154.45418,154.65529,154.8564,155.05751,155.25862,155.45973,155.66084,155.86195,156.06308,156.26419,156.4653,156.66641,156.86752,157.06863,157.26974,157.47086,157.67197,157.87308,158.07419,158.27531,158.47643,158.67754,158.87865,159.07976,159.28087,159.48198,159.68309,159.8842,160.08531,160.28642,160.48755,160.68866,160.88977,161.09088,161.29199,161.4931,161.69421,161.89532,162.09644,162.29755,162.49866,162.69978,162.9009,163.102,163.30312,163.50423,163.70534,163.90645,164.10756,164.30867,164.50978,164.71089,164.91202,165.11313,165.31424,165.51535,165.71646,165.91757,166.11868,166.3198,166.5209,166.72202,166.92313,167.12425,167.32536,167.52647,167.72758,167.9287,168.1298,168.33092,168.53203,168.73314,168.93425,169.13536,169.33647,169.5376,169.73871,169.93982,170.14093,170.34204,170.54315,170.74426,170.94537,171.14648,171.3476,171.5487,171.74983,171.95094,172.15205,172.35316,172.55428,172.75539,172.9565,173.15761,173.35872,173.55983,173.76094,173.96207,174.16318,174.36429,174.5654,174.76651,174.96762,175.16873,175.36984,175.57095,175.77206,175.97318,176.1743,176.37541,176.57652,176.77763,176.97874,177.17986,177.38097,177.58208,177.78319,177.9843,178.18541,178.38654,178.58765,178.78876,178.98987,179.19098,179.39209,179.5932,179.79431,179.99542,180.19653,180.39764,180.59877,180.79988,181.00099,181.2021,181.40321,181.60432,181.80544,182.00655,182.20766,182.40877,182.60988,182.81099,183.01212,183.21323,183.41434,183.61545,183.81656,184.01767,184.21878,184.41989,184.621,184.82211,185.02322,185.22435,185.42546,185.62657,185.82768,186.0288,186.2299,186.43102,186.63213,186.83324,187.03435,187.23546,187.43658,187.6377,187.8388,188.03992,188.24103,188.44214,188.64325,188.84436,189.04547,189.24658,189.4477,189.64882,189.84993,190.05104,190.25215,190.45326,190.65437,190.85548,191.0566,191.2577,191.45882,191.65993,191.86105,192.06216,192.26328,192.46439,192.6655,192.86661,193.06772,193.26883,193.46994,193.67105,193.87216,194.07329,194.2744,194.47551,194.67662,194.87773,195.07884,195.27995,195.48106,195.68217,195.88329,196.0844,196.28552,196.48663,196.68774,196.88885,197.08997,197.29108,197.49219,197.6933,197.89441,198.09552,198.29663,198.49774,198.69887,198.89998,199.10109,199.3022,199.50331,199.70442,199.90553,200.10664,200.30775,200.50887,200.70998,200.9111,201.11221,201.31332,201.51443,201.71555,201.91666,202.11777,202.31888,202.51999,202.7211,202.92221,203.12334,203.32445,203.52556,203.72667,203.92778,204.12889,204.33,204.53111,204.73222,204.93333,205.13445,205.33557,205.53668,205.7378,205.9389,206.14001,206.34113,206.54224,206.74335,206.94446,207.14557,207.34668,207.5478,207.74892,207.95003,208.15114,208.35225,208.55336,208.75447,208.95558,209.1567,209.3578,209.55891,209.76004,209.96115,210.16226,210.36337,210.56448,210.7656,210.9667,211.16782,211.36893,211.57004,211.77115,211.97226,212.17339,212.3745,212.5756,212.77672,212.97783,213.17894,213.38005,213.58116,213.78227,213.98338,214.1845,214.38562,214.58673,214.78784,214.98895,215.19006,215.39117,215.59229,215.7934,215.9945,216.19562,216.39673,216.59785,216.79897,217.00008,217.20119,217.4023,217.60341,217.80452,218.00563,218.20674,218.40785,218.60896,218.81009,219.0112,219.21231,219.41342,219.61453,219.81564,220.01675,220.21786,220.41898,220.62009,220.8212,221.02232,221.22343,221.42455,221.62566,221.82677,222.02788,222.22899,222.4301,222.63121,222.83232,223.03343,223.23456,223.43567,223.63678,223.83789,224.039,224.24011,224.44122,224.64233,224.84344,225.04456,225.24567,225.4468,225.6479,225.84901,226.05013,226.25124,226.45235,226.65346,226.85457,227.05568,227.25679,227.4579,227.65901,227.86014,228.06125,228.26236,228.46347,228.66458,228.86569,229.0668,229.26791,229.46902,229.67014,229.87125,230.07237,230.27348,230.4746,230.6757,230.87682,231.07793,231.27904,231.48015,231.68126,231.88237,232.08348,232.2846,232.48572,232.68683,232.88794,233.08905,233.29016,233.49127,233.69238,233.8935,234.0946,234.29572,234.49684,234.69795,234.89906,235.10017,235.30128,235.5024,235.7035,235.90462,236.10573,236.30684,236.50795,236.70908,236.91019,237.1113,237.31241,237.51352,237.71463,237.91574,238.11685,238.31796,238.51907,238.72018,238.92131,239.12242,239.32353,239.52464,239.72575,239.92686,240.12798,240.32909,240.5302,240.73131,240.93242,241.13353,241.33466,241.53577,241.73688,241.93799,242.1391,242.34021,242.54132,242.74243,242.94354,243.14465,243.34576,243.54689,243.748,243.94911,244.15022,244.35133,244.55244,244.75356,244.95467,245.15578,245.35689,245.558,245.75912,245.96024,246.16135,246.36246,246.56357,246.76468,246.96579,247.1669,247.36801,247.56912,247.77023,247.97136,248.17247,248.37358,248.57469,248.7758,248.97691,249.17802,249.37914,249.58025,249.78136,249.98247,250.1836,250.3847,250.58582,250.78693,250.98804,251.18915,251.39026,251.59137,251.79248,251.99359,252.1947,252.39583,252.59694,252.79805,252.99916,253.20027,253.40138,253.6025,253.8036,254.00471,254.20583,254.40694,254.60806,254.80917,255.01028,255.2114,255.4125,255.61362,255.81473,256.01584,256.21695,256.41806,256.61917,256.82028,257.0214,257.2225,257.4236,257.62473,257.82584,258.02698,258.2281,258.4292,258.6303,258.83142,259.03253,259.23364,259.43475,259.63586,259.83698,260.0381,260.2392,260.4403,260.64142,260.84253,261.04364,261.24475,261.44586,261.64697,261.84808,262.0492,262.2503,262.45145,262.65256,262.85367,263.05478,263.2559,263.457,263.6581,263.85922,264.06033,264.26144,264.46255,264.66367,264.86478,265.0659,265.267,265.4681,265.66922,265.87033,266.07144,266.27255,266.47366,266.67477,266.8759,267.07703,267.27814,267.47925,267.68036,267.88147,268.08258,268.2837,268.4848,268.6859,268.88702,269.08813,269.28925,269.49036,269.69147,269.89258,270.0937,270.2948,270.4959,270.69702,270.89813,271.09924,271.30035,271.5015,271.7026,271.90372,272.10483,272.30594,272.50705,272.70816,272.90927,273.11038,273.3115,273.5126,273.7137,273.91483,274.11594,274.31705,274.51816,274.71927,274.92038,275.1215,275.3226,275.5237,275.72482,275.92596,276.12708,276.3282,276.5293,276.7304,276.93152,277.13263,277.33374,277.53485,277.73596,277.93707,278.13818,278.3393,278.5404,278.74152,278.94263,279.14374,279.34485,279.54596,279.74707,279.94818,280.1493,280.3504,280.55154,280.75266,280.95377,281.15488,281.356,281.5571,281.7582,281.95932,282.16043,282.36154,282.56265,282.76376,282.96487,283.166,283.3671,283.5682,283.76932,283.97043,284.17154,284.37265,284.57376,284.77487,284.976,285.17712,285.37823,285.57935,285.78046,285.98157,286.18268,286.3838,286.5849,286.786,286.98712,287.18823,287.38934,287.59045,287.79156,287.99268,288.1938,288.3949,288.596,288.79712,288.99823,289.19934,289.40048,289.6016,289.8027,290.0038,290.20493,290.40604,290.60715,290.80826,291.00937,291.21048,291.4116,291.6127,291.8138,292.01492,292.21603,292.41714,292.61826,292.81937,293.02048,293.2216,293.4227,293.6238,293.82492,294.02606,294.22717,294.42828,294.6294,294.8305,295.03162,295.23273,295.43384,295.63495,295.83606,296.03717,296.23828,296.4394,296.6405,296.8416,297.04272,297.24384,297.44495,297.64606,297.84717,298.04828,298.2494,298.45053,298.65164,298.85275,299.05386,299.25497,299.4561,299.6572,299.8583,300.05942,300.26053,300.46164,300.66275,300.86386,301.06497,301.26608,301.4672,301.6683,301.86942,302.07053,302.27164,302.47275,302.67386,302.875,303.0761,303.27722,303.47833,303.67944,303.88055,304.08167,304.28278,304.4839,304.685,304.8861,305.08722,305.28833,305.48944,305.69055,305.89166,306.09277,306.29388,306.495,306.6961,306.89722,307.09833,307.29944,307.50058,307.7017,307.9028,308.1039,308.30502,308.50613,308.70724,308.90836,309.10947,309.31058,309.5117,309.7128,309.9139,310.11502,310.31613,310.51724,310.71835,310.91946,311.12057,311.3217,311.5228,311.7239,311.92505,312.12616,312.32727,312.52838,312.7295,312.9306,313.1317,313.33282,313.53394,313.73505,313.93616,314.13727,314.33838,314.5395,314.7406,314.9417,315.14282,315.34393,315.54504,315.74615,315.94727,316.14838,316.34952,316.55063,316.75174,316.95285,317.15396,317.35507,317.55618,317.7573,317.9584,318.15952,318.36063,318.56174,318.76285,318.96396,319.16507,319.36618,319.5673,319.7684,319.9695,320.17062,320.37173,320.57285,320.774,320.9751,321.1762,321.37732,321.57843,321.77954,321.98065,322.18176,322.38287,322.58398,322.7851,322.9862,323.18732,323.38843,323.58954,323.79065,323.99176,324.19287,324.39398,324.5951,324.7962,324.9973,325.19843,325.39957,325.60068,325.8018,326.0029,326.204,326.40512,326.60623,326.80734,327.00845,327.20956,327.41068,327.6118,327.8129,328.014,328.21512,328.41623,328.61734,328.81845,329.01956,329.22067,329.42178,329.6229,329.82404,330.02515,330.22626,330.42737,330.62848,330.8296,331.0307,331.2318,331.43292,331.63403,331.83514,332.03625,332.23737,332.43848,332.6396,332.8407,333.0418,333.24292,333.44403,333.64514,333.84625,334.04736,334.2485,334.44962,334.65073,334.85184,335.05295,335.25406,335.45517,335.65628,335.8574,336.0585,336.2596,336.46072,336.66183,336.86295,337.06406,337.26517,337.46628,337.6674,337.8685,338.0696,338.27072,338.47183,338.67294,338.87408,339.0752,339.2763,339.47742,339.67853,339.87964,340.08075,340.28186,340.48297,340.68408,340.8852,341.0863,341.2874,341.48853,341.68964,341.89075,342.09186,342.29297,342.49408,342.6952,342.8963,343.0974,343.29855,343.49966,343.70078,343.9019,344.103,344.3041,344.50522,344.70633,344.90744,345.10855,345.30966,345.51077,345.71188,345.913,346.1141,346.31522,346.51633,346.71744,346.91855,347.11966,347.32077,347.52188,347.72302,347.92413,348.12524,348.32635,348.52747,348.72858,348.9297,349.1308,349.3319,349.53302,349.73413,349.93524,350.13635,350.33746,350.53857,350.7397,350.9408,351.1419,351.34302,351.54413,351.74524,351.94635,352.14746,352.3486,352.5497,352.75082,352.95193,353.15305,353.35416,353.55527,353.75638,353.9575,354.1586,354.3597,354.56082,354.76193,354.96304,355.16415,355.36526,355.56638,355.7675,355.9686,356.1697,356.37082,356.57193,356.77307,356.97418,357.1753,357.3764,357.5775,357.77863,357.97974,358.18085,358.38196,358.58307,358.78418,358.9853,359.1864,359.3875,359.58862,359.78973,359.99084,360.19196,360.39307,360.59418,360.7953,360.9964,361.19754,361.39865,361.59976,361.80087,362.00198,362.2031,362.4042,362.60532,362.80643,363.00754,363.20865,363.40976,363.61087,363.81198,364.0131,364.2142,364.4153,364.61642,364.81754,365.01865,365.21976,365.42087,365.62198,365.82312,366.02423,366.22534,366.42645,366.62756,366.82867,367.0298,367.2309,367.432,367.63312,367.83423,368.03534,368.23645,368.43756,368.63867,368.83978,369.0409,369.242,369.4431,369.64423,369.84534,370.04645,370.2476,370.4487,370.6498,370.85092,371.05203,371.25314,371.45425,371.65536,371.85648,372.0576,372.2587,372.4598,372.66092,372.86203,373.06314,373.26425,373.46536,373.66647,373.86758,374.0687,374.2698,374.47092,374.67206,374.87317,375.07428,375.2754,375.4765,375.6776,375.87872,376.07983,376.28094,376.48206,376.68317,376.88428,377.0854,377.2865,377.4876,377.68872,377.88983,378.09094,378.29205,378.49316,378.69427,378.8954,379.09653,379.29764,379.49875,379.69986,379.90097,380.10208,380.3032,380.5043,380.7054,380.90652,381.10764,381.30875,381.50986,381.71097,381.91208,382.1132,382.3143,382.5154,382.71652,382.91763,383.11874,383.31985,383.52097,383.7221,383.92322,384.12433,384.32544,384.52655,384.72766,384.92877,385.12988,385.331,385.5321,385.73322,385.93433,386.13544,386.33655,386.53766,386.73877,386.93988,387.141,387.3421,387.5432,387.74432,387.94543,388.14658,388.3477,388.5488,388.7499,388.95102,389.15213,389.35324,389.55435,389.75546,389.95657,390.15768,390.3588,390.5599,390.76102,390.96213,391.16324,391.36435,391.56546,391.76657,391.96768,392.1688,392.3699,392.57104,392.77216,392.97327,393.17438,393.3755,393.5766,393.7777,393.97882,394.17993,394.38104,394.58215,394.78326,394.98438,395.1855,395.3866,395.5877,395.78882,395.98993,396.19104,396.39215,396.59326,396.79437,396.99548,397.19662,397.39774,397.59885,397.79996,398.00107,398.20218,398.4033,398.6044,398.8055,399.00662,399.20773,399.40884,399.60995,399.81107,400.01218,400.2133,400.4144,400.6155,400.81662,401.01773,401.21884,401.41995,401.6211,401.8222,402.02332,402.22443,402.42554,402.62665,402.82776,403.02887,403.22998,403.4311,403.6322,403.8333,404.03442,404.23553,404.43665,404.63776,404.83887,405.03998,405.2411,405.4422,405.6433,405.84442,406.04556,406.24667,406.44778,406.6489,406.85,407.05112,407.25223,407.45334,407.65445,407.85556,408.05667,408.25778,408.4589,408.66,408.8611,409.06223,409.26334,409.46445,409.66556,409.86667,410.06778,410.2689,410.47,410.67114,410.87225,411.07336,411.27448,411.4756,411.6767,411.8778,412.07892,412.28003,412.48114,412.68225,412.88336,413.08447,413.28558,413.4867,413.6878,413.88892,414.09003,414.29114,414.49225,414.69336,414.89447,415.0956,415.29672,415.49783,415.69894,415.90005,416.10117,416.30228,416.5034,416.7045,416.9056,417.10672,417.30783,417.50894,417.71005,417.91116,418.11227,418.3134,418.5145,418.7156,418.91672,419.11783,419.31894,419.52008,419.7212,419.9223,420.1234,420.32452,420.52563,420.72675,420.92786,421.12897,421.33008,421.5312,421.7323,421.9334,422.13452,422.33563,422.53674,422.73785,422.93896,423.14008,423.3412,423.5423,423.7434,423.94452,424.14566,424.34677,424.54788,424.749,424.9501,425.1512,425.35233,425.55344,425.75455,425.95566,426.15677,426.35788,426.559,426.7601,426.9612,427.16232,427.36343,427.56454,427.76566,427.96677,428.16788,428.369,428.57013,428.77124,428.97235,429.17346,429.37457,429.57568,429.7768,429.9779,430.17902,430.38013,430.58124,430.78235,430.98346,431.18457,431.38568,431.5868,431.7879,431.989,432.19012,432.39124,432.59235,432.79346,432.9946,433.1957,433.39682,433.59793,433.79904,434.00015,434.20126,434.40237,434.6035,434.8046,435.0057,435.20682,435.40793,435.60904,435.81015,436.01126,436.21237,436.41348,436.6146,436.8157,437.0168,437.21793,437.41907,437.62018,437.8213,438.0224,438.2235,438.42462,438.62573,438.82684,439.02795,439.22906,439.43018,439.6313,439.8324,440.0335,440.23462,440.43573,440.63684,440.83795,441.03906,441.24017,441.44128,441.6424,441.8435,442.04465,442.24576,442.44687,442.64798,442.8491,443.0502,443.2513,443.45242,443.65353,443.85464,444.05576,444.25687,444.45798,444.6591,444.8602,445.0613,445.26242,445.46353,445.66464,445.86575,446.06686,446.26797,446.46912,446.67023,446.87134,447.07245,447.27356,447.47467,447.67578,447.8769,448.078,448.2791,448.48022,448.68134,448.88245,449.08356,449.28467,449.48578,449.6869,449.888,450.0891,450.29022,450.49133,450.69244,450.8936,451.0947,451.2958,451.49692,451.69803,451.89914,452.10025,452.30136,452.50247,452.70358,452.9047,453.1058,453.30692,453.50803,453.70914,453.91025,454.11136,454.31247,454.51358,454.7147,454.9158,455.1169,455.31802,455.51917,455.72028,455.9214,456.1225,456.3236,456.52472,456.72583,456.92694,457.12805,457.32916,457.53027,457.73138,457.9325,458.1336,458.33472,458.53583,458.73694,458.93805,459.13916,459.34027,459.54138,459.7425,459.94363,460.14474,460.34586,460.54697,460.74808,460.9492,461.1503,461.3514,461.55252,461.75363,461.95474,462.15585,462.35696,462.55807,462.7592,462.9603,463.1614,463.36252,463.56363,463.76474,463.96585,464.16696,464.3681,464.5692,464.77032,464.97144,465.17255,465.37366,465.57477,465.77588,465.977,466.1781,466.3792,466.58032,466.78143,466.98254,467.18365,467.38477,467.58588,467.787,467.9881,468.1892,468.39032,468.59143,468.79254,468.99368,469.1948,469.3959,469.59702,469.79813,469.99924,470.20035,470.40146,470.60257,470.80368,471.0048,471.2059,471.407,471.60812,471.80923,472.01035,472.21146,472.41257,472.61368,472.8148,473.0159,473.217,473.41815,473.61926,473.82037,474.02148,474.2226,474.4237,474.62482,474.82593,475.02704,475.22815,475.42926,475.63037,475.83148,476.0326,476.2337,476.4348,476.63593,476.83704,477.03815,477.23926,477.44037,477.64148,477.84262,478.04373,478.24484,478.44595,478.64706,478.84818,479.0493,479.2504,479.4515,479.65262,479.85373,480.05484,480.25595,480.45706,480.65817,480.85928,481.0604,481.2615,481.46262,481.66373,481.86484,482.06595,482.26706,482.4682,482.6693,482.87042,483.07153,483.27264,483.47375,483.67487,483.87598,484.0771,484.2782,484.4793,484.68042,484.88153,485.08264,485.28375,485.48486,485.68597,485.8871,486.0882,486.2893,486.49042,486.69153,486.89267,487.09378,487.2949,487.496,487.6971,487.89822,488.09933,488.30045,488.50156,488.70267,488.90378,489.1049,489.306,489.5071,489.70822,489.90933,490.11044,490.31155,490.51266,490.71378,490.9149,491.116,491.31714,491.51825,491.71936,491.92047,492.12158,492.3227,492.5238,492.7249,492.92603,493.12714,493.32825,493.52936,493.73047,493.93158,494.1327,494.3338,494.5349,494.73602,494.93713,495.13824,495.33936,495.54047,495.7416,495.94272,496.14383,496.34494,496.54605,496.74716,496.94827,497.14938,497.3505,497.5516,497.75272,497.95383,498.15494,498.35605,498.55716,498.75827,498.95938,499.1605,499.3616,499.5627,499.76382,499.96494,500.16605,500.3672,500.5683,500.7694,500.97052,501.17163,501.37274,501.57385,501.77496,501.97607,502.1772,502.3783,502.5794,502.78052,502.98163,503.18274,503.38385,503.58496,503.78607,503.98718,504.1883,504.3894,504.5905,504.79166,504.99277,505.19388,505.395,505.5961,505.7972,505.99832,506.19943,506.40054,506.60165,506.80276,507.00388,507.205,507.4061,507.6072,507.80832,508.00943,508.21054,508.41165,508.61276,508.81387,509.01498,509.21613,509.41724,509.61835,509.81946,510.02057,510.22168,510.4228,510.6239,510.825,511.02612,511.22723,511.42834,511.62946,511.83057,512.0317,512.2328,512.4339,512.635,512.8361,513.03723,513.23834,513.43945,513.64056,513.8417,514.0428,514.2439,514.445,514.6461,514.8472,515.04834,515.24945,515.45056,515.6517,515.8528,516.05396,516.25507,516.4562,516.6573,516.8584,517.0595,517.2606,517.46173,517.66284,517.86395,518.06506,518.2662,518.4673,518.6684,518.8695,519.0706,519.2717,519.47284,519.67395,519.87506,520.0762,520.2773,520.4784,520.6795,520.8806,521.0817,521.28284,521.48395,521.68506,521.88617,522.0873,522.2884,522.4895,522.6906,522.8917,523.09283,523.29395,523.49506,523.69617,523.8973,524.0984,524.2995,524.5006,524.7017,524.9029,525.104,525.3051,525.5062,525.70734,525.90845,526.10956,526.31067,526.5118,526.7129,526.914,527.1151,527.3162,527.51733,527.71844,527.91956,528.12067,528.3218,528.5229,528.724,528.9251,529.1262,529.32733,529.52844,529.72955,529.93066,530.1318,530.3329,530.534,530.7351,530.9362,531.1373,531.33844,531.53955,531.74066,531.9418,532.1429,532.344,532.5451,532.7462,532.9473,533.14844,533.34955,533.55066,533.7518,533.95294,534.15405,534.35516,534.5563,534.7574,534.9585,535.1596,535.3607,535.5618,535.76294,535.96405,536.16516,536.3663,536.5674,536.7685,536.9696,537.1707,537.3718,537.57294,537.77405,537.97516,538.1763,538.3774,538.5785,538.7796,538.9807,539.1818,539.38293,539.58405,539.78516,539.98627,540.1874,540.3885,540.5896,540.7907,540.9918,541.19293,541.39404,541.59515,541.79626,541.9974,542.1985,542.3996,542.6007,542.8018,543.003,543.2041,543.4052,543.6063,543.80743,544.00854,544.20966,544.41077,544.6119,544.813,545.0141,545.2152,545.4163,545.61743,545.81854,546.01965,546.22076,546.4219,546.623,546.8241,547.0252,547.2263,547.4274,547.62854,547.82965,548.03076,548.2319,548.433,548.6341,548.8352,549.0363,549.2374,549.43854,549.63965,549.84076,550.0419,550.243,550.4441,550.6452,550.8463,551.0474,551.24854,551.44965,551.65076,551.8519,552.05304,552.25415,552.45526,552.6564,552.8575,553.0586,553.2597,553.4608,553.6619,553.86304,554.06415,554.26526,554.4664,554.6675,554.8686,555.0697,555.2708,555.4719,555.67303,555.87415,556.07526,556.27637,556.4775,556.6786,556.8797,557.0808,557.2819,557.48303,557.68414,557.88525,558.08636,558.2875,558.4886,558.6897,558.8908,559.0919,559.293,559.49414,559.69525,559.89636,560.0975,560.2986,560.4997,560.7008,560.902,561.1031,561.3042,561.5053,561.7064,561.90753,562.10864,562.30975,562.51086,562.712,562.9131,563.1142,563.3153,563.5164,563.7175,563.91864,564.11975,564.32086,564.522,564.7231,564.9242,565.1253,565.3264,565.5275,565.72864,565.92975,566.13086,566.332,566.5331,566.7342,566.9353,567.1364,567.3375,567.53864,567.73975,567.94086,568.14197,568.3431,568.5442,568.7453,568.9464,569.1475,569.34863,569.54974,569.75085,569.952,570.15314,570.35425,570.55536,570.7565,570.9576,571.1587,571.3598,571.5609,571.762,571.96313,572.16425,572.36536,572.56647,572.7676,572.9687,573.1698,573.3709,573.572,573.77313,573.97424,574.17535,574.37646,574.5776,574.7787,574.9798,575.1809,575.382,575.5831,575.78424,575.98535,576.18646,576.3876,576.5887,576.7898,576.9909,577.192,577.3931,577.59424,577.79535,577.99646,578.1976,578.3987,578.5998,578.80096,579.0021,579.2032,579.4043,579.6054,579.8065,580.0076,580.20874,580.40985,580.61096,580.8121,581.0132,581.2143,581.4154,581.6165,581.8176,582.01874,582.21985,582.42096,582.6221,582.8232,583.0243,583.2254,583.4265,583.6276,583.82874,584.02985,584.23096,584.43207,584.6332,584.8343,585.0354,585.2365,585.4376,585.63873,585.83984,586.04095,586.24207,586.4432,586.6443,586.8454,587.0465,587.2476,587.4487,587.64984,587.851,588.0521,588.25323,588.45435,588.65546,588.85657,589.0577,589.2588,589.4599,589.661,589.8621,590.06323,590.26434,590.46545,590.66656,590.8677,591.0688,591.2699,591.471,591.6721,591.8732,592.07434,592.27545,592.47656,592.6777,592.8788,593.0799,593.281,593.4821,593.6832,593.88434,594.08545,594.28656,594.4877,594.6888,594.8899,595.091,595.2921,595.4932,595.69434,595.89545,596.09656,596.29767,596.4988,596.69995,596.90106,597.1022,597.3033,597.5044,597.7055,597.9066,598.1077,598.30884,598.50995,598.71106,598.9122,599.1133,599.3144,599.5155,599.7166,599.9177,600.11884,600.31995,600.52106,600.72217,600.9233,601.1244,601.3255,601.5266,601.7277,601.92883,602.12994,602.33105,602.53217,602.7333,602.9344,603.1355,603.3366,603.5377,603.73883,603.93994,604.14105,604.34216,604.5433,604.7444,604.9455,605.1466,605.3477,605.5488,605.75,605.9511,606.1522,606.35333,606.55444,606.75555,606.95667,607.1578,607.3589,607.56,607.7611,607.9622,608.1633,608.36444,608.56555,608.76666,608.9678,609.1689,609.37,609.5711,609.7722,609.9733,610.17444,610.37555,610.57666,610.7778,610.9789,611.18,611.3811,611.5822,611.7833,611.98444,612.18555,612.38666,612.58777,612.7889,612.99,613.1911,613.3922,613.5933,613.79443,613.99554,614.19666,614.39777,614.5989,614.80005,615.00116,615.2023,615.4034,615.6045,615.8056,616.0067,616.2078,616.40894,616.61005,616.81116,617.01227,617.2134,617.4145,617.6156,617.8167,618.0178,618.21893,618.42004,618.62115,618.82227,619.0234,619.2245,619.4256,619.6267,619.8278,620.02893,620.23004,620.43115,620.63226,620.8334,621.0345,621.2356,621.4367,621.6378,621.8389,622.04004,622.24115,622.44226,622.6434,622.8445,623.0456,623.2467,623.4478,623.649,623.8501,624.0512,624.2523,624.4534,624.65454,624.85565,625.05676,625.2579,625.459,625.6601,625.8612,626.0623,626.2634,626.46454,626.66565,626.86676,627.0679,627.269,627.4701,627.6712,627.8723,628.0734,628.27454,628.47565,628.67676,628.87787,629.079,629.2801,629.4812,629.6823,629.8834,630.08453,630.28564,630.48676,630.68787,630.889,631.0901,631.2912,631.4923,631.6934,631.89453,632.09564,632.29675,632.49786,632.69904,632.90015,633.10126,633.30237,633.5035,633.7046,633.9057,634.1068,634.3079,634.50903,634.71014,634.91125,635.11237,635.3135,635.5146,635.7157,635.9168,636.1179,636.31903,636.52014,636.72125,636.92236,637.1235,637.3246,637.5257,637.7268,637.9279,638.129,638.33014,638.53125,638.73236,638.9335,639.1346,639.3357,639.5368,639.7379,639.939,640.14014,640.34125,640.54236,640.74347,640.9446,641.1457,641.3468,641.548,641.7491,641.9502,642.1513,642.3524,642.5535,642.75464,642.95575,643.15686,643.358,643.5591,643.7602,643.9613,644.1624,644.3635,644.56464,644.76575,644.96686,645.16797,645.3691,645.5702,645.7713,645.9724,646.1735,646.37463,646.57574,646.77686,646.97797,647.1791,647.3802,647.5813,647.7824,647.9835,648.18463,648.38574,648.58685,648.78796,648.9891,649.1902,649.3913,649.5924,649.7935,649.9946,650.19574,650.39685,650.598,650.79913,651.00024,651.20135,651.40247,651.6036,651.8047,652.0058,652.2069,652.408,652.60913,652.81024,653.01135,653.21246,653.4136,653.6147,653.8158,654.0169,654.218,654.4191,654.62024,654.82135,655.02246,655.2236,655.4247,655.6258,655.8269,656.028,656.2291,656.43024,656.63135,656.83246,657.03357,657.2347,657.4358,657.6369,657.838,658.0391,658.24023,658.44135,658.64246,658.84357,659.0447,659.2458,659.4469,659.6481,659.8492,660.0503,660.2514,660.4525,660.6536,660.85474,661.05585,661.25696,661.45807,661.6592,661.8603,662.0614,662.2625,662.4636,662.66473,662.86584,663.06696,663.26807,663.4692,663.6703,663.8714,664.0725,664.2736,664.47473,664.67584,664.87695,665.07806,665.2792,665.4803,665.6814,665.8825,666.0836,666.2847,666.48584,666.68695,666.88806,667.0892,667.2903,667.4914,667.6925,667.8936,668.0947,668.29584,668.497,668.6981,668.89923,669.10034,669.30145,669.50256,669.7037,669.9048,670.1059,670.307,670.5081,670.7092,670.91034,671.11145,671.31256,671.5137,671.7148,671.9159,672.117,672.3181,672.5192,672.72034,672.92145,673.12256,673.32367,673.5248,673.7259,673.927,674.1281,674.3292,674.53033,674.73145,674.93256,675.13367,675.3348,675.5359,675.737,675.9381,676.1392,676.34033,676.54144,676.74255,676.94366,677.1448,677.3459,677.54706,677.74817,677.9493,678.1504,678.3515,678.5526,678.7537,678.95483,679.15594,679.35706,679.55817,679.7593,679.9604,680.1615,680.3626,680.5637,680.76483,680.96594,681.16705,681.36816,681.5693,681.7704,681.9715,682.1726,682.3737,682.5748,682.77594,682.97705,683.17816,683.3793,683.5804,683.7815,683.9826,684.1837,684.3848,684.58594,684.78705,684.98816,685.1893,685.3904,685.5915,685.7926,685.9937,686.1948,686.39594,686.5971,686.7982,686.9993,687.20044,687.40155,687.60266,687.8038,688.0049,688.206,688.4071,688.6082,688.8093,689.01044,689.21155,689.41266,689.6138,689.8149,690.016,690.2171,690.4182,690.6193,690.82043,691.02155,691.22266,691.42377,691.6249,691.826,692.0271,692.2282,692.4293,692.63043,692.83154,693.03265,693.23376,693.4349,693.636,693.8371,694.0382,694.2393,694.4404,694.64154,694.84265,695.04376,695.2449,695.44604,695.64716,695.84827,696.0494,696.2505,696.4516,696.6527,696.8538,697.05493,697.25604,697.45715,697.65826,697.8594,698.0605,698.2616,698.4627,698.6638,698.8649,699.06604,699.26715,699.46826,699.6694,699.8705,700.0716,700.2727,700.4738,700.6749,700.87604,701.07715,701.27826,701.4794,701.6805,701.8816,702.0827,702.2838,702.4849,702.68604,702.88715,703.08826,703.28937,703.4905,703.6916,703.8927,704.0938,704.2949,704.4961,704.6972,704.8983,705.0994,705.30054,705.50165,705.70276,705.9039,706.105,706.3061,706.5072,706.7083,706.9094,707.11053,707.31165,707.51276,707.71387,707.915,708.1161,708.3172,708.5183,708.7194,708.92053,709.12164,709.32275,709.52386,709.725,709.9261,710.1272,710.3283,710.5294,710.7305,710.93164,711.13275,711.33386,711.535,711.7361,711.9372,712.1383,712.3394,712.5405,712.74164,712.94275,713.14386,713.34503,713.54614,713.74725,713.94836,714.1495,714.3506,714.5517,714.7528,714.9539,715.155,715.35614,715.55725,715.75836,715.9595,716.1606,716.3617,716.5628,716.7639,716.965,717.16614,717.36725,717.56836,717.7695,717.9706,718.1717,718.3728,718.5739,718.775,718.97614,719.17725,719.37836,719.57947,719.7806,719.9817,720.1828,720.3839,720.585,720.78613,720.98724,721.18835,721.38947,721.5906,721.7917,721.9928,722.1939,722.3951,722.5962,722.7973,722.9984,723.1995,723.40063,723.60175,723.80286,724.00397,724.2051,724.4062,724.6073,724.8084,725.0095,725.21063,725.41174,725.61285,725.81396,726.0151,726.2162,726.4173,726.6184,726.8195,727.0206,727.22174,727.42285,727.62396,727.8251,728.0262,728.2273,728.4284,728.6295,728.8306,729.03174,729.23285,729.43396,729.6351,729.8362,730.0373,730.2384,730.4395,730.6406,730.84174,731.04285,731.24396,731.4451,731.64624,731.84735,732.04846,732.2496,732.4507,732.6518,732.8529,733.054,733.2551,733.45624,733.65735,733.85846,734.0596,734.2607,734.4618,734.6629,734.864,735.0651,735.26624,735.46735,735.66846,735.86957,736.0707,736.2718,736.4729,736.674,736.8751,737.07623,737.27734,737.47845,737.67957,737.8807,738.0818,738.2829,738.484,738.6851,738.8862,739.08734,739.28845,739.48956,739.6907,739.8918,740.0929,740.29407,740.4952,740.6963,740.8974,741.0985,741.2996,741.50073,741.70184,741.90295,742.10406,742.3052,742.5063,742.7074,742.9085,743.1096,743.3107,743.51184,743.71295,743.91406,744.1152,744.3163,744.5174,744.7185,744.9196,745.1207,745.32184,745.52295,745.72406,745.9252,746.1263,746.3274,746.5285,746.7296,746.9307,747.13184,747.33295,747.53406,747.73517,747.9363,748.1374,748.3385,748.5396,748.7407,748.94183,749.14294,749.3441,749.5452,749.74634,749.94745,750.14856,750.3497,750.5508,750.7519,750.953,751.1541,751.3552,751.55634,751.75745,751.95856,752.15967,752.3608,752.5619,752.763,752.9641,753.1652,753.36633,753.56744,753.76855,753.96967,754.1708,754.3719,754.573,754.7741,754.9752,755.17633,755.37744,755.57855,755.77966,755.9808,756.1819,756.383,756.5841,756.7852,756.9863,757.18744,757.38855,757.58966,757.7908,757.9919,758.19305,758.39417,758.5953,758.7964,758.9975,759.1986,759.3997,759.6008,759.80194,760.00305,760.20416,760.4053,760.6064,760.8075,761.0086,761.2097,761.4108,761.61194,761.81305,762.01416,762.2153,762.4164,762.6175,762.8186,763.0197,763.2208,763.42194,763.62305,763.82416,764.02527,764.2264,764.4275,764.6286,764.8297,765.0308,765.23193,765.43304,765.63416,765.83527,766.0364,766.2375,766.4386,766.6397,766.8408,767.04193,767.2431,767.4442,767.6453,767.84644,768.04755,768.24866,768.44977,768.6509,768.852,769.0531,769.2542,769.4553,769.65643,769.85754,770.05865,770.25977,770.4609,770.662,770.8631,771.0642,771.2653,771.46643,771.66754,771.86865,772.06976,772.2709,772.472,772.6731,772.8742,773.0753,773.2764,773.47754,773.67865,773.87976,774.0809,774.282,774.4831,774.6842,774.8853,775.0864,775.28754,775.48865,775.68976,775.89087,776.092,776.29315,776.49426,776.6954,776.8965,777.0976,777.2987,777.4998,777.7009,777.90204,778.10315,778.30426,778.5054,778.7065,778.9076,779.1087,779.3098,779.5109,779.71204,779.91315,780.11426,780.31537,780.5165,780.7176,780.9187,781.1198,781.3209,781.52203,781.72314,781.92426,782.12537,782.3265,782.5276,782.7287,782.9298,783.1309,783.33203,783.53314,783.73425,783.93536,784.1365,784.3376,784.5387,784.7398,784.9409,785.1421,785.3432,785.5443,785.7454,785.94653,786.14764,786.34875,786.54987,786.751,786.9521,787.1532,787.3543,787.5554,787.75653,787.95764,788.15875,788.35986,788.561,788.7621,788.9632,789.1643,789.3654,789.5665,789.76764,789.96875,790.16986,790.371,790.5721,790.7732,790.9743,791.1754,791.3765,791.57764,791.77875,791.97986,792.18097,792.3821,792.5832,792.7843,792.9854,793.1865,793.38763,793.58875,793.78986,793.99097,794.19214,794.39325,794.59436,794.7955,794.9966,795.1977,795.3988,795.5999,795.801,796.00214,796.20325,796.40436,796.60547,796.8066,797.0077,797.2088,797.4099,797.611,797.81213,798.01324,798.21436,798.41547,798.6166,798.8177,799.0188,799.2199,799.421,799.62213,799.82324,800.02435,800.22546,800.4266,800.6277,800.8288,801.0299,801.231,801.4321,801.63324,801.83435,802.03546,802.2366,802.4377,802.6388,802.8399,803.041,803.2422,803.4433,803.6444,803.8455,804.04663,804.24774]}
diff --git a/lib/node_modules/@stdlib/math/base/special/covercosf/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/covercosf/test/fixtures/julia/runner.jl
new file mode 100755
index 000000000000..f594be280f98
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/covercosf/test/fixtures/julia/runner.jl
@@ -0,0 +1,85 @@
+#!/usr/bin/env julia
+#
+# @license Apache-2.0
+#
+# Copyright (c) 2025 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
+
+"""
+ gen( domain, filepath )
+
+Generate fixture data and write to file.
+
+# Arguments
+
+* `domain`: domain
+* `filepath::AbstractString`: filepath of the output file
+
+# Examples
+
+``` julia
+julia> x = range( -1000.0, stop = 1000.0, length = 2001 );
+julia> gen( x, \"./data.json\" );
+```
+"""
+function gen( domain, filepath )
+ x = collect( domain );
+ y = Float32.( 1.0f0 .+ sin.( x ) );
+ data = Dict([
+ ("x", x),
+ ("expected", y)
+ ]);
+ 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 );
+
+# Negative medium sized values:
+x = Float32.( range( -256.0*pi, stop = 0.0, length = 4000 ) );
+out = joinpath( dir, "medium_negative.json" );
+gen( x, out );
+
+# Positive medium sized values:
+x = Float32.( range( 0.0, stop = 256.0*pi, length = 4000 ) );
+out = joinpath( dir, "medium_positive.json" );
+gen( x, out );
+
+# Negative large values:
+x = Float32.( range( -2.0^20*(pi/2.0), stop = -2.0^60*(pi/2.0), length = 4000 ) );
+out = joinpath( dir, "large_negative.json" );
+gen( x, out );
+
+# Positive large values:
+x = Float32.( range( 2.0^20*(pi/2.0), stop = 2.0^60*(pi/2.0), length = 4000 ) );
+out = joinpath( dir, "large_positive.json" );
+gen( x, out );
+
+# Negative huge values:
+x = Float32.( range( -2.0^60*(pi/2.0), stop = -2.0^120*(pi/2.0), length = 4000 ) );
+out = joinpath( dir, "huge_negative.json" );
+gen( x, out );
+
+# Positive huge values:
+x = Float32.( range( 2.0^60*(pi/2.0), stop = 2.0^120*(pi/2.0), length = 4000 ) );
+out = joinpath( dir, "huge_positive.json" );
+gen( x, out );
diff --git a/lib/node_modules/@stdlib/math/base/special/covercosf/test/test.js b/lib/node_modules/@stdlib/math/base/special/covercosf/test/test.js
new file mode 100644
index 000000000000..21c1ae5fcd4b
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/covercosf/test/test.js
@@ -0,0 +1,173 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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 PINF = require( '@stdlib/constants/float32/pinf' );
+var NINF = require( '@stdlib/constants/float32/ninf' );
+var f32 = require( '@stdlib/number/float64/base/to-float32' );
+var covercosf = require( './../lib' );
+
+
+// FIXTURES //
+
+var mediumNegative = require( './fixtures/julia/medium_negative.json' );
+var mediumPositive = require( './fixtures/julia/medium_positive.json' );
+var largeNegative = require( './fixtures/julia/large_negative.json' );
+var largePositive = require( './fixtures/julia/large_positive.json' );
+var hugeNegative = require( './fixtures/julia/huge_negative.json' );
+var hugePositive = require( './fixtures/julia/huge_positive.json' );
+
+
+// TESTS //
+
+tape( 'main export is a function', function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof covercosf, 'function', 'main export is a function' );
+ t.end();
+});
+
+tape( 'the function computes the coversed cosine (for -256*pi < x < 0)', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = mediumNegative.x;
+ expected = mediumNegative.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ expected[ i ] = f32( expected[ i ] );
+ y = covercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the coversed cosine (for 0 < x < 256*pi)', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = mediumPositive.x;
+ expected = mediumPositive.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ expected[ i ] = f32( expected[ i ] );
+ y = covercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the coversed cosine (for -2**60 (pi/2) < x < -2**20 (pi/2))', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = largeNegative.x;
+ expected = largeNegative.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ expected[ i ] = f32( expected[ i ] );
+ y = covercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the coversed cosine (for 2**20 (pi/2) < x < 2**60 (pi/2))', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = largePositive.x;
+ expected = largePositive.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ expected[ i ] = f32( expected[ i ] );
+ y = covercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the coversed cosine (for x <= -2**60 (PI/2))', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = hugeNegative.x;
+ expected = hugeNegative.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ expected[ i ] = f32( expected[ i ] );
+ y = covercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the coversed cosine (for x >= 2**60 (PI/2))', function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = hugePositive.x;
+ expected = hugePositive.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ expected[ i ] = f32( expected[ i ] );
+ y = covercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function returns `NaN` if provided `NaN`', function test( t ) {
+ var v = covercosf( NaN );
+ t.strictEqual( isnanf( v ), true, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function returns `NaN` if provided `+infinity`', function test( t ) {
+ var v = covercosf( PINF );
+ t.strictEqual( isnanf( v ), true, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function returns `NaN` if provided `-infinity`', function test( t ) {
+ var v = covercosf( NINF );
+ t.strictEqual( isnanf( v ), true, 'returns expected value' );
+ t.end();
+});
diff --git a/lib/node_modules/@stdlib/math/base/special/covercosf/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/covercosf/test/test.native.js
new file mode 100644
index 000000000000..9f1f1f3ff3d6
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/covercosf/test/test.native.js
@@ -0,0 +1,182 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 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 PINF = require( '@stdlib/constants/float32/pinf' );
+var NINF = require( '@stdlib/constants/float32/ninf' );
+var f32 = require( '@stdlib/number/float64/base/to-float32' );
+var tryRequire = require( '@stdlib/utils/try-require' );
+
+
+// VARIABLES //
+
+var covercosf = tryRequire( resolve( __dirname, './../lib/native.js' ) );
+var opts = {
+ 'skip': ( covercosf instanceof Error )
+};
+
+
+// FIXTURES //
+
+var mediumNegative = require( './fixtures/julia/medium_negative.json' );
+var mediumPositive = require( './fixtures/julia/medium_positive.json' );
+var largeNegative = require( './fixtures/julia/large_negative.json' );
+var largePositive = require( './fixtures/julia/large_positive.json' );
+var hugeNegative = require( './fixtures/julia/huge_negative.json' );
+var hugePositive = require( './fixtures/julia/huge_positive.json' );
+
+
+// TESTS //
+
+tape( 'main export is a function', opts, function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof covercosf, 'function', 'main export is a function' );
+ t.end();
+});
+
+tape( 'the function computes the coversed cosine (for -256*pi < x < 0)', opts, function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = mediumNegative.x;
+ expected = mediumNegative.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ expected[ i ] = f32( expected[ i ] );
+ y = covercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the coversed cosine (for 0 < x < 256*pi)', opts, function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = mediumPositive.x;
+ expected = mediumPositive.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ expected[ i ] = f32( expected[ i ] );
+ y = covercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the coversed cosine (for -2**60 (pi/2) < x < -2**20 (pi/2))', opts, function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = largeNegative.x;
+ expected = largeNegative.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ expected[ i ] = f32( expected[ i ] );
+ y = covercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the coversed cosine (for 2**20 (pi/2) < x < 2**60 (pi/2))', opts, function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = largePositive.x;
+ expected = largePositive.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ expected[ i ] = f32( expected[ i ] );
+ y = covercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the coversed cosine (for x <= -2**60 (PI/2))', opts, function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = hugeNegative.x;
+ expected = hugeNegative.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ expected[ i ] = f32( expected[ i ] );
+ y = covercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function computes the coversed cosine (for x >= 2**60 (PI/2))', opts, function test( t ) {
+ var expected;
+ var x;
+ var y;
+ var i;
+
+ x = hugePositive.x;
+ expected = hugePositive.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ x[ i ] = f32( x[ i ] );
+ expected[ i ] = f32( expected[ i ] );
+ y = covercosf( x[ i ] );
+ t.strictEqual( y, expected[ i ], 'returns expected value' );
+ }
+ t.end();
+});
+
+tape( 'the function returns `NaN` if provided `NaN`', opts, function test( t ) {
+ var v = covercosf( NaN );
+ t.strictEqual( isnanf( v ), true, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function returns `NaN` if provided `+infinity`', opts, function test( t ) {
+ var v = covercosf( PINF );
+ t.strictEqual( isnanf( v ), true, 'returns expected value' );
+ t.end();
+});
+
+tape( 'the function returns `NaN` if provided `-infinity`', opts, function test( t ) {
+ var v = covercosf( NINF );
+ t.strictEqual( isnanf( v ), true, 'returns expected value' );
+ t.end();
+});