From 3bd783f8ded281fb93eb7beb90a62d10da16e6a6 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Sat, 16 Nov 2024 14:28:40 +0600 Subject: [PATCH 01/63] cosc --- .../math/base/special/cosc/lib/main.js | 89 +++++++++++++++++++ .../math/base/special/cosc/lib/native.js | 58 ++++++++++++ 2 files changed, 147 insertions(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/lib/native.js diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js b/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js new file mode 100644 index 000000000000..5379cda2c783 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js @@ -0,0 +1,89 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2018 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var sinpi = require( '@stdlib/math/base/special/sinpi' ); +var cospi=require('@stdlib/math/base/special/cospi'); +var isnan = require( '@stdlib/math/base/assert/is-nan' ); +var isInfinite = require( '@stdlib/math/base/assert/is-infinite' ); +var PI = require( '@stdlib/constants/float64/pi' ); + + +// MAIN // + +/** +* Computes the normalized derivative of cardinal sine of a number. +* +* ## Method +* +* For \\( x \neq 0 \\), the normalized derivative of cardinal sine is calculated as +* +* ```tex +* \operatorname{cosc}(x) = \frac{{\operatorname{cos}(\pi x)}-\frac{\operatorname{sin}(\pi x)}{\pi x}}{x}. +* ``` +* +* ## Special Cases +* +* ```tex +* \begin{align*} +* \operatorname{cosc}(0) &= 0 & \\ +* \operatorname{cosc}(\infty) &= 0 & \\ +* \operatorname{cosc}(-\infty) &= 0 & \\ +* \operatorname{cosc}(\mathrm{NaN}) &= \mathrm{NaN} +* \end{align*} +* ``` +* +* @param {number} x - input value +* @returns {number} derivative of cardinal sine +* +* @example +* var v = cosc( 0.5 ); +* // returns ~-1.273 +* +* @example +* var v = cosc( -1.2 ); +* // returns ~-0.544 +* +* @example +* var v = cosc( 0.0 ); +* // returns 0.0 +* +* @example +* var v = cosc( NaN ); +* // returns NaN +*/ +function cosc( x ) { + if ( isnan( x ) ) { + return NaN; + } + if ( isInfinite( x ) ) { + return 0.0; + } + if ( x === 0.0 ) { + return 0.0; + } + return (cospi( x ) - (sinpi( x )/(PI*x))) / x; +} + + +// EXPORTS // + +module.exports = cosc; diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/lib/native.js b/lib/node_modules/@stdlib/math/base/special/cosc/lib/native.js new file mode 100644 index 000000000000..090c2f37a25e --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/cosc/lib/native.js @@ -0,0 +1,58 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var addon = require( './../src/addon.node' ); + + +// MAIN // + +/** +* Computes the normalized derivative of cardinal sine of a number. +* +* @private +* @param {number} x - input value +* @returns {number} derivative of cardinal sine +* +* @example +* var v = cosc( 0.5 ); +* // returns ~-1.273 +* +* @example +* var v = cosc( -1.2 ); +* // returns ~0.544 +* +* @example +* var v = cosc( 0.0 ); +* // returns 0.0 +* +* @example +* var v = cosc( NaN ); +* // returns NaN +*/ +function cosc( x ) { + return addon( x ); +} + + +// EXPORTS // + +module.exports = cosc; From a00350fbc8c115390ff06c1b28e3dc1bd9164af4 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Sat, 16 Nov 2024 18:27:49 +0600 Subject: [PATCH 02/63] basic index.js file --- lib/node_modules/@stdlib/math/base/special/cosc/lib/index.js | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/lib/index.js diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/lib/index.js b/lib/node_modules/@stdlib/math/base/special/cosc/lib/index.js new file mode 100644 index 000000000000..e69de29bb2d1 From 9e4fb4205deff844f9bd6e3aa29c3e3dc8de54e0 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Sat, 16 Nov 2024 18:38:23 +0600 Subject: [PATCH 03/63] added example file --- .../base/special/cosc/examples/c/Makefile | 0 .../base/special/cosc/examples/c/example.c | 31 ++++++++++++ .../math/base/special/cosc/lib/index.js | 49 +++++++++++++++++++ 3 files changed, 80 insertions(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/examples/c/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/examples/c/example.c diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/examples/c/Makefile b/lib/node_modules/@stdlib/math/base/special/cosc/examples/c/Makefile new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/examples/c/example.c b/lib/node_modules/@stdlib/math/base/special/cosc/examples/c/example.c new file mode 100644 index 000000000000..cbcd02e13fe1 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/cosc/examples/c/example.c @@ -0,0 +1,31 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include "stdlib/math/base/special/cosc.h" +#include + +int main( void ) { + const double x[] = { 0.0, 0.523, 0.785, 1.047, 3.14 }; + + double y; + int i; + for ( i = 0; i < 5; i++ ) { + y = stdlib_base_cosc( x[ i ] ); + printf( "cosc(%lf) = %lf\n", x[ i ], y ); + } +} diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/lib/index.js b/lib/node_modules/@stdlib/math/base/special/cosc/lib/index.js index e69de29bb2d1..0e7600ef238c 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/lib/index.js +++ b/lib/node_modules/@stdlib/math/base/special/cosc/lib/index.js @@ -0,0 +1,49 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2018 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +/** +* Compute the normalized derivative of cardinal sine of a number. +* +* @module @stdlib/math/base/special/cosc +* +* @example +* var cosc = require( '@stdlib/math/base/special/cosc' ); +* +* var v = cosc( 0.5 ); +* // returns ~-1.273 +* +* v = cosc( -1.2 ); +* // returns ~0.544 +* +* v = cosc( 0.0 ); +* // returns 0.0 +* +* v = cosc( NaN ); +* // returns NaN +*/ + +// MODULES // + +var main = require( './main.js' ); + + +// EXPORTS // + +module.exports = main; From ec5adcb761312d7cc65ad855c2f3cb2a04ef649e Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Sat, 16 Nov 2024 18:42:36 +0600 Subject: [PATCH 04/63] added makefile inside example folder --- .../base/special/cosc/examples/c/Makefile | 146 ++++++++++++++++++ 1 file changed, 146 insertions(+) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/examples/c/Makefile b/lib/node_modules/@stdlib/math/base/special/cosc/examples/c/Makefile index e69de29bb2d1..6aed70daf167 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/examples/c/Makefile +++ b/lib/node_modules/@stdlib/math/base/special/cosc/examples/c/Makefile @@ -0,0 +1,146 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2024 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + +# VARIABLES # + +ifndef VERBOSE + QUIET := @ +else + QUIET := +endif + +# Determine the OS ([1][1], [2][2]). +# +# [1]: https://en.wikipedia.org/wiki/Uname#Examples +# [2]: http://stackoverflow.com/a/27776822/2225624 +OS ?= $(shell uname) +ifneq (, $(findstring MINGW,$(OS))) + OS := WINNT +else +ifneq (, $(findstring MSYS,$(OS))) + OS := WINNT +else +ifneq (, $(findstring CYGWIN,$(OS))) + OS := WINNT +else +ifneq (, $(findstring Windows_NT,$(OS))) + OS := WINNT +endif +endif +endif +endif + +# Define the program used for compiling C source files: +ifdef C_COMPILER + CC := $(C_COMPILER) +else + CC := gcc +endif + +# Define the command-line options when compiling C files: +CFLAGS ?= \ + -std=c99 \ + -O3 \ + -Wall \ + -pedantic + +# Determine whether to generate position independent code ([1][1], [2][2]). +# +# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options +# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option +ifeq ($(OS), WINNT) + fPIC ?= +else + fPIC ?= -fPIC +endif + +# List of includes (e.g., `-I /foo/bar -I /beep/boop/include`): +INCLUDE ?= + +# List of source files: +SOURCE_FILES ?= + +# List of libraries (e.g., `-lopenblas -lpthread`): +LIBRARIES ?= + +# List of library paths (e.g., `-L /foo/bar -L /beep/boop`): +LIBPATH ?= + +# List of C targets: +c_targets := example.out + + +# RULES # + +#/ +# Compiles source files. +# +# @param {string} [C_COMPILER] - C compiler (e.g., `gcc`) +# @param {string} [CFLAGS] - C compiler options +# @param {(string|void)} [fPIC] - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} [INCLUDE] - list of includes (e.g., `-I /foo/bar -I /beep/boop/include`) +# @param {string} [SOURCE_FILES] - list of source files +# @param {string} [LIBPATH] - list of library paths (e.g., `-L /foo/bar -L /beep/boop`) +# @param {string} [LIBRARIES] - list of libraries (e.g., `-lopenblas -lpthread`) +# +# @example +# make +# +# @example +# make all +#/ +all: $(c_targets) + +.PHONY: all + +#/ +# Compiles C source files. +# +# @private +# @param {string} CC - C compiler (e.g., `gcc`) +# @param {string} CFLAGS - C compiler options +# @param {(string|void)} fPIC - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} INCLUDE - list of includes (e.g., `-I /foo/bar`) +# @param {string} SOURCE_FILES - list of source files +# @param {string} LIBPATH - list of library paths (e.g., `-L /foo/bar`) +# @param {string} LIBRARIES - list of libraries (e.g., `-lopenblas`) +#/ +$(c_targets): %.out: %.c + $(QUIET) $(CC) $(CFLAGS) $(fPIC) $(INCLUDE) -o $@ $(SOURCE_FILES) $< $(LIBPATH) -lm $(LIBRARIES) + +#/ +# Runs compiled examples. +# +# @example +# make run +#/ +run: $(c_targets) + $(QUIET) ./$< + +.PHONY: run + +#/ +# Removes generated files. +# +# @example +# make clean +#/ +clean: + $(QUIET) -rm -f *.o *.out + +.PHONY: clean From a9b0dca9d9eb8dba876f3e79b8811f6ae4e5ad7e Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Sat, 16 Nov 2024 18:53:51 +0600 Subject: [PATCH 05/63] git commit -m "added benchmark folder" --- .../cosc/benchmark/benchmark.native.js | 60 +++++++ .../special/cosc/benchmark/c/native/Makefile | 146 ++++++++++++++++++ .../cosc/benchmark/c/native/benchmark.c | 133 ++++++++++++++++ 3 files changed, 339 insertions(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/benchmark/benchmark.native.js create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/benchmark.native.js new file mode 100644 index 000000000000..b11de8199495 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/benchmark.native.js @@ -0,0 +1,60 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var resolve = require( 'path' ).resolve; +var bench = require( '@stdlib/bench' ); +var randu = require( '@stdlib/random/base/randu' ); +var isnan = require( '@stdlib/math/base/assert/is-nan' ); +var tryRequire = require( '@stdlib/utils/try-require' ); +var pkg = require( './../package.json' ).name; + + +// VARIABLES // + +var cosc = tryRequire( resolve( __dirname, './../lib/native.js' ) ); +var opts = { + 'skip': ( cosc instanceof Error ) +}; + + +// MAIN // + +bench( pkg+'::native', opts, function benchmark( b ) { + var x; + var y; + var i; + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + x = ( randu() * 2.0 ) - 2.0; + y = cosc( x ); + if ( isnan( y ) ) { + b.fail( 'should not return NaN' ); + } + } + b.toc(); + if ( isnan( y ) ) { + b.fail( 'should not return NaN' ); + } + b.pass( 'benchmark finished' ); + b.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/Makefile b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/Makefile new file mode 100644 index 000000000000..f69e9da2b4d3 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/Makefile @@ -0,0 +1,146 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2024 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + +# VARIABLES # + +ifndef VERBOSE + QUIET := @ +else + QUIET := +endif + +# Determine the OS ([1][1], [2][2]). +# +# [1]: https://en.wikipedia.org/wiki/Uname#Examples +# [2]: http://stackoverflow.com/a/27776822/2225624 +OS ?= $(shell uname) +ifneq (, $(findstring MINGW,$(OS))) + OS := WINNT +else +ifneq (, $(findstring MSYS,$(OS))) + OS := WINNT +else +ifneq (, $(findstring CYGWIN,$(OS))) + OS := WINNT +else +ifneq (, $(findstring Windows_NT,$(OS))) + OS := WINNT +endif +endif +endif +endif + +# Define the program used for compiling C source files: +ifdef C_COMPILER + CC := $(C_COMPILER) +else + CC := gcc +endif + +# Define the command-line options when compiling C files: +CFLAGS ?= \ + -std=c99 \ + -O3 \ + -Wall \ + -pedantic + +# Determine whether to generate position independent code ([1][1], [2][2]). +# +# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options +# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option +ifeq ($(OS), WINNT) + fPIC ?= +else + fPIC ?= -fPIC +endif + +# List of includes (e.g., `-I /foo/bar -I /beep/boop/include`): +INCLUDE ?= + +# List of source files: +SOURCE_FILES ?= + +# List of libraries (e.g., `-lopenblas -lpthread`): +LIBRARIES ?= + +# List of library paths (e.g., `-L /foo/bar -L /beep/boop`): +LIBPATH ?= + +# List of C targets: +c_targets := benchmark.out + + +# RULES # + +#/ +# Compiles source files. +# +# @param {string} [C_COMPILER] - C compiler (e.g., `gcc`) +# @param {string} [CFLAGS] - C compiler options +# @param {(string|void)} [fPIC] - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} [INCLUDE] - list of includes (e.g., `-I /foo/bar -I /beep/boop/include`) +# @param {string} [SOURCE_FILES] - list of source files +# @param {string} [LIBPATH] - list of library paths (e.g., `-L /foo/bar -L /beep/boop`) +# @param {string} [LIBRARIES] - list of libraries (e.g., `-lopenblas -lpthread`) +# +# @example +# make +# +# @example +# make all +#/ +all: $(c_targets) + +.PHONY: all + +#/ +# Compiles C source files. +# +# @private +# @param {string} CC - C compiler (e.g., `gcc`) +# @param {string} CFLAGS - C compiler options +# @param {(string|void)} fPIC - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} INCLUDE - list of includes (e.g., `-I /foo/bar`) +# @param {string} SOURCE_FILES - list of source files +# @param {string} LIBPATH - list of library paths (e.g., `-L /foo/bar`) +# @param {string} LIBRARIES - list of libraries (e.g., `-lopenblas`) +#/ +$(c_targets): %.out: %.c + $(QUIET) $(CC) $(CFLAGS) $(fPIC) $(INCLUDE) -o $@ $(SOURCE_FILES) $< $(LIBPATH) -lm $(LIBRARIES) + +#/ +# Runs compiled benchmarks. +# +# @example +# make run +#/ +run: $(c_targets) + $(QUIET) ./$< + +.PHONY: run + +#/ +# Removes generated files. +# +# @example +# make clean +#/ +clean: + $(QUIET) -rm -f *.o *.out + +.PHONY: clean diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c new file mode 100644 index 000000000000..3cfe6cf00dbb --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c @@ -0,0 +1,133 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include "stdlib/math/base/special/cosc.h" +#include +#include +#include +#include +#include + +#define NAME "cosc" +#define ITERATIONS 1000000 +#define REPEATS 3 + +/** +* Prints the TAP version. +*/ +static void print_version( void ) { + printf( "TAP version 13\n" ); +} + +/** +* Prints the TAP summary. +* +* @param total total number of tests +* @param passing total number of passing tests +*/ +static void print_summary( int total, int passing ) { + printf( "#\n" ); + printf( "1..%d\n", total ); // TAP plan + printf( "# total %d\n", total ); + printf( "# pass %d\n", passing ); + printf( "#\n" ); + printf( "# ok\n" ); +} + +/** +* Prints benchmarks results. +* +* @param elapsed elapsed time in seconds +*/ +static void print_results( double elapsed ) { + double rate = (double)ITERATIONS / elapsed; + printf( " ---\n" ); + printf( " iterations: %d\n", ITERATIONS ); + printf( " elapsed: %0.9f\n", elapsed ); + printf( " rate: %0.9f\n", rate ); + printf( " ...\n" ); +} + +/** +* Returns a clock time. +* +* @return clock time +*/ +static double tic( void ) { + struct timeval now; + gettimeofday( &now, NULL ); + return (double)now.tv_sec + (double)now.tv_usec/1.0e6; +} + +/** +* Generates a random number on the interval [0,1). +* +* @return random number +*/ +static double rand_double( void ) { + int r = rand(); + return (double)r / ( (double)RAND_MAX + 1.0 ); +} + +/** +* Runs a benchmark. +* +* @return elapsed time in seconds +*/ +static double benchmark( void ) { + double elapsed; + double x; + double y; + double t; + int i; + + t = tic(); + for ( i = 0; i < ITERATIONS; i++ ) { + x = ( 2.0 * rand_double() ) - 2.0; + y = stdlib_base_cosc( x ); + if ( y != y ) { + printf( "should not return NaN\n" ); + break; + } + } + elapsed = tic() - t; + if ( y != y ) { + printf( "should not return NaN\n" ); + } + return elapsed; +} + +/** +* Main execution sequence. +*/ +int main( void ) { + double elapsed; + int i; + + // 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 ); +} From 61bdb50ce33402e74ddaa65c567c9b42f1fe7a30 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Sat, 16 Nov 2024 19:03:10 +0600 Subject: [PATCH 06/63] "deleted benchmark" --- .../cosc/benchmark/benchmark.native.js | 60 ------- .../special/cosc/benchmark/c/native/Makefile | 146 ------------------ .../cosc/benchmark/c/native/benchmark.c | 133 ---------------- 3 files changed, 339 deletions(-) delete mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/benchmark/benchmark.native.js delete mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/Makefile delete mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/benchmark.native.js deleted file mode 100644 index b11de8199495..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/benchmark.native.js +++ /dev/null @@ -1,60 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2024 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -'use strict'; - -// MODULES // - -var resolve = require( 'path' ).resolve; -var bench = require( '@stdlib/bench' ); -var randu = require( '@stdlib/random/base/randu' ); -var isnan = require( '@stdlib/math/base/assert/is-nan' ); -var tryRequire = require( '@stdlib/utils/try-require' ); -var pkg = require( './../package.json' ).name; - - -// VARIABLES // - -var cosc = tryRequire( resolve( __dirname, './../lib/native.js' ) ); -var opts = { - 'skip': ( cosc instanceof Error ) -}; - - -// MAIN // - -bench( pkg+'::native', opts, function benchmark( b ) { - var x; - var y; - var i; - - b.tic(); - for ( i = 0; i < b.iterations; i++ ) { - x = ( randu() * 2.0 ) - 2.0; - y = cosc( x ); - if ( isnan( y ) ) { - b.fail( 'should not return NaN' ); - } - } - b.toc(); - if ( isnan( y ) ) { - b.fail( 'should not return NaN' ); - } - b.pass( 'benchmark finished' ); - b.end(); -}); diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/Makefile b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/Makefile deleted file mode 100644 index f69e9da2b4d3..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/Makefile +++ /dev/null @@ -1,146 +0,0 @@ -#/ -# @license Apache-2.0 -# -# Copyright (c) 2024 The Stdlib Authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -#/ - -# VARIABLES # - -ifndef VERBOSE - QUIET := @ -else - QUIET := -endif - -# Determine the OS ([1][1], [2][2]). -# -# [1]: https://en.wikipedia.org/wiki/Uname#Examples -# [2]: http://stackoverflow.com/a/27776822/2225624 -OS ?= $(shell uname) -ifneq (, $(findstring MINGW,$(OS))) - OS := WINNT -else -ifneq (, $(findstring MSYS,$(OS))) - OS := WINNT -else -ifneq (, $(findstring CYGWIN,$(OS))) - OS := WINNT -else -ifneq (, $(findstring Windows_NT,$(OS))) - OS := WINNT -endif -endif -endif -endif - -# Define the program used for compiling C source files: -ifdef C_COMPILER - CC := $(C_COMPILER) -else - CC := gcc -endif - -# Define the command-line options when compiling C files: -CFLAGS ?= \ - -std=c99 \ - -O3 \ - -Wall \ - -pedantic - -# Determine whether to generate position independent code ([1][1], [2][2]). -# -# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options -# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option -ifeq ($(OS), WINNT) - fPIC ?= -else - fPIC ?= -fPIC -endif - -# List of includes (e.g., `-I /foo/bar -I /beep/boop/include`): -INCLUDE ?= - -# List of source files: -SOURCE_FILES ?= - -# List of libraries (e.g., `-lopenblas -lpthread`): -LIBRARIES ?= - -# List of library paths (e.g., `-L /foo/bar -L /beep/boop`): -LIBPATH ?= - -# List of C targets: -c_targets := benchmark.out - - -# RULES # - -#/ -# Compiles source files. -# -# @param {string} [C_COMPILER] - C compiler (e.g., `gcc`) -# @param {string} [CFLAGS] - C compiler options -# @param {(string|void)} [fPIC] - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) -# @param {string} [INCLUDE] - list of includes (e.g., `-I /foo/bar -I /beep/boop/include`) -# @param {string} [SOURCE_FILES] - list of source files -# @param {string} [LIBPATH] - list of library paths (e.g., `-L /foo/bar -L /beep/boop`) -# @param {string} [LIBRARIES] - list of libraries (e.g., `-lopenblas -lpthread`) -# -# @example -# make -# -# @example -# make all -#/ -all: $(c_targets) - -.PHONY: all - -#/ -# Compiles C source files. -# -# @private -# @param {string} CC - C compiler (e.g., `gcc`) -# @param {string} CFLAGS - C compiler options -# @param {(string|void)} fPIC - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) -# @param {string} INCLUDE - list of includes (e.g., `-I /foo/bar`) -# @param {string} SOURCE_FILES - list of source files -# @param {string} LIBPATH - list of library paths (e.g., `-L /foo/bar`) -# @param {string} LIBRARIES - list of libraries (e.g., `-lopenblas`) -#/ -$(c_targets): %.out: %.c - $(QUIET) $(CC) $(CFLAGS) $(fPIC) $(INCLUDE) -o $@ $(SOURCE_FILES) $< $(LIBPATH) -lm $(LIBRARIES) - -#/ -# Runs compiled benchmarks. -# -# @example -# make run -#/ -run: $(c_targets) - $(QUIET) ./$< - -.PHONY: run - -#/ -# Removes generated files. -# -# @example -# make clean -#/ -clean: - $(QUIET) -rm -f *.o *.out - -.PHONY: clean diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c deleted file mode 100644 index 3cfe6cf00dbb..000000000000 --- a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c +++ /dev/null @@ -1,133 +0,0 @@ -/** -* @license Apache-2.0 -* -* Copyright (c) 2024 The Stdlib Authors. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ - -#include "stdlib/math/base/special/cosc.h" -#include -#include -#include -#include -#include - -#define NAME "cosc" -#define ITERATIONS 1000000 -#define REPEATS 3 - -/** -* Prints the TAP version. -*/ -static void print_version( void ) { - printf( "TAP version 13\n" ); -} - -/** -* Prints the TAP summary. -* -* @param total total number of tests -* @param passing total number of passing tests -*/ -static void print_summary( int total, int passing ) { - printf( "#\n" ); - printf( "1..%d\n", total ); // TAP plan - printf( "# total %d\n", total ); - printf( "# pass %d\n", passing ); - printf( "#\n" ); - printf( "# ok\n" ); -} - -/** -* Prints benchmarks results. -* -* @param elapsed elapsed time in seconds -*/ -static void print_results( double elapsed ) { - double rate = (double)ITERATIONS / elapsed; - printf( " ---\n" ); - printf( " iterations: %d\n", ITERATIONS ); - printf( " elapsed: %0.9f\n", elapsed ); - printf( " rate: %0.9f\n", rate ); - printf( " ...\n" ); -} - -/** -* Returns a clock time. -* -* @return clock time -*/ -static double tic( void ) { - struct timeval now; - gettimeofday( &now, NULL ); - return (double)now.tv_sec + (double)now.tv_usec/1.0e6; -} - -/** -* Generates a random number on the interval [0,1). -* -* @return random number -*/ -static double rand_double( void ) { - int r = rand(); - return (double)r / ( (double)RAND_MAX + 1.0 ); -} - -/** -* Runs a benchmark. -* -* @return elapsed time in seconds -*/ -static double benchmark( void ) { - double elapsed; - double x; - double y; - double t; - int i; - - t = tic(); - for ( i = 0; i < ITERATIONS; i++ ) { - x = ( 2.0 * rand_double() ) - 2.0; - y = stdlib_base_cosc( x ); - if ( y != y ) { - printf( "should not return NaN\n" ); - break; - } - } - elapsed = tic() - t; - if ( y != y ) { - printf( "should not return NaN\n" ); - } - return elapsed; -} - -/** -* Main execution sequence. -*/ -int main( void ) { - double elapsed; - int i; - - // 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 ); -} From 4dbbcbd33107e993bfd1fe068836495200060098 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Sat, 16 Nov 2024 19:07:34 +0600 Subject: [PATCH 07/63] added benchmark.native.js file --- .../@stdlib/math/base/special/cosc/benchmark/benchmark.native.js | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/benchmark/benchmark.native.js diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/benchmark.native.js new file mode 100644 index 000000000000..e69de29bb2d1 From df179984a38b25a23ab0c53bb5ca1b4346a09f85 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Sat, 16 Nov 2024 19:11:03 +0600 Subject: [PATCH 08/63] added benchmark.c file --- .../cosc/benchmark/benchmark.native.js | 60 +++++++++++++++++++ .../cosc/benchmark/c/native/benchmark.c | 0 2 files changed, 60 insertions(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/benchmark.native.js index e69de29bb2d1..b11de8199495 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/benchmark.native.js +++ b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/benchmark.native.js @@ -0,0 +1,60 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var resolve = require( 'path' ).resolve; +var bench = require( '@stdlib/bench' ); +var randu = require( '@stdlib/random/base/randu' ); +var isnan = require( '@stdlib/math/base/assert/is-nan' ); +var tryRequire = require( '@stdlib/utils/try-require' ); +var pkg = require( './../package.json' ).name; + + +// VARIABLES // + +var cosc = tryRequire( resolve( __dirname, './../lib/native.js' ) ); +var opts = { + 'skip': ( cosc instanceof Error ) +}; + + +// MAIN // + +bench( pkg+'::native', opts, function benchmark( b ) { + var x; + var y; + var i; + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + x = ( randu() * 2.0 ) - 2.0; + y = cosc( x ); + if ( isnan( y ) ) { + b.fail( 'should not return NaN' ); + } + } + b.toc(); + if ( isnan( y ) ) { + b.fail( 'should not return NaN' ); + } + b.pass( 'benchmark finished' ); + b.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c new file mode 100644 index 000000000000..e69de29bb2d1 From 281b6647e34b38737979cac51e1208d6274fba4d Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Sat, 16 Nov 2024 19:13:03 +0600 Subject: [PATCH 09/63] added makefile inside native folder --- .../special/cosc/benchmark/c/native/Makefile | 0 .../cosc/benchmark/c/native/benchmark.c | 133 ++++++++++++++++++ 2 files changed, 133 insertions(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/Makefile diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/Makefile b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/Makefile new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c index e69de29bb2d1..3cfe6cf00dbb 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c +++ b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c @@ -0,0 +1,133 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include "stdlib/math/base/special/cosc.h" +#include +#include +#include +#include +#include + +#define NAME "cosc" +#define ITERATIONS 1000000 +#define REPEATS 3 + +/** +* Prints the TAP version. +*/ +static void print_version( void ) { + printf( "TAP version 13\n" ); +} + +/** +* Prints the TAP summary. +* +* @param total total number of tests +* @param passing total number of passing tests +*/ +static void print_summary( int total, int passing ) { + printf( "#\n" ); + printf( "1..%d\n", total ); // TAP plan + printf( "# total %d\n", total ); + printf( "# pass %d\n", passing ); + printf( "#\n" ); + printf( "# ok\n" ); +} + +/** +* Prints benchmarks results. +* +* @param elapsed elapsed time in seconds +*/ +static void print_results( double elapsed ) { + double rate = (double)ITERATIONS / elapsed; + printf( " ---\n" ); + printf( " iterations: %d\n", ITERATIONS ); + printf( " elapsed: %0.9f\n", elapsed ); + printf( " rate: %0.9f\n", rate ); + printf( " ...\n" ); +} + +/** +* Returns a clock time. +* +* @return clock time +*/ +static double tic( void ) { + struct timeval now; + gettimeofday( &now, NULL ); + return (double)now.tv_sec + (double)now.tv_usec/1.0e6; +} + +/** +* Generates a random number on the interval [0,1). +* +* @return random number +*/ +static double rand_double( void ) { + int r = rand(); + return (double)r / ( (double)RAND_MAX + 1.0 ); +} + +/** +* Runs a benchmark. +* +* @return elapsed time in seconds +*/ +static double benchmark( void ) { + double elapsed; + double x; + double y; + double t; + int i; + + t = tic(); + for ( i = 0; i < ITERATIONS; i++ ) { + x = ( 2.0 * rand_double() ) - 2.0; + y = stdlib_base_cosc( x ); + if ( y != y ) { + printf( "should not return NaN\n" ); + break; + } + } + elapsed = tic() - t; + if ( y != y ) { + printf( "should not return NaN\n" ); + } + return elapsed; +} + +/** +* Main execution sequence. +*/ +int main( void ) { + double elapsed; + int i; + + // 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 ); +} From 383a46d328a54e67481cb9b7dab2778c6e3440da Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Sat, 16 Nov 2024 19:18:33 +0600 Subject: [PATCH 10/63] Markfile --- .../special/cosc/benchmark/c/native/Makefile | 146 ++++++++++++++++++ 1 file changed, 146 insertions(+) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/Makefile b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/Makefile index e69de29bb2d1..f69e9da2b4d3 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/Makefile +++ b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/Makefile @@ -0,0 +1,146 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2024 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + +# VARIABLES # + +ifndef VERBOSE + QUIET := @ +else + QUIET := +endif + +# Determine the OS ([1][1], [2][2]). +# +# [1]: https://en.wikipedia.org/wiki/Uname#Examples +# [2]: http://stackoverflow.com/a/27776822/2225624 +OS ?= $(shell uname) +ifneq (, $(findstring MINGW,$(OS))) + OS := WINNT +else +ifneq (, $(findstring MSYS,$(OS))) + OS := WINNT +else +ifneq (, $(findstring CYGWIN,$(OS))) + OS := WINNT +else +ifneq (, $(findstring Windows_NT,$(OS))) + OS := WINNT +endif +endif +endif +endif + +# Define the program used for compiling C source files: +ifdef C_COMPILER + CC := $(C_COMPILER) +else + CC := gcc +endif + +# Define the command-line options when compiling C files: +CFLAGS ?= \ + -std=c99 \ + -O3 \ + -Wall \ + -pedantic + +# Determine whether to generate position independent code ([1][1], [2][2]). +# +# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options +# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option +ifeq ($(OS), WINNT) + fPIC ?= +else + fPIC ?= -fPIC +endif + +# List of includes (e.g., `-I /foo/bar -I /beep/boop/include`): +INCLUDE ?= + +# List of source files: +SOURCE_FILES ?= + +# List of libraries (e.g., `-lopenblas -lpthread`): +LIBRARIES ?= + +# List of library paths (e.g., `-L /foo/bar -L /beep/boop`): +LIBPATH ?= + +# List of C targets: +c_targets := benchmark.out + + +# RULES # + +#/ +# Compiles source files. +# +# @param {string} [C_COMPILER] - C compiler (e.g., `gcc`) +# @param {string} [CFLAGS] - C compiler options +# @param {(string|void)} [fPIC] - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} [INCLUDE] - list of includes (e.g., `-I /foo/bar -I /beep/boop/include`) +# @param {string} [SOURCE_FILES] - list of source files +# @param {string} [LIBPATH] - list of library paths (e.g., `-L /foo/bar -L /beep/boop`) +# @param {string} [LIBRARIES] - list of libraries (e.g., `-lopenblas -lpthread`) +# +# @example +# make +# +# @example +# make all +#/ +all: $(c_targets) + +.PHONY: all + +#/ +# Compiles C source files. +# +# @private +# @param {string} CC - C compiler (e.g., `gcc`) +# @param {string} CFLAGS - C compiler options +# @param {(string|void)} fPIC - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} INCLUDE - list of includes (e.g., `-I /foo/bar`) +# @param {string} SOURCE_FILES - list of source files +# @param {string} LIBPATH - list of library paths (e.g., `-L /foo/bar`) +# @param {string} LIBRARIES - list of libraries (e.g., `-lopenblas`) +#/ +$(c_targets): %.out: %.c + $(QUIET) $(CC) $(CFLAGS) $(fPIC) $(INCLUDE) -o $@ $(SOURCE_FILES) $< $(LIBPATH) -lm $(LIBRARIES) + +#/ +# Runs compiled benchmarks. +# +# @example +# make run +#/ +run: $(c_targets) + $(QUIET) ./$< + +.PHONY: run + +#/ +# Removes generated files. +# +# @example +# make clean +#/ +clean: + $(QUIET) -rm -f *.o *.out + +.PHONY: clean From b2262e3a41077bf2de1875bb21ddd8e700a78002 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Sat, 16 Nov 2024 19:22:12 +0600 Subject: [PATCH 11/63] added cosc.h file --- .../base/special/cosc/include/stdlib/math/base/special/cosc.h | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/include/stdlib/math/base/special/cosc.h diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/include/stdlib/math/base/special/cosc.h b/lib/node_modules/@stdlib/math/base/special/cosc/include/stdlib/math/base/special/cosc.h new file mode 100644 index 000000000000..e69de29bb2d1 From e71fa6704cd72c7862f9f44cf56237bc35c2f296 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Sat, 16 Nov 2024 19:24:01 +0600 Subject: [PATCH 12/63] added cosc.h file --- .../include/stdlib/math/base/special/cosc.h | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/include/stdlib/math/base/special/cosc.h b/lib/node_modules/@stdlib/math/base/special/cosc/include/stdlib/math/base/special/cosc.h index e69de29bb2d1..15d9b1eab778 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/include/stdlib/math/base/special/cosc.h +++ b/lib/node_modules/@stdlib/math/base/special/cosc/include/stdlib/math/base/special/cosc.h @@ -0,0 +1,38 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#ifndef STDLIB_MATH_BASE_SPECIAL_COSC_H +#define STDLIB_MATH_BASE_SPECIAL_COSC_H + +/* +* If C++, prevent name mangling so that the compiler emits a binary file having undecorated names, thus mirroring the behavior of a C compiler. +*/ +#ifdef __cplusplus +extern "C" { +#endif + +/** +* Computes the normalized derivative of cardinal sine of a number. +*/ +double stdlib_base_cosc( const double x ); + +#ifdef __cplusplus +} +#endif + +#endif // !STDLIB_MATH_BASE_SPECIAL_COSC_H From 8094f83e9b987c87048337d6f692a268784ebb4e Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Sat, 16 Nov 2024 19:27:44 +0600 Subject: [PATCH 13/63] added src file --- lib/node_modules/@stdlib/math/base/special/cosc/src/Makefile | 0 lib/node_modules/@stdlib/math/base/special/cosc/src/addon.c | 0 lib/node_modules/@stdlib/math/base/special/cosc/src/main.c | 0 3 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/src/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/src/addon.c create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/src/main.c diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/src/Makefile b/lib/node_modules/@stdlib/math/base/special/cosc/src/Makefile new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/src/addon.c b/lib/node_modules/@stdlib/math/base/special/cosc/src/addon.c new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/src/main.c b/lib/node_modules/@stdlib/math/base/special/cosc/src/main.c new file mode 100644 index 000000000000..e69de29bb2d1 From 435f5d4d3faad0019f96780bdcaec3d1839068d5 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Sat, 16 Nov 2024 19:29:37 +0600 Subject: [PATCH 14/63] added addon.c file --- .../math/base/special/cosc/src/Makefile | 0 .../math/base/special/cosc/src/addon.c | 22 +++++++++++++++++++ 2 files changed, 22 insertions(+) delete mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/src/Makefile diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/src/Makefile b/lib/node_modules/@stdlib/math/base/special/cosc/src/Makefile deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/src/addon.c b/lib/node_modules/@stdlib/math/base/special/cosc/src/addon.c index e69de29bb2d1..9137a9500f37 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/src/addon.c +++ b/lib/node_modules/@stdlib/math/base/special/cosc/src/addon.c @@ -0,0 +1,22 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include "stdlib/math/base/special/cosc.h" +#include "stdlib/math/base/napi/unary.h" + +STDLIB_MATH_BASE_NAPI_MODULE_D_D( stdlib_base_cosc ) From ac8d20604df11b44ffabb5bae139f577ef3d7e7f Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Sat, 16 Nov 2024 19:36:07 +0600 Subject: [PATCH 15/63] added makefile inside src --- lib/node_modules/@stdlib/math/base/special/cosc/src/Makefile | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/src/Makefile diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/src/Makefile b/lib/node_modules/@stdlib/math/base/special/cosc/src/Makefile new file mode 100644 index 000000000000..e69de29bb2d1 From 3a5ce4450338472962a06927e6024fa1b6ebaa65 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Sat, 16 Nov 2024 19:38:26 +0600 Subject: [PATCH 16/63] added main.c and Makefile --- .../math/base/special/cosc/src/Makefile | 70 +++++++++++++++++++ .../@stdlib/math/base/special/cosc/src/main.c | 66 +++++++++++++++++ 2 files changed, 136 insertions(+) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/src/Makefile b/lib/node_modules/@stdlib/math/base/special/cosc/src/Makefile index e69de29bb2d1..bcf18aa46655 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/src/Makefile +++ b/lib/node_modules/@stdlib/math/base/special/cosc/src/Makefile @@ -0,0 +1,70 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2024 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + +# VARIABLES # + +ifndef VERBOSE + QUIET := @ +else + QUIET := +endif + +# Determine the OS ([1][1], [2][2]). +# +# [1]: https://en.wikipedia.org/wiki/Uname#Examples +# [2]: http://stackoverflow.com/a/27776822/2225624 +OS ?= $(shell uname) +ifneq (, $(findstring MINGW,$(OS))) + OS := WINNT +else +ifneq (, $(findstring MSYS,$(OS))) + OS := WINNT +else +ifneq (, $(findstring CYGWIN,$(OS))) + OS := WINNT +else +ifneq (, $(findstring Windows_NT,$(OS))) + OS := WINNT +endif +endif +endif +endif + + +# RULES # + +#/ +# Removes generated files for building an add-on. +# +# @example +# make clean-addon +#/ +clean-addon: + $(QUIET) -rm -f *.o *.node + +.PHONY: clean-addon + +#/ +# Removes generated files. +# +# @example +# make clean +#/ +clean: clean-addon + +.PHONY: clean diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/src/main.c b/lib/node_modules/@stdlib/math/base/special/cosc/src/main.c index e69de29bb2d1..06749206d509 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/src/main.c +++ b/lib/node_modules/@stdlib/math/base/special/cosc/src/main.c @@ -0,0 +1,66 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include "stdlib/math/base/special/cosc.h" +#include "stdlib/math/base/special/sinpi.h" +#include "stdlib/math/base/special/cospi.h" +#include "stdlib/math/base/assert/is_nan.h" +#include "stdlib/math/base/assert/is_infinite.h" +#include "stdlib/constants/float64/pi.h" + +/** +* Computes the normalized derivative of cardinal sine of a number. +* +* ## Method +* +* For \\( x \neq 0 \\), the normalized derivative of cardinal sine is calculated as +* +* ```tex +*\operatorname{cosc}(x) = \frac{{\operatorname{cos}(\pi x)}-\frac{\operatorname{sin}(\pi x)}{\pi x}}{x}. +* ``` +* +* ## Special Cases +* +* ```tex +* \begin{align*} +* \operatorname{cosc}(0) &= 0 & \\ +* \operatorname{cosc}(\infty) &= 0 & \\ +* \operatorname{cosc}(-\infty) &= 0 & \\ +* \operatorname{cosc}(\mathrm{NaN}) &= \mathrm{NaN} +* \end{align*} +* ``` +* +* @param x input value +* @return derivative of cardinal sine +* +* @example +* double y = stdlib_base_cosc( 0.5 ); +* // returns ~-1.273 +*/ +double stdlib_base_cosc( const double x ) { + if ( stdlib_base_is_nan( x ) ) { + return 0.0 / 0.0; // NaN + } + if ( stdlib_base_is_infinite( x ) ) { + return 0.0; + } + if ( x == 0.0 ) { + return 0.0; + } + return (stdlib_base_cospi( x ) - (stdlib_base_sinpi( x )/(STDLIB_CONSTANT_FLOAT64_PI * x))) / x; +} From 8f43f70c1fd15da8b0bd383e139f5d955720526f Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Sat, 16 Nov 2024 19:42:15 +0600 Subject: [PATCH 17/63] added test file --- .../@stdlib/math/base/special/cosc/test/test.native.js | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/test/test.native.js diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/cosc/test/test.native.js new file mode 100644 index 000000000000..e69de29bb2d1 From 8063c8c1c3a4e83407f1b64c8bbdc87cfedd8f42 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Sat, 16 Nov 2024 19:43:28 +0600 Subject: [PATCH 18/63] added test.native.js --- .../base/special/cosc/test/test.native.js | 197 ++++++++++++++++++ 1 file changed, 197 insertions(+) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/cosc/test/test.native.js index e69de29bb2d1..0245b36b6ef7 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/test/test.native.js +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/test.native.js @@ -0,0 +1,197 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var resolve = require( 'path' ).resolve; +var tape = require( 'tape' ); +var isnan = require( '@stdlib/math/base/assert/is-nan' ); +var PINF = require( '@stdlib/constants/float64/pinf' ); +var NINF = require( '@stdlib/constants/float64/ninf' ); +var EPS = require( '@stdlib/constants/float64/eps' ); +var abs = require( '@stdlib/math/base/special/abs' ); +var tryRequire = require( '@stdlib/utils/try-require' ); + + +// FIXTURES // + +var data = require( './fixtures/julia/data.json' ); +var largeNegative = require( './fixtures/julia/large_negative.json' ); +var largePositive = require( './fixtures/julia/large_positive.json' ); +var tinyNegative = require( './fixtures/julia/tiny_negative.json' ); +var tinyPositive = require( './fixtures/julia/tiny_positive.json' ); + + +// VARIABLES // + +var cosc = tryRequire( resolve( __dirname, './../lib/native.js' ) ); +var opts = { + 'skip': ( cosc instanceof Error ) +}; + + +// TESTS // + +tape( 'main export is a function', opts, function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof cosc, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'the function computes the derivative of cardinal sine', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + x = data.x; + expected = data.expected; + + for ( i = 0; i < x.length; i++ ) { + y = cosc( x[i] ); + if ( y === expected[ i ] ) { + t.equal( y, expected[ i ], 'x: '+x[i]+'. Expected: '+expected[i] ); + } else { + delta = abs( y - expected[i] ); + tol = 2.0 * EPS * abs( expected[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y+'. Expected: '+expected[i]+'. Tolerance: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the cardinal cose (large negative)', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + x = largeNegative.x; + expected = largeNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + y = cosc( x[i] ); + if ( y === expected[ i ] ) { + t.equal( y, expected[ i ], 'x: '+x[i]+'. Expected: '+expected[i] ); + } else { + delta = abs( y - expected[i] ); + tol = 2.0 * EPS * abs( expected[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y+'. Expected: '+expected[i]+'. Tolerance: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the derivative of cardinal sine (large positive)', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + x = largePositive.x; + expected = largePositive.expected; + + for ( i = 0; i < x.length; i++ ) { + y = cosc( x[i] ); + if ( y === expected[ i ] ) { + t.equal( y, expected[ i ], 'x: '+x[i]+'. Expected: '+expected[i] ); + } else { + delta = abs( y - expected[i] ); + tol = 2.0 * EPS * abs( expected[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y+'. Expected: '+expected[i]+'. Tolerance: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the derivative of cardinal sine (tiny negative)', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + x = tinyNegative.x; + expected = tinyNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + y = cosc( x[i] ); + if ( y === expected[ i ] ) { + t.equal( y, expected[ i ], 'x: '+x[i]+'. Expected: '+expected[i] ); + } else { + delta = abs( y - expected[i] ); + tol = EPS * abs( expected[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y+'. Expected: '+expected[i]+'. Tolerance: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the derivative of cardinal sine (tiny positive)', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + x = tinyPositive.x; + expected = tinyPositive.expected; + + for ( i = 0; i < x.length; i++ ) { + y = cosc( x[i] ); + if ( y === expected[ i ] ) { + t.equal( y, expected[ i ], 'x: '+x[i]+'. Expected: '+expected[i] ); + } else { + delta = abs( y - expected[i] ); + tol = EPS * abs( expected[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y+'. Expected: '+expected[i]+'. Tolerance: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function returns `NaN` if provided a `NaN`', opts, function test( t ) { + var v = cosc( NaN ); + t.equal( isnan( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns `0.0` if provided `0.0`', opts, function test( t ) { + var v = cosc( 0.0 ); + t.equal( v, 0.0, 'returns 0.0' ); + t.end(); +}); + +tape( 'the function returns `0.0` if provided positive or negative infinity', opts, function test( t ) { + var v = cosc( PINF ); + t.equal( v, 0.0, 'returns 0.0' ); + + v = cosc( NINF ); + t.equal( v, 0.0, 'returns 0.0' ); + t.end(); +}); From bff2f494c3cd60ee73cb040dc7f52fc39d700b57 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Sat, 16 Nov 2024 19:45:26 +0600 Subject: [PATCH 19/63] added binding.gyp file --- lib/node_modules/@stdlib/math/base/special/cosc/binding.gyp | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/binding.gyp diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/binding.gyp b/lib/node_modules/@stdlib/math/base/special/cosc/binding.gyp new file mode 100644 index 000000000000..e69de29bb2d1 From 61326c6c364d9d9d9810c214726479c481d6fd41 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Sat, 16 Nov 2024 19:46:57 +0600 Subject: [PATCH 20/63] added binding.gyp file --- .../math/base/special/cosc/binding.gyp | 170 ++++++++++++++++++ 1 file changed, 170 insertions(+) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/binding.gyp b/lib/node_modules/@stdlib/math/base/special/cosc/binding.gyp index e69de29bb2d1..ec3992233442 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/binding.gyp +++ b/lib/node_modules/@stdlib/math/base/special/cosc/binding.gyp @@ -0,0 +1,170 @@ +# @license Apache-2.0 +# +# Copyright (c) 2024 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# A `.gyp` file for building a Node.js native add-on. +# +# [1]: https://gyp.gsrc.io/docs/InputFormatReference.md +# [2]: https://gyp.gsrc.io/docs/UserDocumentation.md +{ + # List of files to include in this file: + 'includes': [ + './include.gypi', + ], + + # Define variables to be used throughout the configuration for all targets: + 'variables': { + # Target name should match the add-on export name: + 'addon_target_name%': 'addon', + + # Set variables based on the host OS: + 'conditions': [ + [ + 'OS=="win"', + { + # Define the object file suffix: + 'obj': 'obj', + }, + { + # Define the object file suffix: + 'obj': 'o', + } + ], # end condition (OS=="win") + ], # end conditions + }, # end variables + + # Define compile targets: + 'targets': [ + + # Target to generate an add-on: + { + # The target name should match the add-on export name: + 'target_name': '<(addon_target_name)', + + # Define dependencies: + 'dependencies': [], + + # Define directories which contain relevant include headers: + 'include_dirs': [ + # Local include directory: + '<@(include_dirs)', + ], + + # List of source files: + 'sources': [ + '<@(src_files)', + ], + + # Settings which should be applied when a target's object files are used as linker input: + 'link_settings': { + # Define libraries: + 'libraries': [ + '<@(libraries)', + ], + + # Define library directories: + 'library_dirs': [ + '<@(library_dirs)', + ], + }, + + # C/C++ compiler flags: + 'cflags': [ + # Enable commonly used warning options: + '-Wall', + + # Aggressive optimization: + '-O3', + ], + + # C specific compiler flags: + 'cflags_c': [ + # Specify the C standard to which a program is expected to conform: + '-std=c99', + ], + + # C++ specific compiler flags: + 'cflags_cpp': [ + # Specify the C++ standard to which a program is expected to conform: + '-std=c++11', + ], + + # Linker flags: + 'ldflags': [], + + # Apply conditions based on the host OS: + 'conditions': [ + [ + 'OS=="mac"', + { + # Linker flags: + 'ldflags': [ + '-undefined dynamic_lookup', + '-Wl,-no-pie', + '-Wl,-search_paths_first', + ], + }, + ], # end condition (OS=="mac") + [ + 'OS!="win"', + { + # C/C++ flags: + 'cflags': [ + # Generate platform-independent code: + '-fPIC', + ], + }, + ], # end condition (OS!="win") + ], # end conditions + }, # end target <(addon_target_name) + + # Target to copy a generated add-on to a standard location: + { + 'target_name': 'copy_addon', + + # Declare that the output of this target is not linked: + 'type': 'none', + + # Define dependencies: + 'dependencies': [ + # Require that the add-on be generated before building this target: + '<(addon_target_name)', + ], + + # Define a list of actions: + 'actions': [ + { + 'action_name': 'copy_addon', + 'message': 'Copying addon...', + + # Explicitly list the inputs in the command-line invocation below: + 'inputs': [], + + # Declare the expected outputs: + 'outputs': [ + '<(addon_output_dir)/<(addon_target_name).node', + ], + + # Define the command-line invocation: + 'action': [ + 'cp', + '<(PRODUCT_DIR)/<(addon_target_name).node', + '<(addon_output_dir)/<(addon_target_name).node', + ], + }, + ], # end actions + }, # end target copy_addon + ], # end targets +} From 12446396b6cf020da7ad2d6a0a151a30ec3ebcf4 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Sat, 16 Nov 2024 19:48:39 +0600 Subject: [PATCH 21/63] added include.gypi file --- lib/node_modules/@stdlib/math/base/special/cosc/include.gypi | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/include.gypi diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/include.gypi b/lib/node_modules/@stdlib/math/base/special/cosc/include.gypi new file mode 100644 index 000000000000..e69de29bb2d1 From 3577eede3afd4a238ddf4924e23b9bc8eaf1a403 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Sat, 16 Nov 2024 19:49:54 +0600 Subject: [PATCH 22/63] added include.gypi --- .../math/base/special/cosc/include.gypi | 53 +++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/include.gypi b/lib/node_modules/@stdlib/math/base/special/cosc/include.gypi index e69de29bb2d1..575cb043c0bf 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/include.gypi +++ b/lib/node_modules/@stdlib/math/base/special/cosc/include.gypi @@ -0,0 +1,53 @@ +# @license Apache-2.0 +# +# Copyright (c) 2024 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# A GYP include file for building a Node.js native add-on. +# +# Main documentation: +# +# [1]: https://gyp.gsrc.io/docs/InputFormatReference.md +# [2]: https://gyp.gsrc.io/docs/UserDocumentation.md +{ + # Define variables to be used throughout the configuration for all targets: + 'variables': { + # Source directory: + 'src_dir': './src', + + # Include directories: + 'include_dirs': [ + ' Date: Sat, 16 Nov 2024 20:03:29 +0600 Subject: [PATCH 23/63] "added manifest.json file" --- .../math/base/special/cosc/manifest.json | 91 +++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/manifest.json diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/manifest.json b/lib/node_modules/@stdlib/math/base/special/cosc/manifest.json new file mode 100644 index 000000000000..e0095fd76ba0 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/cosc/manifest.json @@ -0,0 +1,91 @@ +{ + "options": { + "task": "build" + }, + "fields": [ + { + "field": "src", + "resolve": true, + "relative": true + }, + { + "field": "include", + "resolve": true, + "relative": true + }, + { + "field": "libraries", + "resolve": false, + "relative": false + }, + { + "field": "libpath", + "resolve": true, + "relative": false + } + ], + "confs": [ + { + "task": "build", + "src": [ + "./src/main.c" + ], + "include": [ + "./include" + ], + "libraries": [ + "-lm" + ], + "libpath": [], + "dependencies": [ + "@stdlib/math/base/napi/unary", + "@stdlib/math/base/assert/is-nan", + "@stdlib/math/base/assert/is-infinite", + "@stdlib/constants/float64/pi", + "@stdlib/math/base/special/sinpi", + "@stdlib/math/base/special/cospi" + ] + }, + { + "task": "benchmark", + "src": [ + "./src/main.c" + ], + "include": [ + "./include" + ], + "libraries": [ + "-lm" + ], + "libpath": [], + "dependencies": [ + "@stdlib/math/base/assert/is-nan", + "@stdlib/math/base/assert/is-infinite", + "@stdlib/constants/float64/pi", + "@stdlib/math/base/special/sinpi", + "@stdlib/math/base/special/cospi" + ] + }, + { + "task": "examples", + "src": [ + "./src/main.c" + ], + "include": [ + "./include" + ], + "libraries": [ + "-lm" + ], + "libpath": [], + "dependencies": [ + "@stdlib/math/base/assert/is-nan", + "@stdlib/math/base/assert/is-infinite", + "@stdlib/constants/float64/pi", + "@stdlib/math/base/special/sinpi", + "@stdlib/math/base/special/cospi" + ] + } + ] + } + \ No newline at end of file From 3d6fbfbf62a1dfc27ff52eb89bfcb5f54c3c5767 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Mon, 18 Nov 2024 12:43:23 +0600 Subject: [PATCH 24/63] "added README file" --- .../@stdlib/math/base/special/cosc/README.md | 213 ++++++++++++++++++ 1 file changed, 213 insertions(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/README.md diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/README.md b/lib/node_modules/@stdlib/math/base/special/cosc/README.md new file mode 100644 index 000000000000..85f5a8be1f3c --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/cosc/README.md @@ -0,0 +1,213 @@ + + +# cosc + +> Compute the [derivative of cardinal sine][cosc] of a number. + +
+ +The normalized [derivative of cardinal sine][cosc] function is defined as + + + +```math +\mathop{\mathrm{cosc}}(x) := \begin{cases} \frac {{\operatorname{cos}(\pi x)}-\frac{\operatorname{sin}(\pi x)}{\pi x}}{x} & \textrm{if}\ x \neq 0 \\ 0 & \textrm{if}\ x = 0 \end{cases} +``` + + + + + +for any real number `x`. + +
+ + + +
+ +## Usage + +```javascript +var cosc = require( '@stdlib/math/base/special/cosc' ); +``` + +#### cosc( x ) + +Computes the normalized [cardinal cose][cosc] of a `number`. + +```javascript +var v = cosc( 0.5 ); +// returns ~0.637 + +v = cosc( -1.2 ); +// returns ~-0.156 + +v = cosc( 0.0 ); +// returns 1.0 + +v = cosc( NaN ); +// returns NaN +``` + +
+ + + +
+ +## Examples + + + +```javascript +var linspace = require( '@stdlib/array/base/linspace' ); +var cosc = require( '@stdlib/math/base/special/cosc' ); + +var x = linspace( -5.0, 5.0, 100 ); + +var i; +for ( i = 0; i < x.length; i++ ) { + console.log( cosc( x[ i ] ) ); +} +``` + +
+ + + + + +* * * + +
+ +## C APIs + + + +
+ +
+ + + + + +
+ +### Usage + +```c +#include "stdlib/math/base/special/cosc.h" +``` + +#### stdlib_base_cosc( x ) + +Computes the normalized [derivative of cardinal sine][cosc] of a `number`. + +```c +double y = stdlib_base_cosc( 0.5 ); +// returns ~-1.273 +``` + +The function accepts the following arguments: + +- **x**: `[in] double` input value. + +```c +double stdlib_base_cosc( const double x ); +``` + +
+ + + + + +
+ +
+ + + + + +
+ +### Examples + +```c +#include "stdlib/math/base/special/cosc.h" +#include + +int main( void ) { + const double x[] = { 0.0, 0.523, 0.785, 1.047, 3.14 }; + + double y; + int i; + for ( i = 0; i < 5; i++ ) { + y = stdlib_base_cosc( x[ i ] ); + printf( "cosc(%lf) = %lf\n", x[ i ], y ); + } +} +``` + +
+ + + +
+ + + + + + + + + + + + + + From 8911d84658289ad868dc9175f0410c83b75c8b8e Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Mon, 18 Nov 2024 13:41:07 +0600 Subject: [PATCH 25/63] "added benchmark.js" --- .../base/special/cosc/benchmark/benchmark.js | 51 +++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/benchmark/benchmark.js diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/benchmark.js new file mode 100644 index 000000000000..4f78c522951a --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/benchmark.js @@ -0,0 +1,51 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2018 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var bench = require( '@stdlib/bench' ); +var randu = require( '@stdlib/random/base/randu' ); +var isnan = require( '@stdlib/math/base/assert/is-nan' ); +var pkg = require( './../package.json' ).name; +var cosc = require( './../lib' ); + + +// MAIN // + +bench( pkg, function benchmark( b ) { + var x; + var y; + var i; + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + x = ( randu() * 2.0 ) - 2.0; + y = cosc( x ); + if ( isnan( y ) ) { + b.fail( 'should not return NaN' ); + } + } + b.toc(); + if ( isnan( y ) ) { + b.fail( 'should not return NaN' ); + } + b.pass( 'benchmark finished' ); + b.end(); +}); From 4212a00e45db6cd21fd635116d6fe9b7a0966f89 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Mon, 18 Nov 2024 13:46:41 +0600 Subject: [PATCH 26/63] "added index.js inside examples" --- .../math/base/special/cosc/examples/index.js | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/examples/index.js diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/examples/index.js b/lib/node_modules/@stdlib/math/base/special/cosc/examples/index.js new file mode 100644 index 000000000000..01eae4d17147 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/cosc/examples/index.js @@ -0,0 +1,29 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2018 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +var linspace = require( '@stdlib/array/base/linspace' ); +var cosc = require( './../lib' ); + +var x = linspace( -5.0, 5.0, 100 ); + +var i; +for ( i = 0; i < x.length; i++ ) { + console.log( 'cosc( %d ) = %d', x[ i ], cosc( x[ i ] ) ); +} From 9c5c475612e32fe874aa9277f0d76dc0aebb1ea6 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Mon, 18 Nov 2024 13:55:51 +0600 Subject: [PATCH 27/63] "added test.js" --- .../math/base/special/cosc/test/test.js | 188 ++++++++++++++++++ 1 file changed, 188 insertions(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/test/test.js diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/test.js b/lib/node_modules/@stdlib/math/base/special/cosc/test/test.js new file mode 100644 index 000000000000..f7741328b609 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/test.js @@ -0,0 +1,188 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2018 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var tape = require( 'tape' ); +var isnan = require( '@stdlib/math/base/assert/is-nan' ); +var PINF = require( '@stdlib/constants/float64/pinf' ); +var NINF = require( '@stdlib/constants/float64/ninf' ); +var EPS = require( '@stdlib/constants/float64/eps' ); +var abs = require( '@stdlib/math/base/special/abs' ); +var cosc = require( './../lib' ); + + +// FIXTURES // + +var data = require( './fixtures/julia/data.json' ); +var largeNegative = require( './fixtures/julia/large_negative.json' ); +var largePositive = require( './fixtures/julia/large_positive.json' ); +var tinyNegative = require( './fixtures/julia/tiny_negative.json' ); +var tinyPositive = require( './fixtures/julia/tiny_positive.json' ); + + +// TESTS // + +tape( 'main export is a function', function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof sinc, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'the function computes the derivative of cardinal sine', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + x = data.x; + expected = data.expected; + + for ( i = 0; i < x.length; i++ ) { + y = cosc( x[i] ); + if ( y === expected[ i ] ) { + t.equal( y, expected[ i ], 'x: '+x[i]+'. Expected: '+expected[i] ); + } else { + delta = abs( y - expected[i] ); + tol = 2.0 * EPS * abs( expected[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y+'. Expected: '+expected[i]+'. Tolerance: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the derivative of cardinal sine (large negative)', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + x = largeNegative.x; + expected = largeNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + y = cosc( x[i] ); + if ( y === expected[ i ] ) { + t.equal( y, expected[ i ], 'x: '+x[i]+'. Expected: '+expected[i] ); + } else { + delta = abs( y - expected[i] ); + tol = 2.0 * EPS * abs( expected[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y+'. Expected: '+expected[i]+'. Tolerance: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the derivative of cardinal sine (large positive)', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + x = largePositive.x; + expected = largePositive.expected; + + for ( i = 0; i < x.length; i++ ) { + y = cosc( x[i] ); + if ( y === expected[ i ] ) { + t.equal( y, expected[ i ], 'x: '+x[i]+'. Expected: '+expected[i] ); + } else { + delta = abs( y - expected[i] ); + tol = 2.0 * EPS * abs( expected[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y+'. Expected: '+expected[i]+'. Tolerance: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the derivative of cardinal sine (tiny negative)', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + x = tinyNegative.x; + expected = tinyNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + y = cosc( x[i] ); + if ( y === expected[ i ] ) { + t.equal( y, expected[ i ], 'x: '+x[i]+'. Expected: '+expected[i] ); + } else { + delta = abs( y - expected[i] ); + tol = EPS * abs( expected[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y+'. Expected: '+expected[i]+'. Tolerance: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the derivative of cardinal sine (tiny positive)', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + x = tinyPositive.x; + expected = tinyPositive.expected; + + for ( i = 0; i < x.length; i++ ) { + y = cosc( x[i] ); + if ( y === expected[ i ] ) { + t.equal( y, expected[ i ], 'x: '+x[i]+'. Expected: '+expected[i] ); + } else { + delta = abs( y - expected[i] ); + tol = EPS * abs( expected[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y+'. Expected: '+expected[i]+'. Tolerance: '+tol+'.' ); + } + } + t.end(); +}); + +tape( 'the function returns `NaN` if provided a `NaN`', function test( t ) { + var v = cosc( NaN ); + t.equal( isnan( v ), true, 'returns NaN' ); + t.end(); +}); + +tape( 'the function returns `0.0` if provided `0.0`', function test( t ) { + var v = cosc( 0.0 ); + t.equal( v, 0.0, 'returns 0.0' ); + t.end(); +}); + +tape( 'the function returns `0.0` if provided positive or negative infinity', function test( t ) { + var v = cosc( PINF ); + t.equal( v, 0.0, 'returns 0.0' ); + + v = cosc( NINF ); + t.equal( v, 0.0, 'returns 0.0' ); + t.end(); +}); From a52bf3cc42459b9ec9f3111da88a040b4594b9bf Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Mon, 18 Nov 2024 14:10:39 +0600 Subject: [PATCH 28/63] "added data.json" --- .../@stdlib/math/base/special/cosc/test/fixtures/julia/data.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/data.json diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/data.json b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/data.json new file mode 100644 index 000000000000..9deb0b81476d --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/data.json @@ -0,0 +1 @@ +{"expected":[0.0,-0.0004979484171856053,-0.0009841399885140729,-0.0014465974938411748,-0.001873915821329042,-0.0022555432153013566,-0.002582041805419834,-0.002845320985171439,-0.0030388378693467265,-0.003157759864523715,-0.0031990853139244606,-0.0031617192056659906,-0.0030465020362126353,-0.002856191071681028,-0.0025953944202871545,-0.002270459490870487,-0.0018893185364843,-0.0014612950408170098,-0.0009968756725717792,-0.0005074533850053559,-5.047953504107395e-6,0.0004979891943641825,0.0009892786084450267,0.0014567174418617138,0.0018887775777249986,0.002274789913622713,0.0026052077940286423,0.0028718430868188084,0.0030680690666735405,0.003188985079062221,0.003231538893921081,0.0031946036951719567,0.003079007765459827,0.002887516087604052,0.002624764266710047,0.002297146350598696,0.0019126592622949528,0.001480707628769972,0.0010118737685612493,0.0005176584631119219,1.0198861363700948e-5,-0.0004980295636934392,-0.0009945196882999979,-0.0014670405030020358,-0.0019039383969259704,-0.002294424540413871,-0.002628841279696403,-0.0028989009665132703,-0.0030978913172011774,-0.0032208422133739355,-0.00326464979997276,-0.0032281547830542373,-0.003112172953577059,-0.002919477137058461,-0.0026547309634748686,-0.0023243760378063583,-0.0019364752399723662,-0.0015005159652911758,-0.001027178106299872,-0.0005280724493664604,-1.545589339407222e-5,0.0004980695251135532,0.0009998664106766566,0.0014775729769418826,0.0019194075529372137,0.002314459127279241,0.0026529567659724818,0.002926511251937036,0.0031283229710997546,0.0032533508943310163,0.003298438456543866,0.00326239319062105,0.003146018108595766,0.0029520940078529984,0.002685313086918562,0.0023521654539889717,0.0019607812722298736,0.0015207323804181968,0.0010427982287369107,0.0005387018526958475,2.0822351418051697e-5,-0.0004981090785657377,-0.001005322090856745,-0.0014883214261299312,-0.0019351947067978814,-0.0023349062082004823,-0.002677569362315304,-0.002954691265781971,-0.003159383145946983,-0.0032865315700335456,-0.0033329261431463155,-0.003297340507108926,-0.003180564597991611,-0.0029853873174923,-0.0027165299926846776,-0.0023805322100585694,-0.0019855927834285998,-0.0015413697222672565,-0.0010587440800023894,-0.0005495534558027233,-2.6301676208954497e-5,0.0004981482239912289,0.0010108901837920985,0.0014992926896293514,0.0019513099269824446,0.0023557788460340265,0.002702694816065715,0.0029834590624454606,0.003191091767267006,0.003320405553214996,0.0033681350395562424,0.0033330192356046673,0.0032158346941821626,0.003019378557122128,0.0027484018570227975,0.002409494663957775,0.002010925852557115,0.0015624413845310434,0.001075026026713675,0.0005606343297113969,3.189745487887599e-5,-0.0004981869613324518,-0.0010165742915382609,-0.0015104938978460383,-0.0019677637111083822,-0.0023770906607018085,-0.0027283495464680823,-0.0030128334670749615,-0.0032234696116672655,-0.003354995067429716,-0.0034040882739307583,-0.003369452841914527,-0.0032518516229450554,-0.0030540901382987242,-0.002780949720741039,-0.0024390719606944716,-0.0020367972483311494,-0.0015839613357489504,-0.001091654880652145,-0.0005719518492535973,-3.761342874095078e-5,0.0004982252905318412,0.001022378171167947,0.0015219324882094376,0.0019845670090447563,0.0023988558592064244,0.0027545506808907545,0.0030428341171408273,0.003256538352768117,0.003390323296233511,0.003440809974044072,0.003406665806602925,0.003288639614979209,0.003089545442794039,0.0028141955360155855,0.002469284074977216,0.002063224466578198,0.0016059441504799085,0.0011086419229187027,0.0005835137095606349,4.3453501686560485e-5,-0.0004982632115330347,-0.0010283057431994059,-0.001533616221877156,-0.0020017312475315977,-0.0024210892676064023,-0.0027813160934166492,-0.003073481506728138,-0.0032903206101400993,-0.0034264144355852654,-0.003478325321881563,-0.0034446836804439013,-0.003326223960848225,-0.0031257688756715562,-0.0028481622162732953,-0.0025001518566542887,-0.002090225770078284,-0.001628405042528276,-0.0011259989296769795,-0.0005953279436442237,-4.942174911208309e-5,0.0004983007242796662,0.0010343611005830435,0.0015455532015407746,0.002019268356425221,0.0024438063651054985,0.0028086644459837766,0.0031047970337596863,0.0033248400014794723,0.0034632937497192768,0.0035166606118513114,0.0034835331435485407,0.003364631069569198,0.003162785921883737,0.0028828736893883916,0.0025316970791701855,0.0021178202310554437,0.0016513599003776449,0.001143738199612283,0.0006074029411455721,5.552242744295473e-5,-0.0004983378287165857,-0.001040548518285073,-0.001557751890422174,-0.002037190796694864,-0.002467023320419674,-0.002836615232277634,-0.0031368030503765147,-0.0033601211982765395,-0.003500987630758621,-0.003555843312895935,-0.003523242068456614,-0.003403888531130716,-0.003200623206669064,-0.0029183549544499247,-0.0025639424912796407,-0.0021460277765237355,-0.0016748253250103383,-0.001161872583236179,-0.0006197474683495501,-6.175998429688796e-5,0.0004983745247886269,0.0010468724635200573,0.001570221132549645,0.002055511590311878,0.002490757030600152,0.002865188824589519,0.003169522916727579,0.003396189985250863,0.0035395236623659747,0.0035959021348129865,0.0035638395875052563,0.0034440251832525124,0.003239308560047316,0.0029546321423858986,0.00259691187227384,0.0021748692367183297,0.0016988186702973905,0.0011804155141881586,0.0006323706895593717,6.813906934222675e-5,-0.0004984108124418531,-0.0010533376066790532,-0.0015829701744203663,-0.0020742443521781905,-0.0025150251625112746,-0.002894406523879812,-0.003202981058438294,-0.003433073323855914,-0.0035789306877536333,-0.0036368670991204738,-0.00360535616481757,-0.0034850711827247886,-0.0032788710857435607,-0.0029917325807501194,-0.002630630091004051,-0.002204366396855014,-0.0017233580861699474,-0.001199381042689853,-0.0006452821899462679,-7.466454590211034e-5,0.0004984466916222977,0.0010599488330143533,0.0015960086881562086,0.0020934033242626738,0.0025398461971736074,0.0029242906133038495,0.003237203028056906,0.00347079942018024,0.0036192388824060036,0.0036787696148350255,0.003647823673284301,0.003527058081699554,0.0033193412348973984,0.003029684863012243,0.0026651231690070472,0.002234542052492471,0.0017484625647933205,0.0012187838713316977,0.0006584919999888736,8.134150337040277e-5,-0.0004984821622772376,-0.001066711255137382,-0.0016093467962793224,-0.0021130034121211038,-0.002565239477209873,-0.002954864415482041,-0.003272215570802842,-0.003509397797605817,-0.0036604798318989884,-0.0037216425595647646,-0.003691275476948093,-0.0035700189093381,-0.0033607508849519876,-0.0030685189227173115,-0.0027004183480726107,-0.002265420068788891,-0.0017741519899950786,-0.0012386393933787395,-0.0006720106216383503,-8.817527050085159e-5,0.000498517224353906,0.0010736302264018885,0.0016229950982362409,0.002133060224000768,0.002591225257645969,0.0029861523538260355,0.00330804669497175,0.0035488993746164476,0.0037026866152389693,0.0037655203663567944,0.0037357465192371557,0.003613988259260146,0.0034031334241501426,0.003108266112921947,0.002736544162618248,0.0022970254439807916,0.0018004471902129562,0.0012589637338102466,0.0006858490563475613,9.517142964761325e-5,-0.0004985518778007949,-0.001080711355241041,-0.0016369646988212603,-0.002153590112741015,-0.0026178247603512532,-0.0030181800182567525,-0.003344725747388711,-0.003589336548186579,-0.003745893894182583,-0.0038104391167815476,-0.0037812734175394326,-0.003659002383279734,-0.003446523842110451,-0.0031489592913472677,-0.0027735305172788627,-0.002329384377434712,-0.0018273699952635265,-0.001279773793318108,-0.0007000188351267093,-0.00010233583203185616,0.0004985861225663366,0.0010879605205442054,0.001651267238654529,0.0021746102207105132,0.0026450602324217917,0.003050974235689144,0.003382283494334375,0.003630743283224622,0.0037901380090449408,0.0038564366407827476,0.0038278945646545333,0.0037050992919631983,0.0034909588269975552,0.0031906329117375796,0.002811408770151105,0.0023625243426653605,0.0018549432972521389,0.0013010872955213537,0.0007145320507927611,0.00010967461412752293,-0.0004986199586002391,-0.001095383888156867,-0.0016659149268954672,-0.0021961385280363276,-0.0026729550088480064,-0.0030845631456884472,-0.0034207522084155942,-0.0036731552085880258,-0.003835457081552563,-0.0039035526238738205,-0.0038756502377148556,-0.003752318862593936,-0.003536476869856068,-0.0032333231219556875,-0.002850211822183158,-0.002396474165743659,-0.0018831911159860532,-0.0013229228376689499,-0.000729401392607532,-0.00011719421525729847,0.0004986533858521337,0.0011029879286062277,0.0016809205763798618,0.0022181939044144776,0.0027015335798338228,0.0031189762817496777,0.0034601657618934943,0.003716609720242386,0.003881891125352535,0.003951828722319142,0.003924582715224827,0.0038007029551900286,0.0035831183767293805,0.0032770678694049025,0.0028899742132417537,0.0024312641095693027,0.0019121386692788332,0.0013452999451408507,0.0007446401835075916,0.0001249013965102919,-0.000498686404272945,-0.0011107794361543178,-0.0016962976413981126,-0.0022407961648112304,-0.002730821663179478,-0.003154244658690453,-0.0035005597270388582,-0.00376114609219053,-0.003929482164852002,-0.004001308687002701,-0.003974736402933296,-0.003850295537282631,-0.0036309257892521546,-0.0033219070144208536,-0.002930732225449789,-0.002466925964521319,-0.0019418124485833497,-0.001368239130077827,-0.0007602624201610082,-0.00013280326109271938,0.0004987190138135041,0.0011187655493018677,0.001712060258343741,0.002263966129405304,0.0027608462821736048,0.00319040086670408,0.0035419714841371133,0.0038068055958650603,0.00397827436312883,0.004052038496758475,0.004026157969326973,0.0039011428182383874,0.0036799437144705953,0.003367882452348414,0.002972523994440541,0.002503493146061756,0.001972240300425282,0.0013917619545153609,0.0007762828160985754,0.0001409072762459341,-0.000498751214425952,-0.0011269537728676021,-0.0017282232894953666,-0.002287725688147475,-0.0027916358494945565,-0.003227479172668968,-0.0035844403378348733,-0.003853631628745344,-0.004028314159732833,-0.00410406650201642,-0.004078896491613337,-0.003953293393987211,-0.0037302190647274754,-0.003415038245086422,-0.003015389629249405,-0.0025410007999179213,-0.002003451514168219,-0.0014158910984247287,-0.0007927168482044509,-0.00014922129686829603,0.0004987830060623196,0.0011353520017919668,0.0017448023702120214,0.0023120978703630836,0.0028232202576643542,0.003265515629379815,0.0036280076425864788,0.0039016698530433777,0.004079650419280244,0.004157443579707545,0.004133003613153557,0.0040067984031086894,0.003781801208532114,0.0034634207629714703,0.003059371341631531,0.0025794859155436026,0.0020354769166868003,0.001440650433117972,0.000809580806869352,0.00015775359100368895,-0.0004988143886759659,-0.0011439685468184455,-0.0017618139598620337,-0.0023371069198578395,-0.0028556309766647717,-0.003304548193428921,-0.003672716938044913,-0.003950968345388164,-0.004132334591842,-0.004212223300471078,-0.0041885337134062684,-0.004061711695331435,-0.003834742133435919,-0.0035130788379586146,-0.003104513585685571,-0.002618987448624658,-0.002068348974596193,-0.0014660651005107062,-0.0008268918501536366,-0.00016651286736473167,0.0004988453622201207,0.001152812162233677,0.001779275396828912,0.002362778376046668,0.0028889011593813633,0.003344616852551425,0.003718614095326008,0.004001577758542031,0.004186420886231281,0.00426846210931905,0.004245544091558453,0.0041180900136112,0.00388909662204386,0.0035640639291636806,0.0031508632087512657,0.002659546453486447,0.0021021019047454403,0.0014921615988015187,0.0008446680623330474,0.00017550830508916387,-0.0004988759266493618,-0.001161892075855331,-0.0017972049579859917,-0.0023891391616713644,-0.0029230657556224377,-0.0033857637633289235,-0.003765747475181695,-0.004053551496290331,-0.004241966457418358,-0.004326219521038878,-0.0043040951651462525,-0.0041759931910834505,-0.003944922442412582,-0.0036164303019479366,-0.0031984696146588124,-0.0027012062263444907,-0.002136771793770344,-0.0015189678751761518,-0.0008629285172529031,-0.0001847495859371765,0.0004989060819181181,0.001171218021489431,0.001815621923063279,0.0024162176777453677,0.0029581616355329,0.003428033400252026,0.0038141680992259076,0.0041069459027759676,0.004299031609433661,0.004385558331756163,0.004364250685113706,0.004235484364325886,0.004002280554228679,0.0036702352218526595,0.0032473849405272276,0.0027440124604536926,0.0021723967275787473,0.0015465134262239314,0.0008816933469513917,0.00019424692917314562,-0.0004989358279821871,-0.00118080027409129,-0.0018345466443885374,-0.002444043906424473,-0.0029942277233235655,-0.0034714727172461034,-0.0038639298354905707,-0.00416182046768777,-0.004357680015274515,-0.004446544848238485,-0.004426077968918025,-0.00429663020453047,-0.004061235332311548,-0.003725539164843909,-0.0032976642484385324,-0.00278801341432119,-0.002209016931750107,-0.0015748294068192038,-0.0009009838160769917,-0.0002040111293898457,0.0004989651647971963,0.0011906496879029755,0.001854000622527379,0.00247264952259193,0.0030313051423310907,0.003516131322897338,0.003915089599727332,0.004218238048875759,0.004417978955500211,0.0045092491367007045,0.004489648153473979,0.004359501168362803,0.004121854809166118,0.003782406045486839,0.003349365733473225,0.002833260094286147,0.0022466749239332625,0.001603948748318357,0.0009208224026722554,0.0002140535975756675,-0.0004989940923201636,-0.0012007777378588993,-0.0018740065884190315,-0.0025020680150257975,-0.0030694373725496556,-0.0035620616707499387,-0.003967707574039605,-0.004276265114142462,-0.004479999577396246,-0.004573745293074292,-0.004555036469934834,-0.004424171770494853,-0.004184210938504212,-0.0038409034648629265,-0.0034025509497552704,-0.0028798064529203336,-0.002285415679457893,-0.001633906287010624,-0.0009412328859753212,-0.0002243864057470228,0.0004990226105079152,0.0012111965645976927,0.0018945885926617018,0.002532334818128306,0.0031086704218984186,0.0036093192662131927,0.004021847444607473,0.004335972004167912,0.004543817176805342,0.00464011173693275,0.004622322542542066,0.004490720880025752,0.004248379881883172,0.0039011029802484038,0.003457285056356873,0.002927709604868079,0.0023252868115176983,0.001664738903877841,0.0009622404419539777,0.00023502233551934661,-0.0004990507193186902,-0.001221919023445403,-0.0019157721026907203,-0.0025634874553012907,-0.003149053012647872,-0.003657962891790274,-0.004077576660482938,-0.004397433218752754,-0.0046095115049737305,-0.004708431531524252,-0.004691590714039125,-0.004559232043271503,-0.004314442320859904,-0.003963080398819343,-0.0035136370851241356,-0.0029770300619459526,-0.002366338767438618,-0.0016964856768440163,-0.0009838717473853724,-0.0002459749310211105,0.0004990784187105133,0.0012329587377918046,0.001937584108669108,0.0025955656951928766,0.0031906367845885584,0.003708054852554489,0.004134966715663405,0.004460727728830894,0.004677167103040538,0.004778792732657876,0.0047629304004462095,0.004629793835699608,0.004382483797353004,0.004026916097914493,0.0035716802327426353,0.0030278319895318258,0.002408625042738683,0.0017291880468313775,0.0010061550933810979,0.000257258556617783,-0.0004991057086428458,-0.0012443301573194486,-0.00196005323902232,-0.00262861172217786,-0.0032334765167283713,-0.0037596612440242093,-0.004194093456927031,-0.004525939316996899,-0.004746873667121443,-0.004851288769524329,-0.004836436478333121,-0.004702500246127501,-0.004452595085229361,-0.004092695374704395,-0.00363149217963671,-0.003080183486532642,-0.0024522024148836115,-0.001762889999112639,-0.001029120509375415,-0.0002688884599578775,0.0004991325890751277,0.0012560486216152238,0.0019832098866509633,0.0026626703226140984,0.0032776303695147735,0.003812852244862413,0.00425503742021364,0.0045931569496381495,0.004818726447300286,0.004926018860914603,0.0049122097081178645,0.004777451096687194,0.0045248725965120525,0.004160508828461759,0.00369315543862843,0.0031341568914942967,0.002497131198891782,0.0017976382616219783,0.0010527998987214108,0.0002808808409249539,-0.0004991590599673905,-0.001268130429746832,-0.002007086346997732,-0.0026977890885985433,-0.0033231601498391965,-0.0038677024371222344,-0.00431788419869166,-0.0046624751841449616,-0.004892826684262159,-0.00500308847073524,-0.004990357197361619,-0.004854752502503775,-0.004599418826029224,-0.004230452779039355,-0.0037567577366424847,-0.0031898291177523837,-0.0025434755272024895,-0.0018334825221112672,-0.0010772271871774145,-0.0002932529271535201,0.0004991851212808195,0.0012805929164737,0.0020317169692812696,0.002734018641177403,0.0033701316013577025,0.003924291157115461,0.0043827248460450085,0.004733994615120348,0.004969282087775558,0.005082609807218276,0.005070992908540356,0.004934517375537622,0.0046763428388188755,0.004302629725616512,0.0038223924331743596,0.0032472820208839064,0.002591303656543708,0.0018704756662674044,0.001102438485742836,0.0003060230568437195,-0.0004992107729767691,-0.0012934545358373121,-0.0020571383223919448,-0.0027714128752081325,-0.003418614723000364,-0.003982702880372353,-0.004449656318979023,-0.004807822364015872,-0.005048207361780579,-0.0051647023707949305,-0.005154238216354864,-0.005016865977622425,-0.00475576080516197,-0.004377148850312425,-0.0038901589797166376,-0.003306602802156573,-0.0026406883048833213,-0.0019086740391963822,-0.0011284722694826124,-0.0003192107697180752,0.0004992360150173086,0.0013067349529809705,0.002083389377130332,0.002810029228366162,0.0034686841189110838,0.004043027644622638,0.004518781963465712,0.004884072617206557,0.0051297247814656565,0.00524949355625904,0.005240222520311385,0.005101926528395135,0.004837796588765052,0.004454126571867653,0.003960163424899833,0.0033678844521541663,0.0026917070219641434,0.0019481377329887916,0.001155369574205037,0.00033283690706444556,-0.0004992608473651126,-0.0013204551451590709,-0.002110511706700611,-0.0028499289771196233,-0.0035204193834989695,-0.004105361515251484,-0.004590212049858264,-0.004962867218188989,-0.005213964828439405,-0.005337119315601866,-0.005329083919074996,-0.005189835874581361,-0.0049225823943547355,-0.004533687155300853,-0.004032518970743513,-0.003431226239326559,-0.0027444425973930627,-0.00198893090345579,-0.0011831742131067637,-0.0003469237219449453,0.0004992852699834612,0.001334637513027222,0.002138549707627634,0.0028911775628799184,0.003573905525780575,0.004169807098291436,0.004664064362702018,0.0050443363203623295,0.005301066890937123,0.005427724888771913,0.0054209699539874675,0.005280740227984156,0.005010259481806343,0.004615963384254445,0.0041073465861544605,0.003496734248862375,0.0027989835108012304,0.0020311221195462256,0.001211933015790789,0.0003614950007958476,-0.0004993092828362403,-0.001349306003455068,-0.002167550843566953,-0.002933844951979487,-0.003629233437771507,-0.00423647410671219,-0.004740464851877603,-0.005128619107748382,-0.005391180036965443,-0.0055214656106216805,-0.005516038430169592,-0.005374795980547332,-0.005100978954919898,-0.0047010973036822395,-0.0041847756846658795,-0.003564521978037302,-0.002855424429223849,-0.0020747847494479673,-0.001241696092400159,-0.0003765761978162575,0.0004993328858879418,0.0013644862452781303,0.002197565914824165,0.0029780060336419465,0.0036865004123560227,0.004305479986582424,0.004819548352648121,0.005215864592045647,0.005484463869405808,0.005618507803472118,0.0056144583248202125,0.005472170606050852,0.005194902634108511,0.004789241041616164,0.00426494487440376,0.0036347109950666994,0.0029138667575810077,0.002119997387946734,0.0012725171260012716,0.00039219458374272734,-0.0004993560791036628,-0.0013802056996074816,-0.002228649356802987,-0.003023741060706416,-0.003745810716841524,-0.004376950610621241,-0.0049014593832697444,-0.005306232495619118,-0.0055810894733952805,-0.005719029766083681,-0.0057164107937097515,-0.0055730436593746996,-0.005292204023601741,-0.004880557720013452,-0.0043480027894247505,-0.0037074316695068334,-0.002974419248993278,-0.0021668443302790726,-0.0013044536968056491,-0.0004083794108390892,0.0004993788624491068,0.0013964938265517643,0.0022608595710706075,0.003071136138562334,0.0038072762293109965,0.004451021047755252,0.004986353030091614,0.005399894231433152,0.005681240467815142,0.005823222871405137,0.0058220902884803544,0.00567760788587446,0.005393069385325811,0.0049752224661573485,0.004434109012914148,0.0037828239834388124,0.003037198682660485,0.0022154160984898313,0.001337567642349765,0.00042516209620153196,-0.0004994012358905829,-0.001413382270481044,-0.002294259293276324,-0.0031202837685617006,-0.0038710171459441123,-0.0045278364185797,-0.005074395931549558,-0.005497033992576092,-0.005785114174483438,-0.005931292787319428,-0.005931705799250733,-0.0057860704552892585,-0.005497698933444512,-0.005073423537804843,-0.0045234351043086955,-0.003861038434053021,-0.0031023306181918254,-0.002265810027208975,-0.0013719254583731547,-0.0004425764257956385,0.0004994231993950062,0.0014309050662837338,0.002328916002800086,0.0031712834531242825,0.003937162768715742,0.004607552848123224,0.0051657673741894745,0.005597849965947223,0.005892922920715492,0.00604346083677062,0.006045482239232985,0.00589865433680216,0.0056063081656796115,0.005175363577291166,0.004616165744253739,0.0039422370398797205,0.0031699502366417673,0.002318130916824251,0.0014075987458627799,0.00046065878201354227,-0.0004994447529298979,-0.0014490988694453005,-0.0023649023797592404,-0.003224242370864638,-0.004005852384333669,-0.004690338529078103,-0.005260660515888773,-0.005702555686933521,-0.006004895493344948,-0.006159965516198533,-0.006163661990663994,-0.006015599834457481,-0.005719129350038298,-0.00528126101217035,-0.004712500013473497,-0.004026594464822248,-0.0032402032801042424,-0.0023724917632710714,-0.0014446647105886001,-0.0004794483979762931,0.0004994658964633853,0.0014680032132216182,0.002402296815886421,0.003279276131380149,0.004077236246987845,0.004776374910732589,0.005359283753837758,0.0058113815545614185,0.006121278765158374,0.006281064194202998,0.0062865066344118545,0.0061371663051847155,0.005836413188532,0.005391351622764299,0.004812652824190476,0.004114299276403143,0.003313247103609064,0.002429014575136549,0.0014832067224623852,0.00049898764232188,-0.0004994866299642018,-0.0014876607967040138,-0.0024411839868356293,-0.003336509620886159,-0.004151476679503171,-0.004865858031292078,-0.0054618622576696665,-0.005924576529748495,-0.006242339518075985,-0.006407035015899065,-0.006414298889231547,-0.006263634085278337,-0.0059584306829663135,-0.005505890300295326,-0.004916856525754135,-0.004205555357299137,-0.003389251855298386,-0.002487831290511065,-0.0015233149432513535,-0.0005193223388304313,0.0004995069534018319,0.0015081178081936151,0.002481655494709924,0.003396077951716217,0.004228749309879922,0.004959000014178264,0.005568639691477361,0.006042410043000381,0.006368366491416408,0.006538179042619891,0.006547344790928543,0.006395306655450966,0.006085475232027197,0.005625153023194407,0.005025362709726539,0.004300583492403815,0.003468401803513102,0.0025490848080893997,0.0015650870325921698,0.000540502125959515,-0.0004995268667459349,-0.0015294242890396418,-0.002523810591072749,-0.003458127530881927,-0.004309244463048439,-0.005056030752344932,-0.0056798801524359024,-0.006165174142321336,-0.006499672688346078,-0.006674822661613705,-0.006685976146785181,-0.006532513079655107,-0.006217864993821124,-0.005749439083839183,-0.00513844424394292,-0.004399623157422036,-0.00355089683257666,-0.002612930149483023,-0.0016086289439431784,-0.0005625808622302939,0.0004995463699672048,0.0015516345439747503,0.002567756992455373,0.003522817265481432,0.004393168731053918,0.0051571998087626405,0.00579587035849868,0.006293185917383429,0.00663659797929637,0.006817320306335428,0.006830553306687212,0.0066756107589302964,0.0063559455539161066,0.005879073603542854,0.0052563975701654195,0.004502934539498232,0.0036369541328365278,0.002679535772645588,0.0016540558241312868,0.0005856170844319539,-0.0004995654630368001,-0.001574807605029865,-0.0026136118024667624,-0.0035903199258494715,-0.004480746748942261,-0.005262778566147284,-0.005916922123318421,-0.006426790242315971,-0.006779512047935621,-0.00696605753506431,-0.006981468299673631,-0.006824988548794429,-0.006500092945987263,-0.006014410380286908,-0.005379545306061812,-0.004610800825773317,-0.003726810115047434,-0.0027490850598400076,-0.0017014930325724936,-0.0006096745268524057,0.0004995841459264859,0.0015990077573746666,0.002661502557124518,0.00366082369106865,0.004572223208487779,0.005373062664920417,0.006043375163372362,0.006566362887066885,0.006928817733460248,0.007121454524150196,0.007139148393392101,0.006981070297430318,0.006650717080657745,0.006155835121716455,0.005508239199596709,0.004723530802254397,0.0038207225846256412,0.0028217780078207697,0.001751077299161873,0.0006348227112328063,-0.0004996024186086334,-0.0016243051369436027,-0.0027115684130571555,-0.0037345339059533106,-0.004667865147774014,-0.0054883747755184375,-0.006175600290505054,-0.006712314056442612,-0.007084954832834188,-0.007283970042533686,-0.007304060144513753,-0.007144318872459579,-0.0068082656483729465,-0.00630376912560896,-0.005642863492807218,-0.004841461813221321,-0.003918973217882978,-0.0028978331530358048,-0.0018029580433547453,-0.000661137618945707,0.0004996202810562207,0.0016507764115494547,0.002763961501886978,0.0038116750840514395,0.00476796456174382,0.005609067759797775,0.006314003053072047,0.00686509242701998,0.0072484044385550265,0.007454105986715664,0.007476714020971239,0.007315240756871837,0.00697322857456826,0.00645867348177893,0.005783838762709905,0.004964963140903979,0.004021870390332069,0.002977489770878448,0.0018572988812404086,0.0006887024590844695,-0.0004996377332428323,-0.0016785055594146566,-0.0028188484785587834,-0.0038924931978167655,-0.004872841387469698,-0.005735528286773773,-0.006459027900989132,-0.00702518976560601,-0.007419693902059468,-0.007632412570596073,-0.007657669692472181,-0.00749439131022715,-0.0071461431205133005,-0.006621053883690652,-0.005931626320208761,-0.005094439876749037,-0.00412975241688066,-0.0030610103956079625,-0.0019142793526266359,-0.0007176085488191038,0.0004996547751426591,0.0017075847617731318,0.0028764122968070907,0.003977258305157144,0.00498284692843379,0.005868180980738414,0.006611162964793749,0.0071931462293892065,0.007599402530636992,0.007819494283229648,0.007847542104792373,0.007682380810259297,0.007327599741707257,0.006791466155552376,0.006086733263927448,0.005230337369769898,0.004242991275637051,0.003148683716845993,0.001974096906540806,0.0007479563256406181,-0.0004996714067304989,-0.001738115429529981,-0.002936854251610923,-0.00406626757144897,-0.005098367795032375,-0.006007493195508426,-0.0067709455569826904,-0.007369556468131376,-0.007788168147512269,-0.008016016750413116,-0.008047008476746451,-0.007879881413354087,-0.007518248838415677,-0.006970522622169472,-0.006249718305618962,-0.005373146354899208,-0.004361996901685738,-0.0032408279199805166,-0.002036969191411513,-0.0007798565151358726,0.0004996876279817562,0.001770209388071569,0.0030003963366801744,0.004159848758271796,0.005219830454435312,0.00615398052791303,0.006938968526270473,0.007555076673659634,0.007986694671629482,0.008222714664223712,0.008256816387595532,0.008087635201188133,0.007718808560978605,0.0071588994753847635,0.006421198508172137,0.005523408885788824,0.004487222155278088,0.0033377945519282148,0.0021031367059087002,0.0008134314829056422,-0.000499703438872442,-0.0018039902493973679,-0.003067283975158818,-0.004258364265178828,-0.005347706502646116,-0.006308213207596361,-0.0071158876231350015,-0.007750432752783476,-0.008195760906976714,-0.008440400979594465,-0.008477793158440083,-0.00830646351654873,-0.007930073867307213,-0.0073573453238827856,-0.006601857107479762,-0.005681725223228556,-0.0046191685913440795,-0.00343997301124608,-0.002172865878491089,-0.000848816805416778,0.0004997188393791741,0.0018395950070607538,0.0031377891943448924,0.0043622158295575945,0.00548251879613691,0.006470823530053587,0.007302430069540686,0.00795642983820608,0.008416230772783183,0.008669977620587218,0.008710856775759574,0.008537277835914221,0.008152927073374361,0.007566691154240954,0.0067924526271774775,0.005848761863716986,0.004758393185276712,0.003547795783489767,0.002246452658789748,0.0008861631022999444,-0.0004997338294791775,-0.0018771758973029884,-0.00321221433100436,-0.004471850013078171,-0.005624848611131677,-0.006642514537169457,-0.007499404568950085,-0.008173963400150804,-0.008649065257907065,-0.008912447993631547,-0.008957028661184158,-0.008781092482245416,-0.008388350191923908,-0.007787861982682491,-0.006993829542630063,-0.006025260934597521,-0.00490551620515694,-0.0036617445702319786,-0.0023242267229033843,-0.0009256381823074528,0.0004997484091502838,0.0019169025796951778,0.0032908963737016744,0.004587764632723605,0.005775344037248705,0.006824070196554876,0.007707713047173838,0.008404032282078013,0.008895336448238294,0.009168931673829792,0.009217448662096237,0.009039039551906143,0.008637439423280494,0.00802189054207004,0.0072069308103380825,0.006212051235057717,0.005061230465070703,0.0037823574949215487,0.0024065564186282855,0.0009674295674134457,-0.0004997625783709313,-0.0019589647031661435,-0.003374212073684432,-0.0047105163317371,-0.005934729861138727,-0.00701636739054331,-0.00792836448357954,-0.00864775406075006,-0.009156244058995261,-0.009440681717724978,-0.009493392727115867,-0.009312386519058333,-0.008901422249298773,-0.008269933431326915,-0.007432812654895259,-0.006410061269489353,-0.005226312250712162,-0.003910237612970433,-0.0024938546071045717,-0.0010117474751470943,0.0004997763371201655,0.0020035749392887845,0.003462583987844246,0.004840729533390602,0.0061038192581056505,0.007220390101644551,0.008162491280137086,0.008906383228972753,0.009433135009774935,0.009729105167362266,0.009786293844752715,0.009602557095107062,0.009181677692858837,0.008533290260114216,0.007672662102749089,0.006620334705659712,0.0054016342808136195,0.004046063010037322,0.0025865855963589407,0.0010588283592409028,-0.0004997896853776387,-0.00205097258519768,-0.0035564876582846873,-0.004979107081491587,-0.006283527689693456,-0.007437246278714156,-0.008411368728706002,-0.009181332825301973,-0.009727526716384924,-0.010035787453696708,-0.010097766970372691,-0.009911156067689896,-0.009479760448602735,-0.00881342645756093,-0.007927817877065648,-0.006844048800851644,-0.005588181161158136,-0.004190598845406027,-0.0026852734125083896,-0.0011089391344622614,0.0004998026231236104,0.0021014278649721407,0.0036564601859800858,0.005126442950356316,0.00647488950859523,0.007668187994082764,0.008676438283004689,0.009474200297950855,0.010041134949701522,0.010362521592814119,0.010429638856830072,0.01023999903404854,0.009797429776316572,0.00911200059013373,0.008199795430191765,0.007082536482775649,0.00578706790892566,0.0043447117920560625,0.002790511719708866,0.0011623822450053728,-0.0004998151503389469,-0.0021552470927320567,-0.003763110524900982,-0.005283637509551593,-0.006679077906832461,-0.007914635665988832,-0.008959335531986636,-0.0097867986025394,-0.010375907341593256,-0.01071134331031862,-0.010783983952346933,-0.010591148192132959,-0.010136684290920787,-0.009430897264079186,-0.0084903171022179,-0.007337312959898937,-0.005999562283412168,-0.004509387448960357,-0.0029029757854541617,-0.0012195017797111186,0.0004998272670051219,0.0022127789058054284,0.0038771319133282475,0.005451715963279508,0.0068974290198050275,0.008178207336127728,0.009261924021310554,0.010121193812462388,0.01073406392005948,0.011084573547377905,0.011163167855840832,0.01096695567991756,0.010499804102458802,0.00977226699134646,0.008801348673583398,0.007610107983526702,0.006227111867964588,0.0046857514647080855,0.003023437000742889,0.0012806908953553464,-0.0004998389731042158,-0.002274421835964055,-0.003999316978568101,-0.005631850762340595,-0.007131471232654131,-0.00846075427748175,-0.009586336400759704,-0.010479750890638568,-0.011118146456355518,-0.011484870223983422,-0.01156990025341489,-0.011370116387791783,-0.010889402183820174,-0.010138574801233098,-0.009135143951220975,-0.007902905213460468,-0.006471377125873054,-0.00487509532933025,-0.003152780615042457,-0.001346400886507567,0.0004998502686189164,0.002340633566277561,0.004130576210748532,0.005825389024356908,0.007382961047751267,0.008764404588953112,0.009935024818272702,0.010865189766344709,0.011531078943048102,0.01191529170012241,0.012007299840468286,0.011803732751077144,0.011308487412946367,0.010532659921096364,0.00949429952644526,0.008217990581521268,0.006734272026314245,0.0050789080839449925,0.0032920275482569024,0.0014171523444164776,-0.0004998611535325186,-0.0024119423282804933,-0.004271960716259689,-0.006033886318456931,-0.007653927293463686,-0.009091616947969672,-0.010310823079117648,-0.011280654529437162,-0.011976242246615457,-0.012379375139769267,-0.012478974519597449,-0.01227139481779388,-0.011760542506896118,-0.010957809582676706,-0.00988182251890185,-0.008558012147395192,-0.007018014343138497,-0.0052989155953275845,-0.003442361416709588,-0.0014935489886831372,0.0004998716278289244,0.0024889610399411273,0.004424690453950987,0.006259148607228472,0.007946726028588931,0.009445247394025387,0.010717023904460795,0.011729799466980577,0.012457566967998242,0.012881234026972468,0.012989121238799589,0.012777279964959283,0.012249621120025238,0.01141785101478432,0.010301215047417406,0.008926054764172664,0.0073251884244305825,0.005537129588137686,0.0036051622875877326,0.0015762949496619493,-0.0004998816914927914,-0.0025724049855013645,-0.004590189559913259,-0.006503284740106256,-0.00826410928824345,-0.009828632983852033,-0.011157475749066484,-0.012216896927351098,-0.012979649911765305,-0.01342568052680455,-0.013542651320281375,-0.013326278128651059,-0.012780469839135626,-0.01191726707436337,-0.01075658045299994,-0.00932573401241398,-0.007658824195577588,-0.005795909385283268,-0.0037820492007743915,-0.0016662165495358848,0.0004998913445089461,0.0026631141174971538,0.00477013092766235,0.0067687727305811955,0.008609311920774534,0.010245697509493373,0.011636705209578624,0.012746973757611902,0.013547901476296881,0.014018380403549201,0.014145349210283263,0.013924150503129907,0.013358682855896302,0.012461342919452703,0.011252758102018584,0.00976131546474939,0.008022497514517292,0.006078040372536607,0.003974934235069368,0.0017642900102140923,-0.0004999005868632548,-0.0027620814550023795,-0.0049664930020716334,-0.007058544233101008,-0.008986162324739762,-0.010701086379985947,-0.012160073278409874,-0.01332598555263255,-0.014168733985685347,-0.014666051071562288,-0.014804075531180369,-0.014577732631325226,-0.01399090000536382,-0.013056353901713934,-0.011795496162110052,-0.010237867625189771,-0.00842045892941534,-0.00638683472261581,-0.004186091948690948,-0.0018716770589677124,0.0004999094185420486,0.00287048961502302,0.005181632877782936,0.007376093329870268,0.009399225129245892,0.011200340504971734,0.012733976888613273,0.013961041533492402,0.014849804875587623,0.015376717471201845,0.015527029563466578,0.015295197081771052,0.014685063051126261,0.013709808857247924,0.012391675444855458,0.010761460183788627,0.008857800681197014,0.006726262111548684,0.004418249548285629,0.0019897711891188065,-0.0004999178395322659,-0.0029897583307750167,-0.005418381437338485,-0.007725618200310448,-0.009853987110754086,-0.011750123003712042,-0.013366111842978676,-0.014660698091045404,-0.015600334323726319,-0.016160046474455167,-0.016324092491425985,-0.016086397156987883,-0.015450751233894125,-0.01443076883642403,-0.013049602836854107,-0.01133942406496496,-0.009340675894370185,-0.007101121390555302,-0.004674705383281189,-0.0021202584910250057,0.0004999258498214523,0.0031216070153280927,0.005680168691896224,0.00811220788424745,0.01035710244503576,0.012358518460985912,0.01406582010540616,0.01543534676709281,0.0164315253418428,0.017027789454111136,0.01720728197172487,0.016963322376947847,0.016299626238109367,0.01523027005054772,0.013779400937706705,0.011980696971165165,0.009876590028559139,0.0075172690089661464,0.004959486720135837,0.0022651987038900872,-0.0004999334493977613,-0.0032681382378879765,-0.005971191135590831,-0.008542091822640277,-0.010916720628327143,-0.013035433339911882,-0.014844554818168681,-0.01629773412717272,-0.01735712708081612,-0.017994376158632423,-0.018191362554092323,-0.01794071057576574,-0.01724603059531682,-0.016121893082504484,-0.014593532832559097,-0.012696289115624747,-0.010474793999178085,-0.007981927351863769,-0.005277562875973007,-0.002427134790205834,0.0004999406382499534,0.0034319507492050765,0.006296638515645208,0.009022978255544349,0.011542931513181105,0.01379313982622832,0.015716512391245194,0.017263668974895407,0.018394201740041794,0.019077723889096176,0.019294678073157472,0.019036883255541804,0.01830780501559801,0.017122540982044753,0.015507520032454175,0.013499920917995685,0.011146822898354138,0.008504107630408701,0.0056351377808999265,0.002609243472602071,-0.0004999474163673963,-0.003616295024378269,-0.006663006176108738,-0.009564520720248104,-0.012248379345277055,-0.014647026851347274,-0.016699506154456256,-0.018353000702765035,-0.019564186441956236,-0.02030035889874853,-0.02054030625648175,-0.020274905349463867,-0.019507424159823372,-0.018253521502547703,-0.016540941959918513,-0.014408911596615046,-0.011907247368846102,-0.009095200253482405,-0.006040058790253993,-0.002815545785387743,0.0004999537837400654,0.003825291230864221,0.007078533177597518,0.010178973033506908,0.013049125734071241,0.015616656616311184,0.01781619660230772,0.019590998332757507,0.020894391493352135,0.02169100022536502,0.02195769110143211,0.021684226547443234,0.020873605650342932,0.019542081840961685,0.017718854799131892,0.015445441904884439,0.012774742459901284,0.009769815533596396,0.0065023994595077815,0.0030512075413408474,-0.0004999597403585432,-0.004064240946168138,-0.007553829533469238,-0.010882128020591146,-0.013965887828077738,-0.01672728214438614,-0.019095860432197388,-0.021010335728581388,-0.02242015964433271,-0.023286844851593526,-0.023585000752886786,-0.023303054811625274,-0.02244363953422503,-0.0210236331485044,-0.01907385042888005,-0.016638388672805315,-0.013773642326682486,-0.010547007984849897,-0.007035309238976557,-0.0033229779441487865,0.0004999652862140198,0.004340083300719416,0.008102795183753802,0.011694694561402047,0.015025856884812715,0.01801207897605098,0.02057699534870267,0.022654018410591694,0.024188053565816138,0.025136945372233994,0.025472617162239794,0.025181873754796753,0.024266844906126683,0.02274505577530648,0.020649119713045,0.018026057899468144,0.014936259535971766,0.011452105212472875,0.0076562845047458234,0.0036398465970852944,-0.0004999704212984408,-0.004662080146458924,-0.00874400231728427,-0.012644371875125142,-0.016265441537321165,-0.019515516452917665,-0.02231126066493941,-0.024579817743191713,-0.02626069202230027,-0.027307342293871464,-0.027688446438060007,-0.0273888031865175,-0.026409845806358884,-0.024769751780945926,-0.02250314231701907,-0.019660375494870534,-0.01630644685707196,-0.012519520958176236,-0.008389126633342703,-0.004014057258478694,0.0004999751456039276,0.005042876660268622,0.009502838605092542,0.013769070874739083,0.01773453509766169,0.02129861064849018,0.024369627586925395,0.026867203255982346,0.028724323500909723,0.029889115177902006,0.030326263682841043,0.030018037484782146,0.028964890906297284,0.027185626436596784,0.02471710845601142,0.021613531138895765,0.01794525422382682,0.013797231029453067,0.009267063289083565,0.004462726824327107,-0.0004999794591236295,-0.005500201507258421,-0.01041494936313575,-0.015122097767925552,-0.019503395495178665,-0.02344740987169951,-0.026852333797550428,-0.029628585216403165,-0.031701133358597124,-0.03301149209331342,-0.033519328252961715,-0.033203641663975256,-0.03206348363128898,-0.030118191546738345,-0.027407128868067964,-0.023988931670441,-0.01994027501969843,-0.015354184264487215,-0.010337927703079418,-0.005010537669552639,0.0004999833618511663,0.0060597067783225746,0.01153200027416424,0.01678085196368086,0.02167421608177798,0.02608729880143247,0.02990570327086984,0.0330283555186565,0.035370137351112864,0.03686415868545219,0.037463609790383184,0.037143143467409614,0.035899748085635654,0.03375308433137408,0.030745271273611756,0.0269401205777288,0.02242183110802162,0.017293169422147762,0.011673174455208277,0.0056944367032340255,-0.0004999868537807644,-0.006759951276797449,-0.012931816860374167,-0.018862172060414205,-0.024401597056645626,-0.02940837678972897,-0.03375207243519965,-0.03731686260315953,-0.04000457005326665,-0.041737296306062384,-0.042459595079703864,-0.042140125802848705,-0.04077274032215785,-0.03837696906924548,-0.03499788707570154,-0.03070535499784223,-0.025592645387472197,-0.019774479462189867,-0.013384514226768273,-0.006572333619781862,0.0004999899349072574,0.007661685923094698,0.014737340888804688,0.02155112357544523,0.027931079912776952,0.033713394656709875,0.03874651588525045,0.04289504043866155,0.046043262752153966,0.04809829629297826,0.04899268585018807,0.04868644004828253,0.047168426426974816,0.04445708596298059,0.040600439679584474,0.035675376635813556,0.029786229723793814,0.023062662928087254,0.015656910604921387,0.007740425514916414,-0.000499992605226233,-0.008866502592579446,-0.017154864477134043,-0.025159312550910806,-0.03267754510405275,-0.039515712488908054,-0.04549328337019278,-0.05044767005173991,-0.05423849765455427,-0.056751408606241706,-0.057901303270916867,-0.05763492941910795,-0.055932747365152566,-0.05281001368478218,-0.04831704411740193,-0.042538635162671444,-0.03559264357197898,-0.027627742960354456,-0.018820396657069215,-0.00937110520379557,0.000499994864733469,0.010558087605421663,0.02055908147188417,0.03025533970306005,0.03940160679616202,0.047760993603911533,0.0551108797452098,0.06124859141693846,0.06599671540832616,0.06920791613822018,0.07076913177280675,0.07060503777420397,0.06868068134314281,0.06500320784720393,0.05962262010271856,0.05263153288132015,0.04416390777299434,0.034392777052016085,0.023526988931147484,0.011807030010445595,-0.0004999967134257442,-0.013106138745335857,-0.02570898710078263,-0.03799855973928189,-0.04966452564529567,-0.06040360885843763,-0.0699270043039464,-0.07796763352247421,-0.08428706849279462,-0.08868195574505121,-0.09098978085123151,-0.09109382504126834,-0.08892718092846849,-0.08447571285442106,-0.07777986882055789,-0.06893527492942458,-0.05809206921936693,-0.04545295919545017,-0.03127001565003504,-0.015840243913447575,0.0004999981513004579,0.01738163892660421,0.0344104665610476,0.05117549186887743,0.06725793467404159,0.08224065035583895,0.09571779973862263,0.10730455590546896,0.11664663627926364,0.1234294475873677,0.1273866351949371,0.1283078367450191,0.1260454529686226,0.12052026571419104,0.11172575438709667,0.09973098668999142,0.08468198733600249,0.06680151871809546,0.04638723974713541,0.023808242557048796,-0.0004999991783552169,-0.0260422026827106,-0.05227126862330819,-0.07859756170011685,-0.10439931806693205,-0.1290339921507744,-0.15185033272407747,-0.17220095940620642,-0.1894551965684494,-0.2030119122415731,-0.2123121053306151,-0.2168509853762307,-0.21618929530524725,-0.2099636390140855,-0.19789559204640889,-0.17979939477273835,-0.15558805296510078,-0.1252777000001067,-0.0889901075505834,-0.046953266897194146,0.0004999997945887241,0.052935400477926546,0.1098224699283309,0.17054172711652502,0.23439358093258905,0.30060883659125076,0.36836062236504513,0.4367775269616815,0.5049577125022463,0.5719837472068464,0.6369378860023601,0.6989175166812505,0.7570504842010011,0.8105100063474131,0.8585289003020907,0.900412851548317,0.9355524737985185,0.9634339308982586,0.9836479185198092,0.9958968343713442,1.0,0.9958968343713442,0.9836479185198092,0.9634339308982586,0.9355524737985185,0.900412851548317,0.8585289003020907,0.8105100063474131,0.7570504842010011,0.6989175166812505,0.6369378860023601,0.5719837472068464,0.5049577125022463,0.4367775269616815,0.36836062236504513,0.30060883659125076,0.23439358093258905,0.17054172711652502,0.1098224699283309,0.052935400477926546,0.0004999997945887241,-0.046953266897194146,-0.0889901075505834,-0.1252777000001067,-0.15558805296510078,-0.17979939477273835,-0.19789559204640889,-0.2099636390140855,-0.21618929530524725,-0.2168509853762307,-0.2123121053306151,-0.2030119122415731,-0.1894551965684494,-0.17220095940620642,-0.15185033272407747,-0.1290339921507744,-0.10439931806693205,-0.07859756170011685,-0.05227126862330819,-0.0260422026827106,-0.0004999991783552169,0.023808242557048796,0.04638723974713541,0.06680151871809546,0.08468198733600249,0.09973098668999142,0.11172575438709667,0.12052026571419104,0.1260454529686226,0.1283078367450191,0.1273866351949371,0.1234294475873677,0.11664663627926364,0.10730455590546896,0.09571779973862263,0.08224065035583895,0.06725793467404159,0.05117549186887743,0.0344104665610476,0.01738163892660421,0.0004999981513004579,-0.015840243913447575,-0.03127001565003504,-0.04545295919545017,-0.05809206921936693,-0.06893527492942458,-0.07777986882055789,-0.08447571285442106,-0.08892718092846849,-0.09109382504126834,-0.09098978085123151,-0.08868195574505121,-0.08428706849279462,-0.07796763352247421,-0.0699270043039464,-0.06040360885843763,-0.04966452564529567,-0.03799855973928189,-0.02570898710078263,-0.013106138745335857,-0.0004999967134257442,0.011807030010445595,0.023526988931147484,0.034392777052016085,0.04416390777299434,0.05263153288132015,0.05962262010271856,0.06500320784720393,0.06868068134314281,0.07060503777420397,0.07076913177280675,0.06920791613822018,0.06599671540832616,0.06124859141693846,0.0551108797452098,0.047760993603911533,0.03940160679616202,0.03025533970306005,0.02055908147188417,0.010558087605421663,0.000499994864733469,-0.00937110520379557,-0.018820396657069215,-0.027627742960354456,-0.03559264357197898,-0.042538635162671444,-0.04831704411740193,-0.05281001368478218,-0.055932747365152566,-0.05763492941910795,-0.057901303270916867,-0.056751408606241706,-0.05423849765455427,-0.05044767005173991,-0.04549328337019278,-0.039515712488908054,-0.03267754510405275,-0.025159312550910806,-0.017154864477134043,-0.008866502592579446,-0.000499992605226233,0.007740425514916414,0.015656910604921387,0.023062662928087254,0.029786229723793814,0.035675376635813556,0.040600439679584474,0.04445708596298059,0.047168426426974816,0.04868644004828253,0.04899268585018807,0.04809829629297826,0.046043262752153966,0.04289504043866155,0.03874651588525045,0.033713394656709875,0.027931079912776952,0.02155112357544523,0.014737340888804688,0.007661685923094698,0.0004999899349072574,-0.006572333619781862,-0.013384514226768273,-0.019774479462189867,-0.025592645387472197,-0.03070535499784223,-0.03499788707570154,-0.03837696906924548,-0.04077274032215785,-0.042140125802848705,-0.042459595079703864,-0.041737296306062384,-0.04000457005326665,-0.03731686260315953,-0.03375207243519965,-0.02940837678972897,-0.024401597056645626,-0.018862172060414205,-0.012931816860374167,-0.006759951276797449,-0.0004999868537807644,0.0056944367032340255,0.011673174455208277,0.017293169422147762,0.02242183110802162,0.0269401205777288,0.030745271273611756,0.03375308433137408,0.035899748085635654,0.037143143467409614,0.037463609790383184,0.03686415868545219,0.035370137351112864,0.0330283555186565,0.02990570327086984,0.02608729880143247,0.02167421608177798,0.01678085196368086,0.01153200027416424,0.0060597067783225746,0.0004999833618511663,-0.005010537669552639,-0.010337927703079418,-0.015354184264487215,-0.01994027501969843,-0.023988931670441,-0.027407128868067964,-0.030118191546738345,-0.03206348363128898,-0.033203641663975256,-0.033519328252961715,-0.03301149209331342,-0.031701133358597124,-0.029628585216403165,-0.026852333797550428,-0.02344740987169951,-0.019503395495178665,-0.015122097767925552,-0.01041494936313575,-0.005500201507258421,-0.0004999794591236295,0.004462726824327107,0.009267063289083565,0.013797231029453067,0.01794525422382682,0.021613531138895765,0.02471710845601142,0.027185626436596784,0.028964890906297284,0.030018037484782146,0.030326263682841043,0.029889115177902006,0.028724323500909723,0.026867203255982346,0.024369627586925395,0.02129861064849018,0.01773453509766169,0.013769070874739083,0.009502838605092542,0.005042876660268622,0.0004999751456039276,-0.004014057258478694,-0.008389126633342703,-0.012519520958176236,-0.01630644685707196,-0.019660375494870534,-0.02250314231701907,-0.024769751780945926,-0.026409845806358884,-0.0273888031865175,-0.027688446438060007,-0.027307342293871464,-0.02626069202230027,-0.024579817743191713,-0.02231126066493941,-0.019515516452917665,-0.016265441537321165,-0.012644371875125142,-0.00874400231728427,-0.004662080146458924,-0.0004999704212984408,0.0036398465970852944,0.0076562845047458234,0.011452105212472875,0.014936259535971766,0.018026057899468144,0.020649119713045,0.02274505577530648,0.024266844906126683,0.025181873754796753,0.025472617162239794,0.025136945372233994,0.024188053565816138,0.022654018410591694,0.02057699534870267,0.01801207897605098,0.015025856884812715,0.011694694561402047,0.008102795183753802,0.004340083300719416,0.0004999652862140198,-0.0033229779441487865,-0.007035309238976557,-0.010547007984849897,-0.013773642326682486,-0.016638388672805315,-0.01907385042888005,-0.0210236331485044,-0.02244363953422503,-0.023303054811625274,-0.023585000752886786,-0.023286844851593526,-0.02242015964433271,-0.021010335728581388,-0.019095860432197388,-0.01672728214438614,-0.013965887828077738,-0.010882128020591146,-0.007553829533469238,-0.004064240946168138,-0.0004999597403585432,0.0030512075413408474,0.0065023994595077815,0.009769815533596396,0.012774742459901284,0.015445441904884439,0.017718854799131892,0.019542081840961685,0.020873605650342932,0.021684226547443234,0.02195769110143211,0.02169100022536502,0.020894391493352135,0.019590998332757507,0.01781619660230772,0.015616656616311184,0.013049125734071241,0.010178973033506908,0.007078533177597518,0.003825291230864221,0.0004999537837400654,-0.002815545785387743,-0.006040058790253993,-0.009095200253482405,-0.011907247368846102,-0.014408911596615046,-0.016540941959918513,-0.018253521502547703,-0.019507424159823372,-0.020274905349463867,-0.02054030625648175,-0.02030035889874853,-0.019564186441956236,-0.018353000702765035,-0.016699506154456256,-0.014647026851347274,-0.012248379345277055,-0.009564520720248104,-0.006663006176108738,-0.003616295024378269,-0.0004999474163673963,0.002609243472602071,0.0056351377808999265,0.008504107630408701,0.011146822898354138,0.013499920917995685,0.015507520032454175,0.017122540982044753,0.01830780501559801,0.019036883255541804,0.019294678073157472,0.019077723889096176,0.018394201740041794,0.017263668974895407,0.015716512391245194,0.01379313982622832,0.011542931513181105,0.009022978255544349,0.006296638515645208,0.0034319507492050765,0.0004999406382499534,-0.002427134790205834,-0.005277562875973007,-0.007981927351863769,-0.010474793999178085,-0.012696289115624747,-0.014593532832559097,-0.016121893082504484,-0.01724603059531682,-0.01794071057576574,-0.018191362554092323,-0.017994376158632423,-0.01735712708081612,-0.01629773412717272,-0.014844554818168681,-0.013035433339911882,-0.010916720628327143,-0.008542091822640277,-0.005971191135590831,-0.0032681382378879765,-0.0004999334493977613,0.0022651987038900872,0.004959486720135837,0.0075172690089661464,0.009876590028559139,0.011980696971165165,0.013779400937706705,0.01523027005054772,0.016299626238109367,0.016963322376947847,0.01720728197172487,0.017027789454111136,0.0164315253418428,0.01543534676709281,0.01406582010540616,0.012358518460985912,0.01035710244503576,0.00811220788424745,0.005680168691896224,0.0031216070153280927,0.0004999258498214523,-0.0021202584910250057,-0.004674705383281189,-0.007101121390555302,-0.009340675894370185,-0.01133942406496496,-0.013049602836854107,-0.01443076883642403,-0.015450751233894125,-0.016086397156987883,-0.016324092491425985,-0.016160046474455167,-0.015600334323726319,-0.014660698091045404,-0.013366111842978676,-0.011750123003712042,-0.009853987110754086,-0.007725618200310448,-0.005418381437338485,-0.0029897583307750167,-0.0004999178395322659,0.0019897711891188065,0.004418249548285629,0.006726262111548684,0.008857800681197014,0.010761460183788627,0.012391675444855458,0.013709808857247924,0.014685063051126261,0.015295197081771052,0.015527029563466578,0.015376717471201845,0.014849804875587623,0.013961041533492402,0.012733976888613273,0.011200340504971734,0.009399225129245892,0.007376093329870268,0.005181632877782936,0.00287048961502302,0.0004999094185420486,-0.0018716770589677124,-0.004186091948690948,-0.00638683472261581,-0.00842045892941534,-0.010237867625189771,-0.011795496162110052,-0.013056353901713934,-0.01399090000536382,-0.014577732631325226,-0.014804075531180369,-0.014666051071562288,-0.014168733985685347,-0.01332598555263255,-0.012160073278409874,-0.010701086379985947,-0.008986162324739762,-0.007058544233101008,-0.0049664930020716334,-0.0027620814550023795,-0.0004999005868632548,0.0017642900102140923,0.003974934235069368,0.006078040372536607,0.008022497514517292,0.00976131546474939,0.011252758102018584,0.012461342919452703,0.013358682855896302,0.013924150503129907,0.014145349210283263,0.014018380403549201,0.013547901476296881,0.012746973757611902,0.011636705209578624,0.010245697509493373,0.008609311920774534,0.0067687727305811955,0.00477013092766235,0.0026631141174971538,0.0004998913445089461,-0.0016662165495358848,-0.0037820492007743915,-0.005795909385283268,-0.007658824195577588,-0.00932573401241398,-0.01075658045299994,-0.01191726707436337,-0.012780469839135626,-0.013326278128651059,-0.013542651320281375,-0.01342568052680455,-0.012979649911765305,-0.012216896927351098,-0.011157475749066484,-0.009828632983852033,-0.00826410928824345,-0.006503284740106256,-0.004590189559913259,-0.0025724049855013645,-0.0004998816914927914,0.0015762949496619493,0.0036051622875877326,0.005537129588137686,0.0073251884244305825,0.008926054764172664,0.010301215047417406,0.01141785101478432,0.012249621120025238,0.012777279964959283,0.012989121238799589,0.012881234026972468,0.012457566967998242,0.011729799466980577,0.010717023904460795,0.009445247394025387,0.007946726028588931,0.006259148607228472,0.004424690453950987,0.0024889610399411273,0.0004998716278289244,-0.0014935489886831372,-0.003442361416709588,-0.0052989155953275845,-0.007018014343138497,-0.008558012147395192,-0.00988182251890185,-0.010957809582676706,-0.011760542506896118,-0.01227139481779388,-0.012478974519597449,-0.012379375139769267,-0.011976242246615457,-0.011280654529437162,-0.010310823079117648,-0.009091616947969672,-0.007653927293463686,-0.006033886318456931,-0.004271960716259689,-0.0024119423282804933,-0.0004998611535325186,0.0014171523444164776,0.0032920275482569024,0.0050789080839449925,0.006734272026314245,0.008217990581521268,0.00949429952644526,0.010532659921096364,0.011308487412946367,0.011803732751077144,0.012007299840468286,0.01191529170012241,0.011531078943048102,0.010865189766344709,0.009935024818272702,0.008764404588953112,0.007382961047751267,0.005825389024356908,0.004130576210748532,0.002340633566277561,0.0004998502686189164,-0.001346400886507567,-0.003152780615042457,-0.00487509532933025,-0.006471377125873054,-0.007902905213460468,-0.009135143951220975,-0.010138574801233098,-0.010889402183820174,-0.011370116387791783,-0.01156990025341489,-0.011484870223983422,-0.011118146456355518,-0.010479750890638568,-0.009586336400759704,-0.00846075427748175,-0.007131471232654131,-0.005631850762340595,-0.003999316978568101,-0.002274421835964055,-0.0004998389731042158,0.0012806908953553464,0.003023437000742889,0.0046857514647080855,0.006227111867964588,0.007610107983526702,0.008801348673583398,0.00977226699134646,0.010499804102458802,0.01096695567991756,0.011163167855840832,0.011084573547377905,0.01073406392005948,0.010121193812462388,0.009261924021310554,0.008178207336127728,0.0068974290198050275,0.005451715963279508,0.0038771319133282475,0.0022127789058054284,0.0004998272670051219,-0.0012195017797111186,-0.0029029757854541617,-0.004509387448960357,-0.005999562283412168,-0.007337312959898937,-0.0084903171022179,-0.009430897264079186,-0.010136684290920787,-0.010591148192132959,-0.010783983952346933,-0.01071134331031862,-0.010375907341593256,-0.0097867986025394,-0.008959335531986636,-0.007914635665988832,-0.006679077906832461,-0.005283637509551593,-0.003763110524900982,-0.0021552470927320567,-0.0004998151503389469,0.0011623822450053728,0.002790511719708866,0.0043447117920560625,0.00578706790892566,0.007082536482775649,0.008199795430191765,0.00911200059013373,0.009797429776316572,0.01023999903404854,0.010429638856830072,0.010362521592814119,0.010041134949701522,0.009474200297950855,0.008676438283004689,0.007668187994082764,0.00647488950859523,0.005126442950356316,0.0036564601859800858,0.0021014278649721407,0.0004998026231236104,-0.0011089391344622614,-0.0026852734125083896,-0.004190598845406027,-0.005588181161158136,-0.006844048800851644,-0.007927817877065648,-0.00881342645756093,-0.009479760448602735,-0.009911156067689896,-0.010097766970372691,-0.010035787453696708,-0.009727526716384924,-0.009181332825301973,-0.008411368728706002,-0.007437246278714156,-0.006283527689693456,-0.004979107081491587,-0.0035564876582846873,-0.00205097258519768,-0.0004997896853776387,0.0010588283592409028,0.0025865855963589407,0.004046063010037322,0.0054016342808136195,0.006620334705659712,0.007672662102749089,0.008533290260114216,0.009181677692858837,0.009602557095107062,0.009786293844752715,0.009729105167362266,0.009433135009774935,0.008906383228972753,0.008162491280137086,0.007220390101644551,0.0061038192581056505,0.004840729533390602,0.003462583987844246,0.0020035749392887845,0.0004997763371201655,-0.0010117474751470943,-0.0024938546071045717,-0.003910237612970433,-0.005226312250712162,-0.006410061269489353,-0.007432812654895259,-0.008269933431326915,-0.008901422249298773,-0.009312386519058333,-0.009493392727115867,-0.009440681717724978,-0.009156244058995261,-0.00864775406075006,-0.00792836448357954,-0.00701636739054331,-0.005934729861138727,-0.0047105163317371,-0.003374212073684432,-0.0019589647031661435,-0.0004997625783709313,0.0009674295674134457,0.0024065564186282855,0.0037823574949215487,0.005061230465070703,0.006212051235057717,0.0072069308103380825,0.00802189054207004,0.008637439423280494,0.009039039551906143,0.009217448662096237,0.009168931673829792,0.008895336448238294,0.008404032282078013,0.007707713047173838,0.006824070196554876,0.005775344037248705,0.004587764632723605,0.0032908963737016744,0.0019169025796951778,0.0004997484091502838,-0.0009256381823074528,-0.0023242267229033843,-0.0036617445702319786,-0.00490551620515694,-0.006025260934597521,-0.006993829542630063,-0.007787861982682491,-0.008388350191923908,-0.008781092482245416,-0.008957028661184158,-0.008912447993631547,-0.008649065257907065,-0.008173963400150804,-0.007499404568950085,-0.006642514537169457,-0.005624848611131677,-0.004471850013078171,-0.00321221433100436,-0.0018771758973029884,-0.0004997338294791775,0.0008861631022999444,0.002246452658789748,0.003547795783489767,0.004758393185276712,0.005848761863716986,0.0067924526271774775,0.007566691154240954,0.008152927073374361,0.008537277835914221,0.008710856775759574,0.008669977620587218,0.008416230772783183,0.00795642983820608,0.007302430069540686,0.006470823530053587,0.00548251879613691,0.0043622158295575945,0.0031377891943448924,0.0018395950070607538,0.0004997188393791741,-0.000848816805416778,-0.002172865878491089,-0.00343997301124608,-0.0046191685913440795,-0.005681725223228556,-0.006601857107479762,-0.0073573453238827856,-0.007930073867307213,-0.00830646351654873,-0.008477793158440083,-0.008440400979594465,-0.008195760906976714,-0.007750432752783476,-0.0071158876231350015,-0.006308213207596361,-0.005347706502646116,-0.004258364265178828,-0.003067283975158818,-0.0018039902493973679,-0.000499703438872442,0.0008134314829056422,0.0021031367059087002,0.0033377945519282148,0.004487222155278088,0.005523408885788824,0.006421198508172137,0.0071588994753847635,0.007718808560978605,0.008087635201188133,0.008256816387595532,0.008222714664223712,0.007986694671629482,0.007555076673659634,0.006938968526270473,0.00615398052791303,0.005219830454435312,0.004159848758271796,0.0030003963366801744,0.001770209388071569,0.0004996876279817562,-0.0007798565151358726,-0.002036969191411513,-0.0032408279199805166,-0.004361996901685738,-0.005373146354899208,-0.006249718305618962,-0.006970522622169472,-0.007518248838415677,-0.007879881413354087,-0.008047008476746451,-0.008016016750413116,-0.007788168147512269,-0.007369556468131376,-0.0067709455569826904,-0.006007493195508426,-0.005098367795032375,-0.00406626757144897,-0.002936854251610923,-0.001738115429529981,-0.0004996714067304989,0.0007479563256406181,0.001974096906540806,0.003148683716845993,0.004242991275637051,0.005230337369769898,0.006086733263927448,0.006791466155552376,0.007327599741707257,0.007682380810259297,0.007847542104792373,0.007819494283229648,0.007599402530636992,0.0071931462293892065,0.006611162964793749,0.005868180980738414,0.00498284692843379,0.003977258305157144,0.0028764122968070907,0.0017075847617731318,0.0004996547751426591,-0.0007176085488191038,-0.0019142793526266359,-0.0030610103956079625,-0.00412975241688066,-0.005094439876749037,-0.005931626320208761,-0.006621053883690652,-0.0071461431205133005,-0.00749439131022715,-0.007657669692472181,-0.007632412570596073,-0.007419693902059468,-0.00702518976560601,-0.006459027900989132,-0.005735528286773773,-0.004872841387469698,-0.0038924931978167655,-0.0028188484785587834,-0.0016785055594146566,-0.0004996377332428323,0.0006887024590844695,0.0018572988812404086,0.002977489770878448,0.004021870390332069,0.004964963140903979,0.005783838762709905,0.00645867348177893,0.00697322857456826,0.007315240756871837,0.007476714020971239,0.007454105986715664,0.0072484044385550265,0.00686509242701998,0.006314003053072047,0.005609067759797775,0.00476796456174382,0.0038116750840514395,0.002763961501886978,0.0016507764115494547,0.0004996202810562207,-0.000661137618945707,-0.0018029580433547453,-0.0028978331530358048,-0.003918973217882978,-0.004841461813221321,-0.005642863492807218,-0.00630376912560896,-0.0068082656483729465,-0.007144318872459579,-0.007304060144513753,-0.007283970042533686,-0.007084954832834188,-0.006712314056442612,-0.006175600290505054,-0.0054883747755184375,-0.004667865147774014,-0.0037345339059533106,-0.0027115684130571555,-0.0016243051369436027,-0.0004996024186086334,0.0006348227112328063,0.001751077299161873,0.0028217780078207697,0.0038207225846256412,0.004723530802254397,0.005508239199596709,0.006155835121716455,0.006650717080657745,0.006981070297430318,0.007139148393392101,0.007121454524150196,0.006928817733460248,0.006566362887066885,0.006043375163372362,0.005373062664920417,0.004572223208487779,0.00366082369106865,0.002661502557124518,0.0015990077573746666,0.0004995841459264859,-0.0006096745268524057,-0.0017014930325724936,-0.0027490850598400076,-0.003726810115047434,-0.004610800825773317,-0.005379545306061812,-0.006014410380286908,-0.006500092945987263,-0.006824988548794429,-0.006981468299673631,-0.00696605753506431,-0.006779512047935621,-0.006426790242315971,-0.005916922123318421,-0.005262778566147284,-0.004480746748942261,-0.0035903199258494715,-0.0026136118024667624,-0.001574807605029865,-0.0004995654630368001,0.0005856170844319539,0.0016540558241312868,0.002679535772645588,0.0036369541328365278,0.004502934539498232,0.0052563975701654195,0.005879073603542854,0.0063559455539161066,0.0066756107589302964,0.006830553306687212,0.006817320306335428,0.00663659797929637,0.006293185917383429,0.00579587035849868,0.0051571998087626405,0.004393168731053918,0.003522817265481432,0.002567756992455373,0.0015516345439747503,0.0004995463699672048,-0.0005625808622302939,-0.0016086289439431784,-0.002612930149483023,-0.00355089683257666,-0.004399623157422036,-0.00513844424394292,-0.005749439083839183,-0.006217864993821124,-0.006532513079655107,-0.006685976146785181,-0.006674822661613705,-0.006499672688346078,-0.006165174142321336,-0.0056798801524359024,-0.005056030752344932,-0.004309244463048439,-0.003458127530881927,-0.002523810591072749,-0.0015294242890396418,-0.0004995268667459349,0.000540502125959515,0.0015650870325921698,0.0025490848080893997,0.003468401803513102,0.004300583492403815,0.005025362709726539,0.005625153023194407,0.006085475232027197,0.006395306655450966,0.006547344790928543,0.006538179042619891,0.006368366491416408,0.006042410043000381,0.005568639691477361,0.004959000014178264,0.004228749309879922,0.003396077951716217,0.002481655494709924,0.0015081178081936151,0.0004995069534018319,-0.0005193223388304313,-0.0015233149432513535,-0.002487831290511065,-0.003389251855298386,-0.004205555357299137,-0.004916856525754135,-0.005505890300295326,-0.0059584306829663135,-0.006263634085278337,-0.006414298889231547,-0.006407035015899065,-0.006242339518075985,-0.005924576529748495,-0.0054618622576696665,-0.004865858031292078,-0.004151476679503171,-0.003336509620886159,-0.0024411839868356293,-0.0014876607967040138,-0.0004994866299642018,0.00049898764232188,0.0014832067224623852,0.002429014575136549,0.003313247103609064,0.004114299276403143,0.004812652824190476,0.005391351622764299,0.005836413188532,0.0061371663051847155,0.0062865066344118545,0.006281064194202998,0.006121278765158374,0.0058113815545614185,0.005359283753837758,0.004776374910732589,0.004077236246987845,0.003279276131380149,0.002402296815886421,0.0014680032132216182,0.0004994658964633853,-0.0004794483979762931,-0.0014446647105886001,-0.0023724917632710714,-0.0032402032801042424,-0.004026594464822248,-0.004712500013473497,-0.00528126101217035,-0.005719129350038298,-0.006015599834457481,-0.006163661990663994,-0.006159965516198533,-0.006004895493344948,-0.005702555686933521,-0.005260660515888773,-0.004690338529078103,-0.004005852384333669,-0.003224242370864638,-0.0023649023797592404,-0.0014490988694453005,-0.0004994447529298979,0.00046065878201354227,0.0014075987458627799,0.002318130916824251,0.0031699502366417673,0.0039422370398797205,0.004616165744253739,0.005175363577291166,0.0056063081656796115,0.00589865433680216,0.006045482239232985,0.00604346083677062,0.005892922920715492,0.005597849965947223,0.0051657673741894745,0.004607552848123224,0.003937162768715742,0.0031712834531242825,0.002328916002800086,0.0014309050662837338,0.0004994231993950062,-0.0004425764257956385,-0.0013719254583731547,-0.002265810027208975,-0.0031023306181918254,-0.003861038434053021,-0.0045234351043086955,-0.005073423537804843,-0.005497698933444512,-0.0057860704552892585,-0.005931705799250733,-0.005931292787319428,-0.005785114174483438,-0.005497033992576092,-0.005074395931549558,-0.0045278364185797,-0.0038710171459441123,-0.0031202837685617006,-0.002294259293276324,-0.001413382270481044,-0.0004994012358905829,0.00042516209620153196,0.001337567642349765,0.0022154160984898313,0.003037198682660485,0.0037828239834388124,0.004434109012914148,0.0049752224661573485,0.005393069385325811,0.00567760788587446,0.0058220902884803544,0.005823222871405137,0.005681240467815142,0.005399894231433152,0.004986353030091614,0.004451021047755252,0.0038072762293109965,0.003071136138562334,0.0022608595710706075,0.0013964938265517643,0.0004993788624491068,-0.0004083794108390892,-0.0013044536968056491,-0.0021668443302790726,-0.002974419248993278,-0.0037074316695068334,-0.0043480027894247505,-0.004880557720013452,-0.005292204023601741,-0.0055730436593746996,-0.0057164107937097515,-0.005719029766083681,-0.0055810894733952805,-0.005306232495619118,-0.0049014593832697444,-0.004376950610621241,-0.003745810716841524,-0.003023741060706416,-0.002228649356802987,-0.0013802056996074816,-0.0004993560791036628,0.00039219458374272734,0.0012725171260012716,0.002119997387946734,0.0029138667575810077,0.0036347109950666994,0.00426494487440376,0.004789241041616164,0.005194902634108511,0.005472170606050852,0.0056144583248202125,0.005618507803472118,0.005484463869405808,0.005215864592045647,0.004819548352648121,0.004305479986582424,0.0036865004123560227,0.0029780060336419465,0.002197565914824165,0.0013644862452781303,0.0004993328858879418,-0.0003765761978162575,-0.001241696092400159,-0.0020747847494479673,-0.002855424429223849,-0.003564521978037302,-0.0041847756846658795,-0.0047010973036822395,-0.005100978954919898,-0.005374795980547332,-0.005516038430169592,-0.0055214656106216805,-0.005391180036965443,-0.005128619107748382,-0.004740464851877603,-0.00423647410671219,-0.003629233437771507,-0.002933844951979487,-0.002167550843566953,-0.001349306003455068,-0.0004993092828362403,0.0003614950007958476,0.001211933015790789,0.0020311221195462256,0.0027989835108012304,0.003496734248862375,0.0041073465861544605,0.004615963384254445,0.005010259481806343,0.005280740227984156,0.0054209699539874675,0.005427724888771913,0.005301066890937123,0.0050443363203623295,0.004664064362702018,0.004169807098291436,0.003573905525780575,0.0028911775628799184,0.002138549707627634,0.001334637513027222,0.0004992852699834612,-0.0003469237219449453,-0.0011831742131067637,-0.00198893090345579,-0.0027444425973930627,-0.003431226239326559,-0.004032518970743513,-0.004533687155300853,-0.0049225823943547355,-0.005189835874581361,-0.005329083919074996,-0.005337119315601866,-0.005213964828439405,-0.004962867218188989,-0.004590212049858264,-0.004105361515251484,-0.0035204193834989695,-0.0028499289771196233,-0.002110511706700611,-0.0013204551451590709,-0.0004992608473651126,0.00033283690706444556,0.001155369574205037,0.0019481377329887916,0.0026917070219641434,0.0033678844521541663,0.003960163424899833,0.004454126571867653,0.004837796588765052,0.005101926528395135,0.005240222520311385,0.00524949355625904,0.0051297247814656565,0.004884072617206557,0.004518781963465712,0.004043027644622638,0.0034686841189110838,0.002810029228366162,0.002083389377130332,0.0013067349529809705,0.0004992360150173086,-0.0003192107697180752,-0.0011284722694826124,-0.0019086740391963822,-0.0026406883048833213,-0.003306602802156573,-0.0038901589797166376,-0.004377148850312425,-0.00475576080516197,-0.005016865977622425,-0.005154238216354864,-0.0051647023707949305,-0.005048207361780579,-0.004807822364015872,-0.004449656318979023,-0.003982702880372353,-0.003418614723000364,-0.0027714128752081325,-0.0020571383223919448,-0.0012934545358373121,-0.0004992107729767691,0.0003060230568437195,0.001102438485742836,0.0018704756662674044,0.002591303656543708,0.0032472820208839064,0.0038223924331743596,0.004302629725616512,0.0046763428388188755,0.004934517375537622,0.005070992908540356,0.005082609807218276,0.004969282087775558,0.004733994615120348,0.0043827248460450085,0.003924291157115461,0.0033701316013577025,0.002734018641177403,0.0020317169692812696,0.0012805929164737,0.0004991851212808195,-0.0002932529271535201,-0.0010772271871774145,-0.0018334825221112672,-0.0025434755272024895,-0.0031898291177523837,-0.0037567577366424847,-0.004230452779039355,-0.004599418826029224,-0.004854752502503775,-0.004990357197361619,-0.00500308847073524,-0.004892826684262159,-0.0046624751841449616,-0.00431788419869166,-0.0038677024371222344,-0.0033231601498391965,-0.0026977890885985433,-0.002007086346997732,-0.001268130429746832,-0.0004991590599673905,0.0002808808409249539,0.0010527998987214108,0.0017976382616219783,0.002497131198891782,0.0031341568914942967,0.00369315543862843,0.004160508828461759,0.0045248725965120525,0.004777451096687194,0.0049122097081178645,0.004926018860914603,0.004818726447300286,0.0045931569496381495,0.00425503742021364,0.003812852244862413,0.0032776303695147735,0.0026626703226140984,0.0019832098866509633,0.0012560486216152238,0.0004991325890751277,-0.0002688884599578775,-0.001029120509375415,-0.001762889999112639,-0.0024522024148836115,-0.003080183486532642,-0.00363149217963671,-0.004092695374704395,-0.004452595085229361,-0.004702500246127501,-0.004836436478333121,-0.004851288769524329,-0.004746873667121443,-0.004525939316996899,-0.004194093456927031,-0.0037596612440242093,-0.0032334765167283713,-0.00262861172217786,-0.00196005323902232,-0.0012443301573194486,-0.0004991057086428458,0.000257258556617783,0.0010061550933810979,0.0017291880468313775,0.002408625042738683,0.0030278319895318258,0.0035716802327426353,0.004026916097914493,0.004382483797353004,0.004629793835699608,0.0047629304004462095,0.004778792732657876,0.004677167103040538,0.004460727728830894,0.004134966715663405,0.003708054852554489,0.0031906367845885584,0.0025955656951928766,0.001937584108669108,0.0012329587377918046,0.0004990784187105133,-0.0002459749310211105,-0.0009838717473853724,-0.0016964856768440163,-0.002366338767438618,-0.0029770300619459526,-0.0035136370851241356,-0.003963080398819343,-0.004314442320859904,-0.004559232043271503,-0.004691590714039125,-0.004708431531524252,-0.0046095115049737305,-0.004397433218752754,-0.004077576660482938,-0.003657962891790274,-0.003149053012647872,-0.0025634874553012907,-0.0019157721026907203,-0.001221919023445403,-0.0004990507193186902,0.00023502233551934661,0.0009622404419539777,0.001664738903877841,0.0023252868115176983,0.002927709604868079,0.003457285056356873,0.0039011029802484038,0.004248379881883172,0.004490720880025752,0.004622322542542066,0.00464011173693275,0.004543817176805342,0.004335972004167912,0.004021847444607473,0.0036093192662131927,0.0031086704218984186,0.002532334818128306,0.0018945885926617018,0.0012111965645976927,0.0004990226105079152,-0.0002243864057470228,-0.0009412328859753212,-0.001633906287010624,-0.002285415679457893,-0.0028798064529203336,-0.0034025509497552704,-0.0038409034648629265,-0.004184210938504212,-0.004424171770494853,-0.004555036469934834,-0.004573745293074292,-0.004479999577396246,-0.004276265114142462,-0.003967707574039605,-0.0035620616707499387,-0.0030694373725496556,-0.0025020680150257975,-0.0018740065884190315,-0.0012007777378588993,-0.0004989940923201636,0.0002140535975756675,0.0009208224026722554,0.001603948748318357,0.0022466749239332625,0.002833260094286147,0.003349365733473225,0.003782406045486839,0.004121854809166118,0.004359501168362803,0.004489648153473979,0.0045092491367007045,0.004417978955500211,0.004218238048875759,0.003915089599727332,0.003516131322897338,0.0030313051423310907,0.00247264952259193,0.001854000622527379,0.0011906496879029755,0.0004989651647971963,-0.0002040111293898457,-0.0009009838160769917,-0.0015748294068192038,-0.002209016931750107,-0.00278801341432119,-0.0032976642484385324,-0.003725539164843909,-0.004061235332311548,-0.00429663020453047,-0.004426077968918025,-0.004446544848238485,-0.004357680015274515,-0.00416182046768777,-0.0038639298354905707,-0.0034714727172461034,-0.0029942277233235655,-0.002444043906424473,-0.0018345466443885374,-0.00118080027409129,-0.0004989358279821871,0.00019424692917314562,0.0008816933469513917,0.0015465134262239314,0.0021723967275787473,0.0027440124604536926,0.0032473849405272276,0.0036702352218526595,0.004002280554228679,0.004235484364325886,0.004364250685113706,0.004385558331756163,0.004299031609433661,0.0041069459027759676,0.0038141680992259076,0.003428033400252026,0.0029581616355329,0.0024162176777453677,0.001815621923063279,0.001171218021489431,0.0004989060819181181,-0.0001847495859371765,-0.0008629285172529031,-0.0015189678751761518,-0.002136771793770344,-0.0027012062263444907,-0.0031984696146588124,-0.0036164303019479366,-0.003944922442412582,-0.0041759931910834505,-0.0043040951651462525,-0.004326219521038878,-0.004241966457418358,-0.004053551496290331,-0.003765747475181695,-0.0033857637633289235,-0.0029230657556224377,-0.0023891391616713644,-0.0017972049579859917,-0.001161892075855331,-0.0004988759266493618,0.00017550830508916387,0.0008446680623330474,0.0014921615988015187,0.0021021019047454403,0.002659546453486447,0.0031508632087512657,0.0035640639291636806,0.00388909662204386,0.0041180900136112,0.004245544091558453,0.00426846210931905,0.004186420886231281,0.004001577758542031,0.003718614095326008,0.003344616852551425,0.0028889011593813633,0.002362778376046668,0.001779275396828912,0.001152812162233677,0.0004988453622201207,-0.00016651286736473167,-0.0008268918501536366,-0.0014660651005107062,-0.002068348974596193,-0.002618987448624658,-0.003104513585685571,-0.0035130788379586146,-0.003834742133435919,-0.004061711695331435,-0.0041885337134062684,-0.004212223300471078,-0.004132334591842,-0.003950968345388164,-0.003672716938044913,-0.003304548193428921,-0.0028556309766647717,-0.0023371069198578395,-0.0017618139598620337,-0.0011439685468184455,-0.0004988143886759659,0.00015775359100368895,0.000809580806869352,0.001440650433117972,0.0020354769166868003,0.0025794859155436026,0.003059371341631531,0.0034634207629714703,0.003781801208532114,0.0040067984031086894,0.004133003613153557,0.004157443579707545,0.004079650419280244,0.0039016698530433777,0.0036280076425864788,0.003265515629379815,0.0028232202576643542,0.0023120978703630836,0.0017448023702120214,0.0011353520017919668,0.0004987830060623196,-0.00014922129686829603,-0.0007927168482044509,-0.0014158910984247287,-0.002003451514168219,-0.0025410007999179213,-0.003015389629249405,-0.003415038245086422,-0.0037302190647274754,-0.003953293393987211,-0.004078896491613337,-0.00410406650201642,-0.004028314159732833,-0.003853631628745344,-0.0035844403378348733,-0.003227479172668968,-0.0027916358494945565,-0.002287725688147475,-0.0017282232894953666,-0.0011269537728676021,-0.000498751214425952,0.0001409072762459341,0.0007762828160985754,0.0013917619545153609,0.001972240300425282,0.002503493146061756,0.002972523994440541,0.003367882452348414,0.0036799437144705953,0.0039011428182383874,0.004026157969326973,0.004052038496758475,0.00397827436312883,0.0038068055958650603,0.0035419714841371133,0.00319040086670408,0.0027608462821736048,0.002263966129405304,0.001712060258343741,0.0011187655493018677,0.0004987190138135041,-0.00013280326109271938,-0.0007602624201610082,-0.001368239130077827,-0.0019418124485833497,-0.002466925964521319,-0.002930732225449789,-0.0033219070144208536,-0.0036309257892521546,-0.003850295537282631,-0.003974736402933296,-0.004001308687002701,-0.003929482164852002,-0.00376114609219053,-0.0035005597270388582,-0.003154244658690453,-0.002730821663179478,-0.0022407961648112304,-0.0016962976413981126,-0.0011107794361543178,-0.000498686404272945,0.0001249013965102919,0.0007446401835075916,0.0013452999451408507,0.0019121386692788332,0.0024312641095693027,0.0028899742132417537,0.0032770678694049025,0.0035831183767293805,0.0038007029551900286,0.003924582715224827,0.003951828722319142,0.003881891125352535,0.003716609720242386,0.0034601657618934943,0.0031189762817496777,0.0027015335798338228,0.0022181939044144776,0.0016809205763798618,0.0011029879286062277,0.0004986533858521337,-0.00011719421525729847,-0.000729401392607532,-0.0013229228376689499,-0.0018831911159860532,-0.002396474165743659,-0.002850211822183158,-0.0032333231219556875,-0.003536476869856068,-0.003752318862593936,-0.0038756502377148556,-0.0039035526238738205,-0.003835457081552563,-0.0036731552085880258,-0.0034207522084155942,-0.0030845631456884472,-0.0026729550088480064,-0.0021961385280363276,-0.0016659149268954672,-0.001095383888156867,-0.0004986199586002391,0.00010967461412752293,0.0007145320507927611,0.0013010872955213537,0.0018549432972521389,0.0023625243426653605,0.002811408770151105,0.0031906329117375796,0.0034909588269975552,0.0037050992919631983,0.0038278945646545333,0.0038564366407827476,0.0037901380090449408,0.003630743283224622,0.003382283494334375,0.003050974235689144,0.0026450602324217917,0.0021746102207105132,0.001651267238654529,0.0010879605205442054,0.0004985861225663366,-0.00010233583203185616,-0.0007000188351267093,-0.001279773793318108,-0.0018273699952635265,-0.002329384377434712,-0.0027735305172788627,-0.0031489592913472677,-0.003446523842110451,-0.003659002383279734,-0.0037812734175394326,-0.0038104391167815476,-0.003745893894182583,-0.003589336548186579,-0.003344725747388711,-0.0030181800182567525,-0.0026178247603512532,-0.002153590112741015,-0.0016369646988212603,-0.001080711355241041,-0.0004985518778007949,9.517142964761325e-5,0.0006858490563475613,0.0012589637338102466,0.0018004471902129562,0.0022970254439807916,0.002736544162618248,0.003108266112921947,0.0034031334241501426,0.003613988259260146,0.0037357465192371557,0.0037655203663567944,0.0037026866152389693,0.0035488993746164476,0.00330804669497175,0.0029861523538260355,0.002591225257645969,0.002133060224000768,0.0016229950982362409,0.0010736302264018885,0.000498517224353906,-8.817527050085159e-5,-0.0006720106216383503,-0.0012386393933787395,-0.0017741519899950786,-0.002265420068788891,-0.0027004183480726107,-0.0030685189227173115,-0.0033607508849519876,-0.0035700189093381,-0.003691275476948093,-0.0037216425595647646,-0.0036604798318989884,-0.003509397797605817,-0.003272215570802842,-0.002954864415482041,-0.002565239477209873,-0.0021130034121211038,-0.0016093467962793224,-0.001066711255137382,-0.0004984821622772376,8.134150337040277e-5,0.0006584919999888736,0.0012187838713316977,0.0017484625647933205,0.002234542052492471,0.0026651231690070472,0.003029684863012243,0.0033193412348973984,0.003527058081699554,0.003647823673284301,0.0036787696148350255,0.0036192388824060036,0.00347079942018024,0.003237203028056906,0.0029242906133038495,0.0025398461971736074,0.0020934033242626738,0.0015960086881562086,0.0010599488330143533,0.0004984466916222977,-7.466454590211034e-5,-0.0006452821899462679,-0.001199381042689853,-0.0017233580861699474,-0.002204366396855014,-0.002630630091004051,-0.0029917325807501194,-0.0032788710857435607,-0.0034850711827247886,-0.00360535616481757,-0.0036368670991204738,-0.0035789306877536333,-0.003433073323855914,-0.003202981058438294,-0.002894406523879812,-0.0025150251625112746,-0.0020742443521781905,-0.0015829701744203663,-0.0010533376066790532,-0.0004984108124418531,6.813906934222675e-5,0.0006323706895593717,0.0011804155141881586,0.0016988186702973905,0.0021748692367183297,0.00259691187227384,0.0029546321423858986,0.003239308560047316,0.0034440251832525124,0.0035638395875052563,0.0035959021348129865,0.0035395236623659747,0.003396189985250863,0.003169522916727579,0.002865188824589519,0.002490757030600152,0.002055511590311878,0.001570221132549645,0.0010468724635200573,0.0004983745247886269,-6.175998429688796e-5,-0.0006197474683495501,-0.001161872583236179,-0.0016748253250103383,-0.0021460277765237355,-0.0025639424912796407,-0.0029183549544499247,-0.003200623206669064,-0.003403888531130716,-0.003523242068456614,-0.003555843312895935,-0.003500987630758621,-0.0033601211982765395,-0.0031368030503765147,-0.002836615232277634,-0.002467023320419674,-0.002037190796694864,-0.001557751890422174,-0.001040548518285073,-0.0004983378287165857,5.552242744295473e-5,0.0006074029411455721,0.001143738199612283,0.0016513599003776449,0.0021178202310554437,0.0025316970791701855,0.0028828736893883916,0.003162785921883737,0.003364631069569198,0.0034835331435485407,0.0035166606118513114,0.0034632937497192768,0.0033248400014794723,0.0031047970337596863,0.0028086644459837766,0.0024438063651054985,0.002019268356425221,0.0015455532015407746,0.0010343611005830435,0.0004983007242796662,-4.942174911208309e-5,-0.0005953279436442237,-0.0011259989296769795,-0.001628405042528276,-0.002090225770078284,-0.0025001518566542887,-0.0028481622162732953,-0.0031257688756715562,-0.003326223960848225,-0.0034446836804439013,-0.003478325321881563,-0.0034264144355852654,-0.0032903206101400993,-0.003073481506728138,-0.0027813160934166492,-0.0024210892676064023,-0.0020017312475315977,-0.001533616221877156,-0.0010283057431994059,-0.0004982632115330347,4.3453501686560485e-5,0.0005835137095606349,0.0011086419229187027,0.0016059441504799085,0.002063224466578198,0.002469284074977216,0.0028141955360155855,0.003089545442794039,0.003288639614979209,0.003406665806602925,0.003440809974044072,0.003390323296233511,0.003256538352768117,0.0030428341171408273,0.0027545506808907545,0.0023988558592064244,0.0019845670090447563,0.0015219324882094376,0.001022378171167947,0.0004982252905318412,-3.761342874095078e-5,-0.0005719518492535973,-0.001091654880652145,-0.0015839613357489504,-0.0020367972483311494,-0.0024390719606944716,-0.002780949720741039,-0.0030540901382987242,-0.0032518516229450554,-0.003369452841914527,-0.0034040882739307583,-0.003354995067429716,-0.0032234696116672655,-0.0030128334670749615,-0.0027283495464680823,-0.0023770906607018085,-0.0019677637111083822,-0.0015104938978460383,-0.0010165742915382609,-0.0004981869613324518,3.189745487887599e-5,0.0005606343297113969,0.001075026026713675,0.0015624413845310434,0.002010925852557115,0.002409494663957775,0.0027484018570227975,0.003019378557122128,0.0032158346941821626,0.0033330192356046673,0.0033681350395562424,0.003320405553214996,0.003191091767267006,0.0029834590624454606,0.002702694816065715,0.0023557788460340265,0.0019513099269824446,0.0014992926896293514,0.0010108901837920985,0.0004981482239912289,-2.6301676208954497e-5,-0.0005495534558027233,-0.0010587440800023894,-0.0015413697222672565,-0.0019855927834285998,-0.0023805322100585694,-0.0027165299926846776,-0.0029853873174923,-0.003180564597991611,-0.003297340507108926,-0.0033329261431463155,-0.0032865315700335456,-0.003159383145946983,-0.002954691265781971,-0.002677569362315304,-0.0023349062082004823,-0.0019351947067978814,-0.0014883214261299312,-0.001005322090856745,-0.0004981090785657377,2.0822351418051697e-5,0.0005387018526958475,0.0010427982287369107,0.0015207323804181968,0.0019607812722298736,0.0023521654539889717,0.002685313086918562,0.0029520940078529984,0.003146018108595766,0.00326239319062105,0.003298438456543866,0.0032533508943310163,0.0031283229710997546,0.002926511251937036,0.0026529567659724818,0.002314459127279241,0.0019194075529372137,0.0014775729769418826,0.0009998664106766566,0.0004980695251135532,-1.545589339407222e-5,-0.0005280724493664604,-0.001027178106299872,-0.0015005159652911758,-0.0019364752399723662,-0.0023243760378063583,-0.0026547309634748686,-0.002919477137058461,-0.003112172953577059,-0.0032281547830542373,-0.00326464979997276,-0.0032208422133739355,-0.0030978913172011774,-0.0028989009665132703,-0.002628841279696403,-0.002294424540413871,-0.0019039383969259704,-0.0014670405030020358,-0.0009945196882999979,-0.0004980295636934392,1.0198861363700948e-5,0.0005176584631119219,0.0010118737685612493,0.001480707628769972,0.0019126592622949528,0.002297146350598696,0.002624764266710047,0.002887516087604052,0.003079007765459827,0.0031946036951719567,0.003231538893921081,0.003188985079062221,0.0030680690666735405,0.0028718430868188084,0.0026052077940286423,0.002274789913622713,0.0018887775777249986,0.0014567174418617138,0.0009892786084450267,0.0004979891943641825,-5.047953504107395e-6,-0.0005074533850053559,-0.0009968756725717792,-0.0014612950408170098,-0.0018893185364843,-0.002270459490870487,-0.0025953944202871545,-0.002856191071681028,-0.0030465020362126353,-0.0031617192056659906,-0.0031990853139244606,-0.003157759864523715,-0.0030388378693467265,-0.002845320985171439,-0.002582041805419834,-0.0022555432153013566,-0.001873915821329042,-0.0014465974938411748,-0.0009841399885140729,-0.0004979484171856053,0.0],"x":[-100.0,-99.95002498750625,-99.9000499750125,-99.85007496251875,-99.80009995002499,-99.75012493753124,-99.70014992503748,-99.65017491254373,-99.60019990004997,-99.55022488755623,-99.50024987506247,-99.45027486256872,-99.40029985007496,-99.35032483758121,-99.30034982508745,-99.2503748125937,-99.20039980009994,-99.1504247876062,-99.10044977511244,-99.05047476261869,-99.00049975012493,-98.95052473763118,-98.90054972513744,-98.85057471264368,-98.80059970014993,-98.75062468765617,-98.70064967516242,-98.65067466266866,-98.60069965017492,-98.55072463768116,-98.50074962518741,-98.45077461269365,-98.4007996001999,-98.35082458770614,-98.3008495752124,-98.25087456271864,-98.20089955022489,-98.15092453773113,-98.10094952523738,-98.05097451274362,-98.00099950024988,-97.95102448775611,-97.90104947526237,-97.85107446276862,-97.80109945027486,-97.75112443778112,-97.70114942528735,-97.65117441279361,-97.60119940029985,-97.5512243878061,-97.50124937531234,-97.4512743628186,-97.40129935032483,-97.35132433783109,-97.30134932533733,-97.25137431284358,-97.20139930034982,-97.15142428785607,-97.10144927536231,-97.05147426286857,-97.0014992503748,-96.95152423788106,-96.90154922538731,-96.85157421289355,-96.8015992003998,-96.75162418790605,-96.7016491754123,-96.65167416291854,-96.60169915042479,-96.55172413793103,-96.50174912543729,-96.45177411294353,-96.40179910044978,-96.35182408795602,-96.30184907546227,-96.25187406296851,-96.20189905047476,-96.151924037981,-96.10194902548726,-96.0519740129935,-96.00199900049975,-95.95202398800599,-95.90204897551224,-95.8520739630185,-95.80209895052474,-95.75212393803099,-95.70214892553723,-95.65217391304348,-95.60219890054972,-95.55222388805598,-95.50224887556222,-95.45227386306847,-95.40229885057471,-95.35232383808096,-95.3023488255872,-95.25237381309346,-95.2023988005997,-95.15242378810595,-95.10244877561219,-95.05247376311844,-95.00249875062468,-94.95252373813094,-94.90254872563717,-94.85257371314343,-94.80259870064968,-94.75262368815592,-94.70264867566218,-94.65267366316841,-94.60269865067467,-94.55272363818091,-94.50274862568716,-94.4527736131934,-94.40279860069965,-94.3528235882059,-94.30284857571215,-94.25287356321839,-94.20289855072464,-94.15292353823088,-94.10294852573713,-94.05297351324337,-94.00299850074963,-93.95302348825587,-93.90304847576212,-93.85307346326836,-93.80309845077461,-93.75312343828087,-93.7031484257871,-93.65317341329336,-93.6031984007996,-93.55322338830585,-93.50324837581209,-93.45327336331835,-93.40329835082458,-93.35332333833084,-93.30334832583708,-93.25337331334333,-93.20339830084957,-93.15342328835582,-93.10344827586206,-93.05347326336832,-93.00349825087456,-92.95352323838081,-92.90354822588705,-92.8535732133933,-92.80359820089954,-92.7536231884058,-92.70364817591205,-92.65367316341829,-92.60369815092454,-92.55372313843078,-92.50374812593704,-92.45377311344328,-92.40379810094953,-92.35382308845577,-92.30384807596202,-92.25387306346826,-92.20389805097452,-92.15392303848076,-92.10394802598701,-92.05397301349325,-92.0039980009995,-91.95402298850574,-91.904047976012,-91.85407296351823,-91.80409795102449,-91.75412293853073,-91.70414792603698,-91.65417291354323,-91.60419790104947,-91.55422288855573,-91.50424787606197,-91.45427286356822,-91.40429785107446,-91.35432283858071,-91.30434782608695,-91.2543728135932,-91.20439780109945,-91.1544227886057,-91.10444777611194,-91.0544727636182,-91.00449775112443,-90.95452273863069,-90.90454772613693,-90.85457271364318,-90.80459770114942,-90.75462268865567,-90.70464767616193,-90.65467266366817,-90.60469765117442,-90.55472263868066,-90.50474762618691,-90.45477261369315,-90.4047976011994,-90.35482258870564,-90.3048475762119,-90.25487256371814,-90.20489755122439,-90.15492253873063,-90.10494752623688,-90.05497251374312,-90.00499750124938,-89.95502248875562,-89.90504747626187,-89.85507246376811,-89.80509745127436,-89.7551224387806,-89.70514742628686,-89.65517241379311,-89.60519740129935,-89.5552223888056,-89.50524737631184,-89.4552723638181,-89.40529735132434,-89.35532233883059,-89.30534732633683,-89.25537231384308,-89.20539730134932,-89.15542228885558,-89.10544727636182,-89.05547226386807,-89.00549725137431,-88.95552223888056,-88.9055472263868,-88.85557221389305,-88.8055972013993,-88.75562218890555,-88.70564717641179,-88.65567216391804,-88.6056971514243,-88.55572213893053,-88.50574712643679,-88.45577211394303,-88.40579710144928,-88.35582208895552,-88.30584707646177,-88.25587206396801,-88.20589705147427,-88.1559220389805,-88.10594702648676,-88.055972013993,-88.00599700149925,-87.95602198900549,-87.90604697651175,-87.85607196401799,-87.80609695152424,-87.75612193903048,-87.70614692653673,-87.65617191404297,-87.60619690154923,-87.55622188905548,-87.50624687656172,-87.45627186406797,-87.40629685157421,-87.35632183908046,-87.3063468265867,-87.25637181409296,-87.2063968015992,-87.15642178910545,-87.10644677661169,-87.05647176411794,-87.00649675162418,-86.95652173913044,-86.90654672663668,-86.85657171414293,-86.80659670164917,-86.75662168915542,-86.70664667666166,-86.65667166416792,-86.60669665167416,-86.55672163918041,-86.50674662668666,-86.4567716141929,-86.40679660169916,-86.3568215892054,-86.30684657671165,-86.25687156421789,-86.20689655172414,-86.15692153923038,-86.10694652673664,-86.05697151424287,-86.00699650174913,-85.95702148925537,-85.90704647676162,-85.85707146426786,-85.80709645177411,-85.75712143928035,-85.70714642678661,-85.65717141429285,-85.6071964017991,-85.55722138930535,-85.5072463768116,-85.45727136431785,-85.40729635182409,-85.35732133933034,-85.30734632683658,-85.25737131434283,-85.20739630184907,-85.15742128935533,-85.10744627686157,-85.05747126436782,-85.00749625187406,-84.95752123938031,-84.90754622688655,-84.8575712143928,-84.80759620189905,-84.7576211894053,-84.70764617691154,-84.65767116441779,-84.60769615192403,-84.55772113943029,-84.50774612693654,-84.45777111444278,-84.40779610194903,-84.35782108945527,-84.30784607696152,-84.25787106446776,-84.20789605197402,-84.15792103948026,-84.10794602698651,-84.05797101449275,-84.007996001999,-83.95802098950524,-83.9080459770115,-83.85807096451774,-83.80809595202399,-83.75812093953023,-83.70814592703648,-83.65817091454272,-83.60819590204898,-83.55822088955522,-83.50824587706147,-83.45827086456772,-83.40829585207396,-83.35832083958022,-83.30834582708646,-83.25837081459271,-83.20839580209895,-83.1584207896052,-83.10844577711144,-83.0584707646177,-83.00849575212393,-82.95852073963019,-82.90854572713643,-82.85857071464268,-82.80859570214892,-82.75862068965517,-82.70864567716141,-82.65867066466767,-82.6086956521739,-82.55872063968016,-82.5087456271864,-82.45877061469265,-82.40879560219891,-82.35882058970515,-82.3088455772114,-82.25887056471764,-82.2088955522239,-82.15892053973013,-82.10894552723639,-82.05897051474263,-82.00899550224888,-81.95902048975512,-81.90904547726137,-81.85907046476761,-81.80909545227387,-81.7591204397801,-81.70914542728636,-81.6591704147926,-81.60919540229885,-81.55922038980509,-81.50924537731134,-81.45927036481758,-81.40929535232384,-81.35932033983009,-81.30934532733633,-81.25937031484258,-81.20939530234882,-81.15942028985508,-81.10944527736132,-81.05947026486757,-81.00949525237381,-80.95952023988006,-80.9095452273863,-80.85957021489256,-80.8095952023988,-80.75962018990505,-80.70964517741129,-80.65967016491754,-80.60969515242378,-80.55972013993004,-80.50974512743628,-80.45977011494253,-80.40979510244878,-80.35982008995502,-80.30984507746128,-80.25987006496752,-80.20989505247377,-80.15992003998001,-80.10994502748626,-80.0599700149925,-80.00999500249875,-79.960019990005,-79.91004497751125,-79.86006996501749,-79.81009495252374,-79.76011994002998,-79.71014492753623,-79.66016991504247,-79.61019490254873,-79.56021989005497,-79.51024487756122,-79.46026986506746,-79.41029485257371,-79.36031984007997,-79.3103448275862,-79.26036981509246,-79.2103948025987,-79.16041979010495,-79.11044477761119,-79.06046976511745,-79.01049475262369,-78.96051974012994,-78.91054472763618,-78.86056971514243,-78.81059470264867,-78.76061969015493,-78.71064467766116,-78.66066966516742,-78.61069465267366,-78.56071964017991,-78.51074462768615,-78.4607696151924,-78.41079460269864,-78.3608195902049,-78.31084457771115,-78.26086956521739,-78.21089455272364,-78.16091954022988,-78.11094452773614,-78.06096951524238,-78.01099450274863,-77.96101949025487,-77.91104447776112,-77.86106946526736,-77.81109445277362,-77.76111944027986,-77.71114442778611,-77.66116941529235,-77.6111944027986,-77.56121939030484,-77.5112443778111,-77.46126936531734,-77.41129435282359,-77.36131934032983,-77.31134432783608,-77.26136931534234,-77.21139430284857,-77.16141929035483,-77.11144427786107,-77.06146926536732,-77.01149425287356,-76.96151924037981,-76.91154422788605,-76.86156921539231,-76.81159420289855,-76.7616191904048,-76.71164417791104,-76.6616691654173,-76.61169415292353,-76.56171914042979,-76.51174412793603,-76.46176911544228,-76.41179410294852,-76.36181909045477,-76.31184407796101,-76.26186906546727,-76.21189405297352,-76.16191904047976,-76.11194402798601,-76.06196901549225,-76.0119940029985,-75.96201899050475,-75.912043978011,-75.86206896551724,-75.81209395302349,-75.76211894052973,-75.71214392803599,-75.66216891554222,-75.61219390304848,-75.56221889055472,-75.51224387806097,-75.46226886556721,-75.41229385307346,-75.3623188405797,-75.31234382808596,-75.2623688155922,-75.21239380309845,-75.1624187906047,-75.11244377811094,-75.0624687656172,-75.01249375312344,-74.96251874062969,-74.91254372813593,-74.86256871564218,-74.81259370314842,-74.76261869065468,-74.71264367816092,-74.66266866566717,-74.61269365317341,-74.56271864067966,-74.5127436281859,-74.46276861569216,-74.4127936031984,-74.36281859070465,-74.31284357821089,-74.26286856571714,-74.2128935532234,-74.16291854072963,-74.11294352823589,-74.06296851574213,-74.01299350324838,-73.96301849075462,-73.91304347826087,-73.86306846576711,-73.81309345327337,-73.7631184407796,-73.71314342828586,-73.6631684157921,-73.61319340329835,-73.5632183908046,-73.51324337831085,-73.46326836581709,-73.41329335332334,-73.36331834082958,-73.31334332833583,-73.26336831584207,-73.21339330334833,-73.16341829085458,-73.11344327836082,-73.06346826586707,-73.01349325337331,-72.96351824087957,-72.9135432283858,-72.86356821589206,-72.8135932033983,-72.76361819090455,-72.71364317841079,-72.66366816591704,-72.61369315342328,-72.56371814092954,-72.51374312843578,-72.46376811594203,-72.41379310344827,-72.36381809095452,-72.31384307846076,-72.26386806596702,-72.21389305347326,-72.16391804097951,-72.11394302848576,-72.063968015992,-72.01399300349826,-71.9640179910045,-71.91404297851075,-71.86406796601699,-71.81409295352324,-71.76411794102948,-71.71414292853574,-71.66416791604198,-71.61419290354823,-71.56421789105447,-71.51424287856072,-71.46426786606696,-71.41429285357322,-71.36431784107945,-71.31434282858571,-71.26436781609195,-71.2143928035982,-71.16441779110444,-71.1144427786107,-71.06446776611695,-71.01449275362319,-70.96451774112944,-70.91454272863568,-70.86456771614193,-70.81459270364817,-70.76461769115443,-70.71464267866067,-70.66466766616692,-70.61469265367316,-70.56471764117941,-70.51474262868565,-70.4647676161919,-70.41479260369815,-70.3648175912044,-70.31484257871064,-70.26486756621689,-70.21489255372313,-70.16491754122939,-70.11494252873563,-70.06496751624188,-70.01499250374813,-69.96501749125437,-69.91504247876063,-69.86506746626686,-69.81509245377312,-69.76511744127936,-69.71514242878561,-69.66516741629185,-69.6151924037981,-69.56521739130434,-69.5152423788106,-69.46526736631684,-69.41529235382309,-69.36531734132933,-69.31534232883558,-69.26536731634182,-69.21539230384808,-69.16541729135432,-69.11544227886057,-69.06546726636682,-69.01549225387306,-68.96551724137932,-68.91554222888556,-68.86556721639181,-68.81559220389805,-68.7656171914043,-68.71564217891054,-68.6656671664168,-68.61569215392304,-68.56571714142929,-68.51574212893553,-68.46576711644178,-68.41579210394802,-68.36581709145428,-68.31584207896051,-68.26586706646677,-68.21589205397301,-68.16591704147926,-68.1159420289855,-68.06596701649175,-68.01599200399801,-67.96601699150425,-67.9160419790105,-67.86606696651674,-67.816091954023,-67.76611694152923,-67.71614192903549,-67.66616691654173,-67.61619190404798,-67.56621689155422,-67.51624187906047,-67.46626686656671,-67.41629185407297,-67.3663168415792,-67.31634182908546,-67.2663668165917,-67.21639180409795,-67.16641679160419,-67.11644177911045,-67.06646676661668,-67.01649175412294,-66.96651674162919,-66.91654172913543,-66.86656671664169,-66.81659170414792,-66.76661669165418,-66.71664167916042,-66.66666666666667,-66.61669165417291,-66.56671664167916,-66.5167416291854,-66.46676661669166,-66.4167916041979,-66.36681659170415,-66.31684157921039,-66.26686656671664,-66.21689155422288,-66.16691654172914,-66.11694152923538,-66.06696651674163,-66.01699150424787,-65.96701649175412,-65.91704147926038,-65.86706646676662,-65.81709145427287,-65.76711644177911,-65.71714142928536,-65.6671664167916,-65.61719140429786,-65.5672163918041,-65.51724137931035,-65.46726636681659,-65.41729135432284,-65.36731634182908,-65.31734132933533,-65.26736631684157,-65.21739130434783,-65.16741629185407,-65.11744127936032,-65.06746626686656,-65.01749125437281,-64.96751624187905,-64.91754122938531,-64.86756621689156,-64.8175912043978,-64.76761619190405,-64.7176411794103,-64.66766616691655,-64.61769115442279,-64.56771614192904,-64.51774112943528,-64.46776611694153,-64.41779110444777,-64.36781609195403,-64.31784107946027,-64.26786606696652,-64.21789105447276,-64.16791604197901,-64.11794102948525,-64.0679660169915,-64.01799100449774,-63.968015992004,-63.918040979510245,-63.86806596701649,-63.81809095452274,-63.768115942028984,-63.71814092953523,-63.66816591704148,-63.618190904547724,-63.56821589205397,-63.51824087956022,-63.468265867066464,-63.41829085457271,-63.368315842078964,-63.31834082958521,-63.26836581709146,-63.2183908045977,-63.16841579210395,-63.1184407796102,-63.06846576711644,-63.01849075462269,-62.968515742128936,-62.91854072963518,-62.86856571714143,-62.818590704647676,-62.76861569215392,-62.71864067966017,-62.668665667166415,-62.61869065467266,-62.56871564217891,-62.518740629685155,-62.4687656171914,-62.41879060469765,-62.3688155922039,-62.31884057971015,-62.268865567216395,-62.21889055472264,-62.16891554222889,-62.118940529735134,-62.06896551724138,-62.01899050474763,-61.969015492253874,-61.91904047976012,-61.86906546726637,-61.81909045477261,-61.76911544227886,-61.71914042978511,-61.66916541729135,-61.6191904047976,-61.569215392303846,-61.51924037981009,-61.46926536731634,-61.419290354822586,-61.36931534232883,-61.319340329835086,-61.26936531734133,-61.21939030484758,-61.169415292353825,-61.11944027986007,-61.06946526736632,-61.019490254872565,-60.96951524237881,-60.91954022988506,-60.869565217391305,-60.81959020489755,-60.7696151924038,-60.719640179910044,-60.66966516741629,-60.61969015492254,-60.569715142428784,-60.51974012993503,-60.46976511744128,-60.41979010494752,-60.36981509245377,-60.31984007996002,-60.26986506746627,-60.21989005497252,-60.16991504247876,-60.11994002998501,-60.069965017491256,-60.0199900049975,-59.97001499250375,-59.920039980009996,-59.87006496751624,-59.82008995502249,-59.770114942528735,-59.72013993003498,-59.67016491754123,-59.620189905047475,-59.57021489255372,-59.52023988005997,-59.470264867566215,-59.42028985507246,-59.37031484257871,-59.320339830084954,-59.27036481759121,-59.220389805097454,-59.1704147926037,-59.12043978010995,-59.070464767616194,-59.02048975512244,-58.97051474262869,-58.920539730134934,-58.87056471764118,-58.82058970514743,-58.77061469265367,-58.72063968015992,-58.670664667666166,-58.62068965517241,-58.57071464267866,-58.520739630184906,-58.47076461769115,-58.4207896051974,-58.370814592703645,-58.32083958020989,-58.27086456771614,-58.22088955522239,-58.17091454272864,-58.120939530234885,-58.07096451774113,-58.02098950524738,-57.971014492753625,-57.92103948025987,-57.87106446776612,-57.821089455272364,-57.77111444277861,-57.72113943028486,-57.671164417791104,-57.62118940529735,-57.5712143928036,-57.521239380309844,-57.47126436781609,-57.42128935532234,-57.37131434282858,-57.32133933033483,-57.271364317841076,-57.22138930534732,-57.17141429285358,-57.12143928035982,-57.07146426786607,-57.021489255372316,-56.97151424287856,-56.92153923038481,-56.871564217891056,-56.8215892053973,-56.77161419290355,-56.721639180409795,-56.67166416791604,-56.62168915542229,-56.571714142928535,-56.52173913043478,-56.47176411794103,-56.421789105447274,-56.37181409295352,-56.32183908045977,-56.271864067966014,-56.22188905547226,-56.171914042978514,-56.12193903048476,-56.07196401799101,-56.021989005497254,-55.9720139930035,-55.92203898050975,-55.87206396801599,-55.82208895552224,-55.77211394302849,-55.72213893053473,-55.67216391804098,-55.622188905547226,-55.57221389305347,-55.52223888055972,-55.472263868065966,-55.42228885557221,-55.37231384307846,-55.322338830584705,-55.27236381809095,-55.2223888055972,-55.172413793103445,-55.1224387806097,-55.072463768115945,-55.02248875562219,-54.97251374312844,-54.922538730634685,-54.87256371814093,-54.82258870564718,-54.772613693153424,-54.72263868065967,-54.67266366816592,-54.622688655672164,-54.57271364317841,-54.52273863068466,-54.4727636181909,-54.42278860569715,-54.3728135932034,-54.32283858070964,-54.27286356821589,-54.222888555722136,-54.17291354322838,-54.122938530734636,-54.07296351824088,-54.02298850574713,-53.973013493253376,-53.92303848075962,-53.87306346826587,-53.823088455772115,-53.77311344327836,-53.72313843078461,-53.673163418290855,-53.6231884057971,-53.57321339330335,-53.523238380809595,-53.47326336831584,-53.42328835582209,-53.373313343328334,-53.32333833083458,-53.27336331834083,-53.223388305847074,-53.17341329335332,-53.12343828085957,-53.07346326836582,-53.02348825587207,-52.973513243378314,-52.92353823088456,-52.87356321839081,-52.82358820589705,-52.7736131934033,-52.723638180909546,-52.67366316841579,-52.62368815592204,-52.573713143428286,-52.52373813093453,-52.47376311844078,-52.423788105947025,-52.37381309345327,-52.32383808095952,-52.273863068465765,-52.22388805597201,-52.17391304347826,-52.123938030984505,-52.07396301849075,-52.023988005997005,-51.97401299350325,-51.9240379810095,-51.874062968515744,-51.82408795602199,-51.77411294352824,-51.724137931034484,-51.67416291854073,-51.62418790604698,-51.574212893553224,-51.52423788105947,-51.47426286856572,-51.42428785607196,-51.37431284357821,-51.324337831084456,-51.2743628185907,-51.22438780609695,-51.174412793603196,-51.12443778110944,-51.07446276861569,-51.02448775612194,-50.97451274362819,-50.924537731134436,-50.87456271864068,-50.82458770614693,-50.774612693653175,-50.72463768115942,-50.67466266866567,-50.624687656171915,-50.57471264367816,-50.52473763118441,-50.474762618690654,-50.4247876061969,-50.37481259370315,-50.324837581209394,-50.27486256871564,-50.22488755622189,-50.174912543728134,-50.12493753123438,-50.07496251874063,-50.02498750624687,-49.97501249375313,-49.92503748125937,-49.87506246876562,-49.825087456271866,-49.77511244377811,-49.72513743128436,-49.675162418790606,-49.62518740629685,-49.5752123938031,-49.525237381309346,-49.47526236881559,-49.42528735632184,-49.375312343828085,-49.32533733133433,-49.27536231884058,-49.225387306346825,-49.17541229385307,-49.12543728135932,-49.075462268865564,-49.02548725637181,-48.97551224387806,-48.92553723138431,-48.87556221889056,-48.825587206396804,-48.77561219390305,-48.7256371814093,-48.675662168915544,-48.62568715642179,-48.57571214392804,-48.52573713143428,-48.47576211894053,-48.425787106446776,-48.37581209395302,-48.32583708145927,-48.275862068965516,-48.22588705647176,-48.17591204397801,-48.125937031484256,-48.0759620189905,-48.02598700649675,-47.976011994002995,-47.92603698150925,-47.876061969015495,-47.82608695652174,-47.77611194402799,-47.726136931534235,-47.67616191904048,-47.62618690654673,-47.576211894052975,-47.52623688155922,-47.47626186906547,-47.426286856571714,-47.37631184407796,-47.32633683158421,-47.276361819090454,-47.2263868065967,-47.17641179410295,-47.12643678160919,-47.07646176911544,-47.026486756621686,-46.97651174412793,-46.92653673163418,-46.87656171914043,-46.82658670664668,-46.776611694152926,-46.72663668165917,-46.67666166916542,-46.626686656671666,-46.57671164417791,-46.52673663168416,-46.476761619190405,-46.42678660669665,-46.3768115942029,-46.326836581709145,-46.27686156921539,-46.22688655672164,-46.176911544227885,-46.12693653173413,-46.07696151924038,-46.026986506746624,-45.97701149425287,-45.92703648175912,-45.877061469265364,-45.82708645677162,-45.777111444277864,-45.72713643178411,-45.67716141929036,-45.6271864067966,-45.57721139430285,-45.5272363818091,-45.47726136931534,-45.42728635682159,-45.377311344327836,-45.32733633183408,-45.27736131934033,-45.227386306846576,-45.17741129435282,-45.12743628185907,-45.077461269365315,-45.02748625687156,-44.97751124437781,-44.927536231884055,-44.8775612193903,-44.827586206896555,-44.7776111944028,-44.72763618190905,-44.677661169415295,-44.62768615692154,-44.57771114442779,-44.527736131934034,-44.47776111944028,-44.42778610694653,-44.377811094452774,-44.32783608195902,-44.27786106946527,-44.22788605697151,-44.17791104447776,-44.12793603198401,-44.07796101949025,-44.0279860069965,-43.978010994502746,-43.92803598200899,-43.87806096951524,-43.828085957021486,-43.77811094452774,-43.728135932033986,-43.67816091954023,-43.62818590704648,-43.578210894552726,-43.52823588205897,-43.47826086956522,-43.428285857071465,-43.37831084457771,-43.32833583208396,-43.278360819590205,-43.22838580709645,-43.1784107946027,-43.128435782108944,-43.07846076961519,-43.02848575712144,-42.978510744627684,-42.92853573213393,-42.87856071964018,-42.82858570714642,-42.77861069465268,-42.728635682158924,-42.67866066966517,-42.62868565717142,-42.57871064467766,-42.52873563218391,-42.478760619690156,-42.4287856071964,-42.37881059470265,-42.328835582208896,-42.27886056971514,-42.22888555722139,-42.178910544727636,-42.12893553223388,-42.07896051974013,-42.028985507246375,-41.97901049475262,-41.92903548225887,-41.879060469765115,-41.82908545727136,-41.77911044477761,-41.72913543228386,-41.67916041979011,-41.629185407296355,-41.5792103948026,-41.52923538230885,-41.479260369815094,-41.42928535732134,-41.37931034482759,-41.329335332333834,-41.27936031984008,-41.22938530734633,-41.17941029485257,-41.12943528235882,-41.079460269865066,-41.02948525737131,-40.97951024487756,-40.929535232383806,-40.87956021989005,-40.8295852073963,-40.779610194902546,-40.72963518240879,-40.679660169915046,-40.62968515742129,-40.57971014492754,-40.529735132433785,-40.47976011994003,-40.42978510744628,-40.379810094952525,-40.32983508245877,-40.27986006996502,-40.229885057471265,-40.17991004497751,-40.12993503248376,-40.079960019990004,-40.02998500749625,-39.9800099950025,-39.930034982508744,-39.88005997001499,-39.83008495752124,-39.78010994502748,-39.73013493253373,-39.68015992003998,-39.63018490754623,-39.58020989505248,-39.53023488255872,-39.48025987006497,-39.430284857571216,-39.38030984507746,-39.33033483258371,-39.280359820089956,-39.2303848075962,-39.18040979510245,-39.130434782608695,-39.08045977011494,-39.03048475762119,-38.980509745127435,-38.93053473263368,-38.88055972013993,-38.830584707646175,-38.78060969515242,-38.73063468265867,-38.680659670164914,-38.63068465767117,-38.580709645177414,-38.53073463268366,-38.48075962018991,-38.430784607696154,-38.3808095952024,-38.33083458270865,-38.28085957021489,-38.23088455772114,-38.18090954522739,-38.13093453273363,-38.08095952023988,-38.030984507746126,-37.98100949525237,-37.93103448275862,-37.881059470264866,-37.83108445777111,-37.78110944527736,-37.731134432783605,-37.68115942028985,-37.6311844077961,-37.58120939530235,-37.5312343828086,-37.481259370314845,-37.43128435782109,-37.38130934532734,-37.331334332833585,-37.28135932033983,-37.23138430784608,-37.181409295352324,-37.13143428285857,-37.08145927036482,-37.031484257871064,-36.98150924537731,-36.93153423288356,-36.8815592203898,-36.83158420789605,-36.7816091954023,-36.73163418290854,-36.68165917041479,-36.631684157921036,-36.58170914542729,-36.531734132933536,-36.48175912043978,-36.43178410794603,-36.381809095452276,-36.33183408295852,-36.28185907046477,-36.231884057971016,-36.18190904547726,-36.13193403298351,-36.081959020489755,-36.031984007996,-35.98200899550225,-35.932033983008495,-35.88205897051474,-35.83208395802099,-35.782108945527234,-35.73213393303348,-35.68215892053973,-35.632183908045974,-35.58220889555222,-35.532233883058474,-35.48225887056472,-35.43228385807097,-35.382308845577214,-35.33233383308346,-35.28235882058971,-35.23238380809595,-35.1824087956022,-35.132433783108446,-35.08245877061469,-35.03248375812094,-34.982508745627186,-34.93253373313343,-34.88255872063968,-34.832583708145926,-34.78260869565217,-34.73263368315842,-34.682658670664665,-34.63268365817091,-34.58270864567716,-34.53273363318341,-34.48275862068966,-34.432783608195905,-34.38280859570215,-34.3328335832084,-34.282858570714644,-34.23288355822089,-34.18290854572714,-34.132933533233384,-34.08295852073963,-34.03298350824588,-33.983008495752124,-33.93303348325837,-33.88305847076462,-33.83308345827086,-33.78310844577711,-33.733133433283356,-33.6831584207896,-33.63318340829585,-33.583208395802096,-33.53323338330834,-33.483258370814596,-33.43328335832084,-33.38330834582709,-33.333333333333336,-33.28335832083958,-33.23338330834583,-33.183408295852075,-33.13343328335832,-33.08345827086457,-33.033483258370815,-32.98350824587706,-32.93353323338331,-32.883558220889554,-32.8335832083958,-32.78360819590205,-32.733633183408294,-32.68365817091454,-32.63368315842079,-32.583708145927034,-32.53373313343328,-32.48375812093953,-32.43378310844578,-32.38380809595203,-32.33383308345827,-32.28385807096452,-32.23388305847077,-32.18390804597701,-32.13393303348326,-32.083958020989506,-32.03398300849575,-31.984007996002,-31.934032983508246,-31.884057971014492,-31.83408295852074,-31.784107946026985,-31.734132933533232,-31.684157921039482,-31.63418290854573,-31.584207896051975,-31.53423288355822,-31.484257871064468,-31.434282858570715,-31.38430784607696,-31.334332833583208,-31.284357821089454,-31.2343828085957,-31.18440779610195,-31.134432783608197,-31.084457771114444,-31.03448275862069,-30.984507746126937,-30.934532733633183,-30.88455772113943,-30.834582708645677,-30.784607696151923,-30.73463268365817,-30.684657671164416,-30.634682658670666,-30.584707646176913,-30.53473263368316,-30.484757621189406,-30.434782608695652,-30.3848075962019,-30.334832583708145,-30.284857571214392,-30.23488255872064,-30.184907546226885,-30.134932533733135,-30.08495752123938,-30.034982508745628,-29.985007496251875,-29.93503248375812,-29.885057471264368,-29.835082458770614,-29.78510744627686,-29.735132433783107,-29.685157421289354,-29.635182408795604,-29.58520739630185,-29.535232383808097,-29.485257371314344,-29.43528235882059,-29.385307346326837,-29.335332333833083,-29.28535732133933,-29.235382308845576,-29.185407296351823,-29.13543228385807,-29.08545727136432,-29.035482258870566,-28.985507246376812,-28.93553223388306,-28.885557221389305,-28.835582208895552,-28.7856071964018,-28.735632183908045,-28.68565717141429,-28.635682158920538,-28.58570714642679,-28.535732133933035,-28.48575712143928,-28.435782108945528,-28.385807096451774,-28.33583208395802,-28.285857071464267,-28.235882058970514,-28.18590704647676,-28.135932033983007,-28.085957021489257,-28.035982008995504,-27.98600699650175,-27.936031984007997,-27.886056971514243,-27.83608195902049,-27.786106946526736,-27.736131934032983,-27.68615692153923,-27.636181909045476,-27.586206896551722,-27.536231884057973,-27.48625687156422,-27.436281859070466,-27.386306846576712,-27.33633183408296,-27.286356821589205,-27.23638180909545,-27.1864067966017,-27.136431784107945,-27.08645677161419,-27.03648175912044,-26.986506746626688,-26.936531734132934,-26.88655672163918,-26.836581709145428,-26.786606696651674,-26.73663168415792,-26.686656671664167,-26.636681659170414,-26.58670664667666,-26.53673163418291,-26.486756621689157,-26.436781609195403,-26.38680659670165,-26.336831584207896,-26.286856571714143,-26.23688155922039,-26.186906546726636,-26.136931534232883,-26.08695652173913,-26.036981509245376,-25.987006496751626,-25.937031484257872,-25.88705647176412,-25.837081459270365,-25.787106446776612,-25.73713143428286,-25.687156421789105,-25.63718140929535,-25.587206396801598,-25.537231384307844,-25.487256371814095,-25.43728135932034,-25.387306346826588,-25.337331334332834,-25.28735632183908,-25.237381309345327,-25.187406296851574,-25.13743128435782,-25.087456271864067,-25.037481259370313,-24.987506246876563,-24.93753123438281,-24.887556221889056,-24.837581209395303,-24.78760619690155,-24.737631184407796,-24.687656171914043,-24.63768115942029,-24.587706146926536,-24.537731134432782,-24.48775612193903,-24.43778110944528,-24.387806096951525,-24.337831084457772,-24.28785607196402,-24.237881059470265,-24.18790604697651,-24.137931034482758,-24.087956021989005,-24.03798100949525,-23.988005997001498,-23.938030984507748,-23.888055972013994,-23.83808095952024,-23.788105947026487,-23.738130934532734,-23.68815592203898,-23.638180909545227,-23.588205897051473,-23.53823088455772,-23.488255872063966,-23.438280859570217,-23.388305847076463,-23.33833083458271,-23.288355822088956,-23.238380809595203,-23.18840579710145,-23.138430784607696,-23.088455772113942,-23.03848075962019,-22.988505747126435,-22.938530734632682,-22.888555722138932,-22.83858070964518,-22.788605697151425,-22.73863068465767,-22.688655672163918,-22.638680659670165,-22.58870564717641,-22.538730634682658,-22.488755622188904,-22.43878060969515,-22.3888055972014,-22.338830584707647,-22.288855572213894,-22.23888055972014,-22.188905547226387,-22.138930534732634,-22.08895552223888,-22.038980509745127,-21.989005497251373,-21.93903048475762,-21.88905547226387,-21.839080459770116,-21.789105447276363,-21.73913043478261,-21.689155422288856,-21.639180409795102,-21.58920539730135,-21.539230384807595,-21.489255372313842,-21.43928035982009,-21.38930534732634,-21.339330334832585,-21.28935532233883,-21.239380309845078,-21.189405297351325,-21.13943028485757,-21.089455272363818,-21.039480259870064,-20.98950524737631,-20.939530234882557,-20.889555222388804,-20.839580209895054,-20.7896051974013,-20.739630184907547,-20.689655172413794,-20.63968015992004,-20.589705147426287,-20.539730134932533,-20.48975512243878,-20.439780109945026,-20.389805097451273,-20.339830084957523,-20.28985507246377,-20.239880059970016,-20.189905047476262,-20.13993003498251,-20.089955022488756,-20.039980009995002,-19.99000499750125,-19.940029985007495,-19.89005497251374,-19.84007996001999,-19.79010494752624,-19.740129935032485,-19.69015492253873,-19.640179910044978,-19.590204897551224,-19.54022988505747,-19.490254872563717,-19.440279860069964,-19.39030484757621,-19.340329835082457,-19.290354822588707,-19.240379810094954,-19.1904047976012,-19.140429785107447,-19.090454772613693,-19.04047976011994,-18.990504747626186,-18.940529735132433,-18.89055472263868,-18.840579710144926,-18.790604697651176,-18.740629685157423,-18.69065467266367,-18.640679660169916,-18.590704647676162,-18.54072963518241,-18.490754622688655,-18.4407796101949,-18.39080459770115,-18.340829585207395,-18.290854572713645,-18.24087956021989,-18.190904547726138,-18.140929535232384,-18.09095452273863,-18.040979510244878,-17.991004497751124,-17.94102948525737,-17.891054472763617,-17.841079460269864,-17.79110444777611,-17.74112943528236,-17.691154422788607,-17.641179410294853,-17.5912043978011,-17.541229385307346,-17.491254372813593,-17.44127936031984,-17.391304347826086,-17.341329335332333,-17.29135432283858,-17.24137931034483,-17.191404297851076,-17.141429285357322,-17.09145427286357,-17.041479260369815,-16.991504247876062,-16.94152923538231,-16.891554222888555,-16.8415792103948,-16.791604197901048,-16.741629185407298,-16.691654172913545,-16.64167916041979,-16.591704147926038,-16.541729135432284,-16.49175412293853,-16.441779110444777,-16.391804097951024,-16.34182908545727,-16.291854072963517,-16.241879060469763,-16.191904047976013,-16.14192903548226,-16.091954022988507,-16.041979010494753,-15.992003998001,-15.942028985507246,-15.892053973013493,-15.842078960519741,-15.792103948025987,-15.742128935532234,-15.69215392303848,-15.642178910544727,-15.592203898050975,-15.542228885557222,-15.492253873063468,-15.442278860569715,-15.392303848075962,-15.342328835582208,-15.292353823088456,-15.242378810594703,-15.19240379810095,-15.142428785607196,-15.092453773113442,-15.04247876061969,-14.992503748125937,-14.942528735632184,-14.89255372313843,-14.842578710644677,-14.792603698150925,-14.742628685657172,-14.692653673163418,-14.642678660669665,-14.592703648175911,-14.54272863568216,-14.492753623188406,-14.442778610694653,-14.3928035982009,-14.342828585707146,-14.292853573213394,-14.24287856071964,-14.192903548225887,-14.142928535732134,-14.09295352323838,-14.042978510744629,-13.993003498250875,-13.943028485757122,-13.893053473263368,-13.843078460769615,-13.793103448275861,-13.74312843578211,-13.693153423288356,-13.643178410794603,-13.59320339830085,-13.543228385807096,-13.493253373313344,-13.44327836081959,-13.393303348325837,-13.343328335832084,-13.29335332333833,-13.243378310844578,-13.193403298350825,-13.143428285857071,-13.093453273363318,-13.043478260869565,-12.993503248375813,-12.94352823588206,-12.893553223388306,-12.843578210894552,-12.793603198400799,-12.743628185907047,-12.693653173413294,-12.64367816091954,-12.593703148425787,-12.543728135932033,-12.493753123438282,-12.443778110944528,-12.393803098450775,-12.343828085957021,-12.293853073463268,-12.243878060969514,-12.193903048475763,-12.14392803598201,-12.093953023488256,-12.043978010994502,-11.994002998500749,-11.944027986006997,-11.894052973513244,-11.84407796101949,-11.794102948525737,-11.744127936031983,-11.694152923538232,-11.644177911044478,-11.594202898550725,-11.544227886056971,-11.494252873563218,-11.444277861069466,-11.394302848575713,-11.344327836081959,-11.294352823588206,-11.244377811094452,-11.1944027986007,-11.144427786106947,-11.094452773613193,-11.04447776111944,-10.994502748625687,-10.944527736131935,-10.894552723638181,-10.844577711144428,-10.794602698650674,-10.744627686156921,-10.69465267366317,-10.644677661169416,-10.594702648675662,-10.544727636181909,-10.494752623688155,-10.444777611194402,-10.39480259870065,-10.344827586206897,-10.294852573713143,-10.24487756121939,-10.194902548725636,-10.144927536231885,-10.094952523738131,-10.044977511244378,-9.995002498750624,-9.94502748625687,-9.89505247376312,-9.845077461269366,-9.795102448775612,-9.745127436281859,-9.695152423788105,-9.645177411294354,-9.5952023988006,-9.545227386306847,-9.495252373813093,-9.44527736131934,-9.395302348825588,-9.345327336331835,-9.295352323838081,-9.245377311344328,-9.195402298850574,-9.145427286356822,-9.095452273863069,-9.045477261369316,-8.995502248875562,-8.945527236381809,-8.895552223888055,-8.845577211394303,-8.79560219890055,-8.745627186406796,-8.695652173913043,-8.64567716141929,-8.595702148925538,-8.545727136431784,-8.495752123938031,-8.445777111444277,-8.395802098950524,-8.345827086456772,-8.295852073963019,-8.245877061469265,-8.195902048975512,-8.145927036481758,-8.095952023988007,-8.045977011494253,-7.9960019990005,-7.946026986506746,-7.896051974012994,-7.84607696151924,-7.796101949025488,-7.746126936531734,-7.696151924037981,-7.646176911544228,-7.596201899050475,-7.546226886556721,-7.496251874062969,-7.446276861569215,-7.396301849075463,-7.346326836581709,-7.296351824087956,-7.246376811594203,-7.19640179910045,-7.146426786606697,-7.096451774112944,-7.04647676161919,-6.9965017491254375,-6.946526736631684,-6.896551724137931,-6.846576711644178,-6.796601699150425,-6.746626686656672,-6.6966516741629185,-6.646676661669165,-6.5967016491754125,-6.546726636681659,-6.496751624187906,-6.446776611694153,-6.3968015992003995,-6.346826586706647,-6.296851574212893,-6.246876561719141,-6.196901549225387,-6.146926536731634,-6.096951524237881,-6.046976511744128,-5.997001499250374,-5.947026486756622,-5.897051474262868,-5.847076461769116,-5.797101449275362,-5.747126436781609,-5.697151424287856,-5.647176411794103,-5.59720139930035,-5.547226386806597,-5.497251374312843,-5.447276361819091,-5.397301349325337,-5.347326336831585,-5.297351324337831,-5.247376311844078,-5.197401299350325,-5.147426286856572,-5.097451274362818,-5.047476261869066,-4.997501249375312,-4.94752623688156,-4.897551224387806,-4.847576211894053,-4.7976011994003,-4.747626186906547,-4.697651174412794,-4.6476761619190405,-4.597701149425287,-4.5477261369315345,-4.497751124437781,-4.4477761119440276,-4.397801099450275,-4.3478260869565215,-4.297851074462769,-4.2478760619690155,-4.197901049475262,-4.147926036981509,-4.097951024487756,-4.047976011994003,-3.99800099950025,-3.948025987006497,-3.898050974512744,-3.8480759620189904,-3.7981009495252374,-3.7481259370314843,-3.6981509245377313,-3.648175912043978,-3.598200899550225,-3.548225887056472,-3.4982508745627188,-3.4482758620689653,-3.3983008495752123,-3.3483258370814593,-3.2983508245877062,-3.248375812093953,-3.1984007996001997,-3.1484257871064467,-3.0984507746126937,-3.0484757621189407,-2.998500749625187,-2.948525737131434,-2.898550724637681,-2.848575712143928,-2.798600699650175,-2.7486256871564216,-2.6986506746626686,-2.6486756621689156,-2.5987006496751626,-2.548725637181409,-2.498750624687656,-2.448775612193903,-2.39880059970015,-2.348825587206397,-2.2988505747126435,-2.2488755622188905,-2.1989005497251375,-2.1489255372313845,-2.098950524737631,-2.048975512243878,-1.999000499750125,-1.949025487256372,-1.8990504747626187,-1.8490754622688657,-1.7991004497751124,-1.7491254372813594,-1.6991504247876061,-1.6491754122938531,-1.5992003998000999,-1.5492253873063468,-1.4992503748125936,-1.4492753623188406,-1.3993003498250876,-1.3493253373313343,-1.2993503248375813,-1.249375312343828,-1.199400299850075,-1.1494252873563218,-1.0994502748625687,-1.0494752623688155,-0.9995002498750625,-0.9495252373813093,-0.8995502248875562,-0.8495752123938031,-0.7996001999000499,-0.7496251874062968,-0.6996501749125438,-0.6496751624187906,-0.5997001499250375,-0.5497251374312844,-0.49975012493753124,-0.4497751124437781,-0.39980009995002497,-0.3498250874562719,-0.29985007496251875,-0.24987506246876562,-0.19990004997501248,-0.14992503748125938,-0.09995002498750624,-0.04997501249375312,0.0,0.04997501249375312,0.09995002498750624,0.14992503748125938,0.19990004997501248,0.24987506246876562,0.29985007496251875,0.3498250874562719,0.39980009995002497,0.4497751124437781,0.49975012493753124,0.5497251374312844,0.5997001499250375,0.6496751624187906,0.6996501749125438,0.7496251874062968,0.7996001999000499,0.8495752123938031,0.8995502248875562,0.9495252373813093,0.9995002498750625,1.0494752623688155,1.0994502748625687,1.1494252873563218,1.199400299850075,1.249375312343828,1.2993503248375813,1.3493253373313343,1.3993003498250876,1.4492753623188406,1.4992503748125936,1.5492253873063468,1.5992003998000999,1.6491754122938531,1.6991504247876061,1.7491254372813594,1.7991004497751124,1.8490754622688657,1.8990504747626187,1.949025487256372,1.999000499750125,2.048975512243878,2.098950524737631,2.1489255372313845,2.1989005497251375,2.2488755622188905,2.2988505747126435,2.348825587206397,2.39880059970015,2.448775612193903,2.498750624687656,2.548725637181409,2.5987006496751626,2.6486756621689156,2.6986506746626686,2.7486256871564216,2.798600699650175,2.848575712143928,2.898550724637681,2.948525737131434,2.998500749625187,3.0484757621189407,3.0984507746126937,3.1484257871064467,3.1984007996001997,3.248375812093953,3.2983508245877062,3.3483258370814593,3.3983008495752123,3.4482758620689653,3.4982508745627188,3.548225887056472,3.598200899550225,3.648175912043978,3.6981509245377313,3.7481259370314843,3.7981009495252374,3.8480759620189904,3.898050974512744,3.948025987006497,3.99800099950025,4.047976011994003,4.097951024487756,4.147926036981509,4.197901049475262,4.2478760619690155,4.297851074462769,4.3478260869565215,4.397801099450275,4.4477761119440276,4.497751124437781,4.5477261369315345,4.597701149425287,4.6476761619190405,4.697651174412794,4.747626186906547,4.7976011994003,4.847576211894053,4.897551224387806,4.94752623688156,4.997501249375312,5.047476261869066,5.097451274362818,5.147426286856572,5.197401299350325,5.247376311844078,5.297351324337831,5.347326336831585,5.397301349325337,5.447276361819091,5.497251374312843,5.547226386806597,5.59720139930035,5.647176411794103,5.697151424287856,5.747126436781609,5.797101449275362,5.847076461769116,5.897051474262868,5.947026486756622,5.997001499250374,6.046976511744128,6.096951524237881,6.146926536731634,6.196901549225387,6.246876561719141,6.296851574212893,6.346826586706647,6.3968015992003995,6.446776611694153,6.496751624187906,6.546726636681659,6.5967016491754125,6.646676661669165,6.6966516741629185,6.746626686656672,6.796601699150425,6.846576711644178,6.896551724137931,6.946526736631684,6.9965017491254375,7.04647676161919,7.096451774112944,7.146426786606697,7.19640179910045,7.246376811594203,7.296351824087956,7.346326836581709,7.396301849075463,7.446276861569215,7.496251874062969,7.546226886556721,7.596201899050475,7.646176911544228,7.696151924037981,7.746126936531734,7.796101949025488,7.84607696151924,7.896051974012994,7.946026986506746,7.9960019990005,8.045977011494253,8.095952023988007,8.145927036481758,8.195902048975512,8.245877061469265,8.295852073963019,8.345827086456772,8.395802098950524,8.445777111444277,8.495752123938031,8.545727136431784,8.595702148925538,8.64567716141929,8.695652173913043,8.745627186406796,8.79560219890055,8.845577211394303,8.895552223888055,8.945527236381809,8.995502248875562,9.045477261369316,9.095452273863069,9.145427286356822,9.195402298850574,9.245377311344328,9.295352323838081,9.345327336331835,9.395302348825588,9.44527736131934,9.495252373813093,9.545227386306847,9.5952023988006,9.645177411294354,9.695152423788105,9.745127436281859,9.795102448775612,9.845077461269366,9.89505247376312,9.94502748625687,9.995002498750624,10.044977511244378,10.094952523738131,10.144927536231885,10.194902548725636,10.24487756121939,10.294852573713143,10.344827586206897,10.39480259870065,10.444777611194402,10.494752623688155,10.544727636181909,10.594702648675662,10.644677661169416,10.69465267366317,10.744627686156921,10.794602698650674,10.844577711144428,10.894552723638181,10.944527736131935,10.994502748625687,11.04447776111944,11.094452773613193,11.144427786106947,11.1944027986007,11.244377811094452,11.294352823588206,11.344327836081959,11.394302848575713,11.444277861069466,11.494252873563218,11.544227886056971,11.594202898550725,11.644177911044478,11.694152923538232,11.744127936031983,11.794102948525737,11.84407796101949,11.894052973513244,11.944027986006997,11.994002998500749,12.043978010994502,12.093953023488256,12.14392803598201,12.193903048475763,12.243878060969514,12.293853073463268,12.343828085957021,12.393803098450775,12.443778110944528,12.493753123438282,12.543728135932033,12.593703148425787,12.64367816091954,12.693653173413294,12.743628185907047,12.793603198400799,12.843578210894552,12.893553223388306,12.94352823588206,12.993503248375813,13.043478260869565,13.093453273363318,13.143428285857071,13.193403298350825,13.243378310844578,13.29335332333833,13.343328335832084,13.393303348325837,13.44327836081959,13.493253373313344,13.543228385807096,13.59320339830085,13.643178410794603,13.693153423288356,13.74312843578211,13.793103448275861,13.843078460769615,13.893053473263368,13.943028485757122,13.993003498250875,14.042978510744629,14.09295352323838,14.142928535732134,14.192903548225887,14.24287856071964,14.292853573213394,14.342828585707146,14.3928035982009,14.442778610694653,14.492753623188406,14.54272863568216,14.592703648175911,14.642678660669665,14.692653673163418,14.742628685657172,14.792603698150925,14.842578710644677,14.89255372313843,14.942528735632184,14.992503748125937,15.04247876061969,15.092453773113442,15.142428785607196,15.19240379810095,15.242378810594703,15.292353823088456,15.342328835582208,15.392303848075962,15.442278860569715,15.492253873063468,15.542228885557222,15.592203898050975,15.642178910544727,15.69215392303848,15.742128935532234,15.792103948025987,15.842078960519741,15.892053973013493,15.942028985507246,15.992003998001,16.041979010494753,16.091954022988507,16.14192903548226,16.191904047976013,16.241879060469763,16.291854072963517,16.34182908545727,16.391804097951024,16.441779110444777,16.49175412293853,16.541729135432284,16.591704147926038,16.64167916041979,16.691654172913545,16.741629185407298,16.791604197901048,16.8415792103948,16.891554222888555,16.94152923538231,16.991504247876062,17.041479260369815,17.09145427286357,17.141429285357322,17.191404297851076,17.24137931034483,17.29135432283858,17.341329335332333,17.391304347826086,17.44127936031984,17.491254372813593,17.541229385307346,17.5912043978011,17.641179410294853,17.691154422788607,17.74112943528236,17.79110444777611,17.841079460269864,17.891054472763617,17.94102948525737,17.991004497751124,18.040979510244878,18.09095452273863,18.140929535232384,18.190904547726138,18.24087956021989,18.290854572713645,18.340829585207395,18.39080459770115,18.4407796101949,18.490754622688655,18.54072963518241,18.590704647676162,18.640679660169916,18.69065467266367,18.740629685157423,18.790604697651176,18.840579710144926,18.89055472263868,18.940529735132433,18.990504747626186,19.04047976011994,19.090454772613693,19.140429785107447,19.1904047976012,19.240379810094954,19.290354822588707,19.340329835082457,19.39030484757621,19.440279860069964,19.490254872563717,19.54022988505747,19.590204897551224,19.640179910044978,19.69015492253873,19.740129935032485,19.79010494752624,19.84007996001999,19.89005497251374,19.940029985007495,19.99000499750125,20.039980009995002,20.089955022488756,20.13993003498251,20.189905047476262,20.239880059970016,20.28985507246377,20.339830084957523,20.389805097451273,20.439780109945026,20.48975512243878,20.539730134932533,20.589705147426287,20.63968015992004,20.689655172413794,20.739630184907547,20.7896051974013,20.839580209895054,20.889555222388804,20.939530234882557,20.98950524737631,21.039480259870064,21.089455272363818,21.13943028485757,21.189405297351325,21.239380309845078,21.28935532233883,21.339330334832585,21.38930534732634,21.43928035982009,21.489255372313842,21.539230384807595,21.58920539730135,21.639180409795102,21.689155422288856,21.73913043478261,21.789105447276363,21.839080459770116,21.88905547226387,21.93903048475762,21.989005497251373,22.038980509745127,22.08895552223888,22.138930534732634,22.188905547226387,22.23888055972014,22.288855572213894,22.338830584707647,22.3888055972014,22.43878060969515,22.488755622188904,22.538730634682658,22.58870564717641,22.638680659670165,22.688655672163918,22.73863068465767,22.788605697151425,22.83858070964518,22.888555722138932,22.938530734632682,22.988505747126435,23.03848075962019,23.088455772113942,23.138430784607696,23.18840579710145,23.238380809595203,23.288355822088956,23.33833083458271,23.388305847076463,23.438280859570217,23.488255872063966,23.53823088455772,23.588205897051473,23.638180909545227,23.68815592203898,23.738130934532734,23.788105947026487,23.83808095952024,23.888055972013994,23.938030984507748,23.988005997001498,24.03798100949525,24.087956021989005,24.137931034482758,24.18790604697651,24.237881059470265,24.28785607196402,24.337831084457772,24.387806096951525,24.43778110944528,24.48775612193903,24.537731134432782,24.587706146926536,24.63768115942029,24.687656171914043,24.737631184407796,24.78760619690155,24.837581209395303,24.887556221889056,24.93753123438281,24.987506246876563,25.037481259370313,25.087456271864067,25.13743128435782,25.187406296851574,25.237381309345327,25.28735632183908,25.337331334332834,25.387306346826588,25.43728135932034,25.487256371814095,25.537231384307844,25.587206396801598,25.63718140929535,25.687156421789105,25.73713143428286,25.787106446776612,25.837081459270365,25.88705647176412,25.937031484257872,25.987006496751626,26.036981509245376,26.08695652173913,26.136931534232883,26.186906546726636,26.23688155922039,26.286856571714143,26.336831584207896,26.38680659670165,26.436781609195403,26.486756621689157,26.53673163418291,26.58670664667666,26.636681659170414,26.686656671664167,26.73663168415792,26.786606696651674,26.836581709145428,26.88655672163918,26.936531734132934,26.986506746626688,27.03648175912044,27.08645677161419,27.136431784107945,27.1864067966017,27.23638180909545,27.286356821589205,27.33633183408296,27.386306846576712,27.436281859070466,27.48625687156422,27.536231884057973,27.586206896551722,27.636181909045476,27.68615692153923,27.736131934032983,27.786106946526736,27.83608195902049,27.886056971514243,27.936031984007997,27.98600699650175,28.035982008995504,28.085957021489257,28.135932033983007,28.18590704647676,28.235882058970514,28.285857071464267,28.33583208395802,28.385807096451774,28.435782108945528,28.48575712143928,28.535732133933035,28.58570714642679,28.635682158920538,28.68565717141429,28.735632183908045,28.7856071964018,28.835582208895552,28.885557221389305,28.93553223388306,28.985507246376812,29.035482258870566,29.08545727136432,29.13543228385807,29.185407296351823,29.235382308845576,29.28535732133933,29.335332333833083,29.385307346326837,29.43528235882059,29.485257371314344,29.535232383808097,29.58520739630185,29.635182408795604,29.685157421289354,29.735132433783107,29.78510744627686,29.835082458770614,29.885057471264368,29.93503248375812,29.985007496251875,30.034982508745628,30.08495752123938,30.134932533733135,30.184907546226885,30.23488255872064,30.284857571214392,30.334832583708145,30.3848075962019,30.434782608695652,30.484757621189406,30.53473263368316,30.584707646176913,30.634682658670666,30.684657671164416,30.73463268365817,30.784607696151923,30.834582708645677,30.88455772113943,30.934532733633183,30.984507746126937,31.03448275862069,31.084457771114444,31.134432783608197,31.18440779610195,31.2343828085957,31.284357821089454,31.334332833583208,31.38430784607696,31.434282858570715,31.484257871064468,31.53423288355822,31.584207896051975,31.63418290854573,31.684157921039482,31.734132933533232,31.784107946026985,31.83408295852074,31.884057971014492,31.934032983508246,31.984007996002,32.03398300849575,32.083958020989506,32.13393303348326,32.18390804597701,32.23388305847077,32.28385807096452,32.33383308345827,32.38380809595203,32.43378310844578,32.48375812093953,32.53373313343328,32.583708145927034,32.63368315842079,32.68365817091454,32.733633183408294,32.78360819590205,32.8335832083958,32.883558220889554,32.93353323338331,32.98350824587706,33.033483258370815,33.08345827086457,33.13343328335832,33.183408295852075,33.23338330834583,33.28335832083958,33.333333333333336,33.38330834582709,33.43328335832084,33.483258370814596,33.53323338330834,33.583208395802096,33.63318340829585,33.6831584207896,33.733133433283356,33.78310844577711,33.83308345827086,33.88305847076462,33.93303348325837,33.983008495752124,34.03298350824588,34.08295852073963,34.132933533233384,34.18290854572714,34.23288355822089,34.282858570714644,34.3328335832084,34.38280859570215,34.432783608195905,34.48275862068966,34.53273363318341,34.58270864567716,34.63268365817091,34.682658670664665,34.73263368315842,34.78260869565217,34.832583708145926,34.88255872063968,34.93253373313343,34.982508745627186,35.03248375812094,35.08245877061469,35.132433783108446,35.1824087956022,35.23238380809595,35.28235882058971,35.33233383308346,35.382308845577214,35.43228385807097,35.48225887056472,35.532233883058474,35.58220889555222,35.632183908045974,35.68215892053973,35.73213393303348,35.782108945527234,35.83208395802099,35.88205897051474,35.932033983008495,35.98200899550225,36.031984007996,36.081959020489755,36.13193403298351,36.18190904547726,36.231884057971016,36.28185907046477,36.33183408295852,36.381809095452276,36.43178410794603,36.48175912043978,36.531734132933536,36.58170914542729,36.631684157921036,36.68165917041479,36.73163418290854,36.7816091954023,36.83158420789605,36.8815592203898,36.93153423288356,36.98150924537731,37.031484257871064,37.08145927036482,37.13143428285857,37.181409295352324,37.23138430784608,37.28135932033983,37.331334332833585,37.38130934532734,37.43128435782109,37.481259370314845,37.5312343828086,37.58120939530235,37.6311844077961,37.68115942028985,37.731134432783605,37.78110944527736,37.83108445777111,37.881059470264866,37.93103448275862,37.98100949525237,38.030984507746126,38.08095952023988,38.13093453273363,38.18090954522739,38.23088455772114,38.28085957021489,38.33083458270865,38.3808095952024,38.430784607696154,38.48075962018991,38.53073463268366,38.580709645177414,38.63068465767117,38.680659670164914,38.73063468265867,38.78060969515242,38.830584707646175,38.88055972013993,38.93053473263368,38.980509745127435,39.03048475762119,39.08045977011494,39.130434782608695,39.18040979510245,39.2303848075962,39.280359820089956,39.33033483258371,39.38030984507746,39.430284857571216,39.48025987006497,39.53023488255872,39.58020989505248,39.63018490754623,39.68015992003998,39.73013493253373,39.78010994502748,39.83008495752124,39.88005997001499,39.930034982508744,39.9800099950025,40.02998500749625,40.079960019990004,40.12993503248376,40.17991004497751,40.229885057471265,40.27986006996502,40.32983508245877,40.379810094952525,40.42978510744628,40.47976011994003,40.529735132433785,40.57971014492754,40.62968515742129,40.679660169915046,40.72963518240879,40.779610194902546,40.8295852073963,40.87956021989005,40.929535232383806,40.97951024487756,41.02948525737131,41.079460269865066,41.12943528235882,41.17941029485257,41.22938530734633,41.27936031984008,41.329335332333834,41.37931034482759,41.42928535732134,41.479260369815094,41.52923538230885,41.5792103948026,41.629185407296355,41.67916041979011,41.72913543228386,41.77911044477761,41.82908545727136,41.879060469765115,41.92903548225887,41.97901049475262,42.028985507246375,42.07896051974013,42.12893553223388,42.178910544727636,42.22888555722139,42.27886056971514,42.328835582208896,42.37881059470265,42.4287856071964,42.478760619690156,42.52873563218391,42.57871064467766,42.62868565717142,42.67866066966517,42.728635682158924,42.77861069465268,42.82858570714642,42.87856071964018,42.92853573213393,42.978510744627684,43.02848575712144,43.07846076961519,43.128435782108944,43.1784107946027,43.22838580709645,43.278360819590205,43.32833583208396,43.37831084457771,43.428285857071465,43.47826086956522,43.52823588205897,43.578210894552726,43.62818590704648,43.67816091954023,43.728135932033986,43.77811094452774,43.828085957021486,43.87806096951524,43.92803598200899,43.978010994502746,44.0279860069965,44.07796101949025,44.12793603198401,44.17791104447776,44.22788605697151,44.27786106946527,44.32783608195902,44.377811094452774,44.42778610694653,44.47776111944028,44.527736131934034,44.57771114442779,44.62768615692154,44.677661169415295,44.72763618190905,44.7776111944028,44.827586206896555,44.8775612193903,44.927536231884055,44.97751124437781,45.02748625687156,45.077461269365315,45.12743628185907,45.17741129435282,45.227386306846576,45.27736131934033,45.32733633183408,45.377311344327836,45.42728635682159,45.47726136931534,45.5272363818091,45.57721139430285,45.6271864067966,45.67716141929036,45.72713643178411,45.777111444277864,45.82708645677162,45.877061469265364,45.92703648175912,45.97701149425287,46.026986506746624,46.07696151924038,46.12693653173413,46.176911544227885,46.22688655672164,46.27686156921539,46.326836581709145,46.3768115942029,46.42678660669665,46.476761619190405,46.52673663168416,46.57671164417791,46.626686656671666,46.67666166916542,46.72663668165917,46.776611694152926,46.82658670664668,46.87656171914043,46.92653673163418,46.97651174412793,47.026486756621686,47.07646176911544,47.12643678160919,47.17641179410295,47.2263868065967,47.276361819090454,47.32633683158421,47.37631184407796,47.426286856571714,47.47626186906547,47.52623688155922,47.576211894052975,47.62618690654673,47.67616191904048,47.726136931534235,47.77611194402799,47.82608695652174,47.876061969015495,47.92603698150925,47.976011994002995,48.02598700649675,48.0759620189905,48.125937031484256,48.17591204397801,48.22588705647176,48.275862068965516,48.32583708145927,48.37581209395302,48.425787106446776,48.47576211894053,48.52573713143428,48.57571214392804,48.62568715642179,48.675662168915544,48.7256371814093,48.77561219390305,48.825587206396804,48.87556221889056,48.92553723138431,48.97551224387806,49.02548725637181,49.075462268865564,49.12543728135932,49.17541229385307,49.225387306346825,49.27536231884058,49.32533733133433,49.375312343828085,49.42528735632184,49.47526236881559,49.525237381309346,49.5752123938031,49.62518740629685,49.675162418790606,49.72513743128436,49.77511244377811,49.825087456271866,49.87506246876562,49.92503748125937,49.97501249375313,50.02498750624687,50.07496251874063,50.12493753123438,50.174912543728134,50.22488755622189,50.27486256871564,50.324837581209394,50.37481259370315,50.4247876061969,50.474762618690654,50.52473763118441,50.57471264367816,50.624687656171915,50.67466266866567,50.72463768115942,50.774612693653175,50.82458770614693,50.87456271864068,50.924537731134436,50.97451274362819,51.02448775612194,51.07446276861569,51.12443778110944,51.174412793603196,51.22438780609695,51.2743628185907,51.324337831084456,51.37431284357821,51.42428785607196,51.47426286856572,51.52423788105947,51.574212893553224,51.62418790604698,51.67416291854073,51.724137931034484,51.77411294352824,51.82408795602199,51.874062968515744,51.9240379810095,51.97401299350325,52.023988005997005,52.07396301849075,52.123938030984505,52.17391304347826,52.22388805597201,52.273863068465765,52.32383808095952,52.37381309345327,52.423788105947025,52.47376311844078,52.52373813093453,52.573713143428286,52.62368815592204,52.67366316841579,52.723638180909546,52.7736131934033,52.82358820589705,52.87356321839081,52.92353823088456,52.973513243378314,53.02348825587207,53.07346326836582,53.12343828085957,53.17341329335332,53.223388305847074,53.27336331834083,53.32333833083458,53.373313343328334,53.42328835582209,53.47326336831584,53.523238380809595,53.57321339330335,53.6231884057971,53.673163418290855,53.72313843078461,53.77311344327836,53.823088455772115,53.87306346826587,53.92303848075962,53.973013493253376,54.02298850574713,54.07296351824088,54.122938530734636,54.17291354322838,54.222888555722136,54.27286356821589,54.32283858070964,54.3728135932034,54.42278860569715,54.4727636181909,54.52273863068466,54.57271364317841,54.622688655672164,54.67266366816592,54.72263868065967,54.772613693153424,54.82258870564718,54.87256371814093,54.922538730634685,54.97251374312844,55.02248875562219,55.072463768115945,55.1224387806097,55.172413793103445,55.2223888055972,55.27236381809095,55.322338830584705,55.37231384307846,55.42228885557221,55.472263868065966,55.52223888055972,55.57221389305347,55.622188905547226,55.67216391804098,55.72213893053473,55.77211394302849,55.82208895552224,55.87206396801599,55.92203898050975,55.9720139930035,56.021989005497254,56.07196401799101,56.12193903048476,56.171914042978514,56.22188905547226,56.271864067966014,56.32183908045977,56.37181409295352,56.421789105447274,56.47176411794103,56.52173913043478,56.571714142928535,56.62168915542229,56.67166416791604,56.721639180409795,56.77161419290355,56.8215892053973,56.871564217891056,56.92153923038481,56.97151424287856,57.021489255372316,57.07146426786607,57.12143928035982,57.17141429285358,57.22138930534732,57.271364317841076,57.32133933033483,57.37131434282858,57.42128935532234,57.47126436781609,57.521239380309844,57.5712143928036,57.62118940529735,57.671164417791104,57.72113943028486,57.77111444277861,57.821089455272364,57.87106446776612,57.92103948025987,57.971014492753625,58.02098950524738,58.07096451774113,58.120939530234885,58.17091454272864,58.22088955522239,58.27086456771614,58.32083958020989,58.370814592703645,58.4207896051974,58.47076461769115,58.520739630184906,58.57071464267866,58.62068965517241,58.670664667666166,58.72063968015992,58.77061469265367,58.82058970514743,58.87056471764118,58.920539730134934,58.97051474262869,59.02048975512244,59.070464767616194,59.12043978010995,59.1704147926037,59.220389805097454,59.27036481759121,59.320339830084954,59.37031484257871,59.42028985507246,59.470264867566215,59.52023988005997,59.57021489255372,59.620189905047475,59.67016491754123,59.72013993003498,59.770114942528735,59.82008995502249,59.87006496751624,59.920039980009996,59.97001499250375,60.0199900049975,60.069965017491256,60.11994002998501,60.16991504247876,60.21989005497252,60.26986506746627,60.31984007996002,60.36981509245377,60.41979010494752,60.46976511744128,60.51974012993503,60.569715142428784,60.61969015492254,60.66966516741629,60.719640179910044,60.7696151924038,60.81959020489755,60.869565217391305,60.91954022988506,60.96951524237881,61.019490254872565,61.06946526736632,61.11944027986007,61.169415292353825,61.21939030484758,61.26936531734133,61.319340329835086,61.36931534232883,61.419290354822586,61.46926536731634,61.51924037981009,61.569215392303846,61.6191904047976,61.66916541729135,61.71914042978511,61.76911544227886,61.81909045477261,61.86906546726637,61.91904047976012,61.969015492253874,62.01899050474763,62.06896551724138,62.118940529735134,62.16891554222889,62.21889055472264,62.268865567216395,62.31884057971015,62.3688155922039,62.41879060469765,62.4687656171914,62.518740629685155,62.56871564217891,62.61869065467266,62.668665667166415,62.71864067966017,62.76861569215392,62.818590704647676,62.86856571714143,62.91854072963518,62.968515742128936,63.01849075462269,63.06846576711644,63.1184407796102,63.16841579210395,63.2183908045977,63.26836581709146,63.31834082958521,63.368315842078964,63.41829085457271,63.468265867066464,63.51824087956022,63.56821589205397,63.618190904547724,63.66816591704148,63.71814092953523,63.768115942028984,63.81809095452274,63.86806596701649,63.918040979510245,63.968015992004,64.01799100449774,64.0679660169915,64.11794102948525,64.16791604197901,64.21789105447276,64.26786606696652,64.31784107946027,64.36781609195403,64.41779110444777,64.46776611694153,64.51774112943528,64.56771614192904,64.61769115442279,64.66766616691655,64.7176411794103,64.76761619190405,64.8175912043978,64.86756621689156,64.91754122938531,64.96751624187905,65.01749125437281,65.06746626686656,65.11744127936032,65.16741629185407,65.21739130434783,65.26736631684157,65.31734132933533,65.36731634182908,65.41729135432284,65.46726636681659,65.51724137931035,65.5672163918041,65.61719140429786,65.6671664167916,65.71714142928536,65.76711644177911,65.81709145427287,65.86706646676662,65.91704147926038,65.96701649175412,66.01699150424787,66.06696651674163,66.11694152923538,66.16691654172914,66.21689155422288,66.26686656671664,66.31684157921039,66.36681659170415,66.4167916041979,66.46676661669166,66.5167416291854,66.56671664167916,66.61669165417291,66.66666666666667,66.71664167916042,66.76661669165418,66.81659170414792,66.86656671664169,66.91654172913543,66.96651674162919,67.01649175412294,67.06646676661668,67.11644177911045,67.16641679160419,67.21639180409795,67.2663668165917,67.31634182908546,67.3663168415792,67.41629185407297,67.46626686656671,67.51624187906047,67.56621689155422,67.61619190404798,67.66616691654173,67.71614192903549,67.76611694152923,67.816091954023,67.86606696651674,67.9160419790105,67.96601699150425,68.01599200399801,68.06596701649175,68.1159420289855,68.16591704147926,68.21589205397301,68.26586706646677,68.31584207896051,68.36581709145428,68.41579210394802,68.46576711644178,68.51574212893553,68.56571714142929,68.61569215392304,68.6656671664168,68.71564217891054,68.7656171914043,68.81559220389805,68.86556721639181,68.91554222888556,68.96551724137932,69.01549225387306,69.06546726636682,69.11544227886057,69.16541729135432,69.21539230384808,69.26536731634182,69.31534232883558,69.36531734132933,69.41529235382309,69.46526736631684,69.5152423788106,69.56521739130434,69.6151924037981,69.66516741629185,69.71514242878561,69.76511744127936,69.81509245377312,69.86506746626686,69.91504247876063,69.96501749125437,70.01499250374813,70.06496751624188,70.11494252873563,70.16491754122939,70.21489255372313,70.26486756621689,70.31484257871064,70.3648175912044,70.41479260369815,70.4647676161919,70.51474262868565,70.56471764117941,70.61469265367316,70.66466766616692,70.71464267866067,70.76461769115443,70.81459270364817,70.86456771614193,70.91454272863568,70.96451774112944,71.01449275362319,71.06446776611695,71.1144427786107,71.16441779110444,71.2143928035982,71.26436781609195,71.31434282858571,71.36431784107945,71.41429285357322,71.46426786606696,71.51424287856072,71.56421789105447,71.61419290354823,71.66416791604198,71.71414292853574,71.76411794102948,71.81409295352324,71.86406796601699,71.91404297851075,71.9640179910045,72.01399300349826,72.063968015992,72.11394302848576,72.16391804097951,72.21389305347326,72.26386806596702,72.31384307846076,72.36381809095452,72.41379310344827,72.46376811594203,72.51374312843578,72.56371814092954,72.61369315342328,72.66366816591704,72.71364317841079,72.76361819090455,72.8135932033983,72.86356821589206,72.9135432283858,72.96351824087957,73.01349325337331,73.06346826586707,73.11344327836082,73.16341829085458,73.21339330334833,73.26336831584207,73.31334332833583,73.36331834082958,73.41329335332334,73.46326836581709,73.51324337831085,73.5632183908046,73.61319340329835,73.6631684157921,73.71314342828586,73.7631184407796,73.81309345327337,73.86306846576711,73.91304347826087,73.96301849075462,74.01299350324838,74.06296851574213,74.11294352823589,74.16291854072963,74.2128935532234,74.26286856571714,74.31284357821089,74.36281859070465,74.4127936031984,74.46276861569216,74.5127436281859,74.56271864067966,74.61269365317341,74.66266866566717,74.71264367816092,74.76261869065468,74.81259370314842,74.86256871564218,74.91254372813593,74.96251874062969,75.01249375312344,75.0624687656172,75.11244377811094,75.1624187906047,75.21239380309845,75.2623688155922,75.31234382808596,75.3623188405797,75.41229385307346,75.46226886556721,75.51224387806097,75.56221889055472,75.61219390304848,75.66216891554222,75.71214392803599,75.76211894052973,75.81209395302349,75.86206896551724,75.912043978011,75.96201899050475,76.0119940029985,76.06196901549225,76.11194402798601,76.16191904047976,76.21189405297352,76.26186906546727,76.31184407796101,76.36181909045477,76.41179410294852,76.46176911544228,76.51174412793603,76.56171914042979,76.61169415292353,76.6616691654173,76.71164417791104,76.7616191904048,76.81159420289855,76.86156921539231,76.91154422788605,76.96151924037981,77.01149425287356,77.06146926536732,77.11144427786107,77.16141929035483,77.21139430284857,77.26136931534234,77.31134432783608,77.36131934032983,77.41129435282359,77.46126936531734,77.5112443778111,77.56121939030484,77.6111944027986,77.66116941529235,77.71114442778611,77.76111944027986,77.81109445277362,77.86106946526736,77.91104447776112,77.96101949025487,78.01099450274863,78.06096951524238,78.11094452773614,78.16091954022988,78.21089455272364,78.26086956521739,78.31084457771115,78.3608195902049,78.41079460269864,78.4607696151924,78.51074462768615,78.56071964017991,78.61069465267366,78.66066966516742,78.71064467766116,78.76061969015493,78.81059470264867,78.86056971514243,78.91054472763618,78.96051974012994,79.01049475262369,79.06046976511745,79.11044477761119,79.16041979010495,79.2103948025987,79.26036981509246,79.3103448275862,79.36031984007997,79.41029485257371,79.46026986506746,79.51024487756122,79.56021989005497,79.61019490254873,79.66016991504247,79.71014492753623,79.76011994002998,79.81009495252374,79.86006996501749,79.91004497751125,79.960019990005,80.00999500249875,80.0599700149925,80.10994502748626,80.15992003998001,80.20989505247377,80.25987006496752,80.30984507746128,80.35982008995502,80.40979510244878,80.45977011494253,80.50974512743628,80.55972013993004,80.60969515242378,80.65967016491754,80.70964517741129,80.75962018990505,80.8095952023988,80.85957021489256,80.9095452273863,80.95952023988006,81.00949525237381,81.05947026486757,81.10944527736132,81.15942028985508,81.20939530234882,81.25937031484258,81.30934532733633,81.35932033983009,81.40929535232384,81.45927036481758,81.50924537731134,81.55922038980509,81.60919540229885,81.6591704147926,81.70914542728636,81.7591204397801,81.80909545227387,81.85907046476761,81.90904547726137,81.95902048975512,82.00899550224888,82.05897051474263,82.10894552723639,82.15892053973013,82.2088955522239,82.25887056471764,82.3088455772114,82.35882058970515,82.40879560219891,82.45877061469265,82.5087456271864,82.55872063968016,82.6086956521739,82.65867066466767,82.70864567716141,82.75862068965517,82.80859570214892,82.85857071464268,82.90854572713643,82.95852073963019,83.00849575212393,83.0584707646177,83.10844577711144,83.1584207896052,83.20839580209895,83.25837081459271,83.30834582708646,83.35832083958022,83.40829585207396,83.45827086456772,83.50824587706147,83.55822088955522,83.60819590204898,83.65817091454272,83.70814592703648,83.75812093953023,83.80809595202399,83.85807096451774,83.9080459770115,83.95802098950524,84.007996001999,84.05797101449275,84.10794602698651,84.15792103948026,84.20789605197402,84.25787106446776,84.30784607696152,84.35782108945527,84.40779610194903,84.45777111444278,84.50774612693654,84.55772113943029,84.60769615192403,84.65767116441779,84.70764617691154,84.7576211894053,84.80759620189905,84.8575712143928,84.90754622688655,84.95752123938031,85.00749625187406,85.05747126436782,85.10744627686157,85.15742128935533,85.20739630184907,85.25737131434283,85.30734632683658,85.35732133933034,85.40729635182409,85.45727136431785,85.5072463768116,85.55722138930535,85.6071964017991,85.65717141429285,85.70714642678661,85.75712143928035,85.80709645177411,85.85707146426786,85.90704647676162,85.95702148925537,86.00699650174913,86.05697151424287,86.10694652673664,86.15692153923038,86.20689655172414,86.25687156421789,86.30684657671165,86.3568215892054,86.40679660169916,86.4567716141929,86.50674662668666,86.55672163918041,86.60669665167416,86.65667166416792,86.70664667666166,86.75662168915542,86.80659670164917,86.85657171414293,86.90654672663668,86.95652173913044,87.00649675162418,87.05647176411794,87.10644677661169,87.15642178910545,87.2063968015992,87.25637181409296,87.3063468265867,87.35632183908046,87.40629685157421,87.45627186406797,87.50624687656172,87.55622188905548,87.60619690154923,87.65617191404297,87.70614692653673,87.75612193903048,87.80609695152424,87.85607196401799,87.90604697651175,87.95602198900549,88.00599700149925,88.055972013993,88.10594702648676,88.1559220389805,88.20589705147427,88.25587206396801,88.30584707646177,88.35582208895552,88.40579710144928,88.45577211394303,88.50574712643679,88.55572213893053,88.6056971514243,88.65567216391804,88.70564717641179,88.75562218890555,88.8055972013993,88.85557221389305,88.9055472263868,88.95552223888056,89.00549725137431,89.05547226386807,89.10544727636182,89.15542228885558,89.20539730134932,89.25537231384308,89.30534732633683,89.35532233883059,89.40529735132434,89.4552723638181,89.50524737631184,89.5552223888056,89.60519740129935,89.65517241379311,89.70514742628686,89.7551224387806,89.80509745127436,89.85507246376811,89.90504747626187,89.95502248875562,90.00499750124938,90.05497251374312,90.10494752623688,90.15492253873063,90.20489755122439,90.25487256371814,90.3048475762119,90.35482258870564,90.4047976011994,90.45477261369315,90.50474762618691,90.55472263868066,90.60469765117442,90.65467266366817,90.70464767616193,90.75462268865567,90.80459770114942,90.85457271364318,90.90454772613693,90.95452273863069,91.00449775112443,91.0544727636182,91.10444777611194,91.1544227886057,91.20439780109945,91.2543728135932,91.30434782608695,91.35432283858071,91.40429785107446,91.45427286356822,91.50424787606197,91.55422288855573,91.60419790104947,91.65417291354323,91.70414792603698,91.75412293853073,91.80409795102449,91.85407296351823,91.904047976012,91.95402298850574,92.0039980009995,92.05397301349325,92.10394802598701,92.15392303848076,92.20389805097452,92.25387306346826,92.30384807596202,92.35382308845577,92.40379810094953,92.45377311344328,92.50374812593704,92.55372313843078,92.60369815092454,92.65367316341829,92.70364817591205,92.7536231884058,92.80359820089954,92.8535732133933,92.90354822588705,92.95352323838081,93.00349825087456,93.05347326336832,93.10344827586206,93.15342328835582,93.20339830084957,93.25337331334333,93.30334832583708,93.35332333833084,93.40329835082458,93.45327336331835,93.50324837581209,93.55322338830585,93.6031984007996,93.65317341329336,93.7031484257871,93.75312343828087,93.80309845077461,93.85307346326836,93.90304847576212,93.95302348825587,94.00299850074963,94.05297351324337,94.10294852573713,94.15292353823088,94.20289855072464,94.25287356321839,94.30284857571215,94.3528235882059,94.40279860069965,94.4527736131934,94.50274862568716,94.55272363818091,94.60269865067467,94.65267366316841,94.70264867566218,94.75262368815592,94.80259870064968,94.85257371314343,94.90254872563717,94.95252373813094,95.00249875062468,95.05247376311844,95.10244877561219,95.15242378810595,95.2023988005997,95.25237381309346,95.3023488255872,95.35232383808096,95.40229885057471,95.45227386306847,95.50224887556222,95.55222388805598,95.60219890054972,95.65217391304348,95.70214892553723,95.75212393803099,95.80209895052474,95.8520739630185,95.90204897551224,95.95202398800599,96.00199900049975,96.0519740129935,96.10194902548726,96.151924037981,96.20189905047476,96.25187406296851,96.30184907546227,96.35182408795602,96.40179910044978,96.45177411294353,96.50174912543729,96.55172413793103,96.60169915042479,96.65167416291854,96.7016491754123,96.75162418790605,96.8015992003998,96.85157421289355,96.90154922538731,96.95152423788106,97.0014992503748,97.05147426286857,97.10144927536231,97.15142428785607,97.20139930034982,97.25137431284358,97.30134932533733,97.35132433783109,97.40129935032483,97.4512743628186,97.50124937531234,97.5512243878061,97.60119940029985,97.65117441279361,97.70114942528735,97.75112443778112,97.80109945027486,97.85107446276862,97.90104947526237,97.95102448775611,98.00099950024988,98.05097451274362,98.10094952523738,98.15092453773113,98.20089955022489,98.25087456271864,98.3008495752124,98.35082458770614,98.4007996001999,98.45077461269365,98.50074962518741,98.55072463768116,98.60069965017492,98.65067466266866,98.70064967516242,98.75062468765617,98.80059970014993,98.85057471264368,98.90054972513744,98.95052473763118,99.00049975012493,99.05047476261869,99.10044977511244,99.1504247876062,99.20039980009994,99.2503748125937,99.30034982508745,99.35032483758121,99.40029985007496,99.45027486256872,99.50024987506247,99.55022488755623,99.60019990004997,99.65017491254373,99.70014992503748,99.75012493753124,99.80009995002499,99.85007496251875,99.9000499750125,99.95002498750625,100.0]} From 12a250dd01ca5a011149b8cdf85ea47e3118d731 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Mon, 18 Nov 2024 14:16:21 +0600 Subject: [PATCH 29/63] added large negative json --- .../base/special/cosc/test/fixtures/julia/large_negative.json | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_negative.json diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_negative.json b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_negative.json new file mode 100644 index 000000000000..e69de29bb2d1 From b8c08219c8be06eb5b5bdbeef1cb49d78319164a Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Mon, 18 Nov 2024 14:20:07 +0600 Subject: [PATCH 30/63] added json file --- .../base/special/cosc/test/fixtures/julia/large_negative.json | 1 + .../base/special/cosc/test/fixtures/julia/large_positive.json | 0 2 files changed, 1 insertion(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_negative.json b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_negative.json index e69de29bb2d1..3fcae7f64bb2 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_negative.json +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_negative.json @@ -0,0 +1 @@ +{"expected":[-0.00012456166817413633,0.0004485363190720794,-0.00017370827106411615,-0.00033371098985048416,0.0003960794276259615,7.070922033827375e-5,-0.00044381646165508724,0.00022451289188387877,0.0002951771893628472,-0.0004213310341718492,-1.5306201729055812e-5,0.00043224605453137736,-0.0002723127380086448,-0.0002517802428141902,0.00044033697192269206,-4.081280581228234e-5,-0.0004139427829786389,0.0003163500852671505,0.00020414214667276422,-0.0004527520191807128,9.679505815467949e-5,0.0003891281535495211,-0.00035591808131396705,-0.00015295505533659607,0.0004583285848238975,-0.0001517824796260571,-0.0003581250181319909,0.00039037195131701446,9.897134727210262e-5,-0.0004569213254009395,0.00020492468500101838,0.00032135353708778817,-0.0004191393570243477,-4.29926906881224e-5,0.00044849024875725667,-0.00025539199702521716,-0.00027932562932896267,0.0004417297450081565,-1.4141734110297437e-5,-0.0004331022442213629,0.0003023882621858372,0.00023263798046580558,-0.000457742533774014,7.156768447441117e-5,0.00041093100265587174,-0.0003451632688212084,-0.0001819637025590335,0.0004668740057011242,-0.00012840879444002393,-0.00038225531370002734,0.00038302457600337145,0.00012804276017808685,-0.00046892278820837024,0.00018378981125359985,0.00034745575194722317,-0.0004153485689011816,-7.167129709387688e-5,0.0004637938288719342,-0.0002368499314778339,-0.00030700978824197073,0.0004415905664349678,1.3690015693093893e-5,-0.0004515007911564774,0.0002867560355594167,0.0002614853863877762,-0.00046129381985587074,4.502822317389798e-5,0.00043216682064953324,-0.0003327156195349021,-0.00021153316895525847,0.000474097256239904,-0.00010359139897942509,-0.00040602365586887157,0.00037398922538575506,0.0001578772582215507,-0.00047974183857938047,0.00016110173738841538,0.0003734090824891023,-0.0004099021773953018,-0.00010130491919904906,0.0004780754339262904,-0.000216669323847829,-0.00033476275484213515,0.00043985544066247337,4.265515091544096e-5,-0.00046905610262283984,0.0002694257206448756,0.0002906204334056127,-0.0004633354295648641,1.719361073401099e-5,0.0004527537447291062,-0.000318537381340959,-0.00024160671133976848,0.0004799226083029125,-7.733650038442338e-5,-0.0004293500639941509,0.00036321865772150574,0.00018842632658484364,-0.0004892987424923938,0.00013685575037981405,0.00039913683476174564,-0.0004027441987402949,-0.00013185417824028594,0.0004912526798820674,-0.0001948345377183081,-0.0003625124826838629,0.00043646054832369375,7.272418655424063e-5,-0.0004856845593808922,0.00025037094414381085,0.0003199770156595405,-0.00046379675926683223,-1.1917154553437444e-5,0.00047260837039280227,-0.0003025918191997055,-0.0002721253666324918,0.0004842738536530704,-4.96521941775743e-5,-0.0004521528086444286,0.00035066633563768645,0.00021963923439861674,-0.0004975129761029134,0.00011104881305088553,0.0004245603999014984,-0.00039381902930526227,-0.00016327753200737145,0.0005032421044814115,-0.00017133136556089733,-0.0003901848888360297,0.0004313421215273247,0.00010386557434102734,-0.0005013012032192575,0.00022956648570499172,0.00034948691644292706,-0.0004626069309715108,-4.2283156664285e-5,0.0004916457268359846,-0.00028484305221613816,-0.0003030280354270631,0.0004870741939521858,-2.0548305944674597e-5,-0.0004743484052807341,0.0003362862609105027,0.0002514631384894882,-0.0005043031269140812,8.36793926531448e-5,0.00044959926797750067,-0.0003830712805127985,-0.00019553139906074298,0.000513959082262885,-0.0001461468457153575,-0.0004177038896086314,0.0004244362816055426,0.00013604584736876386,-0.0005158196685269618,0.00020698808518880522,0.0003790798673126206,-0.00045969463584213173,-7.388172644203076e-5,0.0005097792277739571,-0.0002652558534504313,-0.00033425156570982033,0.00048824609316607974,9.96379237790855e-6,-0.0004958515869522188,0.00032003276946225264,0.00028384319260983036,-0.0005095867583742871,5.4747259339822434e-5,0.00047417102504542804,-0.00037044557201949184,-0.00022857029398719807,0.0005233177047583111,-0.00011926904481589921,-0.00044499142425314325,0.00041567883381718815,0.0001692297814612144,-0.0005291520815489374,0.00018261221128355363,0.00040868360045341666,-0.0004549879340620999,-0.00010668862868584863,0.0005269205932043179,-0.0002437954074460275,-0.0003657308355737295,0.00048771108649920666,4.187139440292516e-5,-0.0005165752519293346,0.0003018602809907197,0.00031672266177951364,-0.0005132802319913924,2.42532509194827e-5,0.0004981913298579033,-0.000355886277094324,-0.00026234697418496127,0.0005312306200468168,-9.068680123431466e-5,-0.0004719674637152419,0.0004050050125443303,0.00020338057468064497,-0.0005412089217153614,0.00015641578627025986,0.0004382238921207425,-0.0004484140043083215,-0.00014067827407813113,0.0005429797368433264,-0.00022042701953752563,-0.0003973988335899183,0.00048538953893378776,7.516070269542579e-5,-0.0005364303814904181,0.00028172299663471544,0.000350043041341552,-0.0005152984799977097,-7.801000407762146e-6,0.000521573866060382,-0.0003393372130185621,-0.00029681259878702065,0.0005376088247982569,-6.038942428545137e-5,-0.0004985500010211604,0.0003923491693388424,0.00023846004666525875,-0.0005518988384253565,0.00012837586074931423,0.0004676245946158323,-0.00043989883483650514,-0.00017582395876365638,0.0005578646130234418,-0.00019511576988824847,-0.0004291867352927588,0.0004812003451710532,0.00010981710765263008,-0.0005553259222132413,0.0002595745368309426,0.00038374418029128623,-0.0005155547203066365,-4.1413384460164684e-5,0.0005442302649539507,-0.0003207412679768389,-0.00033191690049243184,0.0005423614006606293,-2.8366342914278037e-5,-0.0005246550192643582,0.00037764439471893587,0.0002744288598432371,-0.0005611284154307029,9.846923094611996e-5,0.0004968076538069981,-0.00042936684666144666,-0.00021209813497523837,0.0005714810156756065,-0.00016782610382756792,-0.00046102397397605185,0.0004750605611994852,0.00014582550663002364,-0.0005731686260681292,0.00023536750998938714,0.0004177644084027761,-0.0005139601039155561,-7.658167879819882e-5,0.0005660699929854685,-0.00030003995423297263,-0.0003676083712641698,0.000545395185273537,5.393303672148185e-6,-0.0005501964324141239,0.0003608220628293908,0.0003112467650252817,-0.0005688018734452578,6.66719897233761e-5,0.0005256931086616965,-0.0004167404374311668,-0.0002494727168123518,0.0005837323205899436,-0.00013852134836638466,-0.0004928383036931595,0.00046688495577864464,0.00018317066908393577,-0.0005898628403054575,0.00020905300071418143,0.0004520406666265192,-0.0005104232829475933,-0.00011330397120295386,0.0005870001969956307,-0.0002771728753189477,-0.00040383446310245585,0.0005466143662484645,4.0901142535133084e-5,-0.0005750859932436706,0.00034181128585932284,0.0003488728744309019,-0.0005748206997252689,3.2959000591197204e-5,0.0005541990685870974,-0.00040193943226748524,-0.000287919426178665,0.0005945191603775274,-0.00010716314265709941,-0.0005245558519694641,0.00045658546771951033,0.00022183765473448932,-0.0006053102375192277,0.00018057996394952488,0.00048650864018616,-0.0005048498850934226,-0.0001515791479480414,0.0006069254988501045,-0.00025207709238713225,-0.00044054180540769244,0.0005459199840427669,7.817012174517948e-5,-0.0005992331615359451,0.0003205382623575068,0.0003872659659095396,-0.0005790831910288816,-2.6967182962459274e-6,0.0005822416635436168,-0.0003848804249405658,-0.0003274101849937627,0.0006037390193522763,-7.37107675413901e-5,-0.0005561011592703283,0.0004440705518487528,0.00026181229330904507,-0.0006194094742598853,0.00014989450848765167,0.0005211028937362893,-0.000497141877174878,-0.00019140745889077528,0.0006257477293319169,-0.00022468637166690635,-0.0004776764408442629,0.0005432093266426345,0.00011721515682433612,-0.0006225449242982003,0.00029692550013021596,0.0004263848229936368,-0.0005814838934401476,-4.032471603723474e-5,0.0006097349608639508,-0.0003654759891157782,-0.00036791756120142116,0.0006112857327945965,-3.812035602664286e-5,-0.0005873972016811067,0.00042924439278511656,0.0003030817363653981,-0.0006320557640548405,0.00011693904959428937,0.000555757007875549,-0.00048719679674499774,-0.00023279117292036297,0.0006433655889802109,-0.00019493029092440637,-0.0005151840821071842,0.0005383751951826252,0.000158053885442217,-0.0006449255579313964,0.0002708908900729826,0.00046618861653912046,-0.0005819129188700316,-7.995795627767648e-5,0.0006365908414076816,-0.0003436337348314409,-0.00040941527786089184,0.0006170488715872453,-3.4396238365693364e-7,-0.0006183653925285538,0.00041200596092519533,0.0003456350941564253,-0.0006431403475253614,8.16513058467855e-5,0.0005904037162213398,-0.0004749068258311929,-0.0002757353404600831,0.0006596742207963513,-0.0001627331777239013,-0.0005530103926260722,0.0005313050148494895,0.00020070755080561287,-0.000666276320043661,0.00024234660179861604,0.0005066373351142866,-0.0005802551133967092,-0.00012163381399387592,0.0006627188260415063,-0.00031925517957707446,-0.0004518787968596433,0.0006209129888183405,3.967153771137284e-5,-0.0006489255577462528,0.00039224787902661867,0.0003894641736163504,-0.0006525498382705992,4.396310937883601e-5,0.00062497504214829,-0.0004601576748217366,-0.0003202486837468762,0.0006745646762273069,-0.0001280128458016495,-0.0005911012950484771,0.0005218797593382275,0.0002452020391133128,-0.0006864950557307215,0.0002111977649356838,0.000547692273100128,-0.0005763890466927572,-0.00016539525169769557,0.0006880258413481077,-0.000292234395957088,-0.0004952859916460453,0.0006227566993431686,8.198575029240206e-5,-0.0006789958786141356,0.0003698550601189606,0.0004345643375383374,-0.0006601654180598565,3.798991176725682e-6,0.0006594024341622075,-0.000442827236699072,-0.0003663446407629654,0.0006879232513513908,-9.067908756389645e-5,-0.0006294033123753893,0.0005099726493462989,0.0002915691027750374,-0.0007054756994778026,0.0001773408910287198,0.0005893165877776671,-0.0005701857842049062,-0.00021129221249545688,0.0007124159107911405,-0.0002624563884490558,-0.0005396179270638326,0.0006224515561055044,0.00012666631240467653,-0.0007084927939985744,0.00034470306762769025,0.00048093551014244504,-0.0006658618482844193,-3.8925506638762455e-5,0.0006936168987149291,-0.00042278396178207416,-0.00041404259531758195,0.0006996306644182158,-5.063187003643488e-5,-0.0006678639479625238,0.000495447575570884,0.0003398478092533135,-0.0007231076491104179,0.0001406619794213257,0.0006314759396580153,-0.0005615073939656795,-0.00025938327710763466,0.0007357897541149982,-0.0002297951395332963,-0.000584859769133401,0.0006198606777279072,0.00017379074169197837,-0.0007373308522747821,0.00031665613585580877,0.0005285833608709029,-0.0006695062560870872,-8.430585217840328e-5,0.0007275491290585265,-0.0003998848901376244,-0.00046336933438106953,0.0007095610384118557,-7.75916771947288e-6,-0.0007064321123344968,0.00047815718365721405,0.00039008626597529603,-0.0007392749820839392,0.00010103423551010707,0.0006741392341983467,-0.0005502051271990107,-0.0003097376445559679,0.0007580442732704699,-0.00019411124953493396,-0.0006310018538217974,0.0006148370697758587,0.00022344865491130653,-0.0007654225005863134,0.00028556477236704487,0.0005775207069177935,-0.0006709566424612329,-0.00013245095585173036,0.0007611296284635723,-0.00037397326182992335,-0.0005143607850012877,0.0007175806425271957,3.8065652320656336e-5,-0.0007450586070384055,0.00045794054152902095,0.00044234368563577487,-0.0007538554763697327,5.8315310104981454e-5,0.000717279488131591,-0.0005361171952083469,-0.00036243751272811036,0.0007790718972772163,-0.000155249073629507,-0.0006780409519903127,0.0006072215662181262,0.00027574444313245496,-0.0007926777957749918,0.0002512628419831064,0.0006277691863882861,-0.0006700600449744519,-0.0001834861117745654,0.000794288825775187,-0.0003448756028182626,-0.000567064097938486,0.0007235463335701548,8.698700169671053e-5,-0.0007836966787628592,0.0004346202870745869,0.0004966928745054416,-0.0007667193875943131,1.2343942697224056e-5,0.0007608748503678707,-0.0005190660430132672,-0.00041758095686709096,0.0007987597506586073,-0.00011303323180833755,-0.0007259817784811798,0.0005968402965700792,0.00033080051668238846,-0.0008190040169196047,0.00021356400318583724,0.0006793612690999517,-0.0006666502683640411,-0.0002375565758217347,0.0008269571808112885,-0.000312398154606676,-0.0006215401648126207,0.0007273036211717714,0.00013917093862373154,-0.0008223026609488164,0.00040799912429235254,0.0005532232507290031,-0.0007777279199740055,-3.706414313367566e-5,0.0008049098163878196,-0.0004988549908266503,-0.0004752854331439743,0.000816988599711263,-6.726433070043813e-5,-0.0007748388077058107,0.0005835015561140858,0.00038876126673274906,-0.0008443051535447506,0.0001722573290108936,0.0007323426922566649,-0.000660545070262788,-0.00029483194600332966,0.0008590652764856759,-0.000276322475945554,-0.0006778666819351168,0.0007286842577456566,0.0001948099155161718,-0.0008608367254843519,0.00037785549586455105,0.0006120445323308066,-0.0007867313096117011,-9.012129041853215e-5,0.0008493766871179257,-0.00047526407493905326,-0.0005356920736943555,0.0008336315168993461,-1.7713686395006457e-5,-0.0008246384775051377,0.0005669919186844694,0.00044979793607755265,-0.0008684812356296175,0.00012710189225876418,0.000786775435562244,-0.0006515426541892085,-0.00035551156276490074,0.0008905438936950091,-0.0002363999909853572,-0.0007361419097074306,0.0007275032230025167,0.0002541286470554513,-0.0008992637743603523,0.00034393820568986375,0.0006732912790951917,-0.0007935664129593309,-0.00014707416700905144,0.0008942773396766021,-0.00044804486581438805,-0.000598970992842504,0.000848552184645008,3.58832303209993e-5,-0.0008754218895060851,0.0005470713798517421,0.0005141146539167053,-0.0008914274607267569,7.782002349823515e-5,0.000842741387658368,-0.0006394172739397751,-0.0004198312177610088,0.0009213240638593112,-0.0001923451845589495,-0.0007964893253653697,0.0007235549302334848,0.00031739141873913477,-0.0009375545111457186,0.00030595969023145366,0.000737128533461601,-0.0007980536578778951,-0.00020821157943568566,0.0009396253999222684,-0.0004169139673056412,-0.0006653278976281883,0.0008616027336186371,9.383499816905384e-5,-0.0009272481506285773,0.0005234672471390933,0.0005819559753028539,-0.0009130330585740554,2.408885187451331e-5,0.0009003469073194987,-0.0006239136872178456,-0.0004880715577518202,0.0009513370924149846,-0.00014382704323060214,-0.0008590634345313574,0.0007166084225512762,0.000384911265687759,-0.0009756867459868408,0.00026358753395412454,0.0008037588902287548,-0.000799993165609784,-0.00027387431108503643,0.0009854489380689735,-0.00038154479809130717,-0.0007350123978761266,0.0008726209741890288,0.0001565046008188065,-0.000980198551191728,0.0004958663946117935,0.0006536163857225062,-0.0009331798127442013,-3.4470398842348966e-5,0.0009597285548784803,-0.0006047401035927985,-0.000560568707523518,0.0009805145443330166,-9.045819783037602e-5,-0.0009240571019187258,0.0007064012445161511,0.0004570616055293964,-0.0010136470072727609,0.0002164336785943075,0.0008734314438317912,-0.0007991597828927923,-0.0003444676229596536,0.0010317938527584255,-0.0003415571116210217,-0.0008083285550187401,0.0008814268283013175,0.00022432261873191233,-0.0010343818467806337,0.0004639053588795084,0.0007294524006357697,-0.0009517401293956868,-9.830608122277898e-5,0.0010210603713882468,-0.0005815591404862235,-0.0006377278303527933,0.0010087881795774023,-3.1781020293844424e-5,-0.0009917108962841142,0.0006926315569370302,0.000534291128220437,-0.0010514325607661355,0.00016404056882303458,0.0009464532314650014,-0.0007952966649720858,-0.00042047729721402774,0.0010787281719488128,-0.000296503504019921,-0.0008856484146069101,0.0008878176955528182,0.0002978042049458165,-0.0010899410137170887,0.0004271575525692051,0.0008098981325968859,-0.000968574500905952,-0.00016795376388856255,0.0010845632295607658,-0.0005539761120188006,-0.00072004062440203,0.0010360898218713251,3.2750364522243604e-5,-0.0010623251389058972,0.0006749478930355778,0.0006171430617178392,-0.0010890539769312525,0.0001058631775154153,0.0010232040353603227,-0.000788106907797335,-0.0005024904538550386,0.0011263475902021603,-0.0002458518596010785,-0.0009674295658691278,0.000891562380563817,0.0003775711734426736,-0.001147061997215636,0.0003851165789799142,0.0008954855519421678,-0.0009835281505735502,-0.0002440592490104013,0.0011505169942555408,-0.0005215236999209037,-0.0008081081622102554,0.001062351137494892,0.0001037936187010369,-0.0011362756290627823,0.0006529357057300633,0.0007062803956424131,-0.0011265384457573007,4.124541447799306e-5,0.001104155767477257,-0.0007772425182842924,-0.0005912228861615011,0.0011747826962334998,-0.00018896224195460827,-0.0010542382116127636,0.000892393051347432,0.0004643810914025477,-0.0012059851918136937,0.0003371741993800588,0.0009868711899399915,-0.0009964265533721171,-0.00032740898028303097,0.0012192765472632645,-0.0004836416465879647,-0.0009026710876045519,0.0010875032909538349,0.00018214938513556257,-0.001214034443108361,0.0006260994856623769,0.0008025193358197096,-0.0011639341257739643,-3.0611233712196184e-5,0.001189898197830279,-0.0007622896982636906,-0.0006875554315598233,0.0012242085457648628,-0.0001250560763474782,-0.001146779891949144,0.0008899944620173027,0.000559166112364569,-0.0012670207253608267,0.00028259085362547753,0.0010848718211618632,-0.0010070693901902256,-0.00041897076508874264,0.0012912932099202973,-0.0004396494918928274,-0.0010046501030235248,0.0011114764293958333,0.0002688032011894827,-0.0012961978455399727,0.0005938386676472211,0.0009068743121164311,-0.0012013159468612525,-0.00011068998385703361,0.001281173607232969,-0.0007427489401278721,-0.0007925830715857579,0.0012748575420049957,-5.3174456752931195e-5,-0.001245941015453367,0.0008839893111688632,0.0006630855836360853,-0.0013305691267389407,0.00022045563547311493,0.001190512872775012,-0.0010152222814007103,-0.0005199491373502018,0.0013671438349804213,-0.0003887094212901264,-0.0011152010986612878,0.0011341989245123956,0.00036498268825800454,-0.0013835243441990286,0.0005554146723408574,0.0010206194901172033,-0.0012387934928238416,-0.00020021665968386048,0.0013789242202030235,-0.0007180076884251345,-0.0009076822889600812,0.0013270370654889987,2.7879170267855555e-5,-0.0013528459304808236,0.0008739180408220478,0.0007775984917953167,-0.0013971497553622913,0.00014963105556950126,0.0013050952108605398,-0.0010206053128353485,-0.0006318618958132099,0.0014475710019363037,-0.0003297747878091963,-0.0012357915145639765,0.0011555962640975325,0.0004722369314745313,-0.0014769874957254422,0.0005099050490576404,0.0011453743213680624,-0.0012765219175862408,-0.00030074039124785017,0.0014843583038672249,-0.0006873021361319154,-0.0010346051369381586,0.0013811540608216898,0.00011961922101145157,-0.0014689367972884246,0.0008592104729925433,0.0009045650677983454,-0.0014674406520044049,6.867540325256134e-5,0.0014302890161991652,-0.0010228768309867152,-0.0007566479151387555,0.0015335396280128349,-0.00026151743704354134,-0.0013683081525123545,0.0011755894261525138,0.0005925487899744965,-0.0015778506242123604,0.00045613843994926466,0.0012832248745383815,-0.001314717383360894,-0.00041424831227983067,0.0015990441358393129,-0.0006496627848852304,-0.001175613270402968,0.0014377500436850833,0.0002239925168205131,-0.0015960876771315493,0.0008391451868269648,0.0010463922414414228,-0.0015423355848493956,-2.4268647682825248e-5,0.0015682685271050762,-0.0010216100961604531,-0.00089682223463965,0.0016263184250944632,-0.0001822229188619299,-0.0015152126895599401,0.0011940924696269744,0.0007284972632769551,-0.0016877748883841015,0.00039260032831306163,0.001436899739089401,-0.001353679405780134,-0.0005433322264946662,0.0017250466235562887,-0.0006038351318764142,-0.00133367327403637,0.0014975521123324327,0.0003435456007555665,-0.001736771291677795,0.00081279000549713,0.0012062467508895973,-0.0016230276600917146,-0.00013163763824145251,0.0017219100642948428,-0.00101625886571144,-0.001055704531872975,0.0017275999726321886,-8.963573167844645e-5,-0.0016797715101844425,0.0012110089059382536,0.0008834980377314484,-0.0018089795025767355,0.00031729304252168383,0.0016100314892168405,-0.0013938240446039886,-0.0006914369601852669,0.0018651310544589696,-0.0005481611603211011,-0.0015127487185683905,0.001561549250651372,0.0004816755524014695,-0.0018943092305612375,0.0007789125176643558,0.001388375728226459,-0.00171113519295785,-0.0002566940802807168,0.001895090999768784,-0.0010061052980523963,-0.0012377649788820238,0.0018396826483312034,1.927558152519472e-5,-0.001866404920126553,0.0012262261124555546,0.0010621699752255114,-0.001944486098320289,0.00022752185752014347,0.001807556583127426,-0.0014357346714945806,-0.0008632412706060296,0.002023075948247241,-0.0004803970362291537,-0.001718249891405408,0.0016311099243953107,0.0006430173241968965,-0.002073258812710258,0.0007358414560358085,0.0015986038309784506,-0.00180889711028355,-0.00040391023840991827,0.0020931553303056706,-0.0009901786349749832,-0.001449164453931996,0.001965755148947577,0.00014868647147221216,-0.0020812349963641344,0.0012396064864991434,0.0012709118468380034,-0.0020985037872636152,0.00011955731303421825,0.002036347535888577,-0.0014802422836416086,-0.001065261923589826,0.0022041699143329958,-0.0003974230321248504,-0.001957750379336125,0.0017081696903955366,0.0008340629479795417,-0.0022800324632093463,0.0006812443135512643,0.0018451318510395577,-0.001919487309381664,-0.0005795867604962659,0.0023236653300032733,-0.0009671236178624162,-0.0016986297334834783,0.0021103581690160213,0.0003045147547068961,-0.0023329777621587697,0.0012509729427486898,0.0015188449298456186,-0.0022770595549118475,-1.1918720415943296e-5,0.0023062516967374044,-0.0015285576469618195,-0.0013068500116493488,0.002416032579526081,-0.00029476325717711925,-0.002242175566487638,0.001795542883008963,0.0010641925074866318,-0.0025239308813735204,0.0006117555816293639,0.0021398741361190942,-0.002047542085281566,-0.0007928928619910753,0.0025976678506795447,-0.0009349782817713523,-0.0019989339832992884,0.002280166923792778,0.0004954370710155672,-0.0026344617922406752,0.0012600841012209052,0.001819424298168349,-0.0024890781036488014,-0.00017476407879320292,0.002631878458549123,-0.0015824990754146177,-0.0016019127413476626,0.002670036367036641,-0.00016575189468562404,-0.0025878704168812803,0.0018974660672278019,0.001347476173252693,-0.002818953038002398,0.0005223238430495113,0.002500812752963247,-0.0022000906716207525,-0.0010577061468329794,0.0029319394405921797,-0.0008907789395969425,-0.0023695346608832357,0.002485388841847612,0.0007347091416077469,-0.0030053545178221775,0.0012665895504637046,0.0021933465239831838,-0.00274833553419209,-0.0003811016092036691,0.0030358499820140007,-0.0016449077728799529,-0.0019720621544148742,0.0029839136141396757,0.0],"x":[-709.0895,-708.481626247505,-707.87375249501,-707.2658787425149,-706.65800499002,-706.050131237525,-705.4422574850299,-704.8343837325349,-704.22650998004,-703.6186362275449,-703.0107624750499,-702.4028887225548,-701.7950149700599,-701.1871412175649,-700.5792674650698,-699.9713937125748,-699.3635199600799,-698.7556462075848,-698.1477724550898,-697.5398987025948,-696.9320249500998,-696.3241511976048,-695.7162774451098,-695.1084036926147,-694.5005299401198,-693.8926561876248,-693.2847824351297,-692.6769086826347,-692.0690349301398,-691.4611611776447,-690.8532874251497,-690.2454136726546,-689.6375399201597,-689.0296661676647,-688.4217924151696,-687.8139186626746,-687.2060449101797,-686.5981711576846,-685.9902974051896,-685.3824236526946,-684.7745499001996,-684.1666761477046,-683.5588023952096,-682.9509286427145,-682.3430548902196,-681.7351811377246,-681.1273073852295,-680.5194336327345,-679.9115598802396,-679.3036861277445,-678.6958123752495,-678.0879386227545,-677.4800648702595,-676.8721911177645,-676.2643173652694,-675.6564436127744,-675.0485698602795,-674.4406961077844,-673.8328223552894,-673.2249486027944,-672.6170748502994,-672.0092010978044,-671.4013273453094,-670.7934535928143,-670.1855798403194,-669.5777060878244,-668.9698323353293,-668.3619585828343,-667.7540848303394,-667.1462110778443,-666.5383373253493,-665.9304635728543,-665.3225898203593,-664.7147160678643,-664.1068423153692,-663.4989685628742,-662.8910948103793,-662.2832210578842,-661.6753473053892,-661.0674735528942,-660.4595998003992,-659.8517260479042,-659.2438522954092,-658.6359785429141,-658.0281047904192,-657.4202310379242,-656.8123572854291,-656.2044835329341,-655.5966097804392,-654.9887360279441,-654.3808622754491,-653.772988522954,-653.1651147704591,-652.5572410179641,-651.949367265469,-651.341493512974,-650.7336197604791,-650.125746007984,-649.517872255489,-648.909998502994,-648.302124750499,-647.694250998004,-647.086377245509,-646.4785034930139,-645.870629740519,-645.262755988024,-644.6548822355289,-644.0470084830339,-643.439134730539,-642.8312609780439,-642.2233872255489,-641.6155134730539,-641.0076397205589,-640.3997659680639,-639.7918922155689,-639.1840184630738,-638.5761447105789,-637.9682709580838,-637.3603972055888,-636.7525234530938,-636.1446497005988,-635.5367759481038,-634.9289021956088,-634.3210284431137,-633.7131546906188,-633.1052809381238,-632.4974071856287,-631.8895334331337,-631.2816596806388,-630.6737859281437,-630.0659121756487,-629.4580384231537,-628.8501646706587,-628.2422909181637,-627.6344171656687,-627.0265434131736,-626.4186696606787,-625.8107959081836,-625.2029221556886,-624.5950484031936,-623.9871746506986,-623.3793008982036,-622.7714271457086,-622.1635533932135,-621.5556796407186,-620.9478058882236,-620.3399321357285,-619.7320583832335,-619.1241846307386,-618.5163108782435,-617.9084371257485,-617.3005633732535,-616.6926896207585,-616.0848158682635,-615.4769421157685,-614.8690683632734,-614.2611946107785,-613.6533208582835,-613.0454471057884,-612.4375733532934,-611.8296996007984,-611.2218258483034,-610.6139520958084,-610.0060783433133,-609.3982045908184,-608.7903308383234,-608.1824570858283,-607.5745833333333,-606.9667095808384,-606.3588358283433,-605.7509620758483,-605.1430883233533,-604.5352145708583,-603.9273408183633,-603.3194670658683,-602.7115933133732,-602.1037195608783,-601.4958458083833,-600.8879720558882,-600.2800983033932,-599.6722245508982,-599.0643507984032,-598.4564770459082,-597.8486032934131,-597.2407295409182,-596.6328557884232,-596.0249820359281,-595.4171082834331,-594.8092345309382,-594.2013607784431,-593.5934870259481,-592.985613273453,-592.3777395209581,-591.7698657684631,-591.161992015968,-590.554118263473,-589.9462445109781,-589.338370758483,-588.730497005988,-588.122623253493,-587.514749500998,-586.906875748503,-586.299001996008,-585.6911282435129,-585.083254491018,-584.475380738523,-583.8675069860279,-583.2596332335329,-582.651759481038,-582.0438857285429,-581.4360119760479,-580.8281382235529,-580.2202644710579,-579.6123907185629,-579.0045169660679,-578.3966432135728,-577.7887694610779,-577.1808957085829,-576.5730219560878,-575.9651482035928,-575.3572744510979,-574.7494006986028,-574.1415269461078,-573.5336531936127,-572.9257794411178,-572.3179056886228,-571.7100319361277,-571.1021581836327,-570.4942844311378,-569.8864106786427,-569.2785369261477,-568.6706631736527,-568.0627894211577,-567.4549156686627,-566.8470419161677,-566.2391681636726,-565.6312944111777,-565.0234206586827,-564.4155469061876,-563.8076731536926,-563.1997994011977,-562.5919256487026,-561.9840518962076,-561.3761781437125,-560.7683043912176,-560.1604306387226,-559.5525568862275,-558.9446831337325,-558.3368093812376,-557.7289356287425,-557.1210618762475,-556.5131881237525,-555.9053143712575,-555.2974406187625,-554.6895668662675,-554.0816931137724,-553.4738193612775,-552.8659456087825,-552.2580718562874,-551.6501981037924,-551.0423243512975,-550.4344505988024,-549.8265768463074,-549.2187030938123,-548.6108293413174,-548.0029555888224,-547.3950818363273,-546.7872080838323,-546.1793343313374,-545.5714605788423,-544.9635868263473,-544.3557130738523,-543.7478393213573,-543.1399655688623,-542.5320918163673,-541.9242180638722,-541.3163443113773,-540.7084705588823,-540.1005968063872,-539.4927230538922,-538.8848493013973,-538.2769755489022,-537.6691017964072,-537.0612280439121,-536.4533542914172,-535.8454805389222,-535.2376067864271,-534.6297330339321,-534.0218592814372,-533.4139855289421,-532.8061117764471,-532.1982380239521,-531.5903642714571,-530.9824905189621,-530.374616766467,-529.766743013972,-529.1588692614771,-528.550995508982,-527.943121756487,-527.335248003992,-526.727374251497,-526.119500499002,-525.511626746507,-524.9037529940119,-524.295879241517,-523.688005489022,-523.0801317365269,-522.4722579840319,-521.864384231537,-521.2565104790419,-520.6486367265469,-520.0407629740519,-519.4328892215569,-518.8250154690619,-518.2171417165669,-517.6092679640718,-517.0013942115769,-516.3935204590819,-515.7856467065868,-515.1777729540918,-514.5698992015969,-513.9620254491018,-513.3541516966068,-512.7462779441117,-512.1384041916168,-511.5305304391218,-510.92265668662674,-510.31478293413176,-509.7069091816367,-509.09903542914174,-508.4911616766467,-507.8832879241517,-507.2754141716567,-506.6675404191617,-506.05966666666666,-505.4517929141717,-504.84391916167664,-504.23604540918166,-503.6281716566866,-503.02029790419164,-502.4124241516966,-501.8045503992016,-501.1966766467066,-500.5888028942116,-499.98092914171656,-499.3730553892216,-498.76518163672654,-498.15730788423156,-497.5494341317365,-496.94156037924154,-496.3336866267465,-495.7258128742515,-495.1179391217565,-494.5100653692615,-493.90219161676646,-493.2943178642715,-492.68644411177644,-492.07857035928146,-491.4706966067864,-490.86282285429144,-490.2549491017964,-489.6470753493014,-489.0392015968064,-488.4313278443114,-487.82345409181636,-487.2155803393214,-486.60770658682634,-485.99983283433136,-485.3919590818363,-484.78408532934134,-484.1762115768463,-483.5683378243513,-482.9604640718563,-482.3525903193613,-481.74471656686626,-481.1368428143713,-480.52896906187624,-479.92109530938126,-479.3132215568862,-478.70534780439124,-478.0974740518962,-477.4896002994012,-476.8817265469062,-476.2738527944112,-475.66597904191616,-475.0581052894212,-474.45023153692614,-473.84235778443116,-473.2344840319361,-472.62661027944114,-472.0187365269461,-471.4108627744511,-470.8029890219561,-470.1951152694611,-469.58724151696606,-468.9793677644711,-468.37149401197604,-467.76362025948106,-467.155746506986,-466.54787275449104,-465.939999001996,-465.332125249501,-464.724251497006,-464.116377744511,-463.50850399201596,-462.900630239521,-462.29275648702594,-461.68488273453096,-461.0770089820359,-460.46913522954094,-459.8612614770459,-459.2533877245509,-458.6455139720559,-458.0376402195609,-457.42976646706586,-456.8218927145709,-456.21401896207584,-455.60614520958086,-454.9982714570858,-454.39039770459084,-453.7825239520958,-453.1746501996008,-452.5667764471058,-451.9589026946108,-451.35102894211576,-450.7431551896208,-450.13528143712574,-449.52740768463076,-448.9195339321357,-448.31166017964074,-447.7037864271457,-447.0959126746507,-446.4880389221557,-445.8801651696607,-445.27229141716566,-444.6644176646707,-444.05654391217564,-443.44867015968066,-442.8407964071856,-442.23292265469064,-441.6250489021956,-441.0171751497006,-440.4093013972056,-439.8014276447106,-439.19355389221556,-438.5856801397206,-437.97780638722554,-437.36993263473056,-436.7620588822355,-436.15418512974054,-435.5463113772455,-434.9384376247505,-434.3305638722555,-433.7226901197605,-433.11481636726546,-432.5069426147705,-431.89906886227544,-431.29119510978046,-430.6833213572854,-430.07544760479044,-429.4675738522954,-428.8597000998004,-428.2518263473054,-427.6439525948104,-427.03607884231536,-426.4282050898204,-425.82033133732534,-425.21245758483036,-424.6045838323353,-423.99671007984034,-423.3888363273453,-422.7809625748503,-422.1730888223553,-421.5652150698603,-420.95734131736526,-420.3494675648703,-419.74159381237524,-419.13372005988026,-418.5258463073852,-417.91797255489024,-417.3100988023952,-416.7022250499002,-416.0943512974052,-415.4864775449102,-414.87860379241516,-414.2707300399202,-413.66285628742514,-413.05498253493016,-412.4471087824351,-411.83923502994014,-411.2313612774451,-410.6234875249501,-410.0156137724551,-409.4077400199601,-408.79986626746506,-408.1919925149701,-407.58411876247504,-406.97624500998006,-406.368371257485,-405.76049750499004,-405.152623752495,-404.54475,-403.936876247505,-403.32900249501,-402.72112874251496,-402.11325499002,-401.50538123752494,-400.89750748502996,-400.2896337325349,-399.68175998003994,-399.0738862275449,-398.4660124750499,-397.8581387225549,-397.2502649700599,-396.64239121756486,-396.0345174650699,-395.42664371257484,-394.81876996007986,-394.2108962075848,-393.60302245508984,-392.9951487025948,-392.3872749500998,-391.7794011976048,-391.1715274451098,-390.56365369261476,-389.9557799401198,-389.34790618762474,-388.74003243512976,-388.1321586826347,-387.52428493013974,-386.9164111776447,-386.3085374251497,-385.7006636726547,-385.0927899201597,-384.48491616766466,-383.8770424151697,-383.26916866267464,-382.66129491017966,-382.0534211576846,-381.44554740518964,-380.8376736526946,-380.2297999001996,-379.6219261477046,-379.0140523952096,-378.40617864271456,-377.7983048902196,-377.19043113772454,-376.58255738522956,-375.9746836327345,-375.36680988023954,-374.7589361277445,-374.1510623752495,-373.5431886227545,-372.9353148702595,-372.32744111776447,-371.7195673652695,-371.11169361277445,-370.50381986027946,-369.8959461077844,-369.28807235528944,-368.6801986027944,-368.0723248502994,-367.4644510978044,-366.8565773453094,-366.24870359281437,-365.6408298403194,-365.03295608782435,-364.42508233532936,-363.8172085828343,-363.20933483033934,-362.6014610778443,-361.9935873253493,-361.3857135728543,-360.7778398203593,-360.16996606786427,-359.5620923153693,-358.95421856287425,-358.34634481037926,-357.7384710578842,-357.13059730538924,-356.5227235528942,-355.9148498003992,-355.3069760479042,-354.6991022954092,-354.09122854291417,-353.4833547904192,-352.87548103792415,-352.26760728542916,-351.6597335329341,-351.05185978043914,-350.4439860279441,-349.8361122754491,-349.2282385229541,-348.6203647704591,-348.01249101796407,-347.4046172654691,-346.79674351297405,-346.18886976047907,-345.580996007984,-344.97312225548905,-344.365248502994,-343.757374750499,-343.149500998004,-342.541627245509,-341.93375349301397,-341.325879740519,-340.71800598802395,-340.11013223552897,-339.5022584830339,-338.89438473053895,-338.2865109780439,-337.6786372255489,-337.0707634730539,-336.4628897205589,-335.85501596806387,-335.2471422155689,-334.63926846307385,-334.03139471057887,-333.4235209580838,-332.81564720558885,-332.2077734530938,-331.5998997005988,-330.9920259481038,-330.3841521956088,-329.77627844311377,-329.1684046906188,-328.56053093812375,-327.95265718562877,-327.3447834331337,-326.73690968063875,-326.1290359281437,-325.5211621756487,-324.9132884231537,-324.3054146706587,-323.69754091816367,-323.0896671656687,-322.48179341317365,-321.87391966067867,-321.2660459081836,-320.65817215568865,-320.0502984031936,-319.4424246506986,-318.8345508982036,-318.2266771457086,-317.61880339321357,-317.0109296407186,-316.40305588822355,-315.79518213572857,-315.1873083832335,-314.57943463073855,-313.9715608782435,-313.3636871257485,-312.7558133732535,-312.1479396207585,-311.54006586826347,-310.9321921157685,-310.32431836327345,-309.71644461077847,-309.10857085828343,-308.50069710578845,-307.8928233532934,-307.2849496007984,-306.6770758483034,-306.0692020958084,-305.46132834331337,-304.8534545908184,-304.24558083832335,-303.63770708582837,-303.02983333333333,-302.42195958083835,-301.8140858283433,-301.2062120758483,-300.5983383233533,-299.9904645708583,-299.38259081836327,-298.7747170658683,-298.16684331337325,-297.55896956087827,-296.95109580838323,-296.34322205588825,-295.7353483033932,-295.1274745508982,-294.5196007984032,-293.9117270459082,-293.30385329341317,-292.6959795409182,-292.08810578842315,-291.48023203592817,-290.87235828343313,-290.26448453093815,-289.6566107784431,-289.0487370259481,-288.4408632734531,-287.8329895209581,-287.22511576846307,-286.6172420159681,-286.00936826347305,-285.40149451097807,-284.79362075848303,-284.18574700598805,-283.577873253493,-282.96999950099803,-282.362125748503,-281.754251996008,-281.14637824351297,-280.538504491018,-279.93063073852295,-279.32275698602797,-278.71488323353293,-278.10700948103795,-277.4991357285429,-276.89126197604793,-276.2833882235529,-275.6755144710579,-275.06764071856287,-274.4597669660679,-273.85189321357285,-273.24401946107787,-272.63614570858283,-272.02827195608785,-271.4203982035928,-270.81252445109783,-270.2046506986028,-269.5967769461078,-268.98890319361277,-268.3810294411178,-267.77315568862275,-267.16528193612777,-266.55740818363273,-265.94953443113775,-265.3416606786427,-264.73378692614773,-264.1259131736527,-263.5180394211577,-262.91016566866267,-262.3022919161677,-261.69441816367265,-261.08654441117767,-260.47867065868263,-259.87079690618765,-259.2629231536926,-258.65504940119763,-258.0471756487026,-257.4393018962076,-256.83142814371257,-256.2235543912176,-255.61568063872255,-255.00780688622754,-254.39993313373253,-253.79205938123752,-253.1841856287425,-252.5763118762475,-251.9684381237525,-251.36056437125748,-250.75269061876247,-250.14481686626746,-249.53694311377245,-248.92906936127744,-248.32119560878243,-247.71332185628742,-247.1054481037924,-246.4975743512974,-245.8897005988024,-245.28182684630738,-244.67395309381237,-244.06607934131736,-243.45820558882235,-242.85033183632734,-242.24245808383233,-241.63458433133732,-241.0267105788423,-240.4188368263473,-239.8109630738523,-239.20308932135728,-238.59521556886227,-237.98734181636726,-237.37946806387225,-236.77159431137724,-236.16372055888223,-235.55584680638722,-234.9479730538922,-234.3400993013972,-233.7322255489022,-233.12435179640718,-232.51647804391217,-231.90860429141716,-231.30073053892215,-230.69285678642714,-230.08498303393213,-229.47710928143712,-228.8692355289421,-228.2613617764471,-227.6534880239521,-227.04561427145708,-226.43774051896207,-225.82986676646706,-225.22199301397205,-224.61411926147704,-224.00624550898203,-223.39837175648702,-222.790498003992,-222.182624251497,-221.574750499002,-220.96687674650698,-220.35900299401197,-219.75112924151696,-219.14325548902195,-218.53538173652694,-217.92750798403193,-217.31963423153692,-216.7117604790419,-216.1038867265469,-215.4960129740519,-214.88813922155688,-214.28026546906187,-213.67239171656686,-213.06451796407185,-212.45664421157684,-211.84877045908183,-211.24089670658682,-210.6330229540918,-210.0251492015968,-209.4172754491018,-208.80940169660678,-208.20152794411177,-207.59365419161676,-206.98578043912175,-206.37790668662674,-205.77003293413173,-205.16215918163672,-204.55428542914171,-203.9464116766467,-203.3385379241517,-202.73066417165668,-202.12279041916167,-201.51491666666666,-200.90704291417165,-200.29916916167664,-199.69129540918163,-199.08342165668662,-198.47554790419161,-197.8676741516966,-197.2598003992016,-196.65192664670658,-196.04405289421157,-195.43617914171656,-194.82830538922155,-194.22043163672654,-193.61255788423153,-193.00468413173652,-192.39681037924151,-191.7889366267465,-191.1810628742515,-190.57318912175649,-189.96531536926148,-189.35744161676647,-188.74956786427146,-188.14169411177645,-187.53382035928144,-186.92594660678643,-186.31807285429142,-185.7101991017964,-185.1023253493014,-184.49445159680639,-183.88657784431138,-183.27870409181637,-182.67083033932136,-182.06295658682635,-181.45508283433134,-180.84720908183633,-180.23933532934132,-179.6314615768463,-179.0235878243513,-178.41571407185629,-177.80784031936128,-177.19996656686627,-176.59209281437126,-175.98421906187625,-175.37634530938124,-174.76847155688623,-174.16059780439122,-173.5527240518962,-172.9448502994012,-172.3369765469062,-171.72910279441118,-171.12122904191617,-170.51335528942116,-169.90548153692615,-169.29760778443114,-168.68973403193613,-168.08186027944112,-167.4739865269461,-166.8661127744511,-166.2582390219561,-165.65036526946108,-165.04249151696607,-164.43461776447106,-163.82674401197605,-163.21887025948104,-162.61099650698603,-162.00312275449102,-161.395249001996,-160.787375249501,-160.179501497006,-159.57162774451098,-158.96375399201597,-158.35588023952096,-157.74800648702595,-157.14013273453094,-156.53225898203593,-155.92438522954092,-155.3165114770459,-154.7086377245509,-154.1007639720559,-153.49289021956088,-152.88501646706587,-152.27714271457086,-151.66926896207585,-151.06139520958084,-150.45352145708583,-149.84564770459082,-149.2377739520958,-148.6299001996008,-148.0220264471058,-147.41415269461078,-146.80627894211577,-146.19840518962076,-145.59053143712575,-144.98265768463074,-144.37478393213573,-143.76691017964072,-143.1590364271457,-142.5511626746507,-141.9432889221557,-141.33541516966068,-140.72754141716567,-140.11966766467066,-139.51179391217565,-138.90392015968064,-138.29604640718563,-137.68817265469062,-137.0802989021956,-136.4724251497006,-135.8645513972056,-135.25667764471058,-134.64880389221557,-134.04093013972056,-133.43305638722555,-132.82518263473054,-132.21730888223553,-131.60943512974052,-131.0015613772455,-130.3936876247505,-129.7858138722555,-129.17794011976048,-128.57006636726547,-127.96219261477046,-127.35431886227545,-126.74644510978044,-126.13857135728543,-125.53069760479042,-124.92282385229541,-124.3149500998004,-123.70707634730539,-123.09920259481038,-122.49132884231537,-121.88345508982036,-121.27558133732535,-120.66770758483034,-120.05983383233533,-119.45196007984032,-118.84408632734531,-118.2362125748503,-117.62833882235529,-117.02046506986028,-116.41259131736527,-115.80471756487026,-115.19684381237525,-114.58897005988024,-113.98109630738523,-113.37322255489022,-112.76534880239521,-112.1574750499002,-111.54960129740519,-110.94172754491018,-110.33385379241517,-109.72598003992016,-109.11810628742515,-108.51023253493014,-107.90235878243513,-107.29448502994012,-106.68661127744511,-106.0787375249501,-105.47086377245509,-104.86299001996008,-104.25511626746507,-103.64724251497006,-103.03936876247505,-102.43149500998004,-101.82362125748503,-101.21574750499002,-100.60787375249501,-100.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json new file mode 100644 index 000000000000..e69de29bb2d1 From ac9e19c383325bef260cb593b74bb7fc9801ee9f Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Mon, 18 Nov 2024 14:21:22 +0600 Subject: [PATCH 31/63] added json --- .../base/special/cosc/test/fixtures/julia/large_positive.json | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json index e69de29bb2d1..cd64c4e10d31 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json @@ -0,0 +1 @@ +{"expected":[0.0,0.0029792754636741255,-0.001993216148375205,-0.0016100602087220858,0.0030467579370803085,-0.0004475613063522405,-0.0027114687669971536,0.002256697938508038,0.001169853835441462,-0.003013484803006078,0.0008602463935379906,0.0024033641352912273,-0.0024589469853749492,-0.0007305071732594921,0.0029202677242617043,-0.001232245763235776,-0.0020630506662764106,0.002599568947293905,0.0003002891378391285,-0.0027721937386625027,0.0015587432547885677,0.0016987561953284002,-0.002679248190034568,0.00011310712621759552,0.0025750406012091088,-0.0018359517957342686,-0.0013187136042428897,0.002699694697245789,-0.0005026624998417884,-0.002335158512118168,0.0020611329402736495,0.0009310297828684405,-0.0026635765355469626,0.0008621177993408531,0.002059345668370648,-0.0022325999165822385,-0.0005435594627216438,0.0025744390874599685,-0.0011860459515960276,-0.0017547197778943963,0.0023497042374687476,0.00016378601310587667,-0.0024366125098491094,0.0014699093332958442,0.0014285877261119263,-0.002412806247820519,0.00020128887099304346,0.0022551090841772714,-0.0017101014708617093,-0.0010883155933760192,0.0024232302831901963,-0.0005452448511579276,-0.0020355122959738597,0.0019039726009748776,0.0007412011897165366,-0.002383205393235794,0.0008623304776511447,0.0017838596130469971,-0.0020498388957545513,-0.00039435120183611106,0.002295792838033255,-0.0011475372916105646,-0.0015065210241819245,0.0021469754570506185,5.456493851913547e-5,-0.002164801791239546,0.0013966594764518775,0.0012100754518941876,-0.002195593476313569,0.00027177348279554736,0.0019946948787267463,-0.0016063383102249656,-0.0009011871643554247,0.002196802235458256,-0.0005787928403763429,-0.0017904853420974782,0.001774090952121163,0.0005864842835976115,-0.002152556885593532,0.0008612209382024031,0.0015576277414072839,-0.0018983233815596807,-0.00027244142085622487,0.0020655931802733515,-0.0011144579225742593,-0.0013019041990135155,0.0019783275922151825,-3.4731632639015546e-5,-0.0019393505542376792,0.0013346357917388668,0.0010293082359147322,-0.0020142634209648707,0.0003291933674448311,0.001777885124108405,-0.0015186633648187752,-0.0007459282630555287,0.0020071256581682658,-0.0006055645453446646,-0.0015857743413633374,0.0016642562457213222,0.0004578327633195453,-0.0019586973363281885,0.000859011285775657,0.0013680151478842144,-0.0017699515915522625,-0.00017095913643722915,0.0018714903247300998,-0.0010853160360165934,-0.0011299175688353593,0.0018351077683137556,-0.0001089919194565455,-0.0017486745642397857,0.0012809354482263007,0.0008769957255988133,-0.00185988924435072,0.0003766547470212589,0.0015939974556541938,-0.0014430444369953202,-0.0006148582626531987,0.0018452373293098006,-0.0006270882079658821,-0.0014116950639802772,0.0015695659510999071,0.0003491001569860977,-0.0017928276087309078,0.0008558549059122084,0.0012063969174792842,-0.0016591862577157476,-8.519781787662621e-5,0.0017050151475738223,-0.0010590889692026516,-0.0009830262625969562,0.0017113558015323948,-0.0001715907096898753,-0.0015847687361691017,0.0012335514371201778,0.0007466976829867576,-0.0017262759601549657,0.0004163187508799807,0.0014355956259224647,-0.0013766725350074995,-0.0005026140023646952,0.0017048722661948516,-0.0006444356840285458,-0.0012614583467721425,0.0014865803750104506,0.0002559643672092497,-0.0016487549010891795,0.000851861949221547,0.0010666853116508613,-0.0015621158748773047,-1.1825347282561193e-5,0.001560167481826749,-0.001035053233220367,-0.0008558769933991929,0.0016028339426194809,-0.00022493319883552944,-0.0014419253556700424,0.0011910529016600497,0.0006338095057089341,-0.0016089912251755897,0.00044973586739035734,0.0012973447863833159,-0.001317531983073542,-0.0004053374313823742,0.0015815209599554512,-0.0006583815857509619,-0.0011301645556565502,0.0014128162518540685,0.00017529771875798622,-0.0015219956949537859,0.0008471143188675415,0.0009444616131660376,-0.0014759002041407948,5.1583588511459594e-5,0.0014325788520096526,-0.0010126834985609416,-0.0007445624864418464,0.0015064479671521632,-0.00027078011051604226,-0.0013159662951294654,0.0011523932806956376,0.0005349522064454682,-0.0015047814241174488,0.0004780478181602545,0.0011753192284204989,-0.0012641399606687952,-0.00032018251615178225,0.001471856069244756,-0.0006695002314206082,-0.0010141898834340082,0.0013464371116390563,0.00010478110776001028,-0.0014092253259174019,0.0008416748798673108,0.000836441561475848,-0.0013984282480241444,0.00010683641967421802,0.0013189942626506837,-0.0009915899648546022,-0.0006461646711721043,0.0014198870545036916,-0.00031045027490115065,-0.0012037638217580159,0.0011167903677009976,0.0004475904443447207,-0.00141120545362812,0.0005021143672876432,0.001066566832106961,-0.0012153823655971679,-0.0002450040237373813,0.0013733700088620873,-0.0006782270228454514,-0.0009107972072172862,0.0012860566426252343,4.265859462657374e-5,-0.001307927370417672,0.0008355933308266153,0.000740133831226824,-0.0013280994127812483,0.0001553078202529342,0.0012169396647977693,-0.0009714781101762534,-0.0005584607064549555,0.0013413917008813243,-0.0003449513652802219,-0.0011029309021845033,0.0010836486830044251,0.00036978497654394023,-0.001326397051389375,0.0005225957287020922,0.0009688256257126555,-0.0011704068520604972,-0.00017815444816831008,0.0012841381503688836,-0.0006848985992559372,-0.0008178811507843829,0.001230609696813746,-1.2423787619437931e-5,-0.0012161630479980412,0.0008289100675411926,0.0006536148389591469,-0.001263679023919916,0.00019806208530200685,0.0011245018547612787,-0.0009521220130784322,-0.0004797279181821006,0.001269599528333046,-0.00037506685752077294,-0.0010116149502696493,0.0010525077092868893,0.00030002739837380727,-0.0012489059369248012,0.0005400077090381635,0.0008803338868186255,-0.0011285510812608377,-0.00011834763844172199,0.0012026596131698981,-0.0006897798620140684,-0.000733796287886776,0.0011792652611956813,-6.152690207682556e-5,-0.0011324152954415695,0.0008216587952091083,0.0005753761329460774,-0.0012042002994845816,0.00023593624537371173,0.001040178819226027,-0.0009333461904117788,-0.00040861088286385554,0.0012034401017523581,-0.00040141540975818465,-0.0009283568319588484,0.0010230064645726257,0.00023712693406600008,-0.0011775888693621435,0.0005547595591086139,0.0007996996454726447,-0.0010892933620438845,-6.456489428787353e-5,0.001127747519328269,-0.0006930826186210775,-0.0006572384829493584,0.0011313662840414535,-0.00010549385146576817,-0.001055480745416828,0.0008138683366718615,0.0005042184630164543,-0.001148896237965788,0.0002695978682950941,0.0009627755521346809,-0.0009150129383983017,-0.00034402872196560006,0.0011420614935392871,-0.00042449235434413373,-0.0008519922442678512,0.0009948586961383676,0.0001801311053011166,-0.0011115332319187043,0.0005671805448207877,0.0007258089840098178,-0.0010522179314775828,-1.598886179053775e-5,0.001058451664254,-0.0006949787281278473,-0.0005871611333496286,0.0010863871595139744,-0.00014500325271483573,-0.0009843932740455992,0.0008055639101085816,0.0004391766795879883,-0.0010971512841817968,0.0002995861072688289,0.0008913299998454116,-0.0008970133237395981,-0.00028510909545016955,0.001084777950195067,-0.0004446992875638237,-0.0007815813184468871,0.0009678351559105994,0.0001282690116321463,-0.00105000234858789,0.0005775389732995199,0.0006577603112098393,-0.0010169900466332046,2.804392134864751e-5,0.000994002955301013,-0.0006956095502944873,-0.0005227148955044816,0.0010439031054046252,-0.00018060763299204187,-0.0009183688523777786,0.0007967680482065037,0.00037946547785186046,-0.0010484663807433345,0.00032634139915522755,0.0008250594359597722,-0.0008792606519864788,-0.00023114033410306665,0.0010310319083547414,-0.00046236555803659746,-0.0007163574516293629,0.0009417507046488958,8.091004437302698e-5,-0.0009923956473050148,0.0005860560598922003,0.0005948164133435348,-0.0009833377971062796,6.807769361623512e-5,0.0009337727884685199,-0.0006950928558250687,-0.00046320355528669415,0.0010035677240717946,-0.00021276157914984343,-0.0008567650820811999,0.0007875012698686575,0.00032443953495499685,-0.0010024332697186015,0.00035022731246808173,0.000763320978476752,-0.000861685652113379,-0.0001815361496705193,0.0009803659692553827,-0.00047776412797277305,-0.0006556895053432837,0.0009164547755715609,3.753334703287576e-5,-0.0009382191692859657,0.0005929161968150506,0.0005363689138422088,-0.0009510386124335929,0.00010456319745428592,0.0008772428773799706,-0.000693527958549,-0.0004080512128330798,0.0009650963028186391,-0.0002418426946570464,-0.0007990510465291421,0.0007777825778247056,0.00027356377386094076,-0.0009587153075089482,0.0003715468634264869,0.0007055820802231602,-0.0008442328721830423,-0.00013580922857946265,0.000932401911949231,-0.0004911234539505824,-0.0005990534662092553,0.0008918242177439423,-2.295105511994674e-6,-0.0008870634185623318,0.0005982746668962828,0.00048191154944462723,-0.0009199091076241082,0.00013787704566828063,0.0008239825249146696,-0.0006909995804918932,-0.00035677753557261855,0.0009282532098543924,-0.00026816742018544913,-0.0007447845334216765,0.0007676298316355365,0.00022639087416510402,-0.0009170329439358485,0.0003905548675621323,0.0006513981713603462,-0.0008268579440140079,-9.355120515582686e-5,0.0008868247645589673,-0.0005026365052228273,-0.0005460109155328666,0.0008677578529841229,-3.893993799724279e-5,-0.0008385865040995688,0.0006022635137712523,0.00043101981195984006,-0.0008897973403584664,0.00016833648869781686,0.0007736312791523626,-0.0006875807995544392,-0.00030897885584466907,0.0008928422589142646,-0.00029200312855550103,-0.0006935946076528275,0.000757060030097228,0.0001825440495535346,-0.0008771525930519789,0.0004074674064838694,0.0006003955094363684,-0.0008095254808846105,-5.441728576754712e-5,0.0008433705652588901,-0.000512467692495063,-0.00049619247208885,0.0008441722849949306,-7.270979097830835e-5,-0.0007925011546825039,0.0006049960621591469,0.00038333525372570305,-0.0008605768360485035,0.00019621080824775135,0.0007258855411615938,-0.000683335323367571,-0.00026431356337556074,0.0008586992565855853,-0.00031357747860962377,-0.0006451681227017707,0.0007460895268224608,0.00014170370684818436,-0.0008388780050655434,0.0004224691659374896,0.000552257874102999,-0.0007922074427854336,-1.8114310692704403e-5,0.0008018168519798746,-0.0005207582504027664,-0.00044928491706307624,0.0008209986360896753,-0.000103867761086333,-0.0007485646060062899,0.0006065704363216131,0.0003385532557767146,-0.0008321419261501659,0.00022173020322475685,0.0006804881117866564,-0.0006783192616553134,-0.00022249069540764555,0.0008256861755300592,-0.00033308572600284774,-0.0005992391691076235,0.000734734195877897,0.00010359700283760044,-0.0008020435063789516,0.0004357191829384458,0.0005067161366012223,-0.0007748818513753147,1.5608610764412367e-5,0.0007619751956391498,-0.0005276304612637873,-0.0004050210794925213,0.0007981799796142985,-0.00013263960786804918,-0.0007065706443437474,0.0006070723258360485,0.00029641339869564,-0.000804404073987393,0.0002450927888467234,0.0006372199508023376,-0.000672582520821278,-0.00018326093638496797,0.0007936865534211969,-0.00035069649286572843,-0.0005555807394208909,0.0007230095596378409,6.798959014752772e-5,-0.0007665086514537082,0.0004473553898621326,0.00046354000404795384,-0.0007575317695528252,4.6967516514424486e-5,0.0007236852815396025,-0.000533191000467803,-0.00036317181512094716,0.0007756693001354563,-0.00015922026525120496,-0.0006663432879538362,0.0006065771794149465,0.0002566918119051607,-0.0007772889515250134,0.0002664701600758878,0.0005958936201434798,-0.0006661699107614005,-0.00014640945356297867,0.0007626018261641945,-0.0003665563620951521,-0.0005139980842707544,0.0007109308877290952,3.467903485830333e-5,-0.0007321539532975986,0.0004574982388993845,0.00042253142682514676,-0.000740144483408414,7.614951639379714e-5,0.0006868101762318708,-0.000537533608898265,-0.0003235395897103111,0.0007534278582400403,-0.00018377905244283162,-0.0006277317253268845,0.0006051519595262611,0.0002191950426393928,-0.0007507340931503852,0.0002860118512883509,0.0005563480223527879,-0.000659122030186195,-0.00011175014588947485,0.0007323483805615144,-0.0003807935660515887,-0.00047432337186101216,0.0006985132736222186,3.4895237608323725e-6,-0.0006988774463240106,0.0004662536164453213,0.0003835192905163019,-0.0007227108405003029,0.00010331756384225403,0.0006512325111192178,-0.0005407412446469809,-0.00028595330418038176,0.0007314238685739574,-0.00020646387733626662,-0.0005906062273746366,0.0006028565564691299,0.00018375510353683277,-0.0007246869970963069,0.00030384893916197986,0.0005184441447546039,-0.0006514759798317626,-7.91209911894204e-5,0.000702855166257393,-0.00039352097088628593,-0.0004364113615902343,0.0006857716937711265,-2.5732424172785848e-5,-0.0006665918975652137,0.00047371520410027746,0.0003463551092431759,-0.0007052247099926039,0.00012861432798061466,0.0006168513815313028,-0.0005428878281169923,-0.0002502640897213281,0.0007096314225915304,-0.00022740465235545184,-0.0005548548211942609,0.0005997449359989511,0.00015022544259397512,-0.0006991035772602435,0.0003200969745387858,0.0004820615915422394,-0.0006432659407289464,-4.838025447180998e-5,0.0006740617462969756,-0.00040483850817512625,-0.0004001358736453262,0.0006727210530003506,-5.3121457508109226e-5,-0.0006352225273035273,0.0004799664046415104,0.00031090950643144295,-0.0006876825386062542,0.00015216535776238198,0.0005835798089758065,-0.0005440396668908958,-0.00021634186700222462,0.0006880296041016052,-0.0002467160894219357,-0.0005203805643788438,0.0005958660767162902,0.0001184776410004798,-0.0006739468915963454,0.00033485838434152426,0.0004470957382812631,-0.0006345236457930259,-1.9403376985043196e-5,0.0006459166945081157,-0.0004148351692929124,-0.0003653868884735699,0.0006593762189651974,-7.879626740366248e-5,-0.0006047051332135077,0.0004850819232253814,0.00027706931976321966,-0.0006700829825072534,0.00017408168455675647,0.0005513426502482998,-0.0005442566263671647,-0.00018407251209565957,0.0006666017579147497,-0.00026450000157517454,-0.0004870992966391657,0.0005912647402593221,8.839868990362672e-5,-0.0006491860905180519,0.00034822445169613124,0.0004134553819262464,-0.0006252787664154937,7.919592394691378e-6,0.0006183762692389784,-0.0004235906511910742,-0.0003320681485286113,0.000645752047858201,-0.00010286196420599278,-0.00057498453655664,0.0004891290732801709,0.00024473520466680905,-0.0006524265998304834,0.0001944619759003529,0.0005200748637641333,-0.0005435930970541319,-0.00015335550775557317,0.0006453348809720156,-0.0002808472096629886,-0.00045493777359500325,0.0005859821075480117,5.98887310194043e-5,-0.0006247955416009731,0.0003602769578742635,0.00038106078819870716,-0.0006155592308406221,3.368613057811362e-5,0.0005914033088972725,-0.00043117672224957126,-0.00030009516341714327,0.0006318634030530909,-0.0001254120534432102,-0.0005460132872524853,0.0004921688609832573,0.00021381963881200378,-0.000634715591963591,0.00021339432798943902,0.0004897200634720162,-0.0005420987980762779,-0.00012410198567886838,0.0006242191121436688,-0.0002958391306838252,-0.0004238321086904548,0.0005800563069680723,3.285917145533284e-5,-0.0006007540965328736,0.00037108955123159326,0.00034984205980751875,-0.0006053914874178866,5.798302206819674e-5,0.0005649663067159265,-0.00043765836182202146,-0.00026939354123584644,0.0006177251680100249,-0.00014653008769467644,-0.0005177505784385826,0.0004942568904750718,0.00018424525132169483,-0.0006169535843014684,0.00023095776546447428,0.0004602293058172914,-0.0005398194478824327,-9.623308581428357e-5,0.0006032473020385624,-0.00030954910782780593,-0.00039372646515637555,0.0005735228548118898,7.231102401405132e-6,-0.0005770444735818669,0.00038072889432824627,0.00031973776539783366,-0.0005948007230233516,8.088785485874259e-5,0.0005390386312734718,-0.0004430947156519983,-0.00023989758534415784,0.0006033522544898022,-0.00016629105454584914,-0.0004901613316301605,0.0004954441230201088,0.0001559434165764097,-0.0005991454391533695,0.0002472235025410301,0.00043156006674800447,-0.0005367973266106636,-6.967857435765748e-5,0.0005824146480964002,-0.0003220435296369405,-0.0003645719521476765,0.0005664150240347973,-1.706603391939056e-5,-0.0005536527344507622,0.00038925562971670356,0.0002906937816749301,-0.0005838110447998862,0.0001024702824456779,0.0005135978662649832,-0.00044753990057073317,-0.00021154910844156714,0.0005887596069104288,-0.00018476254836899197,-0.0004632154216395823,0.0004957775164635517,0.00012885306490677137,-0.0005812970949980481,0.0002622560084092722,0.00040367537460838504,-0.0005330717495396091,-4.437567406310273e-5,0.0005617183832606941,-0.0003333827759961598,-0.0003363256885695814,0.0005587641541063122,-4.009557329180576e-5,-0.0005305678387019818,0.0003967251966390485,0.00026266231082662907,-0.0005724456317125719,0.00012279309340131812,0.0004886252484018912,-0.0004510436851235055,-0.000184296425556483,0.0005739622035160234,-0.00020200576402745193,-0.0004368870166414138,0.0004953005660244287,0.00010291967207456578,-0.000563415427453541,0.000276113911204274,0.00037654307162039165,-0.0005286794671681825,-2.026806977779629e-5,0.0005411575088732758,-0.0003436220211331504,-0.00030895000539188117,0.0005505999121917476,-6.19145899783407e-5,-0.0005077812622831868,0.00040318852447158163,0.0002356010428878263,-0.00056072686113293,0.0001419131217591834,0.0004641051864979099,-0.00045365206750700067,-0.00015809349513649817,0.0005589750548992409,-0.00021807634309608864,-0.0004111540136170215,0.0004940537633374602,7.809439691898478e-5,-0.0005455081282411419,0.0002888507681289269,0.00035013518199981095,-0.00052365500442898,2.6949406444112564e-6,0.0005207325642627576,-0.00035281191792421523,-0.0002824117629394844,0.000541950513914816,-8.257471717796273e-5,-0.00048528666930390063,0.0004086926237472642,0.0002094724385714032,-0.0005486764146600608,0.00015988202502962025,0.0004400248480765016,-0.0004554077680783523,-0.00013289918336879033,0.0005438132003187865,-0.00023302509731606418,-0.0003859975532080708,0.000492074987410574,5.433334241940327e-5,-0.0005275835991389851,0.00030051572404048756,0.00032442736895242765,-0.0005180309491572131,2.4559174203117406e-5,0.0005004454269347999,-0.0003609991831878843,-0.00025668176411372583,0.0005328429103868954,-0.00010212285061106723,-0.0004630796282708956,0.00041328109164830027,0.00018424311272205947,-0.0005363153665958887,0.00017674695160458517,0.0004163738024100838,-0.0004563506504529876,-0.00010867663153388918,0.0005284917021741056,-0.0002468986293580149,-0.0003614016010094391,0.0004893998386108009,3.159692005888673e-5,-0.0005096508584870117,0.00031115407664239865,0.0002993984661066695,-0.0005118381980560254,4.536618904580977e-5,0.0004802991384107882,-0.0003682270999871322,-0.00023173424804089865,0.0005233029469539293,-0.00012060175408178015,-0.0004411573656231384,0.00041699454573728757,0.00015988330221126753,-0.0005236642578654432,0.00019255111530527285,0.00039314371095043864,-0.0004565180826283799,-8.539270991402614e-5,0.0005130256389366968,-0.00025973986728707336,-0.00033735258471192077,0.00048606192475775814,9.849301046875935e-6,-0.0004917194582530689,0.0003208077631192502,0.000275030071580044,-0.0005051061668989215,6.515382527429952e-5,0.00046029775166413976,-0.0003745359500578736,-0.00020754645145970468,0.0005133554981264789,-0.00013805058246067018,-0.00041951855070254657,0.0004198709972141081,0.00013636640502051812,-0.0005107431576727447,0.0002073342916231998,0.00037032805773747497,-0.0004559452475200564,-6.301754473911945e-5,0.0004974300967878493,-0.00027158852618965805,-0.0003138390784011632,0.0004820931067852069,-1.0942059094114257e-5,-0.0004737994100301985,0.00032951578040244097,0.0002513061949792329,-0.0004978629705147723,8.395667348019323e-5,0.0004404461968287785,-0.00037996338715046835,-0.00018409822740775417,0.0005030245823716784,-0.0001545053347907475,-0.0003981631073402862,0.00042194617299007417,0.00011366857959676537,-0.0004975717147828186,0.00022113324764242126,0.0003479219136845424,-0.00045466541064563917,-4.152410702457753e-5,0.000481720160171666,-0.0002824815080571915,-0.0002908515268494217,0.00047752371012609133,-3.080683371742933e-5,-0.0004559011186223664,0.00033731454912903333,0.0002282129493314538,-0.0004901355771368249,0.00010180648193104646,0.0004207501624334902,-0.00038454476020395026,-0.00016137171258630493,0.0004923334598104647,-0.0001699992480245433,-0.0003770920480732716,0.00042325379426738126,9.176839545557078e-5,-0.00048416919999772114,0.00023398211556930107,0.0003259217296883323,-0.00045271015136749855,-2.0887854078206197e-5,0.00046591090144026075,-0.0002924532491237518,-0.0002683820038638678,0.00047238270692576335,-4.9772185244983406e-5,-0.00043803532211032407,0.00034423822964321625,0.00020573828130721067,-0.00048194994092084527,0.00011873251146262034,0.0004012159898882143,-0.00038831339375482556,-0.00013935103624418204,0.0004813047153509064,-0.00018456314011447563,-0.00035630732768631763,0.00042382581801617695,7.064652752861056e-5,-0.0004705545411327832,0.0002459127181164884,0.0003043251543699163,-0.000450109563025027,-1.0864160017897483e-6,0.00045001736974218,-0.00030153602230708216,-0.00024642399975760646,0.0004666978733366515,-6.7863080051694e-5,-0.00042021303747612947,0.0003503189969907615,0.00018387173421102604,-0.00047333111580433564,0.00013476184562737173,0.0003818505793307864,-0.0003913008317527686,-0.00011802206461842993,0.0004699603293713311,-0.00019822570973715623,-0.00033581171332293077,0.000423692646681408,5.028548800144333e-5,-0.00045674635158664967,0.0002569548526302955,0.00028313087294535184,-0.0004468924264113883,1.7900679216854216e-5,0.00043405457928224605,-0.0003097602011504271,-0.00022497223381818656,0.00046049592545026937,-8.510256446193555e-5,-0.0004024455110205291,0.000355587280723984,0.0001626042391185345,-0.00046430335336383874,0.00014991966241170517,0.00036266130525185506,-0.0003935370499542101,-9.737217593668417e-5,0.0004583217377259187,-0.00021101379874331126,-0.00031560866886107643,0.00042288331059115933,3.066939039840132e-5,-0.00044276295342523186,0.0002671365397323596,0.0002623384642965578,-0.0004430863603340888,3.6092247396543585e-5,0.0004180374970649535,-0.00031715449062810096,-0.0002040224883184826,0.00045380263685465197,-0.00010151200725054635,-0.0003847441729339321,0.000360071974399775,0.00014192793028522645,-0.00045489018690516463,0.00016422947282997377,0.00034365594057455314,-0.0003950506412372269,-7.739006178925866e-5,0.00044640988256592235,-0.00022295262245921826,-0.0002957022516200915,0.00042142562682715877,1.1783741510252315e-5,-0.00042862239575578386,0.0002764842413368855,0.00024194827377569037,-0.0004387179524069969,5.3505661159641884e-5,0.00040198103021769715,-0.00032374612933564357,-0.0001835714611625162,0.0004466429403360313],"x":[100.0,100.60925648702595,101.21851297405189,101.82776946107785,102.4370259481038,103.04628243512974,103.65553892215569,104.26479540918163,104.87405189620759,105.48330838323353,106.09256487025948,106.70182135728543,107.31107784431137,107.92033433133733,108.52959081836327,109.13884730538922,109.74810379241517,110.35736027944112,110.96661676646707,111.57587325349301,112.18512974051896,112.7943862275449,113.40364271457086,114.01289920159681,114.62215568862275,115.2314121756487,115.84066866267464,116.4499251497006,117.05918163672655,117.6684381237525,118.27769461077844,118.88695109780438,119.49620758483034,120.10546407185629,120.71472055888223,121.32397704590818,121.93323353293412,122.54249001996008,123.15174650698603,123.76100299401197,124.37025948103792,124.97951596806388,125.58877245508982,126.19802894211577,126.80728542914171,127.41654191616766,128.02579840319362,128.63505489021955,129.2443113772455,129.85356786427147,130.4628243512974,131.07208083832336,131.6813373253493,132.29059381237525,132.8998502994012,133.50910678642714,134.1183632734531,134.72761976047903,135.336876247505,135.94613273453095,136.55538922155688,137.16464570858284,137.77390219560877,138.38315868263473,138.9924151696607,139.60167165668662,140.21092814371258,140.8201846307385,141.42944111776447,142.03869760479043,142.64795409181636,143.25721057884232,143.86646706586825,144.4757235528942,145.08498003992017,145.6942365269461,146.30349301397206,146.91274950099802,147.52200598802395,148.1312624750499,148.74051896207584,149.3497754491018,149.95903193612776,150.5682884231537,151.17754491017965,151.78680139720558,152.39605788423154,153.0053143712575,153.61457085828343,154.2238273453094,154.83308383233532,155.44234031936128,156.05159680638724,156.66085329341317,157.27010978043913,157.87936626746506,158.48862275449102,159.09787924151698,159.7071357285429,160.31639221556887,160.9256487025948,161.53490518962076,162.14416167664672,162.75341816367265,163.3626746506986,163.97193113772454,164.5811876247505,165.19044411177646,165.7997005988024,166.40895708582835,167.01821357285428,167.62747005988024,168.2367265469062,168.84598303393213,169.4552395209581,170.06449600798402,170.67375249500998,171.28300898203594,171.89226546906187,172.50152195608783,173.11077844311376,173.72003493013972,174.32929141716568,174.9385479041916,175.54780439121757,176.1570608782435,176.76631736526946,177.37557385229542,177.98483033932135,178.5940868263473,179.20334331337327,179.8125998003992,180.42185628742516,181.0311127744511,181.64036926147705,182.249625748503,182.85888223552894,183.4681387225549,184.07739520958083,184.6866516966068,185.29590818363275,185.90516467065868,186.51442115768464,187.12367764471057,187.73293413173653,188.3421906187625,188.95144710578842,189.56070359281438,190.1699600798403,190.77921656686627,191.38847305389223,191.99772954091816,192.60698602794412,193.21624251497005,193.825499001996,194.43475548902197,195.0440119760479,195.65326846307386,196.2625249500998,196.87178143712575,197.4810379241517,198.09029441117764,198.6995508982036,199.30880738522953,199.9180638722555,200.52732035928145,201.13657684630738,201.74583333333334,202.35508982035927,202.96434630738523,203.5736027944112,204.18285928143712,204.79211576846308,205.401372255489,206.01062874251497,206.61988522954093,207.22914171656686,207.83839820359282,208.44765469061878,209.0569111776447,209.66616766467067,210.2754241516966,210.88468063872256,211.49393712574852,212.10319361277445,212.7124500998004,213.32170658682634,213.9309630738523,214.54021956087826,215.1494760479042,215.75873253493015,216.36798902195608,216.97724550898204,217.586501996008,218.19575848303393,218.8050149700599,219.41427145708582,220.02352794411178,220.63278443113774,221.24204091816367,221.85129740518963,222.46055389221556,223.06981037924152,223.67906686626748,224.2883233532934,224.89757984031937,225.5068363273453,226.11609281437126,226.72534930139722,227.33460578842315,227.9438622754491,228.55311876247504,229.162375249501,229.77163173652696,230.3808882235529,230.99014471057885,231.59940119760478,232.20865768463074,232.8179141716567,233.42717065868263,234.0364271457086,234.64568363273452,235.25494011976048,235.86419660678644,236.47345309381237,237.08270958083833,237.69196606786429,238.30122255489022,238.91047904191618,239.5197355289421,240.12899201596807,240.73824850299403,241.34750499001996,241.95676147704592,242.56601796407185,243.1752744510978,243.78453093812377,244.3937874251497,245.00304391217566,245.6123003992016,246.22155688622755,246.8308133732535,247.44006986027944,248.0493263473054,248.65858283433133,249.2678393213573,249.87709580838325,250.48635229540918,251.09560878243514,251.70486526946107,252.31412175648703,252.92337824351299,253.53263473053892,254.14189121756488,254.7511477045908,255.36040419161677,255.96966067864273,256.57891716566866,257.1881736526946,257.7974301397206,258.40668662674653,259.01594311377244,259.6251996007984,260.23445608782436,260.8437125748503,261.4529690618763,262.0622255489022,262.67148203592814,263.2807385229541,263.88999500998005,264.499251497006,265.1085079840319,265.7177644710579,266.32702095808384,266.9362774451098,267.54553393213575,268.15479041916166,268.7640469061876,269.3733033932136,269.98255988023953,270.5918163672655,271.2010728542914,271.81032934131736,272.4195858283433,273.0288423153693,273.63809880239523,274.24735528942114,274.8566117764471,275.46586826347306,276.075124750499,276.684381237525,277.2936377245509,277.90289421157684,278.5121506986028,279.12140718562875,279.7306636726547,280.3399201596806,280.9491766467066,281.55843313373254,282.1676896207585,282.77694610778445,283.38620259481036,283.9954590818363,284.6047155688623,285.21397205588823,285.8232285429142,286.4324850299401,287.04174151696606,287.650998003992,288.260254491018,288.86951097804393,289.47876746506984,290.0880239520958,290.69728043912176,291.3065369261477,291.9157934131737,292.5250499001996,293.13430638722554,293.7435628742515,294.35281936127745,294.9620758483034,295.5713323353293,296.1805888223553,296.78984530938123,297.3991017964072,298.00835828343315,298.61761477045906,299.226871257485,299.836127744511,300.44538423153693,301.0546407185629,301.6638972055888,302.27315369261476,302.8824101796407,303.4916666666667,304.10092315369263,304.71017964071854,305.3194361277445,305.92869261477045,306.5379491017964,307.1472055888224,307.7564620758483,308.36571856287424,308.9749750499002,309.58423153692615,310.1934880239521,310.802744510978,311.412000998004,312.02125748502993,312.6305139720559,313.23977045908185,313.8490269461078,314.4582834331337,315.0675399201597,315.67679640718563,316.2860528942116,316.89530938123755,317.50456586826346,318.1138223552894,318.7230788423154,319.33233532934133,319.9415918163673,320.5508483033932,321.16010479041915,321.7693612774451,322.3786177644711,322.98787425149703,323.59713073852294,324.2063872255489,324.81564371257485,325.4249001996008,326.0341566866268,326.6434131736527,327.25266966067863,327.8619261477046,328.47118263473055,329.0804391217565,329.6896956087824,330.2989520958084,330.90820858283433,331.5174650698603,332.12672155688625,332.73597804391216,333.3452345309381,333.9544910179641,334.56374750499003,335.173003992016,335.7822604790419,336.39151696606785,337.0007734530938,337.6100299401198,338.21928642714573,338.82854291417163,339.4377994011976,340.04705588822355,340.6563123752495,341.2655688622755,341.8748253493014,342.48408183632733,343.0933383233533,343.70259481037925,344.3118512974052,344.9211077844311,345.5303642714571,346.13962075848303,346.748877245509,347.35813373253495,347.96739021956085,348.5766467065868,349.1859031936128,349.79515968063873,350.4044161676647,351.0136726546906,351.62292914171655,352.2321856287425,352.8414421157685,353.45069860279443,354.05995508982033,354.6692115768463,355.27846806387225,355.8877245508982,356.4969810379242,357.1062375249501,357.71549401197603,358.324750499002,358.93400698602795,359.5432634730539,360.1525199600798,360.7617764471058,361.37103293413173,361.9802894211577,362.58954590818365,363.19880239520955,363.8080588822355,364.4173153692615,365.02657185628743,365.6358283433134,366.2450848303393,366.85434131736525,367.4635978043912,368.0728542914172,368.68211077844313,369.29136726546903,369.900623752495,370.50988023952095,371.1191367265469,371.7283932135729,372.3376497005988,372.94690618762473,373.5561626746507,374.16541916167665,374.7746756487026,375.38393213572857,375.9931886227545,376.60244510978043,377.2117015968064,377.82095808383235,378.4302145708583,379.0394710578842,379.6487275449102,380.25798403193613,380.8672405189621,381.47649700598805,382.08575349301395,382.6950099800399,383.3042664670659,383.91352295409183,384.5227794411178,385.1320359281437,385.74129241516965,386.3505489021956,386.9598053892216,387.56906187624753,388.17831836327343,388.7875748502994,389.39683133732535,390.0060878243513,390.61534431137727,391.2246007984032,391.83385728542913,392.4431137724551,393.05237025948105,393.661626746507,394.2708832335329,394.8801397205589,395.48939620758483,396.0986526946108,396.70790918163675,397.31716566866265,397.9264221556886,398.5356786427146,399.14493512974053,399.7541916167665,400.3634481037924,400.97270459081835,401.5819610778443,402.19121756487027,402.80047405189623,403.40973053892213,404.0189870259481,404.62824351297405,405.2375,405.84675648702597,406.4560129740519,407.06526946107783,407.6745259481038,408.28378243512975,408.8930389221557,409.5022954091816,410.1115518962076,410.72080838323353,411.3300648702595,411.93932135728545,412.54857784431135,413.1578343313373,413.7670908183633,414.37634730538923,414.9856037924152,415.5948602794411,416.20411676646705,416.813373253493,417.42262974051897,418.03188622754493,418.64114271457083,419.2503992015968,419.85965568862275,420.4689121756487,421.07816866267467,421.6874251497006,422.29668163672653,422.9059381237525,423.51519461077845,424.1244510978044,424.7337075848303,425.3429640718563,425.95222055888223,426.5614770459082,427.17073353293415,427.77999001996005,428.389246506986,428.998502994012,429.60775948103793,430.2170159680639,430.8262724550898,431.43552894211575,432.0447854291417,432.65404191616767,433.26329840319363,433.87255489021953,434.4818113772455,435.09106786427145,435.7003243512974,436.30958083832337,436.91883732534933,437.52809381237523,438.1373502994012,438.74660678642715,439.3558632734531,439.96511976047907,440.574376247505,441.18363273453093,441.7928892215569,442.40214570858285,443.0114021956088,443.6206586826347,444.22991516966067,444.83917165668663,445.4484281437126,446.05768463073855,446.66694111776445,447.2761976047904,447.88545409181637,448.49471057884233,449.1039670658683,449.7132235528942,450.32248003992015,450.9317365269461,451.54099301397207,452.15024950099803,452.75950598802393,453.3687624750499,453.97801896207585,454.5872754491018,455.19653193612777,455.8057884231537,456.41504491017963,457.0243013972056,457.63355788423155,458.2428143712575,458.8520708582834,459.46132734530937,460.07058383233533,460.6798403193613,461.28909680638725,461.89835329341315,462.5076097804391,463.11686626746507,463.72612275449103,464.335379241517,464.9446357285429,465.55389221556885,466.1631487025948,466.77240518962077,467.38166167664673,467.99091816367263,468.6001746506986,469.20943113772455,469.8186876247505,470.42794411177647,471.0372005988024,471.64645708582833,472.2557135728543,472.86497005988025,473.4742265469062,474.0834830339321,474.69273952095807,475.30199600798403,475.91125249501,476.52050898203595,477.12976546906185,477.7390219560878,478.34827844311377,478.95753493013973,479.5667914171657,480.1760479041916,480.78530439121755,481.3945608782435,482.00381736526947,482.61307385229543,483.22233033932133,483.8315868263473,484.44084331337325,485.0500998003992,485.65935628742517,486.26861277445107,486.87786926147703,487.487125748503,488.09638223552895,488.7056387225549,489.3148952095808,489.92415169660677,490.53340818363273,491.1426646706587,491.75192115768465,492.36117764471055,492.9704341317365,493.57969061876247,494.18894710578843,494.7982035928144,495.4074600798403,496.01671656686625,496.6259730538922,497.23522954091817,497.84448602794413,498.4537425149701,499.062999001996,499.67225548902195,500.2815119760479,500.89076846307387,501.5000249500998,502.10928143712573,502.7185379241517,503.32779441117765,503.9370508982036,504.54630738522957,505.15556387225547,505.76482035928143,506.3740768463074,506.98333333333335,507.5925898203593,508.2018463073852,508.81110279441117,509.42035928143713,510.0296157684631,510.63887225548905,511.24812874251495,511.8573852295409,512.4666417165669,513.0758982035928,513.6851546906188,514.2944111776447,514.9036676646707,515.5129241516966,516.1221806387225,516.7314371257485,517.3406936127744,517.9499500998004,518.5592065868263,519.1684630738523,519.7777195608783,520.3869760479042,520.9962325349302,521.605489021956,522.214745508982,522.824001996008,523.4332584830339,524.0425149700599,524.6517714570858,525.2610279441118,525.8702844311377,526.4795409181637,527.0887974051897,527.6980538922156,528.3073103792415,528.9165668662674,529.5258233532934,530.1350798403193,530.7443363273453,531.3535928143713,531.9628493013972,532.5721057884232,533.1813622754491,533.7906187624751,534.399875249501,535.0091317365269,535.6183882235529,536.2276447105788,536.8369011976048,537.4461576846307,538.0554141716567,538.6646706586827,539.2739271457086,539.8831836327346,540.4924401197604,541.1016966067864,541.7109530938123,542.3202095808383,542.9294660678643,543.5387225548902,544.1479790419162,544.7572355289421,545.3664920159681,545.9757485029941,546.5850049900199,547.1942614770459,547.8035179640718,548.4127744510978,549.0220309381237,549.6312874251497,550.2405439121757,550.8498003992016,551.4590568862276,552.0683133732535,552.6775698602794,553.2868263473054,553.8960828343313,554.5053393213573,555.1145958083832,555.7238522954092,556.3331087824351,556.9423652694611,557.5516217564871,558.160878243513,558.7701347305389,559.3793912175648,559.9886477045908,560.5979041916167,561.2071606786427,561.8164171656687,562.4256736526946,563.0349301397206,563.6441866267465,564.2534431137725,564.8626996007984,565.4719560878243,566.0812125748503,566.6904690618762,567.2997255489022,567.9089820359281,568.5182385229541,569.1274950099801,569.736751497006,570.346007984032,570.9552644710578,571.5645209580838,572.1737774451097,572.7830339321357,573.3922904191617,574.0015469061876,574.6108033932136,575.2200598802395,575.8293163672655,576.4385728542915,577.0478293413173,577.6570858283433,578.2663423153692,578.8755988023952,579.4848552894211,580.0941117764471,580.7033682634731,581.312624750499,581.921881237525,582.531137724551,583.1403942115768,583.7496506986027,584.3589071856287,584.9681636726547,585.5774201596806,586.1866766467066,586.7959331337325,587.4051896207585,588.0144461077845,588.6237025948104,589.2329590818364,589.8422155688622,590.4514720558882,591.0607285429141,591.6699850299401,592.2792415169661,592.888498003992,593.497754491018,594.107010978044,594.7162674650699,595.3255239520959,595.9347804391217,596.5440369261477,597.1532934131736,597.7625499001996,598.3718063872255,598.9810628742515,599.5903193612775,600.1995758483034,600.8088323353294,601.4180888223553,602.0273453093812,602.6366017964071,603.2458582834331,603.8551147704591,604.464371257485,605.073627744511,605.682884231537,606.2921407185629,606.9013972055889,607.5106536926148,608.1199101796407,608.7291666666666,609.3384231536926,609.9476796407185,610.5569361277445,611.1661926147705,611.7754491017964,612.3847055888224,612.9939620758483,613.6032185628743,614.2124750499001,614.8217315369261,615.4309880239521,616.040244510978,616.649500998004,617.25875748503,617.8680139720559,618.4772704590819,619.0865269461078,619.6957834331338,620.3050399201596,620.9142964071856,621.5235528942115,622.1328093812375,622.7420658682635,623.3513223552894,623.9605788423154,624.5698353293413,625.1790918163673,625.7883483033933,626.3976047904191,627.0068612774451,627.616117764471,628.225374251497,628.834630738523,629.4438872255489,630.0531437125749,630.6624001996008,631.2716566866268,631.8809131736527,632.4901696606786,633.0994261477045,633.7086826347305,634.3179391217565,634.9271956087824,635.5364520958084,636.1457085828343,636.7549650698603,637.3642215568863,637.9734780439122,638.5827345309381,639.191991017964,639.80124750499,640.410503992016,641.0197604790419,641.6290169660679,642.2382734530938,642.8475299401198,643.4567864271457,644.0660429141717,644.6752994011975,645.2845558882235,645.8938123752495,646.5030688622754,647.1123253493014,647.7215818363273,648.3308383233533,648.9400948103793,649.5493512974052,650.1586077844312,650.7678642714571,651.377120758483,651.986377245509,652.5956337325349,653.2048902195609,653.8141467065868,654.4234031936128,655.0326596806387,655.6419161676647,656.2511726546907,656.8604291417166,657.4696856287425,658.0789421157684,658.6881986027944,659.2974550898203,659.9067115768463,660.5159680638723,661.1252245508982,661.7344810379242,662.3437375249501,662.9529940119761,663.562250499002,664.1715069860279,664.7807634730539,665.3900199600798,665.9992764471058,666.6085329341317,667.2177894211577,667.8270459081837,668.4363023952096,669.0455588822356,669.6548153692614,670.2640718562874,670.8733283433133,671.4825848303393,672.0918413173653,672.7010978043912,673.3103542914172,673.9196107784431,674.5288672654691,675.1381237524951,675.7473802395209,676.3566367265469,676.9658932135728,677.5751497005988,678.1844061876247,678.7936626746507,679.4029191616767,680.0121756487026,680.6214321357286,681.2306886227545,681.8399451097804,682.4492015968063,683.0584580838323,683.6677145708583,684.2769710578842,684.8862275449102,685.4954840319361,686.1047405189621,686.7139970059881,687.323253493014,687.9325099800399,688.5417664670658,689.1510229540918,689.7602794411177,690.3695359281437,690.9787924151697,691.5880489021956,692.1973053892216,692.8065618762475,693.4158183632735,694.0250748502993,694.6343313373253,695.2435878243513,695.8528443113772,696.4621007984032,697.0713572854291,697.6806137724551,698.2898702594811,698.899126746507,699.508383233533,700.1176397205588,700.7268962075848,701.3361526946107,701.9454091816367,702.5546656686627,703.1639221556886,703.7731786427146,704.3824351297405,704.9916916167665,705.6009481037925,706.2102045908183,706.8194610778443,707.4287175648702,708.0379740518962,708.6472305389221,709.2564870259481,709.8657435129741,710.475]} From b1d43551ee602b0013e003376538d98eb3f9a33d Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Mon, 18 Nov 2024 14:24:52 +0600 Subject: [PATCH 32/63] added require --- .../@stdlib/math/base/special/cosc/test/fixtures/julia/REQUIRE | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/REQUIRE diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/REQUIRE new file mode 100644 index 000000000000..e69de29bb2d1 From 8a823b22835014f89d82049bf236015318b04804 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Mon, 18 Nov 2024 14:26:22 +0600 Subject: [PATCH 33/63] "added require" --- .../@stdlib/math/base/special/cosc/test/fixtures/julia/REQUIRE | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/REQUIRE index e69de29bb2d1..308c3be89c85 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/REQUIRE +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/REQUIRE @@ -0,0 +1,2 @@ +julia 1.5 +JSON 0.21 From 8ca19ed34c4ad68b6d0c873ec48bc6e5ea80404e Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Mon, 18 Nov 2024 14:29:35 +0600 Subject: [PATCH 34/63] "added runner.jl" --- .../cosc/test/fixtures/julia/runner.jl | 82 +++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/runner.jl diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/runner.jl new file mode 100644 index 000000000000..8274523f347c --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/runner.jl @@ -0,0 +1,82 @@ +#!/usr/bin/env julia +# +# @license Apache-2.0 +# +# Copyright (c) 2018 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import JSON + +""" + gen( domain, name ) + +Generate fixture data and write to file. + +# Arguments + +* `domain`: domain +* `name::AbstractString`: output filename + +# Examples + +``` julia +julia> x = range( -708, stop = 709, length = 2001 ); +julia> gen( x, \"data.json\" ); +``` +""" +function gen( domain, name ) + x = collect( domain ); + y = cosc.( x ); + + # Store data to be written to file as a collection: + data = Dict([ + ("x", x), + ("expected", y) + ]); + + # Based on the script directory, create an output filepath: + filepath = joinpath( dir, name ); + + # Write the data to the output filepath as JSON: + outfile = open( filepath, "w" ); + write( outfile, JSON.json(data) ); + write( outfile, "\n" ); + close( outfile ); +end + +# Get the filename: +file = @__FILE__; + +# Extract the directory in which this file resides: +dir = dirname( file ); + +# Generate fixture data for decimal values: +x = range( -100, stop = 100, length = 4003 ); +gen( x, "data.json" ); + +# Large negative values: +x = range( -709.0895, stop = -100, length = 1003 ); +gen( x, "large_negative.json" ); + +# Large positive values: +x = range( 100, stop = 710.475, length = 1003 ); +gen( x, "large_positive.json" ); + +# Tiny negative values: +x = range( -1e-200, stop = -1e-208, length = 503 ); +gen( x, "tiny_negative.json" ); + +# Tiny positive values: +x = range( 1e-300, stop = 1e-308, length = 503 ); +gen( x, "tiny_positive.json" ); From fd554fe8bbfd5fcdc69dea7aff06c13280121247 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Mon, 18 Nov 2024 14:31:47 +0600 Subject: [PATCH 35/63] "added tiny negative json" --- .../base/special/cosc/test/fixtures/julia/tiny_negative.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/tiny_negative.json diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/tiny_negative.json b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/tiny_negative.json new file mode 100644 index 000000000000..84a5bd4850bb --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/tiny_negative.json @@ -0,0 +1 @@ +{"expected":[1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0],"x":[-1.0e-200,-9.980079681474104e-201,-9.960159362948207e-201,-9.94023904442231e-201,-9.920318725896413e-201,-9.900398407370517e-201,-9.880478088844622e-201,-9.860557770318725e-201,-9.840637451792829e-201,-9.820717133266931e-201,-9.800796814741036e-201,-9.780876496215138e-201,-9.760956177689244e-201,-9.741035859163346e-201,-9.721115540637451e-201,-9.701195222111553e-201,-9.681274903585657e-201,-9.66135458505976e-201,-9.641434266533866e-201,-9.621513948007968e-201,-9.601593629482072e-201,-9.581673310956175e-201,-9.561752992430278e-201,-9.541832673904382e-201,-9.521912355378486e-201,-9.50199203685259e-201,-9.482071718326692e-201,-9.462151399800797e-201,-9.4422310812749e-201,-9.422310762749003e-201,-9.402390444223107e-201,-9.382470125697212e-201,-9.362549807171315e-201,-9.342629488645418e-201,-9.32270917011952e-201,-9.302788851593624e-201,-9.28286853306773e-201,-9.262948214541833e-201,-9.243027896015936e-201,-9.22310757749004e-201,-9.203187258964143e-201,-9.183266940438247e-201,-9.163346621912351e-201,-9.143426303386455e-201,-9.123505984860558e-201,-9.103585666334662e-201,-9.083665347808764e-201,-9.063745029282868e-201,-9.043824710756973e-201,-9.023904392231076e-201,-9.00398407370518e-201,-8.984063755179282e-201,-8.964143436653386e-201,-8.94422311812749e-201,-8.924302799601593e-201,-8.904382481075697e-201,-8.8844621625498e-201,-8.864541844023904e-201,-8.844621525498008e-201,-8.82470120697211e-201,-8.804780888446214e-201,-8.78486056992032e-201,-8.764940251394423e-201,-8.745019932868526e-201,-8.72509961434263e-201,-8.705179295816732e-201,-8.685258977290837e-201,-8.66533865876494e-201,-8.645418340239044e-201,-8.625498021713147e-201,-8.605577703187252e-201,-8.585657384661354e-201,-8.565737066135457e-201,-8.545816747609562e-201,-8.525896429083666e-201,-8.50597611055777e-201,-8.486055792031872e-201,-8.466135473505975e-201,-8.446215154980078e-201,-8.426294836454184e-201,-8.406374517928287e-201,-8.38645419940239e-201,-8.366533880876493e-201,-8.346613562350598e-201,-8.3266932438247e-201,-8.306772925298806e-201,-8.286852606772908e-201,-8.266932288247013e-201,-8.247011969721115e-201,-8.227091651195219e-201,-8.207171332669321e-201,-8.187251014143427e-201,-8.16733069561753e-201,-8.147410377091634e-201,-8.127490058565737e-201,-8.10756974003984e-201,-8.087649421513944e-201,-8.067729102988048e-201,-8.047808784462152e-201,-8.027888465936254e-201,-8.007968147410359e-201,-7.988047828884461e-201,-7.968127510358565e-201,-7.948207191832669e-201,-7.928286873306773e-201,-7.908366554780877e-201,-7.88844623625498e-201,-7.868525917729083e-201,-7.848605599203186e-201,-7.828685280677292e-201,-7.808764962151395e-201,-7.788844643625498e-201,-7.768924325099601e-201,-7.749004006573705e-201,-7.729083688047809e-201,-7.709163369521913e-201,-7.689243050996017e-201,-7.669322732470119e-201,-7.649402413944224e-201,-7.629482095418326e-201,-7.609561776892429e-201,-7.589641458366532e-201,-7.569721139840638e-201,-7.549800821314741e-201,-7.529880502788844e-201,-7.509960184262948e-201,-7.490039865737051e-201,-7.470119547211155e-201,-7.450199228685259e-201,-7.430278910159363e-201,-7.410358591633466e-201,-7.39043827310757e-201,-7.370517954581672e-201,-7.350597636055776e-201,-7.33067731752988e-201,-7.310756999003985e-201,-7.290836680478088e-201,-7.270916361952191e-201,-7.250996043426294e-201,-7.231075724900399e-201,-7.211155406374503e-201,-7.191235087848606e-201,-7.171314769322709e-201,-7.151394450796814e-201,-7.131474132270916e-201,-7.111553813745019e-201,-7.091633495219124e-201,-7.071713176693226e-201,-7.051792858167331e-201,-7.031872539641434e-201,-7.011952221115537e-201,-6.99203190258964e-201,-6.972111584063746e-201,-6.952191265537849e-201,-6.932270947011952e-201,-6.912350628486055e-201,-6.89243030996016e-201,-6.872509991434262e-201,-6.852589672908367e-201,-6.83266935438247e-201,-6.812749035856574e-201,-6.792828717330677e-201,-6.772908398804781e-201,-6.752988080278883e-201,-6.733067761752989e-201,-6.713147443227092e-201,-6.693227124701196e-201,-6.673306806175298e-201,-6.653386487649402e-201,-6.633466169123506e-201,-6.61354585059761e-201,-6.593625532071714e-201,-6.573705213545817e-201,-6.55378489501992e-201,-6.533864576494023e-201,-6.513944257968128e-201,-6.494023939442231e-201,-6.474103620916335e-201,-6.4541833023904385e-201,-6.434262983864542e-201,-6.4143426653386446e-201,-6.394422346812749e-201,-6.374502028286852e-201,-6.354581709760956e-201,-6.3346613912350596e-201,-6.3147410727091634e-201,-6.2948207541832664e-201,-6.27490043565737e-201,-6.254980117131474e-201,-6.235059798605577e-201,-6.2151394800796815e-201,-6.1952191615537845e-201,-6.175298843027888e-201,-6.155378524501992e-201,-6.135458205976096e-201,-6.115537887450199e-201,-6.0956175689243034e-201,-6.0756972503984064e-201,-6.05577693187251e-201,-6.035856613346614e-201,-6.015936294820718e-201,-5.996015976294821e-201,-5.9760956577689245e-201,-5.956175339243028e-201,-5.9362550207171306e-201,-5.916334702191235e-201,-5.896414383665338e-201,-5.876494065139442e-201,-5.856573746613546e-201,-5.8366534280876495e-201,-5.8167331095617525e-201,-5.796812791035857e-201,-5.77689247250996e-201,-5.756972153984064e-201,-5.7370518354581676e-201,-5.7171315169322706e-201,-5.6972111984063744e-201,-5.6772908798804774e-201,-5.657370561354582e-201,-5.637450242828685e-201,-5.617529924302789e-201,-5.5976096057768925e-201,-5.577689287250996e-201,-5.557768968725099e-201,-5.537848650199204e-201,-5.517928331673307e-201,-5.4980080131474106e-201,-5.4780876946215144e-201,-5.458167376095617e-201,-5.4382470575697204e-201,-5.418326739043824e-201,-5.398406420517928e-201,-5.378486101992031e-201,-5.3585657834661355e-201,-5.3386454649402386e-201,-5.318725146414342e-201,-5.298804827888446e-201,-5.27888450936255e-201,-5.258964190836653e-201,-5.2390438723107574e-201,-5.2191235537848604e-201,-5.199203235258964e-201,-5.179282916733068e-201,-5.159362598207171e-201,-5.139442279681275e-201,-5.1195219611553785e-201,-5.099601642629482e-201,-5.079681324103585e-201,-5.05976100557769e-201,-5.039840687051793e-201,-5.019920368525897e-201,-5.00000005e-201,-4.9800797314741035e-201,-4.9601594129482065e-201,-4.940239094422311e-201,-4.920318775896414e-201,-4.900398457370517e-201,-4.8804781388446216e-201,-4.8605578203187246e-201,-4.8406375017928284e-201,-4.820717183266932e-201,-4.800796864741036e-201,-4.780876546215139e-201,-4.7609562276892435e-201,-4.7410359091633465e-201,-4.72111559063745e-201,-4.701195272111554e-201,-4.681274953585658e-201,-4.661354635059761e-201,-4.641434316533865e-201,-4.6215139980079684e-201,-4.6015936794820714e-201,-4.581673360956176e-201,-4.561753042430279e-201,-4.541832723904383e-201,-4.521912405378486e-201,-4.5019920868525895e-201,-4.4820717683266926e-201,-4.462151449800796e-201,-4.4422311312749e-201,-4.422310812749004e-201,-4.402390494223107e-201,-4.3824701756972114e-201,-4.3625498571713144e-201,-4.3426295386454175e-201,-4.322709220119522e-201,-4.302788901593625e-201,-4.282868583067729e-201,-4.2629482645418326e-201,-4.243027946015936e-201,-4.2231076274900394e-201,-4.203187308964144e-201,-4.183266990438247e-201,-4.163346671912351e-201,-4.1434263533864544e-201,-4.123506034860558e-201,-4.103585716334661e-201,-4.083665397808766e-201,-4.063745079282869e-201,-4.043824760756971e-201,-4.0239044422310756e-201,-4.0039841237051786e-201,-3.9840638051792824e-201,-3.964143486653386e-201,-3.94422316812749e-201,-3.924302849601593e-201,-3.9043825310756975e-201,-3.8844622125498005e-201,-3.864541894023904e-201,-3.844621575498008e-201,-3.824701256972112e-201,-3.804780938446215e-201,-3.7848606199203186e-201,-3.7649403013944224e-201,-3.7450199828685254e-201,-3.72509966434263e-201,-3.705179345816733e-201,-3.685259027290837e-201,-3.6653387087649405e-201,-3.645418390239044e-201,-3.625498071713147e-201,-3.605577753187252e-201,-3.585657434661355e-201,-3.565737116135458e-201,-3.545816797609562e-201,-3.525896479083665e-201,-3.5059761605577685e-201,-3.486055842031872e-201,-3.466135523505976e-201,-3.446215204980079e-201,-3.4262948864541835e-201,-3.4063745679282866e-201,-3.38645424940239e-201,-3.366533930876494e-201,-3.346613612350598e-201,-3.326693293824701e-201,-3.306772975298805e-201,-3.2868526567729085e-201,-3.266932338247012e-201,-3.2470120197211156e-201,-3.2270917011952194e-201,-3.2071713826693224e-201,-3.1872510641434262e-201,-3.16733074561753e-201,-3.1474104270916334e-201,-3.127490108565737e-201,-3.1075697900398405e-201,-3.087649471513944e-201,-3.0677291529880477e-201,-3.0478088344621515e-201,-3.027888515936255e-201,-3.0079681974103587e-201,-2.9880478788844624e-201,-2.9681275603585655e-201,-2.9482072418326692e-201,-2.928286923306773e-201,-2.9083666047808764e-201,-2.88844628625498e-201,-2.868525967729084e-201,-2.848605649203187e-201,-2.8286853306772907e-201,-2.808765012151394e-201,-2.788844693625498e-201,-2.7689243750996017e-201,-2.749004056573705e-201,-2.7290837380478085e-201,-2.7091634195219123e-201,-2.6892431009960157e-201,-2.6693227824701194e-201,-2.6494024639442232e-201,-2.6294821454183266e-201,-2.6095618268924304e-201,-2.589641508366534e-201,-2.569721189840637e-201,-2.549800871314741e-201,-2.5298805527888447e-201,-2.509960234262948e-201,-2.4900399157370515e-201,-2.4701195972111553e-201,-2.4501992786852587e-201,-2.4302789601593625e-201,-2.4103586416334662e-201,-2.3904383231075696e-201,-2.3705180045816734e-201,-2.350597686055777e-201,-2.3306773675298806e-201,-2.3107570490039843e-201,-2.2908367304780877e-201,-2.270916411952191e-201,-2.2509960934262946e-201,-2.231075774900398e-201,-2.2111554563745017e-201,-2.1912351378486055e-201,-2.171314819322709e-201,-2.1513945007968127e-201,-2.1314741822709164e-201,-2.11155386374502e-201,-2.0916335452191236e-201,-2.0717132266932274e-201,-2.0517929081673308e-201,-2.0318725896414345e-201,-2.0119522711155376e-201,-1.992031952589641e-201,-1.9721116340637448e-201,-1.9521913155378485e-201,-1.932270997011952e-201,-1.9123506784860557e-201,-1.8924303599601595e-201,-1.872510041434263e-201,-1.8525897229083666e-201,-1.8326694043824704e-201,-1.8127490858565738e-201,-1.7928287673306776e-201,-1.772908448804781e-201,-1.7529881302788844e-201,-1.7330678117529878e-201,-1.7131474932270916e-201,-1.693227174701195e-201,-1.6733068561752987e-201,-1.6533865376494025e-201,-1.633466219123506e-201,-1.6135459005976097e-201,-1.593625582071713e-201,-1.5737052635458167e-201,-1.5537849450199204e-201,-1.5338646264940238e-201,-1.5139443079681274e-201,-1.4940239894422312e-201,-1.4741036709163346e-201,-1.4541833523904382e-201,-1.434263033864542e-201,-1.4143427153386455e-201,-1.394422396812749e-201,-1.3745020782868525e-201,-1.3545817597609561e-201,-1.3346614412350597e-201,-1.3147411227091633e-201,-1.294820804183267e-201,-1.2749004856573706e-201,-1.254980167131474e-201,-1.2350598486055776e-201,-1.2151395300796812e-201,-1.1952192115537848e-201,-1.1752988930278886e-201,-1.1553785745019921e-201,-1.1354582559760957e-201,-1.115537937450199e-201,-1.0956176189243027e-201,-1.0756973003984063e-201,-1.0557769818725099e-201,-1.0358566633466137e-201,-1.0159363448207172e-201,-9.960160262948206e-202,-9.760957077689242e-202,-9.561753892430278e-202,-9.362550707171314e-202,-9.163347521912352e-202,-8.964144336653388e-202,-8.764941151394422e-202,-8.56573796613546e-202,-8.366534780876493e-202,-8.16733159561753e-202,-7.968128410358565e-202,-7.768925225099602e-202,-7.569722039840638e-202,-7.370518854581673e-202,-7.171315669322709e-202,-6.972112484063745e-202,-6.77290929880478e-202,-6.573706113545816e-202,-6.374502928286853e-202,-6.175299743027889e-202,-5.976096557768924e-202,-5.77689337250996e-202,-5.577690187250995e-202,-5.378487001992031e-202,-5.179283816733068e-202,-4.980080631474103e-202,-4.78087744621514e-202,-4.581674260956176e-202,-4.3824710756972105e-202,-4.183267890438247e-202,-3.9840647051792827e-202,-3.7848615199203186e-202,-3.585658334661355e-202,-3.3864551494023903e-202,-3.1872519641434266e-202,-2.988048778884462e-202,-2.7888455936254974e-202,-2.589642408366534e-202,-2.3904392231075696e-202,-2.1912360378486054e-202,-1.9920328525896413e-202,-1.7928296673306774e-202,-1.5936264820717132e-202,-1.3944232968127489e-202,-1.195220111553785e-202,-9.960169262948207e-203,-7.968137410358565e-203,-5.976105557768924e-203,-3.984073705179283e-203,-1.9920418525896415e-203,-1.0e-208]} From 56d93d8722914817003de20f6b587c5eff3204da Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Mon, 18 Nov 2024 14:33:45 +0600 Subject: [PATCH 36/63] "added tiny positive json" --- .../base/special/cosc/test/fixtures/julia/tiny_positive.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/tiny_positive.json diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/tiny_positive.json b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/tiny_positive.json new file mode 100644 index 000000000000..b843705f1547 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/tiny_positive.json @@ -0,0 +1 @@ +{"expected":[1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002],"x":[1.0e-300,9.980079681474106e-301,9.960159362948207e-301,9.94023904442231e-301,9.920318725896415e-301,9.900398407370519e-301,9.880478088844623e-301,9.860557770318725e-301,9.840637451792829e-301,9.820717133266933e-301,9.800796814741037e-301,9.780876496215141e-301,9.760956177689242e-301,9.741035859163347e-301,9.721115540637451e-301,9.701195222111553e-301,9.681274903585657e-301,9.661354585059761e-301,9.641434266533864e-301,9.621513948007968e-301,9.601593629482072e-301,9.581673310956176e-301,9.56175299243028e-301,9.541832673904382e-301,9.521912355378486e-301,9.501992036852588e-301,9.482071718326694e-301,9.462151399800798e-301,9.442231081274899e-301,9.422310762749004e-301,9.402390444223108e-301,9.38247012569721e-301,9.362549807171316e-301,9.342629488645419e-301,9.322709170119521e-301,9.302788851593627e-301,9.282868533067729e-301,9.262948214541833e-301,9.243027896015937e-301,9.22310757749004e-301,9.203187258964143e-301,9.183266940438247e-301,9.163346621912351e-301,9.143426303386455e-301,9.123505984860558e-301,9.103585666334662e-301,9.083665347808764e-301,9.06374502928287e-301,9.043824710756974e-301,9.023904392231074e-301,9.00398407370518e-301,8.984063755179282e-301,8.964143436653386e-301,8.944223118127492e-301,8.924302799601594e-301,8.904382481075697e-301,8.884462162549802e-301,8.864541844023905e-301,8.844621525498009e-301,8.824701206972113e-301,8.804780888446215e-301,8.784860569920319e-301,8.764940251394421e-301,8.745019932868527e-301,8.72509961434263e-301,8.705179295816731e-301,8.685258977290837e-301,8.66533865876494e-301,8.645418340239043e-301,8.625498021713149e-301,8.605577703187251e-301,8.585657384661354e-301,8.565737066135458e-301,8.545816747609562e-301,8.525896429083666e-301,8.50597611055777e-301,8.486055792031872e-301,8.466135473505976e-301,8.44621515498008e-301,8.426294836454184e-301,8.406374517928286e-301,8.38645419940239e-301,8.366533880876494e-301,8.346613562350597e-301,8.326693243824702e-301,8.306772925298805e-301,8.286852606772909e-301,8.266932288247013e-301,8.247011969721115e-301,8.227091651195219e-301,8.207171332669325e-301,8.187251014143427e-301,8.16733069561753e-301,8.147410377091633e-301,8.127490058565737e-301,8.107569740039841e-301,8.087649421513945e-301,8.067729102988048e-301,8.04780878446215e-301,8.027888465936256e-301,8.00796814741036e-301,7.988047828884462e-301,7.968127510358568e-301,7.94820719183267e-301,7.928286873306772e-301,7.908366554780878e-301,7.88844623625498e-301,7.868525917729084e-301,7.848605599203187e-301,7.82868528067729e-301,7.808764962151395e-301,7.788844643625499e-301,7.768924325099603e-301,7.749004006573705e-301,7.729083688047807e-301,7.709163369521913e-301,7.689243050996017e-301,7.669322732470119e-301,7.649402413944225e-301,7.629482095418325e-301,7.609561776892431e-301,7.589641458366533e-301,7.569721139840637e-301,7.549800821314741e-301,7.529880502788844e-301,7.509960184262948e-301,7.490039865737053e-301,7.470119547211156e-301,7.450199228685259e-301,7.430278910159363e-301,7.410358591633465e-301,7.39043827310757e-301,7.370517954581674e-301,7.350597636055776e-301,7.33067731752988e-301,7.310756999003985e-301,7.2908366804780875e-301,7.2709163619521915e-301,7.250996043426295e-301,7.231075724900399e-301,7.211155406374503e-301,7.191235087848606e-301,7.171314769322709e-301,7.151394450796814e-301,7.131474132270916e-301,7.11155381374502e-301,7.091633495219123e-301,7.0717131766932264e-301,7.051792858167331e-301,7.0318725396414344e-301,7.011952221115538e-301,6.9920319025896416e-301,6.9721115840637456e-301,6.952191265537849e-301,6.932270947011952e-301,6.912350628486056e-301,6.89243030996016e-301,6.872509991434263e-301,6.852589672908367e-301,6.83266935438247e-301,6.812749035856574e-301,6.792828717330678e-301,6.7729083988047805e-301,6.7529880802788845e-301,6.7330677617529885e-301,6.713147443227092e-301,6.693227124701196e-301,6.673306806175299e-301,6.653386487649402e-301,6.633466169123507e-301,6.613545850597609e-301,6.593625532071713e-301,6.573705213545817e-301,6.55378489501992e-301,6.533864576494024e-301,6.513944257968128e-301,6.4940239394422306e-301,6.474103620916335e-301,6.4541833023904386e-301,6.434262983864542e-301,6.414342665338646e-301,6.394422346812749e-301,6.374502028286853e-301,6.354581709760957e-301,6.33466139123506e-301,6.314741072709163e-301,6.294820754183267e-301,6.274900435657371e-301,6.254980117131474e-301,6.2350597986055775e-301,6.2151394800796815e-301,6.1952191615537855e-301,6.175298843027889e-301,6.155378524501992e-301,6.135458205976096e-301,6.1155378874502e-301,6.095617568924303e-301,6.075697250398406e-301,6.05577693187251e-301,6.035856613346614e-301,6.015936294820717e-301,5.996015976294821e-301,5.9760956577689236e-301,5.956175339243028e-301,5.936255020717132e-301,5.916334702191235e-301,5.896414383665339e-301,5.8764940651394435e-301,5.856573746613546e-301,5.83665342808765e-301,5.816733109561753e-301,5.796812791035856e-301,5.776892472509961e-301,5.756972153984063e-301,5.737051835458167e-301,5.7171315169322705e-301,5.6972111984063745e-301,5.6772908798804785e-301,5.657370561354582e-301,5.637450242828685e-301,5.61752992430279e-301,5.597609605776893e-301,5.577689287250996e-301,5.557768968725099e-301,5.537848650199204e-301,5.517928331673307e-301,5.49800801314741e-301,5.478087694621514e-301,5.458167376095617e-301,5.438247057569721e-301,5.418326739043825e-301,5.398406420517928e-301,5.378486101992032e-301,5.3585657834661365e-301,5.338645464940239e-301,5.318725146414343e-301,5.298804827888446e-301,5.27888450936255e-301,5.258964190836654e-301,5.239043872310756e-301,5.21912355378486e-301,5.199203235258965e-301,5.1792829167330675e-301,5.1593625982071715e-301,5.1394422796812755e-301,5.119521961155378e-301,5.099601642629483e-301,5.079681324103586e-301,5.059761005577689e-301,5.039840687051793e-301,5.019920368525897e-301,5.00000005e-301,4.980079731474104e-301,4.960159412948207e-301,4.940239094422311e-301,4.920318775896414e-301,4.900398457370518e-301,4.8804781388446215e-301,4.8605578203187255e-301,4.840637501792829e-301,4.820717183266933e-301,4.800796864741036e-301,4.780876546215139e-301,4.760956227689243e-301,4.741035909163347e-301,4.72111559063745e-301,4.701195272111553e-301,4.681274953585658e-301,4.661354635059761e-301,4.6414343165338645e-301,4.6215139980079685e-301,4.601593679482072e-301,4.581673360956176e-301,4.56175304243028e-301,4.541832723904382e-301,4.521912405378487e-301,4.501992086852591e-301,4.482071768326693e-301,4.462151449800797e-301,4.4422311312749e-301,4.422310812749004e-301,4.402390494223108e-301,4.3824701756972105e-301,4.3625498571713145e-301,4.3426295386454185e-301,4.322709220119522e-301,4.302788901593626e-301,4.282868583067729e-301,4.262948264541833e-301,4.243027946015937e-301,4.22310762749004e-301,4.203187308964143e-301,4.183266990438246e-301,4.163346671912351e-301,4.143426353386454e-301,4.1235060348605575e-301,4.1035857163346615e-301,4.0836653978087654e-301,4.063745079282869e-301,4.043824760756973e-301,4.023904442231075e-301,4.00398412370518e-301,3.984063805179284e-301,3.964143486653386e-301,3.94422316812749e-301,3.924302849601594e-301,3.904382531075697e-301,3.884462212549801e-301,3.8645418940239035e-301,3.8446215754980075e-301,3.824701256972112e-301,3.8047809384462155e-301,3.784860619920319e-301,3.764940301394423e-301,3.745019982868526e-301,3.72509966434263e-301,3.705179345816733e-301,3.685259027290837e-301,3.66533870876494e-301,3.645418390239044e-301,3.6254980717131477e-301,3.6055777531872513e-301,3.5856574346613544e-301,3.5657371161354584e-301,3.545816797609562e-301,3.525896479083665e-301,3.5059761605577688e-301,3.4860558420318727e-301,3.4661355235059763e-301,3.4462152049800795e-301,3.4262948864541835e-301,3.406374567928287e-301,3.3864542494023906e-301,3.366533930876494e-301,3.3466136123505978e-301,3.3266932938247014e-301,3.306772975298805e-301,3.2868526567729085e-301,3.266932338247012e-301,3.2470120197211157e-301,3.2270917011952197e-301,3.207171382669323e-301,3.187251064143426e-301,3.1673307456175304e-301,3.1474104270916335e-301,3.127490108565737e-301,3.1075697900398403e-301,3.0876494715139443e-301,3.067729152988048e-301,3.0478088344621514e-301,3.027888515936255e-301,3.0079681974103586e-301,2.988047878884462e-301,2.968127560358566e-301,2.9482072418326693e-301,2.928286923306773e-301,2.908366604780877e-301,2.88844628625498e-301,2.8685259677290836e-301,2.8486056492031868e-301,2.828685330677291e-301,2.8087650121513944e-301,2.788844693625498e-301,2.7689243750996015e-301,2.7490040565737055e-301,2.7290837380478087e-301,2.7091634195219127e-301,2.689243100996016e-301,2.66932278247012e-301,2.649402463944223e-301,2.629482145418327e-301,2.60956182689243e-301,2.589641508366534e-301,2.5697211898406377e-301,2.549800871314741e-301,2.5298805527888444e-301,2.5099602342629484e-301,2.490039915737052e-301,2.470119597211155e-301,2.450199278685259e-301,2.4302789601593627e-301,2.4103586416334663e-301,2.3904383231075695e-301,2.3705180045816735e-301,2.350597686055777e-301,2.3306773675298806e-301,2.310757049003984e-301,2.2908367304780878e-301,2.2709164119521913e-301,2.250996093426295e-301,2.2310757749003985e-301,2.2111554563745017e-301,2.1912351378486056e-301,2.1713148193227092e-301,2.151394500796813e-301,2.131474182270916e-301,2.1115538637450204e-301,2.0916335452191235e-301,2.071713226693227e-301,2.0517929081673307e-301,2.0318725896414347e-301,2.011952271115538e-301,1.992031952589642e-301,1.972111634063745e-301,1.952191315537849e-301,1.932270997011952e-301,1.9123506784860557e-301,1.8924303599601593e-301,1.8725100414342633e-301,1.8525897229083667e-301,1.8326694043824702e-301,1.812749085856574e-301,1.7928287673306774e-301,1.7729084488047812e-301,1.7529881302788843e-301,1.733067811752988e-301,1.7131474932270917e-301,1.693227174701195e-301,1.6733068561752988e-301,1.6533865376494022e-301,1.633466219123506e-301,1.6135459005976096e-301,1.5936255820717132e-301,1.5737052635458167e-301,1.5537849450199203e-301,1.5338646264940239e-301,1.5139443079681277e-301,1.494023989442231e-301,1.4741036709163348e-301,1.4541833523904384e-301,1.4342630338645418e-301,1.4143427153386453e-301,1.394422396812749e-301,1.3745020782868525e-301,1.3545817597609563e-301,1.3346614412350597e-301,1.3147411227091634e-301,1.2948208041832668e-301,1.2749004856573706e-301,1.2549801671314742e-301,1.2350598486055777e-301,1.2151395300796813e-301,1.195219211553785e-301,1.1752988930278885e-301,1.1553785745019923e-301,1.1354582559760956e-301,1.1155379374501992e-301,1.0956176189243026e-301,1.0756973003984064e-301,1.05577698187251e-301,1.0358566633466135e-301,1.015936344820717e-301,9.960160262948209e-302,9.760957077689242e-302,9.56175389243028e-302,9.362550707171316e-302,9.163347521912351e-302,8.964144336653387e-302,8.764941151394421e-302,8.565737966135458e-302,8.366534780876494e-302,8.16733159561753e-302,7.968128410358565e-302,7.768925225099601e-302,7.569722039840638e-302,7.370518854581674e-302,7.171315669322708e-302,6.972112484063744e-302,6.772909298804781e-302,6.573706113545817e-302,6.374502928286853e-302,6.175299743027888e-302,5.976096557768924e-302,5.776893372509961e-302,5.577690187250996e-302,5.378487001992031e-302,5.179283816733067e-302,4.980080631474104e-302,4.78087744621514e-302,4.5816742609561755e-302,4.382471075697211e-302,4.183267890438247e-302,3.984064705179283e-302,3.784861519920319e-302,3.585658334661355e-302,3.3864551494023906e-302,3.1872519641434264e-302,2.988048778884462e-302,2.7888455936254984e-302,2.5896424083665337e-302,2.39043922310757e-302,2.1912360378486057e-302,1.9920328525896415e-302,1.7928296673306775e-302,1.5936264820717133e-302,1.394423296812749e-302,1.1952201115537848e-302,9.960169262948207e-303,7.968137410358566e-303,5.976105557768924e-303,3.9840737051792834e-303,1.9920418525896414e-303,1.0e-308]} From 68a161f883a0c7e51637518ba59928b7af11712d Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Mon, 18 Nov 2024 14:40:19 +0600 Subject: [PATCH 37/63] "added package.json" --- .../math/base/special/cosc/package.json | 69 +++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/package.json diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/package.json b/lib/node_modules/@stdlib/math/base/special/cosc/package.json new file mode 100644 index 000000000000..8c9d8063f030 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/cosc/package.json @@ -0,0 +1,69 @@ +{ + "name": "@stdlib/math/base/special/cosc", + "version": "0.0.0", + "description": "Compute the normalized derivative of cardinal sine of a number.", + "license": "Apache-2.0", + "author": { + "name": "The Stdlib Authors", + "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" + }, + "contributors": [ + { + "name": "The Stdlib Authors", + "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" + } + ], + "main": "./lib", + "gypfile": true, + "directories": { + "benchmark": "./benchmark", + "doc": "./docs", + "example": "./examples", + "include": "./include", + "lib": "./lib", + "src": "./src", + "test": "./test" + }, + "types": "./docs/types", + "scripts": {}, + "homepage": "https://github.com/stdlib-js/stdlib", + "repository": { + "type": "git", + "url": "git://github.com/stdlib-js/stdlib.git" + }, + "bugs": { + "url": "https://github.com/stdlib-js/stdlib/issues" + }, + "dependencies": {}, + "devDependencies": {}, + "engines": { + "node": ">=0.10.0", + "npm": ">2.7.0" + }, + "os": [ + "aix", + "darwin", + "freebsd", + "linux", + "macos", + "openbsd", + "sunos", + "win32", + "windows" + ], + "keywords": [ + "stdlib", + "stdmath", + "mathematics", + "math", + "cos", + "cosc", + "sine", + "cardinal", + "derivative", + "trig", + "trigonometry", + "normalized" + ] + } + \ No newline at end of file From 3b85eec0874295c5fd36683e32119f5839ed38c6 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Mon, 18 Nov 2024 14:47:30 +0600 Subject: [PATCH 38/63] "added repl.txt" --- .../math/base/special/cosc/docs/repl.txt | 28 +++++++++++++++++++ .../math/base/special/cosc/lib/main.js | 2 +- 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/docs/repl.txt diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/docs/repl.txt b/lib/node_modules/@stdlib/math/base/special/cosc/docs/repl.txt new file mode 100644 index 000000000000..cdca9b9f0ce6 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/cosc/docs/repl.txt @@ -0,0 +1,28 @@ + +{{alias}}( x ) + Computes the normalized derivative of cardinal sine of a number. + + Parameters + ---------- + x: number + Input value. + + Returns + ------- + y: number + Derivative of cardinal sine. + + Examples + -------- + > var y = {{alias}}( 0.5 ) + ~-1.273 + > y = {{alias}}( -1.2 ) + ~0.544 + > y = {{alias}}( 0.0 ) + 0.0 + > y = {{alias}}( NaN ) + NaN + + See Also + -------- + diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js b/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js index 5379cda2c783..db7f87b30afe 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js +++ b/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js @@ -60,7 +60,7 @@ var PI = require( '@stdlib/constants/float64/pi' ); * * @example * var v = cosc( -1.2 ); -* // returns ~-0.544 +* // returns ~0.544 * * @example * var v = cosc( 0.0 ); From c2c97d13d9e8d2a5042f01e4a24c84534866515e Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Mon, 18 Nov 2024 14:50:23 +0600 Subject: [PATCH 39/63] "added package" --- lib/node_modules/@stdlib/math/base/special/cosc/package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/package.json b/lib/node_modules/@stdlib/math/base/special/cosc/package.json index 8c9d8063f030..f13b6b26ffc9 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/package.json +++ b/lib/node_modules/@stdlib/math/base/special/cosc/package.json @@ -58,9 +58,8 @@ "math", "cos", "cosc", - "sine", + "cos", "cardinal", - "derivative", "trig", "trigonometry", "normalized" From 86d0eee2345d04066f0a029880ed552d5bb00d11 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Mon, 18 Nov 2024 20:28:27 +0600 Subject: [PATCH 40/63] "added index.d.ts" --- .../base/special/cosc/docs/types/index.d.ts | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/docs/types/index.d.ts diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/cosc/docs/types/index.d.ts new file mode 100644 index 000000000000..d8ebfcb55578 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/cosc/docs/types/index.d.ts @@ -0,0 +1,48 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2019 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +// TypeScript Version: 4.1 + +/** +* Computes the normalized derivative of cardinal sine of a number. +* +* @param x - input value +* @returns derivative of cardinal sine +* +* @example +* var v = cosc( 0.5 ); +* // returns ~-1.273 +* +* @example +* var v = cosc( -1.2 ); +* // returns ~0.544 +* +* @example +* var v = cosc( 0.0 ); +* // returns 0.0 +* +* @example +* var v = cosc( NaN ); +* // returns NaN +*/ +declare function cosc( x: number ): number; + + +// EXPORTS // + +export = cosc; From c0ba73e4b836825ec978941726f5f7fdcd3c2bd7 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Mon, 18 Nov 2024 20:31:53 +0600 Subject: [PATCH 41/63] "added test.ts" --- .../math/base/special/cosc/docs/types/test.ts | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/docs/types/test.ts diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/docs/types/test.ts b/lib/node_modules/@stdlib/math/base/special/cosc/docs/types/test.ts new file mode 100644 index 000000000000..f7601a5af01e --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/cosc/docs/types/test.ts @@ -0,0 +1,44 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2019 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +import cosc = require( './index' ); + + +// TESTS // + +// The function returns a number... +{ + cosc( 8 ); // $ExpectType number +} + +// The compiler throws an error if the function is provided a value other than a number... +{ + cosc( true ); // $ExpectError + cosc( false ); // $ExpectError + cosc( null ); // $ExpectError + cosc( undefined ); // $ExpectError + cosc( '5' ); // $ExpectError + cosc( [] ); // $ExpectError + cosc( {} ); // $ExpectError + cosc( ( x: number ): number => x ); // $ExpectError +} + +// The compiler throws an error if the function is provided insufficient arguments... +{ + cosc(); // $ExpectError +} From 224c819a2caca29ea28febc328d2a04b8c4dfefe Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Mon, 18 Nov 2024 20:38:31 +0600 Subject: [PATCH 42/63] "added benchmark.py" --- .../special/cosc/benchmark/scipy/benchmark.py | 97 +++++++++++++++++++ 1 file changed, 97 insertions(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/cosc/benchmark/scipy/benchmark.py diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/scipy/benchmark.py b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/scipy/benchmark.py new file mode 100644 index 000000000000..b9f55dd6358f --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/scipy/benchmark.py @@ -0,0 +1,97 @@ +#!/usr/bin/env python +# +# @license Apache-2.0 +# +# Copyright (c) 2018 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Benchmark scipy.special.cosc.""" + +from __future__ import print_function +import timeit + +NAME = "cosc" +REPEATS = 3 +ITERATIONS = 100000 + + +def print_version(): + """Print the TAP version.""" + print("TAP version 13") + + +def print_summary(total, passing): + """Print the benchmark summary. + + # Arguments + + * `total`: total number of tests + * `passing`: number of passing tests + + """ + print("#") + print("1.." + str(total)) # TAP plan + print("# total " + str(total)) + print("# pass " + str(passing)) + print("#") + print("# ok") + + +def print_results(elapsed): + """Print benchmark results. + + # Arguments + + * `elapsed`: elapsed time (in seconds) + + # Examples + + ``` python + python> print_results(0.131009101868) + ``` + """ + rate = ITERATIONS / elapsed + + print(" ---") + print(" iterations: " + str(ITERATIONS)) + print(" elapsed: " + str(elapsed)) + print(" rate: " + str(rate)) + print(" ...") + + +def benchmark(): + """Run the benchmark and print benchmark results.""" + setup = "from scipy.special import cosc; from random import random;" + stmt = "y = cosc(2.0*random() - 2.0)" + + t = timeit.Timer(stmt, setup=setup) + + print_version() + + for i in range(REPEATS): + print("# python::scipy::" + NAME) + elapsed = t.timeit(number=ITERATIONS) + print_results(elapsed) + print("ok " + str(i+1) + " benchmark finished") + + print_summary(REPEATS, REPEATS) + + +def main(): + """Run the benchmark.""" + benchmark() + + +if __name__ == "__main__": + main() From ffdc8304b967c8407e077441ce1ee04c69243da4 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Fri, 22 Nov 2024 23:13:56 +0600 Subject: [PATCH 43/63] "fixed spacing conventions" --- .../cosc/benchmark/c/native/benchmark.c | 6 +-- .../math/base/special/cosc/lib/main.js | 2 +- .../@stdlib/math/base/special/cosc/src/main.c | 2 +- .../math/base/special/cosc/test/test.js | 50 +++++++++---------- .../base/special/cosc/test/test.native.js | 50 +++++++++---------- 5 files changed, 55 insertions(+), 55 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c index 3cfe6cf00dbb..7878599205ed 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c +++ b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c @@ -55,7 +55,7 @@ static void print_summary( int total, int passing ) { * @param elapsed elapsed time in seconds */ static void print_results( double elapsed ) { - double rate = (double)ITERATIONS / elapsed; + double rate = ( double )ITERATIONS / elapsed; printf( " ---\n" ); printf( " iterations: %d\n", ITERATIONS ); printf( " elapsed: %0.9f\n", elapsed ); @@ -71,7 +71,7 @@ static void print_results( double elapsed ) { static double tic( void ) { struct timeval now; gettimeofday( &now, NULL ); - return (double)now.tv_sec + (double)now.tv_usec/1.0e6; + return ( double )now.tv_sec + ( double )now.tv_usec/1.0e6; } /** @@ -81,7 +81,7 @@ static double tic( void ) { */ static double rand_double( void ) { int r = rand(); - return (double)r / ( (double)RAND_MAX + 1.0 ); + return ( double ) r / ( ( double ) RAND_MAX + 1.0 ); } /** diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js b/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js index db7f87b30afe..5080e956c2e7 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js +++ b/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js @@ -80,7 +80,7 @@ function cosc( x ) { if ( x === 0.0 ) { return 0.0; } - return (cospi( x ) - (sinpi( x )/(PI*x))) / x; + return ( cospi( x ) - ( sinpi( x ) / ( PI*x ) ) ) / x; } diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/src/main.c b/lib/node_modules/@stdlib/math/base/special/cosc/src/main.c index 06749206d509..344efcfdb64d 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/src/main.c +++ b/lib/node_modules/@stdlib/math/base/special/cosc/src/main.c @@ -62,5 +62,5 @@ double stdlib_base_cosc( const double x ) { if ( x == 0.0 ) { return 0.0; } - return (stdlib_base_cospi( x ) - (stdlib_base_sinpi( x )/(STDLIB_CONSTANT_FLOAT64_PI * x))) / x; + return ( stdlib_base_cospi( x ) - ( stdlib_base_sinpi( x ) / ( STDLIB_CONSTANT_FLOAT64_PI * x ) ) ) / x; } diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/test.js b/lib/node_modules/@stdlib/math/base/special/cosc/test/test.js index f7741328b609..567592dc83a9 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/test/test.js +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/test.js @@ -58,13 +58,13 @@ tape( 'the function computes the derivative of cardinal sine', function test( t expected = data.expected; for ( i = 0; i < x.length; i++ ) { - y = cosc( x[i] ); + y = cosc( x[ i ] ); if ( y === expected[ i ] ) { - t.equal( y, expected[ i ], 'x: '+x[i]+'. Expected: '+expected[i] ); + t.equal( y, expected[ i ], 'x: '+x[ i ]+'. Expected: '+expected[ i ] ); } else { - delta = abs( y - expected[i] ); - tol = 2.0 * EPS * abs( expected[i] ); - t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y+'. Expected: '+expected[i]+'. Tolerance: '+tol+'.' ); + delta = abs( y - expected[ i ] ); + tol = 2.0 * EPS * abs( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. Value: '+y+'. Expected: '+expected[ i ]+'. Tolerance: '+tol+'.' ); } } t.end(); @@ -82,13 +82,13 @@ tape( 'the function computes the derivative of cardinal sine (large negative)', expected = largeNegative.expected; for ( i = 0; i < x.length; i++ ) { - y = cosc( x[i] ); + y = cosc( x[ i ] ); if ( y === expected[ i ] ) { - t.equal( y, expected[ i ], 'x: '+x[i]+'. Expected: '+expected[i] ); + t.equal( y, expected[ i ], 'x: '+x[ i ]+'. Expected: '+expected[ i ] ); } else { - delta = abs( y - expected[i] ); - tol = 2.0 * EPS * abs( expected[i] ); - t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y+'. Expected: '+expected[i]+'. Tolerance: '+tol+'.' ); + delta = abs( y - expected[ i ] ); + tol = 2.0 * EPS * abs( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. Value: '+y+'. Expected: '+expected[ i ]+'. Tolerance: '+tol+'.' ); } } t.end(); @@ -106,13 +106,13 @@ tape( 'the function computes the derivative of cardinal sine (large positive)', expected = largePositive.expected; for ( i = 0; i < x.length; i++ ) { - y = cosc( x[i] ); + y = cosc( x[ i ] ); if ( y === expected[ i ] ) { - t.equal( y, expected[ i ], 'x: '+x[i]+'. Expected: '+expected[i] ); + t.equal( y, expected[ i ], 'x: '+x[ i ]+'. Expected: '+expected[ i ] ); } else { - delta = abs( y - expected[i] ); - tol = 2.0 * EPS * abs( expected[i] ); - t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y+'. Expected: '+expected[i]+'. Tolerance: '+tol+'.' ); + delta = abs( y - expected[ i ] ); + tol = 2.0 * EPS * abs( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. Value: '+y+'. Expected: '+expected[ i ]+'. Tolerance: '+tol+'.' ); } } t.end(); @@ -130,13 +130,13 @@ tape( 'the function computes the derivative of cardinal sine (tiny negative)', f expected = tinyNegative.expected; for ( i = 0; i < x.length; i++ ) { - y = cosc( x[i] ); + y = cosc( x[ i ] ); if ( y === expected[ i ] ) { - t.equal( y, expected[ i ], 'x: '+x[i]+'. Expected: '+expected[i] ); + t.equal( y, expected[ i ], 'x: '+x[ i ]+'. Expected: '+expected[ i ] ); } else { - delta = abs( y - expected[i] ); - tol = EPS * abs( expected[i] ); - t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y+'. Expected: '+expected[i]+'. Tolerance: '+tol+'.' ); + delta = abs( y - expected[ i ] ); + tol = EPS * abs( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. Value: '+y+'. Expected: '+expected[ i ]+'. Tolerance: '+tol+'.' ); } } t.end(); @@ -154,13 +154,13 @@ tape( 'the function computes the derivative of cardinal sine (tiny positive)', f expected = tinyPositive.expected; for ( i = 0; i < x.length; i++ ) { - y = cosc( x[i] ); + y = cosc( x[ i ] ); if ( y === expected[ i ] ) { - t.equal( y, expected[ i ], 'x: '+x[i]+'. Expected: '+expected[i] ); + t.equal( y, expected[ i ], 'x: '+x[ i ]+'. Expected: '+expected[ i ] ); } else { - delta = abs( y - expected[i] ); - tol = EPS * abs( expected[i] ); - t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y+'. Expected: '+expected[i]+'. Tolerance: '+tol+'.' ); + delta = abs( y - expected[ i ] ); + tol = EPS * abs( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. Value: '+y+'. Expected: '+expected[ i ]+'. Tolerance: '+tol+'.' ); } } t.end(); diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/cosc/test/test.native.js index 0245b36b6ef7..5c15299a3c21 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/test/test.native.js +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/test.native.js @@ -67,13 +67,13 @@ tape( 'the function computes the derivative of cardinal sine', opts, function te expected = data.expected; for ( i = 0; i < x.length; i++ ) { - y = cosc( x[i] ); + y = cosc( x[ i ] ); if ( y === expected[ i ] ) { - t.equal( y, expected[ i ], 'x: '+x[i]+'. Expected: '+expected[i] ); + t.equal( y, expected[ i ], 'x: '+x[ i ]+'. Expected: '+expected[ i ] ); } else { - delta = abs( y - expected[i] ); - tol = 2.0 * EPS * abs( expected[i] ); - t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y+'. Expected: '+expected[i]+'. Tolerance: '+tol+'.' ); + delta = abs( y - expected[ i ] ); + tol = 2.0 * EPS * abs( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. Value: '+y+'. Expected: '+expected[ i ]+'. Tolerance: '+tol+'.' ); } } t.end(); @@ -91,13 +91,13 @@ tape( 'the function computes the cardinal cose (large negative)', opts, function expected = largeNegative.expected; for ( i = 0; i < x.length; i++ ) { - y = cosc( x[i] ); + y = cosc( x[ i ] ); if ( y === expected[ i ] ) { - t.equal( y, expected[ i ], 'x: '+x[i]+'. Expected: '+expected[i] ); + t.equal( y, expected[ i ], 'x: '+x[ i ]+'. Expected: '+expected[ i ] ); } else { - delta = abs( y - expected[i] ); - tol = 2.0 * EPS * abs( expected[i] ); - t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y+'. Expected: '+expected[i]+'. Tolerance: '+tol+'.' ); + delta = abs( y - expected[ i ] ); + tol = 2.0 * EPS * abs( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. Value: '+y+'. Expected: '+expected[ i ]+'. Tolerance: '+tol+'.' ); } } t.end(); @@ -115,13 +115,13 @@ tape( 'the function computes the derivative of cardinal sine (large positive)', expected = largePositive.expected; for ( i = 0; i < x.length; i++ ) { - y = cosc( x[i] ); + y = cosc( x[ i ] ); if ( y === expected[ i ] ) { - t.equal( y, expected[ i ], 'x: '+x[i]+'. Expected: '+expected[i] ); + t.equal( y, expected[ i ], 'x: '+x[ i ]+'. Expected: '+expected[ i ] ); } else { - delta = abs( y - expected[i] ); - tol = 2.0 * EPS * abs( expected[i] ); - t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y+'. Expected: '+expected[i]+'. Tolerance: '+tol+'.' ); + delta = abs( y - expected[ i ] ); + tol = 2.0 * EPS * abs( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. Value: '+y+'. Expected: '+expected[ i ]+'. Tolerance: '+tol+'.' ); } } t.end(); @@ -139,13 +139,13 @@ tape( 'the function computes the derivative of cardinal sine (tiny negative)', o expected = tinyNegative.expected; for ( i = 0; i < x.length; i++ ) { - y = cosc( x[i] ); + y = cosc( x[ i ] ); if ( y === expected[ i ] ) { - t.equal( y, expected[ i ], 'x: '+x[i]+'. Expected: '+expected[i] ); + t.equal( y, expected[ i ], 'x: '+x[ i ]+'. Expected: '+expected[ i ] ); } else { - delta = abs( y - expected[i] ); - tol = EPS * abs( expected[i] ); - t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y+'. Expected: '+expected[i]+'. Tolerance: '+tol+'.' ); + delta = abs( y - expected[ i ] ); + tol = EPS * abs( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. Value: '+y+'. Expected: '+expected[ i ]+'. Tolerance: '+tol+'.' ); } } t.end(); @@ -163,13 +163,13 @@ tape( 'the function computes the derivative of cardinal sine (tiny positive)', o expected = tinyPositive.expected; for ( i = 0; i < x.length; i++ ) { - y = cosc( x[i] ); + y = cosc( x[ i ] ); if ( y === expected[ i ] ) { - t.equal( y, expected[ i ], 'x: '+x[i]+'. Expected: '+expected[i] ); + t.equal( y, expected[ i ], 'x: '+x[ i ]+'. Expected: '+expected[ i ] ); } else { - delta = abs( y - expected[i] ); - tol = EPS * abs( expected[i] ); - t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. Value: '+y+'. Expected: '+expected[i]+'. Tolerance: '+tol+'.' ); + delta = abs( y - expected[ i ] ); + tol = EPS * abs( expected[ i ] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. Value: '+y+'. Expected: '+expected[ i ]+'. Tolerance: '+tol+'.' ); } } t.end(); From 2aa082ba85ea92d70beda890efa87d40a057e8e6 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Fri, 22 Nov 2024 23:32:52 +0600 Subject: [PATCH 44/63] "rectified mistake" --- .../@stdlib/math/base/special/cosc/README.md | 2 +- .../base/special/cosc/benchmark/scipy/benchmark.py | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/README.md b/lib/node_modules/@stdlib/math/base/special/cosc/README.md index 85f5a8be1f3c..f8cad5447c38 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/README.md +++ b/lib/node_modules/@stdlib/math/base/special/cosc/README.md @@ -55,7 +55,7 @@ var cosc = require( '@stdlib/math/base/special/cosc' ); #### cosc( x ) -Computes the normalized [cardinal cose][cosc] of a `number`. +Computes the normalized [derivative of cardinal sine][cosc] of a `number`. ```javascript var v = cosc( 0.5 ); diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/scipy/benchmark.py b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/scipy/benchmark.py index b9f55dd6358f..cb960c317f12 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/scipy/benchmark.py +++ b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/scipy/benchmark.py @@ -41,9 +41,9 @@ def print_summary(total, passing): """ print("#") - print("1.." + str(total)) # TAP plan - print("# total " + str(total)) - print("# pass " + str(passing)) + print("1.." + str( total ) ) # TAP plan + print("# total " + str( total ) ) + print("# pass " + str( passing ) ) print("#") print("# ok") @@ -64,9 +64,9 @@ def print_results(elapsed): rate = ITERATIONS / elapsed print(" ---") - print(" iterations: " + str(ITERATIONS)) - print(" elapsed: " + str(elapsed)) - print(" rate: " + str(rate)) + print(" iterations: " + str( ITERATIONS ) ) + print(" elapsed: " + str( elapsed ) ) + print(" rate: " + str( rate ) ) print(" ...") @@ -83,7 +83,7 @@ def benchmark(): print("# python::scipy::" + NAME) elapsed = t.timeit(number=ITERATIONS) print_results(elapsed) - print("ok " + str(i+1) + " benchmark finished") + print("ok " + str( i+1 ) + " benchmark finished") print_summary(REPEATS, REPEATS) From fb22f5d0f729c0c82b6c3e630705cdeebacb3095 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Fri, 22 Nov 2024 23:52:46 +0600 Subject: [PATCH 45/63] "added space" --- .../special/cosc/benchmark/c/native/benchmark.c | 4 ++-- .../base/special/cosc/benchmark/scipy/benchmark.py | 14 +++++++------- .../math/base/special/cosc/examples/c/example.c | 2 +- .../@stdlib/math/base/special/cosc/lib/main.js | 4 ++-- .../@stdlib/math/base/special/cosc/lib/native.js | 4 ++-- .../@stdlib/math/base/special/cosc/test/test.js | 2 +- 6 files changed, 15 insertions(+), 15 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c index 7878599205ed..88d280a10835 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c +++ b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c @@ -55,7 +55,7 @@ static void print_summary( int total, int passing ) { * @param elapsed elapsed time in seconds */ static void print_results( double elapsed ) { - double rate = ( double )ITERATIONS / elapsed; + double rate = ( double ) ITERATIONS / elapsed; printf( " ---\n" ); printf( " iterations: %d\n", ITERATIONS ); printf( " elapsed: %0.9f\n", elapsed ); @@ -71,7 +71,7 @@ static void print_results( double elapsed ) { static double tic( void ) { struct timeval now; gettimeofday( &now, NULL ); - return ( double )now.tv_sec + ( double )now.tv_usec/1.0e6; + return ( double ) now.tv_sec + ( double ) now.tv_usec / 1.0e6; } /** diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/scipy/benchmark.py b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/scipy/benchmark.py index cb960c317f12..9a3ddcd793f8 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/scipy/benchmark.py +++ b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/scipy/benchmark.py @@ -31,7 +31,7 @@ def print_version(): print("TAP version 13") -def print_summary(total, passing): +def print_summary( total , passing ): """Print the benchmark summary. # Arguments @@ -48,7 +48,7 @@ def print_summary(total, passing): print("# ok") -def print_results(elapsed): +def print_results( elapsed ): """Print benchmark results. # Arguments @@ -73,19 +73,19 @@ def print_results(elapsed): def benchmark(): """Run the benchmark and print benchmark results.""" setup = "from scipy.special import cosc; from random import random;" - stmt = "y = cosc(2.0*random() - 2.0)" + stmt = "y = cosc( 2.0*random() - 2.0 )" - t = timeit.Timer(stmt, setup=setup) + t = timeit.Timer( stmt , setup=setup ) print_version() for i in range(REPEATS): print("# python::scipy::" + NAME) - elapsed = t.timeit(number=ITERATIONS) - print_results(elapsed) + elapsed = t.timeit( number = ITERATIONS ) + print_results( elapsed ) print("ok " + str( i+1 ) + " benchmark finished") - print_summary(REPEATS, REPEATS) + print_summary( REPEATS , REPEATS ) def main(): diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/examples/c/example.c b/lib/node_modules/@stdlib/math/base/special/cosc/examples/c/example.c index cbcd02e13fe1..489a7b6be4de 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/examples/c/example.c +++ b/lib/node_modules/@stdlib/math/base/special/cosc/examples/c/example.c @@ -26,6 +26,6 @@ int main( void ) { int i; for ( i = 0; i < 5; i++ ) { y = stdlib_base_cosc( x[ i ] ); - printf( "cosc(%lf) = %lf\n", x[ i ], y ); + printf( "cosc( %lf ) = %lf\n", x[ i ], y ); } } diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js b/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js index 5080e956c2e7..dd1d00626393 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js +++ b/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js @@ -51,8 +51,8 @@ var PI = require( '@stdlib/constants/float64/pi' ); * \end{align*} * ``` * -* @param {number} x - input value -* @returns {number} derivative of cardinal sine +* @param { number } x - input value +* @returns { number } derivative of cardinal sine * * @example * var v = cosc( 0.5 ); diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/lib/native.js b/lib/node_modules/@stdlib/math/base/special/cosc/lib/native.js index 090c2f37a25e..e6fd84132e06 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/lib/native.js +++ b/lib/node_modules/@stdlib/math/base/special/cosc/lib/native.js @@ -29,8 +29,8 @@ var addon = require( './../src/addon.node' ); * Computes the normalized derivative of cardinal sine of a number. * * @private -* @param {number} x - input value -* @returns {number} derivative of cardinal sine +* @param { number } x - input value +* @returns { number } derivative of cardinal sine * * @example * var v = cosc( 0.5 ); diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/test.js b/lib/node_modules/@stdlib/math/base/special/cosc/test/test.js index 567592dc83a9..3067f76b7798 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/test/test.js +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/test.js @@ -42,7 +42,7 @@ var tinyPositive = require( './fixtures/julia/tiny_positive.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.strictEqual( typeof sinc, 'function', 'main export is a function' ); + t.strictEqual( typeof cosc, 'function', 'main export is a function' ); t.end(); }); From 865c8c32c2c737b7346945bdbed39974654918ae Mon Sep 17 00:00:00 2001 From: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com> Date: Fri, 22 Nov 2024 17:54:00 +0000 Subject: [PATCH 46/63] chore: update copyright years --- lib/node_modules/@stdlib/math/base/special/cosc/README.md | 2 +- .../@stdlib/math/base/special/cosc/benchmark/benchmark.js | 2 +- .../@stdlib/math/base/special/cosc/benchmark/scipy/benchmark.py | 2 +- .../@stdlib/math/base/special/cosc/docs/types/index.d.ts | 2 +- .../@stdlib/math/base/special/cosc/docs/types/test.ts | 2 +- .../@stdlib/math/base/special/cosc/examples/index.js | 2 +- lib/node_modules/@stdlib/math/base/special/cosc/lib/index.js | 2 +- lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js | 2 +- .../math/base/special/cosc/test/fixtures/julia/runner.jl | 2 +- lib/node_modules/@stdlib/math/base/special/cosc/test/test.js | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/README.md b/lib/node_modules/@stdlib/math/base/special/cosc/README.md index f8cad5447c38..40725d766899 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/README.md +++ b/lib/node_modules/@stdlib/math/base/special/cosc/README.md @@ -2,7 +2,7 @@ @license Apache-2.0 -Copyright (c) 2018 The Stdlib Authors. +Copyright (c) 2024 The Stdlib Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/benchmark.js index 4f78c522951a..82f1b60e961c 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/benchmark.js +++ b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/benchmark.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2018 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/scipy/benchmark.py b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/scipy/benchmark.py index 9a3ddcd793f8..cb194bcdc7b8 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/scipy/benchmark.py +++ b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/scipy/benchmark.py @@ -2,7 +2,7 @@ # # @license Apache-2.0 # -# Copyright (c) 2018 The Stdlib Authors. +# Copyright (c) 2024 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/cosc/docs/types/index.d.ts index d8ebfcb55578..efa87d70f225 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/math/base/special/cosc/docs/types/index.d.ts @@ -1,7 +1,7 @@ /* * @license Apache-2.0 * -* Copyright (c) 2019 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/docs/types/test.ts b/lib/node_modules/@stdlib/math/base/special/cosc/docs/types/test.ts index f7601a5af01e..3d5b4100c582 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/docs/types/test.ts +++ b/lib/node_modules/@stdlib/math/base/special/cosc/docs/types/test.ts @@ -1,7 +1,7 @@ /* * @license Apache-2.0 * -* Copyright (c) 2019 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/examples/index.js b/lib/node_modules/@stdlib/math/base/special/cosc/examples/index.js index 01eae4d17147..e8aca529d76b 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/examples/index.js +++ b/lib/node_modules/@stdlib/math/base/special/cosc/examples/index.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2018 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/lib/index.js b/lib/node_modules/@stdlib/math/base/special/cosc/lib/index.js index 0e7600ef238c..317285660909 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/lib/index.js +++ b/lib/node_modules/@stdlib/math/base/special/cosc/lib/index.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2018 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js b/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js index dd1d00626393..42ef9846776d 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js +++ b/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2018 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/runner.jl index 8274523f347c..3e5725c0d4b4 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/runner.jl +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/runner.jl @@ -2,7 +2,7 @@ # # @license Apache-2.0 # -# Copyright (c) 2018 The Stdlib Authors. +# Copyright (c) 2024 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/test.js b/lib/node_modules/@stdlib/math/base/special/cosc/test/test.js index 3067f76b7798..3205bbf7c6ca 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/test/test.js +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/test.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2018 The Stdlib Authors. +* Copyright (c) 2024 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. From ea11a36f131b29bd08c69375f1303c6c62109cd2 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Sat, 23 Nov 2024 00:06:44 +0600 Subject: [PATCH 47/63] "added space" --- .../math/base/special/cosc/benchmark/scipy/benchmark.py | 2 +- lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js | 4 ++-- lib/node_modules/@stdlib/math/base/special/cosc/lib/native.js | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/scipy/benchmark.py b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/scipy/benchmark.py index 9a3ddcd793f8..309cf2e2a3f6 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/scipy/benchmark.py +++ b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/scipy/benchmark.py @@ -73,7 +73,7 @@ def print_results( elapsed ): def benchmark(): """Run the benchmark and print benchmark results.""" setup = "from scipy.special import cosc; from random import random;" - stmt = "y = cosc( 2.0*random() - 2.0 )" + stmt = "y = cosc( 2.0 * random() - 2.0 )" t = timeit.Timer( stmt , setup=setup ) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js b/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js index dd1d00626393..5080e956c2e7 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js +++ b/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js @@ -51,8 +51,8 @@ var PI = require( '@stdlib/constants/float64/pi' ); * \end{align*} * ``` * -* @param { number } x - input value -* @returns { number } derivative of cardinal sine +* @param {number} x - input value +* @returns {number} derivative of cardinal sine * * @example * var v = cosc( 0.5 ); diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/lib/native.js b/lib/node_modules/@stdlib/math/base/special/cosc/lib/native.js index e6fd84132e06..090c2f37a25e 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/lib/native.js +++ b/lib/node_modules/@stdlib/math/base/special/cosc/lib/native.js @@ -29,8 +29,8 @@ var addon = require( './../src/addon.node' ); * Computes the normalized derivative of cardinal sine of a number. * * @private -* @param { number } x - input value -* @returns { number } derivative of cardinal sine +* @param {number} x - input value +* @returns {number} derivative of cardinal sine * * @example * var v = cosc( 0.5 ); From f8b10ffdc958ac11e2b10db66e1132daccc49477 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Sat, 23 Nov 2024 18:39:33 +0600 Subject: [PATCH 48/63] "fixed some issues" --- .../base/special/cosc/benchmark/c/native/benchmark.c | 11 +++++++++-- .../@stdlib/math/base/special/cosc/lib/main.js | 4 ++-- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c index 88d280a10835..cdbdf161db4c 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c +++ b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c @@ -23,10 +23,17 @@ #include #include -#define NAME "cosc" +#define NAME "sinc_derivative" #define ITERATIONS 1000000 #define REPEATS 3 +double sinc_derivative(double x) { + if( x == 0.0) { + return 0.0; + } + return (cos ( x ) * x - sin( x ) ) / ( x * x ); +} + /** * Prints the TAP version. */ @@ -99,7 +106,7 @@ static double benchmark( void ) { t = tic(); for ( i = 0; i < ITERATIONS; i++ ) { x = ( 2.0 * rand_double() ) - 2.0; - y = stdlib_base_cosc( x ); + y = sinc_derivative( x ); if ( y != y ) { printf( "should not return NaN\n" ); break; diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js b/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js index 562749ea115e..9a1a5151f421 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js +++ b/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js @@ -21,7 +21,7 @@ // MODULES // var sinpi = require( '@stdlib/math/base/special/sinpi' ); -var cospi=require('@stdlib/math/base/special/cospi'); +var cospi =require('@stdlib/math/base/special/cospi'); var isnan = require( '@stdlib/math/base/assert/is-nan' ); var isInfinite = require( '@stdlib/math/base/assert/is-infinite' ); var PI = require( '@stdlib/constants/float64/pi' ); @@ -80,7 +80,7 @@ function cosc( x ) { if ( x === 0.0 ) { return 0.0; } - return ( cospi( x ) - ( sinpi( x ) / ( PI*x ) ) ) / x; + return ( cospi( x ) - ( sinpi( x ) / ( PI * x ) ) ) / x; } From 6fba45cd7c06ee67b6646a9323cb7defc4c7b82c Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Sat, 23 Nov 2024 19:27:48 +0600 Subject: [PATCH 49/63] "made changes" --- .../base/special/cosc/benchmark/c/native/benchmark.c | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c index cdbdf161db4c..23219d9798f7 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c +++ b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c @@ -23,16 +23,11 @@ #include #include -#define NAME "sinc_derivative" +#define NAME "cosc" #define ITERATIONS 1000000 #define REPEATS 3 -double sinc_derivative(double x) { - if( x == 0.0) { - return 0.0; - } - return (cos ( x ) * x - sin( x ) ) / ( x * x ); -} + /** * Prints the TAP version. @@ -106,7 +101,7 @@ static double benchmark( void ) { t = tic(); for ( i = 0; i < ITERATIONS; i++ ) { x = ( 2.0 * rand_double() ) - 2.0; - y = sinc_derivative( x ); + y = cosc( x ); if ( y != y ) { printf( "should not return NaN\n" ); break; From 7d4d17b84c09684cab0bb6913654eb70fb0af356 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Thu, 28 Nov 2024 13:41:02 +0600 Subject: [PATCH 50/63] "added change" --- lib/node_modules/@stdlib/math/base/special/cosc/README.md | 6 +++--- .../@stdlib/math/base/special/cosc/examples/c/example.c | 2 +- lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/README.md b/lib/node_modules/@stdlib/math/base/special/cosc/README.md index 40725d766899..52bf57e404ff 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/README.md +++ b/lib/node_modules/@stdlib/math/base/special/cosc/README.md @@ -59,10 +59,10 @@ Computes the normalized [derivative of cardinal sine][cosc] of a `number`. ```javascript var v = cosc( 0.5 ); -// returns ~0.637 +// returns ~-1.273 v = cosc( -1.2 ); -// returns ~-0.156 +// returns ~0.544 v = cosc( 0.0 ); // returns 1.0 @@ -169,7 +169,7 @@ int main( void ) { int i; for ( i = 0; i < 5; i++ ) { y = stdlib_base_cosc( x[ i ] ); - printf( "cosc(%lf) = %lf\n", x[ i ], y ); + printf( "cosc(%3f) = %3f\n", x[ i ], y ); } } ``` diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/examples/c/example.c b/lib/node_modules/@stdlib/math/base/special/cosc/examples/c/example.c index 489a7b6be4de..c3ed90229d33 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/examples/c/example.c +++ b/lib/node_modules/@stdlib/math/base/special/cosc/examples/c/example.c @@ -26,6 +26,6 @@ int main( void ) { int i; for ( i = 0; i < 5; i++ ) { y = stdlib_base_cosc( x[ i ] ); - printf( "cosc( %lf ) = %lf\n", x[ i ], y ); + printf( "cosc( %3f ) = %3f\n", x[ i ], y ); } } diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js b/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js index 9a1a5151f421..d6e19fc00b75 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js +++ b/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js @@ -80,7 +80,7 @@ function cosc( x ) { if ( x === 0.0 ) { return 0.0; } - return ( cospi( x ) - ( sinpi( x ) / ( PI * x ) ) ) / x; + return parseFloat((( cospi( x ) - ( sinpi( x ) / ( PI * x ) ) ) / x).toFixed(3)); } From ec814c0479d821d3219cf5c528d758e4d30c8de2 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Fri, 29 Nov 2024 11:44:37 +0600 Subject: [PATCH 51/63] "updated fixture" --- lib/node_modules/@stdlib/math/base/special/cosc/README.md | 2 +- .../@stdlib/math/base/special/cosc/examples/c/example.c | 2 +- lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js | 2 +- .../math/base/special/cosc/test/fixtures/julia/data.json | 2 +- .../base/special/cosc/test/fixtures/julia/large_negative.json | 2 +- .../base/special/cosc/test/fixtures/julia/large_positive.json | 2 +- .../base/special/cosc/test/fixtures/julia/tiny_negative.json | 2 +- .../base/special/cosc/test/fixtures/julia/tiny_positive.json | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/README.md b/lib/node_modules/@stdlib/math/base/special/cosc/README.md index 52bf57e404ff..37864b6f6499 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/README.md +++ b/lib/node_modules/@stdlib/math/base/special/cosc/README.md @@ -169,7 +169,7 @@ int main( void ) { int i; for ( i = 0; i < 5; i++ ) { y = stdlib_base_cosc( x[ i ] ); - printf( "cosc(%3f) = %3f\n", x[ i ], y ); + printf( "cosc(%lf) = %lf\n", x[ i ], y ); } } ``` diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/examples/c/example.c b/lib/node_modules/@stdlib/math/base/special/cosc/examples/c/example.c index c3ed90229d33..489a7b6be4de 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/examples/c/example.c +++ b/lib/node_modules/@stdlib/math/base/special/cosc/examples/c/example.c @@ -26,6 +26,6 @@ int main( void ) { int i; for ( i = 0; i < 5; i++ ) { y = stdlib_base_cosc( x[ i ] ); - printf( "cosc( %3f ) = %3f\n", x[ i ], y ); + printf( "cosc( %lf ) = %lf\n", x[ i ], y ); } } diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js b/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js index d6e19fc00b75..ef9b593c97b6 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js +++ b/lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js @@ -80,7 +80,7 @@ function cosc( x ) { if ( x === 0.0 ) { return 0.0; } - return parseFloat((( cospi( x ) - ( sinpi( x ) / ( PI * x ) ) ) / x).toFixed(3)); + return ( cospi( x ) - ( sinpi( x ) / ( PI * x ) ) ) / x ; } diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/data.json b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/data.json index 9deb0b81476d..d1505214d30c 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/data.json +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/data.json @@ -1 +1 @@ -{"expected":[0.0,-0.0004979484171856053,-0.0009841399885140729,-0.0014465974938411748,-0.001873915821329042,-0.0022555432153013566,-0.002582041805419834,-0.002845320985171439,-0.0030388378693467265,-0.003157759864523715,-0.0031990853139244606,-0.0031617192056659906,-0.0030465020362126353,-0.002856191071681028,-0.0025953944202871545,-0.002270459490870487,-0.0018893185364843,-0.0014612950408170098,-0.0009968756725717792,-0.0005074533850053559,-5.047953504107395e-6,0.0004979891943641825,0.0009892786084450267,0.0014567174418617138,0.0018887775777249986,0.002274789913622713,0.0026052077940286423,0.0028718430868188084,0.0030680690666735405,0.003188985079062221,0.003231538893921081,0.0031946036951719567,0.003079007765459827,0.002887516087604052,0.002624764266710047,0.002297146350598696,0.0019126592622949528,0.001480707628769972,0.0010118737685612493,0.0005176584631119219,1.0198861363700948e-5,-0.0004980295636934392,-0.0009945196882999979,-0.0014670405030020358,-0.0019039383969259704,-0.002294424540413871,-0.002628841279696403,-0.0028989009665132703,-0.0030978913172011774,-0.0032208422133739355,-0.00326464979997276,-0.0032281547830542373,-0.003112172953577059,-0.002919477137058461,-0.0026547309634748686,-0.0023243760378063583,-0.0019364752399723662,-0.0015005159652911758,-0.001027178106299872,-0.0005280724493664604,-1.545589339407222e-5,0.0004980695251135532,0.0009998664106766566,0.0014775729769418826,0.0019194075529372137,0.002314459127279241,0.0026529567659724818,0.002926511251937036,0.0031283229710997546,0.0032533508943310163,0.003298438456543866,0.00326239319062105,0.003146018108595766,0.0029520940078529984,0.002685313086918562,0.0023521654539889717,0.0019607812722298736,0.0015207323804181968,0.0010427982287369107,0.0005387018526958475,2.0822351418051697e-5,-0.0004981090785657377,-0.001005322090856745,-0.0014883214261299312,-0.0019351947067978814,-0.0023349062082004823,-0.002677569362315304,-0.002954691265781971,-0.003159383145946983,-0.0032865315700335456,-0.0033329261431463155,-0.003297340507108926,-0.003180564597991611,-0.0029853873174923,-0.0027165299926846776,-0.0023805322100585694,-0.0019855927834285998,-0.0015413697222672565,-0.0010587440800023894,-0.0005495534558027233,-2.6301676208954497e-5,0.0004981482239912289,0.0010108901837920985,0.0014992926896293514,0.0019513099269824446,0.0023557788460340265,0.002702694816065715,0.0029834590624454606,0.003191091767267006,0.003320405553214996,0.0033681350395562424,0.0033330192356046673,0.0032158346941821626,0.003019378557122128,0.0027484018570227975,0.002409494663957775,0.002010925852557115,0.0015624413845310434,0.001075026026713675,0.0005606343297113969,3.189745487887599e-5,-0.0004981869613324518,-0.0010165742915382609,-0.0015104938978460383,-0.0019677637111083822,-0.0023770906607018085,-0.0027283495464680823,-0.0030128334670749615,-0.0032234696116672655,-0.003354995067429716,-0.0034040882739307583,-0.003369452841914527,-0.0032518516229450554,-0.0030540901382987242,-0.002780949720741039,-0.0024390719606944716,-0.0020367972483311494,-0.0015839613357489504,-0.001091654880652145,-0.0005719518492535973,-3.761342874095078e-5,0.0004982252905318412,0.001022378171167947,0.0015219324882094376,0.0019845670090447563,0.0023988558592064244,0.0027545506808907545,0.0030428341171408273,0.003256538352768117,0.003390323296233511,0.003440809974044072,0.003406665806602925,0.003288639614979209,0.003089545442794039,0.0028141955360155855,0.002469284074977216,0.002063224466578198,0.0016059441504799085,0.0011086419229187027,0.0005835137095606349,4.3453501686560485e-5,-0.0004982632115330347,-0.0010283057431994059,-0.001533616221877156,-0.0020017312475315977,-0.0024210892676064023,-0.0027813160934166492,-0.003073481506728138,-0.0032903206101400993,-0.0034264144355852654,-0.003478325321881563,-0.0034446836804439013,-0.003326223960848225,-0.0031257688756715562,-0.0028481622162732953,-0.0025001518566542887,-0.002090225770078284,-0.001628405042528276,-0.0011259989296769795,-0.0005953279436442237,-4.942174911208309e-5,0.0004983007242796662,0.0010343611005830435,0.0015455532015407746,0.002019268356425221,0.0024438063651054985,0.0028086644459837766,0.0031047970337596863,0.0033248400014794723,0.0034632937497192768,0.0035166606118513114,0.0034835331435485407,0.003364631069569198,0.003162785921883737,0.0028828736893883916,0.0025316970791701855,0.0021178202310554437,0.0016513599003776449,0.001143738199612283,0.0006074029411455721,5.552242744295473e-5,-0.0004983378287165857,-0.001040548518285073,-0.001557751890422174,-0.002037190796694864,-0.002467023320419674,-0.002836615232277634,-0.0031368030503765147,-0.0033601211982765395,-0.003500987630758621,-0.003555843312895935,-0.003523242068456614,-0.003403888531130716,-0.003200623206669064,-0.0029183549544499247,-0.0025639424912796407,-0.0021460277765237355,-0.0016748253250103383,-0.001161872583236179,-0.0006197474683495501,-6.175998429688796e-5,0.0004983745247886269,0.0010468724635200573,0.001570221132549645,0.002055511590311878,0.002490757030600152,0.002865188824589519,0.003169522916727579,0.003396189985250863,0.0035395236623659747,0.0035959021348129865,0.0035638395875052563,0.0034440251832525124,0.003239308560047316,0.0029546321423858986,0.00259691187227384,0.0021748692367183297,0.0016988186702973905,0.0011804155141881586,0.0006323706895593717,6.813906934222675e-5,-0.0004984108124418531,-0.0010533376066790532,-0.0015829701744203663,-0.0020742443521781905,-0.0025150251625112746,-0.002894406523879812,-0.003202981058438294,-0.003433073323855914,-0.0035789306877536333,-0.0036368670991204738,-0.00360535616481757,-0.0034850711827247886,-0.0032788710857435607,-0.0029917325807501194,-0.002630630091004051,-0.002204366396855014,-0.0017233580861699474,-0.001199381042689853,-0.0006452821899462679,-7.466454590211034e-5,0.0004984466916222977,0.0010599488330143533,0.0015960086881562086,0.0020934033242626738,0.0025398461971736074,0.0029242906133038495,0.003237203028056906,0.00347079942018024,0.0036192388824060036,0.0036787696148350255,0.003647823673284301,0.003527058081699554,0.0033193412348973984,0.003029684863012243,0.0026651231690070472,0.002234542052492471,0.0017484625647933205,0.0012187838713316977,0.0006584919999888736,8.134150337040277e-5,-0.0004984821622772376,-0.001066711255137382,-0.0016093467962793224,-0.0021130034121211038,-0.002565239477209873,-0.002954864415482041,-0.003272215570802842,-0.003509397797605817,-0.0036604798318989884,-0.0037216425595647646,-0.003691275476948093,-0.0035700189093381,-0.0033607508849519876,-0.0030685189227173115,-0.0027004183480726107,-0.002265420068788891,-0.0017741519899950786,-0.0012386393933787395,-0.0006720106216383503,-8.817527050085159e-5,0.000498517224353906,0.0010736302264018885,0.0016229950982362409,0.002133060224000768,0.002591225257645969,0.0029861523538260355,0.00330804669497175,0.0035488993746164476,0.0037026866152389693,0.0037655203663567944,0.0037357465192371557,0.003613988259260146,0.0034031334241501426,0.003108266112921947,0.002736544162618248,0.0022970254439807916,0.0018004471902129562,0.0012589637338102466,0.0006858490563475613,9.517142964761325e-5,-0.0004985518778007949,-0.001080711355241041,-0.0016369646988212603,-0.002153590112741015,-0.0026178247603512532,-0.0030181800182567525,-0.003344725747388711,-0.003589336548186579,-0.003745893894182583,-0.0038104391167815476,-0.0037812734175394326,-0.003659002383279734,-0.003446523842110451,-0.0031489592913472677,-0.0027735305172788627,-0.002329384377434712,-0.0018273699952635265,-0.001279773793318108,-0.0007000188351267093,-0.00010233583203185616,0.0004985861225663366,0.0010879605205442054,0.001651267238654529,0.0021746102207105132,0.0026450602324217917,0.003050974235689144,0.003382283494334375,0.003630743283224622,0.0037901380090449408,0.0038564366407827476,0.0038278945646545333,0.0037050992919631983,0.0034909588269975552,0.0031906329117375796,0.002811408770151105,0.0023625243426653605,0.0018549432972521389,0.0013010872955213537,0.0007145320507927611,0.00010967461412752293,-0.0004986199586002391,-0.001095383888156867,-0.0016659149268954672,-0.0021961385280363276,-0.0026729550088480064,-0.0030845631456884472,-0.0034207522084155942,-0.0036731552085880258,-0.003835457081552563,-0.0039035526238738205,-0.0038756502377148556,-0.003752318862593936,-0.003536476869856068,-0.0032333231219556875,-0.002850211822183158,-0.002396474165743659,-0.0018831911159860532,-0.0013229228376689499,-0.000729401392607532,-0.00011719421525729847,0.0004986533858521337,0.0011029879286062277,0.0016809205763798618,0.0022181939044144776,0.0027015335798338228,0.0031189762817496777,0.0034601657618934943,0.003716609720242386,0.003881891125352535,0.003951828722319142,0.003924582715224827,0.0038007029551900286,0.0035831183767293805,0.0032770678694049025,0.0028899742132417537,0.0024312641095693027,0.0019121386692788332,0.0013452999451408507,0.0007446401835075916,0.0001249013965102919,-0.000498686404272945,-0.0011107794361543178,-0.0016962976413981126,-0.0022407961648112304,-0.002730821663179478,-0.003154244658690453,-0.0035005597270388582,-0.00376114609219053,-0.003929482164852002,-0.004001308687002701,-0.003974736402933296,-0.003850295537282631,-0.0036309257892521546,-0.0033219070144208536,-0.002930732225449789,-0.002466925964521319,-0.0019418124485833497,-0.001368239130077827,-0.0007602624201610082,-0.00013280326109271938,0.0004987190138135041,0.0011187655493018677,0.001712060258343741,0.002263966129405304,0.0027608462821736048,0.00319040086670408,0.0035419714841371133,0.0038068055958650603,0.00397827436312883,0.004052038496758475,0.004026157969326973,0.0039011428182383874,0.0036799437144705953,0.003367882452348414,0.002972523994440541,0.002503493146061756,0.001972240300425282,0.0013917619545153609,0.0007762828160985754,0.0001409072762459341,-0.000498751214425952,-0.0011269537728676021,-0.0017282232894953666,-0.002287725688147475,-0.0027916358494945565,-0.003227479172668968,-0.0035844403378348733,-0.003853631628745344,-0.004028314159732833,-0.00410406650201642,-0.004078896491613337,-0.003953293393987211,-0.0037302190647274754,-0.003415038245086422,-0.003015389629249405,-0.0025410007999179213,-0.002003451514168219,-0.0014158910984247287,-0.0007927168482044509,-0.00014922129686829603,0.0004987830060623196,0.0011353520017919668,0.0017448023702120214,0.0023120978703630836,0.0028232202576643542,0.003265515629379815,0.0036280076425864788,0.0039016698530433777,0.004079650419280244,0.004157443579707545,0.004133003613153557,0.0040067984031086894,0.003781801208532114,0.0034634207629714703,0.003059371341631531,0.0025794859155436026,0.0020354769166868003,0.001440650433117972,0.000809580806869352,0.00015775359100368895,-0.0004988143886759659,-0.0011439685468184455,-0.0017618139598620337,-0.0023371069198578395,-0.0028556309766647717,-0.003304548193428921,-0.003672716938044913,-0.003950968345388164,-0.004132334591842,-0.004212223300471078,-0.0041885337134062684,-0.004061711695331435,-0.003834742133435919,-0.0035130788379586146,-0.003104513585685571,-0.002618987448624658,-0.002068348974596193,-0.0014660651005107062,-0.0008268918501536366,-0.00016651286736473167,0.0004988453622201207,0.001152812162233677,0.001779275396828912,0.002362778376046668,0.0028889011593813633,0.003344616852551425,0.003718614095326008,0.004001577758542031,0.004186420886231281,0.00426846210931905,0.004245544091558453,0.0041180900136112,0.00388909662204386,0.0035640639291636806,0.0031508632087512657,0.002659546453486447,0.0021021019047454403,0.0014921615988015187,0.0008446680623330474,0.00017550830508916387,-0.0004988759266493618,-0.001161892075855331,-0.0017972049579859917,-0.0023891391616713644,-0.0029230657556224377,-0.0033857637633289235,-0.003765747475181695,-0.004053551496290331,-0.004241966457418358,-0.004326219521038878,-0.0043040951651462525,-0.0041759931910834505,-0.003944922442412582,-0.0036164303019479366,-0.0031984696146588124,-0.0027012062263444907,-0.002136771793770344,-0.0015189678751761518,-0.0008629285172529031,-0.0001847495859371765,0.0004989060819181181,0.001171218021489431,0.001815621923063279,0.0024162176777453677,0.0029581616355329,0.003428033400252026,0.0038141680992259076,0.0041069459027759676,0.004299031609433661,0.004385558331756163,0.004364250685113706,0.004235484364325886,0.004002280554228679,0.0036702352218526595,0.0032473849405272276,0.0027440124604536926,0.0021723967275787473,0.0015465134262239314,0.0008816933469513917,0.00019424692917314562,-0.0004989358279821871,-0.00118080027409129,-0.0018345466443885374,-0.002444043906424473,-0.0029942277233235655,-0.0034714727172461034,-0.0038639298354905707,-0.00416182046768777,-0.004357680015274515,-0.004446544848238485,-0.004426077968918025,-0.00429663020453047,-0.004061235332311548,-0.003725539164843909,-0.0032976642484385324,-0.00278801341432119,-0.002209016931750107,-0.0015748294068192038,-0.0009009838160769917,-0.0002040111293898457,0.0004989651647971963,0.0011906496879029755,0.001854000622527379,0.00247264952259193,0.0030313051423310907,0.003516131322897338,0.003915089599727332,0.004218238048875759,0.004417978955500211,0.0045092491367007045,0.004489648153473979,0.004359501168362803,0.004121854809166118,0.003782406045486839,0.003349365733473225,0.002833260094286147,0.0022466749239332625,0.001603948748318357,0.0009208224026722554,0.0002140535975756675,-0.0004989940923201636,-0.0012007777378588993,-0.0018740065884190315,-0.0025020680150257975,-0.0030694373725496556,-0.0035620616707499387,-0.003967707574039605,-0.004276265114142462,-0.004479999577396246,-0.004573745293074292,-0.004555036469934834,-0.004424171770494853,-0.004184210938504212,-0.0038409034648629265,-0.0034025509497552704,-0.0028798064529203336,-0.002285415679457893,-0.001633906287010624,-0.0009412328859753212,-0.0002243864057470228,0.0004990226105079152,0.0012111965645976927,0.0018945885926617018,0.002532334818128306,0.0031086704218984186,0.0036093192662131927,0.004021847444607473,0.004335972004167912,0.004543817176805342,0.00464011173693275,0.004622322542542066,0.004490720880025752,0.004248379881883172,0.0039011029802484038,0.003457285056356873,0.002927709604868079,0.0023252868115176983,0.001664738903877841,0.0009622404419539777,0.00023502233551934661,-0.0004990507193186902,-0.001221919023445403,-0.0019157721026907203,-0.0025634874553012907,-0.003149053012647872,-0.003657962891790274,-0.004077576660482938,-0.004397433218752754,-0.0046095115049737305,-0.004708431531524252,-0.004691590714039125,-0.004559232043271503,-0.004314442320859904,-0.003963080398819343,-0.0035136370851241356,-0.0029770300619459526,-0.002366338767438618,-0.0016964856768440163,-0.0009838717473853724,-0.0002459749310211105,0.0004990784187105133,0.0012329587377918046,0.001937584108669108,0.0025955656951928766,0.0031906367845885584,0.003708054852554489,0.004134966715663405,0.004460727728830894,0.004677167103040538,0.004778792732657876,0.0047629304004462095,0.004629793835699608,0.004382483797353004,0.004026916097914493,0.0035716802327426353,0.0030278319895318258,0.002408625042738683,0.0017291880468313775,0.0010061550933810979,0.000257258556617783,-0.0004991057086428458,-0.0012443301573194486,-0.00196005323902232,-0.00262861172217786,-0.0032334765167283713,-0.0037596612440242093,-0.004194093456927031,-0.004525939316996899,-0.004746873667121443,-0.004851288769524329,-0.004836436478333121,-0.004702500246127501,-0.004452595085229361,-0.004092695374704395,-0.00363149217963671,-0.003080183486532642,-0.0024522024148836115,-0.001762889999112639,-0.001029120509375415,-0.0002688884599578775,0.0004991325890751277,0.0012560486216152238,0.0019832098866509633,0.0026626703226140984,0.0032776303695147735,0.003812852244862413,0.00425503742021364,0.0045931569496381495,0.004818726447300286,0.004926018860914603,0.0049122097081178645,0.004777451096687194,0.0045248725965120525,0.004160508828461759,0.00369315543862843,0.0031341568914942967,0.002497131198891782,0.0017976382616219783,0.0010527998987214108,0.0002808808409249539,-0.0004991590599673905,-0.001268130429746832,-0.002007086346997732,-0.0026977890885985433,-0.0033231601498391965,-0.0038677024371222344,-0.00431788419869166,-0.0046624751841449616,-0.004892826684262159,-0.00500308847073524,-0.004990357197361619,-0.004854752502503775,-0.004599418826029224,-0.004230452779039355,-0.0037567577366424847,-0.0031898291177523837,-0.0025434755272024895,-0.0018334825221112672,-0.0010772271871774145,-0.0002932529271535201,0.0004991851212808195,0.0012805929164737,0.0020317169692812696,0.002734018641177403,0.0033701316013577025,0.003924291157115461,0.0043827248460450085,0.004733994615120348,0.004969282087775558,0.005082609807218276,0.005070992908540356,0.004934517375537622,0.0046763428388188755,0.004302629725616512,0.0038223924331743596,0.0032472820208839064,0.002591303656543708,0.0018704756662674044,0.001102438485742836,0.0003060230568437195,-0.0004992107729767691,-0.0012934545358373121,-0.0020571383223919448,-0.0027714128752081325,-0.003418614723000364,-0.003982702880372353,-0.004449656318979023,-0.004807822364015872,-0.005048207361780579,-0.0051647023707949305,-0.005154238216354864,-0.005016865977622425,-0.00475576080516197,-0.004377148850312425,-0.0038901589797166376,-0.003306602802156573,-0.0026406883048833213,-0.0019086740391963822,-0.0011284722694826124,-0.0003192107697180752,0.0004992360150173086,0.0013067349529809705,0.002083389377130332,0.002810029228366162,0.0034686841189110838,0.004043027644622638,0.004518781963465712,0.004884072617206557,0.0051297247814656565,0.00524949355625904,0.005240222520311385,0.005101926528395135,0.004837796588765052,0.004454126571867653,0.003960163424899833,0.0033678844521541663,0.0026917070219641434,0.0019481377329887916,0.001155369574205037,0.00033283690706444556,-0.0004992608473651126,-0.0013204551451590709,-0.002110511706700611,-0.0028499289771196233,-0.0035204193834989695,-0.004105361515251484,-0.004590212049858264,-0.004962867218188989,-0.005213964828439405,-0.005337119315601866,-0.005329083919074996,-0.005189835874581361,-0.0049225823943547355,-0.004533687155300853,-0.004032518970743513,-0.003431226239326559,-0.0027444425973930627,-0.00198893090345579,-0.0011831742131067637,-0.0003469237219449453,0.0004992852699834612,0.001334637513027222,0.002138549707627634,0.0028911775628799184,0.003573905525780575,0.004169807098291436,0.004664064362702018,0.0050443363203623295,0.005301066890937123,0.005427724888771913,0.0054209699539874675,0.005280740227984156,0.005010259481806343,0.004615963384254445,0.0041073465861544605,0.003496734248862375,0.0027989835108012304,0.0020311221195462256,0.001211933015790789,0.0003614950007958476,-0.0004993092828362403,-0.001349306003455068,-0.002167550843566953,-0.002933844951979487,-0.003629233437771507,-0.00423647410671219,-0.004740464851877603,-0.005128619107748382,-0.005391180036965443,-0.0055214656106216805,-0.005516038430169592,-0.005374795980547332,-0.005100978954919898,-0.0047010973036822395,-0.0041847756846658795,-0.003564521978037302,-0.002855424429223849,-0.0020747847494479673,-0.001241696092400159,-0.0003765761978162575,0.0004993328858879418,0.0013644862452781303,0.002197565914824165,0.0029780060336419465,0.0036865004123560227,0.004305479986582424,0.004819548352648121,0.005215864592045647,0.005484463869405808,0.005618507803472118,0.0056144583248202125,0.005472170606050852,0.005194902634108511,0.004789241041616164,0.00426494487440376,0.0036347109950666994,0.0029138667575810077,0.002119997387946734,0.0012725171260012716,0.00039219458374272734,-0.0004993560791036628,-0.0013802056996074816,-0.002228649356802987,-0.003023741060706416,-0.003745810716841524,-0.004376950610621241,-0.0049014593832697444,-0.005306232495619118,-0.0055810894733952805,-0.005719029766083681,-0.0057164107937097515,-0.0055730436593746996,-0.005292204023601741,-0.004880557720013452,-0.0043480027894247505,-0.0037074316695068334,-0.002974419248993278,-0.0021668443302790726,-0.0013044536968056491,-0.0004083794108390892,0.0004993788624491068,0.0013964938265517643,0.0022608595710706075,0.003071136138562334,0.0038072762293109965,0.004451021047755252,0.004986353030091614,0.005399894231433152,0.005681240467815142,0.005823222871405137,0.0058220902884803544,0.00567760788587446,0.005393069385325811,0.0049752224661573485,0.004434109012914148,0.0037828239834388124,0.003037198682660485,0.0022154160984898313,0.001337567642349765,0.00042516209620153196,-0.0004994012358905829,-0.001413382270481044,-0.002294259293276324,-0.0031202837685617006,-0.0038710171459441123,-0.0045278364185797,-0.005074395931549558,-0.005497033992576092,-0.005785114174483438,-0.005931292787319428,-0.005931705799250733,-0.0057860704552892585,-0.005497698933444512,-0.005073423537804843,-0.0045234351043086955,-0.003861038434053021,-0.0031023306181918254,-0.002265810027208975,-0.0013719254583731547,-0.0004425764257956385,0.0004994231993950062,0.0014309050662837338,0.002328916002800086,0.0031712834531242825,0.003937162768715742,0.004607552848123224,0.0051657673741894745,0.005597849965947223,0.005892922920715492,0.00604346083677062,0.006045482239232985,0.00589865433680216,0.0056063081656796115,0.005175363577291166,0.004616165744253739,0.0039422370398797205,0.0031699502366417673,0.002318130916824251,0.0014075987458627799,0.00046065878201354227,-0.0004994447529298979,-0.0014490988694453005,-0.0023649023797592404,-0.003224242370864638,-0.004005852384333669,-0.004690338529078103,-0.005260660515888773,-0.005702555686933521,-0.006004895493344948,-0.006159965516198533,-0.006163661990663994,-0.006015599834457481,-0.005719129350038298,-0.00528126101217035,-0.004712500013473497,-0.004026594464822248,-0.0032402032801042424,-0.0023724917632710714,-0.0014446647105886001,-0.0004794483979762931,0.0004994658964633853,0.0014680032132216182,0.002402296815886421,0.003279276131380149,0.004077236246987845,0.004776374910732589,0.005359283753837758,0.0058113815545614185,0.006121278765158374,0.006281064194202998,0.0062865066344118545,0.0061371663051847155,0.005836413188532,0.005391351622764299,0.004812652824190476,0.004114299276403143,0.003313247103609064,0.002429014575136549,0.0014832067224623852,0.00049898764232188,-0.0004994866299642018,-0.0014876607967040138,-0.0024411839868356293,-0.003336509620886159,-0.004151476679503171,-0.004865858031292078,-0.0054618622576696665,-0.005924576529748495,-0.006242339518075985,-0.006407035015899065,-0.006414298889231547,-0.006263634085278337,-0.0059584306829663135,-0.005505890300295326,-0.004916856525754135,-0.004205555357299137,-0.003389251855298386,-0.002487831290511065,-0.0015233149432513535,-0.0005193223388304313,0.0004995069534018319,0.0015081178081936151,0.002481655494709924,0.003396077951716217,0.004228749309879922,0.004959000014178264,0.005568639691477361,0.006042410043000381,0.006368366491416408,0.006538179042619891,0.006547344790928543,0.006395306655450966,0.006085475232027197,0.005625153023194407,0.005025362709726539,0.004300583492403815,0.003468401803513102,0.0025490848080893997,0.0015650870325921698,0.000540502125959515,-0.0004995268667459349,-0.0015294242890396418,-0.002523810591072749,-0.003458127530881927,-0.004309244463048439,-0.005056030752344932,-0.0056798801524359024,-0.006165174142321336,-0.006499672688346078,-0.006674822661613705,-0.006685976146785181,-0.006532513079655107,-0.006217864993821124,-0.005749439083839183,-0.00513844424394292,-0.004399623157422036,-0.00355089683257666,-0.002612930149483023,-0.0016086289439431784,-0.0005625808622302939,0.0004995463699672048,0.0015516345439747503,0.002567756992455373,0.003522817265481432,0.004393168731053918,0.0051571998087626405,0.00579587035849868,0.006293185917383429,0.00663659797929637,0.006817320306335428,0.006830553306687212,0.0066756107589302964,0.0063559455539161066,0.005879073603542854,0.0052563975701654195,0.004502934539498232,0.0036369541328365278,0.002679535772645588,0.0016540558241312868,0.0005856170844319539,-0.0004995654630368001,-0.001574807605029865,-0.0026136118024667624,-0.0035903199258494715,-0.004480746748942261,-0.005262778566147284,-0.005916922123318421,-0.006426790242315971,-0.006779512047935621,-0.00696605753506431,-0.006981468299673631,-0.006824988548794429,-0.006500092945987263,-0.006014410380286908,-0.005379545306061812,-0.004610800825773317,-0.003726810115047434,-0.0027490850598400076,-0.0017014930325724936,-0.0006096745268524057,0.0004995841459264859,0.0015990077573746666,0.002661502557124518,0.00366082369106865,0.004572223208487779,0.005373062664920417,0.006043375163372362,0.006566362887066885,0.006928817733460248,0.007121454524150196,0.007139148393392101,0.006981070297430318,0.006650717080657745,0.006155835121716455,0.005508239199596709,0.004723530802254397,0.0038207225846256412,0.0028217780078207697,0.001751077299161873,0.0006348227112328063,-0.0004996024186086334,-0.0016243051369436027,-0.0027115684130571555,-0.0037345339059533106,-0.004667865147774014,-0.0054883747755184375,-0.006175600290505054,-0.006712314056442612,-0.007084954832834188,-0.007283970042533686,-0.007304060144513753,-0.007144318872459579,-0.0068082656483729465,-0.00630376912560896,-0.005642863492807218,-0.004841461813221321,-0.003918973217882978,-0.0028978331530358048,-0.0018029580433547453,-0.000661137618945707,0.0004996202810562207,0.0016507764115494547,0.002763961501886978,0.0038116750840514395,0.00476796456174382,0.005609067759797775,0.006314003053072047,0.00686509242701998,0.0072484044385550265,0.007454105986715664,0.007476714020971239,0.007315240756871837,0.00697322857456826,0.00645867348177893,0.005783838762709905,0.004964963140903979,0.004021870390332069,0.002977489770878448,0.0018572988812404086,0.0006887024590844695,-0.0004996377332428323,-0.0016785055594146566,-0.0028188484785587834,-0.0038924931978167655,-0.004872841387469698,-0.005735528286773773,-0.006459027900989132,-0.00702518976560601,-0.007419693902059468,-0.007632412570596073,-0.007657669692472181,-0.00749439131022715,-0.0071461431205133005,-0.006621053883690652,-0.005931626320208761,-0.005094439876749037,-0.00412975241688066,-0.0030610103956079625,-0.0019142793526266359,-0.0007176085488191038,0.0004996547751426591,0.0017075847617731318,0.0028764122968070907,0.003977258305157144,0.00498284692843379,0.005868180980738414,0.006611162964793749,0.0071931462293892065,0.007599402530636992,0.007819494283229648,0.007847542104792373,0.007682380810259297,0.007327599741707257,0.006791466155552376,0.006086733263927448,0.005230337369769898,0.004242991275637051,0.003148683716845993,0.001974096906540806,0.0007479563256406181,-0.0004996714067304989,-0.001738115429529981,-0.002936854251610923,-0.00406626757144897,-0.005098367795032375,-0.006007493195508426,-0.0067709455569826904,-0.007369556468131376,-0.007788168147512269,-0.008016016750413116,-0.008047008476746451,-0.007879881413354087,-0.007518248838415677,-0.006970522622169472,-0.006249718305618962,-0.005373146354899208,-0.004361996901685738,-0.0032408279199805166,-0.002036969191411513,-0.0007798565151358726,0.0004996876279817562,0.001770209388071569,0.0030003963366801744,0.004159848758271796,0.005219830454435312,0.00615398052791303,0.006938968526270473,0.007555076673659634,0.007986694671629482,0.008222714664223712,0.008256816387595532,0.008087635201188133,0.007718808560978605,0.0071588994753847635,0.006421198508172137,0.005523408885788824,0.004487222155278088,0.0033377945519282148,0.0021031367059087002,0.0008134314829056422,-0.000499703438872442,-0.0018039902493973679,-0.003067283975158818,-0.004258364265178828,-0.005347706502646116,-0.006308213207596361,-0.0071158876231350015,-0.007750432752783476,-0.008195760906976714,-0.008440400979594465,-0.008477793158440083,-0.00830646351654873,-0.007930073867307213,-0.0073573453238827856,-0.006601857107479762,-0.005681725223228556,-0.0046191685913440795,-0.00343997301124608,-0.002172865878491089,-0.000848816805416778,0.0004997188393791741,0.0018395950070607538,0.0031377891943448924,0.0043622158295575945,0.00548251879613691,0.006470823530053587,0.007302430069540686,0.00795642983820608,0.008416230772783183,0.008669977620587218,0.008710856775759574,0.008537277835914221,0.008152927073374361,0.007566691154240954,0.0067924526271774775,0.005848761863716986,0.004758393185276712,0.003547795783489767,0.002246452658789748,0.0008861631022999444,-0.0004997338294791775,-0.0018771758973029884,-0.00321221433100436,-0.004471850013078171,-0.005624848611131677,-0.006642514537169457,-0.007499404568950085,-0.008173963400150804,-0.008649065257907065,-0.008912447993631547,-0.008957028661184158,-0.008781092482245416,-0.008388350191923908,-0.007787861982682491,-0.006993829542630063,-0.006025260934597521,-0.00490551620515694,-0.0036617445702319786,-0.0023242267229033843,-0.0009256381823074528,0.0004997484091502838,0.0019169025796951778,0.0032908963737016744,0.004587764632723605,0.005775344037248705,0.006824070196554876,0.007707713047173838,0.008404032282078013,0.008895336448238294,0.009168931673829792,0.009217448662096237,0.009039039551906143,0.008637439423280494,0.00802189054207004,0.0072069308103380825,0.006212051235057717,0.005061230465070703,0.0037823574949215487,0.0024065564186282855,0.0009674295674134457,-0.0004997625783709313,-0.0019589647031661435,-0.003374212073684432,-0.0047105163317371,-0.005934729861138727,-0.00701636739054331,-0.00792836448357954,-0.00864775406075006,-0.009156244058995261,-0.009440681717724978,-0.009493392727115867,-0.009312386519058333,-0.008901422249298773,-0.008269933431326915,-0.007432812654895259,-0.006410061269489353,-0.005226312250712162,-0.003910237612970433,-0.0024938546071045717,-0.0010117474751470943,0.0004997763371201655,0.0020035749392887845,0.003462583987844246,0.004840729533390602,0.0061038192581056505,0.007220390101644551,0.008162491280137086,0.008906383228972753,0.009433135009774935,0.009729105167362266,0.009786293844752715,0.009602557095107062,0.009181677692858837,0.008533290260114216,0.007672662102749089,0.006620334705659712,0.0054016342808136195,0.004046063010037322,0.0025865855963589407,0.0010588283592409028,-0.0004997896853776387,-0.00205097258519768,-0.0035564876582846873,-0.004979107081491587,-0.006283527689693456,-0.007437246278714156,-0.008411368728706002,-0.009181332825301973,-0.009727526716384924,-0.010035787453696708,-0.010097766970372691,-0.009911156067689896,-0.009479760448602735,-0.00881342645756093,-0.007927817877065648,-0.006844048800851644,-0.005588181161158136,-0.004190598845406027,-0.0026852734125083896,-0.0011089391344622614,0.0004998026231236104,0.0021014278649721407,0.0036564601859800858,0.005126442950356316,0.00647488950859523,0.007668187994082764,0.008676438283004689,0.009474200297950855,0.010041134949701522,0.010362521592814119,0.010429638856830072,0.01023999903404854,0.009797429776316572,0.00911200059013373,0.008199795430191765,0.007082536482775649,0.00578706790892566,0.0043447117920560625,0.002790511719708866,0.0011623822450053728,-0.0004998151503389469,-0.0021552470927320567,-0.003763110524900982,-0.005283637509551593,-0.006679077906832461,-0.007914635665988832,-0.008959335531986636,-0.0097867986025394,-0.010375907341593256,-0.01071134331031862,-0.010783983952346933,-0.010591148192132959,-0.010136684290920787,-0.009430897264079186,-0.0084903171022179,-0.007337312959898937,-0.005999562283412168,-0.004509387448960357,-0.0029029757854541617,-0.0012195017797111186,0.0004998272670051219,0.0022127789058054284,0.0038771319133282475,0.005451715963279508,0.0068974290198050275,0.008178207336127728,0.009261924021310554,0.010121193812462388,0.01073406392005948,0.011084573547377905,0.011163167855840832,0.01096695567991756,0.010499804102458802,0.00977226699134646,0.008801348673583398,0.007610107983526702,0.006227111867964588,0.0046857514647080855,0.003023437000742889,0.0012806908953553464,-0.0004998389731042158,-0.002274421835964055,-0.003999316978568101,-0.005631850762340595,-0.007131471232654131,-0.00846075427748175,-0.009586336400759704,-0.010479750890638568,-0.011118146456355518,-0.011484870223983422,-0.01156990025341489,-0.011370116387791783,-0.010889402183820174,-0.010138574801233098,-0.009135143951220975,-0.007902905213460468,-0.006471377125873054,-0.00487509532933025,-0.003152780615042457,-0.001346400886507567,0.0004998502686189164,0.002340633566277561,0.004130576210748532,0.005825389024356908,0.007382961047751267,0.008764404588953112,0.009935024818272702,0.010865189766344709,0.011531078943048102,0.01191529170012241,0.012007299840468286,0.011803732751077144,0.011308487412946367,0.010532659921096364,0.00949429952644526,0.008217990581521268,0.006734272026314245,0.0050789080839449925,0.0032920275482569024,0.0014171523444164776,-0.0004998611535325186,-0.0024119423282804933,-0.004271960716259689,-0.006033886318456931,-0.007653927293463686,-0.009091616947969672,-0.010310823079117648,-0.011280654529437162,-0.011976242246615457,-0.012379375139769267,-0.012478974519597449,-0.01227139481779388,-0.011760542506896118,-0.010957809582676706,-0.00988182251890185,-0.008558012147395192,-0.007018014343138497,-0.0052989155953275845,-0.003442361416709588,-0.0014935489886831372,0.0004998716278289244,0.0024889610399411273,0.004424690453950987,0.006259148607228472,0.007946726028588931,0.009445247394025387,0.010717023904460795,0.011729799466980577,0.012457566967998242,0.012881234026972468,0.012989121238799589,0.012777279964959283,0.012249621120025238,0.01141785101478432,0.010301215047417406,0.008926054764172664,0.0073251884244305825,0.005537129588137686,0.0036051622875877326,0.0015762949496619493,-0.0004998816914927914,-0.0025724049855013645,-0.004590189559913259,-0.006503284740106256,-0.00826410928824345,-0.009828632983852033,-0.011157475749066484,-0.012216896927351098,-0.012979649911765305,-0.01342568052680455,-0.013542651320281375,-0.013326278128651059,-0.012780469839135626,-0.01191726707436337,-0.01075658045299994,-0.00932573401241398,-0.007658824195577588,-0.005795909385283268,-0.0037820492007743915,-0.0016662165495358848,0.0004998913445089461,0.0026631141174971538,0.00477013092766235,0.0067687727305811955,0.008609311920774534,0.010245697509493373,0.011636705209578624,0.012746973757611902,0.013547901476296881,0.014018380403549201,0.014145349210283263,0.013924150503129907,0.013358682855896302,0.012461342919452703,0.011252758102018584,0.00976131546474939,0.008022497514517292,0.006078040372536607,0.003974934235069368,0.0017642900102140923,-0.0004999005868632548,-0.0027620814550023795,-0.0049664930020716334,-0.007058544233101008,-0.008986162324739762,-0.010701086379985947,-0.012160073278409874,-0.01332598555263255,-0.014168733985685347,-0.014666051071562288,-0.014804075531180369,-0.014577732631325226,-0.01399090000536382,-0.013056353901713934,-0.011795496162110052,-0.010237867625189771,-0.00842045892941534,-0.00638683472261581,-0.004186091948690948,-0.0018716770589677124,0.0004999094185420486,0.00287048961502302,0.005181632877782936,0.007376093329870268,0.009399225129245892,0.011200340504971734,0.012733976888613273,0.013961041533492402,0.014849804875587623,0.015376717471201845,0.015527029563466578,0.015295197081771052,0.014685063051126261,0.013709808857247924,0.012391675444855458,0.010761460183788627,0.008857800681197014,0.006726262111548684,0.004418249548285629,0.0019897711891188065,-0.0004999178395322659,-0.0029897583307750167,-0.005418381437338485,-0.007725618200310448,-0.009853987110754086,-0.011750123003712042,-0.013366111842978676,-0.014660698091045404,-0.015600334323726319,-0.016160046474455167,-0.016324092491425985,-0.016086397156987883,-0.015450751233894125,-0.01443076883642403,-0.013049602836854107,-0.01133942406496496,-0.009340675894370185,-0.007101121390555302,-0.004674705383281189,-0.0021202584910250057,0.0004999258498214523,0.0031216070153280927,0.005680168691896224,0.00811220788424745,0.01035710244503576,0.012358518460985912,0.01406582010540616,0.01543534676709281,0.0164315253418428,0.017027789454111136,0.01720728197172487,0.016963322376947847,0.016299626238109367,0.01523027005054772,0.013779400937706705,0.011980696971165165,0.009876590028559139,0.0075172690089661464,0.004959486720135837,0.0022651987038900872,-0.0004999334493977613,-0.0032681382378879765,-0.005971191135590831,-0.008542091822640277,-0.010916720628327143,-0.013035433339911882,-0.014844554818168681,-0.01629773412717272,-0.01735712708081612,-0.017994376158632423,-0.018191362554092323,-0.01794071057576574,-0.01724603059531682,-0.016121893082504484,-0.014593532832559097,-0.012696289115624747,-0.010474793999178085,-0.007981927351863769,-0.005277562875973007,-0.002427134790205834,0.0004999406382499534,0.0034319507492050765,0.006296638515645208,0.009022978255544349,0.011542931513181105,0.01379313982622832,0.015716512391245194,0.017263668974895407,0.018394201740041794,0.019077723889096176,0.019294678073157472,0.019036883255541804,0.01830780501559801,0.017122540982044753,0.015507520032454175,0.013499920917995685,0.011146822898354138,0.008504107630408701,0.0056351377808999265,0.002609243472602071,-0.0004999474163673963,-0.003616295024378269,-0.006663006176108738,-0.009564520720248104,-0.012248379345277055,-0.014647026851347274,-0.016699506154456256,-0.018353000702765035,-0.019564186441956236,-0.02030035889874853,-0.02054030625648175,-0.020274905349463867,-0.019507424159823372,-0.018253521502547703,-0.016540941959918513,-0.014408911596615046,-0.011907247368846102,-0.009095200253482405,-0.006040058790253993,-0.002815545785387743,0.0004999537837400654,0.003825291230864221,0.007078533177597518,0.010178973033506908,0.013049125734071241,0.015616656616311184,0.01781619660230772,0.019590998332757507,0.020894391493352135,0.02169100022536502,0.02195769110143211,0.021684226547443234,0.020873605650342932,0.019542081840961685,0.017718854799131892,0.015445441904884439,0.012774742459901284,0.009769815533596396,0.0065023994595077815,0.0030512075413408474,-0.0004999597403585432,-0.004064240946168138,-0.007553829533469238,-0.010882128020591146,-0.013965887828077738,-0.01672728214438614,-0.019095860432197388,-0.021010335728581388,-0.02242015964433271,-0.023286844851593526,-0.023585000752886786,-0.023303054811625274,-0.02244363953422503,-0.0210236331485044,-0.01907385042888005,-0.016638388672805315,-0.013773642326682486,-0.010547007984849897,-0.007035309238976557,-0.0033229779441487865,0.0004999652862140198,0.004340083300719416,0.008102795183753802,0.011694694561402047,0.015025856884812715,0.01801207897605098,0.02057699534870267,0.022654018410591694,0.024188053565816138,0.025136945372233994,0.025472617162239794,0.025181873754796753,0.024266844906126683,0.02274505577530648,0.020649119713045,0.018026057899468144,0.014936259535971766,0.011452105212472875,0.0076562845047458234,0.0036398465970852944,-0.0004999704212984408,-0.004662080146458924,-0.00874400231728427,-0.012644371875125142,-0.016265441537321165,-0.019515516452917665,-0.02231126066493941,-0.024579817743191713,-0.02626069202230027,-0.027307342293871464,-0.027688446438060007,-0.0273888031865175,-0.026409845806358884,-0.024769751780945926,-0.02250314231701907,-0.019660375494870534,-0.01630644685707196,-0.012519520958176236,-0.008389126633342703,-0.004014057258478694,0.0004999751456039276,0.005042876660268622,0.009502838605092542,0.013769070874739083,0.01773453509766169,0.02129861064849018,0.024369627586925395,0.026867203255982346,0.028724323500909723,0.029889115177902006,0.030326263682841043,0.030018037484782146,0.028964890906297284,0.027185626436596784,0.02471710845601142,0.021613531138895765,0.01794525422382682,0.013797231029453067,0.009267063289083565,0.004462726824327107,-0.0004999794591236295,-0.005500201507258421,-0.01041494936313575,-0.015122097767925552,-0.019503395495178665,-0.02344740987169951,-0.026852333797550428,-0.029628585216403165,-0.031701133358597124,-0.03301149209331342,-0.033519328252961715,-0.033203641663975256,-0.03206348363128898,-0.030118191546738345,-0.027407128868067964,-0.023988931670441,-0.01994027501969843,-0.015354184264487215,-0.010337927703079418,-0.005010537669552639,0.0004999833618511663,0.0060597067783225746,0.01153200027416424,0.01678085196368086,0.02167421608177798,0.02608729880143247,0.02990570327086984,0.0330283555186565,0.035370137351112864,0.03686415868545219,0.037463609790383184,0.037143143467409614,0.035899748085635654,0.03375308433137408,0.030745271273611756,0.0269401205777288,0.02242183110802162,0.017293169422147762,0.011673174455208277,0.0056944367032340255,-0.0004999868537807644,-0.006759951276797449,-0.012931816860374167,-0.018862172060414205,-0.024401597056645626,-0.02940837678972897,-0.03375207243519965,-0.03731686260315953,-0.04000457005326665,-0.041737296306062384,-0.042459595079703864,-0.042140125802848705,-0.04077274032215785,-0.03837696906924548,-0.03499788707570154,-0.03070535499784223,-0.025592645387472197,-0.019774479462189867,-0.013384514226768273,-0.006572333619781862,0.0004999899349072574,0.007661685923094698,0.014737340888804688,0.02155112357544523,0.027931079912776952,0.033713394656709875,0.03874651588525045,0.04289504043866155,0.046043262752153966,0.04809829629297826,0.04899268585018807,0.04868644004828253,0.047168426426974816,0.04445708596298059,0.040600439679584474,0.035675376635813556,0.029786229723793814,0.023062662928087254,0.015656910604921387,0.007740425514916414,-0.000499992605226233,-0.008866502592579446,-0.017154864477134043,-0.025159312550910806,-0.03267754510405275,-0.039515712488908054,-0.04549328337019278,-0.05044767005173991,-0.05423849765455427,-0.056751408606241706,-0.057901303270916867,-0.05763492941910795,-0.055932747365152566,-0.05281001368478218,-0.04831704411740193,-0.042538635162671444,-0.03559264357197898,-0.027627742960354456,-0.018820396657069215,-0.00937110520379557,0.000499994864733469,0.010558087605421663,0.02055908147188417,0.03025533970306005,0.03940160679616202,0.047760993603911533,0.0551108797452098,0.06124859141693846,0.06599671540832616,0.06920791613822018,0.07076913177280675,0.07060503777420397,0.06868068134314281,0.06500320784720393,0.05962262010271856,0.05263153288132015,0.04416390777299434,0.034392777052016085,0.023526988931147484,0.011807030010445595,-0.0004999967134257442,-0.013106138745335857,-0.02570898710078263,-0.03799855973928189,-0.04966452564529567,-0.06040360885843763,-0.0699270043039464,-0.07796763352247421,-0.08428706849279462,-0.08868195574505121,-0.09098978085123151,-0.09109382504126834,-0.08892718092846849,-0.08447571285442106,-0.07777986882055789,-0.06893527492942458,-0.05809206921936693,-0.04545295919545017,-0.03127001565003504,-0.015840243913447575,0.0004999981513004579,0.01738163892660421,0.0344104665610476,0.05117549186887743,0.06725793467404159,0.08224065035583895,0.09571779973862263,0.10730455590546896,0.11664663627926364,0.1234294475873677,0.1273866351949371,0.1283078367450191,0.1260454529686226,0.12052026571419104,0.11172575438709667,0.09973098668999142,0.08468198733600249,0.06680151871809546,0.04638723974713541,0.023808242557048796,-0.0004999991783552169,-0.0260422026827106,-0.05227126862330819,-0.07859756170011685,-0.10439931806693205,-0.1290339921507744,-0.15185033272407747,-0.17220095940620642,-0.1894551965684494,-0.2030119122415731,-0.2123121053306151,-0.2168509853762307,-0.21618929530524725,-0.2099636390140855,-0.19789559204640889,-0.17979939477273835,-0.15558805296510078,-0.1252777000001067,-0.0889901075505834,-0.046953266897194146,0.0004999997945887241,0.052935400477926546,0.1098224699283309,0.17054172711652502,0.23439358093258905,0.30060883659125076,0.36836062236504513,0.4367775269616815,0.5049577125022463,0.5719837472068464,0.6369378860023601,0.6989175166812505,0.7570504842010011,0.8105100063474131,0.8585289003020907,0.900412851548317,0.9355524737985185,0.9634339308982586,0.9836479185198092,0.9958968343713442,1.0,0.9958968343713442,0.9836479185198092,0.9634339308982586,0.9355524737985185,0.900412851548317,0.8585289003020907,0.8105100063474131,0.7570504842010011,0.6989175166812505,0.6369378860023601,0.5719837472068464,0.5049577125022463,0.4367775269616815,0.36836062236504513,0.30060883659125076,0.23439358093258905,0.17054172711652502,0.1098224699283309,0.052935400477926546,0.0004999997945887241,-0.046953266897194146,-0.0889901075505834,-0.1252777000001067,-0.15558805296510078,-0.17979939477273835,-0.19789559204640889,-0.2099636390140855,-0.21618929530524725,-0.2168509853762307,-0.2123121053306151,-0.2030119122415731,-0.1894551965684494,-0.17220095940620642,-0.15185033272407747,-0.1290339921507744,-0.10439931806693205,-0.07859756170011685,-0.05227126862330819,-0.0260422026827106,-0.0004999991783552169,0.023808242557048796,0.04638723974713541,0.06680151871809546,0.08468198733600249,0.09973098668999142,0.11172575438709667,0.12052026571419104,0.1260454529686226,0.1283078367450191,0.1273866351949371,0.1234294475873677,0.11664663627926364,0.10730455590546896,0.09571779973862263,0.08224065035583895,0.06725793467404159,0.05117549186887743,0.0344104665610476,0.01738163892660421,0.0004999981513004579,-0.015840243913447575,-0.03127001565003504,-0.04545295919545017,-0.05809206921936693,-0.06893527492942458,-0.07777986882055789,-0.08447571285442106,-0.08892718092846849,-0.09109382504126834,-0.09098978085123151,-0.08868195574505121,-0.08428706849279462,-0.07796763352247421,-0.0699270043039464,-0.06040360885843763,-0.04966452564529567,-0.03799855973928189,-0.02570898710078263,-0.013106138745335857,-0.0004999967134257442,0.011807030010445595,0.023526988931147484,0.034392777052016085,0.04416390777299434,0.05263153288132015,0.05962262010271856,0.06500320784720393,0.06868068134314281,0.07060503777420397,0.07076913177280675,0.06920791613822018,0.06599671540832616,0.06124859141693846,0.0551108797452098,0.047760993603911533,0.03940160679616202,0.03025533970306005,0.02055908147188417,0.010558087605421663,0.000499994864733469,-0.00937110520379557,-0.018820396657069215,-0.027627742960354456,-0.03559264357197898,-0.042538635162671444,-0.04831704411740193,-0.05281001368478218,-0.055932747365152566,-0.05763492941910795,-0.057901303270916867,-0.056751408606241706,-0.05423849765455427,-0.05044767005173991,-0.04549328337019278,-0.039515712488908054,-0.03267754510405275,-0.025159312550910806,-0.017154864477134043,-0.008866502592579446,-0.000499992605226233,0.007740425514916414,0.015656910604921387,0.023062662928087254,0.029786229723793814,0.035675376635813556,0.040600439679584474,0.04445708596298059,0.047168426426974816,0.04868644004828253,0.04899268585018807,0.04809829629297826,0.046043262752153966,0.04289504043866155,0.03874651588525045,0.033713394656709875,0.027931079912776952,0.02155112357544523,0.014737340888804688,0.007661685923094698,0.0004999899349072574,-0.006572333619781862,-0.013384514226768273,-0.019774479462189867,-0.025592645387472197,-0.03070535499784223,-0.03499788707570154,-0.03837696906924548,-0.04077274032215785,-0.042140125802848705,-0.042459595079703864,-0.041737296306062384,-0.04000457005326665,-0.03731686260315953,-0.03375207243519965,-0.02940837678972897,-0.024401597056645626,-0.018862172060414205,-0.012931816860374167,-0.006759951276797449,-0.0004999868537807644,0.0056944367032340255,0.011673174455208277,0.017293169422147762,0.02242183110802162,0.0269401205777288,0.030745271273611756,0.03375308433137408,0.035899748085635654,0.037143143467409614,0.037463609790383184,0.03686415868545219,0.035370137351112864,0.0330283555186565,0.02990570327086984,0.02608729880143247,0.02167421608177798,0.01678085196368086,0.01153200027416424,0.0060597067783225746,0.0004999833618511663,-0.005010537669552639,-0.010337927703079418,-0.015354184264487215,-0.01994027501969843,-0.023988931670441,-0.027407128868067964,-0.030118191546738345,-0.03206348363128898,-0.033203641663975256,-0.033519328252961715,-0.03301149209331342,-0.031701133358597124,-0.029628585216403165,-0.026852333797550428,-0.02344740987169951,-0.019503395495178665,-0.015122097767925552,-0.01041494936313575,-0.005500201507258421,-0.0004999794591236295,0.004462726824327107,0.009267063289083565,0.013797231029453067,0.01794525422382682,0.021613531138895765,0.02471710845601142,0.027185626436596784,0.028964890906297284,0.030018037484782146,0.030326263682841043,0.029889115177902006,0.028724323500909723,0.026867203255982346,0.024369627586925395,0.02129861064849018,0.01773453509766169,0.013769070874739083,0.009502838605092542,0.005042876660268622,0.0004999751456039276,-0.004014057258478694,-0.008389126633342703,-0.012519520958176236,-0.01630644685707196,-0.019660375494870534,-0.02250314231701907,-0.024769751780945926,-0.026409845806358884,-0.0273888031865175,-0.027688446438060007,-0.027307342293871464,-0.02626069202230027,-0.024579817743191713,-0.02231126066493941,-0.019515516452917665,-0.016265441537321165,-0.012644371875125142,-0.00874400231728427,-0.004662080146458924,-0.0004999704212984408,0.0036398465970852944,0.0076562845047458234,0.011452105212472875,0.014936259535971766,0.018026057899468144,0.020649119713045,0.02274505577530648,0.024266844906126683,0.025181873754796753,0.025472617162239794,0.025136945372233994,0.024188053565816138,0.022654018410591694,0.02057699534870267,0.01801207897605098,0.015025856884812715,0.011694694561402047,0.008102795183753802,0.004340083300719416,0.0004999652862140198,-0.0033229779441487865,-0.007035309238976557,-0.010547007984849897,-0.013773642326682486,-0.016638388672805315,-0.01907385042888005,-0.0210236331485044,-0.02244363953422503,-0.023303054811625274,-0.023585000752886786,-0.023286844851593526,-0.02242015964433271,-0.021010335728581388,-0.019095860432197388,-0.01672728214438614,-0.013965887828077738,-0.010882128020591146,-0.007553829533469238,-0.004064240946168138,-0.0004999597403585432,0.0030512075413408474,0.0065023994595077815,0.009769815533596396,0.012774742459901284,0.015445441904884439,0.017718854799131892,0.019542081840961685,0.020873605650342932,0.021684226547443234,0.02195769110143211,0.02169100022536502,0.020894391493352135,0.019590998332757507,0.01781619660230772,0.015616656616311184,0.013049125734071241,0.010178973033506908,0.007078533177597518,0.003825291230864221,0.0004999537837400654,-0.002815545785387743,-0.006040058790253993,-0.009095200253482405,-0.011907247368846102,-0.014408911596615046,-0.016540941959918513,-0.018253521502547703,-0.019507424159823372,-0.020274905349463867,-0.02054030625648175,-0.02030035889874853,-0.019564186441956236,-0.018353000702765035,-0.016699506154456256,-0.014647026851347274,-0.012248379345277055,-0.009564520720248104,-0.006663006176108738,-0.003616295024378269,-0.0004999474163673963,0.002609243472602071,0.0056351377808999265,0.008504107630408701,0.011146822898354138,0.013499920917995685,0.015507520032454175,0.017122540982044753,0.01830780501559801,0.019036883255541804,0.019294678073157472,0.019077723889096176,0.018394201740041794,0.017263668974895407,0.015716512391245194,0.01379313982622832,0.011542931513181105,0.009022978255544349,0.006296638515645208,0.0034319507492050765,0.0004999406382499534,-0.002427134790205834,-0.005277562875973007,-0.007981927351863769,-0.010474793999178085,-0.012696289115624747,-0.014593532832559097,-0.016121893082504484,-0.01724603059531682,-0.01794071057576574,-0.018191362554092323,-0.017994376158632423,-0.01735712708081612,-0.01629773412717272,-0.014844554818168681,-0.013035433339911882,-0.010916720628327143,-0.008542091822640277,-0.005971191135590831,-0.0032681382378879765,-0.0004999334493977613,0.0022651987038900872,0.004959486720135837,0.0075172690089661464,0.009876590028559139,0.011980696971165165,0.013779400937706705,0.01523027005054772,0.016299626238109367,0.016963322376947847,0.01720728197172487,0.017027789454111136,0.0164315253418428,0.01543534676709281,0.01406582010540616,0.012358518460985912,0.01035710244503576,0.00811220788424745,0.005680168691896224,0.0031216070153280927,0.0004999258498214523,-0.0021202584910250057,-0.004674705383281189,-0.007101121390555302,-0.009340675894370185,-0.01133942406496496,-0.013049602836854107,-0.01443076883642403,-0.015450751233894125,-0.016086397156987883,-0.016324092491425985,-0.016160046474455167,-0.015600334323726319,-0.014660698091045404,-0.013366111842978676,-0.011750123003712042,-0.009853987110754086,-0.007725618200310448,-0.005418381437338485,-0.0029897583307750167,-0.0004999178395322659,0.0019897711891188065,0.004418249548285629,0.006726262111548684,0.008857800681197014,0.010761460183788627,0.012391675444855458,0.013709808857247924,0.014685063051126261,0.015295197081771052,0.015527029563466578,0.015376717471201845,0.014849804875587623,0.013961041533492402,0.012733976888613273,0.011200340504971734,0.009399225129245892,0.007376093329870268,0.005181632877782936,0.00287048961502302,0.0004999094185420486,-0.0018716770589677124,-0.004186091948690948,-0.00638683472261581,-0.00842045892941534,-0.010237867625189771,-0.011795496162110052,-0.013056353901713934,-0.01399090000536382,-0.014577732631325226,-0.014804075531180369,-0.014666051071562288,-0.014168733985685347,-0.01332598555263255,-0.012160073278409874,-0.010701086379985947,-0.008986162324739762,-0.007058544233101008,-0.0049664930020716334,-0.0027620814550023795,-0.0004999005868632548,0.0017642900102140923,0.003974934235069368,0.006078040372536607,0.008022497514517292,0.00976131546474939,0.011252758102018584,0.012461342919452703,0.013358682855896302,0.013924150503129907,0.014145349210283263,0.014018380403549201,0.013547901476296881,0.012746973757611902,0.011636705209578624,0.010245697509493373,0.008609311920774534,0.0067687727305811955,0.00477013092766235,0.0026631141174971538,0.0004998913445089461,-0.0016662165495358848,-0.0037820492007743915,-0.005795909385283268,-0.007658824195577588,-0.00932573401241398,-0.01075658045299994,-0.01191726707436337,-0.012780469839135626,-0.013326278128651059,-0.013542651320281375,-0.01342568052680455,-0.012979649911765305,-0.012216896927351098,-0.011157475749066484,-0.009828632983852033,-0.00826410928824345,-0.006503284740106256,-0.004590189559913259,-0.0025724049855013645,-0.0004998816914927914,0.0015762949496619493,0.0036051622875877326,0.005537129588137686,0.0073251884244305825,0.008926054764172664,0.010301215047417406,0.01141785101478432,0.012249621120025238,0.012777279964959283,0.012989121238799589,0.012881234026972468,0.012457566967998242,0.011729799466980577,0.010717023904460795,0.009445247394025387,0.007946726028588931,0.006259148607228472,0.004424690453950987,0.0024889610399411273,0.0004998716278289244,-0.0014935489886831372,-0.003442361416709588,-0.0052989155953275845,-0.007018014343138497,-0.008558012147395192,-0.00988182251890185,-0.010957809582676706,-0.011760542506896118,-0.01227139481779388,-0.012478974519597449,-0.012379375139769267,-0.011976242246615457,-0.011280654529437162,-0.010310823079117648,-0.009091616947969672,-0.007653927293463686,-0.006033886318456931,-0.004271960716259689,-0.0024119423282804933,-0.0004998611535325186,0.0014171523444164776,0.0032920275482569024,0.0050789080839449925,0.006734272026314245,0.008217990581521268,0.00949429952644526,0.010532659921096364,0.011308487412946367,0.011803732751077144,0.012007299840468286,0.01191529170012241,0.011531078943048102,0.010865189766344709,0.009935024818272702,0.008764404588953112,0.007382961047751267,0.005825389024356908,0.004130576210748532,0.002340633566277561,0.0004998502686189164,-0.001346400886507567,-0.003152780615042457,-0.00487509532933025,-0.006471377125873054,-0.007902905213460468,-0.009135143951220975,-0.010138574801233098,-0.010889402183820174,-0.011370116387791783,-0.01156990025341489,-0.011484870223983422,-0.011118146456355518,-0.010479750890638568,-0.009586336400759704,-0.00846075427748175,-0.007131471232654131,-0.005631850762340595,-0.003999316978568101,-0.002274421835964055,-0.0004998389731042158,0.0012806908953553464,0.003023437000742889,0.0046857514647080855,0.006227111867964588,0.007610107983526702,0.008801348673583398,0.00977226699134646,0.010499804102458802,0.01096695567991756,0.011163167855840832,0.011084573547377905,0.01073406392005948,0.010121193812462388,0.009261924021310554,0.008178207336127728,0.0068974290198050275,0.005451715963279508,0.0038771319133282475,0.0022127789058054284,0.0004998272670051219,-0.0012195017797111186,-0.0029029757854541617,-0.004509387448960357,-0.005999562283412168,-0.007337312959898937,-0.0084903171022179,-0.009430897264079186,-0.010136684290920787,-0.010591148192132959,-0.010783983952346933,-0.01071134331031862,-0.010375907341593256,-0.0097867986025394,-0.008959335531986636,-0.007914635665988832,-0.006679077906832461,-0.005283637509551593,-0.003763110524900982,-0.0021552470927320567,-0.0004998151503389469,0.0011623822450053728,0.002790511719708866,0.0043447117920560625,0.00578706790892566,0.007082536482775649,0.008199795430191765,0.00911200059013373,0.009797429776316572,0.01023999903404854,0.010429638856830072,0.010362521592814119,0.010041134949701522,0.009474200297950855,0.008676438283004689,0.007668187994082764,0.00647488950859523,0.005126442950356316,0.0036564601859800858,0.0021014278649721407,0.0004998026231236104,-0.0011089391344622614,-0.0026852734125083896,-0.004190598845406027,-0.005588181161158136,-0.006844048800851644,-0.007927817877065648,-0.00881342645756093,-0.009479760448602735,-0.009911156067689896,-0.010097766970372691,-0.010035787453696708,-0.009727526716384924,-0.009181332825301973,-0.008411368728706002,-0.007437246278714156,-0.006283527689693456,-0.004979107081491587,-0.0035564876582846873,-0.00205097258519768,-0.0004997896853776387,0.0010588283592409028,0.0025865855963589407,0.004046063010037322,0.0054016342808136195,0.006620334705659712,0.007672662102749089,0.008533290260114216,0.009181677692858837,0.009602557095107062,0.009786293844752715,0.009729105167362266,0.009433135009774935,0.008906383228972753,0.008162491280137086,0.007220390101644551,0.0061038192581056505,0.004840729533390602,0.003462583987844246,0.0020035749392887845,0.0004997763371201655,-0.0010117474751470943,-0.0024938546071045717,-0.003910237612970433,-0.005226312250712162,-0.006410061269489353,-0.007432812654895259,-0.008269933431326915,-0.008901422249298773,-0.009312386519058333,-0.009493392727115867,-0.009440681717724978,-0.009156244058995261,-0.00864775406075006,-0.00792836448357954,-0.00701636739054331,-0.005934729861138727,-0.0047105163317371,-0.003374212073684432,-0.0019589647031661435,-0.0004997625783709313,0.0009674295674134457,0.0024065564186282855,0.0037823574949215487,0.005061230465070703,0.006212051235057717,0.0072069308103380825,0.00802189054207004,0.008637439423280494,0.009039039551906143,0.009217448662096237,0.009168931673829792,0.008895336448238294,0.008404032282078013,0.007707713047173838,0.006824070196554876,0.005775344037248705,0.004587764632723605,0.0032908963737016744,0.0019169025796951778,0.0004997484091502838,-0.0009256381823074528,-0.0023242267229033843,-0.0036617445702319786,-0.00490551620515694,-0.006025260934597521,-0.006993829542630063,-0.007787861982682491,-0.008388350191923908,-0.008781092482245416,-0.008957028661184158,-0.008912447993631547,-0.008649065257907065,-0.008173963400150804,-0.007499404568950085,-0.006642514537169457,-0.005624848611131677,-0.004471850013078171,-0.00321221433100436,-0.0018771758973029884,-0.0004997338294791775,0.0008861631022999444,0.002246452658789748,0.003547795783489767,0.004758393185276712,0.005848761863716986,0.0067924526271774775,0.007566691154240954,0.008152927073374361,0.008537277835914221,0.008710856775759574,0.008669977620587218,0.008416230772783183,0.00795642983820608,0.007302430069540686,0.006470823530053587,0.00548251879613691,0.0043622158295575945,0.0031377891943448924,0.0018395950070607538,0.0004997188393791741,-0.000848816805416778,-0.002172865878491089,-0.00343997301124608,-0.0046191685913440795,-0.005681725223228556,-0.006601857107479762,-0.0073573453238827856,-0.007930073867307213,-0.00830646351654873,-0.008477793158440083,-0.008440400979594465,-0.008195760906976714,-0.007750432752783476,-0.0071158876231350015,-0.006308213207596361,-0.005347706502646116,-0.004258364265178828,-0.003067283975158818,-0.0018039902493973679,-0.000499703438872442,0.0008134314829056422,0.0021031367059087002,0.0033377945519282148,0.004487222155278088,0.005523408885788824,0.006421198508172137,0.0071588994753847635,0.007718808560978605,0.008087635201188133,0.008256816387595532,0.008222714664223712,0.007986694671629482,0.007555076673659634,0.006938968526270473,0.00615398052791303,0.005219830454435312,0.004159848758271796,0.0030003963366801744,0.001770209388071569,0.0004996876279817562,-0.0007798565151358726,-0.002036969191411513,-0.0032408279199805166,-0.004361996901685738,-0.005373146354899208,-0.006249718305618962,-0.006970522622169472,-0.007518248838415677,-0.007879881413354087,-0.008047008476746451,-0.008016016750413116,-0.007788168147512269,-0.007369556468131376,-0.0067709455569826904,-0.006007493195508426,-0.005098367795032375,-0.00406626757144897,-0.002936854251610923,-0.001738115429529981,-0.0004996714067304989,0.0007479563256406181,0.001974096906540806,0.003148683716845993,0.004242991275637051,0.005230337369769898,0.006086733263927448,0.006791466155552376,0.007327599741707257,0.007682380810259297,0.007847542104792373,0.007819494283229648,0.007599402530636992,0.0071931462293892065,0.006611162964793749,0.005868180980738414,0.00498284692843379,0.003977258305157144,0.0028764122968070907,0.0017075847617731318,0.0004996547751426591,-0.0007176085488191038,-0.0019142793526266359,-0.0030610103956079625,-0.00412975241688066,-0.005094439876749037,-0.005931626320208761,-0.006621053883690652,-0.0071461431205133005,-0.00749439131022715,-0.007657669692472181,-0.007632412570596073,-0.007419693902059468,-0.00702518976560601,-0.006459027900989132,-0.005735528286773773,-0.004872841387469698,-0.0038924931978167655,-0.0028188484785587834,-0.0016785055594146566,-0.0004996377332428323,0.0006887024590844695,0.0018572988812404086,0.002977489770878448,0.004021870390332069,0.004964963140903979,0.005783838762709905,0.00645867348177893,0.00697322857456826,0.007315240756871837,0.007476714020971239,0.007454105986715664,0.0072484044385550265,0.00686509242701998,0.006314003053072047,0.005609067759797775,0.00476796456174382,0.0038116750840514395,0.002763961501886978,0.0016507764115494547,0.0004996202810562207,-0.000661137618945707,-0.0018029580433547453,-0.0028978331530358048,-0.003918973217882978,-0.004841461813221321,-0.005642863492807218,-0.00630376912560896,-0.0068082656483729465,-0.007144318872459579,-0.007304060144513753,-0.007283970042533686,-0.007084954832834188,-0.006712314056442612,-0.006175600290505054,-0.0054883747755184375,-0.004667865147774014,-0.0037345339059533106,-0.0027115684130571555,-0.0016243051369436027,-0.0004996024186086334,0.0006348227112328063,0.001751077299161873,0.0028217780078207697,0.0038207225846256412,0.004723530802254397,0.005508239199596709,0.006155835121716455,0.006650717080657745,0.006981070297430318,0.007139148393392101,0.007121454524150196,0.006928817733460248,0.006566362887066885,0.006043375163372362,0.005373062664920417,0.004572223208487779,0.00366082369106865,0.002661502557124518,0.0015990077573746666,0.0004995841459264859,-0.0006096745268524057,-0.0017014930325724936,-0.0027490850598400076,-0.003726810115047434,-0.004610800825773317,-0.005379545306061812,-0.006014410380286908,-0.006500092945987263,-0.006824988548794429,-0.006981468299673631,-0.00696605753506431,-0.006779512047935621,-0.006426790242315971,-0.005916922123318421,-0.005262778566147284,-0.004480746748942261,-0.0035903199258494715,-0.0026136118024667624,-0.001574807605029865,-0.0004995654630368001,0.0005856170844319539,0.0016540558241312868,0.002679535772645588,0.0036369541328365278,0.004502934539498232,0.0052563975701654195,0.005879073603542854,0.0063559455539161066,0.0066756107589302964,0.006830553306687212,0.006817320306335428,0.00663659797929637,0.006293185917383429,0.00579587035849868,0.0051571998087626405,0.004393168731053918,0.003522817265481432,0.002567756992455373,0.0015516345439747503,0.0004995463699672048,-0.0005625808622302939,-0.0016086289439431784,-0.002612930149483023,-0.00355089683257666,-0.004399623157422036,-0.00513844424394292,-0.005749439083839183,-0.006217864993821124,-0.006532513079655107,-0.006685976146785181,-0.006674822661613705,-0.006499672688346078,-0.006165174142321336,-0.0056798801524359024,-0.005056030752344932,-0.004309244463048439,-0.003458127530881927,-0.002523810591072749,-0.0015294242890396418,-0.0004995268667459349,0.000540502125959515,0.0015650870325921698,0.0025490848080893997,0.003468401803513102,0.004300583492403815,0.005025362709726539,0.005625153023194407,0.006085475232027197,0.006395306655450966,0.006547344790928543,0.006538179042619891,0.006368366491416408,0.006042410043000381,0.005568639691477361,0.004959000014178264,0.004228749309879922,0.003396077951716217,0.002481655494709924,0.0015081178081936151,0.0004995069534018319,-0.0005193223388304313,-0.0015233149432513535,-0.002487831290511065,-0.003389251855298386,-0.004205555357299137,-0.004916856525754135,-0.005505890300295326,-0.0059584306829663135,-0.006263634085278337,-0.006414298889231547,-0.006407035015899065,-0.006242339518075985,-0.005924576529748495,-0.0054618622576696665,-0.004865858031292078,-0.004151476679503171,-0.003336509620886159,-0.0024411839868356293,-0.0014876607967040138,-0.0004994866299642018,0.00049898764232188,0.0014832067224623852,0.002429014575136549,0.003313247103609064,0.004114299276403143,0.004812652824190476,0.005391351622764299,0.005836413188532,0.0061371663051847155,0.0062865066344118545,0.006281064194202998,0.006121278765158374,0.0058113815545614185,0.005359283753837758,0.004776374910732589,0.004077236246987845,0.003279276131380149,0.002402296815886421,0.0014680032132216182,0.0004994658964633853,-0.0004794483979762931,-0.0014446647105886001,-0.0023724917632710714,-0.0032402032801042424,-0.004026594464822248,-0.004712500013473497,-0.00528126101217035,-0.005719129350038298,-0.006015599834457481,-0.006163661990663994,-0.006159965516198533,-0.006004895493344948,-0.005702555686933521,-0.005260660515888773,-0.004690338529078103,-0.004005852384333669,-0.003224242370864638,-0.0023649023797592404,-0.0014490988694453005,-0.0004994447529298979,0.00046065878201354227,0.0014075987458627799,0.002318130916824251,0.0031699502366417673,0.0039422370398797205,0.004616165744253739,0.005175363577291166,0.0056063081656796115,0.00589865433680216,0.006045482239232985,0.00604346083677062,0.005892922920715492,0.005597849965947223,0.0051657673741894745,0.004607552848123224,0.003937162768715742,0.0031712834531242825,0.002328916002800086,0.0014309050662837338,0.0004994231993950062,-0.0004425764257956385,-0.0013719254583731547,-0.002265810027208975,-0.0031023306181918254,-0.003861038434053021,-0.0045234351043086955,-0.005073423537804843,-0.005497698933444512,-0.0057860704552892585,-0.005931705799250733,-0.005931292787319428,-0.005785114174483438,-0.005497033992576092,-0.005074395931549558,-0.0045278364185797,-0.0038710171459441123,-0.0031202837685617006,-0.002294259293276324,-0.001413382270481044,-0.0004994012358905829,0.00042516209620153196,0.001337567642349765,0.0022154160984898313,0.003037198682660485,0.0037828239834388124,0.004434109012914148,0.0049752224661573485,0.005393069385325811,0.00567760788587446,0.0058220902884803544,0.005823222871405137,0.005681240467815142,0.005399894231433152,0.004986353030091614,0.004451021047755252,0.0038072762293109965,0.003071136138562334,0.0022608595710706075,0.0013964938265517643,0.0004993788624491068,-0.0004083794108390892,-0.0013044536968056491,-0.0021668443302790726,-0.002974419248993278,-0.0037074316695068334,-0.0043480027894247505,-0.004880557720013452,-0.005292204023601741,-0.0055730436593746996,-0.0057164107937097515,-0.005719029766083681,-0.0055810894733952805,-0.005306232495619118,-0.0049014593832697444,-0.004376950610621241,-0.003745810716841524,-0.003023741060706416,-0.002228649356802987,-0.0013802056996074816,-0.0004993560791036628,0.00039219458374272734,0.0012725171260012716,0.002119997387946734,0.0029138667575810077,0.0036347109950666994,0.00426494487440376,0.004789241041616164,0.005194902634108511,0.005472170606050852,0.0056144583248202125,0.005618507803472118,0.005484463869405808,0.005215864592045647,0.004819548352648121,0.004305479986582424,0.0036865004123560227,0.0029780060336419465,0.002197565914824165,0.0013644862452781303,0.0004993328858879418,-0.0003765761978162575,-0.001241696092400159,-0.0020747847494479673,-0.002855424429223849,-0.003564521978037302,-0.0041847756846658795,-0.0047010973036822395,-0.005100978954919898,-0.005374795980547332,-0.005516038430169592,-0.0055214656106216805,-0.005391180036965443,-0.005128619107748382,-0.004740464851877603,-0.00423647410671219,-0.003629233437771507,-0.002933844951979487,-0.002167550843566953,-0.001349306003455068,-0.0004993092828362403,0.0003614950007958476,0.001211933015790789,0.0020311221195462256,0.0027989835108012304,0.003496734248862375,0.0041073465861544605,0.004615963384254445,0.005010259481806343,0.005280740227984156,0.0054209699539874675,0.005427724888771913,0.005301066890937123,0.0050443363203623295,0.004664064362702018,0.004169807098291436,0.003573905525780575,0.0028911775628799184,0.002138549707627634,0.001334637513027222,0.0004992852699834612,-0.0003469237219449453,-0.0011831742131067637,-0.00198893090345579,-0.0027444425973930627,-0.003431226239326559,-0.004032518970743513,-0.004533687155300853,-0.0049225823943547355,-0.005189835874581361,-0.005329083919074996,-0.005337119315601866,-0.005213964828439405,-0.004962867218188989,-0.004590212049858264,-0.004105361515251484,-0.0035204193834989695,-0.0028499289771196233,-0.002110511706700611,-0.0013204551451590709,-0.0004992608473651126,0.00033283690706444556,0.001155369574205037,0.0019481377329887916,0.0026917070219641434,0.0033678844521541663,0.003960163424899833,0.004454126571867653,0.004837796588765052,0.005101926528395135,0.005240222520311385,0.00524949355625904,0.0051297247814656565,0.004884072617206557,0.004518781963465712,0.004043027644622638,0.0034686841189110838,0.002810029228366162,0.002083389377130332,0.0013067349529809705,0.0004992360150173086,-0.0003192107697180752,-0.0011284722694826124,-0.0019086740391963822,-0.0026406883048833213,-0.003306602802156573,-0.0038901589797166376,-0.004377148850312425,-0.00475576080516197,-0.005016865977622425,-0.005154238216354864,-0.0051647023707949305,-0.005048207361780579,-0.004807822364015872,-0.004449656318979023,-0.003982702880372353,-0.003418614723000364,-0.0027714128752081325,-0.0020571383223919448,-0.0012934545358373121,-0.0004992107729767691,0.0003060230568437195,0.001102438485742836,0.0018704756662674044,0.002591303656543708,0.0032472820208839064,0.0038223924331743596,0.004302629725616512,0.0046763428388188755,0.004934517375537622,0.005070992908540356,0.005082609807218276,0.004969282087775558,0.004733994615120348,0.0043827248460450085,0.003924291157115461,0.0033701316013577025,0.002734018641177403,0.0020317169692812696,0.0012805929164737,0.0004991851212808195,-0.0002932529271535201,-0.0010772271871774145,-0.0018334825221112672,-0.0025434755272024895,-0.0031898291177523837,-0.0037567577366424847,-0.004230452779039355,-0.004599418826029224,-0.004854752502503775,-0.004990357197361619,-0.00500308847073524,-0.004892826684262159,-0.0046624751841449616,-0.00431788419869166,-0.0038677024371222344,-0.0033231601498391965,-0.0026977890885985433,-0.002007086346997732,-0.001268130429746832,-0.0004991590599673905,0.0002808808409249539,0.0010527998987214108,0.0017976382616219783,0.002497131198891782,0.0031341568914942967,0.00369315543862843,0.004160508828461759,0.0045248725965120525,0.004777451096687194,0.0049122097081178645,0.004926018860914603,0.004818726447300286,0.0045931569496381495,0.00425503742021364,0.003812852244862413,0.0032776303695147735,0.0026626703226140984,0.0019832098866509633,0.0012560486216152238,0.0004991325890751277,-0.0002688884599578775,-0.001029120509375415,-0.001762889999112639,-0.0024522024148836115,-0.003080183486532642,-0.00363149217963671,-0.004092695374704395,-0.004452595085229361,-0.004702500246127501,-0.004836436478333121,-0.004851288769524329,-0.004746873667121443,-0.004525939316996899,-0.004194093456927031,-0.0037596612440242093,-0.0032334765167283713,-0.00262861172217786,-0.00196005323902232,-0.0012443301573194486,-0.0004991057086428458,0.000257258556617783,0.0010061550933810979,0.0017291880468313775,0.002408625042738683,0.0030278319895318258,0.0035716802327426353,0.004026916097914493,0.004382483797353004,0.004629793835699608,0.0047629304004462095,0.004778792732657876,0.004677167103040538,0.004460727728830894,0.004134966715663405,0.003708054852554489,0.0031906367845885584,0.0025955656951928766,0.001937584108669108,0.0012329587377918046,0.0004990784187105133,-0.0002459749310211105,-0.0009838717473853724,-0.0016964856768440163,-0.002366338767438618,-0.0029770300619459526,-0.0035136370851241356,-0.003963080398819343,-0.004314442320859904,-0.004559232043271503,-0.004691590714039125,-0.004708431531524252,-0.0046095115049737305,-0.004397433218752754,-0.004077576660482938,-0.003657962891790274,-0.003149053012647872,-0.0025634874553012907,-0.0019157721026907203,-0.001221919023445403,-0.0004990507193186902,0.00023502233551934661,0.0009622404419539777,0.001664738903877841,0.0023252868115176983,0.002927709604868079,0.003457285056356873,0.0039011029802484038,0.004248379881883172,0.004490720880025752,0.004622322542542066,0.00464011173693275,0.004543817176805342,0.004335972004167912,0.004021847444607473,0.0036093192662131927,0.0031086704218984186,0.002532334818128306,0.0018945885926617018,0.0012111965645976927,0.0004990226105079152,-0.0002243864057470228,-0.0009412328859753212,-0.001633906287010624,-0.002285415679457893,-0.0028798064529203336,-0.0034025509497552704,-0.0038409034648629265,-0.004184210938504212,-0.004424171770494853,-0.004555036469934834,-0.004573745293074292,-0.004479999577396246,-0.004276265114142462,-0.003967707574039605,-0.0035620616707499387,-0.0030694373725496556,-0.0025020680150257975,-0.0018740065884190315,-0.0012007777378588993,-0.0004989940923201636,0.0002140535975756675,0.0009208224026722554,0.001603948748318357,0.0022466749239332625,0.002833260094286147,0.003349365733473225,0.003782406045486839,0.004121854809166118,0.004359501168362803,0.004489648153473979,0.0045092491367007045,0.004417978955500211,0.004218238048875759,0.003915089599727332,0.003516131322897338,0.0030313051423310907,0.00247264952259193,0.001854000622527379,0.0011906496879029755,0.0004989651647971963,-0.0002040111293898457,-0.0009009838160769917,-0.0015748294068192038,-0.002209016931750107,-0.00278801341432119,-0.0032976642484385324,-0.003725539164843909,-0.004061235332311548,-0.00429663020453047,-0.004426077968918025,-0.004446544848238485,-0.004357680015274515,-0.00416182046768777,-0.0038639298354905707,-0.0034714727172461034,-0.0029942277233235655,-0.002444043906424473,-0.0018345466443885374,-0.00118080027409129,-0.0004989358279821871,0.00019424692917314562,0.0008816933469513917,0.0015465134262239314,0.0021723967275787473,0.0027440124604536926,0.0032473849405272276,0.0036702352218526595,0.004002280554228679,0.004235484364325886,0.004364250685113706,0.004385558331756163,0.004299031609433661,0.0041069459027759676,0.0038141680992259076,0.003428033400252026,0.0029581616355329,0.0024162176777453677,0.001815621923063279,0.001171218021489431,0.0004989060819181181,-0.0001847495859371765,-0.0008629285172529031,-0.0015189678751761518,-0.002136771793770344,-0.0027012062263444907,-0.0031984696146588124,-0.0036164303019479366,-0.003944922442412582,-0.0041759931910834505,-0.0043040951651462525,-0.004326219521038878,-0.004241966457418358,-0.004053551496290331,-0.003765747475181695,-0.0033857637633289235,-0.0029230657556224377,-0.0023891391616713644,-0.0017972049579859917,-0.001161892075855331,-0.0004988759266493618,0.00017550830508916387,0.0008446680623330474,0.0014921615988015187,0.0021021019047454403,0.002659546453486447,0.0031508632087512657,0.0035640639291636806,0.00388909662204386,0.0041180900136112,0.004245544091558453,0.00426846210931905,0.004186420886231281,0.004001577758542031,0.003718614095326008,0.003344616852551425,0.0028889011593813633,0.002362778376046668,0.001779275396828912,0.001152812162233677,0.0004988453622201207,-0.00016651286736473167,-0.0008268918501536366,-0.0014660651005107062,-0.002068348974596193,-0.002618987448624658,-0.003104513585685571,-0.0035130788379586146,-0.003834742133435919,-0.004061711695331435,-0.0041885337134062684,-0.004212223300471078,-0.004132334591842,-0.003950968345388164,-0.003672716938044913,-0.003304548193428921,-0.0028556309766647717,-0.0023371069198578395,-0.0017618139598620337,-0.0011439685468184455,-0.0004988143886759659,0.00015775359100368895,0.000809580806869352,0.001440650433117972,0.0020354769166868003,0.0025794859155436026,0.003059371341631531,0.0034634207629714703,0.003781801208532114,0.0040067984031086894,0.004133003613153557,0.004157443579707545,0.004079650419280244,0.0039016698530433777,0.0036280076425864788,0.003265515629379815,0.0028232202576643542,0.0023120978703630836,0.0017448023702120214,0.0011353520017919668,0.0004987830060623196,-0.00014922129686829603,-0.0007927168482044509,-0.0014158910984247287,-0.002003451514168219,-0.0025410007999179213,-0.003015389629249405,-0.003415038245086422,-0.0037302190647274754,-0.003953293393987211,-0.004078896491613337,-0.00410406650201642,-0.004028314159732833,-0.003853631628745344,-0.0035844403378348733,-0.003227479172668968,-0.0027916358494945565,-0.002287725688147475,-0.0017282232894953666,-0.0011269537728676021,-0.000498751214425952,0.0001409072762459341,0.0007762828160985754,0.0013917619545153609,0.001972240300425282,0.002503493146061756,0.002972523994440541,0.003367882452348414,0.0036799437144705953,0.0039011428182383874,0.004026157969326973,0.004052038496758475,0.00397827436312883,0.0038068055958650603,0.0035419714841371133,0.00319040086670408,0.0027608462821736048,0.002263966129405304,0.001712060258343741,0.0011187655493018677,0.0004987190138135041,-0.00013280326109271938,-0.0007602624201610082,-0.001368239130077827,-0.0019418124485833497,-0.002466925964521319,-0.002930732225449789,-0.0033219070144208536,-0.0036309257892521546,-0.003850295537282631,-0.003974736402933296,-0.004001308687002701,-0.003929482164852002,-0.00376114609219053,-0.0035005597270388582,-0.003154244658690453,-0.002730821663179478,-0.0022407961648112304,-0.0016962976413981126,-0.0011107794361543178,-0.000498686404272945,0.0001249013965102919,0.0007446401835075916,0.0013452999451408507,0.0019121386692788332,0.0024312641095693027,0.0028899742132417537,0.0032770678694049025,0.0035831183767293805,0.0038007029551900286,0.003924582715224827,0.003951828722319142,0.003881891125352535,0.003716609720242386,0.0034601657618934943,0.0031189762817496777,0.0027015335798338228,0.0022181939044144776,0.0016809205763798618,0.0011029879286062277,0.0004986533858521337,-0.00011719421525729847,-0.000729401392607532,-0.0013229228376689499,-0.0018831911159860532,-0.002396474165743659,-0.002850211822183158,-0.0032333231219556875,-0.003536476869856068,-0.003752318862593936,-0.0038756502377148556,-0.0039035526238738205,-0.003835457081552563,-0.0036731552085880258,-0.0034207522084155942,-0.0030845631456884472,-0.0026729550088480064,-0.0021961385280363276,-0.0016659149268954672,-0.001095383888156867,-0.0004986199586002391,0.00010967461412752293,0.0007145320507927611,0.0013010872955213537,0.0018549432972521389,0.0023625243426653605,0.002811408770151105,0.0031906329117375796,0.0034909588269975552,0.0037050992919631983,0.0038278945646545333,0.0038564366407827476,0.0037901380090449408,0.003630743283224622,0.003382283494334375,0.003050974235689144,0.0026450602324217917,0.0021746102207105132,0.001651267238654529,0.0010879605205442054,0.0004985861225663366,-0.00010233583203185616,-0.0007000188351267093,-0.001279773793318108,-0.0018273699952635265,-0.002329384377434712,-0.0027735305172788627,-0.0031489592913472677,-0.003446523842110451,-0.003659002383279734,-0.0037812734175394326,-0.0038104391167815476,-0.003745893894182583,-0.003589336548186579,-0.003344725747388711,-0.0030181800182567525,-0.0026178247603512532,-0.002153590112741015,-0.0016369646988212603,-0.001080711355241041,-0.0004985518778007949,9.517142964761325e-5,0.0006858490563475613,0.0012589637338102466,0.0018004471902129562,0.0022970254439807916,0.002736544162618248,0.003108266112921947,0.0034031334241501426,0.003613988259260146,0.0037357465192371557,0.0037655203663567944,0.0037026866152389693,0.0035488993746164476,0.00330804669497175,0.0029861523538260355,0.002591225257645969,0.002133060224000768,0.0016229950982362409,0.0010736302264018885,0.000498517224353906,-8.817527050085159e-5,-0.0006720106216383503,-0.0012386393933787395,-0.0017741519899950786,-0.002265420068788891,-0.0027004183480726107,-0.0030685189227173115,-0.0033607508849519876,-0.0035700189093381,-0.003691275476948093,-0.0037216425595647646,-0.0036604798318989884,-0.003509397797605817,-0.003272215570802842,-0.002954864415482041,-0.002565239477209873,-0.0021130034121211038,-0.0016093467962793224,-0.001066711255137382,-0.0004984821622772376,8.134150337040277e-5,0.0006584919999888736,0.0012187838713316977,0.0017484625647933205,0.002234542052492471,0.0026651231690070472,0.003029684863012243,0.0033193412348973984,0.003527058081699554,0.003647823673284301,0.0036787696148350255,0.0036192388824060036,0.00347079942018024,0.003237203028056906,0.0029242906133038495,0.0025398461971736074,0.0020934033242626738,0.0015960086881562086,0.0010599488330143533,0.0004984466916222977,-7.466454590211034e-5,-0.0006452821899462679,-0.001199381042689853,-0.0017233580861699474,-0.002204366396855014,-0.002630630091004051,-0.0029917325807501194,-0.0032788710857435607,-0.0034850711827247886,-0.00360535616481757,-0.0036368670991204738,-0.0035789306877536333,-0.003433073323855914,-0.003202981058438294,-0.002894406523879812,-0.0025150251625112746,-0.0020742443521781905,-0.0015829701744203663,-0.0010533376066790532,-0.0004984108124418531,6.813906934222675e-5,0.0006323706895593717,0.0011804155141881586,0.0016988186702973905,0.0021748692367183297,0.00259691187227384,0.0029546321423858986,0.003239308560047316,0.0034440251832525124,0.0035638395875052563,0.0035959021348129865,0.0035395236623659747,0.003396189985250863,0.003169522916727579,0.002865188824589519,0.002490757030600152,0.002055511590311878,0.001570221132549645,0.0010468724635200573,0.0004983745247886269,-6.175998429688796e-5,-0.0006197474683495501,-0.001161872583236179,-0.0016748253250103383,-0.0021460277765237355,-0.0025639424912796407,-0.0029183549544499247,-0.003200623206669064,-0.003403888531130716,-0.003523242068456614,-0.003555843312895935,-0.003500987630758621,-0.0033601211982765395,-0.0031368030503765147,-0.002836615232277634,-0.002467023320419674,-0.002037190796694864,-0.001557751890422174,-0.001040548518285073,-0.0004983378287165857,5.552242744295473e-5,0.0006074029411455721,0.001143738199612283,0.0016513599003776449,0.0021178202310554437,0.0025316970791701855,0.0028828736893883916,0.003162785921883737,0.003364631069569198,0.0034835331435485407,0.0035166606118513114,0.0034632937497192768,0.0033248400014794723,0.0031047970337596863,0.0028086644459837766,0.0024438063651054985,0.002019268356425221,0.0015455532015407746,0.0010343611005830435,0.0004983007242796662,-4.942174911208309e-5,-0.0005953279436442237,-0.0011259989296769795,-0.001628405042528276,-0.002090225770078284,-0.0025001518566542887,-0.0028481622162732953,-0.0031257688756715562,-0.003326223960848225,-0.0034446836804439013,-0.003478325321881563,-0.0034264144355852654,-0.0032903206101400993,-0.003073481506728138,-0.0027813160934166492,-0.0024210892676064023,-0.0020017312475315977,-0.001533616221877156,-0.0010283057431994059,-0.0004982632115330347,4.3453501686560485e-5,0.0005835137095606349,0.0011086419229187027,0.0016059441504799085,0.002063224466578198,0.002469284074977216,0.0028141955360155855,0.003089545442794039,0.003288639614979209,0.003406665806602925,0.003440809974044072,0.003390323296233511,0.003256538352768117,0.0030428341171408273,0.0027545506808907545,0.0023988558592064244,0.0019845670090447563,0.0015219324882094376,0.001022378171167947,0.0004982252905318412,-3.761342874095078e-5,-0.0005719518492535973,-0.001091654880652145,-0.0015839613357489504,-0.0020367972483311494,-0.0024390719606944716,-0.002780949720741039,-0.0030540901382987242,-0.0032518516229450554,-0.003369452841914527,-0.0034040882739307583,-0.003354995067429716,-0.0032234696116672655,-0.0030128334670749615,-0.0027283495464680823,-0.0023770906607018085,-0.0019677637111083822,-0.0015104938978460383,-0.0010165742915382609,-0.0004981869613324518,3.189745487887599e-5,0.0005606343297113969,0.001075026026713675,0.0015624413845310434,0.002010925852557115,0.002409494663957775,0.0027484018570227975,0.003019378557122128,0.0032158346941821626,0.0033330192356046673,0.0033681350395562424,0.003320405553214996,0.003191091767267006,0.0029834590624454606,0.002702694816065715,0.0023557788460340265,0.0019513099269824446,0.0014992926896293514,0.0010108901837920985,0.0004981482239912289,-2.6301676208954497e-5,-0.0005495534558027233,-0.0010587440800023894,-0.0015413697222672565,-0.0019855927834285998,-0.0023805322100585694,-0.0027165299926846776,-0.0029853873174923,-0.003180564597991611,-0.003297340507108926,-0.0033329261431463155,-0.0032865315700335456,-0.003159383145946983,-0.002954691265781971,-0.002677569362315304,-0.0023349062082004823,-0.0019351947067978814,-0.0014883214261299312,-0.001005322090856745,-0.0004981090785657377,2.0822351418051697e-5,0.0005387018526958475,0.0010427982287369107,0.0015207323804181968,0.0019607812722298736,0.0023521654539889717,0.002685313086918562,0.0029520940078529984,0.003146018108595766,0.00326239319062105,0.003298438456543866,0.0032533508943310163,0.0031283229710997546,0.002926511251937036,0.0026529567659724818,0.002314459127279241,0.0019194075529372137,0.0014775729769418826,0.0009998664106766566,0.0004980695251135532,-1.545589339407222e-5,-0.0005280724493664604,-0.001027178106299872,-0.0015005159652911758,-0.0019364752399723662,-0.0023243760378063583,-0.0026547309634748686,-0.002919477137058461,-0.003112172953577059,-0.0032281547830542373,-0.00326464979997276,-0.0032208422133739355,-0.0030978913172011774,-0.0028989009665132703,-0.002628841279696403,-0.002294424540413871,-0.0019039383969259704,-0.0014670405030020358,-0.0009945196882999979,-0.0004980295636934392,1.0198861363700948e-5,0.0005176584631119219,0.0010118737685612493,0.001480707628769972,0.0019126592622949528,0.002297146350598696,0.002624764266710047,0.002887516087604052,0.003079007765459827,0.0031946036951719567,0.003231538893921081,0.003188985079062221,0.0030680690666735405,0.0028718430868188084,0.0026052077940286423,0.002274789913622713,0.0018887775777249986,0.0014567174418617138,0.0009892786084450267,0.0004979891943641825,-5.047953504107395e-6,-0.0005074533850053559,-0.0009968756725717792,-0.0014612950408170098,-0.0018893185364843,-0.002270459490870487,-0.0025953944202871545,-0.002856191071681028,-0.0030465020362126353,-0.0031617192056659906,-0.0031990853139244606,-0.003157759864523715,-0.0030388378693467265,-0.002845320985171439,-0.002582041805419834,-0.0022555432153013566,-0.001873915821329042,-0.0014465974938411748,-0.0009841399885140729,-0.0004979484171856053,0.0],"x":[-100.0,-99.95002498750625,-99.9000499750125,-99.85007496251875,-99.80009995002499,-99.75012493753124,-99.70014992503748,-99.65017491254373,-99.60019990004997,-99.55022488755623,-99.50024987506247,-99.45027486256872,-99.40029985007496,-99.35032483758121,-99.30034982508745,-99.2503748125937,-99.20039980009994,-99.1504247876062,-99.10044977511244,-99.05047476261869,-99.00049975012493,-98.95052473763118,-98.90054972513744,-98.85057471264368,-98.80059970014993,-98.75062468765617,-98.70064967516242,-98.65067466266866,-98.60069965017492,-98.55072463768116,-98.50074962518741,-98.45077461269365,-98.4007996001999,-98.35082458770614,-98.3008495752124,-98.25087456271864,-98.20089955022489,-98.15092453773113,-98.10094952523738,-98.05097451274362,-98.00099950024988,-97.95102448775611,-97.90104947526237,-97.85107446276862,-97.80109945027486,-97.75112443778112,-97.70114942528735,-97.65117441279361,-97.60119940029985,-97.5512243878061,-97.50124937531234,-97.4512743628186,-97.40129935032483,-97.35132433783109,-97.30134932533733,-97.25137431284358,-97.20139930034982,-97.15142428785607,-97.10144927536231,-97.05147426286857,-97.0014992503748,-96.95152423788106,-96.90154922538731,-96.85157421289355,-96.8015992003998,-96.75162418790605,-96.7016491754123,-96.65167416291854,-96.60169915042479,-96.55172413793103,-96.50174912543729,-96.45177411294353,-96.40179910044978,-96.35182408795602,-96.30184907546227,-96.25187406296851,-96.20189905047476,-96.151924037981,-96.10194902548726,-96.0519740129935,-96.00199900049975,-95.95202398800599,-95.90204897551224,-95.8520739630185,-95.80209895052474,-95.75212393803099,-95.70214892553723,-95.65217391304348,-95.60219890054972,-95.55222388805598,-95.50224887556222,-95.45227386306847,-95.40229885057471,-95.35232383808096,-95.3023488255872,-95.25237381309346,-95.2023988005997,-95.15242378810595,-95.10244877561219,-95.05247376311844,-95.00249875062468,-94.95252373813094,-94.90254872563717,-94.85257371314343,-94.80259870064968,-94.75262368815592,-94.70264867566218,-94.65267366316841,-94.60269865067467,-94.55272363818091,-94.50274862568716,-94.4527736131934,-94.40279860069965,-94.3528235882059,-94.30284857571215,-94.25287356321839,-94.20289855072464,-94.15292353823088,-94.10294852573713,-94.05297351324337,-94.00299850074963,-93.95302348825587,-93.90304847576212,-93.85307346326836,-93.80309845077461,-93.75312343828087,-93.7031484257871,-93.65317341329336,-93.6031984007996,-93.55322338830585,-93.50324837581209,-93.45327336331835,-93.40329835082458,-93.35332333833084,-93.30334832583708,-93.25337331334333,-93.20339830084957,-93.15342328835582,-93.10344827586206,-93.05347326336832,-93.00349825087456,-92.95352323838081,-92.90354822588705,-92.8535732133933,-92.80359820089954,-92.7536231884058,-92.70364817591205,-92.65367316341829,-92.60369815092454,-92.55372313843078,-92.50374812593704,-92.45377311344328,-92.40379810094953,-92.35382308845577,-92.30384807596202,-92.25387306346826,-92.20389805097452,-92.15392303848076,-92.10394802598701,-92.05397301349325,-92.0039980009995,-91.95402298850574,-91.904047976012,-91.85407296351823,-91.80409795102449,-91.75412293853073,-91.70414792603698,-91.65417291354323,-91.60419790104947,-91.55422288855573,-91.50424787606197,-91.45427286356822,-91.40429785107446,-91.35432283858071,-91.30434782608695,-91.2543728135932,-91.20439780109945,-91.1544227886057,-91.10444777611194,-91.0544727636182,-91.00449775112443,-90.95452273863069,-90.90454772613693,-90.85457271364318,-90.80459770114942,-90.75462268865567,-90.70464767616193,-90.65467266366817,-90.60469765117442,-90.55472263868066,-90.50474762618691,-90.45477261369315,-90.4047976011994,-90.35482258870564,-90.3048475762119,-90.25487256371814,-90.20489755122439,-90.15492253873063,-90.10494752623688,-90.05497251374312,-90.00499750124938,-89.95502248875562,-89.90504747626187,-89.85507246376811,-89.80509745127436,-89.7551224387806,-89.70514742628686,-89.65517241379311,-89.60519740129935,-89.5552223888056,-89.50524737631184,-89.4552723638181,-89.40529735132434,-89.35532233883059,-89.30534732633683,-89.25537231384308,-89.20539730134932,-89.15542228885558,-89.10544727636182,-89.05547226386807,-89.00549725137431,-88.95552223888056,-88.9055472263868,-88.85557221389305,-88.8055972013993,-88.75562218890555,-88.70564717641179,-88.65567216391804,-88.6056971514243,-88.55572213893053,-88.50574712643679,-88.45577211394303,-88.40579710144928,-88.35582208895552,-88.30584707646177,-88.25587206396801,-88.20589705147427,-88.1559220389805,-88.10594702648676,-88.055972013993,-88.00599700149925,-87.95602198900549,-87.90604697651175,-87.85607196401799,-87.80609695152424,-87.75612193903048,-87.70614692653673,-87.65617191404297,-87.60619690154923,-87.55622188905548,-87.50624687656172,-87.45627186406797,-87.40629685157421,-87.35632183908046,-87.3063468265867,-87.25637181409296,-87.2063968015992,-87.15642178910545,-87.10644677661169,-87.05647176411794,-87.00649675162418,-86.95652173913044,-86.90654672663668,-86.85657171414293,-86.80659670164917,-86.75662168915542,-86.70664667666166,-86.65667166416792,-86.60669665167416,-86.55672163918041,-86.50674662668666,-86.4567716141929,-86.40679660169916,-86.3568215892054,-86.30684657671165,-86.25687156421789,-86.20689655172414,-86.15692153923038,-86.10694652673664,-86.05697151424287,-86.00699650174913,-85.95702148925537,-85.90704647676162,-85.85707146426786,-85.80709645177411,-85.75712143928035,-85.70714642678661,-85.65717141429285,-85.6071964017991,-85.55722138930535,-85.5072463768116,-85.45727136431785,-85.40729635182409,-85.35732133933034,-85.30734632683658,-85.25737131434283,-85.20739630184907,-85.15742128935533,-85.10744627686157,-85.05747126436782,-85.00749625187406,-84.95752123938031,-84.90754622688655,-84.8575712143928,-84.80759620189905,-84.7576211894053,-84.70764617691154,-84.65767116441779,-84.60769615192403,-84.55772113943029,-84.50774612693654,-84.45777111444278,-84.40779610194903,-84.35782108945527,-84.30784607696152,-84.25787106446776,-84.20789605197402,-84.15792103948026,-84.10794602698651,-84.05797101449275,-84.007996001999,-83.95802098950524,-83.9080459770115,-83.85807096451774,-83.80809595202399,-83.75812093953023,-83.70814592703648,-83.65817091454272,-83.60819590204898,-83.55822088955522,-83.50824587706147,-83.45827086456772,-83.40829585207396,-83.35832083958022,-83.30834582708646,-83.25837081459271,-83.20839580209895,-83.1584207896052,-83.10844577711144,-83.0584707646177,-83.00849575212393,-82.95852073963019,-82.90854572713643,-82.85857071464268,-82.80859570214892,-82.75862068965517,-82.70864567716141,-82.65867066466767,-82.6086956521739,-82.55872063968016,-82.5087456271864,-82.45877061469265,-82.40879560219891,-82.35882058970515,-82.3088455772114,-82.25887056471764,-82.2088955522239,-82.15892053973013,-82.10894552723639,-82.05897051474263,-82.00899550224888,-81.95902048975512,-81.90904547726137,-81.85907046476761,-81.80909545227387,-81.7591204397801,-81.70914542728636,-81.6591704147926,-81.60919540229885,-81.55922038980509,-81.50924537731134,-81.45927036481758,-81.40929535232384,-81.35932033983009,-81.30934532733633,-81.25937031484258,-81.20939530234882,-81.15942028985508,-81.10944527736132,-81.05947026486757,-81.00949525237381,-80.95952023988006,-80.9095452273863,-80.85957021489256,-80.8095952023988,-80.75962018990505,-80.70964517741129,-80.65967016491754,-80.60969515242378,-80.55972013993004,-80.50974512743628,-80.45977011494253,-80.40979510244878,-80.35982008995502,-80.30984507746128,-80.25987006496752,-80.20989505247377,-80.15992003998001,-80.10994502748626,-80.0599700149925,-80.00999500249875,-79.960019990005,-79.91004497751125,-79.86006996501749,-79.81009495252374,-79.76011994002998,-79.71014492753623,-79.66016991504247,-79.61019490254873,-79.56021989005497,-79.51024487756122,-79.46026986506746,-79.41029485257371,-79.36031984007997,-79.3103448275862,-79.26036981509246,-79.2103948025987,-79.16041979010495,-79.11044477761119,-79.06046976511745,-79.01049475262369,-78.96051974012994,-78.91054472763618,-78.86056971514243,-78.81059470264867,-78.76061969015493,-78.71064467766116,-78.66066966516742,-78.61069465267366,-78.56071964017991,-78.51074462768615,-78.4607696151924,-78.41079460269864,-78.3608195902049,-78.31084457771115,-78.26086956521739,-78.21089455272364,-78.16091954022988,-78.11094452773614,-78.06096951524238,-78.01099450274863,-77.96101949025487,-77.91104447776112,-77.86106946526736,-77.81109445277362,-77.76111944027986,-77.71114442778611,-77.66116941529235,-77.6111944027986,-77.56121939030484,-77.5112443778111,-77.46126936531734,-77.41129435282359,-77.36131934032983,-77.31134432783608,-77.26136931534234,-77.21139430284857,-77.16141929035483,-77.11144427786107,-77.06146926536732,-77.01149425287356,-76.96151924037981,-76.91154422788605,-76.86156921539231,-76.81159420289855,-76.7616191904048,-76.71164417791104,-76.6616691654173,-76.61169415292353,-76.56171914042979,-76.51174412793603,-76.46176911544228,-76.41179410294852,-76.36181909045477,-76.31184407796101,-76.26186906546727,-76.21189405297352,-76.16191904047976,-76.11194402798601,-76.06196901549225,-76.0119940029985,-75.96201899050475,-75.912043978011,-75.86206896551724,-75.81209395302349,-75.76211894052973,-75.71214392803599,-75.66216891554222,-75.61219390304848,-75.56221889055472,-75.51224387806097,-75.46226886556721,-75.41229385307346,-75.3623188405797,-75.31234382808596,-75.2623688155922,-75.21239380309845,-75.1624187906047,-75.11244377811094,-75.0624687656172,-75.01249375312344,-74.96251874062969,-74.91254372813593,-74.86256871564218,-74.81259370314842,-74.76261869065468,-74.71264367816092,-74.66266866566717,-74.61269365317341,-74.56271864067966,-74.5127436281859,-74.46276861569216,-74.4127936031984,-74.36281859070465,-74.31284357821089,-74.26286856571714,-74.2128935532234,-74.16291854072963,-74.11294352823589,-74.06296851574213,-74.01299350324838,-73.96301849075462,-73.91304347826087,-73.86306846576711,-73.81309345327337,-73.7631184407796,-73.71314342828586,-73.6631684157921,-73.61319340329835,-73.5632183908046,-73.51324337831085,-73.46326836581709,-73.41329335332334,-73.36331834082958,-73.31334332833583,-73.26336831584207,-73.21339330334833,-73.16341829085458,-73.11344327836082,-73.06346826586707,-73.01349325337331,-72.96351824087957,-72.9135432283858,-72.86356821589206,-72.8135932033983,-72.76361819090455,-72.71364317841079,-72.66366816591704,-72.61369315342328,-72.56371814092954,-72.51374312843578,-72.46376811594203,-72.41379310344827,-72.36381809095452,-72.31384307846076,-72.26386806596702,-72.21389305347326,-72.16391804097951,-72.11394302848576,-72.063968015992,-72.01399300349826,-71.9640179910045,-71.91404297851075,-71.86406796601699,-71.81409295352324,-71.76411794102948,-71.71414292853574,-71.66416791604198,-71.61419290354823,-71.56421789105447,-71.51424287856072,-71.46426786606696,-71.41429285357322,-71.36431784107945,-71.31434282858571,-71.26436781609195,-71.2143928035982,-71.16441779110444,-71.1144427786107,-71.06446776611695,-71.01449275362319,-70.96451774112944,-70.91454272863568,-70.86456771614193,-70.81459270364817,-70.76461769115443,-70.71464267866067,-70.66466766616692,-70.61469265367316,-70.56471764117941,-70.51474262868565,-70.4647676161919,-70.41479260369815,-70.3648175912044,-70.31484257871064,-70.26486756621689,-70.21489255372313,-70.16491754122939,-70.11494252873563,-70.06496751624188,-70.01499250374813,-69.96501749125437,-69.91504247876063,-69.86506746626686,-69.81509245377312,-69.76511744127936,-69.71514242878561,-69.66516741629185,-69.6151924037981,-69.56521739130434,-69.5152423788106,-69.46526736631684,-69.41529235382309,-69.36531734132933,-69.31534232883558,-69.26536731634182,-69.21539230384808,-69.16541729135432,-69.11544227886057,-69.06546726636682,-69.01549225387306,-68.96551724137932,-68.91554222888556,-68.86556721639181,-68.81559220389805,-68.7656171914043,-68.71564217891054,-68.6656671664168,-68.61569215392304,-68.56571714142929,-68.51574212893553,-68.46576711644178,-68.41579210394802,-68.36581709145428,-68.31584207896051,-68.26586706646677,-68.21589205397301,-68.16591704147926,-68.1159420289855,-68.06596701649175,-68.01599200399801,-67.96601699150425,-67.9160419790105,-67.86606696651674,-67.816091954023,-67.76611694152923,-67.71614192903549,-67.66616691654173,-67.61619190404798,-67.56621689155422,-67.51624187906047,-67.46626686656671,-67.41629185407297,-67.3663168415792,-67.31634182908546,-67.2663668165917,-67.21639180409795,-67.16641679160419,-67.11644177911045,-67.06646676661668,-67.01649175412294,-66.96651674162919,-66.91654172913543,-66.86656671664169,-66.81659170414792,-66.76661669165418,-66.71664167916042,-66.66666666666667,-66.61669165417291,-66.56671664167916,-66.5167416291854,-66.46676661669166,-66.4167916041979,-66.36681659170415,-66.31684157921039,-66.26686656671664,-66.21689155422288,-66.16691654172914,-66.11694152923538,-66.06696651674163,-66.01699150424787,-65.96701649175412,-65.91704147926038,-65.86706646676662,-65.81709145427287,-65.76711644177911,-65.71714142928536,-65.6671664167916,-65.61719140429786,-65.5672163918041,-65.51724137931035,-65.46726636681659,-65.41729135432284,-65.36731634182908,-65.31734132933533,-65.26736631684157,-65.21739130434783,-65.16741629185407,-65.11744127936032,-65.06746626686656,-65.01749125437281,-64.96751624187905,-64.91754122938531,-64.86756621689156,-64.8175912043978,-64.76761619190405,-64.7176411794103,-64.66766616691655,-64.61769115442279,-64.56771614192904,-64.51774112943528,-64.46776611694153,-64.41779110444777,-64.36781609195403,-64.31784107946027,-64.26786606696652,-64.21789105447276,-64.16791604197901,-64.11794102948525,-64.0679660169915,-64.01799100449774,-63.968015992004,-63.918040979510245,-63.86806596701649,-63.81809095452274,-63.768115942028984,-63.71814092953523,-63.66816591704148,-63.618190904547724,-63.56821589205397,-63.51824087956022,-63.468265867066464,-63.41829085457271,-63.368315842078964,-63.31834082958521,-63.26836581709146,-63.2183908045977,-63.16841579210395,-63.1184407796102,-63.06846576711644,-63.01849075462269,-62.968515742128936,-62.91854072963518,-62.86856571714143,-62.818590704647676,-62.76861569215392,-62.71864067966017,-62.668665667166415,-62.61869065467266,-62.56871564217891,-62.518740629685155,-62.4687656171914,-62.41879060469765,-62.3688155922039,-62.31884057971015,-62.268865567216395,-62.21889055472264,-62.16891554222889,-62.118940529735134,-62.06896551724138,-62.01899050474763,-61.969015492253874,-61.91904047976012,-61.86906546726637,-61.81909045477261,-61.76911544227886,-61.71914042978511,-61.66916541729135,-61.6191904047976,-61.569215392303846,-61.51924037981009,-61.46926536731634,-61.419290354822586,-61.36931534232883,-61.319340329835086,-61.26936531734133,-61.21939030484758,-61.169415292353825,-61.11944027986007,-61.06946526736632,-61.019490254872565,-60.96951524237881,-60.91954022988506,-60.869565217391305,-60.81959020489755,-60.7696151924038,-60.719640179910044,-60.66966516741629,-60.61969015492254,-60.569715142428784,-60.51974012993503,-60.46976511744128,-60.41979010494752,-60.36981509245377,-60.31984007996002,-60.26986506746627,-60.21989005497252,-60.16991504247876,-60.11994002998501,-60.069965017491256,-60.0199900049975,-59.97001499250375,-59.920039980009996,-59.87006496751624,-59.82008995502249,-59.770114942528735,-59.72013993003498,-59.67016491754123,-59.620189905047475,-59.57021489255372,-59.52023988005997,-59.470264867566215,-59.42028985507246,-59.37031484257871,-59.320339830084954,-59.27036481759121,-59.220389805097454,-59.1704147926037,-59.12043978010995,-59.070464767616194,-59.02048975512244,-58.97051474262869,-58.920539730134934,-58.87056471764118,-58.82058970514743,-58.77061469265367,-58.72063968015992,-58.670664667666166,-58.62068965517241,-58.57071464267866,-58.520739630184906,-58.47076461769115,-58.4207896051974,-58.370814592703645,-58.32083958020989,-58.27086456771614,-58.22088955522239,-58.17091454272864,-58.120939530234885,-58.07096451774113,-58.02098950524738,-57.971014492753625,-57.92103948025987,-57.87106446776612,-57.821089455272364,-57.77111444277861,-57.72113943028486,-57.671164417791104,-57.62118940529735,-57.5712143928036,-57.521239380309844,-57.47126436781609,-57.42128935532234,-57.37131434282858,-57.32133933033483,-57.271364317841076,-57.22138930534732,-57.17141429285358,-57.12143928035982,-57.07146426786607,-57.021489255372316,-56.97151424287856,-56.92153923038481,-56.871564217891056,-56.8215892053973,-56.77161419290355,-56.721639180409795,-56.67166416791604,-56.62168915542229,-56.571714142928535,-56.52173913043478,-56.47176411794103,-56.421789105447274,-56.37181409295352,-56.32183908045977,-56.271864067966014,-56.22188905547226,-56.171914042978514,-56.12193903048476,-56.07196401799101,-56.021989005497254,-55.9720139930035,-55.92203898050975,-55.87206396801599,-55.82208895552224,-55.77211394302849,-55.72213893053473,-55.67216391804098,-55.622188905547226,-55.57221389305347,-55.52223888055972,-55.472263868065966,-55.42228885557221,-55.37231384307846,-55.322338830584705,-55.27236381809095,-55.2223888055972,-55.172413793103445,-55.1224387806097,-55.072463768115945,-55.02248875562219,-54.97251374312844,-54.922538730634685,-54.87256371814093,-54.82258870564718,-54.772613693153424,-54.72263868065967,-54.67266366816592,-54.622688655672164,-54.57271364317841,-54.52273863068466,-54.4727636181909,-54.42278860569715,-54.3728135932034,-54.32283858070964,-54.27286356821589,-54.222888555722136,-54.17291354322838,-54.122938530734636,-54.07296351824088,-54.02298850574713,-53.973013493253376,-53.92303848075962,-53.87306346826587,-53.823088455772115,-53.77311344327836,-53.72313843078461,-53.673163418290855,-53.6231884057971,-53.57321339330335,-53.523238380809595,-53.47326336831584,-53.42328835582209,-53.373313343328334,-53.32333833083458,-53.27336331834083,-53.223388305847074,-53.17341329335332,-53.12343828085957,-53.07346326836582,-53.02348825587207,-52.973513243378314,-52.92353823088456,-52.87356321839081,-52.82358820589705,-52.7736131934033,-52.723638180909546,-52.67366316841579,-52.62368815592204,-52.573713143428286,-52.52373813093453,-52.47376311844078,-52.423788105947025,-52.37381309345327,-52.32383808095952,-52.273863068465765,-52.22388805597201,-52.17391304347826,-52.123938030984505,-52.07396301849075,-52.023988005997005,-51.97401299350325,-51.9240379810095,-51.874062968515744,-51.82408795602199,-51.77411294352824,-51.724137931034484,-51.67416291854073,-51.62418790604698,-51.574212893553224,-51.52423788105947,-51.47426286856572,-51.42428785607196,-51.37431284357821,-51.324337831084456,-51.2743628185907,-51.22438780609695,-51.174412793603196,-51.12443778110944,-51.07446276861569,-51.02448775612194,-50.97451274362819,-50.924537731134436,-50.87456271864068,-50.82458770614693,-50.774612693653175,-50.72463768115942,-50.67466266866567,-50.624687656171915,-50.57471264367816,-50.52473763118441,-50.474762618690654,-50.4247876061969,-50.37481259370315,-50.324837581209394,-50.27486256871564,-50.22488755622189,-50.174912543728134,-50.12493753123438,-50.07496251874063,-50.02498750624687,-49.97501249375313,-49.92503748125937,-49.87506246876562,-49.825087456271866,-49.77511244377811,-49.72513743128436,-49.675162418790606,-49.62518740629685,-49.5752123938031,-49.525237381309346,-49.47526236881559,-49.42528735632184,-49.375312343828085,-49.32533733133433,-49.27536231884058,-49.225387306346825,-49.17541229385307,-49.12543728135932,-49.075462268865564,-49.02548725637181,-48.97551224387806,-48.92553723138431,-48.87556221889056,-48.825587206396804,-48.77561219390305,-48.7256371814093,-48.675662168915544,-48.62568715642179,-48.57571214392804,-48.52573713143428,-48.47576211894053,-48.425787106446776,-48.37581209395302,-48.32583708145927,-48.275862068965516,-48.22588705647176,-48.17591204397801,-48.125937031484256,-48.0759620189905,-48.02598700649675,-47.976011994002995,-47.92603698150925,-47.876061969015495,-47.82608695652174,-47.77611194402799,-47.726136931534235,-47.67616191904048,-47.62618690654673,-47.576211894052975,-47.52623688155922,-47.47626186906547,-47.426286856571714,-47.37631184407796,-47.32633683158421,-47.276361819090454,-47.2263868065967,-47.17641179410295,-47.12643678160919,-47.07646176911544,-47.026486756621686,-46.97651174412793,-46.92653673163418,-46.87656171914043,-46.82658670664668,-46.776611694152926,-46.72663668165917,-46.67666166916542,-46.626686656671666,-46.57671164417791,-46.52673663168416,-46.476761619190405,-46.42678660669665,-46.3768115942029,-46.326836581709145,-46.27686156921539,-46.22688655672164,-46.176911544227885,-46.12693653173413,-46.07696151924038,-46.026986506746624,-45.97701149425287,-45.92703648175912,-45.877061469265364,-45.82708645677162,-45.777111444277864,-45.72713643178411,-45.67716141929036,-45.6271864067966,-45.57721139430285,-45.5272363818091,-45.47726136931534,-45.42728635682159,-45.377311344327836,-45.32733633183408,-45.27736131934033,-45.227386306846576,-45.17741129435282,-45.12743628185907,-45.077461269365315,-45.02748625687156,-44.97751124437781,-44.927536231884055,-44.8775612193903,-44.827586206896555,-44.7776111944028,-44.72763618190905,-44.677661169415295,-44.62768615692154,-44.57771114442779,-44.527736131934034,-44.47776111944028,-44.42778610694653,-44.377811094452774,-44.32783608195902,-44.27786106946527,-44.22788605697151,-44.17791104447776,-44.12793603198401,-44.07796101949025,-44.0279860069965,-43.978010994502746,-43.92803598200899,-43.87806096951524,-43.828085957021486,-43.77811094452774,-43.728135932033986,-43.67816091954023,-43.62818590704648,-43.578210894552726,-43.52823588205897,-43.47826086956522,-43.428285857071465,-43.37831084457771,-43.32833583208396,-43.278360819590205,-43.22838580709645,-43.1784107946027,-43.128435782108944,-43.07846076961519,-43.02848575712144,-42.978510744627684,-42.92853573213393,-42.87856071964018,-42.82858570714642,-42.77861069465268,-42.728635682158924,-42.67866066966517,-42.62868565717142,-42.57871064467766,-42.52873563218391,-42.478760619690156,-42.4287856071964,-42.37881059470265,-42.328835582208896,-42.27886056971514,-42.22888555722139,-42.178910544727636,-42.12893553223388,-42.07896051974013,-42.028985507246375,-41.97901049475262,-41.92903548225887,-41.879060469765115,-41.82908545727136,-41.77911044477761,-41.72913543228386,-41.67916041979011,-41.629185407296355,-41.5792103948026,-41.52923538230885,-41.479260369815094,-41.42928535732134,-41.37931034482759,-41.329335332333834,-41.27936031984008,-41.22938530734633,-41.17941029485257,-41.12943528235882,-41.079460269865066,-41.02948525737131,-40.97951024487756,-40.929535232383806,-40.87956021989005,-40.8295852073963,-40.779610194902546,-40.72963518240879,-40.679660169915046,-40.62968515742129,-40.57971014492754,-40.529735132433785,-40.47976011994003,-40.42978510744628,-40.379810094952525,-40.32983508245877,-40.27986006996502,-40.229885057471265,-40.17991004497751,-40.12993503248376,-40.079960019990004,-40.02998500749625,-39.9800099950025,-39.930034982508744,-39.88005997001499,-39.83008495752124,-39.78010994502748,-39.73013493253373,-39.68015992003998,-39.63018490754623,-39.58020989505248,-39.53023488255872,-39.48025987006497,-39.430284857571216,-39.38030984507746,-39.33033483258371,-39.280359820089956,-39.2303848075962,-39.18040979510245,-39.130434782608695,-39.08045977011494,-39.03048475762119,-38.980509745127435,-38.93053473263368,-38.88055972013993,-38.830584707646175,-38.78060969515242,-38.73063468265867,-38.680659670164914,-38.63068465767117,-38.580709645177414,-38.53073463268366,-38.48075962018991,-38.430784607696154,-38.3808095952024,-38.33083458270865,-38.28085957021489,-38.23088455772114,-38.18090954522739,-38.13093453273363,-38.08095952023988,-38.030984507746126,-37.98100949525237,-37.93103448275862,-37.881059470264866,-37.83108445777111,-37.78110944527736,-37.731134432783605,-37.68115942028985,-37.6311844077961,-37.58120939530235,-37.5312343828086,-37.481259370314845,-37.43128435782109,-37.38130934532734,-37.331334332833585,-37.28135932033983,-37.23138430784608,-37.181409295352324,-37.13143428285857,-37.08145927036482,-37.031484257871064,-36.98150924537731,-36.93153423288356,-36.8815592203898,-36.83158420789605,-36.7816091954023,-36.73163418290854,-36.68165917041479,-36.631684157921036,-36.58170914542729,-36.531734132933536,-36.48175912043978,-36.43178410794603,-36.381809095452276,-36.33183408295852,-36.28185907046477,-36.231884057971016,-36.18190904547726,-36.13193403298351,-36.081959020489755,-36.031984007996,-35.98200899550225,-35.932033983008495,-35.88205897051474,-35.83208395802099,-35.782108945527234,-35.73213393303348,-35.68215892053973,-35.632183908045974,-35.58220889555222,-35.532233883058474,-35.48225887056472,-35.43228385807097,-35.382308845577214,-35.33233383308346,-35.28235882058971,-35.23238380809595,-35.1824087956022,-35.132433783108446,-35.08245877061469,-35.03248375812094,-34.982508745627186,-34.93253373313343,-34.88255872063968,-34.832583708145926,-34.78260869565217,-34.73263368315842,-34.682658670664665,-34.63268365817091,-34.58270864567716,-34.53273363318341,-34.48275862068966,-34.432783608195905,-34.38280859570215,-34.3328335832084,-34.282858570714644,-34.23288355822089,-34.18290854572714,-34.132933533233384,-34.08295852073963,-34.03298350824588,-33.983008495752124,-33.93303348325837,-33.88305847076462,-33.83308345827086,-33.78310844577711,-33.733133433283356,-33.6831584207896,-33.63318340829585,-33.583208395802096,-33.53323338330834,-33.483258370814596,-33.43328335832084,-33.38330834582709,-33.333333333333336,-33.28335832083958,-33.23338330834583,-33.183408295852075,-33.13343328335832,-33.08345827086457,-33.033483258370815,-32.98350824587706,-32.93353323338331,-32.883558220889554,-32.8335832083958,-32.78360819590205,-32.733633183408294,-32.68365817091454,-32.63368315842079,-32.583708145927034,-32.53373313343328,-32.48375812093953,-32.43378310844578,-32.38380809595203,-32.33383308345827,-32.28385807096452,-32.23388305847077,-32.18390804597701,-32.13393303348326,-32.083958020989506,-32.03398300849575,-31.984007996002,-31.934032983508246,-31.884057971014492,-31.83408295852074,-31.784107946026985,-31.734132933533232,-31.684157921039482,-31.63418290854573,-31.584207896051975,-31.53423288355822,-31.484257871064468,-31.434282858570715,-31.38430784607696,-31.334332833583208,-31.284357821089454,-31.2343828085957,-31.18440779610195,-31.134432783608197,-31.084457771114444,-31.03448275862069,-30.984507746126937,-30.934532733633183,-30.88455772113943,-30.834582708645677,-30.784607696151923,-30.73463268365817,-30.684657671164416,-30.634682658670666,-30.584707646176913,-30.53473263368316,-30.484757621189406,-30.434782608695652,-30.3848075962019,-30.334832583708145,-30.284857571214392,-30.23488255872064,-30.184907546226885,-30.134932533733135,-30.08495752123938,-30.034982508745628,-29.985007496251875,-29.93503248375812,-29.885057471264368,-29.835082458770614,-29.78510744627686,-29.735132433783107,-29.685157421289354,-29.635182408795604,-29.58520739630185,-29.535232383808097,-29.485257371314344,-29.43528235882059,-29.385307346326837,-29.335332333833083,-29.28535732133933,-29.235382308845576,-29.185407296351823,-29.13543228385807,-29.08545727136432,-29.035482258870566,-28.985507246376812,-28.93553223388306,-28.885557221389305,-28.835582208895552,-28.7856071964018,-28.735632183908045,-28.68565717141429,-28.635682158920538,-28.58570714642679,-28.535732133933035,-28.48575712143928,-28.435782108945528,-28.385807096451774,-28.33583208395802,-28.285857071464267,-28.235882058970514,-28.18590704647676,-28.135932033983007,-28.085957021489257,-28.035982008995504,-27.98600699650175,-27.936031984007997,-27.886056971514243,-27.83608195902049,-27.786106946526736,-27.736131934032983,-27.68615692153923,-27.636181909045476,-27.586206896551722,-27.536231884057973,-27.48625687156422,-27.436281859070466,-27.386306846576712,-27.33633183408296,-27.286356821589205,-27.23638180909545,-27.1864067966017,-27.136431784107945,-27.08645677161419,-27.03648175912044,-26.986506746626688,-26.936531734132934,-26.88655672163918,-26.836581709145428,-26.786606696651674,-26.73663168415792,-26.686656671664167,-26.636681659170414,-26.58670664667666,-26.53673163418291,-26.486756621689157,-26.436781609195403,-26.38680659670165,-26.336831584207896,-26.286856571714143,-26.23688155922039,-26.186906546726636,-26.136931534232883,-26.08695652173913,-26.036981509245376,-25.987006496751626,-25.937031484257872,-25.88705647176412,-25.837081459270365,-25.787106446776612,-25.73713143428286,-25.687156421789105,-25.63718140929535,-25.587206396801598,-25.537231384307844,-25.487256371814095,-25.43728135932034,-25.387306346826588,-25.337331334332834,-25.28735632183908,-25.237381309345327,-25.187406296851574,-25.13743128435782,-25.087456271864067,-25.037481259370313,-24.987506246876563,-24.93753123438281,-24.887556221889056,-24.837581209395303,-24.78760619690155,-24.737631184407796,-24.687656171914043,-24.63768115942029,-24.587706146926536,-24.537731134432782,-24.48775612193903,-24.43778110944528,-24.387806096951525,-24.337831084457772,-24.28785607196402,-24.237881059470265,-24.18790604697651,-24.137931034482758,-24.087956021989005,-24.03798100949525,-23.988005997001498,-23.938030984507748,-23.888055972013994,-23.83808095952024,-23.788105947026487,-23.738130934532734,-23.68815592203898,-23.638180909545227,-23.588205897051473,-23.53823088455772,-23.488255872063966,-23.438280859570217,-23.388305847076463,-23.33833083458271,-23.288355822088956,-23.238380809595203,-23.18840579710145,-23.138430784607696,-23.088455772113942,-23.03848075962019,-22.988505747126435,-22.938530734632682,-22.888555722138932,-22.83858070964518,-22.788605697151425,-22.73863068465767,-22.688655672163918,-22.638680659670165,-22.58870564717641,-22.538730634682658,-22.488755622188904,-22.43878060969515,-22.3888055972014,-22.338830584707647,-22.288855572213894,-22.23888055972014,-22.188905547226387,-22.138930534732634,-22.08895552223888,-22.038980509745127,-21.989005497251373,-21.93903048475762,-21.88905547226387,-21.839080459770116,-21.789105447276363,-21.73913043478261,-21.689155422288856,-21.639180409795102,-21.58920539730135,-21.539230384807595,-21.489255372313842,-21.43928035982009,-21.38930534732634,-21.339330334832585,-21.28935532233883,-21.239380309845078,-21.189405297351325,-21.13943028485757,-21.089455272363818,-21.039480259870064,-20.98950524737631,-20.939530234882557,-20.889555222388804,-20.839580209895054,-20.7896051974013,-20.739630184907547,-20.689655172413794,-20.63968015992004,-20.589705147426287,-20.539730134932533,-20.48975512243878,-20.439780109945026,-20.389805097451273,-20.339830084957523,-20.28985507246377,-20.239880059970016,-20.189905047476262,-20.13993003498251,-20.089955022488756,-20.039980009995002,-19.99000499750125,-19.940029985007495,-19.89005497251374,-19.84007996001999,-19.79010494752624,-19.740129935032485,-19.69015492253873,-19.640179910044978,-19.590204897551224,-19.54022988505747,-19.490254872563717,-19.440279860069964,-19.39030484757621,-19.340329835082457,-19.290354822588707,-19.240379810094954,-19.1904047976012,-19.140429785107447,-19.090454772613693,-19.04047976011994,-18.990504747626186,-18.940529735132433,-18.89055472263868,-18.840579710144926,-18.790604697651176,-18.740629685157423,-18.69065467266367,-18.640679660169916,-18.590704647676162,-18.54072963518241,-18.490754622688655,-18.4407796101949,-18.39080459770115,-18.340829585207395,-18.290854572713645,-18.24087956021989,-18.190904547726138,-18.140929535232384,-18.09095452273863,-18.040979510244878,-17.991004497751124,-17.94102948525737,-17.891054472763617,-17.841079460269864,-17.79110444777611,-17.74112943528236,-17.691154422788607,-17.641179410294853,-17.5912043978011,-17.541229385307346,-17.491254372813593,-17.44127936031984,-17.391304347826086,-17.341329335332333,-17.29135432283858,-17.24137931034483,-17.191404297851076,-17.141429285357322,-17.09145427286357,-17.041479260369815,-16.991504247876062,-16.94152923538231,-16.891554222888555,-16.8415792103948,-16.791604197901048,-16.741629185407298,-16.691654172913545,-16.64167916041979,-16.591704147926038,-16.541729135432284,-16.49175412293853,-16.441779110444777,-16.391804097951024,-16.34182908545727,-16.291854072963517,-16.241879060469763,-16.191904047976013,-16.14192903548226,-16.091954022988507,-16.041979010494753,-15.992003998001,-15.942028985507246,-15.892053973013493,-15.842078960519741,-15.792103948025987,-15.742128935532234,-15.69215392303848,-15.642178910544727,-15.592203898050975,-15.542228885557222,-15.492253873063468,-15.442278860569715,-15.392303848075962,-15.342328835582208,-15.292353823088456,-15.242378810594703,-15.19240379810095,-15.142428785607196,-15.092453773113442,-15.04247876061969,-14.992503748125937,-14.942528735632184,-14.89255372313843,-14.842578710644677,-14.792603698150925,-14.742628685657172,-14.692653673163418,-14.642678660669665,-14.592703648175911,-14.54272863568216,-14.492753623188406,-14.442778610694653,-14.3928035982009,-14.342828585707146,-14.292853573213394,-14.24287856071964,-14.192903548225887,-14.142928535732134,-14.09295352323838,-14.042978510744629,-13.993003498250875,-13.943028485757122,-13.893053473263368,-13.843078460769615,-13.793103448275861,-13.74312843578211,-13.693153423288356,-13.643178410794603,-13.59320339830085,-13.543228385807096,-13.493253373313344,-13.44327836081959,-13.393303348325837,-13.343328335832084,-13.29335332333833,-13.243378310844578,-13.193403298350825,-13.143428285857071,-13.093453273363318,-13.043478260869565,-12.993503248375813,-12.94352823588206,-12.893553223388306,-12.843578210894552,-12.793603198400799,-12.743628185907047,-12.693653173413294,-12.64367816091954,-12.593703148425787,-12.543728135932033,-12.493753123438282,-12.443778110944528,-12.393803098450775,-12.343828085957021,-12.293853073463268,-12.243878060969514,-12.193903048475763,-12.14392803598201,-12.093953023488256,-12.043978010994502,-11.994002998500749,-11.944027986006997,-11.894052973513244,-11.84407796101949,-11.794102948525737,-11.744127936031983,-11.694152923538232,-11.644177911044478,-11.594202898550725,-11.544227886056971,-11.494252873563218,-11.444277861069466,-11.394302848575713,-11.344327836081959,-11.294352823588206,-11.244377811094452,-11.1944027986007,-11.144427786106947,-11.094452773613193,-11.04447776111944,-10.994502748625687,-10.944527736131935,-10.894552723638181,-10.844577711144428,-10.794602698650674,-10.744627686156921,-10.69465267366317,-10.644677661169416,-10.594702648675662,-10.544727636181909,-10.494752623688155,-10.444777611194402,-10.39480259870065,-10.344827586206897,-10.294852573713143,-10.24487756121939,-10.194902548725636,-10.144927536231885,-10.094952523738131,-10.044977511244378,-9.995002498750624,-9.94502748625687,-9.89505247376312,-9.845077461269366,-9.795102448775612,-9.745127436281859,-9.695152423788105,-9.645177411294354,-9.5952023988006,-9.545227386306847,-9.495252373813093,-9.44527736131934,-9.395302348825588,-9.345327336331835,-9.295352323838081,-9.245377311344328,-9.195402298850574,-9.145427286356822,-9.095452273863069,-9.045477261369316,-8.995502248875562,-8.945527236381809,-8.895552223888055,-8.845577211394303,-8.79560219890055,-8.745627186406796,-8.695652173913043,-8.64567716141929,-8.595702148925538,-8.545727136431784,-8.495752123938031,-8.445777111444277,-8.395802098950524,-8.345827086456772,-8.295852073963019,-8.245877061469265,-8.195902048975512,-8.145927036481758,-8.095952023988007,-8.045977011494253,-7.9960019990005,-7.946026986506746,-7.896051974012994,-7.84607696151924,-7.796101949025488,-7.746126936531734,-7.696151924037981,-7.646176911544228,-7.596201899050475,-7.546226886556721,-7.496251874062969,-7.446276861569215,-7.396301849075463,-7.346326836581709,-7.296351824087956,-7.246376811594203,-7.19640179910045,-7.146426786606697,-7.096451774112944,-7.04647676161919,-6.9965017491254375,-6.946526736631684,-6.896551724137931,-6.846576711644178,-6.796601699150425,-6.746626686656672,-6.6966516741629185,-6.646676661669165,-6.5967016491754125,-6.546726636681659,-6.496751624187906,-6.446776611694153,-6.3968015992003995,-6.346826586706647,-6.296851574212893,-6.246876561719141,-6.196901549225387,-6.146926536731634,-6.096951524237881,-6.046976511744128,-5.997001499250374,-5.947026486756622,-5.897051474262868,-5.847076461769116,-5.797101449275362,-5.747126436781609,-5.697151424287856,-5.647176411794103,-5.59720139930035,-5.547226386806597,-5.497251374312843,-5.447276361819091,-5.397301349325337,-5.347326336831585,-5.297351324337831,-5.247376311844078,-5.197401299350325,-5.147426286856572,-5.097451274362818,-5.047476261869066,-4.997501249375312,-4.94752623688156,-4.897551224387806,-4.847576211894053,-4.7976011994003,-4.747626186906547,-4.697651174412794,-4.6476761619190405,-4.597701149425287,-4.5477261369315345,-4.497751124437781,-4.4477761119440276,-4.397801099450275,-4.3478260869565215,-4.297851074462769,-4.2478760619690155,-4.197901049475262,-4.147926036981509,-4.097951024487756,-4.047976011994003,-3.99800099950025,-3.948025987006497,-3.898050974512744,-3.8480759620189904,-3.7981009495252374,-3.7481259370314843,-3.6981509245377313,-3.648175912043978,-3.598200899550225,-3.548225887056472,-3.4982508745627188,-3.4482758620689653,-3.3983008495752123,-3.3483258370814593,-3.2983508245877062,-3.248375812093953,-3.1984007996001997,-3.1484257871064467,-3.0984507746126937,-3.0484757621189407,-2.998500749625187,-2.948525737131434,-2.898550724637681,-2.848575712143928,-2.798600699650175,-2.7486256871564216,-2.6986506746626686,-2.6486756621689156,-2.5987006496751626,-2.548725637181409,-2.498750624687656,-2.448775612193903,-2.39880059970015,-2.348825587206397,-2.2988505747126435,-2.2488755622188905,-2.1989005497251375,-2.1489255372313845,-2.098950524737631,-2.048975512243878,-1.999000499750125,-1.949025487256372,-1.8990504747626187,-1.8490754622688657,-1.7991004497751124,-1.7491254372813594,-1.6991504247876061,-1.6491754122938531,-1.5992003998000999,-1.5492253873063468,-1.4992503748125936,-1.4492753623188406,-1.3993003498250876,-1.3493253373313343,-1.2993503248375813,-1.249375312343828,-1.199400299850075,-1.1494252873563218,-1.0994502748625687,-1.0494752623688155,-0.9995002498750625,-0.9495252373813093,-0.8995502248875562,-0.8495752123938031,-0.7996001999000499,-0.7496251874062968,-0.6996501749125438,-0.6496751624187906,-0.5997001499250375,-0.5497251374312844,-0.49975012493753124,-0.4497751124437781,-0.39980009995002497,-0.3498250874562719,-0.29985007496251875,-0.24987506246876562,-0.19990004997501248,-0.14992503748125938,-0.09995002498750624,-0.04997501249375312,0.0,0.04997501249375312,0.09995002498750624,0.14992503748125938,0.19990004997501248,0.24987506246876562,0.29985007496251875,0.3498250874562719,0.39980009995002497,0.4497751124437781,0.49975012493753124,0.5497251374312844,0.5997001499250375,0.6496751624187906,0.6996501749125438,0.7496251874062968,0.7996001999000499,0.8495752123938031,0.8995502248875562,0.9495252373813093,0.9995002498750625,1.0494752623688155,1.0994502748625687,1.1494252873563218,1.199400299850075,1.249375312343828,1.2993503248375813,1.3493253373313343,1.3993003498250876,1.4492753623188406,1.4992503748125936,1.5492253873063468,1.5992003998000999,1.6491754122938531,1.6991504247876061,1.7491254372813594,1.7991004497751124,1.8490754622688657,1.8990504747626187,1.949025487256372,1.999000499750125,2.048975512243878,2.098950524737631,2.1489255372313845,2.1989005497251375,2.2488755622188905,2.2988505747126435,2.348825587206397,2.39880059970015,2.448775612193903,2.498750624687656,2.548725637181409,2.5987006496751626,2.6486756621689156,2.6986506746626686,2.7486256871564216,2.798600699650175,2.848575712143928,2.898550724637681,2.948525737131434,2.998500749625187,3.0484757621189407,3.0984507746126937,3.1484257871064467,3.1984007996001997,3.248375812093953,3.2983508245877062,3.3483258370814593,3.3983008495752123,3.4482758620689653,3.4982508745627188,3.548225887056472,3.598200899550225,3.648175912043978,3.6981509245377313,3.7481259370314843,3.7981009495252374,3.8480759620189904,3.898050974512744,3.948025987006497,3.99800099950025,4.047976011994003,4.097951024487756,4.147926036981509,4.197901049475262,4.2478760619690155,4.297851074462769,4.3478260869565215,4.397801099450275,4.4477761119440276,4.497751124437781,4.5477261369315345,4.597701149425287,4.6476761619190405,4.697651174412794,4.747626186906547,4.7976011994003,4.847576211894053,4.897551224387806,4.94752623688156,4.997501249375312,5.047476261869066,5.097451274362818,5.147426286856572,5.197401299350325,5.247376311844078,5.297351324337831,5.347326336831585,5.397301349325337,5.447276361819091,5.497251374312843,5.547226386806597,5.59720139930035,5.647176411794103,5.697151424287856,5.747126436781609,5.797101449275362,5.847076461769116,5.897051474262868,5.947026486756622,5.997001499250374,6.046976511744128,6.096951524237881,6.146926536731634,6.196901549225387,6.246876561719141,6.296851574212893,6.346826586706647,6.3968015992003995,6.446776611694153,6.496751624187906,6.546726636681659,6.5967016491754125,6.646676661669165,6.6966516741629185,6.746626686656672,6.796601699150425,6.846576711644178,6.896551724137931,6.946526736631684,6.9965017491254375,7.04647676161919,7.096451774112944,7.146426786606697,7.19640179910045,7.246376811594203,7.296351824087956,7.346326836581709,7.396301849075463,7.446276861569215,7.496251874062969,7.546226886556721,7.596201899050475,7.646176911544228,7.696151924037981,7.746126936531734,7.796101949025488,7.84607696151924,7.896051974012994,7.946026986506746,7.9960019990005,8.045977011494253,8.095952023988007,8.145927036481758,8.195902048975512,8.245877061469265,8.295852073963019,8.345827086456772,8.395802098950524,8.445777111444277,8.495752123938031,8.545727136431784,8.595702148925538,8.64567716141929,8.695652173913043,8.745627186406796,8.79560219890055,8.845577211394303,8.895552223888055,8.945527236381809,8.995502248875562,9.045477261369316,9.095452273863069,9.145427286356822,9.195402298850574,9.245377311344328,9.295352323838081,9.345327336331835,9.395302348825588,9.44527736131934,9.495252373813093,9.545227386306847,9.5952023988006,9.645177411294354,9.695152423788105,9.745127436281859,9.795102448775612,9.845077461269366,9.89505247376312,9.94502748625687,9.995002498750624,10.044977511244378,10.094952523738131,10.144927536231885,10.194902548725636,10.24487756121939,10.294852573713143,10.344827586206897,10.39480259870065,10.444777611194402,10.494752623688155,10.544727636181909,10.594702648675662,10.644677661169416,10.69465267366317,10.744627686156921,10.794602698650674,10.844577711144428,10.894552723638181,10.944527736131935,10.994502748625687,11.04447776111944,11.094452773613193,11.144427786106947,11.1944027986007,11.244377811094452,11.294352823588206,11.344327836081959,11.394302848575713,11.444277861069466,11.494252873563218,11.544227886056971,11.594202898550725,11.644177911044478,11.694152923538232,11.744127936031983,11.794102948525737,11.84407796101949,11.894052973513244,11.944027986006997,11.994002998500749,12.043978010994502,12.093953023488256,12.14392803598201,12.193903048475763,12.243878060969514,12.293853073463268,12.343828085957021,12.393803098450775,12.443778110944528,12.493753123438282,12.543728135932033,12.593703148425787,12.64367816091954,12.693653173413294,12.743628185907047,12.793603198400799,12.843578210894552,12.893553223388306,12.94352823588206,12.993503248375813,13.043478260869565,13.093453273363318,13.143428285857071,13.193403298350825,13.243378310844578,13.29335332333833,13.343328335832084,13.393303348325837,13.44327836081959,13.493253373313344,13.543228385807096,13.59320339830085,13.643178410794603,13.693153423288356,13.74312843578211,13.793103448275861,13.843078460769615,13.893053473263368,13.943028485757122,13.993003498250875,14.042978510744629,14.09295352323838,14.142928535732134,14.192903548225887,14.24287856071964,14.292853573213394,14.342828585707146,14.3928035982009,14.442778610694653,14.492753623188406,14.54272863568216,14.592703648175911,14.642678660669665,14.692653673163418,14.742628685657172,14.792603698150925,14.842578710644677,14.89255372313843,14.942528735632184,14.992503748125937,15.04247876061969,15.092453773113442,15.142428785607196,15.19240379810095,15.242378810594703,15.292353823088456,15.342328835582208,15.392303848075962,15.442278860569715,15.492253873063468,15.542228885557222,15.592203898050975,15.642178910544727,15.69215392303848,15.742128935532234,15.792103948025987,15.842078960519741,15.892053973013493,15.942028985507246,15.992003998001,16.041979010494753,16.091954022988507,16.14192903548226,16.191904047976013,16.241879060469763,16.291854072963517,16.34182908545727,16.391804097951024,16.441779110444777,16.49175412293853,16.541729135432284,16.591704147926038,16.64167916041979,16.691654172913545,16.741629185407298,16.791604197901048,16.8415792103948,16.891554222888555,16.94152923538231,16.991504247876062,17.041479260369815,17.09145427286357,17.141429285357322,17.191404297851076,17.24137931034483,17.29135432283858,17.341329335332333,17.391304347826086,17.44127936031984,17.491254372813593,17.541229385307346,17.5912043978011,17.641179410294853,17.691154422788607,17.74112943528236,17.79110444777611,17.841079460269864,17.891054472763617,17.94102948525737,17.991004497751124,18.040979510244878,18.09095452273863,18.140929535232384,18.190904547726138,18.24087956021989,18.290854572713645,18.340829585207395,18.39080459770115,18.4407796101949,18.490754622688655,18.54072963518241,18.590704647676162,18.640679660169916,18.69065467266367,18.740629685157423,18.790604697651176,18.840579710144926,18.89055472263868,18.940529735132433,18.990504747626186,19.04047976011994,19.090454772613693,19.140429785107447,19.1904047976012,19.240379810094954,19.290354822588707,19.340329835082457,19.39030484757621,19.440279860069964,19.490254872563717,19.54022988505747,19.590204897551224,19.640179910044978,19.69015492253873,19.740129935032485,19.79010494752624,19.84007996001999,19.89005497251374,19.940029985007495,19.99000499750125,20.039980009995002,20.089955022488756,20.13993003498251,20.189905047476262,20.239880059970016,20.28985507246377,20.339830084957523,20.389805097451273,20.439780109945026,20.48975512243878,20.539730134932533,20.589705147426287,20.63968015992004,20.689655172413794,20.739630184907547,20.7896051974013,20.839580209895054,20.889555222388804,20.939530234882557,20.98950524737631,21.039480259870064,21.089455272363818,21.13943028485757,21.189405297351325,21.239380309845078,21.28935532233883,21.339330334832585,21.38930534732634,21.43928035982009,21.489255372313842,21.539230384807595,21.58920539730135,21.639180409795102,21.689155422288856,21.73913043478261,21.789105447276363,21.839080459770116,21.88905547226387,21.93903048475762,21.989005497251373,22.038980509745127,22.08895552223888,22.138930534732634,22.188905547226387,22.23888055972014,22.288855572213894,22.338830584707647,22.3888055972014,22.43878060969515,22.488755622188904,22.538730634682658,22.58870564717641,22.638680659670165,22.688655672163918,22.73863068465767,22.788605697151425,22.83858070964518,22.888555722138932,22.938530734632682,22.988505747126435,23.03848075962019,23.088455772113942,23.138430784607696,23.18840579710145,23.238380809595203,23.288355822088956,23.33833083458271,23.388305847076463,23.438280859570217,23.488255872063966,23.53823088455772,23.588205897051473,23.638180909545227,23.68815592203898,23.738130934532734,23.788105947026487,23.83808095952024,23.888055972013994,23.938030984507748,23.988005997001498,24.03798100949525,24.087956021989005,24.137931034482758,24.18790604697651,24.237881059470265,24.28785607196402,24.337831084457772,24.387806096951525,24.43778110944528,24.48775612193903,24.537731134432782,24.587706146926536,24.63768115942029,24.687656171914043,24.737631184407796,24.78760619690155,24.837581209395303,24.887556221889056,24.93753123438281,24.987506246876563,25.037481259370313,25.087456271864067,25.13743128435782,25.187406296851574,25.237381309345327,25.28735632183908,25.337331334332834,25.387306346826588,25.43728135932034,25.487256371814095,25.537231384307844,25.587206396801598,25.63718140929535,25.687156421789105,25.73713143428286,25.787106446776612,25.837081459270365,25.88705647176412,25.937031484257872,25.987006496751626,26.036981509245376,26.08695652173913,26.136931534232883,26.186906546726636,26.23688155922039,26.286856571714143,26.336831584207896,26.38680659670165,26.436781609195403,26.486756621689157,26.53673163418291,26.58670664667666,26.636681659170414,26.686656671664167,26.73663168415792,26.786606696651674,26.836581709145428,26.88655672163918,26.936531734132934,26.986506746626688,27.03648175912044,27.08645677161419,27.136431784107945,27.1864067966017,27.23638180909545,27.286356821589205,27.33633183408296,27.386306846576712,27.436281859070466,27.48625687156422,27.536231884057973,27.586206896551722,27.636181909045476,27.68615692153923,27.736131934032983,27.786106946526736,27.83608195902049,27.886056971514243,27.936031984007997,27.98600699650175,28.035982008995504,28.085957021489257,28.135932033983007,28.18590704647676,28.235882058970514,28.285857071464267,28.33583208395802,28.385807096451774,28.435782108945528,28.48575712143928,28.535732133933035,28.58570714642679,28.635682158920538,28.68565717141429,28.735632183908045,28.7856071964018,28.835582208895552,28.885557221389305,28.93553223388306,28.985507246376812,29.035482258870566,29.08545727136432,29.13543228385807,29.185407296351823,29.235382308845576,29.28535732133933,29.335332333833083,29.385307346326837,29.43528235882059,29.485257371314344,29.535232383808097,29.58520739630185,29.635182408795604,29.685157421289354,29.735132433783107,29.78510744627686,29.835082458770614,29.885057471264368,29.93503248375812,29.985007496251875,30.034982508745628,30.08495752123938,30.134932533733135,30.184907546226885,30.23488255872064,30.284857571214392,30.334832583708145,30.3848075962019,30.434782608695652,30.484757621189406,30.53473263368316,30.584707646176913,30.634682658670666,30.684657671164416,30.73463268365817,30.784607696151923,30.834582708645677,30.88455772113943,30.934532733633183,30.984507746126937,31.03448275862069,31.084457771114444,31.134432783608197,31.18440779610195,31.2343828085957,31.284357821089454,31.334332833583208,31.38430784607696,31.434282858570715,31.484257871064468,31.53423288355822,31.584207896051975,31.63418290854573,31.684157921039482,31.734132933533232,31.784107946026985,31.83408295852074,31.884057971014492,31.934032983508246,31.984007996002,32.03398300849575,32.083958020989506,32.13393303348326,32.18390804597701,32.23388305847077,32.28385807096452,32.33383308345827,32.38380809595203,32.43378310844578,32.48375812093953,32.53373313343328,32.583708145927034,32.63368315842079,32.68365817091454,32.733633183408294,32.78360819590205,32.8335832083958,32.883558220889554,32.93353323338331,32.98350824587706,33.033483258370815,33.08345827086457,33.13343328335832,33.183408295852075,33.23338330834583,33.28335832083958,33.333333333333336,33.38330834582709,33.43328335832084,33.483258370814596,33.53323338330834,33.583208395802096,33.63318340829585,33.6831584207896,33.733133433283356,33.78310844577711,33.83308345827086,33.88305847076462,33.93303348325837,33.983008495752124,34.03298350824588,34.08295852073963,34.132933533233384,34.18290854572714,34.23288355822089,34.282858570714644,34.3328335832084,34.38280859570215,34.432783608195905,34.48275862068966,34.53273363318341,34.58270864567716,34.63268365817091,34.682658670664665,34.73263368315842,34.78260869565217,34.832583708145926,34.88255872063968,34.93253373313343,34.982508745627186,35.03248375812094,35.08245877061469,35.132433783108446,35.1824087956022,35.23238380809595,35.28235882058971,35.33233383308346,35.382308845577214,35.43228385807097,35.48225887056472,35.532233883058474,35.58220889555222,35.632183908045974,35.68215892053973,35.73213393303348,35.782108945527234,35.83208395802099,35.88205897051474,35.932033983008495,35.98200899550225,36.031984007996,36.081959020489755,36.13193403298351,36.18190904547726,36.231884057971016,36.28185907046477,36.33183408295852,36.381809095452276,36.43178410794603,36.48175912043978,36.531734132933536,36.58170914542729,36.631684157921036,36.68165917041479,36.73163418290854,36.7816091954023,36.83158420789605,36.8815592203898,36.93153423288356,36.98150924537731,37.031484257871064,37.08145927036482,37.13143428285857,37.181409295352324,37.23138430784608,37.28135932033983,37.331334332833585,37.38130934532734,37.43128435782109,37.481259370314845,37.5312343828086,37.58120939530235,37.6311844077961,37.68115942028985,37.731134432783605,37.78110944527736,37.83108445777111,37.881059470264866,37.93103448275862,37.98100949525237,38.030984507746126,38.08095952023988,38.13093453273363,38.18090954522739,38.23088455772114,38.28085957021489,38.33083458270865,38.3808095952024,38.430784607696154,38.48075962018991,38.53073463268366,38.580709645177414,38.63068465767117,38.680659670164914,38.73063468265867,38.78060969515242,38.830584707646175,38.88055972013993,38.93053473263368,38.980509745127435,39.03048475762119,39.08045977011494,39.130434782608695,39.18040979510245,39.2303848075962,39.280359820089956,39.33033483258371,39.38030984507746,39.430284857571216,39.48025987006497,39.53023488255872,39.58020989505248,39.63018490754623,39.68015992003998,39.73013493253373,39.78010994502748,39.83008495752124,39.88005997001499,39.930034982508744,39.9800099950025,40.02998500749625,40.079960019990004,40.12993503248376,40.17991004497751,40.229885057471265,40.27986006996502,40.32983508245877,40.379810094952525,40.42978510744628,40.47976011994003,40.529735132433785,40.57971014492754,40.62968515742129,40.679660169915046,40.72963518240879,40.779610194902546,40.8295852073963,40.87956021989005,40.929535232383806,40.97951024487756,41.02948525737131,41.079460269865066,41.12943528235882,41.17941029485257,41.22938530734633,41.27936031984008,41.329335332333834,41.37931034482759,41.42928535732134,41.479260369815094,41.52923538230885,41.5792103948026,41.629185407296355,41.67916041979011,41.72913543228386,41.77911044477761,41.82908545727136,41.879060469765115,41.92903548225887,41.97901049475262,42.028985507246375,42.07896051974013,42.12893553223388,42.178910544727636,42.22888555722139,42.27886056971514,42.328835582208896,42.37881059470265,42.4287856071964,42.478760619690156,42.52873563218391,42.57871064467766,42.62868565717142,42.67866066966517,42.728635682158924,42.77861069465268,42.82858570714642,42.87856071964018,42.92853573213393,42.978510744627684,43.02848575712144,43.07846076961519,43.128435782108944,43.1784107946027,43.22838580709645,43.278360819590205,43.32833583208396,43.37831084457771,43.428285857071465,43.47826086956522,43.52823588205897,43.578210894552726,43.62818590704648,43.67816091954023,43.728135932033986,43.77811094452774,43.828085957021486,43.87806096951524,43.92803598200899,43.978010994502746,44.0279860069965,44.07796101949025,44.12793603198401,44.17791104447776,44.22788605697151,44.27786106946527,44.32783608195902,44.377811094452774,44.42778610694653,44.47776111944028,44.527736131934034,44.57771114442779,44.62768615692154,44.677661169415295,44.72763618190905,44.7776111944028,44.827586206896555,44.8775612193903,44.927536231884055,44.97751124437781,45.02748625687156,45.077461269365315,45.12743628185907,45.17741129435282,45.227386306846576,45.27736131934033,45.32733633183408,45.377311344327836,45.42728635682159,45.47726136931534,45.5272363818091,45.57721139430285,45.6271864067966,45.67716141929036,45.72713643178411,45.777111444277864,45.82708645677162,45.877061469265364,45.92703648175912,45.97701149425287,46.026986506746624,46.07696151924038,46.12693653173413,46.176911544227885,46.22688655672164,46.27686156921539,46.326836581709145,46.3768115942029,46.42678660669665,46.476761619190405,46.52673663168416,46.57671164417791,46.626686656671666,46.67666166916542,46.72663668165917,46.776611694152926,46.82658670664668,46.87656171914043,46.92653673163418,46.97651174412793,47.026486756621686,47.07646176911544,47.12643678160919,47.17641179410295,47.2263868065967,47.276361819090454,47.32633683158421,47.37631184407796,47.426286856571714,47.47626186906547,47.52623688155922,47.576211894052975,47.62618690654673,47.67616191904048,47.726136931534235,47.77611194402799,47.82608695652174,47.876061969015495,47.92603698150925,47.976011994002995,48.02598700649675,48.0759620189905,48.125937031484256,48.17591204397801,48.22588705647176,48.275862068965516,48.32583708145927,48.37581209395302,48.425787106446776,48.47576211894053,48.52573713143428,48.57571214392804,48.62568715642179,48.675662168915544,48.7256371814093,48.77561219390305,48.825587206396804,48.87556221889056,48.92553723138431,48.97551224387806,49.02548725637181,49.075462268865564,49.12543728135932,49.17541229385307,49.225387306346825,49.27536231884058,49.32533733133433,49.375312343828085,49.42528735632184,49.47526236881559,49.525237381309346,49.5752123938031,49.62518740629685,49.675162418790606,49.72513743128436,49.77511244377811,49.825087456271866,49.87506246876562,49.92503748125937,49.97501249375313,50.02498750624687,50.07496251874063,50.12493753123438,50.174912543728134,50.22488755622189,50.27486256871564,50.324837581209394,50.37481259370315,50.4247876061969,50.474762618690654,50.52473763118441,50.57471264367816,50.624687656171915,50.67466266866567,50.72463768115942,50.774612693653175,50.82458770614693,50.87456271864068,50.924537731134436,50.97451274362819,51.02448775612194,51.07446276861569,51.12443778110944,51.174412793603196,51.22438780609695,51.2743628185907,51.324337831084456,51.37431284357821,51.42428785607196,51.47426286856572,51.52423788105947,51.574212893553224,51.62418790604698,51.67416291854073,51.724137931034484,51.77411294352824,51.82408795602199,51.874062968515744,51.9240379810095,51.97401299350325,52.023988005997005,52.07396301849075,52.123938030984505,52.17391304347826,52.22388805597201,52.273863068465765,52.32383808095952,52.37381309345327,52.423788105947025,52.47376311844078,52.52373813093453,52.573713143428286,52.62368815592204,52.67366316841579,52.723638180909546,52.7736131934033,52.82358820589705,52.87356321839081,52.92353823088456,52.973513243378314,53.02348825587207,53.07346326836582,53.12343828085957,53.17341329335332,53.223388305847074,53.27336331834083,53.32333833083458,53.373313343328334,53.42328835582209,53.47326336831584,53.523238380809595,53.57321339330335,53.6231884057971,53.673163418290855,53.72313843078461,53.77311344327836,53.823088455772115,53.87306346826587,53.92303848075962,53.973013493253376,54.02298850574713,54.07296351824088,54.122938530734636,54.17291354322838,54.222888555722136,54.27286356821589,54.32283858070964,54.3728135932034,54.42278860569715,54.4727636181909,54.52273863068466,54.57271364317841,54.622688655672164,54.67266366816592,54.72263868065967,54.772613693153424,54.82258870564718,54.87256371814093,54.922538730634685,54.97251374312844,55.02248875562219,55.072463768115945,55.1224387806097,55.172413793103445,55.2223888055972,55.27236381809095,55.322338830584705,55.37231384307846,55.42228885557221,55.472263868065966,55.52223888055972,55.57221389305347,55.622188905547226,55.67216391804098,55.72213893053473,55.77211394302849,55.82208895552224,55.87206396801599,55.92203898050975,55.9720139930035,56.021989005497254,56.07196401799101,56.12193903048476,56.171914042978514,56.22188905547226,56.271864067966014,56.32183908045977,56.37181409295352,56.421789105447274,56.47176411794103,56.52173913043478,56.571714142928535,56.62168915542229,56.67166416791604,56.721639180409795,56.77161419290355,56.8215892053973,56.871564217891056,56.92153923038481,56.97151424287856,57.021489255372316,57.07146426786607,57.12143928035982,57.17141429285358,57.22138930534732,57.271364317841076,57.32133933033483,57.37131434282858,57.42128935532234,57.47126436781609,57.521239380309844,57.5712143928036,57.62118940529735,57.671164417791104,57.72113943028486,57.77111444277861,57.821089455272364,57.87106446776612,57.92103948025987,57.971014492753625,58.02098950524738,58.07096451774113,58.120939530234885,58.17091454272864,58.22088955522239,58.27086456771614,58.32083958020989,58.370814592703645,58.4207896051974,58.47076461769115,58.520739630184906,58.57071464267866,58.62068965517241,58.670664667666166,58.72063968015992,58.77061469265367,58.82058970514743,58.87056471764118,58.920539730134934,58.97051474262869,59.02048975512244,59.070464767616194,59.12043978010995,59.1704147926037,59.220389805097454,59.27036481759121,59.320339830084954,59.37031484257871,59.42028985507246,59.470264867566215,59.52023988005997,59.57021489255372,59.620189905047475,59.67016491754123,59.72013993003498,59.770114942528735,59.82008995502249,59.87006496751624,59.920039980009996,59.97001499250375,60.0199900049975,60.069965017491256,60.11994002998501,60.16991504247876,60.21989005497252,60.26986506746627,60.31984007996002,60.36981509245377,60.41979010494752,60.46976511744128,60.51974012993503,60.569715142428784,60.61969015492254,60.66966516741629,60.719640179910044,60.7696151924038,60.81959020489755,60.869565217391305,60.91954022988506,60.96951524237881,61.019490254872565,61.06946526736632,61.11944027986007,61.169415292353825,61.21939030484758,61.26936531734133,61.319340329835086,61.36931534232883,61.419290354822586,61.46926536731634,61.51924037981009,61.569215392303846,61.6191904047976,61.66916541729135,61.71914042978511,61.76911544227886,61.81909045477261,61.86906546726637,61.91904047976012,61.969015492253874,62.01899050474763,62.06896551724138,62.118940529735134,62.16891554222889,62.21889055472264,62.268865567216395,62.31884057971015,62.3688155922039,62.41879060469765,62.4687656171914,62.518740629685155,62.56871564217891,62.61869065467266,62.668665667166415,62.71864067966017,62.76861569215392,62.818590704647676,62.86856571714143,62.91854072963518,62.968515742128936,63.01849075462269,63.06846576711644,63.1184407796102,63.16841579210395,63.2183908045977,63.26836581709146,63.31834082958521,63.368315842078964,63.41829085457271,63.468265867066464,63.51824087956022,63.56821589205397,63.618190904547724,63.66816591704148,63.71814092953523,63.768115942028984,63.81809095452274,63.86806596701649,63.918040979510245,63.968015992004,64.01799100449774,64.0679660169915,64.11794102948525,64.16791604197901,64.21789105447276,64.26786606696652,64.31784107946027,64.36781609195403,64.41779110444777,64.46776611694153,64.51774112943528,64.56771614192904,64.61769115442279,64.66766616691655,64.7176411794103,64.76761619190405,64.8175912043978,64.86756621689156,64.91754122938531,64.96751624187905,65.01749125437281,65.06746626686656,65.11744127936032,65.16741629185407,65.21739130434783,65.26736631684157,65.31734132933533,65.36731634182908,65.41729135432284,65.46726636681659,65.51724137931035,65.5672163918041,65.61719140429786,65.6671664167916,65.71714142928536,65.76711644177911,65.81709145427287,65.86706646676662,65.91704147926038,65.96701649175412,66.01699150424787,66.06696651674163,66.11694152923538,66.16691654172914,66.21689155422288,66.26686656671664,66.31684157921039,66.36681659170415,66.4167916041979,66.46676661669166,66.5167416291854,66.56671664167916,66.61669165417291,66.66666666666667,66.71664167916042,66.76661669165418,66.81659170414792,66.86656671664169,66.91654172913543,66.96651674162919,67.01649175412294,67.06646676661668,67.11644177911045,67.16641679160419,67.21639180409795,67.2663668165917,67.31634182908546,67.3663168415792,67.41629185407297,67.46626686656671,67.51624187906047,67.56621689155422,67.61619190404798,67.66616691654173,67.71614192903549,67.76611694152923,67.816091954023,67.86606696651674,67.9160419790105,67.96601699150425,68.01599200399801,68.06596701649175,68.1159420289855,68.16591704147926,68.21589205397301,68.26586706646677,68.31584207896051,68.36581709145428,68.41579210394802,68.46576711644178,68.51574212893553,68.56571714142929,68.61569215392304,68.6656671664168,68.71564217891054,68.7656171914043,68.81559220389805,68.86556721639181,68.91554222888556,68.96551724137932,69.01549225387306,69.06546726636682,69.11544227886057,69.16541729135432,69.21539230384808,69.26536731634182,69.31534232883558,69.36531734132933,69.41529235382309,69.46526736631684,69.5152423788106,69.56521739130434,69.6151924037981,69.66516741629185,69.71514242878561,69.76511744127936,69.81509245377312,69.86506746626686,69.91504247876063,69.96501749125437,70.01499250374813,70.06496751624188,70.11494252873563,70.16491754122939,70.21489255372313,70.26486756621689,70.31484257871064,70.3648175912044,70.41479260369815,70.4647676161919,70.51474262868565,70.56471764117941,70.61469265367316,70.66466766616692,70.71464267866067,70.76461769115443,70.81459270364817,70.86456771614193,70.91454272863568,70.96451774112944,71.01449275362319,71.06446776611695,71.1144427786107,71.16441779110444,71.2143928035982,71.26436781609195,71.31434282858571,71.36431784107945,71.41429285357322,71.46426786606696,71.51424287856072,71.56421789105447,71.61419290354823,71.66416791604198,71.71414292853574,71.76411794102948,71.81409295352324,71.86406796601699,71.91404297851075,71.9640179910045,72.01399300349826,72.063968015992,72.11394302848576,72.16391804097951,72.21389305347326,72.26386806596702,72.31384307846076,72.36381809095452,72.41379310344827,72.46376811594203,72.51374312843578,72.56371814092954,72.61369315342328,72.66366816591704,72.71364317841079,72.76361819090455,72.8135932033983,72.86356821589206,72.9135432283858,72.96351824087957,73.01349325337331,73.06346826586707,73.11344327836082,73.16341829085458,73.21339330334833,73.26336831584207,73.31334332833583,73.36331834082958,73.41329335332334,73.46326836581709,73.51324337831085,73.5632183908046,73.61319340329835,73.6631684157921,73.71314342828586,73.7631184407796,73.81309345327337,73.86306846576711,73.91304347826087,73.96301849075462,74.01299350324838,74.06296851574213,74.11294352823589,74.16291854072963,74.2128935532234,74.26286856571714,74.31284357821089,74.36281859070465,74.4127936031984,74.46276861569216,74.5127436281859,74.56271864067966,74.61269365317341,74.66266866566717,74.71264367816092,74.76261869065468,74.81259370314842,74.86256871564218,74.91254372813593,74.96251874062969,75.01249375312344,75.0624687656172,75.11244377811094,75.1624187906047,75.21239380309845,75.2623688155922,75.31234382808596,75.3623188405797,75.41229385307346,75.46226886556721,75.51224387806097,75.56221889055472,75.61219390304848,75.66216891554222,75.71214392803599,75.76211894052973,75.81209395302349,75.86206896551724,75.912043978011,75.96201899050475,76.0119940029985,76.06196901549225,76.11194402798601,76.16191904047976,76.21189405297352,76.26186906546727,76.31184407796101,76.36181909045477,76.41179410294852,76.46176911544228,76.51174412793603,76.56171914042979,76.61169415292353,76.6616691654173,76.71164417791104,76.7616191904048,76.81159420289855,76.86156921539231,76.91154422788605,76.96151924037981,77.01149425287356,77.06146926536732,77.11144427786107,77.16141929035483,77.21139430284857,77.26136931534234,77.31134432783608,77.36131934032983,77.41129435282359,77.46126936531734,77.5112443778111,77.56121939030484,77.6111944027986,77.66116941529235,77.71114442778611,77.76111944027986,77.81109445277362,77.86106946526736,77.91104447776112,77.96101949025487,78.01099450274863,78.06096951524238,78.11094452773614,78.16091954022988,78.21089455272364,78.26086956521739,78.31084457771115,78.3608195902049,78.41079460269864,78.4607696151924,78.51074462768615,78.56071964017991,78.61069465267366,78.66066966516742,78.71064467766116,78.76061969015493,78.81059470264867,78.86056971514243,78.91054472763618,78.96051974012994,79.01049475262369,79.06046976511745,79.11044477761119,79.16041979010495,79.2103948025987,79.26036981509246,79.3103448275862,79.36031984007997,79.41029485257371,79.46026986506746,79.51024487756122,79.56021989005497,79.61019490254873,79.66016991504247,79.71014492753623,79.76011994002998,79.81009495252374,79.86006996501749,79.91004497751125,79.960019990005,80.00999500249875,80.0599700149925,80.10994502748626,80.15992003998001,80.20989505247377,80.25987006496752,80.30984507746128,80.35982008995502,80.40979510244878,80.45977011494253,80.50974512743628,80.55972013993004,80.60969515242378,80.65967016491754,80.70964517741129,80.75962018990505,80.8095952023988,80.85957021489256,80.9095452273863,80.95952023988006,81.00949525237381,81.05947026486757,81.10944527736132,81.15942028985508,81.20939530234882,81.25937031484258,81.30934532733633,81.35932033983009,81.40929535232384,81.45927036481758,81.50924537731134,81.55922038980509,81.60919540229885,81.6591704147926,81.70914542728636,81.7591204397801,81.80909545227387,81.85907046476761,81.90904547726137,81.95902048975512,82.00899550224888,82.05897051474263,82.10894552723639,82.15892053973013,82.2088955522239,82.25887056471764,82.3088455772114,82.35882058970515,82.40879560219891,82.45877061469265,82.5087456271864,82.55872063968016,82.6086956521739,82.65867066466767,82.70864567716141,82.75862068965517,82.80859570214892,82.85857071464268,82.90854572713643,82.95852073963019,83.00849575212393,83.0584707646177,83.10844577711144,83.1584207896052,83.20839580209895,83.25837081459271,83.30834582708646,83.35832083958022,83.40829585207396,83.45827086456772,83.50824587706147,83.55822088955522,83.60819590204898,83.65817091454272,83.70814592703648,83.75812093953023,83.80809595202399,83.85807096451774,83.9080459770115,83.95802098950524,84.007996001999,84.05797101449275,84.10794602698651,84.15792103948026,84.20789605197402,84.25787106446776,84.30784607696152,84.35782108945527,84.40779610194903,84.45777111444278,84.50774612693654,84.55772113943029,84.60769615192403,84.65767116441779,84.70764617691154,84.7576211894053,84.80759620189905,84.8575712143928,84.90754622688655,84.95752123938031,85.00749625187406,85.05747126436782,85.10744627686157,85.15742128935533,85.20739630184907,85.25737131434283,85.30734632683658,85.35732133933034,85.40729635182409,85.45727136431785,85.5072463768116,85.55722138930535,85.6071964017991,85.65717141429285,85.70714642678661,85.75712143928035,85.80709645177411,85.85707146426786,85.90704647676162,85.95702148925537,86.00699650174913,86.05697151424287,86.10694652673664,86.15692153923038,86.20689655172414,86.25687156421789,86.30684657671165,86.3568215892054,86.40679660169916,86.4567716141929,86.50674662668666,86.55672163918041,86.60669665167416,86.65667166416792,86.70664667666166,86.75662168915542,86.80659670164917,86.85657171414293,86.90654672663668,86.95652173913044,87.00649675162418,87.05647176411794,87.10644677661169,87.15642178910545,87.2063968015992,87.25637181409296,87.3063468265867,87.35632183908046,87.40629685157421,87.45627186406797,87.50624687656172,87.55622188905548,87.60619690154923,87.65617191404297,87.70614692653673,87.75612193903048,87.80609695152424,87.85607196401799,87.90604697651175,87.95602198900549,88.00599700149925,88.055972013993,88.10594702648676,88.1559220389805,88.20589705147427,88.25587206396801,88.30584707646177,88.35582208895552,88.40579710144928,88.45577211394303,88.50574712643679,88.55572213893053,88.6056971514243,88.65567216391804,88.70564717641179,88.75562218890555,88.8055972013993,88.85557221389305,88.9055472263868,88.95552223888056,89.00549725137431,89.05547226386807,89.10544727636182,89.15542228885558,89.20539730134932,89.25537231384308,89.30534732633683,89.35532233883059,89.40529735132434,89.4552723638181,89.50524737631184,89.5552223888056,89.60519740129935,89.65517241379311,89.70514742628686,89.7551224387806,89.80509745127436,89.85507246376811,89.90504747626187,89.95502248875562,90.00499750124938,90.05497251374312,90.10494752623688,90.15492253873063,90.20489755122439,90.25487256371814,90.3048475762119,90.35482258870564,90.4047976011994,90.45477261369315,90.50474762618691,90.55472263868066,90.60469765117442,90.65467266366817,90.70464767616193,90.75462268865567,90.80459770114942,90.85457271364318,90.90454772613693,90.95452273863069,91.00449775112443,91.0544727636182,91.10444777611194,91.1544227886057,91.20439780109945,91.2543728135932,91.30434782608695,91.35432283858071,91.40429785107446,91.45427286356822,91.50424787606197,91.55422288855573,91.60419790104947,91.65417291354323,91.70414792603698,91.75412293853073,91.80409795102449,91.85407296351823,91.904047976012,91.95402298850574,92.0039980009995,92.05397301349325,92.10394802598701,92.15392303848076,92.20389805097452,92.25387306346826,92.30384807596202,92.35382308845577,92.40379810094953,92.45377311344328,92.50374812593704,92.55372313843078,92.60369815092454,92.65367316341829,92.70364817591205,92.7536231884058,92.80359820089954,92.8535732133933,92.90354822588705,92.95352323838081,93.00349825087456,93.05347326336832,93.10344827586206,93.15342328835582,93.20339830084957,93.25337331334333,93.30334832583708,93.35332333833084,93.40329835082458,93.45327336331835,93.50324837581209,93.55322338830585,93.6031984007996,93.65317341329336,93.7031484257871,93.75312343828087,93.80309845077461,93.85307346326836,93.90304847576212,93.95302348825587,94.00299850074963,94.05297351324337,94.10294852573713,94.15292353823088,94.20289855072464,94.25287356321839,94.30284857571215,94.3528235882059,94.40279860069965,94.4527736131934,94.50274862568716,94.55272363818091,94.60269865067467,94.65267366316841,94.70264867566218,94.75262368815592,94.80259870064968,94.85257371314343,94.90254872563717,94.95252373813094,95.00249875062468,95.05247376311844,95.10244877561219,95.15242378810595,95.2023988005997,95.25237381309346,95.3023488255872,95.35232383808096,95.40229885057471,95.45227386306847,95.50224887556222,95.55222388805598,95.60219890054972,95.65217391304348,95.70214892553723,95.75212393803099,95.80209895052474,95.8520739630185,95.90204897551224,95.95202398800599,96.00199900049975,96.0519740129935,96.10194902548726,96.151924037981,96.20189905047476,96.25187406296851,96.30184907546227,96.35182408795602,96.40179910044978,96.45177411294353,96.50174912543729,96.55172413793103,96.60169915042479,96.65167416291854,96.7016491754123,96.75162418790605,96.8015992003998,96.85157421289355,96.90154922538731,96.95152423788106,97.0014992503748,97.05147426286857,97.10144927536231,97.15142428785607,97.20139930034982,97.25137431284358,97.30134932533733,97.35132433783109,97.40129935032483,97.4512743628186,97.50124937531234,97.5512243878061,97.60119940029985,97.65117441279361,97.70114942528735,97.75112443778112,97.80109945027486,97.85107446276862,97.90104947526237,97.95102448775611,98.00099950024988,98.05097451274362,98.10094952523738,98.15092453773113,98.20089955022489,98.25087456271864,98.3008495752124,98.35082458770614,98.4007996001999,98.45077461269365,98.50074962518741,98.55072463768116,98.60069965017492,98.65067466266866,98.70064967516242,98.75062468765617,98.80059970014993,98.85057471264368,98.90054972513744,98.95052473763118,99.00049975012493,99.05047476261869,99.10044977511244,99.1504247876062,99.20039980009994,99.2503748125937,99.30034982508745,99.35032483758121,99.40029985007496,99.45027486256872,99.50024987506247,99.55022488755623,99.60019990004997,99.65017491254373,99.70014992503748,99.75012493753124,99.80009995002499,99.85007496251875,99.9000499750125,99.95002498750625,100.0]} +{"expected":[-0.01, -0.009886926654462178, -0.009530417260232628, -0.008939001927057528, -0.008127000239638927, -0.007114174661777932, -0.0059252496518975885, -0.004589308189120133, -0.0031390804374013107, -0.0016101419442305547, -0.0000400410139556635, 0.0015326233416347145, 0.003069150235216506, 0.0045316891962484725, 0.005884172493081979, 0.007093204522074838, 0.008128886334342725, 0.008965554944794646, 0.009582419144642829, 0.009964076066946487, 0.010100895673283842, 0.009989263566841737, 0.009631676013796938, 0.0090366846854859, 0.008218692329369684, 0.007197604246304127, 0.005998344004832778, 0.004650245172536523, 0.003186333907336847, 0.0016425199523436337, 0.000056715849575212916, -0.0015320940256629857, -0.003084811751274029, -0.004563187911786266, -0.0059307637481208104, -0.007153770198919882, -0.008201961665838847, -0.009049363918998427, -0.009674917650644571, -0.010063001734131008, -0.010203823189262884, -0.010093664121865624, -0.009734979415048492, -0.00913634261595047, -0.008312241194704851, -0.007282726060164053, -0.0060729238083115375, -0.004712423565792268, -0.0032345533890225475, -0.0016755639124466594, -0.00007373923996649425, 0.0015315431155527588, 0.0031007801636907164, 0.00459531544825824, 0.00597829122416446, 0.0072155573475927645, 0.008276514468868498, 0.009134870711019472, 0.00976929312459531, 0.010163937779373211, 0.010308845323473493, 0.010200192137384068, 0.009840390753724462, 0.009238036916283988, 0.00840770442302669, 0.007369592644630234, 0.0061490352404887, 0.004775882018533042, 0.0032837690191974654, 0.0017092946699877366, 0.00009112218696615018, -0.0015309697647971539, -0.003117064843714942, -0.00462809120525891, -0.006026783911534543, -0.007278603873109537, -0.008352590664382329, -0.009222128157529057, -0.009865604043524764, -0.010266946900304701, -0.01041602746442601, -0.010308914090387068, -0.00994797595945245, -0.009341831339686876, -0.008505142009038145, -0.007458258740058611, -0.0062267264149994065, -0.00484066080314976, -0.0033340122029376315, -0.0017437339512141842, -0.00010887616192825453, 0.0015303730823504134, 0.0031336755463290595, 0.004661535387110301, 0.006076272008581129, 0.007342949264059944, 0.008430238095294045, 0.009311191309838696, 0.00996391133861542, 0.010372094428864173, 0.010525437750984275, 0.010419899256959115, 0.010057803740838887, 0.009447792329506646, 0.008604616481879893, 0.007548781402151578, 0.006306047483438276, 0.004906801900844568, 0.0033853156810923625, 0.0017789044101855678, 0.0001270131310415612, -0.0015297521297850582, -0.0031506224300722964, -0.004695669045019388, -0.0061267869852553196, -0.007408634676172944, -0.008509506628087247, -0.009402117551157956, -0.010064278525306055, -0.01047944847111705, -0.010637147218504658, -0.010533219861166789, -0.010169945733444942, -0.009555989162640194, -0.008706193040386058, -0.007641220125678486, -0.00638705074440642, -0.004974349093233062, -0.0034377136020538805, -0.0018148296788301212, -0.00014554558228208427, 0.0015291059182350763, 0.0031679160781231193, 0.004730514121913454, 0.006178361650754872, 0.007475703021230267, 0.008590448260942981, 0.009494966721381738, 0.01016677184176387, 0.010589080056074314, 0.01075122995439325, 0.01064895123355339, 0.010284476657319514, 0.009666494102209435, 0.00880993969710061, 0.007735636976214561, 0.006469790759651702, 0.00504334805990276, 0.0034912415982229212, 0.0018515344202769076, 0.00016448655416639304, -0.0015284334051065545, -0.00318556752070056, -0.004766093500153985, -0.0062310302255207525, -0.007544199061731635, -0.008673117238873007, -0.009589801249979275, -0.010271460396355516, -0.010701063294198163, -0.010867763263796962, -0.010767171979967901, -0.010401474484817357, -0.00977938256021163, -0.008915927431710746, -0.007832096730511147, -0.006554324477813939, -0.005113846482384542, -0.0035459368674942942, -0.001889044385716531, -0.00018384966640678073, 0.001527733490535292, 0.003203588258907791, 0.004802431052346392, 0.006284828417937009, 0.007614169511749971, 0.008757570176396938, 0.009686686297598671, 0.010378416324808213, 0.010815475546331851, 0.01098682784620731, 0.010887964161528249, 0.010521020619494302, 0.009894733270925021, 0.00902423035463683, 0.00793066702616741, 0.006640711366395772, 0.005185894155034375, 0.003601838260190611, 0.0019273864750657896, 0.0002036491526539958, -0.0015270050135689254, -0.003221990290113425, -0.00483955169548648, -0.0063397935060843635, -0.00768566314445724, -0.00884386618834578, -0.009785689907073953, -0.01048771495781185, -0.010932397603869532, -0.011108507983824581, -0.011011413486579302, -0.010643200086942153, -0.010012628475892588, -0.009134925881563812, -0.008031418521321155, -0.0067290135525710695, -0.005259543103367087, -0.003658986371834583, -0.0019665888017370873, -0.0002238998954672074, 0.001526246748048158, 0.0032407861349919775, 0.004877481448689236, 0.006395964424944249, 0.0077587309068310305, 0.008932067029427004, 0.009886883164553556, 0.010599434999880336, 0.011051913881040997, 0.011232891742606407, 0.011137609515594697, 0.010768101738503351, 0.010133154121412363, 0.009248094919780379, 0.008134425065166154, 0.006819295973559016, 0.005334847710433134, 0.0037174236422586344, 0.0020066807618358425, 0.0002446174637048809, -0.0015254573981642228, -0.003259988866350626, -0.0049162474948045275, -0.0064533818594813275, -0.00783342604212774, -0.009022237243243489, -0.009990340371570447, -0.010713658720364654, -0.011174112620279899, -0.011360071187008509, -0.011266645880046465, -0.010895818468891285, -0.010256400069519543, -0.009363822067268308, -0.008239763880145615, -0.006911626537311536, -0.005411864851883411, -0.003777194461535582, -0.0020476931081574536, -0.00026581815252942683, 0.001524635593648581, 0.0032796121398814063, 0.00495587824619385, 0.006512088344072108, 0.007909804220715074, 0.009114444321522011, 0.010096139228910206, 0.010830472157591824, 0.011299086111719118, 0.011490142609518082, 0.01139862051637145, 0.011026447448835098, 0.010382460323554764, 0.009482195825569065, 0.008347515756775439, 0.007006076294349274, 0.005490654040427009, 0.0038383452832982754, 0.0020896580293487143, 0.0002875190262419242, -0.0015237798845881456, -0.003299670226990427, -0.004996403415038466, -0.00657212836879014, -0.007987923679967875, -0.009208758874376709, -0.010204361033252141, -0.010949965337194027, -0.011426930927965368, -0.011623206776182355, -0.011533635916259553, -0.011160090373977484, -0.010511433269506572, -0.009603308827561281, -0.0084577652621272, -0.007102719621677968, -0.005571277580452928, -0.003900924746056256, -0.002132609234697766, -0.0003097379641831879, 0.001522888735793008, 0.0033201780498695213, 0.0050378540885073425, 0.00663354849310584, 0.008067845373939564, 0.009305254812510197, 0.01031509088761195, 0.011072232505793778, 0.011557748175405648, 0.011759369189448244, 0.01167179939460986, 0.011296853731357517, 0.010643421934430523, 0.009727258081365672, 0.008570600963101867, 0.007201634419756789, 0.005653800733659926, 0.003964983803162722, 0.002176582044981638, 0.00033249370996025145, -0.001521960520715658, -0.0033411512189909453, -0.0050802628092211375, -0.006696397467611468, -0.008149633133637126, -0.009404009542339867, -0.01042841792674361, -0.011197372381315024, -0.011691643763420745, -0.011898740369753469, -0.011813223376626478, -0.011436849084956666, -0.01077853426337144, -0.009854145231748159, -0.00868611566573316, -0.007302902323647564, -0.005738291896619819, -0.004030575862183254, -0.002221613489926261, -0.00035580592428265123, 0.0015209935148397405, 0.0033626060732225307, 0.005123663661416047, 0.0067607263644399035, 0.008233353838774906, 0.009505104175134903, 0.010544435558748297, 0.011325488421326742, 0.011828728693012169, 0.01204143615744953, 0.01195802570566823, 0.011580193381905442, 0.010916883416353076, 0.009984076840478081, 0.008804406671879364, 0.007406608929514652, 0.005824822791289449, 0.004097756934445616, 0.0022677424128075625, 0.00037969524172102025, -0.0015199858885155129, -0.003384559722778639, -0.0051680923633115935, -0.006826588717109743, -0.008319077601981714, -0.009608623751342315, -0.010663241724268916, -0.0114566891109392, -0.011969119366495633, -0.012187578036788894, -0.012106329973623965, -0.011727009281129063, -0.011058588087152581, -0.010117164687290788, -0.008925576054795813, -0.007512844037826293, -0.005913468669586553, -0.004166585795663593, -0.0023150095828370614, -0.00040418333173179754, 0.0015189356991723625, 0.0034070300952481303, 0.005213586366195044, 0.0068940406706050625, 0.008406877966526892, 0.00971465748142312, 0.010784939174781306, 0.011591088271950864, 0.012112937920077007, 0.012337293483882131, 0.012258265875760151, 0.01187742550636122, 0.011203772845747197, 0.01025352609321697, 0.009049730955228492, 0.0076217019146871045, 0.006004308533256078, 0.0042371241585981625, 0.0023634578160152417, 0.00042929296432671804, -0.001517840882848934, -0.003430035984944442, -0.00526018496080393, -0.006963141142563569, -0.008496832118737281, -0.009823299004609728, -0.010909635771645219, -0.011728805395083594, -0.012260312581308327, -0.012490716340718399, -0.012413969592181766, -0.0120315772256728, -0.011352568506508775, -0.010393284268267586, -0.00917698389983237, -0.007733281572913733, -0.006097425370375212, -0.004309436858824762, -0.0024131321051841037, -0.000455048080804994, 0.001516699244976413, 0.0034535971058876993, 0.005307929391640458, 0.007033951996561309, 0.008589021116394062, 0.009934646667183814, 0.011037444807740592, 0.011869965997356702, 0.01241137805362121, 0.012647987217556979, 0.01257358419826562, 0.012189606459857406, 0.011505112524436695, 0.010536568685619604, 0.00930745314390864, 0.007847687074605564, 0.006192906409989697, 0.0043835920547748135, 0.0024640797601374206, 0.00048147387000668074, -0.0015155084503307651, -0.003477734148703692, -0.005356862979918688, -0.007106538228550195, -0.00868353013453172, -0.010048803821994409, -0.011168485353712166, -0.012014702006836202, -0.012566275930364317, -0.012809253926231624, -0.012737260106664313, -0.012351662522275366, -0.011661549421945782, -0.010683515484707798, -0.009441263040645216, -0.007965027857164098, -0.006290843396517381, -0.004459661443360515, -0.002516350558681711, -0.0005085968506046707, 0.001514266012075679, 0.0035024688418020112, 0.0054070312559077295, 0.007180968167638915, 0.008780448730199739, 0.01016587915114885, 0.011302882631036706, 0.012163152177246743, 0.012725155141015809, 0.012974671947175291, 0.012905155543753436, 0.012517902493012727, 0.01182203124900195, 0.010834267905846668, 0.009578544439296047, 0.008085419084898031, 0.006391332885738154, 0.0045377204926023715, 0.002569996909679013, 0.0005364449599842499, -0.001512969279790106, -0.0035278240172101675, -0.005458482101529251, -0.007257313692512165, -0.00887987112792786, -0.010285987013979836, -0.011440768414380693, -0.012315462535177032, -0.012888172432531002, -0.013144404933265989, -0.013077437063691643, -0.012688491730525893, -0.011986718079678918, -0.010988976759310683, -0.009719435114967503, -0.008208982028594616, -0.006494476564373253, -0.00461784869286026, -0.002625074029175683, -0.0005650476503558295, 0.0015116154263882828, 0.0035538236814693746, 0.00551126590414333, 0.007335650464937388, 0.008981896527792297, 0.010409247822644567, 0.011582281465954605, 0.012471786862916296, 0.01305549288909077, 0.013318625253926769, 0.01325428010360674, 0.012863604424270996, 0.012155778548548057, 0.011147800932092035, 0.009864080232989993, 0.00833584447568282, 0.006600381595484517, 0.004700129828408825, 0.0026816401308816357, 0.0005944359927715187, -0.0015102014337907703, -0.003580493092072803, -0.005565435722552771, -0.007416058181949025, -0.009086629438214979, -0.0105357884479343, -0.011727568004884548, -0.012632287220270471, -0.013227290493877986, -0.013497514583281576, -0.013435869583795876, -0.013043424192202441, -0.012329390430677555, -0.01131090793592424, -0.010012632851152573, -0.008466141173911083, -0.0067091609921459345, -0.004784652271327309, -0.0027397566323577017, -0.0006246427898399152, 0.001508724077233647, 0.003607858839933399, 0.005621047466391389, 0.007498620848472102, 0.009194180035831013, 0.010665742658183692, 0.011876782214928206, 0.012797134509085477, 0.013403748736896336, 0.013681264536586487, 0.013622400557258232, 0.013228144727447766, 0.012507741269437852, 0.011478474500534986, 0.010165254463467811, 0.008600014311765294, 0.006820934022144826, 0.004871509299848284, 0.0027994883784689963, 0.0006557026979733072, -0.0015071799080421788, -0.0036359489384678264, -0.005678160090151004, -0.007583427072353768, -0.009304664555034639, -0.010799251594458421, -0.012030086794248706, -0.012966509084608429, -0.01358506127329904, -0.013870077359622443, -0.013814078913354245, -0.013417970498948778, -0.012691029056767496, -0.011650687216557029, -0.010322115589511812, -0.008737614039244489, -0.006935826646738166, -0.004960799443598293, -0.00286090388378896, -0.0006876523601446101, 0.0015055652347127203, 0.003664792919900075, 0.005736835803278438, 0.007670570383973737, 0.009418205710098777, 0.010936464285577674, 0.012187653551363396, 0.013140601418286178, 0.013771432637189456, 0.014064166676264561, 0.014011122140930345, 0.013613117511392724, 0.012879462971095709, 0.01182774323300063, 0.010483396413877088, 0.008879099032985305, 0.007053971996878242, 0.005052626858393415, 0.0029240755958798107, 0.0007205305502048775, -0.001503876102100212, -0.003694421939495912, -0.005797140297899685, -0.007760149582861, -0.009534933153084202, -0.011077538206922258, -0.012349664051856403, -0.013319612817118825, -0.013963079016428646, -0.014263758300036204, -0.014213760156853002, -0.013813814130377081, -0.01307326417869357, -0.012009851014782118, -0.010649287480762973, -0.009024637110223707, -0.007175510890671139, -0.0051471017336073635, -0.0029890801815564577, -0.0007543783299625464, 0.0015021082684974105, 0.0037248688884815436, 0.005859142995939838, 0.007852269114008683, 0.009654983971142447, 0.011222639887424245, 0.012516310320976765, 0.013503756205283697, 0.014160229094615834, 0.014469091116130801, 0.014422236206590586, 0.01402030197942878, 0.013272666704918262, 0.012197231166414477, 0.010819990449347791, 0.009174405896575422, 0.007300592396315846, 0.005244340735442973, 0.00305599883852759, 0.0007892392203537773, -0.0015002571803483097, -0.003756168516521863, -0.005922917317570303, -0.007947039476913645, -0.009778503227205113, -0.011371945569670857, -0.012687795607829545, -0.01369325697440833, -0.014363124967141254, -0.014680418041143412, -0.014636807844257003, -0.014232836916291763, -0.013477918382556043, -0.012390117328715117, -0.01099571891622728, -0.009328593553228428, -0.0074293744452379505, -0.005344467489871733, -0.0031249176350563387, -0.0008251593882100806, 0.0014983179443310232, 0.0037883575646899615, 0.005988540973186967, 0.008044577670688243, 0.009905644548561483, 0.01152564192860729, 0.012864335217565146, 0.013888353909629015, 0.014572023139021239, 0.014898007068620146, 0.014857748000421533, 0.014451690096772442, 0.013689281885353361, 0.012588757156183556, 0.011176699311977473, 0.009487399569802251, 0.00756202450073509, 0.005447613109424827, 0.003195927880649213, 0.0008621878502871834, -0.0014962852964669007, -0.003821474910017328, -0.0060560962813343815, -0.00814500767903403, -0.01003657076832504, -0.011683926855016508, -0.013046157418718948, -0.014089300199438888, -0.01478719561316758, -0.015122142409512172, -0.015085346146991644, -0.014677149135446104, -0.013907035855790485, -0.012793413383655411, -0.011363171879750803, -0.00965103562990562, -0.007698720288068099, -0.005553916768576673, -0.0032691265311025563, -0.0009003766964701549, 0.0014941535679173668, 0.0038555617227887706, 0.0061256705153319305, 0.008248460999282772, 0.01017145462543919, 0.011847010310674175, 0.013233504433751054, 0.014296364538302178, 0.015008931078796535, 0.015353125737739849, 0.015319909569623608, 0.014909519373670074, 0.014131476137286221, 0.013004364991881507, 0.011555391744804463, 0.009819726557274993, 0.007839650592710877, 0.005663526333004311, 0.0033446166317083422, 0.0009397813342607372, -0.0014919166470262143, -0.003890661637938775, -0.006197356281646028, -0.008355077220264387, -0.010310479529530353, -0.01201511526296148, -0.013426633521814406, -0.014509832332133439, -0.015237536210895212, -0.015591277552345352, -0.015561764759421871, -0.015149125266661038, -0.014362917122283375, -0.013221908482918158, -0.011753630084960982, -0.00999371135140407, -0.007985016134273973, -0.005776599048728531, -0.003422507802850432, -0.0009804607569779459, 0.0014895679371589765, 0.003926820942018058, 0.006271251933469901, 0.008465004654331377, 0.010453840397743733, 0.012188478707671278, 0.013625818163939164, 0.014730007018010458, 0.015473337093048467, 0.01583693866916641, 0.015811258937180557, 0.01539631190288308, 0.014601693229142315, 0.01344635927757641, 0.011958175413308575, 0.010173244322676796, 0.008135030524631728, 0.0058933022978664, 0.003502916772823997, 0.0010224778383769908, -0.001487100309771126, -0.003964088777422805, -0.006347462023384735, -0.008578401029559696, -0.010601744571577348, -0.012367352789886285, -0.013831349362103474, -0.014957211510959793, -0.01571668077750334, -0.016090471856632402, -0.016068761725133072, -0.01565144667071286, -0.01484816052242278, -0.013678053248790532, -0.012169334985884213, -0.010358596338355093, -0.008289921319845897, -0.006013814428645822, -0.00358596796330269, -0.0010658996567819582, 0.0014845060520990187, 0.004002517365761239, 0.006426097799475317, 0.008695434248910946, 0.010754412822790455, 0.012552006034062261, 0.014043537065176076, 0.015191789792313466, 0.015967936998171128, 0.016352263632192453, 0.016334666983135473, 0.015914921089307917, 0.01510269849307106, 0.013917348406577117, 0.01238743634879346, 0.010550056192249314, 0.00844993117679996, 0.006138325668332812, 0.0036717941336339363, 0.0011107978522339242, -0.0014817768087463344, -0.004042162252482523, -0.006507277749850425, -0.008816283224044838, -0.010912080458642084, -0.01274272469594671, -0.014262711736419848, -0.015434108656074148, -0.01622750005434679, -0.016622726238085875, -0.016609394828468384, -0.016187152822868124, -0.01536571201722591, -0.014164626752362219, -0.012612829041148339, -0.010747932112644102, -0.00861531912689051, -0.006267039128890971, -0.003760537090970943, -0.001157249020643111, 0.0014789035163418351, 0.004083082575162304, 0.006591128201166812, 0.008941138792478428, 0.01107499853809616, 0.012939814250640322, 0.014489226079229513, 0.01568455963193199, 0.016495790885330992, 0.016902299817695796, 0.016893393861042563, 0.016468587900084916, 0.015637633514912264, 0.014420296322880373, 0.012845886472440123, 0.010952553425030978, 0.00878636198084336, 0.006400171916557462, 0.0038523484742248285, 0.0012053351494930766, -0.0014758763303124628, -0.004125341358152247, -0.006677783977501463, -0.00907020472798442, -0.011243435212211054, -0.013143601033071101, -0.014723456940057238, -0.015943561106138756, -0.016773259358913464, -0.0171914548166528, -0.017187143618797848, -0.016759703163586933, -0.015918925332827474, -0.014684793446642084, -0.013087007995559164, -0.011164272388517619, -0.008963355880674064, -0.006537956358078169, -0.003947390620945353, -0.0012551441002946941, 0.0014726845426654006, 0.004169005836660102, 0.006767389126796241, 0.009203698855466333, 0.011417677203762421, 0.013354434049408942, 0.0149658074101196, 0.01621156066440465, 0.01706038679988794, 0.01749069463624016, 0.01749115729156568, 0.01706100897767456, 0.016210082378840956, 0.014958585239220884, 0.01333662119966691, 0.011383466227450137, 0.009146618017092942, 0.006680641358165862, 0.004045837527545893, 0.0013067701437436538, -0.0014693164894944498, -0.00421414781373992, -0.006860097723097169, -0.009341854283142872, -0.011598031443268719, -0.013572686980568216, -0.015216709150542077, -0.016489037684412143, -0.017357688788491546, -0.017800558570582454, -0.017805984725702103, -0.017373052226689025, -0.01651163503978421, -0.015242172367376265, -0.013595184450611723, -0.011610539382894636, -0.009336488533302033, -0.006828493904860024, -0.0041478759148108075, -0.0013603145544176297, 0.001465759446719489, 0.004260844054152627, 0.006956074753967209, 0.009484920766687402, 0.011784826881051856, 0.013798760401989695, 0.015476624969149727, 0.016776506209538748, 0.01766571826299747, 0.018121625063668843, 0.01813221575649913, 0.017696419641072714, 0.0168241524187194, 0.015536092116421273, 0.013863189710638955, 0.011845926012245416, 0.009533332639218314, 0.00698180074193476, 0.00425370641239668, 0.0014158862728771715, -0.0014619995123083503, -0.004309176719598887, -0.007055497103818308, -0.00963316622211583, -0.01197841649783296, -0.014033084247438437, -0.015746051681265607, -0.017074518140026737, -0.017985068965737396, -0.018454515327594064, -0.01847048391086406, -0.018031741493678005, -0.017148245933255864, -0.015840921800370295, -0.01414116567388658, -0.012090092769458638, -0.00973754296376593, -0.007140870230383336, -0.004363544878129217, -0.0014736026442548796, 0.0014580214729519095, 0.004359233850482901, 0.007158554645467053, 0.009786878406685736, 0.012179179539710852, 0.014276120548695422, 0.01602552329171928, 0.017383666783279676, 0.01831637927773821, 0.01879989736963455, 0.01882147052916995, 0.01837969571531807, 0.017484573322782467, 0.016157282560405165, 0.014429681259710595, 0.012343541903364555, 0.009949542177106146, 0.007306034424402156, 0.0044776238703218025, 0.0015335902438227366, -0.0014538086527930056, -0.0044111099000922445, -0.007265451454066508, -0.009946366789984631, -0.012387524007289234, -0.014528366487870287, -0.016315614540938994, -0.017704590811336286, -0.01866033649408109, -0.019158490483088715, -0.019185909362704284, -0.01874101248610479, -0.017833843119877037, -0.01648584360424349, -0.014729349512403154, -0.012606814717344235, -0.010169785919654208, -0.007477651391260532, -0.004596194294233312, -0.0015959858017239922, 0.001449342741398208, 0.004464906327954974, 0.007376407159717166, 0.010111964640790701, 0.012603889433318145, 0.014790357804758226, 0.016616944864676755, 0.01803797868106729, 0.01901768160023188, 0.01953107026540974, 0.01956459171199397, 0.01911647936800563, 0.018196819649855225, 0.016827326947297692, 0.015040831963555518, 0.012880495440505936, 0.010398766080577318, 0.007656107809154755, 0.004719527247166626, 0.0016609372410321054, -0.0014446035976516342, -0.004520732260143092, -0.007491658457589516, -0.010284031359299499, -0.012828749988630149, -0.015062672608372893, -0.016930182824770337, -0.01838457358146649, -0.01938921461919245, -0.01991847423730338, -0.019958372181729127, -0.019506947054543904, -0.01857432863270137, -0.017182512726305502, -0.015364843522381998, -0.013165215568622846, -0.010637014475414111, -0.007841821882691375, -0.004847916090733178, -0.0017286048456612963, 0.0014395690256408702, 0.004578705225476139, 0.0076114607973697635, 0.01046295508903968, 0.013062617962545028, 0.015345935649716345, 0.017256051077630386, 0.018745178982852075, 0.01977580061067893, 0.020321608148466484, 0.02036817514037182, 0.01991333582598347, 0.018967263473787375, 0.017552245167735667, 0.015702157970090804, 0.013461658742704948, 0.010885106980668984, 0.00803524662224405, 0.004981678783586307, 0.001799162577462036, -0.0014342145178684036, -0.004638951977968352, -0.007736090277359182, -0.010649155648402648, -0.013306047671493555, -0.01564082312223433, -0.017595331958165122, -0.019120664875185364, -0.02017837641700946, -0.020741453069891697, -0.020795001987215615, -0.020336642813097917, -0.01937659234425528, -0.017937439307072287, -0.01605361414717332, -0.013770566244524685, -0.011143668193024418, -0.008236873541284693, -0.00512116051362339, -0.001872799565193099, 0.0014285129602281106, 0.004701609417503775, 0.007865845772732562, 0.010843087828347087, 0.01355963985860183, 0.015948068067589787, 0.017948873769948484, 0.019511974797451613, 0.02059795826643028, 0.021179073389635567, 0.02123993934715472, 0.020777950190207506, 0.019803366169178657, 0.018339088571548923, 0.016420122937750074, 0.014092743202076926, 0.011413376692503495, 0.008447236835180484, 0.005266736675474589, 0.001949721792085243, -0.0014224342921030796, -0.004766825622644644, -0.008001051332409456, -0.011045245110773868, -0.013824046657724857, -0.016268466477704437, -0.0183175978880867, -0.01992013377766081, -0.021035650363780373, -0.021635625849232985, -0.021704168334336423, -0.02123843443920328, -0.020248727662251526, -0.018758273358612788, -0.016802675173390073, -0.01442906561432045, -0.011694971002927077, -0.008666918116214093, -0.005418816247279349, -0.002030154013573293, 0.0014159451135996363, 0.0048347610117874355, 0.008142058884927836, 0.011256163871514457, 0.014099977208244213, 0.016602884199987185, 0.01870250679997753, 0.020346257324130222, 0.021492654621383556, 0.02211236978227433, 0.02218897505096694, 0.021719376851525442, 0.02071392157053252, 0.019196170766077665, 0.017202350600789406, 0.014780488324228859, 0.011989256359865254, 0.00889655179314466, 0.005577845630634449, 0.0021143419426139726, -0.0014090082303222888, -0.004905589651580832, -0.008289251300775222, -0.011476428143240297, -0.014388204022376368, -0.0169522647718485, -0.019104693231692844, -0.02079156163410287, -0.021970281710725372, -0.022610678745961087, -0.02269576251777271, -0.0222221754654938, -0.021200306322634328, -0.019654065658479634, -0.01762032808419807, -0.015148054092932059, -0.012297112416656514, -0.009136831200036163, -0.005744313029523505, -0.0022025547471406647, 0.0014015821240636816, 0.004979500734773004, 0.008443045867156263, 0.011706675027270965, 0.014689570225327627, 0.017317638333743533, 0.019525350534920622, 0.021257375216423076, 0.0224699636489046, 0.023132053771873582, 0.02322606426917705, 0.022748358673196824, 0.02170936730991112, 0.020133363288725184, 0.018057897245600793, 0.015532903956532725, 0.012619502043745399, 0.009388515598962177, 0.005918753458577677, 0.0022950879128631695, -0.0013936203353077019, -0.005056700253527537, -0.008603898241440406, -0.011947600859789681, -0.015004997811136076, -0.0177001317980202, -0.019965784542375846, -0.021745152162181668, -0.022993268174411507, -0.02367813850517202, -0.02378155989064526, -0.023299600775860924, -0.022242732074113928, -0.020635603736159858, -0.018516471784701557, -0.015936289082210075, -0.012957481406684766, -0.00965243820547652, -0.006101754488727927, -0.0023922665352370284, 0.0013850707403448518, 0.005137412898898334, 0.008772306961969172, 0.012199968258041404, 0.015335497084391253, 0.01810098048495144, 0.020427427139727148, 0.022256487342528417, 0.023541915216202396, 0.02425073655385625, 0.02436409282978715, 0.023877739821182492, 0.022802187728621772, 0.021162478473522036, 0.01899760476849918, 0.016359584383080997, 0.013312211544931866, 0.00992951541543272, 0.006293962860044532, 0.002494449117477997, -0.001375874701930989, -0.00522188422275308, -0.008948818610024297, -0.012464614196551687, -0.015682177491412555, -0.018521541478982193, -0.020911851851144147, -0.02279313386825835, -0.024117795820529128, -0.024851831433870496, -0.024975690879125174, -0.024484798122965536, -0.023389701006101316, -0.021715849438222797, -0.019503006238796267, -0.016804304203895018, -0.01368497171879119, -0.010220757448281948, -0.006496092118328332, -0.0026020319676232843, 0.001365966067563401, 0.005310383105204344, 0.009134033735229603, 0.012742459293363153, 0.016046260085392557, 0.018963309009365447, 0.021420791795844378, 0.02335702321385102, 0.024722993974344232, 0.025483609574772036, 0.025618589810057598, 0.025123005945741624, 0.024007441406453174, 0.02229777106101561, 0.020034563558235203, 0.017272120454565915, 0.0140771748476989, 0.010527280667149653, 0.006708931465170797, 0.0027154543076808382, -0.0013552699833031712, -0.005403204578809037, -0.009328613679311357, -0.013034518523135051, -0.016429091920474845, -0.019427932222406526, -0.02195616044737453, -0.023950288492718824, -0.025359811855992162, -0.02614848694825868, -0.026295260738500102, -0.02579482893893182, -0.02465780801919245, -0.022910515801281728, -0.02059436500497898, -0.017764883649082144, -0.014490385432373016, -0.010850321892127689, -0.006933356052438774, -0.0028352042329097753, 0.0013437014832890033, 0.005500673070805175, 0.009533288461087149, 0.013341913619528646, 0.016832162732151795, 0.019917235790679125, 0.022520075719611662, 0.024575291474765667, 0.026030799158008915, 0.026849140003096225, 0.02700844192819885, 0.02650300003184549, 0.02534346071923226, 0.023556603857893828, 0.021184727237718665, 0.018284647407741748, 0.014926340439833754, 0.01119125509333045, 0.007170339003769359, 0.0029618256906964366, -0.001331163805118587, -0.005603146136868287, -0.009748865920135921, -0.013665887485905524, -0.017257124339123915, -0.02043324390195766, -0.023114888018489464, -0.025234654067561823, -0.02673878726933229, -0.027588541741460543, -0.02776117589459602, -0.02725055665931302, -0.026067356591233094, -0.0242388378745622, -0.021808227392475857, -0.018833697106561933, -0.015386973738882403, -0.011551610938363006, -0.00742096551061517, -0.0030959266881517037, 0.001317546368469544, 0.005711018774875783, 0.009976242359706794, 0.014007821004124314, 0.017705813299013568, 0.02097820829258309, 0.023743213042684303, 0.025931295145825258, 0.027486929283124892, 0.028370003962019125, 0.028556852869357694, 0.02804088438713193, 0.02683279263428047, 0.02496034364739416, 0.02246774074882283, 0.019414583516504727, 0.015874444810639654, 0.011933099780192646, 0.007686449432636199, 0.003238188987982639, -0.0013027223377762409, -0.005824728425681175, -0.01021641498335492, -0.0143692527200899, -0.018180277472766543, -0.021554641143706536, -0.02440797029840228, -0.02666847382012554, -0.028278747022388008, -0.029197226935616903, -0.029399261935112754, -0.028877768258816584, -0.02764345604759437, -0.02572461808166495, -0.023166485126521388, -0.020030162476652687, -0.016391172632809214, -0.012337638813004781, -0.007968152937031377, -0.003389379616669657, 0.0012865456681831298, 0.005944760790801549, 0.010470496487726267, 0.014751901997060052, 0.018682807307600788, 0.022165353853743745, 0.02511242852427709, 0.027449840497666158, 0.029118186562759683, 0.030074358085368774, 0.030292651457416855, 0.02976545350647457, 0.02850348371523099, 0.026535585949934375, 0.02390807345864437, 0.020683641902855238, 0.01693987585888804, 0.012767384304911852, 0.008267609845855799, 0.003550364592062848, -0.0012688475056811717, -0.006071656625437276, -0.010739732259961119, -0.015157696370589255, -0.019215972845949746, -0.022813502949086857, -0.0258602595172773, -0.028279497422869986, -0.03000968409937416, -0.031006061634676355, -0.0312418008477099, -0.030708717680625327, -0.029417532914776237, -0.027397667395413428, -0.02469657635356035, -0.02137863776437287, -0.01752362070005786, -0.013224770050090023, -0.00858655353405395, -0.0037221253852645977, 0.001249431774876786, 0.006206019700854476, 0.011025520737872224, 0.01558880402193828, 0.019782667721332886, 0.023502644714648798, 0.026655602229819213, 0.029162070816599703, 0.03095824447811959, 0.03199760169175226, 0.03225210621587792, 0.03171295678576018, 0.030390865801022342, 0.028315858631141038, 0.025536596932260312, 0.02211924108986833, 0.018145878289095554, 0.013712553486468966, 0.008926950447013124, 0.0039057787725801647, -0.0012280697379316008, -0.006348526174896253, -0.01132943763183663, -0.016047672522620546, -0.020386161729657456, -0.024236800539339205, -0.02750313949968955, -0.030102797291907995, -0.03196953532616544, -0.033054941895315104, -0.033329683153327495, -0.032784288700560854, -0.0314294509004591, -0.029295828945729147, -0.026433360845851756, -0.02291009862393184, -0.018810593791329953, -0.014233871322446913, -0.009291040603097043, -0.004102600919038626, 0.0012044932410635316, 0.006499935665802778, 0.01165326488927006, 0.016537075309099286, 0.021030163990934887, 0.02502053551081111, 0.028408190415966098, 0.03110762795489405, 0.033050000520523266, 0.03418486560509714, 0.03448149078152378, 0.03392967806934082, 0.032540085751275594, 0.030344037993709903, 0.027392825191067536, 0.02375651049218683, 0.019522270167744785, 0.014792307040607423, 0.009681386839109378, 0.004314056781926493, -0.0011783862739623765, -0.006661104396002175, -0.011999025519415403, -0.017060167747651196, -0.021718899276122857, -0.02585905350273495, -0.029376822168700183, -0.03218335456211164, -0.034206997793803866, -0.035395121754895106, -0.03571548238235808, -0.03515708805171253, -0.03373054601342288, -0.03146787849760915, -0.028421811119948154, -0.02466454921140987, -0.020286070346324788, -0.015391973344937582, -0.010100935080726818, -0.004541836254177766, 0.0011493743426731647, 0.006833000863593335, 0.012369025707057535, 0.017620555178721402, 0.02245720081468121, 0.026758312937909628, 0.030415986351579702, 0.03333776338604048, 0.035448966687508174, 0.036694602996596645, 0.037040789501930585, 0.036475665919543515, 0.0350097679627348, 0.03267585102537363, 0.029528166383197368, 0.025641205692228317, 0.021107942699744846, 0.01603761355714693, 0.010553088626439146, 0.004787898916586145, -0.0011170109838320786, -0.007016724615632022, -0.012765906055097089, -0.018222376034960235, -0.023250623888004633, -0.02772516866856249, -0.03153368618986353, -0.03457982415788262, -0.0367856349589826, -0.038093564795228206, -0.03846794853982125, -0.037895971649023814, -0.036388073426999026, -0.0339777795814216, -0.03072096599778863, -0.02669456965654962, -0.021994776275473676, -0.01673472724307832, -0.011041800395747568, -0.00505452988290973, 0.0010807605064279292, 0.007213528846832649, 0.01319270434508554, 0.01887040407466864, 0.024105585848465318, 0.028767547115414665, 0.03273918320045868, 0.035919923785232455, 0.038228274120851856, 0.03960389689510679, 0.04000918171978581, 0.03943026159467963, 0.03787744914379113, 0.0353850795802979, 0.03201076189467498, 0.027834054319310762, 0.02295459434521461, 0.017489727101159706, 0.011571688417459912, 0.005344410073992825, -0.0010399757050144841, -0.0074248477399438805, -0.013652932944866013, -0.019570175058984503, -0.025029540022369297, -0.02989466412910709, -0.03404325457445231, -0.037370157732002536, -0.039790018320897166, -0.04123946236788188, -0.04167874830312566, -0.041092843377906925, -0.039491896546726336, -0.036911093677711414, -0.033409896084762726, -0.029070678542675074, -0.02399679777989721, -0.018310136576819232, -0.012148181680284304, -0.005660705451633081, 0.0009938687974211094, 0.0076523297129725025, 0.01415067499982784, 0.02032814496710092, 0.026031193460751608, 0.031117298244761806, 0.03545851642402369, 0.0389446963687638, 0.04148626566814567, 0.0430165247207653, 0.043493387422937076, 0.04290052375832249, 0.04124787360313001, 0.03857151638831131, 0.03493289703084622, 0.03041742437480281, 0.025132473880760012, 0.019204841087239376, 0.012777706073684657, 0.006007181439886247, -0.0009414731264110504, -0.007897878060513699, -0.014690704930135929, -0.021151889295771584, -0.027120781995569207, -0.03244813648414854, -0.036999833431092026, -0.04066024980477284, -0.04333518799363926, -0.044954290955762775, -0.04547288169133724, -0.044873179207958296, -0.043164858261110495, -0.04038493613666263, -0.0365969862096151, -0.031889694561537396, -0.026374792162006683, -0.020184410616967702, -0.013467923875374594, -0.006388351206328386, 0.0008815921118185305, 0.008163700892720189, 0.015278640684767338, 0.022050356436424164, 0.028310420992857712, 0.033902216210620804, 0.038684843093857474, 0.04253666353426054, 0.04535838483786766, 0.04707560904475848, 0.047640781837326326, 0.047034490284135554, 0.04526607443227936, 0.04237353446064296, 0.03842273233382807, 0.03350590423117338, 0.02773951704213118, 0.02126151849891941, 0.014228045656594964, 0.006809670052392738, -0.0008127303613873564, -0.00845237281107258, -0.0159211379194867, -0.02303419303441456, -0.029614557259915096, -0.03549749566512367, -0.040534633795878135, -0.044597689957183224, -0.04758173162654764, -0.04940787359363372, -0.05002534873600844, -0.049412897417359984, -0.04757943797181527, -0.044563998218335926, -0.0404349060083777, -0.03528825500760315, -0.029245679802396875, -0.022451491563595237, -0.015069241468690719, -0.00727779348202495, 0.0007329994411380307, 0.008766911441869713, 0.016626140142081094, 0.024116166334272132, 0.031050557834344406, 0.03725559911993998, 0.04257463205223556, 0.0468719994899754, 0.05003649280530915, 0.051984215989698504, 0.05266079292072407, 0.05204286011769851, 0.05013880456847281, 0.04698872454599365, 0.042663610306633515, 0.037263760710770574, 0.030916470660572133, 0.02377304234622229, 0.016005190181960952, 0.007800924576506751, -0.0006399870643162677, -0.0091108727973616, -0.01740320447709402, -0.025311718939246008, -0.03263948655884517, -0.03920280232746917, -0.04483577828208111, -0.04939452279944783, -0.05276080179806228, -0.054845089045171526, -0.05558892726589368, -0.054966538251426916, -0.05298563827005523, -0.04968743436259672, -0.045145797086595135, -0.039465625474603624, -0.03278043989704993, -0.025249257679180216, -0.0170528242402898, -0.008389288755623215, 0.0005305725205495466, 0.009488470446348752, 0.018263930940601202, 0.02663970698412368, 0.03440714217315404, 0.0413713537628353, 0.04735610682044428, 0.052208257960808434, 0.05580165700999147, 0.058040407612741166, 0.05886140296968819, 0.058236070204037337, 0.05617127590227354, 0.05270936569215346, 0.04792733182312627, 0.04193512408648538, 0.03487314053260381, 0.02690895479132257, 0.01823335587564968, 0.009055793673379052, -0.0004006615288056828, -0.00990472457261861, -0.01922253541079721, -0.028123396414942516, -0.03638546666900316, -0.04380127312229389, -0.050182902127436875, -0.055366741909069817, -0.059217656746670844, -0.061632486877791125, -0.0625427840302011, -0.06191671069946386, -0.05976005136997113, -0.05611630535181256, -0.051065853255304106, -0.044724211807306895, -0.03723941417493742, -0.028788574651262038, -0.019573716937970546, -0.009816963824513431, 0.0002447976542581643, 0.010365647912284425, 0.02029662514555339, 0.02979182887031968, 0.038614487530296074, 0.046542840967106126, 0.05337569213534612, 0.05893748962269077, 0.06308281315348811, 0.06570014807312911, 0.06671485151208935, 0.06609123212243802, 0.06383368651178462, 0.05998685826333667, 0.05463480917852971, 0.04789921653551982, 0.03993663413396974, 0.030934878105860313, 0.021108620340357785, 0.010694292353985049, -0.000055579966072378735, -0.010878475554157368, -0.02150826455208684, -0.0316817271138933, -0.04114504555836765, -0.04966011036966608, -0.05701048402120933, -0.06300687391799167, -0.06749197676406792, -0.07034457112098592, -0.07148275249891736, -0.07086622560648369, -0.06849759090005603, -0.0644225867831778, -0.05872927413119461, -0.051546175643438844, -0.04303940822721678, -0.03340887156492654, -0.022883579592515142, -0.0117162432380793, -0.00017723189123422176, 0.011451942788160103, 0.022885464374922754, 0.033840205146846096, 0.04404270514452168, 0.05323596556231756, 0.0611858885058277, 0.06768720258065185, 0.07256872518894629, 0.07569782755373403, 0.0769839870235062, 0.0763813327030229, 0.07389011440687408, 0.06955705077314138, 0.06347453948797596, 0.05577874030510009, 0.04664656922426033, 0.03629166914295973, 0.02495944785266131, 0.012921297779449724, 0.0004681327799633279, -0.012096604934119787, -0.02446430051326567, -0.03632870742170339, -0.04739349029666966, -0.05737958490394189, -0.06603219339913259, -0.0731272405914557, -0.07847712871210755, -0.08193564405857741, -0.08340188846345706, -0.0828231313730624, -0.08019650388575829, -0.07556948379014228, -0.06903914980047904, -0.06075021311142119, -0.05089186436229865, -0.039693503382582034, -0.027419446964902026, -0.014362735689161719, -0.0008381838553119206, 0.01282516371060033, 0.026291988340062616, 0.039228876438802976, 0.05131252233152403, 0.06223775446178087, 0.07172518698177661, 0.07952830622706637, 0.08543981374265511, 0.08929706415282987, 0.0909864568796878, 0.09044666504488008, 0.08767061227369252, 0.08270613791944983, 0.07565532273444175, 0.0666724794787314, 0.05596084559826265, 0.043768047125701544, 0.030380433576706035, 0.016116412073490242, 0.001318934515252228, -0.01365268631650857, -0.02843143784849382, -0.04265153871210899, -0.05595742386340848, -0.06801256472957104, -0.07850790727602941, -0.08716971818437527, -0.09376664180269138, -0.0981157879210721, -0.10008769235809131, -0.09961001832756423, -0.09666989599527905, -0.09131482984925757, -0.08365213773798943, -0.07384692086654407, -0.06211859983148428, -0.04873608705656028, -0.03401169990116058, -0.01829395041648606, -0.0019593764301506977, 0.014596396376675315, 0.030968151116136388, 0.04675090906811126, 0.061549855407494046, 0.07499012016988567, 0.08672617440988756, 0.09645060841446165, 0.10390207147197254, 0.10887217081613709, 0.111211150578966, 0.11083219938661018, 0.10771426698985458, 0.1019033053079908, 0.09351188666693155, 0.08271719094928028, 0.06975739291935958, 0.05492652018971173, 0.03856789020578331, 0.02106627031240182, 0.0028389375435634327, -0.01567415657392982, -0.034020886925686944, -0.051747873450736386, -0.06841155664804177, -0.08358916235281316, -0.09688928786169759, -0.10796184763762301, -0.1165071293753649, -0.12228372992451303, -0.12511516506351938, -0.12489497686974774, -0.12159019677681535, -0.11524306057542291, -0.10597091272051502, -0.09396428039908959, -0.07948314187429105, -0.06285145760316091, -0.044450075468664745, -0.024708162127954344, -0.004093349955757894, 0.016899177583090667, 0.03775841091365877, 0.057969775791158376, 0.077027640956467, 0.09444777219727382, 0.10977943053792967, 0.12261681705438875, 0.13260957879629867, 0.1394721092951341, 0.14299140277451738, 0.1430332529225548, 0.13954662425038294, 0.1325660658228375, 0.12221208256362037, 0.108689427367626, 0.09228332678160647, 0.07335370287653258, 0.0523275029443789, 0.029689295628155837, 0.005970335890561177, -0.01826365924112269, -0.042425747944643696, -0.06592170955057826, -0.08816437359801006, -0.1085879926813563, -0.12666231393687538, -0.14190600633619363, -0.15389911147840166, -0.16229420415986734, -0.16682597531758303, -0.16731898346602683, -0.16369336078079016, -0.15596830566349973, -0.14426324394643283, -0.12879659473383123, -0.10988213300503037, -0.08792299822707543, -0.06340345500629486, -0.03687856690458372, -0.00896199663448453, 0.01968780634197324, 0.048382727437664384, 0.07642107860306181, 0.10310429250053224, 0.1277538315634778, 0.1497279130443418, 0.1684376491072559, 0.18336220837419148, 0.19406262205081448, 0.20019388358405366, 0.20151502526600837, 0.19789689761916696, 0.189327426902406, 0.1759141816158624, 0.15788413925089936, 0.1355806083959433, 0.10945732723744157, 0.08006982598769256, 0.04806420629408882, 0.014163553705028316, -0.020847741709477518, -0.056141427884018255, -0.0908642208733083, -0.12415760806429027, -0.15517817999730485, -0.1831180260798301, -0.20722471962616423, -0.2268204185687688, -0.24131962000459464, -0.2502451293581236, -0.2532418380095207, -0.250087946155664, -0.24070331961559538, -0.22515472921520677, -0.20365778804800397, -0.1765754738988976, -0.14441319988521523, -0.1078104742558364, -0.06752926856705777, -0.02443929036167685, 0.020499569738334285, 0.06625727766290929, 0.11175578088768122, 0.15589276288422144, 0.19756652586968287, 0.23570146589357968, 0.26927358087283637, 0.29733544082962854, 0.3190400507314688, 0.33366305013827313, 0.3406227202063703, 0.3394973070841716, 0.3300392206839182, 0.3121857282915725, 0.28606583230094706, 0.2520030991258598, 0.21051429046014672, 0.16230373676503088, 0.10825348428940883, 0.04940933911145689, -0.013036977370172781, -0.0777692593667126, -0.14337144941015142, -0.20835501273819312, -0.27118852655467424, -0.33032890100276513, -0.38425360400038866, -0.4314932301851665, -0.47066373594440686, -0.5004976584229822, -0.5198736467664834, -0.5278436586178057, -0.5236572136806412, -0.5067821483258684, -0.47692137978539223, -0.43402526421586846, -0.37829921833413127, -0.31020636771814003, -0.23046508433710483, -0.14004137938069144, -0.040136222854785776, 0.06783203350335418, 0.18224985087955142, 0.30133493864376465, 0.4231664622049397, 0.5457184731667526, 0.6668959397772901, 0.7845726961028191, 0.8966305822835551, 1.0009990167107312, 1.0956942247623747, 1.1788573482944704, 1.2487906755200475, 1.3039912620028704, 1.3431812596962447, 1.3653343314019821, 1.369697601537646, 1.3558086792299628, 1.3235073847970373, 1.2729419137252571, 1.204569281197083, 1.1191500028608041, 1.0177370815456634, 0.9016594826725571, 0.7725003908622943, 0.6320706444335235, 0.482377840955056, 0.3255916937732503, 0.16400629467421043, 0, -0.16400629467421043, -0.3255916937732503, -0.482377840955056, -0.6320706444335235, -0.7725003908622943, -0.9016594826725571, -1.0177370815456634, -1.1191500028608041, -1.204569281197083, -1.2729419137252571, -1.3235073847970373, -1.3558086792299628, -1.369697601537646, -1.3653343314019821, -1.3431812596962447, -1.3039912620028704, -1.2487906755200475, -1.1788573482944704, -1.0956942247623747, -1.0009990167107312, -0.8966305822835551, -0.7845726961028191, -0.6668959397772901, -0.5457184731667526, -0.4231664622049397, -0.30133493864376465, -0.18224985087955142, -0.06783203350335418, 0.040136222854785776, 0.14004137938069144, 0.23046508433710483, 0.31020636771814003, 0.37829921833413127, 0.43402526421586846, 0.47692137978539223, 0.5067821483258684, 0.5236572136806412, 0.5278436586178057, 0.5198736467664834, 0.5004976584229822, 0.47066373594440686, 0.4314932301851665, 0.38425360400038866, 0.33032890100276513, 0.27118852655467424, 0.20835501273819312, 0.14337144941015142, 0.0777692593667126, 0.013036977370172781, -0.04940933911145689, -0.10825348428940883, -0.16230373676503088, -0.21051429046014672, -0.2520030991258598, -0.28606583230094706, -0.3121857282915725, -0.3300392206839182, -0.3394973070841716, -0.3406227202063703, -0.33366305013827313, -0.3190400507314688, -0.29733544082962854, -0.26927358087283637, -0.23570146589357968, -0.19756652586968287, -0.15589276288422144, -0.11175578088768122, -0.06625727766290929, -0.020499569738334285, 0.02443929036167685, 0.06752926856705777, 0.1078104742558364, 0.14441319988521523, 0.1765754738988976, 0.20365778804800397, 0.22515472921520677, 0.24070331961559538, 0.250087946155664, 0.2532418380095207, 0.2502451293581236, 0.24131962000459464, 0.2268204185687688, 0.20722471962616423, 0.1831180260798301, 0.15517817999730485, 0.12415760806429027, 0.0908642208733083, 0.056141427884018255, 0.020847741709477518, -0.014163553705028316, -0.04806420629408882, -0.08006982598769256, -0.10945732723744157, -0.1355806083959433, -0.15788413925089936, -0.1759141816158624, -0.189327426902406, -0.19789689761916696, -0.20151502526600837, -0.20019388358405366, -0.19406262205081448, -0.18336220837419148, -0.1684376491072559, -0.1497279130443418, -0.1277538315634778, -0.10310429250053224, -0.07642107860306181, -0.048382727437664384, -0.01968780634197324, 0.00896199663448453, 0.03687856690458372, 0.06340345500629486, 0.08792299822707543, 0.10988213300503037, 0.12879659473383123, 0.14426324394643283, 0.15596830566349973, 0.16369336078079016, 0.16731898346602683, 0.16682597531758303, 0.16229420415986734, 0.15389911147840166, 0.14190600633619363, 0.12666231393687538, 0.1085879926813563, 0.08816437359801006, 0.06592170955057826, 0.042425747944643696, 0.01826365924112269, -0.005970335890561177, -0.029689295628155837, -0.0523275029443789, -0.07335370287653258, -0.09228332678160647, -0.108689427367626, -0.12221208256362037, -0.1325660658228375, -0.13954662425038294, -0.1430332529225548, -0.14299140277451738, -0.1394721092951341, -0.13260957879629867, -0.12261681705438875, -0.10977943053792967, -0.09444777219727382, -0.077027640956467, -0.057969775791158376, -0.03775841091365877, -0.016899177583090667, 0.004093349955757894, 0.024708162127954344, 0.044450075468664745, 0.06285145760316091, 0.07948314187429105, 0.09396428039908959, 0.10597091272051502, 0.11524306057542291, 0.12159019677681535, 0.12489497686974774, 0.12511516506351938, 0.12228372992451303, 0.1165071293753649, 0.10796184763762301, 0.09688928786169759, 0.08358916235281316, 0.06841155664804177, 0.051747873450736386, 0.034020886925686944, 0.01567415657392982, -0.0028389375435634327, -0.02106627031240182, -0.03856789020578331, -0.05492652018971173, -0.06975739291935958, -0.08271719094928028, -0.09351188666693155, -0.1019033053079908, -0.10771426698985458, -0.11083219938661018, -0.111211150578966, -0.10887217081613709, -0.10390207147197254, -0.09645060841446165, -0.08672617440988756, -0.07499012016988567, -0.061549855407494046, -0.04675090906811126, -0.030968151116136388, -0.014596396376675315, 0.0019593764301506977, 0.01829395041648606, 0.03401169990116058, 0.04873608705656028, 0.06211859983148428, 0.07384692086654407, 0.08365213773798943, 0.09131482984925757, 0.09666989599527905, 0.09961001832756423, 0.10008769235809131, 0.0981157879210721, 0.09376664180269138, 0.08716971818437527, 0.07850790727602941, 0.06801256472957104, 0.05595742386340848, 0.04265153871210899, 0.02843143784849382, 0.01365268631650857, -0.001318934515252228, -0.016116412073490242, -0.030380433576706035, -0.043768047125701544, -0.05596084559826265, -0.0666724794787314, -0.07565532273444175, -0.08270613791944983, -0.08767061227369252, -0.09044666504488008, -0.0909864568796878, -0.08929706415282987, -0.08543981374265511, -0.07952830622706637, -0.07172518698177661, -0.06223775446178087, -0.05131252233152403, -0.039228876438802976, -0.026291988340062616, -0.01282516371060033, 0.0008381838553119206, 0.014362735689161719, 0.027419446964902026, 0.039693503382582034, 0.05089186436229865, 0.06075021311142119, 0.06903914980047904, 0.07556948379014228, 0.08019650388575829, 0.0828231313730624, 0.08340188846345706, 0.08193564405857741, 0.07847712871210755, 0.0731272405914557, 0.06603219339913259, 0.05737958490394189, 0.04739349029666966, 0.03632870742170339, 0.02446430051326567, 0.012096604934119787, -0.0004681327799633279, -0.012921297779449724, -0.02495944785266131, -0.03629166914295973, -0.04664656922426033, -0.05577874030510009, -0.06347453948797596, -0.06955705077314138, -0.07389011440687408, -0.0763813327030229, -0.0769839870235062, -0.07569782755373403, -0.07256872518894629, -0.06768720258065185, -0.0611858885058277, -0.05323596556231756, -0.04404270514452168, -0.033840205146846096, -0.022885464374922754, -0.011451942788160103, 0.00017723189123422176, 0.0117162432380793, 0.022883579592515142, 0.03340887156492654, 0.04303940822721678, 0.051546175643438844, 0.05872927413119461, 0.0644225867831778, 0.06849759090005603, 0.07086622560648369, 0.07148275249891736, 0.07034457112098592, 0.06749197676406792, 0.06300687391799167, 0.05701048402120933, 0.04966011036966608, 0.04114504555836765, 0.0316817271138933, 0.02150826455208684, 0.010878475554157368, 0.000055579966072378735, -0.010694292353985049, -0.021108620340357785, -0.030934878105860313, -0.03993663413396974, -0.04789921653551982, -0.05463480917852971, -0.05998685826333667, -0.06383368651178462, -0.06609123212243802, -0.06671485151208935, -0.06570014807312911, -0.06308281315348811, -0.05893748962269077, -0.05337569213534612, -0.046542840967106126, -0.038614487530296074, -0.02979182887031968, -0.02029662514555339, -0.010365647912284425, -0.0002447976542581643, 0.009816963824513431, 0.019573716937970546, 0.028788574651262038, 0.03723941417493742, 0.044724211807306895, 0.051065853255304106, 0.05611630535181256, 0.05976005136997113, 0.06191671069946386, 0.0625427840302011, 0.061632486877791125, 0.059217656746670844, 0.055366741909069817, 0.050182902127436875, 0.04380127312229389, 0.03638546666900316, 0.028123396414942516, 0.01922253541079721, 0.00990472457261861, 0.0004006615288056828, -0.009055793673379052, -0.01823335587564968, -0.02690895479132257, -0.03487314053260381, -0.04193512408648538, -0.04792733182312627, -0.05270936569215346, -0.05617127590227354, -0.058236070204037337, -0.05886140296968819, -0.058040407612741166, -0.05580165700999147, -0.052208257960808434, -0.04735610682044428, -0.0413713537628353, -0.03440714217315404, -0.02663970698412368, -0.018263930940601202, -0.009488470446348752, -0.0005305725205495466, 0.008389288755623215, 0.0170528242402898, 0.025249257679180216, 0.03278043989704993, 0.039465625474603624, 0.045145797086595135, 0.04968743436259672, 0.05298563827005523, 0.054966538251426916, 0.05558892726589368, 0.054845089045171526, 0.05276080179806228, 0.04939452279944783, 0.04483577828208111, 0.03920280232746917, 0.03263948655884517, 0.025311718939246008, 0.01740320447709402, 0.0091108727973616, 0.0006399870643162677, -0.007800924576506751, -0.016005190181960952, -0.02377304234622229, -0.030916470660572133, -0.037263760710770574, -0.042663610306633515, -0.04698872454599365, -0.05013880456847281, -0.05204286011769851, -0.05266079292072407, -0.051984215989698504, -0.05003649280530915, -0.0468719994899754, -0.04257463205223556, -0.03725559911993998, -0.031050557834344406, -0.024116166334272132, -0.016626140142081094, -0.008766911441869713, -0.0007329994411380307, 0.00727779348202495, 0.015069241468690719, 0.022451491563595237, 0.029245679802396875, 0.03528825500760315, 0.0404349060083777, 0.044563998218335926, 0.04757943797181527, 0.049412897417359984, 0.05002534873600844, 0.04940787359363372, 0.04758173162654764, 0.044597689957183224, 0.040534633795878135, 0.03549749566512367, 0.029614557259915096, 0.02303419303441456, 0.0159211379194867, 0.00845237281107258, 0.0008127303613873564, -0.006809670052392738, -0.014228045656594964, -0.02126151849891941, -0.02773951704213118, -0.03350590423117338, -0.03842273233382807, -0.04237353446064296, -0.04526607443227936, -0.047034490284135554, -0.047640781837326326, -0.04707560904475848, -0.04535838483786766, -0.04253666353426054, -0.038684843093857474, -0.033902216210620804, -0.028310420992857712, -0.022050356436424164, -0.015278640684767338, -0.008163700892720189, -0.0008815921118185305, 0.006388351206328386, 0.013467923875374594, 0.020184410616967702, 0.026374792162006683, 0.031889694561537396, 0.0365969862096151, 0.04038493613666263, 0.043164858261110495, 0.044873179207958296, 0.04547288169133724, 0.044954290955762775, 0.04333518799363926, 0.04066024980477284, 0.036999833431092026, 0.03244813648414854, 0.027120781995569207, 0.021151889295771584, 0.014690704930135929, 0.007897878060513699, 0.0009414731264110504, -0.006007181439886247, -0.012777706073684657, -0.019204841087239376, -0.025132473880760012, -0.03041742437480281, -0.03493289703084622, -0.03857151638831131, -0.04124787360313001, -0.04290052375832249, -0.043493387422937076, -0.0430165247207653, -0.04148626566814567, -0.0389446963687638, -0.03545851642402369, -0.031117298244761806, -0.026031193460751608, -0.02032814496710092, -0.01415067499982784, -0.0076523297129725025, -0.0009938687974211094, 0.005660705451633081, 0.012148181680284304, 0.018310136576819232, 0.02399679777989721, 0.029070678542675074, 0.033409896084762726, 0.036911093677711414, 0.039491896546726336, 0.041092843377906925, 0.04167874830312566, 0.04123946236788188, 0.039790018320897166, 0.037370157732002536, 0.03404325457445231, 0.02989466412910709, 0.025029540022369297, 0.019570175058984503, 0.013652932944866013, 0.0074248477399438805, 0.0010399757050144841, -0.005344410073992825, -0.011571688417459912, -0.017489727101159706, -0.02295459434521461, -0.027834054319310762, -0.03201076189467498, -0.0353850795802979, -0.03787744914379113, -0.03943026159467963, -0.04000918171978581, -0.03960389689510679, -0.038228274120851856, -0.035919923785232455, -0.03273918320045868, -0.028767547115414665, -0.024105585848465318, -0.01887040407466864, -0.01319270434508554, -0.007213528846832649, -0.0010807605064279292, 0.00505452988290973, 0.011041800395747568, 0.01673472724307832, 0.021994776275473676, 0.02669456965654962, 0.03072096599778863, 0.0339777795814216, 0.036388073426999026, 0.037895971649023814, 0.03846794853982125, 0.038093564795228206, 0.0367856349589826, 0.03457982415788262, 0.03153368618986353, 0.02772516866856249, 0.023250623888004633, 0.018222376034960235, 0.012765906055097089, 0.007016724615632022, 0.0011170109838320786, -0.004787898916586145, -0.010553088626439146, -0.01603761355714693, -0.021107942699744846, -0.025641205692228317, -0.029528166383197368, -0.03267585102537363, -0.0350097679627348, -0.036475665919543515, -0.037040789501930585, -0.036694602996596645, -0.035448966687508174, -0.03333776338604048, -0.030415986351579702, -0.026758312937909628, -0.02245720081468121, -0.017620555178721402, -0.012369025707057535, -0.006833000863593335, -0.0011493743426731647, 0.004541836254177766, 0.010100935080726818, 0.015391973344937582, 0.020286070346324788, 0.02466454921140987, 0.028421811119948154, 0.03146787849760915, 0.03373054601342288, 0.03515708805171253, 0.03571548238235808, 0.035395121754895106, 0.034206997793803866, 0.03218335456211164, 0.029376822168700183, 0.02585905350273495, 0.021718899276122857, 0.017060167747651196, 0.011999025519415403, 0.006661104396002175, 0.0011783862739623765, -0.004314056781926493, -0.009681386839109378, -0.014792307040607423, -0.019522270167744785, -0.02375651049218683, -0.027392825191067536, -0.030344037993709903, -0.032540085751275594, -0.03392967806934082, -0.03448149078152378, -0.03418486560509714, -0.033050000520523266, -0.03110762795489405, -0.028408190415966098, -0.02502053551081111, -0.021030163990934887, -0.016537075309099286, -0.01165326488927006, -0.006499935665802778, -0.0012044932410635316, 0.004102600919038626, 0.009291040603097043, 0.014233871322446913, 0.018810593791329953, 0.02291009862393184, 0.026433360845851756, 0.029295828945729147, 0.0314294509004591, 0.032784288700560854, 0.033329683153327495, 0.033054941895315104, 0.03196953532616544, 0.030102797291907995, 0.02750313949968955, 0.024236800539339205, 0.020386161729657456, 0.016047672522620546, 0.01132943763183663, 0.006348526174896253, 0.0012280697379316008, -0.0039057787725801647, -0.008926950447013124, -0.013712553486468966, -0.018145878289095554, -0.02211924108986833, -0.025536596932260312, -0.028315858631141038, -0.030390865801022342, -0.03171295678576018, -0.03225210621587792, -0.03199760169175226, -0.03095824447811959, -0.029162070816599703, -0.026655602229819213, -0.023502644714648798, -0.019782667721332886, -0.01558880402193828, -0.011025520737872224, -0.006206019700854476, -0.001249431774876786, 0.0037221253852645977, 0.00858655353405395, 0.013224770050090023, 0.01752362070005786, 0.02137863776437287, 0.02469657635356035, 0.027397667395413428, 0.029417532914776237, 0.030708717680625327, 0.0312418008477099, 0.031006061634676355, 0.03000968409937416, 0.028279497422869986, 0.0258602595172773, 0.022813502949086857, 0.019215972845949746, 0.015157696370589255, 0.010739732259961119, 0.006071656625437276, 0.0012688475056811717, -0.003550364592062848, -0.008267609845855799, -0.012767384304911852, -0.01693987585888804, -0.020683641902855238, -0.02390807345864437, -0.026535585949934375, -0.02850348371523099, -0.02976545350647457, -0.030292651457416855, -0.030074358085368774, -0.029118186562759683, -0.027449840497666158, -0.02511242852427709, -0.022165353853743745, -0.018682807307600788, -0.014751901997060052, -0.010470496487726267, -0.005944760790801549, -0.0012865456681831298, 0.003389379616669657, 0.007968152937031377, 0.012337638813004781, 0.016391172632809214, 0.020030162476652687, 0.023166485126521388, 0.02572461808166495, 0.02764345604759437, 0.028877768258816584, 0.029399261935112754, 0.029197226935616903, 0.028278747022388008, 0.02666847382012554, 0.02440797029840228, 0.021554641143706536, 0.018180277472766543, 0.0143692527200899, 0.01021641498335492, 0.005824728425681175, 0.0013027223377762409, -0.003238188987982639, -0.007686449432636199, -0.011933099780192646, -0.015874444810639654, -0.019414583516504727, -0.02246774074882283, -0.02496034364739416, -0.02683279263428047, -0.02804088438713193, -0.028556852869357694, -0.028370003962019125, -0.027486929283124892, -0.025931295145825258, -0.023743213042684303, -0.02097820829258309, -0.017705813299013568, -0.014007821004124314, -0.009976242359706794, -0.005711018774875783, -0.001317546368469544, 0.0030959266881517037, 0.00742096551061517, 0.011551610938363006, 0.015386973738882403, 0.018833697106561933, 0.021808227392475857, 0.0242388378745622, 0.026067356591233094, 0.02725055665931302, 0.02776117589459602, 0.027588541741460543, 0.02673878726933229, 0.025234654067561823, 0.023114888018489464, 0.02043324390195766, 0.017257124339123915, 0.013665887485905524, 0.009748865920135921, 0.005603146136868287, 0.001331163805118587, -0.0029618256906964366, -0.007170339003769359, -0.01119125509333045, -0.014926340439833754, -0.018284647407741748, -0.021184727237718665, -0.023556603857893828, -0.02534346071923226, -0.02650300003184549, -0.02700844192819885, -0.026849140003096225, -0.026030799158008915, -0.024575291474765667, -0.022520075719611662, -0.019917235790679125, -0.016832162732151795, -0.013341913619528646, -0.009533288461087149, -0.005500673070805175, -0.0013437014832890033, 0.0028352042329097753, 0.006933356052438774, 0.010850321892127689, 0.014490385432373016, 0.017764883649082144, 0.02059436500497898, 0.022910515801281728, 0.02465780801919245, 0.02579482893893182, 0.026295260738500102, 0.02614848694825868, 0.025359811855992162, 0.023950288492718824, 0.02195616044737453, 0.019427932222406526, 0.016429091920474845, 0.013034518523135051, 0.009328613679311357, 0.005403204578809037, 0.0013552699833031712, -0.0027154543076808382, -0.006708931465170797, -0.010527280667149653, -0.0140771748476989, -0.017272120454565915, -0.020034563558235203, -0.02229777106101561, -0.024007441406453174, -0.025123005945741624, -0.025618589810057598, -0.025483609574772036, -0.024722993974344232, -0.02335702321385102, -0.021420791795844378, -0.018963309009365447, -0.016046260085392557, -0.012742459293363153, -0.009134033735229603, -0.005310383105204344, -0.001365966067563401, 0.0026020319676232843, 0.006496092118328332, 0.010220757448281948, 0.01368497171879119, 0.016804304203895018, 0.019503006238796267, 0.021715849438222797, 0.023389701006101316, 0.024484798122965536, 0.024975690879125174, 0.024851831433870496, 0.024117795820529128, 0.02279313386825835, 0.020911851851144147, 0.018521541478982193, 0.015682177491412555, 0.012464614196551687, 0.008948818610024297, 0.00522188422275308, 0.001375874701930989, -0.002494449117477997, -0.006293962860044532, -0.00992951541543272, -0.013312211544931866, -0.016359584383080997, -0.01899760476849918, -0.021162478473522036, -0.022802187728621772, -0.023877739821182492, -0.02436409282978715, -0.02425073655385625, -0.023541915216202396, -0.022256487342528417, -0.020427427139727148, -0.01810098048495144, -0.015335497084391253, -0.012199968258041404, -0.008772306961969172, -0.005137412898898334, -0.0013850707403448518, 0.0023922665352370284, 0.006101754488727927, 0.00965243820547652, 0.012957481406684766, 0.015936289082210075, 0.018516471784701557, 0.020635603736159858, 0.022242732074113928, 0.023299600775860924, 0.02378155989064526, 0.02367813850517202, 0.022993268174411507, 0.021745152162181668, 0.019965784542375846, 0.0177001317980202, 0.015004997811136076, 0.011947600859789681, 0.008603898241440406, 0.005056700253527537, 0.0013936203353077019, -0.0022950879128631695, -0.005918753458577677, -0.009388515598962177, -0.012619502043745399, -0.015532903956532725, -0.018057897245600793, -0.020133363288725184, -0.02170936730991112, -0.022748358673196824, -0.02322606426917705, -0.023132053771873582, -0.0224699636489046, -0.021257375216423076, -0.019525350534920622, -0.017317638333743533, -0.014689570225327627, -0.011706675027270965, -0.008443045867156263, -0.004979500734773004, -0.0014015821240636816, 0.0022025547471406647, 0.005744313029523505, 0.009136831200036163, 0.012297112416656514, 0.015148054092932059, 0.01762032808419807, 0.019654065658479634, 0.021200306322634328, 0.0222221754654938, 0.02269576251777271, 0.022610678745961087, 0.021970281710725372, 0.02079156163410287, 0.019104693231692844, 0.0169522647718485, 0.014388204022376368, 0.011476428143240297, 0.008289251300775222, 0.004905589651580832, 0.0014090082303222888, -0.0021143419426139726, -0.005577845630634449, -0.00889655179314466, -0.011989256359865254, -0.014780488324228859, -0.017202350600789406, -0.019196170766077665, -0.02071392157053252, -0.021719376851525442, -0.02218897505096694, -0.02211236978227433, -0.021492654621383556, -0.020346257324130222, -0.01870250679997753, -0.016602884199987185, -0.014099977208244213, -0.011256163871514457, -0.008142058884927836, -0.0048347610117874355, -0.0014159451135996363, 0.002030154013573293, 0.005418816247279349, 0.008666918116214093, 0.011694971002927077, 0.01442906561432045, 0.016802675173390073, 0.018758273358612788, 0.020248727662251526, 0.02123843443920328, 0.021704168334336423, 0.021635625849232985, 0.021035650363780373, 0.01992013377766081, 0.0183175978880867, 0.016268466477704437, 0.013824046657724857, 0.011045245110773868, 0.008001051332409456, 0.004766825622644644, 0.0014224342921030796, -0.001949721792085243, -0.005266736675474589, -0.008447236835180484, -0.011413376692503495, -0.014092743202076926, -0.016420122937750074, -0.018339088571548923, -0.019803366169178657, -0.020777950190207506, -0.02123993934715472, -0.021179073389635567, -0.02059795826643028, -0.019511974797451613, -0.017948873769948484, -0.015948068067589787, -0.01355963985860183, -0.010843087828347087, -0.007865845772732562, -0.004701609417503775, -0.0014285129602281106, 0.001872799565193099, 0.00512116051362339, 0.008236873541284693, 0.011143668193024418, 0.013770566244524685, 0.01605361414717332, 0.017937439307072287, 0.01937659234425528, 0.020336642813097917, 0.020795001987215615, 0.020741453069891697, 0.02017837641700946, 0.019120664875185364, 0.017595331958165122, 0.01564082312223433, 0.013306047671493555, 0.010649155648402648, 0.007736090277359182, 0.004638951977968352, 0.0014342145178684036, -0.001799162577462036, -0.004981678783586307, -0.00803524662224405, -0.010885106980668984, -0.013461658742704948, -0.015702157970090804, -0.017552245167735667, -0.018967263473787375, -0.01991333582598347, -0.02036817514037182, -0.020321608148466484, -0.01977580061067893, -0.018745178982852075, -0.017256051077630386, -0.015345935649716345, -0.013062617962545028, -0.01046295508903968, -0.0076114607973697635, -0.004578705225476139, -0.0014395690256408702, 0.0017286048456612963, 0.004847916090733178, 0.007841821882691375, 0.010637014475414111, 0.013165215568622846, 0.015364843522381998, 0.017182512726305502, 0.01857432863270137, 0.019506947054543904, 0.019958372181729127, 0.01991847423730338, 0.01938921461919245, 0.01838457358146649, 0.016930182824770337, 0.015062672608372893, 0.012828749988630149, 0.010284031359299499, 0.007491658457589516, 0.004520732260143092, 0.0014446035976516342, -0.0016609372410321054, -0.004719527247166626, -0.007656107809154755, -0.010398766080577318, -0.012880495440505936, -0.015040831963555518, -0.016827326947297692, -0.018196819649855225, -0.01911647936800563, -0.01956459171199397, -0.01953107026540974, -0.01901768160023188, -0.01803797868106729, -0.016616944864676755, -0.014790357804758226, -0.012603889433318145, -0.010111964640790701, -0.007376407159717166, -0.004464906327954974, -0.001449342741398208, 0.0015959858017239922, 0.004596194294233312, 0.007477651391260532, 0.010169785919654208, 0.012606814717344235, 0.014729349512403154, 0.01648584360424349, 0.017833843119877037, 0.01874101248610479, 0.019185909362704284, 0.019158490483088715, 0.01866033649408109, 0.017704590811336286, 0.016315614540938994, 0.014528366487870287, 0.012387524007289234, 0.009946366789984631, 0.007265451454066508, 0.0044111099000922445, 0.0014538086527930056, -0.0015335902438227366, -0.0044776238703218025, -0.007306034424402156, -0.009949542177106146, -0.012343541903364555, -0.014429681259710595, -0.016157282560405165, -0.017484573322782467, -0.01837969571531807, -0.01882147052916995, -0.01879989736963455, -0.01831637927773821, -0.017383666783279676, -0.01602552329171928, -0.014276120548695422, -0.012179179539710852, -0.009786878406685736, -0.007158554645467053, -0.004359233850482901, -0.0014580214729519095, 0.0014736026442548796, 0.004363544878129217, 0.007140870230383336, 0.00973754296376593, 0.012090092769458638, 0.01414116567388658, 0.015840921800370295, 0.017148245933255864, 0.018031741493678005, 0.01847048391086406, 0.018454515327594064, 0.017985068965737396, 0.017074518140026737, 0.015746051681265607, 0.014033084247438437, 0.01197841649783296, 0.00963316622211583, 0.007055497103818308, 0.004309176719598887, 0.0014619995123083503, -0.0014158862728771715, -0.00425370641239668, -0.00698180074193476, -0.009533332639218314, -0.011845926012245416, -0.013863189710638955, -0.015536092116421273, -0.0168241524187194, -0.017696419641072714, -0.01813221575649913, -0.018121625063668843, -0.01766571826299747, -0.016776506209538748, -0.015476624969149727, -0.013798760401989695, -0.011784826881051856, -0.009484920766687402, -0.006956074753967209, -0.004260844054152627, -0.001465759446719489, 0.0013603145544176297, 0.0041478759148108075, 0.006828493904860024, 0.009336488533302033, 0.011610539382894636, 0.013595184450611723, 0.015242172367376265, 0.01651163503978421, 0.017373052226689025, 0.017805984725702103, 0.017800558570582454, 0.017357688788491546, 0.016489037684412143, 0.015216709150542077, 0.013572686980568216, 0.011598031443268719, 0.009341854283142872, 0.006860097723097169, 0.00421414781373992, 0.0014693164894944498, -0.0013067701437436538, -0.004045837527545893, -0.006680641358165862, -0.009146618017092942, -0.011383466227450137, -0.01333662119966691, -0.014958585239220884, -0.016210082378840956, -0.01706100897767456, -0.01749115729156568, -0.01749069463624016, -0.01706038679988794, -0.01621156066440465, -0.0149658074101196, -0.013354434049408942, -0.011417677203762421, -0.009203698855466333, -0.006767389126796241, -0.004169005836660102, -0.0014726845426654006, 0.0012551441002946941, 0.003947390620945353, 0.006537956358078169, 0.008963355880674064, 0.011164272388517619, 0.013087007995559164, 0.014684793446642084, 0.015918925332827474, 0.016759703163586933, 0.017187143618797848, 0.0171914548166528, 0.016773259358913464, 0.015943561106138756, 0.014723456940057238, 0.013143601033071101, 0.011243435212211054, 0.00907020472798442, 0.006677783977501463, 0.004125341358152247, 0.0014758763303124628, -0.0012053351494930766, -0.0038523484742248285, -0.006400171916557462, -0.00878636198084336, -0.010952553425030978, -0.012845886472440123, -0.014420296322880373, -0.015637633514912264, -0.016468587900084916, -0.016893393861042563, -0.016902299817695796, -0.016495790885330992, -0.01568455963193199, -0.014489226079229513, -0.012939814250640322, -0.01107499853809616, -0.008941138792478428, -0.006591128201166812, -0.004083082575162304, -0.0014789035163418351, 0.001157249020643111, 0.003760537090970943, 0.006267039128890971, 0.00861531912689051, 0.010747932112644102, 0.012612829041148339, 0.014164626752362219, 0.01536571201722591, 0.016187152822868124, 0.016609394828468384, 0.016622726238085875, 0.01622750005434679, 0.015434108656074148, 0.014262711736419848, 0.01274272469594671, 0.010912080458642084, 0.008816283224044838, 0.006507277749850425, 0.004042162252482523, 0.0014817768087463344, -0.0011107978522339242, -0.0036717941336339363, -0.006138325668332812, -0.00844993117679996, -0.010550056192249314, -0.01238743634879346, -0.013917348406577117, -0.01510269849307106, -0.015914921089307917, -0.016334666983135473, -0.016352263632192453, -0.015967936998171128, -0.015191789792313466, -0.014043537065176076, -0.012552006034062261, -0.010754412822790455, -0.008695434248910946, -0.006426097799475317, -0.004002517365761239, -0.0014845060520990187, 0.0010658996567819582, 0.00358596796330269, 0.006013814428645822, 0.008289921319845897, 0.010358596338355093, 0.012169334985884213, 0.013678053248790532, 0.01484816052242278, 0.01565144667071286, 0.016068761725133072, 0.016090471856632402, 0.01571668077750334, 0.014957211510959793, 0.013831349362103474, 0.012367352789886285, 0.010601744571577348, 0.008578401029559696, 0.006347462023384735, 0.003964088777422805, 0.001487100309771126, -0.0010224778383769908, -0.003502916772823997, -0.0058933022978664, -0.008135030524631728, -0.010173244322676796, -0.011958175413308575, -0.01344635927757641, -0.014601693229142315, -0.01539631190288308, -0.015811258937180557, -0.01583693866916641, -0.015473337093048467, -0.014730007018010458, -0.013625818163939164, -0.012188478707671278, -0.010453840397743733, -0.008465004654331377, -0.006271251933469901, -0.003926820942018058, -0.0014895679371589765, 0.0009804607569779459, 0.003422507802850432, 0.005776599048728531, 0.007985016134273973, 0.00999371135140407, 0.011753630084960982, 0.013221908482918158, 0.014362917122283375, 0.015149125266661038, 0.015561764759421871, 0.015591277552345352, 0.015237536210895212, 0.014509832332133439, 0.013426633521814406, 0.01201511526296148, 0.010310479529530353, 0.008355077220264387, 0.006197356281646028, 0.003890661637938775, 0.0014919166470262143, -0.0009397813342607372, -0.0033446166317083422, -0.005663526333004311, -0.007839650592710877, -0.009819726557274993, -0.011555391744804463, -0.013004364991881507, -0.014131476137286221, -0.014909519373670074, -0.015319909569623608, -0.015353125737739849, -0.015008931078796535, -0.014296364538302178, -0.013233504433751054, -0.011847010310674175, -0.01017145462543919, -0.008248460999282772, -0.0061256705153319305, -0.0038555617227887706, -0.0014941535679173668, 0.0009003766964701549, 0.0032691265311025563, 0.005553916768576673, 0.007698720288068099, 0.00965103562990562, 0.011363171879750803, 0.012793413383655411, 0.013907035855790485, 0.014677149135446104, 0.015085346146991644, 0.015122142409512172, 0.01478719561316758, 0.014089300199438888, 0.013046157418718948, 0.011683926855016508, 0.01003657076832504, 0.00814500767903403, 0.0060560962813343815, 0.003821474910017328, 0.0014962852964669007, -0.0008621878502871834, -0.003195927880649213, -0.005447613109424827, -0.00756202450073509, -0.009487399569802251, -0.011176699311977473, -0.012588757156183556, -0.013689281885353361, -0.014451690096772442, -0.014857748000421533, -0.014898007068620146, -0.014572023139021239, -0.013888353909629015, -0.012864335217565146, -0.01152564192860729, -0.009905644548561483, -0.008044577670688243, -0.005988540973186967, -0.0037883575646899615, -0.0014983179443310232, 0.0008251593882100806, 0.0031249176350563387, 0.005344467489871733, 0.0074293744452379505, 0.009328593553228428, 0.01099571891622728, 0.012390117328715117, 0.013477918382556043, 0.014232836916291763, 0.014636807844257003, 0.014680418041143412, 0.014363124967141254, 0.01369325697440833, 0.012687795607829545, 0.011371945569670857, 0.009778503227205113, 0.007947039476913645, 0.005922917317570303, 0.003756168516521863, 0.0015002571803483097, -0.0007892392203537773, -0.00305599883852759, -0.005244340735442973, -0.007300592396315846, -0.009174405896575422, -0.010819990449347791, -0.012197231166414477, -0.013272666704918262, -0.01402030197942878, -0.014422236206590586, -0.014469091116130801, -0.014160229094615834, -0.013503756205283697, -0.012516310320976765, -0.011222639887424245, -0.009654983971142447, -0.007852269114008683, -0.005859142995939838, -0.0037248688884815436, -0.0015021082684974105, 0.0007543783299625464, 0.0029890801815564577, 0.0051471017336073635, 0.007175510890671139, 0.009024637110223707, 0.010649287480762973, 0.012009851014782118, 0.01307326417869357, 0.013813814130377081, 0.014213760156853002, 0.014263758300036204, 0.013963079016428646, 0.013319612817118825, 0.012349664051856403, 0.011077538206922258, 0.009534933153084202, 0.007760149582861, 0.005797140297899685, 0.003694421939495912, 0.001503876102100212, -0.0007205305502048775, -0.0029240755958798107, -0.005052626858393415, -0.007053971996878242, -0.008879099032985305, -0.010483396413877088, -0.01182774323300063, -0.012879462971095709, -0.013613117511392724, -0.014011122140930345, -0.014064166676264561, -0.013771432637189456, -0.013140601418286178, -0.012187653551363396, -0.010936464285577674, -0.009418205710098777, -0.007670570383973737, -0.005736835803278438, -0.003664792919900075, -0.0015055652347127203, 0.0006876523601446101, 0.00286090388378896, 0.004960799443598293, 0.006935826646738166, 0.008737614039244489, 0.010322115589511812, 0.011650687216557029, 0.012691029056767496, 0.013417970498948778, 0.013814078913354245, 0.013870077359622443, 0.01358506127329904, 0.012966509084608429, 0.012030086794248706, 0.010799251594458421, 0.009304664555034639, 0.007583427072353768, 0.005678160090151004, 0.0036359489384678264, 0.0015071799080421788, -0.0006557026979733072, -0.0027994883784689963, -0.004871509299848284, -0.006820934022144826, -0.008600014311765294, -0.010165254463467811, -0.011478474500534986, -0.012507741269437852, -0.013228144727447766, -0.013622400557258232, -0.013681264536586487, -0.013403748736896336, -0.012797134509085477, -0.011876782214928206, -0.010665742658183692, -0.009194180035831013, -0.007498620848472102, -0.005621047466391389, -0.003607858839933399, -0.001508724077233647, 0.0006246427898399152, 0.0027397566323577017, 0.004784652271327309, 0.0067091609921459345, 0.008466141173911083, 0.010012632851152573, 0.01131090793592424, 0.012329390430677555, 0.013043424192202441, 0.013435869583795876, 0.013497514583281576, 0.013227290493877986, 0.012632287220270471, 0.011727568004884548, 0.0105357884479343, 0.009086629438214979, 0.007416058181949025, 0.005565435722552771, 0.003580493092072803, 0.0015102014337907703, -0.0005944359927715187, -0.0026816401308816357, -0.004700129828408825, -0.006600381595484517, -0.00833584447568282, -0.009864080232989993, -0.011147800932092035, -0.012155778548548057, -0.012863604424270996, -0.01325428010360674, -0.013318625253926769, -0.01305549288909077, -0.012471786862916296, -0.011582281465954605, -0.010409247822644567, -0.008981896527792297, -0.007335650464937388, -0.00551126590414333, -0.0035538236814693746, -0.0015116154263882828, 0.0005650476503558295, 0.002625074029175683, 0.00461784869286026, 0.006494476564373253, 0.008208982028594616, 0.009719435114967503, 0.010988976759310683, 0.011986718079678918, 0.012688491730525893, 0.013077437063691643, 0.013144404933265989, 0.012888172432531002, 0.012315462535177032, 0.011440768414380693, 0.010285987013979836, 0.00887987112792786, 0.007257313692512165, 0.005458482101529251, 0.0035278240172101675, 0.001512969279790106, -0.0005364449599842499, -0.002569996909679013, -0.0045377204926023715, -0.006391332885738154, -0.008085419084898031, -0.009578544439296047, -0.010834267905846668, -0.01182203124900195, -0.012517902493012727, -0.012905155543753436, -0.012974671947175291, -0.012725155141015809, -0.012163152177246743, -0.011302882631036706, -0.01016587915114885, -0.008780448730199739, -0.007180968167638915, -0.0054070312559077295, -0.0035024688418020112, -0.001514266012075679, 0.0005085968506046707, 0.002516350558681711, 0.004459661443360515, 0.006290843396517381, 0.007965027857164098, 0.009441263040645216, 0.010683515484707798, 0.011661549421945782, 0.012351662522275366, 0.012737260106664313, 0.012809253926231624, 0.012566275930364317, 0.012014702006836202, 0.011168485353712166, 0.010048803821994409, 0.00868353013453172, 0.007106538228550195, 0.005356862979918688, 0.003477734148703692, 0.0015155084503307651, -0.00048147387000668074, -0.0024640797601374206, -0.0043835920547748135, -0.006192906409989697, -0.007847687074605564, -0.00930745314390864, -0.010536568685619604, -0.011505112524436695, -0.012189606459857406, -0.01257358419826562, -0.012647987217556979, -0.01241137805362121, -0.011869965997356702, -0.011037444807740592, -0.009934646667183814, -0.008589021116394062, -0.007033951996561309, -0.005307929391640458, -0.0034535971058876993, -0.001516699244976413, 0.000455048080804994, 0.0024131321051841037, 0.004309436858824762, 0.006097425370375212, 0.007733281572913733, 0.00917698389983237, 0.010393284268267586, 0.011352568506508775, 0.0120315772256728, 0.012413969592181766, 0.012490716340718399, 0.012260312581308327, 0.011728805395083594, 0.010909635771645219, 0.009823299004609728, 0.008496832118737281, 0.006963141142563569, 0.00526018496080393, 0.003430035984944442, 0.001517840882848934, -0.00042929296432671804, -0.0023634578160152417, -0.0042371241585981625, -0.006004308533256078, -0.0076217019146871045, -0.009049730955228492, -0.01025352609321697, -0.011203772845747197, -0.01187742550636122, -0.012258265875760151, -0.012337293483882131, -0.012112937920077007, -0.011591088271950864, -0.010784939174781306, -0.00971465748142312, -0.008406877966526892, -0.0068940406706050625, -0.005213586366195044, -0.0034070300952481303, -0.0015189356991723625, 0.00040418333173179754, 0.0023150095828370614, 0.004166585795663593, 0.005913468669586553, 0.007512844037826293, 0.008925576054795813, 0.010117164687290788, 0.011058588087152581, 0.011727009281129063, 0.012106329973623965, 0.012187578036788894, 0.011969119366495633, 0.0114566891109392, 0.010663241724268916, 0.009608623751342315, 0.008319077601981714, 0.006826588717109743, 0.0051680923633115935, 0.003384559722778639, 0.0015199858885155129, -0.00037969524172102025, -0.0022677424128075625, -0.004097756934445616, -0.005824822791289449, -0.007406608929514652, -0.008804406671879364, -0.009984076840478081, -0.010916883416353076, -0.011580193381905442, -0.01195802570566823, -0.01204143615744953, -0.011828728693012169, -0.011325488421326742, -0.010544435558748297, -0.009505104175134903, -0.008233353838774906, -0.0067607263644399035, -0.005123663661416047, -0.0033626060732225307, -0.0015209935148397405, 0.00035580592428265123, 0.002221613489926261, 0.004030575862183254, 0.005738291896619819, 0.007302902323647564, 0.00868611566573316, 0.009854145231748159, 0.01077853426337144, 0.011436849084956666, 0.011813223376626478, 0.011898740369753469, 0.011691643763420745, 0.011197372381315024, 0.01042841792674361, 0.009404009542339867, 0.008149633133637126, 0.006696397467611468, 0.0050802628092211375, 0.0033411512189909453, 0.001521960520715658, -0.00033249370996025145, -0.002176582044981638, -0.003964983803162722, -0.005653800733659926, -0.007201634419756789, -0.008570600963101867, -0.009727258081365672, -0.010643421934430523, -0.011296853731357517, -0.01167179939460986, -0.011759369189448244, -0.011557748175405648, -0.011072232505793778, -0.01031509088761195, -0.009305254812510197, -0.008067845373939564, -0.00663354849310584, -0.0050378540885073425, -0.0033201780498695213, -0.001522888735793008, 0.0003097379641831879, 0.002132609234697766, 0.003900924746056256, 0.005571277580452928, 0.007102719621677968, 0.0084577652621272, 0.009603308827561281, 0.010511433269506572, 0.011160090373977484, 0.011533635916259553, 0.011623206776182355, 0.011426930927965368, 0.010949965337194027, 0.010204361033252141, 0.009208758874376709, 0.007987923679967875, 0.00657212836879014, 0.004996403415038466, 0.003299670226990427, 0.0015237798845881456, -0.0002875190262419242, -0.0020896580293487143, -0.0038383452832982754, -0.005490654040427009, -0.007006076294349274, -0.008347515756775439, -0.009482195825569065, -0.010382460323554764, -0.011026447448835098, -0.01139862051637145, -0.011490142609518082, -0.011299086111719118, -0.010830472157591824, -0.010096139228910206, -0.009114444321522011, -0.007909804220715074, -0.006512088344072108, -0.00495587824619385, -0.0032796121398814063, -0.001524635593648581, 0.00026581815252942683, 0.0020476931081574536, 0.003777194461535582, 0.005411864851883411, 0.006911626537311536, 0.008239763880145615, 0.009363822067268308, 0.010256400069519543, 0.010895818468891285, 0.011266645880046465, 0.011360071187008509, 0.011174112620279899, 0.010713658720364654, 0.009990340371570447, 0.009022237243243489, 0.00783342604212774, 0.0064533818594813275, 0.0049162474948045275, 0.003259988866350626, 0.0015254573981642228, -0.0002446174637048809, -0.0020066807618358425, -0.0037174236422586344, -0.005334847710433134, -0.006819295973559016, -0.008134425065166154, -0.009248094919780379, -0.010133154121412363, -0.010768101738503351, -0.011137609515594697, -0.011232891742606407, -0.011051913881040997, -0.010599434999880336, -0.009886883164553556, -0.008932067029427004, -0.0077587309068310305, -0.006395964424944249, -0.004877481448689236, -0.0032407861349919775, -0.001526246748048158, 0.0002238998954672074, 0.0019665888017370873, 0.003658986371834583, 0.005259543103367087, 0.0067290135525710695, 0.008031418521321155, 0.009134925881563812, 0.010012628475892588, 0.010643200086942153, 0.011011413486579302, 0.011108507983824581, 0.010932397603869532, 0.01048771495781185, 0.009785689907073953, 0.00884386618834578, 0.00768566314445724, 0.0063397935060843635, 0.00483955169548648, 0.003221990290113425, 0.0015270050135689254, -0.0002036491526539958, -0.0019273864750657896, -0.003601838260190611, -0.005185894155034375, -0.006640711366395772, -0.00793066702616741, -0.00902423035463683, -0.009894733270925021, -0.010521020619494302, -0.010887964161528249, -0.01098682784620731, -0.010815475546331851, -0.010378416324808213, -0.009686686297598671, -0.008757570176396938, -0.007614169511749971, -0.006284828417937009, -0.004802431052346392, -0.003203588258907791, -0.001527733490535292, 0.00018384966640678073, 0.001889044385716531, 0.0035459368674942942, 0.005113846482384542, 0.006554324477813939, 0.007832096730511147, 0.008915927431710746, 0.00977938256021163, 0.010401474484817357, 0.010767171979967901, 0.010867763263796962, 0.010701063294198163, 0.010271460396355516, 0.009589801249979275, 0.008673117238873007, 0.007544199061731635, 0.0062310302255207525, 0.004766093500153985, 0.00318556752070056, 0.0015284334051065545, -0.00016448655416639304, -0.0018515344202769076, -0.0034912415982229212, -0.00504334805990276, -0.006469790759651702, -0.007735636976214561, -0.00880993969710061, -0.009666494102209435, -0.010284476657319514, -0.01064895123355339, -0.01075122995439325, -0.010589080056074314, -0.01016677184176387, -0.009494966721381738, -0.008590448260942981, -0.007475703021230267, -0.006178361650754872, -0.004730514121913454, -0.0031679160781231193, -0.0015291059182350763, 0.00014554558228208427, 0.0018148296788301212, 0.0034377136020538805, 0.004974349093233062, 0.00638705074440642, 0.007641220125678486, 0.008706193040386058, 0.009555989162640194, 0.010169945733444942, 0.010533219861166789, 0.010637147218504658, 0.01047944847111705, 0.010064278525306055, 0.009402117551157956, 0.008509506628087247, 0.007408634676172944, 0.0061267869852553196, 0.004695669045019388, 0.0031506224300722964, 0.0015297521297850582, -0.0001270131310415612, -0.0017789044101855678, -0.0033853156810923625, -0.004906801900844568, -0.006306047483438276, -0.007548781402151578, -0.008604616481879893, -0.009447792329506646, -0.010057803740838887, -0.010419899256959115, -0.010525437750984275, -0.010372094428864173, -0.00996391133861542, -0.009311191309838696, -0.008430238095294045, -0.007342949264059944, -0.006076272008581129, -0.004661535387110301, -0.0031336755463290595, -0.0015303730823504134, 0.00010887616192825453, 0.0017437339512141842, 0.0033340122029376315, 0.00484066080314976, 0.0062267264149994065, 0.007458258740058611, 0.008505142009038145, 0.009341831339686876, 0.00994797595945245, 0.010308914090387068, 0.01041602746442601, 0.010266946900304701, 0.009865604043524764, 0.009222128157529057, 0.008352590664382329, 0.007278603873109537, 0.006026783911534543, 0.00462809120525891, 0.003117064843714942, 0.0015309697647971539, -0.00009112218696615018, -0.0017092946699877366, -0.0032837690191974654, -0.004775882018533042, -0.0061490352404887, -0.007369592644630234, -0.00840770442302669, -0.009238036916283988, -0.009840390753724462, -0.010200192137384068, -0.010308845323473493, -0.010163937779373211, -0.00976929312459531, -0.009134870711019472, -0.008276514468868498, -0.0072155573475927645, -0.00597829122416446, -0.00459531544825824, -0.0031007801636907164, -0.0015315431155527588, 0.00007373923996649425, 0.0016755639124466594, 0.0032345533890225475, 0.004712423565792268, 0.0060729238083115375, 0.007282726060164053, 0.008312241194704851, 0.00913634261595047, 0.009734979415048492, 0.010093664121865624, 0.010203823189262884, 0.010063001734131008, 0.009674917650644571, 0.009049363918998427, 0.008201961665838847, 0.007153770198919882, 0.0059307637481208104, 0.004563187911786266, 0.003084811751274029, 0.0015320940256629857, -0.000056715849575212916, -0.0016425199523436337, -0.003186333907336847, -0.004650245172536523, -0.005998344004832778, -0.007197604246304127, -0.008218692329369684, -0.0090366846854859, -0.009631676013796938, -0.009989263566841737, -0.010100895673283842, -0.009964076066946487, -0.009582419144642829, -0.008965554944794646, -0.008128886334342725, -0.007093204522074838, -0.005884172493081979, -0.0045316891962484725, -0.003069150235216506, -0.0015326233416347145, 0.0000400410139556635, 0.0016101419442305547, 0.0031390804374013107, 0.004589308189120133, 0.0059252496518975885, 0.007114174661777932, 0.008127000239638927, 0.008939001927057528, 0.009530417260232628, 0.009886926654462178, 0.01],"x":[-100.0,-99.95002498750625,-99.9000499750125,-99.85007496251875,-99.80009995002499,-99.75012493753124,-99.70014992503748,-99.65017491254373,-99.60019990004997,-99.55022488755623,-99.50024987506247,-99.45027486256872,-99.40029985007496,-99.35032483758121,-99.30034982508745,-99.2503748125937,-99.20039980009994,-99.1504247876062,-99.10044977511244,-99.05047476261869,-99.00049975012493,-98.95052473763118,-98.90054972513744,-98.85057471264368,-98.80059970014993,-98.75062468765617,-98.70064967516242,-98.65067466266866,-98.60069965017492,-98.55072463768116,-98.50074962518741,-98.45077461269365,-98.4007996001999,-98.35082458770614,-98.3008495752124,-98.25087456271864,-98.20089955022489,-98.15092453773113,-98.10094952523738,-98.05097451274362,-98.00099950024988,-97.95102448775611,-97.90104947526237,-97.85107446276862,-97.80109945027486,-97.75112443778112,-97.70114942528735,-97.65117441279361,-97.60119940029985,-97.5512243878061,-97.50124937531234,-97.4512743628186,-97.40129935032483,-97.35132433783109,-97.30134932533733,-97.25137431284358,-97.20139930034982,-97.15142428785607,-97.10144927536231,-97.05147426286857,-97.0014992503748,-96.95152423788106,-96.90154922538731,-96.85157421289355,-96.8015992003998,-96.75162418790605,-96.7016491754123,-96.65167416291854,-96.60169915042479,-96.55172413793103,-96.50174912543729,-96.45177411294353,-96.40179910044978,-96.35182408795602,-96.30184907546227,-96.25187406296851,-96.20189905047476,-96.151924037981,-96.10194902548726,-96.0519740129935,-96.00199900049975,-95.95202398800599,-95.90204897551224,-95.8520739630185,-95.80209895052474,-95.75212393803099,-95.70214892553723,-95.65217391304348,-95.60219890054972,-95.55222388805598,-95.50224887556222,-95.45227386306847,-95.40229885057471,-95.35232383808096,-95.3023488255872,-95.25237381309346,-95.2023988005997,-95.15242378810595,-95.10244877561219,-95.05247376311844,-95.00249875062468,-94.95252373813094,-94.90254872563717,-94.85257371314343,-94.80259870064968,-94.75262368815592,-94.70264867566218,-94.65267366316841,-94.60269865067467,-94.55272363818091,-94.50274862568716,-94.4527736131934,-94.40279860069965,-94.3528235882059,-94.30284857571215,-94.25287356321839,-94.20289855072464,-94.15292353823088,-94.10294852573713,-94.05297351324337,-94.00299850074963,-93.95302348825587,-93.90304847576212,-93.85307346326836,-93.80309845077461,-93.75312343828087,-93.7031484257871,-93.65317341329336,-93.6031984007996,-93.55322338830585,-93.50324837581209,-93.45327336331835,-93.40329835082458,-93.35332333833084,-93.30334832583708,-93.25337331334333,-93.20339830084957,-93.15342328835582,-93.10344827586206,-93.05347326336832,-93.00349825087456,-92.95352323838081,-92.90354822588705,-92.8535732133933,-92.80359820089954,-92.7536231884058,-92.70364817591205,-92.65367316341829,-92.60369815092454,-92.55372313843078,-92.50374812593704,-92.45377311344328,-92.40379810094953,-92.35382308845577,-92.30384807596202,-92.25387306346826,-92.20389805097452,-92.15392303848076,-92.10394802598701,-92.05397301349325,-92.0039980009995,-91.95402298850574,-91.904047976012,-91.85407296351823,-91.80409795102449,-91.75412293853073,-91.70414792603698,-91.65417291354323,-91.60419790104947,-91.55422288855573,-91.50424787606197,-91.45427286356822,-91.40429785107446,-91.35432283858071,-91.30434782608695,-91.2543728135932,-91.20439780109945,-91.1544227886057,-91.10444777611194,-91.0544727636182,-91.00449775112443,-90.95452273863069,-90.90454772613693,-90.85457271364318,-90.80459770114942,-90.75462268865567,-90.70464767616193,-90.65467266366817,-90.60469765117442,-90.55472263868066,-90.50474762618691,-90.45477261369315,-90.4047976011994,-90.35482258870564,-90.3048475762119,-90.25487256371814,-90.20489755122439,-90.15492253873063,-90.10494752623688,-90.05497251374312,-90.00499750124938,-89.95502248875562,-89.90504747626187,-89.85507246376811,-89.80509745127436,-89.7551224387806,-89.70514742628686,-89.65517241379311,-89.60519740129935,-89.5552223888056,-89.50524737631184,-89.4552723638181,-89.40529735132434,-89.35532233883059,-89.30534732633683,-89.25537231384308,-89.20539730134932,-89.15542228885558,-89.10544727636182,-89.05547226386807,-89.00549725137431,-88.95552223888056,-88.9055472263868,-88.85557221389305,-88.8055972013993,-88.75562218890555,-88.70564717641179,-88.65567216391804,-88.6056971514243,-88.55572213893053,-88.50574712643679,-88.45577211394303,-88.40579710144928,-88.35582208895552,-88.30584707646177,-88.25587206396801,-88.20589705147427,-88.1559220389805,-88.10594702648676,-88.055972013993,-88.00599700149925,-87.95602198900549,-87.90604697651175,-87.85607196401799,-87.80609695152424,-87.75612193903048,-87.70614692653673,-87.65617191404297,-87.60619690154923,-87.55622188905548,-87.50624687656172,-87.45627186406797,-87.40629685157421,-87.35632183908046,-87.3063468265867,-87.25637181409296,-87.2063968015992,-87.15642178910545,-87.10644677661169,-87.05647176411794,-87.00649675162418,-86.95652173913044,-86.90654672663668,-86.85657171414293,-86.80659670164917,-86.75662168915542,-86.70664667666166,-86.65667166416792,-86.60669665167416,-86.55672163918041,-86.50674662668666,-86.4567716141929,-86.40679660169916,-86.3568215892054,-86.30684657671165,-86.25687156421789,-86.20689655172414,-86.15692153923038,-86.10694652673664,-86.05697151424287,-86.00699650174913,-85.95702148925537,-85.90704647676162,-85.85707146426786,-85.80709645177411,-85.75712143928035,-85.70714642678661,-85.65717141429285,-85.6071964017991,-85.55722138930535,-85.5072463768116,-85.45727136431785,-85.40729635182409,-85.35732133933034,-85.30734632683658,-85.25737131434283,-85.20739630184907,-85.15742128935533,-85.10744627686157,-85.05747126436782,-85.00749625187406,-84.95752123938031,-84.90754622688655,-84.8575712143928,-84.80759620189905,-84.7576211894053,-84.70764617691154,-84.65767116441779,-84.60769615192403,-84.55772113943029,-84.50774612693654,-84.45777111444278,-84.40779610194903,-84.35782108945527,-84.30784607696152,-84.25787106446776,-84.20789605197402,-84.15792103948026,-84.10794602698651,-84.05797101449275,-84.007996001999,-83.95802098950524,-83.9080459770115,-83.85807096451774,-83.80809595202399,-83.75812093953023,-83.70814592703648,-83.65817091454272,-83.60819590204898,-83.55822088955522,-83.50824587706147,-83.45827086456772,-83.40829585207396,-83.35832083958022,-83.30834582708646,-83.25837081459271,-83.20839580209895,-83.1584207896052,-83.10844577711144,-83.0584707646177,-83.00849575212393,-82.95852073963019,-82.90854572713643,-82.85857071464268,-82.80859570214892,-82.75862068965517,-82.70864567716141,-82.65867066466767,-82.6086956521739,-82.55872063968016,-82.5087456271864,-82.45877061469265,-82.40879560219891,-82.35882058970515,-82.3088455772114,-82.25887056471764,-82.2088955522239,-82.15892053973013,-82.10894552723639,-82.05897051474263,-82.00899550224888,-81.95902048975512,-81.90904547726137,-81.85907046476761,-81.80909545227387,-81.7591204397801,-81.70914542728636,-81.6591704147926,-81.60919540229885,-81.55922038980509,-81.50924537731134,-81.45927036481758,-81.40929535232384,-81.35932033983009,-81.30934532733633,-81.25937031484258,-81.20939530234882,-81.15942028985508,-81.10944527736132,-81.05947026486757,-81.00949525237381,-80.95952023988006,-80.9095452273863,-80.85957021489256,-80.8095952023988,-80.75962018990505,-80.70964517741129,-80.65967016491754,-80.60969515242378,-80.55972013993004,-80.50974512743628,-80.45977011494253,-80.40979510244878,-80.35982008995502,-80.30984507746128,-80.25987006496752,-80.20989505247377,-80.15992003998001,-80.10994502748626,-80.0599700149925,-80.00999500249875,-79.960019990005,-79.91004497751125,-79.86006996501749,-79.81009495252374,-79.76011994002998,-79.71014492753623,-79.66016991504247,-79.61019490254873,-79.56021989005497,-79.51024487756122,-79.46026986506746,-79.41029485257371,-79.36031984007997,-79.3103448275862,-79.26036981509246,-79.2103948025987,-79.16041979010495,-79.11044477761119,-79.06046976511745,-79.01049475262369,-78.96051974012994,-78.91054472763618,-78.86056971514243,-78.81059470264867,-78.76061969015493,-78.71064467766116,-78.66066966516742,-78.61069465267366,-78.56071964017991,-78.51074462768615,-78.4607696151924,-78.41079460269864,-78.3608195902049,-78.31084457771115,-78.26086956521739,-78.21089455272364,-78.16091954022988,-78.11094452773614,-78.06096951524238,-78.01099450274863,-77.96101949025487,-77.91104447776112,-77.86106946526736,-77.81109445277362,-77.76111944027986,-77.71114442778611,-77.66116941529235,-77.6111944027986,-77.56121939030484,-77.5112443778111,-77.46126936531734,-77.41129435282359,-77.36131934032983,-77.31134432783608,-77.26136931534234,-77.21139430284857,-77.16141929035483,-77.11144427786107,-77.06146926536732,-77.01149425287356,-76.96151924037981,-76.91154422788605,-76.86156921539231,-76.81159420289855,-76.7616191904048,-76.71164417791104,-76.6616691654173,-76.61169415292353,-76.56171914042979,-76.51174412793603,-76.46176911544228,-76.41179410294852,-76.36181909045477,-76.31184407796101,-76.26186906546727,-76.21189405297352,-76.16191904047976,-76.11194402798601,-76.06196901549225,-76.0119940029985,-75.96201899050475,-75.912043978011,-75.86206896551724,-75.81209395302349,-75.76211894052973,-75.71214392803599,-75.66216891554222,-75.61219390304848,-75.56221889055472,-75.51224387806097,-75.46226886556721,-75.41229385307346,-75.3623188405797,-75.31234382808596,-75.2623688155922,-75.21239380309845,-75.1624187906047,-75.11244377811094,-75.0624687656172,-75.01249375312344,-74.96251874062969,-74.91254372813593,-74.86256871564218,-74.81259370314842,-74.76261869065468,-74.71264367816092,-74.66266866566717,-74.61269365317341,-74.56271864067966,-74.5127436281859,-74.46276861569216,-74.4127936031984,-74.36281859070465,-74.31284357821089,-74.26286856571714,-74.2128935532234,-74.16291854072963,-74.11294352823589,-74.06296851574213,-74.01299350324838,-73.96301849075462,-73.91304347826087,-73.86306846576711,-73.81309345327337,-73.7631184407796,-73.71314342828586,-73.6631684157921,-73.61319340329835,-73.5632183908046,-73.51324337831085,-73.46326836581709,-73.41329335332334,-73.36331834082958,-73.31334332833583,-73.26336831584207,-73.21339330334833,-73.16341829085458,-73.11344327836082,-73.06346826586707,-73.01349325337331,-72.96351824087957,-72.9135432283858,-72.86356821589206,-72.8135932033983,-72.76361819090455,-72.71364317841079,-72.66366816591704,-72.61369315342328,-72.56371814092954,-72.51374312843578,-72.46376811594203,-72.41379310344827,-72.36381809095452,-72.31384307846076,-72.26386806596702,-72.21389305347326,-72.16391804097951,-72.11394302848576,-72.063968015992,-72.01399300349826,-71.9640179910045,-71.91404297851075,-71.86406796601699,-71.81409295352324,-71.76411794102948,-71.71414292853574,-71.66416791604198,-71.61419290354823,-71.56421789105447,-71.51424287856072,-71.46426786606696,-71.41429285357322,-71.36431784107945,-71.31434282858571,-71.26436781609195,-71.2143928035982,-71.16441779110444,-71.1144427786107,-71.06446776611695,-71.01449275362319,-70.96451774112944,-70.91454272863568,-70.86456771614193,-70.81459270364817,-70.76461769115443,-70.71464267866067,-70.66466766616692,-70.61469265367316,-70.56471764117941,-70.51474262868565,-70.4647676161919,-70.41479260369815,-70.3648175912044,-70.31484257871064,-70.26486756621689,-70.21489255372313,-70.16491754122939,-70.11494252873563,-70.06496751624188,-70.01499250374813,-69.96501749125437,-69.91504247876063,-69.86506746626686,-69.81509245377312,-69.76511744127936,-69.71514242878561,-69.66516741629185,-69.6151924037981,-69.56521739130434,-69.5152423788106,-69.46526736631684,-69.41529235382309,-69.36531734132933,-69.31534232883558,-69.26536731634182,-69.21539230384808,-69.16541729135432,-69.11544227886057,-69.06546726636682,-69.01549225387306,-68.96551724137932,-68.91554222888556,-68.86556721639181,-68.81559220389805,-68.7656171914043,-68.71564217891054,-68.6656671664168,-68.61569215392304,-68.56571714142929,-68.51574212893553,-68.46576711644178,-68.41579210394802,-68.36581709145428,-68.31584207896051,-68.26586706646677,-68.21589205397301,-68.16591704147926,-68.1159420289855,-68.06596701649175,-68.01599200399801,-67.96601699150425,-67.9160419790105,-67.86606696651674,-67.816091954023,-67.76611694152923,-67.71614192903549,-67.66616691654173,-67.61619190404798,-67.56621689155422,-67.51624187906047,-67.46626686656671,-67.41629185407297,-67.3663168415792,-67.31634182908546,-67.2663668165917,-67.21639180409795,-67.16641679160419,-67.11644177911045,-67.06646676661668,-67.01649175412294,-66.96651674162919,-66.91654172913543,-66.86656671664169,-66.81659170414792,-66.76661669165418,-66.71664167916042,-66.66666666666667,-66.61669165417291,-66.56671664167916,-66.5167416291854,-66.46676661669166,-66.4167916041979,-66.36681659170415,-66.31684157921039,-66.26686656671664,-66.21689155422288,-66.16691654172914,-66.11694152923538,-66.06696651674163,-66.01699150424787,-65.96701649175412,-65.91704147926038,-65.86706646676662,-65.81709145427287,-65.76711644177911,-65.71714142928536,-65.6671664167916,-65.61719140429786,-65.5672163918041,-65.51724137931035,-65.46726636681659,-65.41729135432284,-65.36731634182908,-65.31734132933533,-65.26736631684157,-65.21739130434783,-65.16741629185407,-65.11744127936032,-65.06746626686656,-65.01749125437281,-64.96751624187905,-64.91754122938531,-64.86756621689156,-64.8175912043978,-64.76761619190405,-64.7176411794103,-64.66766616691655,-64.61769115442279,-64.56771614192904,-64.51774112943528,-64.46776611694153,-64.41779110444777,-64.36781609195403,-64.31784107946027,-64.26786606696652,-64.21789105447276,-64.16791604197901,-64.11794102948525,-64.0679660169915,-64.01799100449774,-63.968015992004,-63.918040979510245,-63.86806596701649,-63.81809095452274,-63.768115942028984,-63.71814092953523,-63.66816591704148,-63.618190904547724,-63.56821589205397,-63.51824087956022,-63.468265867066464,-63.41829085457271,-63.368315842078964,-63.31834082958521,-63.26836581709146,-63.2183908045977,-63.16841579210395,-63.1184407796102,-63.06846576711644,-63.01849075462269,-62.968515742128936,-62.91854072963518,-62.86856571714143,-62.818590704647676,-62.76861569215392,-62.71864067966017,-62.668665667166415,-62.61869065467266,-62.56871564217891,-62.518740629685155,-62.4687656171914,-62.41879060469765,-62.3688155922039,-62.31884057971015,-62.268865567216395,-62.21889055472264,-62.16891554222889,-62.118940529735134,-62.06896551724138,-62.01899050474763,-61.969015492253874,-61.91904047976012,-61.86906546726637,-61.81909045477261,-61.76911544227886,-61.71914042978511,-61.66916541729135,-61.6191904047976,-61.569215392303846,-61.51924037981009,-61.46926536731634,-61.419290354822586,-61.36931534232883,-61.319340329835086,-61.26936531734133,-61.21939030484758,-61.169415292353825,-61.11944027986007,-61.06946526736632,-61.019490254872565,-60.96951524237881,-60.91954022988506,-60.869565217391305,-60.81959020489755,-60.7696151924038,-60.719640179910044,-60.66966516741629,-60.61969015492254,-60.569715142428784,-60.51974012993503,-60.46976511744128,-60.41979010494752,-60.36981509245377,-60.31984007996002,-60.26986506746627,-60.21989005497252,-60.16991504247876,-60.11994002998501,-60.069965017491256,-60.0199900049975,-59.97001499250375,-59.920039980009996,-59.87006496751624,-59.82008995502249,-59.770114942528735,-59.72013993003498,-59.67016491754123,-59.620189905047475,-59.57021489255372,-59.52023988005997,-59.470264867566215,-59.42028985507246,-59.37031484257871,-59.320339830084954,-59.27036481759121,-59.220389805097454,-59.1704147926037,-59.12043978010995,-59.070464767616194,-59.02048975512244,-58.97051474262869,-58.920539730134934,-58.87056471764118,-58.82058970514743,-58.77061469265367,-58.72063968015992,-58.670664667666166,-58.62068965517241,-58.57071464267866,-58.520739630184906,-58.47076461769115,-58.4207896051974,-58.370814592703645,-58.32083958020989,-58.27086456771614,-58.22088955522239,-58.17091454272864,-58.120939530234885,-58.07096451774113,-58.02098950524738,-57.971014492753625,-57.92103948025987,-57.87106446776612,-57.821089455272364,-57.77111444277861,-57.72113943028486,-57.671164417791104,-57.62118940529735,-57.5712143928036,-57.521239380309844,-57.47126436781609,-57.42128935532234,-57.37131434282858,-57.32133933033483,-57.271364317841076,-57.22138930534732,-57.17141429285358,-57.12143928035982,-57.07146426786607,-57.021489255372316,-56.97151424287856,-56.92153923038481,-56.871564217891056,-56.8215892053973,-56.77161419290355,-56.721639180409795,-56.67166416791604,-56.62168915542229,-56.571714142928535,-56.52173913043478,-56.47176411794103,-56.421789105447274,-56.37181409295352,-56.32183908045977,-56.271864067966014,-56.22188905547226,-56.171914042978514,-56.12193903048476,-56.07196401799101,-56.021989005497254,-55.9720139930035,-55.92203898050975,-55.87206396801599,-55.82208895552224,-55.77211394302849,-55.72213893053473,-55.67216391804098,-55.622188905547226,-55.57221389305347,-55.52223888055972,-55.472263868065966,-55.42228885557221,-55.37231384307846,-55.322338830584705,-55.27236381809095,-55.2223888055972,-55.172413793103445,-55.1224387806097,-55.072463768115945,-55.02248875562219,-54.97251374312844,-54.922538730634685,-54.87256371814093,-54.82258870564718,-54.772613693153424,-54.72263868065967,-54.67266366816592,-54.622688655672164,-54.57271364317841,-54.52273863068466,-54.4727636181909,-54.42278860569715,-54.3728135932034,-54.32283858070964,-54.27286356821589,-54.222888555722136,-54.17291354322838,-54.122938530734636,-54.07296351824088,-54.02298850574713,-53.973013493253376,-53.92303848075962,-53.87306346826587,-53.823088455772115,-53.77311344327836,-53.72313843078461,-53.673163418290855,-53.6231884057971,-53.57321339330335,-53.523238380809595,-53.47326336831584,-53.42328835582209,-53.373313343328334,-53.32333833083458,-53.27336331834083,-53.223388305847074,-53.17341329335332,-53.12343828085957,-53.07346326836582,-53.02348825587207,-52.973513243378314,-52.92353823088456,-52.87356321839081,-52.82358820589705,-52.7736131934033,-52.723638180909546,-52.67366316841579,-52.62368815592204,-52.573713143428286,-52.52373813093453,-52.47376311844078,-52.423788105947025,-52.37381309345327,-52.32383808095952,-52.273863068465765,-52.22388805597201,-52.17391304347826,-52.123938030984505,-52.07396301849075,-52.023988005997005,-51.97401299350325,-51.9240379810095,-51.874062968515744,-51.82408795602199,-51.77411294352824,-51.724137931034484,-51.67416291854073,-51.62418790604698,-51.574212893553224,-51.52423788105947,-51.47426286856572,-51.42428785607196,-51.37431284357821,-51.324337831084456,-51.2743628185907,-51.22438780609695,-51.174412793603196,-51.12443778110944,-51.07446276861569,-51.02448775612194,-50.97451274362819,-50.924537731134436,-50.87456271864068,-50.82458770614693,-50.774612693653175,-50.72463768115942,-50.67466266866567,-50.624687656171915,-50.57471264367816,-50.52473763118441,-50.474762618690654,-50.4247876061969,-50.37481259370315,-50.324837581209394,-50.27486256871564,-50.22488755622189,-50.174912543728134,-50.12493753123438,-50.07496251874063,-50.02498750624687,-49.97501249375313,-49.92503748125937,-49.87506246876562,-49.825087456271866,-49.77511244377811,-49.72513743128436,-49.675162418790606,-49.62518740629685,-49.5752123938031,-49.525237381309346,-49.47526236881559,-49.42528735632184,-49.375312343828085,-49.32533733133433,-49.27536231884058,-49.225387306346825,-49.17541229385307,-49.12543728135932,-49.075462268865564,-49.02548725637181,-48.97551224387806,-48.92553723138431,-48.87556221889056,-48.825587206396804,-48.77561219390305,-48.7256371814093,-48.675662168915544,-48.62568715642179,-48.57571214392804,-48.52573713143428,-48.47576211894053,-48.425787106446776,-48.37581209395302,-48.32583708145927,-48.275862068965516,-48.22588705647176,-48.17591204397801,-48.125937031484256,-48.0759620189905,-48.02598700649675,-47.976011994002995,-47.92603698150925,-47.876061969015495,-47.82608695652174,-47.77611194402799,-47.726136931534235,-47.67616191904048,-47.62618690654673,-47.576211894052975,-47.52623688155922,-47.47626186906547,-47.426286856571714,-47.37631184407796,-47.32633683158421,-47.276361819090454,-47.2263868065967,-47.17641179410295,-47.12643678160919,-47.07646176911544,-47.026486756621686,-46.97651174412793,-46.92653673163418,-46.87656171914043,-46.82658670664668,-46.776611694152926,-46.72663668165917,-46.67666166916542,-46.626686656671666,-46.57671164417791,-46.52673663168416,-46.476761619190405,-46.42678660669665,-46.3768115942029,-46.326836581709145,-46.27686156921539,-46.22688655672164,-46.176911544227885,-46.12693653173413,-46.07696151924038,-46.026986506746624,-45.97701149425287,-45.92703648175912,-45.877061469265364,-45.82708645677162,-45.777111444277864,-45.72713643178411,-45.67716141929036,-45.6271864067966,-45.57721139430285,-45.5272363818091,-45.47726136931534,-45.42728635682159,-45.377311344327836,-45.32733633183408,-45.27736131934033,-45.227386306846576,-45.17741129435282,-45.12743628185907,-45.077461269365315,-45.02748625687156,-44.97751124437781,-44.927536231884055,-44.8775612193903,-44.827586206896555,-44.7776111944028,-44.72763618190905,-44.677661169415295,-44.62768615692154,-44.57771114442779,-44.527736131934034,-44.47776111944028,-44.42778610694653,-44.377811094452774,-44.32783608195902,-44.27786106946527,-44.22788605697151,-44.17791104447776,-44.12793603198401,-44.07796101949025,-44.0279860069965,-43.978010994502746,-43.92803598200899,-43.87806096951524,-43.828085957021486,-43.77811094452774,-43.728135932033986,-43.67816091954023,-43.62818590704648,-43.578210894552726,-43.52823588205897,-43.47826086956522,-43.428285857071465,-43.37831084457771,-43.32833583208396,-43.278360819590205,-43.22838580709645,-43.1784107946027,-43.128435782108944,-43.07846076961519,-43.02848575712144,-42.978510744627684,-42.92853573213393,-42.87856071964018,-42.82858570714642,-42.77861069465268,-42.728635682158924,-42.67866066966517,-42.62868565717142,-42.57871064467766,-42.52873563218391,-42.478760619690156,-42.4287856071964,-42.37881059470265,-42.328835582208896,-42.27886056971514,-42.22888555722139,-42.178910544727636,-42.12893553223388,-42.07896051974013,-42.028985507246375,-41.97901049475262,-41.92903548225887,-41.879060469765115,-41.82908545727136,-41.77911044477761,-41.72913543228386,-41.67916041979011,-41.629185407296355,-41.5792103948026,-41.52923538230885,-41.479260369815094,-41.42928535732134,-41.37931034482759,-41.329335332333834,-41.27936031984008,-41.22938530734633,-41.17941029485257,-41.12943528235882,-41.079460269865066,-41.02948525737131,-40.97951024487756,-40.929535232383806,-40.87956021989005,-40.8295852073963,-40.779610194902546,-40.72963518240879,-40.679660169915046,-40.62968515742129,-40.57971014492754,-40.529735132433785,-40.47976011994003,-40.42978510744628,-40.379810094952525,-40.32983508245877,-40.27986006996502,-40.229885057471265,-40.17991004497751,-40.12993503248376,-40.079960019990004,-40.02998500749625,-39.9800099950025,-39.930034982508744,-39.88005997001499,-39.83008495752124,-39.78010994502748,-39.73013493253373,-39.68015992003998,-39.63018490754623,-39.58020989505248,-39.53023488255872,-39.48025987006497,-39.430284857571216,-39.38030984507746,-39.33033483258371,-39.280359820089956,-39.2303848075962,-39.18040979510245,-39.130434782608695,-39.08045977011494,-39.03048475762119,-38.980509745127435,-38.93053473263368,-38.88055972013993,-38.830584707646175,-38.78060969515242,-38.73063468265867,-38.680659670164914,-38.63068465767117,-38.580709645177414,-38.53073463268366,-38.48075962018991,-38.430784607696154,-38.3808095952024,-38.33083458270865,-38.28085957021489,-38.23088455772114,-38.18090954522739,-38.13093453273363,-38.08095952023988,-38.030984507746126,-37.98100949525237,-37.93103448275862,-37.881059470264866,-37.83108445777111,-37.78110944527736,-37.731134432783605,-37.68115942028985,-37.6311844077961,-37.58120939530235,-37.5312343828086,-37.481259370314845,-37.43128435782109,-37.38130934532734,-37.331334332833585,-37.28135932033983,-37.23138430784608,-37.181409295352324,-37.13143428285857,-37.08145927036482,-37.031484257871064,-36.98150924537731,-36.93153423288356,-36.8815592203898,-36.83158420789605,-36.7816091954023,-36.73163418290854,-36.68165917041479,-36.631684157921036,-36.58170914542729,-36.531734132933536,-36.48175912043978,-36.43178410794603,-36.381809095452276,-36.33183408295852,-36.28185907046477,-36.231884057971016,-36.18190904547726,-36.13193403298351,-36.081959020489755,-36.031984007996,-35.98200899550225,-35.932033983008495,-35.88205897051474,-35.83208395802099,-35.782108945527234,-35.73213393303348,-35.68215892053973,-35.632183908045974,-35.58220889555222,-35.532233883058474,-35.48225887056472,-35.43228385807097,-35.382308845577214,-35.33233383308346,-35.28235882058971,-35.23238380809595,-35.1824087956022,-35.132433783108446,-35.08245877061469,-35.03248375812094,-34.982508745627186,-34.93253373313343,-34.88255872063968,-34.832583708145926,-34.78260869565217,-34.73263368315842,-34.682658670664665,-34.63268365817091,-34.58270864567716,-34.53273363318341,-34.48275862068966,-34.432783608195905,-34.38280859570215,-34.3328335832084,-34.282858570714644,-34.23288355822089,-34.18290854572714,-34.132933533233384,-34.08295852073963,-34.03298350824588,-33.983008495752124,-33.93303348325837,-33.88305847076462,-33.83308345827086,-33.78310844577711,-33.733133433283356,-33.6831584207896,-33.63318340829585,-33.583208395802096,-33.53323338330834,-33.483258370814596,-33.43328335832084,-33.38330834582709,-33.333333333333336,-33.28335832083958,-33.23338330834583,-33.183408295852075,-33.13343328335832,-33.08345827086457,-33.033483258370815,-32.98350824587706,-32.93353323338331,-32.883558220889554,-32.8335832083958,-32.78360819590205,-32.733633183408294,-32.68365817091454,-32.63368315842079,-32.583708145927034,-32.53373313343328,-32.48375812093953,-32.43378310844578,-32.38380809595203,-32.33383308345827,-32.28385807096452,-32.23388305847077,-32.18390804597701,-32.13393303348326,-32.083958020989506,-32.03398300849575,-31.984007996002,-31.934032983508246,-31.884057971014492,-31.83408295852074,-31.784107946026985,-31.734132933533232,-31.684157921039482,-31.63418290854573,-31.584207896051975,-31.53423288355822,-31.484257871064468,-31.434282858570715,-31.38430784607696,-31.334332833583208,-31.284357821089454,-31.2343828085957,-31.18440779610195,-31.134432783608197,-31.084457771114444,-31.03448275862069,-30.984507746126937,-30.934532733633183,-30.88455772113943,-30.834582708645677,-30.784607696151923,-30.73463268365817,-30.684657671164416,-30.634682658670666,-30.584707646176913,-30.53473263368316,-30.484757621189406,-30.434782608695652,-30.3848075962019,-30.334832583708145,-30.284857571214392,-30.23488255872064,-30.184907546226885,-30.134932533733135,-30.08495752123938,-30.034982508745628,-29.985007496251875,-29.93503248375812,-29.885057471264368,-29.835082458770614,-29.78510744627686,-29.735132433783107,-29.685157421289354,-29.635182408795604,-29.58520739630185,-29.535232383808097,-29.485257371314344,-29.43528235882059,-29.385307346326837,-29.335332333833083,-29.28535732133933,-29.235382308845576,-29.185407296351823,-29.13543228385807,-29.08545727136432,-29.035482258870566,-28.985507246376812,-28.93553223388306,-28.885557221389305,-28.835582208895552,-28.7856071964018,-28.735632183908045,-28.68565717141429,-28.635682158920538,-28.58570714642679,-28.535732133933035,-28.48575712143928,-28.435782108945528,-28.385807096451774,-28.33583208395802,-28.285857071464267,-28.235882058970514,-28.18590704647676,-28.135932033983007,-28.085957021489257,-28.035982008995504,-27.98600699650175,-27.936031984007997,-27.886056971514243,-27.83608195902049,-27.786106946526736,-27.736131934032983,-27.68615692153923,-27.636181909045476,-27.586206896551722,-27.536231884057973,-27.48625687156422,-27.436281859070466,-27.386306846576712,-27.33633183408296,-27.286356821589205,-27.23638180909545,-27.1864067966017,-27.136431784107945,-27.08645677161419,-27.03648175912044,-26.986506746626688,-26.936531734132934,-26.88655672163918,-26.836581709145428,-26.786606696651674,-26.73663168415792,-26.686656671664167,-26.636681659170414,-26.58670664667666,-26.53673163418291,-26.486756621689157,-26.436781609195403,-26.38680659670165,-26.336831584207896,-26.286856571714143,-26.23688155922039,-26.186906546726636,-26.136931534232883,-26.08695652173913,-26.036981509245376,-25.987006496751626,-25.937031484257872,-25.88705647176412,-25.837081459270365,-25.787106446776612,-25.73713143428286,-25.687156421789105,-25.63718140929535,-25.587206396801598,-25.537231384307844,-25.487256371814095,-25.43728135932034,-25.387306346826588,-25.337331334332834,-25.28735632183908,-25.237381309345327,-25.187406296851574,-25.13743128435782,-25.087456271864067,-25.037481259370313,-24.987506246876563,-24.93753123438281,-24.887556221889056,-24.837581209395303,-24.78760619690155,-24.737631184407796,-24.687656171914043,-24.63768115942029,-24.587706146926536,-24.537731134432782,-24.48775612193903,-24.43778110944528,-24.387806096951525,-24.337831084457772,-24.28785607196402,-24.237881059470265,-24.18790604697651,-24.137931034482758,-24.087956021989005,-24.03798100949525,-23.988005997001498,-23.938030984507748,-23.888055972013994,-23.83808095952024,-23.788105947026487,-23.738130934532734,-23.68815592203898,-23.638180909545227,-23.588205897051473,-23.53823088455772,-23.488255872063966,-23.438280859570217,-23.388305847076463,-23.33833083458271,-23.288355822088956,-23.238380809595203,-23.18840579710145,-23.138430784607696,-23.088455772113942,-23.03848075962019,-22.988505747126435,-22.938530734632682,-22.888555722138932,-22.83858070964518,-22.788605697151425,-22.73863068465767,-22.688655672163918,-22.638680659670165,-22.58870564717641,-22.538730634682658,-22.488755622188904,-22.43878060969515,-22.3888055972014,-22.338830584707647,-22.288855572213894,-22.23888055972014,-22.188905547226387,-22.138930534732634,-22.08895552223888,-22.038980509745127,-21.989005497251373,-21.93903048475762,-21.88905547226387,-21.839080459770116,-21.789105447276363,-21.73913043478261,-21.689155422288856,-21.639180409795102,-21.58920539730135,-21.539230384807595,-21.489255372313842,-21.43928035982009,-21.38930534732634,-21.339330334832585,-21.28935532233883,-21.239380309845078,-21.189405297351325,-21.13943028485757,-21.089455272363818,-21.039480259870064,-20.98950524737631,-20.939530234882557,-20.889555222388804,-20.839580209895054,-20.7896051974013,-20.739630184907547,-20.689655172413794,-20.63968015992004,-20.589705147426287,-20.539730134932533,-20.48975512243878,-20.439780109945026,-20.389805097451273,-20.339830084957523,-20.28985507246377,-20.239880059970016,-20.189905047476262,-20.13993003498251,-20.089955022488756,-20.039980009995002,-19.99000499750125,-19.940029985007495,-19.89005497251374,-19.84007996001999,-19.79010494752624,-19.740129935032485,-19.69015492253873,-19.640179910044978,-19.590204897551224,-19.54022988505747,-19.490254872563717,-19.440279860069964,-19.39030484757621,-19.340329835082457,-19.290354822588707,-19.240379810094954,-19.1904047976012,-19.140429785107447,-19.090454772613693,-19.04047976011994,-18.990504747626186,-18.940529735132433,-18.89055472263868,-18.840579710144926,-18.790604697651176,-18.740629685157423,-18.69065467266367,-18.640679660169916,-18.590704647676162,-18.54072963518241,-18.490754622688655,-18.4407796101949,-18.39080459770115,-18.340829585207395,-18.290854572713645,-18.24087956021989,-18.190904547726138,-18.140929535232384,-18.09095452273863,-18.040979510244878,-17.991004497751124,-17.94102948525737,-17.891054472763617,-17.841079460269864,-17.79110444777611,-17.74112943528236,-17.691154422788607,-17.641179410294853,-17.5912043978011,-17.541229385307346,-17.491254372813593,-17.44127936031984,-17.391304347826086,-17.341329335332333,-17.29135432283858,-17.24137931034483,-17.191404297851076,-17.141429285357322,-17.09145427286357,-17.041479260369815,-16.991504247876062,-16.94152923538231,-16.891554222888555,-16.8415792103948,-16.791604197901048,-16.741629185407298,-16.691654172913545,-16.64167916041979,-16.591704147926038,-16.541729135432284,-16.49175412293853,-16.441779110444777,-16.391804097951024,-16.34182908545727,-16.291854072963517,-16.241879060469763,-16.191904047976013,-16.14192903548226,-16.091954022988507,-16.041979010494753,-15.992003998001,-15.942028985507246,-15.892053973013493,-15.842078960519741,-15.792103948025987,-15.742128935532234,-15.69215392303848,-15.642178910544727,-15.592203898050975,-15.542228885557222,-15.492253873063468,-15.442278860569715,-15.392303848075962,-15.342328835582208,-15.292353823088456,-15.242378810594703,-15.19240379810095,-15.142428785607196,-15.092453773113442,-15.04247876061969,-14.992503748125937,-14.942528735632184,-14.89255372313843,-14.842578710644677,-14.792603698150925,-14.742628685657172,-14.692653673163418,-14.642678660669665,-14.592703648175911,-14.54272863568216,-14.492753623188406,-14.442778610694653,-14.3928035982009,-14.342828585707146,-14.292853573213394,-14.24287856071964,-14.192903548225887,-14.142928535732134,-14.09295352323838,-14.042978510744629,-13.993003498250875,-13.943028485757122,-13.893053473263368,-13.843078460769615,-13.793103448275861,-13.74312843578211,-13.693153423288356,-13.643178410794603,-13.59320339830085,-13.543228385807096,-13.493253373313344,-13.44327836081959,-13.393303348325837,-13.343328335832084,-13.29335332333833,-13.243378310844578,-13.193403298350825,-13.143428285857071,-13.093453273363318,-13.043478260869565,-12.993503248375813,-12.94352823588206,-12.893553223388306,-12.843578210894552,-12.793603198400799,-12.743628185907047,-12.693653173413294,-12.64367816091954,-12.593703148425787,-12.543728135932033,-12.493753123438282,-12.443778110944528,-12.393803098450775,-12.343828085957021,-12.293853073463268,-12.243878060969514,-12.193903048475763,-12.14392803598201,-12.093953023488256,-12.043978010994502,-11.994002998500749,-11.944027986006997,-11.894052973513244,-11.84407796101949,-11.794102948525737,-11.744127936031983,-11.694152923538232,-11.644177911044478,-11.594202898550725,-11.544227886056971,-11.494252873563218,-11.444277861069466,-11.394302848575713,-11.344327836081959,-11.294352823588206,-11.244377811094452,-11.1944027986007,-11.144427786106947,-11.094452773613193,-11.04447776111944,-10.994502748625687,-10.944527736131935,-10.894552723638181,-10.844577711144428,-10.794602698650674,-10.744627686156921,-10.69465267366317,-10.644677661169416,-10.594702648675662,-10.544727636181909,-10.494752623688155,-10.444777611194402,-10.39480259870065,-10.344827586206897,-10.294852573713143,-10.24487756121939,-10.194902548725636,-10.144927536231885,-10.094952523738131,-10.044977511244378,-9.995002498750624,-9.94502748625687,-9.89505247376312,-9.845077461269366,-9.795102448775612,-9.745127436281859,-9.695152423788105,-9.645177411294354,-9.5952023988006,-9.545227386306847,-9.495252373813093,-9.44527736131934,-9.395302348825588,-9.345327336331835,-9.295352323838081,-9.245377311344328,-9.195402298850574,-9.145427286356822,-9.095452273863069,-9.045477261369316,-8.995502248875562,-8.945527236381809,-8.895552223888055,-8.845577211394303,-8.79560219890055,-8.745627186406796,-8.695652173913043,-8.64567716141929,-8.595702148925538,-8.545727136431784,-8.495752123938031,-8.445777111444277,-8.395802098950524,-8.345827086456772,-8.295852073963019,-8.245877061469265,-8.195902048975512,-8.145927036481758,-8.095952023988007,-8.045977011494253,-7.9960019990005,-7.946026986506746,-7.896051974012994,-7.84607696151924,-7.796101949025488,-7.746126936531734,-7.696151924037981,-7.646176911544228,-7.596201899050475,-7.546226886556721,-7.496251874062969,-7.446276861569215,-7.396301849075463,-7.346326836581709,-7.296351824087956,-7.246376811594203,-7.19640179910045,-7.146426786606697,-7.096451774112944,-7.04647676161919,-6.9965017491254375,-6.946526736631684,-6.896551724137931,-6.846576711644178,-6.796601699150425,-6.746626686656672,-6.6966516741629185,-6.646676661669165,-6.5967016491754125,-6.546726636681659,-6.496751624187906,-6.446776611694153,-6.3968015992003995,-6.346826586706647,-6.296851574212893,-6.246876561719141,-6.196901549225387,-6.146926536731634,-6.096951524237881,-6.046976511744128,-5.997001499250374,-5.947026486756622,-5.897051474262868,-5.847076461769116,-5.797101449275362,-5.747126436781609,-5.697151424287856,-5.647176411794103,-5.59720139930035,-5.547226386806597,-5.497251374312843,-5.447276361819091,-5.397301349325337,-5.347326336831585,-5.297351324337831,-5.247376311844078,-5.197401299350325,-5.147426286856572,-5.097451274362818,-5.047476261869066,-4.997501249375312,-4.94752623688156,-4.897551224387806,-4.847576211894053,-4.7976011994003,-4.747626186906547,-4.697651174412794,-4.6476761619190405,-4.597701149425287,-4.5477261369315345,-4.497751124437781,-4.4477761119440276,-4.397801099450275,-4.3478260869565215,-4.297851074462769,-4.2478760619690155,-4.197901049475262,-4.147926036981509,-4.097951024487756,-4.047976011994003,-3.99800099950025,-3.948025987006497,-3.898050974512744,-3.8480759620189904,-3.7981009495252374,-3.7481259370314843,-3.6981509245377313,-3.648175912043978,-3.598200899550225,-3.548225887056472,-3.4982508745627188,-3.4482758620689653,-3.3983008495752123,-3.3483258370814593,-3.2983508245877062,-3.248375812093953,-3.1984007996001997,-3.1484257871064467,-3.0984507746126937,-3.0484757621189407,-2.998500749625187,-2.948525737131434,-2.898550724637681,-2.848575712143928,-2.798600699650175,-2.7486256871564216,-2.6986506746626686,-2.6486756621689156,-2.5987006496751626,-2.548725637181409,-2.498750624687656,-2.448775612193903,-2.39880059970015,-2.348825587206397,-2.2988505747126435,-2.2488755622188905,-2.1989005497251375,-2.1489255372313845,-2.098950524737631,-2.048975512243878,-1.999000499750125,-1.949025487256372,-1.8990504747626187,-1.8490754622688657,-1.7991004497751124,-1.7491254372813594,-1.6991504247876061,-1.6491754122938531,-1.5992003998000999,-1.5492253873063468,-1.4992503748125936,-1.4492753623188406,-1.3993003498250876,-1.3493253373313343,-1.2993503248375813,-1.249375312343828,-1.199400299850075,-1.1494252873563218,-1.0994502748625687,-1.0494752623688155,-0.9995002498750625,-0.9495252373813093,-0.8995502248875562,-0.8495752123938031,-0.7996001999000499,-0.7496251874062968,-0.6996501749125438,-0.6496751624187906,-0.5997001499250375,-0.5497251374312844,-0.49975012493753124,-0.4497751124437781,-0.39980009995002497,-0.3498250874562719,-0.29985007496251875,-0.24987506246876562,-0.19990004997501248,-0.14992503748125938,-0.09995002498750624,-0.04997501249375312,0.0,0.04997501249375312,0.09995002498750624,0.14992503748125938,0.19990004997501248,0.24987506246876562,0.29985007496251875,0.3498250874562719,0.39980009995002497,0.4497751124437781,0.49975012493753124,0.5497251374312844,0.5997001499250375,0.6496751624187906,0.6996501749125438,0.7496251874062968,0.7996001999000499,0.8495752123938031,0.8995502248875562,0.9495252373813093,0.9995002498750625,1.0494752623688155,1.0994502748625687,1.1494252873563218,1.199400299850075,1.249375312343828,1.2993503248375813,1.3493253373313343,1.3993003498250876,1.4492753623188406,1.4992503748125936,1.5492253873063468,1.5992003998000999,1.6491754122938531,1.6991504247876061,1.7491254372813594,1.7991004497751124,1.8490754622688657,1.8990504747626187,1.949025487256372,1.999000499750125,2.048975512243878,2.098950524737631,2.1489255372313845,2.1989005497251375,2.2488755622188905,2.2988505747126435,2.348825587206397,2.39880059970015,2.448775612193903,2.498750624687656,2.548725637181409,2.5987006496751626,2.6486756621689156,2.6986506746626686,2.7486256871564216,2.798600699650175,2.848575712143928,2.898550724637681,2.948525737131434,2.998500749625187,3.0484757621189407,3.0984507746126937,3.1484257871064467,3.1984007996001997,3.248375812093953,3.2983508245877062,3.3483258370814593,3.3983008495752123,3.4482758620689653,3.4982508745627188,3.548225887056472,3.598200899550225,3.648175912043978,3.6981509245377313,3.7481259370314843,3.7981009495252374,3.8480759620189904,3.898050974512744,3.948025987006497,3.99800099950025,4.047976011994003,4.097951024487756,4.147926036981509,4.197901049475262,4.2478760619690155,4.297851074462769,4.3478260869565215,4.397801099450275,4.4477761119440276,4.497751124437781,4.5477261369315345,4.597701149425287,4.6476761619190405,4.697651174412794,4.747626186906547,4.7976011994003,4.847576211894053,4.897551224387806,4.94752623688156,4.997501249375312,5.047476261869066,5.097451274362818,5.147426286856572,5.197401299350325,5.247376311844078,5.297351324337831,5.347326336831585,5.397301349325337,5.447276361819091,5.497251374312843,5.547226386806597,5.59720139930035,5.647176411794103,5.697151424287856,5.747126436781609,5.797101449275362,5.847076461769116,5.897051474262868,5.947026486756622,5.997001499250374,6.046976511744128,6.096951524237881,6.146926536731634,6.196901549225387,6.246876561719141,6.296851574212893,6.346826586706647,6.3968015992003995,6.446776611694153,6.496751624187906,6.546726636681659,6.5967016491754125,6.646676661669165,6.6966516741629185,6.746626686656672,6.796601699150425,6.846576711644178,6.896551724137931,6.946526736631684,6.9965017491254375,7.04647676161919,7.096451774112944,7.146426786606697,7.19640179910045,7.246376811594203,7.296351824087956,7.346326836581709,7.396301849075463,7.446276861569215,7.496251874062969,7.546226886556721,7.596201899050475,7.646176911544228,7.696151924037981,7.746126936531734,7.796101949025488,7.84607696151924,7.896051974012994,7.946026986506746,7.9960019990005,8.045977011494253,8.095952023988007,8.145927036481758,8.195902048975512,8.245877061469265,8.295852073963019,8.345827086456772,8.395802098950524,8.445777111444277,8.495752123938031,8.545727136431784,8.595702148925538,8.64567716141929,8.695652173913043,8.745627186406796,8.79560219890055,8.845577211394303,8.895552223888055,8.945527236381809,8.995502248875562,9.045477261369316,9.095452273863069,9.145427286356822,9.195402298850574,9.245377311344328,9.295352323838081,9.345327336331835,9.395302348825588,9.44527736131934,9.495252373813093,9.545227386306847,9.5952023988006,9.645177411294354,9.695152423788105,9.745127436281859,9.795102448775612,9.845077461269366,9.89505247376312,9.94502748625687,9.995002498750624,10.044977511244378,10.094952523738131,10.144927536231885,10.194902548725636,10.24487756121939,10.294852573713143,10.344827586206897,10.39480259870065,10.444777611194402,10.494752623688155,10.544727636181909,10.594702648675662,10.644677661169416,10.69465267366317,10.744627686156921,10.794602698650674,10.844577711144428,10.894552723638181,10.944527736131935,10.994502748625687,11.04447776111944,11.094452773613193,11.144427786106947,11.1944027986007,11.244377811094452,11.294352823588206,11.344327836081959,11.394302848575713,11.444277861069466,11.494252873563218,11.544227886056971,11.594202898550725,11.644177911044478,11.694152923538232,11.744127936031983,11.794102948525737,11.84407796101949,11.894052973513244,11.944027986006997,11.994002998500749,12.043978010994502,12.093953023488256,12.14392803598201,12.193903048475763,12.243878060969514,12.293853073463268,12.343828085957021,12.393803098450775,12.443778110944528,12.493753123438282,12.543728135932033,12.593703148425787,12.64367816091954,12.693653173413294,12.743628185907047,12.793603198400799,12.843578210894552,12.893553223388306,12.94352823588206,12.993503248375813,13.043478260869565,13.093453273363318,13.143428285857071,13.193403298350825,13.243378310844578,13.29335332333833,13.343328335832084,13.393303348325837,13.44327836081959,13.493253373313344,13.543228385807096,13.59320339830085,13.643178410794603,13.693153423288356,13.74312843578211,13.793103448275861,13.843078460769615,13.893053473263368,13.943028485757122,13.993003498250875,14.042978510744629,14.09295352323838,14.142928535732134,14.192903548225887,14.24287856071964,14.292853573213394,14.342828585707146,14.3928035982009,14.442778610694653,14.492753623188406,14.54272863568216,14.592703648175911,14.642678660669665,14.692653673163418,14.742628685657172,14.792603698150925,14.842578710644677,14.89255372313843,14.942528735632184,14.992503748125937,15.04247876061969,15.092453773113442,15.142428785607196,15.19240379810095,15.242378810594703,15.292353823088456,15.342328835582208,15.392303848075962,15.442278860569715,15.492253873063468,15.542228885557222,15.592203898050975,15.642178910544727,15.69215392303848,15.742128935532234,15.792103948025987,15.842078960519741,15.892053973013493,15.942028985507246,15.992003998001,16.041979010494753,16.091954022988507,16.14192903548226,16.191904047976013,16.241879060469763,16.291854072963517,16.34182908545727,16.391804097951024,16.441779110444777,16.49175412293853,16.541729135432284,16.591704147926038,16.64167916041979,16.691654172913545,16.741629185407298,16.791604197901048,16.8415792103948,16.891554222888555,16.94152923538231,16.991504247876062,17.041479260369815,17.09145427286357,17.141429285357322,17.191404297851076,17.24137931034483,17.29135432283858,17.341329335332333,17.391304347826086,17.44127936031984,17.491254372813593,17.541229385307346,17.5912043978011,17.641179410294853,17.691154422788607,17.74112943528236,17.79110444777611,17.841079460269864,17.891054472763617,17.94102948525737,17.991004497751124,18.040979510244878,18.09095452273863,18.140929535232384,18.190904547726138,18.24087956021989,18.290854572713645,18.340829585207395,18.39080459770115,18.4407796101949,18.490754622688655,18.54072963518241,18.590704647676162,18.640679660169916,18.69065467266367,18.740629685157423,18.790604697651176,18.840579710144926,18.89055472263868,18.940529735132433,18.990504747626186,19.04047976011994,19.090454772613693,19.140429785107447,19.1904047976012,19.240379810094954,19.290354822588707,19.340329835082457,19.39030484757621,19.440279860069964,19.490254872563717,19.54022988505747,19.590204897551224,19.640179910044978,19.69015492253873,19.740129935032485,19.79010494752624,19.84007996001999,19.89005497251374,19.940029985007495,19.99000499750125,20.039980009995002,20.089955022488756,20.13993003498251,20.189905047476262,20.239880059970016,20.28985507246377,20.339830084957523,20.389805097451273,20.439780109945026,20.48975512243878,20.539730134932533,20.589705147426287,20.63968015992004,20.689655172413794,20.739630184907547,20.7896051974013,20.839580209895054,20.889555222388804,20.939530234882557,20.98950524737631,21.039480259870064,21.089455272363818,21.13943028485757,21.189405297351325,21.239380309845078,21.28935532233883,21.339330334832585,21.38930534732634,21.43928035982009,21.489255372313842,21.539230384807595,21.58920539730135,21.639180409795102,21.689155422288856,21.73913043478261,21.789105447276363,21.839080459770116,21.88905547226387,21.93903048475762,21.989005497251373,22.038980509745127,22.08895552223888,22.138930534732634,22.188905547226387,22.23888055972014,22.288855572213894,22.338830584707647,22.3888055972014,22.43878060969515,22.488755622188904,22.538730634682658,22.58870564717641,22.638680659670165,22.688655672163918,22.73863068465767,22.788605697151425,22.83858070964518,22.888555722138932,22.938530734632682,22.988505747126435,23.03848075962019,23.088455772113942,23.138430784607696,23.18840579710145,23.238380809595203,23.288355822088956,23.33833083458271,23.388305847076463,23.438280859570217,23.488255872063966,23.53823088455772,23.588205897051473,23.638180909545227,23.68815592203898,23.738130934532734,23.788105947026487,23.83808095952024,23.888055972013994,23.938030984507748,23.988005997001498,24.03798100949525,24.087956021989005,24.137931034482758,24.18790604697651,24.237881059470265,24.28785607196402,24.337831084457772,24.387806096951525,24.43778110944528,24.48775612193903,24.537731134432782,24.587706146926536,24.63768115942029,24.687656171914043,24.737631184407796,24.78760619690155,24.837581209395303,24.887556221889056,24.93753123438281,24.987506246876563,25.037481259370313,25.087456271864067,25.13743128435782,25.187406296851574,25.237381309345327,25.28735632183908,25.337331334332834,25.387306346826588,25.43728135932034,25.487256371814095,25.537231384307844,25.587206396801598,25.63718140929535,25.687156421789105,25.73713143428286,25.787106446776612,25.837081459270365,25.88705647176412,25.937031484257872,25.987006496751626,26.036981509245376,26.08695652173913,26.136931534232883,26.186906546726636,26.23688155922039,26.286856571714143,26.336831584207896,26.38680659670165,26.436781609195403,26.486756621689157,26.53673163418291,26.58670664667666,26.636681659170414,26.686656671664167,26.73663168415792,26.786606696651674,26.836581709145428,26.88655672163918,26.936531734132934,26.986506746626688,27.03648175912044,27.08645677161419,27.136431784107945,27.1864067966017,27.23638180909545,27.286356821589205,27.33633183408296,27.386306846576712,27.436281859070466,27.48625687156422,27.536231884057973,27.586206896551722,27.636181909045476,27.68615692153923,27.736131934032983,27.786106946526736,27.83608195902049,27.886056971514243,27.936031984007997,27.98600699650175,28.035982008995504,28.085957021489257,28.135932033983007,28.18590704647676,28.235882058970514,28.285857071464267,28.33583208395802,28.385807096451774,28.435782108945528,28.48575712143928,28.535732133933035,28.58570714642679,28.635682158920538,28.68565717141429,28.735632183908045,28.7856071964018,28.835582208895552,28.885557221389305,28.93553223388306,28.985507246376812,29.035482258870566,29.08545727136432,29.13543228385807,29.185407296351823,29.235382308845576,29.28535732133933,29.335332333833083,29.385307346326837,29.43528235882059,29.485257371314344,29.535232383808097,29.58520739630185,29.635182408795604,29.685157421289354,29.735132433783107,29.78510744627686,29.835082458770614,29.885057471264368,29.93503248375812,29.985007496251875,30.034982508745628,30.08495752123938,30.134932533733135,30.184907546226885,30.23488255872064,30.284857571214392,30.334832583708145,30.3848075962019,30.434782608695652,30.484757621189406,30.53473263368316,30.584707646176913,30.634682658670666,30.684657671164416,30.73463268365817,30.784607696151923,30.834582708645677,30.88455772113943,30.934532733633183,30.984507746126937,31.03448275862069,31.084457771114444,31.134432783608197,31.18440779610195,31.2343828085957,31.284357821089454,31.334332833583208,31.38430784607696,31.434282858570715,31.484257871064468,31.53423288355822,31.584207896051975,31.63418290854573,31.684157921039482,31.734132933533232,31.784107946026985,31.83408295852074,31.884057971014492,31.934032983508246,31.984007996002,32.03398300849575,32.083958020989506,32.13393303348326,32.18390804597701,32.23388305847077,32.28385807096452,32.33383308345827,32.38380809595203,32.43378310844578,32.48375812093953,32.53373313343328,32.583708145927034,32.63368315842079,32.68365817091454,32.733633183408294,32.78360819590205,32.8335832083958,32.883558220889554,32.93353323338331,32.98350824587706,33.033483258370815,33.08345827086457,33.13343328335832,33.183408295852075,33.23338330834583,33.28335832083958,33.333333333333336,33.38330834582709,33.43328335832084,33.483258370814596,33.53323338330834,33.583208395802096,33.63318340829585,33.6831584207896,33.733133433283356,33.78310844577711,33.83308345827086,33.88305847076462,33.93303348325837,33.983008495752124,34.03298350824588,34.08295852073963,34.132933533233384,34.18290854572714,34.23288355822089,34.282858570714644,34.3328335832084,34.38280859570215,34.432783608195905,34.48275862068966,34.53273363318341,34.58270864567716,34.63268365817091,34.682658670664665,34.73263368315842,34.78260869565217,34.832583708145926,34.88255872063968,34.93253373313343,34.982508745627186,35.03248375812094,35.08245877061469,35.132433783108446,35.1824087956022,35.23238380809595,35.28235882058971,35.33233383308346,35.382308845577214,35.43228385807097,35.48225887056472,35.532233883058474,35.58220889555222,35.632183908045974,35.68215892053973,35.73213393303348,35.782108945527234,35.83208395802099,35.88205897051474,35.932033983008495,35.98200899550225,36.031984007996,36.081959020489755,36.13193403298351,36.18190904547726,36.231884057971016,36.28185907046477,36.33183408295852,36.381809095452276,36.43178410794603,36.48175912043978,36.531734132933536,36.58170914542729,36.631684157921036,36.68165917041479,36.73163418290854,36.7816091954023,36.83158420789605,36.8815592203898,36.93153423288356,36.98150924537731,37.031484257871064,37.08145927036482,37.13143428285857,37.181409295352324,37.23138430784608,37.28135932033983,37.331334332833585,37.38130934532734,37.43128435782109,37.481259370314845,37.5312343828086,37.58120939530235,37.6311844077961,37.68115942028985,37.731134432783605,37.78110944527736,37.83108445777111,37.881059470264866,37.93103448275862,37.98100949525237,38.030984507746126,38.08095952023988,38.13093453273363,38.18090954522739,38.23088455772114,38.28085957021489,38.33083458270865,38.3808095952024,38.430784607696154,38.48075962018991,38.53073463268366,38.580709645177414,38.63068465767117,38.680659670164914,38.73063468265867,38.78060969515242,38.830584707646175,38.88055972013993,38.93053473263368,38.980509745127435,39.03048475762119,39.08045977011494,39.130434782608695,39.18040979510245,39.2303848075962,39.280359820089956,39.33033483258371,39.38030984507746,39.430284857571216,39.48025987006497,39.53023488255872,39.58020989505248,39.63018490754623,39.68015992003998,39.73013493253373,39.78010994502748,39.83008495752124,39.88005997001499,39.930034982508744,39.9800099950025,40.02998500749625,40.079960019990004,40.12993503248376,40.17991004497751,40.229885057471265,40.27986006996502,40.32983508245877,40.379810094952525,40.42978510744628,40.47976011994003,40.529735132433785,40.57971014492754,40.62968515742129,40.679660169915046,40.72963518240879,40.779610194902546,40.8295852073963,40.87956021989005,40.929535232383806,40.97951024487756,41.02948525737131,41.079460269865066,41.12943528235882,41.17941029485257,41.22938530734633,41.27936031984008,41.329335332333834,41.37931034482759,41.42928535732134,41.479260369815094,41.52923538230885,41.5792103948026,41.629185407296355,41.67916041979011,41.72913543228386,41.77911044477761,41.82908545727136,41.879060469765115,41.92903548225887,41.97901049475262,42.028985507246375,42.07896051974013,42.12893553223388,42.178910544727636,42.22888555722139,42.27886056971514,42.328835582208896,42.37881059470265,42.4287856071964,42.478760619690156,42.52873563218391,42.57871064467766,42.62868565717142,42.67866066966517,42.728635682158924,42.77861069465268,42.82858570714642,42.87856071964018,42.92853573213393,42.978510744627684,43.02848575712144,43.07846076961519,43.128435782108944,43.1784107946027,43.22838580709645,43.278360819590205,43.32833583208396,43.37831084457771,43.428285857071465,43.47826086956522,43.52823588205897,43.578210894552726,43.62818590704648,43.67816091954023,43.728135932033986,43.77811094452774,43.828085957021486,43.87806096951524,43.92803598200899,43.978010994502746,44.0279860069965,44.07796101949025,44.12793603198401,44.17791104447776,44.22788605697151,44.27786106946527,44.32783608195902,44.377811094452774,44.42778610694653,44.47776111944028,44.527736131934034,44.57771114442779,44.62768615692154,44.677661169415295,44.72763618190905,44.7776111944028,44.827586206896555,44.8775612193903,44.927536231884055,44.97751124437781,45.02748625687156,45.077461269365315,45.12743628185907,45.17741129435282,45.227386306846576,45.27736131934033,45.32733633183408,45.377311344327836,45.42728635682159,45.47726136931534,45.5272363818091,45.57721139430285,45.6271864067966,45.67716141929036,45.72713643178411,45.777111444277864,45.82708645677162,45.877061469265364,45.92703648175912,45.97701149425287,46.026986506746624,46.07696151924038,46.12693653173413,46.176911544227885,46.22688655672164,46.27686156921539,46.326836581709145,46.3768115942029,46.42678660669665,46.476761619190405,46.52673663168416,46.57671164417791,46.626686656671666,46.67666166916542,46.72663668165917,46.776611694152926,46.82658670664668,46.87656171914043,46.92653673163418,46.97651174412793,47.026486756621686,47.07646176911544,47.12643678160919,47.17641179410295,47.2263868065967,47.276361819090454,47.32633683158421,47.37631184407796,47.426286856571714,47.47626186906547,47.52623688155922,47.576211894052975,47.62618690654673,47.67616191904048,47.726136931534235,47.77611194402799,47.82608695652174,47.876061969015495,47.92603698150925,47.976011994002995,48.02598700649675,48.0759620189905,48.125937031484256,48.17591204397801,48.22588705647176,48.275862068965516,48.32583708145927,48.37581209395302,48.425787106446776,48.47576211894053,48.52573713143428,48.57571214392804,48.62568715642179,48.675662168915544,48.7256371814093,48.77561219390305,48.825587206396804,48.87556221889056,48.92553723138431,48.97551224387806,49.02548725637181,49.075462268865564,49.12543728135932,49.17541229385307,49.225387306346825,49.27536231884058,49.32533733133433,49.375312343828085,49.42528735632184,49.47526236881559,49.525237381309346,49.5752123938031,49.62518740629685,49.675162418790606,49.72513743128436,49.77511244377811,49.825087456271866,49.87506246876562,49.92503748125937,49.97501249375313,50.02498750624687,50.07496251874063,50.12493753123438,50.174912543728134,50.22488755622189,50.27486256871564,50.324837581209394,50.37481259370315,50.4247876061969,50.474762618690654,50.52473763118441,50.57471264367816,50.624687656171915,50.67466266866567,50.72463768115942,50.774612693653175,50.82458770614693,50.87456271864068,50.924537731134436,50.97451274362819,51.02448775612194,51.07446276861569,51.12443778110944,51.174412793603196,51.22438780609695,51.2743628185907,51.324337831084456,51.37431284357821,51.42428785607196,51.47426286856572,51.52423788105947,51.574212893553224,51.62418790604698,51.67416291854073,51.724137931034484,51.77411294352824,51.82408795602199,51.874062968515744,51.9240379810095,51.97401299350325,52.023988005997005,52.07396301849075,52.123938030984505,52.17391304347826,52.22388805597201,52.273863068465765,52.32383808095952,52.37381309345327,52.423788105947025,52.47376311844078,52.52373813093453,52.573713143428286,52.62368815592204,52.67366316841579,52.723638180909546,52.7736131934033,52.82358820589705,52.87356321839081,52.92353823088456,52.973513243378314,53.02348825587207,53.07346326836582,53.12343828085957,53.17341329335332,53.223388305847074,53.27336331834083,53.32333833083458,53.373313343328334,53.42328835582209,53.47326336831584,53.523238380809595,53.57321339330335,53.6231884057971,53.673163418290855,53.72313843078461,53.77311344327836,53.823088455772115,53.87306346826587,53.92303848075962,53.973013493253376,54.02298850574713,54.07296351824088,54.122938530734636,54.17291354322838,54.222888555722136,54.27286356821589,54.32283858070964,54.3728135932034,54.42278860569715,54.4727636181909,54.52273863068466,54.57271364317841,54.622688655672164,54.67266366816592,54.72263868065967,54.772613693153424,54.82258870564718,54.87256371814093,54.922538730634685,54.97251374312844,55.02248875562219,55.072463768115945,55.1224387806097,55.172413793103445,55.2223888055972,55.27236381809095,55.322338830584705,55.37231384307846,55.42228885557221,55.472263868065966,55.52223888055972,55.57221389305347,55.622188905547226,55.67216391804098,55.72213893053473,55.77211394302849,55.82208895552224,55.87206396801599,55.92203898050975,55.9720139930035,56.021989005497254,56.07196401799101,56.12193903048476,56.171914042978514,56.22188905547226,56.271864067966014,56.32183908045977,56.37181409295352,56.421789105447274,56.47176411794103,56.52173913043478,56.571714142928535,56.62168915542229,56.67166416791604,56.721639180409795,56.77161419290355,56.8215892053973,56.871564217891056,56.92153923038481,56.97151424287856,57.021489255372316,57.07146426786607,57.12143928035982,57.17141429285358,57.22138930534732,57.271364317841076,57.32133933033483,57.37131434282858,57.42128935532234,57.47126436781609,57.521239380309844,57.5712143928036,57.62118940529735,57.671164417791104,57.72113943028486,57.77111444277861,57.821089455272364,57.87106446776612,57.92103948025987,57.971014492753625,58.02098950524738,58.07096451774113,58.120939530234885,58.17091454272864,58.22088955522239,58.27086456771614,58.32083958020989,58.370814592703645,58.4207896051974,58.47076461769115,58.520739630184906,58.57071464267866,58.62068965517241,58.670664667666166,58.72063968015992,58.77061469265367,58.82058970514743,58.87056471764118,58.920539730134934,58.97051474262869,59.02048975512244,59.070464767616194,59.12043978010995,59.1704147926037,59.220389805097454,59.27036481759121,59.320339830084954,59.37031484257871,59.42028985507246,59.470264867566215,59.52023988005997,59.57021489255372,59.620189905047475,59.67016491754123,59.72013993003498,59.770114942528735,59.82008995502249,59.87006496751624,59.920039980009996,59.97001499250375,60.0199900049975,60.069965017491256,60.11994002998501,60.16991504247876,60.21989005497252,60.26986506746627,60.31984007996002,60.36981509245377,60.41979010494752,60.46976511744128,60.51974012993503,60.569715142428784,60.61969015492254,60.66966516741629,60.719640179910044,60.7696151924038,60.81959020489755,60.869565217391305,60.91954022988506,60.96951524237881,61.019490254872565,61.06946526736632,61.11944027986007,61.169415292353825,61.21939030484758,61.26936531734133,61.319340329835086,61.36931534232883,61.419290354822586,61.46926536731634,61.51924037981009,61.569215392303846,61.6191904047976,61.66916541729135,61.71914042978511,61.76911544227886,61.81909045477261,61.86906546726637,61.91904047976012,61.969015492253874,62.01899050474763,62.06896551724138,62.118940529735134,62.16891554222889,62.21889055472264,62.268865567216395,62.31884057971015,62.3688155922039,62.41879060469765,62.4687656171914,62.518740629685155,62.56871564217891,62.61869065467266,62.668665667166415,62.71864067966017,62.76861569215392,62.818590704647676,62.86856571714143,62.91854072963518,62.968515742128936,63.01849075462269,63.06846576711644,63.1184407796102,63.16841579210395,63.2183908045977,63.26836581709146,63.31834082958521,63.368315842078964,63.41829085457271,63.468265867066464,63.51824087956022,63.56821589205397,63.618190904547724,63.66816591704148,63.71814092953523,63.768115942028984,63.81809095452274,63.86806596701649,63.918040979510245,63.968015992004,64.01799100449774,64.0679660169915,64.11794102948525,64.16791604197901,64.21789105447276,64.26786606696652,64.31784107946027,64.36781609195403,64.41779110444777,64.46776611694153,64.51774112943528,64.56771614192904,64.61769115442279,64.66766616691655,64.7176411794103,64.76761619190405,64.8175912043978,64.86756621689156,64.91754122938531,64.96751624187905,65.01749125437281,65.06746626686656,65.11744127936032,65.16741629185407,65.21739130434783,65.26736631684157,65.31734132933533,65.36731634182908,65.41729135432284,65.46726636681659,65.51724137931035,65.5672163918041,65.61719140429786,65.6671664167916,65.71714142928536,65.76711644177911,65.81709145427287,65.86706646676662,65.91704147926038,65.96701649175412,66.01699150424787,66.06696651674163,66.11694152923538,66.16691654172914,66.21689155422288,66.26686656671664,66.31684157921039,66.36681659170415,66.4167916041979,66.46676661669166,66.5167416291854,66.56671664167916,66.61669165417291,66.66666666666667,66.71664167916042,66.76661669165418,66.81659170414792,66.86656671664169,66.91654172913543,66.96651674162919,67.01649175412294,67.06646676661668,67.11644177911045,67.16641679160419,67.21639180409795,67.2663668165917,67.31634182908546,67.3663168415792,67.41629185407297,67.46626686656671,67.51624187906047,67.56621689155422,67.61619190404798,67.66616691654173,67.71614192903549,67.76611694152923,67.816091954023,67.86606696651674,67.9160419790105,67.96601699150425,68.01599200399801,68.06596701649175,68.1159420289855,68.16591704147926,68.21589205397301,68.26586706646677,68.31584207896051,68.36581709145428,68.41579210394802,68.46576711644178,68.51574212893553,68.56571714142929,68.61569215392304,68.6656671664168,68.71564217891054,68.7656171914043,68.81559220389805,68.86556721639181,68.91554222888556,68.96551724137932,69.01549225387306,69.06546726636682,69.11544227886057,69.16541729135432,69.21539230384808,69.26536731634182,69.31534232883558,69.36531734132933,69.41529235382309,69.46526736631684,69.5152423788106,69.56521739130434,69.6151924037981,69.66516741629185,69.71514242878561,69.76511744127936,69.81509245377312,69.86506746626686,69.91504247876063,69.96501749125437,70.01499250374813,70.06496751624188,70.11494252873563,70.16491754122939,70.21489255372313,70.26486756621689,70.31484257871064,70.3648175912044,70.41479260369815,70.4647676161919,70.51474262868565,70.56471764117941,70.61469265367316,70.66466766616692,70.71464267866067,70.76461769115443,70.81459270364817,70.86456771614193,70.91454272863568,70.96451774112944,71.01449275362319,71.06446776611695,71.1144427786107,71.16441779110444,71.2143928035982,71.26436781609195,71.31434282858571,71.36431784107945,71.41429285357322,71.46426786606696,71.51424287856072,71.56421789105447,71.61419290354823,71.66416791604198,71.71414292853574,71.76411794102948,71.81409295352324,71.86406796601699,71.91404297851075,71.9640179910045,72.01399300349826,72.063968015992,72.11394302848576,72.16391804097951,72.21389305347326,72.26386806596702,72.31384307846076,72.36381809095452,72.41379310344827,72.46376811594203,72.51374312843578,72.56371814092954,72.61369315342328,72.66366816591704,72.71364317841079,72.76361819090455,72.8135932033983,72.86356821589206,72.9135432283858,72.96351824087957,73.01349325337331,73.06346826586707,73.11344327836082,73.16341829085458,73.21339330334833,73.26336831584207,73.31334332833583,73.36331834082958,73.41329335332334,73.46326836581709,73.51324337831085,73.5632183908046,73.61319340329835,73.6631684157921,73.71314342828586,73.7631184407796,73.81309345327337,73.86306846576711,73.91304347826087,73.96301849075462,74.01299350324838,74.06296851574213,74.11294352823589,74.16291854072963,74.2128935532234,74.26286856571714,74.31284357821089,74.36281859070465,74.4127936031984,74.46276861569216,74.5127436281859,74.56271864067966,74.61269365317341,74.66266866566717,74.71264367816092,74.76261869065468,74.81259370314842,74.86256871564218,74.91254372813593,74.96251874062969,75.01249375312344,75.0624687656172,75.11244377811094,75.1624187906047,75.21239380309845,75.2623688155922,75.31234382808596,75.3623188405797,75.41229385307346,75.46226886556721,75.51224387806097,75.56221889055472,75.61219390304848,75.66216891554222,75.71214392803599,75.76211894052973,75.81209395302349,75.86206896551724,75.912043978011,75.96201899050475,76.0119940029985,76.06196901549225,76.11194402798601,76.16191904047976,76.21189405297352,76.26186906546727,76.31184407796101,76.36181909045477,76.41179410294852,76.46176911544228,76.51174412793603,76.56171914042979,76.61169415292353,76.6616691654173,76.71164417791104,76.7616191904048,76.81159420289855,76.86156921539231,76.91154422788605,76.96151924037981,77.01149425287356,77.06146926536732,77.11144427786107,77.16141929035483,77.21139430284857,77.26136931534234,77.31134432783608,77.36131934032983,77.41129435282359,77.46126936531734,77.5112443778111,77.56121939030484,77.6111944027986,77.66116941529235,77.71114442778611,77.76111944027986,77.81109445277362,77.86106946526736,77.91104447776112,77.96101949025487,78.01099450274863,78.06096951524238,78.11094452773614,78.16091954022988,78.21089455272364,78.26086956521739,78.31084457771115,78.3608195902049,78.41079460269864,78.4607696151924,78.51074462768615,78.56071964017991,78.61069465267366,78.66066966516742,78.71064467766116,78.76061969015493,78.81059470264867,78.86056971514243,78.91054472763618,78.96051974012994,79.01049475262369,79.06046976511745,79.11044477761119,79.16041979010495,79.2103948025987,79.26036981509246,79.3103448275862,79.36031984007997,79.41029485257371,79.46026986506746,79.51024487756122,79.56021989005497,79.61019490254873,79.66016991504247,79.71014492753623,79.76011994002998,79.81009495252374,79.86006996501749,79.91004497751125,79.960019990005,80.00999500249875,80.0599700149925,80.10994502748626,80.15992003998001,80.20989505247377,80.25987006496752,80.30984507746128,80.35982008995502,80.40979510244878,80.45977011494253,80.50974512743628,80.55972013993004,80.60969515242378,80.65967016491754,80.70964517741129,80.75962018990505,80.8095952023988,80.85957021489256,80.9095452273863,80.95952023988006,81.00949525237381,81.05947026486757,81.10944527736132,81.15942028985508,81.20939530234882,81.25937031484258,81.30934532733633,81.35932033983009,81.40929535232384,81.45927036481758,81.50924537731134,81.55922038980509,81.60919540229885,81.6591704147926,81.70914542728636,81.7591204397801,81.80909545227387,81.85907046476761,81.90904547726137,81.95902048975512,82.00899550224888,82.05897051474263,82.10894552723639,82.15892053973013,82.2088955522239,82.25887056471764,82.3088455772114,82.35882058970515,82.40879560219891,82.45877061469265,82.5087456271864,82.55872063968016,82.6086956521739,82.65867066466767,82.70864567716141,82.75862068965517,82.80859570214892,82.85857071464268,82.90854572713643,82.95852073963019,83.00849575212393,83.0584707646177,83.10844577711144,83.1584207896052,83.20839580209895,83.25837081459271,83.30834582708646,83.35832083958022,83.40829585207396,83.45827086456772,83.50824587706147,83.55822088955522,83.60819590204898,83.65817091454272,83.70814592703648,83.75812093953023,83.80809595202399,83.85807096451774,83.9080459770115,83.95802098950524,84.007996001999,84.05797101449275,84.10794602698651,84.15792103948026,84.20789605197402,84.25787106446776,84.30784607696152,84.35782108945527,84.40779610194903,84.45777111444278,84.50774612693654,84.55772113943029,84.60769615192403,84.65767116441779,84.70764617691154,84.7576211894053,84.80759620189905,84.8575712143928,84.90754622688655,84.95752123938031,85.00749625187406,85.05747126436782,85.10744627686157,85.15742128935533,85.20739630184907,85.25737131434283,85.30734632683658,85.35732133933034,85.40729635182409,85.45727136431785,85.5072463768116,85.55722138930535,85.6071964017991,85.65717141429285,85.70714642678661,85.75712143928035,85.80709645177411,85.85707146426786,85.90704647676162,85.95702148925537,86.00699650174913,86.05697151424287,86.10694652673664,86.15692153923038,86.20689655172414,86.25687156421789,86.30684657671165,86.3568215892054,86.40679660169916,86.4567716141929,86.50674662668666,86.55672163918041,86.60669665167416,86.65667166416792,86.70664667666166,86.75662168915542,86.80659670164917,86.85657171414293,86.90654672663668,86.95652173913044,87.00649675162418,87.05647176411794,87.10644677661169,87.15642178910545,87.2063968015992,87.25637181409296,87.3063468265867,87.35632183908046,87.40629685157421,87.45627186406797,87.50624687656172,87.55622188905548,87.60619690154923,87.65617191404297,87.70614692653673,87.75612193903048,87.80609695152424,87.85607196401799,87.90604697651175,87.95602198900549,88.00599700149925,88.055972013993,88.10594702648676,88.1559220389805,88.20589705147427,88.25587206396801,88.30584707646177,88.35582208895552,88.40579710144928,88.45577211394303,88.50574712643679,88.55572213893053,88.6056971514243,88.65567216391804,88.70564717641179,88.75562218890555,88.8055972013993,88.85557221389305,88.9055472263868,88.95552223888056,89.00549725137431,89.05547226386807,89.10544727636182,89.15542228885558,89.20539730134932,89.25537231384308,89.30534732633683,89.35532233883059,89.40529735132434,89.4552723638181,89.50524737631184,89.5552223888056,89.60519740129935,89.65517241379311,89.70514742628686,89.7551224387806,89.80509745127436,89.85507246376811,89.90504747626187,89.95502248875562,90.00499750124938,90.05497251374312,90.10494752623688,90.15492253873063,90.20489755122439,90.25487256371814,90.3048475762119,90.35482258870564,90.4047976011994,90.45477261369315,90.50474762618691,90.55472263868066,90.60469765117442,90.65467266366817,90.70464767616193,90.75462268865567,90.80459770114942,90.85457271364318,90.90454772613693,90.95452273863069,91.00449775112443,91.0544727636182,91.10444777611194,91.1544227886057,91.20439780109945,91.2543728135932,91.30434782608695,91.35432283858071,91.40429785107446,91.45427286356822,91.50424787606197,91.55422288855573,91.60419790104947,91.65417291354323,91.70414792603698,91.75412293853073,91.80409795102449,91.85407296351823,91.904047976012,91.95402298850574,92.0039980009995,92.05397301349325,92.10394802598701,92.15392303848076,92.20389805097452,92.25387306346826,92.30384807596202,92.35382308845577,92.40379810094953,92.45377311344328,92.50374812593704,92.55372313843078,92.60369815092454,92.65367316341829,92.70364817591205,92.7536231884058,92.80359820089954,92.8535732133933,92.90354822588705,92.95352323838081,93.00349825087456,93.05347326336832,93.10344827586206,93.15342328835582,93.20339830084957,93.25337331334333,93.30334832583708,93.35332333833084,93.40329835082458,93.45327336331835,93.50324837581209,93.55322338830585,93.6031984007996,93.65317341329336,93.7031484257871,93.75312343828087,93.80309845077461,93.85307346326836,93.90304847576212,93.95302348825587,94.00299850074963,94.05297351324337,94.10294852573713,94.15292353823088,94.20289855072464,94.25287356321839,94.30284857571215,94.3528235882059,94.40279860069965,94.4527736131934,94.50274862568716,94.55272363818091,94.60269865067467,94.65267366316841,94.70264867566218,94.75262368815592,94.80259870064968,94.85257371314343,94.90254872563717,94.95252373813094,95.00249875062468,95.05247376311844,95.10244877561219,95.15242378810595,95.2023988005997,95.25237381309346,95.3023488255872,95.35232383808096,95.40229885057471,95.45227386306847,95.50224887556222,95.55222388805598,95.60219890054972,95.65217391304348,95.70214892553723,95.75212393803099,95.80209895052474,95.8520739630185,95.90204897551224,95.95202398800599,96.00199900049975,96.0519740129935,96.10194902548726,96.151924037981,96.20189905047476,96.25187406296851,96.30184907546227,96.35182408795602,96.40179910044978,96.45177411294353,96.50174912543729,96.55172413793103,96.60169915042479,96.65167416291854,96.7016491754123,96.75162418790605,96.8015992003998,96.85157421289355,96.90154922538731,96.95152423788106,97.0014992503748,97.05147426286857,97.10144927536231,97.15142428785607,97.20139930034982,97.25137431284358,97.30134932533733,97.35132433783109,97.40129935032483,97.4512743628186,97.50124937531234,97.5512243878061,97.60119940029985,97.65117441279361,97.70114942528735,97.75112443778112,97.80109945027486,97.85107446276862,97.90104947526237,97.95102448775611,98.00099950024988,98.05097451274362,98.10094952523738,98.15092453773113,98.20089955022489,98.25087456271864,98.3008495752124,98.35082458770614,98.4007996001999,98.45077461269365,98.50074962518741,98.55072463768116,98.60069965017492,98.65067466266866,98.70064967516242,98.75062468765617,98.80059970014993,98.85057471264368,98.90054972513744,98.95052473763118,99.00049975012493,99.05047476261869,99.10044977511244,99.1504247876062,99.20039980009994,99.2503748125937,99.30034982508745,99.35032483758121,99.40029985007496,99.45027486256872,99.50024987506247,99.55022488755623,99.60019990004997,99.65017491254373,99.70014992503748,99.75012493753124,99.80009995002499,99.85007496251875,99.9000499750125,99.95002498750625,100.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_negative.json b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_negative.json index 3fcae7f64bb2..bd57c2f131bd 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_negative.json +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_negative.json @@ -1 +1 @@ -{"expected":[-0.00012456166817413633,0.0004485363190720794,-0.00017370827106411615,-0.00033371098985048416,0.0003960794276259615,7.070922033827375e-5,-0.00044381646165508724,0.00022451289188387877,0.0002951771893628472,-0.0004213310341718492,-1.5306201729055812e-5,0.00043224605453137736,-0.0002723127380086448,-0.0002517802428141902,0.00044033697192269206,-4.081280581228234e-5,-0.0004139427829786389,0.0003163500852671505,0.00020414214667276422,-0.0004527520191807128,9.679505815467949e-5,0.0003891281535495211,-0.00035591808131396705,-0.00015295505533659607,0.0004583285848238975,-0.0001517824796260571,-0.0003581250181319909,0.00039037195131701446,9.897134727210262e-5,-0.0004569213254009395,0.00020492468500101838,0.00032135353708778817,-0.0004191393570243477,-4.29926906881224e-5,0.00044849024875725667,-0.00025539199702521716,-0.00027932562932896267,0.0004417297450081565,-1.4141734110297437e-5,-0.0004331022442213629,0.0003023882621858372,0.00023263798046580558,-0.000457742533774014,7.156768447441117e-5,0.00041093100265587174,-0.0003451632688212084,-0.0001819637025590335,0.0004668740057011242,-0.00012840879444002393,-0.00038225531370002734,0.00038302457600337145,0.00012804276017808685,-0.00046892278820837024,0.00018378981125359985,0.00034745575194722317,-0.0004153485689011816,-7.167129709387688e-5,0.0004637938288719342,-0.0002368499314778339,-0.00030700978824197073,0.0004415905664349678,1.3690015693093893e-5,-0.0004515007911564774,0.0002867560355594167,0.0002614853863877762,-0.00046129381985587074,4.502822317389798e-5,0.00043216682064953324,-0.0003327156195349021,-0.00021153316895525847,0.000474097256239904,-0.00010359139897942509,-0.00040602365586887157,0.00037398922538575506,0.0001578772582215507,-0.00047974183857938047,0.00016110173738841538,0.0003734090824891023,-0.0004099021773953018,-0.00010130491919904906,0.0004780754339262904,-0.000216669323847829,-0.00033476275484213515,0.00043985544066247337,4.265515091544096e-5,-0.00046905610262283984,0.0002694257206448756,0.0002906204334056127,-0.0004633354295648641,1.719361073401099e-5,0.0004527537447291062,-0.000318537381340959,-0.00024160671133976848,0.0004799226083029125,-7.733650038442338e-5,-0.0004293500639941509,0.00036321865772150574,0.00018842632658484364,-0.0004892987424923938,0.00013685575037981405,0.00039913683476174564,-0.0004027441987402949,-0.00013185417824028594,0.0004912526798820674,-0.0001948345377183081,-0.0003625124826838629,0.00043646054832369375,7.272418655424063e-5,-0.0004856845593808922,0.00025037094414381085,0.0003199770156595405,-0.00046379675926683223,-1.1917154553437444e-5,0.00047260837039280227,-0.0003025918191997055,-0.0002721253666324918,0.0004842738536530704,-4.96521941775743e-5,-0.0004521528086444286,0.00035066633563768645,0.00021963923439861674,-0.0004975129761029134,0.00011104881305088553,0.0004245603999014984,-0.00039381902930526227,-0.00016327753200737145,0.0005032421044814115,-0.00017133136556089733,-0.0003901848888360297,0.0004313421215273247,0.00010386557434102734,-0.0005013012032192575,0.00022956648570499172,0.00034948691644292706,-0.0004626069309715108,-4.2283156664285e-5,0.0004916457268359846,-0.00028484305221613816,-0.0003030280354270631,0.0004870741939521858,-2.0548305944674597e-5,-0.0004743484052807341,0.0003362862609105027,0.0002514631384894882,-0.0005043031269140812,8.36793926531448e-5,0.00044959926797750067,-0.0003830712805127985,-0.00019553139906074298,0.000513959082262885,-0.0001461468457153575,-0.0004177038896086314,0.0004244362816055426,0.00013604584736876386,-0.0005158196685269618,0.00020698808518880522,0.0003790798673126206,-0.00045969463584213173,-7.388172644203076e-5,0.0005097792277739571,-0.0002652558534504313,-0.00033425156570982033,0.00048824609316607974,9.96379237790855e-6,-0.0004958515869522188,0.00032003276946225264,0.00028384319260983036,-0.0005095867583742871,5.4747259339822434e-5,0.00047417102504542804,-0.00037044557201949184,-0.00022857029398719807,0.0005233177047583111,-0.00011926904481589921,-0.00044499142425314325,0.00041567883381718815,0.0001692297814612144,-0.0005291520815489374,0.00018261221128355363,0.00040868360045341666,-0.0004549879340620999,-0.00010668862868584863,0.0005269205932043179,-0.0002437954074460275,-0.0003657308355737295,0.00048771108649920666,4.187139440292516e-5,-0.0005165752519293346,0.0003018602809907197,0.00031672266177951364,-0.0005132802319913924,2.42532509194827e-5,0.0004981913298579033,-0.000355886277094324,-0.00026234697418496127,0.0005312306200468168,-9.068680123431466e-5,-0.0004719674637152419,0.0004050050125443303,0.00020338057468064497,-0.0005412089217153614,0.00015641578627025986,0.0004382238921207425,-0.0004484140043083215,-0.00014067827407813113,0.0005429797368433264,-0.00022042701953752563,-0.0003973988335899183,0.00048538953893378776,7.516070269542579e-5,-0.0005364303814904181,0.00028172299663471544,0.000350043041341552,-0.0005152984799977097,-7.801000407762146e-6,0.000521573866060382,-0.0003393372130185621,-0.00029681259878702065,0.0005376088247982569,-6.038942428545137e-5,-0.0004985500010211604,0.0003923491693388424,0.00023846004666525875,-0.0005518988384253565,0.00012837586074931423,0.0004676245946158323,-0.00043989883483650514,-0.00017582395876365638,0.0005578646130234418,-0.00019511576988824847,-0.0004291867352927588,0.0004812003451710532,0.00010981710765263008,-0.0005553259222132413,0.0002595745368309426,0.00038374418029128623,-0.0005155547203066365,-4.1413384460164684e-5,0.0005442302649539507,-0.0003207412679768389,-0.00033191690049243184,0.0005423614006606293,-2.8366342914278037e-5,-0.0005246550192643582,0.00037764439471893587,0.0002744288598432371,-0.0005611284154307029,9.846923094611996e-5,0.0004968076538069981,-0.00042936684666144666,-0.00021209813497523837,0.0005714810156756065,-0.00016782610382756792,-0.00046102397397605185,0.0004750605611994852,0.00014582550663002364,-0.0005731686260681292,0.00023536750998938714,0.0004177644084027761,-0.0005139601039155561,-7.658167879819882e-5,0.0005660699929854685,-0.00030003995423297263,-0.0003676083712641698,0.000545395185273537,5.393303672148185e-6,-0.0005501964324141239,0.0003608220628293908,0.0003112467650252817,-0.0005688018734452578,6.66719897233761e-5,0.0005256931086616965,-0.0004167404374311668,-0.0002494727168123518,0.0005837323205899436,-0.00013852134836638466,-0.0004928383036931595,0.00046688495577864464,0.00018317066908393577,-0.0005898628403054575,0.00020905300071418143,0.0004520406666265192,-0.0005104232829475933,-0.00011330397120295386,0.0005870001969956307,-0.0002771728753189477,-0.00040383446310245585,0.0005466143662484645,4.0901142535133084e-5,-0.0005750859932436706,0.00034181128585932284,0.0003488728744309019,-0.0005748206997252689,3.2959000591197204e-5,0.0005541990685870974,-0.00040193943226748524,-0.000287919426178665,0.0005945191603775274,-0.00010716314265709941,-0.0005245558519694641,0.00045658546771951033,0.00022183765473448932,-0.0006053102375192277,0.00018057996394952488,0.00048650864018616,-0.0005048498850934226,-0.0001515791479480414,0.0006069254988501045,-0.00025207709238713225,-0.00044054180540769244,0.0005459199840427669,7.817012174517948e-5,-0.0005992331615359451,0.0003205382623575068,0.0003872659659095396,-0.0005790831910288816,-2.6967182962459274e-6,0.0005822416635436168,-0.0003848804249405658,-0.0003274101849937627,0.0006037390193522763,-7.37107675413901e-5,-0.0005561011592703283,0.0004440705518487528,0.00026181229330904507,-0.0006194094742598853,0.00014989450848765167,0.0005211028937362893,-0.000497141877174878,-0.00019140745889077528,0.0006257477293319169,-0.00022468637166690635,-0.0004776764408442629,0.0005432093266426345,0.00011721515682433612,-0.0006225449242982003,0.00029692550013021596,0.0004263848229936368,-0.0005814838934401476,-4.032471603723474e-5,0.0006097349608639508,-0.0003654759891157782,-0.00036791756120142116,0.0006112857327945965,-3.812035602664286e-5,-0.0005873972016811067,0.00042924439278511656,0.0003030817363653981,-0.0006320557640548405,0.00011693904959428937,0.000555757007875549,-0.00048719679674499774,-0.00023279117292036297,0.0006433655889802109,-0.00019493029092440637,-0.0005151840821071842,0.0005383751951826252,0.000158053885442217,-0.0006449255579313964,0.0002708908900729826,0.00046618861653912046,-0.0005819129188700316,-7.995795627767648e-5,0.0006365908414076816,-0.0003436337348314409,-0.00040941527786089184,0.0006170488715872453,-3.4396238365693364e-7,-0.0006183653925285538,0.00041200596092519533,0.0003456350941564253,-0.0006431403475253614,8.16513058467855e-5,0.0005904037162213398,-0.0004749068258311929,-0.0002757353404600831,0.0006596742207963513,-0.0001627331777239013,-0.0005530103926260722,0.0005313050148494895,0.00020070755080561287,-0.000666276320043661,0.00024234660179861604,0.0005066373351142866,-0.0005802551133967092,-0.00012163381399387592,0.0006627188260415063,-0.00031925517957707446,-0.0004518787968596433,0.0006209129888183405,3.967153771137284e-5,-0.0006489255577462528,0.00039224787902661867,0.0003894641736163504,-0.0006525498382705992,4.396310937883601e-5,0.00062497504214829,-0.0004601576748217366,-0.0003202486837468762,0.0006745646762273069,-0.0001280128458016495,-0.0005911012950484771,0.0005218797593382275,0.0002452020391133128,-0.0006864950557307215,0.0002111977649356838,0.000547692273100128,-0.0005763890466927572,-0.00016539525169769557,0.0006880258413481077,-0.000292234395957088,-0.0004952859916460453,0.0006227566993431686,8.198575029240206e-5,-0.0006789958786141356,0.0003698550601189606,0.0004345643375383374,-0.0006601654180598565,3.798991176725682e-6,0.0006594024341622075,-0.000442827236699072,-0.0003663446407629654,0.0006879232513513908,-9.067908756389645e-5,-0.0006294033123753893,0.0005099726493462989,0.0002915691027750374,-0.0007054756994778026,0.0001773408910287198,0.0005893165877776671,-0.0005701857842049062,-0.00021129221249545688,0.0007124159107911405,-0.0002624563884490558,-0.0005396179270638326,0.0006224515561055044,0.00012666631240467653,-0.0007084927939985744,0.00034470306762769025,0.00048093551014244504,-0.0006658618482844193,-3.8925506638762455e-5,0.0006936168987149291,-0.00042278396178207416,-0.00041404259531758195,0.0006996306644182158,-5.063187003643488e-5,-0.0006678639479625238,0.000495447575570884,0.0003398478092533135,-0.0007231076491104179,0.0001406619794213257,0.0006314759396580153,-0.0005615073939656795,-0.00025938327710763466,0.0007357897541149982,-0.0002297951395332963,-0.000584859769133401,0.0006198606777279072,0.00017379074169197837,-0.0007373308522747821,0.00031665613585580877,0.0005285833608709029,-0.0006695062560870872,-8.430585217840328e-5,0.0007275491290585265,-0.0003998848901376244,-0.00046336933438106953,0.0007095610384118557,-7.75916771947288e-6,-0.0007064321123344968,0.00047815718365721405,0.00039008626597529603,-0.0007392749820839392,0.00010103423551010707,0.0006741392341983467,-0.0005502051271990107,-0.0003097376445559679,0.0007580442732704699,-0.00019411124953493396,-0.0006310018538217974,0.0006148370697758587,0.00022344865491130653,-0.0007654225005863134,0.00028556477236704487,0.0005775207069177935,-0.0006709566424612329,-0.00013245095585173036,0.0007611296284635723,-0.00037397326182992335,-0.0005143607850012877,0.0007175806425271957,3.8065652320656336e-5,-0.0007450586070384055,0.00045794054152902095,0.00044234368563577487,-0.0007538554763697327,5.8315310104981454e-5,0.000717279488131591,-0.0005361171952083469,-0.00036243751272811036,0.0007790718972772163,-0.000155249073629507,-0.0006780409519903127,0.0006072215662181262,0.00027574444313245496,-0.0007926777957749918,0.0002512628419831064,0.0006277691863882861,-0.0006700600449744519,-0.0001834861117745654,0.000794288825775187,-0.0003448756028182626,-0.000567064097938486,0.0007235463335701548,8.698700169671053e-5,-0.0007836966787628592,0.0004346202870745869,0.0004966928745054416,-0.0007667193875943131,1.2343942697224056e-5,0.0007608748503678707,-0.0005190660430132672,-0.00041758095686709096,0.0007987597506586073,-0.00011303323180833755,-0.0007259817784811798,0.0005968402965700792,0.00033080051668238846,-0.0008190040169196047,0.00021356400318583724,0.0006793612690999517,-0.0006666502683640411,-0.0002375565758217347,0.0008269571808112885,-0.000312398154606676,-0.0006215401648126207,0.0007273036211717714,0.00013917093862373154,-0.0008223026609488164,0.00040799912429235254,0.0005532232507290031,-0.0007777279199740055,-3.706414313367566e-5,0.0008049098163878196,-0.0004988549908266503,-0.0004752854331439743,0.000816988599711263,-6.726433070043813e-5,-0.0007748388077058107,0.0005835015561140858,0.00038876126673274906,-0.0008443051535447506,0.0001722573290108936,0.0007323426922566649,-0.000660545070262788,-0.00029483194600332966,0.0008590652764856759,-0.000276322475945554,-0.0006778666819351168,0.0007286842577456566,0.0001948099155161718,-0.0008608367254843519,0.00037785549586455105,0.0006120445323308066,-0.0007867313096117011,-9.012129041853215e-5,0.0008493766871179257,-0.00047526407493905326,-0.0005356920736943555,0.0008336315168993461,-1.7713686395006457e-5,-0.0008246384775051377,0.0005669919186844694,0.00044979793607755265,-0.0008684812356296175,0.00012710189225876418,0.000786775435562244,-0.0006515426541892085,-0.00035551156276490074,0.0008905438936950091,-0.0002363999909853572,-0.0007361419097074306,0.0007275032230025167,0.0002541286470554513,-0.0008992637743603523,0.00034393820568986375,0.0006732912790951917,-0.0007935664129593309,-0.00014707416700905144,0.0008942773396766021,-0.00044804486581438805,-0.000598970992842504,0.000848552184645008,3.58832303209993e-5,-0.0008754218895060851,0.0005470713798517421,0.0005141146539167053,-0.0008914274607267569,7.782002349823515e-5,0.000842741387658368,-0.0006394172739397751,-0.0004198312177610088,0.0009213240638593112,-0.0001923451845589495,-0.0007964893253653697,0.0007235549302334848,0.00031739141873913477,-0.0009375545111457186,0.00030595969023145366,0.000737128533461601,-0.0007980536578778951,-0.00020821157943568566,0.0009396253999222684,-0.0004169139673056412,-0.0006653278976281883,0.0008616027336186371,9.383499816905384e-5,-0.0009272481506285773,0.0005234672471390933,0.0005819559753028539,-0.0009130330585740554,2.408885187451331e-5,0.0009003469073194987,-0.0006239136872178456,-0.0004880715577518202,0.0009513370924149846,-0.00014382704323060214,-0.0008590634345313574,0.0007166084225512762,0.000384911265687759,-0.0009756867459868408,0.00026358753395412454,0.0008037588902287548,-0.000799993165609784,-0.00027387431108503643,0.0009854489380689735,-0.00038154479809130717,-0.0007350123978761266,0.0008726209741890288,0.0001565046008188065,-0.000980198551191728,0.0004958663946117935,0.0006536163857225062,-0.0009331798127442013,-3.4470398842348966e-5,0.0009597285548784803,-0.0006047401035927985,-0.000560568707523518,0.0009805145443330166,-9.045819783037602e-5,-0.0009240571019187258,0.0007064012445161511,0.0004570616055293964,-0.0010136470072727609,0.0002164336785943075,0.0008734314438317912,-0.0007991597828927923,-0.0003444676229596536,0.0010317938527584255,-0.0003415571116210217,-0.0008083285550187401,0.0008814268283013175,0.00022432261873191233,-0.0010343818467806337,0.0004639053588795084,0.0007294524006357697,-0.0009517401293956868,-9.830608122277898e-5,0.0010210603713882468,-0.0005815591404862235,-0.0006377278303527933,0.0010087881795774023,-3.1781020293844424e-5,-0.0009917108962841142,0.0006926315569370302,0.000534291128220437,-0.0010514325607661355,0.00016404056882303458,0.0009464532314650014,-0.0007952966649720858,-0.00042047729721402774,0.0010787281719488128,-0.000296503504019921,-0.0008856484146069101,0.0008878176955528182,0.0002978042049458165,-0.0010899410137170887,0.0004271575525692051,0.0008098981325968859,-0.000968574500905952,-0.00016795376388856255,0.0010845632295607658,-0.0005539761120188006,-0.00072004062440203,0.0010360898218713251,3.2750364522243604e-5,-0.0010623251389058972,0.0006749478930355778,0.0006171430617178392,-0.0010890539769312525,0.0001058631775154153,0.0010232040353603227,-0.000788106907797335,-0.0005024904538550386,0.0011263475902021603,-0.0002458518596010785,-0.0009674295658691278,0.000891562380563817,0.0003775711734426736,-0.001147061997215636,0.0003851165789799142,0.0008954855519421678,-0.0009835281505735502,-0.0002440592490104013,0.0011505169942555408,-0.0005215236999209037,-0.0008081081622102554,0.001062351137494892,0.0001037936187010369,-0.0011362756290627823,0.0006529357057300633,0.0007062803956424131,-0.0011265384457573007,4.124541447799306e-5,0.001104155767477257,-0.0007772425182842924,-0.0005912228861615011,0.0011747826962334998,-0.00018896224195460827,-0.0010542382116127636,0.000892393051347432,0.0004643810914025477,-0.0012059851918136937,0.0003371741993800588,0.0009868711899399915,-0.0009964265533721171,-0.00032740898028303097,0.0012192765472632645,-0.0004836416465879647,-0.0009026710876045519,0.0010875032909538349,0.00018214938513556257,-0.001214034443108361,0.0006260994856623769,0.0008025193358197096,-0.0011639341257739643,-3.0611233712196184e-5,0.001189898197830279,-0.0007622896982636906,-0.0006875554315598233,0.0012242085457648628,-0.0001250560763474782,-0.001146779891949144,0.0008899944620173027,0.000559166112364569,-0.0012670207253608267,0.00028259085362547753,0.0010848718211618632,-0.0010070693901902256,-0.00041897076508874264,0.0012912932099202973,-0.0004396494918928274,-0.0010046501030235248,0.0011114764293958333,0.0002688032011894827,-0.0012961978455399727,0.0005938386676472211,0.0009068743121164311,-0.0012013159468612525,-0.00011068998385703361,0.001281173607232969,-0.0007427489401278721,-0.0007925830715857579,0.0012748575420049957,-5.3174456752931195e-5,-0.001245941015453367,0.0008839893111688632,0.0006630855836360853,-0.0013305691267389407,0.00022045563547311493,0.001190512872775012,-0.0010152222814007103,-0.0005199491373502018,0.0013671438349804213,-0.0003887094212901264,-0.0011152010986612878,0.0011341989245123956,0.00036498268825800454,-0.0013835243441990286,0.0005554146723408574,0.0010206194901172033,-0.0012387934928238416,-0.00020021665968386048,0.0013789242202030235,-0.0007180076884251345,-0.0009076822889600812,0.0013270370654889987,2.7879170267855555e-5,-0.0013528459304808236,0.0008739180408220478,0.0007775984917953167,-0.0013971497553622913,0.00014963105556950126,0.0013050952108605398,-0.0010206053128353485,-0.0006318618958132099,0.0014475710019363037,-0.0003297747878091963,-0.0012357915145639765,0.0011555962640975325,0.0004722369314745313,-0.0014769874957254422,0.0005099050490576404,0.0011453743213680624,-0.0012765219175862408,-0.00030074039124785017,0.0014843583038672249,-0.0006873021361319154,-0.0010346051369381586,0.0013811540608216898,0.00011961922101145157,-0.0014689367972884246,0.0008592104729925433,0.0009045650677983454,-0.0014674406520044049,6.867540325256134e-5,0.0014302890161991652,-0.0010228768309867152,-0.0007566479151387555,0.0015335396280128349,-0.00026151743704354134,-0.0013683081525123545,0.0011755894261525138,0.0005925487899744965,-0.0015778506242123604,0.00045613843994926466,0.0012832248745383815,-0.001314717383360894,-0.00041424831227983067,0.0015990441358393129,-0.0006496627848852304,-0.001175613270402968,0.0014377500436850833,0.0002239925168205131,-0.0015960876771315493,0.0008391451868269648,0.0010463922414414228,-0.0015423355848493956,-2.4268647682825248e-5,0.0015682685271050762,-0.0010216100961604531,-0.00089682223463965,0.0016263184250944632,-0.0001822229188619299,-0.0015152126895599401,0.0011940924696269744,0.0007284972632769551,-0.0016877748883841015,0.00039260032831306163,0.001436899739089401,-0.001353679405780134,-0.0005433322264946662,0.0017250466235562887,-0.0006038351318764142,-0.00133367327403637,0.0014975521123324327,0.0003435456007555665,-0.001736771291677795,0.00081279000549713,0.0012062467508895973,-0.0016230276600917146,-0.00013163763824145251,0.0017219100642948428,-0.00101625886571144,-0.001055704531872975,0.0017275999726321886,-8.963573167844645e-5,-0.0016797715101844425,0.0012110089059382536,0.0008834980377314484,-0.0018089795025767355,0.00031729304252168383,0.0016100314892168405,-0.0013938240446039886,-0.0006914369601852669,0.0018651310544589696,-0.0005481611603211011,-0.0015127487185683905,0.001561549250651372,0.0004816755524014695,-0.0018943092305612375,0.0007789125176643558,0.001388375728226459,-0.00171113519295785,-0.0002566940802807168,0.001895090999768784,-0.0010061052980523963,-0.0012377649788820238,0.0018396826483312034,1.927558152519472e-5,-0.001866404920126553,0.0012262261124555546,0.0010621699752255114,-0.001944486098320289,0.00022752185752014347,0.001807556583127426,-0.0014357346714945806,-0.0008632412706060296,0.002023075948247241,-0.0004803970362291537,-0.001718249891405408,0.0016311099243953107,0.0006430173241968965,-0.002073258812710258,0.0007358414560358085,0.0015986038309784506,-0.00180889711028355,-0.00040391023840991827,0.0020931553303056706,-0.0009901786349749832,-0.001449164453931996,0.001965755148947577,0.00014868647147221216,-0.0020812349963641344,0.0012396064864991434,0.0012709118468380034,-0.0020985037872636152,0.00011955731303421825,0.002036347535888577,-0.0014802422836416086,-0.001065261923589826,0.0022041699143329958,-0.0003974230321248504,-0.001957750379336125,0.0017081696903955366,0.0008340629479795417,-0.0022800324632093463,0.0006812443135512643,0.0018451318510395577,-0.001919487309381664,-0.0005795867604962659,0.0023236653300032733,-0.0009671236178624162,-0.0016986297334834783,0.0021103581690160213,0.0003045147547068961,-0.0023329777621587697,0.0012509729427486898,0.0015188449298456186,-0.0022770595549118475,-1.1918720415943296e-5,0.0023062516967374044,-0.0015285576469618195,-0.0013068500116493488,0.002416032579526081,-0.00029476325717711925,-0.002242175566487638,0.001795542883008963,0.0010641925074866318,-0.0025239308813735204,0.0006117555816293639,0.0021398741361190942,-0.002047542085281566,-0.0007928928619910753,0.0025976678506795447,-0.0009349782817713523,-0.0019989339832992884,0.002280166923792778,0.0004954370710155672,-0.0026344617922406752,0.0012600841012209052,0.001819424298168349,-0.0024890781036488014,-0.00017476407879320292,0.002631878458549123,-0.0015824990754146177,-0.0016019127413476626,0.002670036367036641,-0.00016575189468562404,-0.0025878704168812803,0.0018974660672278019,0.001347476173252693,-0.002818953038002398,0.0005223238430495113,0.002500812752963247,-0.0022000906716207525,-0.0010577061468329794,0.0029319394405921797,-0.0008907789395969425,-0.0023695346608832357,0.002485388841847612,0.0007347091416077469,-0.0030053545178221775,0.0012665895504637046,0.0021933465239831838,-0.00274833553419209,-0.0003811016092036691,0.0030358499820140007,-0.0016449077728799529,-0.0019720621544148742,0.0029839136141396757,0.0],"x":[-709.0895,-708.481626247505,-707.87375249501,-707.2658787425149,-706.65800499002,-706.050131237525,-705.4422574850299,-704.8343837325349,-704.22650998004,-703.6186362275449,-703.0107624750499,-702.4028887225548,-701.7950149700599,-701.1871412175649,-700.5792674650698,-699.9713937125748,-699.3635199600799,-698.7556462075848,-698.1477724550898,-697.5398987025948,-696.9320249500998,-696.3241511976048,-695.7162774451098,-695.1084036926147,-694.5005299401198,-693.8926561876248,-693.2847824351297,-692.6769086826347,-692.0690349301398,-691.4611611776447,-690.8532874251497,-690.2454136726546,-689.6375399201597,-689.0296661676647,-688.4217924151696,-687.8139186626746,-687.2060449101797,-686.5981711576846,-685.9902974051896,-685.3824236526946,-684.7745499001996,-684.1666761477046,-683.5588023952096,-682.9509286427145,-682.3430548902196,-681.7351811377246,-681.1273073852295,-680.5194336327345,-679.9115598802396,-679.3036861277445,-678.6958123752495,-678.0879386227545,-677.4800648702595,-676.8721911177645,-676.2643173652694,-675.6564436127744,-675.0485698602795,-674.4406961077844,-673.8328223552894,-673.2249486027944,-672.6170748502994,-672.0092010978044,-671.4013273453094,-670.7934535928143,-670.1855798403194,-669.5777060878244,-668.9698323353293,-668.3619585828343,-667.7540848303394,-667.1462110778443,-666.5383373253493,-665.9304635728543,-665.3225898203593,-664.7147160678643,-664.1068423153692,-663.4989685628742,-662.8910948103793,-662.2832210578842,-661.6753473053892,-661.0674735528942,-660.4595998003992,-659.8517260479042,-659.2438522954092,-658.6359785429141,-658.0281047904192,-657.4202310379242,-656.8123572854291,-656.2044835329341,-655.5966097804392,-654.9887360279441,-654.3808622754491,-653.772988522954,-653.1651147704591,-652.5572410179641,-651.949367265469,-651.341493512974,-650.7336197604791,-650.125746007984,-649.517872255489,-648.909998502994,-648.302124750499,-647.694250998004,-647.086377245509,-646.4785034930139,-645.870629740519,-645.262755988024,-644.6548822355289,-644.0470084830339,-643.439134730539,-642.8312609780439,-642.2233872255489,-641.6155134730539,-641.0076397205589,-640.3997659680639,-639.7918922155689,-639.1840184630738,-638.5761447105789,-637.9682709580838,-637.3603972055888,-636.7525234530938,-636.1446497005988,-635.5367759481038,-634.9289021956088,-634.3210284431137,-633.7131546906188,-633.1052809381238,-632.4974071856287,-631.8895334331337,-631.2816596806388,-630.6737859281437,-630.0659121756487,-629.4580384231537,-628.8501646706587,-628.2422909181637,-627.6344171656687,-627.0265434131736,-626.4186696606787,-625.8107959081836,-625.2029221556886,-624.5950484031936,-623.9871746506986,-623.3793008982036,-622.7714271457086,-622.1635533932135,-621.5556796407186,-620.9478058882236,-620.3399321357285,-619.7320583832335,-619.1241846307386,-618.5163108782435,-617.9084371257485,-617.3005633732535,-616.6926896207585,-616.0848158682635,-615.4769421157685,-614.8690683632734,-614.2611946107785,-613.6533208582835,-613.0454471057884,-612.4375733532934,-611.8296996007984,-611.2218258483034,-610.6139520958084,-610.0060783433133,-609.3982045908184,-608.7903308383234,-608.1824570858283,-607.5745833333333,-606.9667095808384,-606.3588358283433,-605.7509620758483,-605.1430883233533,-604.5352145708583,-603.9273408183633,-603.3194670658683,-602.7115933133732,-602.1037195608783,-601.4958458083833,-600.8879720558882,-600.2800983033932,-599.6722245508982,-599.0643507984032,-598.4564770459082,-597.8486032934131,-597.2407295409182,-596.6328557884232,-596.0249820359281,-595.4171082834331,-594.8092345309382,-594.2013607784431,-593.5934870259481,-592.985613273453,-592.3777395209581,-591.7698657684631,-591.161992015968,-590.554118263473,-589.9462445109781,-589.338370758483,-588.730497005988,-588.122623253493,-587.514749500998,-586.906875748503,-586.299001996008,-585.6911282435129,-585.083254491018,-584.475380738523,-583.8675069860279,-583.2596332335329,-582.651759481038,-582.0438857285429,-581.4360119760479,-580.8281382235529,-580.2202644710579,-579.6123907185629,-579.0045169660679,-578.3966432135728,-577.7887694610779,-577.1808957085829,-576.5730219560878,-575.9651482035928,-575.3572744510979,-574.7494006986028,-574.1415269461078,-573.5336531936127,-572.9257794411178,-572.3179056886228,-571.7100319361277,-571.1021581836327,-570.4942844311378,-569.8864106786427,-569.2785369261477,-568.6706631736527,-568.0627894211577,-567.4549156686627,-566.8470419161677,-566.2391681636726,-565.6312944111777,-565.0234206586827,-564.4155469061876,-563.8076731536926,-563.1997994011977,-562.5919256487026,-561.9840518962076,-561.3761781437125,-560.7683043912176,-560.1604306387226,-559.5525568862275,-558.9446831337325,-558.3368093812376,-557.7289356287425,-557.1210618762475,-556.5131881237525,-555.9053143712575,-555.2974406187625,-554.6895668662675,-554.0816931137724,-553.4738193612775,-552.8659456087825,-552.2580718562874,-551.6501981037924,-551.0423243512975,-550.4344505988024,-549.8265768463074,-549.2187030938123,-548.6108293413174,-548.0029555888224,-547.3950818363273,-546.7872080838323,-546.1793343313374,-545.5714605788423,-544.9635868263473,-544.3557130738523,-543.7478393213573,-543.1399655688623,-542.5320918163673,-541.9242180638722,-541.3163443113773,-540.7084705588823,-540.1005968063872,-539.4927230538922,-538.8848493013973,-538.2769755489022,-537.6691017964072,-537.0612280439121,-536.4533542914172,-535.8454805389222,-535.2376067864271,-534.6297330339321,-534.0218592814372,-533.4139855289421,-532.8061117764471,-532.1982380239521,-531.5903642714571,-530.9824905189621,-530.374616766467,-529.766743013972,-529.1588692614771,-528.550995508982,-527.943121756487,-527.335248003992,-526.727374251497,-526.119500499002,-525.511626746507,-524.9037529940119,-524.295879241517,-523.688005489022,-523.0801317365269,-522.4722579840319,-521.864384231537,-521.2565104790419,-520.6486367265469,-520.0407629740519,-519.4328892215569,-518.8250154690619,-518.2171417165669,-517.6092679640718,-517.0013942115769,-516.3935204590819,-515.7856467065868,-515.1777729540918,-514.5698992015969,-513.9620254491018,-513.3541516966068,-512.7462779441117,-512.1384041916168,-511.5305304391218,-510.92265668662674,-510.31478293413176,-509.7069091816367,-509.09903542914174,-508.4911616766467,-507.8832879241517,-507.2754141716567,-506.6675404191617,-506.05966666666666,-505.4517929141717,-504.84391916167664,-504.23604540918166,-503.6281716566866,-503.02029790419164,-502.4124241516966,-501.8045503992016,-501.1966766467066,-500.5888028942116,-499.98092914171656,-499.3730553892216,-498.76518163672654,-498.15730788423156,-497.5494341317365,-496.94156037924154,-496.3336866267465,-495.7258128742515,-495.1179391217565,-494.5100653692615,-493.90219161676646,-493.2943178642715,-492.68644411177644,-492.07857035928146,-491.4706966067864,-490.86282285429144,-490.2549491017964,-489.6470753493014,-489.0392015968064,-488.4313278443114,-487.82345409181636,-487.2155803393214,-486.60770658682634,-485.99983283433136,-485.3919590818363,-484.78408532934134,-484.1762115768463,-483.5683378243513,-482.9604640718563,-482.3525903193613,-481.74471656686626,-481.1368428143713,-480.52896906187624,-479.92109530938126,-479.3132215568862,-478.70534780439124,-478.0974740518962,-477.4896002994012,-476.8817265469062,-476.2738527944112,-475.66597904191616,-475.0581052894212,-474.45023153692614,-473.84235778443116,-473.2344840319361,-472.62661027944114,-472.0187365269461,-471.4108627744511,-470.8029890219561,-470.1951152694611,-469.58724151696606,-468.9793677644711,-468.37149401197604,-467.76362025948106,-467.155746506986,-466.54787275449104,-465.939999001996,-465.332125249501,-464.724251497006,-464.116377744511,-463.50850399201596,-462.900630239521,-462.29275648702594,-461.68488273453096,-461.0770089820359,-460.46913522954094,-459.8612614770459,-459.2533877245509,-458.6455139720559,-458.0376402195609,-457.42976646706586,-456.8218927145709,-456.21401896207584,-455.60614520958086,-454.9982714570858,-454.39039770459084,-453.7825239520958,-453.1746501996008,-452.5667764471058,-451.9589026946108,-451.35102894211576,-450.7431551896208,-450.13528143712574,-449.52740768463076,-448.9195339321357,-448.31166017964074,-447.7037864271457,-447.0959126746507,-446.4880389221557,-445.8801651696607,-445.27229141716566,-444.6644176646707,-444.05654391217564,-443.44867015968066,-442.8407964071856,-442.23292265469064,-441.6250489021956,-441.0171751497006,-440.4093013972056,-439.8014276447106,-439.19355389221556,-438.5856801397206,-437.97780638722554,-437.36993263473056,-436.7620588822355,-436.15418512974054,-435.5463113772455,-434.9384376247505,-434.3305638722555,-433.7226901197605,-433.11481636726546,-432.5069426147705,-431.89906886227544,-431.29119510978046,-430.6833213572854,-430.07544760479044,-429.4675738522954,-428.8597000998004,-428.2518263473054,-427.6439525948104,-427.03607884231536,-426.4282050898204,-425.82033133732534,-425.21245758483036,-424.6045838323353,-423.99671007984034,-423.3888363273453,-422.7809625748503,-422.1730888223553,-421.5652150698603,-420.95734131736526,-420.3494675648703,-419.74159381237524,-419.13372005988026,-418.5258463073852,-417.91797255489024,-417.3100988023952,-416.7022250499002,-416.0943512974052,-415.4864775449102,-414.87860379241516,-414.2707300399202,-413.66285628742514,-413.05498253493016,-412.4471087824351,-411.83923502994014,-411.2313612774451,-410.6234875249501,-410.0156137724551,-409.4077400199601,-408.79986626746506,-408.1919925149701,-407.58411876247504,-406.97624500998006,-406.368371257485,-405.76049750499004,-405.152623752495,-404.54475,-403.936876247505,-403.32900249501,-402.72112874251496,-402.11325499002,-401.50538123752494,-400.89750748502996,-400.2896337325349,-399.68175998003994,-399.0738862275449,-398.4660124750499,-397.8581387225549,-397.2502649700599,-396.64239121756486,-396.0345174650699,-395.42664371257484,-394.81876996007986,-394.2108962075848,-393.60302245508984,-392.9951487025948,-392.3872749500998,-391.7794011976048,-391.1715274451098,-390.56365369261476,-389.9557799401198,-389.34790618762474,-388.74003243512976,-388.1321586826347,-387.52428493013974,-386.9164111776447,-386.3085374251497,-385.7006636726547,-385.0927899201597,-384.48491616766466,-383.8770424151697,-383.26916866267464,-382.66129491017966,-382.0534211576846,-381.44554740518964,-380.8376736526946,-380.2297999001996,-379.6219261477046,-379.0140523952096,-378.40617864271456,-377.7983048902196,-377.19043113772454,-376.58255738522956,-375.9746836327345,-375.36680988023954,-374.7589361277445,-374.1510623752495,-373.5431886227545,-372.9353148702595,-372.32744111776447,-371.7195673652695,-371.11169361277445,-370.50381986027946,-369.8959461077844,-369.28807235528944,-368.6801986027944,-368.0723248502994,-367.4644510978044,-366.8565773453094,-366.24870359281437,-365.6408298403194,-365.03295608782435,-364.42508233532936,-363.8172085828343,-363.20933483033934,-362.6014610778443,-361.9935873253493,-361.3857135728543,-360.7778398203593,-360.16996606786427,-359.5620923153693,-358.95421856287425,-358.34634481037926,-357.7384710578842,-357.13059730538924,-356.5227235528942,-355.9148498003992,-355.3069760479042,-354.6991022954092,-354.09122854291417,-353.4833547904192,-352.87548103792415,-352.26760728542916,-351.6597335329341,-351.05185978043914,-350.4439860279441,-349.8361122754491,-349.2282385229541,-348.6203647704591,-348.01249101796407,-347.4046172654691,-346.79674351297405,-346.18886976047907,-345.580996007984,-344.97312225548905,-344.365248502994,-343.757374750499,-343.149500998004,-342.541627245509,-341.93375349301397,-341.325879740519,-340.71800598802395,-340.11013223552897,-339.5022584830339,-338.89438473053895,-338.2865109780439,-337.6786372255489,-337.0707634730539,-336.4628897205589,-335.85501596806387,-335.2471422155689,-334.63926846307385,-334.03139471057887,-333.4235209580838,-332.81564720558885,-332.2077734530938,-331.5998997005988,-330.9920259481038,-330.3841521956088,-329.77627844311377,-329.1684046906188,-328.56053093812375,-327.95265718562877,-327.3447834331337,-326.73690968063875,-326.1290359281437,-325.5211621756487,-324.9132884231537,-324.3054146706587,-323.69754091816367,-323.0896671656687,-322.48179341317365,-321.87391966067867,-321.2660459081836,-320.65817215568865,-320.0502984031936,-319.4424246506986,-318.8345508982036,-318.2266771457086,-317.61880339321357,-317.0109296407186,-316.40305588822355,-315.79518213572857,-315.1873083832335,-314.57943463073855,-313.9715608782435,-313.3636871257485,-312.7558133732535,-312.1479396207585,-311.54006586826347,-310.9321921157685,-310.32431836327345,-309.71644461077847,-309.10857085828343,-308.50069710578845,-307.8928233532934,-307.2849496007984,-306.6770758483034,-306.0692020958084,-305.46132834331337,-304.8534545908184,-304.24558083832335,-303.63770708582837,-303.02983333333333,-302.42195958083835,-301.8140858283433,-301.2062120758483,-300.5983383233533,-299.9904645708583,-299.38259081836327,-298.7747170658683,-298.16684331337325,-297.55896956087827,-296.95109580838323,-296.34322205588825,-295.7353483033932,-295.1274745508982,-294.5196007984032,-293.9117270459082,-293.30385329341317,-292.6959795409182,-292.08810578842315,-291.48023203592817,-290.87235828343313,-290.26448453093815,-289.6566107784431,-289.0487370259481,-288.4408632734531,-287.8329895209581,-287.22511576846307,-286.6172420159681,-286.00936826347305,-285.40149451097807,-284.79362075848303,-284.18574700598805,-283.577873253493,-282.96999950099803,-282.362125748503,-281.754251996008,-281.14637824351297,-280.538504491018,-279.93063073852295,-279.32275698602797,-278.71488323353293,-278.10700948103795,-277.4991357285429,-276.89126197604793,-276.2833882235529,-275.6755144710579,-275.06764071856287,-274.4597669660679,-273.85189321357285,-273.24401946107787,-272.63614570858283,-272.02827195608785,-271.4203982035928,-270.81252445109783,-270.2046506986028,-269.5967769461078,-268.98890319361277,-268.3810294411178,-267.77315568862275,-267.16528193612777,-266.55740818363273,-265.94953443113775,-265.3416606786427,-264.73378692614773,-264.1259131736527,-263.5180394211577,-262.91016566866267,-262.3022919161677,-261.69441816367265,-261.08654441117767,-260.47867065868263,-259.87079690618765,-259.2629231536926,-258.65504940119763,-258.0471756487026,-257.4393018962076,-256.83142814371257,-256.2235543912176,-255.61568063872255,-255.00780688622754,-254.39993313373253,-253.79205938123752,-253.1841856287425,-252.5763118762475,-251.9684381237525,-251.36056437125748,-250.75269061876247,-250.14481686626746,-249.53694311377245,-248.92906936127744,-248.32119560878243,-247.71332185628742,-247.1054481037924,-246.4975743512974,-245.8897005988024,-245.28182684630738,-244.67395309381237,-244.06607934131736,-243.45820558882235,-242.85033183632734,-242.24245808383233,-241.63458433133732,-241.0267105788423,-240.4188368263473,-239.8109630738523,-239.20308932135728,-238.59521556886227,-237.98734181636726,-237.37946806387225,-236.77159431137724,-236.16372055888223,-235.55584680638722,-234.9479730538922,-234.3400993013972,-233.7322255489022,-233.12435179640718,-232.51647804391217,-231.90860429141716,-231.30073053892215,-230.69285678642714,-230.08498303393213,-229.47710928143712,-228.8692355289421,-228.2613617764471,-227.6534880239521,-227.04561427145708,-226.43774051896207,-225.82986676646706,-225.22199301397205,-224.61411926147704,-224.00624550898203,-223.39837175648702,-222.790498003992,-222.182624251497,-221.574750499002,-220.96687674650698,-220.35900299401197,-219.75112924151696,-219.14325548902195,-218.53538173652694,-217.92750798403193,-217.31963423153692,-216.7117604790419,-216.1038867265469,-215.4960129740519,-214.88813922155688,-214.28026546906187,-213.67239171656686,-213.06451796407185,-212.45664421157684,-211.84877045908183,-211.24089670658682,-210.6330229540918,-210.0251492015968,-209.4172754491018,-208.80940169660678,-208.20152794411177,-207.59365419161676,-206.98578043912175,-206.37790668662674,-205.77003293413173,-205.16215918163672,-204.55428542914171,-203.9464116766467,-203.3385379241517,-202.73066417165668,-202.12279041916167,-201.51491666666666,-200.90704291417165,-200.29916916167664,-199.69129540918163,-199.08342165668662,-198.47554790419161,-197.8676741516966,-197.2598003992016,-196.65192664670658,-196.04405289421157,-195.43617914171656,-194.82830538922155,-194.22043163672654,-193.61255788423153,-193.00468413173652,-192.39681037924151,-191.7889366267465,-191.1810628742515,-190.57318912175649,-189.96531536926148,-189.35744161676647,-188.74956786427146,-188.14169411177645,-187.53382035928144,-186.92594660678643,-186.31807285429142,-185.7101991017964,-185.1023253493014,-184.49445159680639,-183.88657784431138,-183.27870409181637,-182.67083033932136,-182.06295658682635,-181.45508283433134,-180.84720908183633,-180.23933532934132,-179.6314615768463,-179.0235878243513,-178.41571407185629,-177.80784031936128,-177.19996656686627,-176.59209281437126,-175.98421906187625,-175.37634530938124,-174.76847155688623,-174.16059780439122,-173.5527240518962,-172.9448502994012,-172.3369765469062,-171.72910279441118,-171.12122904191617,-170.51335528942116,-169.90548153692615,-169.29760778443114,-168.68973403193613,-168.08186027944112,-167.4739865269461,-166.8661127744511,-166.2582390219561,-165.65036526946108,-165.04249151696607,-164.43461776447106,-163.82674401197605,-163.21887025948104,-162.61099650698603,-162.00312275449102,-161.395249001996,-160.787375249501,-160.179501497006,-159.57162774451098,-158.96375399201597,-158.35588023952096,-157.74800648702595,-157.14013273453094,-156.53225898203593,-155.92438522954092,-155.3165114770459,-154.7086377245509,-154.1007639720559,-153.49289021956088,-152.88501646706587,-152.27714271457086,-151.66926896207585,-151.06139520958084,-150.45352145708583,-149.84564770459082,-149.2377739520958,-148.6299001996008,-148.0220264471058,-147.41415269461078,-146.80627894211577,-146.19840518962076,-145.59053143712575,-144.98265768463074,-144.37478393213573,-143.76691017964072,-143.1590364271457,-142.5511626746507,-141.9432889221557,-141.33541516966068,-140.72754141716567,-140.11966766467066,-139.51179391217565,-138.90392015968064,-138.29604640718563,-137.68817265469062,-137.0802989021956,-136.4724251497006,-135.8645513972056,-135.25667764471058,-134.64880389221557,-134.04093013972056,-133.43305638722555,-132.82518263473054,-132.21730888223553,-131.60943512974052,-131.0015613772455,-130.3936876247505,-129.7858138722555,-129.17794011976048,-128.57006636726547,-127.96219261477046,-127.35431886227545,-126.74644510978044,-126.13857135728543,-125.53069760479042,-124.92282385229541,-124.3149500998004,-123.70707634730539,-123.09920259481038,-122.49132884231537,-121.88345508982036,-121.27558133732535,-120.66770758483034,-120.05983383233533,-119.45196007984032,-118.84408632734531,-118.2362125748503,-117.62833882235529,-117.02046506986028,-116.41259131736527,-115.80471756487026,-115.19684381237525,-114.58897005988024,-113.98109630738523,-113.37322255489022,-112.76534880239521,-112.1574750499002,-111.54960129740519,-110.94172754491018,-110.33385379241517,-109.72598003992016,-109.11810628742515,-108.51023253493014,-107.90235878243513,-107.29448502994012,-106.68661127744511,-106.0787375249501,-105.47086377245509,-104.86299001996008,-104.25511626746507,-103.64724251497006,-103.03936876247505,-102.43149500998004,-101.82362125748503,-101.21574750499002,-100.60787375249501,-100.0]} +{"expected":[0.0013547037113347895, -0.0000807956876221718, -0.0013032639667194465, 0.0009482068870398611, 0.0006745102501778074, -0.001398701036391238, 0.00025511140617038176, 0.001231346230584686, -0.001074968663345115, -0.0005181201119173311, 0.0014216185571673107, -0.00042702148347733025, -0.0011399129246253451, 0.0011863359506705917, 0.0003524234202626832, -0.0014229228410855826, 0.0005938738241727665, 0.0010301941145362998, -0.0012804704349695787, -0.00017987537870003565, 0.00140240582782545, -0.0007530705608912709, -0.0009037097221536861, 0.0013557809447670621, 0.0000030571377718707023, -0.0013601908085928882, 0.0009021080880637263, 0.000762248885617534, -0.001410949824205016, 0.00017536242255163458, 0.0012967334229852475, -0.0010386160079544026, -0.0006078450522015659, 0.001444955378254702, -0.00035266657261132317, -0.001212817615884715, 0.001160394389504229, 0.00044274714479037317, -0.0014570900164287215, 0.0005261316848492781, 0.0011095465725173002, -0.001265448760988005, -0.00026938720523775474, 0.0014469737831970728, -0.0006930686463979134, -0.0009883287258697965, 0.0013520222868440303, 0.0000903449744877041, -0.0014145630303817145, 0.0008508641090433622, 0.0008508590059251824, -0.0014186246169134592, 0.00009169008045177478, 0.001360154058132409, -0.0009970209502991277, -0.0006990955735160111, 0.0014640569422268608, -0.000273958739654358, -0.0012843816256291212, 0.0011291973258828055, 0.0005352323519175099, -0.0014874328448115865, 0.00045367341552932057, 0.0011882123093087482, -0.0012452437098238959, -0.00036166773545217716, 0.0014881945889650484, -0.0006280603358161669, -0.0010729327640675254, 0.0013432373436467375, 0.00018096991543062484, -0.0014661245672588682, 0.0007944018925443293, 0.0009401330203411319, -0.001421513550163131, 0.0000041606813552708405, 0.0014213516852222207, -0.0009500785172057222, -0.0007916850261117803, 0.0014786934100407651, -0.00019093129845403745, -0.0013543525432042052, 0.001092609443960716, 0.0006297167164952489, -0.001513707349843874, 0.00037649851659016454, 0.0012659473512370428, -0.0012196917338999505, -0.00045658196359657543, 0.0015258142480099389, -0.0005580110665201201, -0.0011572905916696521, 0.0013292369541028804, 0.0002748268245898326, -0.0015146157294215219, 0.0007326531501917343, 0.0010298565237693276, -0.001419404935307132, -0.0000871525655820983, 0.0014800653889474754, -0.0008976876191457946, -0.0008854197031583646, 0.0014886340709551725, -0.00010362400829849387, -0.0014224727585456364, 0.0010504983554987801, 0.0007260307657468327, -0.0015356676678149066, 0.00029461234075870053, 0.0013425019101924835, -0.0011886312069928466, -0.0005539877994904816, 0.0015595759135523688, -0.0004828914172044976, -0.0012411646668722455, 0.0013098328436288525, 0.000371803696788109, -0.001559773088862285, 0.0006655539214355818, 0.001119808474950421, -0.0014120869290345202, -0.0001821699444987325, 0.0015360297201346303, -0.0008397505962122639, -0.0009800990722710569, 0.0014936470347427858, -0.000012082633562118818, -0.0014884794421914723, 0.001002734138631755, 0.0008239981660159816, -0.0015530657694749028, 0.00020802561615795354, 0.0014176204183044931, -0.0011519019622020293, -0.0006537364115868861, 0.0015892196477864141, -0.0004026765981064286, -0.001324311245373624, 0.0012848371684576459, 0.0004717820572621097, -0.001601329282305607, 0.0005930440357804758, 0.001209761354630049, -0.001399347091928632, -0.0002808056880908206, 0.0015889745504669025, -0.0007761726582259575, -0.0010755160012907254, 0.001493498812968621, 0.00008364156528344845, -0.0015521044591574015, 0.0009491887628076483, 0.0009234360190147013, -0.0015656510730402656, 0.00011675388673043968, 0.0014910415080324963, -0.0011093447096899164, -0.0007556725955324662, 0.0016144820759964645, -0.0003173458452866967, -0.0014064804332868071, 0.0012540619351463428, 0.0005746374032370305, -0.001639012716054636, 0.0005150664666651442, 0.0012994812972224315, -0.0013809718196049208, -0.00038296849162193237, 0.0016386248377328408, -0.0007068612053224373, -0.001171456973799591, 0.0014879537724232842, 0.0001834924161350856, -0.0016130742041211917, 0.0008897353845127761, 0.0010241551652235626, -0.0015731699312458885, 0.00002081686083027429, 0.0015624979264808913, -0.0010608003173058305, -0.0008596351682608805, 0.0016350959190562714, -0.0002268817073594422, -0.0014874161892034815, 0.0012173182770880795, 0.0006802396901026667, -0.0016725471560730407, 0.0004315665630916138, 0.0013887281884543768, -0.0013567456272535812, -0.0004885620909910042, 0.001684700285726826, -0.0006317250129068736, -0.001267702289124706, 0.0014767734408503833, 0.0002874095032711035, -0.0016711093432376957, 0.0008242474956709999, 0.0011259604917798801, -0.001575364972266403, -0.00007976234293958172, 0.0016317163708284177, -0.0010061089341635691, -0.0009654573877758732, 0.00165078938420024, -0.0001312692109642777, -0.0015668562642780527, 0.001174415566580659, 0.0007884538653756159, -0.0017016511836868426, 0.0003424911425445918, 0.0014772557201856893, -0.001326450264944019, -0.0005974859112113801, 0.001726914880121767, -0.0005506732619279683, -0.0013640262407515064, 0.0014597156415146837, 0.00039532892858686535, -0.0017259244452978487, 0.0007525979032353455, 0.001228651241804266, -0.0015719742706548267, -0.00018495806565081184, 0.0016984172294524898, -0.0009451089335665544, -0.0010729673989072611, 0.001661285390290855, -0.00003049488862279803, -0.0016445320672256467, 0.0011251603370166614, 0.0008991404543089199, -0.001726037493699713, 0.00024778742560041067, 0.001564811392092487, -0.0012898636368187189, -0.0007096357929776761, 0.001764976278206041, -0.00046361439174522084, -0.001460197266031743, 0.001436533428745041, 0.000507184177627449, -0.001777227481767969, 0.000674657514398865, 0.00133202132166688, -0.00156273031995636, -0.0002947431093167844, 0.0017623142104823681, -0.000877635647114696, -0.0011819887055091163, 0.001666300599301433, 0.00007545435059294183, -0.001720168438740381, 0.0010693549848474252, 0.0010121562019183683, -0.001745412007306744, 0.00014740178873846635, 0.0016511364480105326, -0.0012467584920977039, -0.000824904806584821, 0.0017985850261659484, -0.0003704547484106175, -0.0015559780588197732, 0.0014069737911784298, 0.0006229071044094275, -0.0018247191713425997, 0.0005902938967499593, 0.0014358596021465707, -0.0015473587731087322, -0.00040908988827713117, 0.0018231138360421772, -0.0008035198562322182, -0.0012923406698205954, 0.0016655442201938262, 0.00018659253114650036, -0.001793483316878165, 0.0010067962149082539, 0.0011273547772512299, -0.0017594727667576981, 0.000041278307104481494, 0.0017359657324539587, -0.0011969008493819785, -0.0009431841645042748, 0.0018274335723979269, -0.0002710969955758644, -0.0016511256351399062, 0.0013707760827104684, 0.0007424290519804935, -0.00186809213982328, 0.0004993695764387398, 0.0015399502087727337, -0.0015255769098995785, -0.0005279717534373561, 0.0018805147761284148, -0.0007225860004102376, -0.0014038390399976253, 0.0016587165444956848, 0.0003029361304048649, -0.0018641872713166035, 0.0009372731851725981, 0.001244587547141574, -0.001767908571983687, -0.00007064294701466004, 0.001819027449976163, -0.0011400481077436108, -0.0010643642464006253, 0.001851205038888994, -0.00016543824836932645, -0.001745391340096121, 0.0013276701328527232, 0.0008656821293697544, -0.0019070298601475478, 0.0004017400295718484, 0.0016440727958303557, -0.001497091782212573, -0.0006513645170375858, 0.001934206990728874, -0.0006346500528024415, -0.001516296507251425, 0.001645507164331991, 0.0004245058420226607, -0.001931982879861685, 0.0008605652976278858, 0.0013637044283728588, -0.001770397311003485, -0.00018842789163571238, 0.0019000428065088439, -0.0010759467881396132, -0.001188335753540991, 0.0018695717046640732, -0.00005336788189944519, -0.0018385207818808228, 0.001277373977757365, 0.0009926006702249384, -0.0019412053299194317, 0.00029725131227624507, 0.0017480027975165621, -0.001461597977150028, -0.0007792482118121587, 0.001983870642094948, -0.0005395170029724589, -0.0016295232945085845, 0.0016255928129608088, 0.0005513286258134423, -0.001996563914913043, 0.0007764395702118473, 0.0014845548293781336, -0.0017666039254032608, -0.00031215075946379835, 0.001978725507397669, -0.0010043298361499748, -0.0013149910134956538, 0.0018821931452067371, 0.00006523504478393731, -0.0019302536757934293, 0.00121959114012798, 0.0011231229042780496, -0.00197027943440858, 0.0001857372625655396, 0.0018515116484738036, -0.0014187749246990387, -0.0009116091261999297, 0.0020291747306823236, -0.00043697787294943866, -0.0017433277792032718, 0.0015986347543833063, 0.0006834400964041006, -0.002057614300462889, 0.0006846475099158881, 0.0016069886953264476, -0.0017561779389238068, -0.00044189682196529775, 0.0020547810812882685, -0.000924913401277372, -0.0014442254610202551, 0.0018887139590349805, 0.00019050482219140212, -0.002020323577477254, 0.0011540073696987736, 0.0012571928801716147, -0.0019938989311213623, 0.00006701619155428091, 0.001954366964371749, -0.0013682836596523428, -0.0010484421671581607, 0.0020697753976417197, -0.00032680617547592265, -0.0018575171536168295, 0.0015642756315222446, 0.0008208873153475731, -0.002114806791173445, 0.0005849213883971327, 0.0017308576739632033, -0.0017387504603644185, -0.0005777655908631226, 0.0021279059919595707, -0.0008373929879722209, -0.0015759393274069119, 0.0018887609964433434, 0.00032259267171214843, -0.002108457479875395, 0.001080286734963944, 0.001394762687582223, -0.002011693976974357, -0.00005911303823240705, 0.0020563326712171428, -0.0013097629259196974, -0.00118975361469297, 0.0021053138232110837, -0.00020875370130148883, -0.0019718981272838277, 0.0015221356607010913, 0.0009637320672402408, -0.0021678013135686, 0.00047696979744544284, 0.001856016424031703, -0.0017139305505458158, -0.0007198745938893284, 0.0021977864911968837, -0.0007414388479506905, -0.001710039578692244, 0.0018819399847625016, 0.0004616709873948873, -0.0021943752423985398, 0.0009980669299919115, 0.0015357950386404534, -0.0020232750997985173, -0.00019287567511988858, 0.002157169069536608, -0.0012428244836759758, -0.0013355643483811204, 0.002135413633009919, -0.00008254549414108325, -0.002086277677373812, 0.001471808032235511, 0.0011120547207021769, -0.0022162428945968872, 0.00036047233086660476, 0.0019823240938429947, -0.0016813008154832301, -0.0008683638461668274, 0.0022640971542257967, -0.0006366904504157665, -0.0018464421536346634, 0.0018678314178941348, 0.0006079383796059332, -0.0022777888130631504, 0.0009069536255053677, 0.0016802662841747047, -0.0020282294910227887, -0.0003345266414862465, 0.0022566328163104625, -0.0011670474441282275, -0.0014859136469817132, 0.0021596777018512473, 0.000052126164563939965, -0.0022004638547518025, 0.0014128533408522363, 0.0012659588013796477, -0.002259759083718625, 0.00023507319950256223, 0.0021096460050277683, -0.0016404120522097252, -0.001023401170443738, 0.0023264990242386242, -0.0005227498240867952, -0.0019850745659288306, 0.001845985543403536, 0.0007616256991976205, -0.002358401194327346, 0.0008065136485334798, 0.0018281699604799845, -0.0020261164640949622, -0.0004843572008288365, 0.0023544768032919714, -0.0010819714102674675, -0.0016408636893333395, 0.0021776842155512956, 0.00019560898640798272, -0.0023142666557928993, 0.001344792822667871, 0.0014255764383847252, -0.0022979567497804936, 0.00010037353418774666, 0.002237855586182944, -0.0015907767271142368, -0.0011851885608450449, 0.0023846372729855784, -0.000399173509234325, -0.0021258789528945453, 0.0018159162354149194, 0.0009230032695449639, -0.0024359050902366514, 0.0006962667161435547, 0.001979520988699499, -0.0020164618809029073, -0.0006427029872791327, 0.002450449904790678, -0.000987088141197953, -0.001800504920237381, 0.002188981813041323, 0.0003482994098797584, -0.0024274989730837166, 0.0012671001137905078, 0.0015910748905164122, -0.0023304181012463888, -0.000044077936768902254, 0.0023668366138935256, -0.0015318610054256782, -0.001353969839436061, 0.0024381382586629034, -0.00026546278450737025, -0.0022688156762295845, 0.0017770934822175044, 0.001092389617953013, -0.0025099811551988287, 0.0005756753713361169, 0.0021343606837075416, -0.0019987512926954686, -0.0008099537296421507, 0.0025442965606447443, -0.0008818313773366211, -0.001964962491939191, 0.0021930835805900606, 0.0005106532072056255, -0.0025399776422338474, 0.0011791911639856172, 0.0017626644181687673, -0.0023566957350428758, -0.00019879623938598944, 0.0024964858354924735, -0.001463074969254794, -0.001530039927233223, 0.002486605828160687, -0.00012105173600676296, -0.002413867611433986, 0.0017289341386817713, 0.0012701620832085382, -0.002580295741700469, 0.0004441326661140349, 0.0022927627756755874, -0.001972421467695404, -0.0009865650998982871, 0.0026357561503106623, -0.0007655643567508414, -0.002134404054368892, 0.002189459602589641, 0.0006831984439253481, -0.002651524607416087, 0.0010804118298356992, 0.0019406078462820622, -0.002376306461372235, -0.0003643740597202241, 0.0026267160704976575, -0.0013837605529496157, -0.0017137561482245644, 0.0025296166649513016, 0.000034707394495985634, -0.0025610453040654834, 0.0016707904878264113, 0.0014567697904261782, -0.0026464980133760834, 0.0003009469983920406, 0.0024548407096760707, -0.0019368498777891272, -0.001173073247657159, 0.0027245621007780264, -0.0006375644088933338, -0.0023090492514388186, 0.0021775276826247157, 0.0008665514188882714, -0.0027619682355313354, 0.000970022524825429, 0.0021252322709704383, -0.0023887235736716667, -0.0005414988913267221, 0.002757459918124462, -0.0012931765775929733, -0.0019055521159241642, 0.0025667144219387096, 0.00020256232181570192, -0.0027103932272024775, 0.0016019360127128843, 0.0016527496392927396, -0.0027082162479200797, 0.000145323321770831, 0.0026207565729643874, -0.0018913415811198165, -0.0013701127606770697, 0.002810440653028644, -0.0004970038162400278, -0.0024891813951397625, 0.0021566417250689263, 0.001061436413811674, -0.0028711448187372325, 0.0008471791034789813, 0.0023169435085278484, -0.002393367126251661, -0.0007309743348312319, 0.0028886742397965016, -0.0011904800659197834, -0.002105954930892532, 0.0025974022938652177, 0.00038338327120382367, -0.0028619974513478114, 0.00152154758373791, 0.0018587461639833708, -0.002765053096824816, -0.00002366031001679429, 0.002790732115172501, -0.0018351127513965846, -0.001578439036768815, 0.0028931091869769695, -0.00034292586533190184, -0.002675161946364342, 0.0021260770975594003, 0.0012687103586074481, -0.0029789003185666904, 0.0007109088807827979, 0.002516244086856667, -0.0023895916350291377, -0.0009337467671136857, 0.003020345642812604, -0.0010747027418020788, -0.0023156066647885315, 0.002621133566636676, 0.000578191288854967, -0.0030159951442838167, 0.0014286829949348705, 0.0020755364168775236, -0.0028165794891525583, -0.00020708225886436032, 0.0029650624868568366, -0.001767269846440751, -0.001798956392851174, 0.0029722739702945553, -0.0001742146347053001, -0.0028674486500515025, 0.0020850120581596514, 0.0014893939046305106, -0.0030850924235387156, 0.0005600803033799138, 0.0027237558600478485, -0.0023766704113478677, -0.0011509390262720578, 0.0031524972711655073, -0.000944721231149214, -0.002535291452063555, 0.0026372995168084503, 0.0007881940917085772, -0.0031725864671218675, 0.001322252402236547, 0.0023040614402268177, -0.002862326754451317, -0.00040621477392256184, 0.00314413354684658, -0.0016867830453422348, -0.002032753715756088, 0.0030476271477672167, 0.000010443459467447214, -0.003066618480062424, 0.002032503997466293, 0.0017247109421280908, -0.0031895930183452807, 0.0003933642458398518, 0.002940248723286901, -0.002353775448358615, -0.001383893364972016, 0.003285197322313439, -0.0007992189323926111, -0.0027659699999084534, 0.002645213801524426, 0.0010148319025038792, -0.003332049643745805, 0.0012009816759006562, 0.002545466475403285, -0.0029017763803053636, -0.0006225720274055461, 0.003328443908914344, -0.0015924520660502677, -0.0022811501417379643, 0.003118842718040162, 0.00021260909091546715, -0.003273396988673603, 0.0019674587690340314, 0.0019761393762922036, -0.0032922911998881786, 0.00020918412732348792, 0.0031666774730095683, -0.0023199513626289883, -0.001634226794577804, 0.003418569870328521, -0.0006366367365831912, -0.0030088240303862692, 0.0026440921439659336, 0.0012598366706163262, -0.003494760284275169, 0.001063364899867917, 0.0028011529033121828, -0.002934346589360426, -0.0008579723517619172, 0.0035186333604454337, -0.0014828617267755452, -0.002545754238746632, 0.0031855711431956887, 0.00043415424397465, -0.003488696292234716, 0.001888590689422907, 0.0022454771055622157, -0.0033930970290241267, 0.000005650913192499937, 0.0034042296826838755, -0.0022740812867014584, -0.0019039032092643656, 0.0035528088109410714, -0.0004551086273186753, -0.003265314194853116, 0.002633025629187354, 0.0015253094743248815, -0.0036612164864952214, 0.0009076021097281176, 0.0030728461454490254, -0.002959374582048727, -0.0011146198246699613, 0.0037155199635688805, -0.0013563235147129459, -0.0028285416161358966, 0.003247432086787555, 0.0006773466507474863, -0.0037136648619296186, 0.0017943697683721394, 0.0025349288117075606, -0.003491946285305544, -0.00021952260507919025, 0.0036543886845817595, -0.002214841709427901, -0.002195328555105364, 0.003688196091642597, -0.00025237648509934, -0.0035372565233594373, 0.002610945196425534, 0.001813822974066581, -0.0038320718978705035, 0.0007315166614986601, 0.003362685595945867, -0.0029760927854201014, -0.0013952126006072886, 0.003920149160636111, -0.0012107977810680507, -0.003131958056029333, 0.003304004550686577, 0.0009449622704642685, -0.003949753693213043, 0.0016829511968560731, 0.002847221672715811, -0.003588806608730732, -0.0004691363725577534, 0.003919017583745264, -0.0021406419055429848, -0.0025114781376802003, 0.0038251259134401486, -0.000025675843658351994, -0.0038269247725933784, 0.0025765738099458087, 0.002128558926620813, -0.00400817991767983, 0.0005324440447496531, 0.0036733454489608027, -0.002983596678450504, -0.0017030888132176184, 0.004133859743939744, -0.0010437886748349008, -0.0034590585677355093, 0.0033548133355710214, 0.0012404373066203006, -0.004198805573354927, 0.0015520797741002954, 0.003185761939967464, -0.0036836855895401683, -0.0007466584551357202, 0.004200473047897744, -0.002049541510873765, -0.0028560695126704223, 0.003964137394679802, 0.00022841962692416896, -0.004137189583835514, 0.002528361083744647, 0.0024734956235665704, -0.004190653758641417, 0.0003070799592868503, 0.004008199614485443, -0.002980800567077726, -0.0020424261917921347, 0.004358373937524645, -0.00085220002642136, -0.003813697915434379, 0.003399310208441568, 0.0015680769840600635, -0.004463177515213355, 0.0013989582835384846, 0.003554850314085739, -0.0037766416410359694, -0.0010564392749878415, 0.004501762036534591, -0.001939136520816675, -0.003233801245768079, 0.004105959449068848, 0.000514213397770696, -0.0044717109562876145, 0.002464392436606633, 0.0028536677886692725, -0.004380949519793316, 0.00005126914533958198, 0.004371550776810562, -0.0029663757776967037, -0.0024185199873410098, 0.004595922632856326, -0.0006321341765756877, -0.004200796374251804, 0.003436847291328768, 0.0019333474571114617, -0.0047459117758271606, 0.00122006294628007, 0.003959983656586422, -0.00386779892400547, -0.0014040124470626539, 0.004826761733952957, -0.0018063987061389085, -0.0036506888528957575, 0.004251573658933658, 0.0008371897247658959, -0.004835209581830085, 0.0023822604782920303, 0.0032755339015726045, -0.004580983361802097, -0.00024029382919008106, 0.004768954803937296, -0.002938662628690503, -0.0028381775827842075, 0.004849423004116559, -0.00037860558334130637, -0.0046267178887502425, 0.003466638752221918, 0.00234329222540852, -0.0050509796547719985, 0.001010879404146449, 0.004408286376083229, -0.003957368294960692, -0.0017965260083968458, 0.0051805346738834435, -0.0016474446906578038, -0.004114547487767546, 0.004402304276763221, 0.0012044510685232154, -0.005233857607857723, 0.002278879031424871, 0.0037475066359412444, -0.004793300436349271, -0.0005744978182695184, 0.005207690370608879, -0.002895542315413263, -0.003310291279025752, 0.005122736101896184, -0.00008512393347279112, -0.0050998204018382915, 0.0034877044441904955, 0.0028071397807011207, -0.005383637093464925, 0.0007655162817273357, 0.004909141618215741, -0.004045677424447709, -0.0022433751194696635, 0.005569790989575047, -0.0014571959950693695, -0.004635702115673863, 0.0045599501966769665, 0.0016253634931936824, -0.005675855138867154, 0.0021502076378048596, 0.004280737739177769, -0.005021324495129338, -0.0009604580617864856, 0.005697455868660635, -0.0028342457756066275, -0.0038466908083074564, 0.0054210499954930646, 0.0002569282692796746, -0.005631277434697094, 0.0034987848582339574, 0.003337213470713887, -0.005750956990830993, 0.00047612461878117763, 0.005475139369483285, -0.004133215252738841, -0.0027571553486116073, 0.006003584843767999, -0.0012288649379611043, -0.005228061019195341, 0.0047269837991979514, 0.0021125353435652605, -0.006172304493934396, 0.001990832002869692, 0.00489031220956995, -0.0052697371801788085, -0.001410497669310586, 0.006251433354155008, -0.002751060266739374, -0.004463449147865219, 0.005751466336222394, 0.0006592523885540782, -0.0062363410064963, 0.0034982089335954467, 0.003950334848851749, -0.006162650123669278, 0.00013199906500908725, 0.006123544209342765, -0.004220699554410047, -0.00335514356573874, 0.0064943963990856, -0.0009531526966268518, -0.005910789848248992, 0.004906860016925549, 0.002683348909639425, -0.006738578726857232, 0.001793304214277542, 0.0055971246051854115, -0.0055450732369569395, -0.001941695551176384, 0.006887966943517756, -0.0026408636819176944, -0.005182950281506858, 0.0061239287785205595, 0.0011381546125841119, -0.006936349874034019, 0.0034836813230158105, 0.0046700638878554674, -0.0066323755725483545, -0.00028186307557073325, 0.0068786485812995565, -0.004309183074290942, -0.0040616818074014445, 0.007059873870387442, -0.0006169522533266929, -0.006711018639932747, 0.005104514344799083, 0.0033624475453091995, -0.0073965445596385114, 0.0015470654647430713, 0.0064309400583428804, -0.005856690308896832, -0.002578422795003161, 0.007633313986809691, -0.002496355992781392, -0.006037293627906552, 0.006552750954942039, 0.0017170617784941012, -0.007762052474095189, 0.0034519256225490572, 0.005530422653822114, -0.007179919026460862, -0.0007871690515931938, 0.007775704786464712, -0.004400226705933887, -0.004912179217463582, 0.007725758930150378, -0.00020115879683434935, -0.007668410900047257, 0.00532720005471169, 0.004185954333502705, -0.008178334646508224, 0.001236606881218663, 0.00743561554320637, -0.006218420815771098, -0.0033566915953508808, 0.008526364664715425, -0.0023067302785138803, -0.007074165127271343, 0.007059250483814346, 0.0024308841484176635, -0.008759371974002388, 0.003398055655281611, 0.0065823908540602605, -0.007834993073048623, -0.001416555091290831, 0.00886782717905587, -0.0044961948661743955, -0.005960176981577017, 0.008531053351332635, 0.00032322167973112447, -0.008843282866721848, 0.005585968886779005, 0.005209013447131452, -0.00913309493737156, 0.0008381560025935678, 0.008678497434581016, -0.00665154020315913, -0.00433203228848895, 0.009627195972428683, -0.0020552409383396146, -0.008367546697812643, 0.0076765515374688734, 0.003334027568792741, -0.01],"x":[-709.0895,-708.481626247505,-707.87375249501,-707.2658787425149,-706.65800499002,-706.050131237525,-705.4422574850299,-704.8343837325349,-704.22650998004,-703.6186362275449,-703.0107624750499,-702.4028887225548,-701.7950149700599,-701.1871412175649,-700.5792674650698,-699.9713937125748,-699.3635199600799,-698.7556462075848,-698.1477724550898,-697.5398987025948,-696.9320249500998,-696.3241511976048,-695.7162774451098,-695.1084036926147,-694.5005299401198,-693.8926561876248,-693.2847824351297,-692.6769086826347,-692.0690349301398,-691.4611611776447,-690.8532874251497,-690.2454136726546,-689.6375399201597,-689.0296661676647,-688.4217924151696,-687.8139186626746,-687.2060449101797,-686.5981711576846,-685.9902974051896,-685.3824236526946,-684.7745499001996,-684.1666761477046,-683.5588023952096,-682.9509286427145,-682.3430548902196,-681.7351811377246,-681.1273073852295,-680.5194336327345,-679.9115598802396,-679.3036861277445,-678.6958123752495,-678.0879386227545,-677.4800648702595,-676.8721911177645,-676.2643173652694,-675.6564436127744,-675.0485698602795,-674.4406961077844,-673.8328223552894,-673.2249486027944,-672.6170748502994,-672.0092010978044,-671.4013273453094,-670.7934535928143,-670.1855798403194,-669.5777060878244,-668.9698323353293,-668.3619585828343,-667.7540848303394,-667.1462110778443,-666.5383373253493,-665.9304635728543,-665.3225898203593,-664.7147160678643,-664.1068423153692,-663.4989685628742,-662.8910948103793,-662.2832210578842,-661.6753473053892,-661.0674735528942,-660.4595998003992,-659.8517260479042,-659.2438522954092,-658.6359785429141,-658.0281047904192,-657.4202310379242,-656.8123572854291,-656.2044835329341,-655.5966097804392,-654.9887360279441,-654.3808622754491,-653.772988522954,-653.1651147704591,-652.5572410179641,-651.949367265469,-651.341493512974,-650.7336197604791,-650.125746007984,-649.517872255489,-648.909998502994,-648.302124750499,-647.694250998004,-647.086377245509,-646.4785034930139,-645.870629740519,-645.262755988024,-644.6548822355289,-644.0470084830339,-643.439134730539,-642.8312609780439,-642.2233872255489,-641.6155134730539,-641.0076397205589,-640.3997659680639,-639.7918922155689,-639.1840184630738,-638.5761447105789,-637.9682709580838,-637.3603972055888,-636.7525234530938,-636.1446497005988,-635.5367759481038,-634.9289021956088,-634.3210284431137,-633.7131546906188,-633.1052809381238,-632.4974071856287,-631.8895334331337,-631.2816596806388,-630.6737859281437,-630.0659121756487,-629.4580384231537,-628.8501646706587,-628.2422909181637,-627.6344171656687,-627.0265434131736,-626.4186696606787,-625.8107959081836,-625.2029221556886,-624.5950484031936,-623.9871746506986,-623.3793008982036,-622.7714271457086,-622.1635533932135,-621.5556796407186,-620.9478058882236,-620.3399321357285,-619.7320583832335,-619.1241846307386,-618.5163108782435,-617.9084371257485,-617.3005633732535,-616.6926896207585,-616.0848158682635,-615.4769421157685,-614.8690683632734,-614.2611946107785,-613.6533208582835,-613.0454471057884,-612.4375733532934,-611.8296996007984,-611.2218258483034,-610.6139520958084,-610.0060783433133,-609.3982045908184,-608.7903308383234,-608.1824570858283,-607.5745833333333,-606.9667095808384,-606.3588358283433,-605.7509620758483,-605.1430883233533,-604.5352145708583,-603.9273408183633,-603.3194670658683,-602.7115933133732,-602.1037195608783,-601.4958458083833,-600.8879720558882,-600.2800983033932,-599.6722245508982,-599.0643507984032,-598.4564770459082,-597.8486032934131,-597.2407295409182,-596.6328557884232,-596.0249820359281,-595.4171082834331,-594.8092345309382,-594.2013607784431,-593.5934870259481,-592.985613273453,-592.3777395209581,-591.7698657684631,-591.161992015968,-590.554118263473,-589.9462445109781,-589.338370758483,-588.730497005988,-588.122623253493,-587.514749500998,-586.906875748503,-586.299001996008,-585.6911282435129,-585.083254491018,-584.475380738523,-583.8675069860279,-583.2596332335329,-582.651759481038,-582.0438857285429,-581.4360119760479,-580.8281382235529,-580.2202644710579,-579.6123907185629,-579.0045169660679,-578.3966432135728,-577.7887694610779,-577.1808957085829,-576.5730219560878,-575.9651482035928,-575.3572744510979,-574.7494006986028,-574.1415269461078,-573.5336531936127,-572.9257794411178,-572.3179056886228,-571.7100319361277,-571.1021581836327,-570.4942844311378,-569.8864106786427,-569.2785369261477,-568.6706631736527,-568.0627894211577,-567.4549156686627,-566.8470419161677,-566.2391681636726,-565.6312944111777,-565.0234206586827,-564.4155469061876,-563.8076731536926,-563.1997994011977,-562.5919256487026,-561.9840518962076,-561.3761781437125,-560.7683043912176,-560.1604306387226,-559.5525568862275,-558.9446831337325,-558.3368093812376,-557.7289356287425,-557.1210618762475,-556.5131881237525,-555.9053143712575,-555.2974406187625,-554.6895668662675,-554.0816931137724,-553.4738193612775,-552.8659456087825,-552.2580718562874,-551.6501981037924,-551.0423243512975,-550.4344505988024,-549.8265768463074,-549.2187030938123,-548.6108293413174,-548.0029555888224,-547.3950818363273,-546.7872080838323,-546.1793343313374,-545.5714605788423,-544.9635868263473,-544.3557130738523,-543.7478393213573,-543.1399655688623,-542.5320918163673,-541.9242180638722,-541.3163443113773,-540.7084705588823,-540.1005968063872,-539.4927230538922,-538.8848493013973,-538.2769755489022,-537.6691017964072,-537.0612280439121,-536.4533542914172,-535.8454805389222,-535.2376067864271,-534.6297330339321,-534.0218592814372,-533.4139855289421,-532.8061117764471,-532.1982380239521,-531.5903642714571,-530.9824905189621,-530.374616766467,-529.766743013972,-529.1588692614771,-528.550995508982,-527.943121756487,-527.335248003992,-526.727374251497,-526.119500499002,-525.511626746507,-524.9037529940119,-524.295879241517,-523.688005489022,-523.0801317365269,-522.4722579840319,-521.864384231537,-521.2565104790419,-520.6486367265469,-520.0407629740519,-519.4328892215569,-518.8250154690619,-518.2171417165669,-517.6092679640718,-517.0013942115769,-516.3935204590819,-515.7856467065868,-515.1777729540918,-514.5698992015969,-513.9620254491018,-513.3541516966068,-512.7462779441117,-512.1384041916168,-511.5305304391218,-510.92265668662674,-510.31478293413176,-509.7069091816367,-509.09903542914174,-508.4911616766467,-507.8832879241517,-507.2754141716567,-506.6675404191617,-506.05966666666666,-505.4517929141717,-504.84391916167664,-504.23604540918166,-503.6281716566866,-503.02029790419164,-502.4124241516966,-501.8045503992016,-501.1966766467066,-500.5888028942116,-499.98092914171656,-499.3730553892216,-498.76518163672654,-498.15730788423156,-497.5494341317365,-496.94156037924154,-496.3336866267465,-495.7258128742515,-495.1179391217565,-494.5100653692615,-493.90219161676646,-493.2943178642715,-492.68644411177644,-492.07857035928146,-491.4706966067864,-490.86282285429144,-490.2549491017964,-489.6470753493014,-489.0392015968064,-488.4313278443114,-487.82345409181636,-487.2155803393214,-486.60770658682634,-485.99983283433136,-485.3919590818363,-484.78408532934134,-484.1762115768463,-483.5683378243513,-482.9604640718563,-482.3525903193613,-481.74471656686626,-481.1368428143713,-480.52896906187624,-479.92109530938126,-479.3132215568862,-478.70534780439124,-478.0974740518962,-477.4896002994012,-476.8817265469062,-476.2738527944112,-475.66597904191616,-475.0581052894212,-474.45023153692614,-473.84235778443116,-473.2344840319361,-472.62661027944114,-472.0187365269461,-471.4108627744511,-470.8029890219561,-470.1951152694611,-469.58724151696606,-468.9793677644711,-468.37149401197604,-467.76362025948106,-467.155746506986,-466.54787275449104,-465.939999001996,-465.332125249501,-464.724251497006,-464.116377744511,-463.50850399201596,-462.900630239521,-462.29275648702594,-461.68488273453096,-461.0770089820359,-460.46913522954094,-459.8612614770459,-459.2533877245509,-458.6455139720559,-458.0376402195609,-457.42976646706586,-456.8218927145709,-456.21401896207584,-455.60614520958086,-454.9982714570858,-454.39039770459084,-453.7825239520958,-453.1746501996008,-452.5667764471058,-451.9589026946108,-451.35102894211576,-450.7431551896208,-450.13528143712574,-449.52740768463076,-448.9195339321357,-448.31166017964074,-447.7037864271457,-447.0959126746507,-446.4880389221557,-445.8801651696607,-445.27229141716566,-444.6644176646707,-444.05654391217564,-443.44867015968066,-442.8407964071856,-442.23292265469064,-441.6250489021956,-441.0171751497006,-440.4093013972056,-439.8014276447106,-439.19355389221556,-438.5856801397206,-437.97780638722554,-437.36993263473056,-436.7620588822355,-436.15418512974054,-435.5463113772455,-434.9384376247505,-434.3305638722555,-433.7226901197605,-433.11481636726546,-432.5069426147705,-431.89906886227544,-431.29119510978046,-430.6833213572854,-430.07544760479044,-429.4675738522954,-428.8597000998004,-428.2518263473054,-427.6439525948104,-427.03607884231536,-426.4282050898204,-425.82033133732534,-425.21245758483036,-424.6045838323353,-423.99671007984034,-423.3888363273453,-422.7809625748503,-422.1730888223553,-421.5652150698603,-420.95734131736526,-420.3494675648703,-419.74159381237524,-419.13372005988026,-418.5258463073852,-417.91797255489024,-417.3100988023952,-416.7022250499002,-416.0943512974052,-415.4864775449102,-414.87860379241516,-414.2707300399202,-413.66285628742514,-413.05498253493016,-412.4471087824351,-411.83923502994014,-411.2313612774451,-410.6234875249501,-410.0156137724551,-409.4077400199601,-408.79986626746506,-408.1919925149701,-407.58411876247504,-406.97624500998006,-406.368371257485,-405.76049750499004,-405.152623752495,-404.54475,-403.936876247505,-403.32900249501,-402.72112874251496,-402.11325499002,-401.50538123752494,-400.89750748502996,-400.2896337325349,-399.68175998003994,-399.0738862275449,-398.4660124750499,-397.8581387225549,-397.2502649700599,-396.64239121756486,-396.0345174650699,-395.42664371257484,-394.81876996007986,-394.2108962075848,-393.60302245508984,-392.9951487025948,-392.3872749500998,-391.7794011976048,-391.1715274451098,-390.56365369261476,-389.9557799401198,-389.34790618762474,-388.74003243512976,-388.1321586826347,-387.52428493013974,-386.9164111776447,-386.3085374251497,-385.7006636726547,-385.0927899201597,-384.48491616766466,-383.8770424151697,-383.26916866267464,-382.66129491017966,-382.0534211576846,-381.44554740518964,-380.8376736526946,-380.2297999001996,-379.6219261477046,-379.0140523952096,-378.40617864271456,-377.7983048902196,-377.19043113772454,-376.58255738522956,-375.9746836327345,-375.36680988023954,-374.7589361277445,-374.1510623752495,-373.5431886227545,-372.9353148702595,-372.32744111776447,-371.7195673652695,-371.11169361277445,-370.50381986027946,-369.8959461077844,-369.28807235528944,-368.6801986027944,-368.0723248502994,-367.4644510978044,-366.8565773453094,-366.24870359281437,-365.6408298403194,-365.03295608782435,-364.42508233532936,-363.8172085828343,-363.20933483033934,-362.6014610778443,-361.9935873253493,-361.3857135728543,-360.7778398203593,-360.16996606786427,-359.5620923153693,-358.95421856287425,-358.34634481037926,-357.7384710578842,-357.13059730538924,-356.5227235528942,-355.9148498003992,-355.3069760479042,-354.6991022954092,-354.09122854291417,-353.4833547904192,-352.87548103792415,-352.26760728542916,-351.6597335329341,-351.05185978043914,-350.4439860279441,-349.8361122754491,-349.2282385229541,-348.6203647704591,-348.01249101796407,-347.4046172654691,-346.79674351297405,-346.18886976047907,-345.580996007984,-344.97312225548905,-344.365248502994,-343.757374750499,-343.149500998004,-342.541627245509,-341.93375349301397,-341.325879740519,-340.71800598802395,-340.11013223552897,-339.5022584830339,-338.89438473053895,-338.2865109780439,-337.6786372255489,-337.0707634730539,-336.4628897205589,-335.85501596806387,-335.2471422155689,-334.63926846307385,-334.03139471057887,-333.4235209580838,-332.81564720558885,-332.2077734530938,-331.5998997005988,-330.9920259481038,-330.3841521956088,-329.77627844311377,-329.1684046906188,-328.56053093812375,-327.95265718562877,-327.3447834331337,-326.73690968063875,-326.1290359281437,-325.5211621756487,-324.9132884231537,-324.3054146706587,-323.69754091816367,-323.0896671656687,-322.48179341317365,-321.87391966067867,-321.2660459081836,-320.65817215568865,-320.0502984031936,-319.4424246506986,-318.8345508982036,-318.2266771457086,-317.61880339321357,-317.0109296407186,-316.40305588822355,-315.79518213572857,-315.1873083832335,-314.57943463073855,-313.9715608782435,-313.3636871257485,-312.7558133732535,-312.1479396207585,-311.54006586826347,-310.9321921157685,-310.32431836327345,-309.71644461077847,-309.10857085828343,-308.50069710578845,-307.8928233532934,-307.2849496007984,-306.6770758483034,-306.0692020958084,-305.46132834331337,-304.8534545908184,-304.24558083832335,-303.63770708582837,-303.02983333333333,-302.42195958083835,-301.8140858283433,-301.2062120758483,-300.5983383233533,-299.9904645708583,-299.38259081836327,-298.7747170658683,-298.16684331337325,-297.55896956087827,-296.95109580838323,-296.34322205588825,-295.7353483033932,-295.1274745508982,-294.5196007984032,-293.9117270459082,-293.30385329341317,-292.6959795409182,-292.08810578842315,-291.48023203592817,-290.87235828343313,-290.26448453093815,-289.6566107784431,-289.0487370259481,-288.4408632734531,-287.8329895209581,-287.22511576846307,-286.6172420159681,-286.00936826347305,-285.40149451097807,-284.79362075848303,-284.18574700598805,-283.577873253493,-282.96999950099803,-282.362125748503,-281.754251996008,-281.14637824351297,-280.538504491018,-279.93063073852295,-279.32275698602797,-278.71488323353293,-278.10700948103795,-277.4991357285429,-276.89126197604793,-276.2833882235529,-275.6755144710579,-275.06764071856287,-274.4597669660679,-273.85189321357285,-273.24401946107787,-272.63614570858283,-272.02827195608785,-271.4203982035928,-270.81252445109783,-270.2046506986028,-269.5967769461078,-268.98890319361277,-268.3810294411178,-267.77315568862275,-267.16528193612777,-266.55740818363273,-265.94953443113775,-265.3416606786427,-264.73378692614773,-264.1259131736527,-263.5180394211577,-262.91016566866267,-262.3022919161677,-261.69441816367265,-261.08654441117767,-260.47867065868263,-259.87079690618765,-259.2629231536926,-258.65504940119763,-258.0471756487026,-257.4393018962076,-256.83142814371257,-256.2235543912176,-255.61568063872255,-255.00780688622754,-254.39993313373253,-253.79205938123752,-253.1841856287425,-252.5763118762475,-251.9684381237525,-251.36056437125748,-250.75269061876247,-250.14481686626746,-249.53694311377245,-248.92906936127744,-248.32119560878243,-247.71332185628742,-247.1054481037924,-246.4975743512974,-245.8897005988024,-245.28182684630738,-244.67395309381237,-244.06607934131736,-243.45820558882235,-242.85033183632734,-242.24245808383233,-241.63458433133732,-241.0267105788423,-240.4188368263473,-239.8109630738523,-239.20308932135728,-238.59521556886227,-237.98734181636726,-237.37946806387225,-236.77159431137724,-236.16372055888223,-235.55584680638722,-234.9479730538922,-234.3400993013972,-233.7322255489022,-233.12435179640718,-232.51647804391217,-231.90860429141716,-231.30073053892215,-230.69285678642714,-230.08498303393213,-229.47710928143712,-228.8692355289421,-228.2613617764471,-227.6534880239521,-227.04561427145708,-226.43774051896207,-225.82986676646706,-225.22199301397205,-224.61411926147704,-224.00624550898203,-223.39837175648702,-222.790498003992,-222.182624251497,-221.574750499002,-220.96687674650698,-220.35900299401197,-219.75112924151696,-219.14325548902195,-218.53538173652694,-217.92750798403193,-217.31963423153692,-216.7117604790419,-216.1038867265469,-215.4960129740519,-214.88813922155688,-214.28026546906187,-213.67239171656686,-213.06451796407185,-212.45664421157684,-211.84877045908183,-211.24089670658682,-210.6330229540918,-210.0251492015968,-209.4172754491018,-208.80940169660678,-208.20152794411177,-207.59365419161676,-206.98578043912175,-206.37790668662674,-205.77003293413173,-205.16215918163672,-204.55428542914171,-203.9464116766467,-203.3385379241517,-202.73066417165668,-202.12279041916167,-201.51491666666666,-200.90704291417165,-200.29916916167664,-199.69129540918163,-199.08342165668662,-198.47554790419161,-197.8676741516966,-197.2598003992016,-196.65192664670658,-196.04405289421157,-195.43617914171656,-194.82830538922155,-194.22043163672654,-193.61255788423153,-193.00468413173652,-192.39681037924151,-191.7889366267465,-191.1810628742515,-190.57318912175649,-189.96531536926148,-189.35744161676647,-188.74956786427146,-188.14169411177645,-187.53382035928144,-186.92594660678643,-186.31807285429142,-185.7101991017964,-185.1023253493014,-184.49445159680639,-183.88657784431138,-183.27870409181637,-182.67083033932136,-182.06295658682635,-181.45508283433134,-180.84720908183633,-180.23933532934132,-179.6314615768463,-179.0235878243513,-178.41571407185629,-177.80784031936128,-177.19996656686627,-176.59209281437126,-175.98421906187625,-175.37634530938124,-174.76847155688623,-174.16059780439122,-173.5527240518962,-172.9448502994012,-172.3369765469062,-171.72910279441118,-171.12122904191617,-170.51335528942116,-169.90548153692615,-169.29760778443114,-168.68973403193613,-168.08186027944112,-167.4739865269461,-166.8661127744511,-166.2582390219561,-165.65036526946108,-165.04249151696607,-164.43461776447106,-163.82674401197605,-163.21887025948104,-162.61099650698603,-162.00312275449102,-161.395249001996,-160.787375249501,-160.179501497006,-159.57162774451098,-158.96375399201597,-158.35588023952096,-157.74800648702595,-157.14013273453094,-156.53225898203593,-155.92438522954092,-155.3165114770459,-154.7086377245509,-154.1007639720559,-153.49289021956088,-152.88501646706587,-152.27714271457086,-151.66926896207585,-151.06139520958084,-150.45352145708583,-149.84564770459082,-149.2377739520958,-148.6299001996008,-148.0220264471058,-147.41415269461078,-146.80627894211577,-146.19840518962076,-145.59053143712575,-144.98265768463074,-144.37478393213573,-143.76691017964072,-143.1590364271457,-142.5511626746507,-141.9432889221557,-141.33541516966068,-140.72754141716567,-140.11966766467066,-139.51179391217565,-138.90392015968064,-138.29604640718563,-137.68817265469062,-137.0802989021956,-136.4724251497006,-135.8645513972056,-135.25667764471058,-134.64880389221557,-134.04093013972056,-133.43305638722555,-132.82518263473054,-132.21730888223553,-131.60943512974052,-131.0015613772455,-130.3936876247505,-129.7858138722555,-129.17794011976048,-128.57006636726547,-127.96219261477046,-127.35431886227545,-126.74644510978044,-126.13857135728543,-125.53069760479042,-124.92282385229541,-124.3149500998004,-123.70707634730539,-123.09920259481038,-122.49132884231537,-121.88345508982036,-121.27558133732535,-120.66770758483034,-120.05983383233533,-119.45196007984032,-118.84408632734531,-118.2362125748503,-117.62833882235529,-117.02046506986028,-116.41259131736527,-115.80471756487026,-115.19684381237525,-114.58897005988024,-113.98109630738523,-113.37322255489022,-112.76534880239521,-112.1574750499002,-111.54960129740519,-110.94172754491018,-110.33385379241517,-109.72598003992016,-109.11810628742515,-108.51023253493014,-107.90235878243513,-107.29448502994012,-106.68661127744511,-106.0787375249501,-105.47086377245509,-104.86299001996008,-104.25511626746507,-103.64724251497006,-103.03936876247505,-102.43149500998004,-101.82362125748503,-101.21574750499002,-100.60787375249501,-100.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json index cd64c4e10d31..a54c1d0a615b 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json @@ -1 +1 @@ -{"expected":[0.0,0.0029792754636741255,-0.001993216148375205,-0.0016100602087220858,0.0030467579370803085,-0.0004475613063522405,-0.0027114687669971536,0.002256697938508038,0.001169853835441462,-0.003013484803006078,0.0008602463935379906,0.0024033641352912273,-0.0024589469853749492,-0.0007305071732594921,0.0029202677242617043,-0.001232245763235776,-0.0020630506662764106,0.002599568947293905,0.0003002891378391285,-0.0027721937386625027,0.0015587432547885677,0.0016987561953284002,-0.002679248190034568,0.00011310712621759552,0.0025750406012091088,-0.0018359517957342686,-0.0013187136042428897,0.002699694697245789,-0.0005026624998417884,-0.002335158512118168,0.0020611329402736495,0.0009310297828684405,-0.0026635765355469626,0.0008621177993408531,0.002059345668370648,-0.0022325999165822385,-0.0005435594627216438,0.0025744390874599685,-0.0011860459515960276,-0.0017547197778943963,0.0023497042374687476,0.00016378601310587667,-0.0024366125098491094,0.0014699093332958442,0.0014285877261119263,-0.002412806247820519,0.00020128887099304346,0.0022551090841772714,-0.0017101014708617093,-0.0010883155933760192,0.0024232302831901963,-0.0005452448511579276,-0.0020355122959738597,0.0019039726009748776,0.0007412011897165366,-0.002383205393235794,0.0008623304776511447,0.0017838596130469971,-0.0020498388957545513,-0.00039435120183611106,0.002295792838033255,-0.0011475372916105646,-0.0015065210241819245,0.0021469754570506185,5.456493851913547e-5,-0.002164801791239546,0.0013966594764518775,0.0012100754518941876,-0.002195593476313569,0.00027177348279554736,0.0019946948787267463,-0.0016063383102249656,-0.0009011871643554247,0.002196802235458256,-0.0005787928403763429,-0.0017904853420974782,0.001774090952121163,0.0005864842835976115,-0.002152556885593532,0.0008612209382024031,0.0015576277414072839,-0.0018983233815596807,-0.00027244142085622487,0.0020655931802733515,-0.0011144579225742593,-0.0013019041990135155,0.0019783275922151825,-3.4731632639015546e-5,-0.0019393505542376792,0.0013346357917388668,0.0010293082359147322,-0.0020142634209648707,0.0003291933674448311,0.001777885124108405,-0.0015186633648187752,-0.0007459282630555287,0.0020071256581682658,-0.0006055645453446646,-0.0015857743413633374,0.0016642562457213222,0.0004578327633195453,-0.0019586973363281885,0.000859011285775657,0.0013680151478842144,-0.0017699515915522625,-0.00017095913643722915,0.0018714903247300998,-0.0010853160360165934,-0.0011299175688353593,0.0018351077683137556,-0.0001089919194565455,-0.0017486745642397857,0.0012809354482263007,0.0008769957255988133,-0.00185988924435072,0.0003766547470212589,0.0015939974556541938,-0.0014430444369953202,-0.0006148582626531987,0.0018452373293098006,-0.0006270882079658821,-0.0014116950639802772,0.0015695659510999071,0.0003491001569860977,-0.0017928276087309078,0.0008558549059122084,0.0012063969174792842,-0.0016591862577157476,-8.519781787662621e-5,0.0017050151475738223,-0.0010590889692026516,-0.0009830262625969562,0.0017113558015323948,-0.0001715907096898753,-0.0015847687361691017,0.0012335514371201778,0.0007466976829867576,-0.0017262759601549657,0.0004163187508799807,0.0014355956259224647,-0.0013766725350074995,-0.0005026140023646952,0.0017048722661948516,-0.0006444356840285458,-0.0012614583467721425,0.0014865803750104506,0.0002559643672092497,-0.0016487549010891795,0.000851861949221547,0.0010666853116508613,-0.0015621158748773047,-1.1825347282561193e-5,0.001560167481826749,-0.001035053233220367,-0.0008558769933991929,0.0016028339426194809,-0.00022493319883552944,-0.0014419253556700424,0.0011910529016600497,0.0006338095057089341,-0.0016089912251755897,0.00044973586739035734,0.0012973447863833159,-0.001317531983073542,-0.0004053374313823742,0.0015815209599554512,-0.0006583815857509619,-0.0011301645556565502,0.0014128162518540685,0.00017529771875798622,-0.0015219956949537859,0.0008471143188675415,0.0009444616131660376,-0.0014759002041407948,5.1583588511459594e-5,0.0014325788520096526,-0.0010126834985609416,-0.0007445624864418464,0.0015064479671521632,-0.00027078011051604226,-0.0013159662951294654,0.0011523932806956376,0.0005349522064454682,-0.0015047814241174488,0.0004780478181602545,0.0011753192284204989,-0.0012641399606687952,-0.00032018251615178225,0.001471856069244756,-0.0006695002314206082,-0.0010141898834340082,0.0013464371116390563,0.00010478110776001028,-0.0014092253259174019,0.0008416748798673108,0.000836441561475848,-0.0013984282480241444,0.00010683641967421802,0.0013189942626506837,-0.0009915899648546022,-0.0006461646711721043,0.0014198870545036916,-0.00031045027490115065,-0.0012037638217580159,0.0011167903677009976,0.0004475904443447207,-0.00141120545362812,0.0005021143672876432,0.001066566832106961,-0.0012153823655971679,-0.0002450040237373813,0.0013733700088620873,-0.0006782270228454514,-0.0009107972072172862,0.0012860566426252343,4.265859462657374e-5,-0.001307927370417672,0.0008355933308266153,0.000740133831226824,-0.0013280994127812483,0.0001553078202529342,0.0012169396647977693,-0.0009714781101762534,-0.0005584607064549555,0.0013413917008813243,-0.0003449513652802219,-0.0011029309021845033,0.0010836486830044251,0.00036978497654394023,-0.001326397051389375,0.0005225957287020922,0.0009688256257126555,-0.0011704068520604972,-0.00017815444816831008,0.0012841381503688836,-0.0006848985992559372,-0.0008178811507843829,0.001230609696813746,-1.2423787619437931e-5,-0.0012161630479980412,0.0008289100675411926,0.0006536148389591469,-0.001263679023919916,0.00019806208530200685,0.0011245018547612787,-0.0009521220130784322,-0.0004797279181821006,0.001269599528333046,-0.00037506685752077294,-0.0010116149502696493,0.0010525077092868893,0.00030002739837380727,-0.0012489059369248012,0.0005400077090381635,0.0008803338868186255,-0.0011285510812608377,-0.00011834763844172199,0.0012026596131698981,-0.0006897798620140684,-0.000733796287886776,0.0011792652611956813,-6.152690207682556e-5,-0.0011324152954415695,0.0008216587952091083,0.0005753761329460774,-0.0012042002994845816,0.00023593624537371173,0.001040178819226027,-0.0009333461904117788,-0.00040861088286385554,0.0012034401017523581,-0.00040141540975818465,-0.0009283568319588484,0.0010230064645726257,0.00023712693406600008,-0.0011775888693621435,0.0005547595591086139,0.0007996996454726447,-0.0010892933620438845,-6.456489428787353e-5,0.001127747519328269,-0.0006930826186210775,-0.0006572384829493584,0.0011313662840414535,-0.00010549385146576817,-0.001055480745416828,0.0008138683366718615,0.0005042184630164543,-0.001148896237965788,0.0002695978682950941,0.0009627755521346809,-0.0009150129383983017,-0.00034402872196560006,0.0011420614935392871,-0.00042449235434413373,-0.0008519922442678512,0.0009948586961383676,0.0001801311053011166,-0.0011115332319187043,0.0005671805448207877,0.0007258089840098178,-0.0010522179314775828,-1.598886179053775e-5,0.001058451664254,-0.0006949787281278473,-0.0005871611333496286,0.0010863871595139744,-0.00014500325271483573,-0.0009843932740455992,0.0008055639101085816,0.0004391766795879883,-0.0010971512841817968,0.0002995861072688289,0.0008913299998454116,-0.0008970133237395981,-0.00028510909545016955,0.001084777950195067,-0.0004446992875638237,-0.0007815813184468871,0.0009678351559105994,0.0001282690116321463,-0.00105000234858789,0.0005775389732995199,0.0006577603112098393,-0.0010169900466332046,2.804392134864751e-5,0.000994002955301013,-0.0006956095502944873,-0.0005227148955044816,0.0010439031054046252,-0.00018060763299204187,-0.0009183688523777786,0.0007967680482065037,0.00037946547785186046,-0.0010484663807433345,0.00032634139915522755,0.0008250594359597722,-0.0008792606519864788,-0.00023114033410306665,0.0010310319083547414,-0.00046236555803659746,-0.0007163574516293629,0.0009417507046488958,8.091004437302698e-5,-0.0009923956473050148,0.0005860560598922003,0.0005948164133435348,-0.0009833377971062796,6.807769361623512e-5,0.0009337727884685199,-0.0006950928558250687,-0.00046320355528669415,0.0010035677240717946,-0.00021276157914984343,-0.0008567650820811999,0.0007875012698686575,0.00032443953495499685,-0.0010024332697186015,0.00035022731246808173,0.000763320978476752,-0.000861685652113379,-0.0001815361496705193,0.0009803659692553827,-0.00047776412797277305,-0.0006556895053432837,0.0009164547755715609,3.753334703287576e-5,-0.0009382191692859657,0.0005929161968150506,0.0005363689138422088,-0.0009510386124335929,0.00010456319745428592,0.0008772428773799706,-0.000693527958549,-0.0004080512128330798,0.0009650963028186391,-0.0002418426946570464,-0.0007990510465291421,0.0007777825778247056,0.00027356377386094076,-0.0009587153075089482,0.0003715468634264869,0.0007055820802231602,-0.0008442328721830423,-0.00013580922857946265,0.000932401911949231,-0.0004911234539505824,-0.0005990534662092553,0.0008918242177439423,-2.295105511994674e-6,-0.0008870634185623318,0.0005982746668962828,0.00048191154944462723,-0.0009199091076241082,0.00013787704566828063,0.0008239825249146696,-0.0006909995804918932,-0.00035677753557261855,0.0009282532098543924,-0.00026816742018544913,-0.0007447845334216765,0.0007676298316355365,0.00022639087416510402,-0.0009170329439358485,0.0003905548675621323,0.0006513981713603462,-0.0008268579440140079,-9.355120515582686e-5,0.0008868247645589673,-0.0005026365052228273,-0.0005460109155328666,0.0008677578529841229,-3.893993799724279e-5,-0.0008385865040995688,0.0006022635137712523,0.00043101981195984006,-0.0008897973403584664,0.00016833648869781686,0.0007736312791523626,-0.0006875807995544392,-0.00030897885584466907,0.0008928422589142646,-0.00029200312855550103,-0.0006935946076528275,0.000757060030097228,0.0001825440495535346,-0.0008771525930519789,0.0004074674064838694,0.0006003955094363684,-0.0008095254808846105,-5.441728576754712e-5,0.0008433705652588901,-0.000512467692495063,-0.00049619247208885,0.0008441722849949306,-7.270979097830835e-5,-0.0007925011546825039,0.0006049960621591469,0.00038333525372570305,-0.0008605768360485035,0.00019621080824775135,0.0007258855411615938,-0.000683335323367571,-0.00026431356337556074,0.0008586992565855853,-0.00031357747860962377,-0.0006451681227017707,0.0007460895268224608,0.00014170370684818436,-0.0008388780050655434,0.0004224691659374896,0.000552257874102999,-0.0007922074427854336,-1.8114310692704403e-5,0.0008018168519798746,-0.0005207582504027664,-0.00044928491706307624,0.0008209986360896753,-0.000103867761086333,-0.0007485646060062899,0.0006065704363216131,0.0003385532557767146,-0.0008321419261501659,0.00022173020322475685,0.0006804881117866564,-0.0006783192616553134,-0.00022249069540764555,0.0008256861755300592,-0.00033308572600284774,-0.0005992391691076235,0.000734734195877897,0.00010359700283760044,-0.0008020435063789516,0.0004357191829384458,0.0005067161366012223,-0.0007748818513753147,1.5608610764412367e-5,0.0007619751956391498,-0.0005276304612637873,-0.0004050210794925213,0.0007981799796142985,-0.00013263960786804918,-0.0007065706443437474,0.0006070723258360485,0.00029641339869564,-0.000804404073987393,0.0002450927888467234,0.0006372199508023376,-0.000672582520821278,-0.00018326093638496797,0.0007936865534211969,-0.00035069649286572843,-0.0005555807394208909,0.0007230095596378409,6.798959014752772e-5,-0.0007665086514537082,0.0004473553898621326,0.00046354000404795384,-0.0007575317695528252,4.6967516514424486e-5,0.0007236852815396025,-0.000533191000467803,-0.00036317181512094716,0.0007756693001354563,-0.00015922026525120496,-0.0006663432879538362,0.0006065771794149465,0.0002566918119051607,-0.0007772889515250134,0.0002664701600758878,0.0005958936201434798,-0.0006661699107614005,-0.00014640945356297867,0.0007626018261641945,-0.0003665563620951521,-0.0005139980842707544,0.0007109308877290952,3.467903485830333e-5,-0.0007321539532975986,0.0004574982388993845,0.00042253142682514676,-0.000740144483408414,7.614951639379714e-5,0.0006868101762318708,-0.000537533608898265,-0.0003235395897103111,0.0007534278582400403,-0.00018377905244283162,-0.0006277317253268845,0.0006051519595262611,0.0002191950426393928,-0.0007507340931503852,0.0002860118512883509,0.0005563480223527879,-0.000659122030186195,-0.00011175014588947485,0.0007323483805615144,-0.0003807935660515887,-0.00047432337186101216,0.0006985132736222186,3.4895237608323725e-6,-0.0006988774463240106,0.0004662536164453213,0.0003835192905163019,-0.0007227108405003029,0.00010331756384225403,0.0006512325111192178,-0.0005407412446469809,-0.00028595330418038176,0.0007314238685739574,-0.00020646387733626662,-0.0005906062273746366,0.0006028565564691299,0.00018375510353683277,-0.0007246869970963069,0.00030384893916197986,0.0005184441447546039,-0.0006514759798317626,-7.91209911894204e-5,0.000702855166257393,-0.00039352097088628593,-0.0004364113615902343,0.0006857716937711265,-2.5732424172785848e-5,-0.0006665918975652137,0.00047371520410027746,0.0003463551092431759,-0.0007052247099926039,0.00012861432798061466,0.0006168513815313028,-0.0005428878281169923,-0.0002502640897213281,0.0007096314225915304,-0.00022740465235545184,-0.0005548548211942609,0.0005997449359989511,0.00015022544259397512,-0.0006991035772602435,0.0003200969745387858,0.0004820615915422394,-0.0006432659407289464,-4.838025447180998e-5,0.0006740617462969756,-0.00040483850817512625,-0.0004001358736453262,0.0006727210530003506,-5.3121457508109226e-5,-0.0006352225273035273,0.0004799664046415104,0.00031090950643144295,-0.0006876825386062542,0.00015216535776238198,0.0005835798089758065,-0.0005440396668908958,-0.00021634186700222462,0.0006880296041016052,-0.0002467160894219357,-0.0005203805643788438,0.0005958660767162902,0.0001184776410004798,-0.0006739468915963454,0.00033485838434152426,0.0004470957382812631,-0.0006345236457930259,-1.9403376985043196e-5,0.0006459166945081157,-0.0004148351692929124,-0.0003653868884735699,0.0006593762189651974,-7.879626740366248e-5,-0.0006047051332135077,0.0004850819232253814,0.00027706931976321966,-0.0006700829825072534,0.00017408168455675647,0.0005513426502482998,-0.0005442566263671647,-0.00018407251209565957,0.0006666017579147497,-0.00026450000157517454,-0.0004870992966391657,0.0005912647402593221,8.839868990362672e-5,-0.0006491860905180519,0.00034822445169613124,0.0004134553819262464,-0.0006252787664154937,7.919592394691378e-6,0.0006183762692389784,-0.0004235906511910742,-0.0003320681485286113,0.000645752047858201,-0.00010286196420599278,-0.00057498453655664,0.0004891290732801709,0.00024473520466680905,-0.0006524265998304834,0.0001944619759003529,0.0005200748637641333,-0.0005435930970541319,-0.00015335550775557317,0.0006453348809720156,-0.0002808472096629886,-0.00045493777359500325,0.0005859821075480117,5.98887310194043e-5,-0.0006247955416009731,0.0003602769578742635,0.00038106078819870716,-0.0006155592308406221,3.368613057811362e-5,0.0005914033088972725,-0.00043117672224957126,-0.00030009516341714327,0.0006318634030530909,-0.0001254120534432102,-0.0005460132872524853,0.0004921688609832573,0.00021381963881200378,-0.000634715591963591,0.00021339432798943902,0.0004897200634720162,-0.0005420987980762779,-0.00012410198567886838,0.0006242191121436688,-0.0002958391306838252,-0.0004238321086904548,0.0005800563069680723,3.285917145533284e-5,-0.0006007540965328736,0.00037108955123159326,0.00034984205980751875,-0.0006053914874178866,5.798302206819674e-5,0.0005649663067159265,-0.00043765836182202146,-0.00026939354123584644,0.0006177251680100249,-0.00014653008769467644,-0.0005177505784385826,0.0004942568904750718,0.00018424525132169483,-0.0006169535843014684,0.00023095776546447428,0.0004602293058172914,-0.0005398194478824327,-9.623308581428357e-5,0.0006032473020385624,-0.00030954910782780593,-0.00039372646515637555,0.0005735228548118898,7.231102401405132e-6,-0.0005770444735818669,0.00038072889432824627,0.00031973776539783366,-0.0005948007230233516,8.088785485874259e-5,0.0005390386312734718,-0.0004430947156519983,-0.00023989758534415784,0.0006033522544898022,-0.00016629105454584914,-0.0004901613316301605,0.0004954441230201088,0.0001559434165764097,-0.0005991454391533695,0.0002472235025410301,0.00043156006674800447,-0.0005367973266106636,-6.967857435765748e-5,0.0005824146480964002,-0.0003220435296369405,-0.0003645719521476765,0.0005664150240347973,-1.706603391939056e-5,-0.0005536527344507622,0.00038925562971670356,0.0002906937816749301,-0.0005838110447998862,0.0001024702824456779,0.0005135978662649832,-0.00044753990057073317,-0.00021154910844156714,0.0005887596069104288,-0.00018476254836899197,-0.0004632154216395823,0.0004957775164635517,0.00012885306490677137,-0.0005812970949980481,0.0002622560084092722,0.00040367537460838504,-0.0005330717495396091,-4.437567406310273e-5,0.0005617183832606941,-0.0003333827759961598,-0.0003363256885695814,0.0005587641541063122,-4.009557329180576e-5,-0.0005305678387019818,0.0003967251966390485,0.00026266231082662907,-0.0005724456317125719,0.00012279309340131812,0.0004886252484018912,-0.0004510436851235055,-0.000184296425556483,0.0005739622035160234,-0.00020200576402745193,-0.0004368870166414138,0.0004953005660244287,0.00010291967207456578,-0.000563415427453541,0.000276113911204274,0.00037654307162039165,-0.0005286794671681825,-2.026806977779629e-5,0.0005411575088732758,-0.0003436220211331504,-0.00030895000539188117,0.0005505999121917476,-6.19145899783407e-5,-0.0005077812622831868,0.00040318852447158163,0.0002356010428878263,-0.00056072686113293,0.0001419131217591834,0.0004641051864979099,-0.00045365206750700067,-0.00015809349513649817,0.0005589750548992409,-0.00021807634309608864,-0.0004111540136170215,0.0004940537633374602,7.809439691898478e-5,-0.0005455081282411419,0.0002888507681289269,0.00035013518199981095,-0.00052365500442898,2.6949406444112564e-6,0.0005207325642627576,-0.00035281191792421523,-0.0002824117629394844,0.000541950513914816,-8.257471717796273e-5,-0.00048528666930390063,0.0004086926237472642,0.0002094724385714032,-0.0005486764146600608,0.00015988202502962025,0.0004400248480765016,-0.0004554077680783523,-0.00013289918336879033,0.0005438132003187865,-0.00023302509731606418,-0.0003859975532080708,0.000492074987410574,5.433334241940327e-5,-0.0005275835991389851,0.00030051572404048756,0.00032442736895242765,-0.0005180309491572131,2.4559174203117406e-5,0.0005004454269347999,-0.0003609991831878843,-0.00025668176411372583,0.0005328429103868954,-0.00010212285061106723,-0.0004630796282708956,0.00041328109164830027,0.00018424311272205947,-0.0005363153665958887,0.00017674695160458517,0.0004163738024100838,-0.0004563506504529876,-0.00010867663153388918,0.0005284917021741056,-0.0002468986293580149,-0.0003614016010094391,0.0004893998386108009,3.159692005888673e-5,-0.0005096508584870117,0.00031115407664239865,0.0002993984661066695,-0.0005118381980560254,4.536618904580977e-5,0.0004802991384107882,-0.0003682270999871322,-0.00023173424804089865,0.0005233029469539293,-0.00012060175408178015,-0.0004411573656231384,0.00041699454573728757,0.00015988330221126753,-0.0005236642578654432,0.00019255111530527285,0.00039314371095043864,-0.0004565180826283799,-8.539270991402614e-5,0.0005130256389366968,-0.00025973986728707336,-0.00033735258471192077,0.00048606192475775814,9.849301046875935e-6,-0.0004917194582530689,0.0003208077631192502,0.000275030071580044,-0.0005051061668989215,6.515382527429952e-5,0.00046029775166413976,-0.0003745359500578736,-0.00020754645145970468,0.0005133554981264789,-0.00013805058246067018,-0.00041951855070254657,0.0004198709972141081,0.00013636640502051812,-0.0005107431576727447,0.0002073342916231998,0.00037032805773747497,-0.0004559452475200564,-6.301754473911945e-5,0.0004974300967878493,-0.00027158852618965805,-0.0003138390784011632,0.0004820931067852069,-1.0942059094114257e-5,-0.0004737994100301985,0.00032951578040244097,0.0002513061949792329,-0.0004978629705147723,8.395667348019323e-5,0.0004404461968287785,-0.00037996338715046835,-0.00018409822740775417,0.0005030245823716784,-0.0001545053347907475,-0.0003981631073402862,0.00042194617299007417,0.00011366857959676537,-0.0004975717147828186,0.00022113324764242126,0.0003479219136845424,-0.00045466541064563917,-4.152410702457753e-5,0.000481720160171666,-0.0002824815080571915,-0.0002908515268494217,0.00047752371012609133,-3.080683371742933e-5,-0.0004559011186223664,0.00033731454912903333,0.0002282129493314538,-0.0004901355771368249,0.00010180648193104646,0.0004207501624334902,-0.00038454476020395026,-0.00016137171258630493,0.0004923334598104647,-0.0001699992480245433,-0.0003770920480732716,0.00042325379426738126,9.176839545557078e-5,-0.00048416919999772114,0.00023398211556930107,0.0003259217296883323,-0.00045271015136749855,-2.0887854078206197e-5,0.00046591090144026075,-0.0002924532491237518,-0.0002683820038638678,0.00047238270692576335,-4.9772185244983406e-5,-0.00043803532211032407,0.00034423822964321625,0.00020573828130721067,-0.00048194994092084527,0.00011873251146262034,0.0004012159898882143,-0.00038831339375482556,-0.00013935103624418204,0.0004813047153509064,-0.00018456314011447563,-0.00035630732768631763,0.00042382581801617695,7.064652752861056e-5,-0.0004705545411327832,0.0002459127181164884,0.0003043251543699163,-0.000450109563025027,-1.0864160017897483e-6,0.00045001736974218,-0.00030153602230708216,-0.00024642399975760646,0.0004666978733366515,-6.7863080051694e-5,-0.00042021303747612947,0.0003503189969907615,0.00018387173421102604,-0.00047333111580433564,0.00013476184562737173,0.0003818505793307864,-0.0003913008317527686,-0.00011802206461842993,0.0004699603293713311,-0.00019822570973715623,-0.00033581171332293077,0.000423692646681408,5.028548800144333e-5,-0.00045674635158664967,0.0002569548526302955,0.00028313087294535184,-0.0004468924264113883,1.7900679216854216e-5,0.00043405457928224605,-0.0003097602011504271,-0.00022497223381818656,0.00046049592545026937,-8.510256446193555e-5,-0.0004024455110205291,0.000355587280723984,0.0001626042391185345,-0.00046430335336383874,0.00014991966241170517,0.00036266130525185506,-0.0003935370499542101,-9.737217593668417e-5,0.0004583217377259187,-0.00021101379874331126,-0.00031560866886107643,0.00042288331059115933,3.066939039840132e-5,-0.00044276295342523186,0.0002671365397323596,0.0002623384642965578,-0.0004430863603340888,3.6092247396543585e-5,0.0004180374970649535,-0.00031715449062810096,-0.0002040224883184826,0.00045380263685465197,-0.00010151200725054635,-0.0003847441729339321,0.000360071974399775,0.00014192793028522645,-0.00045489018690516463,0.00016422947282997377,0.00034365594057455314,-0.0003950506412372269,-7.739006178925866e-5,0.00044640988256592235,-0.00022295262245921826,-0.0002957022516200915,0.00042142562682715877,1.1783741510252315e-5,-0.00042862239575578386,0.0002764842413368855,0.00024194827377569037,-0.0004387179524069969,5.3505661159641884e-5,0.00040198103021769715,-0.00032374612933564357,-0.0001835714611625162,0.0004466429403360313],"x":[100.0,100.60925648702595,101.21851297405189,101.82776946107785,102.4370259481038,103.04628243512974,103.65553892215569,104.26479540918163,104.87405189620759,105.48330838323353,106.09256487025948,106.70182135728543,107.31107784431137,107.92033433133733,108.52959081836327,109.13884730538922,109.74810379241517,110.35736027944112,110.96661676646707,111.57587325349301,112.18512974051896,112.7943862275449,113.40364271457086,114.01289920159681,114.62215568862275,115.2314121756487,115.84066866267464,116.4499251497006,117.05918163672655,117.6684381237525,118.27769461077844,118.88695109780438,119.49620758483034,120.10546407185629,120.71472055888223,121.32397704590818,121.93323353293412,122.54249001996008,123.15174650698603,123.76100299401197,124.37025948103792,124.97951596806388,125.58877245508982,126.19802894211577,126.80728542914171,127.41654191616766,128.02579840319362,128.63505489021955,129.2443113772455,129.85356786427147,130.4628243512974,131.07208083832336,131.6813373253493,132.29059381237525,132.8998502994012,133.50910678642714,134.1183632734531,134.72761976047903,135.336876247505,135.94613273453095,136.55538922155688,137.16464570858284,137.77390219560877,138.38315868263473,138.9924151696607,139.60167165668662,140.21092814371258,140.8201846307385,141.42944111776447,142.03869760479043,142.64795409181636,143.25721057884232,143.86646706586825,144.4757235528942,145.08498003992017,145.6942365269461,146.30349301397206,146.91274950099802,147.52200598802395,148.1312624750499,148.74051896207584,149.3497754491018,149.95903193612776,150.5682884231537,151.17754491017965,151.78680139720558,152.39605788423154,153.0053143712575,153.61457085828343,154.2238273453094,154.83308383233532,155.44234031936128,156.05159680638724,156.66085329341317,157.27010978043913,157.87936626746506,158.48862275449102,159.09787924151698,159.7071357285429,160.31639221556887,160.9256487025948,161.53490518962076,162.14416167664672,162.75341816367265,163.3626746506986,163.97193113772454,164.5811876247505,165.19044411177646,165.7997005988024,166.40895708582835,167.01821357285428,167.62747005988024,168.2367265469062,168.84598303393213,169.4552395209581,170.06449600798402,170.67375249500998,171.28300898203594,171.89226546906187,172.50152195608783,173.11077844311376,173.72003493013972,174.32929141716568,174.9385479041916,175.54780439121757,176.1570608782435,176.76631736526946,177.37557385229542,177.98483033932135,178.5940868263473,179.20334331337327,179.8125998003992,180.42185628742516,181.0311127744511,181.64036926147705,182.249625748503,182.85888223552894,183.4681387225549,184.07739520958083,184.6866516966068,185.29590818363275,185.90516467065868,186.51442115768464,187.12367764471057,187.73293413173653,188.3421906187625,188.95144710578842,189.56070359281438,190.1699600798403,190.77921656686627,191.38847305389223,191.99772954091816,192.60698602794412,193.21624251497005,193.825499001996,194.43475548902197,195.0440119760479,195.65326846307386,196.2625249500998,196.87178143712575,197.4810379241517,198.09029441117764,198.6995508982036,199.30880738522953,199.9180638722555,200.52732035928145,201.13657684630738,201.74583333333334,202.35508982035927,202.96434630738523,203.5736027944112,204.18285928143712,204.79211576846308,205.401372255489,206.01062874251497,206.61988522954093,207.22914171656686,207.83839820359282,208.44765469061878,209.0569111776447,209.66616766467067,210.2754241516966,210.88468063872256,211.49393712574852,212.10319361277445,212.7124500998004,213.32170658682634,213.9309630738523,214.54021956087826,215.1494760479042,215.75873253493015,216.36798902195608,216.97724550898204,217.586501996008,218.19575848303393,218.8050149700599,219.41427145708582,220.02352794411178,220.63278443113774,221.24204091816367,221.85129740518963,222.46055389221556,223.06981037924152,223.67906686626748,224.2883233532934,224.89757984031937,225.5068363273453,226.11609281437126,226.72534930139722,227.33460578842315,227.9438622754491,228.55311876247504,229.162375249501,229.77163173652696,230.3808882235529,230.99014471057885,231.59940119760478,232.20865768463074,232.8179141716567,233.42717065868263,234.0364271457086,234.64568363273452,235.25494011976048,235.86419660678644,236.47345309381237,237.08270958083833,237.69196606786429,238.30122255489022,238.91047904191618,239.5197355289421,240.12899201596807,240.73824850299403,241.34750499001996,241.95676147704592,242.56601796407185,243.1752744510978,243.78453093812377,244.3937874251497,245.00304391217566,245.6123003992016,246.22155688622755,246.8308133732535,247.44006986027944,248.0493263473054,248.65858283433133,249.2678393213573,249.87709580838325,250.48635229540918,251.09560878243514,251.70486526946107,252.31412175648703,252.92337824351299,253.53263473053892,254.14189121756488,254.7511477045908,255.36040419161677,255.96966067864273,256.57891716566866,257.1881736526946,257.7974301397206,258.40668662674653,259.01594311377244,259.6251996007984,260.23445608782436,260.8437125748503,261.4529690618763,262.0622255489022,262.67148203592814,263.2807385229541,263.88999500998005,264.499251497006,265.1085079840319,265.7177644710579,266.32702095808384,266.9362774451098,267.54553393213575,268.15479041916166,268.7640469061876,269.3733033932136,269.98255988023953,270.5918163672655,271.2010728542914,271.81032934131736,272.4195858283433,273.0288423153693,273.63809880239523,274.24735528942114,274.8566117764471,275.46586826347306,276.075124750499,276.684381237525,277.2936377245509,277.90289421157684,278.5121506986028,279.12140718562875,279.7306636726547,280.3399201596806,280.9491766467066,281.55843313373254,282.1676896207585,282.77694610778445,283.38620259481036,283.9954590818363,284.6047155688623,285.21397205588823,285.8232285429142,286.4324850299401,287.04174151696606,287.650998003992,288.260254491018,288.86951097804393,289.47876746506984,290.0880239520958,290.69728043912176,291.3065369261477,291.9157934131737,292.5250499001996,293.13430638722554,293.7435628742515,294.35281936127745,294.9620758483034,295.5713323353293,296.1805888223553,296.78984530938123,297.3991017964072,298.00835828343315,298.61761477045906,299.226871257485,299.836127744511,300.44538423153693,301.0546407185629,301.6638972055888,302.27315369261476,302.8824101796407,303.4916666666667,304.10092315369263,304.71017964071854,305.3194361277445,305.92869261477045,306.5379491017964,307.1472055888224,307.7564620758483,308.36571856287424,308.9749750499002,309.58423153692615,310.1934880239521,310.802744510978,311.412000998004,312.02125748502993,312.6305139720559,313.23977045908185,313.8490269461078,314.4582834331337,315.0675399201597,315.67679640718563,316.2860528942116,316.89530938123755,317.50456586826346,318.1138223552894,318.7230788423154,319.33233532934133,319.9415918163673,320.5508483033932,321.16010479041915,321.7693612774451,322.3786177644711,322.98787425149703,323.59713073852294,324.2063872255489,324.81564371257485,325.4249001996008,326.0341566866268,326.6434131736527,327.25266966067863,327.8619261477046,328.47118263473055,329.0804391217565,329.6896956087824,330.2989520958084,330.90820858283433,331.5174650698603,332.12672155688625,332.73597804391216,333.3452345309381,333.9544910179641,334.56374750499003,335.173003992016,335.7822604790419,336.39151696606785,337.0007734530938,337.6100299401198,338.21928642714573,338.82854291417163,339.4377994011976,340.04705588822355,340.6563123752495,341.2655688622755,341.8748253493014,342.48408183632733,343.0933383233533,343.70259481037925,344.3118512974052,344.9211077844311,345.5303642714571,346.13962075848303,346.748877245509,347.35813373253495,347.96739021956085,348.5766467065868,349.1859031936128,349.79515968063873,350.4044161676647,351.0136726546906,351.62292914171655,352.2321856287425,352.8414421157685,353.45069860279443,354.05995508982033,354.6692115768463,355.27846806387225,355.8877245508982,356.4969810379242,357.1062375249501,357.71549401197603,358.324750499002,358.93400698602795,359.5432634730539,360.1525199600798,360.7617764471058,361.37103293413173,361.9802894211577,362.58954590818365,363.19880239520955,363.8080588822355,364.4173153692615,365.02657185628743,365.6358283433134,366.2450848303393,366.85434131736525,367.4635978043912,368.0728542914172,368.68211077844313,369.29136726546903,369.900623752495,370.50988023952095,371.1191367265469,371.7283932135729,372.3376497005988,372.94690618762473,373.5561626746507,374.16541916167665,374.7746756487026,375.38393213572857,375.9931886227545,376.60244510978043,377.2117015968064,377.82095808383235,378.4302145708583,379.0394710578842,379.6487275449102,380.25798403193613,380.8672405189621,381.47649700598805,382.08575349301395,382.6950099800399,383.3042664670659,383.91352295409183,384.5227794411178,385.1320359281437,385.74129241516965,386.3505489021956,386.9598053892216,387.56906187624753,388.17831836327343,388.7875748502994,389.39683133732535,390.0060878243513,390.61534431137727,391.2246007984032,391.83385728542913,392.4431137724551,393.05237025948105,393.661626746507,394.2708832335329,394.8801397205589,395.48939620758483,396.0986526946108,396.70790918163675,397.31716566866265,397.9264221556886,398.5356786427146,399.14493512974053,399.7541916167665,400.3634481037924,400.97270459081835,401.5819610778443,402.19121756487027,402.80047405189623,403.40973053892213,404.0189870259481,404.62824351297405,405.2375,405.84675648702597,406.4560129740519,407.06526946107783,407.6745259481038,408.28378243512975,408.8930389221557,409.5022954091816,410.1115518962076,410.72080838323353,411.3300648702595,411.93932135728545,412.54857784431135,413.1578343313373,413.7670908183633,414.37634730538923,414.9856037924152,415.5948602794411,416.20411676646705,416.813373253493,417.42262974051897,418.03188622754493,418.64114271457083,419.2503992015968,419.85965568862275,420.4689121756487,421.07816866267467,421.6874251497006,422.29668163672653,422.9059381237525,423.51519461077845,424.1244510978044,424.7337075848303,425.3429640718563,425.95222055888223,426.5614770459082,427.17073353293415,427.77999001996005,428.389246506986,428.998502994012,429.60775948103793,430.2170159680639,430.8262724550898,431.43552894211575,432.0447854291417,432.65404191616767,433.26329840319363,433.87255489021953,434.4818113772455,435.09106786427145,435.7003243512974,436.30958083832337,436.91883732534933,437.52809381237523,438.1373502994012,438.74660678642715,439.3558632734531,439.96511976047907,440.574376247505,441.18363273453093,441.7928892215569,442.40214570858285,443.0114021956088,443.6206586826347,444.22991516966067,444.83917165668663,445.4484281437126,446.05768463073855,446.66694111776445,447.2761976047904,447.88545409181637,448.49471057884233,449.1039670658683,449.7132235528942,450.32248003992015,450.9317365269461,451.54099301397207,452.15024950099803,452.75950598802393,453.3687624750499,453.97801896207585,454.5872754491018,455.19653193612777,455.8057884231537,456.41504491017963,457.0243013972056,457.63355788423155,458.2428143712575,458.8520708582834,459.46132734530937,460.07058383233533,460.6798403193613,461.28909680638725,461.89835329341315,462.5076097804391,463.11686626746507,463.72612275449103,464.335379241517,464.9446357285429,465.55389221556885,466.1631487025948,466.77240518962077,467.38166167664673,467.99091816367263,468.6001746506986,469.20943113772455,469.8186876247505,470.42794411177647,471.0372005988024,471.64645708582833,472.2557135728543,472.86497005988025,473.4742265469062,474.0834830339321,474.69273952095807,475.30199600798403,475.91125249501,476.52050898203595,477.12976546906185,477.7390219560878,478.34827844311377,478.95753493013973,479.5667914171657,480.1760479041916,480.78530439121755,481.3945608782435,482.00381736526947,482.61307385229543,483.22233033932133,483.8315868263473,484.44084331337325,485.0500998003992,485.65935628742517,486.26861277445107,486.87786926147703,487.487125748503,488.09638223552895,488.7056387225549,489.3148952095808,489.92415169660677,490.53340818363273,491.1426646706587,491.75192115768465,492.36117764471055,492.9704341317365,493.57969061876247,494.18894710578843,494.7982035928144,495.4074600798403,496.01671656686625,496.6259730538922,497.23522954091817,497.84448602794413,498.4537425149701,499.062999001996,499.67225548902195,500.2815119760479,500.89076846307387,501.5000249500998,502.10928143712573,502.7185379241517,503.32779441117765,503.9370508982036,504.54630738522957,505.15556387225547,505.76482035928143,506.3740768463074,506.98333333333335,507.5925898203593,508.2018463073852,508.81110279441117,509.42035928143713,510.0296157684631,510.63887225548905,511.24812874251495,511.8573852295409,512.4666417165669,513.0758982035928,513.6851546906188,514.2944111776447,514.9036676646707,515.5129241516966,516.1221806387225,516.7314371257485,517.3406936127744,517.9499500998004,518.5592065868263,519.1684630738523,519.7777195608783,520.3869760479042,520.9962325349302,521.605489021956,522.214745508982,522.824001996008,523.4332584830339,524.0425149700599,524.6517714570858,525.2610279441118,525.8702844311377,526.4795409181637,527.0887974051897,527.6980538922156,528.3073103792415,528.9165668662674,529.5258233532934,530.1350798403193,530.7443363273453,531.3535928143713,531.9628493013972,532.5721057884232,533.1813622754491,533.7906187624751,534.399875249501,535.0091317365269,535.6183882235529,536.2276447105788,536.8369011976048,537.4461576846307,538.0554141716567,538.6646706586827,539.2739271457086,539.8831836327346,540.4924401197604,541.1016966067864,541.7109530938123,542.3202095808383,542.9294660678643,543.5387225548902,544.1479790419162,544.7572355289421,545.3664920159681,545.9757485029941,546.5850049900199,547.1942614770459,547.8035179640718,548.4127744510978,549.0220309381237,549.6312874251497,550.2405439121757,550.8498003992016,551.4590568862276,552.0683133732535,552.6775698602794,553.2868263473054,553.8960828343313,554.5053393213573,555.1145958083832,555.7238522954092,556.3331087824351,556.9423652694611,557.5516217564871,558.160878243513,558.7701347305389,559.3793912175648,559.9886477045908,560.5979041916167,561.2071606786427,561.8164171656687,562.4256736526946,563.0349301397206,563.6441866267465,564.2534431137725,564.8626996007984,565.4719560878243,566.0812125748503,566.6904690618762,567.2997255489022,567.9089820359281,568.5182385229541,569.1274950099801,569.736751497006,570.346007984032,570.9552644710578,571.5645209580838,572.1737774451097,572.7830339321357,573.3922904191617,574.0015469061876,574.6108033932136,575.2200598802395,575.8293163672655,576.4385728542915,577.0478293413173,577.6570858283433,578.2663423153692,578.8755988023952,579.4848552894211,580.0941117764471,580.7033682634731,581.312624750499,581.921881237525,582.531137724551,583.1403942115768,583.7496506986027,584.3589071856287,584.9681636726547,585.5774201596806,586.1866766467066,586.7959331337325,587.4051896207585,588.0144461077845,588.6237025948104,589.2329590818364,589.8422155688622,590.4514720558882,591.0607285429141,591.6699850299401,592.2792415169661,592.888498003992,593.497754491018,594.107010978044,594.7162674650699,595.3255239520959,595.9347804391217,596.5440369261477,597.1532934131736,597.7625499001996,598.3718063872255,598.9810628742515,599.5903193612775,600.1995758483034,600.8088323353294,601.4180888223553,602.0273453093812,602.6366017964071,603.2458582834331,603.8551147704591,604.464371257485,605.073627744511,605.682884231537,606.2921407185629,606.9013972055889,607.5106536926148,608.1199101796407,608.7291666666666,609.3384231536926,609.9476796407185,610.5569361277445,611.1661926147705,611.7754491017964,612.3847055888224,612.9939620758483,613.6032185628743,614.2124750499001,614.8217315369261,615.4309880239521,616.040244510978,616.649500998004,617.25875748503,617.8680139720559,618.4772704590819,619.0865269461078,619.6957834331338,620.3050399201596,620.9142964071856,621.5235528942115,622.1328093812375,622.7420658682635,623.3513223552894,623.9605788423154,624.5698353293413,625.1790918163673,625.7883483033933,626.3976047904191,627.0068612774451,627.616117764471,628.225374251497,628.834630738523,629.4438872255489,630.0531437125749,630.6624001996008,631.2716566866268,631.8809131736527,632.4901696606786,633.0994261477045,633.7086826347305,634.3179391217565,634.9271956087824,635.5364520958084,636.1457085828343,636.7549650698603,637.3642215568863,637.9734780439122,638.5827345309381,639.191991017964,639.80124750499,640.410503992016,641.0197604790419,641.6290169660679,642.2382734530938,642.8475299401198,643.4567864271457,644.0660429141717,644.6752994011975,645.2845558882235,645.8938123752495,646.5030688622754,647.1123253493014,647.7215818363273,648.3308383233533,648.9400948103793,649.5493512974052,650.1586077844312,650.7678642714571,651.377120758483,651.986377245509,652.5956337325349,653.2048902195609,653.8141467065868,654.4234031936128,655.0326596806387,655.6419161676647,656.2511726546907,656.8604291417166,657.4696856287425,658.0789421157684,658.6881986027944,659.2974550898203,659.9067115768463,660.5159680638723,661.1252245508982,661.7344810379242,662.3437375249501,662.9529940119761,663.562250499002,664.1715069860279,664.7807634730539,665.3900199600798,665.9992764471058,666.6085329341317,667.2177894211577,667.8270459081837,668.4363023952096,669.0455588822356,669.6548153692614,670.2640718562874,670.8733283433133,671.4825848303393,672.0918413173653,672.7010978043912,673.3103542914172,673.9196107784431,674.5288672654691,675.1381237524951,675.7473802395209,676.3566367265469,676.9658932135728,677.5751497005988,678.1844061876247,678.7936626746507,679.4029191616767,680.0121756487026,680.6214321357286,681.2306886227545,681.8399451097804,682.4492015968063,683.0584580838323,683.6677145708583,684.2769710578842,684.8862275449102,685.4954840319361,686.1047405189621,686.7139970059881,687.323253493014,687.9325099800399,688.5417664670658,689.1510229540918,689.7602794411177,690.3695359281437,690.9787924151697,691.5880489021956,692.1973053892216,692.8065618762475,693.4158183632735,694.0250748502993,694.6343313373253,695.2435878243513,695.8528443113772,696.4621007984032,697.0713572854291,697.6806137724551,698.2898702594811,698.899126746507,699.508383233533,700.1176397205588,700.7268962075848,701.3361526946107,701.9454091816367,702.5546656686627,703.1639221556886,703.7731786427146,704.3824351297405,704.9916916167665,705.6009481037925,706.2102045908183,706.8194610778443,707.4287175648702,708.0379740518962,708.6472305389221,709.2564870259481,709.8657435129741,710.475]} +{"expected":[0.01, -0.0033746253790545872, -0.007622018879319296, 0.008433494207046862, 0.0018890045595747725, -0.009597632871248577, 0.004554864091885448, 0.006437753655264784, -0.008809666729723655, -0.0004683276213579123, 0.009021878600127195, -0.00557448904217524, -0.00518884543834458, 0.008984167322636271, -0.0008822361340232188, -0.008293387424072674, 0.006423300008544471, 0.003902491497243474, -0.008964910481678587, 0.0021410030233847094, 0.007434361161677075, -0.007094539111590677, -0.0026051537867033763, 0.008762744509127599, -0.0032889612155749927, -0.00646814817358103, 0.007584861802057714, 0.001322173628642257, -0.008391166572328706, 0.004309966210916381, 0.00541882902418654, -0.00789425676051515, -0.00007741137080109322, 0.007866003397990814, -0.005190888286691331, -0.0043107999644707035, 0.008025916288409492, -0.0011070829665526638, -0.007205063206941742, 0.005921709698531918, 0.0031683612909959046, -0.007986059728650291, 0.002211362742764537, 0.006427764980119304, -0.0064955704383950754, -0.00201531744755601, 0.007783713328832355, -0.0032178369012603064, -0.005554751504162567, 0.006908762346137134, 0.0008745954285802021, -0.007430450743094724, 0.004111477604627688, 0.004607492872683794, -0.00716067234087304, 0.00023211237554251007, 0.006940099051174465, -0.004879980448715399, -0.003607887217193767, 0.007253676467270761, -0.001284675272914252, -0.006328415747875791, 0.005513875305598938, 0.0025778654114076275, -0.00719298732741023, 0.002264816300126738, 0.005612742616618365, -0.006006586763020668, -0.0015390063379122755, 0.006986458278165587, -0.0031563648778602424, -0.004811642742160327, 0.006354444046560014, 0.0005121690322929521, -0.00664434850523758, 0.003945466543090085, 0.003944527136917552, -0.006556641214801879, 0.0004828523658512593, 0.0061790537272408035, -0.004620747022140432, -0.0030312775513808626, 0.00661514929179429, -0.0014276454140794692, -0.005604807827258207, 0.005173428759011105, 0.002091872012714336, -0.006534582830377918, 0.002305463060213304, 0.004937361147319606, -0.005597398884782052, -0.001146019489560176, 0.006322024170613091, -0.0031014700278773934, -0.004193641507483194, 0.005889228490529989, 0.00021280982010617213, -0.005986809356747146, 0.003802948422578493, 0.0033914042216773763, -0.006048143932118025, 0.0006896153286841715, 0.005540280292535749, -0.004399459866490822, -0.002548877475335864, 0.006075951734989352, -0.0015443651716267207, -0.004995508238427047, 0.0048829622877019935, 0.0016844094053580388, -0.005976919465789317, 0.0023360714450601457, 0.0043669941770715145, -0.005247880329196231, -0.0008161230833135265, 0.005757615681360113, -0.003051124871582856, -0.0036703518896389247, 0.005491129188701914, -0.000038414647596055254, -0.005426712741594861, 0.0036778730471760676, 0.0029219797903569673, -0.0056120925370495975, 0.0008625048862247898, 0.004994756869438563, -0.004206777101008671, -0.0021387276583955638, 0.005612555974717903, -0.0016406037936791738, -0.004473910349181384, 0.004630525267843857, 0.0013375643846815384, -0.005496598259191444, 0.0023585805140842386, 0.003877671165064434, -0.004944102324323419, -0.0005352527185072771, 0.005270443255972953, -0.0030039419038478056, -0.0032205756899401296, 0.005144814658170963, -0.00025196324112347087, -0.004942276221088629, 0.00356602075441791, 0.0025178902341250436, -0.005232271548429043, 0.0010086524055568124, 0.00452202860154504, -0.0040361249204851814, -0.0017852973554890403, 0.005208324020380944, -0.0017204679386761408, -0.004021136032863078, 0.004407645528211683, 0.0010385828131244162, -0.005076963386680239, 0.002374390930557228, 0.003452274611672772, -0.004676123221830684, -0.00029332892058369405, 0.0048441822830965625, -0.002958942643882389, -0.002829080820353524, 0.004839272196996251, -0.00043538017548528025, -0.004517801641045605, 0.003464362127581354, 0.0021658606757821424, -0.004896962550898854, 0.0011332360936156254, 0.004107267598867513, -0.003882746693639393, -0.0014772937632672048, 0.004851162237974013, -0.001786961913692779, -0.0036234228303367606, 0.004208153488994836, 0.0007781377996420093, -0.004705840642293706, 0.0023845416920389062, 0.0030782571544993994, -0.004436661150818188, -0.00008293924808164708, 0.004466836450525126, -0.002915420087388352, -0.002484642579787326, 0.004566391295779176, -0.0005942447146624588, -0.00414169312088289, 0.0033706690198682136, 0.0018560581235306836, -0.004597490347915275, 0.001240107894615691, 0.0037394657832780292, -0.0037431189618442945, -0.0012063098334201834, 0.00453207294142494, -0.0018423358607940717, -0.0032705038648666554, 0.004027453169436664, 0.0005492514201438239, -0.004374128830803109, 0.002389821712409658, 0.0027462141060573594, -0.004220263892919862, 0.00010148920784173231, 0.0041293958886838384, -0.0028728532875290577, -0.0021788089090984866, 0.00432007033908651, -0.0007327724318552235, -0.003805202360141518, 0.003283268875981887, 0.0015810451408781285, -0.004327298885133181, 0.0013321936644060204, 0.003410282060871457, -0.003614579152420867, -0.0009659585916020767, 0.004244226748143887, -0.0018883099676065668, -0.0029545666469108054, 0.003862053730280263, 0.0003465992716148046, -0.004074890983889297, 0.0023908426391149066, 0.0024489594382746684, -0.004022771440620533, 0.0002642273883766639, 0.003824965311307977, -0.0028308523893976574, -0.001905095542675053, 0.004095634147866093, -0.0008542085792722319, -0.0035016078236468433, 0.0032008843221027925, 0.001335093194751844, -0.004081344613809633, 0.00141175684264662, 0.003113283144002896, -0.003495080560117934, -0.000751301299248373, 0.003982349598820131, -0.0019262233125528676, -0.0026695630035546754, 0.0037092590208348476, 0.00016604814335499966, -0.0038027500324486303, 0.002388087749337923, 0.0021809095582690165, -0.0038409575222055573, 0.0004086038740076215, 0.003548180682849908, -0.0027891221616014633, -0.001658446009196361, 0.003889443083215841, -0.0009610928562485307, -0.003225662294979407, 0.0031225253816182953, 0.0011137192491963157, -0.003855686955326961, 0.0014805770200372911, 0.002843429641931008, -0.00338302656944939, -0.0005584593235005583, 0.003742306572565528, -0.0019571353282154024, -0.002410739334022422, 0.0035669562592685303, 0.000004340463089301234, -0.0035534762251311137, 0.0023819456113429423, 0.0019376615497718212, -0.0036722842154975417, 0.0005372516695654661, 0.003294808833359378, -0.0027474371465571407, -0.0014348600868824407, 0.0036986240233832963, -0.0010554420895802787, -0.002973211715339934, 0.0030474152143070725, 0.0009133652765597292, -0.0036472049859944036, 0.0015400738095075481, 0.0025967196933769114, -0.0032771557439613256, -0.00038434435953480726, 0.0035208125249782344, -0.001981896589820325, -0.0021743092640834714, 0.0034334687762567076, -0.00014112611266400951, -0.0033236988740818424, 0.0023727337708764847, 0.0017156978580314232, -0.0035147301018061895, 0.0006522814102674643, 0.003061466401516419, -0.002705624325836382, -0.001231132432894567, 0.003520881067978815, -0.0011388790574617992, -0.0027409263898434833, 0.002974937810031106, 0.0007311717760163641, -0.0034533971691657664, 0.0015913946155656773, 0.002369936531483836, -0.003176460454548193, -0.00022646693702478937, 0.0033152266358331124, -0.002001199226172913, -0.0019572207568547433, 0.003307451248720085, -0.00027245583099041337, -0.003110700804550485, 0.0023607157449237323, 0.0015121752946147585, -0.0033666674657802467, 0.000755405370044387, 0.0028454185738789107, -0.0026635507731651064, -0.0010446650652357428, 0.003354359696191874, -0.0012127251116140823, -0.0025261077201062477, 0.0029046004161409986, 0.0005648146273985152, -0.0032722370521446062, 0.0016354780062710047, 0.0021604662540187255, -0.0030801281517371677, -0.00008279793051049029, 0.0031234037829791423, -0.0020156134805083587, -0.0017569873381783653, 0.003187813771812731, -0.0003913689234630295, -0.0029122690839322894, 0.002346113426249626, 0.0013247715479917737, -0.003226772947196654, 0.0008480278373981774, 0.0026444323795080686, -0.002621114694188039, -0.0008733304451363203, 0.0031975475558126175, -0.0012780679337995489, -0.0023265468088723338, 0.0028360060700229903, 0.00041238553623237315, -0.003102067489642714, 0.0016731002473193248, 0.0019661640259883845, -0.0029874982522202697, 0.00004833328785660869, 0.002943585209223268, -0.0020256146635604984, -0.0015715637451247178, 0.003073665910135255, -0.0004992857952447636, -0.0027265848335975653, 0.002329116279090769, 0.0011515717076078743, -0.003093961470840194, 0.00093131203917023, 0.0024566680294340064, -0.002578238813341446, -0.0007153699145419374, 0.0030492008505353606, -0.001335811879558724, -0.0021404193866365207, 0.002768833198468015, 0.00027230306044438024, -0.0029415219008098108, 0.0017049099941754847, 0.0017852543316613826, -0.00289802999801833, 0.00016831488624022566, 0.002774316870565144, -0.0020316033182353976, -0.0013992529276133044, 0.0029642748485892386, -0.0005973900770954023, -0.0025521406810005034, 0.002309888251361359, 0.0009909831370977838, -0.002967336669599498, 0.0010062304166468562, 0.0022805972643780313, -0.0025348654174176264, -0.0005693172763381678, 0.002908288933859511, -0.0013867159137670503, -0.0019662066190265196, 0.0027028202465120086, 0.00014324546521533323, -0.0027894648250311425, 0.001731454512834758, 0.0016162555759664592, -0.0028112781592852386, 0.000278310122676634, 0.0026143876169687458, -0.0020339205076902443, -0.0012386355507635913, 0.0028590336609351247, -0.0006866764820939459, -0.002387678084621011, 0.002288573035768683, 0.0008416707630738467, -0.0028461531856580325, 0.0010736028917750354, 0.0021149411877005027, -0.002490952588010985, -0.000433940542749546, 0.0027739520605998278, -0.0014314225634394367, -0.0018026346487828046, 0.002637753943018045, 0.000024099403605048543, -0.002644946471631283, 0.001753199746087596, 0.0014579223699992773, -0.0027268744315341715, 0.00037930144622226245, 0.002462781801289258, -0.002032859546960957, -0.0010885158914871712, 0.0027574369494554993, -0.0007679875735692304, -0.002232139162713656, 0.002265298119618854, 0.0007025072859678762, -0.0027297876538164498, 0.0011341263410873776, 0.0019586223638293635, -0.0024464713000405917, -0.0003081970043563097, 0.002645468786255744, -0.0014704802733877956, -0.001648627895767305, 0.002573460234210936, -0.00008607976421486133, -0.002507167562224304, 0.0017705458451202694, 0.0013092008421668009, -0.0026445130257128227, 0.0004721246781592847, 0.002318642532067129, -0.002028675104990687, -0.0009478798462331231, 0.0026590619294246266, -0.0008420423294055896, -0.002084629253092028, 0.0022401779340787396, 0.0005725344463660254, -0.002617716117379471, 0.0011883975459047913, 0.0018107275016757446, -0.002401403159898543, -0.00019119819619499605, 0.0025222305352050377, -0.0015043608526030085, -0.001503272594117522, 0.002509797200457936, -0.00018809898018477898, -0.0023754518425589993, 0.0017838393165830965, 0.0011691936682461641, -0.0025639393856203593, 0.0005574957818357105, 0.0021812428793483427, -0.0020215903376617802, -0.0008158619997898135, 0.0025635535866886253, -0.0009094585606010234, -0.0019443875126434842, 0.002213316325692624, 0.0004509325845759951, -0.0025094962694149135, 0.001236931242134545, 0.0016704780892682729, -0.002355738621928288, -0.00008218230752608211, 0.002403721560931839, -0.0015334732230124547, -0.0013657880392168474, 0.0024466494652646614, -0.0002826519588728931, -0.0022492243779545394, 0.0017933826134724842, 0.0010371324395298924, -0.002484941265751526, 0.000636032029835347, 0.0020499630931019443, -0.0020118025292848243, -0.0006917195525119102, 0.002470612917878488, -0.0009707706722736507, -0.0018107636100688819, 0.0021848085120620762, 0.00033699649284658933, -0.0024047533553239863, 0.001280174447059521, 0.0015372070691709217, -0.002309475566762846, 0.000019507746753368365, 0.0022895030076198054, -0.0015581743520317866, -0.0012355037060266722, 0.002383923739636466, -0.0003703386728351112, -0.002127994258477324, 0.001799441774189064, 0.0009123556323573186, -0.002407341610307087, 0.0007082688896382703, 0.0019242724167239096, -0.0019994875920350324, -0.0005748114948746903, 0.002379987528811684, -0.0010264438571449155, -0.0016831990860112127, 0.002154742640797919, 0.00023011609295279633, -0.0023031688829250304, 0.001318517927860441, 0.0014103401515471177, -0.002262618156323367, 0.00011444190350744805, 0.002179200123873544, -0.0015787780180432872, -0.001111840884948932, 0.002321545239227766, -0.0004516809982525733, -0.002011340700783809, 0.0018022525561288475, 0.0007942908968152825, -0.0023309928205821387, 0.000774673604342363, 0.0018037144476631456, -0.0019848036822186855, -0.00046458183681948625, 0.0022914640549012593, -0.0010768855293035546, -0.001561212323786111, 0.002123201040392943, 0.00012976085036572695, -0.002204471506490346, 0.001352305454342585, 0.0012893807223032382, -0.0022151759024296317, 0.00020311715236108967, 0.0020724919224299992, -0.0015955618922983644, -0.000994297826858962, 0.0022594547788796332, -0.000527135374970463, -0.001898901791157277, 0.0018020253971051225, 0.0006824407072985244, -0.0022557721026356717, 0.0008356561984162165, 0.001687895261803982, -0.001967894127232368, -0.0003605459994683174, 0.002204862002351383, -0.0011224546034708483, -0.0014443863389043538, 0.00209026122968471, 0.000035467108323986504, -0.0021084296094975793, 0.0013818413183533556, 0.0011738975633772163, -0.0021671629018463296, 0.0002859690931724172, 0.0019691027549327885, -0.0016087733011967845, -0.0008824376383308963, 0.002197606397572873, -0.0005971031245058602, -0.0017903653004238598, 0.0017989494561159321, 0.000576370652776506, -0.0021815776628847376, 0.0008915784597267819, 0.0015764737099661413, -0.001948889809882967, -0.00026227969451235943, 0.0021200287068330716, -0.0011634690778394544, -0.0013323587880659134, 0.0020559967365549607, -0.00005317227695454427, -0.002014845226028176, 0.0014073964858682345, 0.0010635147912840793, -0.0021185972021166804, 0.0003633814063963649, 0.0018687953986439136, -0.001618633945617973, -0.0007758783501295937, 0.002135965402175972, -0.0006619389156958945, -0.001685461137567442, 0.0017931959250678865, 0.00047569981669818244, -0.0021083255746909683, 0.0009427613181345311, 0.0014691534354073223, -0.0019279111220849192, -0.00016940977630205815, 0.0020368351781634413, -0.0012002122704387478, -0.0012248137397222268, 0.00202047776470404, -0.00013651647314985772, -0.0019235490254383184, 0.0014292136619050008, 0.0009579035592636921, -0.0020695002709836727, 0.00043569366276653953, 0.001771365346154046, -0.0016253437895461563, -0.0006742847164406084, 0.0020745067444230426, -0.0007219577539746558, -0.0015839551094018415, 0.0017849207587636391, 0.00038009282377504964, -0.0020359471799921603, 0.0009894909439981242, 0.001365676265259199, -0.0019050695742461542, -0.00008160667009996195, 0.0019551726527607953, -0.0012329379787892906, -0.0011214748532389085, 0.001983771738528442, -0.00021488374589177447, -0.0018343961478593915, 0.001447511484658983, 0.0008567751719113479, -0.002019896548468802, 0.0005032078018530114, 0.0016766360593019807, -0.0016290842822226544, -0.0005773614024290145, 0.002013213664976714, -0.0007774407854153813, -0.0014856437287264876, 0.0017742669373665874, 0.00028925322595188, -0.0019643869206406894, 0.0010320238174184265, 0.0012658167066468891, -0.0018804691274103874, 0.0000014219314189597886, 0.0018749497155055867, -0.0012618747724835071, -0.0010220996923465805, 0.0019459437495293363, -0.0002885573539850367, -0.0017472627252815226, 0.0014624880173069901, 0.0007598753389370461, -0.001969813065372365, 0.000566193536335285, 0.0015844550012379583, -0.0016300210419184415, -0.00048484729311870027, 0.0019520765530275743, -0.0008286401427990837, -0.0013903498698964202, 0.0017613663505870517, 0.00020291797157738058, -0.0018936005171811504, 0.0010705909643593265, 0.0011693773369627295, -0.001854207300670664, 0.0000799363443662556, 0.0017960898827377916, -0.0012872295828972573, -0.0009264749580349473, 0.001907056922648827, -0.00035779048840501817, -0.0016620429587038317, 0.001474323669667654, 0.0006669793535897883, -0.001919279115500805, 0.0006248928836064243, 0.0014946903005405505, -0.001628306102008192, -0.00039651071375081077, 0.0018910919809583381, -0.0008757830124213647, -0.0012979191136917373, 0.0017463413738590693, 0.00012085275628637397, -0.0018235534303421774, 0.0011054015141280826, 0.0010761849224578208, -0.0018263760952866462, 0.00015416933249637715, 0.0017185295610631023, -0.0013091907195737172, -0.0008344124713795948, 0.0018671727171082043, -0.0004228104308262806, -0.0015786466491036107, 0.0014831836541462444, 0.00057788802630023, -0.0018683259716293739, 0.0006795239841808806, 0.0014072279318752825, -0.0016240797990219882, -0.00031214539556878595, 0.001830261882071285, -0.0009190750631916711, -0.0012082166562675442, 0.0017293061922153358, 0.00004284809591057311, -0.0017542195539626214, 0.0011366457007574793, 0.0009860871336274503, -0.0017970627684169814, 0.00022432985947925006, 0.001642216314245691, -0.001327930416199332, -0.0007457457716733346, 0.001826351173356027, -0.0004838220713928316, -0.00149699710094835, 0.0014892200590753445, 0.0004924242387303168, -0.0018169866372816886, 0.0007302843338157393, 0.0013219693212438892, -0.0016174723661781056, -0.00023156705474276513, 0.0017695928459085012, -0.0009587033508573448, -0.0011211246823504518, 0.0017103679163288886, -0.000031284005997526397, -0.00168558009845759, 0.0011644974061324543, 0.000898949752385777, -0.001766350482777444, 0.000290606275060634, 0.0015671073840997282, -0.0013436069884520951, -0.0006603272222016805, 0.0017846511154448737, -0.0005410108975244563, -0.0014170293332392257, 0.0014925736059850942, 0.0004104300103200481, -0.0017652956280132528, 0.0007773535310728057, 0.001238829302156012, -0.0016086052833111618, -0.00015461047837252308, 0.0017090955107657462, -0.0009948387879096252, -0.001036540122601312, 0.0016896275264316266, -0.00010171289829486418, -0.0016176226320130957, 0.001189116323452439, 0.0008146542866640646, -0.0017343188534058036, 0.0003531690319383286, 0.0014931684219100696, -0.0013563666699271013, -0.0005780255370834515, 0.0017421303163583644, -0.000594545543726887, -0.0013386885457666864, 0.0014933751444065882, 0.0003317639903807532, -0.0017132887771370154, 0.0008208956222785362, 0.001157734363363442, -0.001597592424277101, -0.00008112703202975649, 0.0016487840369649933, -0.0010276382522173776, -0.0009543727305233545, 0.0016671806729631896, -0.0001685917126397121, -0.0015503402530240424, 0.0012106498045692962, 0.0007330959242868982, -0.0017010444086675701, 0.0004121730116589131, 0.0014203723952454243, -0.001366345179697323, -0.0004987236591255297, 0.0016988456323976222, -0.0006445799752655688, -0.0012619287982245323, 0.0014917469276471036, 0.00025629930533829846, -0.0016610030618091631, 0.0008610611103392044, 0.0010786211400413965, -0.0015845410351622792, -0.000010982519468703383, 0.001588675647577039, -0.001057246393718299, -0.0008745434264682446, 0.0016431183573983909, -0.00023205945121234582, -0.0014837308722833128, 0.0012292344428092236, 0.0006541817707340684, -0.0016666009794537994, 0.00046775952319131085, 0.0013486986416117491, -0.0013736690651118201, -0.00042231693169360535, 0.0016548531116204936, -0.000691255364998626, -0.0011867118677229582, 0.0014878037049223893, 0.0001839217037579283, -0.0016084764461720682, 0.000897988681563519, 0.0010014351092190801, -0.0015695525704905121, 0.00005594466207544079, 0.0015287902257491075, -0.0010837971875465027, -0.0007969828659633899, 0.0016175275124054658, -0.0002922427865283852, -0.001417796587393186, 0.001244997433453236, 0.0005778293255747714, -0.0016310600279888451, 0.0005200580262194465, 0.0012781320456144757, -0.0013784568554703108, -0.0003487115180045412, 0.0016102080804333313, -0.0007347017119003167, -0.001113006256507401, 0.0014816536588215432, 0.00011452795221222425, -0.001555747738862027, 0.0009318066948680916, 0.0009261294573486156, -0.0015527234097218567, 0.00011976511736021355, 0.0014691499597705654, -0.0011074152733013508, -0.0007216301972788157, 0.0015904914970633628, -0.0003492576182696596, -0.0013525431350203542, 0.0012580577465150758, 0.0005039651604262515, -0.0015944909256388497, 0.0005691876218906949, 0.0012086623204786329, -0.001380820055893202, -0.00027782302954359274, 0.0015649652117235905, -0.000775039241175309, -0.0010407863267158342, 0.0014733992119670613, 0.00004802444335189228, -0.0015028564626857802, 0.0009626344698867381, 0.0008526640935942874, -0.0015341454724189666, 0.0001805798375757382, 0.0014097790285860056, -0.0011282171131551748, -0.0006484319793396262, 0.0015620905201192163, -0.0004032104241839831, -0.0012879794091583277, 0.001268527140379101, 0.0004325237678249563, -0.0015569611874856697, 0.0006152583463028454, 0.0011402833781384615, -0.0013808640055889756, -0.00020957533199385714, 0.001519178577345335, -0.0008123796189423304, -0.0009700315430348253, 0.001463137722585882, -0.000015674015745723846, -0.0014498427346619374, 0.0009905834041993463, 0.0007810047870023091, -0.0015139067472927804, 0.00023848140533291222, 0.001350703321729989, -0.0011463119959025183, -0.0005773412360601072, 0.0015324020020463702, -0.00045419943573494494, -0.001224117035602225, 0.0012765110399913947, 0.00036344655563953836, -0.0015185366701156613, 0.0006583722959734983, 0.0010729927747988065, -0.0013786886206155957, -0.00014389950244218737, 0.0014729016873055423, -0.0008468270088490601, -0.00090072580738592, 0.0014509620853844676, -0.00007664526144292227, -0.0013967471549454157, 0.0010157579447763196, 0.0007111224094083814, -0.001492091747783318, 0.0002935550464773155, 0.001291950188696543, -0.0011618029094673898, -0.0005083166272212089, 0.0015015008848669618, -0.0005023156640160473, -0.0011609699945039893, 0.001282109299309091, 0.0002966809659106588, -0.0014792817380055296, 0.0006986246096576512, 0.0010067912210918002, -0.0013743890378763932, -0.00008073291602989741, 0.001426187517618701, -0.0008784789934282518, -0.0008328568724239564, 0.0014369612513952473, -0.0001349606997416153, -0.0013436107034080743, 0.0010382564345876098, 0.0006429922689649841, -0.0014687819047443423, 0.0003458795506286303, 0.0012335482135822301, -0.0011747873006890043, -0.00044132171929965787, 0.0014694598972368612, -0.0005476437972705205, -0.001098554284211123, 0.0012854168645082165, 0.00023217970047969882, -0.0014392594030160695, 0.000736104326870615, 0.0009416821477331501, -0.0013680561743604808, -0.00002001844377625695, 0.0013790885284926653, -0.000907427379289603, -0.0007664158227914664, 0.001421220678255177, -0.00019068611930449765, -0.0012904746428636486, 0.0010581718519216787, 0.0005765935216224905, -0.0014440559051002572, 0.0003955280788081392, 0.0011755270115403737, -0.0011853577381612513, -0.000376324342336083, 0.0014363497810924086, -0.0005902629878831081, -0.0010368876207167402, 0.0012865243517791371, 0.00016990003861130614, -0.001398531440791299, 0.0007708951402235449, 0.0008776713190505759, -0.0013597772134087795, 0.00003829625376253735, 0.0013316566742453163, -0.000933758902188878, -0.0007013966148476297, 0.001403822720549702, -0.0002438824068504806, -0.0012373804280932184, 0.0010755924571678465, 0.0005119086499341723, -0.0014179899839424472, 0.0004425688736118345, 0.0011179170441277609, -0.0011936024914149174, -0.00031329602114958666, 0.0014022394851714028, -0.0006302475439148228, -0.000975989167937858, 0.0012855185513734875, 0.0001098032341567941],"x":[100.0,100.60925648702595,101.21851297405189,101.82776946107785,102.4370259481038,103.04628243512974,103.65553892215569,104.26479540918163,104.87405189620759,105.48330838323353,106.09256487025948,106.70182135728543,107.31107784431137,107.92033433133733,108.52959081836327,109.13884730538922,109.74810379241517,110.35736027944112,110.96661676646707,111.57587325349301,112.18512974051896,112.7943862275449,113.40364271457086,114.01289920159681,114.62215568862275,115.2314121756487,115.84066866267464,116.4499251497006,117.05918163672655,117.6684381237525,118.27769461077844,118.88695109780438,119.49620758483034,120.10546407185629,120.71472055888223,121.32397704590818,121.93323353293412,122.54249001996008,123.15174650698603,123.76100299401197,124.37025948103792,124.97951596806388,125.58877245508982,126.19802894211577,126.80728542914171,127.41654191616766,128.02579840319362,128.63505489021955,129.2443113772455,129.85356786427147,130.4628243512974,131.07208083832336,131.6813373253493,132.29059381237525,132.8998502994012,133.50910678642714,134.1183632734531,134.72761976047903,135.336876247505,135.94613273453095,136.55538922155688,137.16464570858284,137.77390219560877,138.38315868263473,138.9924151696607,139.60167165668662,140.21092814371258,140.8201846307385,141.42944111776447,142.03869760479043,142.64795409181636,143.25721057884232,143.86646706586825,144.4757235528942,145.08498003992017,145.6942365269461,146.30349301397206,146.91274950099802,147.52200598802395,148.1312624750499,148.74051896207584,149.3497754491018,149.95903193612776,150.5682884231537,151.17754491017965,151.78680139720558,152.39605788423154,153.0053143712575,153.61457085828343,154.2238273453094,154.83308383233532,155.44234031936128,156.05159680638724,156.66085329341317,157.27010978043913,157.87936626746506,158.48862275449102,159.09787924151698,159.7071357285429,160.31639221556887,160.9256487025948,161.53490518962076,162.14416167664672,162.75341816367265,163.3626746506986,163.97193113772454,164.5811876247505,165.19044411177646,165.7997005988024,166.40895708582835,167.01821357285428,167.62747005988024,168.2367265469062,168.84598303393213,169.4552395209581,170.06449600798402,170.67375249500998,171.28300898203594,171.89226546906187,172.50152195608783,173.11077844311376,173.72003493013972,174.32929141716568,174.9385479041916,175.54780439121757,176.1570608782435,176.76631736526946,177.37557385229542,177.98483033932135,178.5940868263473,179.20334331337327,179.8125998003992,180.42185628742516,181.0311127744511,181.64036926147705,182.249625748503,182.85888223552894,183.4681387225549,184.07739520958083,184.6866516966068,185.29590818363275,185.90516467065868,186.51442115768464,187.12367764471057,187.73293413173653,188.3421906187625,188.95144710578842,189.56070359281438,190.1699600798403,190.77921656686627,191.38847305389223,191.99772954091816,192.60698602794412,193.21624251497005,193.825499001996,194.43475548902197,195.0440119760479,195.65326846307386,196.2625249500998,196.87178143712575,197.4810379241517,198.09029441117764,198.6995508982036,199.30880738522953,199.9180638722555,200.52732035928145,201.13657684630738,201.74583333333334,202.35508982035927,202.96434630738523,203.5736027944112,204.18285928143712,204.79211576846308,205.401372255489,206.01062874251497,206.61988522954093,207.22914171656686,207.83839820359282,208.44765469061878,209.0569111776447,209.66616766467067,210.2754241516966,210.88468063872256,211.49393712574852,212.10319361277445,212.7124500998004,213.32170658682634,213.9309630738523,214.54021956087826,215.1494760479042,215.75873253493015,216.36798902195608,216.97724550898204,217.586501996008,218.19575848303393,218.8050149700599,219.41427145708582,220.02352794411178,220.63278443113774,221.24204091816367,221.85129740518963,222.46055389221556,223.06981037924152,223.67906686626748,224.2883233532934,224.89757984031937,225.5068363273453,226.11609281437126,226.72534930139722,227.33460578842315,227.9438622754491,228.55311876247504,229.162375249501,229.77163173652696,230.3808882235529,230.99014471057885,231.59940119760478,232.20865768463074,232.8179141716567,233.42717065868263,234.0364271457086,234.64568363273452,235.25494011976048,235.86419660678644,236.47345309381237,237.08270958083833,237.69196606786429,238.30122255489022,238.91047904191618,239.5197355289421,240.12899201596807,240.73824850299403,241.34750499001996,241.95676147704592,242.56601796407185,243.1752744510978,243.78453093812377,244.3937874251497,245.00304391217566,245.6123003992016,246.22155688622755,246.8308133732535,247.44006986027944,248.0493263473054,248.65858283433133,249.2678393213573,249.87709580838325,250.48635229540918,251.09560878243514,251.70486526946107,252.31412175648703,252.92337824351299,253.53263473053892,254.14189121756488,254.7511477045908,255.36040419161677,255.96966067864273,256.57891716566866,257.1881736526946,257.7974301397206,258.40668662674653,259.01594311377244,259.6251996007984,260.23445608782436,260.8437125748503,261.4529690618763,262.0622255489022,262.67148203592814,263.2807385229541,263.88999500998005,264.499251497006,265.1085079840319,265.7177644710579,266.32702095808384,266.9362774451098,267.54553393213575,268.15479041916166,268.7640469061876,269.3733033932136,269.98255988023953,270.5918163672655,271.2010728542914,271.81032934131736,272.4195858283433,273.0288423153693,273.63809880239523,274.24735528942114,274.8566117764471,275.46586826347306,276.075124750499,276.684381237525,277.2936377245509,277.90289421157684,278.5121506986028,279.12140718562875,279.7306636726547,280.3399201596806,280.9491766467066,281.55843313373254,282.1676896207585,282.77694610778445,283.38620259481036,283.9954590818363,284.6047155688623,285.21397205588823,285.8232285429142,286.4324850299401,287.04174151696606,287.650998003992,288.260254491018,288.86951097804393,289.47876746506984,290.0880239520958,290.69728043912176,291.3065369261477,291.9157934131737,292.5250499001996,293.13430638722554,293.7435628742515,294.35281936127745,294.9620758483034,295.5713323353293,296.1805888223553,296.78984530938123,297.3991017964072,298.00835828343315,298.61761477045906,299.226871257485,299.836127744511,300.44538423153693,301.0546407185629,301.6638972055888,302.27315369261476,302.8824101796407,303.4916666666667,304.10092315369263,304.71017964071854,305.3194361277445,305.92869261477045,306.5379491017964,307.1472055888224,307.7564620758483,308.36571856287424,308.9749750499002,309.58423153692615,310.1934880239521,310.802744510978,311.412000998004,312.02125748502993,312.6305139720559,313.23977045908185,313.8490269461078,314.4582834331337,315.0675399201597,315.67679640718563,316.2860528942116,316.89530938123755,317.50456586826346,318.1138223552894,318.7230788423154,319.33233532934133,319.9415918163673,320.5508483033932,321.16010479041915,321.7693612774451,322.3786177644711,322.98787425149703,323.59713073852294,324.2063872255489,324.81564371257485,325.4249001996008,326.0341566866268,326.6434131736527,327.25266966067863,327.8619261477046,328.47118263473055,329.0804391217565,329.6896956087824,330.2989520958084,330.90820858283433,331.5174650698603,332.12672155688625,332.73597804391216,333.3452345309381,333.9544910179641,334.56374750499003,335.173003992016,335.7822604790419,336.39151696606785,337.0007734530938,337.6100299401198,338.21928642714573,338.82854291417163,339.4377994011976,340.04705588822355,340.6563123752495,341.2655688622755,341.8748253493014,342.48408183632733,343.0933383233533,343.70259481037925,344.3118512974052,344.9211077844311,345.5303642714571,346.13962075848303,346.748877245509,347.35813373253495,347.96739021956085,348.5766467065868,349.1859031936128,349.79515968063873,350.4044161676647,351.0136726546906,351.62292914171655,352.2321856287425,352.8414421157685,353.45069860279443,354.05995508982033,354.6692115768463,355.27846806387225,355.8877245508982,356.4969810379242,357.1062375249501,357.71549401197603,358.324750499002,358.93400698602795,359.5432634730539,360.1525199600798,360.7617764471058,361.37103293413173,361.9802894211577,362.58954590818365,363.19880239520955,363.8080588822355,364.4173153692615,365.02657185628743,365.6358283433134,366.2450848303393,366.85434131736525,367.4635978043912,368.0728542914172,368.68211077844313,369.29136726546903,369.900623752495,370.50988023952095,371.1191367265469,371.7283932135729,372.3376497005988,372.94690618762473,373.5561626746507,374.16541916167665,374.7746756487026,375.38393213572857,375.9931886227545,376.60244510978043,377.2117015968064,377.82095808383235,378.4302145708583,379.0394710578842,379.6487275449102,380.25798403193613,380.8672405189621,381.47649700598805,382.08575349301395,382.6950099800399,383.3042664670659,383.91352295409183,384.5227794411178,385.1320359281437,385.74129241516965,386.3505489021956,386.9598053892216,387.56906187624753,388.17831836327343,388.7875748502994,389.39683133732535,390.0060878243513,390.61534431137727,391.2246007984032,391.83385728542913,392.4431137724551,393.05237025948105,393.661626746507,394.2708832335329,394.8801397205589,395.48939620758483,396.0986526946108,396.70790918163675,397.31716566866265,397.9264221556886,398.5356786427146,399.14493512974053,399.7541916167665,400.3634481037924,400.97270459081835,401.5819610778443,402.19121756487027,402.80047405189623,403.40973053892213,404.0189870259481,404.62824351297405,405.2375,405.84675648702597,406.4560129740519,407.06526946107783,407.6745259481038,408.28378243512975,408.8930389221557,409.5022954091816,410.1115518962076,410.72080838323353,411.3300648702595,411.93932135728545,412.54857784431135,413.1578343313373,413.7670908183633,414.37634730538923,414.9856037924152,415.5948602794411,416.20411676646705,416.813373253493,417.42262974051897,418.03188622754493,418.64114271457083,419.2503992015968,419.85965568862275,420.4689121756487,421.07816866267467,421.6874251497006,422.29668163672653,422.9059381237525,423.51519461077845,424.1244510978044,424.7337075848303,425.3429640718563,425.95222055888223,426.5614770459082,427.17073353293415,427.77999001996005,428.389246506986,428.998502994012,429.60775948103793,430.2170159680639,430.8262724550898,431.43552894211575,432.0447854291417,432.65404191616767,433.26329840319363,433.87255489021953,434.4818113772455,435.09106786427145,435.7003243512974,436.30958083832337,436.91883732534933,437.52809381237523,438.1373502994012,438.74660678642715,439.3558632734531,439.96511976047907,440.574376247505,441.18363273453093,441.7928892215569,442.40214570858285,443.0114021956088,443.6206586826347,444.22991516966067,444.83917165668663,445.4484281437126,446.05768463073855,446.66694111776445,447.2761976047904,447.88545409181637,448.49471057884233,449.1039670658683,449.7132235528942,450.32248003992015,450.9317365269461,451.54099301397207,452.15024950099803,452.75950598802393,453.3687624750499,453.97801896207585,454.5872754491018,455.19653193612777,455.8057884231537,456.41504491017963,457.0243013972056,457.63355788423155,458.2428143712575,458.8520708582834,459.46132734530937,460.07058383233533,460.6798403193613,461.28909680638725,461.89835329341315,462.5076097804391,463.11686626746507,463.72612275449103,464.335379241517,464.9446357285429,465.55389221556885,466.1631487025948,466.77240518962077,467.38166167664673,467.99091816367263,468.6001746506986,469.20943113772455,469.8186876247505,470.42794411177647,471.0372005988024,471.64645708582833,472.2557135728543,472.86497005988025,473.4742265469062,474.0834830339321,474.69273952095807,475.30199600798403,475.91125249501,476.52050898203595,477.12976546906185,477.7390219560878,478.34827844311377,478.95753493013973,479.5667914171657,480.1760479041916,480.78530439121755,481.3945608782435,482.00381736526947,482.61307385229543,483.22233033932133,483.8315868263473,484.44084331337325,485.0500998003992,485.65935628742517,486.26861277445107,486.87786926147703,487.487125748503,488.09638223552895,488.7056387225549,489.3148952095808,489.92415169660677,490.53340818363273,491.1426646706587,491.75192115768465,492.36117764471055,492.9704341317365,493.57969061876247,494.18894710578843,494.7982035928144,495.4074600798403,496.01671656686625,496.6259730538922,497.23522954091817,497.84448602794413,498.4537425149701,499.062999001996,499.67225548902195,500.2815119760479,500.89076846307387,501.5000249500998,502.10928143712573,502.7185379241517,503.32779441117765,503.9370508982036,504.54630738522957,505.15556387225547,505.76482035928143,506.3740768463074,506.98333333333335,507.5925898203593,508.2018463073852,508.81110279441117,509.42035928143713,510.0296157684631,510.63887225548905,511.24812874251495,511.8573852295409,512.4666417165669,513.0758982035928,513.6851546906188,514.2944111776447,514.9036676646707,515.5129241516966,516.1221806387225,516.7314371257485,517.3406936127744,517.9499500998004,518.5592065868263,519.1684630738523,519.7777195608783,520.3869760479042,520.9962325349302,521.605489021956,522.214745508982,522.824001996008,523.4332584830339,524.0425149700599,524.6517714570858,525.2610279441118,525.8702844311377,526.4795409181637,527.0887974051897,527.6980538922156,528.3073103792415,528.9165668662674,529.5258233532934,530.1350798403193,530.7443363273453,531.3535928143713,531.9628493013972,532.5721057884232,533.1813622754491,533.7906187624751,534.399875249501,535.0091317365269,535.6183882235529,536.2276447105788,536.8369011976048,537.4461576846307,538.0554141716567,538.6646706586827,539.2739271457086,539.8831836327346,540.4924401197604,541.1016966067864,541.7109530938123,542.3202095808383,542.9294660678643,543.5387225548902,544.1479790419162,544.7572355289421,545.3664920159681,545.9757485029941,546.5850049900199,547.1942614770459,547.8035179640718,548.4127744510978,549.0220309381237,549.6312874251497,550.2405439121757,550.8498003992016,551.4590568862276,552.0683133732535,552.6775698602794,553.2868263473054,553.8960828343313,554.5053393213573,555.1145958083832,555.7238522954092,556.3331087824351,556.9423652694611,557.5516217564871,558.160878243513,558.7701347305389,559.3793912175648,559.9886477045908,560.5979041916167,561.2071606786427,561.8164171656687,562.4256736526946,563.0349301397206,563.6441866267465,564.2534431137725,564.8626996007984,565.4719560878243,566.0812125748503,566.6904690618762,567.2997255489022,567.9089820359281,568.5182385229541,569.1274950099801,569.736751497006,570.346007984032,570.9552644710578,571.5645209580838,572.1737774451097,572.7830339321357,573.3922904191617,574.0015469061876,574.6108033932136,575.2200598802395,575.8293163672655,576.4385728542915,577.0478293413173,577.6570858283433,578.2663423153692,578.8755988023952,579.4848552894211,580.0941117764471,580.7033682634731,581.312624750499,581.921881237525,582.531137724551,583.1403942115768,583.7496506986027,584.3589071856287,584.9681636726547,585.5774201596806,586.1866766467066,586.7959331337325,587.4051896207585,588.0144461077845,588.6237025948104,589.2329590818364,589.8422155688622,590.4514720558882,591.0607285429141,591.6699850299401,592.2792415169661,592.888498003992,593.497754491018,594.107010978044,594.7162674650699,595.3255239520959,595.9347804391217,596.5440369261477,597.1532934131736,597.7625499001996,598.3718063872255,598.9810628742515,599.5903193612775,600.1995758483034,600.8088323353294,601.4180888223553,602.0273453093812,602.6366017964071,603.2458582834331,603.8551147704591,604.464371257485,605.073627744511,605.682884231537,606.2921407185629,606.9013972055889,607.5106536926148,608.1199101796407,608.7291666666666,609.3384231536926,609.9476796407185,610.5569361277445,611.1661926147705,611.7754491017964,612.3847055888224,612.9939620758483,613.6032185628743,614.2124750499001,614.8217315369261,615.4309880239521,616.040244510978,616.649500998004,617.25875748503,617.8680139720559,618.4772704590819,619.0865269461078,619.6957834331338,620.3050399201596,620.9142964071856,621.5235528942115,622.1328093812375,622.7420658682635,623.3513223552894,623.9605788423154,624.5698353293413,625.1790918163673,625.7883483033933,626.3976047904191,627.0068612774451,627.616117764471,628.225374251497,628.834630738523,629.4438872255489,630.0531437125749,630.6624001996008,631.2716566866268,631.8809131736527,632.4901696606786,633.0994261477045,633.7086826347305,634.3179391217565,634.9271956087824,635.5364520958084,636.1457085828343,636.7549650698603,637.3642215568863,637.9734780439122,638.5827345309381,639.191991017964,639.80124750499,640.410503992016,641.0197604790419,641.6290169660679,642.2382734530938,642.8475299401198,643.4567864271457,644.0660429141717,644.6752994011975,645.2845558882235,645.8938123752495,646.5030688622754,647.1123253493014,647.7215818363273,648.3308383233533,648.9400948103793,649.5493512974052,650.1586077844312,650.7678642714571,651.377120758483,651.986377245509,652.5956337325349,653.2048902195609,653.8141467065868,654.4234031936128,655.0326596806387,655.6419161676647,656.2511726546907,656.8604291417166,657.4696856287425,658.0789421157684,658.6881986027944,659.2974550898203,659.9067115768463,660.5159680638723,661.1252245508982,661.7344810379242,662.3437375249501,662.9529940119761,663.562250499002,664.1715069860279,664.7807634730539,665.3900199600798,665.9992764471058,666.6085329341317,667.2177894211577,667.8270459081837,668.4363023952096,669.0455588822356,669.6548153692614,670.2640718562874,670.8733283433133,671.4825848303393,672.0918413173653,672.7010978043912,673.3103542914172,673.9196107784431,674.5288672654691,675.1381237524951,675.7473802395209,676.3566367265469,676.9658932135728,677.5751497005988,678.1844061876247,678.7936626746507,679.4029191616767,680.0121756487026,680.6214321357286,681.2306886227545,681.8399451097804,682.4492015968063,683.0584580838323,683.6677145708583,684.2769710578842,684.8862275449102,685.4954840319361,686.1047405189621,686.7139970059881,687.323253493014,687.9325099800399,688.5417664670658,689.1510229540918,689.7602794411177,690.3695359281437,690.9787924151697,691.5880489021956,692.1973053892216,692.8065618762475,693.4158183632735,694.0250748502993,694.6343313373253,695.2435878243513,695.8528443113772,696.4621007984032,697.0713572854291,697.6806137724551,698.2898702594811,698.899126746507,699.508383233533,700.1176397205588,700.7268962075848,701.3361526946107,701.9454091816367,702.5546656686627,703.1639221556886,703.7731786427146,704.3824351297405,704.9916916167665,705.6009481037925,706.2102045908183,706.8194610778443,707.4287175648702,708.0379740518962,708.6472305389221,709.2564870259481,709.8657435129741,710.475]} diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/tiny_negative.json b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/tiny_negative.json index 84a5bd4850bb..019997e30ba7 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/tiny_negative.json +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/tiny_negative.json @@ -1 +1 @@ -{"expected":[1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0],"x":[-1.0e-200,-9.980079681474104e-201,-9.960159362948207e-201,-9.94023904442231e-201,-9.920318725896413e-201,-9.900398407370517e-201,-9.880478088844622e-201,-9.860557770318725e-201,-9.840637451792829e-201,-9.820717133266931e-201,-9.800796814741036e-201,-9.780876496215138e-201,-9.760956177689244e-201,-9.741035859163346e-201,-9.721115540637451e-201,-9.701195222111553e-201,-9.681274903585657e-201,-9.66135458505976e-201,-9.641434266533866e-201,-9.621513948007968e-201,-9.601593629482072e-201,-9.581673310956175e-201,-9.561752992430278e-201,-9.541832673904382e-201,-9.521912355378486e-201,-9.50199203685259e-201,-9.482071718326692e-201,-9.462151399800797e-201,-9.4422310812749e-201,-9.422310762749003e-201,-9.402390444223107e-201,-9.382470125697212e-201,-9.362549807171315e-201,-9.342629488645418e-201,-9.32270917011952e-201,-9.302788851593624e-201,-9.28286853306773e-201,-9.262948214541833e-201,-9.243027896015936e-201,-9.22310757749004e-201,-9.203187258964143e-201,-9.183266940438247e-201,-9.163346621912351e-201,-9.143426303386455e-201,-9.123505984860558e-201,-9.103585666334662e-201,-9.083665347808764e-201,-9.063745029282868e-201,-9.043824710756973e-201,-9.023904392231076e-201,-9.00398407370518e-201,-8.984063755179282e-201,-8.964143436653386e-201,-8.94422311812749e-201,-8.924302799601593e-201,-8.904382481075697e-201,-8.8844621625498e-201,-8.864541844023904e-201,-8.844621525498008e-201,-8.82470120697211e-201,-8.804780888446214e-201,-8.78486056992032e-201,-8.764940251394423e-201,-8.745019932868526e-201,-8.72509961434263e-201,-8.705179295816732e-201,-8.685258977290837e-201,-8.66533865876494e-201,-8.645418340239044e-201,-8.625498021713147e-201,-8.605577703187252e-201,-8.585657384661354e-201,-8.565737066135457e-201,-8.545816747609562e-201,-8.525896429083666e-201,-8.50597611055777e-201,-8.486055792031872e-201,-8.466135473505975e-201,-8.446215154980078e-201,-8.426294836454184e-201,-8.406374517928287e-201,-8.38645419940239e-201,-8.366533880876493e-201,-8.346613562350598e-201,-8.3266932438247e-201,-8.306772925298806e-201,-8.286852606772908e-201,-8.266932288247013e-201,-8.247011969721115e-201,-8.227091651195219e-201,-8.207171332669321e-201,-8.187251014143427e-201,-8.16733069561753e-201,-8.147410377091634e-201,-8.127490058565737e-201,-8.10756974003984e-201,-8.087649421513944e-201,-8.067729102988048e-201,-8.047808784462152e-201,-8.027888465936254e-201,-8.007968147410359e-201,-7.988047828884461e-201,-7.968127510358565e-201,-7.948207191832669e-201,-7.928286873306773e-201,-7.908366554780877e-201,-7.88844623625498e-201,-7.868525917729083e-201,-7.848605599203186e-201,-7.828685280677292e-201,-7.808764962151395e-201,-7.788844643625498e-201,-7.768924325099601e-201,-7.749004006573705e-201,-7.729083688047809e-201,-7.709163369521913e-201,-7.689243050996017e-201,-7.669322732470119e-201,-7.649402413944224e-201,-7.629482095418326e-201,-7.609561776892429e-201,-7.589641458366532e-201,-7.569721139840638e-201,-7.549800821314741e-201,-7.529880502788844e-201,-7.509960184262948e-201,-7.490039865737051e-201,-7.470119547211155e-201,-7.450199228685259e-201,-7.430278910159363e-201,-7.410358591633466e-201,-7.39043827310757e-201,-7.370517954581672e-201,-7.350597636055776e-201,-7.33067731752988e-201,-7.310756999003985e-201,-7.290836680478088e-201,-7.270916361952191e-201,-7.250996043426294e-201,-7.231075724900399e-201,-7.211155406374503e-201,-7.191235087848606e-201,-7.171314769322709e-201,-7.151394450796814e-201,-7.131474132270916e-201,-7.111553813745019e-201,-7.091633495219124e-201,-7.071713176693226e-201,-7.051792858167331e-201,-7.031872539641434e-201,-7.011952221115537e-201,-6.99203190258964e-201,-6.972111584063746e-201,-6.952191265537849e-201,-6.932270947011952e-201,-6.912350628486055e-201,-6.89243030996016e-201,-6.872509991434262e-201,-6.852589672908367e-201,-6.83266935438247e-201,-6.812749035856574e-201,-6.792828717330677e-201,-6.772908398804781e-201,-6.752988080278883e-201,-6.733067761752989e-201,-6.713147443227092e-201,-6.693227124701196e-201,-6.673306806175298e-201,-6.653386487649402e-201,-6.633466169123506e-201,-6.61354585059761e-201,-6.593625532071714e-201,-6.573705213545817e-201,-6.55378489501992e-201,-6.533864576494023e-201,-6.513944257968128e-201,-6.494023939442231e-201,-6.474103620916335e-201,-6.4541833023904385e-201,-6.434262983864542e-201,-6.4143426653386446e-201,-6.394422346812749e-201,-6.374502028286852e-201,-6.354581709760956e-201,-6.3346613912350596e-201,-6.3147410727091634e-201,-6.2948207541832664e-201,-6.27490043565737e-201,-6.254980117131474e-201,-6.235059798605577e-201,-6.2151394800796815e-201,-6.1952191615537845e-201,-6.175298843027888e-201,-6.155378524501992e-201,-6.135458205976096e-201,-6.115537887450199e-201,-6.0956175689243034e-201,-6.0756972503984064e-201,-6.05577693187251e-201,-6.035856613346614e-201,-6.015936294820718e-201,-5.996015976294821e-201,-5.9760956577689245e-201,-5.956175339243028e-201,-5.9362550207171306e-201,-5.916334702191235e-201,-5.896414383665338e-201,-5.876494065139442e-201,-5.856573746613546e-201,-5.8366534280876495e-201,-5.8167331095617525e-201,-5.796812791035857e-201,-5.77689247250996e-201,-5.756972153984064e-201,-5.7370518354581676e-201,-5.7171315169322706e-201,-5.6972111984063744e-201,-5.6772908798804774e-201,-5.657370561354582e-201,-5.637450242828685e-201,-5.617529924302789e-201,-5.5976096057768925e-201,-5.577689287250996e-201,-5.557768968725099e-201,-5.537848650199204e-201,-5.517928331673307e-201,-5.4980080131474106e-201,-5.4780876946215144e-201,-5.458167376095617e-201,-5.4382470575697204e-201,-5.418326739043824e-201,-5.398406420517928e-201,-5.378486101992031e-201,-5.3585657834661355e-201,-5.3386454649402386e-201,-5.318725146414342e-201,-5.298804827888446e-201,-5.27888450936255e-201,-5.258964190836653e-201,-5.2390438723107574e-201,-5.2191235537848604e-201,-5.199203235258964e-201,-5.179282916733068e-201,-5.159362598207171e-201,-5.139442279681275e-201,-5.1195219611553785e-201,-5.099601642629482e-201,-5.079681324103585e-201,-5.05976100557769e-201,-5.039840687051793e-201,-5.019920368525897e-201,-5.00000005e-201,-4.9800797314741035e-201,-4.9601594129482065e-201,-4.940239094422311e-201,-4.920318775896414e-201,-4.900398457370517e-201,-4.8804781388446216e-201,-4.8605578203187246e-201,-4.8406375017928284e-201,-4.820717183266932e-201,-4.800796864741036e-201,-4.780876546215139e-201,-4.7609562276892435e-201,-4.7410359091633465e-201,-4.72111559063745e-201,-4.701195272111554e-201,-4.681274953585658e-201,-4.661354635059761e-201,-4.641434316533865e-201,-4.6215139980079684e-201,-4.6015936794820714e-201,-4.581673360956176e-201,-4.561753042430279e-201,-4.541832723904383e-201,-4.521912405378486e-201,-4.5019920868525895e-201,-4.4820717683266926e-201,-4.462151449800796e-201,-4.4422311312749e-201,-4.422310812749004e-201,-4.402390494223107e-201,-4.3824701756972114e-201,-4.3625498571713144e-201,-4.3426295386454175e-201,-4.322709220119522e-201,-4.302788901593625e-201,-4.282868583067729e-201,-4.2629482645418326e-201,-4.243027946015936e-201,-4.2231076274900394e-201,-4.203187308964144e-201,-4.183266990438247e-201,-4.163346671912351e-201,-4.1434263533864544e-201,-4.123506034860558e-201,-4.103585716334661e-201,-4.083665397808766e-201,-4.063745079282869e-201,-4.043824760756971e-201,-4.0239044422310756e-201,-4.0039841237051786e-201,-3.9840638051792824e-201,-3.964143486653386e-201,-3.94422316812749e-201,-3.924302849601593e-201,-3.9043825310756975e-201,-3.8844622125498005e-201,-3.864541894023904e-201,-3.844621575498008e-201,-3.824701256972112e-201,-3.804780938446215e-201,-3.7848606199203186e-201,-3.7649403013944224e-201,-3.7450199828685254e-201,-3.72509966434263e-201,-3.705179345816733e-201,-3.685259027290837e-201,-3.6653387087649405e-201,-3.645418390239044e-201,-3.625498071713147e-201,-3.605577753187252e-201,-3.585657434661355e-201,-3.565737116135458e-201,-3.545816797609562e-201,-3.525896479083665e-201,-3.5059761605577685e-201,-3.486055842031872e-201,-3.466135523505976e-201,-3.446215204980079e-201,-3.4262948864541835e-201,-3.4063745679282866e-201,-3.38645424940239e-201,-3.366533930876494e-201,-3.346613612350598e-201,-3.326693293824701e-201,-3.306772975298805e-201,-3.2868526567729085e-201,-3.266932338247012e-201,-3.2470120197211156e-201,-3.2270917011952194e-201,-3.2071713826693224e-201,-3.1872510641434262e-201,-3.16733074561753e-201,-3.1474104270916334e-201,-3.127490108565737e-201,-3.1075697900398405e-201,-3.087649471513944e-201,-3.0677291529880477e-201,-3.0478088344621515e-201,-3.027888515936255e-201,-3.0079681974103587e-201,-2.9880478788844624e-201,-2.9681275603585655e-201,-2.9482072418326692e-201,-2.928286923306773e-201,-2.9083666047808764e-201,-2.88844628625498e-201,-2.868525967729084e-201,-2.848605649203187e-201,-2.8286853306772907e-201,-2.808765012151394e-201,-2.788844693625498e-201,-2.7689243750996017e-201,-2.749004056573705e-201,-2.7290837380478085e-201,-2.7091634195219123e-201,-2.6892431009960157e-201,-2.6693227824701194e-201,-2.6494024639442232e-201,-2.6294821454183266e-201,-2.6095618268924304e-201,-2.589641508366534e-201,-2.569721189840637e-201,-2.549800871314741e-201,-2.5298805527888447e-201,-2.509960234262948e-201,-2.4900399157370515e-201,-2.4701195972111553e-201,-2.4501992786852587e-201,-2.4302789601593625e-201,-2.4103586416334662e-201,-2.3904383231075696e-201,-2.3705180045816734e-201,-2.350597686055777e-201,-2.3306773675298806e-201,-2.3107570490039843e-201,-2.2908367304780877e-201,-2.270916411952191e-201,-2.2509960934262946e-201,-2.231075774900398e-201,-2.2111554563745017e-201,-2.1912351378486055e-201,-2.171314819322709e-201,-2.1513945007968127e-201,-2.1314741822709164e-201,-2.11155386374502e-201,-2.0916335452191236e-201,-2.0717132266932274e-201,-2.0517929081673308e-201,-2.0318725896414345e-201,-2.0119522711155376e-201,-1.992031952589641e-201,-1.9721116340637448e-201,-1.9521913155378485e-201,-1.932270997011952e-201,-1.9123506784860557e-201,-1.8924303599601595e-201,-1.872510041434263e-201,-1.8525897229083666e-201,-1.8326694043824704e-201,-1.8127490858565738e-201,-1.7928287673306776e-201,-1.772908448804781e-201,-1.7529881302788844e-201,-1.7330678117529878e-201,-1.7131474932270916e-201,-1.693227174701195e-201,-1.6733068561752987e-201,-1.6533865376494025e-201,-1.633466219123506e-201,-1.6135459005976097e-201,-1.593625582071713e-201,-1.5737052635458167e-201,-1.5537849450199204e-201,-1.5338646264940238e-201,-1.5139443079681274e-201,-1.4940239894422312e-201,-1.4741036709163346e-201,-1.4541833523904382e-201,-1.434263033864542e-201,-1.4143427153386455e-201,-1.394422396812749e-201,-1.3745020782868525e-201,-1.3545817597609561e-201,-1.3346614412350597e-201,-1.3147411227091633e-201,-1.294820804183267e-201,-1.2749004856573706e-201,-1.254980167131474e-201,-1.2350598486055776e-201,-1.2151395300796812e-201,-1.1952192115537848e-201,-1.1752988930278886e-201,-1.1553785745019921e-201,-1.1354582559760957e-201,-1.115537937450199e-201,-1.0956176189243027e-201,-1.0756973003984063e-201,-1.0557769818725099e-201,-1.0358566633466137e-201,-1.0159363448207172e-201,-9.960160262948206e-202,-9.760957077689242e-202,-9.561753892430278e-202,-9.362550707171314e-202,-9.163347521912352e-202,-8.964144336653388e-202,-8.764941151394422e-202,-8.56573796613546e-202,-8.366534780876493e-202,-8.16733159561753e-202,-7.968128410358565e-202,-7.768925225099602e-202,-7.569722039840638e-202,-7.370518854581673e-202,-7.171315669322709e-202,-6.972112484063745e-202,-6.77290929880478e-202,-6.573706113545816e-202,-6.374502928286853e-202,-6.175299743027889e-202,-5.976096557768924e-202,-5.77689337250996e-202,-5.577690187250995e-202,-5.378487001992031e-202,-5.179283816733068e-202,-4.980080631474103e-202,-4.78087744621514e-202,-4.581674260956176e-202,-4.3824710756972105e-202,-4.183267890438247e-202,-3.9840647051792827e-202,-3.7848615199203186e-202,-3.585658334661355e-202,-3.3864551494023903e-202,-3.1872519641434266e-202,-2.988048778884462e-202,-2.7888455936254974e-202,-2.589642408366534e-202,-2.3904392231075696e-202,-2.1912360378486054e-202,-1.9920328525896413e-202,-1.7928296673306774e-202,-1.5936264820717132e-202,-1.3944232968127489e-202,-1.195220111553785e-202,-9.960169262948207e-203,-7.968137410358565e-203,-5.976105557768924e-203,-3.984073705179283e-203,-1.9920418525896415e-203,-1.0e-208]} +{"expected":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],"x":[-1.0e-200,-9.980079681474104e-201,-9.960159362948207e-201,-9.94023904442231e-201,-9.920318725896413e-201,-9.900398407370517e-201,-9.880478088844622e-201,-9.860557770318725e-201,-9.840637451792829e-201,-9.820717133266931e-201,-9.800796814741036e-201,-9.780876496215138e-201,-9.760956177689244e-201,-9.741035859163346e-201,-9.721115540637451e-201,-9.701195222111553e-201,-9.681274903585657e-201,-9.66135458505976e-201,-9.641434266533866e-201,-9.621513948007968e-201,-9.601593629482072e-201,-9.581673310956175e-201,-9.561752992430278e-201,-9.541832673904382e-201,-9.521912355378486e-201,-9.50199203685259e-201,-9.482071718326692e-201,-9.462151399800797e-201,-9.4422310812749e-201,-9.422310762749003e-201,-9.402390444223107e-201,-9.382470125697212e-201,-9.362549807171315e-201,-9.342629488645418e-201,-9.32270917011952e-201,-9.302788851593624e-201,-9.28286853306773e-201,-9.262948214541833e-201,-9.243027896015936e-201,-9.22310757749004e-201,-9.203187258964143e-201,-9.183266940438247e-201,-9.163346621912351e-201,-9.143426303386455e-201,-9.123505984860558e-201,-9.103585666334662e-201,-9.083665347808764e-201,-9.063745029282868e-201,-9.043824710756973e-201,-9.023904392231076e-201,-9.00398407370518e-201,-8.984063755179282e-201,-8.964143436653386e-201,-8.94422311812749e-201,-8.924302799601593e-201,-8.904382481075697e-201,-8.8844621625498e-201,-8.864541844023904e-201,-8.844621525498008e-201,-8.82470120697211e-201,-8.804780888446214e-201,-8.78486056992032e-201,-8.764940251394423e-201,-8.745019932868526e-201,-8.72509961434263e-201,-8.705179295816732e-201,-8.685258977290837e-201,-8.66533865876494e-201,-8.645418340239044e-201,-8.625498021713147e-201,-8.605577703187252e-201,-8.585657384661354e-201,-8.565737066135457e-201,-8.545816747609562e-201,-8.525896429083666e-201,-8.50597611055777e-201,-8.486055792031872e-201,-8.466135473505975e-201,-8.446215154980078e-201,-8.426294836454184e-201,-8.406374517928287e-201,-8.38645419940239e-201,-8.366533880876493e-201,-8.346613562350598e-201,-8.3266932438247e-201,-8.306772925298806e-201,-8.286852606772908e-201,-8.266932288247013e-201,-8.247011969721115e-201,-8.227091651195219e-201,-8.207171332669321e-201,-8.187251014143427e-201,-8.16733069561753e-201,-8.147410377091634e-201,-8.127490058565737e-201,-8.10756974003984e-201,-8.087649421513944e-201,-8.067729102988048e-201,-8.047808784462152e-201,-8.027888465936254e-201,-8.007968147410359e-201,-7.988047828884461e-201,-7.968127510358565e-201,-7.948207191832669e-201,-7.928286873306773e-201,-7.908366554780877e-201,-7.88844623625498e-201,-7.868525917729083e-201,-7.848605599203186e-201,-7.828685280677292e-201,-7.808764962151395e-201,-7.788844643625498e-201,-7.768924325099601e-201,-7.749004006573705e-201,-7.729083688047809e-201,-7.709163369521913e-201,-7.689243050996017e-201,-7.669322732470119e-201,-7.649402413944224e-201,-7.629482095418326e-201,-7.609561776892429e-201,-7.589641458366532e-201,-7.569721139840638e-201,-7.549800821314741e-201,-7.529880502788844e-201,-7.509960184262948e-201,-7.490039865737051e-201,-7.470119547211155e-201,-7.450199228685259e-201,-7.430278910159363e-201,-7.410358591633466e-201,-7.39043827310757e-201,-7.370517954581672e-201,-7.350597636055776e-201,-7.33067731752988e-201,-7.310756999003985e-201,-7.290836680478088e-201,-7.270916361952191e-201,-7.250996043426294e-201,-7.231075724900399e-201,-7.211155406374503e-201,-7.191235087848606e-201,-7.171314769322709e-201,-7.151394450796814e-201,-7.131474132270916e-201,-7.111553813745019e-201,-7.091633495219124e-201,-7.071713176693226e-201,-7.051792858167331e-201,-7.031872539641434e-201,-7.011952221115537e-201,-6.99203190258964e-201,-6.972111584063746e-201,-6.952191265537849e-201,-6.932270947011952e-201,-6.912350628486055e-201,-6.89243030996016e-201,-6.872509991434262e-201,-6.852589672908367e-201,-6.83266935438247e-201,-6.812749035856574e-201,-6.792828717330677e-201,-6.772908398804781e-201,-6.752988080278883e-201,-6.733067761752989e-201,-6.713147443227092e-201,-6.693227124701196e-201,-6.673306806175298e-201,-6.653386487649402e-201,-6.633466169123506e-201,-6.61354585059761e-201,-6.593625532071714e-201,-6.573705213545817e-201,-6.55378489501992e-201,-6.533864576494023e-201,-6.513944257968128e-201,-6.494023939442231e-201,-6.474103620916335e-201,-6.4541833023904385e-201,-6.434262983864542e-201,-6.4143426653386446e-201,-6.394422346812749e-201,-6.374502028286852e-201,-6.354581709760956e-201,-6.3346613912350596e-201,-6.3147410727091634e-201,-6.2948207541832664e-201,-6.27490043565737e-201,-6.254980117131474e-201,-6.235059798605577e-201,-6.2151394800796815e-201,-6.1952191615537845e-201,-6.175298843027888e-201,-6.155378524501992e-201,-6.135458205976096e-201,-6.115537887450199e-201,-6.0956175689243034e-201,-6.0756972503984064e-201,-6.05577693187251e-201,-6.035856613346614e-201,-6.015936294820718e-201,-5.996015976294821e-201,-5.9760956577689245e-201,-5.956175339243028e-201,-5.9362550207171306e-201,-5.916334702191235e-201,-5.896414383665338e-201,-5.876494065139442e-201,-5.856573746613546e-201,-5.8366534280876495e-201,-5.8167331095617525e-201,-5.796812791035857e-201,-5.77689247250996e-201,-5.756972153984064e-201,-5.7370518354581676e-201,-5.7171315169322706e-201,-5.6972111984063744e-201,-5.6772908798804774e-201,-5.657370561354582e-201,-5.637450242828685e-201,-5.617529924302789e-201,-5.5976096057768925e-201,-5.577689287250996e-201,-5.557768968725099e-201,-5.537848650199204e-201,-5.517928331673307e-201,-5.4980080131474106e-201,-5.4780876946215144e-201,-5.458167376095617e-201,-5.4382470575697204e-201,-5.418326739043824e-201,-5.398406420517928e-201,-5.378486101992031e-201,-5.3585657834661355e-201,-5.3386454649402386e-201,-5.318725146414342e-201,-5.298804827888446e-201,-5.27888450936255e-201,-5.258964190836653e-201,-5.2390438723107574e-201,-5.2191235537848604e-201,-5.199203235258964e-201,-5.179282916733068e-201,-5.159362598207171e-201,-5.139442279681275e-201,-5.1195219611553785e-201,-5.099601642629482e-201,-5.079681324103585e-201,-5.05976100557769e-201,-5.039840687051793e-201,-5.019920368525897e-201,-5.00000005e-201,-4.9800797314741035e-201,-4.9601594129482065e-201,-4.940239094422311e-201,-4.920318775896414e-201,-4.900398457370517e-201,-4.8804781388446216e-201,-4.8605578203187246e-201,-4.8406375017928284e-201,-4.820717183266932e-201,-4.800796864741036e-201,-4.780876546215139e-201,-4.7609562276892435e-201,-4.7410359091633465e-201,-4.72111559063745e-201,-4.701195272111554e-201,-4.681274953585658e-201,-4.661354635059761e-201,-4.641434316533865e-201,-4.6215139980079684e-201,-4.6015936794820714e-201,-4.581673360956176e-201,-4.561753042430279e-201,-4.541832723904383e-201,-4.521912405378486e-201,-4.5019920868525895e-201,-4.4820717683266926e-201,-4.462151449800796e-201,-4.4422311312749e-201,-4.422310812749004e-201,-4.402390494223107e-201,-4.3824701756972114e-201,-4.3625498571713144e-201,-4.3426295386454175e-201,-4.322709220119522e-201,-4.302788901593625e-201,-4.282868583067729e-201,-4.2629482645418326e-201,-4.243027946015936e-201,-4.2231076274900394e-201,-4.203187308964144e-201,-4.183266990438247e-201,-4.163346671912351e-201,-4.1434263533864544e-201,-4.123506034860558e-201,-4.103585716334661e-201,-4.083665397808766e-201,-4.063745079282869e-201,-4.043824760756971e-201,-4.0239044422310756e-201,-4.0039841237051786e-201,-3.9840638051792824e-201,-3.964143486653386e-201,-3.94422316812749e-201,-3.924302849601593e-201,-3.9043825310756975e-201,-3.8844622125498005e-201,-3.864541894023904e-201,-3.844621575498008e-201,-3.824701256972112e-201,-3.804780938446215e-201,-3.7848606199203186e-201,-3.7649403013944224e-201,-3.7450199828685254e-201,-3.72509966434263e-201,-3.705179345816733e-201,-3.685259027290837e-201,-3.6653387087649405e-201,-3.645418390239044e-201,-3.625498071713147e-201,-3.605577753187252e-201,-3.585657434661355e-201,-3.565737116135458e-201,-3.545816797609562e-201,-3.525896479083665e-201,-3.5059761605577685e-201,-3.486055842031872e-201,-3.466135523505976e-201,-3.446215204980079e-201,-3.4262948864541835e-201,-3.4063745679282866e-201,-3.38645424940239e-201,-3.366533930876494e-201,-3.346613612350598e-201,-3.326693293824701e-201,-3.306772975298805e-201,-3.2868526567729085e-201,-3.266932338247012e-201,-3.2470120197211156e-201,-3.2270917011952194e-201,-3.2071713826693224e-201,-3.1872510641434262e-201,-3.16733074561753e-201,-3.1474104270916334e-201,-3.127490108565737e-201,-3.1075697900398405e-201,-3.087649471513944e-201,-3.0677291529880477e-201,-3.0478088344621515e-201,-3.027888515936255e-201,-3.0079681974103587e-201,-2.9880478788844624e-201,-2.9681275603585655e-201,-2.9482072418326692e-201,-2.928286923306773e-201,-2.9083666047808764e-201,-2.88844628625498e-201,-2.868525967729084e-201,-2.848605649203187e-201,-2.8286853306772907e-201,-2.808765012151394e-201,-2.788844693625498e-201,-2.7689243750996017e-201,-2.749004056573705e-201,-2.7290837380478085e-201,-2.7091634195219123e-201,-2.6892431009960157e-201,-2.6693227824701194e-201,-2.6494024639442232e-201,-2.6294821454183266e-201,-2.6095618268924304e-201,-2.589641508366534e-201,-2.569721189840637e-201,-2.549800871314741e-201,-2.5298805527888447e-201,-2.509960234262948e-201,-2.4900399157370515e-201,-2.4701195972111553e-201,-2.4501992786852587e-201,-2.4302789601593625e-201,-2.4103586416334662e-201,-2.3904383231075696e-201,-2.3705180045816734e-201,-2.350597686055777e-201,-2.3306773675298806e-201,-2.3107570490039843e-201,-2.2908367304780877e-201,-2.270916411952191e-201,-2.2509960934262946e-201,-2.231075774900398e-201,-2.2111554563745017e-201,-2.1912351378486055e-201,-2.171314819322709e-201,-2.1513945007968127e-201,-2.1314741822709164e-201,-2.11155386374502e-201,-2.0916335452191236e-201,-2.0717132266932274e-201,-2.0517929081673308e-201,-2.0318725896414345e-201,-2.0119522711155376e-201,-1.992031952589641e-201,-1.9721116340637448e-201,-1.9521913155378485e-201,-1.932270997011952e-201,-1.9123506784860557e-201,-1.8924303599601595e-201,-1.872510041434263e-201,-1.8525897229083666e-201,-1.8326694043824704e-201,-1.8127490858565738e-201,-1.7928287673306776e-201,-1.772908448804781e-201,-1.7529881302788844e-201,-1.7330678117529878e-201,-1.7131474932270916e-201,-1.693227174701195e-201,-1.6733068561752987e-201,-1.6533865376494025e-201,-1.633466219123506e-201,-1.6135459005976097e-201,-1.593625582071713e-201,-1.5737052635458167e-201,-1.5537849450199204e-201,-1.5338646264940238e-201,-1.5139443079681274e-201,-1.4940239894422312e-201,-1.4741036709163346e-201,-1.4541833523904382e-201,-1.434263033864542e-201,-1.4143427153386455e-201,-1.394422396812749e-201,-1.3745020782868525e-201,-1.3545817597609561e-201,-1.3346614412350597e-201,-1.3147411227091633e-201,-1.294820804183267e-201,-1.2749004856573706e-201,-1.254980167131474e-201,-1.2350598486055776e-201,-1.2151395300796812e-201,-1.1952192115537848e-201,-1.1752988930278886e-201,-1.1553785745019921e-201,-1.1354582559760957e-201,-1.115537937450199e-201,-1.0956176189243027e-201,-1.0756973003984063e-201,-1.0557769818725099e-201,-1.0358566633466137e-201,-1.0159363448207172e-201,-9.960160262948206e-202,-9.760957077689242e-202,-9.561753892430278e-202,-9.362550707171314e-202,-9.163347521912352e-202,-8.964144336653388e-202,-8.764941151394422e-202,-8.56573796613546e-202,-8.366534780876493e-202,-8.16733159561753e-202,-7.968128410358565e-202,-7.768925225099602e-202,-7.569722039840638e-202,-7.370518854581673e-202,-7.171315669322709e-202,-6.972112484063745e-202,-6.77290929880478e-202,-6.573706113545816e-202,-6.374502928286853e-202,-6.175299743027889e-202,-5.976096557768924e-202,-5.77689337250996e-202,-5.577690187250995e-202,-5.378487001992031e-202,-5.179283816733068e-202,-4.980080631474103e-202,-4.78087744621514e-202,-4.581674260956176e-202,-4.3824710756972105e-202,-4.183267890438247e-202,-3.9840647051792827e-202,-3.7848615199203186e-202,-3.585658334661355e-202,-3.3864551494023903e-202,-3.1872519641434266e-202,-2.988048778884462e-202,-2.7888455936254974e-202,-2.589642408366534e-202,-2.3904392231075696e-202,-2.1912360378486054e-202,-1.9920328525896413e-202,-1.7928296673306774e-202,-1.5936264820717132e-202,-1.3944232968127489e-202,-1.195220111553785e-202,-9.960169262948207e-203,-7.968137410358565e-203,-5.976105557768924e-203,-3.984073705179283e-203,-1.9920418525896415e-203,-1.0e-208]} diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/tiny_positive.json b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/tiny_positive.json index b843705f1547..644e9b177d0f 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/tiny_positive.json +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/tiny_positive.json @@ -1 +1 @@ -{"expected":[1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0000000000000002,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0000000000000002],"x":[1.0e-300,9.980079681474106e-301,9.960159362948207e-301,9.94023904442231e-301,9.920318725896415e-301,9.900398407370519e-301,9.880478088844623e-301,9.860557770318725e-301,9.840637451792829e-301,9.820717133266933e-301,9.800796814741037e-301,9.780876496215141e-301,9.760956177689242e-301,9.741035859163347e-301,9.721115540637451e-301,9.701195222111553e-301,9.681274903585657e-301,9.661354585059761e-301,9.641434266533864e-301,9.621513948007968e-301,9.601593629482072e-301,9.581673310956176e-301,9.56175299243028e-301,9.541832673904382e-301,9.521912355378486e-301,9.501992036852588e-301,9.482071718326694e-301,9.462151399800798e-301,9.442231081274899e-301,9.422310762749004e-301,9.402390444223108e-301,9.38247012569721e-301,9.362549807171316e-301,9.342629488645419e-301,9.322709170119521e-301,9.302788851593627e-301,9.282868533067729e-301,9.262948214541833e-301,9.243027896015937e-301,9.22310757749004e-301,9.203187258964143e-301,9.183266940438247e-301,9.163346621912351e-301,9.143426303386455e-301,9.123505984860558e-301,9.103585666334662e-301,9.083665347808764e-301,9.06374502928287e-301,9.043824710756974e-301,9.023904392231074e-301,9.00398407370518e-301,8.984063755179282e-301,8.964143436653386e-301,8.944223118127492e-301,8.924302799601594e-301,8.904382481075697e-301,8.884462162549802e-301,8.864541844023905e-301,8.844621525498009e-301,8.824701206972113e-301,8.804780888446215e-301,8.784860569920319e-301,8.764940251394421e-301,8.745019932868527e-301,8.72509961434263e-301,8.705179295816731e-301,8.685258977290837e-301,8.66533865876494e-301,8.645418340239043e-301,8.625498021713149e-301,8.605577703187251e-301,8.585657384661354e-301,8.565737066135458e-301,8.545816747609562e-301,8.525896429083666e-301,8.50597611055777e-301,8.486055792031872e-301,8.466135473505976e-301,8.44621515498008e-301,8.426294836454184e-301,8.406374517928286e-301,8.38645419940239e-301,8.366533880876494e-301,8.346613562350597e-301,8.326693243824702e-301,8.306772925298805e-301,8.286852606772909e-301,8.266932288247013e-301,8.247011969721115e-301,8.227091651195219e-301,8.207171332669325e-301,8.187251014143427e-301,8.16733069561753e-301,8.147410377091633e-301,8.127490058565737e-301,8.107569740039841e-301,8.087649421513945e-301,8.067729102988048e-301,8.04780878446215e-301,8.027888465936256e-301,8.00796814741036e-301,7.988047828884462e-301,7.968127510358568e-301,7.94820719183267e-301,7.928286873306772e-301,7.908366554780878e-301,7.88844623625498e-301,7.868525917729084e-301,7.848605599203187e-301,7.82868528067729e-301,7.808764962151395e-301,7.788844643625499e-301,7.768924325099603e-301,7.749004006573705e-301,7.729083688047807e-301,7.709163369521913e-301,7.689243050996017e-301,7.669322732470119e-301,7.649402413944225e-301,7.629482095418325e-301,7.609561776892431e-301,7.589641458366533e-301,7.569721139840637e-301,7.549800821314741e-301,7.529880502788844e-301,7.509960184262948e-301,7.490039865737053e-301,7.470119547211156e-301,7.450199228685259e-301,7.430278910159363e-301,7.410358591633465e-301,7.39043827310757e-301,7.370517954581674e-301,7.350597636055776e-301,7.33067731752988e-301,7.310756999003985e-301,7.2908366804780875e-301,7.2709163619521915e-301,7.250996043426295e-301,7.231075724900399e-301,7.211155406374503e-301,7.191235087848606e-301,7.171314769322709e-301,7.151394450796814e-301,7.131474132270916e-301,7.11155381374502e-301,7.091633495219123e-301,7.0717131766932264e-301,7.051792858167331e-301,7.0318725396414344e-301,7.011952221115538e-301,6.9920319025896416e-301,6.9721115840637456e-301,6.952191265537849e-301,6.932270947011952e-301,6.912350628486056e-301,6.89243030996016e-301,6.872509991434263e-301,6.852589672908367e-301,6.83266935438247e-301,6.812749035856574e-301,6.792828717330678e-301,6.7729083988047805e-301,6.7529880802788845e-301,6.7330677617529885e-301,6.713147443227092e-301,6.693227124701196e-301,6.673306806175299e-301,6.653386487649402e-301,6.633466169123507e-301,6.613545850597609e-301,6.593625532071713e-301,6.573705213545817e-301,6.55378489501992e-301,6.533864576494024e-301,6.513944257968128e-301,6.4940239394422306e-301,6.474103620916335e-301,6.4541833023904386e-301,6.434262983864542e-301,6.414342665338646e-301,6.394422346812749e-301,6.374502028286853e-301,6.354581709760957e-301,6.33466139123506e-301,6.314741072709163e-301,6.294820754183267e-301,6.274900435657371e-301,6.254980117131474e-301,6.2350597986055775e-301,6.2151394800796815e-301,6.1952191615537855e-301,6.175298843027889e-301,6.155378524501992e-301,6.135458205976096e-301,6.1155378874502e-301,6.095617568924303e-301,6.075697250398406e-301,6.05577693187251e-301,6.035856613346614e-301,6.015936294820717e-301,5.996015976294821e-301,5.9760956577689236e-301,5.956175339243028e-301,5.936255020717132e-301,5.916334702191235e-301,5.896414383665339e-301,5.8764940651394435e-301,5.856573746613546e-301,5.83665342808765e-301,5.816733109561753e-301,5.796812791035856e-301,5.776892472509961e-301,5.756972153984063e-301,5.737051835458167e-301,5.7171315169322705e-301,5.6972111984063745e-301,5.6772908798804785e-301,5.657370561354582e-301,5.637450242828685e-301,5.61752992430279e-301,5.597609605776893e-301,5.577689287250996e-301,5.557768968725099e-301,5.537848650199204e-301,5.517928331673307e-301,5.49800801314741e-301,5.478087694621514e-301,5.458167376095617e-301,5.438247057569721e-301,5.418326739043825e-301,5.398406420517928e-301,5.378486101992032e-301,5.3585657834661365e-301,5.338645464940239e-301,5.318725146414343e-301,5.298804827888446e-301,5.27888450936255e-301,5.258964190836654e-301,5.239043872310756e-301,5.21912355378486e-301,5.199203235258965e-301,5.1792829167330675e-301,5.1593625982071715e-301,5.1394422796812755e-301,5.119521961155378e-301,5.099601642629483e-301,5.079681324103586e-301,5.059761005577689e-301,5.039840687051793e-301,5.019920368525897e-301,5.00000005e-301,4.980079731474104e-301,4.960159412948207e-301,4.940239094422311e-301,4.920318775896414e-301,4.900398457370518e-301,4.8804781388446215e-301,4.8605578203187255e-301,4.840637501792829e-301,4.820717183266933e-301,4.800796864741036e-301,4.780876546215139e-301,4.760956227689243e-301,4.741035909163347e-301,4.72111559063745e-301,4.701195272111553e-301,4.681274953585658e-301,4.661354635059761e-301,4.6414343165338645e-301,4.6215139980079685e-301,4.601593679482072e-301,4.581673360956176e-301,4.56175304243028e-301,4.541832723904382e-301,4.521912405378487e-301,4.501992086852591e-301,4.482071768326693e-301,4.462151449800797e-301,4.4422311312749e-301,4.422310812749004e-301,4.402390494223108e-301,4.3824701756972105e-301,4.3625498571713145e-301,4.3426295386454185e-301,4.322709220119522e-301,4.302788901593626e-301,4.282868583067729e-301,4.262948264541833e-301,4.243027946015937e-301,4.22310762749004e-301,4.203187308964143e-301,4.183266990438246e-301,4.163346671912351e-301,4.143426353386454e-301,4.1235060348605575e-301,4.1035857163346615e-301,4.0836653978087654e-301,4.063745079282869e-301,4.043824760756973e-301,4.023904442231075e-301,4.00398412370518e-301,3.984063805179284e-301,3.964143486653386e-301,3.94422316812749e-301,3.924302849601594e-301,3.904382531075697e-301,3.884462212549801e-301,3.8645418940239035e-301,3.8446215754980075e-301,3.824701256972112e-301,3.8047809384462155e-301,3.784860619920319e-301,3.764940301394423e-301,3.745019982868526e-301,3.72509966434263e-301,3.705179345816733e-301,3.685259027290837e-301,3.66533870876494e-301,3.645418390239044e-301,3.6254980717131477e-301,3.6055777531872513e-301,3.5856574346613544e-301,3.5657371161354584e-301,3.545816797609562e-301,3.525896479083665e-301,3.5059761605577688e-301,3.4860558420318727e-301,3.4661355235059763e-301,3.4462152049800795e-301,3.4262948864541835e-301,3.406374567928287e-301,3.3864542494023906e-301,3.366533930876494e-301,3.3466136123505978e-301,3.3266932938247014e-301,3.306772975298805e-301,3.2868526567729085e-301,3.266932338247012e-301,3.2470120197211157e-301,3.2270917011952197e-301,3.207171382669323e-301,3.187251064143426e-301,3.1673307456175304e-301,3.1474104270916335e-301,3.127490108565737e-301,3.1075697900398403e-301,3.0876494715139443e-301,3.067729152988048e-301,3.0478088344621514e-301,3.027888515936255e-301,3.0079681974103586e-301,2.988047878884462e-301,2.968127560358566e-301,2.9482072418326693e-301,2.928286923306773e-301,2.908366604780877e-301,2.88844628625498e-301,2.8685259677290836e-301,2.8486056492031868e-301,2.828685330677291e-301,2.8087650121513944e-301,2.788844693625498e-301,2.7689243750996015e-301,2.7490040565737055e-301,2.7290837380478087e-301,2.7091634195219127e-301,2.689243100996016e-301,2.66932278247012e-301,2.649402463944223e-301,2.629482145418327e-301,2.60956182689243e-301,2.589641508366534e-301,2.5697211898406377e-301,2.549800871314741e-301,2.5298805527888444e-301,2.5099602342629484e-301,2.490039915737052e-301,2.470119597211155e-301,2.450199278685259e-301,2.4302789601593627e-301,2.4103586416334663e-301,2.3904383231075695e-301,2.3705180045816735e-301,2.350597686055777e-301,2.3306773675298806e-301,2.310757049003984e-301,2.2908367304780878e-301,2.2709164119521913e-301,2.250996093426295e-301,2.2310757749003985e-301,2.2111554563745017e-301,2.1912351378486056e-301,2.1713148193227092e-301,2.151394500796813e-301,2.131474182270916e-301,2.1115538637450204e-301,2.0916335452191235e-301,2.071713226693227e-301,2.0517929081673307e-301,2.0318725896414347e-301,2.011952271115538e-301,1.992031952589642e-301,1.972111634063745e-301,1.952191315537849e-301,1.932270997011952e-301,1.9123506784860557e-301,1.8924303599601593e-301,1.8725100414342633e-301,1.8525897229083667e-301,1.8326694043824702e-301,1.812749085856574e-301,1.7928287673306774e-301,1.7729084488047812e-301,1.7529881302788843e-301,1.733067811752988e-301,1.7131474932270917e-301,1.693227174701195e-301,1.6733068561752988e-301,1.6533865376494022e-301,1.633466219123506e-301,1.6135459005976096e-301,1.5936255820717132e-301,1.5737052635458167e-301,1.5537849450199203e-301,1.5338646264940239e-301,1.5139443079681277e-301,1.494023989442231e-301,1.4741036709163348e-301,1.4541833523904384e-301,1.4342630338645418e-301,1.4143427153386453e-301,1.394422396812749e-301,1.3745020782868525e-301,1.3545817597609563e-301,1.3346614412350597e-301,1.3147411227091634e-301,1.2948208041832668e-301,1.2749004856573706e-301,1.2549801671314742e-301,1.2350598486055777e-301,1.2151395300796813e-301,1.195219211553785e-301,1.1752988930278885e-301,1.1553785745019923e-301,1.1354582559760956e-301,1.1155379374501992e-301,1.0956176189243026e-301,1.0756973003984064e-301,1.05577698187251e-301,1.0358566633466135e-301,1.015936344820717e-301,9.960160262948209e-302,9.760957077689242e-302,9.56175389243028e-302,9.362550707171316e-302,9.163347521912351e-302,8.964144336653387e-302,8.764941151394421e-302,8.565737966135458e-302,8.366534780876494e-302,8.16733159561753e-302,7.968128410358565e-302,7.768925225099601e-302,7.569722039840638e-302,7.370518854581674e-302,7.171315669322708e-302,6.972112484063744e-302,6.772909298804781e-302,6.573706113545817e-302,6.374502928286853e-302,6.175299743027888e-302,5.976096557768924e-302,5.776893372509961e-302,5.577690187250996e-302,5.378487001992031e-302,5.179283816733067e-302,4.980080631474104e-302,4.78087744621514e-302,4.5816742609561755e-302,4.382471075697211e-302,4.183267890438247e-302,3.984064705179283e-302,3.784861519920319e-302,3.585658334661355e-302,3.3864551494023906e-302,3.1872519641434264e-302,2.988048778884462e-302,2.7888455936254984e-302,2.5896424083665337e-302,2.39043922310757e-302,2.1912360378486057e-302,1.9920328525896415e-302,1.7928296673306775e-302,1.5936264820717133e-302,1.394423296812749e-302,1.1952201115537848e-302,9.960169262948207e-303,7.968137410358566e-303,5.976105557768924e-303,3.9840737051792834e-303,1.9920418525896414e-303,1.0e-308]} +{"expected":[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],"x":[1.0e-300,9.980079681474106e-301,9.960159362948207e-301,9.94023904442231e-301,9.920318725896415e-301,9.900398407370519e-301,9.880478088844623e-301,9.860557770318725e-301,9.840637451792829e-301,9.820717133266933e-301,9.800796814741037e-301,9.780876496215141e-301,9.760956177689242e-301,9.741035859163347e-301,9.721115540637451e-301,9.701195222111553e-301,9.681274903585657e-301,9.661354585059761e-301,9.641434266533864e-301,9.621513948007968e-301,9.601593629482072e-301,9.581673310956176e-301,9.56175299243028e-301,9.541832673904382e-301,9.521912355378486e-301,9.501992036852588e-301,9.482071718326694e-301,9.462151399800798e-301,9.442231081274899e-301,9.422310762749004e-301,9.402390444223108e-301,9.38247012569721e-301,9.362549807171316e-301,9.342629488645419e-301,9.322709170119521e-301,9.302788851593627e-301,9.282868533067729e-301,9.262948214541833e-301,9.243027896015937e-301,9.22310757749004e-301,9.203187258964143e-301,9.183266940438247e-301,9.163346621912351e-301,9.143426303386455e-301,9.123505984860558e-301,9.103585666334662e-301,9.083665347808764e-301,9.06374502928287e-301,9.043824710756974e-301,9.023904392231074e-301,9.00398407370518e-301,8.984063755179282e-301,8.964143436653386e-301,8.944223118127492e-301,8.924302799601594e-301,8.904382481075697e-301,8.884462162549802e-301,8.864541844023905e-301,8.844621525498009e-301,8.824701206972113e-301,8.804780888446215e-301,8.784860569920319e-301,8.764940251394421e-301,8.745019932868527e-301,8.72509961434263e-301,8.705179295816731e-301,8.685258977290837e-301,8.66533865876494e-301,8.645418340239043e-301,8.625498021713149e-301,8.605577703187251e-301,8.585657384661354e-301,8.565737066135458e-301,8.545816747609562e-301,8.525896429083666e-301,8.50597611055777e-301,8.486055792031872e-301,8.466135473505976e-301,8.44621515498008e-301,8.426294836454184e-301,8.406374517928286e-301,8.38645419940239e-301,8.366533880876494e-301,8.346613562350597e-301,8.326693243824702e-301,8.306772925298805e-301,8.286852606772909e-301,8.266932288247013e-301,8.247011969721115e-301,8.227091651195219e-301,8.207171332669325e-301,8.187251014143427e-301,8.16733069561753e-301,8.147410377091633e-301,8.127490058565737e-301,8.107569740039841e-301,8.087649421513945e-301,8.067729102988048e-301,8.04780878446215e-301,8.027888465936256e-301,8.00796814741036e-301,7.988047828884462e-301,7.968127510358568e-301,7.94820719183267e-301,7.928286873306772e-301,7.908366554780878e-301,7.88844623625498e-301,7.868525917729084e-301,7.848605599203187e-301,7.82868528067729e-301,7.808764962151395e-301,7.788844643625499e-301,7.768924325099603e-301,7.749004006573705e-301,7.729083688047807e-301,7.709163369521913e-301,7.689243050996017e-301,7.669322732470119e-301,7.649402413944225e-301,7.629482095418325e-301,7.609561776892431e-301,7.589641458366533e-301,7.569721139840637e-301,7.549800821314741e-301,7.529880502788844e-301,7.509960184262948e-301,7.490039865737053e-301,7.470119547211156e-301,7.450199228685259e-301,7.430278910159363e-301,7.410358591633465e-301,7.39043827310757e-301,7.370517954581674e-301,7.350597636055776e-301,7.33067731752988e-301,7.310756999003985e-301,7.2908366804780875e-301,7.2709163619521915e-301,7.250996043426295e-301,7.231075724900399e-301,7.211155406374503e-301,7.191235087848606e-301,7.171314769322709e-301,7.151394450796814e-301,7.131474132270916e-301,7.11155381374502e-301,7.091633495219123e-301,7.0717131766932264e-301,7.051792858167331e-301,7.0318725396414344e-301,7.011952221115538e-301,6.9920319025896416e-301,6.9721115840637456e-301,6.952191265537849e-301,6.932270947011952e-301,6.912350628486056e-301,6.89243030996016e-301,6.872509991434263e-301,6.852589672908367e-301,6.83266935438247e-301,6.812749035856574e-301,6.792828717330678e-301,6.7729083988047805e-301,6.7529880802788845e-301,6.7330677617529885e-301,6.713147443227092e-301,6.693227124701196e-301,6.673306806175299e-301,6.653386487649402e-301,6.633466169123507e-301,6.613545850597609e-301,6.593625532071713e-301,6.573705213545817e-301,6.55378489501992e-301,6.533864576494024e-301,6.513944257968128e-301,6.4940239394422306e-301,6.474103620916335e-301,6.4541833023904386e-301,6.434262983864542e-301,6.414342665338646e-301,6.394422346812749e-301,6.374502028286853e-301,6.354581709760957e-301,6.33466139123506e-301,6.314741072709163e-301,6.294820754183267e-301,6.274900435657371e-301,6.254980117131474e-301,6.2350597986055775e-301,6.2151394800796815e-301,6.1952191615537855e-301,6.175298843027889e-301,6.155378524501992e-301,6.135458205976096e-301,6.1155378874502e-301,6.095617568924303e-301,6.075697250398406e-301,6.05577693187251e-301,6.035856613346614e-301,6.015936294820717e-301,5.996015976294821e-301,5.9760956577689236e-301,5.956175339243028e-301,5.936255020717132e-301,5.916334702191235e-301,5.896414383665339e-301,5.8764940651394435e-301,5.856573746613546e-301,5.83665342808765e-301,5.816733109561753e-301,5.796812791035856e-301,5.776892472509961e-301,5.756972153984063e-301,5.737051835458167e-301,5.7171315169322705e-301,5.6972111984063745e-301,5.6772908798804785e-301,5.657370561354582e-301,5.637450242828685e-301,5.61752992430279e-301,5.597609605776893e-301,5.577689287250996e-301,5.557768968725099e-301,5.537848650199204e-301,5.517928331673307e-301,5.49800801314741e-301,5.478087694621514e-301,5.458167376095617e-301,5.438247057569721e-301,5.418326739043825e-301,5.398406420517928e-301,5.378486101992032e-301,5.3585657834661365e-301,5.338645464940239e-301,5.318725146414343e-301,5.298804827888446e-301,5.27888450936255e-301,5.258964190836654e-301,5.239043872310756e-301,5.21912355378486e-301,5.199203235258965e-301,5.1792829167330675e-301,5.1593625982071715e-301,5.1394422796812755e-301,5.119521961155378e-301,5.099601642629483e-301,5.079681324103586e-301,5.059761005577689e-301,5.039840687051793e-301,5.019920368525897e-301,5.00000005e-301,4.980079731474104e-301,4.960159412948207e-301,4.940239094422311e-301,4.920318775896414e-301,4.900398457370518e-301,4.8804781388446215e-301,4.8605578203187255e-301,4.840637501792829e-301,4.820717183266933e-301,4.800796864741036e-301,4.780876546215139e-301,4.760956227689243e-301,4.741035909163347e-301,4.72111559063745e-301,4.701195272111553e-301,4.681274953585658e-301,4.661354635059761e-301,4.6414343165338645e-301,4.6215139980079685e-301,4.601593679482072e-301,4.581673360956176e-301,4.56175304243028e-301,4.541832723904382e-301,4.521912405378487e-301,4.501992086852591e-301,4.482071768326693e-301,4.462151449800797e-301,4.4422311312749e-301,4.422310812749004e-301,4.402390494223108e-301,4.3824701756972105e-301,4.3625498571713145e-301,4.3426295386454185e-301,4.322709220119522e-301,4.302788901593626e-301,4.282868583067729e-301,4.262948264541833e-301,4.243027946015937e-301,4.22310762749004e-301,4.203187308964143e-301,4.183266990438246e-301,4.163346671912351e-301,4.143426353386454e-301,4.1235060348605575e-301,4.1035857163346615e-301,4.0836653978087654e-301,4.063745079282869e-301,4.043824760756973e-301,4.023904442231075e-301,4.00398412370518e-301,3.984063805179284e-301,3.964143486653386e-301,3.94422316812749e-301,3.924302849601594e-301,3.904382531075697e-301,3.884462212549801e-301,3.8645418940239035e-301,3.8446215754980075e-301,3.824701256972112e-301,3.8047809384462155e-301,3.784860619920319e-301,3.764940301394423e-301,3.745019982868526e-301,3.72509966434263e-301,3.705179345816733e-301,3.685259027290837e-301,3.66533870876494e-301,3.645418390239044e-301,3.6254980717131477e-301,3.6055777531872513e-301,3.5856574346613544e-301,3.5657371161354584e-301,3.545816797609562e-301,3.525896479083665e-301,3.5059761605577688e-301,3.4860558420318727e-301,3.4661355235059763e-301,3.4462152049800795e-301,3.4262948864541835e-301,3.406374567928287e-301,3.3864542494023906e-301,3.366533930876494e-301,3.3466136123505978e-301,3.3266932938247014e-301,3.306772975298805e-301,3.2868526567729085e-301,3.266932338247012e-301,3.2470120197211157e-301,3.2270917011952197e-301,3.207171382669323e-301,3.187251064143426e-301,3.1673307456175304e-301,3.1474104270916335e-301,3.127490108565737e-301,3.1075697900398403e-301,3.0876494715139443e-301,3.067729152988048e-301,3.0478088344621514e-301,3.027888515936255e-301,3.0079681974103586e-301,2.988047878884462e-301,2.968127560358566e-301,2.9482072418326693e-301,2.928286923306773e-301,2.908366604780877e-301,2.88844628625498e-301,2.8685259677290836e-301,2.8486056492031868e-301,2.828685330677291e-301,2.8087650121513944e-301,2.788844693625498e-301,2.7689243750996015e-301,2.7490040565737055e-301,2.7290837380478087e-301,2.7091634195219127e-301,2.689243100996016e-301,2.66932278247012e-301,2.649402463944223e-301,2.629482145418327e-301,2.60956182689243e-301,2.589641508366534e-301,2.5697211898406377e-301,2.549800871314741e-301,2.5298805527888444e-301,2.5099602342629484e-301,2.490039915737052e-301,2.470119597211155e-301,2.450199278685259e-301,2.4302789601593627e-301,2.4103586416334663e-301,2.3904383231075695e-301,2.3705180045816735e-301,2.350597686055777e-301,2.3306773675298806e-301,2.310757049003984e-301,2.2908367304780878e-301,2.2709164119521913e-301,2.250996093426295e-301,2.2310757749003985e-301,2.2111554563745017e-301,2.1912351378486056e-301,2.1713148193227092e-301,2.151394500796813e-301,2.131474182270916e-301,2.1115538637450204e-301,2.0916335452191235e-301,2.071713226693227e-301,2.0517929081673307e-301,2.0318725896414347e-301,2.011952271115538e-301,1.992031952589642e-301,1.972111634063745e-301,1.952191315537849e-301,1.932270997011952e-301,1.9123506784860557e-301,1.8924303599601593e-301,1.8725100414342633e-301,1.8525897229083667e-301,1.8326694043824702e-301,1.812749085856574e-301,1.7928287673306774e-301,1.7729084488047812e-301,1.7529881302788843e-301,1.733067811752988e-301,1.7131474932270917e-301,1.693227174701195e-301,1.6733068561752988e-301,1.6533865376494022e-301,1.633466219123506e-301,1.6135459005976096e-301,1.5936255820717132e-301,1.5737052635458167e-301,1.5537849450199203e-301,1.5338646264940239e-301,1.5139443079681277e-301,1.494023989442231e-301,1.4741036709163348e-301,1.4541833523904384e-301,1.4342630338645418e-301,1.4143427153386453e-301,1.394422396812749e-301,1.3745020782868525e-301,1.3545817597609563e-301,1.3346614412350597e-301,1.3147411227091634e-301,1.2948208041832668e-301,1.2749004856573706e-301,1.2549801671314742e-301,1.2350598486055777e-301,1.2151395300796813e-301,1.195219211553785e-301,1.1752988930278885e-301,1.1553785745019923e-301,1.1354582559760956e-301,1.1155379374501992e-301,1.0956176189243026e-301,1.0756973003984064e-301,1.05577698187251e-301,1.0358566633466135e-301,1.015936344820717e-301,9.960160262948209e-302,9.760957077689242e-302,9.56175389243028e-302,9.362550707171316e-302,9.163347521912351e-302,8.964144336653387e-302,8.764941151394421e-302,8.565737966135458e-302,8.366534780876494e-302,8.16733159561753e-302,7.968128410358565e-302,7.768925225099601e-302,7.569722039840638e-302,7.370518854581674e-302,7.171315669322708e-302,6.972112484063744e-302,6.772909298804781e-302,6.573706113545817e-302,6.374502928286853e-302,6.175299743027888e-302,5.976096557768924e-302,5.776893372509961e-302,5.577690187250996e-302,5.378487001992031e-302,5.179283816733067e-302,4.980080631474104e-302,4.78087744621514e-302,4.5816742609561755e-302,4.382471075697211e-302,4.183267890438247e-302,3.984064705179283e-302,3.784861519920319e-302,3.585658334661355e-302,3.3864551494023906e-302,3.1872519641434264e-302,2.988048778884462e-302,2.7888455936254984e-302,2.5896424083665337e-302,2.39043922310757e-302,2.1912360378486057e-302,1.9920328525896415e-302,1.7928296673306775e-302,1.5936264820717133e-302,1.394423296812749e-302,1.1952201115537848e-302,9.960169262948207e-303,7.968137410358566e-303,5.976105557768924e-303,3.9840737051792834e-303,1.9920418525896414e-303,1.0e-308]} From d4ee9c4edc067795b7a0f7f62c6006b4c5e4a7cf Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Fri, 29 Nov 2024 21:22:38 +0600 Subject: [PATCH 52/63] "updated json data" --- .../math/base/special/cosc/test/fixtures/julia/data.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/data.json b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/data.json index d1505214d30c..a7e087d40766 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/data.json +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/data.json @@ -1 +1 @@ -{"expected":[-0.01, -0.009886926654462178, -0.009530417260232628, -0.008939001927057528, -0.008127000239638927, -0.007114174661777932, -0.0059252496518975885, -0.004589308189120133, -0.0031390804374013107, -0.0016101419442305547, -0.0000400410139556635, 0.0015326233416347145, 0.003069150235216506, 0.0045316891962484725, 0.005884172493081979, 0.007093204522074838, 0.008128886334342725, 0.008965554944794646, 0.009582419144642829, 0.009964076066946487, 0.010100895673283842, 0.009989263566841737, 0.009631676013796938, 0.0090366846854859, 0.008218692329369684, 0.007197604246304127, 0.005998344004832778, 0.004650245172536523, 0.003186333907336847, 0.0016425199523436337, 0.000056715849575212916, -0.0015320940256629857, -0.003084811751274029, -0.004563187911786266, -0.0059307637481208104, -0.007153770198919882, -0.008201961665838847, -0.009049363918998427, -0.009674917650644571, -0.010063001734131008, -0.010203823189262884, -0.010093664121865624, -0.009734979415048492, -0.00913634261595047, -0.008312241194704851, -0.007282726060164053, -0.0060729238083115375, -0.004712423565792268, -0.0032345533890225475, -0.0016755639124466594, -0.00007373923996649425, 0.0015315431155527588, 0.0031007801636907164, 0.00459531544825824, 0.00597829122416446, 0.0072155573475927645, 0.008276514468868498, 0.009134870711019472, 0.00976929312459531, 0.010163937779373211, 0.010308845323473493, 0.010200192137384068, 0.009840390753724462, 0.009238036916283988, 0.00840770442302669, 0.007369592644630234, 0.0061490352404887, 0.004775882018533042, 0.0032837690191974654, 0.0017092946699877366, 0.00009112218696615018, -0.0015309697647971539, -0.003117064843714942, -0.00462809120525891, -0.006026783911534543, -0.007278603873109537, -0.008352590664382329, -0.009222128157529057, -0.009865604043524764, -0.010266946900304701, -0.01041602746442601, -0.010308914090387068, -0.00994797595945245, -0.009341831339686876, -0.008505142009038145, -0.007458258740058611, -0.0062267264149994065, -0.00484066080314976, -0.0033340122029376315, -0.0017437339512141842, -0.00010887616192825453, 0.0015303730823504134, 0.0031336755463290595, 0.004661535387110301, 0.006076272008581129, 0.007342949264059944, 0.008430238095294045, 0.009311191309838696, 0.00996391133861542, 0.010372094428864173, 0.010525437750984275, 0.010419899256959115, 0.010057803740838887, 0.009447792329506646, 0.008604616481879893, 0.007548781402151578, 0.006306047483438276, 0.004906801900844568, 0.0033853156810923625, 0.0017789044101855678, 0.0001270131310415612, -0.0015297521297850582, -0.0031506224300722964, -0.004695669045019388, -0.0061267869852553196, -0.007408634676172944, -0.008509506628087247, -0.009402117551157956, -0.010064278525306055, -0.01047944847111705, -0.010637147218504658, -0.010533219861166789, -0.010169945733444942, -0.009555989162640194, -0.008706193040386058, -0.007641220125678486, -0.00638705074440642, -0.004974349093233062, -0.0034377136020538805, -0.0018148296788301212, -0.00014554558228208427, 0.0015291059182350763, 0.0031679160781231193, 0.004730514121913454, 0.006178361650754872, 0.007475703021230267, 0.008590448260942981, 0.009494966721381738, 0.01016677184176387, 0.010589080056074314, 0.01075122995439325, 0.01064895123355339, 0.010284476657319514, 0.009666494102209435, 0.00880993969710061, 0.007735636976214561, 0.006469790759651702, 0.00504334805990276, 0.0034912415982229212, 0.0018515344202769076, 0.00016448655416639304, -0.0015284334051065545, -0.00318556752070056, -0.004766093500153985, -0.0062310302255207525, -0.007544199061731635, -0.008673117238873007, -0.009589801249979275, -0.010271460396355516, -0.010701063294198163, -0.010867763263796962, -0.010767171979967901, -0.010401474484817357, -0.00977938256021163, -0.008915927431710746, -0.007832096730511147, -0.006554324477813939, -0.005113846482384542, -0.0035459368674942942, -0.001889044385716531, -0.00018384966640678073, 0.001527733490535292, 0.003203588258907791, 0.004802431052346392, 0.006284828417937009, 0.007614169511749971, 0.008757570176396938, 0.009686686297598671, 0.010378416324808213, 0.010815475546331851, 0.01098682784620731, 0.010887964161528249, 0.010521020619494302, 0.009894733270925021, 0.00902423035463683, 0.00793066702616741, 0.006640711366395772, 0.005185894155034375, 0.003601838260190611, 0.0019273864750657896, 0.0002036491526539958, -0.0015270050135689254, -0.003221990290113425, -0.00483955169548648, -0.0063397935060843635, -0.00768566314445724, -0.00884386618834578, -0.009785689907073953, -0.01048771495781185, -0.010932397603869532, -0.011108507983824581, -0.011011413486579302, -0.010643200086942153, -0.010012628475892588, -0.009134925881563812, -0.008031418521321155, -0.0067290135525710695, -0.005259543103367087, -0.003658986371834583, -0.0019665888017370873, -0.0002238998954672074, 0.001526246748048158, 0.0032407861349919775, 0.004877481448689236, 0.006395964424944249, 0.0077587309068310305, 0.008932067029427004, 0.009886883164553556, 0.010599434999880336, 0.011051913881040997, 0.011232891742606407, 0.011137609515594697, 0.010768101738503351, 0.010133154121412363, 0.009248094919780379, 0.008134425065166154, 0.006819295973559016, 0.005334847710433134, 0.0037174236422586344, 0.0020066807618358425, 0.0002446174637048809, -0.0015254573981642228, -0.003259988866350626, -0.0049162474948045275, -0.0064533818594813275, -0.00783342604212774, -0.009022237243243489, -0.009990340371570447, -0.010713658720364654, -0.011174112620279899, -0.011360071187008509, -0.011266645880046465, -0.010895818468891285, -0.010256400069519543, -0.009363822067268308, -0.008239763880145615, -0.006911626537311536, -0.005411864851883411, -0.003777194461535582, -0.0020476931081574536, -0.00026581815252942683, 0.001524635593648581, 0.0032796121398814063, 0.00495587824619385, 0.006512088344072108, 0.007909804220715074, 0.009114444321522011, 0.010096139228910206, 0.010830472157591824, 0.011299086111719118, 0.011490142609518082, 0.01139862051637145, 0.011026447448835098, 0.010382460323554764, 0.009482195825569065, 0.008347515756775439, 0.007006076294349274, 0.005490654040427009, 0.0038383452832982754, 0.0020896580293487143, 0.0002875190262419242, -0.0015237798845881456, -0.003299670226990427, -0.004996403415038466, -0.00657212836879014, -0.007987923679967875, -0.009208758874376709, -0.010204361033252141, -0.010949965337194027, -0.011426930927965368, -0.011623206776182355, -0.011533635916259553, -0.011160090373977484, -0.010511433269506572, -0.009603308827561281, -0.0084577652621272, -0.007102719621677968, -0.005571277580452928, -0.003900924746056256, -0.002132609234697766, -0.0003097379641831879, 0.001522888735793008, 0.0033201780498695213, 0.0050378540885073425, 0.00663354849310584, 0.008067845373939564, 0.009305254812510197, 0.01031509088761195, 0.011072232505793778, 0.011557748175405648, 0.011759369189448244, 0.01167179939460986, 0.011296853731357517, 0.010643421934430523, 0.009727258081365672, 0.008570600963101867, 0.007201634419756789, 0.005653800733659926, 0.003964983803162722, 0.002176582044981638, 0.00033249370996025145, -0.001521960520715658, -0.0033411512189909453, -0.0050802628092211375, -0.006696397467611468, -0.008149633133637126, -0.009404009542339867, -0.01042841792674361, -0.011197372381315024, -0.011691643763420745, -0.011898740369753469, -0.011813223376626478, -0.011436849084956666, -0.01077853426337144, -0.009854145231748159, -0.00868611566573316, -0.007302902323647564, -0.005738291896619819, -0.004030575862183254, -0.002221613489926261, -0.00035580592428265123, 0.0015209935148397405, 0.0033626060732225307, 0.005123663661416047, 0.0067607263644399035, 0.008233353838774906, 0.009505104175134903, 0.010544435558748297, 0.011325488421326742, 0.011828728693012169, 0.01204143615744953, 0.01195802570566823, 0.011580193381905442, 0.010916883416353076, 0.009984076840478081, 0.008804406671879364, 0.007406608929514652, 0.005824822791289449, 0.004097756934445616, 0.0022677424128075625, 0.00037969524172102025, -0.0015199858885155129, -0.003384559722778639, -0.0051680923633115935, -0.006826588717109743, -0.008319077601981714, -0.009608623751342315, -0.010663241724268916, -0.0114566891109392, -0.011969119366495633, -0.012187578036788894, -0.012106329973623965, -0.011727009281129063, -0.011058588087152581, -0.010117164687290788, -0.008925576054795813, -0.007512844037826293, -0.005913468669586553, -0.004166585795663593, -0.0023150095828370614, -0.00040418333173179754, 0.0015189356991723625, 0.0034070300952481303, 0.005213586366195044, 0.0068940406706050625, 0.008406877966526892, 0.00971465748142312, 0.010784939174781306, 0.011591088271950864, 0.012112937920077007, 0.012337293483882131, 0.012258265875760151, 0.01187742550636122, 0.011203772845747197, 0.01025352609321697, 0.009049730955228492, 0.0076217019146871045, 0.006004308533256078, 0.0042371241585981625, 0.0023634578160152417, 0.00042929296432671804, -0.001517840882848934, -0.003430035984944442, -0.00526018496080393, -0.006963141142563569, -0.008496832118737281, -0.009823299004609728, -0.010909635771645219, -0.011728805395083594, -0.012260312581308327, -0.012490716340718399, -0.012413969592181766, -0.0120315772256728, -0.011352568506508775, -0.010393284268267586, -0.00917698389983237, -0.007733281572913733, -0.006097425370375212, -0.004309436858824762, -0.0024131321051841037, -0.000455048080804994, 0.001516699244976413, 0.0034535971058876993, 0.005307929391640458, 0.007033951996561309, 0.008589021116394062, 0.009934646667183814, 0.011037444807740592, 0.011869965997356702, 0.01241137805362121, 0.012647987217556979, 0.01257358419826562, 0.012189606459857406, 0.011505112524436695, 0.010536568685619604, 0.00930745314390864, 0.007847687074605564, 0.006192906409989697, 0.0043835920547748135, 0.0024640797601374206, 0.00048147387000668074, -0.0015155084503307651, -0.003477734148703692, -0.005356862979918688, -0.007106538228550195, -0.00868353013453172, -0.010048803821994409, -0.011168485353712166, -0.012014702006836202, -0.012566275930364317, -0.012809253926231624, -0.012737260106664313, -0.012351662522275366, -0.011661549421945782, -0.010683515484707798, -0.009441263040645216, -0.007965027857164098, -0.006290843396517381, -0.004459661443360515, -0.002516350558681711, -0.0005085968506046707, 0.001514266012075679, 0.0035024688418020112, 0.0054070312559077295, 0.007180968167638915, 0.008780448730199739, 0.01016587915114885, 0.011302882631036706, 0.012163152177246743, 0.012725155141015809, 0.012974671947175291, 0.012905155543753436, 0.012517902493012727, 0.01182203124900195, 0.010834267905846668, 0.009578544439296047, 0.008085419084898031, 0.006391332885738154, 0.0045377204926023715, 0.002569996909679013, 0.0005364449599842499, -0.001512969279790106, -0.0035278240172101675, -0.005458482101529251, -0.007257313692512165, -0.00887987112792786, -0.010285987013979836, -0.011440768414380693, -0.012315462535177032, -0.012888172432531002, -0.013144404933265989, -0.013077437063691643, -0.012688491730525893, -0.011986718079678918, -0.010988976759310683, -0.009719435114967503, -0.008208982028594616, -0.006494476564373253, -0.00461784869286026, -0.002625074029175683, -0.0005650476503558295, 0.0015116154263882828, 0.0035538236814693746, 0.00551126590414333, 0.007335650464937388, 0.008981896527792297, 0.010409247822644567, 0.011582281465954605, 0.012471786862916296, 0.01305549288909077, 0.013318625253926769, 0.01325428010360674, 0.012863604424270996, 0.012155778548548057, 0.011147800932092035, 0.009864080232989993, 0.00833584447568282, 0.006600381595484517, 0.004700129828408825, 0.0026816401308816357, 0.0005944359927715187, -0.0015102014337907703, -0.003580493092072803, -0.005565435722552771, -0.007416058181949025, -0.009086629438214979, -0.0105357884479343, -0.011727568004884548, -0.012632287220270471, -0.013227290493877986, -0.013497514583281576, -0.013435869583795876, -0.013043424192202441, -0.012329390430677555, -0.01131090793592424, -0.010012632851152573, -0.008466141173911083, -0.0067091609921459345, -0.004784652271327309, -0.0027397566323577017, -0.0006246427898399152, 0.001508724077233647, 0.003607858839933399, 0.005621047466391389, 0.007498620848472102, 0.009194180035831013, 0.010665742658183692, 0.011876782214928206, 0.012797134509085477, 0.013403748736896336, 0.013681264536586487, 0.013622400557258232, 0.013228144727447766, 0.012507741269437852, 0.011478474500534986, 0.010165254463467811, 0.008600014311765294, 0.006820934022144826, 0.004871509299848284, 0.0027994883784689963, 0.0006557026979733072, -0.0015071799080421788, -0.0036359489384678264, -0.005678160090151004, -0.007583427072353768, -0.009304664555034639, -0.010799251594458421, -0.012030086794248706, -0.012966509084608429, -0.01358506127329904, -0.013870077359622443, -0.013814078913354245, -0.013417970498948778, -0.012691029056767496, -0.011650687216557029, -0.010322115589511812, -0.008737614039244489, -0.006935826646738166, -0.004960799443598293, -0.00286090388378896, -0.0006876523601446101, 0.0015055652347127203, 0.003664792919900075, 0.005736835803278438, 0.007670570383973737, 0.009418205710098777, 0.010936464285577674, 0.012187653551363396, 0.013140601418286178, 0.013771432637189456, 0.014064166676264561, 0.014011122140930345, 0.013613117511392724, 0.012879462971095709, 0.01182774323300063, 0.010483396413877088, 0.008879099032985305, 0.007053971996878242, 0.005052626858393415, 0.0029240755958798107, 0.0007205305502048775, -0.001503876102100212, -0.003694421939495912, -0.005797140297899685, -0.007760149582861, -0.009534933153084202, -0.011077538206922258, -0.012349664051856403, -0.013319612817118825, -0.013963079016428646, -0.014263758300036204, -0.014213760156853002, -0.013813814130377081, -0.01307326417869357, -0.012009851014782118, -0.010649287480762973, -0.009024637110223707, -0.007175510890671139, -0.0051471017336073635, -0.0029890801815564577, -0.0007543783299625464, 0.0015021082684974105, 0.0037248688884815436, 0.005859142995939838, 0.007852269114008683, 0.009654983971142447, 0.011222639887424245, 0.012516310320976765, 0.013503756205283697, 0.014160229094615834, 0.014469091116130801, 0.014422236206590586, 0.01402030197942878, 0.013272666704918262, 0.012197231166414477, 0.010819990449347791, 0.009174405896575422, 0.007300592396315846, 0.005244340735442973, 0.00305599883852759, 0.0007892392203537773, -0.0015002571803483097, -0.003756168516521863, -0.005922917317570303, -0.007947039476913645, -0.009778503227205113, -0.011371945569670857, -0.012687795607829545, -0.01369325697440833, -0.014363124967141254, -0.014680418041143412, -0.014636807844257003, -0.014232836916291763, -0.013477918382556043, -0.012390117328715117, -0.01099571891622728, -0.009328593553228428, -0.0074293744452379505, -0.005344467489871733, -0.0031249176350563387, -0.0008251593882100806, 0.0014983179443310232, 0.0037883575646899615, 0.005988540973186967, 0.008044577670688243, 0.009905644548561483, 0.01152564192860729, 0.012864335217565146, 0.013888353909629015, 0.014572023139021239, 0.014898007068620146, 0.014857748000421533, 0.014451690096772442, 0.013689281885353361, 0.012588757156183556, 0.011176699311977473, 0.009487399569802251, 0.00756202450073509, 0.005447613109424827, 0.003195927880649213, 0.0008621878502871834, -0.0014962852964669007, -0.003821474910017328, -0.0060560962813343815, -0.00814500767903403, -0.01003657076832504, -0.011683926855016508, -0.013046157418718948, -0.014089300199438888, -0.01478719561316758, -0.015122142409512172, -0.015085346146991644, -0.014677149135446104, -0.013907035855790485, -0.012793413383655411, -0.011363171879750803, -0.00965103562990562, -0.007698720288068099, -0.005553916768576673, -0.0032691265311025563, -0.0009003766964701549, 0.0014941535679173668, 0.0038555617227887706, 0.0061256705153319305, 0.008248460999282772, 0.01017145462543919, 0.011847010310674175, 0.013233504433751054, 0.014296364538302178, 0.015008931078796535, 0.015353125737739849, 0.015319909569623608, 0.014909519373670074, 0.014131476137286221, 0.013004364991881507, 0.011555391744804463, 0.009819726557274993, 0.007839650592710877, 0.005663526333004311, 0.0033446166317083422, 0.0009397813342607372, -0.0014919166470262143, -0.003890661637938775, -0.006197356281646028, -0.008355077220264387, -0.010310479529530353, -0.01201511526296148, -0.013426633521814406, -0.014509832332133439, -0.015237536210895212, -0.015591277552345352, -0.015561764759421871, -0.015149125266661038, -0.014362917122283375, -0.013221908482918158, -0.011753630084960982, -0.00999371135140407, -0.007985016134273973, -0.005776599048728531, -0.003422507802850432, -0.0009804607569779459, 0.0014895679371589765, 0.003926820942018058, 0.006271251933469901, 0.008465004654331377, 0.010453840397743733, 0.012188478707671278, 0.013625818163939164, 0.014730007018010458, 0.015473337093048467, 0.01583693866916641, 0.015811258937180557, 0.01539631190288308, 0.014601693229142315, 0.01344635927757641, 0.011958175413308575, 0.010173244322676796, 0.008135030524631728, 0.0058933022978664, 0.003502916772823997, 0.0010224778383769908, -0.001487100309771126, -0.003964088777422805, -0.006347462023384735, -0.008578401029559696, -0.010601744571577348, -0.012367352789886285, -0.013831349362103474, -0.014957211510959793, -0.01571668077750334, -0.016090471856632402, -0.016068761725133072, -0.01565144667071286, -0.01484816052242278, -0.013678053248790532, -0.012169334985884213, -0.010358596338355093, -0.008289921319845897, -0.006013814428645822, -0.00358596796330269, -0.0010658996567819582, 0.0014845060520990187, 0.004002517365761239, 0.006426097799475317, 0.008695434248910946, 0.010754412822790455, 0.012552006034062261, 0.014043537065176076, 0.015191789792313466, 0.015967936998171128, 0.016352263632192453, 0.016334666983135473, 0.015914921089307917, 0.01510269849307106, 0.013917348406577117, 0.01238743634879346, 0.010550056192249314, 0.00844993117679996, 0.006138325668332812, 0.0036717941336339363, 0.0011107978522339242, -0.0014817768087463344, -0.004042162252482523, -0.006507277749850425, -0.008816283224044838, -0.010912080458642084, -0.01274272469594671, -0.014262711736419848, -0.015434108656074148, -0.01622750005434679, -0.016622726238085875, -0.016609394828468384, -0.016187152822868124, -0.01536571201722591, -0.014164626752362219, -0.012612829041148339, -0.010747932112644102, -0.00861531912689051, -0.006267039128890971, -0.003760537090970943, -0.001157249020643111, 0.0014789035163418351, 0.004083082575162304, 0.006591128201166812, 0.008941138792478428, 0.01107499853809616, 0.012939814250640322, 0.014489226079229513, 0.01568455963193199, 0.016495790885330992, 0.016902299817695796, 0.016893393861042563, 0.016468587900084916, 0.015637633514912264, 0.014420296322880373, 0.012845886472440123, 0.010952553425030978, 0.00878636198084336, 0.006400171916557462, 0.0038523484742248285, 0.0012053351494930766, -0.0014758763303124628, -0.004125341358152247, -0.006677783977501463, -0.00907020472798442, -0.011243435212211054, -0.013143601033071101, -0.014723456940057238, -0.015943561106138756, -0.016773259358913464, -0.0171914548166528, -0.017187143618797848, -0.016759703163586933, -0.015918925332827474, -0.014684793446642084, -0.013087007995559164, -0.011164272388517619, -0.008963355880674064, -0.006537956358078169, -0.003947390620945353, -0.0012551441002946941, 0.0014726845426654006, 0.004169005836660102, 0.006767389126796241, 0.009203698855466333, 0.011417677203762421, 0.013354434049408942, 0.0149658074101196, 0.01621156066440465, 0.01706038679988794, 0.01749069463624016, 0.01749115729156568, 0.01706100897767456, 0.016210082378840956, 0.014958585239220884, 0.01333662119966691, 0.011383466227450137, 0.009146618017092942, 0.006680641358165862, 0.004045837527545893, 0.0013067701437436538, -0.0014693164894944498, -0.00421414781373992, -0.006860097723097169, -0.009341854283142872, -0.011598031443268719, -0.013572686980568216, -0.015216709150542077, -0.016489037684412143, -0.017357688788491546, -0.017800558570582454, -0.017805984725702103, -0.017373052226689025, -0.01651163503978421, -0.015242172367376265, -0.013595184450611723, -0.011610539382894636, -0.009336488533302033, -0.006828493904860024, -0.0041478759148108075, -0.0013603145544176297, 0.001465759446719489, 0.004260844054152627, 0.006956074753967209, 0.009484920766687402, 0.011784826881051856, 0.013798760401989695, 0.015476624969149727, 0.016776506209538748, 0.01766571826299747, 0.018121625063668843, 0.01813221575649913, 0.017696419641072714, 0.0168241524187194, 0.015536092116421273, 0.013863189710638955, 0.011845926012245416, 0.009533332639218314, 0.00698180074193476, 0.00425370641239668, 0.0014158862728771715, -0.0014619995123083503, -0.004309176719598887, -0.007055497103818308, -0.00963316622211583, -0.01197841649783296, -0.014033084247438437, -0.015746051681265607, -0.017074518140026737, -0.017985068965737396, -0.018454515327594064, -0.01847048391086406, -0.018031741493678005, -0.017148245933255864, -0.015840921800370295, -0.01414116567388658, -0.012090092769458638, -0.00973754296376593, -0.007140870230383336, -0.004363544878129217, -0.0014736026442548796, 0.0014580214729519095, 0.004359233850482901, 0.007158554645467053, 0.009786878406685736, 0.012179179539710852, 0.014276120548695422, 0.01602552329171928, 0.017383666783279676, 0.01831637927773821, 0.01879989736963455, 0.01882147052916995, 0.01837969571531807, 0.017484573322782467, 0.016157282560405165, 0.014429681259710595, 0.012343541903364555, 0.009949542177106146, 0.007306034424402156, 0.0044776238703218025, 0.0015335902438227366, -0.0014538086527930056, -0.0044111099000922445, -0.007265451454066508, -0.009946366789984631, -0.012387524007289234, -0.014528366487870287, -0.016315614540938994, -0.017704590811336286, -0.01866033649408109, -0.019158490483088715, -0.019185909362704284, -0.01874101248610479, -0.017833843119877037, -0.01648584360424349, -0.014729349512403154, -0.012606814717344235, -0.010169785919654208, -0.007477651391260532, -0.004596194294233312, -0.0015959858017239922, 0.001449342741398208, 0.004464906327954974, 0.007376407159717166, 0.010111964640790701, 0.012603889433318145, 0.014790357804758226, 0.016616944864676755, 0.01803797868106729, 0.01901768160023188, 0.01953107026540974, 0.01956459171199397, 0.01911647936800563, 0.018196819649855225, 0.016827326947297692, 0.015040831963555518, 0.012880495440505936, 0.010398766080577318, 0.007656107809154755, 0.004719527247166626, 0.0016609372410321054, -0.0014446035976516342, -0.004520732260143092, -0.007491658457589516, -0.010284031359299499, -0.012828749988630149, -0.015062672608372893, -0.016930182824770337, -0.01838457358146649, -0.01938921461919245, -0.01991847423730338, -0.019958372181729127, -0.019506947054543904, -0.01857432863270137, -0.017182512726305502, -0.015364843522381998, -0.013165215568622846, -0.010637014475414111, -0.007841821882691375, -0.004847916090733178, -0.0017286048456612963, 0.0014395690256408702, 0.004578705225476139, 0.0076114607973697635, 0.01046295508903968, 0.013062617962545028, 0.015345935649716345, 0.017256051077630386, 0.018745178982852075, 0.01977580061067893, 0.020321608148466484, 0.02036817514037182, 0.01991333582598347, 0.018967263473787375, 0.017552245167735667, 0.015702157970090804, 0.013461658742704948, 0.010885106980668984, 0.00803524662224405, 0.004981678783586307, 0.001799162577462036, -0.0014342145178684036, -0.004638951977968352, -0.007736090277359182, -0.010649155648402648, -0.013306047671493555, -0.01564082312223433, -0.017595331958165122, -0.019120664875185364, -0.02017837641700946, -0.020741453069891697, -0.020795001987215615, -0.020336642813097917, -0.01937659234425528, -0.017937439307072287, -0.01605361414717332, -0.013770566244524685, -0.011143668193024418, -0.008236873541284693, -0.00512116051362339, -0.001872799565193099, 0.0014285129602281106, 0.004701609417503775, 0.007865845772732562, 0.010843087828347087, 0.01355963985860183, 0.015948068067589787, 0.017948873769948484, 0.019511974797451613, 0.02059795826643028, 0.021179073389635567, 0.02123993934715472, 0.020777950190207506, 0.019803366169178657, 0.018339088571548923, 0.016420122937750074, 0.014092743202076926, 0.011413376692503495, 0.008447236835180484, 0.005266736675474589, 0.001949721792085243, -0.0014224342921030796, -0.004766825622644644, -0.008001051332409456, -0.011045245110773868, -0.013824046657724857, -0.016268466477704437, -0.0183175978880867, -0.01992013377766081, -0.021035650363780373, -0.021635625849232985, -0.021704168334336423, -0.02123843443920328, -0.020248727662251526, -0.018758273358612788, -0.016802675173390073, -0.01442906561432045, -0.011694971002927077, -0.008666918116214093, -0.005418816247279349, -0.002030154013573293, 0.0014159451135996363, 0.0048347610117874355, 0.008142058884927836, 0.011256163871514457, 0.014099977208244213, 0.016602884199987185, 0.01870250679997753, 0.020346257324130222, 0.021492654621383556, 0.02211236978227433, 0.02218897505096694, 0.021719376851525442, 0.02071392157053252, 0.019196170766077665, 0.017202350600789406, 0.014780488324228859, 0.011989256359865254, 0.00889655179314466, 0.005577845630634449, 0.0021143419426139726, -0.0014090082303222888, -0.004905589651580832, -0.008289251300775222, -0.011476428143240297, -0.014388204022376368, -0.0169522647718485, -0.019104693231692844, -0.02079156163410287, -0.021970281710725372, -0.022610678745961087, -0.02269576251777271, -0.0222221754654938, -0.021200306322634328, -0.019654065658479634, -0.01762032808419807, -0.015148054092932059, -0.012297112416656514, -0.009136831200036163, -0.005744313029523505, -0.0022025547471406647, 0.0014015821240636816, 0.004979500734773004, 0.008443045867156263, 0.011706675027270965, 0.014689570225327627, 0.017317638333743533, 0.019525350534920622, 0.021257375216423076, 0.0224699636489046, 0.023132053771873582, 0.02322606426917705, 0.022748358673196824, 0.02170936730991112, 0.020133363288725184, 0.018057897245600793, 0.015532903956532725, 0.012619502043745399, 0.009388515598962177, 0.005918753458577677, 0.0022950879128631695, -0.0013936203353077019, -0.005056700253527537, -0.008603898241440406, -0.011947600859789681, -0.015004997811136076, -0.0177001317980202, -0.019965784542375846, -0.021745152162181668, -0.022993268174411507, -0.02367813850517202, -0.02378155989064526, -0.023299600775860924, -0.022242732074113928, -0.020635603736159858, -0.018516471784701557, -0.015936289082210075, -0.012957481406684766, -0.00965243820547652, -0.006101754488727927, -0.0023922665352370284, 0.0013850707403448518, 0.005137412898898334, 0.008772306961969172, 0.012199968258041404, 0.015335497084391253, 0.01810098048495144, 0.020427427139727148, 0.022256487342528417, 0.023541915216202396, 0.02425073655385625, 0.02436409282978715, 0.023877739821182492, 0.022802187728621772, 0.021162478473522036, 0.01899760476849918, 0.016359584383080997, 0.013312211544931866, 0.00992951541543272, 0.006293962860044532, 0.002494449117477997, -0.001375874701930989, -0.00522188422275308, -0.008948818610024297, -0.012464614196551687, -0.015682177491412555, -0.018521541478982193, -0.020911851851144147, -0.02279313386825835, -0.024117795820529128, -0.024851831433870496, -0.024975690879125174, -0.024484798122965536, -0.023389701006101316, -0.021715849438222797, -0.019503006238796267, -0.016804304203895018, -0.01368497171879119, -0.010220757448281948, -0.006496092118328332, -0.0026020319676232843, 0.001365966067563401, 0.005310383105204344, 0.009134033735229603, 0.012742459293363153, 0.016046260085392557, 0.018963309009365447, 0.021420791795844378, 0.02335702321385102, 0.024722993974344232, 0.025483609574772036, 0.025618589810057598, 0.025123005945741624, 0.024007441406453174, 0.02229777106101561, 0.020034563558235203, 0.017272120454565915, 0.0140771748476989, 0.010527280667149653, 0.006708931465170797, 0.0027154543076808382, -0.0013552699833031712, -0.005403204578809037, -0.009328613679311357, -0.013034518523135051, -0.016429091920474845, -0.019427932222406526, -0.02195616044737453, -0.023950288492718824, -0.025359811855992162, -0.02614848694825868, -0.026295260738500102, -0.02579482893893182, -0.02465780801919245, -0.022910515801281728, -0.02059436500497898, -0.017764883649082144, -0.014490385432373016, -0.010850321892127689, -0.006933356052438774, -0.0028352042329097753, 0.0013437014832890033, 0.005500673070805175, 0.009533288461087149, 0.013341913619528646, 0.016832162732151795, 0.019917235790679125, 0.022520075719611662, 0.024575291474765667, 0.026030799158008915, 0.026849140003096225, 0.02700844192819885, 0.02650300003184549, 0.02534346071923226, 0.023556603857893828, 0.021184727237718665, 0.018284647407741748, 0.014926340439833754, 0.01119125509333045, 0.007170339003769359, 0.0029618256906964366, -0.001331163805118587, -0.005603146136868287, -0.009748865920135921, -0.013665887485905524, -0.017257124339123915, -0.02043324390195766, -0.023114888018489464, -0.025234654067561823, -0.02673878726933229, -0.027588541741460543, -0.02776117589459602, -0.02725055665931302, -0.026067356591233094, -0.0242388378745622, -0.021808227392475857, -0.018833697106561933, -0.015386973738882403, -0.011551610938363006, -0.00742096551061517, -0.0030959266881517037, 0.001317546368469544, 0.005711018774875783, 0.009976242359706794, 0.014007821004124314, 0.017705813299013568, 0.02097820829258309, 0.023743213042684303, 0.025931295145825258, 0.027486929283124892, 0.028370003962019125, 0.028556852869357694, 0.02804088438713193, 0.02683279263428047, 0.02496034364739416, 0.02246774074882283, 0.019414583516504727, 0.015874444810639654, 0.011933099780192646, 0.007686449432636199, 0.003238188987982639, -0.0013027223377762409, -0.005824728425681175, -0.01021641498335492, -0.0143692527200899, -0.018180277472766543, -0.021554641143706536, -0.02440797029840228, -0.02666847382012554, -0.028278747022388008, -0.029197226935616903, -0.029399261935112754, -0.028877768258816584, -0.02764345604759437, -0.02572461808166495, -0.023166485126521388, -0.020030162476652687, -0.016391172632809214, -0.012337638813004781, -0.007968152937031377, -0.003389379616669657, 0.0012865456681831298, 0.005944760790801549, 0.010470496487726267, 0.014751901997060052, 0.018682807307600788, 0.022165353853743745, 0.02511242852427709, 0.027449840497666158, 0.029118186562759683, 0.030074358085368774, 0.030292651457416855, 0.02976545350647457, 0.02850348371523099, 0.026535585949934375, 0.02390807345864437, 0.020683641902855238, 0.01693987585888804, 0.012767384304911852, 0.008267609845855799, 0.003550364592062848, -0.0012688475056811717, -0.006071656625437276, -0.010739732259961119, -0.015157696370589255, -0.019215972845949746, -0.022813502949086857, -0.0258602595172773, -0.028279497422869986, -0.03000968409937416, -0.031006061634676355, -0.0312418008477099, -0.030708717680625327, -0.029417532914776237, -0.027397667395413428, -0.02469657635356035, -0.02137863776437287, -0.01752362070005786, -0.013224770050090023, -0.00858655353405395, -0.0037221253852645977, 0.001249431774876786, 0.006206019700854476, 0.011025520737872224, 0.01558880402193828, 0.019782667721332886, 0.023502644714648798, 0.026655602229819213, 0.029162070816599703, 0.03095824447811959, 0.03199760169175226, 0.03225210621587792, 0.03171295678576018, 0.030390865801022342, 0.028315858631141038, 0.025536596932260312, 0.02211924108986833, 0.018145878289095554, 0.013712553486468966, 0.008926950447013124, 0.0039057787725801647, -0.0012280697379316008, -0.006348526174896253, -0.01132943763183663, -0.016047672522620546, -0.020386161729657456, -0.024236800539339205, -0.02750313949968955, -0.030102797291907995, -0.03196953532616544, -0.033054941895315104, -0.033329683153327495, -0.032784288700560854, -0.0314294509004591, -0.029295828945729147, -0.026433360845851756, -0.02291009862393184, -0.018810593791329953, -0.014233871322446913, -0.009291040603097043, -0.004102600919038626, 0.0012044932410635316, 0.006499935665802778, 0.01165326488927006, 0.016537075309099286, 0.021030163990934887, 0.02502053551081111, 0.028408190415966098, 0.03110762795489405, 0.033050000520523266, 0.03418486560509714, 0.03448149078152378, 0.03392967806934082, 0.032540085751275594, 0.030344037993709903, 0.027392825191067536, 0.02375651049218683, 0.019522270167744785, 0.014792307040607423, 0.009681386839109378, 0.004314056781926493, -0.0011783862739623765, -0.006661104396002175, -0.011999025519415403, -0.017060167747651196, -0.021718899276122857, -0.02585905350273495, -0.029376822168700183, -0.03218335456211164, -0.034206997793803866, -0.035395121754895106, -0.03571548238235808, -0.03515708805171253, -0.03373054601342288, -0.03146787849760915, -0.028421811119948154, -0.02466454921140987, -0.020286070346324788, -0.015391973344937582, -0.010100935080726818, -0.004541836254177766, 0.0011493743426731647, 0.006833000863593335, 0.012369025707057535, 0.017620555178721402, 0.02245720081468121, 0.026758312937909628, 0.030415986351579702, 0.03333776338604048, 0.035448966687508174, 0.036694602996596645, 0.037040789501930585, 0.036475665919543515, 0.0350097679627348, 0.03267585102537363, 0.029528166383197368, 0.025641205692228317, 0.021107942699744846, 0.01603761355714693, 0.010553088626439146, 0.004787898916586145, -0.0011170109838320786, -0.007016724615632022, -0.012765906055097089, -0.018222376034960235, -0.023250623888004633, -0.02772516866856249, -0.03153368618986353, -0.03457982415788262, -0.0367856349589826, -0.038093564795228206, -0.03846794853982125, -0.037895971649023814, -0.036388073426999026, -0.0339777795814216, -0.03072096599778863, -0.02669456965654962, -0.021994776275473676, -0.01673472724307832, -0.011041800395747568, -0.00505452988290973, 0.0010807605064279292, 0.007213528846832649, 0.01319270434508554, 0.01887040407466864, 0.024105585848465318, 0.028767547115414665, 0.03273918320045868, 0.035919923785232455, 0.038228274120851856, 0.03960389689510679, 0.04000918171978581, 0.03943026159467963, 0.03787744914379113, 0.0353850795802979, 0.03201076189467498, 0.027834054319310762, 0.02295459434521461, 0.017489727101159706, 0.011571688417459912, 0.005344410073992825, -0.0010399757050144841, -0.0074248477399438805, -0.013652932944866013, -0.019570175058984503, -0.025029540022369297, -0.02989466412910709, -0.03404325457445231, -0.037370157732002536, -0.039790018320897166, -0.04123946236788188, -0.04167874830312566, -0.041092843377906925, -0.039491896546726336, -0.036911093677711414, -0.033409896084762726, -0.029070678542675074, -0.02399679777989721, -0.018310136576819232, -0.012148181680284304, -0.005660705451633081, 0.0009938687974211094, 0.0076523297129725025, 0.01415067499982784, 0.02032814496710092, 0.026031193460751608, 0.031117298244761806, 0.03545851642402369, 0.0389446963687638, 0.04148626566814567, 0.0430165247207653, 0.043493387422937076, 0.04290052375832249, 0.04124787360313001, 0.03857151638831131, 0.03493289703084622, 0.03041742437480281, 0.025132473880760012, 0.019204841087239376, 0.012777706073684657, 0.006007181439886247, -0.0009414731264110504, -0.007897878060513699, -0.014690704930135929, -0.021151889295771584, -0.027120781995569207, -0.03244813648414854, -0.036999833431092026, -0.04066024980477284, -0.04333518799363926, -0.044954290955762775, -0.04547288169133724, -0.044873179207958296, -0.043164858261110495, -0.04038493613666263, -0.0365969862096151, -0.031889694561537396, -0.026374792162006683, -0.020184410616967702, -0.013467923875374594, -0.006388351206328386, 0.0008815921118185305, 0.008163700892720189, 0.015278640684767338, 0.022050356436424164, 0.028310420992857712, 0.033902216210620804, 0.038684843093857474, 0.04253666353426054, 0.04535838483786766, 0.04707560904475848, 0.047640781837326326, 0.047034490284135554, 0.04526607443227936, 0.04237353446064296, 0.03842273233382807, 0.03350590423117338, 0.02773951704213118, 0.02126151849891941, 0.014228045656594964, 0.006809670052392738, -0.0008127303613873564, -0.00845237281107258, -0.0159211379194867, -0.02303419303441456, -0.029614557259915096, -0.03549749566512367, -0.040534633795878135, -0.044597689957183224, -0.04758173162654764, -0.04940787359363372, -0.05002534873600844, -0.049412897417359984, -0.04757943797181527, -0.044563998218335926, -0.0404349060083777, -0.03528825500760315, -0.029245679802396875, -0.022451491563595237, -0.015069241468690719, -0.00727779348202495, 0.0007329994411380307, 0.008766911441869713, 0.016626140142081094, 0.024116166334272132, 0.031050557834344406, 0.03725559911993998, 0.04257463205223556, 0.0468719994899754, 0.05003649280530915, 0.051984215989698504, 0.05266079292072407, 0.05204286011769851, 0.05013880456847281, 0.04698872454599365, 0.042663610306633515, 0.037263760710770574, 0.030916470660572133, 0.02377304234622229, 0.016005190181960952, 0.007800924576506751, -0.0006399870643162677, -0.0091108727973616, -0.01740320447709402, -0.025311718939246008, -0.03263948655884517, -0.03920280232746917, -0.04483577828208111, -0.04939452279944783, -0.05276080179806228, -0.054845089045171526, -0.05558892726589368, -0.054966538251426916, -0.05298563827005523, -0.04968743436259672, -0.045145797086595135, -0.039465625474603624, -0.03278043989704993, -0.025249257679180216, -0.0170528242402898, -0.008389288755623215, 0.0005305725205495466, 0.009488470446348752, 0.018263930940601202, 0.02663970698412368, 0.03440714217315404, 0.0413713537628353, 0.04735610682044428, 0.052208257960808434, 0.05580165700999147, 0.058040407612741166, 0.05886140296968819, 0.058236070204037337, 0.05617127590227354, 0.05270936569215346, 0.04792733182312627, 0.04193512408648538, 0.03487314053260381, 0.02690895479132257, 0.01823335587564968, 0.009055793673379052, -0.0004006615288056828, -0.00990472457261861, -0.01922253541079721, -0.028123396414942516, -0.03638546666900316, -0.04380127312229389, -0.050182902127436875, -0.055366741909069817, -0.059217656746670844, -0.061632486877791125, -0.0625427840302011, -0.06191671069946386, -0.05976005136997113, -0.05611630535181256, -0.051065853255304106, -0.044724211807306895, -0.03723941417493742, -0.028788574651262038, -0.019573716937970546, -0.009816963824513431, 0.0002447976542581643, 0.010365647912284425, 0.02029662514555339, 0.02979182887031968, 0.038614487530296074, 0.046542840967106126, 0.05337569213534612, 0.05893748962269077, 0.06308281315348811, 0.06570014807312911, 0.06671485151208935, 0.06609123212243802, 0.06383368651178462, 0.05998685826333667, 0.05463480917852971, 0.04789921653551982, 0.03993663413396974, 0.030934878105860313, 0.021108620340357785, 0.010694292353985049, -0.000055579966072378735, -0.010878475554157368, -0.02150826455208684, -0.0316817271138933, -0.04114504555836765, -0.04966011036966608, -0.05701048402120933, -0.06300687391799167, -0.06749197676406792, -0.07034457112098592, -0.07148275249891736, -0.07086622560648369, -0.06849759090005603, -0.0644225867831778, -0.05872927413119461, -0.051546175643438844, -0.04303940822721678, -0.03340887156492654, -0.022883579592515142, -0.0117162432380793, -0.00017723189123422176, 0.011451942788160103, 0.022885464374922754, 0.033840205146846096, 0.04404270514452168, 0.05323596556231756, 0.0611858885058277, 0.06768720258065185, 0.07256872518894629, 0.07569782755373403, 0.0769839870235062, 0.0763813327030229, 0.07389011440687408, 0.06955705077314138, 0.06347453948797596, 0.05577874030510009, 0.04664656922426033, 0.03629166914295973, 0.02495944785266131, 0.012921297779449724, 0.0004681327799633279, -0.012096604934119787, -0.02446430051326567, -0.03632870742170339, -0.04739349029666966, -0.05737958490394189, -0.06603219339913259, -0.0731272405914557, -0.07847712871210755, -0.08193564405857741, -0.08340188846345706, -0.0828231313730624, -0.08019650388575829, -0.07556948379014228, -0.06903914980047904, -0.06075021311142119, -0.05089186436229865, -0.039693503382582034, -0.027419446964902026, -0.014362735689161719, -0.0008381838553119206, 0.01282516371060033, 0.026291988340062616, 0.039228876438802976, 0.05131252233152403, 0.06223775446178087, 0.07172518698177661, 0.07952830622706637, 0.08543981374265511, 0.08929706415282987, 0.0909864568796878, 0.09044666504488008, 0.08767061227369252, 0.08270613791944983, 0.07565532273444175, 0.0666724794787314, 0.05596084559826265, 0.043768047125701544, 0.030380433576706035, 0.016116412073490242, 0.001318934515252228, -0.01365268631650857, -0.02843143784849382, -0.04265153871210899, -0.05595742386340848, -0.06801256472957104, -0.07850790727602941, -0.08716971818437527, -0.09376664180269138, -0.0981157879210721, -0.10008769235809131, -0.09961001832756423, -0.09666989599527905, -0.09131482984925757, -0.08365213773798943, -0.07384692086654407, -0.06211859983148428, -0.04873608705656028, -0.03401169990116058, -0.01829395041648606, -0.0019593764301506977, 0.014596396376675315, 0.030968151116136388, 0.04675090906811126, 0.061549855407494046, 0.07499012016988567, 0.08672617440988756, 0.09645060841446165, 0.10390207147197254, 0.10887217081613709, 0.111211150578966, 0.11083219938661018, 0.10771426698985458, 0.1019033053079908, 0.09351188666693155, 0.08271719094928028, 0.06975739291935958, 0.05492652018971173, 0.03856789020578331, 0.02106627031240182, 0.0028389375435634327, -0.01567415657392982, -0.034020886925686944, -0.051747873450736386, -0.06841155664804177, -0.08358916235281316, -0.09688928786169759, -0.10796184763762301, -0.1165071293753649, -0.12228372992451303, -0.12511516506351938, -0.12489497686974774, -0.12159019677681535, -0.11524306057542291, -0.10597091272051502, -0.09396428039908959, -0.07948314187429105, -0.06285145760316091, -0.044450075468664745, -0.024708162127954344, -0.004093349955757894, 0.016899177583090667, 0.03775841091365877, 0.057969775791158376, 0.077027640956467, 0.09444777219727382, 0.10977943053792967, 0.12261681705438875, 0.13260957879629867, 0.1394721092951341, 0.14299140277451738, 0.1430332529225548, 0.13954662425038294, 0.1325660658228375, 0.12221208256362037, 0.108689427367626, 0.09228332678160647, 0.07335370287653258, 0.0523275029443789, 0.029689295628155837, 0.005970335890561177, -0.01826365924112269, -0.042425747944643696, -0.06592170955057826, -0.08816437359801006, -0.1085879926813563, -0.12666231393687538, -0.14190600633619363, -0.15389911147840166, -0.16229420415986734, -0.16682597531758303, -0.16731898346602683, -0.16369336078079016, -0.15596830566349973, -0.14426324394643283, -0.12879659473383123, -0.10988213300503037, -0.08792299822707543, -0.06340345500629486, -0.03687856690458372, -0.00896199663448453, 0.01968780634197324, 0.048382727437664384, 0.07642107860306181, 0.10310429250053224, 0.1277538315634778, 0.1497279130443418, 0.1684376491072559, 0.18336220837419148, 0.19406262205081448, 0.20019388358405366, 0.20151502526600837, 0.19789689761916696, 0.189327426902406, 0.1759141816158624, 0.15788413925089936, 0.1355806083959433, 0.10945732723744157, 0.08006982598769256, 0.04806420629408882, 0.014163553705028316, -0.020847741709477518, -0.056141427884018255, -0.0908642208733083, -0.12415760806429027, -0.15517817999730485, -0.1831180260798301, -0.20722471962616423, -0.2268204185687688, -0.24131962000459464, -0.2502451293581236, -0.2532418380095207, -0.250087946155664, -0.24070331961559538, -0.22515472921520677, -0.20365778804800397, -0.1765754738988976, -0.14441319988521523, -0.1078104742558364, -0.06752926856705777, -0.02443929036167685, 0.020499569738334285, 0.06625727766290929, 0.11175578088768122, 0.15589276288422144, 0.19756652586968287, 0.23570146589357968, 0.26927358087283637, 0.29733544082962854, 0.3190400507314688, 0.33366305013827313, 0.3406227202063703, 0.3394973070841716, 0.3300392206839182, 0.3121857282915725, 0.28606583230094706, 0.2520030991258598, 0.21051429046014672, 0.16230373676503088, 0.10825348428940883, 0.04940933911145689, -0.013036977370172781, -0.0777692593667126, -0.14337144941015142, -0.20835501273819312, -0.27118852655467424, -0.33032890100276513, -0.38425360400038866, -0.4314932301851665, -0.47066373594440686, -0.5004976584229822, -0.5198736467664834, -0.5278436586178057, -0.5236572136806412, -0.5067821483258684, -0.47692137978539223, -0.43402526421586846, -0.37829921833413127, -0.31020636771814003, -0.23046508433710483, -0.14004137938069144, -0.040136222854785776, 0.06783203350335418, 0.18224985087955142, 0.30133493864376465, 0.4231664622049397, 0.5457184731667526, 0.6668959397772901, 0.7845726961028191, 0.8966305822835551, 1.0009990167107312, 1.0956942247623747, 1.1788573482944704, 1.2487906755200475, 1.3039912620028704, 1.3431812596962447, 1.3653343314019821, 1.369697601537646, 1.3558086792299628, 1.3235073847970373, 1.2729419137252571, 1.204569281197083, 1.1191500028608041, 1.0177370815456634, 0.9016594826725571, 0.7725003908622943, 0.6320706444335235, 0.482377840955056, 0.3255916937732503, 0.16400629467421043, 0, -0.16400629467421043, -0.3255916937732503, -0.482377840955056, -0.6320706444335235, -0.7725003908622943, -0.9016594826725571, -1.0177370815456634, -1.1191500028608041, -1.204569281197083, -1.2729419137252571, -1.3235073847970373, -1.3558086792299628, -1.369697601537646, -1.3653343314019821, -1.3431812596962447, -1.3039912620028704, -1.2487906755200475, -1.1788573482944704, -1.0956942247623747, -1.0009990167107312, -0.8966305822835551, -0.7845726961028191, -0.6668959397772901, -0.5457184731667526, -0.4231664622049397, -0.30133493864376465, -0.18224985087955142, -0.06783203350335418, 0.040136222854785776, 0.14004137938069144, 0.23046508433710483, 0.31020636771814003, 0.37829921833413127, 0.43402526421586846, 0.47692137978539223, 0.5067821483258684, 0.5236572136806412, 0.5278436586178057, 0.5198736467664834, 0.5004976584229822, 0.47066373594440686, 0.4314932301851665, 0.38425360400038866, 0.33032890100276513, 0.27118852655467424, 0.20835501273819312, 0.14337144941015142, 0.0777692593667126, 0.013036977370172781, -0.04940933911145689, -0.10825348428940883, -0.16230373676503088, -0.21051429046014672, -0.2520030991258598, -0.28606583230094706, -0.3121857282915725, -0.3300392206839182, -0.3394973070841716, -0.3406227202063703, -0.33366305013827313, -0.3190400507314688, -0.29733544082962854, -0.26927358087283637, -0.23570146589357968, -0.19756652586968287, -0.15589276288422144, -0.11175578088768122, -0.06625727766290929, -0.020499569738334285, 0.02443929036167685, 0.06752926856705777, 0.1078104742558364, 0.14441319988521523, 0.1765754738988976, 0.20365778804800397, 0.22515472921520677, 0.24070331961559538, 0.250087946155664, 0.2532418380095207, 0.2502451293581236, 0.24131962000459464, 0.2268204185687688, 0.20722471962616423, 0.1831180260798301, 0.15517817999730485, 0.12415760806429027, 0.0908642208733083, 0.056141427884018255, 0.020847741709477518, -0.014163553705028316, -0.04806420629408882, -0.08006982598769256, -0.10945732723744157, -0.1355806083959433, -0.15788413925089936, -0.1759141816158624, -0.189327426902406, -0.19789689761916696, -0.20151502526600837, -0.20019388358405366, -0.19406262205081448, -0.18336220837419148, -0.1684376491072559, -0.1497279130443418, -0.1277538315634778, -0.10310429250053224, -0.07642107860306181, -0.048382727437664384, -0.01968780634197324, 0.00896199663448453, 0.03687856690458372, 0.06340345500629486, 0.08792299822707543, 0.10988213300503037, 0.12879659473383123, 0.14426324394643283, 0.15596830566349973, 0.16369336078079016, 0.16731898346602683, 0.16682597531758303, 0.16229420415986734, 0.15389911147840166, 0.14190600633619363, 0.12666231393687538, 0.1085879926813563, 0.08816437359801006, 0.06592170955057826, 0.042425747944643696, 0.01826365924112269, -0.005970335890561177, -0.029689295628155837, -0.0523275029443789, -0.07335370287653258, -0.09228332678160647, -0.108689427367626, -0.12221208256362037, -0.1325660658228375, -0.13954662425038294, -0.1430332529225548, -0.14299140277451738, -0.1394721092951341, -0.13260957879629867, -0.12261681705438875, -0.10977943053792967, -0.09444777219727382, -0.077027640956467, -0.057969775791158376, -0.03775841091365877, -0.016899177583090667, 0.004093349955757894, 0.024708162127954344, 0.044450075468664745, 0.06285145760316091, 0.07948314187429105, 0.09396428039908959, 0.10597091272051502, 0.11524306057542291, 0.12159019677681535, 0.12489497686974774, 0.12511516506351938, 0.12228372992451303, 0.1165071293753649, 0.10796184763762301, 0.09688928786169759, 0.08358916235281316, 0.06841155664804177, 0.051747873450736386, 0.034020886925686944, 0.01567415657392982, -0.0028389375435634327, -0.02106627031240182, -0.03856789020578331, -0.05492652018971173, -0.06975739291935958, -0.08271719094928028, -0.09351188666693155, -0.1019033053079908, -0.10771426698985458, -0.11083219938661018, -0.111211150578966, -0.10887217081613709, -0.10390207147197254, -0.09645060841446165, -0.08672617440988756, -0.07499012016988567, -0.061549855407494046, -0.04675090906811126, -0.030968151116136388, -0.014596396376675315, 0.0019593764301506977, 0.01829395041648606, 0.03401169990116058, 0.04873608705656028, 0.06211859983148428, 0.07384692086654407, 0.08365213773798943, 0.09131482984925757, 0.09666989599527905, 0.09961001832756423, 0.10008769235809131, 0.0981157879210721, 0.09376664180269138, 0.08716971818437527, 0.07850790727602941, 0.06801256472957104, 0.05595742386340848, 0.04265153871210899, 0.02843143784849382, 0.01365268631650857, -0.001318934515252228, -0.016116412073490242, -0.030380433576706035, -0.043768047125701544, -0.05596084559826265, -0.0666724794787314, -0.07565532273444175, -0.08270613791944983, -0.08767061227369252, -0.09044666504488008, -0.0909864568796878, -0.08929706415282987, -0.08543981374265511, -0.07952830622706637, -0.07172518698177661, -0.06223775446178087, -0.05131252233152403, -0.039228876438802976, -0.026291988340062616, -0.01282516371060033, 0.0008381838553119206, 0.014362735689161719, 0.027419446964902026, 0.039693503382582034, 0.05089186436229865, 0.06075021311142119, 0.06903914980047904, 0.07556948379014228, 0.08019650388575829, 0.0828231313730624, 0.08340188846345706, 0.08193564405857741, 0.07847712871210755, 0.0731272405914557, 0.06603219339913259, 0.05737958490394189, 0.04739349029666966, 0.03632870742170339, 0.02446430051326567, 0.012096604934119787, -0.0004681327799633279, -0.012921297779449724, -0.02495944785266131, -0.03629166914295973, -0.04664656922426033, -0.05577874030510009, -0.06347453948797596, -0.06955705077314138, -0.07389011440687408, -0.0763813327030229, -0.0769839870235062, -0.07569782755373403, -0.07256872518894629, -0.06768720258065185, -0.0611858885058277, -0.05323596556231756, -0.04404270514452168, -0.033840205146846096, -0.022885464374922754, -0.011451942788160103, 0.00017723189123422176, 0.0117162432380793, 0.022883579592515142, 0.03340887156492654, 0.04303940822721678, 0.051546175643438844, 0.05872927413119461, 0.0644225867831778, 0.06849759090005603, 0.07086622560648369, 0.07148275249891736, 0.07034457112098592, 0.06749197676406792, 0.06300687391799167, 0.05701048402120933, 0.04966011036966608, 0.04114504555836765, 0.0316817271138933, 0.02150826455208684, 0.010878475554157368, 0.000055579966072378735, -0.010694292353985049, -0.021108620340357785, -0.030934878105860313, -0.03993663413396974, -0.04789921653551982, -0.05463480917852971, -0.05998685826333667, -0.06383368651178462, -0.06609123212243802, -0.06671485151208935, -0.06570014807312911, -0.06308281315348811, -0.05893748962269077, -0.05337569213534612, -0.046542840967106126, -0.038614487530296074, -0.02979182887031968, -0.02029662514555339, -0.010365647912284425, -0.0002447976542581643, 0.009816963824513431, 0.019573716937970546, 0.028788574651262038, 0.03723941417493742, 0.044724211807306895, 0.051065853255304106, 0.05611630535181256, 0.05976005136997113, 0.06191671069946386, 0.0625427840302011, 0.061632486877791125, 0.059217656746670844, 0.055366741909069817, 0.050182902127436875, 0.04380127312229389, 0.03638546666900316, 0.028123396414942516, 0.01922253541079721, 0.00990472457261861, 0.0004006615288056828, -0.009055793673379052, -0.01823335587564968, -0.02690895479132257, -0.03487314053260381, -0.04193512408648538, -0.04792733182312627, -0.05270936569215346, -0.05617127590227354, -0.058236070204037337, -0.05886140296968819, -0.058040407612741166, -0.05580165700999147, -0.052208257960808434, -0.04735610682044428, -0.0413713537628353, -0.03440714217315404, -0.02663970698412368, -0.018263930940601202, -0.009488470446348752, -0.0005305725205495466, 0.008389288755623215, 0.0170528242402898, 0.025249257679180216, 0.03278043989704993, 0.039465625474603624, 0.045145797086595135, 0.04968743436259672, 0.05298563827005523, 0.054966538251426916, 0.05558892726589368, 0.054845089045171526, 0.05276080179806228, 0.04939452279944783, 0.04483577828208111, 0.03920280232746917, 0.03263948655884517, 0.025311718939246008, 0.01740320447709402, 0.0091108727973616, 0.0006399870643162677, -0.007800924576506751, -0.016005190181960952, -0.02377304234622229, -0.030916470660572133, -0.037263760710770574, -0.042663610306633515, -0.04698872454599365, -0.05013880456847281, -0.05204286011769851, -0.05266079292072407, -0.051984215989698504, -0.05003649280530915, -0.0468719994899754, -0.04257463205223556, -0.03725559911993998, -0.031050557834344406, -0.024116166334272132, -0.016626140142081094, -0.008766911441869713, -0.0007329994411380307, 0.00727779348202495, 0.015069241468690719, 0.022451491563595237, 0.029245679802396875, 0.03528825500760315, 0.0404349060083777, 0.044563998218335926, 0.04757943797181527, 0.049412897417359984, 0.05002534873600844, 0.04940787359363372, 0.04758173162654764, 0.044597689957183224, 0.040534633795878135, 0.03549749566512367, 0.029614557259915096, 0.02303419303441456, 0.0159211379194867, 0.00845237281107258, 0.0008127303613873564, -0.006809670052392738, -0.014228045656594964, -0.02126151849891941, -0.02773951704213118, -0.03350590423117338, -0.03842273233382807, -0.04237353446064296, -0.04526607443227936, -0.047034490284135554, -0.047640781837326326, -0.04707560904475848, -0.04535838483786766, -0.04253666353426054, -0.038684843093857474, -0.033902216210620804, -0.028310420992857712, -0.022050356436424164, -0.015278640684767338, -0.008163700892720189, -0.0008815921118185305, 0.006388351206328386, 0.013467923875374594, 0.020184410616967702, 0.026374792162006683, 0.031889694561537396, 0.0365969862096151, 0.04038493613666263, 0.043164858261110495, 0.044873179207958296, 0.04547288169133724, 0.044954290955762775, 0.04333518799363926, 0.04066024980477284, 0.036999833431092026, 0.03244813648414854, 0.027120781995569207, 0.021151889295771584, 0.014690704930135929, 0.007897878060513699, 0.0009414731264110504, -0.006007181439886247, -0.012777706073684657, -0.019204841087239376, -0.025132473880760012, -0.03041742437480281, -0.03493289703084622, -0.03857151638831131, -0.04124787360313001, -0.04290052375832249, -0.043493387422937076, -0.0430165247207653, -0.04148626566814567, -0.0389446963687638, -0.03545851642402369, -0.031117298244761806, -0.026031193460751608, -0.02032814496710092, -0.01415067499982784, -0.0076523297129725025, -0.0009938687974211094, 0.005660705451633081, 0.012148181680284304, 0.018310136576819232, 0.02399679777989721, 0.029070678542675074, 0.033409896084762726, 0.036911093677711414, 0.039491896546726336, 0.041092843377906925, 0.04167874830312566, 0.04123946236788188, 0.039790018320897166, 0.037370157732002536, 0.03404325457445231, 0.02989466412910709, 0.025029540022369297, 0.019570175058984503, 0.013652932944866013, 0.0074248477399438805, 0.0010399757050144841, -0.005344410073992825, -0.011571688417459912, -0.017489727101159706, -0.02295459434521461, -0.027834054319310762, -0.03201076189467498, -0.0353850795802979, -0.03787744914379113, -0.03943026159467963, -0.04000918171978581, -0.03960389689510679, -0.038228274120851856, -0.035919923785232455, -0.03273918320045868, -0.028767547115414665, -0.024105585848465318, -0.01887040407466864, -0.01319270434508554, -0.007213528846832649, -0.0010807605064279292, 0.00505452988290973, 0.011041800395747568, 0.01673472724307832, 0.021994776275473676, 0.02669456965654962, 0.03072096599778863, 0.0339777795814216, 0.036388073426999026, 0.037895971649023814, 0.03846794853982125, 0.038093564795228206, 0.0367856349589826, 0.03457982415788262, 0.03153368618986353, 0.02772516866856249, 0.023250623888004633, 0.018222376034960235, 0.012765906055097089, 0.007016724615632022, 0.0011170109838320786, -0.004787898916586145, -0.010553088626439146, -0.01603761355714693, -0.021107942699744846, -0.025641205692228317, -0.029528166383197368, -0.03267585102537363, -0.0350097679627348, -0.036475665919543515, -0.037040789501930585, -0.036694602996596645, -0.035448966687508174, -0.03333776338604048, -0.030415986351579702, -0.026758312937909628, -0.02245720081468121, -0.017620555178721402, -0.012369025707057535, -0.006833000863593335, -0.0011493743426731647, 0.004541836254177766, 0.010100935080726818, 0.015391973344937582, 0.020286070346324788, 0.02466454921140987, 0.028421811119948154, 0.03146787849760915, 0.03373054601342288, 0.03515708805171253, 0.03571548238235808, 0.035395121754895106, 0.034206997793803866, 0.03218335456211164, 0.029376822168700183, 0.02585905350273495, 0.021718899276122857, 0.017060167747651196, 0.011999025519415403, 0.006661104396002175, 0.0011783862739623765, -0.004314056781926493, -0.009681386839109378, -0.014792307040607423, -0.019522270167744785, -0.02375651049218683, -0.027392825191067536, -0.030344037993709903, -0.032540085751275594, -0.03392967806934082, -0.03448149078152378, -0.03418486560509714, -0.033050000520523266, -0.03110762795489405, -0.028408190415966098, -0.02502053551081111, -0.021030163990934887, -0.016537075309099286, -0.01165326488927006, -0.006499935665802778, -0.0012044932410635316, 0.004102600919038626, 0.009291040603097043, 0.014233871322446913, 0.018810593791329953, 0.02291009862393184, 0.026433360845851756, 0.029295828945729147, 0.0314294509004591, 0.032784288700560854, 0.033329683153327495, 0.033054941895315104, 0.03196953532616544, 0.030102797291907995, 0.02750313949968955, 0.024236800539339205, 0.020386161729657456, 0.016047672522620546, 0.01132943763183663, 0.006348526174896253, 0.0012280697379316008, -0.0039057787725801647, -0.008926950447013124, -0.013712553486468966, -0.018145878289095554, -0.02211924108986833, -0.025536596932260312, -0.028315858631141038, -0.030390865801022342, -0.03171295678576018, -0.03225210621587792, -0.03199760169175226, -0.03095824447811959, -0.029162070816599703, -0.026655602229819213, -0.023502644714648798, -0.019782667721332886, -0.01558880402193828, -0.011025520737872224, -0.006206019700854476, -0.001249431774876786, 0.0037221253852645977, 0.00858655353405395, 0.013224770050090023, 0.01752362070005786, 0.02137863776437287, 0.02469657635356035, 0.027397667395413428, 0.029417532914776237, 0.030708717680625327, 0.0312418008477099, 0.031006061634676355, 0.03000968409937416, 0.028279497422869986, 0.0258602595172773, 0.022813502949086857, 0.019215972845949746, 0.015157696370589255, 0.010739732259961119, 0.006071656625437276, 0.0012688475056811717, -0.003550364592062848, -0.008267609845855799, -0.012767384304911852, -0.01693987585888804, -0.020683641902855238, -0.02390807345864437, -0.026535585949934375, -0.02850348371523099, -0.02976545350647457, -0.030292651457416855, -0.030074358085368774, -0.029118186562759683, -0.027449840497666158, -0.02511242852427709, -0.022165353853743745, -0.018682807307600788, -0.014751901997060052, -0.010470496487726267, -0.005944760790801549, -0.0012865456681831298, 0.003389379616669657, 0.007968152937031377, 0.012337638813004781, 0.016391172632809214, 0.020030162476652687, 0.023166485126521388, 0.02572461808166495, 0.02764345604759437, 0.028877768258816584, 0.029399261935112754, 0.029197226935616903, 0.028278747022388008, 0.02666847382012554, 0.02440797029840228, 0.021554641143706536, 0.018180277472766543, 0.0143692527200899, 0.01021641498335492, 0.005824728425681175, 0.0013027223377762409, -0.003238188987982639, -0.007686449432636199, -0.011933099780192646, -0.015874444810639654, -0.019414583516504727, -0.02246774074882283, -0.02496034364739416, -0.02683279263428047, -0.02804088438713193, -0.028556852869357694, -0.028370003962019125, -0.027486929283124892, -0.025931295145825258, -0.023743213042684303, -0.02097820829258309, -0.017705813299013568, -0.014007821004124314, -0.009976242359706794, -0.005711018774875783, -0.001317546368469544, 0.0030959266881517037, 0.00742096551061517, 0.011551610938363006, 0.015386973738882403, 0.018833697106561933, 0.021808227392475857, 0.0242388378745622, 0.026067356591233094, 0.02725055665931302, 0.02776117589459602, 0.027588541741460543, 0.02673878726933229, 0.025234654067561823, 0.023114888018489464, 0.02043324390195766, 0.017257124339123915, 0.013665887485905524, 0.009748865920135921, 0.005603146136868287, 0.001331163805118587, -0.0029618256906964366, -0.007170339003769359, -0.01119125509333045, -0.014926340439833754, -0.018284647407741748, -0.021184727237718665, -0.023556603857893828, -0.02534346071923226, -0.02650300003184549, -0.02700844192819885, -0.026849140003096225, -0.026030799158008915, -0.024575291474765667, -0.022520075719611662, -0.019917235790679125, -0.016832162732151795, -0.013341913619528646, -0.009533288461087149, -0.005500673070805175, -0.0013437014832890033, 0.0028352042329097753, 0.006933356052438774, 0.010850321892127689, 0.014490385432373016, 0.017764883649082144, 0.02059436500497898, 0.022910515801281728, 0.02465780801919245, 0.02579482893893182, 0.026295260738500102, 0.02614848694825868, 0.025359811855992162, 0.023950288492718824, 0.02195616044737453, 0.019427932222406526, 0.016429091920474845, 0.013034518523135051, 0.009328613679311357, 0.005403204578809037, 0.0013552699833031712, -0.0027154543076808382, -0.006708931465170797, -0.010527280667149653, -0.0140771748476989, -0.017272120454565915, -0.020034563558235203, -0.02229777106101561, -0.024007441406453174, -0.025123005945741624, -0.025618589810057598, -0.025483609574772036, -0.024722993974344232, -0.02335702321385102, -0.021420791795844378, -0.018963309009365447, -0.016046260085392557, -0.012742459293363153, -0.009134033735229603, -0.005310383105204344, -0.001365966067563401, 0.0026020319676232843, 0.006496092118328332, 0.010220757448281948, 0.01368497171879119, 0.016804304203895018, 0.019503006238796267, 0.021715849438222797, 0.023389701006101316, 0.024484798122965536, 0.024975690879125174, 0.024851831433870496, 0.024117795820529128, 0.02279313386825835, 0.020911851851144147, 0.018521541478982193, 0.015682177491412555, 0.012464614196551687, 0.008948818610024297, 0.00522188422275308, 0.001375874701930989, -0.002494449117477997, -0.006293962860044532, -0.00992951541543272, -0.013312211544931866, -0.016359584383080997, -0.01899760476849918, -0.021162478473522036, -0.022802187728621772, -0.023877739821182492, -0.02436409282978715, -0.02425073655385625, -0.023541915216202396, -0.022256487342528417, -0.020427427139727148, -0.01810098048495144, -0.015335497084391253, -0.012199968258041404, -0.008772306961969172, -0.005137412898898334, -0.0013850707403448518, 0.0023922665352370284, 0.006101754488727927, 0.00965243820547652, 0.012957481406684766, 0.015936289082210075, 0.018516471784701557, 0.020635603736159858, 0.022242732074113928, 0.023299600775860924, 0.02378155989064526, 0.02367813850517202, 0.022993268174411507, 0.021745152162181668, 0.019965784542375846, 0.0177001317980202, 0.015004997811136076, 0.011947600859789681, 0.008603898241440406, 0.005056700253527537, 0.0013936203353077019, -0.0022950879128631695, -0.005918753458577677, -0.009388515598962177, -0.012619502043745399, -0.015532903956532725, -0.018057897245600793, -0.020133363288725184, -0.02170936730991112, -0.022748358673196824, -0.02322606426917705, -0.023132053771873582, -0.0224699636489046, -0.021257375216423076, -0.019525350534920622, -0.017317638333743533, -0.014689570225327627, -0.011706675027270965, -0.008443045867156263, -0.004979500734773004, -0.0014015821240636816, 0.0022025547471406647, 0.005744313029523505, 0.009136831200036163, 0.012297112416656514, 0.015148054092932059, 0.01762032808419807, 0.019654065658479634, 0.021200306322634328, 0.0222221754654938, 0.02269576251777271, 0.022610678745961087, 0.021970281710725372, 0.02079156163410287, 0.019104693231692844, 0.0169522647718485, 0.014388204022376368, 0.011476428143240297, 0.008289251300775222, 0.004905589651580832, 0.0014090082303222888, -0.0021143419426139726, -0.005577845630634449, -0.00889655179314466, -0.011989256359865254, -0.014780488324228859, -0.017202350600789406, -0.019196170766077665, -0.02071392157053252, -0.021719376851525442, -0.02218897505096694, -0.02211236978227433, -0.021492654621383556, -0.020346257324130222, -0.01870250679997753, -0.016602884199987185, -0.014099977208244213, -0.011256163871514457, -0.008142058884927836, -0.0048347610117874355, -0.0014159451135996363, 0.002030154013573293, 0.005418816247279349, 0.008666918116214093, 0.011694971002927077, 0.01442906561432045, 0.016802675173390073, 0.018758273358612788, 0.020248727662251526, 0.02123843443920328, 0.021704168334336423, 0.021635625849232985, 0.021035650363780373, 0.01992013377766081, 0.0183175978880867, 0.016268466477704437, 0.013824046657724857, 0.011045245110773868, 0.008001051332409456, 0.004766825622644644, 0.0014224342921030796, -0.001949721792085243, -0.005266736675474589, -0.008447236835180484, -0.011413376692503495, -0.014092743202076926, -0.016420122937750074, -0.018339088571548923, -0.019803366169178657, -0.020777950190207506, -0.02123993934715472, -0.021179073389635567, -0.02059795826643028, -0.019511974797451613, -0.017948873769948484, -0.015948068067589787, -0.01355963985860183, -0.010843087828347087, -0.007865845772732562, -0.004701609417503775, -0.0014285129602281106, 0.001872799565193099, 0.00512116051362339, 0.008236873541284693, 0.011143668193024418, 0.013770566244524685, 0.01605361414717332, 0.017937439307072287, 0.01937659234425528, 0.020336642813097917, 0.020795001987215615, 0.020741453069891697, 0.02017837641700946, 0.019120664875185364, 0.017595331958165122, 0.01564082312223433, 0.013306047671493555, 0.010649155648402648, 0.007736090277359182, 0.004638951977968352, 0.0014342145178684036, -0.001799162577462036, -0.004981678783586307, -0.00803524662224405, -0.010885106980668984, -0.013461658742704948, -0.015702157970090804, -0.017552245167735667, -0.018967263473787375, -0.01991333582598347, -0.02036817514037182, -0.020321608148466484, -0.01977580061067893, -0.018745178982852075, -0.017256051077630386, -0.015345935649716345, -0.013062617962545028, -0.01046295508903968, -0.0076114607973697635, -0.004578705225476139, -0.0014395690256408702, 0.0017286048456612963, 0.004847916090733178, 0.007841821882691375, 0.010637014475414111, 0.013165215568622846, 0.015364843522381998, 0.017182512726305502, 0.01857432863270137, 0.019506947054543904, 0.019958372181729127, 0.01991847423730338, 0.01938921461919245, 0.01838457358146649, 0.016930182824770337, 0.015062672608372893, 0.012828749988630149, 0.010284031359299499, 0.007491658457589516, 0.004520732260143092, 0.0014446035976516342, -0.0016609372410321054, -0.004719527247166626, -0.007656107809154755, -0.010398766080577318, -0.012880495440505936, -0.015040831963555518, -0.016827326947297692, -0.018196819649855225, -0.01911647936800563, -0.01956459171199397, -0.01953107026540974, -0.01901768160023188, -0.01803797868106729, -0.016616944864676755, -0.014790357804758226, -0.012603889433318145, -0.010111964640790701, -0.007376407159717166, -0.004464906327954974, -0.001449342741398208, 0.0015959858017239922, 0.004596194294233312, 0.007477651391260532, 0.010169785919654208, 0.012606814717344235, 0.014729349512403154, 0.01648584360424349, 0.017833843119877037, 0.01874101248610479, 0.019185909362704284, 0.019158490483088715, 0.01866033649408109, 0.017704590811336286, 0.016315614540938994, 0.014528366487870287, 0.012387524007289234, 0.009946366789984631, 0.007265451454066508, 0.0044111099000922445, 0.0014538086527930056, -0.0015335902438227366, -0.0044776238703218025, -0.007306034424402156, -0.009949542177106146, -0.012343541903364555, -0.014429681259710595, -0.016157282560405165, -0.017484573322782467, -0.01837969571531807, -0.01882147052916995, -0.01879989736963455, -0.01831637927773821, -0.017383666783279676, -0.01602552329171928, -0.014276120548695422, -0.012179179539710852, -0.009786878406685736, -0.007158554645467053, -0.004359233850482901, -0.0014580214729519095, 0.0014736026442548796, 0.004363544878129217, 0.007140870230383336, 0.00973754296376593, 0.012090092769458638, 0.01414116567388658, 0.015840921800370295, 0.017148245933255864, 0.018031741493678005, 0.01847048391086406, 0.018454515327594064, 0.017985068965737396, 0.017074518140026737, 0.015746051681265607, 0.014033084247438437, 0.01197841649783296, 0.00963316622211583, 0.007055497103818308, 0.004309176719598887, 0.0014619995123083503, -0.0014158862728771715, -0.00425370641239668, -0.00698180074193476, -0.009533332639218314, -0.011845926012245416, -0.013863189710638955, -0.015536092116421273, -0.0168241524187194, -0.017696419641072714, -0.01813221575649913, -0.018121625063668843, -0.01766571826299747, -0.016776506209538748, -0.015476624969149727, -0.013798760401989695, -0.011784826881051856, -0.009484920766687402, -0.006956074753967209, -0.004260844054152627, -0.001465759446719489, 0.0013603145544176297, 0.0041478759148108075, 0.006828493904860024, 0.009336488533302033, 0.011610539382894636, 0.013595184450611723, 0.015242172367376265, 0.01651163503978421, 0.017373052226689025, 0.017805984725702103, 0.017800558570582454, 0.017357688788491546, 0.016489037684412143, 0.015216709150542077, 0.013572686980568216, 0.011598031443268719, 0.009341854283142872, 0.006860097723097169, 0.00421414781373992, 0.0014693164894944498, -0.0013067701437436538, -0.004045837527545893, -0.006680641358165862, -0.009146618017092942, -0.011383466227450137, -0.01333662119966691, -0.014958585239220884, -0.016210082378840956, -0.01706100897767456, -0.01749115729156568, -0.01749069463624016, -0.01706038679988794, -0.01621156066440465, -0.0149658074101196, -0.013354434049408942, -0.011417677203762421, -0.009203698855466333, -0.006767389126796241, -0.004169005836660102, -0.0014726845426654006, 0.0012551441002946941, 0.003947390620945353, 0.006537956358078169, 0.008963355880674064, 0.011164272388517619, 0.013087007995559164, 0.014684793446642084, 0.015918925332827474, 0.016759703163586933, 0.017187143618797848, 0.0171914548166528, 0.016773259358913464, 0.015943561106138756, 0.014723456940057238, 0.013143601033071101, 0.011243435212211054, 0.00907020472798442, 0.006677783977501463, 0.004125341358152247, 0.0014758763303124628, -0.0012053351494930766, -0.0038523484742248285, -0.006400171916557462, -0.00878636198084336, -0.010952553425030978, -0.012845886472440123, -0.014420296322880373, -0.015637633514912264, -0.016468587900084916, -0.016893393861042563, -0.016902299817695796, -0.016495790885330992, -0.01568455963193199, -0.014489226079229513, -0.012939814250640322, -0.01107499853809616, -0.008941138792478428, -0.006591128201166812, -0.004083082575162304, -0.0014789035163418351, 0.001157249020643111, 0.003760537090970943, 0.006267039128890971, 0.00861531912689051, 0.010747932112644102, 0.012612829041148339, 0.014164626752362219, 0.01536571201722591, 0.016187152822868124, 0.016609394828468384, 0.016622726238085875, 0.01622750005434679, 0.015434108656074148, 0.014262711736419848, 0.01274272469594671, 0.010912080458642084, 0.008816283224044838, 0.006507277749850425, 0.004042162252482523, 0.0014817768087463344, -0.0011107978522339242, -0.0036717941336339363, -0.006138325668332812, -0.00844993117679996, -0.010550056192249314, -0.01238743634879346, -0.013917348406577117, -0.01510269849307106, -0.015914921089307917, -0.016334666983135473, -0.016352263632192453, -0.015967936998171128, -0.015191789792313466, -0.014043537065176076, -0.012552006034062261, -0.010754412822790455, -0.008695434248910946, -0.006426097799475317, -0.004002517365761239, -0.0014845060520990187, 0.0010658996567819582, 0.00358596796330269, 0.006013814428645822, 0.008289921319845897, 0.010358596338355093, 0.012169334985884213, 0.013678053248790532, 0.01484816052242278, 0.01565144667071286, 0.016068761725133072, 0.016090471856632402, 0.01571668077750334, 0.014957211510959793, 0.013831349362103474, 0.012367352789886285, 0.010601744571577348, 0.008578401029559696, 0.006347462023384735, 0.003964088777422805, 0.001487100309771126, -0.0010224778383769908, -0.003502916772823997, -0.0058933022978664, -0.008135030524631728, -0.010173244322676796, -0.011958175413308575, -0.01344635927757641, -0.014601693229142315, -0.01539631190288308, -0.015811258937180557, -0.01583693866916641, -0.015473337093048467, -0.014730007018010458, -0.013625818163939164, -0.012188478707671278, -0.010453840397743733, -0.008465004654331377, -0.006271251933469901, -0.003926820942018058, -0.0014895679371589765, 0.0009804607569779459, 0.003422507802850432, 0.005776599048728531, 0.007985016134273973, 0.00999371135140407, 0.011753630084960982, 0.013221908482918158, 0.014362917122283375, 0.015149125266661038, 0.015561764759421871, 0.015591277552345352, 0.015237536210895212, 0.014509832332133439, 0.013426633521814406, 0.01201511526296148, 0.010310479529530353, 0.008355077220264387, 0.006197356281646028, 0.003890661637938775, 0.0014919166470262143, -0.0009397813342607372, -0.0033446166317083422, -0.005663526333004311, -0.007839650592710877, -0.009819726557274993, -0.011555391744804463, -0.013004364991881507, -0.014131476137286221, -0.014909519373670074, -0.015319909569623608, -0.015353125737739849, -0.015008931078796535, -0.014296364538302178, -0.013233504433751054, -0.011847010310674175, -0.01017145462543919, -0.008248460999282772, -0.0061256705153319305, -0.0038555617227887706, -0.0014941535679173668, 0.0009003766964701549, 0.0032691265311025563, 0.005553916768576673, 0.007698720288068099, 0.00965103562990562, 0.011363171879750803, 0.012793413383655411, 0.013907035855790485, 0.014677149135446104, 0.015085346146991644, 0.015122142409512172, 0.01478719561316758, 0.014089300199438888, 0.013046157418718948, 0.011683926855016508, 0.01003657076832504, 0.00814500767903403, 0.0060560962813343815, 0.003821474910017328, 0.0014962852964669007, -0.0008621878502871834, -0.003195927880649213, -0.005447613109424827, -0.00756202450073509, -0.009487399569802251, -0.011176699311977473, -0.012588757156183556, -0.013689281885353361, -0.014451690096772442, -0.014857748000421533, -0.014898007068620146, -0.014572023139021239, -0.013888353909629015, -0.012864335217565146, -0.01152564192860729, -0.009905644548561483, -0.008044577670688243, -0.005988540973186967, -0.0037883575646899615, -0.0014983179443310232, 0.0008251593882100806, 0.0031249176350563387, 0.005344467489871733, 0.0074293744452379505, 0.009328593553228428, 0.01099571891622728, 0.012390117328715117, 0.013477918382556043, 0.014232836916291763, 0.014636807844257003, 0.014680418041143412, 0.014363124967141254, 0.01369325697440833, 0.012687795607829545, 0.011371945569670857, 0.009778503227205113, 0.007947039476913645, 0.005922917317570303, 0.003756168516521863, 0.0015002571803483097, -0.0007892392203537773, -0.00305599883852759, -0.005244340735442973, -0.007300592396315846, -0.009174405896575422, -0.010819990449347791, -0.012197231166414477, -0.013272666704918262, -0.01402030197942878, -0.014422236206590586, -0.014469091116130801, -0.014160229094615834, -0.013503756205283697, -0.012516310320976765, -0.011222639887424245, -0.009654983971142447, -0.007852269114008683, -0.005859142995939838, -0.0037248688884815436, -0.0015021082684974105, 0.0007543783299625464, 0.0029890801815564577, 0.0051471017336073635, 0.007175510890671139, 0.009024637110223707, 0.010649287480762973, 0.012009851014782118, 0.01307326417869357, 0.013813814130377081, 0.014213760156853002, 0.014263758300036204, 0.013963079016428646, 0.013319612817118825, 0.012349664051856403, 0.011077538206922258, 0.009534933153084202, 0.007760149582861, 0.005797140297899685, 0.003694421939495912, 0.001503876102100212, -0.0007205305502048775, -0.0029240755958798107, -0.005052626858393415, -0.007053971996878242, -0.008879099032985305, -0.010483396413877088, -0.01182774323300063, -0.012879462971095709, -0.013613117511392724, -0.014011122140930345, -0.014064166676264561, -0.013771432637189456, -0.013140601418286178, -0.012187653551363396, -0.010936464285577674, -0.009418205710098777, -0.007670570383973737, -0.005736835803278438, -0.003664792919900075, -0.0015055652347127203, 0.0006876523601446101, 0.00286090388378896, 0.004960799443598293, 0.006935826646738166, 0.008737614039244489, 0.010322115589511812, 0.011650687216557029, 0.012691029056767496, 0.013417970498948778, 0.013814078913354245, 0.013870077359622443, 0.01358506127329904, 0.012966509084608429, 0.012030086794248706, 0.010799251594458421, 0.009304664555034639, 0.007583427072353768, 0.005678160090151004, 0.0036359489384678264, 0.0015071799080421788, -0.0006557026979733072, -0.0027994883784689963, -0.004871509299848284, -0.006820934022144826, -0.008600014311765294, -0.010165254463467811, -0.011478474500534986, -0.012507741269437852, -0.013228144727447766, -0.013622400557258232, -0.013681264536586487, -0.013403748736896336, -0.012797134509085477, -0.011876782214928206, -0.010665742658183692, -0.009194180035831013, -0.007498620848472102, -0.005621047466391389, -0.003607858839933399, -0.001508724077233647, 0.0006246427898399152, 0.0027397566323577017, 0.004784652271327309, 0.0067091609921459345, 0.008466141173911083, 0.010012632851152573, 0.01131090793592424, 0.012329390430677555, 0.013043424192202441, 0.013435869583795876, 0.013497514583281576, 0.013227290493877986, 0.012632287220270471, 0.011727568004884548, 0.0105357884479343, 0.009086629438214979, 0.007416058181949025, 0.005565435722552771, 0.003580493092072803, 0.0015102014337907703, -0.0005944359927715187, -0.0026816401308816357, -0.004700129828408825, -0.006600381595484517, -0.00833584447568282, -0.009864080232989993, -0.011147800932092035, -0.012155778548548057, -0.012863604424270996, -0.01325428010360674, -0.013318625253926769, -0.01305549288909077, -0.012471786862916296, -0.011582281465954605, -0.010409247822644567, -0.008981896527792297, -0.007335650464937388, -0.00551126590414333, -0.0035538236814693746, -0.0015116154263882828, 0.0005650476503558295, 0.002625074029175683, 0.00461784869286026, 0.006494476564373253, 0.008208982028594616, 0.009719435114967503, 0.010988976759310683, 0.011986718079678918, 0.012688491730525893, 0.013077437063691643, 0.013144404933265989, 0.012888172432531002, 0.012315462535177032, 0.011440768414380693, 0.010285987013979836, 0.00887987112792786, 0.007257313692512165, 0.005458482101529251, 0.0035278240172101675, 0.001512969279790106, -0.0005364449599842499, -0.002569996909679013, -0.0045377204926023715, -0.006391332885738154, -0.008085419084898031, -0.009578544439296047, -0.010834267905846668, -0.01182203124900195, -0.012517902493012727, -0.012905155543753436, -0.012974671947175291, -0.012725155141015809, -0.012163152177246743, -0.011302882631036706, -0.01016587915114885, -0.008780448730199739, -0.007180968167638915, -0.0054070312559077295, -0.0035024688418020112, -0.001514266012075679, 0.0005085968506046707, 0.002516350558681711, 0.004459661443360515, 0.006290843396517381, 0.007965027857164098, 0.009441263040645216, 0.010683515484707798, 0.011661549421945782, 0.012351662522275366, 0.012737260106664313, 0.012809253926231624, 0.012566275930364317, 0.012014702006836202, 0.011168485353712166, 0.010048803821994409, 0.00868353013453172, 0.007106538228550195, 0.005356862979918688, 0.003477734148703692, 0.0015155084503307651, -0.00048147387000668074, -0.0024640797601374206, -0.0043835920547748135, -0.006192906409989697, -0.007847687074605564, -0.00930745314390864, -0.010536568685619604, -0.011505112524436695, -0.012189606459857406, -0.01257358419826562, -0.012647987217556979, -0.01241137805362121, -0.011869965997356702, -0.011037444807740592, -0.009934646667183814, -0.008589021116394062, -0.007033951996561309, -0.005307929391640458, -0.0034535971058876993, -0.001516699244976413, 0.000455048080804994, 0.0024131321051841037, 0.004309436858824762, 0.006097425370375212, 0.007733281572913733, 0.00917698389983237, 0.010393284268267586, 0.011352568506508775, 0.0120315772256728, 0.012413969592181766, 0.012490716340718399, 0.012260312581308327, 0.011728805395083594, 0.010909635771645219, 0.009823299004609728, 0.008496832118737281, 0.006963141142563569, 0.00526018496080393, 0.003430035984944442, 0.001517840882848934, -0.00042929296432671804, -0.0023634578160152417, -0.0042371241585981625, -0.006004308533256078, -0.0076217019146871045, -0.009049730955228492, -0.01025352609321697, -0.011203772845747197, -0.01187742550636122, -0.012258265875760151, -0.012337293483882131, -0.012112937920077007, -0.011591088271950864, -0.010784939174781306, -0.00971465748142312, -0.008406877966526892, -0.0068940406706050625, -0.005213586366195044, -0.0034070300952481303, -0.0015189356991723625, 0.00040418333173179754, 0.0023150095828370614, 0.004166585795663593, 0.005913468669586553, 0.007512844037826293, 0.008925576054795813, 0.010117164687290788, 0.011058588087152581, 0.011727009281129063, 0.012106329973623965, 0.012187578036788894, 0.011969119366495633, 0.0114566891109392, 0.010663241724268916, 0.009608623751342315, 0.008319077601981714, 0.006826588717109743, 0.0051680923633115935, 0.003384559722778639, 0.0015199858885155129, -0.00037969524172102025, -0.0022677424128075625, -0.004097756934445616, -0.005824822791289449, -0.007406608929514652, -0.008804406671879364, -0.009984076840478081, -0.010916883416353076, -0.011580193381905442, -0.01195802570566823, -0.01204143615744953, -0.011828728693012169, -0.011325488421326742, -0.010544435558748297, -0.009505104175134903, -0.008233353838774906, -0.0067607263644399035, -0.005123663661416047, -0.0033626060732225307, -0.0015209935148397405, 0.00035580592428265123, 0.002221613489926261, 0.004030575862183254, 0.005738291896619819, 0.007302902323647564, 0.00868611566573316, 0.009854145231748159, 0.01077853426337144, 0.011436849084956666, 0.011813223376626478, 0.011898740369753469, 0.011691643763420745, 0.011197372381315024, 0.01042841792674361, 0.009404009542339867, 0.008149633133637126, 0.006696397467611468, 0.0050802628092211375, 0.0033411512189909453, 0.001521960520715658, -0.00033249370996025145, -0.002176582044981638, -0.003964983803162722, -0.005653800733659926, -0.007201634419756789, -0.008570600963101867, -0.009727258081365672, -0.010643421934430523, -0.011296853731357517, -0.01167179939460986, -0.011759369189448244, -0.011557748175405648, -0.011072232505793778, -0.01031509088761195, -0.009305254812510197, -0.008067845373939564, -0.00663354849310584, -0.0050378540885073425, -0.0033201780498695213, -0.001522888735793008, 0.0003097379641831879, 0.002132609234697766, 0.003900924746056256, 0.005571277580452928, 0.007102719621677968, 0.0084577652621272, 0.009603308827561281, 0.010511433269506572, 0.011160090373977484, 0.011533635916259553, 0.011623206776182355, 0.011426930927965368, 0.010949965337194027, 0.010204361033252141, 0.009208758874376709, 0.007987923679967875, 0.00657212836879014, 0.004996403415038466, 0.003299670226990427, 0.0015237798845881456, -0.0002875190262419242, -0.0020896580293487143, -0.0038383452832982754, -0.005490654040427009, -0.007006076294349274, -0.008347515756775439, -0.009482195825569065, -0.010382460323554764, -0.011026447448835098, -0.01139862051637145, -0.011490142609518082, -0.011299086111719118, -0.010830472157591824, -0.010096139228910206, -0.009114444321522011, -0.007909804220715074, -0.006512088344072108, -0.00495587824619385, -0.0032796121398814063, -0.001524635593648581, 0.00026581815252942683, 0.0020476931081574536, 0.003777194461535582, 0.005411864851883411, 0.006911626537311536, 0.008239763880145615, 0.009363822067268308, 0.010256400069519543, 0.010895818468891285, 0.011266645880046465, 0.011360071187008509, 0.011174112620279899, 0.010713658720364654, 0.009990340371570447, 0.009022237243243489, 0.00783342604212774, 0.0064533818594813275, 0.0049162474948045275, 0.003259988866350626, 0.0015254573981642228, -0.0002446174637048809, -0.0020066807618358425, -0.0037174236422586344, -0.005334847710433134, -0.006819295973559016, -0.008134425065166154, -0.009248094919780379, -0.010133154121412363, -0.010768101738503351, -0.011137609515594697, -0.011232891742606407, -0.011051913881040997, -0.010599434999880336, -0.009886883164553556, -0.008932067029427004, -0.0077587309068310305, -0.006395964424944249, -0.004877481448689236, -0.0032407861349919775, -0.001526246748048158, 0.0002238998954672074, 0.0019665888017370873, 0.003658986371834583, 0.005259543103367087, 0.0067290135525710695, 0.008031418521321155, 0.009134925881563812, 0.010012628475892588, 0.010643200086942153, 0.011011413486579302, 0.011108507983824581, 0.010932397603869532, 0.01048771495781185, 0.009785689907073953, 0.00884386618834578, 0.00768566314445724, 0.0063397935060843635, 0.00483955169548648, 0.003221990290113425, 0.0015270050135689254, -0.0002036491526539958, -0.0019273864750657896, -0.003601838260190611, -0.005185894155034375, -0.006640711366395772, -0.00793066702616741, -0.00902423035463683, -0.009894733270925021, -0.010521020619494302, -0.010887964161528249, -0.01098682784620731, -0.010815475546331851, -0.010378416324808213, -0.009686686297598671, -0.008757570176396938, -0.007614169511749971, -0.006284828417937009, -0.004802431052346392, -0.003203588258907791, -0.001527733490535292, 0.00018384966640678073, 0.001889044385716531, 0.0035459368674942942, 0.005113846482384542, 0.006554324477813939, 0.007832096730511147, 0.008915927431710746, 0.00977938256021163, 0.010401474484817357, 0.010767171979967901, 0.010867763263796962, 0.010701063294198163, 0.010271460396355516, 0.009589801249979275, 0.008673117238873007, 0.007544199061731635, 0.0062310302255207525, 0.004766093500153985, 0.00318556752070056, 0.0015284334051065545, -0.00016448655416639304, -0.0018515344202769076, -0.0034912415982229212, -0.00504334805990276, -0.006469790759651702, -0.007735636976214561, -0.00880993969710061, -0.009666494102209435, -0.010284476657319514, -0.01064895123355339, -0.01075122995439325, -0.010589080056074314, -0.01016677184176387, -0.009494966721381738, -0.008590448260942981, -0.007475703021230267, -0.006178361650754872, -0.004730514121913454, -0.0031679160781231193, -0.0015291059182350763, 0.00014554558228208427, 0.0018148296788301212, 0.0034377136020538805, 0.004974349093233062, 0.00638705074440642, 0.007641220125678486, 0.008706193040386058, 0.009555989162640194, 0.010169945733444942, 0.010533219861166789, 0.010637147218504658, 0.01047944847111705, 0.010064278525306055, 0.009402117551157956, 0.008509506628087247, 0.007408634676172944, 0.0061267869852553196, 0.004695669045019388, 0.0031506224300722964, 0.0015297521297850582, -0.0001270131310415612, -0.0017789044101855678, -0.0033853156810923625, -0.004906801900844568, -0.006306047483438276, -0.007548781402151578, -0.008604616481879893, -0.009447792329506646, -0.010057803740838887, -0.010419899256959115, -0.010525437750984275, -0.010372094428864173, -0.00996391133861542, -0.009311191309838696, -0.008430238095294045, -0.007342949264059944, -0.006076272008581129, -0.004661535387110301, -0.0031336755463290595, -0.0015303730823504134, 0.00010887616192825453, 0.0017437339512141842, 0.0033340122029376315, 0.00484066080314976, 0.0062267264149994065, 0.007458258740058611, 0.008505142009038145, 0.009341831339686876, 0.00994797595945245, 0.010308914090387068, 0.01041602746442601, 0.010266946900304701, 0.009865604043524764, 0.009222128157529057, 0.008352590664382329, 0.007278603873109537, 0.006026783911534543, 0.00462809120525891, 0.003117064843714942, 0.0015309697647971539, -0.00009112218696615018, -0.0017092946699877366, -0.0032837690191974654, -0.004775882018533042, -0.0061490352404887, -0.007369592644630234, -0.00840770442302669, -0.009238036916283988, -0.009840390753724462, -0.010200192137384068, -0.010308845323473493, -0.010163937779373211, -0.00976929312459531, -0.009134870711019472, -0.008276514468868498, -0.0072155573475927645, -0.00597829122416446, -0.00459531544825824, -0.0031007801636907164, -0.0015315431155527588, 0.00007373923996649425, 0.0016755639124466594, 0.0032345533890225475, 0.004712423565792268, 0.0060729238083115375, 0.007282726060164053, 0.008312241194704851, 0.00913634261595047, 0.009734979415048492, 0.010093664121865624, 0.010203823189262884, 0.010063001734131008, 0.009674917650644571, 0.009049363918998427, 0.008201961665838847, 0.007153770198919882, 0.0059307637481208104, 0.004563187911786266, 0.003084811751274029, 0.0015320940256629857, -0.000056715849575212916, -0.0016425199523436337, -0.003186333907336847, -0.004650245172536523, -0.005998344004832778, -0.007197604246304127, -0.008218692329369684, -0.0090366846854859, -0.009631676013796938, -0.009989263566841737, -0.010100895673283842, -0.009964076066946487, -0.009582419144642829, -0.008965554944794646, -0.008128886334342725, -0.007093204522074838, -0.005884172493081979, -0.0045316891962484725, -0.003069150235216506, -0.0015326233416347145, 0.0000400410139556635, 0.0016101419442305547, 0.0031390804374013107, 0.004589308189120133, 0.0059252496518975885, 0.007114174661777932, 0.008127000239638927, 0.008939001927057528, 0.009530417260232628, 0.009886926654462178, 0.01],"x":[-100.0,-99.95002498750625,-99.9000499750125,-99.85007496251875,-99.80009995002499,-99.75012493753124,-99.70014992503748,-99.65017491254373,-99.60019990004997,-99.55022488755623,-99.50024987506247,-99.45027486256872,-99.40029985007496,-99.35032483758121,-99.30034982508745,-99.2503748125937,-99.20039980009994,-99.1504247876062,-99.10044977511244,-99.05047476261869,-99.00049975012493,-98.95052473763118,-98.90054972513744,-98.85057471264368,-98.80059970014993,-98.75062468765617,-98.70064967516242,-98.65067466266866,-98.60069965017492,-98.55072463768116,-98.50074962518741,-98.45077461269365,-98.4007996001999,-98.35082458770614,-98.3008495752124,-98.25087456271864,-98.20089955022489,-98.15092453773113,-98.10094952523738,-98.05097451274362,-98.00099950024988,-97.95102448775611,-97.90104947526237,-97.85107446276862,-97.80109945027486,-97.75112443778112,-97.70114942528735,-97.65117441279361,-97.60119940029985,-97.5512243878061,-97.50124937531234,-97.4512743628186,-97.40129935032483,-97.35132433783109,-97.30134932533733,-97.25137431284358,-97.20139930034982,-97.15142428785607,-97.10144927536231,-97.05147426286857,-97.0014992503748,-96.95152423788106,-96.90154922538731,-96.85157421289355,-96.8015992003998,-96.75162418790605,-96.7016491754123,-96.65167416291854,-96.60169915042479,-96.55172413793103,-96.50174912543729,-96.45177411294353,-96.40179910044978,-96.35182408795602,-96.30184907546227,-96.25187406296851,-96.20189905047476,-96.151924037981,-96.10194902548726,-96.0519740129935,-96.00199900049975,-95.95202398800599,-95.90204897551224,-95.8520739630185,-95.80209895052474,-95.75212393803099,-95.70214892553723,-95.65217391304348,-95.60219890054972,-95.55222388805598,-95.50224887556222,-95.45227386306847,-95.40229885057471,-95.35232383808096,-95.3023488255872,-95.25237381309346,-95.2023988005997,-95.15242378810595,-95.10244877561219,-95.05247376311844,-95.00249875062468,-94.95252373813094,-94.90254872563717,-94.85257371314343,-94.80259870064968,-94.75262368815592,-94.70264867566218,-94.65267366316841,-94.60269865067467,-94.55272363818091,-94.50274862568716,-94.4527736131934,-94.40279860069965,-94.3528235882059,-94.30284857571215,-94.25287356321839,-94.20289855072464,-94.15292353823088,-94.10294852573713,-94.05297351324337,-94.00299850074963,-93.95302348825587,-93.90304847576212,-93.85307346326836,-93.80309845077461,-93.75312343828087,-93.7031484257871,-93.65317341329336,-93.6031984007996,-93.55322338830585,-93.50324837581209,-93.45327336331835,-93.40329835082458,-93.35332333833084,-93.30334832583708,-93.25337331334333,-93.20339830084957,-93.15342328835582,-93.10344827586206,-93.05347326336832,-93.00349825087456,-92.95352323838081,-92.90354822588705,-92.8535732133933,-92.80359820089954,-92.7536231884058,-92.70364817591205,-92.65367316341829,-92.60369815092454,-92.55372313843078,-92.50374812593704,-92.45377311344328,-92.40379810094953,-92.35382308845577,-92.30384807596202,-92.25387306346826,-92.20389805097452,-92.15392303848076,-92.10394802598701,-92.05397301349325,-92.0039980009995,-91.95402298850574,-91.904047976012,-91.85407296351823,-91.80409795102449,-91.75412293853073,-91.70414792603698,-91.65417291354323,-91.60419790104947,-91.55422288855573,-91.50424787606197,-91.45427286356822,-91.40429785107446,-91.35432283858071,-91.30434782608695,-91.2543728135932,-91.20439780109945,-91.1544227886057,-91.10444777611194,-91.0544727636182,-91.00449775112443,-90.95452273863069,-90.90454772613693,-90.85457271364318,-90.80459770114942,-90.75462268865567,-90.70464767616193,-90.65467266366817,-90.60469765117442,-90.55472263868066,-90.50474762618691,-90.45477261369315,-90.4047976011994,-90.35482258870564,-90.3048475762119,-90.25487256371814,-90.20489755122439,-90.15492253873063,-90.10494752623688,-90.05497251374312,-90.00499750124938,-89.95502248875562,-89.90504747626187,-89.85507246376811,-89.80509745127436,-89.7551224387806,-89.70514742628686,-89.65517241379311,-89.60519740129935,-89.5552223888056,-89.50524737631184,-89.4552723638181,-89.40529735132434,-89.35532233883059,-89.30534732633683,-89.25537231384308,-89.20539730134932,-89.15542228885558,-89.10544727636182,-89.05547226386807,-89.00549725137431,-88.95552223888056,-88.9055472263868,-88.85557221389305,-88.8055972013993,-88.75562218890555,-88.70564717641179,-88.65567216391804,-88.6056971514243,-88.55572213893053,-88.50574712643679,-88.45577211394303,-88.40579710144928,-88.35582208895552,-88.30584707646177,-88.25587206396801,-88.20589705147427,-88.1559220389805,-88.10594702648676,-88.055972013993,-88.00599700149925,-87.95602198900549,-87.90604697651175,-87.85607196401799,-87.80609695152424,-87.75612193903048,-87.70614692653673,-87.65617191404297,-87.60619690154923,-87.55622188905548,-87.50624687656172,-87.45627186406797,-87.40629685157421,-87.35632183908046,-87.3063468265867,-87.25637181409296,-87.2063968015992,-87.15642178910545,-87.10644677661169,-87.05647176411794,-87.00649675162418,-86.95652173913044,-86.90654672663668,-86.85657171414293,-86.80659670164917,-86.75662168915542,-86.70664667666166,-86.65667166416792,-86.60669665167416,-86.55672163918041,-86.50674662668666,-86.4567716141929,-86.40679660169916,-86.3568215892054,-86.30684657671165,-86.25687156421789,-86.20689655172414,-86.15692153923038,-86.10694652673664,-86.05697151424287,-86.00699650174913,-85.95702148925537,-85.90704647676162,-85.85707146426786,-85.80709645177411,-85.75712143928035,-85.70714642678661,-85.65717141429285,-85.6071964017991,-85.55722138930535,-85.5072463768116,-85.45727136431785,-85.40729635182409,-85.35732133933034,-85.30734632683658,-85.25737131434283,-85.20739630184907,-85.15742128935533,-85.10744627686157,-85.05747126436782,-85.00749625187406,-84.95752123938031,-84.90754622688655,-84.8575712143928,-84.80759620189905,-84.7576211894053,-84.70764617691154,-84.65767116441779,-84.60769615192403,-84.55772113943029,-84.50774612693654,-84.45777111444278,-84.40779610194903,-84.35782108945527,-84.30784607696152,-84.25787106446776,-84.20789605197402,-84.15792103948026,-84.10794602698651,-84.05797101449275,-84.007996001999,-83.95802098950524,-83.9080459770115,-83.85807096451774,-83.80809595202399,-83.75812093953023,-83.70814592703648,-83.65817091454272,-83.60819590204898,-83.55822088955522,-83.50824587706147,-83.45827086456772,-83.40829585207396,-83.35832083958022,-83.30834582708646,-83.25837081459271,-83.20839580209895,-83.1584207896052,-83.10844577711144,-83.0584707646177,-83.00849575212393,-82.95852073963019,-82.90854572713643,-82.85857071464268,-82.80859570214892,-82.75862068965517,-82.70864567716141,-82.65867066466767,-82.6086956521739,-82.55872063968016,-82.5087456271864,-82.45877061469265,-82.40879560219891,-82.35882058970515,-82.3088455772114,-82.25887056471764,-82.2088955522239,-82.15892053973013,-82.10894552723639,-82.05897051474263,-82.00899550224888,-81.95902048975512,-81.90904547726137,-81.85907046476761,-81.80909545227387,-81.7591204397801,-81.70914542728636,-81.6591704147926,-81.60919540229885,-81.55922038980509,-81.50924537731134,-81.45927036481758,-81.40929535232384,-81.35932033983009,-81.30934532733633,-81.25937031484258,-81.20939530234882,-81.15942028985508,-81.10944527736132,-81.05947026486757,-81.00949525237381,-80.95952023988006,-80.9095452273863,-80.85957021489256,-80.8095952023988,-80.75962018990505,-80.70964517741129,-80.65967016491754,-80.60969515242378,-80.55972013993004,-80.50974512743628,-80.45977011494253,-80.40979510244878,-80.35982008995502,-80.30984507746128,-80.25987006496752,-80.20989505247377,-80.15992003998001,-80.10994502748626,-80.0599700149925,-80.00999500249875,-79.960019990005,-79.91004497751125,-79.86006996501749,-79.81009495252374,-79.76011994002998,-79.71014492753623,-79.66016991504247,-79.61019490254873,-79.56021989005497,-79.51024487756122,-79.46026986506746,-79.41029485257371,-79.36031984007997,-79.3103448275862,-79.26036981509246,-79.2103948025987,-79.16041979010495,-79.11044477761119,-79.06046976511745,-79.01049475262369,-78.96051974012994,-78.91054472763618,-78.86056971514243,-78.81059470264867,-78.76061969015493,-78.71064467766116,-78.66066966516742,-78.61069465267366,-78.56071964017991,-78.51074462768615,-78.4607696151924,-78.41079460269864,-78.3608195902049,-78.31084457771115,-78.26086956521739,-78.21089455272364,-78.16091954022988,-78.11094452773614,-78.06096951524238,-78.01099450274863,-77.96101949025487,-77.91104447776112,-77.86106946526736,-77.81109445277362,-77.76111944027986,-77.71114442778611,-77.66116941529235,-77.6111944027986,-77.56121939030484,-77.5112443778111,-77.46126936531734,-77.41129435282359,-77.36131934032983,-77.31134432783608,-77.26136931534234,-77.21139430284857,-77.16141929035483,-77.11144427786107,-77.06146926536732,-77.01149425287356,-76.96151924037981,-76.91154422788605,-76.86156921539231,-76.81159420289855,-76.7616191904048,-76.71164417791104,-76.6616691654173,-76.61169415292353,-76.56171914042979,-76.51174412793603,-76.46176911544228,-76.41179410294852,-76.36181909045477,-76.31184407796101,-76.26186906546727,-76.21189405297352,-76.16191904047976,-76.11194402798601,-76.06196901549225,-76.0119940029985,-75.96201899050475,-75.912043978011,-75.86206896551724,-75.81209395302349,-75.76211894052973,-75.71214392803599,-75.66216891554222,-75.61219390304848,-75.56221889055472,-75.51224387806097,-75.46226886556721,-75.41229385307346,-75.3623188405797,-75.31234382808596,-75.2623688155922,-75.21239380309845,-75.1624187906047,-75.11244377811094,-75.0624687656172,-75.01249375312344,-74.96251874062969,-74.91254372813593,-74.86256871564218,-74.81259370314842,-74.76261869065468,-74.71264367816092,-74.66266866566717,-74.61269365317341,-74.56271864067966,-74.5127436281859,-74.46276861569216,-74.4127936031984,-74.36281859070465,-74.31284357821089,-74.26286856571714,-74.2128935532234,-74.16291854072963,-74.11294352823589,-74.06296851574213,-74.01299350324838,-73.96301849075462,-73.91304347826087,-73.86306846576711,-73.81309345327337,-73.7631184407796,-73.71314342828586,-73.6631684157921,-73.61319340329835,-73.5632183908046,-73.51324337831085,-73.46326836581709,-73.41329335332334,-73.36331834082958,-73.31334332833583,-73.26336831584207,-73.21339330334833,-73.16341829085458,-73.11344327836082,-73.06346826586707,-73.01349325337331,-72.96351824087957,-72.9135432283858,-72.86356821589206,-72.8135932033983,-72.76361819090455,-72.71364317841079,-72.66366816591704,-72.61369315342328,-72.56371814092954,-72.51374312843578,-72.46376811594203,-72.41379310344827,-72.36381809095452,-72.31384307846076,-72.26386806596702,-72.21389305347326,-72.16391804097951,-72.11394302848576,-72.063968015992,-72.01399300349826,-71.9640179910045,-71.91404297851075,-71.86406796601699,-71.81409295352324,-71.76411794102948,-71.71414292853574,-71.66416791604198,-71.61419290354823,-71.56421789105447,-71.51424287856072,-71.46426786606696,-71.41429285357322,-71.36431784107945,-71.31434282858571,-71.26436781609195,-71.2143928035982,-71.16441779110444,-71.1144427786107,-71.06446776611695,-71.01449275362319,-70.96451774112944,-70.91454272863568,-70.86456771614193,-70.81459270364817,-70.76461769115443,-70.71464267866067,-70.66466766616692,-70.61469265367316,-70.56471764117941,-70.51474262868565,-70.4647676161919,-70.41479260369815,-70.3648175912044,-70.31484257871064,-70.26486756621689,-70.21489255372313,-70.16491754122939,-70.11494252873563,-70.06496751624188,-70.01499250374813,-69.96501749125437,-69.91504247876063,-69.86506746626686,-69.81509245377312,-69.76511744127936,-69.71514242878561,-69.66516741629185,-69.6151924037981,-69.56521739130434,-69.5152423788106,-69.46526736631684,-69.41529235382309,-69.36531734132933,-69.31534232883558,-69.26536731634182,-69.21539230384808,-69.16541729135432,-69.11544227886057,-69.06546726636682,-69.01549225387306,-68.96551724137932,-68.91554222888556,-68.86556721639181,-68.81559220389805,-68.7656171914043,-68.71564217891054,-68.6656671664168,-68.61569215392304,-68.56571714142929,-68.51574212893553,-68.46576711644178,-68.41579210394802,-68.36581709145428,-68.31584207896051,-68.26586706646677,-68.21589205397301,-68.16591704147926,-68.1159420289855,-68.06596701649175,-68.01599200399801,-67.96601699150425,-67.9160419790105,-67.86606696651674,-67.816091954023,-67.76611694152923,-67.71614192903549,-67.66616691654173,-67.61619190404798,-67.56621689155422,-67.51624187906047,-67.46626686656671,-67.41629185407297,-67.3663168415792,-67.31634182908546,-67.2663668165917,-67.21639180409795,-67.16641679160419,-67.11644177911045,-67.06646676661668,-67.01649175412294,-66.96651674162919,-66.91654172913543,-66.86656671664169,-66.81659170414792,-66.76661669165418,-66.71664167916042,-66.66666666666667,-66.61669165417291,-66.56671664167916,-66.5167416291854,-66.46676661669166,-66.4167916041979,-66.36681659170415,-66.31684157921039,-66.26686656671664,-66.21689155422288,-66.16691654172914,-66.11694152923538,-66.06696651674163,-66.01699150424787,-65.96701649175412,-65.91704147926038,-65.86706646676662,-65.81709145427287,-65.76711644177911,-65.71714142928536,-65.6671664167916,-65.61719140429786,-65.5672163918041,-65.51724137931035,-65.46726636681659,-65.41729135432284,-65.36731634182908,-65.31734132933533,-65.26736631684157,-65.21739130434783,-65.16741629185407,-65.11744127936032,-65.06746626686656,-65.01749125437281,-64.96751624187905,-64.91754122938531,-64.86756621689156,-64.8175912043978,-64.76761619190405,-64.7176411794103,-64.66766616691655,-64.61769115442279,-64.56771614192904,-64.51774112943528,-64.46776611694153,-64.41779110444777,-64.36781609195403,-64.31784107946027,-64.26786606696652,-64.21789105447276,-64.16791604197901,-64.11794102948525,-64.0679660169915,-64.01799100449774,-63.968015992004,-63.918040979510245,-63.86806596701649,-63.81809095452274,-63.768115942028984,-63.71814092953523,-63.66816591704148,-63.618190904547724,-63.56821589205397,-63.51824087956022,-63.468265867066464,-63.41829085457271,-63.368315842078964,-63.31834082958521,-63.26836581709146,-63.2183908045977,-63.16841579210395,-63.1184407796102,-63.06846576711644,-63.01849075462269,-62.968515742128936,-62.91854072963518,-62.86856571714143,-62.818590704647676,-62.76861569215392,-62.71864067966017,-62.668665667166415,-62.61869065467266,-62.56871564217891,-62.518740629685155,-62.4687656171914,-62.41879060469765,-62.3688155922039,-62.31884057971015,-62.268865567216395,-62.21889055472264,-62.16891554222889,-62.118940529735134,-62.06896551724138,-62.01899050474763,-61.969015492253874,-61.91904047976012,-61.86906546726637,-61.81909045477261,-61.76911544227886,-61.71914042978511,-61.66916541729135,-61.6191904047976,-61.569215392303846,-61.51924037981009,-61.46926536731634,-61.419290354822586,-61.36931534232883,-61.319340329835086,-61.26936531734133,-61.21939030484758,-61.169415292353825,-61.11944027986007,-61.06946526736632,-61.019490254872565,-60.96951524237881,-60.91954022988506,-60.869565217391305,-60.81959020489755,-60.7696151924038,-60.719640179910044,-60.66966516741629,-60.61969015492254,-60.569715142428784,-60.51974012993503,-60.46976511744128,-60.41979010494752,-60.36981509245377,-60.31984007996002,-60.26986506746627,-60.21989005497252,-60.16991504247876,-60.11994002998501,-60.069965017491256,-60.0199900049975,-59.97001499250375,-59.920039980009996,-59.87006496751624,-59.82008995502249,-59.770114942528735,-59.72013993003498,-59.67016491754123,-59.620189905047475,-59.57021489255372,-59.52023988005997,-59.470264867566215,-59.42028985507246,-59.37031484257871,-59.320339830084954,-59.27036481759121,-59.220389805097454,-59.1704147926037,-59.12043978010995,-59.070464767616194,-59.02048975512244,-58.97051474262869,-58.920539730134934,-58.87056471764118,-58.82058970514743,-58.77061469265367,-58.72063968015992,-58.670664667666166,-58.62068965517241,-58.57071464267866,-58.520739630184906,-58.47076461769115,-58.4207896051974,-58.370814592703645,-58.32083958020989,-58.27086456771614,-58.22088955522239,-58.17091454272864,-58.120939530234885,-58.07096451774113,-58.02098950524738,-57.971014492753625,-57.92103948025987,-57.87106446776612,-57.821089455272364,-57.77111444277861,-57.72113943028486,-57.671164417791104,-57.62118940529735,-57.5712143928036,-57.521239380309844,-57.47126436781609,-57.42128935532234,-57.37131434282858,-57.32133933033483,-57.271364317841076,-57.22138930534732,-57.17141429285358,-57.12143928035982,-57.07146426786607,-57.021489255372316,-56.97151424287856,-56.92153923038481,-56.871564217891056,-56.8215892053973,-56.77161419290355,-56.721639180409795,-56.67166416791604,-56.62168915542229,-56.571714142928535,-56.52173913043478,-56.47176411794103,-56.421789105447274,-56.37181409295352,-56.32183908045977,-56.271864067966014,-56.22188905547226,-56.171914042978514,-56.12193903048476,-56.07196401799101,-56.021989005497254,-55.9720139930035,-55.92203898050975,-55.87206396801599,-55.82208895552224,-55.77211394302849,-55.72213893053473,-55.67216391804098,-55.622188905547226,-55.57221389305347,-55.52223888055972,-55.472263868065966,-55.42228885557221,-55.37231384307846,-55.322338830584705,-55.27236381809095,-55.2223888055972,-55.172413793103445,-55.1224387806097,-55.072463768115945,-55.02248875562219,-54.97251374312844,-54.922538730634685,-54.87256371814093,-54.82258870564718,-54.772613693153424,-54.72263868065967,-54.67266366816592,-54.622688655672164,-54.57271364317841,-54.52273863068466,-54.4727636181909,-54.42278860569715,-54.3728135932034,-54.32283858070964,-54.27286356821589,-54.222888555722136,-54.17291354322838,-54.122938530734636,-54.07296351824088,-54.02298850574713,-53.973013493253376,-53.92303848075962,-53.87306346826587,-53.823088455772115,-53.77311344327836,-53.72313843078461,-53.673163418290855,-53.6231884057971,-53.57321339330335,-53.523238380809595,-53.47326336831584,-53.42328835582209,-53.373313343328334,-53.32333833083458,-53.27336331834083,-53.223388305847074,-53.17341329335332,-53.12343828085957,-53.07346326836582,-53.02348825587207,-52.973513243378314,-52.92353823088456,-52.87356321839081,-52.82358820589705,-52.7736131934033,-52.723638180909546,-52.67366316841579,-52.62368815592204,-52.573713143428286,-52.52373813093453,-52.47376311844078,-52.423788105947025,-52.37381309345327,-52.32383808095952,-52.273863068465765,-52.22388805597201,-52.17391304347826,-52.123938030984505,-52.07396301849075,-52.023988005997005,-51.97401299350325,-51.9240379810095,-51.874062968515744,-51.82408795602199,-51.77411294352824,-51.724137931034484,-51.67416291854073,-51.62418790604698,-51.574212893553224,-51.52423788105947,-51.47426286856572,-51.42428785607196,-51.37431284357821,-51.324337831084456,-51.2743628185907,-51.22438780609695,-51.174412793603196,-51.12443778110944,-51.07446276861569,-51.02448775612194,-50.97451274362819,-50.924537731134436,-50.87456271864068,-50.82458770614693,-50.774612693653175,-50.72463768115942,-50.67466266866567,-50.624687656171915,-50.57471264367816,-50.52473763118441,-50.474762618690654,-50.4247876061969,-50.37481259370315,-50.324837581209394,-50.27486256871564,-50.22488755622189,-50.174912543728134,-50.12493753123438,-50.07496251874063,-50.02498750624687,-49.97501249375313,-49.92503748125937,-49.87506246876562,-49.825087456271866,-49.77511244377811,-49.72513743128436,-49.675162418790606,-49.62518740629685,-49.5752123938031,-49.525237381309346,-49.47526236881559,-49.42528735632184,-49.375312343828085,-49.32533733133433,-49.27536231884058,-49.225387306346825,-49.17541229385307,-49.12543728135932,-49.075462268865564,-49.02548725637181,-48.97551224387806,-48.92553723138431,-48.87556221889056,-48.825587206396804,-48.77561219390305,-48.7256371814093,-48.675662168915544,-48.62568715642179,-48.57571214392804,-48.52573713143428,-48.47576211894053,-48.425787106446776,-48.37581209395302,-48.32583708145927,-48.275862068965516,-48.22588705647176,-48.17591204397801,-48.125937031484256,-48.0759620189905,-48.02598700649675,-47.976011994002995,-47.92603698150925,-47.876061969015495,-47.82608695652174,-47.77611194402799,-47.726136931534235,-47.67616191904048,-47.62618690654673,-47.576211894052975,-47.52623688155922,-47.47626186906547,-47.426286856571714,-47.37631184407796,-47.32633683158421,-47.276361819090454,-47.2263868065967,-47.17641179410295,-47.12643678160919,-47.07646176911544,-47.026486756621686,-46.97651174412793,-46.92653673163418,-46.87656171914043,-46.82658670664668,-46.776611694152926,-46.72663668165917,-46.67666166916542,-46.626686656671666,-46.57671164417791,-46.52673663168416,-46.476761619190405,-46.42678660669665,-46.3768115942029,-46.326836581709145,-46.27686156921539,-46.22688655672164,-46.176911544227885,-46.12693653173413,-46.07696151924038,-46.026986506746624,-45.97701149425287,-45.92703648175912,-45.877061469265364,-45.82708645677162,-45.777111444277864,-45.72713643178411,-45.67716141929036,-45.6271864067966,-45.57721139430285,-45.5272363818091,-45.47726136931534,-45.42728635682159,-45.377311344327836,-45.32733633183408,-45.27736131934033,-45.227386306846576,-45.17741129435282,-45.12743628185907,-45.077461269365315,-45.02748625687156,-44.97751124437781,-44.927536231884055,-44.8775612193903,-44.827586206896555,-44.7776111944028,-44.72763618190905,-44.677661169415295,-44.62768615692154,-44.57771114442779,-44.527736131934034,-44.47776111944028,-44.42778610694653,-44.377811094452774,-44.32783608195902,-44.27786106946527,-44.22788605697151,-44.17791104447776,-44.12793603198401,-44.07796101949025,-44.0279860069965,-43.978010994502746,-43.92803598200899,-43.87806096951524,-43.828085957021486,-43.77811094452774,-43.728135932033986,-43.67816091954023,-43.62818590704648,-43.578210894552726,-43.52823588205897,-43.47826086956522,-43.428285857071465,-43.37831084457771,-43.32833583208396,-43.278360819590205,-43.22838580709645,-43.1784107946027,-43.128435782108944,-43.07846076961519,-43.02848575712144,-42.978510744627684,-42.92853573213393,-42.87856071964018,-42.82858570714642,-42.77861069465268,-42.728635682158924,-42.67866066966517,-42.62868565717142,-42.57871064467766,-42.52873563218391,-42.478760619690156,-42.4287856071964,-42.37881059470265,-42.328835582208896,-42.27886056971514,-42.22888555722139,-42.178910544727636,-42.12893553223388,-42.07896051974013,-42.028985507246375,-41.97901049475262,-41.92903548225887,-41.879060469765115,-41.82908545727136,-41.77911044477761,-41.72913543228386,-41.67916041979011,-41.629185407296355,-41.5792103948026,-41.52923538230885,-41.479260369815094,-41.42928535732134,-41.37931034482759,-41.329335332333834,-41.27936031984008,-41.22938530734633,-41.17941029485257,-41.12943528235882,-41.079460269865066,-41.02948525737131,-40.97951024487756,-40.929535232383806,-40.87956021989005,-40.8295852073963,-40.779610194902546,-40.72963518240879,-40.679660169915046,-40.62968515742129,-40.57971014492754,-40.529735132433785,-40.47976011994003,-40.42978510744628,-40.379810094952525,-40.32983508245877,-40.27986006996502,-40.229885057471265,-40.17991004497751,-40.12993503248376,-40.079960019990004,-40.02998500749625,-39.9800099950025,-39.930034982508744,-39.88005997001499,-39.83008495752124,-39.78010994502748,-39.73013493253373,-39.68015992003998,-39.63018490754623,-39.58020989505248,-39.53023488255872,-39.48025987006497,-39.430284857571216,-39.38030984507746,-39.33033483258371,-39.280359820089956,-39.2303848075962,-39.18040979510245,-39.130434782608695,-39.08045977011494,-39.03048475762119,-38.980509745127435,-38.93053473263368,-38.88055972013993,-38.830584707646175,-38.78060969515242,-38.73063468265867,-38.680659670164914,-38.63068465767117,-38.580709645177414,-38.53073463268366,-38.48075962018991,-38.430784607696154,-38.3808095952024,-38.33083458270865,-38.28085957021489,-38.23088455772114,-38.18090954522739,-38.13093453273363,-38.08095952023988,-38.030984507746126,-37.98100949525237,-37.93103448275862,-37.881059470264866,-37.83108445777111,-37.78110944527736,-37.731134432783605,-37.68115942028985,-37.6311844077961,-37.58120939530235,-37.5312343828086,-37.481259370314845,-37.43128435782109,-37.38130934532734,-37.331334332833585,-37.28135932033983,-37.23138430784608,-37.181409295352324,-37.13143428285857,-37.08145927036482,-37.031484257871064,-36.98150924537731,-36.93153423288356,-36.8815592203898,-36.83158420789605,-36.7816091954023,-36.73163418290854,-36.68165917041479,-36.631684157921036,-36.58170914542729,-36.531734132933536,-36.48175912043978,-36.43178410794603,-36.381809095452276,-36.33183408295852,-36.28185907046477,-36.231884057971016,-36.18190904547726,-36.13193403298351,-36.081959020489755,-36.031984007996,-35.98200899550225,-35.932033983008495,-35.88205897051474,-35.83208395802099,-35.782108945527234,-35.73213393303348,-35.68215892053973,-35.632183908045974,-35.58220889555222,-35.532233883058474,-35.48225887056472,-35.43228385807097,-35.382308845577214,-35.33233383308346,-35.28235882058971,-35.23238380809595,-35.1824087956022,-35.132433783108446,-35.08245877061469,-35.03248375812094,-34.982508745627186,-34.93253373313343,-34.88255872063968,-34.832583708145926,-34.78260869565217,-34.73263368315842,-34.682658670664665,-34.63268365817091,-34.58270864567716,-34.53273363318341,-34.48275862068966,-34.432783608195905,-34.38280859570215,-34.3328335832084,-34.282858570714644,-34.23288355822089,-34.18290854572714,-34.132933533233384,-34.08295852073963,-34.03298350824588,-33.983008495752124,-33.93303348325837,-33.88305847076462,-33.83308345827086,-33.78310844577711,-33.733133433283356,-33.6831584207896,-33.63318340829585,-33.583208395802096,-33.53323338330834,-33.483258370814596,-33.43328335832084,-33.38330834582709,-33.333333333333336,-33.28335832083958,-33.23338330834583,-33.183408295852075,-33.13343328335832,-33.08345827086457,-33.033483258370815,-32.98350824587706,-32.93353323338331,-32.883558220889554,-32.8335832083958,-32.78360819590205,-32.733633183408294,-32.68365817091454,-32.63368315842079,-32.583708145927034,-32.53373313343328,-32.48375812093953,-32.43378310844578,-32.38380809595203,-32.33383308345827,-32.28385807096452,-32.23388305847077,-32.18390804597701,-32.13393303348326,-32.083958020989506,-32.03398300849575,-31.984007996002,-31.934032983508246,-31.884057971014492,-31.83408295852074,-31.784107946026985,-31.734132933533232,-31.684157921039482,-31.63418290854573,-31.584207896051975,-31.53423288355822,-31.484257871064468,-31.434282858570715,-31.38430784607696,-31.334332833583208,-31.284357821089454,-31.2343828085957,-31.18440779610195,-31.134432783608197,-31.084457771114444,-31.03448275862069,-30.984507746126937,-30.934532733633183,-30.88455772113943,-30.834582708645677,-30.784607696151923,-30.73463268365817,-30.684657671164416,-30.634682658670666,-30.584707646176913,-30.53473263368316,-30.484757621189406,-30.434782608695652,-30.3848075962019,-30.334832583708145,-30.284857571214392,-30.23488255872064,-30.184907546226885,-30.134932533733135,-30.08495752123938,-30.034982508745628,-29.985007496251875,-29.93503248375812,-29.885057471264368,-29.835082458770614,-29.78510744627686,-29.735132433783107,-29.685157421289354,-29.635182408795604,-29.58520739630185,-29.535232383808097,-29.485257371314344,-29.43528235882059,-29.385307346326837,-29.335332333833083,-29.28535732133933,-29.235382308845576,-29.185407296351823,-29.13543228385807,-29.08545727136432,-29.035482258870566,-28.985507246376812,-28.93553223388306,-28.885557221389305,-28.835582208895552,-28.7856071964018,-28.735632183908045,-28.68565717141429,-28.635682158920538,-28.58570714642679,-28.535732133933035,-28.48575712143928,-28.435782108945528,-28.385807096451774,-28.33583208395802,-28.285857071464267,-28.235882058970514,-28.18590704647676,-28.135932033983007,-28.085957021489257,-28.035982008995504,-27.98600699650175,-27.936031984007997,-27.886056971514243,-27.83608195902049,-27.786106946526736,-27.736131934032983,-27.68615692153923,-27.636181909045476,-27.586206896551722,-27.536231884057973,-27.48625687156422,-27.436281859070466,-27.386306846576712,-27.33633183408296,-27.286356821589205,-27.23638180909545,-27.1864067966017,-27.136431784107945,-27.08645677161419,-27.03648175912044,-26.986506746626688,-26.936531734132934,-26.88655672163918,-26.836581709145428,-26.786606696651674,-26.73663168415792,-26.686656671664167,-26.636681659170414,-26.58670664667666,-26.53673163418291,-26.486756621689157,-26.436781609195403,-26.38680659670165,-26.336831584207896,-26.286856571714143,-26.23688155922039,-26.186906546726636,-26.136931534232883,-26.08695652173913,-26.036981509245376,-25.987006496751626,-25.937031484257872,-25.88705647176412,-25.837081459270365,-25.787106446776612,-25.73713143428286,-25.687156421789105,-25.63718140929535,-25.587206396801598,-25.537231384307844,-25.487256371814095,-25.43728135932034,-25.387306346826588,-25.337331334332834,-25.28735632183908,-25.237381309345327,-25.187406296851574,-25.13743128435782,-25.087456271864067,-25.037481259370313,-24.987506246876563,-24.93753123438281,-24.887556221889056,-24.837581209395303,-24.78760619690155,-24.737631184407796,-24.687656171914043,-24.63768115942029,-24.587706146926536,-24.537731134432782,-24.48775612193903,-24.43778110944528,-24.387806096951525,-24.337831084457772,-24.28785607196402,-24.237881059470265,-24.18790604697651,-24.137931034482758,-24.087956021989005,-24.03798100949525,-23.988005997001498,-23.938030984507748,-23.888055972013994,-23.83808095952024,-23.788105947026487,-23.738130934532734,-23.68815592203898,-23.638180909545227,-23.588205897051473,-23.53823088455772,-23.488255872063966,-23.438280859570217,-23.388305847076463,-23.33833083458271,-23.288355822088956,-23.238380809595203,-23.18840579710145,-23.138430784607696,-23.088455772113942,-23.03848075962019,-22.988505747126435,-22.938530734632682,-22.888555722138932,-22.83858070964518,-22.788605697151425,-22.73863068465767,-22.688655672163918,-22.638680659670165,-22.58870564717641,-22.538730634682658,-22.488755622188904,-22.43878060969515,-22.3888055972014,-22.338830584707647,-22.288855572213894,-22.23888055972014,-22.188905547226387,-22.138930534732634,-22.08895552223888,-22.038980509745127,-21.989005497251373,-21.93903048475762,-21.88905547226387,-21.839080459770116,-21.789105447276363,-21.73913043478261,-21.689155422288856,-21.639180409795102,-21.58920539730135,-21.539230384807595,-21.489255372313842,-21.43928035982009,-21.38930534732634,-21.339330334832585,-21.28935532233883,-21.239380309845078,-21.189405297351325,-21.13943028485757,-21.089455272363818,-21.039480259870064,-20.98950524737631,-20.939530234882557,-20.889555222388804,-20.839580209895054,-20.7896051974013,-20.739630184907547,-20.689655172413794,-20.63968015992004,-20.589705147426287,-20.539730134932533,-20.48975512243878,-20.439780109945026,-20.389805097451273,-20.339830084957523,-20.28985507246377,-20.239880059970016,-20.189905047476262,-20.13993003498251,-20.089955022488756,-20.039980009995002,-19.99000499750125,-19.940029985007495,-19.89005497251374,-19.84007996001999,-19.79010494752624,-19.740129935032485,-19.69015492253873,-19.640179910044978,-19.590204897551224,-19.54022988505747,-19.490254872563717,-19.440279860069964,-19.39030484757621,-19.340329835082457,-19.290354822588707,-19.240379810094954,-19.1904047976012,-19.140429785107447,-19.090454772613693,-19.04047976011994,-18.990504747626186,-18.940529735132433,-18.89055472263868,-18.840579710144926,-18.790604697651176,-18.740629685157423,-18.69065467266367,-18.640679660169916,-18.590704647676162,-18.54072963518241,-18.490754622688655,-18.4407796101949,-18.39080459770115,-18.340829585207395,-18.290854572713645,-18.24087956021989,-18.190904547726138,-18.140929535232384,-18.09095452273863,-18.040979510244878,-17.991004497751124,-17.94102948525737,-17.891054472763617,-17.841079460269864,-17.79110444777611,-17.74112943528236,-17.691154422788607,-17.641179410294853,-17.5912043978011,-17.541229385307346,-17.491254372813593,-17.44127936031984,-17.391304347826086,-17.341329335332333,-17.29135432283858,-17.24137931034483,-17.191404297851076,-17.141429285357322,-17.09145427286357,-17.041479260369815,-16.991504247876062,-16.94152923538231,-16.891554222888555,-16.8415792103948,-16.791604197901048,-16.741629185407298,-16.691654172913545,-16.64167916041979,-16.591704147926038,-16.541729135432284,-16.49175412293853,-16.441779110444777,-16.391804097951024,-16.34182908545727,-16.291854072963517,-16.241879060469763,-16.191904047976013,-16.14192903548226,-16.091954022988507,-16.041979010494753,-15.992003998001,-15.942028985507246,-15.892053973013493,-15.842078960519741,-15.792103948025987,-15.742128935532234,-15.69215392303848,-15.642178910544727,-15.592203898050975,-15.542228885557222,-15.492253873063468,-15.442278860569715,-15.392303848075962,-15.342328835582208,-15.292353823088456,-15.242378810594703,-15.19240379810095,-15.142428785607196,-15.092453773113442,-15.04247876061969,-14.992503748125937,-14.942528735632184,-14.89255372313843,-14.842578710644677,-14.792603698150925,-14.742628685657172,-14.692653673163418,-14.642678660669665,-14.592703648175911,-14.54272863568216,-14.492753623188406,-14.442778610694653,-14.3928035982009,-14.342828585707146,-14.292853573213394,-14.24287856071964,-14.192903548225887,-14.142928535732134,-14.09295352323838,-14.042978510744629,-13.993003498250875,-13.943028485757122,-13.893053473263368,-13.843078460769615,-13.793103448275861,-13.74312843578211,-13.693153423288356,-13.643178410794603,-13.59320339830085,-13.543228385807096,-13.493253373313344,-13.44327836081959,-13.393303348325837,-13.343328335832084,-13.29335332333833,-13.243378310844578,-13.193403298350825,-13.143428285857071,-13.093453273363318,-13.043478260869565,-12.993503248375813,-12.94352823588206,-12.893553223388306,-12.843578210894552,-12.793603198400799,-12.743628185907047,-12.693653173413294,-12.64367816091954,-12.593703148425787,-12.543728135932033,-12.493753123438282,-12.443778110944528,-12.393803098450775,-12.343828085957021,-12.293853073463268,-12.243878060969514,-12.193903048475763,-12.14392803598201,-12.093953023488256,-12.043978010994502,-11.994002998500749,-11.944027986006997,-11.894052973513244,-11.84407796101949,-11.794102948525737,-11.744127936031983,-11.694152923538232,-11.644177911044478,-11.594202898550725,-11.544227886056971,-11.494252873563218,-11.444277861069466,-11.394302848575713,-11.344327836081959,-11.294352823588206,-11.244377811094452,-11.1944027986007,-11.144427786106947,-11.094452773613193,-11.04447776111944,-10.994502748625687,-10.944527736131935,-10.894552723638181,-10.844577711144428,-10.794602698650674,-10.744627686156921,-10.69465267366317,-10.644677661169416,-10.594702648675662,-10.544727636181909,-10.494752623688155,-10.444777611194402,-10.39480259870065,-10.344827586206897,-10.294852573713143,-10.24487756121939,-10.194902548725636,-10.144927536231885,-10.094952523738131,-10.044977511244378,-9.995002498750624,-9.94502748625687,-9.89505247376312,-9.845077461269366,-9.795102448775612,-9.745127436281859,-9.695152423788105,-9.645177411294354,-9.5952023988006,-9.545227386306847,-9.495252373813093,-9.44527736131934,-9.395302348825588,-9.345327336331835,-9.295352323838081,-9.245377311344328,-9.195402298850574,-9.145427286356822,-9.095452273863069,-9.045477261369316,-8.995502248875562,-8.945527236381809,-8.895552223888055,-8.845577211394303,-8.79560219890055,-8.745627186406796,-8.695652173913043,-8.64567716141929,-8.595702148925538,-8.545727136431784,-8.495752123938031,-8.445777111444277,-8.395802098950524,-8.345827086456772,-8.295852073963019,-8.245877061469265,-8.195902048975512,-8.145927036481758,-8.095952023988007,-8.045977011494253,-7.9960019990005,-7.946026986506746,-7.896051974012994,-7.84607696151924,-7.796101949025488,-7.746126936531734,-7.696151924037981,-7.646176911544228,-7.596201899050475,-7.546226886556721,-7.496251874062969,-7.446276861569215,-7.396301849075463,-7.346326836581709,-7.296351824087956,-7.246376811594203,-7.19640179910045,-7.146426786606697,-7.096451774112944,-7.04647676161919,-6.9965017491254375,-6.946526736631684,-6.896551724137931,-6.846576711644178,-6.796601699150425,-6.746626686656672,-6.6966516741629185,-6.646676661669165,-6.5967016491754125,-6.546726636681659,-6.496751624187906,-6.446776611694153,-6.3968015992003995,-6.346826586706647,-6.296851574212893,-6.246876561719141,-6.196901549225387,-6.146926536731634,-6.096951524237881,-6.046976511744128,-5.997001499250374,-5.947026486756622,-5.897051474262868,-5.847076461769116,-5.797101449275362,-5.747126436781609,-5.697151424287856,-5.647176411794103,-5.59720139930035,-5.547226386806597,-5.497251374312843,-5.447276361819091,-5.397301349325337,-5.347326336831585,-5.297351324337831,-5.247376311844078,-5.197401299350325,-5.147426286856572,-5.097451274362818,-5.047476261869066,-4.997501249375312,-4.94752623688156,-4.897551224387806,-4.847576211894053,-4.7976011994003,-4.747626186906547,-4.697651174412794,-4.6476761619190405,-4.597701149425287,-4.5477261369315345,-4.497751124437781,-4.4477761119440276,-4.397801099450275,-4.3478260869565215,-4.297851074462769,-4.2478760619690155,-4.197901049475262,-4.147926036981509,-4.097951024487756,-4.047976011994003,-3.99800099950025,-3.948025987006497,-3.898050974512744,-3.8480759620189904,-3.7981009495252374,-3.7481259370314843,-3.6981509245377313,-3.648175912043978,-3.598200899550225,-3.548225887056472,-3.4982508745627188,-3.4482758620689653,-3.3983008495752123,-3.3483258370814593,-3.2983508245877062,-3.248375812093953,-3.1984007996001997,-3.1484257871064467,-3.0984507746126937,-3.0484757621189407,-2.998500749625187,-2.948525737131434,-2.898550724637681,-2.848575712143928,-2.798600699650175,-2.7486256871564216,-2.6986506746626686,-2.6486756621689156,-2.5987006496751626,-2.548725637181409,-2.498750624687656,-2.448775612193903,-2.39880059970015,-2.348825587206397,-2.2988505747126435,-2.2488755622188905,-2.1989005497251375,-2.1489255372313845,-2.098950524737631,-2.048975512243878,-1.999000499750125,-1.949025487256372,-1.8990504747626187,-1.8490754622688657,-1.7991004497751124,-1.7491254372813594,-1.6991504247876061,-1.6491754122938531,-1.5992003998000999,-1.5492253873063468,-1.4992503748125936,-1.4492753623188406,-1.3993003498250876,-1.3493253373313343,-1.2993503248375813,-1.249375312343828,-1.199400299850075,-1.1494252873563218,-1.0994502748625687,-1.0494752623688155,-0.9995002498750625,-0.9495252373813093,-0.8995502248875562,-0.8495752123938031,-0.7996001999000499,-0.7496251874062968,-0.6996501749125438,-0.6496751624187906,-0.5997001499250375,-0.5497251374312844,-0.49975012493753124,-0.4497751124437781,-0.39980009995002497,-0.3498250874562719,-0.29985007496251875,-0.24987506246876562,-0.19990004997501248,-0.14992503748125938,-0.09995002498750624,-0.04997501249375312,0.0,0.04997501249375312,0.09995002498750624,0.14992503748125938,0.19990004997501248,0.24987506246876562,0.29985007496251875,0.3498250874562719,0.39980009995002497,0.4497751124437781,0.49975012493753124,0.5497251374312844,0.5997001499250375,0.6496751624187906,0.6996501749125438,0.7496251874062968,0.7996001999000499,0.8495752123938031,0.8995502248875562,0.9495252373813093,0.9995002498750625,1.0494752623688155,1.0994502748625687,1.1494252873563218,1.199400299850075,1.249375312343828,1.2993503248375813,1.3493253373313343,1.3993003498250876,1.4492753623188406,1.4992503748125936,1.5492253873063468,1.5992003998000999,1.6491754122938531,1.6991504247876061,1.7491254372813594,1.7991004497751124,1.8490754622688657,1.8990504747626187,1.949025487256372,1.999000499750125,2.048975512243878,2.098950524737631,2.1489255372313845,2.1989005497251375,2.2488755622188905,2.2988505747126435,2.348825587206397,2.39880059970015,2.448775612193903,2.498750624687656,2.548725637181409,2.5987006496751626,2.6486756621689156,2.6986506746626686,2.7486256871564216,2.798600699650175,2.848575712143928,2.898550724637681,2.948525737131434,2.998500749625187,3.0484757621189407,3.0984507746126937,3.1484257871064467,3.1984007996001997,3.248375812093953,3.2983508245877062,3.3483258370814593,3.3983008495752123,3.4482758620689653,3.4982508745627188,3.548225887056472,3.598200899550225,3.648175912043978,3.6981509245377313,3.7481259370314843,3.7981009495252374,3.8480759620189904,3.898050974512744,3.948025987006497,3.99800099950025,4.047976011994003,4.097951024487756,4.147926036981509,4.197901049475262,4.2478760619690155,4.297851074462769,4.3478260869565215,4.397801099450275,4.4477761119440276,4.497751124437781,4.5477261369315345,4.597701149425287,4.6476761619190405,4.697651174412794,4.747626186906547,4.7976011994003,4.847576211894053,4.897551224387806,4.94752623688156,4.997501249375312,5.047476261869066,5.097451274362818,5.147426286856572,5.197401299350325,5.247376311844078,5.297351324337831,5.347326336831585,5.397301349325337,5.447276361819091,5.497251374312843,5.547226386806597,5.59720139930035,5.647176411794103,5.697151424287856,5.747126436781609,5.797101449275362,5.847076461769116,5.897051474262868,5.947026486756622,5.997001499250374,6.046976511744128,6.096951524237881,6.146926536731634,6.196901549225387,6.246876561719141,6.296851574212893,6.346826586706647,6.3968015992003995,6.446776611694153,6.496751624187906,6.546726636681659,6.5967016491754125,6.646676661669165,6.6966516741629185,6.746626686656672,6.796601699150425,6.846576711644178,6.896551724137931,6.946526736631684,6.9965017491254375,7.04647676161919,7.096451774112944,7.146426786606697,7.19640179910045,7.246376811594203,7.296351824087956,7.346326836581709,7.396301849075463,7.446276861569215,7.496251874062969,7.546226886556721,7.596201899050475,7.646176911544228,7.696151924037981,7.746126936531734,7.796101949025488,7.84607696151924,7.896051974012994,7.946026986506746,7.9960019990005,8.045977011494253,8.095952023988007,8.145927036481758,8.195902048975512,8.245877061469265,8.295852073963019,8.345827086456772,8.395802098950524,8.445777111444277,8.495752123938031,8.545727136431784,8.595702148925538,8.64567716141929,8.695652173913043,8.745627186406796,8.79560219890055,8.845577211394303,8.895552223888055,8.945527236381809,8.995502248875562,9.045477261369316,9.095452273863069,9.145427286356822,9.195402298850574,9.245377311344328,9.295352323838081,9.345327336331835,9.395302348825588,9.44527736131934,9.495252373813093,9.545227386306847,9.5952023988006,9.645177411294354,9.695152423788105,9.745127436281859,9.795102448775612,9.845077461269366,9.89505247376312,9.94502748625687,9.995002498750624,10.044977511244378,10.094952523738131,10.144927536231885,10.194902548725636,10.24487756121939,10.294852573713143,10.344827586206897,10.39480259870065,10.444777611194402,10.494752623688155,10.544727636181909,10.594702648675662,10.644677661169416,10.69465267366317,10.744627686156921,10.794602698650674,10.844577711144428,10.894552723638181,10.944527736131935,10.994502748625687,11.04447776111944,11.094452773613193,11.144427786106947,11.1944027986007,11.244377811094452,11.294352823588206,11.344327836081959,11.394302848575713,11.444277861069466,11.494252873563218,11.544227886056971,11.594202898550725,11.644177911044478,11.694152923538232,11.744127936031983,11.794102948525737,11.84407796101949,11.894052973513244,11.944027986006997,11.994002998500749,12.043978010994502,12.093953023488256,12.14392803598201,12.193903048475763,12.243878060969514,12.293853073463268,12.343828085957021,12.393803098450775,12.443778110944528,12.493753123438282,12.543728135932033,12.593703148425787,12.64367816091954,12.693653173413294,12.743628185907047,12.793603198400799,12.843578210894552,12.893553223388306,12.94352823588206,12.993503248375813,13.043478260869565,13.093453273363318,13.143428285857071,13.193403298350825,13.243378310844578,13.29335332333833,13.343328335832084,13.393303348325837,13.44327836081959,13.493253373313344,13.543228385807096,13.59320339830085,13.643178410794603,13.693153423288356,13.74312843578211,13.793103448275861,13.843078460769615,13.893053473263368,13.943028485757122,13.993003498250875,14.042978510744629,14.09295352323838,14.142928535732134,14.192903548225887,14.24287856071964,14.292853573213394,14.342828585707146,14.3928035982009,14.442778610694653,14.492753623188406,14.54272863568216,14.592703648175911,14.642678660669665,14.692653673163418,14.742628685657172,14.792603698150925,14.842578710644677,14.89255372313843,14.942528735632184,14.992503748125937,15.04247876061969,15.092453773113442,15.142428785607196,15.19240379810095,15.242378810594703,15.292353823088456,15.342328835582208,15.392303848075962,15.442278860569715,15.492253873063468,15.542228885557222,15.592203898050975,15.642178910544727,15.69215392303848,15.742128935532234,15.792103948025987,15.842078960519741,15.892053973013493,15.942028985507246,15.992003998001,16.041979010494753,16.091954022988507,16.14192903548226,16.191904047976013,16.241879060469763,16.291854072963517,16.34182908545727,16.391804097951024,16.441779110444777,16.49175412293853,16.541729135432284,16.591704147926038,16.64167916041979,16.691654172913545,16.741629185407298,16.791604197901048,16.8415792103948,16.891554222888555,16.94152923538231,16.991504247876062,17.041479260369815,17.09145427286357,17.141429285357322,17.191404297851076,17.24137931034483,17.29135432283858,17.341329335332333,17.391304347826086,17.44127936031984,17.491254372813593,17.541229385307346,17.5912043978011,17.641179410294853,17.691154422788607,17.74112943528236,17.79110444777611,17.841079460269864,17.891054472763617,17.94102948525737,17.991004497751124,18.040979510244878,18.09095452273863,18.140929535232384,18.190904547726138,18.24087956021989,18.290854572713645,18.340829585207395,18.39080459770115,18.4407796101949,18.490754622688655,18.54072963518241,18.590704647676162,18.640679660169916,18.69065467266367,18.740629685157423,18.790604697651176,18.840579710144926,18.89055472263868,18.940529735132433,18.990504747626186,19.04047976011994,19.090454772613693,19.140429785107447,19.1904047976012,19.240379810094954,19.290354822588707,19.340329835082457,19.39030484757621,19.440279860069964,19.490254872563717,19.54022988505747,19.590204897551224,19.640179910044978,19.69015492253873,19.740129935032485,19.79010494752624,19.84007996001999,19.89005497251374,19.940029985007495,19.99000499750125,20.039980009995002,20.089955022488756,20.13993003498251,20.189905047476262,20.239880059970016,20.28985507246377,20.339830084957523,20.389805097451273,20.439780109945026,20.48975512243878,20.539730134932533,20.589705147426287,20.63968015992004,20.689655172413794,20.739630184907547,20.7896051974013,20.839580209895054,20.889555222388804,20.939530234882557,20.98950524737631,21.039480259870064,21.089455272363818,21.13943028485757,21.189405297351325,21.239380309845078,21.28935532233883,21.339330334832585,21.38930534732634,21.43928035982009,21.489255372313842,21.539230384807595,21.58920539730135,21.639180409795102,21.689155422288856,21.73913043478261,21.789105447276363,21.839080459770116,21.88905547226387,21.93903048475762,21.989005497251373,22.038980509745127,22.08895552223888,22.138930534732634,22.188905547226387,22.23888055972014,22.288855572213894,22.338830584707647,22.3888055972014,22.43878060969515,22.488755622188904,22.538730634682658,22.58870564717641,22.638680659670165,22.688655672163918,22.73863068465767,22.788605697151425,22.83858070964518,22.888555722138932,22.938530734632682,22.988505747126435,23.03848075962019,23.088455772113942,23.138430784607696,23.18840579710145,23.238380809595203,23.288355822088956,23.33833083458271,23.388305847076463,23.438280859570217,23.488255872063966,23.53823088455772,23.588205897051473,23.638180909545227,23.68815592203898,23.738130934532734,23.788105947026487,23.83808095952024,23.888055972013994,23.938030984507748,23.988005997001498,24.03798100949525,24.087956021989005,24.137931034482758,24.18790604697651,24.237881059470265,24.28785607196402,24.337831084457772,24.387806096951525,24.43778110944528,24.48775612193903,24.537731134432782,24.587706146926536,24.63768115942029,24.687656171914043,24.737631184407796,24.78760619690155,24.837581209395303,24.887556221889056,24.93753123438281,24.987506246876563,25.037481259370313,25.087456271864067,25.13743128435782,25.187406296851574,25.237381309345327,25.28735632183908,25.337331334332834,25.387306346826588,25.43728135932034,25.487256371814095,25.537231384307844,25.587206396801598,25.63718140929535,25.687156421789105,25.73713143428286,25.787106446776612,25.837081459270365,25.88705647176412,25.937031484257872,25.987006496751626,26.036981509245376,26.08695652173913,26.136931534232883,26.186906546726636,26.23688155922039,26.286856571714143,26.336831584207896,26.38680659670165,26.436781609195403,26.486756621689157,26.53673163418291,26.58670664667666,26.636681659170414,26.686656671664167,26.73663168415792,26.786606696651674,26.836581709145428,26.88655672163918,26.936531734132934,26.986506746626688,27.03648175912044,27.08645677161419,27.136431784107945,27.1864067966017,27.23638180909545,27.286356821589205,27.33633183408296,27.386306846576712,27.436281859070466,27.48625687156422,27.536231884057973,27.586206896551722,27.636181909045476,27.68615692153923,27.736131934032983,27.786106946526736,27.83608195902049,27.886056971514243,27.936031984007997,27.98600699650175,28.035982008995504,28.085957021489257,28.135932033983007,28.18590704647676,28.235882058970514,28.285857071464267,28.33583208395802,28.385807096451774,28.435782108945528,28.48575712143928,28.535732133933035,28.58570714642679,28.635682158920538,28.68565717141429,28.735632183908045,28.7856071964018,28.835582208895552,28.885557221389305,28.93553223388306,28.985507246376812,29.035482258870566,29.08545727136432,29.13543228385807,29.185407296351823,29.235382308845576,29.28535732133933,29.335332333833083,29.385307346326837,29.43528235882059,29.485257371314344,29.535232383808097,29.58520739630185,29.635182408795604,29.685157421289354,29.735132433783107,29.78510744627686,29.835082458770614,29.885057471264368,29.93503248375812,29.985007496251875,30.034982508745628,30.08495752123938,30.134932533733135,30.184907546226885,30.23488255872064,30.284857571214392,30.334832583708145,30.3848075962019,30.434782608695652,30.484757621189406,30.53473263368316,30.584707646176913,30.634682658670666,30.684657671164416,30.73463268365817,30.784607696151923,30.834582708645677,30.88455772113943,30.934532733633183,30.984507746126937,31.03448275862069,31.084457771114444,31.134432783608197,31.18440779610195,31.2343828085957,31.284357821089454,31.334332833583208,31.38430784607696,31.434282858570715,31.484257871064468,31.53423288355822,31.584207896051975,31.63418290854573,31.684157921039482,31.734132933533232,31.784107946026985,31.83408295852074,31.884057971014492,31.934032983508246,31.984007996002,32.03398300849575,32.083958020989506,32.13393303348326,32.18390804597701,32.23388305847077,32.28385807096452,32.33383308345827,32.38380809595203,32.43378310844578,32.48375812093953,32.53373313343328,32.583708145927034,32.63368315842079,32.68365817091454,32.733633183408294,32.78360819590205,32.8335832083958,32.883558220889554,32.93353323338331,32.98350824587706,33.033483258370815,33.08345827086457,33.13343328335832,33.183408295852075,33.23338330834583,33.28335832083958,33.333333333333336,33.38330834582709,33.43328335832084,33.483258370814596,33.53323338330834,33.583208395802096,33.63318340829585,33.6831584207896,33.733133433283356,33.78310844577711,33.83308345827086,33.88305847076462,33.93303348325837,33.983008495752124,34.03298350824588,34.08295852073963,34.132933533233384,34.18290854572714,34.23288355822089,34.282858570714644,34.3328335832084,34.38280859570215,34.432783608195905,34.48275862068966,34.53273363318341,34.58270864567716,34.63268365817091,34.682658670664665,34.73263368315842,34.78260869565217,34.832583708145926,34.88255872063968,34.93253373313343,34.982508745627186,35.03248375812094,35.08245877061469,35.132433783108446,35.1824087956022,35.23238380809595,35.28235882058971,35.33233383308346,35.382308845577214,35.43228385807097,35.48225887056472,35.532233883058474,35.58220889555222,35.632183908045974,35.68215892053973,35.73213393303348,35.782108945527234,35.83208395802099,35.88205897051474,35.932033983008495,35.98200899550225,36.031984007996,36.081959020489755,36.13193403298351,36.18190904547726,36.231884057971016,36.28185907046477,36.33183408295852,36.381809095452276,36.43178410794603,36.48175912043978,36.531734132933536,36.58170914542729,36.631684157921036,36.68165917041479,36.73163418290854,36.7816091954023,36.83158420789605,36.8815592203898,36.93153423288356,36.98150924537731,37.031484257871064,37.08145927036482,37.13143428285857,37.181409295352324,37.23138430784608,37.28135932033983,37.331334332833585,37.38130934532734,37.43128435782109,37.481259370314845,37.5312343828086,37.58120939530235,37.6311844077961,37.68115942028985,37.731134432783605,37.78110944527736,37.83108445777111,37.881059470264866,37.93103448275862,37.98100949525237,38.030984507746126,38.08095952023988,38.13093453273363,38.18090954522739,38.23088455772114,38.28085957021489,38.33083458270865,38.3808095952024,38.430784607696154,38.48075962018991,38.53073463268366,38.580709645177414,38.63068465767117,38.680659670164914,38.73063468265867,38.78060969515242,38.830584707646175,38.88055972013993,38.93053473263368,38.980509745127435,39.03048475762119,39.08045977011494,39.130434782608695,39.18040979510245,39.2303848075962,39.280359820089956,39.33033483258371,39.38030984507746,39.430284857571216,39.48025987006497,39.53023488255872,39.58020989505248,39.63018490754623,39.68015992003998,39.73013493253373,39.78010994502748,39.83008495752124,39.88005997001499,39.930034982508744,39.9800099950025,40.02998500749625,40.079960019990004,40.12993503248376,40.17991004497751,40.229885057471265,40.27986006996502,40.32983508245877,40.379810094952525,40.42978510744628,40.47976011994003,40.529735132433785,40.57971014492754,40.62968515742129,40.679660169915046,40.72963518240879,40.779610194902546,40.8295852073963,40.87956021989005,40.929535232383806,40.97951024487756,41.02948525737131,41.079460269865066,41.12943528235882,41.17941029485257,41.22938530734633,41.27936031984008,41.329335332333834,41.37931034482759,41.42928535732134,41.479260369815094,41.52923538230885,41.5792103948026,41.629185407296355,41.67916041979011,41.72913543228386,41.77911044477761,41.82908545727136,41.879060469765115,41.92903548225887,41.97901049475262,42.028985507246375,42.07896051974013,42.12893553223388,42.178910544727636,42.22888555722139,42.27886056971514,42.328835582208896,42.37881059470265,42.4287856071964,42.478760619690156,42.52873563218391,42.57871064467766,42.62868565717142,42.67866066966517,42.728635682158924,42.77861069465268,42.82858570714642,42.87856071964018,42.92853573213393,42.978510744627684,43.02848575712144,43.07846076961519,43.128435782108944,43.1784107946027,43.22838580709645,43.278360819590205,43.32833583208396,43.37831084457771,43.428285857071465,43.47826086956522,43.52823588205897,43.578210894552726,43.62818590704648,43.67816091954023,43.728135932033986,43.77811094452774,43.828085957021486,43.87806096951524,43.92803598200899,43.978010994502746,44.0279860069965,44.07796101949025,44.12793603198401,44.17791104447776,44.22788605697151,44.27786106946527,44.32783608195902,44.377811094452774,44.42778610694653,44.47776111944028,44.527736131934034,44.57771114442779,44.62768615692154,44.677661169415295,44.72763618190905,44.7776111944028,44.827586206896555,44.8775612193903,44.927536231884055,44.97751124437781,45.02748625687156,45.077461269365315,45.12743628185907,45.17741129435282,45.227386306846576,45.27736131934033,45.32733633183408,45.377311344327836,45.42728635682159,45.47726136931534,45.5272363818091,45.57721139430285,45.6271864067966,45.67716141929036,45.72713643178411,45.777111444277864,45.82708645677162,45.877061469265364,45.92703648175912,45.97701149425287,46.026986506746624,46.07696151924038,46.12693653173413,46.176911544227885,46.22688655672164,46.27686156921539,46.326836581709145,46.3768115942029,46.42678660669665,46.476761619190405,46.52673663168416,46.57671164417791,46.626686656671666,46.67666166916542,46.72663668165917,46.776611694152926,46.82658670664668,46.87656171914043,46.92653673163418,46.97651174412793,47.026486756621686,47.07646176911544,47.12643678160919,47.17641179410295,47.2263868065967,47.276361819090454,47.32633683158421,47.37631184407796,47.426286856571714,47.47626186906547,47.52623688155922,47.576211894052975,47.62618690654673,47.67616191904048,47.726136931534235,47.77611194402799,47.82608695652174,47.876061969015495,47.92603698150925,47.976011994002995,48.02598700649675,48.0759620189905,48.125937031484256,48.17591204397801,48.22588705647176,48.275862068965516,48.32583708145927,48.37581209395302,48.425787106446776,48.47576211894053,48.52573713143428,48.57571214392804,48.62568715642179,48.675662168915544,48.7256371814093,48.77561219390305,48.825587206396804,48.87556221889056,48.92553723138431,48.97551224387806,49.02548725637181,49.075462268865564,49.12543728135932,49.17541229385307,49.225387306346825,49.27536231884058,49.32533733133433,49.375312343828085,49.42528735632184,49.47526236881559,49.525237381309346,49.5752123938031,49.62518740629685,49.675162418790606,49.72513743128436,49.77511244377811,49.825087456271866,49.87506246876562,49.92503748125937,49.97501249375313,50.02498750624687,50.07496251874063,50.12493753123438,50.174912543728134,50.22488755622189,50.27486256871564,50.324837581209394,50.37481259370315,50.4247876061969,50.474762618690654,50.52473763118441,50.57471264367816,50.624687656171915,50.67466266866567,50.72463768115942,50.774612693653175,50.82458770614693,50.87456271864068,50.924537731134436,50.97451274362819,51.02448775612194,51.07446276861569,51.12443778110944,51.174412793603196,51.22438780609695,51.2743628185907,51.324337831084456,51.37431284357821,51.42428785607196,51.47426286856572,51.52423788105947,51.574212893553224,51.62418790604698,51.67416291854073,51.724137931034484,51.77411294352824,51.82408795602199,51.874062968515744,51.9240379810095,51.97401299350325,52.023988005997005,52.07396301849075,52.123938030984505,52.17391304347826,52.22388805597201,52.273863068465765,52.32383808095952,52.37381309345327,52.423788105947025,52.47376311844078,52.52373813093453,52.573713143428286,52.62368815592204,52.67366316841579,52.723638180909546,52.7736131934033,52.82358820589705,52.87356321839081,52.92353823088456,52.973513243378314,53.02348825587207,53.07346326836582,53.12343828085957,53.17341329335332,53.223388305847074,53.27336331834083,53.32333833083458,53.373313343328334,53.42328835582209,53.47326336831584,53.523238380809595,53.57321339330335,53.6231884057971,53.673163418290855,53.72313843078461,53.77311344327836,53.823088455772115,53.87306346826587,53.92303848075962,53.973013493253376,54.02298850574713,54.07296351824088,54.122938530734636,54.17291354322838,54.222888555722136,54.27286356821589,54.32283858070964,54.3728135932034,54.42278860569715,54.4727636181909,54.52273863068466,54.57271364317841,54.622688655672164,54.67266366816592,54.72263868065967,54.772613693153424,54.82258870564718,54.87256371814093,54.922538730634685,54.97251374312844,55.02248875562219,55.072463768115945,55.1224387806097,55.172413793103445,55.2223888055972,55.27236381809095,55.322338830584705,55.37231384307846,55.42228885557221,55.472263868065966,55.52223888055972,55.57221389305347,55.622188905547226,55.67216391804098,55.72213893053473,55.77211394302849,55.82208895552224,55.87206396801599,55.92203898050975,55.9720139930035,56.021989005497254,56.07196401799101,56.12193903048476,56.171914042978514,56.22188905547226,56.271864067966014,56.32183908045977,56.37181409295352,56.421789105447274,56.47176411794103,56.52173913043478,56.571714142928535,56.62168915542229,56.67166416791604,56.721639180409795,56.77161419290355,56.8215892053973,56.871564217891056,56.92153923038481,56.97151424287856,57.021489255372316,57.07146426786607,57.12143928035982,57.17141429285358,57.22138930534732,57.271364317841076,57.32133933033483,57.37131434282858,57.42128935532234,57.47126436781609,57.521239380309844,57.5712143928036,57.62118940529735,57.671164417791104,57.72113943028486,57.77111444277861,57.821089455272364,57.87106446776612,57.92103948025987,57.971014492753625,58.02098950524738,58.07096451774113,58.120939530234885,58.17091454272864,58.22088955522239,58.27086456771614,58.32083958020989,58.370814592703645,58.4207896051974,58.47076461769115,58.520739630184906,58.57071464267866,58.62068965517241,58.670664667666166,58.72063968015992,58.77061469265367,58.82058970514743,58.87056471764118,58.920539730134934,58.97051474262869,59.02048975512244,59.070464767616194,59.12043978010995,59.1704147926037,59.220389805097454,59.27036481759121,59.320339830084954,59.37031484257871,59.42028985507246,59.470264867566215,59.52023988005997,59.57021489255372,59.620189905047475,59.67016491754123,59.72013993003498,59.770114942528735,59.82008995502249,59.87006496751624,59.920039980009996,59.97001499250375,60.0199900049975,60.069965017491256,60.11994002998501,60.16991504247876,60.21989005497252,60.26986506746627,60.31984007996002,60.36981509245377,60.41979010494752,60.46976511744128,60.51974012993503,60.569715142428784,60.61969015492254,60.66966516741629,60.719640179910044,60.7696151924038,60.81959020489755,60.869565217391305,60.91954022988506,60.96951524237881,61.019490254872565,61.06946526736632,61.11944027986007,61.169415292353825,61.21939030484758,61.26936531734133,61.319340329835086,61.36931534232883,61.419290354822586,61.46926536731634,61.51924037981009,61.569215392303846,61.6191904047976,61.66916541729135,61.71914042978511,61.76911544227886,61.81909045477261,61.86906546726637,61.91904047976012,61.969015492253874,62.01899050474763,62.06896551724138,62.118940529735134,62.16891554222889,62.21889055472264,62.268865567216395,62.31884057971015,62.3688155922039,62.41879060469765,62.4687656171914,62.518740629685155,62.56871564217891,62.61869065467266,62.668665667166415,62.71864067966017,62.76861569215392,62.818590704647676,62.86856571714143,62.91854072963518,62.968515742128936,63.01849075462269,63.06846576711644,63.1184407796102,63.16841579210395,63.2183908045977,63.26836581709146,63.31834082958521,63.368315842078964,63.41829085457271,63.468265867066464,63.51824087956022,63.56821589205397,63.618190904547724,63.66816591704148,63.71814092953523,63.768115942028984,63.81809095452274,63.86806596701649,63.918040979510245,63.968015992004,64.01799100449774,64.0679660169915,64.11794102948525,64.16791604197901,64.21789105447276,64.26786606696652,64.31784107946027,64.36781609195403,64.41779110444777,64.46776611694153,64.51774112943528,64.56771614192904,64.61769115442279,64.66766616691655,64.7176411794103,64.76761619190405,64.8175912043978,64.86756621689156,64.91754122938531,64.96751624187905,65.01749125437281,65.06746626686656,65.11744127936032,65.16741629185407,65.21739130434783,65.26736631684157,65.31734132933533,65.36731634182908,65.41729135432284,65.46726636681659,65.51724137931035,65.5672163918041,65.61719140429786,65.6671664167916,65.71714142928536,65.76711644177911,65.81709145427287,65.86706646676662,65.91704147926038,65.96701649175412,66.01699150424787,66.06696651674163,66.11694152923538,66.16691654172914,66.21689155422288,66.26686656671664,66.31684157921039,66.36681659170415,66.4167916041979,66.46676661669166,66.5167416291854,66.56671664167916,66.61669165417291,66.66666666666667,66.71664167916042,66.76661669165418,66.81659170414792,66.86656671664169,66.91654172913543,66.96651674162919,67.01649175412294,67.06646676661668,67.11644177911045,67.16641679160419,67.21639180409795,67.2663668165917,67.31634182908546,67.3663168415792,67.41629185407297,67.46626686656671,67.51624187906047,67.56621689155422,67.61619190404798,67.66616691654173,67.71614192903549,67.76611694152923,67.816091954023,67.86606696651674,67.9160419790105,67.96601699150425,68.01599200399801,68.06596701649175,68.1159420289855,68.16591704147926,68.21589205397301,68.26586706646677,68.31584207896051,68.36581709145428,68.41579210394802,68.46576711644178,68.51574212893553,68.56571714142929,68.61569215392304,68.6656671664168,68.71564217891054,68.7656171914043,68.81559220389805,68.86556721639181,68.91554222888556,68.96551724137932,69.01549225387306,69.06546726636682,69.11544227886057,69.16541729135432,69.21539230384808,69.26536731634182,69.31534232883558,69.36531734132933,69.41529235382309,69.46526736631684,69.5152423788106,69.56521739130434,69.6151924037981,69.66516741629185,69.71514242878561,69.76511744127936,69.81509245377312,69.86506746626686,69.91504247876063,69.96501749125437,70.01499250374813,70.06496751624188,70.11494252873563,70.16491754122939,70.21489255372313,70.26486756621689,70.31484257871064,70.3648175912044,70.41479260369815,70.4647676161919,70.51474262868565,70.56471764117941,70.61469265367316,70.66466766616692,70.71464267866067,70.76461769115443,70.81459270364817,70.86456771614193,70.91454272863568,70.96451774112944,71.01449275362319,71.06446776611695,71.1144427786107,71.16441779110444,71.2143928035982,71.26436781609195,71.31434282858571,71.36431784107945,71.41429285357322,71.46426786606696,71.51424287856072,71.56421789105447,71.61419290354823,71.66416791604198,71.71414292853574,71.76411794102948,71.81409295352324,71.86406796601699,71.91404297851075,71.9640179910045,72.01399300349826,72.063968015992,72.11394302848576,72.16391804097951,72.21389305347326,72.26386806596702,72.31384307846076,72.36381809095452,72.41379310344827,72.46376811594203,72.51374312843578,72.56371814092954,72.61369315342328,72.66366816591704,72.71364317841079,72.76361819090455,72.8135932033983,72.86356821589206,72.9135432283858,72.96351824087957,73.01349325337331,73.06346826586707,73.11344327836082,73.16341829085458,73.21339330334833,73.26336831584207,73.31334332833583,73.36331834082958,73.41329335332334,73.46326836581709,73.51324337831085,73.5632183908046,73.61319340329835,73.6631684157921,73.71314342828586,73.7631184407796,73.81309345327337,73.86306846576711,73.91304347826087,73.96301849075462,74.01299350324838,74.06296851574213,74.11294352823589,74.16291854072963,74.2128935532234,74.26286856571714,74.31284357821089,74.36281859070465,74.4127936031984,74.46276861569216,74.5127436281859,74.56271864067966,74.61269365317341,74.66266866566717,74.71264367816092,74.76261869065468,74.81259370314842,74.86256871564218,74.91254372813593,74.96251874062969,75.01249375312344,75.0624687656172,75.11244377811094,75.1624187906047,75.21239380309845,75.2623688155922,75.31234382808596,75.3623188405797,75.41229385307346,75.46226886556721,75.51224387806097,75.56221889055472,75.61219390304848,75.66216891554222,75.71214392803599,75.76211894052973,75.81209395302349,75.86206896551724,75.912043978011,75.96201899050475,76.0119940029985,76.06196901549225,76.11194402798601,76.16191904047976,76.21189405297352,76.26186906546727,76.31184407796101,76.36181909045477,76.41179410294852,76.46176911544228,76.51174412793603,76.56171914042979,76.61169415292353,76.6616691654173,76.71164417791104,76.7616191904048,76.81159420289855,76.86156921539231,76.91154422788605,76.96151924037981,77.01149425287356,77.06146926536732,77.11144427786107,77.16141929035483,77.21139430284857,77.26136931534234,77.31134432783608,77.36131934032983,77.41129435282359,77.46126936531734,77.5112443778111,77.56121939030484,77.6111944027986,77.66116941529235,77.71114442778611,77.76111944027986,77.81109445277362,77.86106946526736,77.91104447776112,77.96101949025487,78.01099450274863,78.06096951524238,78.11094452773614,78.16091954022988,78.21089455272364,78.26086956521739,78.31084457771115,78.3608195902049,78.41079460269864,78.4607696151924,78.51074462768615,78.56071964017991,78.61069465267366,78.66066966516742,78.71064467766116,78.76061969015493,78.81059470264867,78.86056971514243,78.91054472763618,78.96051974012994,79.01049475262369,79.06046976511745,79.11044477761119,79.16041979010495,79.2103948025987,79.26036981509246,79.3103448275862,79.36031984007997,79.41029485257371,79.46026986506746,79.51024487756122,79.56021989005497,79.61019490254873,79.66016991504247,79.71014492753623,79.76011994002998,79.81009495252374,79.86006996501749,79.91004497751125,79.960019990005,80.00999500249875,80.0599700149925,80.10994502748626,80.15992003998001,80.20989505247377,80.25987006496752,80.30984507746128,80.35982008995502,80.40979510244878,80.45977011494253,80.50974512743628,80.55972013993004,80.60969515242378,80.65967016491754,80.70964517741129,80.75962018990505,80.8095952023988,80.85957021489256,80.9095452273863,80.95952023988006,81.00949525237381,81.05947026486757,81.10944527736132,81.15942028985508,81.20939530234882,81.25937031484258,81.30934532733633,81.35932033983009,81.40929535232384,81.45927036481758,81.50924537731134,81.55922038980509,81.60919540229885,81.6591704147926,81.70914542728636,81.7591204397801,81.80909545227387,81.85907046476761,81.90904547726137,81.95902048975512,82.00899550224888,82.05897051474263,82.10894552723639,82.15892053973013,82.2088955522239,82.25887056471764,82.3088455772114,82.35882058970515,82.40879560219891,82.45877061469265,82.5087456271864,82.55872063968016,82.6086956521739,82.65867066466767,82.70864567716141,82.75862068965517,82.80859570214892,82.85857071464268,82.90854572713643,82.95852073963019,83.00849575212393,83.0584707646177,83.10844577711144,83.1584207896052,83.20839580209895,83.25837081459271,83.30834582708646,83.35832083958022,83.40829585207396,83.45827086456772,83.50824587706147,83.55822088955522,83.60819590204898,83.65817091454272,83.70814592703648,83.75812093953023,83.80809595202399,83.85807096451774,83.9080459770115,83.95802098950524,84.007996001999,84.05797101449275,84.10794602698651,84.15792103948026,84.20789605197402,84.25787106446776,84.30784607696152,84.35782108945527,84.40779610194903,84.45777111444278,84.50774612693654,84.55772113943029,84.60769615192403,84.65767116441779,84.70764617691154,84.7576211894053,84.80759620189905,84.8575712143928,84.90754622688655,84.95752123938031,85.00749625187406,85.05747126436782,85.10744627686157,85.15742128935533,85.20739630184907,85.25737131434283,85.30734632683658,85.35732133933034,85.40729635182409,85.45727136431785,85.5072463768116,85.55722138930535,85.6071964017991,85.65717141429285,85.70714642678661,85.75712143928035,85.80709645177411,85.85707146426786,85.90704647676162,85.95702148925537,86.00699650174913,86.05697151424287,86.10694652673664,86.15692153923038,86.20689655172414,86.25687156421789,86.30684657671165,86.3568215892054,86.40679660169916,86.4567716141929,86.50674662668666,86.55672163918041,86.60669665167416,86.65667166416792,86.70664667666166,86.75662168915542,86.80659670164917,86.85657171414293,86.90654672663668,86.95652173913044,87.00649675162418,87.05647176411794,87.10644677661169,87.15642178910545,87.2063968015992,87.25637181409296,87.3063468265867,87.35632183908046,87.40629685157421,87.45627186406797,87.50624687656172,87.55622188905548,87.60619690154923,87.65617191404297,87.70614692653673,87.75612193903048,87.80609695152424,87.85607196401799,87.90604697651175,87.95602198900549,88.00599700149925,88.055972013993,88.10594702648676,88.1559220389805,88.20589705147427,88.25587206396801,88.30584707646177,88.35582208895552,88.40579710144928,88.45577211394303,88.50574712643679,88.55572213893053,88.6056971514243,88.65567216391804,88.70564717641179,88.75562218890555,88.8055972013993,88.85557221389305,88.9055472263868,88.95552223888056,89.00549725137431,89.05547226386807,89.10544727636182,89.15542228885558,89.20539730134932,89.25537231384308,89.30534732633683,89.35532233883059,89.40529735132434,89.4552723638181,89.50524737631184,89.5552223888056,89.60519740129935,89.65517241379311,89.70514742628686,89.7551224387806,89.80509745127436,89.85507246376811,89.90504747626187,89.95502248875562,90.00499750124938,90.05497251374312,90.10494752623688,90.15492253873063,90.20489755122439,90.25487256371814,90.3048475762119,90.35482258870564,90.4047976011994,90.45477261369315,90.50474762618691,90.55472263868066,90.60469765117442,90.65467266366817,90.70464767616193,90.75462268865567,90.80459770114942,90.85457271364318,90.90454772613693,90.95452273863069,91.00449775112443,91.0544727636182,91.10444777611194,91.1544227886057,91.20439780109945,91.2543728135932,91.30434782608695,91.35432283858071,91.40429785107446,91.45427286356822,91.50424787606197,91.55422288855573,91.60419790104947,91.65417291354323,91.70414792603698,91.75412293853073,91.80409795102449,91.85407296351823,91.904047976012,91.95402298850574,92.0039980009995,92.05397301349325,92.10394802598701,92.15392303848076,92.20389805097452,92.25387306346826,92.30384807596202,92.35382308845577,92.40379810094953,92.45377311344328,92.50374812593704,92.55372313843078,92.60369815092454,92.65367316341829,92.70364817591205,92.7536231884058,92.80359820089954,92.8535732133933,92.90354822588705,92.95352323838081,93.00349825087456,93.05347326336832,93.10344827586206,93.15342328835582,93.20339830084957,93.25337331334333,93.30334832583708,93.35332333833084,93.40329835082458,93.45327336331835,93.50324837581209,93.55322338830585,93.6031984007996,93.65317341329336,93.7031484257871,93.75312343828087,93.80309845077461,93.85307346326836,93.90304847576212,93.95302348825587,94.00299850074963,94.05297351324337,94.10294852573713,94.15292353823088,94.20289855072464,94.25287356321839,94.30284857571215,94.3528235882059,94.40279860069965,94.4527736131934,94.50274862568716,94.55272363818091,94.60269865067467,94.65267366316841,94.70264867566218,94.75262368815592,94.80259870064968,94.85257371314343,94.90254872563717,94.95252373813094,95.00249875062468,95.05247376311844,95.10244877561219,95.15242378810595,95.2023988005997,95.25237381309346,95.3023488255872,95.35232383808096,95.40229885057471,95.45227386306847,95.50224887556222,95.55222388805598,95.60219890054972,95.65217391304348,95.70214892553723,95.75212393803099,95.80209895052474,95.8520739630185,95.90204897551224,95.95202398800599,96.00199900049975,96.0519740129935,96.10194902548726,96.151924037981,96.20189905047476,96.25187406296851,96.30184907546227,96.35182408795602,96.40179910044978,96.45177411294353,96.50174912543729,96.55172413793103,96.60169915042479,96.65167416291854,96.7016491754123,96.75162418790605,96.8015992003998,96.85157421289355,96.90154922538731,96.95152423788106,97.0014992503748,97.05147426286857,97.10144927536231,97.15142428785607,97.20139930034982,97.25137431284358,97.30134932533733,97.35132433783109,97.40129935032483,97.4512743628186,97.50124937531234,97.5512243878061,97.60119940029985,97.65117441279361,97.70114942528735,97.75112443778112,97.80109945027486,97.85107446276862,97.90104947526237,97.95102448775611,98.00099950024988,98.05097451274362,98.10094952523738,98.15092453773113,98.20089955022489,98.25087456271864,98.3008495752124,98.35082458770614,98.4007996001999,98.45077461269365,98.50074962518741,98.55072463768116,98.60069965017492,98.65067466266866,98.70064967516242,98.75062468765617,98.80059970014993,98.85057471264368,98.90054972513744,98.95052473763118,99.00049975012493,99.05047476261869,99.10044977511244,99.1504247876062,99.20039980009994,99.2503748125937,99.30034982508745,99.35032483758121,99.40029985007496,99.45027486256872,99.50024987506247,99.55022488755623,99.60019990004997,99.65017491254373,99.70014992503748,99.75012493753124,99.80009995002499,99.85007496251875,99.9000499750125,99.95002498750625,100.0]} +{"expected":[-0.01, -0.00988692665446217, -0.009530417260232635, -0.008939001927057518, -0.00812700023963896, -0.007114174661777941, -0.005925249651897664, -0.004589308189120179, -0.003139080437401436, -0.001610141944230643, -0.000040041013955833456, 0.0015326233416345881, 0.0030691502352163075, 0.004531689196248325, 0.005884172493081779, 0.007093204522074692, 0.008128886334342557, 0.008965554944794535, 0.009582419144642727, 0.009964076066946442, 0.010100895673283842, 0.009989263566841785, 0.009631676013797021, 0.009036684685486062, 0.008218692329369866, 0.007197604246304405, 0.005998344004833064, 0.004650245172536397, 0.0031863339073372196, 0.001642519952343532, 0.000056715849575066915, -0.00153209402566305, -0.0030848117512741317, -0.0045631879117862895, -0.005930763748120867, -0.007153770198919874, -0.008201961665838864, -0.009049363918998405, -0.009674917650644571, -0.010063001734130994, -0.010203823189262884, -0.010093664121865643, -0.009734979415048518, -0.009136342615950489, -0.008312241194704922, -0.00728272606016411, -0.0060729238083116685, -0.004712423565792373, -0.0032345533890227388, -0.001675563912446815, -0.0000737392399667339, 0.001531543115552564, 0.00310078016369045, 0.004595315448258029, 0.0059782912241642, 0.007215557347592569, 0.008276514468868288, 0.009134870711019328, 0.009769293124595185, 0.010163937779373152, 0.010308845323473495, 0.010200192137384127, 0.009840390753724568, 0.009238036916283918, 0.008407704423026918, 0.0073695926446301525, 0.006149035240488571, 0.004775882018532973, 0.003283769019197351, 0.0017092946699876987, 0.00009112218696606803, -0.001530969764797153, -0.0031170648437149825, -0.004628091205258873, -0.006026783911534547, -0.007278603873109481, -0.008352590664382306, -0.009222128157529003, -0.00986560404352474, -0.010266946900304674, -0.01041602746442601, -0.010308914090387096, -0.009947975959452496, -0.009341831339686926, -0.008505142009038258, -0.007458258740058715, -0.006226726414999595, -0.004840660803149927, -0.00333401220293789, -0.0017437339512144095, -0.0001088761619285668, 0.001530373082350148, 0.0031336755463287234, 0.004661535387110025, 0.0060762720085808086, 0.007342949264059696, 0.008430238095294144, 0.009311191309838516, 0.00996391133861546, 0.010372094428864201, 0.010525437750984275, 0.010419899256959096, 0.010057803740838872, 0.009447792329506606, 0.008604616481879815, 0.007548781402151541, 0.006306047483438199, 0.0049068019008445575, 0.0033853156810923096, 0.0017789044101855964, 0.00012701313104154568, -0.00152975212978499, -0.0031506224300722734, -0.004695669045019289, -0.006126786985255266, -0.007408634676172836, -0.008509506628087186, -0.009402117551157869, -0.010064278525306006, -0.01047944847111701, -0.010637147218504658, -0.010533219861166827, -0.010169945733445008, -0.009555989162640333, -0.008706193040386213, -0.00764122012567864, -0.006387050744406665, -0.004974349093233294, -0.0034377136020542084, -0.0018148296788304194, -0.00014554558228247226, 0.0015291059182347367, 0.0031679160781232906, 0.004730514121913109, 0.006178361650754986, 0.0074757030212299624, 0.008590448260943039, 0.009494966721381806, 0.01016677184176389, 0.010589080056074333, 0.01075122995439325, 0.01064895123355383, 0.010284476657319522, 0.009666494102209426, 0.008809939697100646, 0.007735636976214574, 0.006469790759651679, 0.0050433480599028115, 0.003491241598222934, 0.0018515344202770054, 0.00016448655416644695, -0.0015284334051064155, -0.0031855675207004695, -0.004766093500153822, -0.0062310302255206415, -0.007544199061731474, -0.008673117238872902, -0.009589801249979152, -0.010271460396355445, -0.01070106329419811, -0.010867763263796957, -0.01076717197996795, -0.010401474484817446, -0.0097793825602118, -0.00891592743171094, -0.007832096730511445, -0.006554324477814246, -0.00511384648238484, -0.0035459368674946967, -0.0018890443857169051, -0.00018384966640662659, 0.0015277334905348747, 0.003203588258907899, 0.004802431052346535, 0.006284828417937068, 0.007614169511750057, 0.008757570176396957, 0.009686686297598708, 0.010378416324808213, 0.010815475546331858, 0.01098682784620731, 0.010887964161528249, 0.01052102061949433, 0.009894733270925042, 0.009024230354636906, 0.007930667026167472, 0.006640711366395806, 0.00518589415503449, 0.0036018382601906906, 0.0019273864750659596, 0.00020364915265412223, -0.0015270050135687122, -0.0032219902901132642, -0.0048395516954862485, -0.00633979350608419, -0.007685663144457024, -0.008843866188345628, -0.009785689907073791, -0.01048771495781752, -0.010932397603869465, -0.011108507983824576, -0.011011413486579361, -0.010643200086942263, -0.010012628475892515, -0.009134925881564053, -0.00803141852132107, -0.006729013552570935, -0.005259543103367455, -0.0036589863718344637, -0.001966588801736915, -0.00022389989546712193, 0.0015262467480482893, 0.003240786134992019, 0.004877481448689318, 0.006395964424944249, 0.0077587309068310635, 0.008932067029426978, 0.009886883164553559, 0.010599434999880308, 0.01105191388104099, 0.011232891742606407, 0.011137609515594709, 0.010768101738503401, 0.010133154121412417, 0.009248094919780498, 0.00813442506516627, 0.006819295973559219, 0.005334847710433165, 0.0037174236422587853, 0.002006680761836088, 0.0002446174637050831, -0.0015254573981639328, -0.0032599888663503917, -0.004916247494804226, -0.00645338185948109, -0.007833426042127466, -0.009022237243243287, -0.009990340371570247, -0.010713658720364531, -0.011174112620279932, -0.0113600711870085, -0.011266645880046446, -0.010895818468891231, -0.010256400069519504, -0.009363822067268227, -0.00823976388014558, -0.006911626537311458, -0.005411864851883404, -0.0037771944615355283, -0.0020476931081573504, -0.00026581815252941317, 0.0015246355936486423, 0.0032796121398813776, 0.004955878246193867, 0.006512088344072049, 0.007909804220715057, 0.009114444321521939, 0.010096139228910206, 0.010830472157591824, 0.011299086111719118, 0.011490142609518082, 0.01139862051637145, 0.011026447448835098, 0.010382460323554764, 0.009482195825569065, 0.008347515756775439, 0.007006076294349274, 0.005490654040427009, 0.0038383452832982754, 0.0020896580293487143, 0.0002875190262419242, -0.0015237798845881456, -0.003299670226990427, -0.004996403415038466, -0.00657212836879014, -0.007987923679967875, -0.009208758874376709, -0.010204361033252141, -0.010949965337194027, -0.011426930927965368, -0.011623206776182355, -0.011533635916259553, -0.011160090373977484, -0.010511433269506572, -0.009603308827561281, -0.0084577652621272, -0.007102719621677968, -0.005571277580452928, -0.003900924746056256, -0.002132609234697766, -0.0003097379641831879, 0.001522888735793008, 0.0033201780498695213, 0.0050378540885073425, 0.00663354849310584, 0.008067845373939564, 0.009305254812510197, 0.01031509088761195, 0.011072232505793778, 0.011557748175405648, 0.011759369189448244, 0.01167179939460986, 0.011296853731357517, 0.010643421934430523, 0.009727258081365672, 0.008570600963101867, 0.007201634419756789, 0.005653800733659926, 0.003964983803162722, 0.002176582044981638, 0.00033249370996025145, -0.001521960520715658, -0.0033411512189909453, -0.0050802628092211375, -0.006696397467611468, -0.008149633133637126, -0.009404009542339867, -0.01042841792674361, -0.011197372381315024, -0.011691643763420745, -0.011898740369753469, -0.011813223376626478, -0.011436849084956666, -0.01077853426337144, -0.009854145231748159, -0.00868611566573316, -0.007302902323647564, -0.005738291896619819, -0.004030575862183254, -0.002221613489926261, -0.00035580592428265123, 0.0015209935148397405, 0.0033626060732225307, 0.005123663661416047, 0.0067607263644399035, 0.008233353838774906, 0.009505104175134903, 0.010544435558748297, 0.011325488421326742, 0.011828728693012169, 0.01204143615744953, 0.01195802570566823, 0.011580193381905442, 0.010916883416353076, 0.009984076840478081, 0.008804406671879364, 0.007406608929514652, 0.005824822791289449, 0.004097756934445616, 0.0022677424128075625, 0.00037969524172102025, -0.0015199858885155129, -0.003384559722778639, -0.0051680923633115935, -0.006826588717109743, -0.008319077601981714, -0.009608623751342315, -0.010663241724268916, -0.0114566891109392, -0.011969119366495633, -0.012187578036788894, -0.012106329973623965, -0.011727009281129063, -0.011058588087152581, -0.010117164687290788, -0.008925576054795813, -0.007512844037826293, -0.005913468669586553, -0.004166585795663593, -0.0023150095828370614, -0.00040418333173179754, 0.0015189356991723625, 0.0034070300952481303, 0.005213586366195044, 0.0068940406706050625, 0.008406877966526892, 0.00971465748142312, 0.010784939174781306, 0.011591088271950864, 0.012112937920077007, 0.012337293483882131, 0.012258265875760151, 0.01187742550636122, 0.011203772845747197, 0.01025352609321697, 0.009049730955228492, 0.0076217019146871045, 0.006004308533256078, 0.0042371241585981625, 0.0023634578160152417, 0.00042929296432671804, -0.001517840882848934, -0.003430035984944442, -0.00526018496080393, -0.006963141142563569, -0.008496832118737281, -0.009823299004609728, -0.010909635771645219, -0.011728805395083594, -0.012260312581308327, -0.012490716340718399, -0.012413969592181766, -0.0120315772256728, -0.011352568506508775, -0.010393284268267586, -0.00917698389983237, -0.007733281572913733, -0.006097425370375212, -0.004309436858824762, -0.0024131321051841037, -0.000455048080804994, 0.001516699244976413, 0.0034535971058876993, 0.005307929391640458, 0.007033951996561309, 0.008589021116394062, 0.009934646667183814, 0.011037444807740592, 0.011869965997356702, 0.01241137805362121, 0.012647987217556979, 0.01257358419826562, 0.012189606459857406, 0.011505112524436695, 0.010536568685619604, 0.00930745314390864, 0.007847687074605564, 0.006192906409989697, 0.0043835920547748135, 0.0024640797601374206, 0.00048147387000668074, -0.0015155084503307651, -0.003477734148703692, -0.005356862979918688, -0.007106538228550195, -0.00868353013453172, -0.010048803821994409, -0.011168485353712166, -0.012014702006836202, -0.012566275930364317, -0.012809253926231624, -0.012737260106664313, -0.012351662522275366, -0.011661549421945782, -0.010683515484707798, -0.009441263040645216, -0.007965027857164098, -0.006290843396517381, -0.004459661443360515, -0.002516350558681711, -0.0005085968506046707, 0.001514266012075679, 0.0035024688418020112, 0.0054070312559077295, 0.007180968167638915, 0.008780448730199739, 0.01016587915114885, 0.011302882631036706, 0.012163152177246743, 0.012725155141015809, 0.012974671947175291, 0.012905155543753436, 0.012517902493012727, 0.01182203124900195, 0.010834267905846668, 0.009578544439296047, 0.008085419084898031, 0.006391332885738154, 0.0045377204926023715, 0.002569996909679013, 0.0005364449599842499, -0.001512969279790106, -0.0035278240172101675, -0.005458482101529251, -0.007257313692512165, -0.00887987112792786, -0.010285987013979836, -0.011440768414380693, -0.012315462535177032, -0.012888172432531002, -0.013144404933265989, -0.013077437063691643, -0.012688491730525893, -0.011986718079678918, -0.010988976759310683, -0.009719435114967503, -0.008208982028594616, -0.006494476564373253, -0.00461784869286026, -0.002625074029175683, -0.0005650476503558295, 0.0015116154263882828, 0.0035538236814693746, 0.00551126590414333, 0.007335650464937388, 0.008981896527792297, 0.010409247822644567, 0.011582281465954605, 0.012471786862916296, 0.01305549288909077, 0.013318625253926769, 0.01325428010360674, 0.012863604424270996, 0.012155778548548057, 0.011147800932092035, 0.009864080232989993, 0.00833584447568282, 0.006600381595484517, 0.004700129828408825, 0.0026816401308816357, 0.0005944359927715187, -0.0015102014337907703, -0.003580493092072803, -0.005565435722552771, -0.007416058181949025, -0.009086629438214979, -0.0105357884479343, -0.011727568004884548, -0.012632287220270471, -0.013227290493877986, -0.013497514583281576, -0.013435869583795876, -0.013043424192202441, -0.012329390430677555, -0.01131090793592424, -0.010012632851152573, -0.008466141173911083, -0.0067091609921459345, -0.004784652271327309, -0.0027397566323577017, -0.0006246427898399152, 0.001508724077233647, 0.003607858839933399, 0.005621047466391389, 0.007498620848472102, 0.009194180035831013, 0.010665742658183692, 0.011876782214928206, 0.012797134509085477, 0.013403748736896336, 0.013681264536586487, 0.013622400557258232, 0.013228144727447766, 0.012507741269437852, 0.011478474500534986, 0.010165254463467811, 0.008600014311765294, 0.006820934022144826, 0.004871509299848284, 0.0027994883784689963, 0.0006557026979733072, -0.0015071799080421788, -0.0036359489384678264, -0.005678160090151004, -0.007583427072353768, -0.009304664555034639, -0.010799251594458421, -0.012030086794248706, -0.012966509084608429, -0.01358506127329904, -0.013870077359622443, -0.013814078913354245, -0.013417970498948778, -0.012691029056767496, -0.011650687216557029, -0.010322115589511812, -0.008737614039244489, -0.006935826646738166, -0.004960799443598293, -0.00286090388378896, -0.0006876523601446101, 0.0015055652347127203, 0.003664792919900075, 0.005736835803278438, 0.007670570383973737, 0.009418205710098777, 0.010936464285577674, 0.012187653551363396, 0.013140601418286178, 0.013771432637189456, 0.014064166676264561, 0.014011122140930345, 0.013613117511392724, 0.012879462971095709, 0.01182774323300063, 0.010483396413877088, 0.008879099032985305, 0.007053971996878242, 0.005052626858393415, 0.0029240755958798107, 0.0007205305502048775, -0.001503876102100212, -0.003694421939495912, -0.005797140297899685, -0.007760149582861, -0.009534933153084202, -0.011077538206922258, -0.012349664051856403, -0.013319612817118825, -0.013963079016428646, -0.014263758300036204, -0.014213760156853002, -0.013813814130377081, -0.01307326417869357, -0.012009851014782118, -0.010649287480762973, -0.009024637110223707, -0.007175510890671139, -0.0051471017336073635, -0.0029890801815564577, -0.0007543783299625464, 0.0015021082684974105, 0.0037248688884815436, 0.005859142995939838, 0.007852269114008683, 0.009654983971142447, 0.011222639887424245, 0.012516310320976765, 0.013503756205283697, 0.014160229094615834, 0.014469091116130801, 0.014422236206590586, 0.01402030197942878, 0.013272666704918262, 0.012197231166414477, 0.010819990449347791, 0.009174405896575422, 0.007300592396315846, 0.005244340735442973, 0.00305599883852759, 0.0007892392203537773, -0.0015002571803483097, -0.003756168516521863, -0.005922917317570303, -0.007947039476913645, -0.009778503227205113, -0.011371945569670857, -0.012687795607829545, -0.01369325697440833, -0.014363124967141254, -0.014680418041143412, -0.014636807844257003, -0.014232836916291763, -0.013477918382556043, -0.012390117328715117, -0.01099571891622728, -0.009328593553228428, -0.0074293744452379505, -0.005344467489871733, -0.0031249176350563387, -0.0008251593882100806, 0.0014983179443310232, 0.0037883575646899615, 0.005988540973186967, 0.008044577670688243, 0.009905644548561483, 0.01152564192860729, 0.012864335217565146, 0.013888353909629015, 0.014572023139021239, 0.014898007068620146, 0.014857748000421533, 0.014451690096772442, 0.013689281885353361, 0.012588757156183556, 0.011176699311977473, 0.009487399569802251, 0.00756202450073509, 0.005447613109424827, 0.003195927880649213, 0.0008621878502871834, -0.0014962852964669007, -0.003821474910017328, -0.0060560962813343815, -0.00814500767903403, -0.01003657076832504, -0.011683926855016508, -0.013046157418718948, -0.014089300199438888, -0.01478719561316758, -0.015122142409512172, -0.015085346146991644, -0.014677149135446104, -0.013907035855790485, -0.012793413383655411, -0.011363171879750803, -0.00965103562990562, -0.007698720288068099, -0.005553916768576673, -0.0032691265311025563, -0.0009003766964701549, 0.0014941535679173668, 0.0038555617227887706, 0.0061256705153319305, 0.008248460999282772, 0.01017145462543919, 0.011847010310674175, 0.013233504433751054, 0.014296364538302178, 0.015008931078796535, 0.015353125737739849, 0.015319909569623608, 0.014909519373670074, 0.014131476137286221, 0.013004364991881507, 0.011555391744804463, 0.009819726557274993, 0.007839650592710877, 0.005663526333004311, 0.0033446166317083422, 0.0009397813342607372, -0.0014919166470262143, -0.003890661637938775, -0.006197356281646028, -0.008355077220264387, -0.010310479529530353, -0.01201511526296148, -0.013426633521814406, -0.014509832332133439, -0.015237536210895212, -0.015591277552345352, -0.015561764759421871, -0.015149125266661038, -0.014362917122283375, -0.013221908482918158, -0.011753630084960982, -0.00999371135140407, -0.007985016134273973, -0.005776599048728531, -0.003422507802850432, -0.0009804607569779459, 0.0014895679371589765, 0.003926820942018058, 0.006271251933469901, 0.008465004654331377, 0.010453840397743733, 0.012188478707671278, 0.013625818163939164, 0.014730007018010458, 0.015473337093048467, 0.01583693866916641, 0.015811258937180557, 0.01539631190288308, 0.014601693229142315, 0.01344635927757641, 0.011958175413308575, 0.010173244322676796, 0.008135030524631728, 0.0058933022978664, 0.003502916772823997, 0.0010224778383769908, -0.001487100309771126, -0.003964088777422805, -0.006347462023384735, -0.008578401029559696, -0.010601744571577348, -0.012367352789886285, -0.013831349362103474, -0.014957211510959793, -0.01571668077750334, -0.016090471856632402, -0.016068761725133072, -0.01565144667071286, -0.01484816052242278, -0.013678053248790532, -0.012169334985884213, -0.010358596338355093, -0.008289921319845897, -0.006013814428645822, -0.00358596796330269, -0.0010658996567819582, 0.0014845060520990187, 0.004002517365761239, 0.006426097799475317, 0.008695434248910946, 0.010754412822790455, 0.012552006034062261, 0.014043537065176076, 0.015191789792313466, 0.015967936998171128, 0.016352263632192453, 0.016334666983135473, 0.015914921089307917, 0.01510269849307106, 0.013917348406577117, 0.01238743634879346, 0.010550056192249314, 0.00844993117679996, 0.006138325668332812, 0.0036717941336339363, 0.0011107978522339242, -0.0014817768087463344, -0.004042162252482523, -0.006507277749850425, -0.008816283224044838, -0.010912080458642084, -0.01274272469594671, -0.014262711736419848, -0.015434108656074148, -0.01622750005434679, -0.016622726238085875, -0.016609394828468384, -0.016187152822868124, -0.01536571201722591, -0.014164626752362219, -0.012612829041148339, -0.010747932112644102, -0.00861531912689051, -0.006267039128890971, -0.003760537090970943, -0.001157249020643111, 0.0014789035163418351, 0.004083082575162304, 0.006591128201166812, 0.008941138792478428, 0.01107499853809616, 0.012939814250640322, 0.014489226079229513, 0.01568455963193199, 0.016495790885330992, 0.016902299817695796, 0.016893393861042563, 0.016468587900084916, 0.015637633514912264, 0.014420296322880373, 0.012845886472440123, 0.010952553425030978, 0.00878636198084336, 0.006400171916557462, 0.0038523484742248285, 0.0012053351494930766, -0.0014758763303124628, -0.004125341358152247, -0.006677783977501463, -0.00907020472798442, -0.011243435212211054, -0.013143601033071101, -0.014723456940057238, -0.015943561106138756, -0.016773259358913464, -0.0171914548166528, -0.017187143618797848, -0.016759703163586933, -0.015918925332827474, -0.014684793446642084, -0.013087007995559164, -0.011164272388517619, -0.008963355880674064, -0.006537956358078169, -0.003947390620945353, -0.0012551441002946941, 0.0014726845426654006, 0.004169005836660102, 0.006767389126796241, 0.009203698855466333, 0.011417677203762421, 0.013354434049408942, 0.0149658074101196, 0.01621156066440465, 0.01706038679988794, 0.01749069463624016, 0.01749115729156568, 0.01706100897767456, 0.016210082378840956, 0.014958585239220884, 0.01333662119966691, 0.011383466227450137, 0.009146618017092942, 0.006680641358165862, 0.004045837527545893, 0.0013067701437436538, -0.0014693164894944498, -0.00421414781373992, -0.006860097723097169, -0.009341854283142872, -0.011598031443268719, -0.013572686980568216, -0.015216709150542077, -0.016489037684412143, -0.017357688788491546, -0.017800558570582454, -0.017805984725702103, -0.017373052226689025, -0.01651163503978421, -0.015242172367376265, -0.013595184450611723, -0.011610539382894636, -0.009336488533302033, -0.006828493904860024, -0.0041478759148108075, -0.0013603145544176297, 0.001465759446719489, 0.004260844054152627, 0.006956074753967209, 0.009484920766687402, 0.011784826881051856, 0.013798760401989695, 0.015476624969149727, 0.016776506209538748, 0.01766571826299747, 0.018121625063668843, 0.01813221575649913, 0.017696419641072714, 0.0168241524187194, 0.015536092116421273, 0.013863189710638955, 0.011845926012245416, 0.009533332639218314, 0.00698180074193476, 0.00425370641239668, 0.0014158862728771715, -0.0014619995123083503, -0.004309176719598887, -0.007055497103818308, -0.00963316622211583, -0.01197841649783296, -0.014033084247438437, -0.015746051681265607, -0.017074518140026737, -0.017985068965737396, -0.018454515327594064, -0.01847048391086406, -0.018031741493678005, -0.017148245933255864, -0.015840921800370295, -0.01414116567388658, -0.012090092769458638, -0.00973754296376593, -0.007140870230383336, -0.004363544878129217, -0.0014736026442548796, 0.0014580214729519095, 0.004359233850482901, 0.007158554645467053, 0.009786878406685736, 0.012179179539710852, 0.014276120548695422, 0.01602552329171928, 0.017383666783279676, 0.01831637927773821, 0.01879989736963455, 0.01882147052916995, 0.01837969571531807, 0.017484573322782467, 0.016157282560405165, 0.014429681259710595, 0.012343541903364555, 0.009949542177106146, 0.007306034424402156, 0.0044776238703218025, 0.0015335902438227366, -0.0014538086527930056, -0.0044111099000922445, -0.007265451454066508, -0.009946366789984631, -0.012387524007289234, -0.014528366487870287, -0.016315614540938994, -0.017704590811336286, -0.01866033649408109, -0.019158490483088715, -0.019185909362704284, -0.01874101248610479, -0.017833843119877037, -0.01648584360424349, -0.014729349512403154, -0.012606814717344235, -0.010169785919654208, -0.007477651391260532, -0.004596194294233312, -0.0015959858017239922, 0.001449342741398208, 0.004464906327954974, 0.007376407159717166, 0.010111964640790701, 0.012603889433318145, 0.014790357804758226, 0.016616944864676755, 0.01803797868106729, 0.01901768160023188, 0.01953107026540974, 0.01956459171199397, 0.01911647936800563, 0.018196819649855225, 0.016827326947297692, 0.015040831963555518, 0.012880495440505936, 0.010398766080577318, 0.007656107809154755, 0.004719527247166626, 0.0016609372410321054, -0.0014446035976516342, -0.004520732260143092, -0.007491658457589516, -0.010284031359299499, -0.012828749988630149, -0.015062672608372893, -0.016930182824770337, -0.01838457358146649, -0.01938921461919245, -0.01991847423730338, -0.019958372181729127, -0.019506947054543904, -0.01857432863270137, -0.017182512726305502, -0.015364843522381998, -0.013165215568622846, -0.010637014475414111, -0.007841821882691375, -0.004847916090733178, -0.0017286048456612963, 0.0014395690256408702, 0.004578705225476139, 0.0076114607973697635, 0.01046295508903968, 0.013062617962545028, 0.015345935649716345, 0.017256051077630386, 0.018745178982852075, 0.01977580061067893, 0.020321608148466484, 0.02036817514037182, 0.01991333582598347, 0.018967263473787375, 0.017552245167735667, 0.015702157970090804, 0.013461658742704948, 0.010885106980668984, 0.00803524662224405, 0.004981678783586307, 0.001799162577462036, -0.0014342145178684036, -0.004638951977968352, -0.007736090277359182, -0.010649155648402648, -0.013306047671493555, -0.01564082312223433, -0.017595331958165122, -0.019120664875185364, -0.02017837641700946, -0.020741453069891697, -0.020795001987215615, -0.020336642813097917, -0.01937659234425528, -0.017937439307072287, -0.01605361414717332, -0.013770566244524685, -0.011143668193024418, -0.008236873541284693, -0.00512116051362339, -0.001872799565193099, 0.0014285129602281106, 0.004701609417503775, 0.007865845772732562, 0.010843087828347087, 0.01355963985860183, 0.015948068067589787, 0.017948873769948484, 0.019511974797451613, 0.02059795826643028, 0.021179073389635567, 0.02123993934715472, 0.020777950190207506, 0.019803366169178657, 0.018339088571548923, 0.016420122937750074, 0.014092743202076926, 0.011413376692503495, 0.008447236835180484, 0.005266736675474589, 0.001949721792085243, -0.0014224342921030796, -0.004766825622644644, -0.008001051332409456, -0.011045245110773868, -0.013824046657724857, -0.016268466477704437, -0.0183175978880867, -0.01992013377766081, -0.021035650363780373, -0.021635625849232985, -0.021704168334336423, -0.02123843443920328, -0.020248727662251526, -0.018758273358612788, -0.016802675173390073, -0.01442906561432045, -0.011694971002927077, -0.008666918116214093, -0.005418816247279349, -0.002030154013573293, 0.0014159451135996363, 0.0048347610117874355, 0.008142058884927836, 0.011256163871514457, 0.014099977208244213, 0.016602884199987185, 0.01870250679997753, 0.020346257324130222, 0.021492654621383556, 0.02211236978227433, 0.02218897505096694, 0.021719376851525442, 0.02071392157053252, 0.019196170766077665, 0.017202350600789406, 0.014780488324228859, 0.011989256359865254, 0.00889655179314466, 0.005577845630634449, 0.0021143419426139726, -0.0014090082303222888, -0.004905589651580832, -0.008289251300775222, -0.011476428143240297, -0.014388204022376368, -0.0169522647718485, -0.019104693231692844, -0.02079156163410287, -0.021970281710725372, -0.022610678745961087, -0.02269576251777271, -0.0222221754654938, -0.021200306322634328, -0.019654065658479634, -0.01762032808419807, -0.015148054092932059, -0.012297112416656514, -0.009136831200036163, -0.005744313029523505, -0.0022025547471406647, 0.0014015821240636816, 0.004979500734773004, 0.008443045867156263, 0.011706675027270965, 0.014689570225327627, 0.017317638333743533, 0.019525350534920622, 0.021257375216423076, 0.0224699636489046, 0.023132053771873582, 0.02322606426917705, 0.022748358673196824, 0.02170936730991112, 0.020133363288725184, 0.018057897245600793, 0.015532903956532725, 0.012619502043745399, 0.009388515598962177, 0.005918753458577677, 0.0022950879128631695, -0.0013936203353077019, -0.005056700253527537, -0.008603898241440406, -0.011947600859789681, -0.015004997811136076, -0.0177001317980202, -0.019965784542375846, -0.021745152162181668, -0.022993268174411507, -0.02367813850517202, -0.02378155989064526, -0.023299600775860924, -0.022242732074113928, -0.020635603736159858, -0.018516471784701557, -0.015936289082210075, -0.012957481406684766, -0.00965243820547652, -0.006101754488727927, -0.0023922665352370284, 0.0013850707403448518, 0.005137412898898334, 0.008772306961969172, 0.012199968258041404, 0.015335497084391253, 0.01810098048495144, 0.020427427139727148, 0.022256487342528417, 0.023541915216202396, 0.02425073655385625, 0.02436409282978715, 0.023877739821182492, 0.022802187728621772, 0.021162478473522036, 0.01899760476849918, 0.016359584383080997, 0.013312211544931866, 0.00992951541543272, 0.006293962860044532, 0.002494449117477997, -0.001375874701930989, -0.00522188422275308, -0.008948818610024297, -0.012464614196551687, -0.015682177491412555, -0.018521541478982193, -0.020911851851144147, -0.02279313386825835, -0.024117795820529128, -0.024851831433870496, -0.024975690879125174, -0.024484798122965536, -0.023389701006101316, -0.021715849438222797, -0.019503006238796267, -0.016804304203895018, -0.01368497171879119, -0.010220757448281948, -0.006496092118328332, -0.0026020319676232843, 0.001365966067563401, 0.005310383105204344, 0.009134033735229603, 0.012742459293363153, 0.016046260085392557, 0.018963309009365447, 0.021420791795844378, 0.02335702321385102, 0.024722993974344232, 0.025483609574772036, 0.025618589810057598, 0.025123005945741624, 0.024007441406453174, 0.02229777106101561, 0.020034563558235203, 0.017272120454565915, 0.0140771748476989, 0.010527280667149653, 0.006708931465170797, 0.0027154543076808382, -0.0013552699833031712, -0.005403204578809037, -0.009328613679311357, -0.013034518523135051, -0.016429091920474845, -0.019427932222406526, -0.02195616044737453, -0.023950288492718824, -0.025359811855992162, -0.02614848694825868, -0.026295260738500102, -0.02579482893893182, -0.02465780801919245, -0.022910515801281728, -0.02059436500497898, -0.017764883649082144, -0.014490385432373016, -0.010850321892127689, -0.006933356052438774, -0.0028352042329097753, 0.0013437014832890033, 0.005500673070805175, 0.009533288461087149, 0.013341913619528646, 0.016832162732151795, 0.019917235790679125, 0.022520075719611662, 0.024575291474765667, 0.026030799158008915, 0.026849140003096225, 0.02700844192819885, 0.02650300003184549, 0.02534346071923226, 0.023556603857893828, 0.021184727237718665, 0.018284647407741748, 0.014926340439833754, 0.01119125509333045, 0.007170339003769359, 0.0029618256906964366, -0.001331163805118587, -0.005603146136868287, -0.009748865920135921, -0.013665887485905524, -0.017257124339123915, -0.02043324390195766, -0.023114888018489464, -0.025234654067561823, -0.02673878726933229, -0.027588541741460543, -0.02776117589459602, -0.02725055665931302, -0.026067356591233094, -0.0242388378745622, -0.021808227392475857, -0.018833697106561933, -0.015386973738882403, -0.011551610938363006, -0.00742096551061517, -0.0030959266881517037, 0.001317546368469544, 0.005711018774875783, 0.009976242359706794, 0.014007821004124314, 0.017705813299013568, 0.02097820829258309, 0.023743213042684303, 0.025931295145825258, 0.027486929283124892, 0.028370003962019125, 0.028556852869357694, 0.02804088438713193, 0.02683279263428047, 0.02496034364739416, 0.02246774074882283, 0.019414583516504727, 0.015874444810639654, 0.011933099780192646, 0.007686449432636199, 0.003238188987982639, -0.0013027223377762409, -0.005824728425681175, -0.01021641498335492, -0.0143692527200899, -0.018180277472766543, -0.021554641143706536, -0.02440797029840228, -0.02666847382012554, -0.028278747022388008, -0.029197226935616903, -0.029399261935112754, -0.028877768258816584, -0.02764345604759437, -0.02572461808166495, -0.023166485126521388, -0.020030162476652687, -0.016391172632809214, -0.012337638813004781, -0.007968152937031377, -0.003389379616669657, 0.0012865456681831298, 0.005944760790801549, 0.010470496487726267, 0.014751901997060052, 0.018682807307600788, 0.022165353853743745, 0.02511242852427709, 0.027449840497666158, 0.029118186562759683, 0.030074358085368774, 0.030292651457416855, 0.02976545350647457, 0.02850348371523099, 0.026535585949934375, 0.02390807345864437, 0.020683641902855238, 0.01693987585888804, 0.012767384304911852, 0.008267609845855799, 0.003550364592062848, -0.0012688475056811717, -0.006071656625437276, -0.010739732259961119, -0.015157696370589255, -0.019215972845949746, -0.022813502949086857, -0.0258602595172773, -0.028279497422869986, -0.03000968409937416, -0.031006061634676355, -0.0312418008477099, -0.030708717680625327, -0.029417532914776237, -0.027397667395413428, -0.02469657635356035, -0.02137863776437287, -0.01752362070005786, -0.013224770050090023, -0.00858655353405395, -0.0037221253852645977, 0.001249431774876786, 0.006206019700854476, 0.011025520737872224, 0.01558880402193828, 0.019782667721332886, 0.023502644714648798, 0.026655602229819213, 0.029162070816599703, 0.03095824447811959, 0.03199760169175226, 0.03225210621587792, 0.03171295678576018, 0.030390865801022342, 0.028315858631141038, 0.025536596932260312, 0.02211924108986833, 0.018145878289095554, 0.013712553486468966, 0.008926950447013124, 0.0039057787725801647, -0.0012280697379316008, -0.006348526174896253, -0.01132943763183663, -0.016047672522620546, -0.020386161729657456, -0.024236800539339205, -0.02750313949968955, -0.030102797291907995, -0.03196953532616544, -0.033054941895315104, -0.033329683153327495, -0.032784288700560854, -0.0314294509004591, -0.029295828945729147, -0.026433360845851756, -0.02291009862393184, -0.018810593791329953, -0.014233871322446913, -0.009291040603097043, -0.004102600919038626, 0.0012044932410635316, 0.006499935665802778, 0.01165326488927006, 0.016537075309099286, 0.021030163990934887, 0.02502053551081111, 0.028408190415966098, 0.03110762795489405, 0.033050000520523266, 0.03418486560509714, 0.03448149078152378, 0.03392967806934082, 0.032540085751275594, 0.030344037993709903, 0.027392825191067536, 0.02375651049218683, 0.019522270167744785, 0.014792307040607423, 0.009681386839109378, 0.004314056781926493, -0.0011783862739623765, -0.006661104396002175, -0.011999025519415403, -0.017060167747651196, -0.021718899276122857, -0.02585905350273495, -0.029376822168700183, -0.03218335456211164, -0.034206997793803866, -0.035395121754895106, -0.03571548238235808, -0.03515708805171253, -0.03373054601342288, -0.03146787849760915, -0.028421811119948154, -0.02466454921140987, -0.020286070346324788, -0.015391973344937582, -0.010100935080726818, -0.004541836254177766, 0.0011493743426731647, 0.006833000863593335, 0.012369025707057535, 0.017620555178721402, 0.02245720081468121, 0.026758312937909628, 0.030415986351579702, 0.03333776338604048, 0.035448966687508174, 0.036694602996596645, 0.037040789501930585, 0.036475665919543515, 0.0350097679627348, 0.03267585102537363, 0.029528166383197368, 0.025641205692228317, 0.021107942699744846, 0.01603761355714693, 0.010553088626439146, 0.004787898916586145, -0.0011170109838320786, -0.007016724615632022, -0.012765906055097089, -0.018222376034960235, -0.023250623888004633, -0.02772516866856249, -0.03153368618986353, -0.03457982415788262, -0.0367856349589826, -0.038093564795228206, -0.03846794853982125, -0.037895971649023814, -0.036388073426999026, -0.0339777795814216, -0.03072096599778863, -0.02669456965654962, -0.021994776275473676, -0.01673472724307832, -0.011041800395747568, -0.00505452988290973, 0.0010807605064279292, 0.007213528846832649, 0.01319270434508554, 0.01887040407466864, 0.024105585848465318, 0.028767547115414665, 0.03273918320045868, 0.035919923785232455, 0.038228274120851856, 0.03960389689510679, 0.04000918171978581, 0.03943026159467963, 0.03787744914379113, 0.0353850795802979, 0.03201076189467498, 0.027834054319310762, 0.02295459434521461, 0.017489727101159706, 0.011571688417459912, 0.005344410073992825, -0.0010399757050144841, -0.0074248477399438805, -0.013652932944866013, -0.019570175058984503, -0.025029540022369297, -0.02989466412910709, -0.03404325457445231, -0.037370157732002536, -0.039790018320897166, -0.04123946236788188, -0.04167874830312566, -0.041092843377906925, -0.039491896546726336, -0.036911093677711414, -0.033409896084762726, -0.029070678542675074, -0.02399679777989721, -0.018310136576819232, -0.012148181680284304, -0.005660705451633081, 0.0009938687974211094, 0.0076523297129725025, 0.01415067499982784, 0.02032814496710092, 0.026031193460751608, 0.031117298244761806, 0.03545851642402369, 0.0389446963687638, 0.04148626566814567, 0.0430165247207653, 0.043493387422937076, 0.04290052375832249, 0.04124787360313001, 0.03857151638831131, 0.03493289703084622, 0.03041742437480281, 0.025132473880760012, 0.019204841087239376, 0.012777706073684657, 0.006007181439886247, -0.0009414731264110504, -0.007897878060513699, -0.014690704930135929, -0.021151889295771584, -0.027120781995569207, -0.03244813648414854, -0.036999833431092026, -0.04066024980477284, -0.04333518799363926, -0.044954290955762775, -0.04547288169133724, -0.044873179207958296, -0.043164858261110495, -0.04038493613666263, -0.0365969862096151, -0.031889694561537396, -0.026374792162006683, -0.020184410616967702, -0.013467923875374594, -0.006388351206328386, 0.0008815921118185305, 0.008163700892720189, 0.015278640684767338, 0.022050356436424164, 0.028310420992857712, 0.033902216210620804, 0.038684843093857474, 0.04253666353426054, 0.04535838483786766, 0.04707560904475848, 0.047640781837326326, 0.047034490284135554, 0.04526607443227936, 0.04237353446064296, 0.03842273233382807, 0.03350590423117338, 0.02773951704213118, 0.02126151849891941, 0.014228045656594964, 0.006809670052392738, -0.0008127303613873564, -0.00845237281107258, -0.0159211379194867, -0.02303419303441456, -0.029614557259915096, -0.03549749566512367, -0.040534633795878135, -0.044597689957183224, -0.04758173162654764, -0.04940787359363372, -0.05002534873600844, -0.049412897417359984, -0.04757943797181527, -0.044563998218335926, -0.0404349060083777, -0.03528825500760315, -0.029245679802396875, -0.022451491563595237, -0.015069241468690719, -0.00727779348202495, 0.0007329994411380307, 0.008766911441869713, 0.016626140142081094, 0.024116166334272132, 0.031050557834344406, 0.03725559911993998, 0.04257463205223556, 0.0468719994899754, 0.05003649280530915, 0.051984215989698504, 0.05266079292072407, 0.05204286011769851, 0.05013880456847281, 0.04698872454599365, 0.042663610306633515, 0.037263760710770574, 0.030916470660572133, 0.02377304234622229, 0.016005190181960952, 0.007800924576506751, -0.0006399870643162677, -0.0091108727973616, -0.01740320447709402, -0.025311718939246008, -0.03263948655884517, -0.03920280232746917, -0.04483577828208111, -0.04939452279944783, -0.05276080179806228, -0.054845089045171526, -0.05558892726589368, -0.054966538251426916, -0.05298563827005523, -0.04968743436259672, -0.045145797086595135, -0.039465625474603624, -0.03278043989704993, -0.025249257679180216, -0.0170528242402898, -0.008389288755623215, 0.0005305725205495466, 0.009488470446348752, 0.018263930940601202, 0.02663970698412368, 0.03440714217315404, 0.0413713537628353, 0.04735610682044428, 0.052208257960808434, 0.05580165700999147, 0.058040407612741166, 0.05886140296968819, 0.058236070204037337, 0.05617127590227354, 0.05270936569215346, 0.04792733182312627, 0.04193512408648538, 0.03487314053260381, 0.02690895479132257, 0.01823335587564968, 0.009055793673379052, -0.0004006615288056828, -0.00990472457261861, -0.01922253541079721, -0.028123396414942516, -0.03638546666900316, -0.04380127312229389, -0.050182902127436875, -0.055366741909069817, -0.059217656746670844, -0.061632486877791125, -0.0625427840302011, -0.06191671069946386, -0.05976005136997113, -0.05611630535181256, -0.051065853255304106, -0.044724211807306895, -0.03723941417493742, -0.028788574651262038, -0.019573716937970546, -0.009816963824513431, 0.0002447976542581643, 0.010365647912284425, 0.02029662514555339, 0.02979182887031968, 0.038614487530296074, 0.046542840967106126, 0.05337569213534612, 0.05893748962269077, 0.06308281315348811, 0.06570014807312911, 0.06671485151208935, 0.06609123212243802, 0.06383368651178462, 0.05998685826333667, 0.05463480917852971, 0.04789921653551982, 0.03993663413396974, 0.030934878105860313, 0.021108620340357785, 0.010694292353985049, -0.000055579966072378735, -0.010878475554157368, -0.02150826455208684, -0.0316817271138933, -0.04114504555836765, -0.04966011036966608, -0.05701048402120933, -0.06300687391799167, -0.06749197676406792, -0.07034457112098592, -0.07148275249891736, -0.07086622560648369, -0.06849759090005603, -0.0644225867831778, -0.05872927413119461, -0.051546175643438844, -0.04303940822721678, -0.03340887156492654, -0.022883579592515142, -0.0117162432380793, -0.00017723189123422176, 0.011451942788160103, 0.022885464374922754, 0.033840205146846096, 0.04404270514452168, 0.05323596556231756, 0.0611858885058277, 0.06768720258065185, 0.07256872518894629, 0.07569782755373403, 0.0769839870235062, 0.0763813327030229, 0.07389011440687408, 0.06955705077314138, 0.06347453948797596, 0.05577874030510009, 0.04664656922426033, 0.03629166914295973, 0.02495944785266131, 0.012921297779449724, 0.0004681327799633279, -0.012096604934119787, -0.02446430051326567, -0.03632870742170339, -0.04739349029666966, -0.05737958490394189, -0.06603219339913259, -0.0731272405914557, -0.07847712871210755, -0.08193564405857741, -0.08340188846345706, -0.0828231313730624, -0.08019650388575829, -0.07556948379014228, -0.06903914980047904, -0.06075021311142119, -0.05089186436229865, -0.039693503382582034, -0.027419446964902026, -0.014362735689161719, -0.0008381838553119206, 0.01282516371060033, 0.026291988340062616, 0.039228876438802976, 0.05131252233152403, 0.06223775446178087, 0.07172518698177661, 0.07952830622706637, 0.08543981374265511, 0.08929706415282987, 0.0909864568796878, 0.09044666504488008, 0.08767061227369252, 0.08270613791944983, 0.07565532273444175, 0.0666724794787314, 0.05596084559826265, 0.043768047125701544, 0.030380433576706035, 0.016116412073490242, 0.001318934515252228, -0.01365268631650857, -0.02843143784849382, -0.04265153871210899, -0.05595742386340848, -0.06801256472957104, -0.07850790727602941, -0.08716971818437527, -0.09376664180269138, -0.0981157879210721, -0.10008769235809131, -0.09961001832756423, -0.09666989599527905, -0.09131482984925757, -0.08365213773798943, -0.07384692086654407, -0.06211859983148428, -0.04873608705656028, -0.03401169990116058, -0.01829395041648606, -0.0019593764301506977, 0.014596396376675315, 0.030968151116136388, 0.04675090906811126, 0.061549855407494046, 0.07499012016988567, 0.08672617440988756, 0.09645060841446165, 0.10390207147197254, 0.10887217081613709, 0.111211150578966, 0.11083219938661018, 0.10771426698985458, 0.1019033053079908, 0.09351188666693155, 0.08271719094928028, 0.06975739291935958, 0.05492652018971173, 0.03856789020578331, 0.02106627031240182, 0.0028389375435634327, -0.01567415657392982, -0.034020886925686944, -0.051747873450736386, -0.06841155664804177, -0.08358916235281316, -0.09688928786169759, -0.10796184763762301, -0.1165071293753649, -0.12228372992451303, -0.12511516506351938, -0.12489497686974774, -0.12159019677681535, -0.11524306057542291, -0.10597091272051502, -0.09396428039908959, -0.07948314187429105, -0.06285145760316091, -0.044450075468664745, -0.024708162127954344, -0.004093349955757894, 0.016899177583090667, 0.03775841091365877, 0.057969775791158376, 0.077027640956467, 0.09444777219727382, 0.10977943053792967, 0.12261681705438875, 0.13260957879629867, 0.1394721092951341, 0.14299140277451738, 0.1430332529225548, 0.13954662425038294, 0.1325660658228375, 0.12221208256362037, 0.108689427367626, 0.09228332678160647, 0.07335370287653258, 0.0523275029443789, 0.029689295628155837, 0.005970335890561177, -0.01826365924112269, -0.042425747944643696, -0.06592170955057826, -0.08816437359801006, -0.1085879926813563, -0.12666231393687538, -0.14190600633619363, -0.15389911147840166, -0.16229420415986734, -0.16682597531758303, -0.16731898346602683, -0.16369336078079016, -0.15596830566349973, -0.14426324394643283, -0.12879659473383123, -0.10988213300503037, -0.08792299822707543, -0.06340345500629486, -0.03687856690458372, -0.00896199663448453, 0.01968780634197324, 0.048382727437664384, 0.07642107860306181, 0.10310429250053224, 0.1277538315634778, 0.1497279130443418, 0.1684376491072559, 0.18336220837419148, 0.19406262205081448, 0.20019388358405366, 0.20151502526600837, 0.19789689761916696, 0.189327426902406, 0.1759141816158624, 0.15788413925089936, 0.1355806083959433, 0.10945732723744157, 0.08006982598769256, 0.04806420629408882, 0.014163553705028316, -0.020847741709477518, -0.056141427884018255, -0.0908642208733083, -0.12415760806429027, -0.15517817999730485, -0.1831180260798301, -0.20722471962616423, -0.2268204185687688, -0.24131962000459464, -0.2502451293581236, -0.2532418380095207, -0.250087946155664, -0.24070331961559538, -0.22515472921520677, -0.20365778804800397, -0.1765754738988976, -0.14441319988521523, -0.1078104742558364, -0.06752926856705777, -0.02443929036167685, 0.020499569738334285, 0.06625727766290929, 0.11175578088768122, 0.15589276288422144, 0.19756652586968287, 0.23570146589357968, 0.26927358087283637, 0.29733544082962854, 0.3190400507314688, 0.33366305013827313, 0.3406227202063703, 0.3394973070841716, 0.3300392206839182, 0.3121857282915725, 0.28606583230094706, 0.2520030991258598, 0.21051429046014672, 0.16230373676503088, 0.10825348428940883, 0.04940933911145689, -0.013036977370172781, -0.0777692593667126, -0.14337144941015142, -0.20835501273819312, -0.27118852655467424, -0.33032890100276513, -0.38425360400038866, -0.4314932301851665, -0.47066373594440686, -0.5004976584229822, -0.5198736467664834, -0.5278436586178057, -0.5236572136806412, -0.5067821483258684, -0.47692137978539223, -0.43402526421586846, -0.37829921833413127, -0.31020636771814003, -0.23046508433710483, -0.14004137938069144, -0.040136222854785776, 0.06783203350335418, 0.18224985087955142, 0.30133493864376465, 0.4231664622049397, 0.5457184731667526, 0.6668959397772901, 0.7845726961028191, 0.8966305822835551, 1.0009990167107312, 1.0956942247623747, 1.1788573482944704, 1.2487906755200475, 1.3039912620028704, 1.3431812596962447, 1.3653343314019821, 1.369697601537646, 1.3558086792299628, 1.3235073847970373, 1.2729419137252571, 1.204569281197083, 1.1191500028608041, 1.0177370815456634, 0.9016594826725571, 0.7725003908622943, 0.6320706444335235, 0.482377840955056, 0.3255916937732503, 0.16400629467421043, 0, -0.16400629467421043, -0.3255916937732503, -0.482377840955056, -0.6320706444335235, -0.7725003908622943, -0.9016594826725571, -1.0177370815456634, -1.1191500028608041, -1.204569281197083, -1.2729419137252571, -1.3235073847970373, -1.3558086792299628, -1.369697601537646, -1.3653343314019821, -1.3431812596962447, -1.3039912620028704, -1.2487906755200475, -1.1788573482944704, -1.0956942247623747, -1.0009990167107312, -0.8966305822835551, -0.7845726961028191, -0.6668959397772901, -0.5457184731667526, -0.4231664622049397, -0.30133493864376465, -0.18224985087955142, -0.06783203350335418, 0.040136222854785776, 0.14004137938069144, 0.23046508433710483, 0.31020636771814003, 0.37829921833413127, 0.43402526421586846, 0.47692137978539223, 0.5067821483258684, 0.5236572136806412, 0.5278436586178057, 0.5198736467664834, 0.5004976584229822, 0.47066373594440686, 0.4314932301851665, 0.38425360400038866, 0.33032890100276513, 0.27118852655467424, 0.20835501273819312, 0.14337144941015142, 0.0777692593667126, 0.013036977370172781, -0.04940933911145689, -0.10825348428940883, -0.16230373676503088, -0.21051429046014672, -0.2520030991258598, -0.28606583230094706, -0.3121857282915725, -0.3300392206839182, -0.3394973070841716, -0.3406227202063703, -0.33366305013827313, -0.3190400507314688, -0.29733544082962854, -0.26927358087283637, -0.23570146589357968, -0.19756652586968287, -0.15589276288422144, -0.11175578088768122, -0.06625727766290929, -0.020499569738334285, 0.02443929036167685, 0.06752926856705777, 0.1078104742558364, 0.14441319988521523, 0.1765754738988976, 0.20365778804800397, 0.22515472921520677, 0.24070331961559538, 0.250087946155664, 0.2532418380095207, 0.2502451293581236, 0.24131962000459464, 0.2268204185687688, 0.20722471962616423, 0.1831180260798301, 0.15517817999730485, 0.12415760806429027, 0.0908642208733083, 0.056141427884018255, 0.020847741709477518, -0.014163553705028316, -0.04806420629408882, -0.08006982598769256, -0.10945732723744157, -0.1355806083959433, -0.15788413925089936, -0.1759141816158624, -0.189327426902406, -0.19789689761916696, -0.20151502526600837, -0.20019388358405366, -0.19406262205081448, -0.18336220837419148, -0.1684376491072559, -0.1497279130443418, -0.1277538315634778, -0.10310429250053224, -0.07642107860306181, -0.048382727437664384, -0.01968780634197324, 0.00896199663448453, 0.03687856690458372, 0.06340345500629486, 0.08792299822707543, 0.10988213300503037, 0.12879659473383123, 0.14426324394643283, 0.15596830566349973, 0.16369336078079016, 0.16731898346602683, 0.16682597531758303, 0.16229420415986734, 0.15389911147840166, 0.14190600633619363, 0.12666231393687538, 0.1085879926813563, 0.08816437359801006, 0.06592170955057826, 0.042425747944643696, 0.01826365924112269, -0.005970335890561177, -0.029689295628155837, -0.0523275029443789, -0.07335370287653258, -0.09228332678160647, -0.108689427367626, -0.12221208256362037, -0.1325660658228375, -0.13954662425038294, -0.1430332529225548, -0.14299140277451738, -0.1394721092951341, -0.13260957879629867, -0.12261681705438875, -0.10977943053792967, -0.09444777219727382, -0.077027640956467, -0.057969775791158376, -0.03775841091365877, -0.016899177583090667, 0.004093349955757894, 0.024708162127954344, 0.044450075468664745, 0.06285145760316091, 0.07948314187429105, 0.09396428039908959, 0.10597091272051502, 0.11524306057542291, 0.12159019677681535, 0.12489497686974774, 0.12511516506351938, 0.12228372992451303, 0.1165071293753649, 0.10796184763762301, 0.09688928786169759, 0.08358916235281316, 0.06841155664804177, 0.051747873450736386, 0.034020886925686944, 0.01567415657392982, -0.0028389375435634327, -0.02106627031240182, -0.03856789020578331, -0.05492652018971173, -0.06975739291935958, -0.08271719094928028, -0.09351188666693155, -0.1019033053079908, -0.10771426698985458, -0.11083219938661018, -0.111211150578966, -0.10887217081613709, -0.10390207147197254, -0.09645060841446165, -0.08672617440988756, -0.07499012016988567, -0.061549855407494046, -0.04675090906811126, -0.030968151116136388, -0.014596396376675315, 0.0019593764301506977, 0.01829395041648606, 0.03401169990116058, 0.04873608705656028, 0.06211859983148428, 0.07384692086654407, 0.08365213773798943, 0.09131482984925757, 0.09666989599527905, 0.09961001832756423, 0.10008769235809131, 0.0981157879210721, 0.09376664180269138, 0.08716971818437527, 0.07850790727602941, 0.06801256472957104, 0.05595742386340848, 0.04265153871210899, 0.02843143784849382, 0.01365268631650857, -0.001318934515252228, -0.016116412073490242, -0.030380433576706035, -0.043768047125701544, -0.05596084559826265, -0.0666724794787314, -0.07565532273444175, -0.08270613791944983, -0.08767061227369252, -0.09044666504488008, -0.0909864568796878, -0.08929706415282987, -0.08543981374265511, -0.07952830622706637, -0.07172518698177661, -0.06223775446178087, -0.05131252233152403, -0.039228876438802976, -0.026291988340062616, -0.01282516371060033, 0.0008381838553119206, 0.014362735689161719, 0.027419446964902026, 0.039693503382582034, 0.05089186436229865, 0.06075021311142119, 0.06903914980047904, 0.07556948379014228, 0.08019650388575829, 0.0828231313730624, 0.08340188846345706, 0.08193564405857741, 0.07847712871210755, 0.0731272405914557, 0.06603219339913259, 0.05737958490394189, 0.04739349029666966, 0.03632870742170339, 0.02446430051326567, 0.012096604934119787, -0.0004681327799633279, -0.012921297779449724, -0.02495944785266131, -0.03629166914295973, -0.04664656922426033, -0.05577874030510009, -0.06347453948797596, -0.06955705077314138, -0.07389011440687408, -0.0763813327030229, -0.0769839870235062, -0.07569782755373403, -0.07256872518894629, -0.06768720258065185, -0.0611858885058277, -0.05323596556231756, -0.04404270514452168, -0.033840205146846096, -0.022885464374922754, -0.011451942788160103, 0.00017723189123422176, 0.0117162432380793, 0.022883579592515142, 0.03340887156492654, 0.04303940822721678, 0.051546175643438844, 0.05872927413119461, 0.0644225867831778, 0.06849759090005603, 0.07086622560648369, 0.07148275249891736, 0.07034457112098592, 0.06749197676406792, 0.06300687391799167, 0.05701048402120933, 0.04966011036966608, 0.04114504555836765, 0.0316817271138933, 0.02150826455208684, 0.010878475554157368, 0.000055579966072378735, -0.010694292353985049, -0.021108620340357785, -0.030934878105860313, -0.03993663413396974, -0.04789921653551982, -0.05463480917852971, -0.05998685826333667, -0.06383368651178462, -0.06609123212243802, -0.06671485151208935, -0.06570014807312911, -0.06308281315348811, -0.05893748962269077, -0.05337569213534612, -0.046542840967106126, -0.038614487530296074, -0.02979182887031968, -0.02029662514555339, -0.010365647912284425, -0.0002447976542581643, 0.009816963824513431, 0.019573716937970546, 0.028788574651262038, 0.03723941417493742, 0.044724211807306895, 0.051065853255304106, 0.05611630535181256, 0.05976005136997113, 0.06191671069946386, 0.0625427840302011, 0.061632486877791125, 0.059217656746670844, 0.055366741909069817, 0.050182902127436875, 0.04380127312229389, 0.03638546666900316, 0.028123396414942516, 0.01922253541079721, 0.00990472457261861, 0.0004006615288056828, -0.009055793673379052, -0.01823335587564968, -0.02690895479132257, -0.03487314053260381, -0.04193512408648538, -0.04792733182312627, -0.05270936569215346, -0.05617127590227354, -0.058236070204037337, -0.05886140296968819, -0.058040407612741166, -0.05580165700999147, -0.052208257960808434, -0.04735610682044428, -0.0413713537628353, -0.03440714217315404, -0.02663970698412368, -0.018263930940601202, -0.009488470446348752, -0.0005305725205495466, 0.008389288755623215, 0.0170528242402898, 0.025249257679180216, 0.03278043989704993, 0.039465625474603624, 0.045145797086595135, 0.04968743436259672, 0.05298563827005523, 0.054966538251426916, 0.05558892726589368, 0.054845089045171526, 0.05276080179806228, 0.04939452279944783, 0.04483577828208111, 0.03920280232746917, 0.03263948655884517, 0.025311718939246008, 0.01740320447709402, 0.0091108727973616, 0.0006399870643162677, -0.007800924576506751, -0.016005190181960952, -0.02377304234622229, -0.030916470660572133, -0.037263760710770574, -0.042663610306633515, -0.04698872454599365, -0.05013880456847281, -0.05204286011769851, -0.05266079292072407, -0.051984215989698504, -0.05003649280530915, -0.0468719994899754, -0.04257463205223556, -0.03725559911993998, -0.031050557834344406, -0.024116166334272132, -0.016626140142081094, -0.008766911441869713, -0.0007329994411380307, 0.00727779348202495, 0.015069241468690719, 0.022451491563595237, 0.029245679802396875, 0.03528825500760315, 0.0404349060083777, 0.044563998218335926, 0.04757943797181527, 0.049412897417359984, 0.05002534873600844, 0.04940787359363372, 0.04758173162654764, 0.044597689957183224, 0.040534633795878135, 0.03549749566512367, 0.029614557259915096, 0.02303419303441456, 0.0159211379194867, 0.00845237281107258, 0.0008127303613873564, -0.006809670052392738, -0.014228045656594964, -0.02126151849891941, -0.02773951704213118, -0.03350590423117338, -0.03842273233382807, -0.04237353446064296, -0.04526607443227936, -0.047034490284135554, -0.047640781837326326, -0.04707560904475848, -0.04535838483786766, -0.04253666353426054, -0.038684843093857474, -0.033902216210620804, -0.028310420992857712, -0.022050356436424164, -0.015278640684767338, -0.008163700892720189, -0.0008815921118185305, 0.006388351206328386, 0.013467923875374594, 0.020184410616967702, 0.026374792162006683, 0.031889694561537396, 0.0365969862096151, 0.04038493613666263, 0.043164858261110495, 0.044873179207958296, 0.04547288169133724, 0.044954290955762775, 0.04333518799363926, 0.04066024980477284, 0.036999833431092026, 0.03244813648414854, 0.027120781995569207, 0.021151889295771584, 0.014690704930135929, 0.007897878060513699, 0.0009414731264110504, -0.006007181439886247, -0.012777706073684657, -0.019204841087239376, -0.025132473880760012, -0.03041742437480281, -0.03493289703084622, -0.03857151638831131, -0.04124787360313001, -0.04290052375832249, -0.043493387422937076, -0.0430165247207653, -0.04148626566814567, -0.0389446963687638, -0.03545851642402369, -0.031117298244761806, -0.026031193460751608, -0.02032814496710092, -0.01415067499982784, -0.0076523297129725025, -0.0009938687974211094, 0.005660705451633081, 0.012148181680284304, 0.018310136576819232, 0.02399679777989721, 0.029070678542675074, 0.033409896084762726, 0.036911093677711414, 0.039491896546726336, 0.041092843377906925, 0.04167874830312566, 0.04123946236788188, 0.039790018320897166, 0.037370157732002536, 0.03404325457445231, 0.02989466412910709, 0.025029540022369297, 0.019570175058984503, 0.013652932944866013, 0.0074248477399438805, 0.0010399757050144841, -0.005344410073992825, -0.011571688417459912, -0.017489727101159706, -0.02295459434521461, -0.027834054319310762, -0.03201076189467498, -0.0353850795802979, -0.03787744914379113, -0.03943026159467963, -0.04000918171978581, -0.03960389689510679, -0.038228274120851856, -0.035919923785232455, -0.03273918320045868, -0.028767547115414665, -0.024105585848465318, -0.01887040407466864, -0.01319270434508554, -0.007213528846832649, -0.0010807605064279292, 0.00505452988290973, 0.011041800395747568, 0.01673472724307832, 0.021994776275473676, 0.02669456965654962, 0.03072096599778863, 0.0339777795814216, 0.036388073426999026, 0.037895971649023814, 0.03846794853982125, 0.038093564795228206, 0.0367856349589826, 0.03457982415788262, 0.03153368618986353, 0.02772516866856249, 0.023250623888004633, 0.018222376034960235, 0.012765906055097089, 0.007016724615632022, 0.0011170109838320786, -0.004787898916586145, -0.010553088626439146, -0.01603761355714693, -0.021107942699744846, -0.025641205692228317, -0.029528166383197368, -0.03267585102537363, -0.0350097679627348, -0.036475665919543515, -0.037040789501930585, -0.036694602996596645, -0.035448966687508174, -0.03333776338604048, -0.030415986351579702, -0.026758312937909628, -0.02245720081468121, -0.017620555178721402, -0.012369025707057535, -0.006833000863593335, -0.0011493743426731647, 0.004541836254177766, 0.010100935080726818, 0.015391973344937582, 0.020286070346324788, 0.02466454921140987, 0.028421811119948154, 0.03146787849760915, 0.03373054601342288, 0.03515708805171253, 0.03571548238235808, 0.035395121754895106, 0.034206997793803866, 0.03218335456211164, 0.029376822168700183, 0.02585905350273495, 0.021718899276122857, 0.017060167747651196, 0.011999025519415403, 0.006661104396002175, 0.0011783862739623765, -0.004314056781926493, -0.009681386839109378, -0.014792307040607423, -0.019522270167744785, -0.02375651049218683, -0.027392825191067536, -0.030344037993709903, -0.032540085751275594, -0.03392967806934082, -0.03448149078152378, -0.03418486560509714, -0.033050000520523266, -0.03110762795489405, -0.028408190415966098, -0.02502053551081111, -0.021030163990934887, -0.016537075309099286, -0.01165326488927006, -0.006499935665802778, -0.0012044932410635316, 0.004102600919038626, 0.009291040603097043, 0.014233871322446913, 0.018810593791329953, 0.02291009862393184, 0.026433360845851756, 0.029295828945729147, 0.0314294509004591, 0.032784288700560854, 0.033329683153327495, 0.033054941895315104, 0.03196953532616544, 0.030102797291907995, 0.02750313949968955, 0.024236800539339205, 0.020386161729657456, 0.016047672522620546, 0.01132943763183663, 0.006348526174896253, 0.0012280697379316008, -0.0039057787725801647, -0.008926950447013124, -0.013712553486468966, -0.018145878289095554, -0.02211924108986833, -0.025536596932260312, -0.028315858631141038, -0.030390865801022342, -0.03171295678576018, -0.03225210621587792, -0.03199760169175226, -0.03095824447811959, -0.029162070816599703, -0.026655602229819213, -0.023502644714648798, -0.019782667721332886, -0.01558880402193828, -0.011025520737872224, -0.006206019700854476, -0.001249431774876786, 0.0037221253852645977, 0.00858655353405395, 0.013224770050090023, 0.01752362070005786, 0.02137863776437287, 0.02469657635356035, 0.027397667395413428, 0.029417532914776237, 0.030708717680625327, 0.0312418008477099, 0.031006061634676355, 0.03000968409937416, 0.028279497422869986, 0.0258602595172773, 0.022813502949086857, 0.019215972845949746, 0.015157696370589255, 0.010739732259961119, 0.006071656625437276, 0.0012688475056811717, -0.003550364592062848, -0.008267609845855799, -0.012767384304911852, -0.01693987585888804, -0.020683641902855238, -0.02390807345864437, -0.026535585949934375, -0.02850348371523099, -0.02976545350647457, -0.030292651457416855, -0.030074358085368774, -0.029118186562759683, -0.027449840497666158, -0.02511242852427709, -0.022165353853743745, -0.018682807307600788, -0.014751901997060052, -0.010470496487726267, -0.005944760790801549, -0.0012865456681831298, 0.003389379616669657, 0.007968152937031377, 0.012337638813004781, 0.016391172632809214, 0.020030162476652687, 0.023166485126521388, 0.02572461808166495, 0.02764345604759437, 0.028877768258816584, 0.029399261935112754, 0.029197226935616903, 0.028278747022388008, 0.02666847382012554, 0.02440797029840228, 0.021554641143706536, 0.018180277472766543, 0.0143692527200899, 0.01021641498335492, 0.005824728425681175, 0.0013027223377762409, -0.003238188987982639, -0.007686449432636199, -0.011933099780192646, -0.015874444810639654, -0.019414583516504727, -0.02246774074882283, -0.02496034364739416, -0.02683279263428047, -0.02804088438713193, -0.028556852869357694, -0.028370003962019125, -0.027486929283124892, -0.025931295145825258, -0.023743213042684303, -0.02097820829258309, -0.017705813299013568, -0.014007821004124314, -0.009976242359706794, -0.005711018774875783, -0.001317546368469544, 0.0030959266881517037, 0.00742096551061517, 0.011551610938363006, 0.015386973738882403, 0.018833697106561933, 0.021808227392475857, 0.0242388378745622, 0.026067356591233094, 0.02725055665931302, 0.02776117589459602, 0.027588541741460543, 0.02673878726933229, 0.025234654067561823, 0.023114888018489464, 0.02043324390195766, 0.017257124339123915, 0.013665887485905524, 0.009748865920135921, 0.005603146136868287, 0.001331163805118587, -0.0029618256906964366, -0.007170339003769359, -0.01119125509333045, -0.014926340439833754, -0.018284647407741748, -0.021184727237718665, -0.023556603857893828, -0.02534346071923226, -0.02650300003184549, -0.02700844192819885, -0.026849140003096225, -0.026030799158008915, -0.024575291474765667, -0.022520075719611662, -0.019917235790679125, -0.016832162732151795, -0.013341913619528646, -0.009533288461087149, -0.005500673070805175, -0.0013437014832890033, 0.0028352042329097753, 0.006933356052438774, 0.010850321892127689, 0.014490385432373016, 0.017764883649082144, 0.02059436500497898, 0.022910515801281728, 0.02465780801919245, 0.02579482893893182, 0.026295260738500102, 0.02614848694825868, 0.025359811855992162, 0.023950288492718824, 0.02195616044737453, 0.019427932222406526, 0.016429091920474845, 0.013034518523135051, 0.009328613679311357, 0.005403204578809037, 0.0013552699833031712, -0.0027154543076808382, -0.006708931465170797, -0.010527280667149653, -0.0140771748476989, -0.017272120454565915, -0.020034563558235203, -0.02229777106101561, -0.024007441406453174, -0.025123005945741624, -0.025618589810057598, -0.025483609574772036, -0.024722993974344232, -0.02335702321385102, -0.021420791795844378, -0.018963309009365447, -0.016046260085392557, -0.012742459293363153, -0.009134033735229603, -0.005310383105204344, -0.001365966067563401, 0.0026020319676232843, 0.006496092118328332, 0.010220757448281948, 0.01368497171879119, 0.016804304203895018, 0.019503006238796267, 0.021715849438222797, 0.023389701006101316, 0.024484798122965536, 0.024975690879125174, 0.024851831433870496, 0.024117795820529128, 0.02279313386825835, 0.020911851851144147, 0.018521541478982193, 0.015682177491412555, 0.012464614196551687, 0.008948818610024297, 0.00522188422275308, 0.001375874701930989, -0.002494449117477997, -0.006293962860044532, -0.00992951541543272, -0.013312211544931866, -0.016359584383080997, -0.01899760476849918, -0.021162478473522036, -0.022802187728621772, -0.023877739821182492, -0.02436409282978715, -0.02425073655385625, -0.023541915216202396, -0.022256487342528417, -0.020427427139727148, -0.01810098048495144, -0.015335497084391253, -0.012199968258041404, -0.008772306961969172, -0.005137412898898334, -0.0013850707403448518, 0.0023922665352370284, 0.006101754488727927, 0.00965243820547652, 0.012957481406684766, 0.015936289082210075, 0.018516471784701557, 0.020635603736159858, 0.022242732074113928, 0.023299600775860924, 0.02378155989064526, 0.02367813850517202, 0.022993268174411507, 0.021745152162181668, 0.019965784542375846, 0.0177001317980202, 0.015004997811136076, 0.011947600859789681, 0.008603898241440406, 0.005056700253527537, 0.0013936203353077019, -0.0022950879128631695, -0.005918753458577677, -0.009388515598962177, -0.012619502043745399, -0.015532903956532725, -0.018057897245600793, -0.020133363288725184, -0.02170936730991112, -0.022748358673196824, -0.02322606426917705, -0.023132053771873582, -0.0224699636489046, -0.021257375216423076, -0.019525350534920622, -0.017317638333743533, -0.014689570225327627, -0.011706675027270965, -0.008443045867156263, -0.004979500734773004, -0.0014015821240636816, 0.0022025547471406647, 0.005744313029523505, 0.009136831200036163, 0.012297112416656514, 0.015148054092932059, 0.01762032808419807, 0.019654065658479634, 0.021200306322634314, 0.02222217546549378, 0.0226957625177727, 0.022610678745961104, 0.021970281710725268, 0.02079156163410272, 0.019104693231692664, 0.016952264771848306, 0.014388204022376175, 0.011476428143240118, 0.008289251300775069, 0.004905589651580713, 0.00140900823032221, -0.0021143419426140086, -0.005577845630634443, -0.008896551793144617, -0.011989256359865178, -0.014780488324228756, -0.017202350600789295, -0.019196170766077887, -0.02071392157053247, -0.021719376851525408, -0.022188975050966963, -0.022112369782274294, -0.02149265462138347, -0.020346257324130104, -0.01870250679997739, -0.016602884199987043, -0.014099977208244078, -0.011256163871514341, -0.008142058884927753, -0.004834761011787389, -0.00141594511359963, 0.0020301540135732573, 0.005418816247279273, 0.008666918116213984, 0.011694971002926942, 0.014429065614320767, 0.016802675173390316, 0.018758273358612965, 0.020248727662251685, 0.021238434439203365, 0.021704168334336447, 0.021635625849232957, 0.021035650363780307, 0.019920133777660724, 0.018317597888086602, 0.016268466477704344, 0.01382404665772478, 0.011045245110773818, 0.008001051332409439, 0.004766825622644666, 0.001422434292103143, -0.0019497217920851394, -0.005266736675474448, -0.008447236835180876, -0.011413376692503821, -0.014092743202077183, -0.01642012293775027, -0.018339088571549058, -0.01980336616917874, -0.020777950190207572, -0.02123993934715474, -0.02117907338963555, -0.02059795826643023, -0.019511974797451554, -0.017948873769948425, -0.015948068067589742, -0.01355963985860181, -0.010843087828347095, -0.00786584577273261, -0.004701609417503863, -0.0014285129602282405, 0.00187279956519293, 0.0051211605136237655, 0.008236873541285012, 0.01114366819302468, 0.01377056624452489, 0.01605361414717347, 0.017937439307072388, 0.019376592344255338, 0.02033664281309794, 0.020795001987215626, 0.020741453069891686, 0.020178376417009432, 0.019120664875185333, 0.0175953319581651, 0.01564082312223433, 0.013306047671493584, 0.010649155648402716, 0.00773609027735929, 0.004638951977968503, 0.0014342145178680122, -0.0017991625774623876, -0.004981678783586611, -0.008035246622244304, -0.010885106980669185, -0.013461658742705098, -0.015702157970090905, -0.01755224516773573, -0.018967263473787403, -0.01991333582598348, -0.02036817514037183, -0.020321608148466484, -0.019775800610678917, -0.018745178982852075, -0.017256051077630397, -0.015345935649716385, -0.013062617962545108, -0.0104629550890398, -0.0076114607973693975, -0.004578705225475791, -0.0014395690256405519, 0.0017286048456615758, 0.004847916090733413, 0.007841821882691563, 0.010637014475414253, 0.01316521556862294, 0.015364843522382056, 0.01718251272630553, 0.01857432863270137, 0.019506947054543904, 0.019958372181729127, 0.01991847423730338, 0.01938921461919245, 0.01838457358146651, 0.016930182824770386, 0.015062672608372978, 0.012828749988629842, 0.01028403135929919, 0.007491658457589216, 0.004520732260142814, 0.0014446035976513863, -0.0016609372410323162, -0.004719527247166793, -0.00765610780915488, -0.010398766080577401, -0.012880495440505985, -0.015040831963555533, -0.016827326947297692, -0.018196819649855207, -0.01911647936800561, -0.01956459171199397, -0.01953107026540971, -0.019017681600231897, -0.018037978681067334, -0.01661694486467684, -0.014790357804757985, -0.012603889433317896, -0.010111964640790455, -0.0073764071597169295, -0.004464906327954762, -0.001449342741398271, 0.0015959858017241364, 0.004596194294233417, 0.007477651391260596, 0.010169785919654237, 0.012606814717344235, 0.01472934951240313, 0.01648584360424345, 0.017833843119877, 0.018741012486104755, 0.019185909362704312, 0.019158490483088687, 0.018660336494081123, 0.017704590811336143, 0.016315614540938817, 0.01452836648787009, 0.012387524007289036, 0.009946366789984437, 0.007265451454066335, 0.004411109900092095, 0.0014538086527928896, -0.0015335902438228164, -0.004477623870321846, -0.007306034424402164, -0.009949542177106122, -0.012343541903364506, -0.014429681259710532, -0.016157282560405096, -0.01748457332278261, -0.018379695715318146, -0.01882147052916997, -0.018799897369634553, -0.01831637927773816, -0.017383666783279565, -0.016025523291719142, -0.01427612054869527, -0.012179179539710703, -0.0097868784066856, -0.007158554645466938, -0.004359233850482814, -0.0014580214729518557, 0.001473602644254898, 0.004363544878129201, 0.0071408702303832885, 0.009737542963765855, 0.012090092769458544, 0.01414116567388682, 0.01584092180037047, 0.017148245933255975, 0.018031741493678068, 0.018470483910864078, 0.01845451532759405, 0.01798506896573736, 0.01707451814002669, 0.015746051681265503, 0.014033084247438328, 0.011978416497832857, 0.009633166222115746, 0.00705549710381825, 0.00430917671959886, 0.0014619995123083566, -0.0014158862728771305, -0.004253706412396606, -0.0069818007419346585, -0.009533332639218631, -0.011845926012245675, -0.013863189710639153, -0.015536092116421414, -0.016824152418719495, -0.01769641964107276, -0.018132215756499145, -0.018121625063668843, -0.01766571826299745, -0.016776506209538723, -0.015476624969149652, -0.013798760401989628, -0.011784826881051801, -0.009484920766687369, -0.006956074753967209, -0.004260844054152656, -0.0014657594467195533, 0.0013603145544175315, 0.004147875914810678, 0.006828493904860343, 0.009336488533302297, 0.011610539382894846, 0.013595184450611883, 0.015242172367376374, 0.016511635039784277, 0.017373052226689063, 0.017805984725702103, 0.017800558570582454, 0.017357688788491536, 0.016489037684412143, 0.015216709150542095, 0.013572686980568186, 0.01159803144326871, 0.009341854283142888, 0.006860097723097219, 0.004214147813740005, 0.0014693164894945697, -0.0013067701437440014, -0.0040458375275462, -0.006680641358166121, -0.009146618017093154, -0.0113834662274503, -0.01333662119966703, -0.014958585239220964, -0.016210082378840997, -0.01706100897767458, -0.01749115729156568, -0.01749069463624016, -0.01706038679988794, -0.016211560664404667, -0.014965807410119642, -0.013354434049408942, -0.011417677203762454, -0.009203698855466397, -0.006767389126796341, -0.004169005836659759, -0.0014726845426650819, 0.0012551441002949801, 0.003947390620945601, 0.0065379563580783735, 0.008963355880674225, 0.011164272388517736, 0.013087007995559244, 0.014684793446642131, 0.015918925332827495, 0.016759703163586933, 0.017187143618797848, 0.0171914548166528, 0.01677325935891348, 0.015943561106138794, 0.014723456940057058, 0.013143601033070898, 0.01124343521221113, 0.00907020472798412, 0.006677783977501164, 0.004125341358151963, 0.0014758763303122046, -0.001205335149493303, -0.003852348474225018, -0.006400171916557612, -0.00878636198084347, -0.010952553425031049, -0.012845886472440166, -0.014420296322880392, -0.015637633514912264, -0.016468587900084916, -0.016893393861042563, -0.016902299817695796, -0.01649579088533091, -0.01568455963193187, -0.014489226079229364, -0.012939814250640157, -0.011074998538095987, -0.008941138792478176, -0.006591128201166568, -0.004083082575162079, -0.0014789035163416356, 0.0011572490206432794, 0.003760537090971077, 0.006267039128891068, 0.00861531912689057, 0.010747932112644135, 0.012612829041148339, 0.014164626752362209, 0.015365712017225888, 0.016187152822868107, 0.01660939482846842, 0.016622726238085854, 0.016227500054346724, 0.015434108656074051, 0.014262711736419728, 0.01274272469594658, 0.010912080458641957, 0.008816283224044635, 0.006507277749850236, 0.004042162252482353, 0.0014817768087461913, -0.0011107978522340363, -0.0036717941336340152, -0.006138325668332858, -0.008449931176799973, -0.010550056192249302, -0.01238743634879343, -0.013917348406577077, -0.01510269849307102, -0.015914921089308, -0.016334666983135498, -0.016352263632192436, -0.015967936998171076, -0.015191789792313391, -0.014043537065175988, -0.012552006034062167, -0.010754412822790367, -0.008695434248910875, -0.0064260977994751774, -0.0040025173657611225, -0.0014845060520989296, 0.001065899656782016, 0.0035859679633027165, 0.0060138144286458195, 0.008289921319845869, 0.010358596338355043, 0.012169334985884152, 0.01367805324879071, 0.014848160522422897, 0.01565144667071293, 0.016068761725133097, 0.01609047185663239, 0.0157166807775033, 0.014957211510959738, 0.013831349362103413, 0.012367352789886227, 0.010601744571577303, 0.00857840102955967, 0.006347462023384735, 0.003964088777422741, 0.0014871003097710904, -0.0010224778383769964, -0.0035029167728239732, -0.005893302297866349, -0.008135030524631656, -0.010173244322677057, -0.011958175413308776, -0.013446359277576559, -0.014601693229142412, -0.015396311902883136, -0.01581125893718057, -0.0158369386691664, -0.01547333709304844, -0.014730007018010421, -0.013625818163939131, -0.012188478707671256, -0.010453840397743728, -0.008465004654331396, -0.006271251933469948, -0.0039268209420180444, -0.001489567937158992, 0.0009804607569779006, 0.0034225078028503587, 0.005776599048728849, 0.007985016134274239, 0.009993711351404286, 0.01175363008496115, 0.013221908482918276, 0.014362917122283454, 0.01514912526666108, 0.015561764759421884, 0.01559127755234534, 0.015237536210895197, 0.014509832332133389, 0.013426633521814398, 0.012015115262961428, 0.010310479529530386, 0.008355077220264368, 0.006197356281645716, 0.00389066163793881, 0.0014919166470259346, -0.0009397813342606426, -0.0033446166317085586, -0.005663526333004577, -0.007839650592711016, -0.009819726557275166, -0.011555391744804534, -0.0130043649918816, -0.01413147613728624, -0.014909519373670103, -0.015319909569623626, -0.015353125737739849, -0.015008931078796509, -0.014296364538302178, -0.013233504433751023, -0.011847010310674214, -0.010171454625439188, -0.008248460999282507, -0.006125670515331982, -0.003855561722788522, -0.0014941535679170478, 0.0009003766964703528, 0.0032691265311028126, 0.0055539167685768045, 0.007698720288068272, 0.00965103562990568, 0.0113631718797509, 0.012793413383655425, 0.013907035855790523, 0.014677149135446097, 0.015085346146991644, 0.015122142409512172, 0.01478719561316758, 0.014089300199438874, 0.013046157418718991, 0.01168392685501652, 0.010036570768324824, 0.00814500767903409, 0.006056096281334168, 0.0038214749100170414, 0.0014962852964667261, -0.0008621878502874215, -0.0031959278806493285, -0.0054476131094249956, -0.007562024500735143, -0.009487399569802346, -0.011176699311977477, -0.012588757156183593, -0.01368928188535334, -0.014451690096772446, -0.014857748000421564, -0.014898007068620149, -0.014572023139021235, -0.013888353909628899, -0.012864335217565165, -0.011525641928607123, -0.009905644548561236, -0.008044577670688067, -0.005988540973186719, -0.0037883575646898123, -0.001498317944330809, 0.0008251593882101772, 0.0031249176350564944, 0.005344467489871771, 0.007429374445238039, 0.009328593553228418, 0.01099571891622731, 0.01239011732871508, 0.013477918382556037, 0.014232836916291836, 0.014636807844256994, 0.014680418041143398, 0.014363124967141193, 0.01369325697440835, 0.012687795607829424, 0.011371945569670666, 0.009778503227204973, 0.007947039476913437, 0.005922917317570183, 0.0037561685165216764, 0.0015002571803482342, -0.0007892392203539142, -0.00305599883852761, -0.0052443407354430495, -0.007300592396315815, -0.009174405896575442, -0.010819990449348012, -0.012197231166414461, -0.01327266670491837, -0.014020301979428757, -0.01442223620659061, -0.014469091116130787, -0.014160229094615801, -0.013503756205283617, -0.012516310320976625, -0.011222639887424142, -0.009654983971142277, -0.007852269114008591, -0.005859142995939682, -0.0037248688884814903, -0.0015021082684972948, 0.0007543783299625474, 0.0029890801815565184, 0.005147101733607314, 0.007175510890671145, 0.00902463711022394, 0.010649287480762942, 0.012009851014782252, 0.013073264178693695, 0.01381381413037713, 0.014213760156853028, 0.014263758300036197, 0.013963079016428607, 0.013319612817118734, 0.012349664051856333, 0.01107753820692213, 0.009534933153084136, 0.007760149582860876, 0.005797140297899653, 0.0036944219394958186, 0.0015038761021002299, -0.0007205305502049192, -0.002924075595879741, -0.005052626858393404, -0.0070539719968784826, -0.008879099032985255, -0.010483396413877239, -0.011827743233000787, -0.01287946297109578, -0.013613117511392785, -0.014011122140930357, -0.014064166676264553, -0.013771432637189442, -0.013140601418286135, -0.012187653551363304, -0.010936464285577633, -0.00941820571009868, -0.007670570383973723, -0.005736835803278369, -0.00366479291990011, -0.001505565234712698, 0.0006876523601449177, 0.00286090388378893, 0.0049607994435985295, 0.006935826646738437, 0.008737614039244647, 0.01032211558951199, 0.01165068721655711, 0.012691029056767581, 0.013417970498948804, 0.01381407891335426, 0.013870077359622441, 0.01358506127329902, 0.012966509084608432, 0.01203008679424868, 0.010799251594458353, 0.009304664555034639, 0.007583427072353721, 0.005678160090151053, 0.0036359489384678225, 0.0015071799080418947, -0.0006557026979732587, -0.002799488378469224, -0.004871509299848556, -0.006820934022144984, -0.008600014311765478, -0.010165254463467898, -0.011478474500535086, -0.012507741269437883, -0.013228144727447802, -0.013622400557258232, -0.013681264536586487, -0.013403748736896336, -0.012797134509085466, -0.01187678221492805, -0.010665742658183706, -0.009194180035830985, -0.00749862084847184, -0.005621047466391402, -0.003607858839933144, -0.0015087240772337124, 0.0006246427898401269, 0.0027397566323579653, 0.004784652271327459, 0.0067091609921461235, 0.008466141173911168, 0.010012632851152684, 0.011310907935924272, 0.012329390430677602, 0.013043424192202441, 0.013435869583795883, 0.013497514583281576, 0.013227290493877986, 0.01263228722027037, 0.011727568004884567, 0.010535788447934154, 0.009086629438214764, 0.007416058181949052, 0.00556543572255255, 0.003580493092072516, 0.0015102014337905801, -0.0005944359927717659, -0.0026816401308817728, -0.00470012982840901, -0.0066003815954845954, -0.008335844475682933, -0.00986408023299002, -0.011147800932092089, -0.012155778548548051, -0.012863604424271008, -0.013254280103606731, -0.013318625253926769, -0.013055492889090718, -0.012471786862916317, -0.011582281465954499, -0.010409247822644397, -0.008981896527792336, -0.007335650464937203, -0.005511265904143077, -0.0035538236814692103, -0.0015116154263880575, 0.0005650476503559502, 0.002625074029175856, 0.004617848692860326, 0.006494476564373363, 0.008208982028594632, 0.009719435114967555, 0.01098897675931067, 0.011986718079678929, 0.012688491730525973, 0.013077437063691643, 0.013144404933265979, 0.012888172432530941, 0.012315462535176964, 0.01144076841438057, 0.010285987013979746, 0.008879871127927713, 0.007257313692511953, 0.005458482101529113, 0.0035278240172099684, 0.0015129692797900048, -0.0005364449599844065, -0.002569996909679064, -0.004537720492602471, -0.006391332885738158, -0.008085419084898076, -0.009578544439296014, -0.010834267905846674, -0.011822031249002064, -0.012517902493012715, -0.012905155543753462, -0.01297467194717528, -0.012725155141015774, -0.012163152177246664, -0.011302882631036643, -0.010165879151148737, -0.008780448730199682, -0.007180968167638807, -0.0054070312559075595, -0.003502468841801931, -0.0015142660120755424, 0.0005085968506047051, 0.002516350558681798, 0.004459661443360502, 0.006290843396517416, 0.007965027857164334, 0.009441263040645211, 0.010683515484707942, 0.011661549421945758, 0.012351662522275424, 0.012737260106664346, 0.012809253926231617, 0.012566275930364277, 0.012014702006836162, 0.011168485353712086, 0.01004880382199437, 0.008683530134531634, 0.007106538228550186, 0.005356862979918629, 0.0034777341487035773, 0.0015155084503307484, -0.00048147387000675127, -0.0024640797601373898, -0.004383592054774834, -0.006192906409989943, -0.007847687074605545, -0.0093074531439088, -0.010536568685619762, -0.011505112524436771, -0.012189606459857474, -0.012573584198265635, -0.01264798721755697, -0.012411378053621193, -0.011869965997356654, -0.011037444807740571, -0.009934646667183755, -0.008589021116394062, -0.00703395199656127, -0.005307929391640506, -0.0034535971058876993, -0.001516699244976306, 0.00045504808080494644, 0.0024131321051841085, 0.0043094368588250075, 0.006097425370375175, 0.007733281572913899, 0.009176983899832552, 0.010393284268267678, 0.011352568506508866, 0.012031577225672833, 0.012413969592181787, 0.012490716340718399, 0.0122603125813083, 0.011728805395083586, 0.010909635771645183, 0.009823299004609742, 0.008496832118737259, 0.006963141142563334, 0.005260184960803945, 0.0034300359849442144, 0.0015178408828486465, -0.00042929296432670666, -0.0023634578160154794, -0.00423712415859844, -0.006004308533256249, -0.0076217019146873, -0.009049730955228595, -0.01025352609321708, -0.01120377284574724, -0.011877425506361262, -0.012258265875760151, -0.012337293483882131, -0.012112937920077007, -0.011591088271950845, -0.010784939174781327, -0.009714657481423113, -0.008406877966526699, -0.00689404067060509, -0.005213586366194846, -0.0034070300952478713, -0.00151893569917239, 0.0004041833317320204, 0.002315009582837331, 0.004166585795663758, 0.005913468669586753, 0.007512844037826396, 0.008925576054795938, 0.010117164687290837, 0.01105858808715264, 0.011727009281129073, 0.012106329973623976, 0.012187578036788894, 0.011969119366495626, 0.011456689110939219, 0.010663241724268916, 0.009608623751342376, 0.008319077601981749, 0.006826588717109863, 0.0051680923633116785, 0.0033845597227788226, 0.0015199858885156523, -0.0003796952417209309, -0.0022677424128073795, -0.004097756934445488, -0.005824822791289849, -0.007406608929514508, -0.008804406671879646, -0.00998407684047834, -0.010916883416353232, -0.011580193381905555, -0.01195802570566827, -0.01204143615744952, -0.011828728693012117, -0.011325488421326635, -0.010544435558748188, -0.009505104175134735, -0.008233353838774774, -0.006760726364439712, -0.005123663661415923, -0.0033626060732225352, -0.0015209935148396514, 0.0003558059242827915, 0.002221613489926448, 0.004030575862183344, 0.005738291896619945, 0.007302902323647602, 0.008686115665733228, 0.009854145231748159, 0.010778534263371465, 0.011436849084956653, 0.011813223376626478, 0.011898740369753469, 0.01169164376342075, 0.011197372381315067, 0.010428417926743648, 0.009404009542339973, 0.008149633133637214, 0.006696397467611093, 0.00508026280922129, 0.003341151218990552, 0.0015219605207158697, -0.00033249370996061596, -0.0021765820449820453, -0.003964983803162525, -0.00565380073366025, -0.007201634419757122, -0.00857060096310209, -0.009727258081365882, -0.010643421934430644, -0.011296853731357609, -0.011671799394609888, -0.011759369189448235, -0.011557748175405612, -0.011072232505793696, -0.01031509088761188, -0.009305254812510079, -0.00806784537393949, -0.006633548493105717, -0.0050378540885072905, -0.00332017804986942, -0.0015228887357929956, 0.0003097379641832494, 0.002132609234697734, 0.0039009247460562724, 0.005571277580452986, 0.007102719621677949, 0.008457765262127215, 0.009603308827561241, 0.010511433269506563, 0.01116009037397745, 0.011533635916259543, 0.01162320677618236, 0.011426930927965387, 0.010949965337194096, 0.010204361033252212, 0.009208758874376458, 0.007987923679968019, 0.0065721283687898355, 0.004996403415038089, 0.003299670226990114, 0.0015237798845877746, -0.00028751902624220564, -0.0020896580293490383, -0.003838345283298632, -0.00549065404042726, -0.00700607629434954, -0.008347515756775607, -0.00948219582556923, -0.010382460323554851, -0.011026447448835167, -0.011398620516371472, -0.011490142609518077, -0.011299086111719097, -0.01083047215759177, -0.010096139228910174, -0.009114444321521939, -0.007909804220715057, -0.006512088344072049, -0.004955878246193867, -0.0032796121398813776, -0.0015246355936486423, 0.00026581815252941317, 0.0020476931081573504, 0.0037771944615355283, 0.005411864851883404, 0.006911626537311458, 0.00823976388014558, 0.009363822067268227, 0.010256400069519504, 0.010895818468891231, 0.011266645880046446, 0.0113600711870085, 0.011174112620279932, 0.010713658720364531, 0.009990340371570247, 0.009022237243243287, 0.007833426042127466, 0.00645338185948109, 0.004916247494804226, 0.0032599888663503917, 0.0015254573981639328, -0.0002446174637050831, -0.002006680761836088, -0.0037174236422587853, -0.0053348477104333165, -0.006819295973559219, -0.00813442506516627, -0.009248094919780498, -0.010133154121412417, -0.010768101738503401, -0.011137609515594709, -0.011232891742606407, -0.01105191388104099, -0.010599434999880308, -0.009886883164553556, -0.008932067029426978, -0.0077587309068310635, -0.006395964424944249, -0.004877481448689318, -0.003240786134992019, -0.0015262467480482893, 0.00022389989546712193, 0.001966588801736915, 0.0036589863718344637, 0.005259543103367455, 0.006729013552570935, 0.00803141852132107, 0.009134925881564053, 0.010012628475892515, 0.010643200086942263, 0.011011413486579361, 0.011108507983824576, 0.010932397603869465, 0.010487714957811752, 0.009785689907073791, 0.008843866188345628, 0.007685663144457024, 0.00633979350608419, 0.0048395516954862485, 0.0032219902901132642, 0.0015270050135687122, -0.00020364915265412223, -0.0019273864750659596, -0.0036018382601906906, -0.00518589415503449, -0.006640711366395806, -0.007930667026167472, -0.009024230354636906, -0.009894733270925042, -0.01052102061949433, -0.010887964161528249, -0.01098682784620731, -0.010815475546331858, -0.010378416324808213, -0.009686686297598708, -0.008757570176396957, -0.007614169511750057, -0.006284828417937068, -0.004802431052346535, -0.003203588258907899, -0.0015277334905348747, 0.00018384966640662659, 0.0018890443857169051, 0.0035459368674946967, 0.00511384648238484, 0.006554324477814246, 0.007832096730511445, 0.00891592743171094, 0.0097793825602118, 0.010401474484817446, 0.01076717197996795, 0.010867763263796957, 0.01070106329419811, 0.010271460396355445, 0.009589801249979152, 0.008673117238872902, 0.007544199061731474, 0.0062310302255206415, 0.004766093500153822, 0.0031855675207004695, 0.0015284334051064155, -0.00016448655416644695, -0.0018515344202770054, -0.003491241598222934, -0.0050433480599028115, -0.006469790759651679, -0.007735636976214574, -0.008809939697100646, -0.009666494102209426, -0.010284476657319522, -0.010648951233553383, -0.01075122995439325, -0.010589080056074333, -0.01016677184176389, -0.009494966721381806, -0.008590448260943039, -0.0074757030212299624, -0.006178361650754986, -0.004730514121913109, -0.0031679160781232906, -0.0015291059182347367, 0.00014554558228247226, 0.0018148296788304194, 0.0034377136020542084, 0.004974349093233294, 0.006387050744406665, 0.00764122012567864, 0.008706193040386213, 0.009555989162640333, 0.010169945733445008, 0.010533219861166827, 0.010637147218504658, 0.01047944847111701, 0.010064278525306006, 0.009402117551157869, 0.008509506628087186, 0.007408634676172836, 0.006126786985255266, 0.004695669045019289, 0.0031506224300722734, 0.00152975212978499, -0.00012701313104154568, -0.0017789044101855964, -0.0033853156810923096, -0.0049068019008445575, -0.006306047483438199, -0.007548781402151541, -0.008604616481879815, -0.009447792329506606, -0.010057803740838872, -0.010419899256959096, -0.010525437750984275, -0.010372094428864201, -0.00996391133861546, -0.009311191309838516, -0.008430238095294144, -0.007342949264059696, -0.0060762720085808086, -0.004661535387110025, -0.0031336755463287234, -0.001530373082350148, 0.0001088761619285668, 0.0017437339512144095, 0.00333401220293789, 0.004840660803149927, 0.006226726414999595, 0.007458258740058715, 0.008505142009038258, 0.009341831339686926, 0.009947975959452496, 0.010308914090387096, 0.01041602746442601, 0.010266946900304674, 0.00986560404352474, 0.009222128157529003, 0.008352590664382306, 0.007278603873109481, 0.006026783911534547, 0.004628091205258873, 0.0031170648437149825, 0.001530969764797153, -0.00009112218696606803, -0.0017092946699876987, -0.003283769019197351, -0.004775882018532973, -0.006149035240488571, -0.0073695926446301525, -0.008407704423026918, -0.009238036916283918, -0.009840390753724568, -0.010200192137384127, -0.010308845323473493, -0.010163937779373152, -0.009769293124595185, -0.009134870711019328, -0.008276514468868288, -0.007215557347592569, -0.0059782912241642, -0.004595315448258029, -0.00310078016369045, -0.0015315431155527564, 0.0000737392399667339, 0.001675563912446815, 0.0032345533890227388, 0.004712423565792373, 0.0060729238083116685, 0.00728272606016411, 0.008312241194704922, 0.009136342615950489, 0.009734979415048518, 0.010093664121865643, 0.010203823189262884, 0.010063001734130994, 0.009674917650644571, 0.009049363918998405, 0.008201961665838864, 0.007153770198919874, 0.005930763748120867, 0.0045631879117862895, 0.0030848117512741317, 0.00153209402566305, -0.000056715849575066915, -0.001642519952343532, -0.0031863339073372196, -0.004650245172536397, -0.005998344004833064, -0.007197604246304405, -0.008218692329369866, -0.009036684685486062, -0.009631676013797021, -0.009989263566841785, -0.010100895673283842, -0.009964076066946442, -0.009582419144642727, -0.008965554944794535, -0.008128886334342557, -0.007093204522074692, -0.005884172493081779, -0.004531689196248325, -0.0030691502352163075, -0.0015326233416345881, 0.000040041013955833456, 0.001610141944230643, 0.003139080437401436, 0.004589308189120179, 0.005925249651897664, 0.007114174661777941, 0.00812700023963896, 0.008939001927057518, 0.009530417260232635, 0.00988692665446217, 0.01],"x":[-100.0,-99.95002498750625,-99.9000499750125,-99.85007496251875,-99.80009995002499,-99.75012493753124,-99.70014992503748,-99.65017491254373,-99.60019990004997,-99.55022488755623,-99.50024987506247,-99.45027486256872,-99.40029985007496,-99.35032483758121,-99.30034982508745,-99.2503748125937,-99.20039980009994,-99.1504247876062,-99.10044977511244,-99.05047476261869,-99.00049975012493,-98.95052473763118,-98.90054972513744,-98.85057471264368,-98.80059970014993,-98.75062468765617,-98.70064967516242,-98.65067466266866,-98.60069965017492,-98.55072463768116,-98.50074962518741,-98.45077461269365,-98.4007996001999,-98.35082458770614,-98.3008495752124,-98.25087456271864,-98.20089955022489,-98.15092453773113,-98.10094952523738,-98.05097451274362,-98.00099950024988,-97.95102448775611,-97.90104947526237,-97.85107446276862,-97.80109945027486,-97.75112443778112,-97.70114942528735,-97.65117441279361,-97.60119940029985,-97.5512243878061,-97.50124937531234,-97.4512743628186,-97.40129935032483,-97.35132433783109,-97.30134932533733,-97.25137431284358,-97.20139930034982,-97.15142428785607,-97.10144927536231,-97.05147426286857,-97.0014992503748,-96.95152423788106,-96.90154922538731,-96.85157421289355,-96.8015992003998,-96.75162418790605,-96.7016491754123,-96.65167416291854,-96.60169915042479,-96.55172413793103,-96.50174912543729,-96.45177411294353,-96.40179910044978,-96.35182408795602,-96.30184907546227,-96.25187406296851,-96.20189905047476,-96.151924037981,-96.10194902548726,-96.0519740129935,-96.00199900049975,-95.95202398800599,-95.90204897551224,-95.8520739630185,-95.80209895052474,-95.75212393803099,-95.70214892553723,-95.65217391304348,-95.60219890054972,-95.55222388805598,-95.50224887556222,-95.45227386306847,-95.40229885057471,-95.35232383808096,-95.3023488255872,-95.25237381309346,-95.2023988005997,-95.15242378810595,-95.10244877561219,-95.05247376311844,-95.00249875062468,-94.95252373813094,-94.90254872563717,-94.85257371314343,-94.80259870064968,-94.75262368815592,-94.70264867566218,-94.65267366316841,-94.60269865067467,-94.55272363818091,-94.50274862568716,-94.4527736131934,-94.40279860069965,-94.3528235882059,-94.30284857571215,-94.25287356321839,-94.20289855072464,-94.15292353823088,-94.10294852573713,-94.05297351324337,-94.00299850074963,-93.95302348825587,-93.90304847576212,-93.85307346326836,-93.80309845077461,-93.75312343828087,-93.7031484257871,-93.65317341329336,-93.6031984007996,-93.55322338830585,-93.50324837581209,-93.45327336331835,-93.40329835082458,-93.35332333833084,-93.30334832583708,-93.25337331334333,-93.20339830084957,-93.15342328835582,-93.10344827586206,-93.05347326336832,-93.00349825087456,-92.95352323838081,-92.90354822588705,-92.8535732133933,-92.80359820089954,-92.7536231884058,-92.70364817591205,-92.65367316341829,-92.60369815092454,-92.55372313843078,-92.50374812593704,-92.45377311344328,-92.40379810094953,-92.35382308845577,-92.30384807596202,-92.25387306346826,-92.20389805097452,-92.15392303848076,-92.10394802598701,-92.05397301349325,-92.0039980009995,-91.95402298850574,-91.904047976012,-91.85407296351823,-91.80409795102449,-91.75412293853073,-91.70414792603698,-91.65417291354323,-91.60419790104947,-91.55422288855573,-91.50424787606197,-91.45427286356822,-91.40429785107446,-91.35432283858071,-91.30434782608695,-91.2543728135932,-91.20439780109945,-91.1544227886057,-91.10444777611194,-91.0544727636182,-91.00449775112443,-90.95452273863069,-90.90454772613693,-90.85457271364318,-90.80459770114942,-90.75462268865567,-90.70464767616193,-90.65467266366817,-90.60469765117442,-90.55472263868066,-90.50474762618691,-90.45477261369315,-90.4047976011994,-90.35482258870564,-90.3048475762119,-90.25487256371814,-90.20489755122439,-90.15492253873063,-90.10494752623688,-90.05497251374312,-90.00499750124938,-89.95502248875562,-89.90504747626187,-89.85507246376811,-89.80509745127436,-89.7551224387806,-89.70514742628686,-89.65517241379311,-89.60519740129935,-89.5552223888056,-89.50524737631184,-89.4552723638181,-89.40529735132434,-89.35532233883059,-89.30534732633683,-89.25537231384308,-89.20539730134932,-89.15542228885558,-89.10544727636182,-89.05547226386807,-89.00549725137431,-88.95552223888056,-88.9055472263868,-88.85557221389305,-88.8055972013993,-88.75562218890555,-88.70564717641179,-88.65567216391804,-88.6056971514243,-88.55572213893053,-88.50574712643679,-88.45577211394303,-88.40579710144928,-88.35582208895552,-88.30584707646177,-88.25587206396801,-88.20589705147427,-88.1559220389805,-88.10594702648676,-88.055972013993,-88.00599700149925,-87.95602198900549,-87.90604697651175,-87.85607196401799,-87.80609695152424,-87.75612193903048,-87.70614692653673,-87.65617191404297,-87.60619690154923,-87.55622188905548,-87.50624687656172,-87.45627186406797,-87.40629685157421,-87.35632183908046,-87.3063468265867,-87.25637181409296,-87.2063968015992,-87.15642178910545,-87.10644677661169,-87.05647176411794,-87.00649675162418,-86.95652173913044,-86.90654672663668,-86.85657171414293,-86.80659670164917,-86.75662168915542,-86.70664667666166,-86.65667166416792,-86.60669665167416,-86.55672163918041,-86.50674662668666,-86.4567716141929,-86.40679660169916,-86.3568215892054,-86.30684657671165,-86.25687156421789,-86.20689655172414,-86.15692153923038,-86.10694652673664,-86.05697151424287,-86.00699650174913,-85.95702148925537,-85.90704647676162,-85.85707146426786,-85.80709645177411,-85.75712143928035,-85.70714642678661,-85.65717141429285,-85.6071964017991,-85.55722138930535,-85.5072463768116,-85.45727136431785,-85.40729635182409,-85.35732133933034,-85.30734632683658,-85.25737131434283,-85.20739630184907,-85.15742128935533,-85.10744627686157,-85.05747126436782,-85.00749625187406,-84.95752123938031,-84.90754622688655,-84.8575712143928,-84.80759620189905,-84.7576211894053,-84.70764617691154,-84.65767116441779,-84.60769615192403,-84.55772113943029,-84.50774612693654,-84.45777111444278,-84.40779610194903,-84.35782108945527,-84.30784607696152,-84.25787106446776,-84.20789605197402,-84.15792103948026,-84.10794602698651,-84.05797101449275,-84.007996001999,-83.95802098950524,-83.9080459770115,-83.85807096451774,-83.80809595202399,-83.75812093953023,-83.70814592703648,-83.65817091454272,-83.60819590204898,-83.55822088955522,-83.50824587706147,-83.45827086456772,-83.40829585207396,-83.35832083958022,-83.30834582708646,-83.25837081459271,-83.20839580209895,-83.1584207896052,-83.10844577711144,-83.0584707646177,-83.00849575212393,-82.95852073963019,-82.90854572713643,-82.85857071464268,-82.80859570214892,-82.75862068965517,-82.70864567716141,-82.65867066466767,-82.6086956521739,-82.55872063968016,-82.5087456271864,-82.45877061469265,-82.40879560219891,-82.35882058970515,-82.3088455772114,-82.25887056471764,-82.2088955522239,-82.15892053973013,-82.10894552723639,-82.05897051474263,-82.00899550224888,-81.95902048975512,-81.90904547726137,-81.85907046476761,-81.80909545227387,-81.7591204397801,-81.70914542728636,-81.6591704147926,-81.60919540229885,-81.55922038980509,-81.50924537731134,-81.45927036481758,-81.40929535232384,-81.35932033983009,-81.30934532733633,-81.25937031484258,-81.20939530234882,-81.15942028985508,-81.10944527736132,-81.05947026486757,-81.00949525237381,-80.95952023988006,-80.9095452273863,-80.85957021489256,-80.8095952023988,-80.75962018990505,-80.70964517741129,-80.65967016491754,-80.60969515242378,-80.55972013993004,-80.50974512743628,-80.45977011494253,-80.40979510244878,-80.35982008995502,-80.30984507746128,-80.25987006496752,-80.20989505247377,-80.15992003998001,-80.10994502748626,-80.0599700149925,-80.00999500249875,-79.960019990005,-79.91004497751125,-79.86006996501749,-79.81009495252374,-79.76011994002998,-79.71014492753623,-79.66016991504247,-79.61019490254873,-79.56021989005497,-79.51024487756122,-79.46026986506746,-79.41029485257371,-79.36031984007997,-79.3103448275862,-79.26036981509246,-79.2103948025987,-79.16041979010495,-79.11044477761119,-79.06046976511745,-79.01049475262369,-78.96051974012994,-78.91054472763618,-78.86056971514243,-78.81059470264867,-78.76061969015493,-78.71064467766116,-78.66066966516742,-78.61069465267366,-78.56071964017991,-78.51074462768615,-78.4607696151924,-78.41079460269864,-78.3608195902049,-78.31084457771115,-78.26086956521739,-78.21089455272364,-78.16091954022988,-78.11094452773614,-78.06096951524238,-78.01099450274863,-77.96101949025487,-77.91104447776112,-77.86106946526736,-77.81109445277362,-77.76111944027986,-77.71114442778611,-77.66116941529235,-77.6111944027986,-77.56121939030484,-77.5112443778111,-77.46126936531734,-77.41129435282359,-77.36131934032983,-77.31134432783608,-77.26136931534234,-77.21139430284857,-77.16141929035483,-77.11144427786107,-77.06146926536732,-77.01149425287356,-76.96151924037981,-76.91154422788605,-76.86156921539231,-76.81159420289855,-76.7616191904048,-76.71164417791104,-76.6616691654173,-76.61169415292353,-76.56171914042979,-76.51174412793603,-76.46176911544228,-76.41179410294852,-76.36181909045477,-76.31184407796101,-76.26186906546727,-76.21189405297352,-76.16191904047976,-76.11194402798601,-76.06196901549225,-76.0119940029985,-75.96201899050475,-75.912043978011,-75.86206896551724,-75.81209395302349,-75.76211894052973,-75.71214392803599,-75.66216891554222,-75.61219390304848,-75.56221889055472,-75.51224387806097,-75.46226886556721,-75.41229385307346,-75.3623188405797,-75.31234382808596,-75.2623688155922,-75.21239380309845,-75.1624187906047,-75.11244377811094,-75.0624687656172,-75.01249375312344,-74.96251874062969,-74.91254372813593,-74.86256871564218,-74.81259370314842,-74.76261869065468,-74.71264367816092,-74.66266866566717,-74.61269365317341,-74.56271864067966,-74.5127436281859,-74.46276861569216,-74.4127936031984,-74.36281859070465,-74.31284357821089,-74.26286856571714,-74.2128935532234,-74.16291854072963,-74.11294352823589,-74.06296851574213,-74.01299350324838,-73.96301849075462,-73.91304347826087,-73.86306846576711,-73.81309345327337,-73.7631184407796,-73.71314342828586,-73.6631684157921,-73.61319340329835,-73.5632183908046,-73.51324337831085,-73.46326836581709,-73.41329335332334,-73.36331834082958,-73.31334332833583,-73.26336831584207,-73.21339330334833,-73.16341829085458,-73.11344327836082,-73.06346826586707,-73.01349325337331,-72.96351824087957,-72.9135432283858,-72.86356821589206,-72.8135932033983,-72.76361819090455,-72.71364317841079,-72.66366816591704,-72.61369315342328,-72.56371814092954,-72.51374312843578,-72.46376811594203,-72.41379310344827,-72.36381809095452,-72.31384307846076,-72.26386806596702,-72.21389305347326,-72.16391804097951,-72.11394302848576,-72.063968015992,-72.01399300349826,-71.9640179910045,-71.91404297851075,-71.86406796601699,-71.81409295352324,-71.76411794102948,-71.71414292853574,-71.66416791604198,-71.61419290354823,-71.56421789105447,-71.51424287856072,-71.46426786606696,-71.41429285357322,-71.36431784107945,-71.31434282858571,-71.26436781609195,-71.2143928035982,-71.16441779110444,-71.1144427786107,-71.06446776611695,-71.01449275362319,-70.96451774112944,-70.91454272863568,-70.86456771614193,-70.81459270364817,-70.76461769115443,-70.71464267866067,-70.66466766616692,-70.61469265367316,-70.56471764117941,-70.51474262868565,-70.4647676161919,-70.41479260369815,-70.3648175912044,-70.31484257871064,-70.26486756621689,-70.21489255372313,-70.16491754122939,-70.11494252873563,-70.06496751624188,-70.01499250374813,-69.96501749125437,-69.91504247876063,-69.86506746626686,-69.81509245377312,-69.76511744127936,-69.71514242878561,-69.66516741629185,-69.6151924037981,-69.56521739130434,-69.5152423788106,-69.46526736631684,-69.41529235382309,-69.36531734132933,-69.31534232883558,-69.26536731634182,-69.21539230384808,-69.16541729135432,-69.11544227886057,-69.06546726636682,-69.01549225387306,-68.96551724137932,-68.91554222888556,-68.86556721639181,-68.81559220389805,-68.7656171914043,-68.71564217891054,-68.6656671664168,-68.61569215392304,-68.56571714142929,-68.51574212893553,-68.46576711644178,-68.41579210394802,-68.36581709145428,-68.31584207896051,-68.26586706646677,-68.21589205397301,-68.16591704147926,-68.1159420289855,-68.06596701649175,-68.01599200399801,-67.96601699150425,-67.9160419790105,-67.86606696651674,-67.816091954023,-67.76611694152923,-67.71614192903549,-67.66616691654173,-67.61619190404798,-67.56621689155422,-67.51624187906047,-67.46626686656671,-67.41629185407297,-67.3663168415792,-67.31634182908546,-67.2663668165917,-67.21639180409795,-67.16641679160419,-67.11644177911045,-67.06646676661668,-67.01649175412294,-66.96651674162919,-66.91654172913543,-66.86656671664169,-66.81659170414792,-66.76661669165418,-66.71664167916042,-66.66666666666667,-66.61669165417291,-66.56671664167916,-66.5167416291854,-66.46676661669166,-66.4167916041979,-66.36681659170415,-66.31684157921039,-66.26686656671664,-66.21689155422288,-66.16691654172914,-66.11694152923538,-66.06696651674163,-66.01699150424787,-65.96701649175412,-65.91704147926038,-65.86706646676662,-65.81709145427287,-65.76711644177911,-65.71714142928536,-65.6671664167916,-65.61719140429786,-65.5672163918041,-65.51724137931035,-65.46726636681659,-65.41729135432284,-65.36731634182908,-65.31734132933533,-65.26736631684157,-65.21739130434783,-65.16741629185407,-65.11744127936032,-65.06746626686656,-65.01749125437281,-64.96751624187905,-64.91754122938531,-64.86756621689156,-64.8175912043978,-64.76761619190405,-64.7176411794103,-64.66766616691655,-64.61769115442279,-64.56771614192904,-64.51774112943528,-64.46776611694153,-64.41779110444777,-64.36781609195403,-64.31784107946027,-64.26786606696652,-64.21789105447276,-64.16791604197901,-64.11794102948525,-64.0679660169915,-64.01799100449774,-63.968015992004,-63.918040979510245,-63.86806596701649,-63.81809095452274,-63.768115942028984,-63.71814092953523,-63.66816591704148,-63.618190904547724,-63.56821589205397,-63.51824087956022,-63.468265867066464,-63.41829085457271,-63.368315842078964,-63.31834082958521,-63.26836581709146,-63.2183908045977,-63.16841579210395,-63.1184407796102,-63.06846576711644,-63.01849075462269,-62.968515742128936,-62.91854072963518,-62.86856571714143,-62.818590704647676,-62.76861569215392,-62.71864067966017,-62.668665667166415,-62.61869065467266,-62.56871564217891,-62.518740629685155,-62.4687656171914,-62.41879060469765,-62.3688155922039,-62.31884057971015,-62.268865567216395,-62.21889055472264,-62.16891554222889,-62.118940529735134,-62.06896551724138,-62.01899050474763,-61.969015492253874,-61.91904047976012,-61.86906546726637,-61.81909045477261,-61.76911544227886,-61.71914042978511,-61.66916541729135,-61.6191904047976,-61.569215392303846,-61.51924037981009,-61.46926536731634,-61.419290354822586,-61.36931534232883,-61.319340329835086,-61.26936531734133,-61.21939030484758,-61.169415292353825,-61.11944027986007,-61.06946526736632,-61.019490254872565,-60.96951524237881,-60.91954022988506,-60.869565217391305,-60.81959020489755,-60.7696151924038,-60.719640179910044,-60.66966516741629,-60.61969015492254,-60.569715142428784,-60.51974012993503,-60.46976511744128,-60.41979010494752,-60.36981509245377,-60.31984007996002,-60.26986506746627,-60.21989005497252,-60.16991504247876,-60.11994002998501,-60.069965017491256,-60.0199900049975,-59.97001499250375,-59.920039980009996,-59.87006496751624,-59.82008995502249,-59.770114942528735,-59.72013993003498,-59.67016491754123,-59.620189905047475,-59.57021489255372,-59.52023988005997,-59.470264867566215,-59.42028985507246,-59.37031484257871,-59.320339830084954,-59.27036481759121,-59.220389805097454,-59.1704147926037,-59.12043978010995,-59.070464767616194,-59.02048975512244,-58.97051474262869,-58.920539730134934,-58.87056471764118,-58.82058970514743,-58.77061469265367,-58.72063968015992,-58.670664667666166,-58.62068965517241,-58.57071464267866,-58.520739630184906,-58.47076461769115,-58.4207896051974,-58.370814592703645,-58.32083958020989,-58.27086456771614,-58.22088955522239,-58.17091454272864,-58.120939530234885,-58.07096451774113,-58.02098950524738,-57.971014492753625,-57.92103948025987,-57.87106446776612,-57.821089455272364,-57.77111444277861,-57.72113943028486,-57.671164417791104,-57.62118940529735,-57.5712143928036,-57.521239380309844,-57.47126436781609,-57.42128935532234,-57.37131434282858,-57.32133933033483,-57.271364317841076,-57.22138930534732,-57.17141429285358,-57.12143928035982,-57.07146426786607,-57.021489255372316,-56.97151424287856,-56.92153923038481,-56.871564217891056,-56.8215892053973,-56.77161419290355,-56.721639180409795,-56.67166416791604,-56.62168915542229,-56.571714142928535,-56.52173913043478,-56.47176411794103,-56.421789105447274,-56.37181409295352,-56.32183908045977,-56.271864067966014,-56.22188905547226,-56.171914042978514,-56.12193903048476,-56.07196401799101,-56.021989005497254,-55.9720139930035,-55.92203898050975,-55.87206396801599,-55.82208895552224,-55.77211394302849,-55.72213893053473,-55.67216391804098,-55.622188905547226,-55.57221389305347,-55.52223888055972,-55.472263868065966,-55.42228885557221,-55.37231384307846,-55.322338830584705,-55.27236381809095,-55.2223888055972,-55.172413793103445,-55.1224387806097,-55.072463768115945,-55.02248875562219,-54.97251374312844,-54.922538730634685,-54.87256371814093,-54.82258870564718,-54.772613693153424,-54.72263868065967,-54.67266366816592,-54.622688655672164,-54.57271364317841,-54.52273863068466,-54.4727636181909,-54.42278860569715,-54.3728135932034,-54.32283858070964,-54.27286356821589,-54.222888555722136,-54.17291354322838,-54.122938530734636,-54.07296351824088,-54.02298850574713,-53.973013493253376,-53.92303848075962,-53.87306346826587,-53.823088455772115,-53.77311344327836,-53.72313843078461,-53.673163418290855,-53.6231884057971,-53.57321339330335,-53.523238380809595,-53.47326336831584,-53.42328835582209,-53.373313343328334,-53.32333833083458,-53.27336331834083,-53.223388305847074,-53.17341329335332,-53.12343828085957,-53.07346326836582,-53.02348825587207,-52.973513243378314,-52.92353823088456,-52.87356321839081,-52.82358820589705,-52.7736131934033,-52.723638180909546,-52.67366316841579,-52.62368815592204,-52.573713143428286,-52.52373813093453,-52.47376311844078,-52.423788105947025,-52.37381309345327,-52.32383808095952,-52.273863068465765,-52.22388805597201,-52.17391304347826,-52.123938030984505,-52.07396301849075,-52.023988005997005,-51.97401299350325,-51.9240379810095,-51.874062968515744,-51.82408795602199,-51.77411294352824,-51.724137931034484,-51.67416291854073,-51.62418790604698,-51.574212893553224,-51.52423788105947,-51.47426286856572,-51.42428785607196,-51.37431284357821,-51.324337831084456,-51.2743628185907,-51.22438780609695,-51.174412793603196,-51.12443778110944,-51.07446276861569,-51.02448775612194,-50.97451274362819,-50.924537731134436,-50.87456271864068,-50.82458770614693,-50.774612693653175,-50.72463768115942,-50.67466266866567,-50.624687656171915,-50.57471264367816,-50.52473763118441,-50.474762618690654,-50.4247876061969,-50.37481259370315,-50.324837581209394,-50.27486256871564,-50.22488755622189,-50.174912543728134,-50.12493753123438,-50.07496251874063,-50.02498750624687,-49.97501249375313,-49.92503748125937,-49.87506246876562,-49.825087456271866,-49.77511244377811,-49.72513743128436,-49.675162418790606,-49.62518740629685,-49.5752123938031,-49.525237381309346,-49.47526236881559,-49.42528735632184,-49.375312343828085,-49.32533733133433,-49.27536231884058,-49.225387306346825,-49.17541229385307,-49.12543728135932,-49.075462268865564,-49.02548725637181,-48.97551224387806,-48.92553723138431,-48.87556221889056,-48.825587206396804,-48.77561219390305,-48.7256371814093,-48.675662168915544,-48.62568715642179,-48.57571214392804,-48.52573713143428,-48.47576211894053,-48.425787106446776,-48.37581209395302,-48.32583708145927,-48.275862068965516,-48.22588705647176,-48.17591204397801,-48.125937031484256,-48.0759620189905,-48.02598700649675,-47.976011994002995,-47.92603698150925,-47.876061969015495,-47.82608695652174,-47.77611194402799,-47.726136931534235,-47.67616191904048,-47.62618690654673,-47.576211894052975,-47.52623688155922,-47.47626186906547,-47.426286856571714,-47.37631184407796,-47.32633683158421,-47.276361819090454,-47.2263868065967,-47.17641179410295,-47.12643678160919,-47.07646176911544,-47.026486756621686,-46.97651174412793,-46.92653673163418,-46.87656171914043,-46.82658670664668,-46.776611694152926,-46.72663668165917,-46.67666166916542,-46.626686656671666,-46.57671164417791,-46.52673663168416,-46.476761619190405,-46.42678660669665,-46.3768115942029,-46.326836581709145,-46.27686156921539,-46.22688655672164,-46.176911544227885,-46.12693653173413,-46.07696151924038,-46.026986506746624,-45.97701149425287,-45.92703648175912,-45.877061469265364,-45.82708645677162,-45.777111444277864,-45.72713643178411,-45.67716141929036,-45.6271864067966,-45.57721139430285,-45.5272363818091,-45.47726136931534,-45.42728635682159,-45.377311344327836,-45.32733633183408,-45.27736131934033,-45.227386306846576,-45.17741129435282,-45.12743628185907,-45.077461269365315,-45.02748625687156,-44.97751124437781,-44.927536231884055,-44.8775612193903,-44.827586206896555,-44.7776111944028,-44.72763618190905,-44.677661169415295,-44.62768615692154,-44.57771114442779,-44.527736131934034,-44.47776111944028,-44.42778610694653,-44.377811094452774,-44.32783608195902,-44.27786106946527,-44.22788605697151,-44.17791104447776,-44.12793603198401,-44.07796101949025,-44.0279860069965,-43.978010994502746,-43.92803598200899,-43.87806096951524,-43.828085957021486,-43.77811094452774,-43.728135932033986,-43.67816091954023,-43.62818590704648,-43.578210894552726,-43.52823588205897,-43.47826086956522,-43.428285857071465,-43.37831084457771,-43.32833583208396,-43.278360819590205,-43.22838580709645,-43.1784107946027,-43.128435782108944,-43.07846076961519,-43.02848575712144,-42.978510744627684,-42.92853573213393,-42.87856071964018,-42.82858570714642,-42.77861069465268,-42.728635682158924,-42.67866066966517,-42.62868565717142,-42.57871064467766,-42.52873563218391,-42.478760619690156,-42.4287856071964,-42.37881059470265,-42.328835582208896,-42.27886056971514,-42.22888555722139,-42.178910544727636,-42.12893553223388,-42.07896051974013,-42.028985507246375,-41.97901049475262,-41.92903548225887,-41.879060469765115,-41.82908545727136,-41.77911044477761,-41.72913543228386,-41.67916041979011,-41.629185407296355,-41.5792103948026,-41.52923538230885,-41.479260369815094,-41.42928535732134,-41.37931034482759,-41.329335332333834,-41.27936031984008,-41.22938530734633,-41.17941029485257,-41.12943528235882,-41.079460269865066,-41.02948525737131,-40.97951024487756,-40.929535232383806,-40.87956021989005,-40.8295852073963,-40.779610194902546,-40.72963518240879,-40.679660169915046,-40.62968515742129,-40.57971014492754,-40.529735132433785,-40.47976011994003,-40.42978510744628,-40.379810094952525,-40.32983508245877,-40.27986006996502,-40.229885057471265,-40.17991004497751,-40.12993503248376,-40.079960019990004,-40.02998500749625,-39.9800099950025,-39.930034982508744,-39.88005997001499,-39.83008495752124,-39.78010994502748,-39.73013493253373,-39.68015992003998,-39.63018490754623,-39.58020989505248,-39.53023488255872,-39.48025987006497,-39.430284857571216,-39.38030984507746,-39.33033483258371,-39.280359820089956,-39.2303848075962,-39.18040979510245,-39.130434782608695,-39.08045977011494,-39.03048475762119,-38.980509745127435,-38.93053473263368,-38.88055972013993,-38.830584707646175,-38.78060969515242,-38.73063468265867,-38.680659670164914,-38.63068465767117,-38.580709645177414,-38.53073463268366,-38.48075962018991,-38.430784607696154,-38.3808095952024,-38.33083458270865,-38.28085957021489,-38.23088455772114,-38.18090954522739,-38.13093453273363,-38.08095952023988,-38.030984507746126,-37.98100949525237,-37.93103448275862,-37.881059470264866,-37.83108445777111,-37.78110944527736,-37.731134432783605,-37.68115942028985,-37.6311844077961,-37.58120939530235,-37.5312343828086,-37.481259370314845,-37.43128435782109,-37.38130934532734,-37.331334332833585,-37.28135932033983,-37.23138430784608,-37.181409295352324,-37.13143428285857,-37.08145927036482,-37.031484257871064,-36.98150924537731,-36.93153423288356,-36.8815592203898,-36.83158420789605,-36.7816091954023,-36.73163418290854,-36.68165917041479,-36.631684157921036,-36.58170914542729,-36.531734132933536,-36.48175912043978,-36.43178410794603,-36.381809095452276,-36.33183408295852,-36.28185907046477,-36.231884057971016,-36.18190904547726,-36.13193403298351,-36.081959020489755,-36.031984007996,-35.98200899550225,-35.932033983008495,-35.88205897051474,-35.83208395802099,-35.782108945527234,-35.73213393303348,-35.68215892053973,-35.632183908045974,-35.58220889555222,-35.532233883058474,-35.48225887056472,-35.43228385807097,-35.382308845577214,-35.33233383308346,-35.28235882058971,-35.23238380809595,-35.1824087956022,-35.132433783108446,-35.08245877061469,-35.03248375812094,-34.982508745627186,-34.93253373313343,-34.88255872063968,-34.832583708145926,-34.78260869565217,-34.73263368315842,-34.682658670664665,-34.63268365817091,-34.58270864567716,-34.53273363318341,-34.48275862068966,-34.432783608195905,-34.38280859570215,-34.3328335832084,-34.282858570714644,-34.23288355822089,-34.18290854572714,-34.132933533233384,-34.08295852073963,-34.03298350824588,-33.983008495752124,-33.93303348325837,-33.88305847076462,-33.83308345827086,-33.78310844577711,-33.733133433283356,-33.6831584207896,-33.63318340829585,-33.583208395802096,-33.53323338330834,-33.483258370814596,-33.43328335832084,-33.38330834582709,-33.333333333333336,-33.28335832083958,-33.23338330834583,-33.183408295852075,-33.13343328335832,-33.08345827086457,-33.033483258370815,-32.98350824587706,-32.93353323338331,-32.883558220889554,-32.8335832083958,-32.78360819590205,-32.733633183408294,-32.68365817091454,-32.63368315842079,-32.583708145927034,-32.53373313343328,-32.48375812093953,-32.43378310844578,-32.38380809595203,-32.33383308345827,-32.28385807096452,-32.23388305847077,-32.18390804597701,-32.13393303348326,-32.083958020989506,-32.03398300849575,-31.984007996002,-31.934032983508246,-31.884057971014492,-31.83408295852074,-31.784107946026985,-31.734132933533232,-31.684157921039482,-31.63418290854573,-31.584207896051975,-31.53423288355822,-31.484257871064468,-31.434282858570715,-31.38430784607696,-31.334332833583208,-31.284357821089454,-31.2343828085957,-31.18440779610195,-31.134432783608197,-31.084457771114444,-31.03448275862069,-30.984507746126937,-30.934532733633183,-30.88455772113943,-30.834582708645677,-30.784607696151923,-30.73463268365817,-30.684657671164416,-30.634682658670666,-30.584707646176913,-30.53473263368316,-30.484757621189406,-30.434782608695652,-30.3848075962019,-30.334832583708145,-30.284857571214392,-30.23488255872064,-30.184907546226885,-30.134932533733135,-30.08495752123938,-30.034982508745628,-29.985007496251875,-29.93503248375812,-29.885057471264368,-29.835082458770614,-29.78510744627686,-29.735132433783107,-29.685157421289354,-29.635182408795604,-29.58520739630185,-29.535232383808097,-29.485257371314344,-29.43528235882059,-29.385307346326837,-29.335332333833083,-29.28535732133933,-29.235382308845576,-29.185407296351823,-29.13543228385807,-29.08545727136432,-29.035482258870566,-28.985507246376812,-28.93553223388306,-28.885557221389305,-28.835582208895552,-28.7856071964018,-28.735632183908045,-28.68565717141429,-28.635682158920538,-28.58570714642679,-28.535732133933035,-28.48575712143928,-28.435782108945528,-28.385807096451774,-28.33583208395802,-28.285857071464267,-28.235882058970514,-28.18590704647676,-28.135932033983007,-28.085957021489257,-28.035982008995504,-27.98600699650175,-27.936031984007997,-27.886056971514243,-27.83608195902049,-27.786106946526736,-27.736131934032983,-27.68615692153923,-27.636181909045476,-27.586206896551722,-27.536231884057973,-27.48625687156422,-27.436281859070466,-27.386306846576712,-27.33633183408296,-27.286356821589205,-27.23638180909545,-27.1864067966017,-27.136431784107945,-27.08645677161419,-27.03648175912044,-26.986506746626688,-26.936531734132934,-26.88655672163918,-26.836581709145428,-26.786606696651674,-26.73663168415792,-26.686656671664167,-26.636681659170414,-26.58670664667666,-26.53673163418291,-26.486756621689157,-26.436781609195403,-26.38680659670165,-26.336831584207896,-26.286856571714143,-26.23688155922039,-26.186906546726636,-26.136931534232883,-26.08695652173913,-26.036981509245376,-25.987006496751626,-25.937031484257872,-25.88705647176412,-25.837081459270365,-25.787106446776612,-25.73713143428286,-25.687156421789105,-25.63718140929535,-25.587206396801598,-25.537231384307844,-25.487256371814095,-25.43728135932034,-25.387306346826588,-25.337331334332834,-25.28735632183908,-25.237381309345327,-25.187406296851574,-25.13743128435782,-25.087456271864067,-25.037481259370313,-24.987506246876563,-24.93753123438281,-24.887556221889056,-24.837581209395303,-24.78760619690155,-24.737631184407796,-24.687656171914043,-24.63768115942029,-24.587706146926536,-24.537731134432782,-24.48775612193903,-24.43778110944528,-24.387806096951525,-24.337831084457772,-24.28785607196402,-24.237881059470265,-24.18790604697651,-24.137931034482758,-24.087956021989005,-24.03798100949525,-23.988005997001498,-23.938030984507748,-23.888055972013994,-23.83808095952024,-23.788105947026487,-23.738130934532734,-23.68815592203898,-23.638180909545227,-23.588205897051473,-23.53823088455772,-23.488255872063966,-23.438280859570217,-23.388305847076463,-23.33833083458271,-23.288355822088956,-23.238380809595203,-23.18840579710145,-23.138430784607696,-23.088455772113942,-23.03848075962019,-22.988505747126435,-22.938530734632682,-22.888555722138932,-22.83858070964518,-22.788605697151425,-22.73863068465767,-22.688655672163918,-22.638680659670165,-22.58870564717641,-22.538730634682658,-22.488755622188904,-22.43878060969515,-22.3888055972014,-22.338830584707647,-22.288855572213894,-22.23888055972014,-22.188905547226387,-22.138930534732634,-22.08895552223888,-22.038980509745127,-21.989005497251373,-21.93903048475762,-21.88905547226387,-21.839080459770116,-21.789105447276363,-21.73913043478261,-21.689155422288856,-21.639180409795102,-21.58920539730135,-21.539230384807595,-21.489255372313842,-21.43928035982009,-21.38930534732634,-21.339330334832585,-21.28935532233883,-21.239380309845078,-21.189405297351325,-21.13943028485757,-21.089455272363818,-21.039480259870064,-20.98950524737631,-20.939530234882557,-20.889555222388804,-20.839580209895054,-20.7896051974013,-20.739630184907547,-20.689655172413794,-20.63968015992004,-20.589705147426287,-20.539730134932533,-20.48975512243878,-20.439780109945026,-20.389805097451273,-20.339830084957523,-20.28985507246377,-20.239880059970016,-20.189905047476262,-20.13993003498251,-20.089955022488756,-20.039980009995002,-19.99000499750125,-19.940029985007495,-19.89005497251374,-19.84007996001999,-19.79010494752624,-19.740129935032485,-19.69015492253873,-19.640179910044978,-19.590204897551224,-19.54022988505747,-19.490254872563717,-19.440279860069964,-19.39030484757621,-19.340329835082457,-19.290354822588707,-19.240379810094954,-19.1904047976012,-19.140429785107447,-19.090454772613693,-19.04047976011994,-18.990504747626186,-18.940529735132433,-18.89055472263868,-18.840579710144926,-18.790604697651176,-18.740629685157423,-18.69065467266367,-18.640679660169916,-18.590704647676162,-18.54072963518241,-18.490754622688655,-18.4407796101949,-18.39080459770115,-18.340829585207395,-18.290854572713645,-18.24087956021989,-18.190904547726138,-18.140929535232384,-18.09095452273863,-18.040979510244878,-17.991004497751124,-17.94102948525737,-17.891054472763617,-17.841079460269864,-17.79110444777611,-17.74112943528236,-17.691154422788607,-17.641179410294853,-17.5912043978011,-17.541229385307346,-17.491254372813593,-17.44127936031984,-17.391304347826086,-17.341329335332333,-17.29135432283858,-17.24137931034483,-17.191404297851076,-17.141429285357322,-17.09145427286357,-17.041479260369815,-16.991504247876062,-16.94152923538231,-16.891554222888555,-16.8415792103948,-16.791604197901048,-16.741629185407298,-16.691654172913545,-16.64167916041979,-16.591704147926038,-16.541729135432284,-16.49175412293853,-16.441779110444777,-16.391804097951024,-16.34182908545727,-16.291854072963517,-16.241879060469763,-16.191904047976013,-16.14192903548226,-16.091954022988507,-16.041979010494753,-15.992003998001,-15.942028985507246,-15.892053973013493,-15.842078960519741,-15.792103948025987,-15.742128935532234,-15.69215392303848,-15.642178910544727,-15.592203898050975,-15.542228885557222,-15.492253873063468,-15.442278860569715,-15.392303848075962,-15.342328835582208,-15.292353823088456,-15.242378810594703,-15.19240379810095,-15.142428785607196,-15.092453773113442,-15.04247876061969,-14.992503748125937,-14.942528735632184,-14.89255372313843,-14.842578710644677,-14.792603698150925,-14.742628685657172,-14.692653673163418,-14.642678660669665,-14.592703648175911,-14.54272863568216,-14.492753623188406,-14.442778610694653,-14.3928035982009,-14.342828585707146,-14.292853573213394,-14.24287856071964,-14.192903548225887,-14.142928535732134,-14.09295352323838,-14.042978510744629,-13.993003498250875,-13.943028485757122,-13.893053473263368,-13.843078460769615,-13.793103448275861,-13.74312843578211,-13.693153423288356,-13.643178410794603,-13.59320339830085,-13.543228385807096,-13.493253373313344,-13.44327836081959,-13.393303348325837,-13.343328335832084,-13.29335332333833,-13.243378310844578,-13.193403298350825,-13.143428285857071,-13.093453273363318,-13.043478260869565,-12.993503248375813,-12.94352823588206,-12.893553223388306,-12.843578210894552,-12.793603198400799,-12.743628185907047,-12.693653173413294,-12.64367816091954,-12.593703148425787,-12.543728135932033,-12.493753123438282,-12.443778110944528,-12.393803098450775,-12.343828085957021,-12.293853073463268,-12.243878060969514,-12.193903048475763,-12.14392803598201,-12.093953023488256,-12.043978010994502,-11.994002998500749,-11.944027986006997,-11.894052973513244,-11.84407796101949,-11.794102948525737,-11.744127936031983,-11.694152923538232,-11.644177911044478,-11.594202898550725,-11.544227886056971,-11.494252873563218,-11.444277861069466,-11.394302848575713,-11.344327836081959,-11.294352823588206,-11.244377811094452,-11.1944027986007,-11.144427786106947,-11.094452773613193,-11.04447776111944,-10.994502748625687,-10.944527736131935,-10.894552723638181,-10.844577711144428,-10.794602698650674,-10.744627686156921,-10.69465267366317,-10.644677661169416,-10.594702648675662,-10.544727636181909,-10.494752623688155,-10.444777611194402,-10.39480259870065,-10.344827586206897,-10.294852573713143,-10.24487756121939,-10.194902548725636,-10.144927536231885,-10.094952523738131,-10.044977511244378,-9.995002498750624,-9.94502748625687,-9.89505247376312,-9.845077461269366,-9.795102448775612,-9.745127436281859,-9.695152423788105,-9.645177411294354,-9.5952023988006,-9.545227386306847,-9.495252373813093,-9.44527736131934,-9.395302348825588,-9.345327336331835,-9.295352323838081,-9.245377311344328,-9.195402298850574,-9.145427286356822,-9.095452273863069,-9.045477261369316,-8.995502248875562,-8.945527236381809,-8.895552223888055,-8.845577211394303,-8.79560219890055,-8.745627186406796,-8.695652173913043,-8.64567716141929,-8.595702148925538,-8.545727136431784,-8.495752123938031,-8.445777111444277,-8.395802098950524,-8.345827086456772,-8.295852073963019,-8.245877061469265,-8.195902048975512,-8.145927036481758,-8.095952023988007,-8.045977011494253,-7.9960019990005,-7.946026986506746,-7.896051974012994,-7.84607696151924,-7.796101949025488,-7.746126936531734,-7.696151924037981,-7.646176911544228,-7.596201899050475,-7.546226886556721,-7.496251874062969,-7.446276861569215,-7.396301849075463,-7.346326836581709,-7.296351824087956,-7.246376811594203,-7.19640179910045,-7.146426786606697,-7.096451774112944,-7.04647676161919,-6.9965017491254375,-6.946526736631684,-6.896551724137931,-6.846576711644178,-6.796601699150425,-6.746626686656672,-6.6966516741629185,-6.646676661669165,-6.5967016491754125,-6.546726636681659,-6.496751624187906,-6.446776611694153,-6.3968015992003995,-6.346826586706647,-6.296851574212893,-6.246876561719141,-6.196901549225387,-6.146926536731634,-6.096951524237881,-6.046976511744128,-5.997001499250374,-5.947026486756622,-5.897051474262868,-5.847076461769116,-5.797101449275362,-5.747126436781609,-5.697151424287856,-5.647176411794103,-5.59720139930035,-5.547226386806597,-5.497251374312843,-5.447276361819091,-5.397301349325337,-5.347326336831585,-5.297351324337831,-5.247376311844078,-5.197401299350325,-5.147426286856572,-5.097451274362818,-5.047476261869066,-4.997501249375312,-4.94752623688156,-4.897551224387806,-4.847576211894053,-4.7976011994003,-4.747626186906547,-4.697651174412794,-4.6476761619190405,-4.597701149425287,-4.5477261369315345,-4.497751124437781,-4.4477761119440276,-4.397801099450275,-4.3478260869565215,-4.297851074462769,-4.2478760619690155,-4.197901049475262,-4.147926036981509,-4.097951024487756,-4.047976011994003,-3.99800099950025,-3.948025987006497,-3.898050974512744,-3.8480759620189904,-3.7981009495252374,-3.7481259370314843,-3.6981509245377313,-3.648175912043978,-3.598200899550225,-3.548225887056472,-3.4982508745627188,-3.4482758620689653,-3.3983008495752123,-3.3483258370814593,-3.2983508245877062,-3.248375812093953,-3.1984007996001997,-3.1484257871064467,-3.0984507746126937,-3.0484757621189407,-2.998500749625187,-2.948525737131434,-2.898550724637681,-2.848575712143928,-2.798600699650175,-2.7486256871564216,-2.6986506746626686,-2.6486756621689156,-2.5987006496751626,-2.548725637181409,-2.498750624687656,-2.448775612193903,-2.39880059970015,-2.348825587206397,-2.2988505747126435,-2.2488755622188905,-2.1989005497251375,-2.1489255372313845,-2.098950524737631,-2.048975512243878,-1.999000499750125,-1.949025487256372,-1.8990504747626187,-1.8490754622688657,-1.7991004497751124,-1.7491254372813594,-1.6991504247876061,-1.6491754122938531,-1.5992003998000999,-1.5492253873063468,-1.4992503748125936,-1.4492753623188406,-1.3993003498250876,-1.3493253373313343,-1.2993503248375813,-1.249375312343828,-1.199400299850075,-1.1494252873563218,-1.0994502748625687,-1.0494752623688155,-0.9995002498750625,-0.9495252373813093,-0.8995502248875562,-0.8495752123938031,-0.7996001999000499,-0.7496251874062968,-0.6996501749125438,-0.6496751624187906,-0.5997001499250375,-0.5497251374312844,-0.49975012493753124,-0.4497751124437781,-0.39980009995002497,-0.3498250874562719,-0.29985007496251875,-0.24987506246876562,-0.19990004997501248,-0.14992503748125938,-0.09995002498750624,-0.04997501249375312,0.0,0.04997501249375312,0.09995002498750624,0.14992503748125938,0.19990004997501248,0.24987506246876562,0.29985007496251875,0.3498250874562719,0.39980009995002497,0.4497751124437781,0.49975012493753124,0.5497251374312844,0.5997001499250375,0.6496751624187906,0.6996501749125438,0.7496251874062968,0.7996001999000499,0.8495752123938031,0.8995502248875562,0.9495252373813093,0.9995002498750625,1.0494752623688155,1.0994502748625687,1.1494252873563218,1.199400299850075,1.249375312343828,1.2993503248375813,1.3493253373313343,1.3993003498250876,1.4492753623188406,1.4992503748125936,1.5492253873063468,1.5992003998000999,1.6491754122938531,1.6991504247876061,1.7491254372813594,1.7991004497751124,1.8490754622688657,1.8990504747626187,1.949025487256372,1.999000499750125,2.048975512243878,2.098950524737631,2.1489255372313845,2.1989005497251375,2.2488755622188905,2.2988505747126435,2.348825587206397,2.39880059970015,2.448775612193903,2.498750624687656,2.548725637181409,2.5987006496751626,2.6486756621689156,2.6986506746626686,2.7486256871564216,2.798600699650175,2.848575712143928,2.898550724637681,2.948525737131434,2.998500749625187,3.0484757621189407,3.0984507746126937,3.1484257871064467,3.1984007996001997,3.248375812093953,3.2983508245877062,3.3483258370814593,3.3983008495752123,3.4482758620689653,3.4982508745627188,3.548225887056472,3.598200899550225,3.648175912043978,3.6981509245377313,3.7481259370314843,3.7981009495252374,3.8480759620189904,3.898050974512744,3.948025987006497,3.99800099950025,4.047976011994003,4.097951024487756,4.147926036981509,4.197901049475262,4.2478760619690155,4.297851074462769,4.3478260869565215,4.397801099450275,4.4477761119440276,4.497751124437781,4.5477261369315345,4.597701149425287,4.6476761619190405,4.697651174412794,4.747626186906547,4.7976011994003,4.847576211894053,4.897551224387806,4.94752623688156,4.997501249375312,5.047476261869066,5.097451274362818,5.147426286856572,5.197401299350325,5.247376311844078,5.297351324337831,5.347326336831585,5.397301349325337,5.447276361819091,5.497251374312843,5.547226386806597,5.59720139930035,5.647176411794103,5.697151424287856,5.747126436781609,5.797101449275362,5.847076461769116,5.897051474262868,5.947026486756622,5.997001499250374,6.046976511744128,6.096951524237881,6.146926536731634,6.196901549225387,6.246876561719141,6.296851574212893,6.346826586706647,6.3968015992003995,6.446776611694153,6.496751624187906,6.546726636681659,6.5967016491754125,6.646676661669165,6.6966516741629185,6.746626686656672,6.796601699150425,6.846576711644178,6.896551724137931,6.946526736631684,6.9965017491254375,7.04647676161919,7.096451774112944,7.146426786606697,7.19640179910045,7.246376811594203,7.296351824087956,7.346326836581709,7.396301849075463,7.446276861569215,7.496251874062969,7.546226886556721,7.596201899050475,7.646176911544228,7.696151924037981,7.746126936531734,7.796101949025488,7.84607696151924,7.896051974012994,7.946026986506746,7.9960019990005,8.045977011494253,8.095952023988007,8.145927036481758,8.195902048975512,8.245877061469265,8.295852073963019,8.345827086456772,8.395802098950524,8.445777111444277,8.495752123938031,8.545727136431784,8.595702148925538,8.64567716141929,8.695652173913043,8.745627186406796,8.79560219890055,8.845577211394303,8.895552223888055,8.945527236381809,8.995502248875562,9.045477261369316,9.095452273863069,9.145427286356822,9.195402298850574,9.245377311344328,9.295352323838081,9.345327336331835,9.395302348825588,9.44527736131934,9.495252373813093,9.545227386306847,9.5952023988006,9.645177411294354,9.695152423788105,9.745127436281859,9.795102448775612,9.845077461269366,9.89505247376312,9.94502748625687,9.995002498750624,10.044977511244378,10.094952523738131,10.144927536231885,10.194902548725636,10.24487756121939,10.294852573713143,10.344827586206897,10.39480259870065,10.444777611194402,10.494752623688155,10.544727636181909,10.594702648675662,10.644677661169416,10.69465267366317,10.744627686156921,10.794602698650674,10.844577711144428,10.894552723638181,10.944527736131935,10.994502748625687,11.04447776111944,11.094452773613193,11.144427786106947,11.1944027986007,11.244377811094452,11.294352823588206,11.344327836081959,11.394302848575713,11.444277861069466,11.494252873563218,11.544227886056971,11.594202898550725,11.644177911044478,11.694152923538232,11.744127936031983,11.794102948525737,11.84407796101949,11.894052973513244,11.944027986006997,11.994002998500749,12.043978010994502,12.093953023488256,12.14392803598201,12.193903048475763,12.243878060969514,12.293853073463268,12.343828085957021,12.393803098450775,12.443778110944528,12.493753123438282,12.543728135932033,12.593703148425787,12.64367816091954,12.693653173413294,12.743628185907047,12.793603198400799,12.843578210894552,12.893553223388306,12.94352823588206,12.993503248375813,13.043478260869565,13.093453273363318,13.143428285857071,13.193403298350825,13.243378310844578,13.29335332333833,13.343328335832084,13.393303348325837,13.44327836081959,13.493253373313344,13.543228385807096,13.59320339830085,13.643178410794603,13.693153423288356,13.74312843578211,13.793103448275861,13.843078460769615,13.893053473263368,13.943028485757122,13.993003498250875,14.042978510744629,14.09295352323838,14.142928535732134,14.192903548225887,14.24287856071964,14.292853573213394,14.342828585707146,14.3928035982009,14.442778610694653,14.492753623188406,14.54272863568216,14.592703648175911,14.642678660669665,14.692653673163418,14.742628685657172,14.792603698150925,14.842578710644677,14.89255372313843,14.942528735632184,14.992503748125937,15.04247876061969,15.092453773113442,15.142428785607196,15.19240379810095,15.242378810594703,15.292353823088456,15.342328835582208,15.392303848075962,15.442278860569715,15.492253873063468,15.542228885557222,15.592203898050975,15.642178910544727,15.69215392303848,15.742128935532234,15.792103948025987,15.842078960519741,15.892053973013493,15.942028985507246,15.992003998001,16.041979010494753,16.091954022988507,16.14192903548226,16.191904047976013,16.241879060469763,16.291854072963517,16.34182908545727,16.391804097951024,16.441779110444777,16.49175412293853,16.541729135432284,16.591704147926038,16.64167916041979,16.691654172913545,16.741629185407298,16.791604197901048,16.8415792103948,16.891554222888555,16.94152923538231,16.991504247876062,17.041479260369815,17.09145427286357,17.141429285357322,17.191404297851076,17.24137931034483,17.29135432283858,17.341329335332333,17.391304347826086,17.44127936031984,17.491254372813593,17.541229385307346,17.5912043978011,17.641179410294853,17.691154422788607,17.74112943528236,17.79110444777611,17.841079460269864,17.891054472763617,17.94102948525737,17.991004497751124,18.040979510244878,18.09095452273863,18.140929535232384,18.190904547726138,18.24087956021989,18.290854572713645,18.340829585207395,18.39080459770115,18.4407796101949,18.490754622688655,18.54072963518241,18.590704647676162,18.640679660169916,18.69065467266367,18.740629685157423,18.790604697651176,18.840579710144926,18.89055472263868,18.940529735132433,18.990504747626186,19.04047976011994,19.090454772613693,19.140429785107447,19.1904047976012,19.240379810094954,19.290354822588707,19.340329835082457,19.39030484757621,19.440279860069964,19.490254872563717,19.54022988505747,19.590204897551224,19.640179910044978,19.69015492253873,19.740129935032485,19.79010494752624,19.84007996001999,19.89005497251374,19.940029985007495,19.99000499750125,20.039980009995002,20.089955022488756,20.13993003498251,20.189905047476262,20.239880059970016,20.28985507246377,20.339830084957523,20.389805097451273,20.439780109945026,20.48975512243878,20.539730134932533,20.589705147426287,20.63968015992004,20.689655172413794,20.739630184907547,20.7896051974013,20.839580209895054,20.889555222388804,20.939530234882557,20.98950524737631,21.039480259870064,21.089455272363818,21.13943028485757,21.189405297351325,21.239380309845078,21.28935532233883,21.339330334832585,21.38930534732634,21.43928035982009,21.489255372313842,21.539230384807595,21.58920539730135,21.639180409795102,21.689155422288856,21.73913043478261,21.789105447276363,21.839080459770116,21.88905547226387,21.93903048475762,21.989005497251373,22.038980509745127,22.08895552223888,22.138930534732634,22.188905547226387,22.23888055972014,22.288855572213894,22.338830584707647,22.3888055972014,22.43878060969515,22.488755622188904,22.538730634682658,22.58870564717641,22.638680659670165,22.688655672163918,22.73863068465767,22.788605697151425,22.83858070964518,22.888555722138932,22.938530734632682,22.988505747126435,23.03848075962019,23.088455772113942,23.138430784607696,23.18840579710145,23.238380809595203,23.288355822088956,23.33833083458271,23.388305847076463,23.438280859570217,23.488255872063966,23.53823088455772,23.588205897051473,23.638180909545227,23.68815592203898,23.738130934532734,23.788105947026487,23.83808095952024,23.888055972013994,23.938030984507748,23.988005997001498,24.03798100949525,24.087956021989005,24.137931034482758,24.18790604697651,24.237881059470265,24.28785607196402,24.337831084457772,24.387806096951525,24.43778110944528,24.48775612193903,24.537731134432782,24.587706146926536,24.63768115942029,24.687656171914043,24.737631184407796,24.78760619690155,24.837581209395303,24.887556221889056,24.93753123438281,24.987506246876563,25.037481259370313,25.087456271864067,25.13743128435782,25.187406296851574,25.237381309345327,25.28735632183908,25.337331334332834,25.387306346826588,25.43728135932034,25.487256371814095,25.537231384307844,25.587206396801598,25.63718140929535,25.687156421789105,25.73713143428286,25.787106446776612,25.837081459270365,25.88705647176412,25.937031484257872,25.987006496751626,26.036981509245376,26.08695652173913,26.136931534232883,26.186906546726636,26.23688155922039,26.286856571714143,26.336831584207896,26.38680659670165,26.436781609195403,26.486756621689157,26.53673163418291,26.58670664667666,26.636681659170414,26.686656671664167,26.73663168415792,26.786606696651674,26.836581709145428,26.88655672163918,26.936531734132934,26.986506746626688,27.03648175912044,27.08645677161419,27.136431784107945,27.1864067966017,27.23638180909545,27.286356821589205,27.33633183408296,27.386306846576712,27.436281859070466,27.48625687156422,27.536231884057973,27.586206896551722,27.636181909045476,27.68615692153923,27.736131934032983,27.786106946526736,27.83608195902049,27.886056971514243,27.936031984007997,27.98600699650175,28.035982008995504,28.085957021489257,28.135932033983007,28.18590704647676,28.235882058970514,28.285857071464267,28.33583208395802,28.385807096451774,28.435782108945528,28.48575712143928,28.535732133933035,28.58570714642679,28.635682158920538,28.68565717141429,28.735632183908045,28.7856071964018,28.835582208895552,28.885557221389305,28.93553223388306,28.985507246376812,29.035482258870566,29.08545727136432,29.13543228385807,29.185407296351823,29.235382308845576,29.28535732133933,29.335332333833083,29.385307346326837,29.43528235882059,29.485257371314344,29.535232383808097,29.58520739630185,29.635182408795604,29.685157421289354,29.735132433783107,29.78510744627686,29.835082458770614,29.885057471264368,29.93503248375812,29.985007496251875,30.034982508745628,30.08495752123938,30.134932533733135,30.184907546226885,30.23488255872064,30.284857571214392,30.334832583708145,30.3848075962019,30.434782608695652,30.484757621189406,30.53473263368316,30.584707646176913,30.634682658670666,30.684657671164416,30.73463268365817,30.784607696151923,30.834582708645677,30.88455772113943,30.934532733633183,30.984507746126937,31.03448275862069,31.084457771114444,31.134432783608197,31.18440779610195,31.2343828085957,31.284357821089454,31.334332833583208,31.38430784607696,31.434282858570715,31.484257871064468,31.53423288355822,31.584207896051975,31.63418290854573,31.684157921039482,31.734132933533232,31.784107946026985,31.83408295852074,31.884057971014492,31.934032983508246,31.984007996002,32.03398300849575,32.083958020989506,32.13393303348326,32.18390804597701,32.23388305847077,32.28385807096452,32.33383308345827,32.38380809595203,32.43378310844578,32.48375812093953,32.53373313343328,32.583708145927034,32.63368315842079,32.68365817091454,32.733633183408294,32.78360819590205,32.8335832083958,32.883558220889554,32.93353323338331,32.98350824587706,33.033483258370815,33.08345827086457,33.13343328335832,33.183408295852075,33.23338330834583,33.28335832083958,33.333333333333336,33.38330834582709,33.43328335832084,33.483258370814596,33.53323338330834,33.583208395802096,33.63318340829585,33.6831584207896,33.733133433283356,33.78310844577711,33.83308345827086,33.88305847076462,33.93303348325837,33.983008495752124,34.03298350824588,34.08295852073963,34.132933533233384,34.18290854572714,34.23288355822089,34.282858570714644,34.3328335832084,34.38280859570215,34.432783608195905,34.48275862068966,34.53273363318341,34.58270864567716,34.63268365817091,34.682658670664665,34.73263368315842,34.78260869565217,34.832583708145926,34.88255872063968,34.93253373313343,34.982508745627186,35.03248375812094,35.08245877061469,35.132433783108446,35.1824087956022,35.23238380809595,35.28235882058971,35.33233383308346,35.382308845577214,35.43228385807097,35.48225887056472,35.532233883058474,35.58220889555222,35.632183908045974,35.68215892053973,35.73213393303348,35.782108945527234,35.83208395802099,35.88205897051474,35.932033983008495,35.98200899550225,36.031984007996,36.081959020489755,36.13193403298351,36.18190904547726,36.231884057971016,36.28185907046477,36.33183408295852,36.381809095452276,36.43178410794603,36.48175912043978,36.531734132933536,36.58170914542729,36.631684157921036,36.68165917041479,36.73163418290854,36.7816091954023,36.83158420789605,36.8815592203898,36.93153423288356,36.98150924537731,37.031484257871064,37.08145927036482,37.13143428285857,37.181409295352324,37.23138430784608,37.28135932033983,37.331334332833585,37.38130934532734,37.43128435782109,37.481259370314845,37.5312343828086,37.58120939530235,37.6311844077961,37.68115942028985,37.731134432783605,37.78110944527736,37.83108445777111,37.881059470264866,37.93103448275862,37.98100949525237,38.030984507746126,38.08095952023988,38.13093453273363,38.18090954522739,38.23088455772114,38.28085957021489,38.33083458270865,38.3808095952024,38.430784607696154,38.48075962018991,38.53073463268366,38.580709645177414,38.63068465767117,38.680659670164914,38.73063468265867,38.78060969515242,38.830584707646175,38.88055972013993,38.93053473263368,38.980509745127435,39.03048475762119,39.08045977011494,39.130434782608695,39.18040979510245,39.2303848075962,39.280359820089956,39.33033483258371,39.38030984507746,39.430284857571216,39.48025987006497,39.53023488255872,39.58020989505248,39.63018490754623,39.68015992003998,39.73013493253373,39.78010994502748,39.83008495752124,39.88005997001499,39.930034982508744,39.9800099950025,40.02998500749625,40.079960019990004,40.12993503248376,40.17991004497751,40.229885057471265,40.27986006996502,40.32983508245877,40.379810094952525,40.42978510744628,40.47976011994003,40.529735132433785,40.57971014492754,40.62968515742129,40.679660169915046,40.72963518240879,40.779610194902546,40.8295852073963,40.87956021989005,40.929535232383806,40.97951024487756,41.02948525737131,41.079460269865066,41.12943528235882,41.17941029485257,41.22938530734633,41.27936031984008,41.329335332333834,41.37931034482759,41.42928535732134,41.479260369815094,41.52923538230885,41.5792103948026,41.629185407296355,41.67916041979011,41.72913543228386,41.77911044477761,41.82908545727136,41.879060469765115,41.92903548225887,41.97901049475262,42.028985507246375,42.07896051974013,42.12893553223388,42.178910544727636,42.22888555722139,42.27886056971514,42.328835582208896,42.37881059470265,42.4287856071964,42.478760619690156,42.52873563218391,42.57871064467766,42.62868565717142,42.67866066966517,42.728635682158924,42.77861069465268,42.82858570714642,42.87856071964018,42.92853573213393,42.978510744627684,43.02848575712144,43.07846076961519,43.128435782108944,43.1784107946027,43.22838580709645,43.278360819590205,43.32833583208396,43.37831084457771,43.428285857071465,43.47826086956522,43.52823588205897,43.578210894552726,43.62818590704648,43.67816091954023,43.728135932033986,43.77811094452774,43.828085957021486,43.87806096951524,43.92803598200899,43.978010994502746,44.0279860069965,44.07796101949025,44.12793603198401,44.17791104447776,44.22788605697151,44.27786106946527,44.32783608195902,44.377811094452774,44.42778610694653,44.47776111944028,44.527736131934034,44.57771114442779,44.62768615692154,44.677661169415295,44.72763618190905,44.7776111944028,44.827586206896555,44.8775612193903,44.927536231884055,44.97751124437781,45.02748625687156,45.077461269365315,45.12743628185907,45.17741129435282,45.227386306846576,45.27736131934033,45.32733633183408,45.377311344327836,45.42728635682159,45.47726136931534,45.5272363818091,45.57721139430285,45.6271864067966,45.67716141929036,45.72713643178411,45.777111444277864,45.82708645677162,45.877061469265364,45.92703648175912,45.97701149425287,46.026986506746624,46.07696151924038,46.12693653173413,46.176911544227885,46.22688655672164,46.27686156921539,46.326836581709145,46.3768115942029,46.42678660669665,46.476761619190405,46.52673663168416,46.57671164417791,46.626686656671666,46.67666166916542,46.72663668165917,46.776611694152926,46.82658670664668,46.87656171914043,46.92653673163418,46.97651174412793,47.026486756621686,47.07646176911544,47.12643678160919,47.17641179410295,47.2263868065967,47.276361819090454,47.32633683158421,47.37631184407796,47.426286856571714,47.47626186906547,47.52623688155922,47.576211894052975,47.62618690654673,47.67616191904048,47.726136931534235,47.77611194402799,47.82608695652174,47.876061969015495,47.92603698150925,47.976011994002995,48.02598700649675,48.0759620189905,48.125937031484256,48.17591204397801,48.22588705647176,48.275862068965516,48.32583708145927,48.37581209395302,48.425787106446776,48.47576211894053,48.52573713143428,48.57571214392804,48.62568715642179,48.675662168915544,48.7256371814093,48.77561219390305,48.825587206396804,48.87556221889056,48.92553723138431,48.97551224387806,49.02548725637181,49.075462268865564,49.12543728135932,49.17541229385307,49.225387306346825,49.27536231884058,49.32533733133433,49.375312343828085,49.42528735632184,49.47526236881559,49.525237381309346,49.5752123938031,49.62518740629685,49.675162418790606,49.72513743128436,49.77511244377811,49.825087456271866,49.87506246876562,49.92503748125937,49.97501249375313,50.02498750624687,50.07496251874063,50.12493753123438,50.174912543728134,50.22488755622189,50.27486256871564,50.324837581209394,50.37481259370315,50.4247876061969,50.474762618690654,50.52473763118441,50.57471264367816,50.624687656171915,50.67466266866567,50.72463768115942,50.774612693653175,50.82458770614693,50.87456271864068,50.924537731134436,50.97451274362819,51.02448775612194,51.07446276861569,51.12443778110944,51.174412793603196,51.22438780609695,51.2743628185907,51.324337831084456,51.37431284357821,51.42428785607196,51.47426286856572,51.52423788105947,51.574212893553224,51.62418790604698,51.67416291854073,51.724137931034484,51.77411294352824,51.82408795602199,51.874062968515744,51.9240379810095,51.97401299350325,52.023988005997005,52.07396301849075,52.123938030984505,52.17391304347826,52.22388805597201,52.273863068465765,52.32383808095952,52.37381309345327,52.423788105947025,52.47376311844078,52.52373813093453,52.573713143428286,52.62368815592204,52.67366316841579,52.723638180909546,52.7736131934033,52.82358820589705,52.87356321839081,52.92353823088456,52.973513243378314,53.02348825587207,53.07346326836582,53.12343828085957,53.17341329335332,53.223388305847074,53.27336331834083,53.32333833083458,53.373313343328334,53.42328835582209,53.47326336831584,53.523238380809595,53.57321339330335,53.6231884057971,53.673163418290855,53.72313843078461,53.77311344327836,53.823088455772115,53.87306346826587,53.92303848075962,53.973013493253376,54.02298850574713,54.07296351824088,54.122938530734636,54.17291354322838,54.222888555722136,54.27286356821589,54.32283858070964,54.3728135932034,54.42278860569715,54.4727636181909,54.52273863068466,54.57271364317841,54.622688655672164,54.67266366816592,54.72263868065967,54.772613693153424,54.82258870564718,54.87256371814093,54.922538730634685,54.97251374312844,55.02248875562219,55.072463768115945,55.1224387806097,55.172413793103445,55.2223888055972,55.27236381809095,55.322338830584705,55.37231384307846,55.42228885557221,55.472263868065966,55.52223888055972,55.57221389305347,55.622188905547226,55.67216391804098,55.72213893053473,55.77211394302849,55.82208895552224,55.87206396801599,55.92203898050975,55.9720139930035,56.021989005497254,56.07196401799101,56.12193903048476,56.171914042978514,56.22188905547226,56.271864067966014,56.32183908045977,56.37181409295352,56.421789105447274,56.47176411794103,56.52173913043478,56.571714142928535,56.62168915542229,56.67166416791604,56.721639180409795,56.77161419290355,56.8215892053973,56.871564217891056,56.92153923038481,56.97151424287856,57.021489255372316,57.07146426786607,57.12143928035982,57.17141429285358,57.22138930534732,57.271364317841076,57.32133933033483,57.37131434282858,57.42128935532234,57.47126436781609,57.521239380309844,57.5712143928036,57.62118940529735,57.671164417791104,57.72113943028486,57.77111444277861,57.821089455272364,57.87106446776612,57.92103948025987,57.971014492753625,58.02098950524738,58.07096451774113,58.120939530234885,58.17091454272864,58.22088955522239,58.27086456771614,58.32083958020989,58.370814592703645,58.4207896051974,58.47076461769115,58.520739630184906,58.57071464267866,58.62068965517241,58.670664667666166,58.72063968015992,58.77061469265367,58.82058970514743,58.87056471764118,58.920539730134934,58.97051474262869,59.02048975512244,59.070464767616194,59.12043978010995,59.1704147926037,59.220389805097454,59.27036481759121,59.320339830084954,59.37031484257871,59.42028985507246,59.470264867566215,59.52023988005997,59.57021489255372,59.620189905047475,59.67016491754123,59.72013993003498,59.770114942528735,59.82008995502249,59.87006496751624,59.920039980009996,59.97001499250375,60.0199900049975,60.069965017491256,60.11994002998501,60.16991504247876,60.21989005497252,60.26986506746627,60.31984007996002,60.36981509245377,60.41979010494752,60.46976511744128,60.51974012993503,60.569715142428784,60.61969015492254,60.66966516741629,60.719640179910044,60.7696151924038,60.81959020489755,60.869565217391305,60.91954022988506,60.96951524237881,61.019490254872565,61.06946526736632,61.11944027986007,61.169415292353825,61.21939030484758,61.26936531734133,61.319340329835086,61.36931534232883,61.419290354822586,61.46926536731634,61.51924037981009,61.569215392303846,61.6191904047976,61.66916541729135,61.71914042978511,61.76911544227886,61.81909045477261,61.86906546726637,61.91904047976012,61.969015492253874,62.01899050474763,62.06896551724138,62.118940529735134,62.16891554222889,62.21889055472264,62.268865567216395,62.31884057971015,62.3688155922039,62.41879060469765,62.4687656171914,62.518740629685155,62.56871564217891,62.61869065467266,62.668665667166415,62.71864067966017,62.76861569215392,62.818590704647676,62.86856571714143,62.91854072963518,62.968515742128936,63.01849075462269,63.06846576711644,63.1184407796102,63.16841579210395,63.2183908045977,63.26836581709146,63.31834082958521,63.368315842078964,63.41829085457271,63.468265867066464,63.51824087956022,63.56821589205397,63.618190904547724,63.66816591704148,63.71814092953523,63.768115942028984,63.81809095452274,63.86806596701649,63.918040979510245,63.968015992004,64.01799100449774,64.0679660169915,64.11794102948525,64.16791604197901,64.21789105447276,64.26786606696652,64.31784107946027,64.36781609195403,64.41779110444777,64.46776611694153,64.51774112943528,64.56771614192904,64.61769115442279,64.66766616691655,64.7176411794103,64.76761619190405,64.8175912043978,64.86756621689156,64.91754122938531,64.96751624187905,65.01749125437281,65.06746626686656,65.11744127936032,65.16741629185407,65.21739130434783,65.26736631684157,65.31734132933533,65.36731634182908,65.41729135432284,65.46726636681659,65.51724137931035,65.5672163918041,65.61719140429786,65.6671664167916,65.71714142928536,65.76711644177911,65.81709145427287,65.86706646676662,65.91704147926038,65.96701649175412,66.01699150424787,66.06696651674163,66.11694152923538,66.16691654172914,66.21689155422288,66.26686656671664,66.31684157921039,66.36681659170415,66.4167916041979,66.46676661669166,66.5167416291854,66.56671664167916,66.61669165417291,66.66666666666667,66.71664167916042,66.76661669165418,66.81659170414792,66.86656671664169,66.91654172913543,66.96651674162919,67.01649175412294,67.06646676661668,67.11644177911045,67.16641679160419,67.21639180409795,67.2663668165917,67.31634182908546,67.3663168415792,67.41629185407297,67.46626686656671,67.51624187906047,67.56621689155422,67.61619190404798,67.66616691654173,67.71614192903549,67.76611694152923,67.816091954023,67.86606696651674,67.9160419790105,67.96601699150425,68.01599200399801,68.06596701649175,68.1159420289855,68.16591704147926,68.21589205397301,68.26586706646677,68.31584207896051,68.36581709145428,68.41579210394802,68.46576711644178,68.51574212893553,68.56571714142929,68.61569215392304,68.6656671664168,68.71564217891054,68.7656171914043,68.81559220389805,68.86556721639181,68.91554222888556,68.96551724137932,69.01549225387306,69.06546726636682,69.11544227886057,69.16541729135432,69.21539230384808,69.26536731634182,69.31534232883558,69.36531734132933,69.41529235382309,69.46526736631684,69.5152423788106,69.56521739130434,69.6151924037981,69.66516741629185,69.71514242878561,69.76511744127936,69.81509245377312,69.86506746626686,69.91504247876063,69.96501749125437,70.01499250374813,70.06496751624188,70.11494252873563,70.16491754122939,70.21489255372313,70.26486756621689,70.31484257871064,70.3648175912044,70.41479260369815,70.4647676161919,70.51474262868565,70.56471764117941,70.61469265367316,70.66466766616692,70.71464267866067,70.76461769115443,70.81459270364817,70.86456771614193,70.91454272863568,70.96451774112944,71.01449275362319,71.06446776611695,71.1144427786107,71.16441779110444,71.2143928035982,71.26436781609195,71.31434282858571,71.36431784107945,71.41429285357322,71.46426786606696,71.51424287856072,71.56421789105447,71.61419290354823,71.66416791604198,71.71414292853574,71.76411794102948,71.81409295352324,71.86406796601699,71.91404297851075,71.9640179910045,72.01399300349826,72.063968015992,72.11394302848576,72.16391804097951,72.21389305347326,72.26386806596702,72.31384307846076,72.36381809095452,72.41379310344827,72.46376811594203,72.51374312843578,72.56371814092954,72.61369315342328,72.66366816591704,72.71364317841079,72.76361819090455,72.8135932033983,72.86356821589206,72.9135432283858,72.96351824087957,73.01349325337331,73.06346826586707,73.11344327836082,73.16341829085458,73.21339330334833,73.26336831584207,73.31334332833583,73.36331834082958,73.41329335332334,73.46326836581709,73.51324337831085,73.5632183908046,73.61319340329835,73.6631684157921,73.71314342828586,73.7631184407796,73.81309345327337,73.86306846576711,73.91304347826087,73.96301849075462,74.01299350324838,74.06296851574213,74.11294352823589,74.16291854072963,74.2128935532234,74.26286856571714,74.31284357821089,74.36281859070465,74.4127936031984,74.46276861569216,74.5127436281859,74.56271864067966,74.61269365317341,74.66266866566717,74.71264367816092,74.76261869065468,74.81259370314842,74.86256871564218,74.91254372813593,74.96251874062969,75.01249375312344,75.0624687656172,75.11244377811094,75.1624187906047,75.21239380309845,75.2623688155922,75.31234382808596,75.3623188405797,75.41229385307346,75.46226886556721,75.51224387806097,75.56221889055472,75.61219390304848,75.66216891554222,75.71214392803599,75.76211894052973,75.81209395302349,75.86206896551724,75.912043978011,75.96201899050475,76.0119940029985,76.06196901549225,76.11194402798601,76.16191904047976,76.21189405297352,76.26186906546727,76.31184407796101,76.36181909045477,76.41179410294852,76.46176911544228,76.51174412793603,76.56171914042979,76.61169415292353,76.6616691654173,76.71164417791104,76.7616191904048,76.81159420289855,76.86156921539231,76.91154422788605,76.96151924037981,77.01149425287356,77.06146926536732,77.11144427786107,77.16141929035483,77.21139430284857,77.26136931534234,77.31134432783608,77.36131934032983,77.41129435282359,77.46126936531734,77.5112443778111,77.56121939030484,77.6111944027986,77.66116941529235,77.71114442778611,77.76111944027986,77.81109445277362,77.86106946526736,77.91104447776112,77.96101949025487,78.01099450274863,78.06096951524238,78.11094452773614,78.16091954022988,78.21089455272364,78.26086956521739,78.31084457771115,78.3608195902049,78.41079460269864,78.4607696151924,78.51074462768615,78.56071964017991,78.61069465267366,78.66066966516742,78.71064467766116,78.76061969015493,78.81059470264867,78.86056971514243,78.91054472763618,78.96051974012994,79.01049475262369,79.06046976511745,79.11044477761119,79.16041979010495,79.2103948025987,79.26036981509246,79.3103448275862,79.36031984007997,79.41029485257371,79.46026986506746,79.51024487756122,79.56021989005497,79.61019490254873,79.66016991504247,79.71014492753623,79.76011994002998,79.81009495252374,79.86006996501749,79.91004497751125,79.960019990005,80.00999500249875,80.0599700149925,80.10994502748626,80.15992003998001,80.20989505247377,80.25987006496752,80.30984507746128,80.35982008995502,80.40979510244878,80.45977011494253,80.50974512743628,80.55972013993004,80.60969515242378,80.65967016491754,80.70964517741129,80.75962018990505,80.8095952023988,80.85957021489256,80.9095452273863,80.95952023988006,81.00949525237381,81.05947026486757,81.10944527736132,81.15942028985508,81.20939530234882,81.25937031484258,81.30934532733633,81.35932033983009,81.40929535232384,81.45927036481758,81.50924537731134,81.55922038980509,81.60919540229885,81.6591704147926,81.70914542728636,81.7591204397801,81.80909545227387,81.85907046476761,81.90904547726137,81.95902048975512,82.00899550224888,82.05897051474263,82.10894552723639,82.15892053973013,82.2088955522239,82.25887056471764,82.3088455772114,82.35882058970515,82.40879560219891,82.45877061469265,82.5087456271864,82.55872063968016,82.6086956521739,82.65867066466767,82.70864567716141,82.75862068965517,82.80859570214892,82.85857071464268,82.90854572713643,82.95852073963019,83.00849575212393,83.0584707646177,83.10844577711144,83.1584207896052,83.20839580209895,83.25837081459271,83.30834582708646,83.35832083958022,83.40829585207396,83.45827086456772,83.50824587706147,83.55822088955522,83.60819590204898,83.65817091454272,83.70814592703648,83.75812093953023,83.80809595202399,83.85807096451774,83.9080459770115,83.95802098950524,84.007996001999,84.05797101449275,84.10794602698651,84.15792103948026,84.20789605197402,84.25787106446776,84.30784607696152,84.35782108945527,84.40779610194903,84.45777111444278,84.50774612693654,84.55772113943029,84.60769615192403,84.65767116441779,84.70764617691154,84.7576211894053,84.80759620189905,84.8575712143928,84.90754622688655,84.95752123938031,85.00749625187406,85.05747126436782,85.10744627686157,85.15742128935533,85.20739630184907,85.25737131434283,85.30734632683658,85.35732133933034,85.40729635182409,85.45727136431785,85.5072463768116,85.55722138930535,85.6071964017991,85.65717141429285,85.70714642678661,85.75712143928035,85.80709645177411,85.85707146426786,85.90704647676162,85.95702148925537,86.00699650174913,86.05697151424287,86.10694652673664,86.15692153923038,86.20689655172414,86.25687156421789,86.30684657671165,86.3568215892054,86.40679660169916,86.4567716141929,86.50674662668666,86.55672163918041,86.60669665167416,86.65667166416792,86.70664667666166,86.75662168915542,86.80659670164917,86.85657171414293,86.90654672663668,86.95652173913044,87.00649675162418,87.05647176411794,87.10644677661169,87.15642178910545,87.2063968015992,87.25637181409296,87.3063468265867,87.35632183908046,87.40629685157421,87.45627186406797,87.50624687656172,87.55622188905548,87.60619690154923,87.65617191404297,87.70614692653673,87.75612193903048,87.80609695152424,87.85607196401799,87.90604697651175,87.95602198900549,88.00599700149925,88.055972013993,88.10594702648676,88.1559220389805,88.20589705147427,88.25587206396801,88.30584707646177,88.35582208895552,88.40579710144928,88.45577211394303,88.50574712643679,88.55572213893053,88.6056971514243,88.65567216391804,88.70564717641179,88.75562218890555,88.8055972013993,88.85557221389305,88.9055472263868,88.95552223888056,89.00549725137431,89.05547226386807,89.10544727636182,89.15542228885558,89.20539730134932,89.25537231384308,89.30534732633683,89.35532233883059,89.40529735132434,89.4552723638181,89.50524737631184,89.5552223888056,89.60519740129935,89.65517241379311,89.70514742628686,89.7551224387806,89.80509745127436,89.85507246376811,89.90504747626187,89.95502248875562,90.00499750124938,90.05497251374312,90.10494752623688,90.15492253873063,90.20489755122439,90.25487256371814,90.3048475762119,90.35482258870564,90.4047976011994,90.45477261369315,90.50474762618691,90.55472263868066,90.60469765117442,90.65467266366817,90.70464767616193,90.75462268865567,90.80459770114942,90.85457271364318,90.90454772613693,90.95452273863069,91.00449775112443,91.0544727636182,91.10444777611194,91.1544227886057,91.20439780109945,91.2543728135932,91.30434782608695,91.35432283858071,91.40429785107446,91.45427286356822,91.50424787606197,91.55422288855573,91.60419790104947,91.65417291354323,91.70414792603698,91.75412293853073,91.80409795102449,91.85407296351823,91.904047976012,91.95402298850574,92.0039980009995,92.05397301349325,92.10394802598701,92.15392303848076,92.20389805097452,92.25387306346826,92.30384807596202,92.35382308845577,92.40379810094953,92.45377311344328,92.50374812593704,92.55372313843078,92.60369815092454,92.65367316341829,92.70364817591205,92.7536231884058,92.80359820089954,92.8535732133933,92.90354822588705,92.95352323838081,93.00349825087456,93.05347326336832,93.10344827586206,93.15342328835582,93.20339830084957,93.25337331334333,93.30334832583708,93.35332333833084,93.40329835082458,93.45327336331835,93.50324837581209,93.55322338830585,93.6031984007996,93.65317341329336,93.7031484257871,93.75312343828087,93.80309845077461,93.85307346326836,93.90304847576212,93.95302348825587,94.00299850074963,94.05297351324337,94.10294852573713,94.15292353823088,94.20289855072464,94.25287356321839,94.30284857571215,94.3528235882059,94.40279860069965,94.4527736131934,94.50274862568716,94.55272363818091,94.60269865067467,94.65267366316841,94.70264867566218,94.75262368815592,94.80259870064968,94.85257371314343,94.90254872563717,94.95252373813094,95.00249875062468,95.05247376311844,95.10244877561219,95.15242378810595,95.2023988005997,95.25237381309346,95.3023488255872,95.35232383808096,95.40229885057471,95.45227386306847,95.50224887556222,95.55222388805598,95.60219890054972,95.65217391304348,95.70214892553723,95.75212393803099,95.80209895052474,95.8520739630185,95.90204897551224,95.95202398800599,96.00199900049975,96.0519740129935,96.10194902548726,96.151924037981,96.20189905047476,96.25187406296851,96.30184907546227,96.35182408795602,96.40179910044978,96.45177411294353,96.50174912543729,96.55172413793103,96.60169915042479,96.65167416291854,96.7016491754123,96.75162418790605,96.8015992003998,96.85157421289355,96.90154922538731,96.95152423788106,97.0014992503748,97.05147426286857,97.10144927536231,97.15142428785607,97.20139930034982,97.25137431284358,97.30134932533733,97.35132433783109,97.40129935032483,97.4512743628186,97.50124937531234,97.5512243878061,97.60119940029985,97.65117441279361,97.70114942528735,97.75112443778112,97.80109945027486,97.85107446276862,97.90104947526237,97.95102448775611,98.00099950024988,98.05097451274362,98.10094952523738,98.15092453773113,98.20089955022489,98.25087456271864,98.3008495752124,98.35082458770614,98.4007996001999,98.45077461269365,98.50074962518741,98.55072463768116,98.60069965017492,98.65067466266866,98.70064967516242,98.75062468765617,98.80059970014993,98.85057471264368,98.90054972513744,98.95052473763118,99.00049975012493,99.05047476261869,99.10044977511244,99.1504247876062,99.20039980009994,99.2503748125937,99.30034982508745,99.35032483758121,99.40029985007496,99.45027486256872,99.50024987506247,99.55022488755623,99.60019990004997,99.65017491254373,99.70014992503748,99.75012493753124,99.80009995002499,99.85007496251875,99.9000499750125,99.95002498750625,100.0]} From ea93a5438d8d387a620fdb5ebfe4e60c60b31b5c Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Sat, 30 Nov 2024 11:59:59 +0600 Subject: [PATCH 53/63] "updated large positive" --- .../base/special/cosc/test/fixtures/julia/large_positive.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json index a54c1d0a615b..c1ad2c9c975c 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json @@ -1 +1 @@ -{"expected":[0.01, -0.0033746253790545872, -0.007622018879319296, 0.008433494207046862, 0.0018890045595747725, -0.009597632871248577, 0.004554864091885448, 0.006437753655264784, -0.008809666729723655, -0.0004683276213579123, 0.009021878600127195, -0.00557448904217524, -0.00518884543834458, 0.008984167322636271, -0.0008822361340232188, -0.008293387424072674, 0.006423300008544471, 0.003902491497243474, -0.008964910481678587, 0.0021410030233847094, 0.007434361161677075, -0.007094539111590677, -0.0026051537867033763, 0.008762744509127599, -0.0032889612155749927, -0.00646814817358103, 0.007584861802057714, 0.001322173628642257, -0.008391166572328706, 0.004309966210916381, 0.00541882902418654, -0.00789425676051515, -0.00007741137080109322, 0.007866003397990814, -0.005190888286691331, -0.0043107999644707035, 0.008025916288409492, -0.0011070829665526638, -0.007205063206941742, 0.005921709698531918, 0.0031683612909959046, -0.007986059728650291, 0.002211362742764537, 0.006427764980119304, -0.0064955704383950754, -0.00201531744755601, 0.007783713328832355, -0.0032178369012603064, -0.005554751504162567, 0.006908762346137134, 0.0008745954285802021, -0.007430450743094724, 0.004111477604627688, 0.004607492872683794, -0.00716067234087304, 0.00023211237554251007, 0.006940099051174465, -0.004879980448715399, -0.003607887217193767, 0.007253676467270761, -0.001284675272914252, -0.006328415747875791, 0.005513875305598938, 0.0025778654114076275, -0.00719298732741023, 0.002264816300126738, 0.005612742616618365, -0.006006586763020668, -0.0015390063379122755, 0.006986458278165587, -0.0031563648778602424, -0.004811642742160327, 0.006354444046560014, 0.0005121690322929521, -0.00664434850523758, 0.003945466543090085, 0.003944527136917552, -0.006556641214801879, 0.0004828523658512593, 0.0061790537272408035, -0.004620747022140432, -0.0030312775513808626, 0.00661514929179429, -0.0014276454140794692, -0.005604807827258207, 0.005173428759011105, 0.002091872012714336, -0.006534582830377918, 0.002305463060213304, 0.004937361147319606, -0.005597398884782052, -0.001146019489560176, 0.006322024170613091, -0.0031014700278773934, -0.004193641507483194, 0.005889228490529989, 0.00021280982010617213, -0.005986809356747146, 0.003802948422578493, 0.0033914042216773763, -0.006048143932118025, 0.0006896153286841715, 0.005540280292535749, -0.004399459866490822, -0.002548877475335864, 0.006075951734989352, -0.0015443651716267207, -0.004995508238427047, 0.0048829622877019935, 0.0016844094053580388, -0.005976919465789317, 0.0023360714450601457, 0.0043669941770715145, -0.005247880329196231, -0.0008161230833135265, 0.005757615681360113, -0.003051124871582856, -0.0036703518896389247, 0.005491129188701914, -0.000038414647596055254, -0.005426712741594861, 0.0036778730471760676, 0.0029219797903569673, -0.0056120925370495975, 0.0008625048862247898, 0.004994756869438563, -0.004206777101008671, -0.0021387276583955638, 0.005612555974717903, -0.0016406037936791738, -0.004473910349181384, 0.004630525267843857, 0.0013375643846815384, -0.005496598259191444, 0.0023585805140842386, 0.003877671165064434, -0.004944102324323419, -0.0005352527185072771, 0.005270443255972953, -0.0030039419038478056, -0.0032205756899401296, 0.005144814658170963, -0.00025196324112347087, -0.004942276221088629, 0.00356602075441791, 0.0025178902341250436, -0.005232271548429043, 0.0010086524055568124, 0.00452202860154504, -0.0040361249204851814, -0.0017852973554890403, 0.005208324020380944, -0.0017204679386761408, -0.004021136032863078, 0.004407645528211683, 0.0010385828131244162, -0.005076963386680239, 0.002374390930557228, 0.003452274611672772, -0.004676123221830684, -0.00029332892058369405, 0.0048441822830965625, -0.002958942643882389, -0.002829080820353524, 0.004839272196996251, -0.00043538017548528025, -0.004517801641045605, 0.003464362127581354, 0.0021658606757821424, -0.004896962550898854, 0.0011332360936156254, 0.004107267598867513, -0.003882746693639393, -0.0014772937632672048, 0.004851162237974013, -0.001786961913692779, -0.0036234228303367606, 0.004208153488994836, 0.0007781377996420093, -0.004705840642293706, 0.0023845416920389062, 0.0030782571544993994, -0.004436661150818188, -0.00008293924808164708, 0.004466836450525126, -0.002915420087388352, -0.002484642579787326, 0.004566391295779176, -0.0005942447146624588, -0.00414169312088289, 0.0033706690198682136, 0.0018560581235306836, -0.004597490347915275, 0.001240107894615691, 0.0037394657832780292, -0.0037431189618442945, -0.0012063098334201834, 0.00453207294142494, -0.0018423358607940717, -0.0032705038648666554, 0.004027453169436664, 0.0005492514201438239, -0.004374128830803109, 0.002389821712409658, 0.0027462141060573594, -0.004220263892919862, 0.00010148920784173231, 0.0041293958886838384, -0.0028728532875290577, -0.0021788089090984866, 0.00432007033908651, -0.0007327724318552235, -0.003805202360141518, 0.003283268875981887, 0.0015810451408781285, -0.004327298885133181, 0.0013321936644060204, 0.003410282060871457, -0.003614579152420867, -0.0009659585916020767, 0.004244226748143887, -0.0018883099676065668, -0.0029545666469108054, 0.003862053730280263, 0.0003465992716148046, -0.004074890983889297, 0.0023908426391149066, 0.0024489594382746684, -0.004022771440620533, 0.0002642273883766639, 0.003824965311307977, -0.0028308523893976574, -0.001905095542675053, 0.004095634147866093, -0.0008542085792722319, -0.0035016078236468433, 0.0032008843221027925, 0.001335093194751844, -0.004081344613809633, 0.00141175684264662, 0.003113283144002896, -0.003495080560117934, -0.000751301299248373, 0.003982349598820131, -0.0019262233125528676, -0.0026695630035546754, 0.0037092590208348476, 0.00016604814335499966, -0.0038027500324486303, 0.002388087749337923, 0.0021809095582690165, -0.0038409575222055573, 0.0004086038740076215, 0.003548180682849908, -0.0027891221616014633, -0.001658446009196361, 0.003889443083215841, -0.0009610928562485307, -0.003225662294979407, 0.0031225253816182953, 0.0011137192491963157, -0.003855686955326961, 0.0014805770200372911, 0.002843429641931008, -0.00338302656944939, -0.0005584593235005583, 0.003742306572565528, -0.0019571353282154024, -0.002410739334022422, 0.0035669562592685303, 0.000004340463089301234, -0.0035534762251311137, 0.0023819456113429423, 0.0019376615497718212, -0.0036722842154975417, 0.0005372516695654661, 0.003294808833359378, -0.0027474371465571407, -0.0014348600868824407, 0.0036986240233832963, -0.0010554420895802787, -0.002973211715339934, 0.0030474152143070725, 0.0009133652765597292, -0.0036472049859944036, 0.0015400738095075481, 0.0025967196933769114, -0.0032771557439613256, -0.00038434435953480726, 0.0035208125249782344, -0.001981896589820325, -0.0021743092640834714, 0.0034334687762567076, -0.00014112611266400951, -0.0033236988740818424, 0.0023727337708764847, 0.0017156978580314232, -0.0035147301018061895, 0.0006522814102674643, 0.003061466401516419, -0.002705624325836382, -0.001231132432894567, 0.003520881067978815, -0.0011388790574617992, -0.0027409263898434833, 0.002974937810031106, 0.0007311717760163641, -0.0034533971691657664, 0.0015913946155656773, 0.002369936531483836, -0.003176460454548193, -0.00022646693702478937, 0.0033152266358331124, -0.002001199226172913, -0.0019572207568547433, 0.003307451248720085, -0.00027245583099041337, -0.003110700804550485, 0.0023607157449237323, 0.0015121752946147585, -0.0033666674657802467, 0.000755405370044387, 0.0028454185738789107, -0.0026635507731651064, -0.0010446650652357428, 0.003354359696191874, -0.0012127251116140823, -0.0025261077201062477, 0.0029046004161409986, 0.0005648146273985152, -0.0032722370521446062, 0.0016354780062710047, 0.0021604662540187255, -0.0030801281517371677, -0.00008279793051049029, 0.0031234037829791423, -0.0020156134805083587, -0.0017569873381783653, 0.003187813771812731, -0.0003913689234630295, -0.0029122690839322894, 0.002346113426249626, 0.0013247715479917737, -0.003226772947196654, 0.0008480278373981774, 0.0026444323795080686, -0.002621114694188039, -0.0008733304451363203, 0.0031975475558126175, -0.0012780679337995489, -0.0023265468088723338, 0.0028360060700229903, 0.00041238553623237315, -0.003102067489642714, 0.0016731002473193248, 0.0019661640259883845, -0.0029874982522202697, 0.00004833328785660869, 0.002943585209223268, -0.0020256146635604984, -0.0015715637451247178, 0.003073665910135255, -0.0004992857952447636, -0.0027265848335975653, 0.002329116279090769, 0.0011515717076078743, -0.003093961470840194, 0.00093131203917023, 0.0024566680294340064, -0.002578238813341446, -0.0007153699145419374, 0.0030492008505353606, -0.001335811879558724, -0.0021404193866365207, 0.002768833198468015, 0.00027230306044438024, -0.0029415219008098108, 0.0017049099941754847, 0.0017852543316613826, -0.00289802999801833, 0.00016831488624022566, 0.002774316870565144, -0.0020316033182353976, -0.0013992529276133044, 0.0029642748485892386, -0.0005973900770954023, -0.0025521406810005034, 0.002309888251361359, 0.0009909831370977838, -0.002967336669599498, 0.0010062304166468562, 0.0022805972643780313, -0.0025348654174176264, -0.0005693172763381678, 0.002908288933859511, -0.0013867159137670503, -0.0019662066190265196, 0.0027028202465120086, 0.00014324546521533323, -0.0027894648250311425, 0.001731454512834758, 0.0016162555759664592, -0.0028112781592852386, 0.000278310122676634, 0.0026143876169687458, -0.0020339205076902443, -0.0012386355507635913, 0.0028590336609351247, -0.0006866764820939459, -0.002387678084621011, 0.002288573035768683, 0.0008416707630738467, -0.0028461531856580325, 0.0010736028917750354, 0.0021149411877005027, -0.002490952588010985, -0.000433940542749546, 0.0027739520605998278, -0.0014314225634394367, -0.0018026346487828046, 0.002637753943018045, 0.000024099403605048543, -0.002644946471631283, 0.001753199746087596, 0.0014579223699992773, -0.0027268744315341715, 0.00037930144622226245, 0.002462781801289258, -0.002032859546960957, -0.0010885158914871712, 0.0027574369494554993, -0.0007679875735692304, -0.002232139162713656, 0.002265298119618854, 0.0007025072859678762, -0.0027297876538164498, 0.0011341263410873776, 0.0019586223638293635, -0.0024464713000405917, -0.0003081970043563097, 0.002645468786255744, -0.0014704802733877956, -0.001648627895767305, 0.002573460234210936, -0.00008607976421486133, -0.002507167562224304, 0.0017705458451202694, 0.0013092008421668009, -0.0026445130257128227, 0.0004721246781592847, 0.002318642532067129, -0.002028675104990687, -0.0009478798462331231, 0.0026590619294246266, -0.0008420423294055896, -0.002084629253092028, 0.0022401779340787396, 0.0005725344463660254, -0.002617716117379471, 0.0011883975459047913, 0.0018107275016757446, -0.002401403159898543, -0.00019119819619499605, 0.0025222305352050377, -0.0015043608526030085, -0.001503272594117522, 0.002509797200457936, -0.00018809898018477898, -0.0023754518425589993, 0.0017838393165830965, 0.0011691936682461641, -0.0025639393856203593, 0.0005574957818357105, 0.0021812428793483427, -0.0020215903376617802, -0.0008158619997898135, 0.0025635535866886253, -0.0009094585606010234, -0.0019443875126434842, 0.002213316325692624, 0.0004509325845759951, -0.0025094962694149135, 0.001236931242134545, 0.0016704780892682729, -0.002355738621928288, -0.00008218230752608211, 0.002403721560931839, -0.0015334732230124547, -0.0013657880392168474, 0.0024466494652646614, -0.0002826519588728931, -0.0022492243779545394, 0.0017933826134724842, 0.0010371324395298924, -0.002484941265751526, 0.000636032029835347, 0.0020499630931019443, -0.0020118025292848243, -0.0006917195525119102, 0.002470612917878488, -0.0009707706722736507, -0.0018107636100688819, 0.0021848085120620762, 0.00033699649284658933, -0.0024047533553239863, 0.001280174447059521, 0.0015372070691709217, -0.002309475566762846, 0.000019507746753368365, 0.0022895030076198054, -0.0015581743520317866, -0.0012355037060266722, 0.002383923739636466, -0.0003703386728351112, -0.002127994258477324, 0.001799441774189064, 0.0009123556323573186, -0.002407341610307087, 0.0007082688896382703, 0.0019242724167239096, -0.0019994875920350324, -0.0005748114948746903, 0.002379987528811684, -0.0010264438571449155, -0.0016831990860112127, 0.002154742640797919, 0.00023011609295279633, -0.0023031688829250304, 0.001318517927860441, 0.0014103401515471177, -0.002262618156323367, 0.00011444190350744805, 0.002179200123873544, -0.0015787780180432872, -0.001111840884948932, 0.002321545239227766, -0.0004516809982525733, -0.002011340700783809, 0.0018022525561288475, 0.0007942908968152825, -0.0023309928205821387, 0.000774673604342363, 0.0018037144476631456, -0.0019848036822186855, -0.00046458183681948625, 0.0022914640549012593, -0.0010768855293035546, -0.001561212323786111, 0.002123201040392943, 0.00012976085036572695, -0.002204471506490346, 0.001352305454342585, 0.0012893807223032382, -0.0022151759024296317, 0.00020311715236108967, 0.0020724919224299992, -0.0015955618922983644, -0.000994297826858962, 0.0022594547788796332, -0.000527135374970463, -0.001898901791157277, 0.0018020253971051225, 0.0006824407072985244, -0.0022557721026356717, 0.0008356561984162165, 0.001687895261803982, -0.001967894127232368, -0.0003605459994683174, 0.002204862002351383, -0.0011224546034708483, -0.0014443863389043538, 0.00209026122968471, 0.000035467108323986504, -0.0021084296094975793, 0.0013818413183533556, 0.0011738975633772163, -0.0021671629018463296, 0.0002859690931724172, 0.0019691027549327885, -0.0016087733011967845, -0.0008824376383308963, 0.002197606397572873, -0.0005971031245058602, -0.0017903653004238598, 0.0017989494561159321, 0.000576370652776506, -0.0021815776628847376, 0.0008915784597267819, 0.0015764737099661413, -0.001948889809882967, -0.00026227969451235943, 0.0021200287068330716, -0.0011634690778394544, -0.0013323587880659134, 0.0020559967365549607, -0.00005317227695454427, -0.002014845226028176, 0.0014073964858682345, 0.0010635147912840793, -0.0021185972021166804, 0.0003633814063963649, 0.0018687953986439136, -0.001618633945617973, -0.0007758783501295937, 0.002135965402175972, -0.0006619389156958945, -0.001685461137567442, 0.0017931959250678865, 0.00047569981669818244, -0.0021083255746909683, 0.0009427613181345311, 0.0014691534354073223, -0.0019279111220849192, -0.00016940977630205815, 0.0020368351781634413, -0.0012002122704387478, -0.0012248137397222268, 0.00202047776470404, -0.00013651647314985772, -0.0019235490254383184, 0.0014292136619050008, 0.0009579035592636921, -0.0020695002709836727, 0.00043569366276653953, 0.001771365346154046, -0.0016253437895461563, -0.0006742847164406084, 0.0020745067444230426, -0.0007219577539746558, -0.0015839551094018415, 0.0017849207587636391, 0.00038009282377504964, -0.0020359471799921603, 0.0009894909439981242, 0.001365676265259199, -0.0019050695742461542, -0.00008160667009996195, 0.0019551726527607953, -0.0012329379787892906, -0.0011214748532389085, 0.001983771738528442, -0.00021488374589177447, -0.0018343961478593915, 0.001447511484658983, 0.0008567751719113479, -0.002019896548468802, 0.0005032078018530114, 0.0016766360593019807, -0.0016290842822226544, -0.0005773614024290145, 0.002013213664976714, -0.0007774407854153813, -0.0014856437287264876, 0.0017742669373665874, 0.00028925322595188, -0.0019643869206406894, 0.0010320238174184265, 0.0012658167066468891, -0.0018804691274103874, 0.0000014219314189597886, 0.0018749497155055867, -0.0012618747724835071, -0.0010220996923465805, 0.0019459437495293363, -0.0002885573539850367, -0.0017472627252815226, 0.0014624880173069901, 0.0007598753389370461, -0.001969813065372365, 0.000566193536335285, 0.0015844550012379583, -0.0016300210419184415, -0.00048484729311870027, 0.0019520765530275743, -0.0008286401427990837, -0.0013903498698964202, 0.0017613663505870517, 0.00020291797157738058, -0.0018936005171811504, 0.0010705909643593265, 0.0011693773369627295, -0.001854207300670664, 0.0000799363443662556, 0.0017960898827377916, -0.0012872295828972573, -0.0009264749580349473, 0.001907056922648827, -0.00035779048840501817, -0.0016620429587038317, 0.001474323669667654, 0.0006669793535897883, -0.001919279115500805, 0.0006248928836064243, 0.0014946903005405505, -0.001628306102008192, -0.00039651071375081077, 0.0018910919809583381, -0.0008757830124213647, -0.0012979191136917373, 0.0017463413738590693, 0.00012085275628637397, -0.0018235534303421774, 0.0011054015141280826, 0.0010761849224578208, -0.0018263760952866462, 0.00015416933249637715, 0.0017185295610631023, -0.0013091907195737172, -0.0008344124713795948, 0.0018671727171082043, -0.0004228104308262806, -0.0015786466491036107, 0.0014831836541462444, 0.00057788802630023, -0.0018683259716293739, 0.0006795239841808806, 0.0014072279318752825, -0.0016240797990219882, -0.00031214539556878595, 0.001830261882071285, -0.0009190750631916711, -0.0012082166562675442, 0.0017293061922153358, 0.00004284809591057311, -0.0017542195539626214, 0.0011366457007574793, 0.0009860871336274503, -0.0017970627684169814, 0.00022432985947925006, 0.001642216314245691, -0.001327930416199332, -0.0007457457716733346, 0.001826351173356027, -0.0004838220713928316, -0.00149699710094835, 0.0014892200590753445, 0.0004924242387303168, -0.0018169866372816886, 0.0007302843338157393, 0.0013219693212438892, -0.0016174723661781056, -0.00023156705474276513, 0.0017695928459085012, -0.0009587033508573448, -0.0011211246823504518, 0.0017103679163288886, -0.000031284005997526397, -0.00168558009845759, 0.0011644974061324543, 0.000898949752385777, -0.001766350482777444, 0.000290606275060634, 0.0015671073840997282, -0.0013436069884520951, -0.0006603272222016805, 0.0017846511154448737, -0.0005410108975244563, -0.0014170293332392257, 0.0014925736059850942, 0.0004104300103200481, -0.0017652956280132528, 0.0007773535310728057, 0.001238829302156012, -0.0016086052833111618, -0.00015461047837252308, 0.0017090955107657462, -0.0009948387879096252, -0.001036540122601312, 0.0016896275264316266, -0.00010171289829486418, -0.0016176226320130957, 0.001189116323452439, 0.0008146542866640646, -0.0017343188534058036, 0.0003531690319383286, 0.0014931684219100696, -0.0013563666699271013, -0.0005780255370834515, 0.0017421303163583644, -0.000594545543726887, -0.0013386885457666864, 0.0014933751444065882, 0.0003317639903807532, -0.0017132887771370154, 0.0008208956222785362, 0.001157734363363442, -0.001597592424277101, -0.00008112703202975649, 0.0016487840369649933, -0.0010276382522173776, -0.0009543727305233545, 0.0016671806729631896, -0.0001685917126397121, -0.0015503402530240424, 0.0012106498045692962, 0.0007330959242868982, -0.0017010444086675701, 0.0004121730116589131, 0.0014203723952454243, -0.001366345179697323, -0.0004987236591255297, 0.0016988456323976222, -0.0006445799752655688, -0.0012619287982245323, 0.0014917469276471036, 0.00025629930533829846, -0.0016610030618091631, 0.0008610611103392044, 0.0010786211400413965, -0.0015845410351622792, -0.000010982519468703383, 0.001588675647577039, -0.001057246393718299, -0.0008745434264682446, 0.0016431183573983909, -0.00023205945121234582, -0.0014837308722833128, 0.0012292344428092236, 0.0006541817707340684, -0.0016666009794537994, 0.00046775952319131085, 0.0013486986416117491, -0.0013736690651118201, -0.00042231693169360535, 0.0016548531116204936, -0.000691255364998626, -0.0011867118677229582, 0.0014878037049223893, 0.0001839217037579283, -0.0016084764461720682, 0.000897988681563519, 0.0010014351092190801, -0.0015695525704905121, 0.00005594466207544079, 0.0015287902257491075, -0.0010837971875465027, -0.0007969828659633899, 0.0016175275124054658, -0.0002922427865283852, -0.001417796587393186, 0.001244997433453236, 0.0005778293255747714, -0.0016310600279888451, 0.0005200580262194465, 0.0012781320456144757, -0.0013784568554703108, -0.0003487115180045412, 0.0016102080804333313, -0.0007347017119003167, -0.001113006256507401, 0.0014816536588215432, 0.00011452795221222425, -0.001555747738862027, 0.0009318066948680916, 0.0009261294573486156, -0.0015527234097218567, 0.00011976511736021355, 0.0014691499597705654, -0.0011074152733013508, -0.0007216301972788157, 0.0015904914970633628, -0.0003492576182696596, -0.0013525431350203542, 0.0012580577465150758, 0.0005039651604262515, -0.0015944909256388497, 0.0005691876218906949, 0.0012086623204786329, -0.001380820055893202, -0.00027782302954359274, 0.0015649652117235905, -0.000775039241175309, -0.0010407863267158342, 0.0014733992119670613, 0.00004802444335189228, -0.0015028564626857802, 0.0009626344698867381, 0.0008526640935942874, -0.0015341454724189666, 0.0001805798375757382, 0.0014097790285860056, -0.0011282171131551748, -0.0006484319793396262, 0.0015620905201192163, -0.0004032104241839831, -0.0012879794091583277, 0.001268527140379101, 0.0004325237678249563, -0.0015569611874856697, 0.0006152583463028454, 0.0011402833781384615, -0.0013808640055889756, -0.00020957533199385714, 0.001519178577345335, -0.0008123796189423304, -0.0009700315430348253, 0.001463137722585882, -0.000015674015745723846, -0.0014498427346619374, 0.0009905834041993463, 0.0007810047870023091, -0.0015139067472927804, 0.00023848140533291222, 0.001350703321729989, -0.0011463119959025183, -0.0005773412360601072, 0.0015324020020463702, -0.00045419943573494494, -0.001224117035602225, 0.0012765110399913947, 0.00036344655563953836, -0.0015185366701156613, 0.0006583722959734983, 0.0010729927747988065, -0.0013786886206155957, -0.00014389950244218737, 0.0014729016873055423, -0.0008468270088490601, -0.00090072580738592, 0.0014509620853844676, -0.00007664526144292227, -0.0013967471549454157, 0.0010157579447763196, 0.0007111224094083814, -0.001492091747783318, 0.0002935550464773155, 0.001291950188696543, -0.0011618029094673898, -0.0005083166272212089, 0.0015015008848669618, -0.0005023156640160473, -0.0011609699945039893, 0.001282109299309091, 0.0002966809659106588, -0.0014792817380055296, 0.0006986246096576512, 0.0010067912210918002, -0.0013743890378763932, -0.00008073291602989741, 0.001426187517618701, -0.0008784789934282518, -0.0008328568724239564, 0.0014369612513952473, -0.0001349606997416153, -0.0013436107034080743, 0.0010382564345876098, 0.0006429922689649841, -0.0014687819047443423, 0.0003458795506286303, 0.0012335482135822301, -0.0011747873006890043, -0.00044132171929965787, 0.0014694598972368612, -0.0005476437972705205, -0.001098554284211123, 0.0012854168645082165, 0.00023217970047969882, -0.0014392594030160695, 0.000736104326870615, 0.0009416821477331501, -0.0013680561743604808, -0.00002001844377625695, 0.0013790885284926653, -0.000907427379289603, -0.0007664158227914664, 0.001421220678255177, -0.00019068611930449765, -0.0012904746428636486, 0.0010581718519216787, 0.0005765935216224905, -0.0014440559051002572, 0.0003955280788081392, 0.0011755270115403737, -0.0011853577381612513, -0.000376324342336083, 0.0014363497810924086, -0.0005902629878831081, -0.0010368876207167402, 0.0012865243517791371, 0.00016990003861130614, -0.001398531440791299, 0.0007708951402235449, 0.0008776713190505759, -0.0013597772134087795, 0.00003829625376253735, 0.0013316566742453163, -0.000933758902188878, -0.0007013966148476297, 0.001403822720549702, -0.0002438824068504806, -0.0012373804280932184, 0.0010755924571678465, 0.0005119086499341723, -0.0014179899839424472, 0.0004425688736118345, 0.0011179170441277609, -0.0011936024914149174, -0.00031329602114958666, 0.0014022394851714028, -0.0006302475439148228, -0.000975989167937858, 0.0012855185513734875, 0.0001098032341567941],"x":[100.0,100.60925648702595,101.21851297405189,101.82776946107785,102.4370259481038,103.04628243512974,103.65553892215569,104.26479540918163,104.87405189620759,105.48330838323353,106.09256487025948,106.70182135728543,107.31107784431137,107.92033433133733,108.52959081836327,109.13884730538922,109.74810379241517,110.35736027944112,110.96661676646707,111.57587325349301,112.18512974051896,112.7943862275449,113.40364271457086,114.01289920159681,114.62215568862275,115.2314121756487,115.84066866267464,116.4499251497006,117.05918163672655,117.6684381237525,118.27769461077844,118.88695109780438,119.49620758483034,120.10546407185629,120.71472055888223,121.32397704590818,121.93323353293412,122.54249001996008,123.15174650698603,123.76100299401197,124.37025948103792,124.97951596806388,125.58877245508982,126.19802894211577,126.80728542914171,127.41654191616766,128.02579840319362,128.63505489021955,129.2443113772455,129.85356786427147,130.4628243512974,131.07208083832336,131.6813373253493,132.29059381237525,132.8998502994012,133.50910678642714,134.1183632734531,134.72761976047903,135.336876247505,135.94613273453095,136.55538922155688,137.16464570858284,137.77390219560877,138.38315868263473,138.9924151696607,139.60167165668662,140.21092814371258,140.8201846307385,141.42944111776447,142.03869760479043,142.64795409181636,143.25721057884232,143.86646706586825,144.4757235528942,145.08498003992017,145.6942365269461,146.30349301397206,146.91274950099802,147.52200598802395,148.1312624750499,148.74051896207584,149.3497754491018,149.95903193612776,150.5682884231537,151.17754491017965,151.78680139720558,152.39605788423154,153.0053143712575,153.61457085828343,154.2238273453094,154.83308383233532,155.44234031936128,156.05159680638724,156.66085329341317,157.27010978043913,157.87936626746506,158.48862275449102,159.09787924151698,159.7071357285429,160.31639221556887,160.9256487025948,161.53490518962076,162.14416167664672,162.75341816367265,163.3626746506986,163.97193113772454,164.5811876247505,165.19044411177646,165.7997005988024,166.40895708582835,167.01821357285428,167.62747005988024,168.2367265469062,168.84598303393213,169.4552395209581,170.06449600798402,170.67375249500998,171.28300898203594,171.89226546906187,172.50152195608783,173.11077844311376,173.72003493013972,174.32929141716568,174.9385479041916,175.54780439121757,176.1570608782435,176.76631736526946,177.37557385229542,177.98483033932135,178.5940868263473,179.20334331337327,179.8125998003992,180.42185628742516,181.0311127744511,181.64036926147705,182.249625748503,182.85888223552894,183.4681387225549,184.07739520958083,184.6866516966068,185.29590818363275,185.90516467065868,186.51442115768464,187.12367764471057,187.73293413173653,188.3421906187625,188.95144710578842,189.56070359281438,190.1699600798403,190.77921656686627,191.38847305389223,191.99772954091816,192.60698602794412,193.21624251497005,193.825499001996,194.43475548902197,195.0440119760479,195.65326846307386,196.2625249500998,196.87178143712575,197.4810379241517,198.09029441117764,198.6995508982036,199.30880738522953,199.9180638722555,200.52732035928145,201.13657684630738,201.74583333333334,202.35508982035927,202.96434630738523,203.5736027944112,204.18285928143712,204.79211576846308,205.401372255489,206.01062874251497,206.61988522954093,207.22914171656686,207.83839820359282,208.44765469061878,209.0569111776447,209.66616766467067,210.2754241516966,210.88468063872256,211.49393712574852,212.10319361277445,212.7124500998004,213.32170658682634,213.9309630738523,214.54021956087826,215.1494760479042,215.75873253493015,216.36798902195608,216.97724550898204,217.586501996008,218.19575848303393,218.8050149700599,219.41427145708582,220.02352794411178,220.63278443113774,221.24204091816367,221.85129740518963,222.46055389221556,223.06981037924152,223.67906686626748,224.2883233532934,224.89757984031937,225.5068363273453,226.11609281437126,226.72534930139722,227.33460578842315,227.9438622754491,228.55311876247504,229.162375249501,229.77163173652696,230.3808882235529,230.99014471057885,231.59940119760478,232.20865768463074,232.8179141716567,233.42717065868263,234.0364271457086,234.64568363273452,235.25494011976048,235.86419660678644,236.47345309381237,237.08270958083833,237.69196606786429,238.30122255489022,238.91047904191618,239.5197355289421,240.12899201596807,240.73824850299403,241.34750499001996,241.95676147704592,242.56601796407185,243.1752744510978,243.78453093812377,244.3937874251497,245.00304391217566,245.6123003992016,246.22155688622755,246.8308133732535,247.44006986027944,248.0493263473054,248.65858283433133,249.2678393213573,249.87709580838325,250.48635229540918,251.09560878243514,251.70486526946107,252.31412175648703,252.92337824351299,253.53263473053892,254.14189121756488,254.7511477045908,255.36040419161677,255.96966067864273,256.57891716566866,257.1881736526946,257.7974301397206,258.40668662674653,259.01594311377244,259.6251996007984,260.23445608782436,260.8437125748503,261.4529690618763,262.0622255489022,262.67148203592814,263.2807385229541,263.88999500998005,264.499251497006,265.1085079840319,265.7177644710579,266.32702095808384,266.9362774451098,267.54553393213575,268.15479041916166,268.7640469061876,269.3733033932136,269.98255988023953,270.5918163672655,271.2010728542914,271.81032934131736,272.4195858283433,273.0288423153693,273.63809880239523,274.24735528942114,274.8566117764471,275.46586826347306,276.075124750499,276.684381237525,277.2936377245509,277.90289421157684,278.5121506986028,279.12140718562875,279.7306636726547,280.3399201596806,280.9491766467066,281.55843313373254,282.1676896207585,282.77694610778445,283.38620259481036,283.9954590818363,284.6047155688623,285.21397205588823,285.8232285429142,286.4324850299401,287.04174151696606,287.650998003992,288.260254491018,288.86951097804393,289.47876746506984,290.0880239520958,290.69728043912176,291.3065369261477,291.9157934131737,292.5250499001996,293.13430638722554,293.7435628742515,294.35281936127745,294.9620758483034,295.5713323353293,296.1805888223553,296.78984530938123,297.3991017964072,298.00835828343315,298.61761477045906,299.226871257485,299.836127744511,300.44538423153693,301.0546407185629,301.6638972055888,302.27315369261476,302.8824101796407,303.4916666666667,304.10092315369263,304.71017964071854,305.3194361277445,305.92869261477045,306.5379491017964,307.1472055888224,307.7564620758483,308.36571856287424,308.9749750499002,309.58423153692615,310.1934880239521,310.802744510978,311.412000998004,312.02125748502993,312.6305139720559,313.23977045908185,313.8490269461078,314.4582834331337,315.0675399201597,315.67679640718563,316.2860528942116,316.89530938123755,317.50456586826346,318.1138223552894,318.7230788423154,319.33233532934133,319.9415918163673,320.5508483033932,321.16010479041915,321.7693612774451,322.3786177644711,322.98787425149703,323.59713073852294,324.2063872255489,324.81564371257485,325.4249001996008,326.0341566866268,326.6434131736527,327.25266966067863,327.8619261477046,328.47118263473055,329.0804391217565,329.6896956087824,330.2989520958084,330.90820858283433,331.5174650698603,332.12672155688625,332.73597804391216,333.3452345309381,333.9544910179641,334.56374750499003,335.173003992016,335.7822604790419,336.39151696606785,337.0007734530938,337.6100299401198,338.21928642714573,338.82854291417163,339.4377994011976,340.04705588822355,340.6563123752495,341.2655688622755,341.8748253493014,342.48408183632733,343.0933383233533,343.70259481037925,344.3118512974052,344.9211077844311,345.5303642714571,346.13962075848303,346.748877245509,347.35813373253495,347.96739021956085,348.5766467065868,349.1859031936128,349.79515968063873,350.4044161676647,351.0136726546906,351.62292914171655,352.2321856287425,352.8414421157685,353.45069860279443,354.05995508982033,354.6692115768463,355.27846806387225,355.8877245508982,356.4969810379242,357.1062375249501,357.71549401197603,358.324750499002,358.93400698602795,359.5432634730539,360.1525199600798,360.7617764471058,361.37103293413173,361.9802894211577,362.58954590818365,363.19880239520955,363.8080588822355,364.4173153692615,365.02657185628743,365.6358283433134,366.2450848303393,366.85434131736525,367.4635978043912,368.0728542914172,368.68211077844313,369.29136726546903,369.900623752495,370.50988023952095,371.1191367265469,371.7283932135729,372.3376497005988,372.94690618762473,373.5561626746507,374.16541916167665,374.7746756487026,375.38393213572857,375.9931886227545,376.60244510978043,377.2117015968064,377.82095808383235,378.4302145708583,379.0394710578842,379.6487275449102,380.25798403193613,380.8672405189621,381.47649700598805,382.08575349301395,382.6950099800399,383.3042664670659,383.91352295409183,384.5227794411178,385.1320359281437,385.74129241516965,386.3505489021956,386.9598053892216,387.56906187624753,388.17831836327343,388.7875748502994,389.39683133732535,390.0060878243513,390.61534431137727,391.2246007984032,391.83385728542913,392.4431137724551,393.05237025948105,393.661626746507,394.2708832335329,394.8801397205589,395.48939620758483,396.0986526946108,396.70790918163675,397.31716566866265,397.9264221556886,398.5356786427146,399.14493512974053,399.7541916167665,400.3634481037924,400.97270459081835,401.5819610778443,402.19121756487027,402.80047405189623,403.40973053892213,404.0189870259481,404.62824351297405,405.2375,405.84675648702597,406.4560129740519,407.06526946107783,407.6745259481038,408.28378243512975,408.8930389221557,409.5022954091816,410.1115518962076,410.72080838323353,411.3300648702595,411.93932135728545,412.54857784431135,413.1578343313373,413.7670908183633,414.37634730538923,414.9856037924152,415.5948602794411,416.20411676646705,416.813373253493,417.42262974051897,418.03188622754493,418.64114271457083,419.2503992015968,419.85965568862275,420.4689121756487,421.07816866267467,421.6874251497006,422.29668163672653,422.9059381237525,423.51519461077845,424.1244510978044,424.7337075848303,425.3429640718563,425.95222055888223,426.5614770459082,427.17073353293415,427.77999001996005,428.389246506986,428.998502994012,429.60775948103793,430.2170159680639,430.8262724550898,431.43552894211575,432.0447854291417,432.65404191616767,433.26329840319363,433.87255489021953,434.4818113772455,435.09106786427145,435.7003243512974,436.30958083832337,436.91883732534933,437.52809381237523,438.1373502994012,438.74660678642715,439.3558632734531,439.96511976047907,440.574376247505,441.18363273453093,441.7928892215569,442.40214570858285,443.0114021956088,443.6206586826347,444.22991516966067,444.83917165668663,445.4484281437126,446.05768463073855,446.66694111776445,447.2761976047904,447.88545409181637,448.49471057884233,449.1039670658683,449.7132235528942,450.32248003992015,450.9317365269461,451.54099301397207,452.15024950099803,452.75950598802393,453.3687624750499,453.97801896207585,454.5872754491018,455.19653193612777,455.8057884231537,456.41504491017963,457.0243013972056,457.63355788423155,458.2428143712575,458.8520708582834,459.46132734530937,460.07058383233533,460.6798403193613,461.28909680638725,461.89835329341315,462.5076097804391,463.11686626746507,463.72612275449103,464.335379241517,464.9446357285429,465.55389221556885,466.1631487025948,466.77240518962077,467.38166167664673,467.99091816367263,468.6001746506986,469.20943113772455,469.8186876247505,470.42794411177647,471.0372005988024,471.64645708582833,472.2557135728543,472.86497005988025,473.4742265469062,474.0834830339321,474.69273952095807,475.30199600798403,475.91125249501,476.52050898203595,477.12976546906185,477.7390219560878,478.34827844311377,478.95753493013973,479.5667914171657,480.1760479041916,480.78530439121755,481.3945608782435,482.00381736526947,482.61307385229543,483.22233033932133,483.8315868263473,484.44084331337325,485.0500998003992,485.65935628742517,486.26861277445107,486.87786926147703,487.487125748503,488.09638223552895,488.7056387225549,489.3148952095808,489.92415169660677,490.53340818363273,491.1426646706587,491.75192115768465,492.36117764471055,492.9704341317365,493.57969061876247,494.18894710578843,494.7982035928144,495.4074600798403,496.01671656686625,496.6259730538922,497.23522954091817,497.84448602794413,498.4537425149701,499.062999001996,499.67225548902195,500.2815119760479,500.89076846307387,501.5000249500998,502.10928143712573,502.7185379241517,503.32779441117765,503.9370508982036,504.54630738522957,505.15556387225547,505.76482035928143,506.3740768463074,506.98333333333335,507.5925898203593,508.2018463073852,508.81110279441117,509.42035928143713,510.0296157684631,510.63887225548905,511.24812874251495,511.8573852295409,512.4666417165669,513.0758982035928,513.6851546906188,514.2944111776447,514.9036676646707,515.5129241516966,516.1221806387225,516.7314371257485,517.3406936127744,517.9499500998004,518.5592065868263,519.1684630738523,519.7777195608783,520.3869760479042,520.9962325349302,521.605489021956,522.214745508982,522.824001996008,523.4332584830339,524.0425149700599,524.6517714570858,525.2610279441118,525.8702844311377,526.4795409181637,527.0887974051897,527.6980538922156,528.3073103792415,528.9165668662674,529.5258233532934,530.1350798403193,530.7443363273453,531.3535928143713,531.9628493013972,532.5721057884232,533.1813622754491,533.7906187624751,534.399875249501,535.0091317365269,535.6183882235529,536.2276447105788,536.8369011976048,537.4461576846307,538.0554141716567,538.6646706586827,539.2739271457086,539.8831836327346,540.4924401197604,541.1016966067864,541.7109530938123,542.3202095808383,542.9294660678643,543.5387225548902,544.1479790419162,544.7572355289421,545.3664920159681,545.9757485029941,546.5850049900199,547.1942614770459,547.8035179640718,548.4127744510978,549.0220309381237,549.6312874251497,550.2405439121757,550.8498003992016,551.4590568862276,552.0683133732535,552.6775698602794,553.2868263473054,553.8960828343313,554.5053393213573,555.1145958083832,555.7238522954092,556.3331087824351,556.9423652694611,557.5516217564871,558.160878243513,558.7701347305389,559.3793912175648,559.9886477045908,560.5979041916167,561.2071606786427,561.8164171656687,562.4256736526946,563.0349301397206,563.6441866267465,564.2534431137725,564.8626996007984,565.4719560878243,566.0812125748503,566.6904690618762,567.2997255489022,567.9089820359281,568.5182385229541,569.1274950099801,569.736751497006,570.346007984032,570.9552644710578,571.5645209580838,572.1737774451097,572.7830339321357,573.3922904191617,574.0015469061876,574.6108033932136,575.2200598802395,575.8293163672655,576.4385728542915,577.0478293413173,577.6570858283433,578.2663423153692,578.8755988023952,579.4848552894211,580.0941117764471,580.7033682634731,581.312624750499,581.921881237525,582.531137724551,583.1403942115768,583.7496506986027,584.3589071856287,584.9681636726547,585.5774201596806,586.1866766467066,586.7959331337325,587.4051896207585,588.0144461077845,588.6237025948104,589.2329590818364,589.8422155688622,590.4514720558882,591.0607285429141,591.6699850299401,592.2792415169661,592.888498003992,593.497754491018,594.107010978044,594.7162674650699,595.3255239520959,595.9347804391217,596.5440369261477,597.1532934131736,597.7625499001996,598.3718063872255,598.9810628742515,599.5903193612775,600.1995758483034,600.8088323353294,601.4180888223553,602.0273453093812,602.6366017964071,603.2458582834331,603.8551147704591,604.464371257485,605.073627744511,605.682884231537,606.2921407185629,606.9013972055889,607.5106536926148,608.1199101796407,608.7291666666666,609.3384231536926,609.9476796407185,610.5569361277445,611.1661926147705,611.7754491017964,612.3847055888224,612.9939620758483,613.6032185628743,614.2124750499001,614.8217315369261,615.4309880239521,616.040244510978,616.649500998004,617.25875748503,617.8680139720559,618.4772704590819,619.0865269461078,619.6957834331338,620.3050399201596,620.9142964071856,621.5235528942115,622.1328093812375,622.7420658682635,623.3513223552894,623.9605788423154,624.5698353293413,625.1790918163673,625.7883483033933,626.3976047904191,627.0068612774451,627.616117764471,628.225374251497,628.834630738523,629.4438872255489,630.0531437125749,630.6624001996008,631.2716566866268,631.8809131736527,632.4901696606786,633.0994261477045,633.7086826347305,634.3179391217565,634.9271956087824,635.5364520958084,636.1457085828343,636.7549650698603,637.3642215568863,637.9734780439122,638.5827345309381,639.191991017964,639.80124750499,640.410503992016,641.0197604790419,641.6290169660679,642.2382734530938,642.8475299401198,643.4567864271457,644.0660429141717,644.6752994011975,645.2845558882235,645.8938123752495,646.5030688622754,647.1123253493014,647.7215818363273,648.3308383233533,648.9400948103793,649.5493512974052,650.1586077844312,650.7678642714571,651.377120758483,651.986377245509,652.5956337325349,653.2048902195609,653.8141467065868,654.4234031936128,655.0326596806387,655.6419161676647,656.2511726546907,656.8604291417166,657.4696856287425,658.0789421157684,658.6881986027944,659.2974550898203,659.9067115768463,660.5159680638723,661.1252245508982,661.7344810379242,662.3437375249501,662.9529940119761,663.562250499002,664.1715069860279,664.7807634730539,665.3900199600798,665.9992764471058,666.6085329341317,667.2177894211577,667.8270459081837,668.4363023952096,669.0455588822356,669.6548153692614,670.2640718562874,670.8733283433133,671.4825848303393,672.0918413173653,672.7010978043912,673.3103542914172,673.9196107784431,674.5288672654691,675.1381237524951,675.7473802395209,676.3566367265469,676.9658932135728,677.5751497005988,678.1844061876247,678.7936626746507,679.4029191616767,680.0121756487026,680.6214321357286,681.2306886227545,681.8399451097804,682.4492015968063,683.0584580838323,683.6677145708583,684.2769710578842,684.8862275449102,685.4954840319361,686.1047405189621,686.7139970059881,687.323253493014,687.9325099800399,688.5417664670658,689.1510229540918,689.7602794411177,690.3695359281437,690.9787924151697,691.5880489021956,692.1973053892216,692.8065618762475,693.4158183632735,694.0250748502993,694.6343313373253,695.2435878243513,695.8528443113772,696.4621007984032,697.0713572854291,697.6806137724551,698.2898702594811,698.899126746507,699.508383233533,700.1176397205588,700.7268962075848,701.3361526946107,701.9454091816367,702.5546656686627,703.1639221556886,703.7731786427146,704.3824351297405,704.9916916167665,705.6009481037925,706.2102045908183,706.8194610778443,707.4287175648702,708.0379740518962,708.6472305389221,709.2564870259481,709.8657435129741,710.475]} +{"expected":[0.01,-0.0033746253790549624,-0.007622018879319136,0.008433494207046853,0.001889004559574384,-0.00959763287124854,0.0045548640918855405,0.00643775365526481,-0.008809666729723751,-0.000468327621357804,0.009021878600127204,-0.005574489042175532,-0.005188845438344393,0.008984167322636266,-0.0008822361340235784,-0.008293387424072578,0.006423300008544533,0.00390249149724315,-0.00896491048167861,0.0021410030233847974,0.007434361161677098,-0.0070945391115908776,-0.002605153786703288,0.0087627445091276,0.006468148173580897,0.007584861802057748,0.001322173628641932,-0.008391166572328667,0.004309966210916445,0.005418829024186577,-0.007894256760515254,-0.00007741137080101638,0.00786600339799083,-0.005190888286691567,-0.004310799964470551,0.008025916288409504,-0.0011070829665529621,-0.00720506320694166,0.0059217096985319595,0.0031683612909959584,-0.007986059728650302,0.002211362742764597,0.006427764980119337,-0.006495570438395232,-0.002015317447555855,0.007783713328832359,-0.003217836901260242,0.005554751504162455,0.0069087623461371135,0.0008745954285802678,-0.007430450743094688,0.004111477604627807,0.004607492872683843,-0.007160672340873091,0.00023211237554265316,0.006940099051174486,-0.004879980448715341,-0.0036078872171936413,0.007253676467270752,-0.0012846752729141803,-0.006328415747875719,0.005513875305599021,0.002577865411407692,0.007192987327410233,0.002264816300126859,0.005612742616618405,-0.00600658676302084,-0.00153900633791215,0.006986458278165595,-0.0031563648778605274,-0.004811642742160233,0.006354444046560059,0.0005121690322926351,-0.006644348505237545,0.003945466543090176,0.003944527136917611,-0.006556641214801915,0.00048285236585137326,0.00617905372724083,-0.0046207470221406475,0.0030312775513807594,0.006615149291794282,-0.0014276454140797585,-0.0056048078272581455,0.005173428759011166,0.002091872012714056,-0.006534582830377916,0.004937361147319414,-0.005597398884782191,-0.0011460194895600748,0.006322024170613043,-0.003101470027877635,-0.004193641507483116,0.005889228490530021,0.00021280982010589674,-0.005986809356747114,0.003802948422578564,0.0033914042216771465,-0.006048143932118084,0.0006896153286842611,0.005540280292535628,-0.004399459866491001,-0.0025488774753354643,0.006075951734989388,-0.0015443651716269698,-0.004995508238426995,0.0048829622877020395,0.00168440940535812,-0.005976919465789322,0.002336071445060531,0.00436699417707134,-0.005247880329196343,-0.0008161230833134467,0.005757615681360099,-0.003051124871582776,-0.003670351889638602,0.005491129188702045,-0.000038414647596295,-0.005426712741594785,0.0036778730471761206,0.002921979790357042,-0.005612092537049578,0.000862504886225179,0.004994756869438384,-0.004206777101008821,-0.002138727658395496,0.005612555974717905,-0.001640603793679084,-0.00447391034918115,0.0046305252678440646,0.0013375643846813207,-0.005496598259191423,0.002358580514084293,0.003877671165064496,-0.004944102324323375,-0.0005352527185069069,0.005270443255972866,-0.003003941903847979,-0.003220575689940079,0.005144814658170978,-0.000251963241123376,-0.004942276221088671,0.0035660207544181725,0.002517890234124859,-0.005232271548429072,0.0010086524055568644,0.0045220286015450195,-0.004036124920485116,-0.001785297355488709,0.0052083240203809455,-0.001720467938676326,-0.004021136032862963,0.004407645528211705,0.00103858281312451,-0.005076963386680254,0.002374390930557525,0.003452274611672536,-0.004676123221830755,-0.000293328920583648,0.004844182283096554,-0.0029589426438823055,-0.002829080820353618,0.004839272196996332,-0.000435380175485463,-0.004517801641045534,0.00346436212758138,0.0021658606757821207,-0.004896962550898842,0.0011332360936159342,0.0041072675988673485,-0.003882746693639497,-0.0014772937632670537,0.004851162237974012,-0.001786961913692683,-0.003623422830336836,0.004208153488994983,0.0007781377996418393,-0.004705840642293678,0.0023845416920389327,0.0030782571544993855,-0.004436661150818149,-0.000082939248081345,0.004466836450525034,-0.0029154200873884777,-0.0024846425797872,0.00456639129577918,-0.000594244714662356,-0.004141693120882942,0.003370669019868411,0.001856058123530432,-0.004597490347915285,0.0012401078946157153,0.0037394657832780214,-0.003743118961844232,-0.001206309833420299,0.004532072941424919,-0.001842335860794209,-0.003270503864866559,0.004027453169436672,0.0005492514201438184,-0.004374128830803134,0.0023898217124098888,0.0027462141060571542,-0.004220263892919906,0.0001014892078418608,0.004129395888683835,-0.002872853287528974,-0.002178808909098591,0.004320070339086555,-0.000732772431855468,-0.0038052023601414537,0.0032832688759818953,0.0015810451408781274,-0.004327298885133179,0.0013321936644063676,0.0034102820608713055,-0.003614579152420938,-0.000965958591601959,0.0042442267481438865,-0.001888309967606561,-0.002954566646910544,0.003862053730280365,0.0003465992716145695,-0.004074890983889265,0.002390842639114913,0.002448959438274671,-0.004022771440620501,0.00026422738837701204,0.0038249653113078845,-0.002830852389397747,-0.001905095542674953,0.004095634147866093,-0.0008542085792722223,-0.003501607823646661,0.0032008843221029396,0.0013350931947516316,0.004081344613809632,0.0014117568426467166,0.0031132831440029004,-0.003495080560118109,-0.000751301299248045,0.0039823495988200956,-0.0019262233125530552,-0.0026695630035545965,0.0037092590208348468,0.00016604814335501283,-0.003802750032448531,0.00238808774933818,0.0021809095582688387,-0.0038409575222055825,0.0004086038740077174,0.003548180682849912,-0.00278912216160145,-0.0016584460091960713,0.0038894430832158615,-0.0009610928562487279,-0.003225662294979352,0.0031225253816182913,0.0011137192491960006,-0.003855686955326962,0.0014805770200375756,0.0028434296419308706,-0.003383026569449437,-0.0005584593235005616,0.0037423065725655123,-0.0019571353282153824,-0.002410739334022185,0.0035669562592685992,0.000004340463089199634,-0.003553476225131052,0.002381945611343005,0.0019376615497718379,-0.003672284215497602,0.0005372516695656682,0.0032948088333592442,-0.0027474371465572647,-0.0014348600868823633,0.0036986240233832955,-0.0010554420895805701,-0.0029732117153399543,0.003047415214307232,0.0009133652765595503,-0.0036472049859943957,0.0015400738095075364,0.002596719693376865,-0.003277155743961312,-0.0003843443595345254,0.003520812524978191,-0.001981896589820398,-0.0021743092640833387,0.0034334687762567285,-0.0001411261126639814,0.0023727337708766235,0.0017156978580311923,-0.003514730101806216,0.0006522814102675338,0.0030614664015164317,-0.002705624325836564,-0.0012311324328946071,0.003520881067978818,-0.0011388790574619577,-0.002740926389843438,0.0029749378100310947,0.0007311717760163106,-0.0034533971691657716,0.0015913946155659104,0.0023699365314837134,-0.0031764604545482227,-0.00022646693702463983,0.0033152266358330964,-0.0020011992261728833,-0.001957220756854529,0.0033074512487201294,-0.00027245583099065574,-0.0031107008045504225,0.002360715744923774,0.0015121752946147878,-0.0033666674657802775,0.0007554053700443383,0.00284541857387878,-0.002663550773165199,-0.001044665065235685,0.0033543596961918744,-0.001212725111614123,-0.002526107720106278,0.002904600416141118,0.0005648146273983649,-0.0032722370521445954,0.0016354780062711222,0.002160466254018691,-0.003080128151737152,-0.000082797930510248,0.0031234037829790946,-0.002015613480508536,-0.00175698733817825,0.0031878137718127416,-0.0003913689234629894,-0.002912269083932181,0.0023461134262495863,0.0013247715479915683,-0.003226772947196665,0.0008480278373982253,0.0026444323795080907,-0.002621114694188058,-0.0008733304451363718,0.0031975475558126023,-0.0012780679337996753,-0.0023265468088722987,0.0028360060700229743,0.0004123855362323381,-0.003102067489642725,0.0016731002473195156,0.001966164025988275,-0.002987498252220287,0.00004833328785673103,0.002943585209223255,-0.002025614663560462,-0.0015715637451245235,0.003073665910135281,-0.0004992857952449686,-0.002726584833597506,0.0023291162790907956,0.0011515717076079155,-0.0030939614708402024,0.0009313120391705081,0.0024566680294338806,-0.002578238813341514,-0.000715369914541897,0.0030492008505353272,-0.0013358118795590603,-0.002140419386636313,0.0027688331984681023,0.00027230306044425507,-0.0029415219008097995,0.0017049099941755753,0.0017852543316613596,-0.0028980299980183146,0.00016831488624009116,0.0027743168705652277,-0.0020316033182352874,-0.0013992529276129046,0.002964274848589291,-0.0005973900770956857,-0.0025521406810003954,0.0023098882513615314,0.0009909831370976026,-0.0029673366695994975,0.0010062304166468866,0.002280597264378061,-0.002534865417417635,-0.0005693172763382291,0.0029082889338595324,-0.0013867159137674443,-0.0019662066190262472,0.0027028202465121734,0.00014324546521498255,-0.0027894648250310636,0.001731454512834913,0.0016162555759663638,-0.0028112781592852815,0.0002783101226767328,0.002614387616968737,-0.002033920507690205,-0.001238635550763712,0.002859033660935118,-0.0006866764820938022,-0.002387678084620776,0.0022885730357688917,0.000841670763073588,-0.0028461531856580177,0.0010736028917752718,0.002114941187700384,-0.002490952588011033,-0.0004339405427495209,0.0027739520605998113,-0.0014314225634394463,-0.0018026346487828543,0.0026377539430179966,0.000024099403604626595,-0.0026449464716313343,0.0017531997460879121,0.0014579223699989954,-0.002726874431534224,0.00037930144622244015,0.002462781801289147,-0.0020328595469610695,-0.0010885158914870888,0.0027574369494554997,-0.0007679875735691736,-0.0022321391627136557,0.0022652981196188125,0.000702507285968018,-0.002729787653816416,0.0011341263410876764,0.0019586223638290937,-0.00244647130004073,-0.0003081970043560719,0.002645468786255706,-0.0014704802733878732,-0.0016486278957671848,0.0025734602342109597,-0.00008607976421486678,-0.0025071675622243285,0.0017705458451201643,0.0013092008421668711,-0.002644513025712797,0.0004721246781596627,0.0023186425320669743,-0.002028675104990842,-0.0009478798462329672,0.002659061929424631,-0.0008420423294057347,-0.0020846292530919777,0.0022401779340787444,0.0005725344463660855,-0.002617716117379471,0.0011883975459047247,0.00181072750167585,-0.002401403159898697,-0.0001911981961946872,0.00252223053520494,-0.00150436085260325,-0.0015032725941173384,0.0025097972004579777,-0.00018809898018486252,-0.0023754518425589425,0.0017838393165831475,0.0011691936682461637,-0.0025639393856203506,0.0005574957818355751,0.002181242879348386,-0.002021590337661687,-0.0008158619997894686,0.0025635535866886197,-0.0009094585606012332,-0.0019443875126433023,0.0022133163256927288,0.00045093258457585547,-0.002509496269414901,0.0012369312421345489,0.0016704780892682278,-0.0023557386219282845,-0.00008218230752615857,0.0024037215609318827,-0.001533473223012741,-0.001365788039216979,0.0024466494652647408,-0.0002826519588731703,-0.0022492243779544466,0.0017933826134725838,0.0010371324395297126,-0.002484941265751537,0.0006360320298354078,0.002049963093101947,-0.0020118025292847827,-0.0006917195525119262,0.0024706129178784933,-0.0009707706722735125,-0.0018107636100686472,0.002184808512062205,0.00033699649284626125,-0.002404753355323932,0.0012801744470596899,0.001537207069170819,-0.0023094755667628676,0.000019507746753487322,0.002289503007619787,-0.0015581743520317768,-0.0012355037060267395,0.0023839237396364385,-0.00037033867283502197,-0.0021279942584771353,0.0017994417741892838,0.0009123556323570743,-0.002407341610307096,0.0007082688896385101,0.001924272416723798,-0.001999487592035099,-0.0005748114948746359,0.002379987528811685,-0.0010264438571449548,-0.001683199086011227,0.0021547426407978825,0.00023011609295240612,-0.0023031688829249506,0.0013185179278607563,0.001410340151546865,-0.00226261815632344,0.00011444190350763413,0.0021792001238734966,-0.0015787780180434162,-0.0011118408849488351,0.002321545239227773,-0.00045168099825255704,-0.0020113407007838497,0.0018022525561288292,0.0007942908968153683,-0.0023309928205821405,0.0007746736043426581,0.001803714447662988,-0.0019848036822188407,-0.0004645818368192538,0.0022914640549012346,-0.0010768855293036537,-0.0015612123237860743,0.0021232010403929814,0.0001297608503656892,-0.002204471506490353,0.0013523054543425155,0.0012893807223029292,-0.0022151759024297097,0.0002031171523614491,0.002072491922429874,-0.0015955618922985336,-0.0009942978268588042,0.002259454778879646,-0.0005271353749706217,-0.0018989017911572215,0.0018020253971051474,0.0006824407072985435,-0.0022557721026356748,0.0008356561984161872,0.0016878952618040433,-0.0019678941272325413,-0.00036054599946802374,0.0022048620023513398,-0.001122454603471095,-0.0014443863389041823,0.0020902612296847677,0.0000354671083238826,-0.0021084296094975655,0.0013818413183534276,0.0011738975633771888,-0.002167162901846324,0.0002859690931723308,0.0019691027549326263,-0.0016087733011967177,-0.000882437638330581,0.0021976063975728925,-0.0005971031245060763,-0.0017903653004237641,0.001798949456116054,0.0005763706527763578,-0.0021815776628847307,0.0008915784597268142,0.0015764737099661576,-0.0019488898098829778,-0.0002622796945123937,0.002120028706833092,-0.0011634690778397434,-0.00133235878806569,0.002055996736555064,-0.00005317227695481571,-0.0020148452260280994,0.0014073964858683516,0.0010635147912839954,-0.002118597202116705,0.0003633814063964488,0.0018687953986439004,-0.001618633945617953,-0.0007758783501296758,0.0021359654021759706,-0.0006619389156958006,-0.001685461137567241,0.0017931959250680322,0.0004756998166979747,-0.002108325574690938,0.0009427613181347118,0.0014691534354072185,-0.0019279111220849552,-0.00016940977630202798,0.0020368351781634214,-0.0012002122704387638,-0.0012248137397222571,0.0020204777647040138,-0.0001365164731501839,-0.0019235490254383598,0.001429213661905231,0.0009579035592634622,-0.0020695002709836996,0.00043569366276668194,0.001771365346153946,-0.0016253437895462407,-0.0006742847164405341,0.002074506744423042,-0.0007219577539746244,-0.001583955109401834,0.0017849207587636168,0.0003800928237751474,-0.0020359471799921113,0.0009894909439983504,0.001365676265258973,-0.0019050695742462466,-0.00008160667009977071,0.0019551726527607546,-0.0012329379787893553,-0.0011214748532388037,0.0019837717385284585,-0.00021488374589178938,-0.0018343961478594086,0.0014475114846589161,0.0008567751719113934,-0.0020198965484687923,0.0005032078018533034,0.0016766360593018427,-0.0016290842822227678,-0.0005773614024287887,0.0020132136649767046,-0.0007774407854154982,-0.001485643728726439,0.0017742669373665958,0.00028925322595191566,-0.0019643869206406876,0.001032023817418387,0.0012658167066469663,-0.0018804691274104883,0.0000014219314192059985,0.0018749497155054894,-0.0012618747724836893,-0.0010220996923464246,0.0019459437495293614,-0.0002885573539851103,-0.0017472627252814671,0.0014624880173070333,0.000759875338937036,-0.001969813065372363,0.0005661935363351936,0.0015844550012379893,-0.0016300210419186326,-0.00048484729311842076,0.0019520765530275522,-0.0008286401427992488,-0.0013903498698962624,0.001761366350587126,0.0002029179715772622,-0.0018936005171811343,0.001070590964359338,0.0011693773369627605,-0.0018542073006706367,0.00007993634436630187,0.001796089882737794,-0.001287229582897214,-0.0009264749580346582,0.00190705692264887,-0.000357790488405239,-0.0016620429587037447,0.001474323669667731,0.000666979353589724,-0.001919279115500805,0.0006248928836065682,0.001494690300540488,-0.0016283061020082176,-0.00039651071375081354,0.0018910919809583453,-0.0008757830124216558,-0.0012979191136915354,0.001746341373859158,0.0012085275628620108,-0.001823553430342144,0.0011054015141281398,0.0010761849224576528,-0.0018263760952866859,0.00015416933249647887,0.0017185295610630813,-0.0013091907195737172,-0.0008344124713796399,0.001867172717108242,-0.00042281043082654894,-0.0015786466491034894,0.0014831836541463507,0.000577888026299939,-0.0018683259716293663,0.0006795239841810711,0.0014072279318751814,-0.0016240797990220387,-0.0003121453955687333,0.0018302618820712844,-0.0009190750631916303,-0.0012082166562672975,0.0017293061922154344,0.000042848095910588676,-0.001754219553962642,0.0011366457007577196,0.0009860871336272348,-0.0017970627684170263,0.00022432985947940388,0.001642216314245644,-0.00132793041619937,-0.000745745771673329,0.0018263511733560237,-0.00048382207139291455,-0.001496997100948329,0.0014892200590753374,0.0004924242387303761,-0.0018169866372816674,0.000730284333815972,0.0013219693212437487,-0.0016174723661781761,-0.00023156705474265918,0.0017695928459084888,-0.0009587033508575022,-0.0011211246823503444,0.0017103679163289168,-0.000031284005997565645,-0.0016855800984575933,0.0011644974061324103,0.000898949752385515,-0.0017663504827774893,0.00029060627506083647,0.0015671073840996523,-0.001343606988452282,-0.0006603272222014626,0.0017846511154448806,-0.0005410108975245877,-0.0014170293332391715,0.001492573605985117,0.00041043001032005426,-0.0017652956280132586,0.0007773535310730766,0.0012388293021558306,-0.0016086052833111516,-0.0001546104783725948,0.001709095510765675,-0.0009948387879098184,-0.001036540122601161,0.0016896275264316656,-0.00010171289829495539,-0.0016176226320130786,0.0011891163234524363,0.0008146542866641094,-0.0017343188534058138,0.0003531690319383539,0.0014931684219100807,-0.0013563666699270584,-0.0005780255370831861,0.001742130316358363,-0.0005945455437270626,-0.001338688545766597,0.0014933751444066359,0.0003317639903807079,-0.0017132887771369898,0.0008208956222786434,0.0011577343633633864,-0.001597592424277112,0.0016487840369650121,-0.0010276382522176027,-0.0009543727305231596,0.0016671806729632347,-0.0001685917126398524,-0.0015503402530239307,0.0012106498045694487,0.0007330959242867455,-0.0017010444086675823,0.00041217301165898763,0.0014203723952454072,-0.0013663451796973138,-0.0004987236591255881,0.0016988456323976096,-0.000644579975265785,-0.001261928798224407,0.0014917469276472496,0.00025629930533804004,-0.001661003061809122,0.0008610611103393504,0.001078621140041301,-0.0015845410351623059,-0.000010982519468670268,0.001588675647577043,-0.0010572463937182544,-0.0008745434264680063,0.0016431183573983941,-0.00023205945121231676,-0.0014837308722831706,0.0012292344428094005,0.0006541817707338698,-0.0016666009794538096,0.00046775952319143125,0.0013486986416117019,-0.0013736690651118403,-0.00042231693169361435,0.0016548531116204845,-0.0006912553649986834,-0.0011867118677229454,0.0014878037049223778,0.00018392170375762485,-0.0016084764461720084,0.0008979886815637,0.0010014351092189444,-0.0015695525704905507,0.00005594466207552277,0.0015287902257490346,-0.001083797187546618,-0.0007969828659632944,0.0016175275124054767,-0.0002922427865284056,-0.0014177965873931977,0.0012449974334534334,0.0005778293255745284,-0.0016310600279888488,0.0005200580262196091,0.0012781320456142983,-0.0013784568554704394,-0.0003487115180043474,0.0016102080804333118,-0.0007347017119004154,-0.0011130062565073524,0.0014816536588215525,0.00011452795221224462,-0.0015557477388619453,0.0009318066948683035,0.00092612945734861,-0.001552723409721847,0.00011976511736049848,0.001469149959770467,-0.0011074152733014948,-0.0007216301972786769,0.0015904914970633767,-0.0003492576182697266,-0.0013525431350203407,0.001258057746515065,0.0005039651604261612,-0.0015944909256388486,0.0005691876218907034,0.0012086623204786548,-0.0013808200558933436,-0.0002778230295433546,0.0015649652117235575,-0.0007750392411754451,0.0010407863267157488,0.0014733992119670871,0.000048024443351710324,-0.0015028564626857373,0.0009626344698868147,0.000852664093594242,-0.0015341454724189692,0.0001805798375757076,0.0014097790285858799,-0.0011282171131553429,-0.0006484319793394448,0.0015620905201192293,-0.00040321042418424126,-0.0012879794091582,0.0012685271403792076,0.00043252376782482155,-0.0015569611874856634,0.0006152583463028969,0.001140283378138452,-0.001380864005588963,-0.00020957533199357617,0.0015191785773452852,-0.0008123796189423287,-0.0009700315430348592,0.0014631377225859693,-0.00001567401574594861,-0.001449842734661874,0.0009905834041994542,0.0007810047870022233,-0.0015139067472927914,0.00023848140533292832,0.0013507033217300011,-0.0011463119959027066,-0.0005773412360600683,0.0015324020020463702,-0.0004541994357349061,-0.0012241170356022742,0.0012765110399913272,0.00036344655563969773,-0.0015185366701156824,0.000658372295973902,0.0010729927747985181,-0.0013786886206157503,-0.0001438995024424062,0.0014729016873054363,-0.0008468270088493829,-0.0009007258073856401,0.001450962085384556,-0.00007664526144318761,-0.0013967471549453294,0.0010157579447764558,0.0007111224094082552,-0.0014920917477833327,0.00029355504647752005,0.001291950188696457,-0.0011618029094674707,-0.0005083166272211274,0.0015015008848669618,-0.0005023156640160524,-0.0011609699945040115,0.0012821092993090522,0.00029668096591077206,-0.0014792817380055517,0.000698624609657607,0.0010067912210918668,-0.0013743890378763429,-0.00008073291603006744,0.001426187517618761,-0.0008784789934285954,-0.0008328568724236371,0.0014369612513953334,-0.00013496069974191892,-0.0013436107034079628,0.0010382564345878728,0.0006429922689646879,-0.001468781904744373,0.0003458795506288721,0.0012335482135821156,-0.0011747873006891063,-0.0004413217192995347,0.0014694598972368577,-0.0005476437972705667,-0.0010985542842111163,0.0012854168645082713,0.00023217970047962564,0.0007361043268706108,0.0009416821477331841,-0.00002001844377637972,0.0013790885284927176,-0.0009074273792894457,-0.0007664158227911079,0.0014212206782551482,-0.00019068611930432298,-0.0012904746428634454,0.0010581718519219556,0.0005765935216221548,-0.0014440559051002789,0.00039552807880841544,0.0011755270115402297,-0.0011853577381613707,-0.0003763243423359188,0.0014363497810923871,-0.0005902629878833201,-0.001036887620716606,0.001286524351779206,0.00016990003861119102,-0.0013985314407912817,0.0007708951402235772,0.0008776713190505759,-0.0013597772134087674,0.0000382962537624602,0.0013316566742453079,-0.0009337589021888669, -0.0007013966148476759,0.0014038227205496864,-0.0002438824068503528,-0.0012373804280933014,0.0010755924571681343,0.0005119086499337978,-0.0014179899839424565,0.00044256887361214276,0.0011179170441275007,-0.0011936024914151245,-0.00031329602114924806,0.001402239485171366,-0.000630247543915065,-0.0009759891679376904,0.001285518551373567,0.00010980323415663845],"x":[100.0,100.60925648702595,101.21851297405189,101.82776946107785,102.4370259481038,103.04628243512974,103.65553892215569,104.26479540918163,104.87405189620759,105.48330838323353,106.09256487025948,106.70182135728543,107.31107784431137,107.92033433133733,108.52959081836327,109.13884730538922,109.74810379241517,110.35736027944112,110.96661676646707,111.57587325349301,112.18512974051896,112.7943862275449,113.40364271457086,114.01289920159681,114.62215568862275,115.2314121756487,115.84066866267464,116.4499251497006,117.05918163672655,117.6684381237525,118.27769461077844,118.88695109780438,119.49620758483034,120.10546407185629,120.71472055888223,121.32397704590818,121.93323353293412,122.54249001996008,123.15174650698603,123.76100299401197,124.37025948103792,124.97951596806388,125.58877245508982,126.19802894211577,126.80728542914171,127.41654191616766,128.02579840319362,128.63505489021955,129.2443113772455,129.85356786427147,130.4628243512974,131.07208083832336,131.6813373253493,132.29059381237525,132.8998502994012,133.50910678642714,134.1183632734531,134.72761976047903,135.336876247505,135.94613273453095,136.55538922155688,137.16464570858284,137.77390219560877,138.38315868263473,138.9924151696607,139.60167165668662,140.21092814371258,140.8201846307385,141.42944111776447,142.03869760479043,142.64795409181636,143.25721057884232,143.86646706586825,144.4757235528942,145.08498003992017,145.6942365269461,146.30349301397206,146.91274950099802,147.52200598802395,148.1312624750499,148.74051896207584,149.3497754491018,149.95903193612776,150.5682884231537,151.17754491017965,151.78680139720558,152.39605788423154,153.0053143712575,153.61457085828343,154.2238273453094,154.83308383233532,155.44234031936128,156.05159680638724,156.66085329341317,157.27010978043913,157.87936626746506,158.48862275449102,159.09787924151698,159.7071357285429,160.31639221556887,160.9256487025948,161.53490518962076,162.14416167664672,162.75341816367265,163.3626746506986,163.97193113772454,164.5811876247505,165.19044411177646,165.7997005988024,166.40895708582835,167.01821357285428,167.62747005988024,168.2367265469062,168.84598303393213,169.4552395209581,170.06449600798402,170.67375249500998,171.28300898203594,171.89226546906187,172.50152195608783,173.11077844311376,173.72003493013972,174.32929141716568,174.9385479041916,175.54780439121757,176.1570608782435,176.76631736526946,177.37557385229542,177.98483033932135,178.5940868263473,179.20334331337327,179.8125998003992,180.42185628742516,181.0311127744511,181.64036926147705,182.249625748503,182.85888223552894,183.4681387225549,184.07739520958083,184.6866516966068,185.29590818363275,185.90516467065868,186.51442115768464,187.12367764471057,187.73293413173653,188.3421906187625,188.95144710578842,189.56070359281438,190.1699600798403,190.77921656686627,191.38847305389223,191.99772954091816,192.60698602794412,193.21624251497005,193.825499001996,194.43475548902197,195.0440119760479,195.65326846307386,196.2625249500998,196.87178143712575,197.4810379241517,198.09029441117764,198.6995508982036,199.30880738522953,199.9180638722555,200.52732035928145,201.13657684630738,201.74583333333334,202.35508982035927,202.96434630738523,203.5736027944112,204.18285928143712,204.79211576846308,205.401372255489,206.01062874251497,206.61988522954093,207.22914171656686,207.83839820359282,208.44765469061878,209.0569111776447,209.66616766467067,210.2754241516966,210.88468063872256,211.49393712574852,212.10319361277445,212.7124500998004,213.32170658682634,213.9309630738523,214.54021956087826,215.1494760479042,215.75873253493015,216.36798902195608,216.97724550898204,217.586501996008,218.19575848303393,218.8050149700599,219.41427145708582,220.02352794411178,220.63278443113774,221.24204091816367,221.85129740518963,222.46055389221556,223.06981037924152,223.67906686626748,224.2883233532934,224.89757984031937,225.5068363273453,226.11609281437126,226.72534930139722,227.33460578842315,227.9438622754491,228.55311876247504,229.162375249501,229.77163173652696,230.3808882235529,230.99014471057885,231.59940119760478,232.20865768463074,232.8179141716567,233.42717065868263,234.0364271457086,234.64568363273452,235.25494011976048,235.86419660678644,236.47345309381237,237.08270958083833,237.69196606786429,238.30122255489022,238.91047904191618,239.5197355289421,240.12899201596807,240.73824850299403,241.34750499001996,241.95676147704592,242.56601796407185,243.1752744510978,243.78453093812377,244.3937874251497,245.00304391217566,245.6123003992016,246.22155688622755,246.8308133732535,247.44006986027944,248.0493263473054,248.65858283433133,249.2678393213573,249.87709580838325,250.48635229540918,251.09560878243514,251.70486526946107,252.31412175648703,252.92337824351299,253.53263473053892,254.14189121756488,254.7511477045908,255.36040419161677,255.96966067864273,256.57891716566866,257.1881736526946,257.7974301397206,258.40668662674653,259.01594311377244,259.6251996007984,260.23445608782436,260.8437125748503,261.4529690618763,262.0622255489022,262.67148203592814,263.2807385229541,263.88999500998005,264.499251497006,265.1085079840319,265.7177644710579,266.32702095808384,266.9362774451098,267.54553393213575,268.15479041916166,268.7640469061876,269.3733033932136,269.98255988023953,270.5918163672655,271.2010728542914,271.81032934131736,272.4195858283433,273.0288423153693,273.63809880239523,274.24735528942114,274.8566117764471,275.46586826347306,276.075124750499,276.684381237525,277.2936377245509,277.90289421157684,278.5121506986028,279.12140718562875,279.7306636726547,280.3399201596806,280.9491766467066,281.55843313373254,282.1676896207585,282.77694610778445,283.38620259481036,283.9954590818363,284.6047155688623,285.21397205588823,285.8232285429142,286.4324850299401,287.04174151696606,287.650998003992,288.260254491018,288.86951097804393,289.47876746506984,290.0880239520958,290.69728043912176,291.3065369261477,291.9157934131737,292.5250499001996,293.13430638722554,293.7435628742515,294.35281936127745,294.9620758483034,295.5713323353293,296.1805888223553,296.78984530938123,297.3991017964072,298.00835828343315,298.61761477045906,299.226871257485,299.836127744511,300.44538423153693,301.0546407185629,301.6638972055888,302.27315369261476,302.8824101796407,303.4916666666667,304.10092315369263,304.71017964071854,305.3194361277445,305.92869261477045,306.5379491017964,307.1472055888224,307.7564620758483,308.36571856287424,308.9749750499002,309.58423153692615,310.1934880239521,310.802744510978,311.412000998004,312.02125748502993,312.6305139720559,313.23977045908185,313.8490269461078,314.4582834331337,315.0675399201597,315.67679640718563,316.2860528942116,316.89530938123755,317.50456586826346,318.1138223552894,318.7230788423154,319.33233532934133,319.9415918163673,320.5508483033932,321.16010479041915,321.7693612774451,322.3786177644711,322.98787425149703,323.59713073852294,324.2063872255489,324.81564371257485,325.4249001996008,326.0341566866268,326.6434131736527,327.25266966067863,327.8619261477046,328.47118263473055,329.0804391217565,329.6896956087824,330.2989520958084,330.90820858283433,331.5174650698603,332.12672155688625,332.73597804391216,333.3452345309381,333.9544910179641,334.56374750499003,335.173003992016,335.7822604790419,336.39151696606785,337.0007734530938,337.6100299401198,338.21928642714573,338.82854291417163,339.4377994011976,340.04705588822355,340.6563123752495,341.2655688622755,341.8748253493014,342.48408183632733,343.0933383233533,343.70259481037925,344.3118512974052,344.9211077844311,345.5303642714571,346.13962075848303,346.748877245509,347.35813373253495,347.96739021956085,348.5766467065868,349.1859031936128,349.79515968063873,350.4044161676647,351.0136726546906,351.62292914171655,352.2321856287425,352.8414421157685,353.45069860279443,354.05995508982033,354.6692115768463,355.27846806387225,355.8877245508982,356.4969810379242,357.1062375249501,357.71549401197603,358.324750499002,358.93400698602795,359.5432634730539,360.1525199600798,360.7617764471058,361.37103293413173,361.9802894211577,362.58954590818365,363.19880239520955,363.8080588822355,364.4173153692615,365.02657185628743,365.6358283433134,366.2450848303393,366.85434131736525,367.4635978043912,368.0728542914172,368.68211077844313,369.29136726546903,369.900623752495,370.50988023952095,371.1191367265469,371.7283932135729,372.3376497005988,372.94690618762473,373.5561626746507,374.16541916167665,374.7746756487026,375.38393213572857,375.9931886227545,376.60244510978043,377.2117015968064,377.82095808383235,378.4302145708583,379.0394710578842,379.6487275449102,380.25798403193613,380.8672405189621,381.47649700598805,382.08575349301395,382.6950099800399,383.3042664670659,383.91352295409183,384.5227794411178,385.1320359281437,385.74129241516965,386.3505489021956,386.9598053892216,387.56906187624753,388.17831836327343,388.7875748502994,389.39683133732535,390.0060878243513,390.61534431137727,391.2246007984032,391.83385728542913,392.4431137724551,393.05237025948105,393.661626746507,394.2708832335329,394.8801397205589,395.48939620758483,396.0986526946108,396.70790918163675,397.31716566866265,397.9264221556886,398.5356786427146,399.14493512974053,399.7541916167665,400.3634481037924,400.97270459081835,401.5819610778443,402.19121756487027,402.80047405189623,403.40973053892213,404.0189870259481,404.62824351297405,405.2375,405.84675648702597,406.4560129740519,407.06526946107783,407.6745259481038,408.28378243512975,408.8930389221557,409.5022954091816,410.1115518962076,410.72080838323353,411.3300648702595,411.93932135728545,412.54857784431135,413.1578343313373,413.7670908183633,414.37634730538923,414.9856037924152,415.5948602794411,416.20411676646705,416.813373253493,417.42262974051897,418.03188622754493,418.64114271457083,419.2503992015968,419.85965568862275,420.4689121756487,421.07816866267467,421.6874251497006,422.29668163672653,422.9059381237525,423.51519461077845,424.1244510978044,424.7337075848303,425.3429640718563,425.95222055888223,426.5614770459082,427.17073353293415,427.77999001996005,428.389246506986,428.998502994012,429.60775948103793,430.2170159680639,430.8262724550898,431.43552894211575,432.0447854291417,432.65404191616767,433.26329840319363,433.87255489021953,434.4818113772455,435.09106786427145,435.7003243512974,436.30958083832337,436.91883732534933,437.52809381237523,438.1373502994012,438.74660678642715,439.3558632734531,439.96511976047907,440.574376247505,441.18363273453093,441.7928892215569,442.40214570858285,443.0114021956088,443.6206586826347,444.22991516966067,444.83917165668663,445.4484281437126,446.05768463073855,446.66694111776445,447.2761976047904,447.88545409181637,448.49471057884233,449.1039670658683,449.7132235528942,450.32248003992015,450.9317365269461,451.54099301397207,452.15024950099803,452.75950598802393,453.3687624750499,453.97801896207585,454.5872754491018,455.19653193612777,455.8057884231537,456.41504491017963,457.0243013972056,457.63355788423155,458.2428143712575,458.8520708582834,459.46132734530937,460.07058383233533,460.6798403193613,461.28909680638725,461.89835329341315,462.5076097804391,463.11686626746507,463.72612275449103,464.335379241517,464.9446357285429,465.55389221556885,466.1631487025948,466.77240518962077,467.38166167664673,467.99091816367263,468.6001746506986,469.20943113772455,469.8186876247505,470.42794411177647,471.0372005988024,471.64645708582833,472.2557135728543,472.86497005988025,473.4742265469062,474.0834830339321,474.69273952095807,475.30199600798403,475.91125249501,476.52050898203595,477.12976546906185,477.7390219560878,478.34827844311377,478.95753493013973,479.5667914171657,480.1760479041916,480.78530439121755,481.3945608782435,482.00381736526947,482.61307385229543,483.22233033932133,483.8315868263473,484.44084331337325,485.0500998003992,485.65935628742517,486.26861277445107,486.87786926147703,487.487125748503,488.09638223552895,488.7056387225549,489.3148952095808,489.92415169660677,490.53340818363273,491.1426646706587,491.75192115768465,492.36117764471055,492.9704341317365,493.57969061876247,494.18894710578843,494.7982035928144,495.4074600798403,496.01671656686625,496.6259730538922,497.23522954091817,497.84448602794413,498.4537425149701,499.062999001996,499.67225548902195,500.2815119760479,500.89076846307387,501.5000249500998,502.10928143712573,502.7185379241517,503.32779441117765,503.9370508982036,504.54630738522957,505.15556387225547,505.76482035928143,506.3740768463074,506.98333333333335,507.5925898203593,508.2018463073852,508.81110279441117,509.42035928143713,510.0296157684631,510.63887225548905,511.24812874251495,511.8573852295409,512.4666417165669,513.0758982035928,513.6851546906188,514.2944111776447,514.9036676646707,515.5129241516966,516.1221806387225,516.7314371257485,517.3406936127744,517.9499500998004,518.5592065868263,519.1684630738523,519.7777195608783,520.3869760479042,520.9962325349302,521.605489021956,522.214745508982,522.824001996008,523.4332584830339,524.0425149700599,524.6517714570858,525.2610279441118,525.8702844311377,526.4795409181637,527.0887974051897,527.6980538922156,528.3073103792415,528.9165668662674,529.5258233532934,530.1350798403193,530.7443363273453,531.3535928143713,531.9628493013972,532.5721057884232,533.1813622754491,533.7906187624751,534.399875249501,535.0091317365269,535.6183882235529,536.2276447105788,536.8369011976048,537.4461576846307,538.0554141716567,538.6646706586827,539.2739271457086,539.8831836327346,540.4924401197604,541.1016966067864,541.7109530938123,542.3202095808383,542.9294660678643,543.5387225548902,544.1479790419162,544.7572355289421,545.3664920159681,545.9757485029941,546.5850049900199,547.1942614770459,547.8035179640718,548.4127744510978,549.0220309381237,549.6312874251497,550.2405439121757,550.8498003992016,551.4590568862276,552.0683133732535,552.6775698602794,553.2868263473054,553.8960828343313,554.5053393213573,555.1145958083832,555.7238522954092,556.3331087824351,556.9423652694611,557.5516217564871,558.160878243513,558.7701347305389,559.3793912175648,559.9886477045908,560.5979041916167,561.2071606786427,561.8164171656687,562.4256736526946,563.0349301397206,563.6441866267465,564.2534431137725,564.8626996007984,565.4719560878243,566.0812125748503,566.6904690618762,567.2997255489022,567.9089820359281,568.5182385229541,569.1274950099801,569.736751497006,570.346007984032,570.9552644710578,571.5645209580838,572.1737774451097,572.7830339321357,573.3922904191617,574.0015469061876,574.6108033932136,575.2200598802395,575.8293163672655,576.4385728542915,577.0478293413173,577.6570858283433,578.2663423153692,578.8755988023952,579.4848552894211,580.0941117764471,580.7033682634731,581.312624750499,581.921881237525,582.531137724551,583.1403942115768,583.7496506986027,584.3589071856287,584.9681636726547,585.5774201596806,586.1866766467066,586.7959331337325,587.4051896207585,588.0144461077845,588.6237025948104,589.2329590818364,589.8422155688622,590.4514720558882,591.0607285429141,591.6699850299401,592.2792415169661,592.888498003992,593.497754491018,594.107010978044,594.7162674650699,595.3255239520959,595.9347804391217,596.5440369261477,597.1532934131736,597.7625499001996,598.3718063872255,598.9810628742515,599.5903193612775,600.1995758483034,600.8088323353294,601.4180888223553,602.0273453093812,602.6366017964071,603.2458582834331,603.8551147704591,604.464371257485,605.073627744511,605.682884231537,606.2921407185629,606.9013972055889,607.5106536926148,608.1199101796407,608.7291666666666,609.3384231536926,609.9476796407185,610.5569361277445,611.1661926147705,611.7754491017964,612.3847055888224,612.9939620758483,613.6032185628743,614.2124750499001,614.8217315369261,615.4309880239521,616.040244510978,616.649500998004,617.25875748503,617.8680139720559,618.4772704590819,619.0865269461078,619.6957834331338,620.3050399201596,620.9142964071856,621.5235528942115,622.1328093812375,622.7420658682635,623.3513223552894,623.9605788423154,624.5698353293413,625.1790918163673,625.7883483033933,626.3976047904191,627.0068612774451,627.616117764471,628.225374251497,628.834630738523,629.4438872255489,630.0531437125749,630.6624001996008,631.2716566866268,631.8809131736527,632.4901696606786,633.0994261477045,633.7086826347305,634.3179391217565,634.9271956087824,635.5364520958084,636.1457085828343,636.7549650698603,637.3642215568863,637.9734780439122,638.5827345309381,639.191991017964,639.80124750499,640.410503992016,641.0197604790419,641.6290169660679,642.2382734530938,642.8475299401198,643.4567864271457,644.0660429141717,644.6752994011975,645.2845558882235,645.8938123752495,646.5030688622754,647.1123253493014,647.7215818363273,648.3308383233533,648.9400948103793,649.5493512974052,650.1586077844312,650.7678642714571,651.377120758483,651.986377245509,652.5956337325349,653.2048902195609,653.8141467065868,654.4234031936128,655.0326596806387,655.6419161676647,656.2511726546907,656.8604291417166,657.4696856287425,658.0789421157684,658.6881986027944,659.2974550898203,659.9067115768463,660.5159680638723,661.1252245508982,661.7344810379242,662.3437375249501,662.9529940119761,663.562250499002,664.1715069860279,664.7807634730539,665.3900199600798,665.9992764471058,666.6085329341317,667.2177894211577,667.8270459081837,668.4363023952096,669.0455588822356,669.6548153692614,670.2640718562874,670.8733283433133,671.4825848303393,672.0918413173653,672.7010978043912,673.3103542914172,673.9196107784431,674.5288672654691,675.1381237524951,675.7473802395209,676.3566367265469,676.9658932135728,677.5751497005988,678.1844061876247,678.7936626746507,679.4029191616767,680.0121756487026,680.6214321357286,681.2306886227545,681.8399451097804,682.4492015968063,683.0584580838323,683.6677145708583,684.2769710578842,684.8862275449102,685.4954840319361,686.1047405189621,686.7139970059881,687.323253493014,687.9325099800399,688.5417664670658,689.1510229540918,689.7602794411177,690.3695359281437,690.9787924151697,691.5880489021956,692.1973053892216,692.8065618762475,693.4158183632735,694.0250748502993,694.6343313373253,695.2435878243513,695.8528443113772,696.4621007984032,697.0713572854291,697.6806137724551,698.2898702594811,698.899126746507,699.508383233533,700.1176397205588,700.7268962075848,701.3361526946107,701.9454091816367,702.5546656686627,703.1639221556886,703.7731786427146,704.3824351297405,704.9916916167665,705.6009481037925,706.2102045908183,706.8194610778443,707.4287175648702,708.0379740518962,708.6472305389221,709.2564870259481,709.8657435129741,710.475]} From 19883d77baec8cfbb22a066f7392e6dcd43044e2 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Sat, 30 Nov 2024 12:15:27 +0600 Subject: [PATCH 54/63] "fixed large positive" --- .../base/special/cosc/test/fixtures/julia/large_positive.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json index c1ad2c9c975c..28f658aa558f 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json @@ -1 +1 @@ -{"expected":[0.01,-0.0033746253790549624,-0.007622018879319136,0.008433494207046853,0.001889004559574384,-0.00959763287124854,0.0045548640918855405,0.00643775365526481,-0.008809666729723751,-0.000468327621357804,0.009021878600127204,-0.005574489042175532,-0.005188845438344393,0.008984167322636266,-0.0008822361340235784,-0.008293387424072578,0.006423300008544533,0.00390249149724315,-0.00896491048167861,0.0021410030233847974,0.007434361161677098,-0.0070945391115908776,-0.002605153786703288,0.0087627445091276,0.006468148173580897,0.007584861802057748,0.001322173628641932,-0.008391166572328667,0.004309966210916445,0.005418829024186577,-0.007894256760515254,-0.00007741137080101638,0.00786600339799083,-0.005190888286691567,-0.004310799964470551,0.008025916288409504,-0.0011070829665529621,-0.00720506320694166,0.0059217096985319595,0.0031683612909959584,-0.007986059728650302,0.002211362742764597,0.006427764980119337,-0.006495570438395232,-0.002015317447555855,0.007783713328832359,-0.003217836901260242,0.005554751504162455,0.0069087623461371135,0.0008745954285802678,-0.007430450743094688,0.004111477604627807,0.004607492872683843,-0.007160672340873091,0.00023211237554265316,0.006940099051174486,-0.004879980448715341,-0.0036078872171936413,0.007253676467270752,-0.0012846752729141803,-0.006328415747875719,0.005513875305599021,0.002577865411407692,0.007192987327410233,0.002264816300126859,0.005612742616618405,-0.00600658676302084,-0.00153900633791215,0.006986458278165595,-0.0031563648778605274,-0.004811642742160233,0.006354444046560059,0.0005121690322926351,-0.006644348505237545,0.003945466543090176,0.003944527136917611,-0.006556641214801915,0.00048285236585137326,0.00617905372724083,-0.0046207470221406475,0.0030312775513807594,0.006615149291794282,-0.0014276454140797585,-0.0056048078272581455,0.005173428759011166,0.002091872012714056,-0.006534582830377916,0.004937361147319414,-0.005597398884782191,-0.0011460194895600748,0.006322024170613043,-0.003101470027877635,-0.004193641507483116,0.005889228490530021,0.00021280982010589674,-0.005986809356747114,0.003802948422578564,0.0033914042216771465,-0.006048143932118084,0.0006896153286842611,0.005540280292535628,-0.004399459866491001,-0.0025488774753354643,0.006075951734989388,-0.0015443651716269698,-0.004995508238426995,0.0048829622877020395,0.00168440940535812,-0.005976919465789322,0.002336071445060531,0.00436699417707134,-0.005247880329196343,-0.0008161230833134467,0.005757615681360099,-0.003051124871582776,-0.003670351889638602,0.005491129188702045,-0.000038414647596295,-0.005426712741594785,0.0036778730471761206,0.002921979790357042,-0.005612092537049578,0.000862504886225179,0.004994756869438384,-0.004206777101008821,-0.002138727658395496,0.005612555974717905,-0.001640603793679084,-0.00447391034918115,0.0046305252678440646,0.0013375643846813207,-0.005496598259191423,0.002358580514084293,0.003877671165064496,-0.004944102324323375,-0.0005352527185069069,0.005270443255972866,-0.003003941903847979,-0.003220575689940079,0.005144814658170978,-0.000251963241123376,-0.004942276221088671,0.0035660207544181725,0.002517890234124859,-0.005232271548429072,0.0010086524055568644,0.0045220286015450195,-0.004036124920485116,-0.001785297355488709,0.0052083240203809455,-0.001720467938676326,-0.004021136032862963,0.004407645528211705,0.00103858281312451,-0.005076963386680254,0.002374390930557525,0.003452274611672536,-0.004676123221830755,-0.000293328920583648,0.004844182283096554,-0.0029589426438823055,-0.002829080820353618,0.004839272196996332,-0.000435380175485463,-0.004517801641045534,0.00346436212758138,0.0021658606757821207,-0.004896962550898842,0.0011332360936159342,0.0041072675988673485,-0.003882746693639497,-0.0014772937632670537,0.004851162237974012,-0.001786961913692683,-0.003623422830336836,0.004208153488994983,0.0007781377996418393,-0.004705840642293678,0.0023845416920389327,0.0030782571544993855,-0.004436661150818149,-0.000082939248081345,0.004466836450525034,-0.0029154200873884777,-0.0024846425797872,0.00456639129577918,-0.000594244714662356,-0.004141693120882942,0.003370669019868411,0.001856058123530432,-0.004597490347915285,0.0012401078946157153,0.0037394657832780214,-0.003743118961844232,-0.001206309833420299,0.004532072941424919,-0.001842335860794209,-0.003270503864866559,0.004027453169436672,0.0005492514201438184,-0.004374128830803134,0.0023898217124098888,0.0027462141060571542,-0.004220263892919906,0.0001014892078418608,0.004129395888683835,-0.002872853287528974,-0.002178808909098591,0.004320070339086555,-0.000732772431855468,-0.0038052023601414537,0.0032832688759818953,0.0015810451408781274,-0.004327298885133179,0.0013321936644063676,0.0034102820608713055,-0.003614579152420938,-0.000965958591601959,0.0042442267481438865,-0.001888309967606561,-0.002954566646910544,0.003862053730280365,0.0003465992716145695,-0.004074890983889265,0.002390842639114913,0.002448959438274671,-0.004022771440620501,0.00026422738837701204,0.0038249653113078845,-0.002830852389397747,-0.001905095542674953,0.004095634147866093,-0.0008542085792722223,-0.003501607823646661,0.0032008843221029396,0.0013350931947516316,0.004081344613809632,0.0014117568426467166,0.0031132831440029004,-0.003495080560118109,-0.000751301299248045,0.0039823495988200956,-0.0019262233125530552,-0.0026695630035545965,0.0037092590208348468,0.00016604814335501283,-0.003802750032448531,0.00238808774933818,0.0021809095582688387,-0.0038409575222055825,0.0004086038740077174,0.003548180682849912,-0.00278912216160145,-0.0016584460091960713,0.0038894430832158615,-0.0009610928562487279,-0.003225662294979352,0.0031225253816182913,0.0011137192491960006,-0.003855686955326962,0.0014805770200375756,0.0028434296419308706,-0.003383026569449437,-0.0005584593235005616,0.0037423065725655123,-0.0019571353282153824,-0.002410739334022185,0.0035669562592685992,0.000004340463089199634,-0.003553476225131052,0.002381945611343005,0.0019376615497718379,-0.003672284215497602,0.0005372516695656682,0.0032948088333592442,-0.0027474371465572647,-0.0014348600868823633,0.0036986240233832955,-0.0010554420895805701,-0.0029732117153399543,0.003047415214307232,0.0009133652765595503,-0.0036472049859943957,0.0015400738095075364,0.002596719693376865,-0.003277155743961312,-0.0003843443595345254,0.003520812524978191,-0.001981896589820398,-0.0021743092640833387,0.0034334687762567285,-0.0001411261126639814,0.0023727337708766235,0.0017156978580311923,-0.003514730101806216,0.0006522814102675338,0.0030614664015164317,-0.002705624325836564,-0.0012311324328946071,0.003520881067978818,-0.0011388790574619577,-0.002740926389843438,0.0029749378100310947,0.0007311717760163106,-0.0034533971691657716,0.0015913946155659104,0.0023699365314837134,-0.0031764604545482227,-0.00022646693702463983,0.0033152266358330964,-0.0020011992261728833,-0.001957220756854529,0.0033074512487201294,-0.00027245583099065574,-0.0031107008045504225,0.002360715744923774,0.0015121752946147878,-0.0033666674657802775,0.0007554053700443383,0.00284541857387878,-0.002663550773165199,-0.001044665065235685,0.0033543596961918744,-0.001212725111614123,-0.002526107720106278,0.002904600416141118,0.0005648146273983649,-0.0032722370521445954,0.0016354780062711222,0.002160466254018691,-0.003080128151737152,-0.000082797930510248,0.0031234037829790946,-0.002015613480508536,-0.00175698733817825,0.0031878137718127416,-0.0003913689234629894,-0.002912269083932181,0.0023461134262495863,0.0013247715479915683,-0.003226772947196665,0.0008480278373982253,0.0026444323795080907,-0.002621114694188058,-0.0008733304451363718,0.0031975475558126023,-0.0012780679337996753,-0.0023265468088722987,0.0028360060700229743,0.0004123855362323381,-0.003102067489642725,0.0016731002473195156,0.001966164025988275,-0.002987498252220287,0.00004833328785673103,0.002943585209223255,-0.002025614663560462,-0.0015715637451245235,0.003073665910135281,-0.0004992857952449686,-0.002726584833597506,0.0023291162790907956,0.0011515717076079155,-0.0030939614708402024,0.0009313120391705081,0.0024566680294338806,-0.002578238813341514,-0.000715369914541897,0.0030492008505353272,-0.0013358118795590603,-0.002140419386636313,0.0027688331984681023,0.00027230306044425507,-0.0029415219008097995,0.0017049099941755753,0.0017852543316613596,-0.0028980299980183146,0.00016831488624009116,0.0027743168705652277,-0.0020316033182352874,-0.0013992529276129046,0.002964274848589291,-0.0005973900770956857,-0.0025521406810003954,0.0023098882513615314,0.0009909831370976026,-0.0029673366695994975,0.0010062304166468866,0.002280597264378061,-0.002534865417417635,-0.0005693172763382291,0.0029082889338595324,-0.0013867159137674443,-0.0019662066190262472,0.0027028202465121734,0.00014324546521498255,-0.0027894648250310636,0.001731454512834913,0.0016162555759663638,-0.0028112781592852815,0.0002783101226767328,0.002614387616968737,-0.002033920507690205,-0.001238635550763712,0.002859033660935118,-0.0006866764820938022,-0.002387678084620776,0.0022885730357688917,0.000841670763073588,-0.0028461531856580177,0.0010736028917752718,0.002114941187700384,-0.002490952588011033,-0.0004339405427495209,0.0027739520605998113,-0.0014314225634394463,-0.0018026346487828543,0.0026377539430179966,0.000024099403604626595,-0.0026449464716313343,0.0017531997460879121,0.0014579223699989954,-0.002726874431534224,0.00037930144622244015,0.002462781801289147,-0.0020328595469610695,-0.0010885158914870888,0.0027574369494554997,-0.0007679875735691736,-0.0022321391627136557,0.0022652981196188125,0.000702507285968018,-0.002729787653816416,0.0011341263410876764,0.0019586223638290937,-0.00244647130004073,-0.0003081970043560719,0.002645468786255706,-0.0014704802733878732,-0.0016486278957671848,0.0025734602342109597,-0.00008607976421486678,-0.0025071675622243285,0.0017705458451201643,0.0013092008421668711,-0.002644513025712797,0.0004721246781596627,0.0023186425320669743,-0.002028675104990842,-0.0009478798462329672,0.002659061929424631,-0.0008420423294057347,-0.0020846292530919777,0.0022401779340787444,0.0005725344463660855,-0.002617716117379471,0.0011883975459047247,0.00181072750167585,-0.002401403159898697,-0.0001911981961946872,0.00252223053520494,-0.00150436085260325,-0.0015032725941173384,0.0025097972004579777,-0.00018809898018486252,-0.0023754518425589425,0.0017838393165831475,0.0011691936682461637,-0.0025639393856203506,0.0005574957818355751,0.002181242879348386,-0.002021590337661687,-0.0008158619997894686,0.0025635535866886197,-0.0009094585606012332,-0.0019443875126433023,0.0022133163256927288,0.00045093258457585547,-0.002509496269414901,0.0012369312421345489,0.0016704780892682278,-0.0023557386219282845,-0.00008218230752615857,0.0024037215609318827,-0.001533473223012741,-0.001365788039216979,0.0024466494652647408,-0.0002826519588731703,-0.0022492243779544466,0.0017933826134725838,0.0010371324395297126,-0.002484941265751537,0.0006360320298354078,0.002049963093101947,-0.0020118025292847827,-0.0006917195525119262,0.0024706129178784933,-0.0009707706722735125,-0.0018107636100686472,0.002184808512062205,0.00033699649284626125,-0.002404753355323932,0.0012801744470596899,0.001537207069170819,-0.0023094755667628676,0.000019507746753487322,0.002289503007619787,-0.0015581743520317768,-0.0012355037060267395,0.0023839237396364385,-0.00037033867283502197,-0.0021279942584771353,0.0017994417741892838,0.0009123556323570743,-0.002407341610307096,0.0007082688896385101,0.001924272416723798,-0.001999487592035099,-0.0005748114948746359,0.002379987528811685,-0.0010264438571449548,-0.001683199086011227,0.0021547426407978825,0.00023011609295240612,-0.0023031688829249506,0.0013185179278607563,0.001410340151546865,-0.00226261815632344,0.00011444190350763413,0.0021792001238734966,-0.0015787780180434162,-0.0011118408849488351,0.002321545239227773,-0.00045168099825255704,-0.0020113407007838497,0.0018022525561288292,0.0007942908968153683,-0.0023309928205821405,0.0007746736043426581,0.001803714447662988,-0.0019848036822188407,-0.0004645818368192538,0.0022914640549012346,-0.0010768855293036537,-0.0015612123237860743,0.0021232010403929814,0.0001297608503656892,-0.002204471506490353,0.0013523054543425155,0.0012893807223029292,-0.0022151759024297097,0.0002031171523614491,0.002072491922429874,-0.0015955618922985336,-0.0009942978268588042,0.002259454778879646,-0.0005271353749706217,-0.0018989017911572215,0.0018020253971051474,0.0006824407072985435,-0.0022557721026356748,0.0008356561984161872,0.0016878952618040433,-0.0019678941272325413,-0.00036054599946802374,0.0022048620023513398,-0.001122454603471095,-0.0014443863389041823,0.0020902612296847677,0.0000354671083238826,-0.0021084296094975655,0.0013818413183534276,0.0011738975633771888,-0.002167162901846324,0.0002859690931723308,0.0019691027549326263,-0.0016087733011967177,-0.000882437638330581,0.0021976063975728925,-0.0005971031245060763,-0.0017903653004237641,0.001798949456116054,0.0005763706527763578,-0.0021815776628847307,0.0008915784597268142,0.0015764737099661576,-0.0019488898098829778,-0.0002622796945123937,0.002120028706833092,-0.0011634690778397434,-0.00133235878806569,0.002055996736555064,-0.00005317227695481571,-0.0020148452260280994,0.0014073964858683516,0.0010635147912839954,-0.002118597202116705,0.0003633814063964488,0.0018687953986439004,-0.001618633945617953,-0.0007758783501296758,0.0021359654021759706,-0.0006619389156958006,-0.001685461137567241,0.0017931959250680322,0.0004756998166979747,-0.002108325574690938,0.0009427613181347118,0.0014691534354072185,-0.0019279111220849552,-0.00016940977630202798,0.0020368351781634214,-0.0012002122704387638,-0.0012248137397222571,0.0020204777647040138,-0.0001365164731501839,-0.0019235490254383598,0.001429213661905231,0.0009579035592634622,-0.0020695002709836996,0.00043569366276668194,0.001771365346153946,-0.0016253437895462407,-0.0006742847164405341,0.002074506744423042,-0.0007219577539746244,-0.001583955109401834,0.0017849207587636168,0.0003800928237751474,-0.0020359471799921113,0.0009894909439983504,0.001365676265258973,-0.0019050695742462466,-0.00008160667009977071,0.0019551726527607546,-0.0012329379787893553,-0.0011214748532388037,0.0019837717385284585,-0.00021488374589178938,-0.0018343961478594086,0.0014475114846589161,0.0008567751719113934,-0.0020198965484687923,0.0005032078018533034,0.0016766360593018427,-0.0016290842822227678,-0.0005773614024287887,0.0020132136649767046,-0.0007774407854154982,-0.001485643728726439,0.0017742669373665958,0.00028925322595191566,-0.0019643869206406876,0.001032023817418387,0.0012658167066469663,-0.0018804691274104883,0.0000014219314192059985,0.0018749497155054894,-0.0012618747724836893,-0.0010220996923464246,0.0019459437495293614,-0.0002885573539851103,-0.0017472627252814671,0.0014624880173070333,0.000759875338937036,-0.001969813065372363,0.0005661935363351936,0.0015844550012379893,-0.0016300210419186326,-0.00048484729311842076,0.0019520765530275522,-0.0008286401427992488,-0.0013903498698962624,0.001761366350587126,0.0002029179715772622,-0.0018936005171811343,0.001070590964359338,0.0011693773369627605,-0.0018542073006706367,0.00007993634436630187,0.001796089882737794,-0.001287229582897214,-0.0009264749580346582,0.00190705692264887,-0.000357790488405239,-0.0016620429587037447,0.001474323669667731,0.000666979353589724,-0.001919279115500805,0.0006248928836065682,0.001494690300540488,-0.0016283061020082176,-0.00039651071375081354,0.0018910919809583453,-0.0008757830124216558,-0.0012979191136915354,0.001746341373859158,0.0012085275628620108,-0.001823553430342144,0.0011054015141281398,0.0010761849224576528,-0.0018263760952866859,0.00015416933249647887,0.0017185295610630813,-0.0013091907195737172,-0.0008344124713796399,0.001867172717108242,-0.00042281043082654894,-0.0015786466491034894,0.0014831836541463507,0.000577888026299939,-0.0018683259716293663,0.0006795239841810711,0.0014072279318751814,-0.0016240797990220387,-0.0003121453955687333,0.0018302618820712844,-0.0009190750631916303,-0.0012082166562672975,0.0017293061922154344,0.000042848095910588676,-0.001754219553962642,0.0011366457007577196,0.0009860871336272348,-0.0017970627684170263,0.00022432985947940388,0.001642216314245644,-0.00132793041619937,-0.000745745771673329,0.0018263511733560237,-0.00048382207139291455,-0.001496997100948329,0.0014892200590753374,0.0004924242387303761,-0.0018169866372816674,0.000730284333815972,0.0013219693212437487,-0.0016174723661781761,-0.00023156705474265918,0.0017695928459084888,-0.0009587033508575022,-0.0011211246823503444,0.0017103679163289168,-0.000031284005997565645,-0.0016855800984575933,0.0011644974061324103,0.000898949752385515,-0.0017663504827774893,0.00029060627506083647,0.0015671073840996523,-0.001343606988452282,-0.0006603272222014626,0.0017846511154448806,-0.0005410108975245877,-0.0014170293332391715,0.001492573605985117,0.00041043001032005426,-0.0017652956280132586,0.0007773535310730766,0.0012388293021558306,-0.0016086052833111516,-0.0001546104783725948,0.001709095510765675,-0.0009948387879098184,-0.001036540122601161,0.0016896275264316656,-0.00010171289829495539,-0.0016176226320130786,0.0011891163234524363,0.0008146542866641094,-0.0017343188534058138,0.0003531690319383539,0.0014931684219100807,-0.0013563666699270584,-0.0005780255370831861,0.001742130316358363,-0.0005945455437270626,-0.001338688545766597,0.0014933751444066359,0.0003317639903807079,-0.0017132887771369898,0.0008208956222786434,0.0011577343633633864,-0.001597592424277112,0.0016487840369650121,-0.0010276382522176027,-0.0009543727305231596,0.0016671806729632347,-0.0001685917126398524,-0.0015503402530239307,0.0012106498045694487,0.0007330959242867455,-0.0017010444086675823,0.00041217301165898763,0.0014203723952454072,-0.0013663451796973138,-0.0004987236591255881,0.0016988456323976096,-0.000644579975265785,-0.001261928798224407,0.0014917469276472496,0.00025629930533804004,-0.001661003061809122,0.0008610611103393504,0.001078621140041301,-0.0015845410351623059,-0.000010982519468670268,0.001588675647577043,-0.0010572463937182544,-0.0008745434264680063,0.0016431183573983941,-0.00023205945121231676,-0.0014837308722831706,0.0012292344428094005,0.0006541817707338698,-0.0016666009794538096,0.00046775952319143125,0.0013486986416117019,-0.0013736690651118403,-0.00042231693169361435,0.0016548531116204845,-0.0006912553649986834,-0.0011867118677229454,0.0014878037049223778,0.00018392170375762485,-0.0016084764461720084,0.0008979886815637,0.0010014351092189444,-0.0015695525704905507,0.00005594466207552277,0.0015287902257490346,-0.001083797187546618,-0.0007969828659632944,0.0016175275124054767,-0.0002922427865284056,-0.0014177965873931977,0.0012449974334534334,0.0005778293255745284,-0.0016310600279888488,0.0005200580262196091,0.0012781320456142983,-0.0013784568554704394,-0.0003487115180043474,0.0016102080804333118,-0.0007347017119004154,-0.0011130062565073524,0.0014816536588215525,0.00011452795221224462,-0.0015557477388619453,0.0009318066948683035,0.00092612945734861,-0.001552723409721847,0.00011976511736049848,0.001469149959770467,-0.0011074152733014948,-0.0007216301972786769,0.0015904914970633767,-0.0003492576182697266,-0.0013525431350203407,0.001258057746515065,0.0005039651604261612,-0.0015944909256388486,0.0005691876218907034,0.0012086623204786548,-0.0013808200558933436,-0.0002778230295433546,0.0015649652117235575,-0.0007750392411754451,0.0010407863267157488,0.0014733992119670871,0.000048024443351710324,-0.0015028564626857373,0.0009626344698868147,0.000852664093594242,-0.0015341454724189692,0.0001805798375757076,0.0014097790285858799,-0.0011282171131553429,-0.0006484319793394448,0.0015620905201192293,-0.00040321042418424126,-0.0012879794091582,0.0012685271403792076,0.00043252376782482155,-0.0015569611874856634,0.0006152583463028969,0.001140283378138452,-0.001380864005588963,-0.00020957533199357617,0.0015191785773452852,-0.0008123796189423287,-0.0009700315430348592,0.0014631377225859693,-0.00001567401574594861,-0.001449842734661874,0.0009905834041994542,0.0007810047870022233,-0.0015139067472927914,0.00023848140533292832,0.0013507033217300011,-0.0011463119959027066,-0.0005773412360600683,0.0015324020020463702,-0.0004541994357349061,-0.0012241170356022742,0.0012765110399913272,0.00036344655563969773,-0.0015185366701156824,0.000658372295973902,0.0010729927747985181,-0.0013786886206157503,-0.0001438995024424062,0.0014729016873054363,-0.0008468270088493829,-0.0009007258073856401,0.001450962085384556,-0.00007664526144318761,-0.0013967471549453294,0.0010157579447764558,0.0007111224094082552,-0.0014920917477833327,0.00029355504647752005,0.001291950188696457,-0.0011618029094674707,-0.0005083166272211274,0.0015015008848669618,-0.0005023156640160524,-0.0011609699945040115,0.0012821092993090522,0.00029668096591077206,-0.0014792817380055517,0.000698624609657607,0.0010067912210918668,-0.0013743890378763429,-0.00008073291603006744,0.001426187517618761,-0.0008784789934285954,-0.0008328568724236371,0.0014369612513953334,-0.00013496069974191892,-0.0013436107034079628,0.0010382564345878728,0.0006429922689646879,-0.001468781904744373,0.0003458795506288721,0.0012335482135821156,-0.0011747873006891063,-0.0004413217192995347,0.0014694598972368577,-0.0005476437972705667,-0.0010985542842111163,0.0012854168645082713,0.00023217970047962564,0.0007361043268706108,0.0009416821477331841,-0.00002001844377637972,0.0013790885284927176,-0.0009074273792894457,-0.0007664158227911079,0.0014212206782551482,-0.00019068611930432298,-0.0012904746428634454,0.0010581718519219556,0.0005765935216221548,-0.0014440559051002789,0.00039552807880841544,0.0011755270115402297,-0.0011853577381613707,-0.0003763243423359188,0.0014363497810923871,-0.0005902629878833201,-0.001036887620716606,0.001286524351779206,0.00016990003861119102,-0.0013985314407912817,0.0007708951402235772,0.0008776713190505759,-0.0013597772134087674,0.0000382962537624602,0.0013316566742453079,-0.0009337589021888669, -0.0007013966148476759,0.0014038227205496864,-0.0002438824068503528,-0.0012373804280933014,0.0010755924571681343,0.0005119086499337978,-0.0014179899839424565,0.00044256887361214276,0.0011179170441275007,-0.0011936024914151245,-0.00031329602114924806,0.001402239485171366,-0.000630247543915065,-0.0009759891679376904,0.001285518551373567,0.00010980323415663845],"x":[100.0,100.60925648702595,101.21851297405189,101.82776946107785,102.4370259481038,103.04628243512974,103.65553892215569,104.26479540918163,104.87405189620759,105.48330838323353,106.09256487025948,106.70182135728543,107.31107784431137,107.92033433133733,108.52959081836327,109.13884730538922,109.74810379241517,110.35736027944112,110.96661676646707,111.57587325349301,112.18512974051896,112.7943862275449,113.40364271457086,114.01289920159681,114.62215568862275,115.2314121756487,115.84066866267464,116.4499251497006,117.05918163672655,117.6684381237525,118.27769461077844,118.88695109780438,119.49620758483034,120.10546407185629,120.71472055888223,121.32397704590818,121.93323353293412,122.54249001996008,123.15174650698603,123.76100299401197,124.37025948103792,124.97951596806388,125.58877245508982,126.19802894211577,126.80728542914171,127.41654191616766,128.02579840319362,128.63505489021955,129.2443113772455,129.85356786427147,130.4628243512974,131.07208083832336,131.6813373253493,132.29059381237525,132.8998502994012,133.50910678642714,134.1183632734531,134.72761976047903,135.336876247505,135.94613273453095,136.55538922155688,137.16464570858284,137.77390219560877,138.38315868263473,138.9924151696607,139.60167165668662,140.21092814371258,140.8201846307385,141.42944111776447,142.03869760479043,142.64795409181636,143.25721057884232,143.86646706586825,144.4757235528942,145.08498003992017,145.6942365269461,146.30349301397206,146.91274950099802,147.52200598802395,148.1312624750499,148.74051896207584,149.3497754491018,149.95903193612776,150.5682884231537,151.17754491017965,151.78680139720558,152.39605788423154,153.0053143712575,153.61457085828343,154.2238273453094,154.83308383233532,155.44234031936128,156.05159680638724,156.66085329341317,157.27010978043913,157.87936626746506,158.48862275449102,159.09787924151698,159.7071357285429,160.31639221556887,160.9256487025948,161.53490518962076,162.14416167664672,162.75341816367265,163.3626746506986,163.97193113772454,164.5811876247505,165.19044411177646,165.7997005988024,166.40895708582835,167.01821357285428,167.62747005988024,168.2367265469062,168.84598303393213,169.4552395209581,170.06449600798402,170.67375249500998,171.28300898203594,171.89226546906187,172.50152195608783,173.11077844311376,173.72003493013972,174.32929141716568,174.9385479041916,175.54780439121757,176.1570608782435,176.76631736526946,177.37557385229542,177.98483033932135,178.5940868263473,179.20334331337327,179.8125998003992,180.42185628742516,181.0311127744511,181.64036926147705,182.249625748503,182.85888223552894,183.4681387225549,184.07739520958083,184.6866516966068,185.29590818363275,185.90516467065868,186.51442115768464,187.12367764471057,187.73293413173653,188.3421906187625,188.95144710578842,189.56070359281438,190.1699600798403,190.77921656686627,191.38847305389223,191.99772954091816,192.60698602794412,193.21624251497005,193.825499001996,194.43475548902197,195.0440119760479,195.65326846307386,196.2625249500998,196.87178143712575,197.4810379241517,198.09029441117764,198.6995508982036,199.30880738522953,199.9180638722555,200.52732035928145,201.13657684630738,201.74583333333334,202.35508982035927,202.96434630738523,203.5736027944112,204.18285928143712,204.79211576846308,205.401372255489,206.01062874251497,206.61988522954093,207.22914171656686,207.83839820359282,208.44765469061878,209.0569111776447,209.66616766467067,210.2754241516966,210.88468063872256,211.49393712574852,212.10319361277445,212.7124500998004,213.32170658682634,213.9309630738523,214.54021956087826,215.1494760479042,215.75873253493015,216.36798902195608,216.97724550898204,217.586501996008,218.19575848303393,218.8050149700599,219.41427145708582,220.02352794411178,220.63278443113774,221.24204091816367,221.85129740518963,222.46055389221556,223.06981037924152,223.67906686626748,224.2883233532934,224.89757984031937,225.5068363273453,226.11609281437126,226.72534930139722,227.33460578842315,227.9438622754491,228.55311876247504,229.162375249501,229.77163173652696,230.3808882235529,230.99014471057885,231.59940119760478,232.20865768463074,232.8179141716567,233.42717065868263,234.0364271457086,234.64568363273452,235.25494011976048,235.86419660678644,236.47345309381237,237.08270958083833,237.69196606786429,238.30122255489022,238.91047904191618,239.5197355289421,240.12899201596807,240.73824850299403,241.34750499001996,241.95676147704592,242.56601796407185,243.1752744510978,243.78453093812377,244.3937874251497,245.00304391217566,245.6123003992016,246.22155688622755,246.8308133732535,247.44006986027944,248.0493263473054,248.65858283433133,249.2678393213573,249.87709580838325,250.48635229540918,251.09560878243514,251.70486526946107,252.31412175648703,252.92337824351299,253.53263473053892,254.14189121756488,254.7511477045908,255.36040419161677,255.96966067864273,256.57891716566866,257.1881736526946,257.7974301397206,258.40668662674653,259.01594311377244,259.6251996007984,260.23445608782436,260.8437125748503,261.4529690618763,262.0622255489022,262.67148203592814,263.2807385229541,263.88999500998005,264.499251497006,265.1085079840319,265.7177644710579,266.32702095808384,266.9362774451098,267.54553393213575,268.15479041916166,268.7640469061876,269.3733033932136,269.98255988023953,270.5918163672655,271.2010728542914,271.81032934131736,272.4195858283433,273.0288423153693,273.63809880239523,274.24735528942114,274.8566117764471,275.46586826347306,276.075124750499,276.684381237525,277.2936377245509,277.90289421157684,278.5121506986028,279.12140718562875,279.7306636726547,280.3399201596806,280.9491766467066,281.55843313373254,282.1676896207585,282.77694610778445,283.38620259481036,283.9954590818363,284.6047155688623,285.21397205588823,285.8232285429142,286.4324850299401,287.04174151696606,287.650998003992,288.260254491018,288.86951097804393,289.47876746506984,290.0880239520958,290.69728043912176,291.3065369261477,291.9157934131737,292.5250499001996,293.13430638722554,293.7435628742515,294.35281936127745,294.9620758483034,295.5713323353293,296.1805888223553,296.78984530938123,297.3991017964072,298.00835828343315,298.61761477045906,299.226871257485,299.836127744511,300.44538423153693,301.0546407185629,301.6638972055888,302.27315369261476,302.8824101796407,303.4916666666667,304.10092315369263,304.71017964071854,305.3194361277445,305.92869261477045,306.5379491017964,307.1472055888224,307.7564620758483,308.36571856287424,308.9749750499002,309.58423153692615,310.1934880239521,310.802744510978,311.412000998004,312.02125748502993,312.6305139720559,313.23977045908185,313.8490269461078,314.4582834331337,315.0675399201597,315.67679640718563,316.2860528942116,316.89530938123755,317.50456586826346,318.1138223552894,318.7230788423154,319.33233532934133,319.9415918163673,320.5508483033932,321.16010479041915,321.7693612774451,322.3786177644711,322.98787425149703,323.59713073852294,324.2063872255489,324.81564371257485,325.4249001996008,326.0341566866268,326.6434131736527,327.25266966067863,327.8619261477046,328.47118263473055,329.0804391217565,329.6896956087824,330.2989520958084,330.90820858283433,331.5174650698603,332.12672155688625,332.73597804391216,333.3452345309381,333.9544910179641,334.56374750499003,335.173003992016,335.7822604790419,336.39151696606785,337.0007734530938,337.6100299401198,338.21928642714573,338.82854291417163,339.4377994011976,340.04705588822355,340.6563123752495,341.2655688622755,341.8748253493014,342.48408183632733,343.0933383233533,343.70259481037925,344.3118512974052,344.9211077844311,345.5303642714571,346.13962075848303,346.748877245509,347.35813373253495,347.96739021956085,348.5766467065868,349.1859031936128,349.79515968063873,350.4044161676647,351.0136726546906,351.62292914171655,352.2321856287425,352.8414421157685,353.45069860279443,354.05995508982033,354.6692115768463,355.27846806387225,355.8877245508982,356.4969810379242,357.1062375249501,357.71549401197603,358.324750499002,358.93400698602795,359.5432634730539,360.1525199600798,360.7617764471058,361.37103293413173,361.9802894211577,362.58954590818365,363.19880239520955,363.8080588822355,364.4173153692615,365.02657185628743,365.6358283433134,366.2450848303393,366.85434131736525,367.4635978043912,368.0728542914172,368.68211077844313,369.29136726546903,369.900623752495,370.50988023952095,371.1191367265469,371.7283932135729,372.3376497005988,372.94690618762473,373.5561626746507,374.16541916167665,374.7746756487026,375.38393213572857,375.9931886227545,376.60244510978043,377.2117015968064,377.82095808383235,378.4302145708583,379.0394710578842,379.6487275449102,380.25798403193613,380.8672405189621,381.47649700598805,382.08575349301395,382.6950099800399,383.3042664670659,383.91352295409183,384.5227794411178,385.1320359281437,385.74129241516965,386.3505489021956,386.9598053892216,387.56906187624753,388.17831836327343,388.7875748502994,389.39683133732535,390.0060878243513,390.61534431137727,391.2246007984032,391.83385728542913,392.4431137724551,393.05237025948105,393.661626746507,394.2708832335329,394.8801397205589,395.48939620758483,396.0986526946108,396.70790918163675,397.31716566866265,397.9264221556886,398.5356786427146,399.14493512974053,399.7541916167665,400.3634481037924,400.97270459081835,401.5819610778443,402.19121756487027,402.80047405189623,403.40973053892213,404.0189870259481,404.62824351297405,405.2375,405.84675648702597,406.4560129740519,407.06526946107783,407.6745259481038,408.28378243512975,408.8930389221557,409.5022954091816,410.1115518962076,410.72080838323353,411.3300648702595,411.93932135728545,412.54857784431135,413.1578343313373,413.7670908183633,414.37634730538923,414.9856037924152,415.5948602794411,416.20411676646705,416.813373253493,417.42262974051897,418.03188622754493,418.64114271457083,419.2503992015968,419.85965568862275,420.4689121756487,421.07816866267467,421.6874251497006,422.29668163672653,422.9059381237525,423.51519461077845,424.1244510978044,424.7337075848303,425.3429640718563,425.95222055888223,426.5614770459082,427.17073353293415,427.77999001996005,428.389246506986,428.998502994012,429.60775948103793,430.2170159680639,430.8262724550898,431.43552894211575,432.0447854291417,432.65404191616767,433.26329840319363,433.87255489021953,434.4818113772455,435.09106786427145,435.7003243512974,436.30958083832337,436.91883732534933,437.52809381237523,438.1373502994012,438.74660678642715,439.3558632734531,439.96511976047907,440.574376247505,441.18363273453093,441.7928892215569,442.40214570858285,443.0114021956088,443.6206586826347,444.22991516966067,444.83917165668663,445.4484281437126,446.05768463073855,446.66694111776445,447.2761976047904,447.88545409181637,448.49471057884233,449.1039670658683,449.7132235528942,450.32248003992015,450.9317365269461,451.54099301397207,452.15024950099803,452.75950598802393,453.3687624750499,453.97801896207585,454.5872754491018,455.19653193612777,455.8057884231537,456.41504491017963,457.0243013972056,457.63355788423155,458.2428143712575,458.8520708582834,459.46132734530937,460.07058383233533,460.6798403193613,461.28909680638725,461.89835329341315,462.5076097804391,463.11686626746507,463.72612275449103,464.335379241517,464.9446357285429,465.55389221556885,466.1631487025948,466.77240518962077,467.38166167664673,467.99091816367263,468.6001746506986,469.20943113772455,469.8186876247505,470.42794411177647,471.0372005988024,471.64645708582833,472.2557135728543,472.86497005988025,473.4742265469062,474.0834830339321,474.69273952095807,475.30199600798403,475.91125249501,476.52050898203595,477.12976546906185,477.7390219560878,478.34827844311377,478.95753493013973,479.5667914171657,480.1760479041916,480.78530439121755,481.3945608782435,482.00381736526947,482.61307385229543,483.22233033932133,483.8315868263473,484.44084331337325,485.0500998003992,485.65935628742517,486.26861277445107,486.87786926147703,487.487125748503,488.09638223552895,488.7056387225549,489.3148952095808,489.92415169660677,490.53340818363273,491.1426646706587,491.75192115768465,492.36117764471055,492.9704341317365,493.57969061876247,494.18894710578843,494.7982035928144,495.4074600798403,496.01671656686625,496.6259730538922,497.23522954091817,497.84448602794413,498.4537425149701,499.062999001996,499.67225548902195,500.2815119760479,500.89076846307387,501.5000249500998,502.10928143712573,502.7185379241517,503.32779441117765,503.9370508982036,504.54630738522957,505.15556387225547,505.76482035928143,506.3740768463074,506.98333333333335,507.5925898203593,508.2018463073852,508.81110279441117,509.42035928143713,510.0296157684631,510.63887225548905,511.24812874251495,511.8573852295409,512.4666417165669,513.0758982035928,513.6851546906188,514.2944111776447,514.9036676646707,515.5129241516966,516.1221806387225,516.7314371257485,517.3406936127744,517.9499500998004,518.5592065868263,519.1684630738523,519.7777195608783,520.3869760479042,520.9962325349302,521.605489021956,522.214745508982,522.824001996008,523.4332584830339,524.0425149700599,524.6517714570858,525.2610279441118,525.8702844311377,526.4795409181637,527.0887974051897,527.6980538922156,528.3073103792415,528.9165668662674,529.5258233532934,530.1350798403193,530.7443363273453,531.3535928143713,531.9628493013972,532.5721057884232,533.1813622754491,533.7906187624751,534.399875249501,535.0091317365269,535.6183882235529,536.2276447105788,536.8369011976048,537.4461576846307,538.0554141716567,538.6646706586827,539.2739271457086,539.8831836327346,540.4924401197604,541.1016966067864,541.7109530938123,542.3202095808383,542.9294660678643,543.5387225548902,544.1479790419162,544.7572355289421,545.3664920159681,545.9757485029941,546.5850049900199,547.1942614770459,547.8035179640718,548.4127744510978,549.0220309381237,549.6312874251497,550.2405439121757,550.8498003992016,551.4590568862276,552.0683133732535,552.6775698602794,553.2868263473054,553.8960828343313,554.5053393213573,555.1145958083832,555.7238522954092,556.3331087824351,556.9423652694611,557.5516217564871,558.160878243513,558.7701347305389,559.3793912175648,559.9886477045908,560.5979041916167,561.2071606786427,561.8164171656687,562.4256736526946,563.0349301397206,563.6441866267465,564.2534431137725,564.8626996007984,565.4719560878243,566.0812125748503,566.6904690618762,567.2997255489022,567.9089820359281,568.5182385229541,569.1274950099801,569.736751497006,570.346007984032,570.9552644710578,571.5645209580838,572.1737774451097,572.7830339321357,573.3922904191617,574.0015469061876,574.6108033932136,575.2200598802395,575.8293163672655,576.4385728542915,577.0478293413173,577.6570858283433,578.2663423153692,578.8755988023952,579.4848552894211,580.0941117764471,580.7033682634731,581.312624750499,581.921881237525,582.531137724551,583.1403942115768,583.7496506986027,584.3589071856287,584.9681636726547,585.5774201596806,586.1866766467066,586.7959331337325,587.4051896207585,588.0144461077845,588.6237025948104,589.2329590818364,589.8422155688622,590.4514720558882,591.0607285429141,591.6699850299401,592.2792415169661,592.888498003992,593.497754491018,594.107010978044,594.7162674650699,595.3255239520959,595.9347804391217,596.5440369261477,597.1532934131736,597.7625499001996,598.3718063872255,598.9810628742515,599.5903193612775,600.1995758483034,600.8088323353294,601.4180888223553,602.0273453093812,602.6366017964071,603.2458582834331,603.8551147704591,604.464371257485,605.073627744511,605.682884231537,606.2921407185629,606.9013972055889,607.5106536926148,608.1199101796407,608.7291666666666,609.3384231536926,609.9476796407185,610.5569361277445,611.1661926147705,611.7754491017964,612.3847055888224,612.9939620758483,613.6032185628743,614.2124750499001,614.8217315369261,615.4309880239521,616.040244510978,616.649500998004,617.25875748503,617.8680139720559,618.4772704590819,619.0865269461078,619.6957834331338,620.3050399201596,620.9142964071856,621.5235528942115,622.1328093812375,622.7420658682635,623.3513223552894,623.9605788423154,624.5698353293413,625.1790918163673,625.7883483033933,626.3976047904191,627.0068612774451,627.616117764471,628.225374251497,628.834630738523,629.4438872255489,630.0531437125749,630.6624001996008,631.2716566866268,631.8809131736527,632.4901696606786,633.0994261477045,633.7086826347305,634.3179391217565,634.9271956087824,635.5364520958084,636.1457085828343,636.7549650698603,637.3642215568863,637.9734780439122,638.5827345309381,639.191991017964,639.80124750499,640.410503992016,641.0197604790419,641.6290169660679,642.2382734530938,642.8475299401198,643.4567864271457,644.0660429141717,644.6752994011975,645.2845558882235,645.8938123752495,646.5030688622754,647.1123253493014,647.7215818363273,648.3308383233533,648.9400948103793,649.5493512974052,650.1586077844312,650.7678642714571,651.377120758483,651.986377245509,652.5956337325349,653.2048902195609,653.8141467065868,654.4234031936128,655.0326596806387,655.6419161676647,656.2511726546907,656.8604291417166,657.4696856287425,658.0789421157684,658.6881986027944,659.2974550898203,659.9067115768463,660.5159680638723,661.1252245508982,661.7344810379242,662.3437375249501,662.9529940119761,663.562250499002,664.1715069860279,664.7807634730539,665.3900199600798,665.9992764471058,666.6085329341317,667.2177894211577,667.8270459081837,668.4363023952096,669.0455588822356,669.6548153692614,670.2640718562874,670.8733283433133,671.4825848303393,672.0918413173653,672.7010978043912,673.3103542914172,673.9196107784431,674.5288672654691,675.1381237524951,675.7473802395209,676.3566367265469,676.9658932135728,677.5751497005988,678.1844061876247,678.7936626746507,679.4029191616767,680.0121756487026,680.6214321357286,681.2306886227545,681.8399451097804,682.4492015968063,683.0584580838323,683.6677145708583,684.2769710578842,684.8862275449102,685.4954840319361,686.1047405189621,686.7139970059881,687.323253493014,687.9325099800399,688.5417664670658,689.1510229540918,689.7602794411177,690.3695359281437,690.9787924151697,691.5880489021956,692.1973053892216,692.8065618762475,693.4158183632735,694.0250748502993,694.6343313373253,695.2435878243513,695.8528443113772,696.4621007984032,697.0713572854291,697.6806137724551,698.2898702594811,698.899126746507,699.508383233533,700.1176397205588,700.7268962075848,701.3361526946107,701.9454091816367,702.5546656686627,703.1639221556886,703.7731786427146,704.3824351297405,704.9916916167665,705.6009481037925,706.2102045908183,706.8194610778443,707.4287175648702,708.0379740518962,708.6472305389221,709.2564870259481,709.8657435129741,710.475]} +{"expected":[0.01,-0.0033746253790549624,-0.007622018879319136,0.008433494207046853,0.001889004559574384,-0.00959763287124854,0.0045548640918855405,0.00643775365526481,-0.008809666729723751,-0.000468327621357804,0.009021878600127204,-0.005574489042175532,-0.005188845438344393,0.008984167322636266,-0.0008822361340235784,-0.008293387424072578,0.006423300008544533,0.00390249149724315,-0.00896491048167861,0.0021410030233847974,0.007434361161677098,-0.0070945391115908776,-0.002605153786703288,0.0087627445091276,-0.003288961215575298,-0.006468148173580897,0.007584861802057748,0.001322173628641932,-0.008391166572328667,0.004309966210916445,0.005418829024186577,-0.007894256760515254,-0.00007741137080101638,0.00786600339799083,-0.005190888286691567,-0.004310799964470551,0.008025916288409504,-0.0011070829665529621,-0.00720506320694166,0.0059217096985319595,0.0031683612909959584,-0.007986059728650302,0.002211362742764597,0.006427764980119337,-0.006495570438395232,-0.002015317447555855,0.007783713328832359,-0.003217836901260242,0.005554751504162455,0.0069087623461371135,0.0008745954285802678,-0.007430450743094688,0.004111477604627807,0.004607492872683843,-0.007160672340873091,0.00023211237554265316,0.006940099051174486,-0.004879980448715341,-0.0036078872171936413,0.007253676467270752,-0.0012846752729141803,-0.006328415747875719,0.005513875305599021,0.002577865411407692,0.007192987327410233,0.002264816300126859,0.005612742616618405,-0.00600658676302084,-0.00153900633791215,0.006986458278165595,-0.0031563648778605274,-0.004811642742160233,0.006354444046560059,0.0005121690322926351,-0.006644348505237545,0.003945466543090176,0.003944527136917611,-0.006556641214801915,0.00048285236585137326,0.00617905372724083,-0.0046207470221406475,0.0030312775513807594,0.006615149291794282,-0.0014276454140797585,-0.0056048078272581455,0.005173428759011166,0.002091872012714056,-0.006534582830377916,0.004937361147319414,-0.005597398884782191,-0.0011460194895600748,0.006322024170613043,-0.003101470027877635,-0.004193641507483116,0.005889228490530021,0.00021280982010589674,-0.005986809356747114,0.003802948422578564,0.0033914042216771465,-0.006048143932118084,0.0006896153286842611,0.005540280292535628,-0.004399459866491001,-0.0025488774753354643,0.006075951734989388,-0.0015443651716269698,-0.004995508238426995,0.0048829622877020395,0.00168440940535812,-0.005976919465789322,0.002336071445060531,0.00436699417707134,-0.005247880329196343,-0.0008161230833134467,0.005757615681360099,-0.003051124871582776,-0.003670351889638602,0.005491129188702045,-0.000038414647596295,-0.005426712741594785,0.0036778730471761206,0.002921979790357042,-0.005612092537049578,0.000862504886225179,0.004994756869438384,-0.004206777101008821,-0.002138727658395496,0.005612555974717905,-0.001640603793679084,-0.00447391034918115,0.0046305252678440646,0.0013375643846813207,-0.005496598259191423,0.002358580514084293,0.003877671165064496,-0.004944102324323375,-0.0005352527185069069,0.005270443255972866,-0.003003941903847979,-0.003220575689940079,0.005144814658170978,-0.000251963241123376,-0.004942276221088671,0.0035660207544181725,0.002517890234124859,-0.005232271548429072,0.0010086524055568644,0.0045220286015450195,-0.004036124920485116,-0.001785297355488709,0.0052083240203809455,-0.001720467938676326,-0.004021136032862963,0.004407645528211705,0.00103858281312451,-0.005076963386680254,0.002374390930557525,0.003452274611672536,-0.004676123221830755,-0.000293328920583648,0.004844182283096554,-0.0029589426438823055,-0.002829080820353618,0.004839272196996332,-0.000435380175485463,-0.004517801641045534,0.00346436212758138,0.0021658606757821207,-0.004896962550898842,0.0011332360936159342,0.0041072675988673485,-0.003882746693639497,-0.0014772937632670537,0.004851162237974012,-0.001786961913692683,-0.003623422830336836,0.004208153488994983,0.0007781377996418393,-0.004705840642293678,0.0023845416920389327,0.0030782571544993855,-0.004436661150818149,-0.000082939248081345,0.004466836450525034,-0.0029154200873884777,-0.0024846425797872,0.00456639129577918,-0.000594244714662356,-0.004141693120882942,0.003370669019868411,0.001856058123530432,-0.004597490347915285,0.0012401078946157153,0.0037394657832780214,-0.003743118961844232,-0.001206309833420299,0.004532072941424919,-0.001842335860794209,-0.003270503864866559,0.004027453169436672,0.0005492514201438184,-0.004374128830803134,0.0023898217124098888,0.0027462141060571542,-0.004220263892919906,0.0001014892078418608,0.004129395888683835,-0.002872853287528974,-0.002178808909098591,0.004320070339086555,-0.000732772431855468,-0.0038052023601414537,0.0032832688759818953,0.0015810451408781274,-0.004327298885133179,0.0013321936644063676,0.0034102820608713055,-0.003614579152420938,-0.000965958591601959,0.0042442267481438865,-0.001888309967606561,-0.002954566646910544,0.003862053730280365,0.0003465992716145695,-0.004074890983889265,0.002390842639114913,0.002448959438274671,-0.004022771440620501,0.00026422738837701204,0.0038249653113078845,-0.002830852389397747,-0.001905095542674953,0.004095634147866093,-0.0008542085792722223,-0.003501607823646661,0.0032008843221029396,0.0013350931947516316,0.004081344613809632,0.0014117568426467166,0.0031132831440029004,-0.003495080560118109,-0.000751301299248045,0.0039823495988200956,-0.0019262233125530552,-0.0026695630035545965,0.0037092590208348468,0.00016604814335501283,-0.003802750032448531,0.00238808774933818,0.0021809095582688387,-0.0038409575222055825,0.0004086038740077174,0.003548180682849912,-0.00278912216160145,-0.0016584460091960713,0.0038894430832158615,-0.0009610928562487279,-0.003225662294979352,0.0031225253816182913,0.0011137192491960006,-0.003855686955326962,0.0014805770200375756,0.0028434296419308706,-0.003383026569449437,-0.0005584593235005616,0.0037423065725655123,-0.0019571353282153824,-0.002410739334022185,0.0035669562592685992,0.000004340463089199634,-0.003553476225131052,0.002381945611343005,0.0019376615497718379,-0.003672284215497602,0.0005372516695656682,0.0032948088333592442,-0.0027474371465572647,-0.0014348600868823633,0.0036986240233832955,-0.0010554420895805701,-0.0029732117153399543,0.003047415214307232,0.0009133652765595503,-0.0036472049859943957,0.0015400738095075364,0.002596719693376865,-0.003277155743961312,-0.0003843443595345254,0.003520812524978191,-0.001981896589820398,-0.0021743092640833387,0.0034334687762567285,-0.0001411261126639814,0.0023727337708766235,0.0017156978580311923,-0.003514730101806216,0.0006522814102675338,0.0030614664015164317,-0.002705624325836564,-0.0012311324328946071,0.003520881067978818,-0.0011388790574619577,-0.002740926389843438,0.0029749378100310947,0.0007311717760163106,-0.0034533971691657716,0.0015913946155659104,0.0023699365314837134,-0.0031764604545482227,-0.00022646693702463983,0.0033152266358330964,-0.0020011992261728833,-0.001957220756854529,0.0033074512487201294,-0.00027245583099065574,-0.0031107008045504225,0.002360715744923774,0.0015121752946147878,-0.0033666674657802775,0.0007554053700443383,0.00284541857387878,-0.002663550773165199,-0.001044665065235685,0.0033543596961918744,-0.001212725111614123,-0.002526107720106278,0.002904600416141118,0.0005648146273983649,-0.0032722370521445954,0.0016354780062711222,0.002160466254018691,-0.003080128151737152,-0.000082797930510248,0.0031234037829790946,-0.002015613480508536,-0.00175698733817825,0.0031878137718127416,-0.0003913689234629894,-0.002912269083932181,0.0023461134262495863,0.0013247715479915683,-0.003226772947196665,0.0008480278373982253,0.0026444323795080907,-0.002621114694188058,-0.0008733304451363718,0.0031975475558126023,-0.0012780679337996753,-0.0023265468088722987,0.0028360060700229743,0.0004123855362323381,-0.003102067489642725,0.0016731002473195156,0.001966164025988275,-0.002987498252220287,0.00004833328785673103,0.002943585209223255,-0.002025614663560462,-0.0015715637451245235,0.003073665910135281,-0.0004992857952449686,-0.002726584833597506,0.0023291162790907956,0.0011515717076079155,-0.0030939614708402024,0.0009313120391705081,0.0024566680294338806,-0.002578238813341514,-0.000715369914541897,0.0030492008505353272,-0.0013358118795590603,-0.002140419386636313,0.0027688331984681023,0.00027230306044425507,-0.0029415219008097995,0.0017049099941755753,0.0017852543316613596,-0.0028980299980183146,0.00016831488624009116,0.0027743168705652277,-0.0020316033182352874,-0.0013992529276129046,0.002964274848589291,-0.0005973900770956857,-0.0025521406810003954,0.0023098882513615314,0.0009909831370976026,-0.0029673366695994975,0.0010062304166468866,0.002280597264378061,-0.002534865417417635,-0.0005693172763382291,0.0029082889338595324,-0.0013867159137674443,-0.0019662066190262472,0.0027028202465121734,0.00014324546521498255,-0.0027894648250310636,0.001731454512834913,0.0016162555759663638,-0.0028112781592852815,0.0002783101226767328,0.002614387616968737,-0.002033920507690205,-0.001238635550763712,0.002859033660935118,-0.0006866764820938022,-0.002387678084620776,0.0022885730357688917,0.000841670763073588,-0.0028461531856580177,0.0010736028917752718,0.002114941187700384,-0.002490952588011033,-0.0004339405427495209,0.0027739520605998113,-0.0014314225634394463,-0.0018026346487828543,0.0026377539430179966,0.000024099403604626595,-0.0026449464716313343,0.0017531997460879121,0.0014579223699989954,-0.002726874431534224,0.00037930144622244015,0.002462781801289147,-0.0020328595469610695,-0.0010885158914870888,0.0027574369494554997,-0.0007679875735691736,-0.0022321391627136557,0.0022652981196188125,0.000702507285968018,-0.002729787653816416,0.0011341263410876764,0.0019586223638290937,-0.00244647130004073,-0.0003081970043560719,0.002645468786255706,-0.0014704802733878732,-0.0016486278957671848,0.0025734602342109597,-0.00008607976421486678,-0.0025071675622243285,0.0017705458451201643,0.0013092008421668711,-0.002644513025712797,0.0004721246781596627,0.0023186425320669743,-0.002028675104990842,-0.0009478798462329672,0.002659061929424631,-0.0008420423294057347,-0.0020846292530919777,0.0022401779340787444,0.0005725344463660855,-0.002617716117379471,0.0011883975459047247,0.00181072750167585,-0.002401403159898697,-0.0001911981961946872,0.00252223053520494,-0.00150436085260325,-0.0015032725941173384,0.0025097972004579777,-0.00018809898018486252,-0.0023754518425589425,0.0017838393165831475,0.0011691936682461637,-0.0025639393856203506,0.0005574957818355751,0.002181242879348386,-0.002021590337661687,-0.0008158619997894686,0.0025635535866886197,-0.0009094585606012332,-0.0019443875126433023,0.0022133163256927288,0.00045093258457585547,-0.002509496269414901,0.0012369312421345489,0.0016704780892682278,-0.0023557386219282845,-0.00008218230752615857,0.0024037215609318827,-0.001533473223012741,-0.001365788039216979,0.0024466494652647408,-0.0002826519588731703,-0.0022492243779544466,0.0017933826134725838,0.0010371324395297126,-0.002484941265751537,0.0006360320298354078,0.002049963093101947,-0.0020118025292847827,-0.0006917195525119262,0.0024706129178784933,-0.0009707706722735125,-0.0018107636100686472,0.002184808512062205,0.00033699649284626125,-0.002404753355323932,0.0012801744470596899,0.001537207069170819,-0.0023094755667628676,0.000019507746753487322,0.002289503007619787,-0.0015581743520317768,-0.0012355037060267395,0.0023839237396364385,-0.00037033867283502197,-0.0021279942584771353,0.0017994417741892838,0.0009123556323570743,-0.002407341610307096,0.0007082688896385101,0.001924272416723798,-0.001999487592035099,-0.0005748114948746359,0.002379987528811685,-0.0010264438571449548,-0.001683199086011227,0.0021547426407978825,0.00023011609295240612,-0.0023031688829249506,0.0013185179278607563,0.001410340151546865,-0.00226261815632344,0.00011444190350763413,0.0021792001238734966,-0.0015787780180434162,-0.0011118408849488351,0.002321545239227773,-0.00045168099825255704,-0.0020113407007838497,0.0018022525561288292,0.0007942908968153683,-0.0023309928205821405,0.0007746736043426581,0.001803714447662988,-0.0019848036822188407,-0.0004645818368192538,0.0022914640549012346,-0.0010768855293036537,-0.0015612123237860743,0.0021232010403929814,0.0001297608503656892,-0.002204471506490353,0.0013523054543425155,0.0012893807223029292,-0.0022151759024297097,0.0002031171523614491,0.002072491922429874,-0.0015955618922985336,-0.0009942978268588042,0.002259454778879646,-0.0005271353749706217,-0.0018989017911572215,0.0018020253971051474,0.0006824407072985435,-0.0022557721026356748,0.0008356561984161872,0.0016878952618040433,-0.0019678941272325413,-0.00036054599946802374,0.0022048620023513398,-0.001122454603471095,-0.0014443863389041823,0.0020902612296847677,0.0000354671083238826,-0.0021084296094975655,0.0013818413183534276,0.0011738975633771888,-0.002167162901846324,0.0002859690931723308,0.0019691027549326263,-0.0016087733011967177,-0.000882437638330581,0.0021976063975728925,-0.0005971031245060763,-0.0017903653004237641,0.001798949456116054,0.0005763706527763578,-0.0021815776628847307,0.0008915784597268142,0.0015764737099661576,-0.0019488898098829778,-0.0002622796945123937,0.002120028706833092,-0.0011634690778397434,-0.00133235878806569,0.002055996736555064,-0.00005317227695481571,-0.0020148452260280994,0.0014073964858683516,0.0010635147912839954,-0.002118597202116705,0.0003633814063964488,0.0018687953986439004,-0.001618633945617953,-0.0007758783501296758,0.0021359654021759706,-0.0006619389156958006,-0.001685461137567241,0.0017931959250680322,0.0004756998166979747,-0.002108325574690938,0.0009427613181347118,0.0014691534354072185,-0.0019279111220849552,-0.00016940977630202798,0.0020368351781634214,-0.0012002122704387638,-0.0012248137397222571,0.0020204777647040138,-0.0001365164731501839,-0.0019235490254383598,0.001429213661905231,0.0009579035592634622,-0.0020695002709836996,0.00043569366276668194,0.001771365346153946,-0.0016253437895462407,-0.0006742847164405341,0.002074506744423042,-0.0007219577539746244,-0.001583955109401834,0.0017849207587636168,0.0003800928237751474,-0.0020359471799921113,0.0009894909439983504,0.001365676265258973,-0.0019050695742462466,-0.00008160667009977071,0.0019551726527607546,-0.0012329379787893553,-0.0011214748532388037,0.0019837717385284585,-0.00021488374589178938,-0.0018343961478594086,0.0014475114846589161,0.0008567751719113934,-0.0020198965484687923,0.0005032078018533034,0.0016766360593018427,-0.0016290842822227678,-0.0005773614024287887,0.0020132136649767046,-0.0007774407854154982,-0.001485643728726439,0.0017742669373665958,0.00028925322595191566,-0.0019643869206406876,0.001032023817418387,0.0012658167066469663,-0.0018804691274104883,0.0000014219314192059985,0.0018749497155054894,-0.0012618747724836893,-0.0010220996923464246,0.0019459437495293614,-0.0002885573539851103,-0.0017472627252814671,0.0014624880173070333,0.000759875338937036,-0.001969813065372363,0.0005661935363351936,0.0015844550012379893,-0.0016300210419186326,-0.00048484729311842076,0.0019520765530275522,-0.0008286401427992488,-0.0013903498698962624,0.001761366350587126,0.0002029179715772622,-0.0018936005171811343,0.001070590964359338,0.0011693773369627605,-0.0018542073006706367,0.00007993634436630187,0.001796089882737794,-0.001287229582897214,-0.0009264749580346582,0.00190705692264887,-0.000357790488405239,-0.0016620429587037447,0.001474323669667731,0.000666979353589724,-0.001919279115500805,0.0006248928836065682,0.001494690300540488,-0.0016283061020082176,-0.00039651071375081354,0.0018910919809583453,-0.0008757830124216558,-0.0012979191136915354,0.001746341373859158,0.0012085275628620108,-0.001823553430342144,0.0011054015141281398,0.0010761849224576528,-0.0018263760952866859,0.00015416933249647887,0.0017185295610630813,-0.0013091907195737172,-0.0008344124713796399,0.001867172717108242,-0.00042281043082654894,-0.0015786466491034894,0.0014831836541463507,0.000577888026299939,-0.0018683259716293663,0.0006795239841810711,0.0014072279318751814,-0.0016240797990220387,-0.0003121453955687333,0.0018302618820712844,-0.0009190750631916303,-0.0012082166562672975,0.0017293061922154344,0.000042848095910588676,-0.001754219553962642,0.0011366457007577196,0.0009860871336272348,-0.0017970627684170263,0.00022432985947940388,0.001642216314245644,-0.00132793041619937,-0.000745745771673329,0.0018263511733560237,-0.00048382207139291455,-0.001496997100948329,0.0014892200590753374,0.0004924242387303761,-0.0018169866372816674,0.000730284333815972,0.0013219693212437487,-0.0016174723661781761,-0.00023156705474265918,0.0017695928459084888,-0.0009587033508575022,-0.0011211246823503444,0.0017103679163289168,-0.000031284005997565645,-0.0016855800984575933,0.0011644974061324103,0.000898949752385515,-0.0017663504827774893,0.00029060627506083647,0.0015671073840996523,-0.001343606988452282,-0.0006603272222014626,0.0017846511154448806,-0.0005410108975245877,-0.0014170293332391715,0.001492573605985117,0.00041043001032005426,-0.0017652956280132586,0.0007773535310730766,0.0012388293021558306,-0.0016086052833111516,-0.0001546104783725948,0.001709095510765675,-0.0009948387879098184,-0.001036540122601161,0.0016896275264316656,-0.00010171289829495539,-0.0016176226320130786,0.0011891163234524363,0.0008146542866641094,-0.0017343188534058138,0.0003531690319383539,0.0014931684219100807,-0.0013563666699270584,-0.0005780255370831861,0.001742130316358363,-0.0005945455437270626,-0.001338688545766597,0.0014933751444066359,0.0003317639903807079,-0.0017132887771369898,0.0008208956222786434,0.0011577343633633864,-0.001597592424277112,0.0016487840369650121,-0.0010276382522176027,-0.0009543727305231596,0.0016671806729632347,-0.0001685917126398524,-0.0015503402530239307,0.0012106498045694487,0.0007330959242867455,-0.0017010444086675823,0.00041217301165898763,0.0014203723952454072,-0.0013663451796973138,-0.0004987236591255881,0.0016988456323976096,-0.000644579975265785,-0.001261928798224407,0.0014917469276472496,0.00025629930533804004,-0.001661003061809122,0.0008610611103393504,0.001078621140041301,-0.0015845410351623059,-0.000010982519468670268,0.001588675647577043,-0.0010572463937182544,-0.0008745434264680063,0.0016431183573983941,-0.00023205945121231676,-0.0014837308722831706,0.0012292344428094005,0.0006541817707338698,-0.0016666009794538096,0.00046775952319143125,0.0013486986416117019,-0.0013736690651118403,-0.00042231693169361435,0.0016548531116204845,-0.0006912553649986834,-0.0011867118677229454,0.0014878037049223778,0.00018392170375762485,-0.0016084764461720084,0.0008979886815637,0.0010014351092189444,-0.0015695525704905507,0.00005594466207552277,0.0015287902257490346,-0.001083797187546618,-0.0007969828659632944,0.0016175275124054767,-0.0002922427865284056,-0.0014177965873931977,0.0012449974334534334,0.0005778293255745284,-0.0016310600279888488,0.0005200580262196091,0.0012781320456142983,-0.0013784568554704394,-0.0003487115180043474,0.0016102080804333118,-0.0007347017119004154,-0.0011130062565073524,0.0014816536588215525,0.00011452795221224462,-0.0015557477388619453,0.0009318066948683035,0.00092612945734861,-0.001552723409721847,0.00011976511736049848,0.001469149959770467,-0.0011074152733014948,-0.0007216301972786769,0.0015904914970633767,-0.0003492576182697266,-0.0013525431350203407,0.001258057746515065,0.0005039651604261612,-0.0015944909256388486,0.0005691876218907034,0.0012086623204786548,-0.0013808200558933436,-0.0002778230295433546,0.0015649652117235575,-0.0007750392411754451,0.0010407863267157488,0.0014733992119670871,0.000048024443351710324,-0.0015028564626857373,0.0009626344698868147,0.000852664093594242,-0.0015341454724189692,0.0001805798375757076,0.0014097790285858799,-0.0011282171131553429,-0.0006484319793394448,0.0015620905201192293,-0.00040321042418424126,-0.0012879794091582,0.0012685271403792076,0.00043252376782482155,-0.0015569611874856634,0.0006152583463028969,0.001140283378138452,-0.001380864005588963,-0.00020957533199357617,0.0015191785773452852,-0.0008123796189423287,-0.0009700315430348592,0.0014631377225859693,-0.00001567401574594861,-0.001449842734661874,0.0009905834041994542,0.0007810047870022233,-0.0015139067472927914,0.00023848140533292832,0.0013507033217300011,-0.0011463119959027066,-0.0005773412360600683,0.0015324020020463702,-0.0004541994357349061,-0.0012241170356022742,0.0012765110399913272,0.00036344655563969773,-0.0015185366701156824,0.000658372295973902,0.0010729927747985181,-0.0013786886206157503,-0.0001438995024424062,0.0014729016873054363,-0.0008468270088493829,-0.0009007258073856401,0.001450962085384556,-0.00007664526144318761,-0.0013967471549453294,0.0010157579447764558,0.0007111224094082552,-0.0014920917477833327,0.00029355504647752005,0.001291950188696457,-0.0011618029094674707,-0.0005083166272211274,0.0015015008848669618,-0.0005023156640160524,-0.0011609699945040115,0.0012821092993090522,0.00029668096591077206,-0.0014792817380055517,0.000698624609657607,0.0010067912210918668,-0.0013743890378763429,-0.00008073291603006744,0.001426187517618761,-0.0008784789934285954,-0.0008328568724236371,0.0014369612513953334,-0.00013496069974191892,-0.0013436107034079628,0.0010382564345878728,0.0006429922689646879,-0.001468781904744373,0.0003458795506288721,0.0012335482135821156,-0.0011747873006891063,-0.0004413217192995347,0.0014694598972368577,-0.0005476437972705667,-0.0010985542842111163,0.0012854168645082713,0.00023217970047962564,0.0007361043268706108,0.0009416821477331841,-0.00002001844377637972,0.0013790885284927176,-0.0009074273792894457,-0.0007664158227911079,0.0014212206782551482,-0.00019068611930432298,-0.0012904746428634454,0.0010581718519219556,0.0005765935216221548,-0.0014440559051002789,0.00039552807880841544,0.0011755270115402297,-0.0011853577381613707,-0.0003763243423359188,0.0014363497810923871,-0.0005902629878833201,-0.001036887620716606,0.001286524351779206,0.00016990003861119102,-0.0013985314407912817,0.0007708951402235772,0.0008776713190505759,-0.0013597772134087674,0.0000382962537624602,0.0013316566742453079,-0.0009337589021888669, -0.0007013966148476759,0.0014038227205496864,-0.0002438824068503528,-0.0012373804280933014,0.0010755924571681343,0.0005119086499337978,-0.0014179899839424565,0.00044256887361214276,0.0011179170441275007,-0.0011936024914151245,-0.00031329602114924806,0.001402239485171366,-0.000630247543915065,-0.0009759891679376904,0.001285518551373567,0.00010980323415663845],"x":[100.0,100.60925648702595,101.21851297405189,101.82776946107785,102.4370259481038,103.04628243512974,103.65553892215569,104.26479540918163,104.87405189620759,105.48330838323353,106.09256487025948,106.70182135728543,107.31107784431137,107.92033433133733,108.52959081836327,109.13884730538922,109.74810379241517,110.35736027944112,110.96661676646707,111.57587325349301,112.18512974051896,112.7943862275449,113.40364271457086,114.01289920159681,114.62215568862275,115.2314121756487,115.84066866267464,116.4499251497006,117.05918163672655,117.6684381237525,118.27769461077844,118.88695109780438,119.49620758483034,120.10546407185629,120.71472055888223,121.32397704590818,121.93323353293412,122.54249001996008,123.15174650698603,123.76100299401197,124.37025948103792,124.97951596806388,125.58877245508982,126.19802894211577,126.80728542914171,127.41654191616766,128.02579840319362,128.63505489021955,129.2443113772455,129.85356786427147,130.4628243512974,131.07208083832336,131.6813373253493,132.29059381237525,132.8998502994012,133.50910678642714,134.1183632734531,134.72761976047903,135.336876247505,135.94613273453095,136.55538922155688,137.16464570858284,137.77390219560877,138.38315868263473,138.9924151696607,139.60167165668662,140.21092814371258,140.8201846307385,141.42944111776447,142.03869760479043,142.64795409181636,143.25721057884232,143.86646706586825,144.4757235528942,145.08498003992017,145.6942365269461,146.30349301397206,146.91274950099802,147.52200598802395,148.1312624750499,148.74051896207584,149.3497754491018,149.95903193612776,150.5682884231537,151.17754491017965,151.78680139720558,152.39605788423154,153.0053143712575,153.61457085828343,154.2238273453094,154.83308383233532,155.44234031936128,156.05159680638724,156.66085329341317,157.27010978043913,157.87936626746506,158.48862275449102,159.09787924151698,159.7071357285429,160.31639221556887,160.9256487025948,161.53490518962076,162.14416167664672,162.75341816367265,163.3626746506986,163.97193113772454,164.5811876247505,165.19044411177646,165.7997005988024,166.40895708582835,167.01821357285428,167.62747005988024,168.2367265469062,168.84598303393213,169.4552395209581,170.06449600798402,170.67375249500998,171.28300898203594,171.89226546906187,172.50152195608783,173.11077844311376,173.72003493013972,174.32929141716568,174.9385479041916,175.54780439121757,176.1570608782435,176.76631736526946,177.37557385229542,177.98483033932135,178.5940868263473,179.20334331337327,179.8125998003992,180.42185628742516,181.0311127744511,181.64036926147705,182.249625748503,182.85888223552894,183.4681387225549,184.07739520958083,184.6866516966068,185.29590818363275,185.90516467065868,186.51442115768464,187.12367764471057,187.73293413173653,188.3421906187625,188.95144710578842,189.56070359281438,190.1699600798403,190.77921656686627,191.38847305389223,191.99772954091816,192.60698602794412,193.21624251497005,193.825499001996,194.43475548902197,195.0440119760479,195.65326846307386,196.2625249500998,196.87178143712575,197.4810379241517,198.09029441117764,198.6995508982036,199.30880738522953,199.9180638722555,200.52732035928145,201.13657684630738,201.74583333333334,202.35508982035927,202.96434630738523,203.5736027944112,204.18285928143712,204.79211576846308,205.401372255489,206.01062874251497,206.61988522954093,207.22914171656686,207.83839820359282,208.44765469061878,209.0569111776447,209.66616766467067,210.2754241516966,210.88468063872256,211.49393712574852,212.10319361277445,212.7124500998004,213.32170658682634,213.9309630738523,214.54021956087826,215.1494760479042,215.75873253493015,216.36798902195608,216.97724550898204,217.586501996008,218.19575848303393,218.8050149700599,219.41427145708582,220.02352794411178,220.63278443113774,221.24204091816367,221.85129740518963,222.46055389221556,223.06981037924152,223.67906686626748,224.2883233532934,224.89757984031937,225.5068363273453,226.11609281437126,226.72534930139722,227.33460578842315,227.9438622754491,228.55311876247504,229.162375249501,229.77163173652696,230.3808882235529,230.99014471057885,231.59940119760478,232.20865768463074,232.8179141716567,233.42717065868263,234.0364271457086,234.64568363273452,235.25494011976048,235.86419660678644,236.47345309381237,237.08270958083833,237.69196606786429,238.30122255489022,238.91047904191618,239.5197355289421,240.12899201596807,240.73824850299403,241.34750499001996,241.95676147704592,242.56601796407185,243.1752744510978,243.78453093812377,244.3937874251497,245.00304391217566,245.6123003992016,246.22155688622755,246.8308133732535,247.44006986027944,248.0493263473054,248.65858283433133,249.2678393213573,249.87709580838325,250.48635229540918,251.09560878243514,251.70486526946107,252.31412175648703,252.92337824351299,253.53263473053892,254.14189121756488,254.7511477045908,255.36040419161677,255.96966067864273,256.57891716566866,257.1881736526946,257.7974301397206,258.40668662674653,259.01594311377244,259.6251996007984,260.23445608782436,260.8437125748503,261.4529690618763,262.0622255489022,262.67148203592814,263.2807385229541,263.88999500998005,264.499251497006,265.1085079840319,265.7177644710579,266.32702095808384,266.9362774451098,267.54553393213575,268.15479041916166,268.7640469061876,269.3733033932136,269.98255988023953,270.5918163672655,271.2010728542914,271.81032934131736,272.4195858283433,273.0288423153693,273.63809880239523,274.24735528942114,274.8566117764471,275.46586826347306,276.075124750499,276.684381237525,277.2936377245509,277.90289421157684,278.5121506986028,279.12140718562875,279.7306636726547,280.3399201596806,280.9491766467066,281.55843313373254,282.1676896207585,282.77694610778445,283.38620259481036,283.9954590818363,284.6047155688623,285.21397205588823,285.8232285429142,286.4324850299401,287.04174151696606,287.650998003992,288.260254491018,288.86951097804393,289.47876746506984,290.0880239520958,290.69728043912176,291.3065369261477,291.9157934131737,292.5250499001996,293.13430638722554,293.7435628742515,294.35281936127745,294.9620758483034,295.5713323353293,296.1805888223553,296.78984530938123,297.3991017964072,298.00835828343315,298.61761477045906,299.226871257485,299.836127744511,300.44538423153693,301.0546407185629,301.6638972055888,302.27315369261476,302.8824101796407,303.4916666666667,304.10092315369263,304.71017964071854,305.3194361277445,305.92869261477045,306.5379491017964,307.1472055888224,307.7564620758483,308.36571856287424,308.9749750499002,309.58423153692615,310.1934880239521,310.802744510978,311.412000998004,312.02125748502993,312.6305139720559,313.23977045908185,313.8490269461078,314.4582834331337,315.0675399201597,315.67679640718563,316.2860528942116,316.89530938123755,317.50456586826346,318.1138223552894,318.7230788423154,319.33233532934133,319.9415918163673,320.5508483033932,321.16010479041915,321.7693612774451,322.3786177644711,322.98787425149703,323.59713073852294,324.2063872255489,324.81564371257485,325.4249001996008,326.0341566866268,326.6434131736527,327.25266966067863,327.8619261477046,328.47118263473055,329.0804391217565,329.6896956087824,330.2989520958084,330.90820858283433,331.5174650698603,332.12672155688625,332.73597804391216,333.3452345309381,333.9544910179641,334.56374750499003,335.173003992016,335.7822604790419,336.39151696606785,337.0007734530938,337.6100299401198,338.21928642714573,338.82854291417163,339.4377994011976,340.04705588822355,340.6563123752495,341.2655688622755,341.8748253493014,342.48408183632733,343.0933383233533,343.70259481037925,344.3118512974052,344.9211077844311,345.5303642714571,346.13962075848303,346.748877245509,347.35813373253495,347.96739021956085,348.5766467065868,349.1859031936128,349.79515968063873,350.4044161676647,351.0136726546906,351.62292914171655,352.2321856287425,352.8414421157685,353.45069860279443,354.05995508982033,354.6692115768463,355.27846806387225,355.8877245508982,356.4969810379242,357.1062375249501,357.71549401197603,358.324750499002,358.93400698602795,359.5432634730539,360.1525199600798,360.7617764471058,361.37103293413173,361.9802894211577,362.58954590818365,363.19880239520955,363.8080588822355,364.4173153692615,365.02657185628743,365.6358283433134,366.2450848303393,366.85434131736525,367.4635978043912,368.0728542914172,368.68211077844313,369.29136726546903,369.900623752495,370.50988023952095,371.1191367265469,371.7283932135729,372.3376497005988,372.94690618762473,373.5561626746507,374.16541916167665,374.7746756487026,375.38393213572857,375.9931886227545,376.60244510978043,377.2117015968064,377.82095808383235,378.4302145708583,379.0394710578842,379.6487275449102,380.25798403193613,380.8672405189621,381.47649700598805,382.08575349301395,382.6950099800399,383.3042664670659,383.91352295409183,384.5227794411178,385.1320359281437,385.74129241516965,386.3505489021956,386.9598053892216,387.56906187624753,388.17831836327343,388.7875748502994,389.39683133732535,390.0060878243513,390.61534431137727,391.2246007984032,391.83385728542913,392.4431137724551,393.05237025948105,393.661626746507,394.2708832335329,394.8801397205589,395.48939620758483,396.0986526946108,396.70790918163675,397.31716566866265,397.9264221556886,398.5356786427146,399.14493512974053,399.7541916167665,400.3634481037924,400.97270459081835,401.5819610778443,402.19121756487027,402.80047405189623,403.40973053892213,404.0189870259481,404.62824351297405,405.2375,405.84675648702597,406.4560129740519,407.06526946107783,407.6745259481038,408.28378243512975,408.8930389221557,409.5022954091816,410.1115518962076,410.72080838323353,411.3300648702595,411.93932135728545,412.54857784431135,413.1578343313373,413.7670908183633,414.37634730538923,414.9856037924152,415.5948602794411,416.20411676646705,416.813373253493,417.42262974051897,418.03188622754493,418.64114271457083,419.2503992015968,419.85965568862275,420.4689121756487,421.07816866267467,421.6874251497006,422.29668163672653,422.9059381237525,423.51519461077845,424.1244510978044,424.7337075848303,425.3429640718563,425.95222055888223,426.5614770459082,427.17073353293415,427.77999001996005,428.389246506986,428.998502994012,429.60775948103793,430.2170159680639,430.8262724550898,431.43552894211575,432.0447854291417,432.65404191616767,433.26329840319363,433.87255489021953,434.4818113772455,435.09106786427145,435.7003243512974,436.30958083832337,436.91883732534933,437.52809381237523,438.1373502994012,438.74660678642715,439.3558632734531,439.96511976047907,440.574376247505,441.18363273453093,441.7928892215569,442.40214570858285,443.0114021956088,443.6206586826347,444.22991516966067,444.83917165668663,445.4484281437126,446.05768463073855,446.66694111776445,447.2761976047904,447.88545409181637,448.49471057884233,449.1039670658683,449.7132235528942,450.32248003992015,450.9317365269461,451.54099301397207,452.15024950099803,452.75950598802393,453.3687624750499,453.97801896207585,454.5872754491018,455.19653193612777,455.8057884231537,456.41504491017963,457.0243013972056,457.63355788423155,458.2428143712575,458.8520708582834,459.46132734530937,460.07058383233533,460.6798403193613,461.28909680638725,461.89835329341315,462.5076097804391,463.11686626746507,463.72612275449103,464.335379241517,464.9446357285429,465.55389221556885,466.1631487025948,466.77240518962077,467.38166167664673,467.99091816367263,468.6001746506986,469.20943113772455,469.8186876247505,470.42794411177647,471.0372005988024,471.64645708582833,472.2557135728543,472.86497005988025,473.4742265469062,474.0834830339321,474.69273952095807,475.30199600798403,475.91125249501,476.52050898203595,477.12976546906185,477.7390219560878,478.34827844311377,478.95753493013973,479.5667914171657,480.1760479041916,480.78530439121755,481.3945608782435,482.00381736526947,482.61307385229543,483.22233033932133,483.8315868263473,484.44084331337325,485.0500998003992,485.65935628742517,486.26861277445107,486.87786926147703,487.487125748503,488.09638223552895,488.7056387225549,489.3148952095808,489.92415169660677,490.53340818363273,491.1426646706587,491.75192115768465,492.36117764471055,492.9704341317365,493.57969061876247,494.18894710578843,494.7982035928144,495.4074600798403,496.01671656686625,496.6259730538922,497.23522954091817,497.84448602794413,498.4537425149701,499.062999001996,499.67225548902195,500.2815119760479,500.89076846307387,501.5000249500998,502.10928143712573,502.7185379241517,503.32779441117765,503.9370508982036,504.54630738522957,505.15556387225547,505.76482035928143,506.3740768463074,506.98333333333335,507.5925898203593,508.2018463073852,508.81110279441117,509.42035928143713,510.0296157684631,510.63887225548905,511.24812874251495,511.8573852295409,512.4666417165669,513.0758982035928,513.6851546906188,514.2944111776447,514.9036676646707,515.5129241516966,516.1221806387225,516.7314371257485,517.3406936127744,517.9499500998004,518.5592065868263,519.1684630738523,519.7777195608783,520.3869760479042,520.9962325349302,521.605489021956,522.214745508982,522.824001996008,523.4332584830339,524.0425149700599,524.6517714570858,525.2610279441118,525.8702844311377,526.4795409181637,527.0887974051897,527.6980538922156,528.3073103792415,528.9165668662674,529.5258233532934,530.1350798403193,530.7443363273453,531.3535928143713,531.9628493013972,532.5721057884232,533.1813622754491,533.7906187624751,534.399875249501,535.0091317365269,535.6183882235529,536.2276447105788,536.8369011976048,537.4461576846307,538.0554141716567,538.6646706586827,539.2739271457086,539.8831836327346,540.4924401197604,541.1016966067864,541.7109530938123,542.3202095808383,542.9294660678643,543.5387225548902,544.1479790419162,544.7572355289421,545.3664920159681,545.9757485029941,546.5850049900199,547.1942614770459,547.8035179640718,548.4127744510978,549.0220309381237,549.6312874251497,550.2405439121757,550.8498003992016,551.4590568862276,552.0683133732535,552.6775698602794,553.2868263473054,553.8960828343313,554.5053393213573,555.1145958083832,555.7238522954092,556.3331087824351,556.9423652694611,557.5516217564871,558.160878243513,558.7701347305389,559.3793912175648,559.9886477045908,560.5979041916167,561.2071606786427,561.8164171656687,562.4256736526946,563.0349301397206,563.6441866267465,564.2534431137725,564.8626996007984,565.4719560878243,566.0812125748503,566.6904690618762,567.2997255489022,567.9089820359281,568.5182385229541,569.1274950099801,569.736751497006,570.346007984032,570.9552644710578,571.5645209580838,572.1737774451097,572.7830339321357,573.3922904191617,574.0015469061876,574.6108033932136,575.2200598802395,575.8293163672655,576.4385728542915,577.0478293413173,577.6570858283433,578.2663423153692,578.8755988023952,579.4848552894211,580.0941117764471,580.7033682634731,581.312624750499,581.921881237525,582.531137724551,583.1403942115768,583.7496506986027,584.3589071856287,584.9681636726547,585.5774201596806,586.1866766467066,586.7959331337325,587.4051896207585,588.0144461077845,588.6237025948104,589.2329590818364,589.8422155688622,590.4514720558882,591.0607285429141,591.6699850299401,592.2792415169661,592.888498003992,593.497754491018,594.107010978044,594.7162674650699,595.3255239520959,595.9347804391217,596.5440369261477,597.1532934131736,597.7625499001996,598.3718063872255,598.9810628742515,599.5903193612775,600.1995758483034,600.8088323353294,601.4180888223553,602.0273453093812,602.6366017964071,603.2458582834331,603.8551147704591,604.464371257485,605.073627744511,605.682884231537,606.2921407185629,606.9013972055889,607.5106536926148,608.1199101796407,608.7291666666666,609.3384231536926,609.9476796407185,610.5569361277445,611.1661926147705,611.7754491017964,612.3847055888224,612.9939620758483,613.6032185628743,614.2124750499001,614.8217315369261,615.4309880239521,616.040244510978,616.649500998004,617.25875748503,617.8680139720559,618.4772704590819,619.0865269461078,619.6957834331338,620.3050399201596,620.9142964071856,621.5235528942115,622.1328093812375,622.7420658682635,623.3513223552894,623.9605788423154,624.5698353293413,625.1790918163673,625.7883483033933,626.3976047904191,627.0068612774451,627.616117764471,628.225374251497,628.834630738523,629.4438872255489,630.0531437125749,630.6624001996008,631.2716566866268,631.8809131736527,632.4901696606786,633.0994261477045,633.7086826347305,634.3179391217565,634.9271956087824,635.5364520958084,636.1457085828343,636.7549650698603,637.3642215568863,637.9734780439122,638.5827345309381,639.191991017964,639.80124750499,640.410503992016,641.0197604790419,641.6290169660679,642.2382734530938,642.8475299401198,643.4567864271457,644.0660429141717,644.6752994011975,645.2845558882235,645.8938123752495,646.5030688622754,647.1123253493014,647.7215818363273,648.3308383233533,648.9400948103793,649.5493512974052,650.1586077844312,650.7678642714571,651.377120758483,651.986377245509,652.5956337325349,653.2048902195609,653.8141467065868,654.4234031936128,655.0326596806387,655.6419161676647,656.2511726546907,656.8604291417166,657.4696856287425,658.0789421157684,658.6881986027944,659.2974550898203,659.9067115768463,660.5159680638723,661.1252245508982,661.7344810379242,662.3437375249501,662.9529940119761,663.562250499002,664.1715069860279,664.7807634730539,665.3900199600798,665.9992764471058,666.6085329341317,667.2177894211577,667.8270459081837,668.4363023952096,669.0455588822356,669.6548153692614,670.2640718562874,670.8733283433133,671.4825848303393,672.0918413173653,672.7010978043912,673.3103542914172,673.9196107784431,674.5288672654691,675.1381237524951,675.7473802395209,676.3566367265469,676.9658932135728,677.5751497005988,678.1844061876247,678.7936626746507,679.4029191616767,680.0121756487026,680.6214321357286,681.2306886227545,681.8399451097804,682.4492015968063,683.0584580838323,683.6677145708583,684.2769710578842,684.8862275449102,685.4954840319361,686.1047405189621,686.7139970059881,687.323253493014,687.9325099800399,688.5417664670658,689.1510229540918,689.7602794411177,690.3695359281437,690.9787924151697,691.5880489021956,692.1973053892216,692.8065618762475,693.4158183632735,694.0250748502993,694.6343313373253,695.2435878243513,695.8528443113772,696.4621007984032,697.0713572854291,697.6806137724551,698.2898702594811,698.899126746507,699.508383233533,700.1176397205588,700.7268962075848,701.3361526946107,701.9454091816367,702.5546656686627,703.1639221556886,703.7731786427146,704.3824351297405,704.9916916167665,705.6009481037925,706.2102045908183,706.8194610778443,707.4287175648702,708.0379740518962,708.6472305389221,709.2564870259481,709.8657435129741,710.475]} From c87b701fd055c86e532d6aa7bd73857081528786 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Sat, 30 Nov 2024 14:36:12 +0600 Subject: [PATCH 55/63] "updated data" --- .../base/special/cosc/test/fixtures/julia/large_negative.json | 2 +- .../base/special/cosc/test/fixtures/julia/large_positive.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_negative.json b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_negative.json index bd57c2f131bd..0b7bad707761 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_negative.json +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_negative.json @@ -1 +1 @@ -{"expected":[0.0013547037113347895, -0.0000807956876221718, -0.0013032639667194465, 0.0009482068870398611, 0.0006745102501778074, -0.001398701036391238, 0.00025511140617038176, 0.001231346230584686, -0.001074968663345115, -0.0005181201119173311, 0.0014216185571673107, -0.00042702148347733025, -0.0011399129246253451, 0.0011863359506705917, 0.0003524234202626832, -0.0014229228410855826, 0.0005938738241727665, 0.0010301941145362998, -0.0012804704349695787, -0.00017987537870003565, 0.00140240582782545, -0.0007530705608912709, -0.0009037097221536861, 0.0013557809447670621, 0.0000030571377718707023, -0.0013601908085928882, 0.0009021080880637263, 0.000762248885617534, -0.001410949824205016, 0.00017536242255163458, 0.0012967334229852475, -0.0010386160079544026, -0.0006078450522015659, 0.001444955378254702, -0.00035266657261132317, -0.001212817615884715, 0.001160394389504229, 0.00044274714479037317, -0.0014570900164287215, 0.0005261316848492781, 0.0011095465725173002, -0.001265448760988005, -0.00026938720523775474, 0.0014469737831970728, -0.0006930686463979134, -0.0009883287258697965, 0.0013520222868440303, 0.0000903449744877041, -0.0014145630303817145, 0.0008508641090433622, 0.0008508590059251824, -0.0014186246169134592, 0.00009169008045177478, 0.001360154058132409, -0.0009970209502991277, -0.0006990955735160111, 0.0014640569422268608, -0.000273958739654358, -0.0012843816256291212, 0.0011291973258828055, 0.0005352323519175099, -0.0014874328448115865, 0.00045367341552932057, 0.0011882123093087482, -0.0012452437098238959, -0.00036166773545217716, 0.0014881945889650484, -0.0006280603358161669, -0.0010729327640675254, 0.0013432373436467375, 0.00018096991543062484, -0.0014661245672588682, 0.0007944018925443293, 0.0009401330203411319, -0.001421513550163131, 0.0000041606813552708405, 0.0014213516852222207, -0.0009500785172057222, -0.0007916850261117803, 0.0014786934100407651, -0.00019093129845403745, -0.0013543525432042052, 0.001092609443960716, 0.0006297167164952489, -0.001513707349843874, 0.00037649851659016454, 0.0012659473512370428, -0.0012196917338999505, -0.00045658196359657543, 0.0015258142480099389, -0.0005580110665201201, -0.0011572905916696521, 0.0013292369541028804, 0.0002748268245898326, -0.0015146157294215219, 0.0007326531501917343, 0.0010298565237693276, -0.001419404935307132, -0.0000871525655820983, 0.0014800653889474754, -0.0008976876191457946, -0.0008854197031583646, 0.0014886340709551725, -0.00010362400829849387, -0.0014224727585456364, 0.0010504983554987801, 0.0007260307657468327, -0.0015356676678149066, 0.00029461234075870053, 0.0013425019101924835, -0.0011886312069928466, -0.0005539877994904816, 0.0015595759135523688, -0.0004828914172044976, -0.0012411646668722455, 0.0013098328436288525, 0.000371803696788109, -0.001559773088862285, 0.0006655539214355818, 0.001119808474950421, -0.0014120869290345202, -0.0001821699444987325, 0.0015360297201346303, -0.0008397505962122639, -0.0009800990722710569, 0.0014936470347427858, -0.000012082633562118818, -0.0014884794421914723, 0.001002734138631755, 0.0008239981660159816, -0.0015530657694749028, 0.00020802561615795354, 0.0014176204183044931, -0.0011519019622020293, -0.0006537364115868861, 0.0015892196477864141, -0.0004026765981064286, -0.001324311245373624, 0.0012848371684576459, 0.0004717820572621097, -0.001601329282305607, 0.0005930440357804758, 0.001209761354630049, -0.001399347091928632, -0.0002808056880908206, 0.0015889745504669025, -0.0007761726582259575, -0.0010755160012907254, 0.001493498812968621, 0.00008364156528344845, -0.0015521044591574015, 0.0009491887628076483, 0.0009234360190147013, -0.0015656510730402656, 0.00011675388673043968, 0.0014910415080324963, -0.0011093447096899164, -0.0007556725955324662, 0.0016144820759964645, -0.0003173458452866967, -0.0014064804332868071, 0.0012540619351463428, 0.0005746374032370305, -0.001639012716054636, 0.0005150664666651442, 0.0012994812972224315, -0.0013809718196049208, -0.00038296849162193237, 0.0016386248377328408, -0.0007068612053224373, -0.001171456973799591, 0.0014879537724232842, 0.0001834924161350856, -0.0016130742041211917, 0.0008897353845127761, 0.0010241551652235626, -0.0015731699312458885, 0.00002081686083027429, 0.0015624979264808913, -0.0010608003173058305, -0.0008596351682608805, 0.0016350959190562714, -0.0002268817073594422, -0.0014874161892034815, 0.0012173182770880795, 0.0006802396901026667, -0.0016725471560730407, 0.0004315665630916138, 0.0013887281884543768, -0.0013567456272535812, -0.0004885620909910042, 0.001684700285726826, -0.0006317250129068736, -0.001267702289124706, 0.0014767734408503833, 0.0002874095032711035, -0.0016711093432376957, 0.0008242474956709999, 0.0011259604917798801, -0.001575364972266403, -0.00007976234293958172, 0.0016317163708284177, -0.0010061089341635691, -0.0009654573877758732, 0.00165078938420024, -0.0001312692109642777, -0.0015668562642780527, 0.001174415566580659, 0.0007884538653756159, -0.0017016511836868426, 0.0003424911425445918, 0.0014772557201856893, -0.001326450264944019, -0.0005974859112113801, 0.001726914880121767, -0.0005506732619279683, -0.0013640262407515064, 0.0014597156415146837, 0.00039532892858686535, -0.0017259244452978487, 0.0007525979032353455, 0.001228651241804266, -0.0015719742706548267, -0.00018495806565081184, 0.0016984172294524898, -0.0009451089335665544, -0.0010729673989072611, 0.001661285390290855, -0.00003049488862279803, -0.0016445320672256467, 0.0011251603370166614, 0.0008991404543089199, -0.001726037493699713, 0.00024778742560041067, 0.001564811392092487, -0.0012898636368187189, -0.0007096357929776761, 0.001764976278206041, -0.00046361439174522084, -0.001460197266031743, 0.001436533428745041, 0.000507184177627449, -0.001777227481767969, 0.000674657514398865, 0.00133202132166688, -0.00156273031995636, -0.0002947431093167844, 0.0017623142104823681, -0.000877635647114696, -0.0011819887055091163, 0.001666300599301433, 0.00007545435059294183, -0.001720168438740381, 0.0010693549848474252, 0.0010121562019183683, -0.001745412007306744, 0.00014740178873846635, 0.0016511364480105326, -0.0012467584920977039, -0.000824904806584821, 0.0017985850261659484, -0.0003704547484106175, -0.0015559780588197732, 0.0014069737911784298, 0.0006229071044094275, -0.0018247191713425997, 0.0005902938967499593, 0.0014358596021465707, -0.0015473587731087322, -0.00040908988827713117, 0.0018231138360421772, -0.0008035198562322182, -0.0012923406698205954, 0.0016655442201938262, 0.00018659253114650036, -0.001793483316878165, 0.0010067962149082539, 0.0011273547772512299, -0.0017594727667576981, 0.000041278307104481494, 0.0017359657324539587, -0.0011969008493819785, -0.0009431841645042748, 0.0018274335723979269, -0.0002710969955758644, -0.0016511256351399062, 0.0013707760827104684, 0.0007424290519804935, -0.00186809213982328, 0.0004993695764387398, 0.0015399502087727337, -0.0015255769098995785, -0.0005279717534373561, 0.0018805147761284148, -0.0007225860004102376, -0.0014038390399976253, 0.0016587165444956848, 0.0003029361304048649, -0.0018641872713166035, 0.0009372731851725981, 0.001244587547141574, -0.001767908571983687, -0.00007064294701466004, 0.001819027449976163, -0.0011400481077436108, -0.0010643642464006253, 0.001851205038888994, -0.00016543824836932645, -0.001745391340096121, 0.0013276701328527232, 0.0008656821293697544, -0.0019070298601475478, 0.0004017400295718484, 0.0016440727958303557, -0.001497091782212573, -0.0006513645170375858, 0.001934206990728874, -0.0006346500528024415, -0.001516296507251425, 0.001645507164331991, 0.0004245058420226607, -0.001931982879861685, 0.0008605652976278858, 0.0013637044283728588, -0.001770397311003485, -0.00018842789163571238, 0.0019000428065088439, -0.0010759467881396132, -0.001188335753540991, 0.0018695717046640732, -0.00005336788189944519, -0.0018385207818808228, 0.001277373977757365, 0.0009926006702249384, -0.0019412053299194317, 0.00029725131227624507, 0.0017480027975165621, -0.001461597977150028, -0.0007792482118121587, 0.001983870642094948, -0.0005395170029724589, -0.0016295232945085845, 0.0016255928129608088, 0.0005513286258134423, -0.001996563914913043, 0.0007764395702118473, 0.0014845548293781336, -0.0017666039254032608, -0.00031215075946379835, 0.001978725507397669, -0.0010043298361499748, -0.0013149910134956538, 0.0018821931452067371, 0.00006523504478393731, -0.0019302536757934293, 0.00121959114012798, 0.0011231229042780496, -0.00197027943440858, 0.0001857372625655396, 0.0018515116484738036, -0.0014187749246990387, -0.0009116091261999297, 0.0020291747306823236, -0.00043697787294943866, -0.0017433277792032718, 0.0015986347543833063, 0.0006834400964041006, -0.002057614300462889, 0.0006846475099158881, 0.0016069886953264476, -0.0017561779389238068, -0.00044189682196529775, 0.0020547810812882685, -0.000924913401277372, -0.0014442254610202551, 0.0018887139590349805, 0.00019050482219140212, -0.002020323577477254, 0.0011540073696987736, 0.0012571928801716147, -0.0019938989311213623, 0.00006701619155428091, 0.001954366964371749, -0.0013682836596523428, -0.0010484421671581607, 0.0020697753976417197, -0.00032680617547592265, -0.0018575171536168295, 0.0015642756315222446, 0.0008208873153475731, -0.002114806791173445, 0.0005849213883971327, 0.0017308576739632033, -0.0017387504603644185, -0.0005777655908631226, 0.0021279059919595707, -0.0008373929879722209, -0.0015759393274069119, 0.0018887609964433434, 0.00032259267171214843, -0.002108457479875395, 0.001080286734963944, 0.001394762687582223, -0.002011693976974357, -0.00005911303823240705, 0.0020563326712171428, -0.0013097629259196974, -0.00118975361469297, 0.0021053138232110837, -0.00020875370130148883, -0.0019718981272838277, 0.0015221356607010913, 0.0009637320672402408, -0.0021678013135686, 0.00047696979744544284, 0.001856016424031703, -0.0017139305505458158, -0.0007198745938893284, 0.0021977864911968837, -0.0007414388479506905, -0.001710039578692244, 0.0018819399847625016, 0.0004616709873948873, -0.0021943752423985398, 0.0009980669299919115, 0.0015357950386404534, -0.0020232750997985173, -0.00019287567511988858, 0.002157169069536608, -0.0012428244836759758, -0.0013355643483811204, 0.002135413633009919, -0.00008254549414108325, -0.002086277677373812, 0.001471808032235511, 0.0011120547207021769, -0.0022162428945968872, 0.00036047233086660476, 0.0019823240938429947, -0.0016813008154832301, -0.0008683638461668274, 0.0022640971542257967, -0.0006366904504157665, -0.0018464421536346634, 0.0018678314178941348, 0.0006079383796059332, -0.0022777888130631504, 0.0009069536255053677, 0.0016802662841747047, -0.0020282294910227887, -0.0003345266414862465, 0.0022566328163104625, -0.0011670474441282275, -0.0014859136469817132, 0.0021596777018512473, 0.000052126164563939965, -0.0022004638547518025, 0.0014128533408522363, 0.0012659588013796477, -0.002259759083718625, 0.00023507319950256223, 0.0021096460050277683, -0.0016404120522097252, -0.001023401170443738, 0.0023264990242386242, -0.0005227498240867952, -0.0019850745659288306, 0.001845985543403536, 0.0007616256991976205, -0.002358401194327346, 0.0008065136485334798, 0.0018281699604799845, -0.0020261164640949622, -0.0004843572008288365, 0.0023544768032919714, -0.0010819714102674675, -0.0016408636893333395, 0.0021776842155512956, 0.00019560898640798272, -0.0023142666557928993, 0.001344792822667871, 0.0014255764383847252, -0.0022979567497804936, 0.00010037353418774666, 0.002237855586182944, -0.0015907767271142368, -0.0011851885608450449, 0.0023846372729855784, -0.000399173509234325, -0.0021258789528945453, 0.0018159162354149194, 0.0009230032695449639, -0.0024359050902366514, 0.0006962667161435547, 0.001979520988699499, -0.0020164618809029073, -0.0006427029872791327, 0.002450449904790678, -0.000987088141197953, -0.001800504920237381, 0.002188981813041323, 0.0003482994098797584, -0.0024274989730837166, 0.0012671001137905078, 0.0015910748905164122, -0.0023304181012463888, -0.000044077936768902254, 0.0023668366138935256, -0.0015318610054256782, -0.001353969839436061, 0.0024381382586629034, -0.00026546278450737025, -0.0022688156762295845, 0.0017770934822175044, 0.001092389617953013, -0.0025099811551988287, 0.0005756753713361169, 0.0021343606837075416, -0.0019987512926954686, -0.0008099537296421507, 0.0025442965606447443, -0.0008818313773366211, -0.001964962491939191, 0.0021930835805900606, 0.0005106532072056255, -0.0025399776422338474, 0.0011791911639856172, 0.0017626644181687673, -0.0023566957350428758, -0.00019879623938598944, 0.0024964858354924735, -0.001463074969254794, -0.001530039927233223, 0.002486605828160687, -0.00012105173600676296, -0.002413867611433986, 0.0017289341386817713, 0.0012701620832085382, -0.002580295741700469, 0.0004441326661140349, 0.0022927627756755874, -0.001972421467695404, -0.0009865650998982871, 0.0026357561503106623, -0.0007655643567508414, -0.002134404054368892, 0.002189459602589641, 0.0006831984439253481, -0.002651524607416087, 0.0010804118298356992, 0.0019406078462820622, -0.002376306461372235, -0.0003643740597202241, 0.0026267160704976575, -0.0013837605529496157, -0.0017137561482245644, 0.0025296166649513016, 0.000034707394495985634, -0.0025610453040654834, 0.0016707904878264113, 0.0014567697904261782, -0.0026464980133760834, 0.0003009469983920406, 0.0024548407096760707, -0.0019368498777891272, -0.001173073247657159, 0.0027245621007780264, -0.0006375644088933338, -0.0023090492514388186, 0.0021775276826247157, 0.0008665514188882714, -0.0027619682355313354, 0.000970022524825429, 0.0021252322709704383, -0.0023887235736716667, -0.0005414988913267221, 0.002757459918124462, -0.0012931765775929733, -0.0019055521159241642, 0.0025667144219387096, 0.00020256232181570192, -0.0027103932272024775, 0.0016019360127128843, 0.0016527496392927396, -0.0027082162479200797, 0.000145323321770831, 0.0026207565729643874, -0.0018913415811198165, -0.0013701127606770697, 0.002810440653028644, -0.0004970038162400278, -0.0024891813951397625, 0.0021566417250689263, 0.001061436413811674, -0.0028711448187372325, 0.0008471791034789813, 0.0023169435085278484, -0.002393367126251661, -0.0007309743348312319, 0.0028886742397965016, -0.0011904800659197834, -0.002105954930892532, 0.0025974022938652177, 0.00038338327120382367, -0.0028619974513478114, 0.00152154758373791, 0.0018587461639833708, -0.002765053096824816, -0.00002366031001679429, 0.002790732115172501, -0.0018351127513965846, -0.001578439036768815, 0.0028931091869769695, -0.00034292586533190184, -0.002675161946364342, 0.0021260770975594003, 0.0012687103586074481, -0.0029789003185666904, 0.0007109088807827979, 0.002516244086856667, -0.0023895916350291377, -0.0009337467671136857, 0.003020345642812604, -0.0010747027418020788, -0.0023156066647885315, 0.002621133566636676, 0.000578191288854967, -0.0030159951442838167, 0.0014286829949348705, 0.0020755364168775236, -0.0028165794891525583, -0.00020708225886436032, 0.0029650624868568366, -0.001767269846440751, -0.001798956392851174, 0.0029722739702945553, -0.0001742146347053001, -0.0028674486500515025, 0.0020850120581596514, 0.0014893939046305106, -0.0030850924235387156, 0.0005600803033799138, 0.0027237558600478485, -0.0023766704113478677, -0.0011509390262720578, 0.0031524972711655073, -0.000944721231149214, -0.002535291452063555, 0.0026372995168084503, 0.0007881940917085772, -0.0031725864671218675, 0.001322252402236547, 0.0023040614402268177, -0.002862326754451317, -0.00040621477392256184, 0.00314413354684658, -0.0016867830453422348, -0.002032753715756088, 0.0030476271477672167, 0.000010443459467447214, -0.003066618480062424, 0.002032503997466293, 0.0017247109421280908, -0.0031895930183452807, 0.0003933642458398518, 0.002940248723286901, -0.002353775448358615, -0.001383893364972016, 0.003285197322313439, -0.0007992189323926111, -0.0027659699999084534, 0.002645213801524426, 0.0010148319025038792, -0.003332049643745805, 0.0012009816759006562, 0.002545466475403285, -0.0029017763803053636, -0.0006225720274055461, 0.003328443908914344, -0.0015924520660502677, -0.0022811501417379643, 0.003118842718040162, 0.00021260909091546715, -0.003273396988673603, 0.0019674587690340314, 0.0019761393762922036, -0.0032922911998881786, 0.00020918412732348792, 0.0031666774730095683, -0.0023199513626289883, -0.001634226794577804, 0.003418569870328521, -0.0006366367365831912, -0.0030088240303862692, 0.0026440921439659336, 0.0012598366706163262, -0.003494760284275169, 0.001063364899867917, 0.0028011529033121828, -0.002934346589360426, -0.0008579723517619172, 0.0035186333604454337, -0.0014828617267755452, -0.002545754238746632, 0.0031855711431956887, 0.00043415424397465, -0.003488696292234716, 0.001888590689422907, 0.0022454771055622157, -0.0033930970290241267, 0.000005650913192499937, 0.0034042296826838755, -0.0022740812867014584, -0.0019039032092643656, 0.0035528088109410714, -0.0004551086273186753, -0.003265314194853116, 0.002633025629187354, 0.0015253094743248815, -0.0036612164864952214, 0.0009076021097281176, 0.0030728461454490254, -0.002959374582048727, -0.0011146198246699613, 0.0037155199635688805, -0.0013563235147129459, -0.0028285416161358966, 0.003247432086787555, 0.0006773466507474863, -0.0037136648619296186, 0.0017943697683721394, 0.0025349288117075606, -0.003491946285305544, -0.00021952260507919025, 0.0036543886845817595, -0.002214841709427901, -0.002195328555105364, 0.003688196091642597, -0.00025237648509934, -0.0035372565233594373, 0.002610945196425534, 0.001813822974066581, -0.0038320718978705035, 0.0007315166614986601, 0.003362685595945867, -0.0029760927854201014, -0.0013952126006072886, 0.003920149160636111, -0.0012107977810680507, -0.003131958056029333, 0.003304004550686577, 0.0009449622704642685, -0.003949753693213043, 0.0016829511968560731, 0.002847221672715811, -0.003588806608730732, -0.0004691363725577534, 0.003919017583745264, -0.0021406419055429848, -0.0025114781376802003, 0.0038251259134401486, -0.000025675843658351994, -0.0038269247725933784, 0.0025765738099458087, 0.002128558926620813, -0.00400817991767983, 0.0005324440447496531, 0.0036733454489608027, -0.002983596678450504, -0.0017030888132176184, 0.004133859743939744, -0.0010437886748349008, -0.0034590585677355093, 0.0033548133355710214, 0.0012404373066203006, -0.004198805573354927, 0.0015520797741002954, 0.003185761939967464, -0.0036836855895401683, -0.0007466584551357202, 0.004200473047897744, -0.002049541510873765, -0.0028560695126704223, 0.003964137394679802, 0.00022841962692416896, -0.004137189583835514, 0.002528361083744647, 0.0024734956235665704, -0.004190653758641417, 0.0003070799592868503, 0.004008199614485443, -0.002980800567077726, -0.0020424261917921347, 0.004358373937524645, -0.00085220002642136, -0.003813697915434379, 0.003399310208441568, 0.0015680769840600635, -0.004463177515213355, 0.0013989582835384846, 0.003554850314085739, -0.0037766416410359694, -0.0010564392749878415, 0.004501762036534591, -0.001939136520816675, -0.003233801245768079, 0.004105959449068848, 0.000514213397770696, -0.0044717109562876145, 0.002464392436606633, 0.0028536677886692725, -0.004380949519793316, 0.00005126914533958198, 0.004371550776810562, -0.0029663757776967037, -0.0024185199873410098, 0.004595922632856326, -0.0006321341765756877, -0.004200796374251804, 0.003436847291328768, 0.0019333474571114617, -0.0047459117758271606, 0.00122006294628007, 0.003959983656586422, -0.00386779892400547, -0.0014040124470626539, 0.004826761733952957, -0.0018063987061389085, -0.0036506888528957575, 0.004251573658933658, 0.0008371897247658959, -0.004835209581830085, 0.0023822604782920303, 0.0032755339015726045, -0.004580983361802097, -0.00024029382919008106, 0.004768954803937296, -0.002938662628690503, -0.0028381775827842075, 0.004849423004116559, -0.00037860558334130637, -0.0046267178887502425, 0.003466638752221918, 0.00234329222540852, -0.0050509796547719985, 0.001010879404146449, 0.004408286376083229, -0.003957368294960692, -0.0017965260083968458, 0.0051805346738834435, -0.0016474446906578038, -0.004114547487767546, 0.004402304276763221, 0.0012044510685232154, -0.005233857607857723, 0.002278879031424871, 0.0037475066359412444, -0.004793300436349271, -0.0005744978182695184, 0.005207690370608879, -0.002895542315413263, -0.003310291279025752, 0.005122736101896184, -0.00008512393347279112, -0.0050998204018382915, 0.0034877044441904955, 0.0028071397807011207, -0.005383637093464925, 0.0007655162817273357, 0.004909141618215741, -0.004045677424447709, -0.0022433751194696635, 0.005569790989575047, -0.0014571959950693695, -0.004635702115673863, 0.0045599501966769665, 0.0016253634931936824, -0.005675855138867154, 0.0021502076378048596, 0.004280737739177769, -0.005021324495129338, -0.0009604580617864856, 0.005697455868660635, -0.0028342457756066275, -0.0038466908083074564, 0.0054210499954930646, 0.0002569282692796746, -0.005631277434697094, 0.0034987848582339574, 0.003337213470713887, -0.005750956990830993, 0.00047612461878117763, 0.005475139369483285, -0.004133215252738841, -0.0027571553486116073, 0.006003584843767999, -0.0012288649379611043, -0.005228061019195341, 0.0047269837991979514, 0.0021125353435652605, -0.006172304493934396, 0.001990832002869692, 0.00489031220956995, -0.0052697371801788085, -0.001410497669310586, 0.006251433354155008, -0.002751060266739374, -0.004463449147865219, 0.005751466336222394, 0.0006592523885540782, -0.0062363410064963, 0.0034982089335954467, 0.003950334848851749, -0.006162650123669278, 0.00013199906500908725, 0.006123544209342765, -0.004220699554410047, -0.00335514356573874, 0.0064943963990856, -0.0009531526966268518, -0.005910789848248992, 0.004906860016925549, 0.002683348909639425, -0.006738578726857232, 0.001793304214277542, 0.0055971246051854115, -0.0055450732369569395, -0.001941695551176384, 0.006887966943517756, -0.0026408636819176944, -0.005182950281506858, 0.0061239287785205595, 0.0011381546125841119, -0.006936349874034019, 0.0034836813230158105, 0.0046700638878554674, -0.0066323755725483545, -0.00028186307557073325, 0.0068786485812995565, -0.004309183074290942, -0.0040616818074014445, 0.007059873870387442, -0.0006169522533266929, -0.006711018639932747, 0.005104514344799083, 0.0033624475453091995, -0.0073965445596385114, 0.0015470654647430713, 0.0064309400583428804, -0.005856690308896832, -0.002578422795003161, 0.007633313986809691, -0.002496355992781392, -0.006037293627906552, 0.006552750954942039, 0.0017170617784941012, -0.007762052474095189, 0.0034519256225490572, 0.005530422653822114, -0.007179919026460862, -0.0007871690515931938, 0.007775704786464712, -0.004400226705933887, -0.004912179217463582, 0.007725758930150378, -0.00020115879683434935, -0.007668410900047257, 0.00532720005471169, 0.004185954333502705, -0.008178334646508224, 0.001236606881218663, 0.00743561554320637, -0.006218420815771098, -0.0033566915953508808, 0.008526364664715425, -0.0023067302785138803, -0.007074165127271343, 0.007059250483814346, 0.0024308841484176635, -0.008759371974002388, 0.003398055655281611, 0.0065823908540602605, -0.007834993073048623, -0.001416555091290831, 0.00886782717905587, -0.0044961948661743955, -0.005960176981577017, 0.008531053351332635, 0.00032322167973112447, -0.008843282866721848, 0.005585968886779005, 0.005209013447131452, -0.00913309493737156, 0.0008381560025935678, 0.008678497434581016, -0.00665154020315913, -0.00433203228848895, 0.009627195972428683, -0.0020552409383396146, -0.008367546697812643, 0.0076765515374688734, 0.003334027568792741, -0.01],"x":[-709.0895,-708.481626247505,-707.87375249501,-707.2658787425149,-706.65800499002,-706.050131237525,-705.4422574850299,-704.8343837325349,-704.22650998004,-703.6186362275449,-703.0107624750499,-702.4028887225548,-701.7950149700599,-701.1871412175649,-700.5792674650698,-699.9713937125748,-699.3635199600799,-698.7556462075848,-698.1477724550898,-697.5398987025948,-696.9320249500998,-696.3241511976048,-695.7162774451098,-695.1084036926147,-694.5005299401198,-693.8926561876248,-693.2847824351297,-692.6769086826347,-692.0690349301398,-691.4611611776447,-690.8532874251497,-690.2454136726546,-689.6375399201597,-689.0296661676647,-688.4217924151696,-687.8139186626746,-687.2060449101797,-686.5981711576846,-685.9902974051896,-685.3824236526946,-684.7745499001996,-684.1666761477046,-683.5588023952096,-682.9509286427145,-682.3430548902196,-681.7351811377246,-681.1273073852295,-680.5194336327345,-679.9115598802396,-679.3036861277445,-678.6958123752495,-678.0879386227545,-677.4800648702595,-676.8721911177645,-676.2643173652694,-675.6564436127744,-675.0485698602795,-674.4406961077844,-673.8328223552894,-673.2249486027944,-672.6170748502994,-672.0092010978044,-671.4013273453094,-670.7934535928143,-670.1855798403194,-669.5777060878244,-668.9698323353293,-668.3619585828343,-667.7540848303394,-667.1462110778443,-666.5383373253493,-665.9304635728543,-665.3225898203593,-664.7147160678643,-664.1068423153692,-663.4989685628742,-662.8910948103793,-662.2832210578842,-661.6753473053892,-661.0674735528942,-660.4595998003992,-659.8517260479042,-659.2438522954092,-658.6359785429141,-658.0281047904192,-657.4202310379242,-656.8123572854291,-656.2044835329341,-655.5966097804392,-654.9887360279441,-654.3808622754491,-653.772988522954,-653.1651147704591,-652.5572410179641,-651.949367265469,-651.341493512974,-650.7336197604791,-650.125746007984,-649.517872255489,-648.909998502994,-648.302124750499,-647.694250998004,-647.086377245509,-646.4785034930139,-645.870629740519,-645.262755988024,-644.6548822355289,-644.0470084830339,-643.439134730539,-642.8312609780439,-642.2233872255489,-641.6155134730539,-641.0076397205589,-640.3997659680639,-639.7918922155689,-639.1840184630738,-638.5761447105789,-637.9682709580838,-637.3603972055888,-636.7525234530938,-636.1446497005988,-635.5367759481038,-634.9289021956088,-634.3210284431137,-633.7131546906188,-633.1052809381238,-632.4974071856287,-631.8895334331337,-631.2816596806388,-630.6737859281437,-630.0659121756487,-629.4580384231537,-628.8501646706587,-628.2422909181637,-627.6344171656687,-627.0265434131736,-626.4186696606787,-625.8107959081836,-625.2029221556886,-624.5950484031936,-623.9871746506986,-623.3793008982036,-622.7714271457086,-622.1635533932135,-621.5556796407186,-620.9478058882236,-620.3399321357285,-619.7320583832335,-619.1241846307386,-618.5163108782435,-617.9084371257485,-617.3005633732535,-616.6926896207585,-616.0848158682635,-615.4769421157685,-614.8690683632734,-614.2611946107785,-613.6533208582835,-613.0454471057884,-612.4375733532934,-611.8296996007984,-611.2218258483034,-610.6139520958084,-610.0060783433133,-609.3982045908184,-608.7903308383234,-608.1824570858283,-607.5745833333333,-606.9667095808384,-606.3588358283433,-605.7509620758483,-605.1430883233533,-604.5352145708583,-603.9273408183633,-603.3194670658683,-602.7115933133732,-602.1037195608783,-601.4958458083833,-600.8879720558882,-600.2800983033932,-599.6722245508982,-599.0643507984032,-598.4564770459082,-597.8486032934131,-597.2407295409182,-596.6328557884232,-596.0249820359281,-595.4171082834331,-594.8092345309382,-594.2013607784431,-593.5934870259481,-592.985613273453,-592.3777395209581,-591.7698657684631,-591.161992015968,-590.554118263473,-589.9462445109781,-589.338370758483,-588.730497005988,-588.122623253493,-587.514749500998,-586.906875748503,-586.299001996008,-585.6911282435129,-585.083254491018,-584.475380738523,-583.8675069860279,-583.2596332335329,-582.651759481038,-582.0438857285429,-581.4360119760479,-580.8281382235529,-580.2202644710579,-579.6123907185629,-579.0045169660679,-578.3966432135728,-577.7887694610779,-577.1808957085829,-576.5730219560878,-575.9651482035928,-575.3572744510979,-574.7494006986028,-574.1415269461078,-573.5336531936127,-572.9257794411178,-572.3179056886228,-571.7100319361277,-571.1021581836327,-570.4942844311378,-569.8864106786427,-569.2785369261477,-568.6706631736527,-568.0627894211577,-567.4549156686627,-566.8470419161677,-566.2391681636726,-565.6312944111777,-565.0234206586827,-564.4155469061876,-563.8076731536926,-563.1997994011977,-562.5919256487026,-561.9840518962076,-561.3761781437125,-560.7683043912176,-560.1604306387226,-559.5525568862275,-558.9446831337325,-558.3368093812376,-557.7289356287425,-557.1210618762475,-556.5131881237525,-555.9053143712575,-555.2974406187625,-554.6895668662675,-554.0816931137724,-553.4738193612775,-552.8659456087825,-552.2580718562874,-551.6501981037924,-551.0423243512975,-550.4344505988024,-549.8265768463074,-549.2187030938123,-548.6108293413174,-548.0029555888224,-547.3950818363273,-546.7872080838323,-546.1793343313374,-545.5714605788423,-544.9635868263473,-544.3557130738523,-543.7478393213573,-543.1399655688623,-542.5320918163673,-541.9242180638722,-541.3163443113773,-540.7084705588823,-540.1005968063872,-539.4927230538922,-538.8848493013973,-538.2769755489022,-537.6691017964072,-537.0612280439121,-536.4533542914172,-535.8454805389222,-535.2376067864271,-534.6297330339321,-534.0218592814372,-533.4139855289421,-532.8061117764471,-532.1982380239521,-531.5903642714571,-530.9824905189621,-530.374616766467,-529.766743013972,-529.1588692614771,-528.550995508982,-527.943121756487,-527.335248003992,-526.727374251497,-526.119500499002,-525.511626746507,-524.9037529940119,-524.295879241517,-523.688005489022,-523.0801317365269,-522.4722579840319,-521.864384231537,-521.2565104790419,-520.6486367265469,-520.0407629740519,-519.4328892215569,-518.8250154690619,-518.2171417165669,-517.6092679640718,-517.0013942115769,-516.3935204590819,-515.7856467065868,-515.1777729540918,-514.5698992015969,-513.9620254491018,-513.3541516966068,-512.7462779441117,-512.1384041916168,-511.5305304391218,-510.92265668662674,-510.31478293413176,-509.7069091816367,-509.09903542914174,-508.4911616766467,-507.8832879241517,-507.2754141716567,-506.6675404191617,-506.05966666666666,-505.4517929141717,-504.84391916167664,-504.23604540918166,-503.6281716566866,-503.02029790419164,-502.4124241516966,-501.8045503992016,-501.1966766467066,-500.5888028942116,-499.98092914171656,-499.3730553892216,-498.76518163672654,-498.15730788423156,-497.5494341317365,-496.94156037924154,-496.3336866267465,-495.7258128742515,-495.1179391217565,-494.5100653692615,-493.90219161676646,-493.2943178642715,-492.68644411177644,-492.07857035928146,-491.4706966067864,-490.86282285429144,-490.2549491017964,-489.6470753493014,-489.0392015968064,-488.4313278443114,-487.82345409181636,-487.2155803393214,-486.60770658682634,-485.99983283433136,-485.3919590818363,-484.78408532934134,-484.1762115768463,-483.5683378243513,-482.9604640718563,-482.3525903193613,-481.74471656686626,-481.1368428143713,-480.52896906187624,-479.92109530938126,-479.3132215568862,-478.70534780439124,-478.0974740518962,-477.4896002994012,-476.8817265469062,-476.2738527944112,-475.66597904191616,-475.0581052894212,-474.45023153692614,-473.84235778443116,-473.2344840319361,-472.62661027944114,-472.0187365269461,-471.4108627744511,-470.8029890219561,-470.1951152694611,-469.58724151696606,-468.9793677644711,-468.37149401197604,-467.76362025948106,-467.155746506986,-466.54787275449104,-465.939999001996,-465.332125249501,-464.724251497006,-464.116377744511,-463.50850399201596,-462.900630239521,-462.29275648702594,-461.68488273453096,-461.0770089820359,-460.46913522954094,-459.8612614770459,-459.2533877245509,-458.6455139720559,-458.0376402195609,-457.42976646706586,-456.8218927145709,-456.21401896207584,-455.60614520958086,-454.9982714570858,-454.39039770459084,-453.7825239520958,-453.1746501996008,-452.5667764471058,-451.9589026946108,-451.35102894211576,-450.7431551896208,-450.13528143712574,-449.52740768463076,-448.9195339321357,-448.31166017964074,-447.7037864271457,-447.0959126746507,-446.4880389221557,-445.8801651696607,-445.27229141716566,-444.6644176646707,-444.05654391217564,-443.44867015968066,-442.8407964071856,-442.23292265469064,-441.6250489021956,-441.0171751497006,-440.4093013972056,-439.8014276447106,-439.19355389221556,-438.5856801397206,-437.97780638722554,-437.36993263473056,-436.7620588822355,-436.15418512974054,-435.5463113772455,-434.9384376247505,-434.3305638722555,-433.7226901197605,-433.11481636726546,-432.5069426147705,-431.89906886227544,-431.29119510978046,-430.6833213572854,-430.07544760479044,-429.4675738522954,-428.8597000998004,-428.2518263473054,-427.6439525948104,-427.03607884231536,-426.4282050898204,-425.82033133732534,-425.21245758483036,-424.6045838323353,-423.99671007984034,-423.3888363273453,-422.7809625748503,-422.1730888223553,-421.5652150698603,-420.95734131736526,-420.3494675648703,-419.74159381237524,-419.13372005988026,-418.5258463073852,-417.91797255489024,-417.3100988023952,-416.7022250499002,-416.0943512974052,-415.4864775449102,-414.87860379241516,-414.2707300399202,-413.66285628742514,-413.05498253493016,-412.4471087824351,-411.83923502994014,-411.2313612774451,-410.6234875249501,-410.0156137724551,-409.4077400199601,-408.79986626746506,-408.1919925149701,-407.58411876247504,-406.97624500998006,-406.368371257485,-405.76049750499004,-405.152623752495,-404.54475,-403.936876247505,-403.32900249501,-402.72112874251496,-402.11325499002,-401.50538123752494,-400.89750748502996,-400.2896337325349,-399.68175998003994,-399.0738862275449,-398.4660124750499,-397.8581387225549,-397.2502649700599,-396.64239121756486,-396.0345174650699,-395.42664371257484,-394.81876996007986,-394.2108962075848,-393.60302245508984,-392.9951487025948,-392.3872749500998,-391.7794011976048,-391.1715274451098,-390.56365369261476,-389.9557799401198,-389.34790618762474,-388.74003243512976,-388.1321586826347,-387.52428493013974,-386.9164111776447,-386.3085374251497,-385.7006636726547,-385.0927899201597,-384.48491616766466,-383.8770424151697,-383.26916866267464,-382.66129491017966,-382.0534211576846,-381.44554740518964,-380.8376736526946,-380.2297999001996,-379.6219261477046,-379.0140523952096,-378.40617864271456,-377.7983048902196,-377.19043113772454,-376.58255738522956,-375.9746836327345,-375.36680988023954,-374.7589361277445,-374.1510623752495,-373.5431886227545,-372.9353148702595,-372.32744111776447,-371.7195673652695,-371.11169361277445,-370.50381986027946,-369.8959461077844,-369.28807235528944,-368.6801986027944,-368.0723248502994,-367.4644510978044,-366.8565773453094,-366.24870359281437,-365.6408298403194,-365.03295608782435,-364.42508233532936,-363.8172085828343,-363.20933483033934,-362.6014610778443,-361.9935873253493,-361.3857135728543,-360.7778398203593,-360.16996606786427,-359.5620923153693,-358.95421856287425,-358.34634481037926,-357.7384710578842,-357.13059730538924,-356.5227235528942,-355.9148498003992,-355.3069760479042,-354.6991022954092,-354.09122854291417,-353.4833547904192,-352.87548103792415,-352.26760728542916,-351.6597335329341,-351.05185978043914,-350.4439860279441,-349.8361122754491,-349.2282385229541,-348.6203647704591,-348.01249101796407,-347.4046172654691,-346.79674351297405,-346.18886976047907,-345.580996007984,-344.97312225548905,-344.365248502994,-343.757374750499,-343.149500998004,-342.541627245509,-341.93375349301397,-341.325879740519,-340.71800598802395,-340.11013223552897,-339.5022584830339,-338.89438473053895,-338.2865109780439,-337.6786372255489,-337.0707634730539,-336.4628897205589,-335.85501596806387,-335.2471422155689,-334.63926846307385,-334.03139471057887,-333.4235209580838,-332.81564720558885,-332.2077734530938,-331.5998997005988,-330.9920259481038,-330.3841521956088,-329.77627844311377,-329.1684046906188,-328.56053093812375,-327.95265718562877,-327.3447834331337,-326.73690968063875,-326.1290359281437,-325.5211621756487,-324.9132884231537,-324.3054146706587,-323.69754091816367,-323.0896671656687,-322.48179341317365,-321.87391966067867,-321.2660459081836,-320.65817215568865,-320.0502984031936,-319.4424246506986,-318.8345508982036,-318.2266771457086,-317.61880339321357,-317.0109296407186,-316.40305588822355,-315.79518213572857,-315.1873083832335,-314.57943463073855,-313.9715608782435,-313.3636871257485,-312.7558133732535,-312.1479396207585,-311.54006586826347,-310.9321921157685,-310.32431836327345,-309.71644461077847,-309.10857085828343,-308.50069710578845,-307.8928233532934,-307.2849496007984,-306.6770758483034,-306.0692020958084,-305.46132834331337,-304.8534545908184,-304.24558083832335,-303.63770708582837,-303.02983333333333,-302.42195958083835,-301.8140858283433,-301.2062120758483,-300.5983383233533,-299.9904645708583,-299.38259081836327,-298.7747170658683,-298.16684331337325,-297.55896956087827,-296.95109580838323,-296.34322205588825,-295.7353483033932,-295.1274745508982,-294.5196007984032,-293.9117270459082,-293.30385329341317,-292.6959795409182,-292.08810578842315,-291.48023203592817,-290.87235828343313,-290.26448453093815,-289.6566107784431,-289.0487370259481,-288.4408632734531,-287.8329895209581,-287.22511576846307,-286.6172420159681,-286.00936826347305,-285.40149451097807,-284.79362075848303,-284.18574700598805,-283.577873253493,-282.96999950099803,-282.362125748503,-281.754251996008,-281.14637824351297,-280.538504491018,-279.93063073852295,-279.32275698602797,-278.71488323353293,-278.10700948103795,-277.4991357285429,-276.89126197604793,-276.2833882235529,-275.6755144710579,-275.06764071856287,-274.4597669660679,-273.85189321357285,-273.24401946107787,-272.63614570858283,-272.02827195608785,-271.4203982035928,-270.81252445109783,-270.2046506986028,-269.5967769461078,-268.98890319361277,-268.3810294411178,-267.77315568862275,-267.16528193612777,-266.55740818363273,-265.94953443113775,-265.3416606786427,-264.73378692614773,-264.1259131736527,-263.5180394211577,-262.91016566866267,-262.3022919161677,-261.69441816367265,-261.08654441117767,-260.47867065868263,-259.87079690618765,-259.2629231536926,-258.65504940119763,-258.0471756487026,-257.4393018962076,-256.83142814371257,-256.2235543912176,-255.61568063872255,-255.00780688622754,-254.39993313373253,-253.79205938123752,-253.1841856287425,-252.5763118762475,-251.9684381237525,-251.36056437125748,-250.75269061876247,-250.14481686626746,-249.53694311377245,-248.92906936127744,-248.32119560878243,-247.71332185628742,-247.1054481037924,-246.4975743512974,-245.8897005988024,-245.28182684630738,-244.67395309381237,-244.06607934131736,-243.45820558882235,-242.85033183632734,-242.24245808383233,-241.63458433133732,-241.0267105788423,-240.4188368263473,-239.8109630738523,-239.20308932135728,-238.59521556886227,-237.98734181636726,-237.37946806387225,-236.77159431137724,-236.16372055888223,-235.55584680638722,-234.9479730538922,-234.3400993013972,-233.7322255489022,-233.12435179640718,-232.51647804391217,-231.90860429141716,-231.30073053892215,-230.69285678642714,-230.08498303393213,-229.47710928143712,-228.8692355289421,-228.2613617764471,-227.6534880239521,-227.04561427145708,-226.43774051896207,-225.82986676646706,-225.22199301397205,-224.61411926147704,-224.00624550898203,-223.39837175648702,-222.790498003992,-222.182624251497,-221.574750499002,-220.96687674650698,-220.35900299401197,-219.75112924151696,-219.14325548902195,-218.53538173652694,-217.92750798403193,-217.31963423153692,-216.7117604790419,-216.1038867265469,-215.4960129740519,-214.88813922155688,-214.28026546906187,-213.67239171656686,-213.06451796407185,-212.45664421157684,-211.84877045908183,-211.24089670658682,-210.6330229540918,-210.0251492015968,-209.4172754491018,-208.80940169660678,-208.20152794411177,-207.59365419161676,-206.98578043912175,-206.37790668662674,-205.77003293413173,-205.16215918163672,-204.55428542914171,-203.9464116766467,-203.3385379241517,-202.73066417165668,-202.12279041916167,-201.51491666666666,-200.90704291417165,-200.29916916167664,-199.69129540918163,-199.08342165668662,-198.47554790419161,-197.8676741516966,-197.2598003992016,-196.65192664670658,-196.04405289421157,-195.43617914171656,-194.82830538922155,-194.22043163672654,-193.61255788423153,-193.00468413173652,-192.39681037924151,-191.7889366267465,-191.1810628742515,-190.57318912175649,-189.96531536926148,-189.35744161676647,-188.74956786427146,-188.14169411177645,-187.53382035928144,-186.92594660678643,-186.31807285429142,-185.7101991017964,-185.1023253493014,-184.49445159680639,-183.88657784431138,-183.27870409181637,-182.67083033932136,-182.06295658682635,-181.45508283433134,-180.84720908183633,-180.23933532934132,-179.6314615768463,-179.0235878243513,-178.41571407185629,-177.80784031936128,-177.19996656686627,-176.59209281437126,-175.98421906187625,-175.37634530938124,-174.76847155688623,-174.16059780439122,-173.5527240518962,-172.9448502994012,-172.3369765469062,-171.72910279441118,-171.12122904191617,-170.51335528942116,-169.90548153692615,-169.29760778443114,-168.68973403193613,-168.08186027944112,-167.4739865269461,-166.8661127744511,-166.2582390219561,-165.65036526946108,-165.04249151696607,-164.43461776447106,-163.82674401197605,-163.21887025948104,-162.61099650698603,-162.00312275449102,-161.395249001996,-160.787375249501,-160.179501497006,-159.57162774451098,-158.96375399201597,-158.35588023952096,-157.74800648702595,-157.14013273453094,-156.53225898203593,-155.92438522954092,-155.3165114770459,-154.7086377245509,-154.1007639720559,-153.49289021956088,-152.88501646706587,-152.27714271457086,-151.66926896207585,-151.06139520958084,-150.45352145708583,-149.84564770459082,-149.2377739520958,-148.6299001996008,-148.0220264471058,-147.41415269461078,-146.80627894211577,-146.19840518962076,-145.59053143712575,-144.98265768463074,-144.37478393213573,-143.76691017964072,-143.1590364271457,-142.5511626746507,-141.9432889221557,-141.33541516966068,-140.72754141716567,-140.11966766467066,-139.51179391217565,-138.90392015968064,-138.29604640718563,-137.68817265469062,-137.0802989021956,-136.4724251497006,-135.8645513972056,-135.25667764471058,-134.64880389221557,-134.04093013972056,-133.43305638722555,-132.82518263473054,-132.21730888223553,-131.60943512974052,-131.0015613772455,-130.3936876247505,-129.7858138722555,-129.17794011976048,-128.57006636726547,-127.96219261477046,-127.35431886227545,-126.74644510978044,-126.13857135728543,-125.53069760479042,-124.92282385229541,-124.3149500998004,-123.70707634730539,-123.09920259481038,-122.49132884231537,-121.88345508982036,-121.27558133732535,-120.66770758483034,-120.05983383233533,-119.45196007984032,-118.84408632734531,-118.2362125748503,-117.62833882235529,-117.02046506986028,-116.41259131736527,-115.80471756487026,-115.19684381237525,-114.58897005988024,-113.98109630738523,-113.37322255489022,-112.76534880239521,-112.1574750499002,-111.54960129740519,-110.94172754491018,-110.33385379241517,-109.72598003992016,-109.11810628742515,-108.51023253493014,-107.90235878243513,-107.29448502994012,-106.68661127744511,-106.0787375249501,-105.47086377245509,-104.86299001996008,-104.25511626746507,-103.64724251497006,-103.03936876247505,-102.43149500998004,-101.82362125748503,-101.21574750499002,-100.60787375249501,-100.0]} +{"expected":[0.0013547037113347225,-0.00008079568762223632,-0.0013032639667195508,0.0009482068870398874,0.0006745102501779503,-0.001398701036391261,0.000255111406170193,0.0012313462305846283,-0.0010749686633450609,-0.0005181201119177229,0.001421618557167307,-0.00042702148347751787,-0.0011399129246253469,0.0011863359506704022,0.0003524234202627142,-0.0014229228410856157,0.0005938738241728375,0.0010301941145364818,-0.0012804704349696006,-0.00017987537870032522, 0.001402405827825416, -0.0007530705608911163,-0.0009037097221535848,0.0013557809447669912,0.0000030571377722841856,-0.0013601908085929216, 0.00090210808806338,0.000762248885617645,-0.0014109498242049442,0.0001753624225516151, 0.001296733422985409,-0.0010386160079543679,-0.0006078450522017952,0.001444955378254708,-0.00035266657261104876,-0.001212817615884697,0.0011603943895041257,0.00044274714479023526,-0.0014570900164287276,0.0005261316848493853,0.0011095465725173583,-0.0012654487609877864,-0.0002693872052378724,0.0014469737831970422,-0.0006930686463979073,-0.000988328725870059,0.0013520222868440158,0.00009034497448808978,-0.0014145630303816937,0.0008508641090431388,0.0008508590059251448, -0.001418624616913376, 0.00009169008045193419,0.0013601540581324836,-0.0009970209502992236,-0.0006990955735162068,0.0014640569422267953,-0.00027395873965425173,-0.0012843816256290141,0.0011291973258827153,0.0005352323519178338,-0.0014874328448115856,0.00045367341552896007,0.0011882123093087816,-0.0012452437098237502,-0.0003616677354521192, 0.0014881945889650763,-0.0006280603358161934,-0.0010729327640676513,0.0013432373436468015,0.00018096991543083507,-0.0014661245672588433,0.0007944018925442475,0.0009401330203414861, -0.0014215135501630888,0.000004160681355470407,0.0014213516852222246,-0.0009500785172054345,-0.0007916850261118165,0.0014786934100406806,-0.00019093129845411085,-0.0013543525432043336,0.0010926094439607458,0.0006297167164955381, -0.0015137073498438882,0.00037649851658996944,0.0012659473512369715,-0.0012196917338998107,-0.00045658196359700174,0.001525814248009943,-0.0005580110665203211,-0.0011572905916697484,0.0013292369541027006,0.0002748268245898618,-0.0015146157294215843,0.0007326531501916804,0.0010298565237695327,-0.0014194049353070193,-0.00008715256558205705,0.0014800653889474682,-0.0008976876191456397,-0.0008854197031585339,0.0014886340709551128,-0.00010362400829825569,-0.0014224727585456776,0.001050498355498692,0.0007260307657469527,-0.001535667667814884,0.00029461234075868443,0.0013425019101925,-0.0011886312069928156,-0.0005539877994905418,0.001559575913552362,-0.0004828914172042128,-0.0012411646668722214,0.0013098328436288655, 0.0003718036967882991,-0.001559773088862306,0.0006655539214353752,0.0011198084749505927,-0.001412086929034473,-0.00018216994449885557,0.0015360297201346615,-0.0008397505962121314,-0.0009800990722710716,0.0014936470347427743,-0.000012082633562067368,-0.0014884794421914952,0.0010027341386315309,0.0008239981660159353,-0.0015530657694749106,0.00020802561615797507,0.0014176204183045842,-0.0011519019622018793,-0.0006537364115870995,0.001589219647786393,-0.00040267659810632063,-0.0013243112453736956,0.0012848371684575598,0.00047178205726226374,-0.0016013292823056078,0.0005930440357804405,0.0012097613546300848,-0.0013993470919285973,-0.00028080568809111265,0.001588974550466894, -0.0007761726582259892, -0.0010755160012907107,0.0014934988129685427,0.00008364156528367147,-0.0015521044591574695,0.00094918876280744,0.0009234360190147964,-0.0015656510730402305,0.00011675388673029073,0.0014910415080325629,-0.0011093447096898986,-0.0007556725955325025,0.001614482075996456,-0.0003173458452866235,-0.0014064804332869617,0.0012540619351463758,0.0005746374032369982,-0.0016390127160546362,0.0005150664666649428,0.0012994812972225718,-0.001380971819604787,-0.0003829684916221887,0.0016386248377328533,-0.0007068612053223135,-0.0011714569737996997,0.0014879537724232096,0.00018349241613511245,-0.0016130742041212014,0.0008897353845127244,0.0010241551652236242,-0.001573169931245789,0.00002081686083032396,0.00156249792648088,-0.0010608003173058424,-0.0008596351682610671,0.001635095919056224,-0.00022688170735919174,-0.0014874161892036053,0.0012173182770879943,0.0006802396901027961,-0.0016725471560730281,0.00043156656309144325,0.0013887281884543937,-0.0013567456272535535,-0.000488562090991066,0.0016847002857268295,-0.0006317250129069341,-0.0012677022891246742, 0.0014767734408503983,0.0002874095032710903,-0.0016711093432377332,0.0008242474956707887,0.0011259604917800744,-0.0015753649722662988,-0.00007976234293971042,0.0016317163708284598,-0.0010061089341634364,-0.000965457387776023,0.0016507893842002315,-0.00013126921096422736,-0.00156685626427808,0.0011744155665805965,0.0007884538653755591,-0.001701651183686849,0.00034249114254461993,0.0014772557201856835,-0.001326450264943872,-0.0005974859112116129,0.001726914880121763,-0.0005506732619276986,-0.001364026240751589,0.0014597156415146022,0.00039532892858703026,-0.0017259244452978689,0.0007525979032353132, 0.0012286512418043039,-0.001571974270654796, -0.00018495806565090112,0.0016984172294524755,-0.0009451089335665918,-0.0010729673989072401,0.001661285390290858,-0.000030494888622561294,-0.0016445320672257356,0.001125160337016451,0.0008991404543091707,-0.0017260374936996859,0.00024778742560025563,0.0015648113920925678,-0.0012898636368185866,-0.0007096357929777118,0.001764976278206037,-0.000463614391745148,-0.0014601972660317963,0.001436533428745077,0.0005071841776274079,-0.0017772274817679677,0.0006746575143988709,0.001332021321667042,-0.0015627303199562336,-0.0002947431093170613,0.0017623142104824195,-0.000877635647114571,-0.001181988705509238,0.0016663005993013656,0.00007545435059314086, -0.0017201684387403934,0.0010693549848473762,0.001012156201918434,-0.0017454120073067193,0.00014740178873852566,0.0016511364480105157,-0.0012467584920977201,-0.0008249048065848174,0.001798585026165915,-0.0003704547484103538,-0.0015559780588199226,0.0014069737911782346,0.0006229071044095671,-0.0018247191713425983,0.0005902938967497829,0.001435859602146698,-0.0015473587731087077,-0.0004090898882771942,0.0018231138360421866,-0.000803519856232126,-0.0012923406698205542,0.001665544220193843, 0.0001865925311464803,-0.0017934833168781646,0.0010067962149080377,0.001127354777251449,-0.0017594727667576057,0.00004127830710416601,0.0017359657324540131,-0.001196900849381846,-0.0009431841645044406,0.0018274335723978863,-0.0002710969955758156,-0.001651125635139938,0.0013707760827104086,0.0007424290519805918,-0.001868092139823284,0.0004993695764387755,0.0015399502087727235,-0.0015255769098995776,-0.0005279717534376103,0.00188051477612843,-0.0007225860004099564,-0.001403839039997842,0.0016587165444956085,0.00030293613040504176,-0.0018641872713166389,0.0009372731851724082,0.0012445875471416138,-0.0017679085719836606,-0.00007064294701475216,0.001819027449976196,-0.0011400481077436543,-0.0010643642464005963,0.0018512050388889978,-0.00016543824836932214,-0.0017453913400962337,0.0013276701328525117,0.0008656821293700336,-0.001907029860147505,0.0004017400295716867,0.0016440727958304524,-0.0014970917822124433,-0.0006513645170377981,0.0019342069907288739,-0.0006346500528023692,-0.0015162965072514853,0.0016455071643319288,0.0004245058420226093,-0.0019319828798616812,0.0008605652976278971,0.001363704428372864,-0.0017703973110033667,-0.00018842789163601208,0.001900042806508921,-0.001075946788139407,-0.0011883357535412034,0.0018695717046640144,-0.00005336788189923322,-0.0018385207818808719,0.0012773739777572452,0.0009926006702250087,-0.0019412053299194126,0.00029725131227621997,0.0017480027975165836,-0.0014615979771500486,-0.0007792482118121493,0.001983870642094953,-0.0005395170029725228,-0.001629523294508763,0.001625592812960617,0.0005513286258136866,-0.0019965639149130596,0.0007764395702116646,0.001484554829378281,-0.0017666039254031936,-0.00031215075946395925,0.001978725507397685,-0.0010043298361498824,-0.0013149910134956754,0.0018821931452067191,0.00006523504478390907,-0.0019302536757934271,0.0012195911401280484,0.0011231229042779956,-0.001970279434408502,0.0001857372625652008,0.001851511648473913,-0.001418774924698835,-0.0009116091262001133,0.0020291747306822954,-0.0004369778729492942,-0.001743327779203361,0.0015986347543832497,0.0006834400964042057,0.0006846475099158376,0.0016069886953264314,-0.0017561779389238092,-0.0004418968219652154,0.0020547810812882607, -0.000924913401277078,-0.0014442254610205064,0.0018887139590348678,0.00019050482219169304,-0.002020323577477306,0.0011540073696985783,0.0012571928801717372,-0.0019938989311213094,0.0000670161915541859,0.0019543669643717915,-0.0013682836596523155,-0.0010484421671582106,0.0020697753976417236,-0.0003268061754759243,-0.0018575171536167898,0.001564275631522286,0.0008208873153478847,-0.0021148067911734235,0.0005849213883968643,0.0017308576739633779,-0.0017387504603642919,-0.0005777655908633555,0.002127905991959581,-0.0008373929879720531,-0.0015759393274069797,0.0018887609964432857,0.0003225926717121879,-0.002108457479875406,0.001080286734963962,0.0013947626875822241,-0.002011693976974386,-0.000059113038232347526,0.0020563326712172494,-0.0013097629259197934,-0.0011897536146932108,0.002105313823211009,-0.00020875370130126231,-0.001971898127283933,0.0015221356607009724,0.0009637320672404105,-0.0021678013135685873,0.00047696979744531783,0.0018560164240317264,-0.0017139305505457741,-0.0007198745938893113,0.0021977864911968837,-0.0007414388479507661,-0.0017100395786922079,0.0018819399847623138,0.0004616709873947698,-0.0021943752423985775,0.000998066929991625,0.0015357950386406234,-0.00202327509979841,-0.0001928756751200614,0.002157169069536657,-0.0012428244836758834,-0.0013355643483812275,0.0021354136330099045,-0.00008254549414101212,-0.0020862776773738064,0.0014718080322355046,0.0011120547207021084,-0.0022162428945968968,0.0003604723308662394,0.001982324093842937,-0.0016813008154830246,-0.0008683638461671331,0.0022640971542257833,-0.0006366904504155093,-0.0018464421536347688,0.001867831417894018,0.0006079383796060455,-0.00227778881306316,0.0009069536255053196,0.0016802662841747563,-0.002028229491022795,-0.0003345266414862578,0.002256632816310448,-0.001167047444128274,-0.001485913646982005,0.0021596777018512894,0.000052126164564257466,-0.0022004638547519087,0.0014128533408520358,0.00126595880137988,-0.0022597590837185803,0.00023507319950235106,0.002109646005027821,-0.0016404120522096207,-0.0010234011704437892,0.0023264990242386147,-0.000522749824086804,-0.0019850745659288384,0.0018459855434035826,0.0007616256991975717,-0.002358401194327344,0.0008065136485335909,0.0018281699604801927,-0.0020261164640947796,-0.00048435720082909325,0.002354476803292009,-0.001081971410267293,-0.0016408636893334994,0.0021776842155512427,0.000195608986408136,-0.002314266655792915,0.0013447928226677994,0.001425576438384721,-0.0022979567497804884,0.00010037353418782036,0.002237855586182926,-0.0015907767271143437,-0.0011851885608449423,0.00238463727298552,-0.000399173509233965,-0.0021258789528946767,0.0018159162354147217,0.0009230032695451526,-0.0024359050902366397,0.0006962667161434248,0.001979520988699594,-0.0020164618809028695,-0.0006427029872792218,0.002450449904790678,-0.000987088141197932,-0.0018005049202373317,0.0021889818130413443,0.0003482994098796178,-0.0024274989730836936,0.0012671001137902057,0.001591074890516702,-0.0023304181012462908,-0.00004407793676921038,0.0023668366138935924,-0.0015318610054254897,-0.001353969839436181,0.002438138258662865,-0.00026546278450729853,-0.0022688156762296265,0.0017770934822175035,0.0010923896179530375,-0.002509981155198836,0.0005756753713361598,0.0021343606837074657,-0.0019987512926955397,-0.0008099537296424953,0.00254429656064475,-0.0008818313773363464,-0.0019649624919393944,0.002193083580589947,0.0005106532072058687,-0.0025399776422338678,0.0011791911639854604,0.0017626644181688235,-0.0023566957350428333,-0.00019879623938599445,0.0024964858354924813,-0.00146307496925485,-0.0015300399272331895,0.0024866058281607277,-0.00012105173600687797,-0.002413867611434128,0.0017289341386814685,0.0012701620832088038,-0.0025802957417004136,0.0004441326661138072,0.002292762775675713,-0.0019724214676952994,-0.0009865650998984582,0.0026357561503106584,-0.0007655643567507354,-0.0021344040543688977,0.002189459602589621,0.0006831984439252842,-0.002651524607416084,0.0010804118298358284,0.0019406078462819842, -0.0023763064613720563,-0.00036437405972063864,0.0026267160704977212,-0.0013837605529493208,-0.0017137561482247505,0.0025296166649512093,0.000034707394496151097,-0.002561045304065546,0.0016707904878263406,0.0014567697904262773,-0.002646498013376081,0.00030094699839199973,0.0024548407096760426,-0.0019368498777891524,-0.0011730732476570316,0.002724562100778038,-0.0006375644088929401,-0.002309049251439054,0.0021775276826245154,0.0008665514188886104,-0.00276196823553134,0.0009700225248251665,0.00212523227097055,-0.002388723573671563,-0.0005414988913268162,0.0027574599181244795,-0.0012931765775929575,-0.0019055521159241976,0.0025667144219387343,0.0002025623218156692,-0.00271039322720244,0.0016019360127129771,0.0016527496392930796,-0.0027082162479201343,0.00014532332177049004,0.002620756572964529,-0.0018913415811196205,-0.0013701127606773255,0.0028104406530286142,-0.0004970038162398186,-0.002489181395139813,0.0021566417250688395,0.0010614364138116946,-0.0028711448187372303,0.0008471791034790378,0.0023169435085278306,-0.00239336712625174,0.000730974334831124,0.002888674239796538,-0.00119048006591996,-0.002105954930892777,0.002597402293865043,0.0003833832712040953,-0.0028619974513478742,0.0015215475837377457,0.001858746163983543,-0.0027650530968247786,-0.000023660310016934745,0.0027907321151725097,-0.0018351127513965395,-0.0015784390367687671,0.002893109186976975,-0.0003429258653320415,-0.0026751619463642935,0.0021260770975590824,0.0012687103586072714,-0.002978900318566654,0.0007109088807824078,0.0025162440868568238,-0.0023895916350289443,-0.0009337467671138778,0.0030203456428126102,-0.0010747027418019687,-0.0023156066647886274,0.0026211335666366594,0.0005781912888550294,-0.003015995144283809,0.0014286829949348902,0.00207553641687742,-0.0028165794891526013,-0.00020708225886448162,0.002965062486856878,-0.0017672698464407225,-0.0017989563928512285,0.0029722739702945705,-0.00017421463470532062,-0.0028674486500515845,0.0020850120581594692,0.001489393904630621,-0.00308509242353869,0.0005600803033798766,0.002723755860047883,-0.0023766704113479006,-0.0011509390262720404,0.0031524972711655,-0.0009447212311489739,-0.002535291452063633,0.00263729951680836,0.0007881940917086166,-0.003172586467121874,0.0013222524022365918,0.0023040614402268064,-0.0028623267544512165,-0.0004062147739228174,0.0031441335468466083,-0.0016867830453420921,-0.002032753715756122,0.00304762714776719,0.000010443459467399457,-0.003066618480062419,0.002032503997466113,0.0017247109421283146,-0.0031895930183452503,0.0003933642458396804,0.002940248723286922,-0.0023537754483585584,-0.0013838933649719738,0.0032851973223134404,-0.0007992189323923819,-0.002765969999908602,0.002645213801524339,0.0010148319025040486,-0.0033320496437458063,0.001200981675900577,0.0025454664754032564,-0.002901776380305369,-0.0006225720274057844,0.003328443908914386,-0.001592452066050137,-0.0022811501417381,0.0031188427180401414,0.00021260909091555508,-0.0032733969886735914,0.001967458769034038,0.0019761393762924065,-0.003292291199888101,0.00020918412732333507,0.003166677473009642,-0.0023199513626289466,-0.001634226794577885,0.003418569870328527,-0.0006366367365831966,-0.0030088240303863967,0.0026440921439657436,0.0012598366706164737,-0.0034947602842751633,0.00106336489986786,0.002801152903312241,-0.0029343465893604476,-0.0008579723517619143,0.003518633360445458,-0.001482861726775273,-0.0025457542387467462,0.0031855711431955994, 0.0004341542439747131,-0.0034886962922347376,0.0018885906894229385,0.0022454771055622153,-0.0033930970290240374,0.000005650913192192444,0.0034042296826839315,-0.0022740812867012975,-0.0019039032092644228,0.0035528088109410493,-0.00045510862731871024,-0.003265314194853117,0.0026330256291871613,0.0015253094743251686,-0.003661216486495206,0.000907602109727911,0.0030728461454490644,-0.0029593745820486613,-0.0011146198246699294,0.003715519963568881,-0.0013563235147126805,-0.002828541616136108,0.0032474320867874654,0.0006773466507477024,-0.0037136648619296303,0.001794369768372039, 0.0025349288117075377,-0.003491946285305541,-0.0002195226050794828,0.003654388684581852,-0.0022148417094277487,-0.002195328555105548,0.003688196091642576,-0.00025237648509922117,-0.0035372565233594256,0.002610945196425526,0.001813822974066847,-0.0038320718978704527,0.0007315166614984705,0.003362685595945985,-0.0029760927854200468,-0.0013952126006074046, 0.003920149160636109,-0.0012107977810680375,-0.0031319580560293077,0.0033040045506866306,0.0009449622704645561,-0.003949753693213065,0.0016829511968559049,0.002847221672715902, -0.0035888066087307,-0.0004691363725577702,0.003919017583745256,-0.0021406419055430667,-0.002511478137680439,0.0038251259134400675,-0.00002567584365816008,-0.0038269247725934235, 0.002576573809945749,0.0021285589266208304,-0.004008179917679837,0.0005324440447497479,0.003673345448960945,-0.0029835966784503266,-0.0017030888132177993,0.004133859743939733,-0.0010437886748348212,-0.0034590585677355223,0.0033548133355710426,0.0012404373066202102,-0.00419880557335494,0.0015520797741000489,0.003185761939967599,-0.003683685589540096,-0.0007466584551358059,0.004200473047897748,-0.0020495415108737936,-0.002856069512670352,0.003964137394679675,0.00022841962692444204,-0.004137189583835574,0.0025283610837445233,0.0024734956235666467,-0.004190653758641409,0.0003070799592868807,0.004008199614485406,-0.0029808005670774736,-0.0020424261917923845,0.004358373937524613,-0.0008522000264212038,-0.003813697915434429,0.0033993102084415457,0.001568076984060037,-0.004463177515213357,0.0013989582835381479,0.0035548503140859175,-0.003776641641035845,-0.0010564392749880028,0.004501762036534601,-0.00193913652081664,-0.0032338012457680614,0.004105959449068887,0.0005142133977710592,-0.004471710956287682,0.002464392436606433,0.002853667788669409,-0.004380949519793281,0.000051269145339538906,0.004371550776810554,-0.0029663757776967714,-0.002418519987341332,0.004595922632856262,-0.0006321341765754433,-0.004200796374251886,0.003436847291328689,0.0019333474571115053,-0.004745911775827162,0.001220062946280154,0.003959983656586641,-0.003867798924005278,-0.0014040124470628983,0.004826761733952966,-0.0018063987061387966,-0.003650688852895792,0.004251573658933666,0.0008371897247658116,-0.004835209581830059,0.002382260478291738,0.0032755339015728027,-0.004580983361802023,-0.0002402938291902078,0.004768954803937312,-0.0029386626286905145,-0.0028381775827841385,0.0048494230041166,-0.00037860558334096143,-0.004626717888750353,0.0034666387522217694,0.002343292225408638,-0.005050979654771991,0.0010108794041464586,0.004408286376083186,-0.003957368294960792,-0.0017965260083971817,0.005180534673883439,-0.001647444690657601,-0.0041145474877676315,0.0044023042767631845,0.0012044510685232089,-0.005233857607857714,0.0022788790314250107,0.0037475066359415068,-0.004793300436349143,-0.0005744978182697404,0.0052076903706089125, -0.002895542315413201,-0.0033102912790257503,0.0051227361018962095,-0.00008512393347294688,-0.005099820401838425,0.003487704444190258,0.0028071397807013206,-0.005383637093464895, 0.0007655162817272576,0.004909141618215742,-0.004045677424447762,-0.0022433751194695204,0.005569790989575016,-0.0014571959950690587,-0.004635702115674001,0.00455995019667687,0.001625363493193764,0.0021502076378049286,0.004280737739177666,-0.005021324495129137,-0.000960458061786816,0.005697455868660679,-0.0028342457756064757,-0.0038466908083075258,0.005421049995493061,0.0002569282692796016,-0.005631277434697048,0.0034987848582336096,0.0033372134707141746,-0.005750956990830926,0.00047612461878099527,0.005475139369483325,-0.004133215252738831,-0.002757155348611544,0.006003584843768021,-0.0012288649379606654,-0.00522806101919553,0.004726983799197774,0.0021125353435654417,-0.006172304493934396,0.001990832002869674,0.004890312209570127,-0.005269737180178703,-0.0014104976693106936,0.00625143335415501,-0.002751060266739111,-0.004463449147865363,0.005751466336222345,0.0006592523885541026,-0.0062363410064963706,0.003498208933595271,0.003950334848851842,-0.00616265012366927,0.00013199906500878158,0.006123544209342841,-0.004220699554409954,-0.003355143565738766,0.006494396399085612,-0.0009531526966266337,-0.005910789848249051,0.004906860016925527,0.0026833489096393676,-0.006738578726857215,0.0017933042142774152,0.005597124605185432,-0.005545073236956974,-0.0019416955511766076,0.006887966943517764,-0.0026408636819176584,-0.005182950281506819,0.006123928778520445,0.001138154612584251,-0.006936349874034027,0.0034836813230158603,0.004670063887855653,-0.0066323755725483016,-0.0002818630755707789,0.006878648581299539,-0.004309183074290739,-0.0040616818074015685,0.00705987387038743,-0.0006169522533267468,-0.006711018639932855,0.005104514344798969,0.0033624475453092463,-0.007396544559638518,0.0015470654647428096,0.006430940058342965,-0.0058566903088967965,-0.002578422795003113,0.00763331398680969,-0.0024963559927812322,-0.00603729362790659,0.006552750954942065,0.0017170617784943772,-0.0077620524740952095,0.0034519256225489995,0.00553042265382208,-0.007179919026460738,-0.0007871690515933735,0.007775704786464729,-0.004400226705933925,-0.00491217921746382,0.007725758930150321,-0.0002011587968342767,-0.007668410900047241,0.005327200054711453,0.0041859543335028716,-0.008178334646508209,0.0012366068812187032,0.007435615543206518,-0.006218420815770962,-0.0033566915953509562,0.008526364664715428,-0.0023067302785135637,-0.007074165127271463,0.007059250483814296,0.0024308841484176297,-0.008759371974002407,0.0033980556552814112,0.006582390854060322,-0.007834993073048638,-0.0014165550912911755,0.00886782717905591,-0.0044961948661743105,-0.005960176981576993,0.008531053351332505,0.0003232216797313565,-0.00884328286672188,0.005585968886779027,0.0052090134471317615,-0.009133094937371501,0.0008381560025934599,0.008678497434581005,-0.006651540203158853,-0.004332032288489173,0.009627195972428669,-0.002055240938339637,-0.008367546697812851,0.0076765515374687095,0.003334027568792855,-0.01],"x":[-709.0895,-708.481626247505,-707.87375249501,-707.2658787425149,-706.65800499002,-706.050131237525,-705.4422574850299,-704.8343837325349,-704.22650998004,-703.6186362275449,-703.0107624750499,-702.4028887225548,-701.7950149700599,-701.1871412175649,-700.5792674650698,-699.9713937125748,-699.3635199600799,-698.7556462075848,-698.1477724550898,-697.5398987025948,-696.9320249500998,-696.3241511976048,-695.7162774451098,-695.1084036926147,-694.5005299401198,-693.8926561876248,-693.2847824351297,-692.6769086826347,-692.0690349301398,-691.4611611776447,-690.8532874251497,-690.2454136726546,-689.6375399201597,-689.0296661676647,-688.4217924151696,-687.8139186626746,-687.2060449101797,-686.5981711576846,-685.9902974051896,-685.3824236526946,-684.7745499001996,-684.1666761477046,-683.5588023952096,-682.9509286427145,-682.3430548902196,-681.7351811377246,-681.1273073852295,-680.5194336327345,-679.9115598802396,-679.3036861277445,-678.6958123752495,-678.0879386227545,-677.4800648702595,-676.8721911177645,-676.2643173652694,-675.6564436127744,-675.0485698602795,-674.4406961077844,-673.8328223552894,-673.2249486027944,-672.6170748502994,-672.0092010978044,-671.4013273453094,-670.7934535928143,-670.1855798403194,-669.5777060878244,-668.9698323353293,-668.3619585828343,-667.7540848303394,-667.1462110778443,-666.5383373253493,-665.9304635728543,-665.3225898203593,-664.7147160678643,-664.1068423153692,-663.4989685628742,-662.8910948103793,-662.2832210578842,-661.6753473053892,-661.0674735528942,-660.4595998003992,-659.8517260479042,-659.2438522954092,-658.6359785429141,-658.0281047904192,-657.4202310379242,-656.8123572854291,-656.2044835329341,-655.5966097804392,-654.9887360279441,-654.3808622754491,-653.772988522954,-653.1651147704591,-652.5572410179641,-651.949367265469,-651.341493512974,-650.7336197604791,-650.125746007984,-649.517872255489,-648.909998502994,-648.302124750499,-647.694250998004,-647.086377245509,-646.4785034930139,-645.870629740519,-645.262755988024,-644.6548822355289,-644.0470084830339,-643.439134730539,-642.8312609780439,-642.2233872255489,-641.6155134730539,-641.0076397205589,-640.3997659680639,-639.7918922155689,-639.1840184630738,-638.5761447105789,-637.9682709580838,-637.3603972055888,-636.7525234530938,-636.1446497005988,-635.5367759481038,-634.9289021956088,-634.3210284431137,-633.7131546906188,-633.1052809381238,-632.4974071856287,-631.8895334331337,-631.2816596806388,-630.6737859281437,-630.0659121756487,-629.4580384231537,-628.8501646706587,-628.2422909181637,-627.6344171656687,-627.0265434131736,-626.4186696606787,-625.8107959081836,-625.2029221556886,-624.5950484031936,-623.9871746506986,-623.3793008982036,-622.7714271457086,-622.1635533932135,-621.5556796407186,-620.9478058882236,-620.3399321357285,-619.7320583832335,-619.1241846307386,-618.5163108782435,-617.9084371257485,-617.3005633732535,-616.6926896207585,-616.0848158682635,-615.4769421157685,-614.8690683632734,-614.2611946107785,-613.6533208582835,-613.0454471057884,-612.4375733532934,-611.8296996007984,-611.2218258483034,-610.6139520958084,-610.0060783433133,-609.3982045908184,-608.7903308383234,-608.1824570858283,-607.5745833333333,-606.9667095808384,-606.3588358283433,-605.7509620758483,-605.1430883233533,-604.5352145708583,-603.9273408183633,-603.3194670658683,-602.7115933133732,-602.1037195608783,-601.4958458083833,-600.8879720558882,-600.2800983033932,-599.6722245508982,-599.0643507984032,-598.4564770459082,-597.8486032934131,-597.2407295409182,-596.6328557884232,-596.0249820359281,-595.4171082834331,-594.8092345309382,-594.2013607784431,-593.5934870259481,-592.985613273453,-592.3777395209581,-591.7698657684631,-591.161992015968,-590.554118263473,-589.9462445109781,-589.338370758483,-588.730497005988,-588.122623253493,-587.514749500998,-586.906875748503,-586.299001996008,-585.6911282435129,-585.083254491018,-584.475380738523,-583.8675069860279,-583.2596332335329,-582.651759481038,-582.0438857285429,-581.4360119760479,-580.8281382235529,-580.2202644710579,-579.6123907185629,-579.0045169660679,-578.3966432135728,-577.7887694610779,-577.1808957085829,-576.5730219560878,-575.9651482035928,-575.3572744510979,-574.7494006986028,-574.1415269461078,-573.5336531936127,-572.9257794411178,-572.3179056886228,-571.7100319361277,-571.1021581836327,-570.4942844311378,-569.8864106786427,-569.2785369261477,-568.6706631736527,-568.0627894211577,-567.4549156686627,-566.8470419161677,-566.2391681636726,-565.6312944111777,-565.0234206586827,-564.4155469061876,-563.8076731536926,-563.1997994011977,-562.5919256487026,-561.9840518962076,-561.3761781437125,-560.7683043912176,-560.1604306387226,-559.5525568862275,-558.9446831337325,-558.3368093812376,-557.7289356287425,-557.1210618762475,-556.5131881237525,-555.9053143712575,-555.2974406187625,-554.6895668662675,-554.0816931137724,-553.4738193612775,-552.8659456087825,-552.2580718562874,-551.6501981037924,-551.0423243512975,-550.4344505988024,-549.8265768463074,-549.2187030938123,-548.6108293413174,-548.0029555888224,-547.3950818363273,-546.7872080838323,-546.1793343313374,-545.5714605788423,-544.9635868263473,-544.3557130738523,-543.7478393213573,-543.1399655688623,-542.5320918163673,-541.9242180638722,-541.3163443113773,-540.7084705588823,-540.1005968063872,-539.4927230538922,-538.8848493013973,-538.2769755489022,-537.6691017964072,-537.0612280439121,-536.4533542914172,-535.8454805389222,-535.2376067864271,-534.6297330339321,-534.0218592814372,-533.4139855289421,-532.8061117764471,-532.1982380239521,-531.5903642714571,-530.9824905189621,-530.374616766467,-529.766743013972,-529.1588692614771,-528.550995508982,-527.943121756487,-527.335248003992,-526.727374251497,-526.119500499002,-525.511626746507,-524.9037529940119,-524.295879241517,-523.688005489022,-523.0801317365269,-522.4722579840319,-521.864384231537,-521.2565104790419,-520.6486367265469,-520.0407629740519,-519.4328892215569,-518.8250154690619,-518.2171417165669,-517.6092679640718,-517.0013942115769,-516.3935204590819,-515.7856467065868,-515.1777729540918,-514.5698992015969,-513.9620254491018,-513.3541516966068,-512.7462779441117,-512.1384041916168,-511.5305304391218,-510.92265668662674,-510.31478293413176,-509.7069091816367,-509.09903542914174,-508.4911616766467,-507.8832879241517,-507.2754141716567,-506.6675404191617,-506.05966666666666,-505.4517929141717,-504.84391916167664,-504.23604540918166,-503.6281716566866,-503.02029790419164,-502.4124241516966,-501.8045503992016,-501.1966766467066,-500.5888028942116,-499.98092914171656,-499.3730553892216,-498.76518163672654,-498.15730788423156,-497.5494341317365,-496.94156037924154,-496.3336866267465,-495.7258128742515,-495.1179391217565,-494.5100653692615,-493.90219161676646,-493.2943178642715,-492.68644411177644,-492.07857035928146,-491.4706966067864,-490.86282285429144,-490.2549491017964,-489.6470753493014,-489.0392015968064,-488.4313278443114,-487.82345409181636,-487.2155803393214,-486.60770658682634,-485.99983283433136,-485.3919590818363,-484.78408532934134,-484.1762115768463,-483.5683378243513,-482.9604640718563,-482.3525903193613,-481.74471656686626,-481.1368428143713,-480.52896906187624,-479.92109530938126,-479.3132215568862,-478.70534780439124,-478.0974740518962,-477.4896002994012,-476.8817265469062,-476.2738527944112,-475.66597904191616,-475.0581052894212,-474.45023153692614,-473.84235778443116,-473.2344840319361,-472.62661027944114,-472.0187365269461,-471.4108627744511,-470.8029890219561,-470.1951152694611,-469.58724151696606,-468.9793677644711,-468.37149401197604,-467.76362025948106,-467.155746506986,-466.54787275449104,-465.939999001996,-465.332125249501,-464.724251497006,-464.116377744511,-463.50850399201596,-462.900630239521,-462.29275648702594,-461.68488273453096,-461.0770089820359,-460.46913522954094,-459.8612614770459,-459.2533877245509,-458.6455139720559,-458.0376402195609,-457.42976646706586,-456.8218927145709,-456.21401896207584,-455.60614520958086,-454.9982714570858,-454.39039770459084,-453.7825239520958,-453.1746501996008,-452.5667764471058,-451.9589026946108,-451.35102894211576,-450.7431551896208,-450.13528143712574,-449.52740768463076,-448.9195339321357,-448.31166017964074,-447.7037864271457,-447.0959126746507,-446.4880389221557,-445.8801651696607,-445.27229141716566,-444.6644176646707,-444.05654391217564,-443.44867015968066,-442.8407964071856,-442.23292265469064,-441.6250489021956,-441.0171751497006,-440.4093013972056,-439.8014276447106,-439.19355389221556,-438.5856801397206,-437.97780638722554,-437.36993263473056,-436.7620588822355,-436.15418512974054,-435.5463113772455,-434.9384376247505,-434.3305638722555,-433.7226901197605,-433.11481636726546,-432.5069426147705,-431.89906886227544,-431.29119510978046,-430.6833213572854,-430.07544760479044,-429.4675738522954,-428.8597000998004,-428.2518263473054,-427.6439525948104,-427.03607884231536,-426.4282050898204,-425.82033133732534,-425.21245758483036,-424.6045838323353,-423.99671007984034,-423.3888363273453,-422.7809625748503,-422.1730888223553,-421.5652150698603,-420.95734131736526,-420.3494675648703,-419.74159381237524,-419.13372005988026,-418.5258463073852,-417.91797255489024,-417.3100988023952,-416.7022250499002,-416.0943512974052,-415.4864775449102,-414.87860379241516,-414.2707300399202,-413.66285628742514,-413.05498253493016,-412.4471087824351,-411.83923502994014,-411.2313612774451,-410.6234875249501,-410.0156137724551,-409.4077400199601,-408.79986626746506,-408.1919925149701,-407.58411876247504,-406.97624500998006,-406.368371257485,-405.76049750499004,-405.152623752495,-404.54475,-403.936876247505,-403.32900249501,-402.72112874251496,-402.11325499002,-401.50538123752494,-400.89750748502996,-400.2896337325349,-399.68175998003994,-399.0738862275449,-398.4660124750499,-397.8581387225549,-397.2502649700599,-396.64239121756486,-396.0345174650699,-395.42664371257484,-394.81876996007986,-394.2108962075848,-393.60302245508984,-392.9951487025948,-392.3872749500998,-391.7794011976048,-391.1715274451098,-390.56365369261476,-389.9557799401198,-389.34790618762474,-388.74003243512976,-388.1321586826347,-387.52428493013974,-386.9164111776447,-386.3085374251497,-385.7006636726547,-385.0927899201597,-384.48491616766466,-383.8770424151697,-383.26916866267464,-382.66129491017966,-382.0534211576846,-381.44554740518964,-380.8376736526946,-380.2297999001996,-379.6219261477046,-379.0140523952096,-378.40617864271456,-377.7983048902196,-377.19043113772454,-376.58255738522956,-375.9746836327345,-375.36680988023954,-374.7589361277445,-374.1510623752495,-373.5431886227545,-372.9353148702595,-372.32744111776447,-371.7195673652695,-371.11169361277445,-370.50381986027946,-369.8959461077844,-369.28807235528944,-368.6801986027944,-368.0723248502994,-367.4644510978044,-366.8565773453094,-366.24870359281437,-365.6408298403194,-365.03295608782435,-364.42508233532936,-363.8172085828343,-363.20933483033934,-362.6014610778443,-361.9935873253493,-361.3857135728543,-360.7778398203593,-360.16996606786427,-359.5620923153693,-358.95421856287425,-358.34634481037926,-357.7384710578842,-357.13059730538924,-356.5227235528942,-355.9148498003992,-355.3069760479042,-354.6991022954092,-354.09122854291417,-353.4833547904192,-352.87548103792415,-352.26760728542916,-351.6597335329341,-351.05185978043914,-350.4439860279441,-349.8361122754491,-349.2282385229541,-348.6203647704591,-348.01249101796407,-347.4046172654691,-346.79674351297405,-346.18886976047907,-345.580996007984,-344.97312225548905,-344.365248502994,-343.757374750499,-343.149500998004,-342.541627245509,-341.93375349301397,-341.325879740519,-340.71800598802395,-340.11013223552897,-339.5022584830339,-338.89438473053895,-338.2865109780439,-337.6786372255489,-337.0707634730539,-336.4628897205589,-335.85501596806387,-335.2471422155689,-334.63926846307385,-334.03139471057887,-333.4235209580838,-332.81564720558885,-332.2077734530938,-331.5998997005988,-330.9920259481038,-330.3841521956088,-329.77627844311377,-329.1684046906188,-328.56053093812375,-327.95265718562877,-327.3447834331337,-326.73690968063875,-326.1290359281437,-325.5211621756487,-324.9132884231537,-324.3054146706587,-323.69754091816367,-323.0896671656687,-322.48179341317365,-321.87391966067867,-321.2660459081836,-320.65817215568865,-320.0502984031936,-319.4424246506986,-318.8345508982036,-318.2266771457086,-317.61880339321357,-317.0109296407186,-316.40305588822355,-315.79518213572857,-315.1873083832335,-314.57943463073855,-313.9715608782435,-313.3636871257485,-312.7558133732535,-312.1479396207585,-311.54006586826347,-310.9321921157685,-310.32431836327345,-309.71644461077847,-309.10857085828343,-308.50069710578845,-307.8928233532934,-307.2849496007984,-306.6770758483034,-306.0692020958084,-305.46132834331337,-304.8534545908184,-304.24558083832335,-303.63770708582837,-303.02983333333333,-302.42195958083835,-301.8140858283433,-301.2062120758483,-300.5983383233533,-299.9904645708583,-299.38259081836327,-298.7747170658683,-298.16684331337325,-297.55896956087827,-296.95109580838323,-296.34322205588825,-295.7353483033932,-295.1274745508982,-294.5196007984032,-293.9117270459082,-293.30385329341317,-292.6959795409182,-292.08810578842315,-291.48023203592817,-290.87235828343313,-290.26448453093815,-289.6566107784431,-289.0487370259481,-288.4408632734531,-287.8329895209581,-287.22511576846307,-286.6172420159681,-286.00936826347305,-285.40149451097807,-284.79362075848303,-284.18574700598805,-283.577873253493,-282.96999950099803,-282.362125748503,-281.754251996008,-281.14637824351297,-280.538504491018,-279.93063073852295,-279.32275698602797,-278.71488323353293,-278.10700948103795,-277.4991357285429,-276.89126197604793,-276.2833882235529,-275.6755144710579,-275.06764071856287,-274.4597669660679,-273.85189321357285,-273.24401946107787,-272.63614570858283,-272.02827195608785,-271.4203982035928,-270.81252445109783,-270.2046506986028,-269.5967769461078,-268.98890319361277,-268.3810294411178,-267.77315568862275,-267.16528193612777,-266.55740818363273,-265.94953443113775,-265.3416606786427,-264.73378692614773,-264.1259131736527,-263.5180394211577,-262.91016566866267,-262.3022919161677,-261.69441816367265,-261.08654441117767,-260.47867065868263,-259.87079690618765,-259.2629231536926,-258.65504940119763,-258.0471756487026,-257.4393018962076,-256.83142814371257,-256.2235543912176,-255.61568063872255,-255.00780688622754,-254.39993313373253,-253.79205938123752,-253.1841856287425,-252.5763118762475,-251.9684381237525,-251.36056437125748,-250.75269061876247,-250.14481686626746,-249.53694311377245,-248.92906936127744,-248.32119560878243,-247.71332185628742,-247.1054481037924,-246.4975743512974,-245.8897005988024,-245.28182684630738,-244.67395309381237,-244.06607934131736,-243.45820558882235,-242.85033183632734,-242.24245808383233,-241.63458433133732,-241.0267105788423,-240.4188368263473,-239.8109630738523,-239.20308932135728,-238.59521556886227,-237.98734181636726,-237.37946806387225,-236.77159431137724,-236.16372055888223,-235.55584680638722,-234.9479730538922,-234.3400993013972,-233.7322255489022,-233.12435179640718,-232.51647804391217,-231.90860429141716,-231.30073053892215,-230.69285678642714,-230.08498303393213,-229.47710928143712,-228.8692355289421,-228.2613617764471,-227.6534880239521,-227.04561427145708,-226.43774051896207,-225.82986676646706,-225.22199301397205,-224.61411926147704,-224.00624550898203,-223.39837175648702,-222.790498003992,-222.182624251497,-221.574750499002,-220.96687674650698,-220.35900299401197,-219.75112924151696,-219.14325548902195,-218.53538173652694,-217.92750798403193,-217.31963423153692,-216.7117604790419,-216.1038867265469,-215.4960129740519,-214.88813922155688,-214.28026546906187,-213.67239171656686,-213.06451796407185,-212.45664421157684,-211.84877045908183,-211.24089670658682,-210.6330229540918,-210.0251492015968,-209.4172754491018,-208.80940169660678,-208.20152794411177,-207.59365419161676,-206.98578043912175,-206.37790668662674,-205.77003293413173,-205.16215918163672,-204.55428542914171,-203.9464116766467,-203.3385379241517,-202.73066417165668,-202.12279041916167,-201.51491666666666,-200.90704291417165,-200.29916916167664,-199.69129540918163,-199.08342165668662,-198.47554790419161,-197.8676741516966,-197.2598003992016,-196.65192664670658,-196.04405289421157,-195.43617914171656,-194.82830538922155,-194.22043163672654,-193.61255788423153,-193.00468413173652,-192.39681037924151,-191.7889366267465,-191.1810628742515,-190.57318912175649,-189.96531536926148,-189.35744161676647,-188.74956786427146,-188.14169411177645,-187.53382035928144,-186.92594660678643,-186.31807285429142,-185.7101991017964,-185.1023253493014,-184.49445159680639,-183.88657784431138,-183.27870409181637,-182.67083033932136,-182.06295658682635,-181.45508283433134,-180.84720908183633,-180.23933532934132,-179.6314615768463,-179.0235878243513,-178.41571407185629,-177.80784031936128,-177.19996656686627,-176.59209281437126,-175.98421906187625,-175.37634530938124,-174.76847155688623,-174.16059780439122,-173.5527240518962,-172.9448502994012,-172.3369765469062,-171.72910279441118,-171.12122904191617,-170.51335528942116,-169.90548153692615,-169.29760778443114,-168.68973403193613,-168.08186027944112,-167.4739865269461,-166.8661127744511,-166.2582390219561,-165.65036526946108,-165.04249151696607,-164.43461776447106,-163.82674401197605,-163.21887025948104,-162.61099650698603,-162.00312275449102,-161.395249001996,-160.787375249501,-160.179501497006,-159.57162774451098,-158.96375399201597,-158.35588023952096,-157.74800648702595,-157.14013273453094,-156.53225898203593,-155.92438522954092,-155.3165114770459,-154.7086377245509,-154.1007639720559,-153.49289021956088,-152.88501646706587,-152.27714271457086,-151.66926896207585,-151.06139520958084,-150.45352145708583,-149.84564770459082,-149.2377739520958,-148.6299001996008,-148.0220264471058,-147.41415269461078,-146.80627894211577,-146.19840518962076,-145.59053143712575,-144.98265768463074,-144.37478393213573,-143.76691017964072,-143.1590364271457,-142.5511626746507,-141.9432889221557,-141.33541516966068,-140.72754141716567,-140.11966766467066,-139.51179391217565,-138.90392015968064,-138.29604640718563,-137.68817265469062,-137.0802989021956,-136.4724251497006,-135.8645513972056,-135.25667764471058,-134.64880389221557,-134.04093013972056,-133.43305638722555,-132.82518263473054,-132.21730888223553,-131.60943512974052,-131.0015613772455,-130.3936876247505,-129.7858138722555,-129.17794011976048,-128.57006636726547,-127.96219261477046,-127.35431886227545,-126.74644510978044,-126.13857135728543,-125.53069760479042,-124.92282385229541,-124.3149500998004,-123.70707634730539,-123.09920259481038,-122.49132884231537,-121.88345508982036,-121.27558133732535,-120.66770758483034,-120.05983383233533,-119.45196007984032,-118.84408632734531,-118.2362125748503,-117.62833882235529,-117.02046506986028,-116.41259131736527,-115.80471756487026,-115.19684381237525,-114.58897005988024,-113.98109630738523,-113.37322255489022,-112.76534880239521,-112.1574750499002,-111.54960129740519,-110.94172754491018,-110.33385379241517,-109.72598003992016,-109.11810628742515,-108.51023253493014,-107.90235878243513,-107.29448502994012,-106.68661127744511,-106.0787375249501,-105.47086377245509,-104.86299001996008,-104.25511626746507,-103.64724251497006,-103.03936876247505,-102.43149500998004,-101.82362125748503,-101.21574750499002,-100.60787375249501,-100.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json index 28f658aa558f..5da8c1aa2053 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json @@ -1 +1 @@ -{"expected":[0.01,-0.0033746253790549624,-0.007622018879319136,0.008433494207046853,0.001889004559574384,-0.00959763287124854,0.0045548640918855405,0.00643775365526481,-0.008809666729723751,-0.000468327621357804,0.009021878600127204,-0.005574489042175532,-0.005188845438344393,0.008984167322636266,-0.0008822361340235784,-0.008293387424072578,0.006423300008544533,0.00390249149724315,-0.00896491048167861,0.0021410030233847974,0.007434361161677098,-0.0070945391115908776,-0.002605153786703288,0.0087627445091276,-0.003288961215575298,-0.006468148173580897,0.007584861802057748,0.001322173628641932,-0.008391166572328667,0.004309966210916445,0.005418829024186577,-0.007894256760515254,-0.00007741137080101638,0.00786600339799083,-0.005190888286691567,-0.004310799964470551,0.008025916288409504,-0.0011070829665529621,-0.00720506320694166,0.0059217096985319595,0.0031683612909959584,-0.007986059728650302,0.002211362742764597,0.006427764980119337,-0.006495570438395232,-0.002015317447555855,0.007783713328832359,-0.003217836901260242,0.005554751504162455,0.0069087623461371135,0.0008745954285802678,-0.007430450743094688,0.004111477604627807,0.004607492872683843,-0.007160672340873091,0.00023211237554265316,0.006940099051174486,-0.004879980448715341,-0.0036078872171936413,0.007253676467270752,-0.0012846752729141803,-0.006328415747875719,0.005513875305599021,0.002577865411407692,0.007192987327410233,0.002264816300126859,0.005612742616618405,-0.00600658676302084,-0.00153900633791215,0.006986458278165595,-0.0031563648778605274,-0.004811642742160233,0.006354444046560059,0.0005121690322926351,-0.006644348505237545,0.003945466543090176,0.003944527136917611,-0.006556641214801915,0.00048285236585137326,0.00617905372724083,-0.0046207470221406475,0.0030312775513807594,0.006615149291794282,-0.0014276454140797585,-0.0056048078272581455,0.005173428759011166,0.002091872012714056,-0.006534582830377916,0.004937361147319414,-0.005597398884782191,-0.0011460194895600748,0.006322024170613043,-0.003101470027877635,-0.004193641507483116,0.005889228490530021,0.00021280982010589674,-0.005986809356747114,0.003802948422578564,0.0033914042216771465,-0.006048143932118084,0.0006896153286842611,0.005540280292535628,-0.004399459866491001,-0.0025488774753354643,0.006075951734989388,-0.0015443651716269698,-0.004995508238426995,0.0048829622877020395,0.00168440940535812,-0.005976919465789322,0.002336071445060531,0.00436699417707134,-0.005247880329196343,-0.0008161230833134467,0.005757615681360099,-0.003051124871582776,-0.003670351889638602,0.005491129188702045,-0.000038414647596295,-0.005426712741594785,0.0036778730471761206,0.002921979790357042,-0.005612092537049578,0.000862504886225179,0.004994756869438384,-0.004206777101008821,-0.002138727658395496,0.005612555974717905,-0.001640603793679084,-0.00447391034918115,0.0046305252678440646,0.0013375643846813207,-0.005496598259191423,0.002358580514084293,0.003877671165064496,-0.004944102324323375,-0.0005352527185069069,0.005270443255972866,-0.003003941903847979,-0.003220575689940079,0.005144814658170978,-0.000251963241123376,-0.004942276221088671,0.0035660207544181725,0.002517890234124859,-0.005232271548429072,0.0010086524055568644,0.0045220286015450195,-0.004036124920485116,-0.001785297355488709,0.0052083240203809455,-0.001720467938676326,-0.004021136032862963,0.004407645528211705,0.00103858281312451,-0.005076963386680254,0.002374390930557525,0.003452274611672536,-0.004676123221830755,-0.000293328920583648,0.004844182283096554,-0.0029589426438823055,-0.002829080820353618,0.004839272196996332,-0.000435380175485463,-0.004517801641045534,0.00346436212758138,0.0021658606757821207,-0.004896962550898842,0.0011332360936159342,0.0041072675988673485,-0.003882746693639497,-0.0014772937632670537,0.004851162237974012,-0.001786961913692683,-0.003623422830336836,0.004208153488994983,0.0007781377996418393,-0.004705840642293678,0.0023845416920389327,0.0030782571544993855,-0.004436661150818149,-0.000082939248081345,0.004466836450525034,-0.0029154200873884777,-0.0024846425797872,0.00456639129577918,-0.000594244714662356,-0.004141693120882942,0.003370669019868411,0.001856058123530432,-0.004597490347915285,0.0012401078946157153,0.0037394657832780214,-0.003743118961844232,-0.001206309833420299,0.004532072941424919,-0.001842335860794209,-0.003270503864866559,0.004027453169436672,0.0005492514201438184,-0.004374128830803134,0.0023898217124098888,0.0027462141060571542,-0.004220263892919906,0.0001014892078418608,0.004129395888683835,-0.002872853287528974,-0.002178808909098591,0.004320070339086555,-0.000732772431855468,-0.0038052023601414537,0.0032832688759818953,0.0015810451408781274,-0.004327298885133179,0.0013321936644063676,0.0034102820608713055,-0.003614579152420938,-0.000965958591601959,0.0042442267481438865,-0.001888309967606561,-0.002954566646910544,0.003862053730280365,0.0003465992716145695,-0.004074890983889265,0.002390842639114913,0.002448959438274671,-0.004022771440620501,0.00026422738837701204,0.0038249653113078845,-0.002830852389397747,-0.001905095542674953,0.004095634147866093,-0.0008542085792722223,-0.003501607823646661,0.0032008843221029396,0.0013350931947516316,0.004081344613809632,0.0014117568426467166,0.0031132831440029004,-0.003495080560118109,-0.000751301299248045,0.0039823495988200956,-0.0019262233125530552,-0.0026695630035545965,0.0037092590208348468,0.00016604814335501283,-0.003802750032448531,0.00238808774933818,0.0021809095582688387,-0.0038409575222055825,0.0004086038740077174,0.003548180682849912,-0.00278912216160145,-0.0016584460091960713,0.0038894430832158615,-0.0009610928562487279,-0.003225662294979352,0.0031225253816182913,0.0011137192491960006,-0.003855686955326962,0.0014805770200375756,0.0028434296419308706,-0.003383026569449437,-0.0005584593235005616,0.0037423065725655123,-0.0019571353282153824,-0.002410739334022185,0.0035669562592685992,0.000004340463089199634,-0.003553476225131052,0.002381945611343005,0.0019376615497718379,-0.003672284215497602,0.0005372516695656682,0.0032948088333592442,-0.0027474371465572647,-0.0014348600868823633,0.0036986240233832955,-0.0010554420895805701,-0.0029732117153399543,0.003047415214307232,0.0009133652765595503,-0.0036472049859943957,0.0015400738095075364,0.002596719693376865,-0.003277155743961312,-0.0003843443595345254,0.003520812524978191,-0.001981896589820398,-0.0021743092640833387,0.0034334687762567285,-0.0001411261126639814,0.0023727337708766235,0.0017156978580311923,-0.003514730101806216,0.0006522814102675338,0.0030614664015164317,-0.002705624325836564,-0.0012311324328946071,0.003520881067978818,-0.0011388790574619577,-0.002740926389843438,0.0029749378100310947,0.0007311717760163106,-0.0034533971691657716,0.0015913946155659104,0.0023699365314837134,-0.0031764604545482227,-0.00022646693702463983,0.0033152266358330964,-0.0020011992261728833,-0.001957220756854529,0.0033074512487201294,-0.00027245583099065574,-0.0031107008045504225,0.002360715744923774,0.0015121752946147878,-0.0033666674657802775,0.0007554053700443383,0.00284541857387878,-0.002663550773165199,-0.001044665065235685,0.0033543596961918744,-0.001212725111614123,-0.002526107720106278,0.002904600416141118,0.0005648146273983649,-0.0032722370521445954,0.0016354780062711222,0.002160466254018691,-0.003080128151737152,-0.000082797930510248,0.0031234037829790946,-0.002015613480508536,-0.00175698733817825,0.0031878137718127416,-0.0003913689234629894,-0.002912269083932181,0.0023461134262495863,0.0013247715479915683,-0.003226772947196665,0.0008480278373982253,0.0026444323795080907,-0.002621114694188058,-0.0008733304451363718,0.0031975475558126023,-0.0012780679337996753,-0.0023265468088722987,0.0028360060700229743,0.0004123855362323381,-0.003102067489642725,0.0016731002473195156,0.001966164025988275,-0.002987498252220287,0.00004833328785673103,0.002943585209223255,-0.002025614663560462,-0.0015715637451245235,0.003073665910135281,-0.0004992857952449686,-0.002726584833597506,0.0023291162790907956,0.0011515717076079155,-0.0030939614708402024,0.0009313120391705081,0.0024566680294338806,-0.002578238813341514,-0.000715369914541897,0.0030492008505353272,-0.0013358118795590603,-0.002140419386636313,0.0027688331984681023,0.00027230306044425507,-0.0029415219008097995,0.0017049099941755753,0.0017852543316613596,-0.0028980299980183146,0.00016831488624009116,0.0027743168705652277,-0.0020316033182352874,-0.0013992529276129046,0.002964274848589291,-0.0005973900770956857,-0.0025521406810003954,0.0023098882513615314,0.0009909831370976026,-0.0029673366695994975,0.0010062304166468866,0.002280597264378061,-0.002534865417417635,-0.0005693172763382291,0.0029082889338595324,-0.0013867159137674443,-0.0019662066190262472,0.0027028202465121734,0.00014324546521498255,-0.0027894648250310636,0.001731454512834913,0.0016162555759663638,-0.0028112781592852815,0.0002783101226767328,0.002614387616968737,-0.002033920507690205,-0.001238635550763712,0.002859033660935118,-0.0006866764820938022,-0.002387678084620776,0.0022885730357688917,0.000841670763073588,-0.0028461531856580177,0.0010736028917752718,0.002114941187700384,-0.002490952588011033,-0.0004339405427495209,0.0027739520605998113,-0.0014314225634394463,-0.0018026346487828543,0.0026377539430179966,0.000024099403604626595,-0.0026449464716313343,0.0017531997460879121,0.0014579223699989954,-0.002726874431534224,0.00037930144622244015,0.002462781801289147,-0.0020328595469610695,-0.0010885158914870888,0.0027574369494554997,-0.0007679875735691736,-0.0022321391627136557,0.0022652981196188125,0.000702507285968018,-0.002729787653816416,0.0011341263410876764,0.0019586223638290937,-0.00244647130004073,-0.0003081970043560719,0.002645468786255706,-0.0014704802733878732,-0.0016486278957671848,0.0025734602342109597,-0.00008607976421486678,-0.0025071675622243285,0.0017705458451201643,0.0013092008421668711,-0.002644513025712797,0.0004721246781596627,0.0023186425320669743,-0.002028675104990842,-0.0009478798462329672,0.002659061929424631,-0.0008420423294057347,-0.0020846292530919777,0.0022401779340787444,0.0005725344463660855,-0.002617716117379471,0.0011883975459047247,0.00181072750167585,-0.002401403159898697,-0.0001911981961946872,0.00252223053520494,-0.00150436085260325,-0.0015032725941173384,0.0025097972004579777,-0.00018809898018486252,-0.0023754518425589425,0.0017838393165831475,0.0011691936682461637,-0.0025639393856203506,0.0005574957818355751,0.002181242879348386,-0.002021590337661687,-0.0008158619997894686,0.0025635535866886197,-0.0009094585606012332,-0.0019443875126433023,0.0022133163256927288,0.00045093258457585547,-0.002509496269414901,0.0012369312421345489,0.0016704780892682278,-0.0023557386219282845,-0.00008218230752615857,0.0024037215609318827,-0.001533473223012741,-0.001365788039216979,0.0024466494652647408,-0.0002826519588731703,-0.0022492243779544466,0.0017933826134725838,0.0010371324395297126,-0.002484941265751537,0.0006360320298354078,0.002049963093101947,-0.0020118025292847827,-0.0006917195525119262,0.0024706129178784933,-0.0009707706722735125,-0.0018107636100686472,0.002184808512062205,0.00033699649284626125,-0.002404753355323932,0.0012801744470596899,0.001537207069170819,-0.0023094755667628676,0.000019507746753487322,0.002289503007619787,-0.0015581743520317768,-0.0012355037060267395,0.0023839237396364385,-0.00037033867283502197,-0.0021279942584771353,0.0017994417741892838,0.0009123556323570743,-0.002407341610307096,0.0007082688896385101,0.001924272416723798,-0.001999487592035099,-0.0005748114948746359,0.002379987528811685,-0.0010264438571449548,-0.001683199086011227,0.0021547426407978825,0.00023011609295240612,-0.0023031688829249506,0.0013185179278607563,0.001410340151546865,-0.00226261815632344,0.00011444190350763413,0.0021792001238734966,-0.0015787780180434162,-0.0011118408849488351,0.002321545239227773,-0.00045168099825255704,-0.0020113407007838497,0.0018022525561288292,0.0007942908968153683,-0.0023309928205821405,0.0007746736043426581,0.001803714447662988,-0.0019848036822188407,-0.0004645818368192538,0.0022914640549012346,-0.0010768855293036537,-0.0015612123237860743,0.0021232010403929814,0.0001297608503656892,-0.002204471506490353,0.0013523054543425155,0.0012893807223029292,-0.0022151759024297097,0.0002031171523614491,0.002072491922429874,-0.0015955618922985336,-0.0009942978268588042,0.002259454778879646,-0.0005271353749706217,-0.0018989017911572215,0.0018020253971051474,0.0006824407072985435,-0.0022557721026356748,0.0008356561984161872,0.0016878952618040433,-0.0019678941272325413,-0.00036054599946802374,0.0022048620023513398,-0.001122454603471095,-0.0014443863389041823,0.0020902612296847677,0.0000354671083238826,-0.0021084296094975655,0.0013818413183534276,0.0011738975633771888,-0.002167162901846324,0.0002859690931723308,0.0019691027549326263,-0.0016087733011967177,-0.000882437638330581,0.0021976063975728925,-0.0005971031245060763,-0.0017903653004237641,0.001798949456116054,0.0005763706527763578,-0.0021815776628847307,0.0008915784597268142,0.0015764737099661576,-0.0019488898098829778,-0.0002622796945123937,0.002120028706833092,-0.0011634690778397434,-0.00133235878806569,0.002055996736555064,-0.00005317227695481571,-0.0020148452260280994,0.0014073964858683516,0.0010635147912839954,-0.002118597202116705,0.0003633814063964488,0.0018687953986439004,-0.001618633945617953,-0.0007758783501296758,0.0021359654021759706,-0.0006619389156958006,-0.001685461137567241,0.0017931959250680322,0.0004756998166979747,-0.002108325574690938,0.0009427613181347118,0.0014691534354072185,-0.0019279111220849552,-0.00016940977630202798,0.0020368351781634214,-0.0012002122704387638,-0.0012248137397222571,0.0020204777647040138,-0.0001365164731501839,-0.0019235490254383598,0.001429213661905231,0.0009579035592634622,-0.0020695002709836996,0.00043569366276668194,0.001771365346153946,-0.0016253437895462407,-0.0006742847164405341,0.002074506744423042,-0.0007219577539746244,-0.001583955109401834,0.0017849207587636168,0.0003800928237751474,-0.0020359471799921113,0.0009894909439983504,0.001365676265258973,-0.0019050695742462466,-0.00008160667009977071,0.0019551726527607546,-0.0012329379787893553,-0.0011214748532388037,0.0019837717385284585,-0.00021488374589178938,-0.0018343961478594086,0.0014475114846589161,0.0008567751719113934,-0.0020198965484687923,0.0005032078018533034,0.0016766360593018427,-0.0016290842822227678,-0.0005773614024287887,0.0020132136649767046,-0.0007774407854154982,-0.001485643728726439,0.0017742669373665958,0.00028925322595191566,-0.0019643869206406876,0.001032023817418387,0.0012658167066469663,-0.0018804691274104883,0.0000014219314192059985,0.0018749497155054894,-0.0012618747724836893,-0.0010220996923464246,0.0019459437495293614,-0.0002885573539851103,-0.0017472627252814671,0.0014624880173070333,0.000759875338937036,-0.001969813065372363,0.0005661935363351936,0.0015844550012379893,-0.0016300210419186326,-0.00048484729311842076,0.0019520765530275522,-0.0008286401427992488,-0.0013903498698962624,0.001761366350587126,0.0002029179715772622,-0.0018936005171811343,0.001070590964359338,0.0011693773369627605,-0.0018542073006706367,0.00007993634436630187,0.001796089882737794,-0.001287229582897214,-0.0009264749580346582,0.00190705692264887,-0.000357790488405239,-0.0016620429587037447,0.001474323669667731,0.000666979353589724,-0.001919279115500805,0.0006248928836065682,0.001494690300540488,-0.0016283061020082176,-0.00039651071375081354,0.0018910919809583453,-0.0008757830124216558,-0.0012979191136915354,0.001746341373859158,0.0012085275628620108,-0.001823553430342144,0.0011054015141281398,0.0010761849224576528,-0.0018263760952866859,0.00015416933249647887,0.0017185295610630813,-0.0013091907195737172,-0.0008344124713796399,0.001867172717108242,-0.00042281043082654894,-0.0015786466491034894,0.0014831836541463507,0.000577888026299939,-0.0018683259716293663,0.0006795239841810711,0.0014072279318751814,-0.0016240797990220387,-0.0003121453955687333,0.0018302618820712844,-0.0009190750631916303,-0.0012082166562672975,0.0017293061922154344,0.000042848095910588676,-0.001754219553962642,0.0011366457007577196,0.0009860871336272348,-0.0017970627684170263,0.00022432985947940388,0.001642216314245644,-0.00132793041619937,-0.000745745771673329,0.0018263511733560237,-0.00048382207139291455,-0.001496997100948329,0.0014892200590753374,0.0004924242387303761,-0.0018169866372816674,0.000730284333815972,0.0013219693212437487,-0.0016174723661781761,-0.00023156705474265918,0.0017695928459084888,-0.0009587033508575022,-0.0011211246823503444,0.0017103679163289168,-0.000031284005997565645,-0.0016855800984575933,0.0011644974061324103,0.000898949752385515,-0.0017663504827774893,0.00029060627506083647,0.0015671073840996523,-0.001343606988452282,-0.0006603272222014626,0.0017846511154448806,-0.0005410108975245877,-0.0014170293332391715,0.001492573605985117,0.00041043001032005426,-0.0017652956280132586,0.0007773535310730766,0.0012388293021558306,-0.0016086052833111516,-0.0001546104783725948,0.001709095510765675,-0.0009948387879098184,-0.001036540122601161,0.0016896275264316656,-0.00010171289829495539,-0.0016176226320130786,0.0011891163234524363,0.0008146542866641094,-0.0017343188534058138,0.0003531690319383539,0.0014931684219100807,-0.0013563666699270584,-0.0005780255370831861,0.001742130316358363,-0.0005945455437270626,-0.001338688545766597,0.0014933751444066359,0.0003317639903807079,-0.0017132887771369898,0.0008208956222786434,0.0011577343633633864,-0.001597592424277112,0.0016487840369650121,-0.0010276382522176027,-0.0009543727305231596,0.0016671806729632347,-0.0001685917126398524,-0.0015503402530239307,0.0012106498045694487,0.0007330959242867455,-0.0017010444086675823,0.00041217301165898763,0.0014203723952454072,-0.0013663451796973138,-0.0004987236591255881,0.0016988456323976096,-0.000644579975265785,-0.001261928798224407,0.0014917469276472496,0.00025629930533804004,-0.001661003061809122,0.0008610611103393504,0.001078621140041301,-0.0015845410351623059,-0.000010982519468670268,0.001588675647577043,-0.0010572463937182544,-0.0008745434264680063,0.0016431183573983941,-0.00023205945121231676,-0.0014837308722831706,0.0012292344428094005,0.0006541817707338698,-0.0016666009794538096,0.00046775952319143125,0.0013486986416117019,-0.0013736690651118403,-0.00042231693169361435,0.0016548531116204845,-0.0006912553649986834,-0.0011867118677229454,0.0014878037049223778,0.00018392170375762485,-0.0016084764461720084,0.0008979886815637,0.0010014351092189444,-0.0015695525704905507,0.00005594466207552277,0.0015287902257490346,-0.001083797187546618,-0.0007969828659632944,0.0016175275124054767,-0.0002922427865284056,-0.0014177965873931977,0.0012449974334534334,0.0005778293255745284,-0.0016310600279888488,0.0005200580262196091,0.0012781320456142983,-0.0013784568554704394,-0.0003487115180043474,0.0016102080804333118,-0.0007347017119004154,-0.0011130062565073524,0.0014816536588215525,0.00011452795221224462,-0.0015557477388619453,0.0009318066948683035,0.00092612945734861,-0.001552723409721847,0.00011976511736049848,0.001469149959770467,-0.0011074152733014948,-0.0007216301972786769,0.0015904914970633767,-0.0003492576182697266,-0.0013525431350203407,0.001258057746515065,0.0005039651604261612,-0.0015944909256388486,0.0005691876218907034,0.0012086623204786548,-0.0013808200558933436,-0.0002778230295433546,0.0015649652117235575,-0.0007750392411754451,0.0010407863267157488,0.0014733992119670871,0.000048024443351710324,-0.0015028564626857373,0.0009626344698868147,0.000852664093594242,-0.0015341454724189692,0.0001805798375757076,0.0014097790285858799,-0.0011282171131553429,-0.0006484319793394448,0.0015620905201192293,-0.00040321042418424126,-0.0012879794091582,0.0012685271403792076,0.00043252376782482155,-0.0015569611874856634,0.0006152583463028969,0.001140283378138452,-0.001380864005588963,-0.00020957533199357617,0.0015191785773452852,-0.0008123796189423287,-0.0009700315430348592,0.0014631377225859693,-0.00001567401574594861,-0.001449842734661874,0.0009905834041994542,0.0007810047870022233,-0.0015139067472927914,0.00023848140533292832,0.0013507033217300011,-0.0011463119959027066,-0.0005773412360600683,0.0015324020020463702,-0.0004541994357349061,-0.0012241170356022742,0.0012765110399913272,0.00036344655563969773,-0.0015185366701156824,0.000658372295973902,0.0010729927747985181,-0.0013786886206157503,-0.0001438995024424062,0.0014729016873054363,-0.0008468270088493829,-0.0009007258073856401,0.001450962085384556,-0.00007664526144318761,-0.0013967471549453294,0.0010157579447764558,0.0007111224094082552,-0.0014920917477833327,0.00029355504647752005,0.001291950188696457,-0.0011618029094674707,-0.0005083166272211274,0.0015015008848669618,-0.0005023156640160524,-0.0011609699945040115,0.0012821092993090522,0.00029668096591077206,-0.0014792817380055517,0.000698624609657607,0.0010067912210918668,-0.0013743890378763429,-0.00008073291603006744,0.001426187517618761,-0.0008784789934285954,-0.0008328568724236371,0.0014369612513953334,-0.00013496069974191892,-0.0013436107034079628,0.0010382564345878728,0.0006429922689646879,-0.001468781904744373,0.0003458795506288721,0.0012335482135821156,-0.0011747873006891063,-0.0004413217192995347,0.0014694598972368577,-0.0005476437972705667,-0.0010985542842111163,0.0012854168645082713,0.00023217970047962564,0.0007361043268706108,0.0009416821477331841,-0.00002001844377637972,0.0013790885284927176,-0.0009074273792894457,-0.0007664158227911079,0.0014212206782551482,-0.00019068611930432298,-0.0012904746428634454,0.0010581718519219556,0.0005765935216221548,-0.0014440559051002789,0.00039552807880841544,0.0011755270115402297,-0.0011853577381613707,-0.0003763243423359188,0.0014363497810923871,-0.0005902629878833201,-0.001036887620716606,0.001286524351779206,0.00016990003861119102,-0.0013985314407912817,0.0007708951402235772,0.0008776713190505759,-0.0013597772134087674,0.0000382962537624602,0.0013316566742453079,-0.0009337589021888669, -0.0007013966148476759,0.0014038227205496864,-0.0002438824068503528,-0.0012373804280933014,0.0010755924571681343,0.0005119086499337978,-0.0014179899839424565,0.00044256887361214276,0.0011179170441275007,-0.0011936024914151245,-0.00031329602114924806,0.001402239485171366,-0.000630247543915065,-0.0009759891679376904,0.001285518551373567,0.00010980323415663845],"x":[100.0,100.60925648702595,101.21851297405189,101.82776946107785,102.4370259481038,103.04628243512974,103.65553892215569,104.26479540918163,104.87405189620759,105.48330838323353,106.09256487025948,106.70182135728543,107.31107784431137,107.92033433133733,108.52959081836327,109.13884730538922,109.74810379241517,110.35736027944112,110.96661676646707,111.57587325349301,112.18512974051896,112.7943862275449,113.40364271457086,114.01289920159681,114.62215568862275,115.2314121756487,115.84066866267464,116.4499251497006,117.05918163672655,117.6684381237525,118.27769461077844,118.88695109780438,119.49620758483034,120.10546407185629,120.71472055888223,121.32397704590818,121.93323353293412,122.54249001996008,123.15174650698603,123.76100299401197,124.37025948103792,124.97951596806388,125.58877245508982,126.19802894211577,126.80728542914171,127.41654191616766,128.02579840319362,128.63505489021955,129.2443113772455,129.85356786427147,130.4628243512974,131.07208083832336,131.6813373253493,132.29059381237525,132.8998502994012,133.50910678642714,134.1183632734531,134.72761976047903,135.336876247505,135.94613273453095,136.55538922155688,137.16464570858284,137.77390219560877,138.38315868263473,138.9924151696607,139.60167165668662,140.21092814371258,140.8201846307385,141.42944111776447,142.03869760479043,142.64795409181636,143.25721057884232,143.86646706586825,144.4757235528942,145.08498003992017,145.6942365269461,146.30349301397206,146.91274950099802,147.52200598802395,148.1312624750499,148.74051896207584,149.3497754491018,149.95903193612776,150.5682884231537,151.17754491017965,151.78680139720558,152.39605788423154,153.0053143712575,153.61457085828343,154.2238273453094,154.83308383233532,155.44234031936128,156.05159680638724,156.66085329341317,157.27010978043913,157.87936626746506,158.48862275449102,159.09787924151698,159.7071357285429,160.31639221556887,160.9256487025948,161.53490518962076,162.14416167664672,162.75341816367265,163.3626746506986,163.97193113772454,164.5811876247505,165.19044411177646,165.7997005988024,166.40895708582835,167.01821357285428,167.62747005988024,168.2367265469062,168.84598303393213,169.4552395209581,170.06449600798402,170.67375249500998,171.28300898203594,171.89226546906187,172.50152195608783,173.11077844311376,173.72003493013972,174.32929141716568,174.9385479041916,175.54780439121757,176.1570608782435,176.76631736526946,177.37557385229542,177.98483033932135,178.5940868263473,179.20334331337327,179.8125998003992,180.42185628742516,181.0311127744511,181.64036926147705,182.249625748503,182.85888223552894,183.4681387225549,184.07739520958083,184.6866516966068,185.29590818363275,185.90516467065868,186.51442115768464,187.12367764471057,187.73293413173653,188.3421906187625,188.95144710578842,189.56070359281438,190.1699600798403,190.77921656686627,191.38847305389223,191.99772954091816,192.60698602794412,193.21624251497005,193.825499001996,194.43475548902197,195.0440119760479,195.65326846307386,196.2625249500998,196.87178143712575,197.4810379241517,198.09029441117764,198.6995508982036,199.30880738522953,199.9180638722555,200.52732035928145,201.13657684630738,201.74583333333334,202.35508982035927,202.96434630738523,203.5736027944112,204.18285928143712,204.79211576846308,205.401372255489,206.01062874251497,206.61988522954093,207.22914171656686,207.83839820359282,208.44765469061878,209.0569111776447,209.66616766467067,210.2754241516966,210.88468063872256,211.49393712574852,212.10319361277445,212.7124500998004,213.32170658682634,213.9309630738523,214.54021956087826,215.1494760479042,215.75873253493015,216.36798902195608,216.97724550898204,217.586501996008,218.19575848303393,218.8050149700599,219.41427145708582,220.02352794411178,220.63278443113774,221.24204091816367,221.85129740518963,222.46055389221556,223.06981037924152,223.67906686626748,224.2883233532934,224.89757984031937,225.5068363273453,226.11609281437126,226.72534930139722,227.33460578842315,227.9438622754491,228.55311876247504,229.162375249501,229.77163173652696,230.3808882235529,230.99014471057885,231.59940119760478,232.20865768463074,232.8179141716567,233.42717065868263,234.0364271457086,234.64568363273452,235.25494011976048,235.86419660678644,236.47345309381237,237.08270958083833,237.69196606786429,238.30122255489022,238.91047904191618,239.5197355289421,240.12899201596807,240.73824850299403,241.34750499001996,241.95676147704592,242.56601796407185,243.1752744510978,243.78453093812377,244.3937874251497,245.00304391217566,245.6123003992016,246.22155688622755,246.8308133732535,247.44006986027944,248.0493263473054,248.65858283433133,249.2678393213573,249.87709580838325,250.48635229540918,251.09560878243514,251.70486526946107,252.31412175648703,252.92337824351299,253.53263473053892,254.14189121756488,254.7511477045908,255.36040419161677,255.96966067864273,256.57891716566866,257.1881736526946,257.7974301397206,258.40668662674653,259.01594311377244,259.6251996007984,260.23445608782436,260.8437125748503,261.4529690618763,262.0622255489022,262.67148203592814,263.2807385229541,263.88999500998005,264.499251497006,265.1085079840319,265.7177644710579,266.32702095808384,266.9362774451098,267.54553393213575,268.15479041916166,268.7640469061876,269.3733033932136,269.98255988023953,270.5918163672655,271.2010728542914,271.81032934131736,272.4195858283433,273.0288423153693,273.63809880239523,274.24735528942114,274.8566117764471,275.46586826347306,276.075124750499,276.684381237525,277.2936377245509,277.90289421157684,278.5121506986028,279.12140718562875,279.7306636726547,280.3399201596806,280.9491766467066,281.55843313373254,282.1676896207585,282.77694610778445,283.38620259481036,283.9954590818363,284.6047155688623,285.21397205588823,285.8232285429142,286.4324850299401,287.04174151696606,287.650998003992,288.260254491018,288.86951097804393,289.47876746506984,290.0880239520958,290.69728043912176,291.3065369261477,291.9157934131737,292.5250499001996,293.13430638722554,293.7435628742515,294.35281936127745,294.9620758483034,295.5713323353293,296.1805888223553,296.78984530938123,297.3991017964072,298.00835828343315,298.61761477045906,299.226871257485,299.836127744511,300.44538423153693,301.0546407185629,301.6638972055888,302.27315369261476,302.8824101796407,303.4916666666667,304.10092315369263,304.71017964071854,305.3194361277445,305.92869261477045,306.5379491017964,307.1472055888224,307.7564620758483,308.36571856287424,308.9749750499002,309.58423153692615,310.1934880239521,310.802744510978,311.412000998004,312.02125748502993,312.6305139720559,313.23977045908185,313.8490269461078,314.4582834331337,315.0675399201597,315.67679640718563,316.2860528942116,316.89530938123755,317.50456586826346,318.1138223552894,318.7230788423154,319.33233532934133,319.9415918163673,320.5508483033932,321.16010479041915,321.7693612774451,322.3786177644711,322.98787425149703,323.59713073852294,324.2063872255489,324.81564371257485,325.4249001996008,326.0341566866268,326.6434131736527,327.25266966067863,327.8619261477046,328.47118263473055,329.0804391217565,329.6896956087824,330.2989520958084,330.90820858283433,331.5174650698603,332.12672155688625,332.73597804391216,333.3452345309381,333.9544910179641,334.56374750499003,335.173003992016,335.7822604790419,336.39151696606785,337.0007734530938,337.6100299401198,338.21928642714573,338.82854291417163,339.4377994011976,340.04705588822355,340.6563123752495,341.2655688622755,341.8748253493014,342.48408183632733,343.0933383233533,343.70259481037925,344.3118512974052,344.9211077844311,345.5303642714571,346.13962075848303,346.748877245509,347.35813373253495,347.96739021956085,348.5766467065868,349.1859031936128,349.79515968063873,350.4044161676647,351.0136726546906,351.62292914171655,352.2321856287425,352.8414421157685,353.45069860279443,354.05995508982033,354.6692115768463,355.27846806387225,355.8877245508982,356.4969810379242,357.1062375249501,357.71549401197603,358.324750499002,358.93400698602795,359.5432634730539,360.1525199600798,360.7617764471058,361.37103293413173,361.9802894211577,362.58954590818365,363.19880239520955,363.8080588822355,364.4173153692615,365.02657185628743,365.6358283433134,366.2450848303393,366.85434131736525,367.4635978043912,368.0728542914172,368.68211077844313,369.29136726546903,369.900623752495,370.50988023952095,371.1191367265469,371.7283932135729,372.3376497005988,372.94690618762473,373.5561626746507,374.16541916167665,374.7746756487026,375.38393213572857,375.9931886227545,376.60244510978043,377.2117015968064,377.82095808383235,378.4302145708583,379.0394710578842,379.6487275449102,380.25798403193613,380.8672405189621,381.47649700598805,382.08575349301395,382.6950099800399,383.3042664670659,383.91352295409183,384.5227794411178,385.1320359281437,385.74129241516965,386.3505489021956,386.9598053892216,387.56906187624753,388.17831836327343,388.7875748502994,389.39683133732535,390.0060878243513,390.61534431137727,391.2246007984032,391.83385728542913,392.4431137724551,393.05237025948105,393.661626746507,394.2708832335329,394.8801397205589,395.48939620758483,396.0986526946108,396.70790918163675,397.31716566866265,397.9264221556886,398.5356786427146,399.14493512974053,399.7541916167665,400.3634481037924,400.97270459081835,401.5819610778443,402.19121756487027,402.80047405189623,403.40973053892213,404.0189870259481,404.62824351297405,405.2375,405.84675648702597,406.4560129740519,407.06526946107783,407.6745259481038,408.28378243512975,408.8930389221557,409.5022954091816,410.1115518962076,410.72080838323353,411.3300648702595,411.93932135728545,412.54857784431135,413.1578343313373,413.7670908183633,414.37634730538923,414.9856037924152,415.5948602794411,416.20411676646705,416.813373253493,417.42262974051897,418.03188622754493,418.64114271457083,419.2503992015968,419.85965568862275,420.4689121756487,421.07816866267467,421.6874251497006,422.29668163672653,422.9059381237525,423.51519461077845,424.1244510978044,424.7337075848303,425.3429640718563,425.95222055888223,426.5614770459082,427.17073353293415,427.77999001996005,428.389246506986,428.998502994012,429.60775948103793,430.2170159680639,430.8262724550898,431.43552894211575,432.0447854291417,432.65404191616767,433.26329840319363,433.87255489021953,434.4818113772455,435.09106786427145,435.7003243512974,436.30958083832337,436.91883732534933,437.52809381237523,438.1373502994012,438.74660678642715,439.3558632734531,439.96511976047907,440.574376247505,441.18363273453093,441.7928892215569,442.40214570858285,443.0114021956088,443.6206586826347,444.22991516966067,444.83917165668663,445.4484281437126,446.05768463073855,446.66694111776445,447.2761976047904,447.88545409181637,448.49471057884233,449.1039670658683,449.7132235528942,450.32248003992015,450.9317365269461,451.54099301397207,452.15024950099803,452.75950598802393,453.3687624750499,453.97801896207585,454.5872754491018,455.19653193612777,455.8057884231537,456.41504491017963,457.0243013972056,457.63355788423155,458.2428143712575,458.8520708582834,459.46132734530937,460.07058383233533,460.6798403193613,461.28909680638725,461.89835329341315,462.5076097804391,463.11686626746507,463.72612275449103,464.335379241517,464.9446357285429,465.55389221556885,466.1631487025948,466.77240518962077,467.38166167664673,467.99091816367263,468.6001746506986,469.20943113772455,469.8186876247505,470.42794411177647,471.0372005988024,471.64645708582833,472.2557135728543,472.86497005988025,473.4742265469062,474.0834830339321,474.69273952095807,475.30199600798403,475.91125249501,476.52050898203595,477.12976546906185,477.7390219560878,478.34827844311377,478.95753493013973,479.5667914171657,480.1760479041916,480.78530439121755,481.3945608782435,482.00381736526947,482.61307385229543,483.22233033932133,483.8315868263473,484.44084331337325,485.0500998003992,485.65935628742517,486.26861277445107,486.87786926147703,487.487125748503,488.09638223552895,488.7056387225549,489.3148952095808,489.92415169660677,490.53340818363273,491.1426646706587,491.75192115768465,492.36117764471055,492.9704341317365,493.57969061876247,494.18894710578843,494.7982035928144,495.4074600798403,496.01671656686625,496.6259730538922,497.23522954091817,497.84448602794413,498.4537425149701,499.062999001996,499.67225548902195,500.2815119760479,500.89076846307387,501.5000249500998,502.10928143712573,502.7185379241517,503.32779441117765,503.9370508982036,504.54630738522957,505.15556387225547,505.76482035928143,506.3740768463074,506.98333333333335,507.5925898203593,508.2018463073852,508.81110279441117,509.42035928143713,510.0296157684631,510.63887225548905,511.24812874251495,511.8573852295409,512.4666417165669,513.0758982035928,513.6851546906188,514.2944111776447,514.9036676646707,515.5129241516966,516.1221806387225,516.7314371257485,517.3406936127744,517.9499500998004,518.5592065868263,519.1684630738523,519.7777195608783,520.3869760479042,520.9962325349302,521.605489021956,522.214745508982,522.824001996008,523.4332584830339,524.0425149700599,524.6517714570858,525.2610279441118,525.8702844311377,526.4795409181637,527.0887974051897,527.6980538922156,528.3073103792415,528.9165668662674,529.5258233532934,530.1350798403193,530.7443363273453,531.3535928143713,531.9628493013972,532.5721057884232,533.1813622754491,533.7906187624751,534.399875249501,535.0091317365269,535.6183882235529,536.2276447105788,536.8369011976048,537.4461576846307,538.0554141716567,538.6646706586827,539.2739271457086,539.8831836327346,540.4924401197604,541.1016966067864,541.7109530938123,542.3202095808383,542.9294660678643,543.5387225548902,544.1479790419162,544.7572355289421,545.3664920159681,545.9757485029941,546.5850049900199,547.1942614770459,547.8035179640718,548.4127744510978,549.0220309381237,549.6312874251497,550.2405439121757,550.8498003992016,551.4590568862276,552.0683133732535,552.6775698602794,553.2868263473054,553.8960828343313,554.5053393213573,555.1145958083832,555.7238522954092,556.3331087824351,556.9423652694611,557.5516217564871,558.160878243513,558.7701347305389,559.3793912175648,559.9886477045908,560.5979041916167,561.2071606786427,561.8164171656687,562.4256736526946,563.0349301397206,563.6441866267465,564.2534431137725,564.8626996007984,565.4719560878243,566.0812125748503,566.6904690618762,567.2997255489022,567.9089820359281,568.5182385229541,569.1274950099801,569.736751497006,570.346007984032,570.9552644710578,571.5645209580838,572.1737774451097,572.7830339321357,573.3922904191617,574.0015469061876,574.6108033932136,575.2200598802395,575.8293163672655,576.4385728542915,577.0478293413173,577.6570858283433,578.2663423153692,578.8755988023952,579.4848552894211,580.0941117764471,580.7033682634731,581.312624750499,581.921881237525,582.531137724551,583.1403942115768,583.7496506986027,584.3589071856287,584.9681636726547,585.5774201596806,586.1866766467066,586.7959331337325,587.4051896207585,588.0144461077845,588.6237025948104,589.2329590818364,589.8422155688622,590.4514720558882,591.0607285429141,591.6699850299401,592.2792415169661,592.888498003992,593.497754491018,594.107010978044,594.7162674650699,595.3255239520959,595.9347804391217,596.5440369261477,597.1532934131736,597.7625499001996,598.3718063872255,598.9810628742515,599.5903193612775,600.1995758483034,600.8088323353294,601.4180888223553,602.0273453093812,602.6366017964071,603.2458582834331,603.8551147704591,604.464371257485,605.073627744511,605.682884231537,606.2921407185629,606.9013972055889,607.5106536926148,608.1199101796407,608.7291666666666,609.3384231536926,609.9476796407185,610.5569361277445,611.1661926147705,611.7754491017964,612.3847055888224,612.9939620758483,613.6032185628743,614.2124750499001,614.8217315369261,615.4309880239521,616.040244510978,616.649500998004,617.25875748503,617.8680139720559,618.4772704590819,619.0865269461078,619.6957834331338,620.3050399201596,620.9142964071856,621.5235528942115,622.1328093812375,622.7420658682635,623.3513223552894,623.9605788423154,624.5698353293413,625.1790918163673,625.7883483033933,626.3976047904191,627.0068612774451,627.616117764471,628.225374251497,628.834630738523,629.4438872255489,630.0531437125749,630.6624001996008,631.2716566866268,631.8809131736527,632.4901696606786,633.0994261477045,633.7086826347305,634.3179391217565,634.9271956087824,635.5364520958084,636.1457085828343,636.7549650698603,637.3642215568863,637.9734780439122,638.5827345309381,639.191991017964,639.80124750499,640.410503992016,641.0197604790419,641.6290169660679,642.2382734530938,642.8475299401198,643.4567864271457,644.0660429141717,644.6752994011975,645.2845558882235,645.8938123752495,646.5030688622754,647.1123253493014,647.7215818363273,648.3308383233533,648.9400948103793,649.5493512974052,650.1586077844312,650.7678642714571,651.377120758483,651.986377245509,652.5956337325349,653.2048902195609,653.8141467065868,654.4234031936128,655.0326596806387,655.6419161676647,656.2511726546907,656.8604291417166,657.4696856287425,658.0789421157684,658.6881986027944,659.2974550898203,659.9067115768463,660.5159680638723,661.1252245508982,661.7344810379242,662.3437375249501,662.9529940119761,663.562250499002,664.1715069860279,664.7807634730539,665.3900199600798,665.9992764471058,666.6085329341317,667.2177894211577,667.8270459081837,668.4363023952096,669.0455588822356,669.6548153692614,670.2640718562874,670.8733283433133,671.4825848303393,672.0918413173653,672.7010978043912,673.3103542914172,673.9196107784431,674.5288672654691,675.1381237524951,675.7473802395209,676.3566367265469,676.9658932135728,677.5751497005988,678.1844061876247,678.7936626746507,679.4029191616767,680.0121756487026,680.6214321357286,681.2306886227545,681.8399451097804,682.4492015968063,683.0584580838323,683.6677145708583,684.2769710578842,684.8862275449102,685.4954840319361,686.1047405189621,686.7139970059881,687.323253493014,687.9325099800399,688.5417664670658,689.1510229540918,689.7602794411177,690.3695359281437,690.9787924151697,691.5880489021956,692.1973053892216,692.8065618762475,693.4158183632735,694.0250748502993,694.6343313373253,695.2435878243513,695.8528443113772,696.4621007984032,697.0713572854291,697.6806137724551,698.2898702594811,698.899126746507,699.508383233533,700.1176397205588,700.7268962075848,701.3361526946107,701.9454091816367,702.5546656686627,703.1639221556886,703.7731786427146,704.3824351297405,704.9916916167665,705.6009481037925,706.2102045908183,706.8194610778443,707.4287175648702,708.0379740518962,708.6472305389221,709.2564870259481,709.8657435129741,710.475]} +{"expected":[0.01,-0.0033746253790549624,-0.007622018879319136,0.008433494207046853,0.001889004559574384,-0.00959763287124854,0.0045548640918855405,0.00643775365526481,-0.008809666729723751,-0.000468327621357804,0.009021878600127204,-0.005574489042175532,-0.005188845438344393,0.008984167322636266,-0.0008822361340235784,-0.008293387424072578,0.006423300008544533,0.00390249149724315,-0.00896491048167861,0.0021410030233847974,0.007434361161677098,-0.0070945391115908776,-0.002605153786703288,0.0087627445091276,-0.003288961215575298,-0.006468148173580897,0.007584861802057748,0.001322173628641932,-0.008391166572328667,0.004309966210916445,0.005418829024186577,-0.007894256760515254,-0.00007741137080101638,0.00786600339799083,-0.005190888286691567,-0.004310799964470551,0.008025916288409504,-0.0011070829665529621,-0.00720506320694166,0.0059217096985319595,0.0031683612909959584,-0.007986059728650302,0.002211362742764597,0.006427764980119337,-0.006495570438395232,-0.002015317447555855,0.007783713328832359,-0.003217836901260242,-0.005554751504162455,0.0069087623461371135,0.0008745954285802678,-0.007430450743094688,0.004111477604627807,0.004607492872683843,-0.007160672340873091,0.00023211237554265316,0.006940099051174486,-0.004879980448715341,-0.0036078872171936413,0.007253676467270752,-0.0012846752729141803,-0.006328415747875719,0.005513875305599021,0.002577865411407692,-0.007192987327410233,0.002264816300126859,0.005612742616618405,-0.00600658676302084,-0.00153900633791215,0.006986458278165595,-0.0031563648778605274,-0.004811642742160233,0.006354444046560059,0.0005121690322926351,-0.006644348505237545,0.003945466543090176,0.003944527136917611,-0.006556641214801915,0.00048285236585137326,0.00617905372724083,-0.0046207470221406475,-0.0030312775513807594,0.006615149291794282,-0.0014276454140797585,-0.0056048078272581455,0.005173428759011166,0.002091872012714056,-0.006534582830377916,0.0023054630602133983,0.004937361147319414,-0.005597398884782191,-0.0011460194895600748,0.006322024170613043,-0.003101470027877635,-0.004193641507483116,0.005889228490530021,0.00021280982010589674,-0.005986809356747114,0.003802948422578564,0.0033914042216771465,-0.006048143932118084,0.0006896153286842611,0.005540280292535628,-0.004399459866491001,-0.0025488774753354643,0.006075951734989388,-0.0015443651716269698,-0.004995508238426995,0.0048829622877020395,0.00168440940535812,-0.005976919465789322,0.002336071445060531,0.00436699417707134,-0.005247880329196343,-0.0008161230833134467,0.005757615681360099,-0.003051124871582776,-0.003670351889638602,0.005491129188702045,-0.000038414647596295,-0.005426712741594785,0.0036778730471761206,0.002921979790357042,-0.005612092537049578,0.000862504886225179,0.004994756869438384,-0.004206777101008821,-0.002138727658395496,0.005612555974717905,-0.001640603793679084,-0.00447391034918115,0.0046305252678440646,0.0013375643846813207,-0.005496598259191423,0.002358580514084293,0.003877671165064496,-0.004944102324323375,-0.0005352527185069069,0.005270443255972866,-0.003003941903847979,-0.003220575689940079,0.005144814658170978,-0.000251963241123376,-0.004942276221088671,0.0035660207544181725,0.002517890234124859,-0.005232271548429072,0.0010086524055568644,0.0045220286015450195,-0.004036124920485116,-0.001785297355488709,0.0052083240203809455,-0.001720467938676326,-0.004021136032862963,0.004407645528211705,0.00103858281312451,-0.005076963386680254,0.002374390930557525,0.003452274611672536,-0.004676123221830755,-0.000293328920583648,0.004844182283096554,-0.0029589426438823055,-0.002829080820353618,0.004839272196996332,-0.000435380175485463,-0.004517801641045534,0.00346436212758138,0.0021658606757821207,-0.004896962550898842,0.0011332360936159342,0.0041072675988673485,-0.003882746693639497,-0.0014772937632670537,0.004851162237974012,-0.001786961913692683,-0.003623422830336836,0.004208153488994983,0.0007781377996418393,-0.004705840642293678,0.0023845416920389327,0.0030782571544993855,-0.004436661150818149,-0.000082939248081345,0.004466836450525034,-0.0029154200873884777,-0.0024846425797872,0.00456639129577918,-0.000594244714662356,-0.004141693120882942,0.003370669019868411,0.001856058123530432,-0.004597490347915285,0.0012401078946157153,0.0037394657832780214,-0.003743118961844232,-0.001206309833420299,0.004532072941424919,-0.001842335860794209,-0.003270503864866559,0.004027453169436672,0.0005492514201438184,-0.004374128830803134,0.0023898217124098888,0.0027462141060571542,-0.004220263892919906,0.0001014892078418608,0.004129395888683835,-0.002872853287528974,-0.002178808909098591,0.004320070339086555,-0.000732772431855468,-0.0038052023601414537,0.0032832688759818953,0.0015810451408781274,-0.004327298885133179,0.0013321936644063676,0.0034102820608713055,-0.003614579152420938,-0.000965958591601959,0.0042442267481438865,-0.001888309967606561,-0.002954566646910544,0.003862053730280365,0.0003465992716145695,-0.004074890983889265,0.002390842639114913,0.002448959438274671,-0.004022771440620501,0.00026422738837701204,0.0038249653113078845,-0.002830852389397747,-0.001905095542674953,0.004095634147866093,-0.0008542085792722223,-0.003501607823646661,0.0032008843221029396,0.0013350931947516316,0.004081344613809632,0.0014117568426467166,0.0031132831440029004,-0.003495080560118109,-0.000751301299248045,0.0039823495988200956,-0.0019262233125530552,-0.0026695630035545965,0.0037092590208348468,0.00016604814335501283,-0.003802750032448531,0.00238808774933818,0.0021809095582688387,-0.0038409575222055825,0.0004086038740077174,0.003548180682849912,-0.00278912216160145,-0.0016584460091960713,0.0038894430832158615,-0.0009610928562487279,-0.003225662294979352,0.0031225253816182913,0.0011137192491960006,-0.003855686955326962,0.0014805770200375756,0.0028434296419308706,-0.003383026569449437,-0.0005584593235005616,0.0037423065725655123,-0.0019571353282153824,-0.002410739334022185,0.0035669562592685992,0.000004340463089199634,-0.003553476225131052,0.002381945611343005,0.0019376615497718379,-0.003672284215497602,0.0005372516695656682,0.0032948088333592442,-0.0027474371465572647,-0.0014348600868823633,0.0036986240233832955,-0.0010554420895805701,-0.0029732117153399543,0.003047415214307232,0.0009133652765595503,-0.0036472049859943957,0.0015400738095075364,0.002596719693376865,-0.003277155743961312,-0.0003843443595345254,0.003520812524978191,-0.001981896589820398,-0.0021743092640833387,0.0034334687762567285,-0.0001411261126639814,0.0023727337708766235,0.0017156978580311923,-0.003514730101806216,0.0006522814102675338,0.0030614664015164317,-0.002705624325836564,-0.0012311324328946071,0.003520881067978818,-0.0011388790574619577,-0.002740926389843438,0.0029749378100310947,0.0007311717760163106,-0.0034533971691657716,0.0015913946155659104,0.0023699365314837134,-0.0031764604545482227,-0.00022646693702463983,0.0033152266358330964,-0.0020011992261728833,-0.001957220756854529,0.0033074512487201294,-0.00027245583099065574,-0.0031107008045504225,0.002360715744923774,0.0015121752946147878,-0.0033666674657802775,0.0007554053700443383,0.00284541857387878,-0.002663550773165199,-0.001044665065235685,0.0033543596961918744,-0.001212725111614123,-0.002526107720106278,0.002904600416141118,0.0005648146273983649,-0.0032722370521445954,0.0016354780062711222,0.002160466254018691,-0.003080128151737152,-0.000082797930510248,0.0031234037829790946,-0.002015613480508536,-0.00175698733817825,0.0031878137718127416,-0.0003913689234629894,-0.002912269083932181,0.0023461134262495863,0.0013247715479915683,-0.003226772947196665,0.0008480278373982253,0.0026444323795080907,-0.002621114694188058,-0.0008733304451363718,0.0031975475558126023,-0.0012780679337996753,-0.0023265468088722987,0.0028360060700229743,0.0004123855362323381,-0.003102067489642725,0.0016731002473195156,0.001966164025988275,-0.002987498252220287,0.00004833328785673103,0.002943585209223255,-0.002025614663560462,-0.0015715637451245235,0.003073665910135281,-0.0004992857952449686,-0.002726584833597506,0.0023291162790907956,0.0011515717076079155,-0.0030939614708402024,0.0009313120391705081,0.0024566680294338806,-0.002578238813341514,-0.000715369914541897,0.0030492008505353272,-0.0013358118795590603,-0.002140419386636313,0.0027688331984681023,0.00027230306044425507,-0.0029415219008097995,0.0017049099941755753,0.0017852543316613596,-0.0028980299980183146,0.00016831488624009116,0.0027743168705652277,-0.0020316033182352874,-0.0013992529276129046,0.002964274848589291,-0.0005973900770956857,-0.0025521406810003954,0.0023098882513615314,0.0009909831370976026,-0.0029673366695994975,0.0010062304166468866,0.002280597264378061,-0.002534865417417635,-0.0005693172763382291,0.0029082889338595324,-0.0013867159137674443,-0.0019662066190262472,0.0027028202465121734,0.00014324546521498255,-0.0027894648250310636,0.001731454512834913,0.0016162555759663638,-0.0028112781592852815,0.0002783101226767328,0.002614387616968737,-0.002033920507690205,-0.001238635550763712,0.002859033660935118,-0.0006866764820938022,-0.002387678084620776,0.0022885730357688917,0.000841670763073588,-0.0028461531856580177,0.0010736028917752718,0.002114941187700384,-0.002490952588011033,-0.0004339405427495209,0.0027739520605998113,-0.0014314225634394463,-0.0018026346487828543,0.0026377539430179966,0.000024099403604626595,-0.0026449464716313343,0.0017531997460879121,0.0014579223699989954,-0.002726874431534224,0.00037930144622244015,0.002462781801289147,-0.0020328595469610695,-0.0010885158914870888,0.0027574369494554997,-0.0007679875735691736,-0.0022321391627136557,0.0022652981196188125,0.000702507285968018,-0.002729787653816416,0.0011341263410876764,0.0019586223638290937,-0.00244647130004073,-0.0003081970043560719,0.002645468786255706,-0.0014704802733878732,-0.0016486278957671848,0.0025734602342109597,-0.00008607976421486678,-0.0025071675622243285,0.0017705458451201643,0.0013092008421668711,-0.002644513025712797,0.0004721246781596627,0.0023186425320669743,-0.002028675104990842,-0.0009478798462329672,0.002659061929424631,-0.0008420423294057347,-0.0020846292530919777,0.0022401779340787444,0.0005725344463660855,-0.002617716117379471,0.0011883975459047247,0.00181072750167585,-0.002401403159898697,-0.0001911981961946872,0.00252223053520494,-0.00150436085260325,-0.0015032725941173384,0.0025097972004579777,-0.00018809898018486252,-0.0023754518425589425,0.0017838393165831475,0.0011691936682461637,-0.0025639393856203506,0.0005574957818355751,0.002181242879348386,-0.002021590337661687,-0.0008158619997894686,0.0025635535866886197,-0.0009094585606012332,-0.0019443875126433023,0.0022133163256927288,0.00045093258457585547,-0.002509496269414901,0.0012369312421345489,0.0016704780892682278,-0.0023557386219282845,-0.00008218230752615857,0.0024037215609318827,-0.001533473223012741,-0.001365788039216979,0.0024466494652647408,-0.0002826519588731703,-0.0022492243779544466,0.0017933826134725838,0.0010371324395297126,-0.002484941265751537,0.0006360320298354078,0.002049963093101947,-0.0020118025292847827,-0.0006917195525119262,0.0024706129178784933,-0.0009707706722735125,-0.0018107636100686472,0.002184808512062205,0.00033699649284626125,-0.002404753355323932,0.0012801744470596899,0.001537207069170819,-0.0023094755667628676,0.000019507746753487322,0.002289503007619787,-0.0015581743520317768,-0.0012355037060267395,0.0023839237396364385,-0.00037033867283502197,-0.0021279942584771353,0.0017994417741892838,0.0009123556323570743,-0.002407341610307096,0.0007082688896385101,0.001924272416723798,-0.001999487592035099,-0.0005748114948746359,0.002379987528811685,-0.0010264438571449548,-0.001683199086011227,0.0021547426407978825,0.00023011609295240612,-0.0023031688829249506,0.0013185179278607563,0.001410340151546865,-0.00226261815632344,0.00011444190350763413,0.0021792001238734966,-0.0015787780180434162,-0.0011118408849488351,0.002321545239227773,-0.00045168099825255704,-0.0020113407007838497,0.0018022525561288292,0.0007942908968153683,-0.0023309928205821405,0.0007746736043426581,0.001803714447662988,-0.0019848036822188407,-0.0004645818368192538,0.0022914640549012346,-0.0010768855293036537,-0.0015612123237860743,0.0021232010403929814,0.0001297608503656892,-0.002204471506490353,0.0013523054543425155,0.0012893807223029292,-0.0022151759024297097,0.0002031171523614491,0.002072491922429874,-0.0015955618922985336,-0.0009942978268588042,0.002259454778879646,-0.0005271353749706217,-0.0018989017911572215,0.0018020253971051474,0.0006824407072985435,-0.0022557721026356748,0.0008356561984161872,0.0016878952618040433,-0.0019678941272325413,-0.00036054599946802374,0.0022048620023513398,-0.001122454603471095,-0.0014443863389041823,0.0020902612296847677,0.0000354671083238826,-0.0021084296094975655,0.0013818413183534276,0.0011738975633771888,-0.002167162901846324,0.0002859690931723308,0.0019691027549326263,-0.0016087733011967177,-0.000882437638330581,0.0021976063975728925,-0.0005971031245060763,-0.0017903653004237641,0.001798949456116054,0.0005763706527763578,-0.0021815776628847307,0.0008915784597268142,0.0015764737099661576,-0.0019488898098829778,-0.0002622796945123937,0.002120028706833092,-0.0011634690778397434,-0.00133235878806569,0.002055996736555064,-0.00005317227695481571,-0.0020148452260280994,0.0014073964858683516,0.0010635147912839954,-0.002118597202116705,0.0003633814063964488,0.0018687953986439004,-0.001618633945617953,-0.0007758783501296758,0.0021359654021759706,-0.0006619389156958006,-0.001685461137567241,0.0017931959250680322,0.0004756998166979747,-0.002108325574690938,0.0009427613181347118,0.0014691534354072185,-0.0019279111220849552,-0.00016940977630202798,0.0020368351781634214,-0.0012002122704387638,-0.0012248137397222571,0.0020204777647040138,-0.0001365164731501839,-0.0019235490254383598,0.001429213661905231,0.0009579035592634622,-0.0020695002709836996,0.00043569366276668194,0.001771365346153946,-0.0016253437895462407,-0.0006742847164405341,0.002074506744423042,-0.0007219577539746244,-0.001583955109401834,0.0017849207587636168,0.0003800928237751474,-0.0020359471799921113,0.0009894909439983504,0.001365676265258973,-0.0019050695742462466,-0.00008160667009977071,0.0019551726527607546,-0.0012329379787893553,-0.0011214748532388037,0.0019837717385284585,-0.00021488374589178938,-0.0018343961478594086,0.0014475114846589161,0.0008567751719113934,-0.0020198965484687923,0.0005032078018533034,0.0016766360593018427,-0.0016290842822227678,-0.0005773614024287887,0.0020132136649767046,-0.0007774407854154982,-0.001485643728726439,0.0017742669373665958,0.00028925322595191566,-0.0019643869206406876,0.001032023817418387,0.0012658167066469663,-0.0018804691274104883,0.0000014219314192059985,0.0018749497155054894,-0.0012618747724836893,-0.0010220996923464246,0.0019459437495293614,-0.0002885573539851103,-0.0017472627252814671,0.0014624880173070333,0.000759875338937036,-0.001969813065372363,0.0005661935363351936,0.0015844550012379893,-0.0016300210419186326,-0.00048484729311842076,0.0019520765530275522,-0.0008286401427992488,-0.0013903498698962624,0.001761366350587126,0.0002029179715772622,-0.0018936005171811343,0.001070590964359338,0.0011693773369627605,-0.0018542073006706367,0.00007993634436630187,0.001796089882737794,-0.001287229582897214,-0.0009264749580346582,0.00190705692264887,-0.000357790488405239,-0.0016620429587037447,0.001474323669667731,0.000666979353589724,-0.001919279115500805,0.0006248928836065682,0.001494690300540488,-0.0016283061020082176,-0.00039651071375081354,0.0018910919809583453,-0.0008757830124216558,-0.0012979191136915354,0.001746341373859158,0.0012085275628620108,-0.001823553430342144,0.0011054015141281398,0.0010761849224576528,-0.0018263760952866859,0.00015416933249647887,0.0017185295610630813,-0.0013091907195737172,-0.0008344124713796399,0.001867172717108242,-0.00042281043082654894,-0.0015786466491034894,0.0014831836541463507,0.000577888026299939,-0.0018683259716293663,0.0006795239841810711,0.0014072279318751814,-0.0016240797990220387,-0.0003121453955687333,0.0018302618820712844,-0.0009190750631916303,-0.0012082166562672975,0.0017293061922154344,0.000042848095910588676,-0.001754219553962642,0.0011366457007577196,0.0009860871336272348,-0.0017970627684170263,0.00022432985947940388,0.001642216314245644,-0.00132793041619937,-0.000745745771673329,0.0018263511733560237,-0.00048382207139291455,-0.001496997100948329,0.0014892200590753374,0.0004924242387303761,-0.0018169866372816674,0.000730284333815972,0.0013219693212437487,-0.0016174723661781761,-0.00023156705474265918,0.0017695928459084888,-0.0009587033508575022,-0.0011211246823503444,0.0017103679163289168,-0.000031284005997565645,-0.0016855800984575933,0.0011644974061324103,0.000898949752385515,-0.0017663504827774893,0.00029060627506083647,0.0015671073840996523,-0.001343606988452282,-0.0006603272222014626,0.0017846511154448806,-0.0005410108975245877,-0.0014170293332391715,0.001492573605985117,0.00041043001032005426,-0.0017652956280132586,0.0007773535310730766,0.0012388293021558306,-0.0016086052833111516,-0.0001546104783725948,0.001709095510765675,-0.0009948387879098184,-0.001036540122601161,0.0016896275264316656,-0.00010171289829495539,-0.0016176226320130786,0.0011891163234524363,0.0008146542866641094,-0.0017343188534058138,0.0003531690319383539,0.0014931684219100807,-0.0013563666699270584,-0.0005780255370831861,0.001742130316358363,-0.0005945455437270626,-0.001338688545766597,0.0014933751444066359,0.0003317639903807079,-0.0017132887771369898,0.0008208956222786434,0.0011577343633633864,-0.001597592424277112,0.0016487840369650121,-0.0010276382522176027,-0.0009543727305231596,0.0016671806729632347,-0.0001685917126398524,-0.0015503402530239307,0.0012106498045694487,0.0007330959242867455,-0.0017010444086675823,0.00041217301165898763,0.0014203723952454072,-0.0013663451796973138,-0.0004987236591255881,0.0016988456323976096,-0.000644579975265785,-0.001261928798224407,0.0014917469276472496,0.00025629930533804004,-0.001661003061809122,0.0008610611103393504,0.001078621140041301,-0.0015845410351623059,-0.000010982519468670268,0.001588675647577043,-0.0010572463937182544,-0.0008745434264680063,0.0016431183573983941,-0.00023205945121231676,-0.0014837308722831706,0.0012292344428094005,0.0006541817707338698,-0.0016666009794538096,0.00046775952319143125,0.0013486986416117019,-0.0013736690651118403,-0.00042231693169361435,0.0016548531116204845,-0.0006912553649986834,-0.0011867118677229454,0.0014878037049223778,0.00018392170375762485,-0.0016084764461720084,0.0008979886815637,0.0010014351092189444,-0.0015695525704905507,0.00005594466207552277,0.0015287902257490346,-0.001083797187546618,-0.0007969828659632944,0.0016175275124054767,-0.0002922427865284056,-0.0014177965873931977,0.0012449974334534334,0.0005778293255745284,-0.0016310600279888488,0.0005200580262196091,0.0012781320456142983,-0.0013784568554704394,-0.0003487115180043474,0.0016102080804333118,-0.0007347017119004154,-0.0011130062565073524,0.0014816536588215525,0.00011452795221224462,-0.0015557477388619453,0.0009318066948683035,0.00092612945734861,-0.001552723409721847,0.00011976511736049848,0.001469149959770467,-0.0011074152733014948,-0.0007216301972786769,0.0015904914970633767,-0.0003492576182697266,-0.0013525431350203407,0.001258057746515065,0.0005039651604261612,-0.0015944909256388486,0.0005691876218907034,0.0012086623204786548,-0.0013808200558933436,-0.0002778230295433546,0.0015649652117235575,-0.0007750392411754451,0.0010407863267157488,0.0014733992119670871,0.000048024443351710324,-0.0015028564626857373,0.0009626344698868147,0.000852664093594242,-0.0015341454724189692,0.0001805798375757076,0.0014097790285858799,-0.0011282171131553429,-0.0006484319793394448,0.0015620905201192293,-0.00040321042418424126,-0.0012879794091582,0.0012685271403792076,0.00043252376782482155,-0.0015569611874856634,0.0006152583463028969,0.001140283378138452,-0.001380864005588963,-0.00020957533199357617,0.0015191785773452852,-0.0008123796189423287,-0.0009700315430348592,0.0014631377225859693,-0.00001567401574594861,-0.001449842734661874,0.0009905834041994542,0.0007810047870022233,-0.0015139067472927914,0.00023848140533292832,0.0013507033217300011,-0.0011463119959027066,-0.0005773412360600683,0.0015324020020463702,-0.0004541994357349061,-0.0012241170356022742,0.0012765110399913272,0.00036344655563969773,-0.0015185366701156824,0.000658372295973902,0.0010729927747985181,-0.0013786886206157503,-0.0001438995024424062,0.0014729016873054363,-0.0008468270088493829,-0.0009007258073856401,0.001450962085384556,-0.00007664526144318761,-0.0013967471549453294,0.0010157579447764558,0.0007111224094082552,-0.0014920917477833327,0.00029355504647752005,0.001291950188696457,-0.0011618029094674707,-0.0005083166272211274,0.0015015008848669618,-0.0005023156640160524,-0.0011609699945040115,0.0012821092993090522,0.00029668096591077206,-0.0014792817380055517,0.000698624609657607,0.0010067912210918668,-0.0013743890378763429,-0.00008073291603006744,0.001426187517618761,-0.0008784789934285954,-0.0008328568724236371,0.0014369612513953334,-0.00013496069974191892,-0.0013436107034079628,0.0010382564345878728,0.0006429922689646879,-0.001468781904744373,0.0003458795506288721,0.0012335482135821156,-0.0011747873006891063,-0.0004413217192995347,0.0014694598972368577,-0.0005476437972705667,-0.0010985542842111163,0.0012854168645082713,0.00023217970047962564,0.0007361043268706108,0.0009416821477331841,-0.00002001844377637972,0.0013790885284927176,-0.0009074273792894457,-0.0007664158227911079,0.0014212206782551482,-0.00019068611930432298,-0.0012904746428634454,0.0010581718519219556,0.0005765935216221548,-0.0014440559051002789,0.00039552807880841544,0.0011755270115402297,-0.0011853577381613707,-0.0003763243423359188,0.0014363497810923871,-0.0005902629878833201,-0.001036887620716606,0.001286524351779206,0.00016990003861119102,-0.0013985314407912817,0.0007708951402235772,0.0008776713190505759,-0.0013597772134087674,0.0000382962537624602,0.0013316566742453079,-0.0009337589021888669, -0.0007013966148476759,0.0014038227205496864,-0.0002438824068503528,-0.0012373804280933014,0.0010755924571681343,0.0005119086499337978,-0.0014179899839424565,0.00044256887361214276,0.0011179170441275007,-0.0011936024914151245,-0.00031329602114924806,0.001402239485171366,-0.000630247543915065,-0.0009759891679376904,0.001285518551373567,0.00010980323415663845],"x":[100.0,100.60925648702595,101.21851297405189,101.82776946107785,102.4370259481038,103.04628243512974,103.65553892215569,104.26479540918163,104.87405189620759,105.48330838323353,106.09256487025948,106.70182135728543,107.31107784431137,107.92033433133733,108.52959081836327,109.13884730538922,109.74810379241517,110.35736027944112,110.96661676646707,111.57587325349301,112.18512974051896,112.7943862275449,113.40364271457086,114.01289920159681,114.62215568862275,115.2314121756487,115.84066866267464,116.4499251497006,117.05918163672655,117.6684381237525,118.27769461077844,118.88695109780438,119.49620758483034,120.10546407185629,120.71472055888223,121.32397704590818,121.93323353293412,122.54249001996008,123.15174650698603,123.76100299401197,124.37025948103792,124.97951596806388,125.58877245508982,126.19802894211577,126.80728542914171,127.41654191616766,128.02579840319362,128.63505489021955,129.2443113772455,129.85356786427147,130.4628243512974,131.07208083832336,131.6813373253493,132.29059381237525,132.8998502994012,133.50910678642714,134.1183632734531,134.72761976047903,135.336876247505,135.94613273453095,136.55538922155688,137.16464570858284,137.77390219560877,138.38315868263473,138.9924151696607,139.60167165668662,140.21092814371258,140.8201846307385,141.42944111776447,142.03869760479043,142.64795409181636,143.25721057884232,143.86646706586825,144.4757235528942,145.08498003992017,145.6942365269461,146.30349301397206,146.91274950099802,147.52200598802395,148.1312624750499,148.74051896207584,149.3497754491018,149.95903193612776,150.5682884231537,151.17754491017965,151.78680139720558,152.39605788423154,153.0053143712575,153.61457085828343,154.2238273453094,154.83308383233532,155.44234031936128,156.05159680638724,156.66085329341317,157.27010978043913,157.87936626746506,158.48862275449102,159.09787924151698,159.7071357285429,160.31639221556887,160.9256487025948,161.53490518962076,162.14416167664672,162.75341816367265,163.3626746506986,163.97193113772454,164.5811876247505,165.19044411177646,165.7997005988024,166.40895708582835,167.01821357285428,167.62747005988024,168.2367265469062,168.84598303393213,169.4552395209581,170.06449600798402,170.67375249500998,171.28300898203594,171.89226546906187,172.50152195608783,173.11077844311376,173.72003493013972,174.32929141716568,174.9385479041916,175.54780439121757,176.1570608782435,176.76631736526946,177.37557385229542,177.98483033932135,178.5940868263473,179.20334331337327,179.8125998003992,180.42185628742516,181.0311127744511,181.64036926147705,182.249625748503,182.85888223552894,183.4681387225549,184.07739520958083,184.6866516966068,185.29590818363275,185.90516467065868,186.51442115768464,187.12367764471057,187.73293413173653,188.3421906187625,188.95144710578842,189.56070359281438,190.1699600798403,190.77921656686627,191.38847305389223,191.99772954091816,192.60698602794412,193.21624251497005,193.825499001996,194.43475548902197,195.0440119760479,195.65326846307386,196.2625249500998,196.87178143712575,197.4810379241517,198.09029441117764,198.6995508982036,199.30880738522953,199.9180638722555,200.52732035928145,201.13657684630738,201.74583333333334,202.35508982035927,202.96434630738523,203.5736027944112,204.18285928143712,204.79211576846308,205.401372255489,206.01062874251497,206.61988522954093,207.22914171656686,207.83839820359282,208.44765469061878,209.0569111776447,209.66616766467067,210.2754241516966,210.88468063872256,211.49393712574852,212.10319361277445,212.7124500998004,213.32170658682634,213.9309630738523,214.54021956087826,215.1494760479042,215.75873253493015,216.36798902195608,216.97724550898204,217.586501996008,218.19575848303393,218.8050149700599,219.41427145708582,220.02352794411178,220.63278443113774,221.24204091816367,221.85129740518963,222.46055389221556,223.06981037924152,223.67906686626748,224.2883233532934,224.89757984031937,225.5068363273453,226.11609281437126,226.72534930139722,227.33460578842315,227.9438622754491,228.55311876247504,229.162375249501,229.77163173652696,230.3808882235529,230.99014471057885,231.59940119760478,232.20865768463074,232.8179141716567,233.42717065868263,234.0364271457086,234.64568363273452,235.25494011976048,235.86419660678644,236.47345309381237,237.08270958083833,237.69196606786429,238.30122255489022,238.91047904191618,239.5197355289421,240.12899201596807,240.73824850299403,241.34750499001996,241.95676147704592,242.56601796407185,243.1752744510978,243.78453093812377,244.3937874251497,245.00304391217566,245.6123003992016,246.22155688622755,246.8308133732535,247.44006986027944,248.0493263473054,248.65858283433133,249.2678393213573,249.87709580838325,250.48635229540918,251.09560878243514,251.70486526946107,252.31412175648703,252.92337824351299,253.53263473053892,254.14189121756488,254.7511477045908,255.36040419161677,255.96966067864273,256.57891716566866,257.1881736526946,257.7974301397206,258.40668662674653,259.01594311377244,259.6251996007984,260.23445608782436,260.8437125748503,261.4529690618763,262.0622255489022,262.67148203592814,263.2807385229541,263.88999500998005,264.499251497006,265.1085079840319,265.7177644710579,266.32702095808384,266.9362774451098,267.54553393213575,268.15479041916166,268.7640469061876,269.3733033932136,269.98255988023953,270.5918163672655,271.2010728542914,271.81032934131736,272.4195858283433,273.0288423153693,273.63809880239523,274.24735528942114,274.8566117764471,275.46586826347306,276.075124750499,276.684381237525,277.2936377245509,277.90289421157684,278.5121506986028,279.12140718562875,279.7306636726547,280.3399201596806,280.9491766467066,281.55843313373254,282.1676896207585,282.77694610778445,283.38620259481036,283.9954590818363,284.6047155688623,285.21397205588823,285.8232285429142,286.4324850299401,287.04174151696606,287.650998003992,288.260254491018,288.86951097804393,289.47876746506984,290.0880239520958,290.69728043912176,291.3065369261477,291.9157934131737,292.5250499001996,293.13430638722554,293.7435628742515,294.35281936127745,294.9620758483034,295.5713323353293,296.1805888223553,296.78984530938123,297.3991017964072,298.00835828343315,298.61761477045906,299.226871257485,299.836127744511,300.44538423153693,301.0546407185629,301.6638972055888,302.27315369261476,302.8824101796407,303.4916666666667,304.10092315369263,304.71017964071854,305.3194361277445,305.92869261477045,306.5379491017964,307.1472055888224,307.7564620758483,308.36571856287424,308.9749750499002,309.58423153692615,310.1934880239521,310.802744510978,311.412000998004,312.02125748502993,312.6305139720559,313.23977045908185,313.8490269461078,314.4582834331337,315.0675399201597,315.67679640718563,316.2860528942116,316.89530938123755,317.50456586826346,318.1138223552894,318.7230788423154,319.33233532934133,319.9415918163673,320.5508483033932,321.16010479041915,321.7693612774451,322.3786177644711,322.98787425149703,323.59713073852294,324.2063872255489,324.81564371257485,325.4249001996008,326.0341566866268,326.6434131736527,327.25266966067863,327.8619261477046,328.47118263473055,329.0804391217565,329.6896956087824,330.2989520958084,330.90820858283433,331.5174650698603,332.12672155688625,332.73597804391216,333.3452345309381,333.9544910179641,334.56374750499003,335.173003992016,335.7822604790419,336.39151696606785,337.0007734530938,337.6100299401198,338.21928642714573,338.82854291417163,339.4377994011976,340.04705588822355,340.6563123752495,341.2655688622755,341.8748253493014,342.48408183632733,343.0933383233533,343.70259481037925,344.3118512974052,344.9211077844311,345.5303642714571,346.13962075848303,346.748877245509,347.35813373253495,347.96739021956085,348.5766467065868,349.1859031936128,349.79515968063873,350.4044161676647,351.0136726546906,351.62292914171655,352.2321856287425,352.8414421157685,353.45069860279443,354.05995508982033,354.6692115768463,355.27846806387225,355.8877245508982,356.4969810379242,357.1062375249501,357.71549401197603,358.324750499002,358.93400698602795,359.5432634730539,360.1525199600798,360.7617764471058,361.37103293413173,361.9802894211577,362.58954590818365,363.19880239520955,363.8080588822355,364.4173153692615,365.02657185628743,365.6358283433134,366.2450848303393,366.85434131736525,367.4635978043912,368.0728542914172,368.68211077844313,369.29136726546903,369.900623752495,370.50988023952095,371.1191367265469,371.7283932135729,372.3376497005988,372.94690618762473,373.5561626746507,374.16541916167665,374.7746756487026,375.38393213572857,375.9931886227545,376.60244510978043,377.2117015968064,377.82095808383235,378.4302145708583,379.0394710578842,379.6487275449102,380.25798403193613,380.8672405189621,381.47649700598805,382.08575349301395,382.6950099800399,383.3042664670659,383.91352295409183,384.5227794411178,385.1320359281437,385.74129241516965,386.3505489021956,386.9598053892216,387.56906187624753,388.17831836327343,388.7875748502994,389.39683133732535,390.0060878243513,390.61534431137727,391.2246007984032,391.83385728542913,392.4431137724551,393.05237025948105,393.661626746507,394.2708832335329,394.8801397205589,395.48939620758483,396.0986526946108,396.70790918163675,397.31716566866265,397.9264221556886,398.5356786427146,399.14493512974053,399.7541916167665,400.3634481037924,400.97270459081835,401.5819610778443,402.19121756487027,402.80047405189623,403.40973053892213,404.0189870259481,404.62824351297405,405.2375,405.84675648702597,406.4560129740519,407.06526946107783,407.6745259481038,408.28378243512975,408.8930389221557,409.5022954091816,410.1115518962076,410.72080838323353,411.3300648702595,411.93932135728545,412.54857784431135,413.1578343313373,413.7670908183633,414.37634730538923,414.9856037924152,415.5948602794411,416.20411676646705,416.813373253493,417.42262974051897,418.03188622754493,418.64114271457083,419.2503992015968,419.85965568862275,420.4689121756487,421.07816866267467,421.6874251497006,422.29668163672653,422.9059381237525,423.51519461077845,424.1244510978044,424.7337075848303,425.3429640718563,425.95222055888223,426.5614770459082,427.17073353293415,427.77999001996005,428.389246506986,428.998502994012,429.60775948103793,430.2170159680639,430.8262724550898,431.43552894211575,432.0447854291417,432.65404191616767,433.26329840319363,433.87255489021953,434.4818113772455,435.09106786427145,435.7003243512974,436.30958083832337,436.91883732534933,437.52809381237523,438.1373502994012,438.74660678642715,439.3558632734531,439.96511976047907,440.574376247505,441.18363273453093,441.7928892215569,442.40214570858285,443.0114021956088,443.6206586826347,444.22991516966067,444.83917165668663,445.4484281437126,446.05768463073855,446.66694111776445,447.2761976047904,447.88545409181637,448.49471057884233,449.1039670658683,449.7132235528942,450.32248003992015,450.9317365269461,451.54099301397207,452.15024950099803,452.75950598802393,453.3687624750499,453.97801896207585,454.5872754491018,455.19653193612777,455.8057884231537,456.41504491017963,457.0243013972056,457.63355788423155,458.2428143712575,458.8520708582834,459.46132734530937,460.07058383233533,460.6798403193613,461.28909680638725,461.89835329341315,462.5076097804391,463.11686626746507,463.72612275449103,464.335379241517,464.9446357285429,465.55389221556885,466.1631487025948,466.77240518962077,467.38166167664673,467.99091816367263,468.6001746506986,469.20943113772455,469.8186876247505,470.42794411177647,471.0372005988024,471.64645708582833,472.2557135728543,472.86497005988025,473.4742265469062,474.0834830339321,474.69273952095807,475.30199600798403,475.91125249501,476.52050898203595,477.12976546906185,477.7390219560878,478.34827844311377,478.95753493013973,479.5667914171657,480.1760479041916,480.78530439121755,481.3945608782435,482.00381736526947,482.61307385229543,483.22233033932133,483.8315868263473,484.44084331337325,485.0500998003992,485.65935628742517,486.26861277445107,486.87786926147703,487.487125748503,488.09638223552895,488.7056387225549,489.3148952095808,489.92415169660677,490.53340818363273,491.1426646706587,491.75192115768465,492.36117764471055,492.9704341317365,493.57969061876247,494.18894710578843,494.7982035928144,495.4074600798403,496.01671656686625,496.6259730538922,497.23522954091817,497.84448602794413,498.4537425149701,499.062999001996,499.67225548902195,500.2815119760479,500.89076846307387,501.5000249500998,502.10928143712573,502.7185379241517,503.32779441117765,503.9370508982036,504.54630738522957,505.15556387225547,505.76482035928143,506.3740768463074,506.98333333333335,507.5925898203593,508.2018463073852,508.81110279441117,509.42035928143713,510.0296157684631,510.63887225548905,511.24812874251495,511.8573852295409,512.4666417165669,513.0758982035928,513.6851546906188,514.2944111776447,514.9036676646707,515.5129241516966,516.1221806387225,516.7314371257485,517.3406936127744,517.9499500998004,518.5592065868263,519.1684630738523,519.7777195608783,520.3869760479042,520.9962325349302,521.605489021956,522.214745508982,522.824001996008,523.4332584830339,524.0425149700599,524.6517714570858,525.2610279441118,525.8702844311377,526.4795409181637,527.0887974051897,527.6980538922156,528.3073103792415,528.9165668662674,529.5258233532934,530.1350798403193,530.7443363273453,531.3535928143713,531.9628493013972,532.5721057884232,533.1813622754491,533.7906187624751,534.399875249501,535.0091317365269,535.6183882235529,536.2276447105788,536.8369011976048,537.4461576846307,538.0554141716567,538.6646706586827,539.2739271457086,539.8831836327346,540.4924401197604,541.1016966067864,541.7109530938123,542.3202095808383,542.9294660678643,543.5387225548902,544.1479790419162,544.7572355289421,545.3664920159681,545.9757485029941,546.5850049900199,547.1942614770459,547.8035179640718,548.4127744510978,549.0220309381237,549.6312874251497,550.2405439121757,550.8498003992016,551.4590568862276,552.0683133732535,552.6775698602794,553.2868263473054,553.8960828343313,554.5053393213573,555.1145958083832,555.7238522954092,556.3331087824351,556.9423652694611,557.5516217564871,558.160878243513,558.7701347305389,559.3793912175648,559.9886477045908,560.5979041916167,561.2071606786427,561.8164171656687,562.4256736526946,563.0349301397206,563.6441866267465,564.2534431137725,564.8626996007984,565.4719560878243,566.0812125748503,566.6904690618762,567.2997255489022,567.9089820359281,568.5182385229541,569.1274950099801,569.736751497006,570.346007984032,570.9552644710578,571.5645209580838,572.1737774451097,572.7830339321357,573.3922904191617,574.0015469061876,574.6108033932136,575.2200598802395,575.8293163672655,576.4385728542915,577.0478293413173,577.6570858283433,578.2663423153692,578.8755988023952,579.4848552894211,580.0941117764471,580.7033682634731,581.312624750499,581.921881237525,582.531137724551,583.1403942115768,583.7496506986027,584.3589071856287,584.9681636726547,585.5774201596806,586.1866766467066,586.7959331337325,587.4051896207585,588.0144461077845,588.6237025948104,589.2329590818364,589.8422155688622,590.4514720558882,591.0607285429141,591.6699850299401,592.2792415169661,592.888498003992,593.497754491018,594.107010978044,594.7162674650699,595.3255239520959,595.9347804391217,596.5440369261477,597.1532934131736,597.7625499001996,598.3718063872255,598.9810628742515,599.5903193612775,600.1995758483034,600.8088323353294,601.4180888223553,602.0273453093812,602.6366017964071,603.2458582834331,603.8551147704591,604.464371257485,605.073627744511,605.682884231537,606.2921407185629,606.9013972055889,607.5106536926148,608.1199101796407,608.7291666666666,609.3384231536926,609.9476796407185,610.5569361277445,611.1661926147705,611.7754491017964,612.3847055888224,612.9939620758483,613.6032185628743,614.2124750499001,614.8217315369261,615.4309880239521,616.040244510978,616.649500998004,617.25875748503,617.8680139720559,618.4772704590819,619.0865269461078,619.6957834331338,620.3050399201596,620.9142964071856,621.5235528942115,622.1328093812375,622.7420658682635,623.3513223552894,623.9605788423154,624.5698353293413,625.1790918163673,625.7883483033933,626.3976047904191,627.0068612774451,627.616117764471,628.225374251497,628.834630738523,629.4438872255489,630.0531437125749,630.6624001996008,631.2716566866268,631.8809131736527,632.4901696606786,633.0994261477045,633.7086826347305,634.3179391217565,634.9271956087824,635.5364520958084,636.1457085828343,636.7549650698603,637.3642215568863,637.9734780439122,638.5827345309381,639.191991017964,639.80124750499,640.410503992016,641.0197604790419,641.6290169660679,642.2382734530938,642.8475299401198,643.4567864271457,644.0660429141717,644.6752994011975,645.2845558882235,645.8938123752495,646.5030688622754,647.1123253493014,647.7215818363273,648.3308383233533,648.9400948103793,649.5493512974052,650.1586077844312,650.7678642714571,651.377120758483,651.986377245509,652.5956337325349,653.2048902195609,653.8141467065868,654.4234031936128,655.0326596806387,655.6419161676647,656.2511726546907,656.8604291417166,657.4696856287425,658.0789421157684,658.6881986027944,659.2974550898203,659.9067115768463,660.5159680638723,661.1252245508982,661.7344810379242,662.3437375249501,662.9529940119761,663.562250499002,664.1715069860279,664.7807634730539,665.3900199600798,665.9992764471058,666.6085329341317,667.2177894211577,667.8270459081837,668.4363023952096,669.0455588822356,669.6548153692614,670.2640718562874,670.8733283433133,671.4825848303393,672.0918413173653,672.7010978043912,673.3103542914172,673.9196107784431,674.5288672654691,675.1381237524951,675.7473802395209,676.3566367265469,676.9658932135728,677.5751497005988,678.1844061876247,678.7936626746507,679.4029191616767,680.0121756487026,680.6214321357286,681.2306886227545,681.8399451097804,682.4492015968063,683.0584580838323,683.6677145708583,684.2769710578842,684.8862275449102,685.4954840319361,686.1047405189621,686.7139970059881,687.323253493014,687.9325099800399,688.5417664670658,689.1510229540918,689.7602794411177,690.3695359281437,690.9787924151697,691.5880489021956,692.1973053892216,692.8065618762475,693.4158183632735,694.0250748502993,694.6343313373253,695.2435878243513,695.8528443113772,696.4621007984032,697.0713572854291,697.6806137724551,698.2898702594811,698.899126746507,699.508383233533,700.1176397205588,700.7268962075848,701.3361526946107,701.9454091816367,702.5546656686627,703.1639221556886,703.7731786427146,704.3824351297405,704.9916916167665,705.6009481037925,706.2102045908183,706.8194610778443,707.4287175648702,708.0379740518962,708.6472305389221,709.2564870259481,709.8657435129741,710.475]} From 383889c3c0964b0326022c906e7467a235d871ab Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Sat, 30 Nov 2024 17:52:07 +0600 Subject: [PATCH 56/63] "added changes" --- .../base/special/cosc/test/fixtures/julia/large_negative.json | 2 +- .../base/special/cosc/test/fixtures/julia/large_positive.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_negative.json b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_negative.json index 0b7bad707761..1cac4a803b3e 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_negative.json +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_negative.json @@ -1 +1 @@ -{"expected":[0.0013547037113347225,-0.00008079568762223632,-0.0013032639667195508,0.0009482068870398874,0.0006745102501779503,-0.001398701036391261,0.000255111406170193,0.0012313462305846283,-0.0010749686633450609,-0.0005181201119177229,0.001421618557167307,-0.00042702148347751787,-0.0011399129246253469,0.0011863359506704022,0.0003524234202627142,-0.0014229228410856157,0.0005938738241728375,0.0010301941145364818,-0.0012804704349696006,-0.00017987537870032522, 0.001402405827825416, -0.0007530705608911163,-0.0009037097221535848,0.0013557809447669912,0.0000030571377722841856,-0.0013601908085929216, 0.00090210808806338,0.000762248885617645,-0.0014109498242049442,0.0001753624225516151, 0.001296733422985409,-0.0010386160079543679,-0.0006078450522017952,0.001444955378254708,-0.00035266657261104876,-0.001212817615884697,0.0011603943895041257,0.00044274714479023526,-0.0014570900164287276,0.0005261316848493853,0.0011095465725173583,-0.0012654487609877864,-0.0002693872052378724,0.0014469737831970422,-0.0006930686463979073,-0.000988328725870059,0.0013520222868440158,0.00009034497448808978,-0.0014145630303816937,0.0008508641090431388,0.0008508590059251448, -0.001418624616913376, 0.00009169008045193419,0.0013601540581324836,-0.0009970209502992236,-0.0006990955735162068,0.0014640569422267953,-0.00027395873965425173,-0.0012843816256290141,0.0011291973258827153,0.0005352323519178338,-0.0014874328448115856,0.00045367341552896007,0.0011882123093087816,-0.0012452437098237502,-0.0003616677354521192, 0.0014881945889650763,-0.0006280603358161934,-0.0010729327640676513,0.0013432373436468015,0.00018096991543083507,-0.0014661245672588433,0.0007944018925442475,0.0009401330203414861, -0.0014215135501630888,0.000004160681355470407,0.0014213516852222246,-0.0009500785172054345,-0.0007916850261118165,0.0014786934100406806,-0.00019093129845411085,-0.0013543525432043336,0.0010926094439607458,0.0006297167164955381, -0.0015137073498438882,0.00037649851658996944,0.0012659473512369715,-0.0012196917338998107,-0.00045658196359700174,0.001525814248009943,-0.0005580110665203211,-0.0011572905916697484,0.0013292369541027006,0.0002748268245898618,-0.0015146157294215843,0.0007326531501916804,0.0010298565237695327,-0.0014194049353070193,-0.00008715256558205705,0.0014800653889474682,-0.0008976876191456397,-0.0008854197031585339,0.0014886340709551128,-0.00010362400829825569,-0.0014224727585456776,0.001050498355498692,0.0007260307657469527,-0.001535667667814884,0.00029461234075868443,0.0013425019101925,-0.0011886312069928156,-0.0005539877994905418,0.001559575913552362,-0.0004828914172042128,-0.0012411646668722214,0.0013098328436288655, 0.0003718036967882991,-0.001559773088862306,0.0006655539214353752,0.0011198084749505927,-0.001412086929034473,-0.00018216994449885557,0.0015360297201346615,-0.0008397505962121314,-0.0009800990722710716,0.0014936470347427743,-0.000012082633562067368,-0.0014884794421914952,0.0010027341386315309,0.0008239981660159353,-0.0015530657694749106,0.00020802561615797507,0.0014176204183045842,-0.0011519019622018793,-0.0006537364115870995,0.001589219647786393,-0.00040267659810632063,-0.0013243112453736956,0.0012848371684575598,0.00047178205726226374,-0.0016013292823056078,0.0005930440357804405,0.0012097613546300848,-0.0013993470919285973,-0.00028080568809111265,0.001588974550466894, -0.0007761726582259892, -0.0010755160012907107,0.0014934988129685427,0.00008364156528367147,-0.0015521044591574695,0.00094918876280744,0.0009234360190147964,-0.0015656510730402305,0.00011675388673029073,0.0014910415080325629,-0.0011093447096898986,-0.0007556725955325025,0.001614482075996456,-0.0003173458452866235,-0.0014064804332869617,0.0012540619351463758,0.0005746374032369982,-0.0016390127160546362,0.0005150664666649428,0.0012994812972225718,-0.001380971819604787,-0.0003829684916221887,0.0016386248377328533,-0.0007068612053223135,-0.0011714569737996997,0.0014879537724232096,0.00018349241613511245,-0.0016130742041212014,0.0008897353845127244,0.0010241551652236242,-0.001573169931245789,0.00002081686083032396,0.00156249792648088,-0.0010608003173058424,-0.0008596351682610671,0.001635095919056224,-0.00022688170735919174,-0.0014874161892036053,0.0012173182770879943,0.0006802396901027961,-0.0016725471560730281,0.00043156656309144325,0.0013887281884543937,-0.0013567456272535535,-0.000488562090991066,0.0016847002857268295,-0.0006317250129069341,-0.0012677022891246742, 0.0014767734408503983,0.0002874095032710903,-0.0016711093432377332,0.0008242474956707887,0.0011259604917800744,-0.0015753649722662988,-0.00007976234293971042,0.0016317163708284598,-0.0010061089341634364,-0.000965457387776023,0.0016507893842002315,-0.00013126921096422736,-0.00156685626427808,0.0011744155665805965,0.0007884538653755591,-0.001701651183686849,0.00034249114254461993,0.0014772557201856835,-0.001326450264943872,-0.0005974859112116129,0.001726914880121763,-0.0005506732619276986,-0.001364026240751589,0.0014597156415146022,0.00039532892858703026,-0.0017259244452978689,0.0007525979032353132, 0.0012286512418043039,-0.001571974270654796, -0.00018495806565090112,0.0016984172294524755,-0.0009451089335665918,-0.0010729673989072401,0.001661285390290858,-0.000030494888622561294,-0.0016445320672257356,0.001125160337016451,0.0008991404543091707,-0.0017260374936996859,0.00024778742560025563,0.0015648113920925678,-0.0012898636368185866,-0.0007096357929777118,0.001764976278206037,-0.000463614391745148,-0.0014601972660317963,0.001436533428745077,0.0005071841776274079,-0.0017772274817679677,0.0006746575143988709,0.001332021321667042,-0.0015627303199562336,-0.0002947431093170613,0.0017623142104824195,-0.000877635647114571,-0.001181988705509238,0.0016663005993013656,0.00007545435059314086, -0.0017201684387403934,0.0010693549848473762,0.001012156201918434,-0.0017454120073067193,0.00014740178873852566,0.0016511364480105157,-0.0012467584920977201,-0.0008249048065848174,0.001798585026165915,-0.0003704547484103538,-0.0015559780588199226,0.0014069737911782346,0.0006229071044095671,-0.0018247191713425983,0.0005902938967497829,0.001435859602146698,-0.0015473587731087077,-0.0004090898882771942,0.0018231138360421866,-0.000803519856232126,-0.0012923406698205542,0.001665544220193843, 0.0001865925311464803,-0.0017934833168781646,0.0010067962149080377,0.001127354777251449,-0.0017594727667576057,0.00004127830710416601,0.0017359657324540131,-0.001196900849381846,-0.0009431841645044406,0.0018274335723978863,-0.0002710969955758156,-0.001651125635139938,0.0013707760827104086,0.0007424290519805918,-0.001868092139823284,0.0004993695764387755,0.0015399502087727235,-0.0015255769098995776,-0.0005279717534376103,0.00188051477612843,-0.0007225860004099564,-0.001403839039997842,0.0016587165444956085,0.00030293613040504176,-0.0018641872713166389,0.0009372731851724082,0.0012445875471416138,-0.0017679085719836606,-0.00007064294701475216,0.001819027449976196,-0.0011400481077436543,-0.0010643642464005963,0.0018512050388889978,-0.00016543824836932214,-0.0017453913400962337,0.0013276701328525117,0.0008656821293700336,-0.001907029860147505,0.0004017400295716867,0.0016440727958304524,-0.0014970917822124433,-0.0006513645170377981,0.0019342069907288739,-0.0006346500528023692,-0.0015162965072514853,0.0016455071643319288,0.0004245058420226093,-0.0019319828798616812,0.0008605652976278971,0.001363704428372864,-0.0017703973110033667,-0.00018842789163601208,0.001900042806508921,-0.001075946788139407,-0.0011883357535412034,0.0018695717046640144,-0.00005336788189923322,-0.0018385207818808719,0.0012773739777572452,0.0009926006702250087,-0.0019412053299194126,0.00029725131227621997,0.0017480027975165836,-0.0014615979771500486,-0.0007792482118121493,0.001983870642094953,-0.0005395170029725228,-0.001629523294508763,0.001625592812960617,0.0005513286258136866,-0.0019965639149130596,0.0007764395702116646,0.001484554829378281,-0.0017666039254031936,-0.00031215075946395925,0.001978725507397685,-0.0010043298361498824,-0.0013149910134956754,0.0018821931452067191,0.00006523504478390907,-0.0019302536757934271,0.0012195911401280484,0.0011231229042779956,-0.001970279434408502,0.0001857372625652008,0.001851511648473913,-0.001418774924698835,-0.0009116091262001133,0.0020291747306822954,-0.0004369778729492942,-0.001743327779203361,0.0015986347543832497,0.0006834400964042057,0.0006846475099158376,0.0016069886953264314,-0.0017561779389238092,-0.0004418968219652154,0.0020547810812882607, -0.000924913401277078,-0.0014442254610205064,0.0018887139590348678,0.00019050482219169304,-0.002020323577477306,0.0011540073696985783,0.0012571928801717372,-0.0019938989311213094,0.0000670161915541859,0.0019543669643717915,-0.0013682836596523155,-0.0010484421671582106,0.0020697753976417236,-0.0003268061754759243,-0.0018575171536167898,0.001564275631522286,0.0008208873153478847,-0.0021148067911734235,0.0005849213883968643,0.0017308576739633779,-0.0017387504603642919,-0.0005777655908633555,0.002127905991959581,-0.0008373929879720531,-0.0015759393274069797,0.0018887609964432857,0.0003225926717121879,-0.002108457479875406,0.001080286734963962,0.0013947626875822241,-0.002011693976974386,-0.000059113038232347526,0.0020563326712172494,-0.0013097629259197934,-0.0011897536146932108,0.002105313823211009,-0.00020875370130126231,-0.001971898127283933,0.0015221356607009724,0.0009637320672404105,-0.0021678013135685873,0.00047696979744531783,0.0018560164240317264,-0.0017139305505457741,-0.0007198745938893113,0.0021977864911968837,-0.0007414388479507661,-0.0017100395786922079,0.0018819399847623138,0.0004616709873947698,-0.0021943752423985775,0.000998066929991625,0.0015357950386406234,-0.00202327509979841,-0.0001928756751200614,0.002157169069536657,-0.0012428244836758834,-0.0013355643483812275,0.0021354136330099045,-0.00008254549414101212,-0.0020862776773738064,0.0014718080322355046,0.0011120547207021084,-0.0022162428945968968,0.0003604723308662394,0.001982324093842937,-0.0016813008154830246,-0.0008683638461671331,0.0022640971542257833,-0.0006366904504155093,-0.0018464421536347688,0.001867831417894018,0.0006079383796060455,-0.00227778881306316,0.0009069536255053196,0.0016802662841747563,-0.002028229491022795,-0.0003345266414862578,0.002256632816310448,-0.001167047444128274,-0.001485913646982005,0.0021596777018512894,0.000052126164564257466,-0.0022004638547519087,0.0014128533408520358,0.00126595880137988,-0.0022597590837185803,0.00023507319950235106,0.002109646005027821,-0.0016404120522096207,-0.0010234011704437892,0.0023264990242386147,-0.000522749824086804,-0.0019850745659288384,0.0018459855434035826,0.0007616256991975717,-0.002358401194327344,0.0008065136485335909,0.0018281699604801927,-0.0020261164640947796,-0.00048435720082909325,0.002354476803292009,-0.001081971410267293,-0.0016408636893334994,0.0021776842155512427,0.000195608986408136,-0.002314266655792915,0.0013447928226677994,0.001425576438384721,-0.0022979567497804884,0.00010037353418782036,0.002237855586182926,-0.0015907767271143437,-0.0011851885608449423,0.00238463727298552,-0.000399173509233965,-0.0021258789528946767,0.0018159162354147217,0.0009230032695451526,-0.0024359050902366397,0.0006962667161434248,0.001979520988699594,-0.0020164618809028695,-0.0006427029872792218,0.002450449904790678,-0.000987088141197932,-0.0018005049202373317,0.0021889818130413443,0.0003482994098796178,-0.0024274989730836936,0.0012671001137902057,0.001591074890516702,-0.0023304181012462908,-0.00004407793676921038,0.0023668366138935924,-0.0015318610054254897,-0.001353969839436181,0.002438138258662865,-0.00026546278450729853,-0.0022688156762296265,0.0017770934822175035,0.0010923896179530375,-0.002509981155198836,0.0005756753713361598,0.0021343606837074657,-0.0019987512926955397,-0.0008099537296424953,0.00254429656064475,-0.0008818313773363464,-0.0019649624919393944,0.002193083580589947,0.0005106532072058687,-0.0025399776422338678,0.0011791911639854604,0.0017626644181688235,-0.0023566957350428333,-0.00019879623938599445,0.0024964858354924813,-0.00146307496925485,-0.0015300399272331895,0.0024866058281607277,-0.00012105173600687797,-0.002413867611434128,0.0017289341386814685,0.0012701620832088038,-0.0025802957417004136,0.0004441326661138072,0.002292762775675713,-0.0019724214676952994,-0.0009865650998984582,0.0026357561503106584,-0.0007655643567507354,-0.0021344040543688977,0.002189459602589621,0.0006831984439252842,-0.002651524607416084,0.0010804118298358284,0.0019406078462819842, -0.0023763064613720563,-0.00036437405972063864,0.0026267160704977212,-0.0013837605529493208,-0.0017137561482247505,0.0025296166649512093,0.000034707394496151097,-0.002561045304065546,0.0016707904878263406,0.0014567697904262773,-0.002646498013376081,0.00030094699839199973,0.0024548407096760426,-0.0019368498777891524,-0.0011730732476570316,0.002724562100778038,-0.0006375644088929401,-0.002309049251439054,0.0021775276826245154,0.0008665514188886104,-0.00276196823553134,0.0009700225248251665,0.00212523227097055,-0.002388723573671563,-0.0005414988913268162,0.0027574599181244795,-0.0012931765775929575,-0.0019055521159241976,0.0025667144219387343,0.0002025623218156692,-0.00271039322720244,0.0016019360127129771,0.0016527496392930796,-0.0027082162479201343,0.00014532332177049004,0.002620756572964529,-0.0018913415811196205,-0.0013701127606773255,0.0028104406530286142,-0.0004970038162398186,-0.002489181395139813,0.0021566417250688395,0.0010614364138116946,-0.0028711448187372303,0.0008471791034790378,0.0023169435085278306,-0.00239336712625174,0.000730974334831124,0.002888674239796538,-0.00119048006591996,-0.002105954930892777,0.002597402293865043,0.0003833832712040953,-0.0028619974513478742,0.0015215475837377457,0.001858746163983543,-0.0027650530968247786,-0.000023660310016934745,0.0027907321151725097,-0.0018351127513965395,-0.0015784390367687671,0.002893109186976975,-0.0003429258653320415,-0.0026751619463642935,0.0021260770975590824,0.0012687103586072714,-0.002978900318566654,0.0007109088807824078,0.0025162440868568238,-0.0023895916350289443,-0.0009337467671138778,0.0030203456428126102,-0.0010747027418019687,-0.0023156066647886274,0.0026211335666366594,0.0005781912888550294,-0.003015995144283809,0.0014286829949348902,0.00207553641687742,-0.0028165794891526013,-0.00020708225886448162,0.002965062486856878,-0.0017672698464407225,-0.0017989563928512285,0.0029722739702945705,-0.00017421463470532062,-0.0028674486500515845,0.0020850120581594692,0.001489393904630621,-0.00308509242353869,0.0005600803033798766,0.002723755860047883,-0.0023766704113479006,-0.0011509390262720404,0.0031524972711655,-0.0009447212311489739,-0.002535291452063633,0.00263729951680836,0.0007881940917086166,-0.003172586467121874,0.0013222524022365918,0.0023040614402268064,-0.0028623267544512165,-0.0004062147739228174,0.0031441335468466083,-0.0016867830453420921,-0.002032753715756122,0.00304762714776719,0.000010443459467399457,-0.003066618480062419,0.002032503997466113,0.0017247109421283146,-0.0031895930183452503,0.0003933642458396804,0.002940248723286922,-0.0023537754483585584,-0.0013838933649719738,0.0032851973223134404,-0.0007992189323923819,-0.002765969999908602,0.002645213801524339,0.0010148319025040486,-0.0033320496437458063,0.001200981675900577,0.0025454664754032564,-0.002901776380305369,-0.0006225720274057844,0.003328443908914386,-0.001592452066050137,-0.0022811501417381,0.0031188427180401414,0.00021260909091555508,-0.0032733969886735914,0.001967458769034038,0.0019761393762924065,-0.003292291199888101,0.00020918412732333507,0.003166677473009642,-0.0023199513626289466,-0.001634226794577885,0.003418569870328527,-0.0006366367365831966,-0.0030088240303863967,0.0026440921439657436,0.0012598366706164737,-0.0034947602842751633,0.00106336489986786,0.002801152903312241,-0.0029343465893604476,-0.0008579723517619143,0.003518633360445458,-0.001482861726775273,-0.0025457542387467462,0.0031855711431955994, 0.0004341542439747131,-0.0034886962922347376,0.0018885906894229385,0.0022454771055622153,-0.0033930970290240374,0.000005650913192192444,0.0034042296826839315,-0.0022740812867012975,-0.0019039032092644228,0.0035528088109410493,-0.00045510862731871024,-0.003265314194853117,0.0026330256291871613,0.0015253094743251686,-0.003661216486495206,0.000907602109727911,0.0030728461454490644,-0.0029593745820486613,-0.0011146198246699294,0.003715519963568881,-0.0013563235147126805,-0.002828541616136108,0.0032474320867874654,0.0006773466507477024,-0.0037136648619296303,0.001794369768372039, 0.0025349288117075377,-0.003491946285305541,-0.0002195226050794828,0.003654388684581852,-0.0022148417094277487,-0.002195328555105548,0.003688196091642576,-0.00025237648509922117,-0.0035372565233594256,0.002610945196425526,0.001813822974066847,-0.0038320718978704527,0.0007315166614984705,0.003362685595945985,-0.0029760927854200468,-0.0013952126006074046, 0.003920149160636109,-0.0012107977810680375,-0.0031319580560293077,0.0033040045506866306,0.0009449622704645561,-0.003949753693213065,0.0016829511968559049,0.002847221672715902, -0.0035888066087307,-0.0004691363725577702,0.003919017583745256,-0.0021406419055430667,-0.002511478137680439,0.0038251259134400675,-0.00002567584365816008,-0.0038269247725934235, 0.002576573809945749,0.0021285589266208304,-0.004008179917679837,0.0005324440447497479,0.003673345448960945,-0.0029835966784503266,-0.0017030888132177993,0.004133859743939733,-0.0010437886748348212,-0.0034590585677355223,0.0033548133355710426,0.0012404373066202102,-0.00419880557335494,0.0015520797741000489,0.003185761939967599,-0.003683685589540096,-0.0007466584551358059,0.004200473047897748,-0.0020495415108737936,-0.002856069512670352,0.003964137394679675,0.00022841962692444204,-0.004137189583835574,0.0025283610837445233,0.0024734956235666467,-0.004190653758641409,0.0003070799592868807,0.004008199614485406,-0.0029808005670774736,-0.0020424261917923845,0.004358373937524613,-0.0008522000264212038,-0.003813697915434429,0.0033993102084415457,0.001568076984060037,-0.004463177515213357,0.0013989582835381479,0.0035548503140859175,-0.003776641641035845,-0.0010564392749880028,0.004501762036534601,-0.00193913652081664,-0.0032338012457680614,0.004105959449068887,0.0005142133977710592,-0.004471710956287682,0.002464392436606433,0.002853667788669409,-0.004380949519793281,0.000051269145339538906,0.004371550776810554,-0.0029663757776967714,-0.002418519987341332,0.004595922632856262,-0.0006321341765754433,-0.004200796374251886,0.003436847291328689,0.0019333474571115053,-0.004745911775827162,0.001220062946280154,0.003959983656586641,-0.003867798924005278,-0.0014040124470628983,0.004826761733952966,-0.0018063987061387966,-0.003650688852895792,0.004251573658933666,0.0008371897247658116,-0.004835209581830059,0.002382260478291738,0.0032755339015728027,-0.004580983361802023,-0.0002402938291902078,0.004768954803937312,-0.0029386626286905145,-0.0028381775827841385,0.0048494230041166,-0.00037860558334096143,-0.004626717888750353,0.0034666387522217694,0.002343292225408638,-0.005050979654771991,0.0010108794041464586,0.004408286376083186,-0.003957368294960792,-0.0017965260083971817,0.005180534673883439,-0.001647444690657601,-0.0041145474877676315,0.0044023042767631845,0.0012044510685232089,-0.005233857607857714,0.0022788790314250107,0.0037475066359415068,-0.004793300436349143,-0.0005744978182697404,0.0052076903706089125, -0.002895542315413201,-0.0033102912790257503,0.0051227361018962095,-0.00008512393347294688,-0.005099820401838425,0.003487704444190258,0.0028071397807013206,-0.005383637093464895, 0.0007655162817272576,0.004909141618215742,-0.004045677424447762,-0.0022433751194695204,0.005569790989575016,-0.0014571959950690587,-0.004635702115674001,0.00455995019667687,0.001625363493193764,0.0021502076378049286,0.004280737739177666,-0.005021324495129137,-0.000960458061786816,0.005697455868660679,-0.0028342457756064757,-0.0038466908083075258,0.005421049995493061,0.0002569282692796016,-0.005631277434697048,0.0034987848582336096,0.0033372134707141746,-0.005750956990830926,0.00047612461878099527,0.005475139369483325,-0.004133215252738831,-0.002757155348611544,0.006003584843768021,-0.0012288649379606654,-0.00522806101919553,0.004726983799197774,0.0021125353435654417,-0.006172304493934396,0.001990832002869674,0.004890312209570127,-0.005269737180178703,-0.0014104976693106936,0.00625143335415501,-0.002751060266739111,-0.004463449147865363,0.005751466336222345,0.0006592523885541026,-0.0062363410064963706,0.003498208933595271,0.003950334848851842,-0.00616265012366927,0.00013199906500878158,0.006123544209342841,-0.004220699554409954,-0.003355143565738766,0.006494396399085612,-0.0009531526966266337,-0.005910789848249051,0.004906860016925527,0.0026833489096393676,-0.006738578726857215,0.0017933042142774152,0.005597124605185432,-0.005545073236956974,-0.0019416955511766076,0.006887966943517764,-0.0026408636819176584,-0.005182950281506819,0.006123928778520445,0.001138154612584251,-0.006936349874034027,0.0034836813230158603,0.004670063887855653,-0.0066323755725483016,-0.0002818630755707789,0.006878648581299539,-0.004309183074290739,-0.0040616818074015685,0.00705987387038743,-0.0006169522533267468,-0.006711018639932855,0.005104514344798969,0.0033624475453092463,-0.007396544559638518,0.0015470654647428096,0.006430940058342965,-0.0058566903088967965,-0.002578422795003113,0.00763331398680969,-0.0024963559927812322,-0.00603729362790659,0.006552750954942065,0.0017170617784943772,-0.0077620524740952095,0.0034519256225489995,0.00553042265382208,-0.007179919026460738,-0.0007871690515933735,0.007775704786464729,-0.004400226705933925,-0.00491217921746382,0.007725758930150321,-0.0002011587968342767,-0.007668410900047241,0.005327200054711453,0.0041859543335028716,-0.008178334646508209,0.0012366068812187032,0.007435615543206518,-0.006218420815770962,-0.0033566915953509562,0.008526364664715428,-0.0023067302785135637,-0.007074165127271463,0.007059250483814296,0.0024308841484176297,-0.008759371974002407,0.0033980556552814112,0.006582390854060322,-0.007834993073048638,-0.0014165550912911755,0.00886782717905591,-0.0044961948661743105,-0.005960176981576993,0.008531053351332505,0.0003232216797313565,-0.00884328286672188,0.005585968886779027,0.0052090134471317615,-0.009133094937371501,0.0008381560025934599,0.008678497434581005,-0.006651540203158853,-0.004332032288489173,0.009627195972428669,-0.002055240938339637,-0.008367546697812851,0.0076765515374687095,0.003334027568792855,-0.01],"x":[-709.0895,-708.481626247505,-707.87375249501,-707.2658787425149,-706.65800499002,-706.050131237525,-705.4422574850299,-704.8343837325349,-704.22650998004,-703.6186362275449,-703.0107624750499,-702.4028887225548,-701.7950149700599,-701.1871412175649,-700.5792674650698,-699.9713937125748,-699.3635199600799,-698.7556462075848,-698.1477724550898,-697.5398987025948,-696.9320249500998,-696.3241511976048,-695.7162774451098,-695.1084036926147,-694.5005299401198,-693.8926561876248,-693.2847824351297,-692.6769086826347,-692.0690349301398,-691.4611611776447,-690.8532874251497,-690.2454136726546,-689.6375399201597,-689.0296661676647,-688.4217924151696,-687.8139186626746,-687.2060449101797,-686.5981711576846,-685.9902974051896,-685.3824236526946,-684.7745499001996,-684.1666761477046,-683.5588023952096,-682.9509286427145,-682.3430548902196,-681.7351811377246,-681.1273073852295,-680.5194336327345,-679.9115598802396,-679.3036861277445,-678.6958123752495,-678.0879386227545,-677.4800648702595,-676.8721911177645,-676.2643173652694,-675.6564436127744,-675.0485698602795,-674.4406961077844,-673.8328223552894,-673.2249486027944,-672.6170748502994,-672.0092010978044,-671.4013273453094,-670.7934535928143,-670.1855798403194,-669.5777060878244,-668.9698323353293,-668.3619585828343,-667.7540848303394,-667.1462110778443,-666.5383373253493,-665.9304635728543,-665.3225898203593,-664.7147160678643,-664.1068423153692,-663.4989685628742,-662.8910948103793,-662.2832210578842,-661.6753473053892,-661.0674735528942,-660.4595998003992,-659.8517260479042,-659.2438522954092,-658.6359785429141,-658.0281047904192,-657.4202310379242,-656.8123572854291,-656.2044835329341,-655.5966097804392,-654.9887360279441,-654.3808622754491,-653.772988522954,-653.1651147704591,-652.5572410179641,-651.949367265469,-651.341493512974,-650.7336197604791,-650.125746007984,-649.517872255489,-648.909998502994,-648.302124750499,-647.694250998004,-647.086377245509,-646.4785034930139,-645.870629740519,-645.262755988024,-644.6548822355289,-644.0470084830339,-643.439134730539,-642.8312609780439,-642.2233872255489,-641.6155134730539,-641.0076397205589,-640.3997659680639,-639.7918922155689,-639.1840184630738,-638.5761447105789,-637.9682709580838,-637.3603972055888,-636.7525234530938,-636.1446497005988,-635.5367759481038,-634.9289021956088,-634.3210284431137,-633.7131546906188,-633.1052809381238,-632.4974071856287,-631.8895334331337,-631.2816596806388,-630.6737859281437,-630.0659121756487,-629.4580384231537,-628.8501646706587,-628.2422909181637,-627.6344171656687,-627.0265434131736,-626.4186696606787,-625.8107959081836,-625.2029221556886,-624.5950484031936,-623.9871746506986,-623.3793008982036,-622.7714271457086,-622.1635533932135,-621.5556796407186,-620.9478058882236,-620.3399321357285,-619.7320583832335,-619.1241846307386,-618.5163108782435,-617.9084371257485,-617.3005633732535,-616.6926896207585,-616.0848158682635,-615.4769421157685,-614.8690683632734,-614.2611946107785,-613.6533208582835,-613.0454471057884,-612.4375733532934,-611.8296996007984,-611.2218258483034,-610.6139520958084,-610.0060783433133,-609.3982045908184,-608.7903308383234,-608.1824570858283,-607.5745833333333,-606.9667095808384,-606.3588358283433,-605.7509620758483,-605.1430883233533,-604.5352145708583,-603.9273408183633,-603.3194670658683,-602.7115933133732,-602.1037195608783,-601.4958458083833,-600.8879720558882,-600.2800983033932,-599.6722245508982,-599.0643507984032,-598.4564770459082,-597.8486032934131,-597.2407295409182,-596.6328557884232,-596.0249820359281,-595.4171082834331,-594.8092345309382,-594.2013607784431,-593.5934870259481,-592.985613273453,-592.3777395209581,-591.7698657684631,-591.161992015968,-590.554118263473,-589.9462445109781,-589.338370758483,-588.730497005988,-588.122623253493,-587.514749500998,-586.906875748503,-586.299001996008,-585.6911282435129,-585.083254491018,-584.475380738523,-583.8675069860279,-583.2596332335329,-582.651759481038,-582.0438857285429,-581.4360119760479,-580.8281382235529,-580.2202644710579,-579.6123907185629,-579.0045169660679,-578.3966432135728,-577.7887694610779,-577.1808957085829,-576.5730219560878,-575.9651482035928,-575.3572744510979,-574.7494006986028,-574.1415269461078,-573.5336531936127,-572.9257794411178,-572.3179056886228,-571.7100319361277,-571.1021581836327,-570.4942844311378,-569.8864106786427,-569.2785369261477,-568.6706631736527,-568.0627894211577,-567.4549156686627,-566.8470419161677,-566.2391681636726,-565.6312944111777,-565.0234206586827,-564.4155469061876,-563.8076731536926,-563.1997994011977,-562.5919256487026,-561.9840518962076,-561.3761781437125,-560.7683043912176,-560.1604306387226,-559.5525568862275,-558.9446831337325,-558.3368093812376,-557.7289356287425,-557.1210618762475,-556.5131881237525,-555.9053143712575,-555.2974406187625,-554.6895668662675,-554.0816931137724,-553.4738193612775,-552.8659456087825,-552.2580718562874,-551.6501981037924,-551.0423243512975,-550.4344505988024,-549.8265768463074,-549.2187030938123,-548.6108293413174,-548.0029555888224,-547.3950818363273,-546.7872080838323,-546.1793343313374,-545.5714605788423,-544.9635868263473,-544.3557130738523,-543.7478393213573,-543.1399655688623,-542.5320918163673,-541.9242180638722,-541.3163443113773,-540.7084705588823,-540.1005968063872,-539.4927230538922,-538.8848493013973,-538.2769755489022,-537.6691017964072,-537.0612280439121,-536.4533542914172,-535.8454805389222,-535.2376067864271,-534.6297330339321,-534.0218592814372,-533.4139855289421,-532.8061117764471,-532.1982380239521,-531.5903642714571,-530.9824905189621,-530.374616766467,-529.766743013972,-529.1588692614771,-528.550995508982,-527.943121756487,-527.335248003992,-526.727374251497,-526.119500499002,-525.511626746507,-524.9037529940119,-524.295879241517,-523.688005489022,-523.0801317365269,-522.4722579840319,-521.864384231537,-521.2565104790419,-520.6486367265469,-520.0407629740519,-519.4328892215569,-518.8250154690619,-518.2171417165669,-517.6092679640718,-517.0013942115769,-516.3935204590819,-515.7856467065868,-515.1777729540918,-514.5698992015969,-513.9620254491018,-513.3541516966068,-512.7462779441117,-512.1384041916168,-511.5305304391218,-510.92265668662674,-510.31478293413176,-509.7069091816367,-509.09903542914174,-508.4911616766467,-507.8832879241517,-507.2754141716567,-506.6675404191617,-506.05966666666666,-505.4517929141717,-504.84391916167664,-504.23604540918166,-503.6281716566866,-503.02029790419164,-502.4124241516966,-501.8045503992016,-501.1966766467066,-500.5888028942116,-499.98092914171656,-499.3730553892216,-498.76518163672654,-498.15730788423156,-497.5494341317365,-496.94156037924154,-496.3336866267465,-495.7258128742515,-495.1179391217565,-494.5100653692615,-493.90219161676646,-493.2943178642715,-492.68644411177644,-492.07857035928146,-491.4706966067864,-490.86282285429144,-490.2549491017964,-489.6470753493014,-489.0392015968064,-488.4313278443114,-487.82345409181636,-487.2155803393214,-486.60770658682634,-485.99983283433136,-485.3919590818363,-484.78408532934134,-484.1762115768463,-483.5683378243513,-482.9604640718563,-482.3525903193613,-481.74471656686626,-481.1368428143713,-480.52896906187624,-479.92109530938126,-479.3132215568862,-478.70534780439124,-478.0974740518962,-477.4896002994012,-476.8817265469062,-476.2738527944112,-475.66597904191616,-475.0581052894212,-474.45023153692614,-473.84235778443116,-473.2344840319361,-472.62661027944114,-472.0187365269461,-471.4108627744511,-470.8029890219561,-470.1951152694611,-469.58724151696606,-468.9793677644711,-468.37149401197604,-467.76362025948106,-467.155746506986,-466.54787275449104,-465.939999001996,-465.332125249501,-464.724251497006,-464.116377744511,-463.50850399201596,-462.900630239521,-462.29275648702594,-461.68488273453096,-461.0770089820359,-460.46913522954094,-459.8612614770459,-459.2533877245509,-458.6455139720559,-458.0376402195609,-457.42976646706586,-456.8218927145709,-456.21401896207584,-455.60614520958086,-454.9982714570858,-454.39039770459084,-453.7825239520958,-453.1746501996008,-452.5667764471058,-451.9589026946108,-451.35102894211576,-450.7431551896208,-450.13528143712574,-449.52740768463076,-448.9195339321357,-448.31166017964074,-447.7037864271457,-447.0959126746507,-446.4880389221557,-445.8801651696607,-445.27229141716566,-444.6644176646707,-444.05654391217564,-443.44867015968066,-442.8407964071856,-442.23292265469064,-441.6250489021956,-441.0171751497006,-440.4093013972056,-439.8014276447106,-439.19355389221556,-438.5856801397206,-437.97780638722554,-437.36993263473056,-436.7620588822355,-436.15418512974054,-435.5463113772455,-434.9384376247505,-434.3305638722555,-433.7226901197605,-433.11481636726546,-432.5069426147705,-431.89906886227544,-431.29119510978046,-430.6833213572854,-430.07544760479044,-429.4675738522954,-428.8597000998004,-428.2518263473054,-427.6439525948104,-427.03607884231536,-426.4282050898204,-425.82033133732534,-425.21245758483036,-424.6045838323353,-423.99671007984034,-423.3888363273453,-422.7809625748503,-422.1730888223553,-421.5652150698603,-420.95734131736526,-420.3494675648703,-419.74159381237524,-419.13372005988026,-418.5258463073852,-417.91797255489024,-417.3100988023952,-416.7022250499002,-416.0943512974052,-415.4864775449102,-414.87860379241516,-414.2707300399202,-413.66285628742514,-413.05498253493016,-412.4471087824351,-411.83923502994014,-411.2313612774451,-410.6234875249501,-410.0156137724551,-409.4077400199601,-408.79986626746506,-408.1919925149701,-407.58411876247504,-406.97624500998006,-406.368371257485,-405.76049750499004,-405.152623752495,-404.54475,-403.936876247505,-403.32900249501,-402.72112874251496,-402.11325499002,-401.50538123752494,-400.89750748502996,-400.2896337325349,-399.68175998003994,-399.0738862275449,-398.4660124750499,-397.8581387225549,-397.2502649700599,-396.64239121756486,-396.0345174650699,-395.42664371257484,-394.81876996007986,-394.2108962075848,-393.60302245508984,-392.9951487025948,-392.3872749500998,-391.7794011976048,-391.1715274451098,-390.56365369261476,-389.9557799401198,-389.34790618762474,-388.74003243512976,-388.1321586826347,-387.52428493013974,-386.9164111776447,-386.3085374251497,-385.7006636726547,-385.0927899201597,-384.48491616766466,-383.8770424151697,-383.26916866267464,-382.66129491017966,-382.0534211576846,-381.44554740518964,-380.8376736526946,-380.2297999001996,-379.6219261477046,-379.0140523952096,-378.40617864271456,-377.7983048902196,-377.19043113772454,-376.58255738522956,-375.9746836327345,-375.36680988023954,-374.7589361277445,-374.1510623752495,-373.5431886227545,-372.9353148702595,-372.32744111776447,-371.7195673652695,-371.11169361277445,-370.50381986027946,-369.8959461077844,-369.28807235528944,-368.6801986027944,-368.0723248502994,-367.4644510978044,-366.8565773453094,-366.24870359281437,-365.6408298403194,-365.03295608782435,-364.42508233532936,-363.8172085828343,-363.20933483033934,-362.6014610778443,-361.9935873253493,-361.3857135728543,-360.7778398203593,-360.16996606786427,-359.5620923153693,-358.95421856287425,-358.34634481037926,-357.7384710578842,-357.13059730538924,-356.5227235528942,-355.9148498003992,-355.3069760479042,-354.6991022954092,-354.09122854291417,-353.4833547904192,-352.87548103792415,-352.26760728542916,-351.6597335329341,-351.05185978043914,-350.4439860279441,-349.8361122754491,-349.2282385229541,-348.6203647704591,-348.01249101796407,-347.4046172654691,-346.79674351297405,-346.18886976047907,-345.580996007984,-344.97312225548905,-344.365248502994,-343.757374750499,-343.149500998004,-342.541627245509,-341.93375349301397,-341.325879740519,-340.71800598802395,-340.11013223552897,-339.5022584830339,-338.89438473053895,-338.2865109780439,-337.6786372255489,-337.0707634730539,-336.4628897205589,-335.85501596806387,-335.2471422155689,-334.63926846307385,-334.03139471057887,-333.4235209580838,-332.81564720558885,-332.2077734530938,-331.5998997005988,-330.9920259481038,-330.3841521956088,-329.77627844311377,-329.1684046906188,-328.56053093812375,-327.95265718562877,-327.3447834331337,-326.73690968063875,-326.1290359281437,-325.5211621756487,-324.9132884231537,-324.3054146706587,-323.69754091816367,-323.0896671656687,-322.48179341317365,-321.87391966067867,-321.2660459081836,-320.65817215568865,-320.0502984031936,-319.4424246506986,-318.8345508982036,-318.2266771457086,-317.61880339321357,-317.0109296407186,-316.40305588822355,-315.79518213572857,-315.1873083832335,-314.57943463073855,-313.9715608782435,-313.3636871257485,-312.7558133732535,-312.1479396207585,-311.54006586826347,-310.9321921157685,-310.32431836327345,-309.71644461077847,-309.10857085828343,-308.50069710578845,-307.8928233532934,-307.2849496007984,-306.6770758483034,-306.0692020958084,-305.46132834331337,-304.8534545908184,-304.24558083832335,-303.63770708582837,-303.02983333333333,-302.42195958083835,-301.8140858283433,-301.2062120758483,-300.5983383233533,-299.9904645708583,-299.38259081836327,-298.7747170658683,-298.16684331337325,-297.55896956087827,-296.95109580838323,-296.34322205588825,-295.7353483033932,-295.1274745508982,-294.5196007984032,-293.9117270459082,-293.30385329341317,-292.6959795409182,-292.08810578842315,-291.48023203592817,-290.87235828343313,-290.26448453093815,-289.6566107784431,-289.0487370259481,-288.4408632734531,-287.8329895209581,-287.22511576846307,-286.6172420159681,-286.00936826347305,-285.40149451097807,-284.79362075848303,-284.18574700598805,-283.577873253493,-282.96999950099803,-282.362125748503,-281.754251996008,-281.14637824351297,-280.538504491018,-279.93063073852295,-279.32275698602797,-278.71488323353293,-278.10700948103795,-277.4991357285429,-276.89126197604793,-276.2833882235529,-275.6755144710579,-275.06764071856287,-274.4597669660679,-273.85189321357285,-273.24401946107787,-272.63614570858283,-272.02827195608785,-271.4203982035928,-270.81252445109783,-270.2046506986028,-269.5967769461078,-268.98890319361277,-268.3810294411178,-267.77315568862275,-267.16528193612777,-266.55740818363273,-265.94953443113775,-265.3416606786427,-264.73378692614773,-264.1259131736527,-263.5180394211577,-262.91016566866267,-262.3022919161677,-261.69441816367265,-261.08654441117767,-260.47867065868263,-259.87079690618765,-259.2629231536926,-258.65504940119763,-258.0471756487026,-257.4393018962076,-256.83142814371257,-256.2235543912176,-255.61568063872255,-255.00780688622754,-254.39993313373253,-253.79205938123752,-253.1841856287425,-252.5763118762475,-251.9684381237525,-251.36056437125748,-250.75269061876247,-250.14481686626746,-249.53694311377245,-248.92906936127744,-248.32119560878243,-247.71332185628742,-247.1054481037924,-246.4975743512974,-245.8897005988024,-245.28182684630738,-244.67395309381237,-244.06607934131736,-243.45820558882235,-242.85033183632734,-242.24245808383233,-241.63458433133732,-241.0267105788423,-240.4188368263473,-239.8109630738523,-239.20308932135728,-238.59521556886227,-237.98734181636726,-237.37946806387225,-236.77159431137724,-236.16372055888223,-235.55584680638722,-234.9479730538922,-234.3400993013972,-233.7322255489022,-233.12435179640718,-232.51647804391217,-231.90860429141716,-231.30073053892215,-230.69285678642714,-230.08498303393213,-229.47710928143712,-228.8692355289421,-228.2613617764471,-227.6534880239521,-227.04561427145708,-226.43774051896207,-225.82986676646706,-225.22199301397205,-224.61411926147704,-224.00624550898203,-223.39837175648702,-222.790498003992,-222.182624251497,-221.574750499002,-220.96687674650698,-220.35900299401197,-219.75112924151696,-219.14325548902195,-218.53538173652694,-217.92750798403193,-217.31963423153692,-216.7117604790419,-216.1038867265469,-215.4960129740519,-214.88813922155688,-214.28026546906187,-213.67239171656686,-213.06451796407185,-212.45664421157684,-211.84877045908183,-211.24089670658682,-210.6330229540918,-210.0251492015968,-209.4172754491018,-208.80940169660678,-208.20152794411177,-207.59365419161676,-206.98578043912175,-206.37790668662674,-205.77003293413173,-205.16215918163672,-204.55428542914171,-203.9464116766467,-203.3385379241517,-202.73066417165668,-202.12279041916167,-201.51491666666666,-200.90704291417165,-200.29916916167664,-199.69129540918163,-199.08342165668662,-198.47554790419161,-197.8676741516966,-197.2598003992016,-196.65192664670658,-196.04405289421157,-195.43617914171656,-194.82830538922155,-194.22043163672654,-193.61255788423153,-193.00468413173652,-192.39681037924151,-191.7889366267465,-191.1810628742515,-190.57318912175649,-189.96531536926148,-189.35744161676647,-188.74956786427146,-188.14169411177645,-187.53382035928144,-186.92594660678643,-186.31807285429142,-185.7101991017964,-185.1023253493014,-184.49445159680639,-183.88657784431138,-183.27870409181637,-182.67083033932136,-182.06295658682635,-181.45508283433134,-180.84720908183633,-180.23933532934132,-179.6314615768463,-179.0235878243513,-178.41571407185629,-177.80784031936128,-177.19996656686627,-176.59209281437126,-175.98421906187625,-175.37634530938124,-174.76847155688623,-174.16059780439122,-173.5527240518962,-172.9448502994012,-172.3369765469062,-171.72910279441118,-171.12122904191617,-170.51335528942116,-169.90548153692615,-169.29760778443114,-168.68973403193613,-168.08186027944112,-167.4739865269461,-166.8661127744511,-166.2582390219561,-165.65036526946108,-165.04249151696607,-164.43461776447106,-163.82674401197605,-163.21887025948104,-162.61099650698603,-162.00312275449102,-161.395249001996,-160.787375249501,-160.179501497006,-159.57162774451098,-158.96375399201597,-158.35588023952096,-157.74800648702595,-157.14013273453094,-156.53225898203593,-155.92438522954092,-155.3165114770459,-154.7086377245509,-154.1007639720559,-153.49289021956088,-152.88501646706587,-152.27714271457086,-151.66926896207585,-151.06139520958084,-150.45352145708583,-149.84564770459082,-149.2377739520958,-148.6299001996008,-148.0220264471058,-147.41415269461078,-146.80627894211577,-146.19840518962076,-145.59053143712575,-144.98265768463074,-144.37478393213573,-143.76691017964072,-143.1590364271457,-142.5511626746507,-141.9432889221557,-141.33541516966068,-140.72754141716567,-140.11966766467066,-139.51179391217565,-138.90392015968064,-138.29604640718563,-137.68817265469062,-137.0802989021956,-136.4724251497006,-135.8645513972056,-135.25667764471058,-134.64880389221557,-134.04093013972056,-133.43305638722555,-132.82518263473054,-132.21730888223553,-131.60943512974052,-131.0015613772455,-130.3936876247505,-129.7858138722555,-129.17794011976048,-128.57006636726547,-127.96219261477046,-127.35431886227545,-126.74644510978044,-126.13857135728543,-125.53069760479042,-124.92282385229541,-124.3149500998004,-123.70707634730539,-123.09920259481038,-122.49132884231537,-121.88345508982036,-121.27558133732535,-120.66770758483034,-120.05983383233533,-119.45196007984032,-118.84408632734531,-118.2362125748503,-117.62833882235529,-117.02046506986028,-116.41259131736527,-115.80471756487026,-115.19684381237525,-114.58897005988024,-113.98109630738523,-113.37322255489022,-112.76534880239521,-112.1574750499002,-111.54960129740519,-110.94172754491018,-110.33385379241517,-109.72598003992016,-109.11810628742515,-108.51023253493014,-107.90235878243513,-107.29448502994012,-106.68661127744511,-106.0787375249501,-105.47086377245509,-104.86299001996008,-104.25511626746507,-103.64724251497006,-103.03936876247505,-102.43149500998004,-101.82362125748503,-101.21574750499002,-100.60787375249501,-100.0]} +{"expected":[0.0013547037113347225,-0.00008079568762223632,-0.0013032639667195508,0.0009482068870398874,0.0006745102501779503,-0.001398701036391261,0.000255111406170193,0.0012313462305846283,-0.0010749686633450609,-0.0005181201119177229,0.001421618557167307,-0.00042702148347751787,-0.0011399129246253469,0.0011863359506704022,0.0003524234202627142,-0.0014229228410856157,0.0005938738241728375,0.0010301941145364818,-0.0012804704349696006,-0.00017987537870032522, 0.001402405827825416, -0.0007530705608911163,-0.0009037097221535848,0.0013557809447669912,0.0000030571377722841856,-0.0013601908085929216, 0.00090210808806338,0.000762248885617645,-0.0014109498242049442,0.0001753624225516151, 0.001296733422985409,-0.0010386160079543679,-0.0006078450522017952,0.001444955378254708,-0.00035266657261104876,-0.001212817615884697,0.0011603943895041257,0.00044274714479023526,-0.0014570900164287276,0.0005261316848493853,0.0011095465725173583,-0.0012654487609877864,-0.0002693872052378724,0.0014469737831970422,-0.0006930686463979073,-0.000988328725870059,0.0013520222868440158,0.00009034497448808978,-0.0014145630303816937,0.0008508641090431388,0.0008508590059251448, -0.001418624616913376, 0.00009169008045193419,0.0013601540581324836,-0.0009970209502992236,-0.0006990955735162068,0.0014640569422267953,-0.00027395873965425173,-0.0012843816256290141,0.0011291973258827153,0.0005352323519178338,-0.0014874328448115856,0.00045367341552896007,0.0011882123093087816,-0.0012452437098237502,-0.0003616677354521192, 0.0014881945889650763,-0.0006280603358161934,-0.0010729327640676513,0.0013432373436468015,0.00018096991543083507,-0.0014661245672588433,0.0007944018925442475,0.0009401330203414861, -0.0014215135501630888,0.000004160681355470407,0.0014213516852222246,-0.0009500785172054345,-0.0007916850261118165,0.0014786934100406806,-0.00019093129845411085,-0.0013543525432043336,0.0010926094439607458,0.0006297167164955381, -0.0015137073498438882,0.00037649851658996944,0.0012659473512369715,-0.0012196917338998107,-0.00045658196359700174,0.001525814248009943,-0.0005580110665203211,-0.0011572905916697484,0.0013292369541027006,0.0002748268245898618,-0.0015146157294215843,0.0007326531501916804,0.0010298565237695327,-0.0014194049353070193,-0.00008715256558205705,0.0014800653889474682,-0.0008976876191456397,-0.0008854197031585339,0.0014886340709551128,-0.00010362400829825569,-0.0014224727585456776,0.001050498355498692,0.0007260307657469527,-0.001535667667814884,0.00029461234075868443,0.0013425019101925,-0.0011886312069928156,-0.0005539877994905418,0.001559575913552362,-0.0004828914172042128,-0.0012411646668722214,0.0013098328436288655, 0.0003718036967882991,-0.001559773088862306,0.0006655539214353752,0.0011198084749505927,-0.001412086929034473,-0.00018216994449885557,0.0015360297201346615,-0.0008397505962121314,-0.0009800990722710716,0.0014936470347427743,-0.000012082633562067368,-0.0014884794421914952,0.0010027341386315309,0.0008239981660159353,-0.0015530657694749106,0.00020802561615797507,0.0014176204183045842,-0.0011519019622018793,-0.0006537364115870995,0.001589219647786393,-0.00040267659810632063,-0.0013243112453736956,0.0012848371684575598,0.00047178205726226374,-0.0016013292823056078,0.0005930440357804405,0.0012097613546300848,-0.0013993470919285973,-0.00028080568809111265,0.001588974550466894, -0.0007761726582259892, -0.0010755160012907107,0.0014934988129685427,0.00008364156528367147,-0.0015521044591574695,0.00094918876280744,0.0009234360190147964,-0.0015656510730402305,0.00011675388673029073,0.0014910415080325629,-0.0011093447096898986,-0.0007556725955325025,0.001614482075996456,-0.0003173458452866235,-0.0014064804332869617,0.0012540619351463758,0.0005746374032369982,-0.0016390127160546362,0.0005150664666649428,0.0012994812972225718,-0.001380971819604787,-0.0003829684916221887,0.0016386248377328533,-0.0007068612053223135,-0.0011714569737996997,0.0014879537724232096,0.00018349241613511245,-0.0016130742041212014,0.0008897353845127244,0.0010241551652236242,-0.001573169931245789,0.00002081686083032396,0.00156249792648088,-0.0010608003173058424,-0.0008596351682610671,0.001635095919056224,-0.00022688170735919174,-0.0014874161892036053,0.0012173182770879943,0.0006802396901027961,-0.0016725471560730281,0.00043156656309144325,0.0013887281884543937,-0.0013567456272535535,-0.000488562090991066,0.0016847002857268295,-0.0006317250129069341,-0.0012677022891246742, 0.0014767734408503983,0.0002874095032710903,-0.0016711093432377332,0.0008242474956707887,0.0011259604917800744,-0.0015753649722662988,-0.00007976234293971042,0.0016317163708284598,-0.0010061089341634364,-0.000965457387776023,0.0016507893842002315,-0.00013126921096422736,-0.00156685626427808,0.0011744155665805965,0.0007884538653755591,-0.001701651183686849,0.00034249114254461993,0.0014772557201856835,-0.001326450264943872,-0.0005974859112116129,0.001726914880121763,-0.0005506732619276986,-0.001364026240751589,0.0014597156415146022,0.00039532892858703026,-0.0017259244452978689,0.0007525979032353132, 0.0012286512418043039,-0.001571974270654796, -0.00018495806565090112,0.0016984172294524755,-0.0009451089335665918,-0.0010729673989072401,0.001661285390290858,-0.000030494888622561294,-0.0016445320672257356,0.001125160337016451,0.0008991404543091707,-0.0017260374936996859,0.00024778742560025563,0.0015648113920925678,-0.0012898636368185866,-0.0007096357929777118,0.001764976278206037,-0.000463614391745148,-0.0014601972660317963,0.001436533428745077,0.0005071841776274079,-0.0017772274817679677,0.0006746575143988709,0.001332021321667042,-0.0015627303199562336,-0.0002947431093170613,0.0017623142104824195,-0.000877635647114571,-0.001181988705509238,0.0016663005993013656,0.00007545435059314086, -0.0017201684387403934,0.0010693549848473762,0.001012156201918434,-0.0017454120073067193,0.00014740178873852566,0.0016511364480105157,-0.0012467584920977201,-0.0008249048065848174,0.001798585026165915,-0.0003704547484103538,-0.0015559780588199226,0.0014069737911782346,0.0006229071044095671,-0.0018247191713425983,0.0005902938967497829,0.001435859602146698,-0.0015473587731087077,-0.0004090898882771942,0.0018231138360421866,-0.000803519856232126,-0.0012923406698205542,0.001665544220193843, 0.0001865925311464803,-0.0017934833168781646,0.0010067962149080377,0.001127354777251449,-0.0017594727667576057,0.00004127830710416601,0.0017359657324540131,-0.001196900849381846,-0.0009431841645044406,0.0018274335723978863,-0.0002710969955758156,-0.001651125635139938,0.0013707760827104086,0.0007424290519805918,-0.001868092139823284,0.0004993695764387755,0.0015399502087727235,-0.0015255769098995776,-0.0005279717534376103,0.00188051477612843,-0.0007225860004099564,-0.001403839039997842,0.0016587165444956085,0.00030293613040504176,-0.0018641872713166389,0.0009372731851724082,0.0012445875471416138,-0.0017679085719836606,-0.00007064294701475216,0.001819027449976196,-0.0011400481077436543,-0.0010643642464005963,0.0018512050388889978,-0.00016543824836932214,-0.0017453913400962337,0.0013276701328525117,0.0008656821293700336,-0.001907029860147505,0.0004017400295716867,0.0016440727958304524,-0.0014970917822124433,-0.0006513645170377981,0.0019342069907288739,-0.0006346500528023692,-0.0015162965072514853,0.0016455071643319288,0.0004245058420226093,-0.0019319828798616812,0.0008605652976278971,0.001363704428372864,-0.0017703973110033667,-0.00018842789163601208,0.001900042806508921,-0.001075946788139407,-0.0011883357535412034,0.0018695717046640144,-0.00005336788189923322,-0.0018385207818808719,0.0012773739777572452,0.0009926006702250087,-0.0019412053299194126,0.00029725131227621997,0.0017480027975165836,-0.0014615979771500486,-0.0007792482118121493,0.001983870642094953,-0.0005395170029725228,-0.001629523294508763,0.001625592812960617,0.0005513286258136866,-0.0019965639149130596,0.0007764395702116646,0.001484554829378281,-0.0017666039254031936,-0.00031215075946395925,0.001978725507397685,-0.0010043298361498824,-0.0013149910134956754,0.0018821931452067191,0.00006523504478390907,-0.0019302536757934271,0.0012195911401280484,0.0011231229042779956,-0.001970279434408502,0.0001857372625652008,0.001851511648473913,-0.001418774924698835,-0.0009116091262001133,0.0020291747306822954,-0.0004369778729492942,-0.001743327779203361,0.0015986347543832497,0.0006834400964042057,-0.002057614300462889,0.0006846475099158376,0.0016069886953264314,-0.0017561779389238092,-0.0004418968219652154,0.0020547810812882607, -0.000924913401277078,-0.0014442254610205064,0.0018887139590348678,0.00019050482219169304,-0.002020323577477306,0.0011540073696985783,0.0012571928801717372,-0.0019938989311213094,0.0000670161915541859,0.0019543669643717915,-0.0013682836596523155,-0.0010484421671582106,0.0020697753976417236,-0.0003268061754759243,-0.0018575171536167898,0.001564275631522286,0.0008208873153478847,-0.0021148067911734235,0.0005849213883968643,0.0017308576739633779,-0.0017387504603642919,-0.0005777655908633555,0.002127905991959581,-0.0008373929879720531,-0.0015759393274069797,0.0018887609964432857,0.0003225926717121879,-0.002108457479875406,0.001080286734963962,0.0013947626875822241,-0.002011693976974386,-0.000059113038232347526,0.0020563326712172494,-0.0013097629259197934,-0.0011897536146932108,0.002105313823211009,-0.00020875370130126231,-0.001971898127283933,0.0015221356607009724,0.0009637320672404105,-0.0021678013135685873,0.00047696979744531783,0.0018560164240317264,-0.0017139305505457741,-0.0007198745938893113,0.0021977864911968837,-0.0007414388479507661,-0.0017100395786922079,0.0018819399847623138,0.0004616709873947698,-0.0021943752423985775,0.000998066929991625,0.0015357950386406234,-0.00202327509979841,-0.0001928756751200614,0.002157169069536657,-0.0012428244836758834,-0.0013355643483812275,0.0021354136330099045,-0.00008254549414101212,-0.0020862776773738064,0.0014718080322355046,0.0011120547207021084,-0.0022162428945968968,0.0003604723308662394,0.001982324093842937,-0.0016813008154830246,-0.0008683638461671331,0.0022640971542257833,-0.0006366904504155093,-0.0018464421536347688,0.001867831417894018,0.0006079383796060455,-0.00227778881306316,0.0009069536255053196,0.0016802662841747563,-0.002028229491022795,-0.0003345266414862578,0.002256632816310448,-0.001167047444128274,-0.001485913646982005,0.0021596777018512894,0.000052126164564257466,-0.0022004638547519087,0.0014128533408520358,0.00126595880137988,-0.0022597590837185803,0.00023507319950235106,0.002109646005027821,-0.0016404120522096207,-0.0010234011704437892,0.0023264990242386147,-0.000522749824086804,-0.0019850745659288384,0.0018459855434035826,0.0007616256991975717,-0.002358401194327344,0.0008065136485335909,0.0018281699604801927,-0.0020261164640947796,-0.00048435720082909325,0.002354476803292009,-0.001081971410267293,-0.0016408636893334994,0.0021776842155512427,0.000195608986408136,-0.002314266655792915,0.0013447928226677994,0.001425576438384721,-0.0022979567497804884,0.00010037353418782036,0.002237855586182926,-0.0015907767271143437,-0.0011851885608449423,0.00238463727298552,-0.000399173509233965,-0.0021258789528946767,0.0018159162354147217,0.0009230032695451526,-0.0024359050902366397,0.0006962667161434248,0.001979520988699594,-0.0020164618809028695,-0.0006427029872792218,0.002450449904790678,-0.000987088141197932,-0.0018005049202373317,0.0021889818130413443,0.0003482994098796178,-0.0024274989730836936,0.0012671001137902057,0.001591074890516702,-0.0023304181012462908,-0.00004407793676921038,0.0023668366138935924,-0.0015318610054254897,-0.001353969839436181,0.002438138258662865,-0.00026546278450729853,-0.0022688156762296265,0.0017770934822175035,0.0010923896179530375,-0.002509981155198836,0.0005756753713361598,0.0021343606837074657,-0.0019987512926955397,-0.0008099537296424953,0.00254429656064475,-0.0008818313773363464,-0.0019649624919393944,0.002193083580589947,0.0005106532072058687,-0.0025399776422338678,0.0011791911639854604,0.0017626644181688235,-0.0023566957350428333,-0.00019879623938599445,0.0024964858354924813,-0.00146307496925485,-0.0015300399272331895,0.0024866058281607277,-0.00012105173600687797,-0.002413867611434128,0.0017289341386814685,0.0012701620832088038,-0.0025802957417004136,0.0004441326661138072,0.002292762775675713,-0.0019724214676952994,-0.0009865650998984582,0.0026357561503106584,-0.0007655643567507354,-0.0021344040543688977,0.002189459602589621,0.0006831984439252842,-0.002651524607416084,0.0010804118298358284,0.0019406078462819842, -0.0023763064613720563,-0.00036437405972063864,0.0026267160704977212,-0.0013837605529493208,-0.0017137561482247505,0.0025296166649512093,0.000034707394496151097,-0.002561045304065546,0.0016707904878263406,0.0014567697904262773,-0.002646498013376081,0.00030094699839199973,0.0024548407096760426,-0.0019368498777891524,-0.0011730732476570316,0.002724562100778038,-0.0006375644088929401,-0.002309049251439054,0.0021775276826245154,0.0008665514188886104,-0.00276196823553134,0.0009700225248251665,0.00212523227097055,-0.002388723573671563,-0.0005414988913268162,0.0027574599181244795,-0.0012931765775929575,-0.0019055521159241976,0.0025667144219387343,0.0002025623218156692,-0.00271039322720244,0.0016019360127129771,0.0016527496392930796,-0.0027082162479201343,0.00014532332177049004,0.002620756572964529,-0.0018913415811196205,-0.0013701127606773255,0.0028104406530286142,-0.0004970038162398186,-0.002489181395139813,0.0021566417250688395,0.0010614364138116946,-0.0028711448187372303,0.0008471791034790378,0.0023169435085278306,-0.00239336712625174,0.000730974334831124,0.002888674239796538,-0.00119048006591996,-0.002105954930892777,0.002597402293865043,0.0003833832712040953,-0.0028619974513478742,0.0015215475837377457,0.001858746163983543,-0.0027650530968247786,-0.000023660310016934745,0.0027907321151725097,-0.0018351127513965395,-0.0015784390367687671,0.002893109186976975,-0.0003429258653320415,-0.0026751619463642935,0.0021260770975590824,0.0012687103586072714,-0.002978900318566654,0.0007109088807824078,0.0025162440868568238,-0.0023895916350289443,-0.0009337467671138778,0.0030203456428126102,-0.0010747027418019687,-0.0023156066647886274,0.0026211335666366594,0.0005781912888550294,-0.003015995144283809,0.0014286829949348902,0.00207553641687742,-0.0028165794891526013,-0.00020708225886448162,0.002965062486856878,-0.0017672698464407225,-0.0017989563928512285,0.0029722739702945705,-0.00017421463470532062,-0.0028674486500515845,0.0020850120581594692,0.001489393904630621,-0.00308509242353869,0.0005600803033798766,0.002723755860047883,-0.0023766704113479006,-0.0011509390262720404,0.0031524972711655,-0.0009447212311489739,-0.002535291452063633,0.00263729951680836,0.0007881940917086166,-0.003172586467121874,0.0013222524022365918,0.0023040614402268064,-0.0028623267544512165,-0.0004062147739228174,0.0031441335468466083,-0.0016867830453420921,-0.002032753715756122,0.00304762714776719,0.000010443459467399457,-0.003066618480062419,0.002032503997466113,0.0017247109421283146,-0.0031895930183452503,0.0003933642458396804,0.002940248723286922,-0.0023537754483585584,-0.0013838933649719738,0.0032851973223134404,-0.0007992189323923819,-0.002765969999908602,0.002645213801524339,0.0010148319025040486,-0.0033320496437458063,0.001200981675900577,0.0025454664754032564,-0.002901776380305369,-0.0006225720274057844,0.003328443908914386,-0.001592452066050137,-0.0022811501417381,0.0031188427180401414,0.00021260909091555508,-0.0032733969886735914,0.001967458769034038,0.0019761393762924065,-0.003292291199888101,0.00020918412732333507,0.003166677473009642,-0.0023199513626289466,-0.001634226794577885,0.003418569870328527,-0.0006366367365831966,-0.0030088240303863967,0.0026440921439657436,0.0012598366706164737,-0.0034947602842751633,0.00106336489986786,0.002801152903312241,-0.0029343465893604476,-0.0008579723517619143,0.003518633360445458,-0.001482861726775273,-0.0025457542387467462,0.0031855711431955994, 0.0004341542439747131,-0.0034886962922347376,0.0018885906894229385,0.0022454771055622153,-0.0033930970290240374,0.000005650913192192444,0.0034042296826839315,-0.0022740812867012975,-0.0019039032092644228,0.0035528088109410493,-0.00045510862731871024,-0.003265314194853117,0.0026330256291871613,0.0015253094743251686,-0.003661216486495206,0.000907602109727911,0.0030728461454490644,-0.0029593745820486613,-0.0011146198246699294,0.003715519963568881,-0.0013563235147126805,-0.002828541616136108,0.0032474320867874654,0.0006773466507477024,-0.0037136648619296303,0.001794369768372039, 0.0025349288117075377,-0.003491946285305541,-0.0002195226050794828,0.003654388684581852,-0.0022148417094277487,-0.002195328555105548,0.003688196091642576,-0.00025237648509922117,-0.0035372565233594256,0.002610945196425526,0.001813822974066847,-0.0038320718978704527,0.0007315166614984705,0.003362685595945985,-0.0029760927854200468,-0.0013952126006074046, 0.003920149160636109,-0.0012107977810680375,-0.0031319580560293077,0.0033040045506866306,0.0009449622704645561,-0.003949753693213065,0.0016829511968559049,0.002847221672715902, -0.0035888066087307,-0.0004691363725577702,0.003919017583745256,-0.0021406419055430667,-0.002511478137680439,0.0038251259134400675,-0.00002567584365816008,-0.0038269247725934235, 0.002576573809945749,0.0021285589266208304,-0.004008179917679837,0.0005324440447497479,0.003673345448960945,-0.0029835966784503266,-0.0017030888132177993,0.004133859743939733,-0.0010437886748348212,-0.0034590585677355223,0.0033548133355710426,0.0012404373066202102,-0.00419880557335494,0.0015520797741000489,0.003185761939967599,-0.003683685589540096,-0.0007466584551358059,0.004200473047897748,-0.0020495415108737936,-0.002856069512670352,0.003964137394679675,0.00022841962692444204,-0.004137189583835574,0.0025283610837445233,0.0024734956235666467,-0.004190653758641409,0.0003070799592868807,0.004008199614485406,-0.0029808005670774736,-0.0020424261917923845,0.004358373937524613,-0.0008522000264212038,-0.003813697915434429,0.0033993102084415457,0.001568076984060037,-0.004463177515213357,0.0013989582835381479,0.0035548503140859175,-0.003776641641035845,-0.0010564392749880028,0.004501762036534601,-0.00193913652081664,-0.0032338012457680614,0.004105959449068887,0.0005142133977710592,-0.004471710956287682,0.002464392436606433,0.002853667788669409,-0.004380949519793281,0.000051269145339538906,0.004371550776810554,-0.0029663757776967714,-0.002418519987341332,0.004595922632856262,-0.0006321341765754433,-0.004200796374251886,0.003436847291328689,0.0019333474571115053,-0.004745911775827162,0.001220062946280154,0.003959983656586641,-0.003867798924005278,-0.0014040124470628983,0.004826761733952966,-0.0018063987061387966,-0.003650688852895792,0.004251573658933666,0.0008371897247658116,-0.004835209581830059,0.002382260478291738,0.0032755339015728027,-0.004580983361802023,-0.0002402938291902078,0.004768954803937312,-0.0029386626286905145,-0.0028381775827841385,0.0048494230041166,-0.00037860558334096143,-0.004626717888750353,0.0034666387522217694,0.002343292225408638,-0.005050979654771991,0.0010108794041464586,0.004408286376083186,-0.003957368294960792,-0.0017965260083971817,0.005180534673883439,-0.001647444690657601,-0.0041145474877676315,0.0044023042767631845,0.0012044510685232089,-0.005233857607857714,0.0022788790314250107,0.0037475066359415068,-0.004793300436349143,-0.0005744978182697404,0.0052076903706089125, -0.002895542315413201,-0.0033102912790257503,0.0051227361018962095,-0.00008512393347294688,-0.005099820401838425,0.003487704444190258,0.0028071397807013206,-0.005383637093464895, 0.0007655162817272576,0.004909141618215742,-0.004045677424447762,-0.0022433751194695204,0.005569790989575016,-0.0014571959950690587,-0.004635702115674001,0.00455995019667687,0.001625363493193764,-0.005675855138867154,0.0021502076378049286,0.004280737739177666,-0.005021324495129137,-0.000960458061786816,0.005697455868660679,-0.0028342457756064757,-0.0038466908083075258,0.005421049995493061,0.0002569282692796016,-0.005631277434697048,0.0034987848582336096,0.0033372134707141746,-0.005750956990830926,0.00047612461878099527,0.005475139369483325,-0.004133215252738831,-0.002757155348611544,0.006003584843768021,-0.0012288649379606654,-0.00522806101919553,0.004726983799197774,0.0021125353435654417,-0.006172304493934396,0.001990832002869674,0.004890312209570127,-0.005269737180178703,-0.0014104976693106936,0.00625143335415501,-0.002751060266739111,-0.004463449147865363,0.005751466336222345,0.0006592523885541026,-0.0062363410064963706,0.003498208933595271,0.003950334848851842,-0.00616265012366927,0.00013199906500878158,0.006123544209342841,-0.004220699554409954,-0.003355143565738766,0.006494396399085612,-0.0009531526966266337,-0.005910789848249051,0.004906860016925527,0.0026833489096393676,-0.006738578726857215,0.0017933042142774152,0.005597124605185432,-0.005545073236956974,-0.0019416955511766076,0.006887966943517764,-0.0026408636819176584,-0.005182950281506819,0.006123928778520445,0.001138154612584251,-0.006936349874034027,0.0034836813230158603,0.004670063887855653,-0.0066323755725483016,-0.0002818630755707789,0.006878648581299539,-0.004309183074290739,-0.0040616818074015685,0.00705987387038743,-0.0006169522533267468,-0.006711018639932855,0.005104514344798969,0.0033624475453092463,-0.007396544559638518,0.0015470654647428096,0.006430940058342965,-0.0058566903088967965,-0.002578422795003113,0.00763331398680969,-0.0024963559927812322,-0.00603729362790659,0.006552750954942065,0.0017170617784943772,-0.0077620524740952095,0.0034519256225489995,0.00553042265382208,-0.007179919026460738,-0.0007871690515933735,0.007775704786464729,-0.004400226705933925,-0.00491217921746382,0.007725758930150321,-0.0002011587968342767,-0.007668410900047241,0.005327200054711453,0.0041859543335028716,-0.008178334646508209,0.0012366068812187032,0.007435615543206518,-0.006218420815770962,-0.0033566915953509562,0.008526364664715428,-0.0023067302785135637,-0.007074165127271463,0.007059250483814296,0.0024308841484176297,-0.008759371974002407,0.0033980556552814112,0.006582390854060322,-0.007834993073048638,-0.0014165550912911755,0.00886782717905591,-0.0044961948661743105,-0.005960176981576993,0.008531053351332505,0.0003232216797313565,-0.00884328286672188,0.005585968886779027,0.0052090134471317615,-0.009133094937371501,0.0008381560025934599,0.008678497434581005,-0.006651540203158853,-0.004332032288489173,0.009627195972428669,-0.002055240938339637,-0.008367546697812851,0.0076765515374687095,0.003334027568792855,-0.01],"x":[-709.0895,-708.481626247505,-707.87375249501,-707.2658787425149,-706.65800499002,-706.050131237525,-705.4422574850299,-704.8343837325349,-704.22650998004,-703.6186362275449,-703.0107624750499,-702.4028887225548,-701.7950149700599,-701.1871412175649,-700.5792674650698,-699.9713937125748,-699.3635199600799,-698.7556462075848,-698.1477724550898,-697.5398987025948,-696.9320249500998,-696.3241511976048,-695.7162774451098,-695.1084036926147,-694.5005299401198,-693.8926561876248,-693.2847824351297,-692.6769086826347,-692.0690349301398,-691.4611611776447,-690.8532874251497,-690.2454136726546,-689.6375399201597,-689.0296661676647,-688.4217924151696,-687.8139186626746,-687.2060449101797,-686.5981711576846,-685.9902974051896,-685.3824236526946,-684.7745499001996,-684.1666761477046,-683.5588023952096,-682.9509286427145,-682.3430548902196,-681.7351811377246,-681.1273073852295,-680.5194336327345,-679.9115598802396,-679.3036861277445,-678.6958123752495,-678.0879386227545,-677.4800648702595,-676.8721911177645,-676.2643173652694,-675.6564436127744,-675.0485698602795,-674.4406961077844,-673.8328223552894,-673.2249486027944,-672.6170748502994,-672.0092010978044,-671.4013273453094,-670.7934535928143,-670.1855798403194,-669.5777060878244,-668.9698323353293,-668.3619585828343,-667.7540848303394,-667.1462110778443,-666.5383373253493,-665.9304635728543,-665.3225898203593,-664.7147160678643,-664.1068423153692,-663.4989685628742,-662.8910948103793,-662.2832210578842,-661.6753473053892,-661.0674735528942,-660.4595998003992,-659.8517260479042,-659.2438522954092,-658.6359785429141,-658.0281047904192,-657.4202310379242,-656.8123572854291,-656.2044835329341,-655.5966097804392,-654.9887360279441,-654.3808622754491,-653.772988522954,-653.1651147704591,-652.5572410179641,-651.949367265469,-651.341493512974,-650.7336197604791,-650.125746007984,-649.517872255489,-648.909998502994,-648.302124750499,-647.694250998004,-647.086377245509,-646.4785034930139,-645.870629740519,-645.262755988024,-644.6548822355289,-644.0470084830339,-643.439134730539,-642.8312609780439,-642.2233872255489,-641.6155134730539,-641.0076397205589,-640.3997659680639,-639.7918922155689,-639.1840184630738,-638.5761447105789,-637.9682709580838,-637.3603972055888,-636.7525234530938,-636.1446497005988,-635.5367759481038,-634.9289021956088,-634.3210284431137,-633.7131546906188,-633.1052809381238,-632.4974071856287,-631.8895334331337,-631.2816596806388,-630.6737859281437,-630.0659121756487,-629.4580384231537,-628.8501646706587,-628.2422909181637,-627.6344171656687,-627.0265434131736,-626.4186696606787,-625.8107959081836,-625.2029221556886,-624.5950484031936,-623.9871746506986,-623.3793008982036,-622.7714271457086,-622.1635533932135,-621.5556796407186,-620.9478058882236,-620.3399321357285,-619.7320583832335,-619.1241846307386,-618.5163108782435,-617.9084371257485,-617.3005633732535,-616.6926896207585,-616.0848158682635,-615.4769421157685,-614.8690683632734,-614.2611946107785,-613.6533208582835,-613.0454471057884,-612.4375733532934,-611.8296996007984,-611.2218258483034,-610.6139520958084,-610.0060783433133,-609.3982045908184,-608.7903308383234,-608.1824570858283,-607.5745833333333,-606.9667095808384,-606.3588358283433,-605.7509620758483,-605.1430883233533,-604.5352145708583,-603.9273408183633,-603.3194670658683,-602.7115933133732,-602.1037195608783,-601.4958458083833,-600.8879720558882,-600.2800983033932,-599.6722245508982,-599.0643507984032,-598.4564770459082,-597.8486032934131,-597.2407295409182,-596.6328557884232,-596.0249820359281,-595.4171082834331,-594.8092345309382,-594.2013607784431,-593.5934870259481,-592.985613273453,-592.3777395209581,-591.7698657684631,-591.161992015968,-590.554118263473,-589.9462445109781,-589.338370758483,-588.730497005988,-588.122623253493,-587.514749500998,-586.906875748503,-586.299001996008,-585.6911282435129,-585.083254491018,-584.475380738523,-583.8675069860279,-583.2596332335329,-582.651759481038,-582.0438857285429,-581.4360119760479,-580.8281382235529,-580.2202644710579,-579.6123907185629,-579.0045169660679,-578.3966432135728,-577.7887694610779,-577.1808957085829,-576.5730219560878,-575.9651482035928,-575.3572744510979,-574.7494006986028,-574.1415269461078,-573.5336531936127,-572.9257794411178,-572.3179056886228,-571.7100319361277,-571.1021581836327,-570.4942844311378,-569.8864106786427,-569.2785369261477,-568.6706631736527,-568.0627894211577,-567.4549156686627,-566.8470419161677,-566.2391681636726,-565.6312944111777,-565.0234206586827,-564.4155469061876,-563.8076731536926,-563.1997994011977,-562.5919256487026,-561.9840518962076,-561.3761781437125,-560.7683043912176,-560.1604306387226,-559.5525568862275,-558.9446831337325,-558.3368093812376,-557.7289356287425,-557.1210618762475,-556.5131881237525,-555.9053143712575,-555.2974406187625,-554.6895668662675,-554.0816931137724,-553.4738193612775,-552.8659456087825,-552.2580718562874,-551.6501981037924,-551.0423243512975,-550.4344505988024,-549.8265768463074,-549.2187030938123,-548.6108293413174,-548.0029555888224,-547.3950818363273,-546.7872080838323,-546.1793343313374,-545.5714605788423,-544.9635868263473,-544.3557130738523,-543.7478393213573,-543.1399655688623,-542.5320918163673,-541.9242180638722,-541.3163443113773,-540.7084705588823,-540.1005968063872,-539.4927230538922,-538.8848493013973,-538.2769755489022,-537.6691017964072,-537.0612280439121,-536.4533542914172,-535.8454805389222,-535.2376067864271,-534.6297330339321,-534.0218592814372,-533.4139855289421,-532.8061117764471,-532.1982380239521,-531.5903642714571,-530.9824905189621,-530.374616766467,-529.766743013972,-529.1588692614771,-528.550995508982,-527.943121756487,-527.335248003992,-526.727374251497,-526.119500499002,-525.511626746507,-524.9037529940119,-524.295879241517,-523.688005489022,-523.0801317365269,-522.4722579840319,-521.864384231537,-521.2565104790419,-520.6486367265469,-520.0407629740519,-519.4328892215569,-518.8250154690619,-518.2171417165669,-517.6092679640718,-517.0013942115769,-516.3935204590819,-515.7856467065868,-515.1777729540918,-514.5698992015969,-513.9620254491018,-513.3541516966068,-512.7462779441117,-512.1384041916168,-511.5305304391218,-510.92265668662674,-510.31478293413176,-509.7069091816367,-509.09903542914174,-508.4911616766467,-507.8832879241517,-507.2754141716567,-506.6675404191617,-506.05966666666666,-505.4517929141717,-504.84391916167664,-504.23604540918166,-503.6281716566866,-503.02029790419164,-502.4124241516966,-501.8045503992016,-501.1966766467066,-500.5888028942116,-499.98092914171656,-499.3730553892216,-498.76518163672654,-498.15730788423156,-497.5494341317365,-496.94156037924154,-496.3336866267465,-495.7258128742515,-495.1179391217565,-494.5100653692615,-493.90219161676646,-493.2943178642715,-492.68644411177644,-492.07857035928146,-491.4706966067864,-490.86282285429144,-490.2549491017964,-489.6470753493014,-489.0392015968064,-488.4313278443114,-487.82345409181636,-487.2155803393214,-486.60770658682634,-485.99983283433136,-485.3919590818363,-484.78408532934134,-484.1762115768463,-483.5683378243513,-482.9604640718563,-482.3525903193613,-481.74471656686626,-481.1368428143713,-480.52896906187624,-479.92109530938126,-479.3132215568862,-478.70534780439124,-478.0974740518962,-477.4896002994012,-476.8817265469062,-476.2738527944112,-475.66597904191616,-475.0581052894212,-474.45023153692614,-473.84235778443116,-473.2344840319361,-472.62661027944114,-472.0187365269461,-471.4108627744511,-470.8029890219561,-470.1951152694611,-469.58724151696606,-468.9793677644711,-468.37149401197604,-467.76362025948106,-467.155746506986,-466.54787275449104,-465.939999001996,-465.332125249501,-464.724251497006,-464.116377744511,-463.50850399201596,-462.900630239521,-462.29275648702594,-461.68488273453096,-461.0770089820359,-460.46913522954094,-459.8612614770459,-459.2533877245509,-458.6455139720559,-458.0376402195609,-457.42976646706586,-456.8218927145709,-456.21401896207584,-455.60614520958086,-454.9982714570858,-454.39039770459084,-453.7825239520958,-453.1746501996008,-452.5667764471058,-451.9589026946108,-451.35102894211576,-450.7431551896208,-450.13528143712574,-449.52740768463076,-448.9195339321357,-448.31166017964074,-447.7037864271457,-447.0959126746507,-446.4880389221557,-445.8801651696607,-445.27229141716566,-444.6644176646707,-444.05654391217564,-443.44867015968066,-442.8407964071856,-442.23292265469064,-441.6250489021956,-441.0171751497006,-440.4093013972056,-439.8014276447106,-439.19355389221556,-438.5856801397206,-437.97780638722554,-437.36993263473056,-436.7620588822355,-436.15418512974054,-435.5463113772455,-434.9384376247505,-434.3305638722555,-433.7226901197605,-433.11481636726546,-432.5069426147705,-431.89906886227544,-431.29119510978046,-430.6833213572854,-430.07544760479044,-429.4675738522954,-428.8597000998004,-428.2518263473054,-427.6439525948104,-427.03607884231536,-426.4282050898204,-425.82033133732534,-425.21245758483036,-424.6045838323353,-423.99671007984034,-423.3888363273453,-422.7809625748503,-422.1730888223553,-421.5652150698603,-420.95734131736526,-420.3494675648703,-419.74159381237524,-419.13372005988026,-418.5258463073852,-417.91797255489024,-417.3100988023952,-416.7022250499002,-416.0943512974052,-415.4864775449102,-414.87860379241516,-414.2707300399202,-413.66285628742514,-413.05498253493016,-412.4471087824351,-411.83923502994014,-411.2313612774451,-410.6234875249501,-410.0156137724551,-409.4077400199601,-408.79986626746506,-408.1919925149701,-407.58411876247504,-406.97624500998006,-406.368371257485,-405.76049750499004,-405.152623752495,-404.54475,-403.936876247505,-403.32900249501,-402.72112874251496,-402.11325499002,-401.50538123752494,-400.89750748502996,-400.2896337325349,-399.68175998003994,-399.0738862275449,-398.4660124750499,-397.8581387225549,-397.2502649700599,-396.64239121756486,-396.0345174650699,-395.42664371257484,-394.81876996007986,-394.2108962075848,-393.60302245508984,-392.9951487025948,-392.3872749500998,-391.7794011976048,-391.1715274451098,-390.56365369261476,-389.9557799401198,-389.34790618762474,-388.74003243512976,-388.1321586826347,-387.52428493013974,-386.9164111776447,-386.3085374251497,-385.7006636726547,-385.0927899201597,-384.48491616766466,-383.8770424151697,-383.26916866267464,-382.66129491017966,-382.0534211576846,-381.44554740518964,-380.8376736526946,-380.2297999001996,-379.6219261477046,-379.0140523952096,-378.40617864271456,-377.7983048902196,-377.19043113772454,-376.58255738522956,-375.9746836327345,-375.36680988023954,-374.7589361277445,-374.1510623752495,-373.5431886227545,-372.9353148702595,-372.32744111776447,-371.7195673652695,-371.11169361277445,-370.50381986027946,-369.8959461077844,-369.28807235528944,-368.6801986027944,-368.0723248502994,-367.4644510978044,-366.8565773453094,-366.24870359281437,-365.6408298403194,-365.03295608782435,-364.42508233532936,-363.8172085828343,-363.20933483033934,-362.6014610778443,-361.9935873253493,-361.3857135728543,-360.7778398203593,-360.16996606786427,-359.5620923153693,-358.95421856287425,-358.34634481037926,-357.7384710578842,-357.13059730538924,-356.5227235528942,-355.9148498003992,-355.3069760479042,-354.6991022954092,-354.09122854291417,-353.4833547904192,-352.87548103792415,-352.26760728542916,-351.6597335329341,-351.05185978043914,-350.4439860279441,-349.8361122754491,-349.2282385229541,-348.6203647704591,-348.01249101796407,-347.4046172654691,-346.79674351297405,-346.18886976047907,-345.580996007984,-344.97312225548905,-344.365248502994,-343.757374750499,-343.149500998004,-342.541627245509,-341.93375349301397,-341.325879740519,-340.71800598802395,-340.11013223552897,-339.5022584830339,-338.89438473053895,-338.2865109780439,-337.6786372255489,-337.0707634730539,-336.4628897205589,-335.85501596806387,-335.2471422155689,-334.63926846307385,-334.03139471057887,-333.4235209580838,-332.81564720558885,-332.2077734530938,-331.5998997005988,-330.9920259481038,-330.3841521956088,-329.77627844311377,-329.1684046906188,-328.56053093812375,-327.95265718562877,-327.3447834331337,-326.73690968063875,-326.1290359281437,-325.5211621756487,-324.9132884231537,-324.3054146706587,-323.69754091816367,-323.0896671656687,-322.48179341317365,-321.87391966067867,-321.2660459081836,-320.65817215568865,-320.0502984031936,-319.4424246506986,-318.8345508982036,-318.2266771457086,-317.61880339321357,-317.0109296407186,-316.40305588822355,-315.79518213572857,-315.1873083832335,-314.57943463073855,-313.9715608782435,-313.3636871257485,-312.7558133732535,-312.1479396207585,-311.54006586826347,-310.9321921157685,-310.32431836327345,-309.71644461077847,-309.10857085828343,-308.50069710578845,-307.8928233532934,-307.2849496007984,-306.6770758483034,-306.0692020958084,-305.46132834331337,-304.8534545908184,-304.24558083832335,-303.63770708582837,-303.02983333333333,-302.42195958083835,-301.8140858283433,-301.2062120758483,-300.5983383233533,-299.9904645708583,-299.38259081836327,-298.7747170658683,-298.16684331337325,-297.55896956087827,-296.95109580838323,-296.34322205588825,-295.7353483033932,-295.1274745508982,-294.5196007984032,-293.9117270459082,-293.30385329341317,-292.6959795409182,-292.08810578842315,-291.48023203592817,-290.87235828343313,-290.26448453093815,-289.6566107784431,-289.0487370259481,-288.4408632734531,-287.8329895209581,-287.22511576846307,-286.6172420159681,-286.00936826347305,-285.40149451097807,-284.79362075848303,-284.18574700598805,-283.577873253493,-282.96999950099803,-282.362125748503,-281.754251996008,-281.14637824351297,-280.538504491018,-279.93063073852295,-279.32275698602797,-278.71488323353293,-278.10700948103795,-277.4991357285429,-276.89126197604793,-276.2833882235529,-275.6755144710579,-275.06764071856287,-274.4597669660679,-273.85189321357285,-273.24401946107787,-272.63614570858283,-272.02827195608785,-271.4203982035928,-270.81252445109783,-270.2046506986028,-269.5967769461078,-268.98890319361277,-268.3810294411178,-267.77315568862275,-267.16528193612777,-266.55740818363273,-265.94953443113775,-265.3416606786427,-264.73378692614773,-264.1259131736527,-263.5180394211577,-262.91016566866267,-262.3022919161677,-261.69441816367265,-261.08654441117767,-260.47867065868263,-259.87079690618765,-259.2629231536926,-258.65504940119763,-258.0471756487026,-257.4393018962076,-256.83142814371257,-256.2235543912176,-255.61568063872255,-255.00780688622754,-254.39993313373253,-253.79205938123752,-253.1841856287425,-252.5763118762475,-251.9684381237525,-251.36056437125748,-250.75269061876247,-250.14481686626746,-249.53694311377245,-248.92906936127744,-248.32119560878243,-247.71332185628742,-247.1054481037924,-246.4975743512974,-245.8897005988024,-245.28182684630738,-244.67395309381237,-244.06607934131736,-243.45820558882235,-242.85033183632734,-242.24245808383233,-241.63458433133732,-241.0267105788423,-240.4188368263473,-239.8109630738523,-239.20308932135728,-238.59521556886227,-237.98734181636726,-237.37946806387225,-236.77159431137724,-236.16372055888223,-235.55584680638722,-234.9479730538922,-234.3400993013972,-233.7322255489022,-233.12435179640718,-232.51647804391217,-231.90860429141716,-231.30073053892215,-230.69285678642714,-230.08498303393213,-229.47710928143712,-228.8692355289421,-228.2613617764471,-227.6534880239521,-227.04561427145708,-226.43774051896207,-225.82986676646706,-225.22199301397205,-224.61411926147704,-224.00624550898203,-223.39837175648702,-222.790498003992,-222.182624251497,-221.574750499002,-220.96687674650698,-220.35900299401197,-219.75112924151696,-219.14325548902195,-218.53538173652694,-217.92750798403193,-217.31963423153692,-216.7117604790419,-216.1038867265469,-215.4960129740519,-214.88813922155688,-214.28026546906187,-213.67239171656686,-213.06451796407185,-212.45664421157684,-211.84877045908183,-211.24089670658682,-210.6330229540918,-210.0251492015968,-209.4172754491018,-208.80940169660678,-208.20152794411177,-207.59365419161676,-206.98578043912175,-206.37790668662674,-205.77003293413173,-205.16215918163672,-204.55428542914171,-203.9464116766467,-203.3385379241517,-202.73066417165668,-202.12279041916167,-201.51491666666666,-200.90704291417165,-200.29916916167664,-199.69129540918163,-199.08342165668662,-198.47554790419161,-197.8676741516966,-197.2598003992016,-196.65192664670658,-196.04405289421157,-195.43617914171656,-194.82830538922155,-194.22043163672654,-193.61255788423153,-193.00468413173652,-192.39681037924151,-191.7889366267465,-191.1810628742515,-190.57318912175649,-189.96531536926148,-189.35744161676647,-188.74956786427146,-188.14169411177645,-187.53382035928144,-186.92594660678643,-186.31807285429142,-185.7101991017964,-185.1023253493014,-184.49445159680639,-183.88657784431138,-183.27870409181637,-182.67083033932136,-182.06295658682635,-181.45508283433134,-180.84720908183633,-180.23933532934132,-179.6314615768463,-179.0235878243513,-178.41571407185629,-177.80784031936128,-177.19996656686627,-176.59209281437126,-175.98421906187625,-175.37634530938124,-174.76847155688623,-174.16059780439122,-173.5527240518962,-172.9448502994012,-172.3369765469062,-171.72910279441118,-171.12122904191617,-170.51335528942116,-169.90548153692615,-169.29760778443114,-168.68973403193613,-168.08186027944112,-167.4739865269461,-166.8661127744511,-166.2582390219561,-165.65036526946108,-165.04249151696607,-164.43461776447106,-163.82674401197605,-163.21887025948104,-162.61099650698603,-162.00312275449102,-161.395249001996,-160.787375249501,-160.179501497006,-159.57162774451098,-158.96375399201597,-158.35588023952096,-157.74800648702595,-157.14013273453094,-156.53225898203593,-155.92438522954092,-155.3165114770459,-154.7086377245509,-154.1007639720559,-153.49289021956088,-152.88501646706587,-152.27714271457086,-151.66926896207585,-151.06139520958084,-150.45352145708583,-149.84564770459082,-149.2377739520958,-148.6299001996008,-148.0220264471058,-147.41415269461078,-146.80627894211577,-146.19840518962076,-145.59053143712575,-144.98265768463074,-144.37478393213573,-143.76691017964072,-143.1590364271457,-142.5511626746507,-141.9432889221557,-141.33541516966068,-140.72754141716567,-140.11966766467066,-139.51179391217565,-138.90392015968064,-138.29604640718563,-137.68817265469062,-137.0802989021956,-136.4724251497006,-135.8645513972056,-135.25667764471058,-134.64880389221557,-134.04093013972056,-133.43305638722555,-132.82518263473054,-132.21730888223553,-131.60943512974052,-131.0015613772455,-130.3936876247505,-129.7858138722555,-129.17794011976048,-128.57006636726547,-127.96219261477046,-127.35431886227545,-126.74644510978044,-126.13857135728543,-125.53069760479042,-124.92282385229541,-124.3149500998004,-123.70707634730539,-123.09920259481038,-122.49132884231537,-121.88345508982036,-121.27558133732535,-120.66770758483034,-120.05983383233533,-119.45196007984032,-118.84408632734531,-118.2362125748503,-117.62833882235529,-117.02046506986028,-116.41259131736527,-115.80471756487026,-115.19684381237525,-114.58897005988024,-113.98109630738523,-113.37322255489022,-112.76534880239521,-112.1574750499002,-111.54960129740519,-110.94172754491018,-110.33385379241517,-109.72598003992016,-109.11810628742515,-108.51023253493014,-107.90235878243513,-107.29448502994012,-106.68661127744511,-106.0787375249501,-105.47086377245509,-104.86299001996008,-104.25511626746507,-103.64724251497006,-103.03936876247505,-102.43149500998004,-101.82362125748503,-101.21574750499002,-100.60787375249501,-100.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json index 5da8c1aa2053..80bf5fec0d05 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json @@ -1 +1 @@ -{"expected":[0.01,-0.0033746253790549624,-0.007622018879319136,0.008433494207046853,0.001889004559574384,-0.00959763287124854,0.0045548640918855405,0.00643775365526481,-0.008809666729723751,-0.000468327621357804,0.009021878600127204,-0.005574489042175532,-0.005188845438344393,0.008984167322636266,-0.0008822361340235784,-0.008293387424072578,0.006423300008544533,0.00390249149724315,-0.00896491048167861,0.0021410030233847974,0.007434361161677098,-0.0070945391115908776,-0.002605153786703288,0.0087627445091276,-0.003288961215575298,-0.006468148173580897,0.007584861802057748,0.001322173628641932,-0.008391166572328667,0.004309966210916445,0.005418829024186577,-0.007894256760515254,-0.00007741137080101638,0.00786600339799083,-0.005190888286691567,-0.004310799964470551,0.008025916288409504,-0.0011070829665529621,-0.00720506320694166,0.0059217096985319595,0.0031683612909959584,-0.007986059728650302,0.002211362742764597,0.006427764980119337,-0.006495570438395232,-0.002015317447555855,0.007783713328832359,-0.003217836901260242,-0.005554751504162455,0.0069087623461371135,0.0008745954285802678,-0.007430450743094688,0.004111477604627807,0.004607492872683843,-0.007160672340873091,0.00023211237554265316,0.006940099051174486,-0.004879980448715341,-0.0036078872171936413,0.007253676467270752,-0.0012846752729141803,-0.006328415747875719,0.005513875305599021,0.002577865411407692,-0.007192987327410233,0.002264816300126859,0.005612742616618405,-0.00600658676302084,-0.00153900633791215,0.006986458278165595,-0.0031563648778605274,-0.004811642742160233,0.006354444046560059,0.0005121690322926351,-0.006644348505237545,0.003945466543090176,0.003944527136917611,-0.006556641214801915,0.00048285236585137326,0.00617905372724083,-0.0046207470221406475,-0.0030312775513807594,0.006615149291794282,-0.0014276454140797585,-0.0056048078272581455,0.005173428759011166,0.002091872012714056,-0.006534582830377916,0.0023054630602133983,0.004937361147319414,-0.005597398884782191,-0.0011460194895600748,0.006322024170613043,-0.003101470027877635,-0.004193641507483116,0.005889228490530021,0.00021280982010589674,-0.005986809356747114,0.003802948422578564,0.0033914042216771465,-0.006048143932118084,0.0006896153286842611,0.005540280292535628,-0.004399459866491001,-0.0025488774753354643,0.006075951734989388,-0.0015443651716269698,-0.004995508238426995,0.0048829622877020395,0.00168440940535812,-0.005976919465789322,0.002336071445060531,0.00436699417707134,-0.005247880329196343,-0.0008161230833134467,0.005757615681360099,-0.003051124871582776,-0.003670351889638602,0.005491129188702045,-0.000038414647596295,-0.005426712741594785,0.0036778730471761206,0.002921979790357042,-0.005612092537049578,0.000862504886225179,0.004994756869438384,-0.004206777101008821,-0.002138727658395496,0.005612555974717905,-0.001640603793679084,-0.00447391034918115,0.0046305252678440646,0.0013375643846813207,-0.005496598259191423,0.002358580514084293,0.003877671165064496,-0.004944102324323375,-0.0005352527185069069,0.005270443255972866,-0.003003941903847979,-0.003220575689940079,0.005144814658170978,-0.000251963241123376,-0.004942276221088671,0.0035660207544181725,0.002517890234124859,-0.005232271548429072,0.0010086524055568644,0.0045220286015450195,-0.004036124920485116,-0.001785297355488709,0.0052083240203809455,-0.001720467938676326,-0.004021136032862963,0.004407645528211705,0.00103858281312451,-0.005076963386680254,0.002374390930557525,0.003452274611672536,-0.004676123221830755,-0.000293328920583648,0.004844182283096554,-0.0029589426438823055,-0.002829080820353618,0.004839272196996332,-0.000435380175485463,-0.004517801641045534,0.00346436212758138,0.0021658606757821207,-0.004896962550898842,0.0011332360936159342,0.0041072675988673485,-0.003882746693639497,-0.0014772937632670537,0.004851162237974012,-0.001786961913692683,-0.003623422830336836,0.004208153488994983,0.0007781377996418393,-0.004705840642293678,0.0023845416920389327,0.0030782571544993855,-0.004436661150818149,-0.000082939248081345,0.004466836450525034,-0.0029154200873884777,-0.0024846425797872,0.00456639129577918,-0.000594244714662356,-0.004141693120882942,0.003370669019868411,0.001856058123530432,-0.004597490347915285,0.0012401078946157153,0.0037394657832780214,-0.003743118961844232,-0.001206309833420299,0.004532072941424919,-0.001842335860794209,-0.003270503864866559,0.004027453169436672,0.0005492514201438184,-0.004374128830803134,0.0023898217124098888,0.0027462141060571542,-0.004220263892919906,0.0001014892078418608,0.004129395888683835,-0.002872853287528974,-0.002178808909098591,0.004320070339086555,-0.000732772431855468,-0.0038052023601414537,0.0032832688759818953,0.0015810451408781274,-0.004327298885133179,0.0013321936644063676,0.0034102820608713055,-0.003614579152420938,-0.000965958591601959,0.0042442267481438865,-0.001888309967606561,-0.002954566646910544,0.003862053730280365,0.0003465992716145695,-0.004074890983889265,0.002390842639114913,0.002448959438274671,-0.004022771440620501,0.00026422738837701204,0.0038249653113078845,-0.002830852389397747,-0.001905095542674953,0.004095634147866093,-0.0008542085792722223,-0.003501607823646661,0.0032008843221029396,0.0013350931947516316,0.004081344613809632,0.0014117568426467166,0.0031132831440029004,-0.003495080560118109,-0.000751301299248045,0.0039823495988200956,-0.0019262233125530552,-0.0026695630035545965,0.0037092590208348468,0.00016604814335501283,-0.003802750032448531,0.00238808774933818,0.0021809095582688387,-0.0038409575222055825,0.0004086038740077174,0.003548180682849912,-0.00278912216160145,-0.0016584460091960713,0.0038894430832158615,-0.0009610928562487279,-0.003225662294979352,0.0031225253816182913,0.0011137192491960006,-0.003855686955326962,0.0014805770200375756,0.0028434296419308706,-0.003383026569449437,-0.0005584593235005616,0.0037423065725655123,-0.0019571353282153824,-0.002410739334022185,0.0035669562592685992,0.000004340463089199634,-0.003553476225131052,0.002381945611343005,0.0019376615497718379,-0.003672284215497602,0.0005372516695656682,0.0032948088333592442,-0.0027474371465572647,-0.0014348600868823633,0.0036986240233832955,-0.0010554420895805701,-0.0029732117153399543,0.003047415214307232,0.0009133652765595503,-0.0036472049859943957,0.0015400738095075364,0.002596719693376865,-0.003277155743961312,-0.0003843443595345254,0.003520812524978191,-0.001981896589820398,-0.0021743092640833387,0.0034334687762567285,-0.0001411261126639814,0.0023727337708766235,0.0017156978580311923,-0.003514730101806216,0.0006522814102675338,0.0030614664015164317,-0.002705624325836564,-0.0012311324328946071,0.003520881067978818,-0.0011388790574619577,-0.002740926389843438,0.0029749378100310947,0.0007311717760163106,-0.0034533971691657716,0.0015913946155659104,0.0023699365314837134,-0.0031764604545482227,-0.00022646693702463983,0.0033152266358330964,-0.0020011992261728833,-0.001957220756854529,0.0033074512487201294,-0.00027245583099065574,-0.0031107008045504225,0.002360715744923774,0.0015121752946147878,-0.0033666674657802775,0.0007554053700443383,0.00284541857387878,-0.002663550773165199,-0.001044665065235685,0.0033543596961918744,-0.001212725111614123,-0.002526107720106278,0.002904600416141118,0.0005648146273983649,-0.0032722370521445954,0.0016354780062711222,0.002160466254018691,-0.003080128151737152,-0.000082797930510248,0.0031234037829790946,-0.002015613480508536,-0.00175698733817825,0.0031878137718127416,-0.0003913689234629894,-0.002912269083932181,0.0023461134262495863,0.0013247715479915683,-0.003226772947196665,0.0008480278373982253,0.0026444323795080907,-0.002621114694188058,-0.0008733304451363718,0.0031975475558126023,-0.0012780679337996753,-0.0023265468088722987,0.0028360060700229743,0.0004123855362323381,-0.003102067489642725,0.0016731002473195156,0.001966164025988275,-0.002987498252220287,0.00004833328785673103,0.002943585209223255,-0.002025614663560462,-0.0015715637451245235,0.003073665910135281,-0.0004992857952449686,-0.002726584833597506,0.0023291162790907956,0.0011515717076079155,-0.0030939614708402024,0.0009313120391705081,0.0024566680294338806,-0.002578238813341514,-0.000715369914541897,0.0030492008505353272,-0.0013358118795590603,-0.002140419386636313,0.0027688331984681023,0.00027230306044425507,-0.0029415219008097995,0.0017049099941755753,0.0017852543316613596,-0.0028980299980183146,0.00016831488624009116,0.0027743168705652277,-0.0020316033182352874,-0.0013992529276129046,0.002964274848589291,-0.0005973900770956857,-0.0025521406810003954,0.0023098882513615314,0.0009909831370976026,-0.0029673366695994975,0.0010062304166468866,0.002280597264378061,-0.002534865417417635,-0.0005693172763382291,0.0029082889338595324,-0.0013867159137674443,-0.0019662066190262472,0.0027028202465121734,0.00014324546521498255,-0.0027894648250310636,0.001731454512834913,0.0016162555759663638,-0.0028112781592852815,0.0002783101226767328,0.002614387616968737,-0.002033920507690205,-0.001238635550763712,0.002859033660935118,-0.0006866764820938022,-0.002387678084620776,0.0022885730357688917,0.000841670763073588,-0.0028461531856580177,0.0010736028917752718,0.002114941187700384,-0.002490952588011033,-0.0004339405427495209,0.0027739520605998113,-0.0014314225634394463,-0.0018026346487828543,0.0026377539430179966,0.000024099403604626595,-0.0026449464716313343,0.0017531997460879121,0.0014579223699989954,-0.002726874431534224,0.00037930144622244015,0.002462781801289147,-0.0020328595469610695,-0.0010885158914870888,0.0027574369494554997,-0.0007679875735691736,-0.0022321391627136557,0.0022652981196188125,0.000702507285968018,-0.002729787653816416,0.0011341263410876764,0.0019586223638290937,-0.00244647130004073,-0.0003081970043560719,0.002645468786255706,-0.0014704802733878732,-0.0016486278957671848,0.0025734602342109597,-0.00008607976421486678,-0.0025071675622243285,0.0017705458451201643,0.0013092008421668711,-0.002644513025712797,0.0004721246781596627,0.0023186425320669743,-0.002028675104990842,-0.0009478798462329672,0.002659061929424631,-0.0008420423294057347,-0.0020846292530919777,0.0022401779340787444,0.0005725344463660855,-0.002617716117379471,0.0011883975459047247,0.00181072750167585,-0.002401403159898697,-0.0001911981961946872,0.00252223053520494,-0.00150436085260325,-0.0015032725941173384,0.0025097972004579777,-0.00018809898018486252,-0.0023754518425589425,0.0017838393165831475,0.0011691936682461637,-0.0025639393856203506,0.0005574957818355751,0.002181242879348386,-0.002021590337661687,-0.0008158619997894686,0.0025635535866886197,-0.0009094585606012332,-0.0019443875126433023,0.0022133163256927288,0.00045093258457585547,-0.002509496269414901,0.0012369312421345489,0.0016704780892682278,-0.0023557386219282845,-0.00008218230752615857,0.0024037215609318827,-0.001533473223012741,-0.001365788039216979,0.0024466494652647408,-0.0002826519588731703,-0.0022492243779544466,0.0017933826134725838,0.0010371324395297126,-0.002484941265751537,0.0006360320298354078,0.002049963093101947,-0.0020118025292847827,-0.0006917195525119262,0.0024706129178784933,-0.0009707706722735125,-0.0018107636100686472,0.002184808512062205,0.00033699649284626125,-0.002404753355323932,0.0012801744470596899,0.001537207069170819,-0.0023094755667628676,0.000019507746753487322,0.002289503007619787,-0.0015581743520317768,-0.0012355037060267395,0.0023839237396364385,-0.00037033867283502197,-0.0021279942584771353,0.0017994417741892838,0.0009123556323570743,-0.002407341610307096,0.0007082688896385101,0.001924272416723798,-0.001999487592035099,-0.0005748114948746359,0.002379987528811685,-0.0010264438571449548,-0.001683199086011227,0.0021547426407978825,0.00023011609295240612,-0.0023031688829249506,0.0013185179278607563,0.001410340151546865,-0.00226261815632344,0.00011444190350763413,0.0021792001238734966,-0.0015787780180434162,-0.0011118408849488351,0.002321545239227773,-0.00045168099825255704,-0.0020113407007838497,0.0018022525561288292,0.0007942908968153683,-0.0023309928205821405,0.0007746736043426581,0.001803714447662988,-0.0019848036822188407,-0.0004645818368192538,0.0022914640549012346,-0.0010768855293036537,-0.0015612123237860743,0.0021232010403929814,0.0001297608503656892,-0.002204471506490353,0.0013523054543425155,0.0012893807223029292,-0.0022151759024297097,0.0002031171523614491,0.002072491922429874,-0.0015955618922985336,-0.0009942978268588042,0.002259454778879646,-0.0005271353749706217,-0.0018989017911572215,0.0018020253971051474,0.0006824407072985435,-0.0022557721026356748,0.0008356561984161872,0.0016878952618040433,-0.0019678941272325413,-0.00036054599946802374,0.0022048620023513398,-0.001122454603471095,-0.0014443863389041823,0.0020902612296847677,0.0000354671083238826,-0.0021084296094975655,0.0013818413183534276,0.0011738975633771888,-0.002167162901846324,0.0002859690931723308,0.0019691027549326263,-0.0016087733011967177,-0.000882437638330581,0.0021976063975728925,-0.0005971031245060763,-0.0017903653004237641,0.001798949456116054,0.0005763706527763578,-0.0021815776628847307,0.0008915784597268142,0.0015764737099661576,-0.0019488898098829778,-0.0002622796945123937,0.002120028706833092,-0.0011634690778397434,-0.00133235878806569,0.002055996736555064,-0.00005317227695481571,-0.0020148452260280994,0.0014073964858683516,0.0010635147912839954,-0.002118597202116705,0.0003633814063964488,0.0018687953986439004,-0.001618633945617953,-0.0007758783501296758,0.0021359654021759706,-0.0006619389156958006,-0.001685461137567241,0.0017931959250680322,0.0004756998166979747,-0.002108325574690938,0.0009427613181347118,0.0014691534354072185,-0.0019279111220849552,-0.00016940977630202798,0.0020368351781634214,-0.0012002122704387638,-0.0012248137397222571,0.0020204777647040138,-0.0001365164731501839,-0.0019235490254383598,0.001429213661905231,0.0009579035592634622,-0.0020695002709836996,0.00043569366276668194,0.001771365346153946,-0.0016253437895462407,-0.0006742847164405341,0.002074506744423042,-0.0007219577539746244,-0.001583955109401834,0.0017849207587636168,0.0003800928237751474,-0.0020359471799921113,0.0009894909439983504,0.001365676265258973,-0.0019050695742462466,-0.00008160667009977071,0.0019551726527607546,-0.0012329379787893553,-0.0011214748532388037,0.0019837717385284585,-0.00021488374589178938,-0.0018343961478594086,0.0014475114846589161,0.0008567751719113934,-0.0020198965484687923,0.0005032078018533034,0.0016766360593018427,-0.0016290842822227678,-0.0005773614024287887,0.0020132136649767046,-0.0007774407854154982,-0.001485643728726439,0.0017742669373665958,0.00028925322595191566,-0.0019643869206406876,0.001032023817418387,0.0012658167066469663,-0.0018804691274104883,0.0000014219314192059985,0.0018749497155054894,-0.0012618747724836893,-0.0010220996923464246,0.0019459437495293614,-0.0002885573539851103,-0.0017472627252814671,0.0014624880173070333,0.000759875338937036,-0.001969813065372363,0.0005661935363351936,0.0015844550012379893,-0.0016300210419186326,-0.00048484729311842076,0.0019520765530275522,-0.0008286401427992488,-0.0013903498698962624,0.001761366350587126,0.0002029179715772622,-0.0018936005171811343,0.001070590964359338,0.0011693773369627605,-0.0018542073006706367,0.00007993634436630187,0.001796089882737794,-0.001287229582897214,-0.0009264749580346582,0.00190705692264887,-0.000357790488405239,-0.0016620429587037447,0.001474323669667731,0.000666979353589724,-0.001919279115500805,0.0006248928836065682,0.001494690300540488,-0.0016283061020082176,-0.00039651071375081354,0.0018910919809583453,-0.0008757830124216558,-0.0012979191136915354,0.001746341373859158,0.0012085275628620108,-0.001823553430342144,0.0011054015141281398,0.0010761849224576528,-0.0018263760952866859,0.00015416933249647887,0.0017185295610630813,-0.0013091907195737172,-0.0008344124713796399,0.001867172717108242,-0.00042281043082654894,-0.0015786466491034894,0.0014831836541463507,0.000577888026299939,-0.0018683259716293663,0.0006795239841810711,0.0014072279318751814,-0.0016240797990220387,-0.0003121453955687333,0.0018302618820712844,-0.0009190750631916303,-0.0012082166562672975,0.0017293061922154344,0.000042848095910588676,-0.001754219553962642,0.0011366457007577196,0.0009860871336272348,-0.0017970627684170263,0.00022432985947940388,0.001642216314245644,-0.00132793041619937,-0.000745745771673329,0.0018263511733560237,-0.00048382207139291455,-0.001496997100948329,0.0014892200590753374,0.0004924242387303761,-0.0018169866372816674,0.000730284333815972,0.0013219693212437487,-0.0016174723661781761,-0.00023156705474265918,0.0017695928459084888,-0.0009587033508575022,-0.0011211246823503444,0.0017103679163289168,-0.000031284005997565645,-0.0016855800984575933,0.0011644974061324103,0.000898949752385515,-0.0017663504827774893,0.00029060627506083647,0.0015671073840996523,-0.001343606988452282,-0.0006603272222014626,0.0017846511154448806,-0.0005410108975245877,-0.0014170293332391715,0.001492573605985117,0.00041043001032005426,-0.0017652956280132586,0.0007773535310730766,0.0012388293021558306,-0.0016086052833111516,-0.0001546104783725948,0.001709095510765675,-0.0009948387879098184,-0.001036540122601161,0.0016896275264316656,-0.00010171289829495539,-0.0016176226320130786,0.0011891163234524363,0.0008146542866641094,-0.0017343188534058138,0.0003531690319383539,0.0014931684219100807,-0.0013563666699270584,-0.0005780255370831861,0.001742130316358363,-0.0005945455437270626,-0.001338688545766597,0.0014933751444066359,0.0003317639903807079,-0.0017132887771369898,0.0008208956222786434,0.0011577343633633864,-0.001597592424277112,0.0016487840369650121,-0.0010276382522176027,-0.0009543727305231596,0.0016671806729632347,-0.0001685917126398524,-0.0015503402530239307,0.0012106498045694487,0.0007330959242867455,-0.0017010444086675823,0.00041217301165898763,0.0014203723952454072,-0.0013663451796973138,-0.0004987236591255881,0.0016988456323976096,-0.000644579975265785,-0.001261928798224407,0.0014917469276472496,0.00025629930533804004,-0.001661003061809122,0.0008610611103393504,0.001078621140041301,-0.0015845410351623059,-0.000010982519468670268,0.001588675647577043,-0.0010572463937182544,-0.0008745434264680063,0.0016431183573983941,-0.00023205945121231676,-0.0014837308722831706,0.0012292344428094005,0.0006541817707338698,-0.0016666009794538096,0.00046775952319143125,0.0013486986416117019,-0.0013736690651118403,-0.00042231693169361435,0.0016548531116204845,-0.0006912553649986834,-0.0011867118677229454,0.0014878037049223778,0.00018392170375762485,-0.0016084764461720084,0.0008979886815637,0.0010014351092189444,-0.0015695525704905507,0.00005594466207552277,0.0015287902257490346,-0.001083797187546618,-0.0007969828659632944,0.0016175275124054767,-0.0002922427865284056,-0.0014177965873931977,0.0012449974334534334,0.0005778293255745284,-0.0016310600279888488,0.0005200580262196091,0.0012781320456142983,-0.0013784568554704394,-0.0003487115180043474,0.0016102080804333118,-0.0007347017119004154,-0.0011130062565073524,0.0014816536588215525,0.00011452795221224462,-0.0015557477388619453,0.0009318066948683035,0.00092612945734861,-0.001552723409721847,0.00011976511736049848,0.001469149959770467,-0.0011074152733014948,-0.0007216301972786769,0.0015904914970633767,-0.0003492576182697266,-0.0013525431350203407,0.001258057746515065,0.0005039651604261612,-0.0015944909256388486,0.0005691876218907034,0.0012086623204786548,-0.0013808200558933436,-0.0002778230295433546,0.0015649652117235575,-0.0007750392411754451,0.0010407863267157488,0.0014733992119670871,0.000048024443351710324,-0.0015028564626857373,0.0009626344698868147,0.000852664093594242,-0.0015341454724189692,0.0001805798375757076,0.0014097790285858799,-0.0011282171131553429,-0.0006484319793394448,0.0015620905201192293,-0.00040321042418424126,-0.0012879794091582,0.0012685271403792076,0.00043252376782482155,-0.0015569611874856634,0.0006152583463028969,0.001140283378138452,-0.001380864005588963,-0.00020957533199357617,0.0015191785773452852,-0.0008123796189423287,-0.0009700315430348592,0.0014631377225859693,-0.00001567401574594861,-0.001449842734661874,0.0009905834041994542,0.0007810047870022233,-0.0015139067472927914,0.00023848140533292832,0.0013507033217300011,-0.0011463119959027066,-0.0005773412360600683,0.0015324020020463702,-0.0004541994357349061,-0.0012241170356022742,0.0012765110399913272,0.00036344655563969773,-0.0015185366701156824,0.000658372295973902,0.0010729927747985181,-0.0013786886206157503,-0.0001438995024424062,0.0014729016873054363,-0.0008468270088493829,-0.0009007258073856401,0.001450962085384556,-0.00007664526144318761,-0.0013967471549453294,0.0010157579447764558,0.0007111224094082552,-0.0014920917477833327,0.00029355504647752005,0.001291950188696457,-0.0011618029094674707,-0.0005083166272211274,0.0015015008848669618,-0.0005023156640160524,-0.0011609699945040115,0.0012821092993090522,0.00029668096591077206,-0.0014792817380055517,0.000698624609657607,0.0010067912210918668,-0.0013743890378763429,-0.00008073291603006744,0.001426187517618761,-0.0008784789934285954,-0.0008328568724236371,0.0014369612513953334,-0.00013496069974191892,-0.0013436107034079628,0.0010382564345878728,0.0006429922689646879,-0.001468781904744373,0.0003458795506288721,0.0012335482135821156,-0.0011747873006891063,-0.0004413217192995347,0.0014694598972368577,-0.0005476437972705667,-0.0010985542842111163,0.0012854168645082713,0.00023217970047962564,0.0007361043268706108,0.0009416821477331841,-0.00002001844377637972,0.0013790885284927176,-0.0009074273792894457,-0.0007664158227911079,0.0014212206782551482,-0.00019068611930432298,-0.0012904746428634454,0.0010581718519219556,0.0005765935216221548,-0.0014440559051002789,0.00039552807880841544,0.0011755270115402297,-0.0011853577381613707,-0.0003763243423359188,0.0014363497810923871,-0.0005902629878833201,-0.001036887620716606,0.001286524351779206,0.00016990003861119102,-0.0013985314407912817,0.0007708951402235772,0.0008776713190505759,-0.0013597772134087674,0.0000382962537624602,0.0013316566742453079,-0.0009337589021888669, -0.0007013966148476759,0.0014038227205496864,-0.0002438824068503528,-0.0012373804280933014,0.0010755924571681343,0.0005119086499337978,-0.0014179899839424565,0.00044256887361214276,0.0011179170441275007,-0.0011936024914151245,-0.00031329602114924806,0.001402239485171366,-0.000630247543915065,-0.0009759891679376904,0.001285518551373567,0.00010980323415663845],"x":[100.0,100.60925648702595,101.21851297405189,101.82776946107785,102.4370259481038,103.04628243512974,103.65553892215569,104.26479540918163,104.87405189620759,105.48330838323353,106.09256487025948,106.70182135728543,107.31107784431137,107.92033433133733,108.52959081836327,109.13884730538922,109.74810379241517,110.35736027944112,110.96661676646707,111.57587325349301,112.18512974051896,112.7943862275449,113.40364271457086,114.01289920159681,114.62215568862275,115.2314121756487,115.84066866267464,116.4499251497006,117.05918163672655,117.6684381237525,118.27769461077844,118.88695109780438,119.49620758483034,120.10546407185629,120.71472055888223,121.32397704590818,121.93323353293412,122.54249001996008,123.15174650698603,123.76100299401197,124.37025948103792,124.97951596806388,125.58877245508982,126.19802894211577,126.80728542914171,127.41654191616766,128.02579840319362,128.63505489021955,129.2443113772455,129.85356786427147,130.4628243512974,131.07208083832336,131.6813373253493,132.29059381237525,132.8998502994012,133.50910678642714,134.1183632734531,134.72761976047903,135.336876247505,135.94613273453095,136.55538922155688,137.16464570858284,137.77390219560877,138.38315868263473,138.9924151696607,139.60167165668662,140.21092814371258,140.8201846307385,141.42944111776447,142.03869760479043,142.64795409181636,143.25721057884232,143.86646706586825,144.4757235528942,145.08498003992017,145.6942365269461,146.30349301397206,146.91274950099802,147.52200598802395,148.1312624750499,148.74051896207584,149.3497754491018,149.95903193612776,150.5682884231537,151.17754491017965,151.78680139720558,152.39605788423154,153.0053143712575,153.61457085828343,154.2238273453094,154.83308383233532,155.44234031936128,156.05159680638724,156.66085329341317,157.27010978043913,157.87936626746506,158.48862275449102,159.09787924151698,159.7071357285429,160.31639221556887,160.9256487025948,161.53490518962076,162.14416167664672,162.75341816367265,163.3626746506986,163.97193113772454,164.5811876247505,165.19044411177646,165.7997005988024,166.40895708582835,167.01821357285428,167.62747005988024,168.2367265469062,168.84598303393213,169.4552395209581,170.06449600798402,170.67375249500998,171.28300898203594,171.89226546906187,172.50152195608783,173.11077844311376,173.72003493013972,174.32929141716568,174.9385479041916,175.54780439121757,176.1570608782435,176.76631736526946,177.37557385229542,177.98483033932135,178.5940868263473,179.20334331337327,179.8125998003992,180.42185628742516,181.0311127744511,181.64036926147705,182.249625748503,182.85888223552894,183.4681387225549,184.07739520958083,184.6866516966068,185.29590818363275,185.90516467065868,186.51442115768464,187.12367764471057,187.73293413173653,188.3421906187625,188.95144710578842,189.56070359281438,190.1699600798403,190.77921656686627,191.38847305389223,191.99772954091816,192.60698602794412,193.21624251497005,193.825499001996,194.43475548902197,195.0440119760479,195.65326846307386,196.2625249500998,196.87178143712575,197.4810379241517,198.09029441117764,198.6995508982036,199.30880738522953,199.9180638722555,200.52732035928145,201.13657684630738,201.74583333333334,202.35508982035927,202.96434630738523,203.5736027944112,204.18285928143712,204.79211576846308,205.401372255489,206.01062874251497,206.61988522954093,207.22914171656686,207.83839820359282,208.44765469061878,209.0569111776447,209.66616766467067,210.2754241516966,210.88468063872256,211.49393712574852,212.10319361277445,212.7124500998004,213.32170658682634,213.9309630738523,214.54021956087826,215.1494760479042,215.75873253493015,216.36798902195608,216.97724550898204,217.586501996008,218.19575848303393,218.8050149700599,219.41427145708582,220.02352794411178,220.63278443113774,221.24204091816367,221.85129740518963,222.46055389221556,223.06981037924152,223.67906686626748,224.2883233532934,224.89757984031937,225.5068363273453,226.11609281437126,226.72534930139722,227.33460578842315,227.9438622754491,228.55311876247504,229.162375249501,229.77163173652696,230.3808882235529,230.99014471057885,231.59940119760478,232.20865768463074,232.8179141716567,233.42717065868263,234.0364271457086,234.64568363273452,235.25494011976048,235.86419660678644,236.47345309381237,237.08270958083833,237.69196606786429,238.30122255489022,238.91047904191618,239.5197355289421,240.12899201596807,240.73824850299403,241.34750499001996,241.95676147704592,242.56601796407185,243.1752744510978,243.78453093812377,244.3937874251497,245.00304391217566,245.6123003992016,246.22155688622755,246.8308133732535,247.44006986027944,248.0493263473054,248.65858283433133,249.2678393213573,249.87709580838325,250.48635229540918,251.09560878243514,251.70486526946107,252.31412175648703,252.92337824351299,253.53263473053892,254.14189121756488,254.7511477045908,255.36040419161677,255.96966067864273,256.57891716566866,257.1881736526946,257.7974301397206,258.40668662674653,259.01594311377244,259.6251996007984,260.23445608782436,260.8437125748503,261.4529690618763,262.0622255489022,262.67148203592814,263.2807385229541,263.88999500998005,264.499251497006,265.1085079840319,265.7177644710579,266.32702095808384,266.9362774451098,267.54553393213575,268.15479041916166,268.7640469061876,269.3733033932136,269.98255988023953,270.5918163672655,271.2010728542914,271.81032934131736,272.4195858283433,273.0288423153693,273.63809880239523,274.24735528942114,274.8566117764471,275.46586826347306,276.075124750499,276.684381237525,277.2936377245509,277.90289421157684,278.5121506986028,279.12140718562875,279.7306636726547,280.3399201596806,280.9491766467066,281.55843313373254,282.1676896207585,282.77694610778445,283.38620259481036,283.9954590818363,284.6047155688623,285.21397205588823,285.8232285429142,286.4324850299401,287.04174151696606,287.650998003992,288.260254491018,288.86951097804393,289.47876746506984,290.0880239520958,290.69728043912176,291.3065369261477,291.9157934131737,292.5250499001996,293.13430638722554,293.7435628742515,294.35281936127745,294.9620758483034,295.5713323353293,296.1805888223553,296.78984530938123,297.3991017964072,298.00835828343315,298.61761477045906,299.226871257485,299.836127744511,300.44538423153693,301.0546407185629,301.6638972055888,302.27315369261476,302.8824101796407,303.4916666666667,304.10092315369263,304.71017964071854,305.3194361277445,305.92869261477045,306.5379491017964,307.1472055888224,307.7564620758483,308.36571856287424,308.9749750499002,309.58423153692615,310.1934880239521,310.802744510978,311.412000998004,312.02125748502993,312.6305139720559,313.23977045908185,313.8490269461078,314.4582834331337,315.0675399201597,315.67679640718563,316.2860528942116,316.89530938123755,317.50456586826346,318.1138223552894,318.7230788423154,319.33233532934133,319.9415918163673,320.5508483033932,321.16010479041915,321.7693612774451,322.3786177644711,322.98787425149703,323.59713073852294,324.2063872255489,324.81564371257485,325.4249001996008,326.0341566866268,326.6434131736527,327.25266966067863,327.8619261477046,328.47118263473055,329.0804391217565,329.6896956087824,330.2989520958084,330.90820858283433,331.5174650698603,332.12672155688625,332.73597804391216,333.3452345309381,333.9544910179641,334.56374750499003,335.173003992016,335.7822604790419,336.39151696606785,337.0007734530938,337.6100299401198,338.21928642714573,338.82854291417163,339.4377994011976,340.04705588822355,340.6563123752495,341.2655688622755,341.8748253493014,342.48408183632733,343.0933383233533,343.70259481037925,344.3118512974052,344.9211077844311,345.5303642714571,346.13962075848303,346.748877245509,347.35813373253495,347.96739021956085,348.5766467065868,349.1859031936128,349.79515968063873,350.4044161676647,351.0136726546906,351.62292914171655,352.2321856287425,352.8414421157685,353.45069860279443,354.05995508982033,354.6692115768463,355.27846806387225,355.8877245508982,356.4969810379242,357.1062375249501,357.71549401197603,358.324750499002,358.93400698602795,359.5432634730539,360.1525199600798,360.7617764471058,361.37103293413173,361.9802894211577,362.58954590818365,363.19880239520955,363.8080588822355,364.4173153692615,365.02657185628743,365.6358283433134,366.2450848303393,366.85434131736525,367.4635978043912,368.0728542914172,368.68211077844313,369.29136726546903,369.900623752495,370.50988023952095,371.1191367265469,371.7283932135729,372.3376497005988,372.94690618762473,373.5561626746507,374.16541916167665,374.7746756487026,375.38393213572857,375.9931886227545,376.60244510978043,377.2117015968064,377.82095808383235,378.4302145708583,379.0394710578842,379.6487275449102,380.25798403193613,380.8672405189621,381.47649700598805,382.08575349301395,382.6950099800399,383.3042664670659,383.91352295409183,384.5227794411178,385.1320359281437,385.74129241516965,386.3505489021956,386.9598053892216,387.56906187624753,388.17831836327343,388.7875748502994,389.39683133732535,390.0060878243513,390.61534431137727,391.2246007984032,391.83385728542913,392.4431137724551,393.05237025948105,393.661626746507,394.2708832335329,394.8801397205589,395.48939620758483,396.0986526946108,396.70790918163675,397.31716566866265,397.9264221556886,398.5356786427146,399.14493512974053,399.7541916167665,400.3634481037924,400.97270459081835,401.5819610778443,402.19121756487027,402.80047405189623,403.40973053892213,404.0189870259481,404.62824351297405,405.2375,405.84675648702597,406.4560129740519,407.06526946107783,407.6745259481038,408.28378243512975,408.8930389221557,409.5022954091816,410.1115518962076,410.72080838323353,411.3300648702595,411.93932135728545,412.54857784431135,413.1578343313373,413.7670908183633,414.37634730538923,414.9856037924152,415.5948602794411,416.20411676646705,416.813373253493,417.42262974051897,418.03188622754493,418.64114271457083,419.2503992015968,419.85965568862275,420.4689121756487,421.07816866267467,421.6874251497006,422.29668163672653,422.9059381237525,423.51519461077845,424.1244510978044,424.7337075848303,425.3429640718563,425.95222055888223,426.5614770459082,427.17073353293415,427.77999001996005,428.389246506986,428.998502994012,429.60775948103793,430.2170159680639,430.8262724550898,431.43552894211575,432.0447854291417,432.65404191616767,433.26329840319363,433.87255489021953,434.4818113772455,435.09106786427145,435.7003243512974,436.30958083832337,436.91883732534933,437.52809381237523,438.1373502994012,438.74660678642715,439.3558632734531,439.96511976047907,440.574376247505,441.18363273453093,441.7928892215569,442.40214570858285,443.0114021956088,443.6206586826347,444.22991516966067,444.83917165668663,445.4484281437126,446.05768463073855,446.66694111776445,447.2761976047904,447.88545409181637,448.49471057884233,449.1039670658683,449.7132235528942,450.32248003992015,450.9317365269461,451.54099301397207,452.15024950099803,452.75950598802393,453.3687624750499,453.97801896207585,454.5872754491018,455.19653193612777,455.8057884231537,456.41504491017963,457.0243013972056,457.63355788423155,458.2428143712575,458.8520708582834,459.46132734530937,460.07058383233533,460.6798403193613,461.28909680638725,461.89835329341315,462.5076097804391,463.11686626746507,463.72612275449103,464.335379241517,464.9446357285429,465.55389221556885,466.1631487025948,466.77240518962077,467.38166167664673,467.99091816367263,468.6001746506986,469.20943113772455,469.8186876247505,470.42794411177647,471.0372005988024,471.64645708582833,472.2557135728543,472.86497005988025,473.4742265469062,474.0834830339321,474.69273952095807,475.30199600798403,475.91125249501,476.52050898203595,477.12976546906185,477.7390219560878,478.34827844311377,478.95753493013973,479.5667914171657,480.1760479041916,480.78530439121755,481.3945608782435,482.00381736526947,482.61307385229543,483.22233033932133,483.8315868263473,484.44084331337325,485.0500998003992,485.65935628742517,486.26861277445107,486.87786926147703,487.487125748503,488.09638223552895,488.7056387225549,489.3148952095808,489.92415169660677,490.53340818363273,491.1426646706587,491.75192115768465,492.36117764471055,492.9704341317365,493.57969061876247,494.18894710578843,494.7982035928144,495.4074600798403,496.01671656686625,496.6259730538922,497.23522954091817,497.84448602794413,498.4537425149701,499.062999001996,499.67225548902195,500.2815119760479,500.89076846307387,501.5000249500998,502.10928143712573,502.7185379241517,503.32779441117765,503.9370508982036,504.54630738522957,505.15556387225547,505.76482035928143,506.3740768463074,506.98333333333335,507.5925898203593,508.2018463073852,508.81110279441117,509.42035928143713,510.0296157684631,510.63887225548905,511.24812874251495,511.8573852295409,512.4666417165669,513.0758982035928,513.6851546906188,514.2944111776447,514.9036676646707,515.5129241516966,516.1221806387225,516.7314371257485,517.3406936127744,517.9499500998004,518.5592065868263,519.1684630738523,519.7777195608783,520.3869760479042,520.9962325349302,521.605489021956,522.214745508982,522.824001996008,523.4332584830339,524.0425149700599,524.6517714570858,525.2610279441118,525.8702844311377,526.4795409181637,527.0887974051897,527.6980538922156,528.3073103792415,528.9165668662674,529.5258233532934,530.1350798403193,530.7443363273453,531.3535928143713,531.9628493013972,532.5721057884232,533.1813622754491,533.7906187624751,534.399875249501,535.0091317365269,535.6183882235529,536.2276447105788,536.8369011976048,537.4461576846307,538.0554141716567,538.6646706586827,539.2739271457086,539.8831836327346,540.4924401197604,541.1016966067864,541.7109530938123,542.3202095808383,542.9294660678643,543.5387225548902,544.1479790419162,544.7572355289421,545.3664920159681,545.9757485029941,546.5850049900199,547.1942614770459,547.8035179640718,548.4127744510978,549.0220309381237,549.6312874251497,550.2405439121757,550.8498003992016,551.4590568862276,552.0683133732535,552.6775698602794,553.2868263473054,553.8960828343313,554.5053393213573,555.1145958083832,555.7238522954092,556.3331087824351,556.9423652694611,557.5516217564871,558.160878243513,558.7701347305389,559.3793912175648,559.9886477045908,560.5979041916167,561.2071606786427,561.8164171656687,562.4256736526946,563.0349301397206,563.6441866267465,564.2534431137725,564.8626996007984,565.4719560878243,566.0812125748503,566.6904690618762,567.2997255489022,567.9089820359281,568.5182385229541,569.1274950099801,569.736751497006,570.346007984032,570.9552644710578,571.5645209580838,572.1737774451097,572.7830339321357,573.3922904191617,574.0015469061876,574.6108033932136,575.2200598802395,575.8293163672655,576.4385728542915,577.0478293413173,577.6570858283433,578.2663423153692,578.8755988023952,579.4848552894211,580.0941117764471,580.7033682634731,581.312624750499,581.921881237525,582.531137724551,583.1403942115768,583.7496506986027,584.3589071856287,584.9681636726547,585.5774201596806,586.1866766467066,586.7959331337325,587.4051896207585,588.0144461077845,588.6237025948104,589.2329590818364,589.8422155688622,590.4514720558882,591.0607285429141,591.6699850299401,592.2792415169661,592.888498003992,593.497754491018,594.107010978044,594.7162674650699,595.3255239520959,595.9347804391217,596.5440369261477,597.1532934131736,597.7625499001996,598.3718063872255,598.9810628742515,599.5903193612775,600.1995758483034,600.8088323353294,601.4180888223553,602.0273453093812,602.6366017964071,603.2458582834331,603.8551147704591,604.464371257485,605.073627744511,605.682884231537,606.2921407185629,606.9013972055889,607.5106536926148,608.1199101796407,608.7291666666666,609.3384231536926,609.9476796407185,610.5569361277445,611.1661926147705,611.7754491017964,612.3847055888224,612.9939620758483,613.6032185628743,614.2124750499001,614.8217315369261,615.4309880239521,616.040244510978,616.649500998004,617.25875748503,617.8680139720559,618.4772704590819,619.0865269461078,619.6957834331338,620.3050399201596,620.9142964071856,621.5235528942115,622.1328093812375,622.7420658682635,623.3513223552894,623.9605788423154,624.5698353293413,625.1790918163673,625.7883483033933,626.3976047904191,627.0068612774451,627.616117764471,628.225374251497,628.834630738523,629.4438872255489,630.0531437125749,630.6624001996008,631.2716566866268,631.8809131736527,632.4901696606786,633.0994261477045,633.7086826347305,634.3179391217565,634.9271956087824,635.5364520958084,636.1457085828343,636.7549650698603,637.3642215568863,637.9734780439122,638.5827345309381,639.191991017964,639.80124750499,640.410503992016,641.0197604790419,641.6290169660679,642.2382734530938,642.8475299401198,643.4567864271457,644.0660429141717,644.6752994011975,645.2845558882235,645.8938123752495,646.5030688622754,647.1123253493014,647.7215818363273,648.3308383233533,648.9400948103793,649.5493512974052,650.1586077844312,650.7678642714571,651.377120758483,651.986377245509,652.5956337325349,653.2048902195609,653.8141467065868,654.4234031936128,655.0326596806387,655.6419161676647,656.2511726546907,656.8604291417166,657.4696856287425,658.0789421157684,658.6881986027944,659.2974550898203,659.9067115768463,660.5159680638723,661.1252245508982,661.7344810379242,662.3437375249501,662.9529940119761,663.562250499002,664.1715069860279,664.7807634730539,665.3900199600798,665.9992764471058,666.6085329341317,667.2177894211577,667.8270459081837,668.4363023952096,669.0455588822356,669.6548153692614,670.2640718562874,670.8733283433133,671.4825848303393,672.0918413173653,672.7010978043912,673.3103542914172,673.9196107784431,674.5288672654691,675.1381237524951,675.7473802395209,676.3566367265469,676.9658932135728,677.5751497005988,678.1844061876247,678.7936626746507,679.4029191616767,680.0121756487026,680.6214321357286,681.2306886227545,681.8399451097804,682.4492015968063,683.0584580838323,683.6677145708583,684.2769710578842,684.8862275449102,685.4954840319361,686.1047405189621,686.7139970059881,687.323253493014,687.9325099800399,688.5417664670658,689.1510229540918,689.7602794411177,690.3695359281437,690.9787924151697,691.5880489021956,692.1973053892216,692.8065618762475,693.4158183632735,694.0250748502993,694.6343313373253,695.2435878243513,695.8528443113772,696.4621007984032,697.0713572854291,697.6806137724551,698.2898702594811,698.899126746507,699.508383233533,700.1176397205588,700.7268962075848,701.3361526946107,701.9454091816367,702.5546656686627,703.1639221556886,703.7731786427146,704.3824351297405,704.9916916167665,705.6009481037925,706.2102045908183,706.8194610778443,707.4287175648702,708.0379740518962,708.6472305389221,709.2564870259481,709.8657435129741,710.475]} +{"expected":[0.01,-0.0033746253790549624,-0.007622018879319136,0.008433494207046853,0.001889004559574384,-0.00959763287124854,0.0045548640918855405,0.00643775365526481,-0.008809666729723751,-0.000468327621357804,0.009021878600127204,-0.005574489042175532,-0.005188845438344393,0.008984167322636266,-0.0008822361340235784,-0.008293387424072578,0.006423300008544533,0.00390249149724315,-0.00896491048167861,0.0021410030233847974,0.007434361161677098,-0.0070945391115908776,-0.002605153786703288,0.0087627445091276,-0.003288961215575298,-0.006468148173580897,0.007584861802057748,0.001322173628641932,-0.008391166572328667,0.004309966210916445,0.005418829024186577,-0.007894256760515254,-0.00007741137080101638,0.00786600339799083,-0.005190888286691567,-0.004310799964470551,0.008025916288409504,-0.0011070829665529621,-0.00720506320694166,0.0059217096985319595,0.0031683612909959584,-0.007986059728650302,0.002211362742764597,0.006427764980119337,-0.006495570438395232,-0.002015317447555855,0.007783713328832359,-0.003217836901260242,-0.005554751504162455,0.0069087623461371135,0.0008745954285802678,-0.007430450743094688,0.004111477604627807,0.004607492872683843,-0.007160672340873091,0.00023211237554265316,0.006940099051174486,-0.004879980448715341,-0.0036078872171936413,0.007253676467270752,-0.0012846752729141803,-0.006328415747875719,0.005513875305599021,0.002577865411407692,-0.007192987327410233,0.002264816300126859,0.005612742616618405,-0.00600658676302084,-0.00153900633791215,0.006986458278165595,-0.0031563648778605274,-0.004811642742160233,0.006354444046560059,0.0005121690322926351,-0.006644348505237545,0.003945466543090176,0.003944527136917611,-0.006556641214801915,0.00048285236585137326,0.00617905372724083,-0.0046207470221406475,-0.0030312775513807594,0.006615149291794282,-0.0014276454140797585,-0.0056048078272581455,0.005173428759011166,0.002091872012714056,-0.006534582830377916,0.0023054630602133983,0.004937361147319414,-0.005597398884782191,-0.0011460194895600748,0.006322024170613043,-0.003101470027877635,-0.004193641507483116,0.005889228490530021,0.00021280982010589674,-0.005986809356747114,0.003802948422578564,0.0033914042216771465,-0.006048143932118084,0.0006896153286842611,0.005540280292535628,-0.004399459866491001,-0.0025488774753354643,0.006075951734989388,-0.0015443651716269698,-0.004995508238426995,0.0048829622877020395,0.00168440940535812,-0.005976919465789322,0.002336071445060531,0.00436699417707134,-0.005247880329196343,-0.0008161230833134467,0.005757615681360099,-0.003051124871582776,-0.003670351889638602,0.005491129188702045,-0.00003841464759629526,-0.005426712741594785,0.0036778730471761206,0.002921979790357042,-0.005612092537049578,0.000862504886225179,0.004994756869438384,-0.004206777101008821,-0.002138727658395496,0.005612555974717905,-0.001640603793679084,-0.00447391034918115,0.0046305252678440646,0.0013375643846813207,-0.005496598259191423,0.002358580514084293,0.003877671165064496,-0.004944102324323375,-0.0005352527185069069,0.005270443255972866,-0.003003941903847979,-0.003220575689940079,0.005144814658170978,-0.000251963241123376,-0.004942276221088671,0.0035660207544181725,0.002517890234124859,-0.005232271548429072,0.0010086524055568644,0.0045220286015450195,-0.004036124920485116,-0.001785297355488709,0.0052083240203809455,-0.001720467938676326,-0.004021136032862963,0.004407645528211705,0.00103858281312451,-0.005076963386680254,0.002374390930557525,0.003452274611672536,-0.004676123221830755,-0.000293328920583648,0.004844182283096554,-0.0029589426438823055,-0.002829080820353618,0.004839272196996332,-0.0004353801754854635,-0.004517801641045534,0.00346436212758138,0.0021658606757821207,-0.004896962550898842,0.0011332360936159342,0.0041072675988673485,-0.003882746693639497,-0.0014772937632670537,0.004851162237974012,-0.001786961913692683,-0.003623422830336836,0.004208153488994983,0.0007781377996418393,-0.004705840642293678,0.0023845416920389327,0.0030782571544993855,-0.004436661150818149,-0.00008293924808134595,0.004466836450525034,-0.0029154200873884777,-0.0024846425797872,0.00456639129577918,-0.000594244714662356,-0.004141693120882942,0.003370669019868411,0.001856058123530432,-0.004597490347915285,0.0012401078946157153,0.0037394657832780214,-0.003743118961844232,-0.0012063098334202998,0.004532072941424919,-0.001842335860794209,-0.003270503864866559,0.004027453169436672,0.0005492514201438184,-0.004374128830803134,0.0023898217124098888,0.0027462141060571542,-0.004220263892919906,0.0001014892078418608,0.004129395888683835,-0.002872853287528974,-0.002178808909098591,0.004320070339086555,-0.000732772431855468,-0.0038052023601414537,0.0032832688759818953,0.0015810451408781274,-0.004327298885133179,0.0013321936644063676,0.0034102820608713055,-0.003614579152420938,-0.0009659585916019596,0.0042442267481438865,-0.001888309967606561,-0.002954566646910544,0.003862053730280365,0.0003465992716145695,-0.004074890983889265,0.002390842639114913,0.002448959438274671,-0.004022771440620501,0.00026422738837701204,0.0038249653113078845,-0.002830852389397747,-0.001905095542674953,0.004095634147866093,-0.0008542085792722223,-0.003501607823646661,0.0032008843221029396,0.0013350931947516316,-0.004081344613809632,0.0014117568426467166,0.0031132831440029004,-0.003495080560118109,-0.000751301299248045,0.0039823495988200956,-0.0019262233125530552,-0.0026695630035545965,0.0037092590208348468,0.00016604814335501283,-0.003802750032448531,0.00238808774933818,0.0021809095582688387,-0.0038409575222055825,0.0004086038740077174,0.003548180682849912,-0.00278912216160145,-0.0016584460091960713,0.0038894430832158615,-0.0009610928562487279,-0.003225662294979352,0.0031225253816182913,0.0011137192491960006,-0.003855686955326962,0.0014805770200375756,0.0028434296419308706,-0.003383026569449437,-0.0005584593235005616,0.0037423065725655123,-0.0019571353282153824,-0.002410739334022185,0.0035669562592685992,0.000004340463089199634,-0.003553476225131052,0.002381945611343005,0.0019376615497718379,-0.003672284215497602,0.0005372516695656682,0.0032948088333592442,-0.0027474371465572647,-0.0014348600868823633,0.0036986240233832955,-0.0010554420895805701,-0.0029732117153399543,0.003047415214307232,0.0009133652765595503,-0.0036472049859943957,0.0015400738095075364,0.002596719693376865,-0.003277155743961312,-0.0003843443595345254,0.003520812524978191,-0.001981896589820398,-0.0021743092640833387,0.0034334687762567285,-0.0001411261126639814,-0.003323698874081737,0.0023727337708766235,0.0017156978580311923,-0.003514730101806216,0.0006522814102675338,0.0030614664015164317,-0.002705624325836564,-0.0012311324328946071,0.003520881067978818,-0.0011388790574619577,-0.002740926389843438,0.0029749378100310947,0.0007311717760163106,-0.0034533971691657716,0.0015913946155659104,0.0023699365314837134,-0.0031764604545482227,-0.00022646693702463983,0.0033152266358330964,-0.0020011992261728833,-0.001957220756854529,0.0033074512487201294,-0.00027245583099065574,-0.0031107008045504225,0.002360715744923774,0.0015121752946147878,-0.0033666674657802775,0.0007554053700443383,0.00284541857387878,-0.002663550773165199,-0.001044665065235685,0.0033543596961918744,-0.001212725111614123,-0.002526107720106278,0.002904600416141118,0.0005648146273983649,-0.0032722370521445954,0.0016354780062711222,0.002160466254018691,-0.003080128151737152,-0.000082797930510248,0.0031234037829790946,-0.002015613480508536,-0.00175698733817825,0.0031878137718127416,-0.0003913689234629894,-0.002912269083932181,0.0023461134262495863,0.0013247715479915683,-0.003226772947196665,0.0008480278373982253,0.0026444323795080907,-0.002621114694188058,-0.0008733304451363718,0.0031975475558126023,-0.0012780679337996753,-0.0023265468088722987,0.0028360060700229743,0.0004123855362323381,-0.003102067489642725,0.0016731002473195156,0.001966164025988275,-0.002987498252220287,0.00004833328785673103,0.002943585209223255,-0.002025614663560462,-0.0015715637451245235,0.003073665910135281,-0.0004992857952449686,-0.002726584833597506,0.0023291162790907956,0.0011515717076079155,-0.0030939614708402024,0.0009313120391705081,0.0024566680294338806,-0.002578238813341514,-0.000715369914541897,0.0030492008505353272,-0.0013358118795590603,-0.002140419386636313,0.0027688331984681023,0.00027230306044425507,-0.0029415219008097995,0.0017049099941755753,0.0017852543316613596,-0.0028980299980183146,0.00016831488624009116,0.0027743168705652277,-0.0020316033182352874,-0.0013992529276129046,0.002964274848589291,-0.0005973900770956857,-0.0025521406810003954,0.0023098882513615314,0.0009909831370976026,-0.0029673366695994975,0.0010062304166468866,0.002280597264378061,-0.002534865417417635,-0.0005693172763382291,0.0029082889338595324,-0.0013867159137674443,-0.0019662066190262472,0.0027028202465121734,0.00014324546521498255,-0.0027894648250310636,0.001731454512834913,0.0016162555759663638,-0.0028112781592852815,0.0002783101226767328,0.002614387616968737,-0.002033920507690205,-0.001238635550763712,0.002859033660935118,-0.0006866764820938022,-0.002387678084620776,0.0022885730357688917,0.000841670763073588,-0.0028461531856580177,0.0010736028917752718,0.002114941187700384,-0.002490952588011033,-0.0004339405427495209,0.0027739520605998113,-0.0014314225634394463,-0.0018026346487828543,0.0026377539430179966,0.000024099403604626595,-0.0026449464716313343,0.0017531997460879121,0.0014579223699989954,-0.002726874431534224,0.00037930144622244015,0.002462781801289147,-0.0020328595469610695,-0.0010885158914870888,0.0027574369494554997,-0.0007679875735691736,-0.0022321391627136557,0.0022652981196188125,0.000702507285968018,-0.002729787653816416,0.0011341263410876764,0.0019586223638290937,-0.00244647130004073,-0.0003081970043560719,0.002645468786255706,-0.0014704802733878732,-0.0016486278957671848,0.0025734602342109597,-0.00008607976421486678,-0.0025071675622243285,0.0017705458451201643,0.0013092008421668711,-0.002644513025712797,0.0004721246781596627,0.0023186425320669743,-0.002028675104990842,-0.0009478798462329672,0.002659061929424631,-0.0008420423294057347,-0.0020846292530919777,0.0022401779340787444,0.0005725344463660855,-0.002617716117379471,0.0011883975459047247,0.00181072750167585,-0.002401403159898697,-0.0001911981961946872,0.00252223053520494,-0.00150436085260325,-0.0015032725941173384,0.0025097972004579777,-0.00018809898018486252,-0.0023754518425589425,0.0017838393165831475,0.0011691936682461637,-0.0025639393856203506,0.0005574957818355751,0.002181242879348386,-0.002021590337661687,-0.0008158619997894686,0.0025635535866886197,-0.0009094585606012332,-0.0019443875126433023,0.0022133163256927288,0.00045093258457585547,-0.002509496269414901,0.0012369312421345489,0.0016704780892682278,-0.0023557386219282845,-0.00008218230752615857,0.0024037215609318827,-0.001533473223012741,-0.001365788039216979,0.0024466494652647408,-0.0002826519588731703,-0.0022492243779544466,0.0017933826134725838,0.0010371324395297126,-0.002484941265751537,0.0006360320298354078,0.002049963093101947,-0.0020118025292847827,-0.0006917195525119262,0.0024706129178784933,-0.0009707706722735125,-0.0018107636100686472,0.002184808512062205,0.00033699649284626125,-0.002404753355323932,0.0012801744470596899,0.001537207069170819,-0.0023094755667628676,0.000019507746753487322,0.002289503007619787,-0.0015581743520317768,-0.0012355037060267395,0.0023839237396364385,-0.00037033867283502197,-0.0021279942584771353,0.0017994417741892838,0.0009123556323570743,-0.002407341610307096,0.0007082688896385101,0.001924272416723798,-0.001999487592035099,-0.0005748114948746359,0.002379987528811685,-0.0010264438571449548,-0.001683199086011227,0.0021547426407978825,0.00023011609295240612,-0.0023031688829249506,0.0013185179278607563,0.001410340151546865,-0.00226261815632344,0.00011444190350763413,0.0021792001238734966,-0.0015787780180434162,-0.0011118408849488351,0.002321545239227773,-0.00045168099825255704,-0.0020113407007838497,0.0018022525561288292,0.0007942908968153683,-0.0023309928205821405,0.0007746736043426581,0.001803714447662988,-0.0019848036822188407,-0.0004645818368192538,0.0022914640549012346,-0.0010768855293036537,-0.0015612123237860743,0.0021232010403929814,0.0001297608503656892,-0.002204471506490353,0.0013523054543425155,0.0012893807223029292,-0.0022151759024297097,0.0002031171523614491,0.002072491922429874,-0.0015955618922985336,-0.0009942978268588042,0.002259454778879646,-0.0005271353749706217,-0.0018989017911572215,0.0018020253971051474,0.0006824407072985435,-0.0022557721026356748,0.0008356561984161872,0.0016878952618040433,-0.0019678941272325413,-0.00036054599946802374,0.0022048620023513398,-0.001122454603471095,-0.0014443863389041823,0.0020902612296847677,0.0000354671083238826,-0.0021084296094975655,0.0013818413183534276,0.0011738975633771888,-0.002167162901846324,0.0002859690931723308,0.0019691027549326263,-0.0016087733011967177,-0.000882437638330581,0.0021976063975728925,-0.0005971031245060763,-0.0017903653004237641,0.001798949456116054,0.0005763706527763578,-0.0021815776628847307,0.0008915784597268142,0.0015764737099661576,-0.0019488898098829778,-0.0002622796945123937,0.002120028706833092,-0.0011634690778397434,-0.00133235878806569,0.002055996736555064,-0.00005317227695481571,-0.0020148452260280994,0.0014073964858683516,0.0010635147912839954,-0.002118597202116705,0.0003633814063964488,0.0018687953986439004,-0.001618633945617953,-0.0007758783501296758,0.0021359654021759706,-0.0006619389156958006,-0.001685461137567241,0.0017931959250680322,0.0004756998166979747,-0.002108325574690938,0.0009427613181347118,0.0014691534354072185,-0.0019279111220849552,-0.00016940977630202798,0.0020368351781634214,-0.0012002122704387638,-0.0012248137397222571,0.0020204777647040138,-0.0001365164731501839,-0.0019235490254383598,0.001429213661905231,0.0009579035592634622,-0.0020695002709836996,0.00043569366276668194,0.001771365346153946,-0.0016253437895462407,-0.0006742847164405341,0.002074506744423042,-0.0007219577539746244,-0.001583955109401834,0.0017849207587636168,0.0003800928237751474,-0.0020359471799921113,0.0009894909439983504,0.001365676265258973,-0.0019050695742462466,-0.00008160667009977071,0.0019551726527607546,-0.0012329379787893553,-0.0011214748532388037,0.0019837717385284585,-0.00021488374589178938,-0.0018343961478594086,0.0014475114846589161,0.0008567751719113934,-0.0020198965484687923,0.0005032078018533034,0.0016766360593018427,-0.0016290842822227678,-0.0005773614024287887,0.0020132136649767046,-0.0007774407854154982,-0.001485643728726439,0.0017742669373665958,0.00028925322595191566,-0.0019643869206406876,0.001032023817418387,0.0012658167066469663,-0.0018804691274104883,0.0000014219314192059985,0.0018749497155054894,-0.0012618747724836893,-0.0010220996923464246,0.0019459437495293614,-0.0002885573539851103,-0.0017472627252814671,0.0014624880173070333,0.000759875338937036,-0.001969813065372363,0.0005661935363351936,0.0015844550012379893,-0.0016300210419186326,-0.00048484729311842076,0.0019520765530275522,-0.0008286401427992488,-0.0013903498698962624,0.001761366350587126,0.0002029179715772622,-0.0018936005171811343,0.001070590964359338,0.0011693773369627605,-0.0018542073006706367,0.00007993634436630187,0.001796089882737794,-0.001287229582897214,-0.0009264749580346582,0.00190705692264887,-0.000357790488405239,-0.0016620429587037447,0.001474323669667731,0.000666979353589724,-0.001919279115500805,0.0006248928836065682,0.001494690300540488,-0.0016283061020082176,-0.00039651071375081354,0.0018910919809583453,-0.0008757830124216558,-0.0012979191136915354,0.001746341373859158,0.0012085275628620108,-0.001823553430342144,0.0011054015141281398,0.0010761849224576528,-0.0018263760952866859,0.00015416933249647887,0.0017185295610630813,-0.0013091907195737172,-0.0008344124713796399,0.001867172717108242,-0.00042281043082654894,-0.0015786466491034894,0.0014831836541463507,0.000577888026299939,-0.0018683259716293663,0.0006795239841810711,0.0014072279318751814,-0.0016240797990220387,-0.0003121453955687333,0.0018302618820712844,-0.0009190750631916303,-0.0012082166562672975,0.0017293061922154344,0.000042848095910588676,-0.001754219553962642,0.0011366457007577196,0.0009860871336272348,-0.0017970627684170263,0.00022432985947940388,0.001642216314245644,-0.00132793041619937,-0.000745745771673329,0.0018263511733560237,-0.00048382207139291455,-0.001496997100948329,0.0014892200590753374,0.0004924242387303761,-0.0018169866372816674,0.000730284333815972,0.0013219693212437487,-0.0016174723661781761,-0.00023156705474265918,0.0017695928459084888,-0.0009587033508575022,-0.0011211246823503444,0.0017103679163289168,-0.000031284005997565645,-0.0016855800984575933,0.0011644974061324103,0.000898949752385515,-0.0017663504827774893,0.00029060627506083647,0.0015671073840996523,-0.001343606988452282,-0.0006603272222014626,0.0017846511154448806,-0.0005410108975245877,-0.0014170293332391715,0.001492573605985117,0.00041043001032005426,-0.0017652956280132586,0.0007773535310730766,0.0012388293021558306,-0.0016086052833111516,-0.0001546104783725948,0.001709095510765675,-0.0009948387879098184,-0.001036540122601161,0.0016896275264316656,-0.00010171289829495539,-0.0016176226320130786,0.0011891163234524363,0.0008146542866641094,-0.0017343188534058138,0.0003531690319383539,0.0014931684219100807,-0.0013563666699270584,-0.0005780255370831861,0.001742130316358363,-0.0005945455437270626,-0.001338688545766597,0.0014933751444066359,0.0003317639903807079,-0.0017132887771369898,0.0008208956222786434,0.0011577343633633864,-0.001597592424277112,0.0016487840369650121,-0.0010276382522176027,-0.0009543727305231596,0.0016671806729632347,-0.0001685917126398524,-0.0015503402530239307,0.0012106498045694487,0.0007330959242867455,-0.0017010444086675823,0.00041217301165898763,0.0014203723952454072,-0.0013663451796973138,-0.0004987236591255881,0.0016988456323976096,-0.000644579975265785,-0.001261928798224407,0.0014917469276472496,0.00025629930533804004,-0.001661003061809122,0.0008610611103393504,0.001078621140041301,-0.0015845410351623059,-0.000010982519468670268,0.001588675647577043,-0.0010572463937182544,-0.0008745434264680063,0.0016431183573983941,-0.00023205945121231676,-0.0014837308722831706,0.0012292344428094005,0.0006541817707338698,-0.0016666009794538096,0.00046775952319143125,0.0013486986416117019,-0.0013736690651118403,-0.00042231693169361435,0.0016548531116204845,-0.0006912553649986834,-0.0011867118677229454,0.0014878037049223778,0.00018392170375762485,-0.0016084764461720084,0.0008979886815637,0.0010014351092189444,-0.0015695525704905507,0.00005594466207552277,0.0015287902257490346,-0.001083797187546618,-0.0007969828659632944,0.0016175275124054767,-0.0002922427865284056,-0.0014177965873931977,0.0012449974334534334,0.0005778293255745284,-0.0016310600279888488,0.0005200580262196091,0.0012781320456142983,-0.0013784568554704394,-0.0003487115180043474,0.0016102080804333118,-0.0007347017119004154,-0.0011130062565073524,0.0014816536588215525,0.00011452795221224462,-0.0015557477388619453,0.0009318066948683035,0.00092612945734861,-0.001552723409721847,0.00011976511736049848,0.001469149959770467,-0.0011074152733014948,-0.0007216301972786769,0.0015904914970633767,-0.0003492576182697266,-0.0013525431350203407,0.001258057746515065,0.0005039651604261612,-0.0015944909256388486,0.0005691876218907034,0.0012086623204786548,-0.0013808200558933436,-0.0002778230295433546,0.0015649652117235575,-0.0007750392411754451,0.0010407863267157488,0.0014733992119670871,0.000048024443351710324,-0.0015028564626857373,0.0009626344698868147,0.000852664093594242,-0.0015341454724189692,0.0001805798375757076,0.0014097790285858799,-0.0011282171131553429,-0.0006484319793394448,0.0015620905201192293,-0.00040321042418424126,-0.0012879794091582,0.0012685271403792076,0.00043252376782482155,-0.0015569611874856634,0.0006152583463028969,0.001140283378138452,-0.001380864005588963,-0.00020957533199357617,0.0015191785773452852,-0.0008123796189423287,-0.0009700315430348592,0.0014631377225859693,-0.00001567401574594861,-0.001449842734661874,0.0009905834041994542,0.0007810047870022233,-0.0015139067472927914,0.00023848140533292832,0.0013507033217300011,-0.0011463119959027066,-0.0005773412360600683,0.0015324020020463702,-0.0004541994357349061,-0.0012241170356022742,0.0012765110399913272,0.00036344655563969773,-0.0015185366701156824,0.000658372295973902,0.0010729927747985181,-0.0013786886206157503,-0.0001438995024424062,0.0014729016873054363,-0.0008468270088493829,-0.0009007258073856401,0.001450962085384556,-0.00007664526144318761,-0.0013967471549453294,0.0010157579447764558,0.0007111224094082552,-0.0014920917477833327,0.00029355504647752005,0.001291950188696457,-0.0011618029094674707,-0.0005083166272211274,0.0015015008848669618,-0.0005023156640160524,-0.0011609699945040115,0.0012821092993090522,0.00029668096591077206,-0.0014792817380055517,0.000698624609657607,0.0010067912210918668,-0.0013743890378763429,-0.00008073291603006744,0.001426187517618761,-0.0008784789934285954,-0.0008328568724236371,0.0014369612513953334,-0.00013496069974191892,-0.0013436107034079628,0.0010382564345878728,0.0006429922689646879,-0.001468781904744373,0.0003458795506288721,0.0012335482135821156,-0.0011747873006891063,-0.0004413217192995347,0.0014694598972368577,-0.0005476437972705667,-0.0010985542842111163,0.0012854168645082713,0.00023217970047962564,-0.0014392594030160633,0.0007361043268706108,0.0009416821477331841,-0.0013680561743604513,-0.00002001844377637972,0.0013790885284927176,-0.0009074273792894457,-0.0007664158227911079,0.0014212206782551482,-0.00019068611930432298,-0.0012904746428634454,0.0010581718519219556,0.0005765935216221548,-0.0014440559051002789,0.00039552807880841544,0.0011755270115402297,-0.0011853577381613707,-0.0003763243423359188,0.0014363497810923871,-0.0005902629878833201,-0.001036887620716606,0.001286524351779206,0.00016990003861119102,-0.0013985314407912817,0.0007708951402235772,0.0008776713190505759,-0.0013597772134087674,0.0000382962537624602,0.0013316566742453079,-0.0009337589021888669, -0.0007013966148476759,0.0014038227205496864,-0.0002438824068503528,-0.0012373804280933014,0.0010755924571681343,0.0005119086499337978,-0.0014179899839424565,0.00044256887361214276,0.0011179170441275007,-0.0011936024914151245,-0.00031329602114924806,0.001402239485171366,-0.000630247543915065,-0.0009759891679376904,0.001285518551373567,0.00010980323415663845],"x":[100.0,100.60925648702595,101.21851297405189,101.82776946107785,102.4370259481038,103.04628243512974,103.65553892215569,104.26479540918163,104.87405189620759,105.48330838323353,106.09256487025948,106.70182135728543,107.31107784431137,107.92033433133733,108.52959081836327,109.13884730538922,109.74810379241517,110.35736027944112,110.96661676646707,111.57587325349301,112.18512974051896,112.7943862275449,113.40364271457086,114.01289920159681,114.62215568862275,115.2314121756487,115.84066866267464,116.4499251497006,117.05918163672655,117.6684381237525,118.27769461077844,118.88695109780438,119.49620758483034,120.10546407185629,120.71472055888223,121.32397704590818,121.93323353293412,122.54249001996008,123.15174650698603,123.76100299401197,124.37025948103792,124.97951596806388,125.58877245508982,126.19802894211577,126.80728542914171,127.41654191616766,128.02579840319362,128.63505489021955,129.2443113772455,129.85356786427147,130.4628243512974,131.07208083832336,131.6813373253493,132.29059381237525,132.8998502994012,133.50910678642714,134.1183632734531,134.72761976047903,135.336876247505,135.94613273453095,136.55538922155688,137.16464570858284,137.77390219560877,138.38315868263473,138.9924151696607,139.60167165668662,140.21092814371258,140.8201846307385,141.42944111776447,142.03869760479043,142.64795409181636,143.25721057884232,143.86646706586825,144.4757235528942,145.08498003992017,145.6942365269461,146.30349301397206,146.91274950099802,147.52200598802395,148.1312624750499,148.74051896207584,149.3497754491018,149.95903193612776,150.5682884231537,151.17754491017965,151.78680139720558,152.39605788423154,153.0053143712575,153.61457085828343,154.2238273453094,154.83308383233532,155.44234031936128,156.05159680638724,156.66085329341317,157.27010978043913,157.87936626746506,158.48862275449102,159.09787924151698,159.7071357285429,160.31639221556887,160.9256487025948,161.53490518962076,162.14416167664672,162.75341816367265,163.3626746506986,163.97193113772454,164.5811876247505,165.19044411177646,165.7997005988024,166.40895708582835,167.01821357285428,167.62747005988024,168.2367265469062,168.84598303393213,169.4552395209581,170.06449600798402,170.67375249500998,171.28300898203594,171.89226546906187,172.50152195608783,173.11077844311376,173.72003493013972,174.32929141716568,174.9385479041916,175.54780439121757,176.1570608782435,176.76631736526946,177.37557385229542,177.98483033932135,178.5940868263473,179.20334331337327,179.8125998003992,180.42185628742516,181.0311127744511,181.64036926147705,182.249625748503,182.85888223552894,183.4681387225549,184.07739520958083,184.6866516966068,185.29590818363275,185.90516467065868,186.51442115768464,187.12367764471057,187.73293413173653,188.3421906187625,188.95144710578842,189.56070359281438,190.1699600798403,190.77921656686627,191.38847305389223,191.99772954091816,192.60698602794412,193.21624251497005,193.825499001996,194.43475548902197,195.0440119760479,195.65326846307386,196.2625249500998,196.87178143712575,197.4810379241517,198.09029441117764,198.6995508982036,199.30880738522953,199.9180638722555,200.52732035928145,201.13657684630738,201.74583333333334,202.35508982035927,202.96434630738523,203.5736027944112,204.18285928143712,204.79211576846308,205.401372255489,206.01062874251497,206.61988522954093,207.22914171656686,207.83839820359282,208.44765469061878,209.0569111776447,209.66616766467067,210.2754241516966,210.88468063872256,211.49393712574852,212.10319361277445,212.7124500998004,213.32170658682634,213.9309630738523,214.54021956087826,215.1494760479042,215.75873253493015,216.36798902195608,216.97724550898204,217.586501996008,218.19575848303393,218.8050149700599,219.41427145708582,220.02352794411178,220.63278443113774,221.24204091816367,221.85129740518963,222.46055389221556,223.06981037924152,223.67906686626748,224.2883233532934,224.89757984031937,225.5068363273453,226.11609281437126,226.72534930139722,227.33460578842315,227.9438622754491,228.55311876247504,229.162375249501,229.77163173652696,230.3808882235529,230.99014471057885,231.59940119760478,232.20865768463074,232.8179141716567,233.42717065868263,234.0364271457086,234.64568363273452,235.25494011976048,235.86419660678644,236.47345309381237,237.08270958083833,237.69196606786429,238.30122255489022,238.91047904191618,239.5197355289421,240.12899201596807,240.73824850299403,241.34750499001996,241.95676147704592,242.56601796407185,243.1752744510978,243.78453093812377,244.3937874251497,245.00304391217566,245.6123003992016,246.22155688622755,246.8308133732535,247.44006986027944,248.0493263473054,248.65858283433133,249.2678393213573,249.87709580838325,250.48635229540918,251.09560878243514,251.70486526946107,252.31412175648703,252.92337824351299,253.53263473053892,254.14189121756488,254.7511477045908,255.36040419161677,255.96966067864273,256.57891716566866,257.1881736526946,257.7974301397206,258.40668662674653,259.01594311377244,259.6251996007984,260.23445608782436,260.8437125748503,261.4529690618763,262.0622255489022,262.67148203592814,263.2807385229541,263.88999500998005,264.499251497006,265.1085079840319,265.7177644710579,266.32702095808384,266.9362774451098,267.54553393213575,268.15479041916166,268.7640469061876,269.3733033932136,269.98255988023953,270.5918163672655,271.2010728542914,271.81032934131736,272.4195858283433,273.0288423153693,273.63809880239523,274.24735528942114,274.8566117764471,275.46586826347306,276.075124750499,276.684381237525,277.2936377245509,277.90289421157684,278.5121506986028,279.12140718562875,279.7306636726547,280.3399201596806,280.9491766467066,281.55843313373254,282.1676896207585,282.77694610778445,283.38620259481036,283.9954590818363,284.6047155688623,285.21397205588823,285.8232285429142,286.4324850299401,287.04174151696606,287.650998003992,288.260254491018,288.86951097804393,289.47876746506984,290.0880239520958,290.69728043912176,291.3065369261477,291.9157934131737,292.5250499001996,293.13430638722554,293.7435628742515,294.35281936127745,294.9620758483034,295.5713323353293,296.1805888223553,296.78984530938123,297.3991017964072,298.00835828343315,298.61761477045906,299.226871257485,299.836127744511,300.44538423153693,301.0546407185629,301.6638972055888,302.27315369261476,302.8824101796407,303.4916666666667,304.10092315369263,304.71017964071854,305.3194361277445,305.92869261477045,306.5379491017964,307.1472055888224,307.7564620758483,308.36571856287424,308.9749750499002,309.58423153692615,310.1934880239521,310.802744510978,311.412000998004,312.02125748502993,312.6305139720559,313.23977045908185,313.8490269461078,314.4582834331337,315.0675399201597,315.67679640718563,316.2860528942116,316.89530938123755,317.50456586826346,318.1138223552894,318.7230788423154,319.33233532934133,319.9415918163673,320.5508483033932,321.16010479041915,321.7693612774451,322.3786177644711,322.98787425149703,323.59713073852294,324.2063872255489,324.81564371257485,325.4249001996008,326.0341566866268,326.6434131736527,327.25266966067863,327.8619261477046,328.47118263473055,329.0804391217565,329.6896956087824,330.2989520958084,330.90820858283433,331.5174650698603,332.12672155688625,332.73597804391216,333.3452345309381,333.9544910179641,334.56374750499003,335.173003992016,335.7822604790419,336.39151696606785,337.0007734530938,337.6100299401198,338.21928642714573,338.82854291417163,339.4377994011976,340.04705588822355,340.6563123752495,341.2655688622755,341.8748253493014,342.48408183632733,343.0933383233533,343.70259481037925,344.3118512974052,344.9211077844311,345.5303642714571,346.13962075848303,346.748877245509,347.35813373253495,347.96739021956085,348.5766467065868,349.1859031936128,349.79515968063873,350.4044161676647,351.0136726546906,351.62292914171655,352.2321856287425,352.8414421157685,353.45069860279443,354.05995508982033,354.6692115768463,355.27846806387225,355.8877245508982,356.4969810379242,357.1062375249501,357.71549401197603,358.324750499002,358.93400698602795,359.5432634730539,360.1525199600798,360.7617764471058,361.37103293413173,361.9802894211577,362.58954590818365,363.19880239520955,363.8080588822355,364.4173153692615,365.02657185628743,365.6358283433134,366.2450848303393,366.85434131736525,367.4635978043912,368.0728542914172,368.68211077844313,369.29136726546903,369.900623752495,370.50988023952095,371.1191367265469,371.7283932135729,372.3376497005988,372.94690618762473,373.5561626746507,374.16541916167665,374.7746756487026,375.38393213572857,375.9931886227545,376.60244510978043,377.2117015968064,377.82095808383235,378.4302145708583,379.0394710578842,379.6487275449102,380.25798403193613,380.8672405189621,381.47649700598805,382.08575349301395,382.6950099800399,383.3042664670659,383.91352295409183,384.5227794411178,385.1320359281437,385.74129241516965,386.3505489021956,386.9598053892216,387.56906187624753,388.17831836327343,388.7875748502994,389.39683133732535,390.0060878243513,390.61534431137727,391.2246007984032,391.83385728542913,392.4431137724551,393.05237025948105,393.661626746507,394.2708832335329,394.8801397205589,395.48939620758483,396.0986526946108,396.70790918163675,397.31716566866265,397.9264221556886,398.5356786427146,399.14493512974053,399.7541916167665,400.3634481037924,400.97270459081835,401.5819610778443,402.19121756487027,402.80047405189623,403.40973053892213,404.0189870259481,404.62824351297405,405.2375,405.84675648702597,406.4560129740519,407.06526946107783,407.6745259481038,408.28378243512975,408.8930389221557,409.5022954091816,410.1115518962076,410.72080838323353,411.3300648702595,411.93932135728545,412.54857784431135,413.1578343313373,413.7670908183633,414.37634730538923,414.9856037924152,415.5948602794411,416.20411676646705,416.813373253493,417.42262974051897,418.03188622754493,418.64114271457083,419.2503992015968,419.85965568862275,420.4689121756487,421.07816866267467,421.6874251497006,422.29668163672653,422.9059381237525,423.51519461077845,424.1244510978044,424.7337075848303,425.3429640718563,425.95222055888223,426.5614770459082,427.17073353293415,427.77999001996005,428.389246506986,428.998502994012,429.60775948103793,430.2170159680639,430.8262724550898,431.43552894211575,432.0447854291417,432.65404191616767,433.26329840319363,433.87255489021953,434.4818113772455,435.09106786427145,435.7003243512974,436.30958083832337,436.91883732534933,437.52809381237523,438.1373502994012,438.74660678642715,439.3558632734531,439.96511976047907,440.574376247505,441.18363273453093,441.7928892215569,442.40214570858285,443.0114021956088,443.6206586826347,444.22991516966067,444.83917165668663,445.4484281437126,446.05768463073855,446.66694111776445,447.2761976047904,447.88545409181637,448.49471057884233,449.1039670658683,449.7132235528942,450.32248003992015,450.9317365269461,451.54099301397207,452.15024950099803,452.75950598802393,453.3687624750499,453.97801896207585,454.5872754491018,455.19653193612777,455.8057884231537,456.41504491017963,457.0243013972056,457.63355788423155,458.2428143712575,458.8520708582834,459.46132734530937,460.07058383233533,460.6798403193613,461.28909680638725,461.89835329341315,462.5076097804391,463.11686626746507,463.72612275449103,464.335379241517,464.9446357285429,465.55389221556885,466.1631487025948,466.77240518962077,467.38166167664673,467.99091816367263,468.6001746506986,469.20943113772455,469.8186876247505,470.42794411177647,471.0372005988024,471.64645708582833,472.2557135728543,472.86497005988025,473.4742265469062,474.0834830339321,474.69273952095807,475.30199600798403,475.91125249501,476.52050898203595,477.12976546906185,477.7390219560878,478.34827844311377,478.95753493013973,479.5667914171657,480.1760479041916,480.78530439121755,481.3945608782435,482.00381736526947,482.61307385229543,483.22233033932133,483.8315868263473,484.44084331337325,485.0500998003992,485.65935628742517,486.26861277445107,486.87786926147703,487.487125748503,488.09638223552895,488.7056387225549,489.3148952095808,489.92415169660677,490.53340818363273,491.1426646706587,491.75192115768465,492.36117764471055,492.9704341317365,493.57969061876247,494.18894710578843,494.7982035928144,495.4074600798403,496.01671656686625,496.6259730538922,497.23522954091817,497.84448602794413,498.4537425149701,499.062999001996,499.67225548902195,500.2815119760479,500.89076846307387,501.5000249500998,502.10928143712573,502.7185379241517,503.32779441117765,503.9370508982036,504.54630738522957,505.15556387225547,505.76482035928143,506.3740768463074,506.98333333333335,507.5925898203593,508.2018463073852,508.81110279441117,509.42035928143713,510.0296157684631,510.63887225548905,511.24812874251495,511.8573852295409,512.4666417165669,513.0758982035928,513.6851546906188,514.2944111776447,514.9036676646707,515.5129241516966,516.1221806387225,516.7314371257485,517.3406936127744,517.9499500998004,518.5592065868263,519.1684630738523,519.7777195608783,520.3869760479042,520.9962325349302,521.605489021956,522.214745508982,522.824001996008,523.4332584830339,524.0425149700599,524.6517714570858,525.2610279441118,525.8702844311377,526.4795409181637,527.0887974051897,527.6980538922156,528.3073103792415,528.9165668662674,529.5258233532934,530.1350798403193,530.7443363273453,531.3535928143713,531.9628493013972,532.5721057884232,533.1813622754491,533.7906187624751,534.399875249501,535.0091317365269,535.6183882235529,536.2276447105788,536.8369011976048,537.4461576846307,538.0554141716567,538.6646706586827,539.2739271457086,539.8831836327346,540.4924401197604,541.1016966067864,541.7109530938123,542.3202095808383,542.9294660678643,543.5387225548902,544.1479790419162,544.7572355289421,545.3664920159681,545.9757485029941,546.5850049900199,547.1942614770459,547.8035179640718,548.4127744510978,549.0220309381237,549.6312874251497,550.2405439121757,550.8498003992016,551.4590568862276,552.0683133732535,552.6775698602794,553.2868263473054,553.8960828343313,554.5053393213573,555.1145958083832,555.7238522954092,556.3331087824351,556.9423652694611,557.5516217564871,558.160878243513,558.7701347305389,559.3793912175648,559.9886477045908,560.5979041916167,561.2071606786427,561.8164171656687,562.4256736526946,563.0349301397206,563.6441866267465,564.2534431137725,564.8626996007984,565.4719560878243,566.0812125748503,566.6904690618762,567.2997255489022,567.9089820359281,568.5182385229541,569.1274950099801,569.736751497006,570.346007984032,570.9552644710578,571.5645209580838,572.1737774451097,572.7830339321357,573.3922904191617,574.0015469061876,574.6108033932136,575.2200598802395,575.8293163672655,576.4385728542915,577.0478293413173,577.6570858283433,578.2663423153692,578.8755988023952,579.4848552894211,580.0941117764471,580.7033682634731,581.312624750499,581.921881237525,582.531137724551,583.1403942115768,583.7496506986027,584.3589071856287,584.9681636726547,585.5774201596806,586.1866766467066,586.7959331337325,587.4051896207585,588.0144461077845,588.6237025948104,589.2329590818364,589.8422155688622,590.4514720558882,591.0607285429141,591.6699850299401,592.2792415169661,592.888498003992,593.497754491018,594.107010978044,594.7162674650699,595.3255239520959,595.9347804391217,596.5440369261477,597.1532934131736,597.7625499001996,598.3718063872255,598.9810628742515,599.5903193612775,600.1995758483034,600.8088323353294,601.4180888223553,602.0273453093812,602.6366017964071,603.2458582834331,603.8551147704591,604.464371257485,605.073627744511,605.682884231537,606.2921407185629,606.9013972055889,607.5106536926148,608.1199101796407,608.7291666666666,609.3384231536926,609.9476796407185,610.5569361277445,611.1661926147705,611.7754491017964,612.3847055888224,612.9939620758483,613.6032185628743,614.2124750499001,614.8217315369261,615.4309880239521,616.040244510978,616.649500998004,617.25875748503,617.8680139720559,618.4772704590819,619.0865269461078,619.6957834331338,620.3050399201596,620.9142964071856,621.5235528942115,622.1328093812375,622.7420658682635,623.3513223552894,623.9605788423154,624.5698353293413,625.1790918163673,625.7883483033933,626.3976047904191,627.0068612774451,627.616117764471,628.225374251497,628.834630738523,629.4438872255489,630.0531437125749,630.6624001996008,631.2716566866268,631.8809131736527,632.4901696606786,633.0994261477045,633.7086826347305,634.3179391217565,634.9271956087824,635.5364520958084,636.1457085828343,636.7549650698603,637.3642215568863,637.9734780439122,638.5827345309381,639.191991017964,639.80124750499,640.410503992016,641.0197604790419,641.6290169660679,642.2382734530938,642.8475299401198,643.4567864271457,644.0660429141717,644.6752994011975,645.2845558882235,645.8938123752495,646.5030688622754,647.1123253493014,647.7215818363273,648.3308383233533,648.9400948103793,649.5493512974052,650.1586077844312,650.7678642714571,651.377120758483,651.986377245509,652.5956337325349,653.2048902195609,653.8141467065868,654.4234031936128,655.0326596806387,655.6419161676647,656.2511726546907,656.8604291417166,657.4696856287425,658.0789421157684,658.6881986027944,659.2974550898203,659.9067115768463,660.5159680638723,661.1252245508982,661.7344810379242,662.3437375249501,662.9529940119761,663.562250499002,664.1715069860279,664.7807634730539,665.3900199600798,665.9992764471058,666.6085329341317,667.2177894211577,667.8270459081837,668.4363023952096,669.0455588822356,669.6548153692614,670.2640718562874,670.8733283433133,671.4825848303393,672.0918413173653,672.7010978043912,673.3103542914172,673.9196107784431,674.5288672654691,675.1381237524951,675.7473802395209,676.3566367265469,676.9658932135728,677.5751497005988,678.1844061876247,678.7936626746507,679.4029191616767,680.0121756487026,680.6214321357286,681.2306886227545,681.8399451097804,682.4492015968063,683.0584580838323,683.6677145708583,684.2769710578842,684.8862275449102,685.4954840319361,686.1047405189621,686.7139970059881,687.323253493014,687.9325099800399,688.5417664670658,689.1510229540918,689.7602794411177,690.3695359281437,690.9787924151697,691.5880489021956,692.1973053892216,692.8065618762475,693.4158183632735,694.0250748502993,694.6343313373253,695.2435878243513,695.8528443113772,696.4621007984032,697.0713572854291,697.6806137724551,698.2898702594811,698.899126746507,699.508383233533,700.1176397205588,700.7268962075848,701.3361526946107,701.9454091816367,702.5546656686627,703.1639221556886,703.7731786427146,704.3824351297405,704.9916916167665,705.6009481037925,706.2102045908183,706.8194610778443,707.4287175648702,708.0379740518962,708.6472305389221,709.2564870259481,709.8657435129741,710.475]} From 3aeae284bc16d6a426197bc0003892e3c587d45e Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Sat, 30 Nov 2024 18:26:16 +0600 Subject: [PATCH 57/63] "added changes" --- .../base/special/cosc/test/fixtures/julia/large_negative.json | 2 +- .../base/special/cosc/test/fixtures/julia/large_positive.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_negative.json b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_negative.json index 1cac4a803b3e..95b3fdda78ac 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_negative.json +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_negative.json @@ -1 +1 @@ -{"expected":[0.0013547037113347225,-0.00008079568762223632,-0.0013032639667195508,0.0009482068870398874,0.0006745102501779503,-0.001398701036391261,0.000255111406170193,0.0012313462305846283,-0.0010749686633450609,-0.0005181201119177229,0.001421618557167307,-0.00042702148347751787,-0.0011399129246253469,0.0011863359506704022,0.0003524234202627142,-0.0014229228410856157,0.0005938738241728375,0.0010301941145364818,-0.0012804704349696006,-0.00017987537870032522, 0.001402405827825416, -0.0007530705608911163,-0.0009037097221535848,0.0013557809447669912,0.0000030571377722841856,-0.0013601908085929216, 0.00090210808806338,0.000762248885617645,-0.0014109498242049442,0.0001753624225516151, 0.001296733422985409,-0.0010386160079543679,-0.0006078450522017952,0.001444955378254708,-0.00035266657261104876,-0.001212817615884697,0.0011603943895041257,0.00044274714479023526,-0.0014570900164287276,0.0005261316848493853,0.0011095465725173583,-0.0012654487609877864,-0.0002693872052378724,0.0014469737831970422,-0.0006930686463979073,-0.000988328725870059,0.0013520222868440158,0.00009034497448808978,-0.0014145630303816937,0.0008508641090431388,0.0008508590059251448, -0.001418624616913376, 0.00009169008045193419,0.0013601540581324836,-0.0009970209502992236,-0.0006990955735162068,0.0014640569422267953,-0.00027395873965425173,-0.0012843816256290141,0.0011291973258827153,0.0005352323519178338,-0.0014874328448115856,0.00045367341552896007,0.0011882123093087816,-0.0012452437098237502,-0.0003616677354521192, 0.0014881945889650763,-0.0006280603358161934,-0.0010729327640676513,0.0013432373436468015,0.00018096991543083507,-0.0014661245672588433,0.0007944018925442475,0.0009401330203414861, -0.0014215135501630888,0.000004160681355470407,0.0014213516852222246,-0.0009500785172054345,-0.0007916850261118165,0.0014786934100406806,-0.00019093129845411085,-0.0013543525432043336,0.0010926094439607458,0.0006297167164955381, -0.0015137073498438882,0.00037649851658996944,0.0012659473512369715,-0.0012196917338998107,-0.00045658196359700174,0.001525814248009943,-0.0005580110665203211,-0.0011572905916697484,0.0013292369541027006,0.0002748268245898618,-0.0015146157294215843,0.0007326531501916804,0.0010298565237695327,-0.0014194049353070193,-0.00008715256558205705,0.0014800653889474682,-0.0008976876191456397,-0.0008854197031585339,0.0014886340709551128,-0.00010362400829825569,-0.0014224727585456776,0.001050498355498692,0.0007260307657469527,-0.001535667667814884,0.00029461234075868443,0.0013425019101925,-0.0011886312069928156,-0.0005539877994905418,0.001559575913552362,-0.0004828914172042128,-0.0012411646668722214,0.0013098328436288655, 0.0003718036967882991,-0.001559773088862306,0.0006655539214353752,0.0011198084749505927,-0.001412086929034473,-0.00018216994449885557,0.0015360297201346615,-0.0008397505962121314,-0.0009800990722710716,0.0014936470347427743,-0.000012082633562067368,-0.0014884794421914952,0.0010027341386315309,0.0008239981660159353,-0.0015530657694749106,0.00020802561615797507,0.0014176204183045842,-0.0011519019622018793,-0.0006537364115870995,0.001589219647786393,-0.00040267659810632063,-0.0013243112453736956,0.0012848371684575598,0.00047178205726226374,-0.0016013292823056078,0.0005930440357804405,0.0012097613546300848,-0.0013993470919285973,-0.00028080568809111265,0.001588974550466894, -0.0007761726582259892, -0.0010755160012907107,0.0014934988129685427,0.00008364156528367147,-0.0015521044591574695,0.00094918876280744,0.0009234360190147964,-0.0015656510730402305,0.00011675388673029073,0.0014910415080325629,-0.0011093447096898986,-0.0007556725955325025,0.001614482075996456,-0.0003173458452866235,-0.0014064804332869617,0.0012540619351463758,0.0005746374032369982,-0.0016390127160546362,0.0005150664666649428,0.0012994812972225718,-0.001380971819604787,-0.0003829684916221887,0.0016386248377328533,-0.0007068612053223135,-0.0011714569737996997,0.0014879537724232096,0.00018349241613511245,-0.0016130742041212014,0.0008897353845127244,0.0010241551652236242,-0.001573169931245789,0.00002081686083032396,0.00156249792648088,-0.0010608003173058424,-0.0008596351682610671,0.001635095919056224,-0.00022688170735919174,-0.0014874161892036053,0.0012173182770879943,0.0006802396901027961,-0.0016725471560730281,0.00043156656309144325,0.0013887281884543937,-0.0013567456272535535,-0.000488562090991066,0.0016847002857268295,-0.0006317250129069341,-0.0012677022891246742, 0.0014767734408503983,0.0002874095032710903,-0.0016711093432377332,0.0008242474956707887,0.0011259604917800744,-0.0015753649722662988,-0.00007976234293971042,0.0016317163708284598,-0.0010061089341634364,-0.000965457387776023,0.0016507893842002315,-0.00013126921096422736,-0.00156685626427808,0.0011744155665805965,0.0007884538653755591,-0.001701651183686849,0.00034249114254461993,0.0014772557201856835,-0.001326450264943872,-0.0005974859112116129,0.001726914880121763,-0.0005506732619276986,-0.001364026240751589,0.0014597156415146022,0.00039532892858703026,-0.0017259244452978689,0.0007525979032353132, 0.0012286512418043039,-0.001571974270654796, -0.00018495806565090112,0.0016984172294524755,-0.0009451089335665918,-0.0010729673989072401,0.001661285390290858,-0.000030494888622561294,-0.0016445320672257356,0.001125160337016451,0.0008991404543091707,-0.0017260374936996859,0.00024778742560025563,0.0015648113920925678,-0.0012898636368185866,-0.0007096357929777118,0.001764976278206037,-0.000463614391745148,-0.0014601972660317963,0.001436533428745077,0.0005071841776274079,-0.0017772274817679677,0.0006746575143988709,0.001332021321667042,-0.0015627303199562336,-0.0002947431093170613,0.0017623142104824195,-0.000877635647114571,-0.001181988705509238,0.0016663005993013656,0.00007545435059314086, -0.0017201684387403934,0.0010693549848473762,0.001012156201918434,-0.0017454120073067193,0.00014740178873852566,0.0016511364480105157,-0.0012467584920977201,-0.0008249048065848174,0.001798585026165915,-0.0003704547484103538,-0.0015559780588199226,0.0014069737911782346,0.0006229071044095671,-0.0018247191713425983,0.0005902938967497829,0.001435859602146698,-0.0015473587731087077,-0.0004090898882771942,0.0018231138360421866,-0.000803519856232126,-0.0012923406698205542,0.001665544220193843, 0.0001865925311464803,-0.0017934833168781646,0.0010067962149080377,0.001127354777251449,-0.0017594727667576057,0.00004127830710416601,0.0017359657324540131,-0.001196900849381846,-0.0009431841645044406,0.0018274335723978863,-0.0002710969955758156,-0.001651125635139938,0.0013707760827104086,0.0007424290519805918,-0.001868092139823284,0.0004993695764387755,0.0015399502087727235,-0.0015255769098995776,-0.0005279717534376103,0.00188051477612843,-0.0007225860004099564,-0.001403839039997842,0.0016587165444956085,0.00030293613040504176,-0.0018641872713166389,0.0009372731851724082,0.0012445875471416138,-0.0017679085719836606,-0.00007064294701475216,0.001819027449976196,-0.0011400481077436543,-0.0010643642464005963,0.0018512050388889978,-0.00016543824836932214,-0.0017453913400962337,0.0013276701328525117,0.0008656821293700336,-0.001907029860147505,0.0004017400295716867,0.0016440727958304524,-0.0014970917822124433,-0.0006513645170377981,0.0019342069907288739,-0.0006346500528023692,-0.0015162965072514853,0.0016455071643319288,0.0004245058420226093,-0.0019319828798616812,0.0008605652976278971,0.001363704428372864,-0.0017703973110033667,-0.00018842789163601208,0.001900042806508921,-0.001075946788139407,-0.0011883357535412034,0.0018695717046640144,-0.00005336788189923322,-0.0018385207818808719,0.0012773739777572452,0.0009926006702250087,-0.0019412053299194126,0.00029725131227621997,0.0017480027975165836,-0.0014615979771500486,-0.0007792482118121493,0.001983870642094953,-0.0005395170029725228,-0.001629523294508763,0.001625592812960617,0.0005513286258136866,-0.0019965639149130596,0.0007764395702116646,0.001484554829378281,-0.0017666039254031936,-0.00031215075946395925,0.001978725507397685,-0.0010043298361498824,-0.0013149910134956754,0.0018821931452067191,0.00006523504478390907,-0.0019302536757934271,0.0012195911401280484,0.0011231229042779956,-0.001970279434408502,0.0001857372625652008,0.001851511648473913,-0.001418774924698835,-0.0009116091262001133,0.0020291747306822954,-0.0004369778729492942,-0.001743327779203361,0.0015986347543832497,0.0006834400964042057,-0.002057614300462889,0.0006846475099158376,0.0016069886953264314,-0.0017561779389238092,-0.0004418968219652154,0.0020547810812882607, -0.000924913401277078,-0.0014442254610205064,0.0018887139590348678,0.00019050482219169304,-0.002020323577477306,0.0011540073696985783,0.0012571928801717372,-0.0019938989311213094,0.0000670161915541859,0.0019543669643717915,-0.0013682836596523155,-0.0010484421671582106,0.0020697753976417236,-0.0003268061754759243,-0.0018575171536167898,0.001564275631522286,0.0008208873153478847,-0.0021148067911734235,0.0005849213883968643,0.0017308576739633779,-0.0017387504603642919,-0.0005777655908633555,0.002127905991959581,-0.0008373929879720531,-0.0015759393274069797,0.0018887609964432857,0.0003225926717121879,-0.002108457479875406,0.001080286734963962,0.0013947626875822241,-0.002011693976974386,-0.000059113038232347526,0.0020563326712172494,-0.0013097629259197934,-0.0011897536146932108,0.002105313823211009,-0.00020875370130126231,-0.001971898127283933,0.0015221356607009724,0.0009637320672404105,-0.0021678013135685873,0.00047696979744531783,0.0018560164240317264,-0.0017139305505457741,-0.0007198745938893113,0.0021977864911968837,-0.0007414388479507661,-0.0017100395786922079,0.0018819399847623138,0.0004616709873947698,-0.0021943752423985775,0.000998066929991625,0.0015357950386406234,-0.00202327509979841,-0.0001928756751200614,0.002157169069536657,-0.0012428244836758834,-0.0013355643483812275,0.0021354136330099045,-0.00008254549414101212,-0.0020862776773738064,0.0014718080322355046,0.0011120547207021084,-0.0022162428945968968,0.0003604723308662394,0.001982324093842937,-0.0016813008154830246,-0.0008683638461671331,0.0022640971542257833,-0.0006366904504155093,-0.0018464421536347688,0.001867831417894018,0.0006079383796060455,-0.00227778881306316,0.0009069536255053196,0.0016802662841747563,-0.002028229491022795,-0.0003345266414862578,0.002256632816310448,-0.001167047444128274,-0.001485913646982005,0.0021596777018512894,0.000052126164564257466,-0.0022004638547519087,0.0014128533408520358,0.00126595880137988,-0.0022597590837185803,0.00023507319950235106,0.002109646005027821,-0.0016404120522096207,-0.0010234011704437892,0.0023264990242386147,-0.000522749824086804,-0.0019850745659288384,0.0018459855434035826,0.0007616256991975717,-0.002358401194327344,0.0008065136485335909,0.0018281699604801927,-0.0020261164640947796,-0.00048435720082909325,0.002354476803292009,-0.001081971410267293,-0.0016408636893334994,0.0021776842155512427,0.000195608986408136,-0.002314266655792915,0.0013447928226677994,0.001425576438384721,-0.0022979567497804884,0.00010037353418782036,0.002237855586182926,-0.0015907767271143437,-0.0011851885608449423,0.00238463727298552,-0.000399173509233965,-0.0021258789528946767,0.0018159162354147217,0.0009230032695451526,-0.0024359050902366397,0.0006962667161434248,0.001979520988699594,-0.0020164618809028695,-0.0006427029872792218,0.002450449904790678,-0.000987088141197932,-0.0018005049202373317,0.0021889818130413443,0.0003482994098796178,-0.0024274989730836936,0.0012671001137902057,0.001591074890516702,-0.0023304181012462908,-0.00004407793676921038,0.0023668366138935924,-0.0015318610054254897,-0.001353969839436181,0.002438138258662865,-0.00026546278450729853,-0.0022688156762296265,0.0017770934822175035,0.0010923896179530375,-0.002509981155198836,0.0005756753713361598,0.0021343606837074657,-0.0019987512926955397,-0.0008099537296424953,0.00254429656064475,-0.0008818313773363464,-0.0019649624919393944,0.002193083580589947,0.0005106532072058687,-0.0025399776422338678,0.0011791911639854604,0.0017626644181688235,-0.0023566957350428333,-0.00019879623938599445,0.0024964858354924813,-0.00146307496925485,-0.0015300399272331895,0.0024866058281607277,-0.00012105173600687797,-0.002413867611434128,0.0017289341386814685,0.0012701620832088038,-0.0025802957417004136,0.0004441326661138072,0.002292762775675713,-0.0019724214676952994,-0.0009865650998984582,0.0026357561503106584,-0.0007655643567507354,-0.0021344040543688977,0.002189459602589621,0.0006831984439252842,-0.002651524607416084,0.0010804118298358284,0.0019406078462819842, -0.0023763064613720563,-0.00036437405972063864,0.0026267160704977212,-0.0013837605529493208,-0.0017137561482247505,0.0025296166649512093,0.000034707394496151097,-0.002561045304065546,0.0016707904878263406,0.0014567697904262773,-0.002646498013376081,0.00030094699839199973,0.0024548407096760426,-0.0019368498777891524,-0.0011730732476570316,0.002724562100778038,-0.0006375644088929401,-0.002309049251439054,0.0021775276826245154,0.0008665514188886104,-0.00276196823553134,0.0009700225248251665,0.00212523227097055,-0.002388723573671563,-0.0005414988913268162,0.0027574599181244795,-0.0012931765775929575,-0.0019055521159241976,0.0025667144219387343,0.0002025623218156692,-0.00271039322720244,0.0016019360127129771,0.0016527496392930796,-0.0027082162479201343,0.00014532332177049004,0.002620756572964529,-0.0018913415811196205,-0.0013701127606773255,0.0028104406530286142,-0.0004970038162398186,-0.002489181395139813,0.0021566417250688395,0.0010614364138116946,-0.0028711448187372303,0.0008471791034790378,0.0023169435085278306,-0.00239336712625174,0.000730974334831124,0.002888674239796538,-0.00119048006591996,-0.002105954930892777,0.002597402293865043,0.0003833832712040953,-0.0028619974513478742,0.0015215475837377457,0.001858746163983543,-0.0027650530968247786,-0.000023660310016934745,0.0027907321151725097,-0.0018351127513965395,-0.0015784390367687671,0.002893109186976975,-0.0003429258653320415,-0.0026751619463642935,0.0021260770975590824,0.0012687103586072714,-0.002978900318566654,0.0007109088807824078,0.0025162440868568238,-0.0023895916350289443,-0.0009337467671138778,0.0030203456428126102,-0.0010747027418019687,-0.0023156066647886274,0.0026211335666366594,0.0005781912888550294,-0.003015995144283809,0.0014286829949348902,0.00207553641687742,-0.0028165794891526013,-0.00020708225886448162,0.002965062486856878,-0.0017672698464407225,-0.0017989563928512285,0.0029722739702945705,-0.00017421463470532062,-0.0028674486500515845,0.0020850120581594692,0.001489393904630621,-0.00308509242353869,0.0005600803033798766,0.002723755860047883,-0.0023766704113479006,-0.0011509390262720404,0.0031524972711655,-0.0009447212311489739,-0.002535291452063633,0.00263729951680836,0.0007881940917086166,-0.003172586467121874,0.0013222524022365918,0.0023040614402268064,-0.0028623267544512165,-0.0004062147739228174,0.0031441335468466083,-0.0016867830453420921,-0.002032753715756122,0.00304762714776719,0.000010443459467399457,-0.003066618480062419,0.002032503997466113,0.0017247109421283146,-0.0031895930183452503,0.0003933642458396804,0.002940248723286922,-0.0023537754483585584,-0.0013838933649719738,0.0032851973223134404,-0.0007992189323923819,-0.002765969999908602,0.002645213801524339,0.0010148319025040486,-0.0033320496437458063,0.001200981675900577,0.0025454664754032564,-0.002901776380305369,-0.0006225720274057844,0.003328443908914386,-0.001592452066050137,-0.0022811501417381,0.0031188427180401414,0.00021260909091555508,-0.0032733969886735914,0.001967458769034038,0.0019761393762924065,-0.003292291199888101,0.00020918412732333507,0.003166677473009642,-0.0023199513626289466,-0.001634226794577885,0.003418569870328527,-0.0006366367365831966,-0.0030088240303863967,0.0026440921439657436,0.0012598366706164737,-0.0034947602842751633,0.00106336489986786,0.002801152903312241,-0.0029343465893604476,-0.0008579723517619143,0.003518633360445458,-0.001482861726775273,-0.0025457542387467462,0.0031855711431955994, 0.0004341542439747131,-0.0034886962922347376,0.0018885906894229385,0.0022454771055622153,-0.0033930970290240374,0.000005650913192192444,0.0034042296826839315,-0.0022740812867012975,-0.0019039032092644228,0.0035528088109410493,-0.00045510862731871024,-0.003265314194853117,0.0026330256291871613,0.0015253094743251686,-0.003661216486495206,0.000907602109727911,0.0030728461454490644,-0.0029593745820486613,-0.0011146198246699294,0.003715519963568881,-0.0013563235147126805,-0.002828541616136108,0.0032474320867874654,0.0006773466507477024,-0.0037136648619296303,0.001794369768372039, 0.0025349288117075377,-0.003491946285305541,-0.0002195226050794828,0.003654388684581852,-0.0022148417094277487,-0.002195328555105548,0.003688196091642576,-0.00025237648509922117,-0.0035372565233594256,0.002610945196425526,0.001813822974066847,-0.0038320718978704527,0.0007315166614984705,0.003362685595945985,-0.0029760927854200468,-0.0013952126006074046, 0.003920149160636109,-0.0012107977810680375,-0.0031319580560293077,0.0033040045506866306,0.0009449622704645561,-0.003949753693213065,0.0016829511968559049,0.002847221672715902, -0.0035888066087307,-0.0004691363725577702,0.003919017583745256,-0.0021406419055430667,-0.002511478137680439,0.0038251259134400675,-0.00002567584365816008,-0.0038269247725934235, 0.002576573809945749,0.0021285589266208304,-0.004008179917679837,0.0005324440447497479,0.003673345448960945,-0.0029835966784503266,-0.0017030888132177993,0.004133859743939733,-0.0010437886748348212,-0.0034590585677355223,0.0033548133355710426,0.0012404373066202102,-0.00419880557335494,0.0015520797741000489,0.003185761939967599,-0.003683685589540096,-0.0007466584551358059,0.004200473047897748,-0.0020495415108737936,-0.002856069512670352,0.003964137394679675,0.00022841962692444204,-0.004137189583835574,0.0025283610837445233,0.0024734956235666467,-0.004190653758641409,0.0003070799592868807,0.004008199614485406,-0.0029808005670774736,-0.0020424261917923845,0.004358373937524613,-0.0008522000264212038,-0.003813697915434429,0.0033993102084415457,0.001568076984060037,-0.004463177515213357,0.0013989582835381479,0.0035548503140859175,-0.003776641641035845,-0.0010564392749880028,0.004501762036534601,-0.00193913652081664,-0.0032338012457680614,0.004105959449068887,0.0005142133977710592,-0.004471710956287682,0.002464392436606433,0.002853667788669409,-0.004380949519793281,0.000051269145339538906,0.004371550776810554,-0.0029663757776967714,-0.002418519987341332,0.004595922632856262,-0.0006321341765754433,-0.004200796374251886,0.003436847291328689,0.0019333474571115053,-0.004745911775827162,0.001220062946280154,0.003959983656586641,-0.003867798924005278,-0.0014040124470628983,0.004826761733952966,-0.0018063987061387966,-0.003650688852895792,0.004251573658933666,0.0008371897247658116,-0.004835209581830059,0.002382260478291738,0.0032755339015728027,-0.004580983361802023,-0.0002402938291902078,0.004768954803937312,-0.0029386626286905145,-0.0028381775827841385,0.0048494230041166,-0.00037860558334096143,-0.004626717888750353,0.0034666387522217694,0.002343292225408638,-0.005050979654771991,0.0010108794041464586,0.004408286376083186,-0.003957368294960792,-0.0017965260083971817,0.005180534673883439,-0.001647444690657601,-0.0041145474877676315,0.0044023042767631845,0.0012044510685232089,-0.005233857607857714,0.0022788790314250107,0.0037475066359415068,-0.004793300436349143,-0.0005744978182697404,0.0052076903706089125, -0.002895542315413201,-0.0033102912790257503,0.0051227361018962095,-0.00008512393347294688,-0.005099820401838425,0.003487704444190258,0.0028071397807013206,-0.005383637093464895, 0.0007655162817272576,0.004909141618215742,-0.004045677424447762,-0.0022433751194695204,0.005569790989575016,-0.0014571959950690587,-0.004635702115674001,0.00455995019667687,0.001625363493193764,-0.005675855138867154,0.0021502076378049286,0.004280737739177666,-0.005021324495129137,-0.000960458061786816,0.005697455868660679,-0.0028342457756064757,-0.0038466908083075258,0.005421049995493061,0.0002569282692796016,-0.005631277434697048,0.0034987848582336096,0.0033372134707141746,-0.005750956990830926,0.00047612461878099527,0.005475139369483325,-0.004133215252738831,-0.002757155348611544,0.006003584843768021,-0.0012288649379606654,-0.00522806101919553,0.004726983799197774,0.0021125353435654417,-0.006172304493934396,0.001990832002869674,0.004890312209570127,-0.005269737180178703,-0.0014104976693106936,0.00625143335415501,-0.002751060266739111,-0.004463449147865363,0.005751466336222345,0.0006592523885541026,-0.0062363410064963706,0.003498208933595271,0.003950334848851842,-0.00616265012366927,0.00013199906500878158,0.006123544209342841,-0.004220699554409954,-0.003355143565738766,0.006494396399085612,-0.0009531526966266337,-0.005910789848249051,0.004906860016925527,0.0026833489096393676,-0.006738578726857215,0.0017933042142774152,0.005597124605185432,-0.005545073236956974,-0.0019416955511766076,0.006887966943517764,-0.0026408636819176584,-0.005182950281506819,0.006123928778520445,0.001138154612584251,-0.006936349874034027,0.0034836813230158603,0.004670063887855653,-0.0066323755725483016,-0.0002818630755707789,0.006878648581299539,-0.004309183074290739,-0.0040616818074015685,0.00705987387038743,-0.0006169522533267468,-0.006711018639932855,0.005104514344798969,0.0033624475453092463,-0.007396544559638518,0.0015470654647428096,0.006430940058342965,-0.0058566903088967965,-0.002578422795003113,0.00763331398680969,-0.0024963559927812322,-0.00603729362790659,0.006552750954942065,0.0017170617784943772,-0.0077620524740952095,0.0034519256225489995,0.00553042265382208,-0.007179919026460738,-0.0007871690515933735,0.007775704786464729,-0.004400226705933925,-0.00491217921746382,0.007725758930150321,-0.0002011587968342767,-0.007668410900047241,0.005327200054711453,0.0041859543335028716,-0.008178334646508209,0.0012366068812187032,0.007435615543206518,-0.006218420815770962,-0.0033566915953509562,0.008526364664715428,-0.0023067302785135637,-0.007074165127271463,0.007059250483814296,0.0024308841484176297,-0.008759371974002407,0.0033980556552814112,0.006582390854060322,-0.007834993073048638,-0.0014165550912911755,0.00886782717905591,-0.0044961948661743105,-0.005960176981576993,0.008531053351332505,0.0003232216797313565,-0.00884328286672188,0.005585968886779027,0.0052090134471317615,-0.009133094937371501,0.0008381560025934599,0.008678497434581005,-0.006651540203158853,-0.004332032288489173,0.009627195972428669,-0.002055240938339637,-0.008367546697812851,0.0076765515374687095,0.003334027568792855,-0.01],"x":[-709.0895,-708.481626247505,-707.87375249501,-707.2658787425149,-706.65800499002,-706.050131237525,-705.4422574850299,-704.8343837325349,-704.22650998004,-703.6186362275449,-703.0107624750499,-702.4028887225548,-701.7950149700599,-701.1871412175649,-700.5792674650698,-699.9713937125748,-699.3635199600799,-698.7556462075848,-698.1477724550898,-697.5398987025948,-696.9320249500998,-696.3241511976048,-695.7162774451098,-695.1084036926147,-694.5005299401198,-693.8926561876248,-693.2847824351297,-692.6769086826347,-692.0690349301398,-691.4611611776447,-690.8532874251497,-690.2454136726546,-689.6375399201597,-689.0296661676647,-688.4217924151696,-687.8139186626746,-687.2060449101797,-686.5981711576846,-685.9902974051896,-685.3824236526946,-684.7745499001996,-684.1666761477046,-683.5588023952096,-682.9509286427145,-682.3430548902196,-681.7351811377246,-681.1273073852295,-680.5194336327345,-679.9115598802396,-679.3036861277445,-678.6958123752495,-678.0879386227545,-677.4800648702595,-676.8721911177645,-676.2643173652694,-675.6564436127744,-675.0485698602795,-674.4406961077844,-673.8328223552894,-673.2249486027944,-672.6170748502994,-672.0092010978044,-671.4013273453094,-670.7934535928143,-670.1855798403194,-669.5777060878244,-668.9698323353293,-668.3619585828343,-667.7540848303394,-667.1462110778443,-666.5383373253493,-665.9304635728543,-665.3225898203593,-664.7147160678643,-664.1068423153692,-663.4989685628742,-662.8910948103793,-662.2832210578842,-661.6753473053892,-661.0674735528942,-660.4595998003992,-659.8517260479042,-659.2438522954092,-658.6359785429141,-658.0281047904192,-657.4202310379242,-656.8123572854291,-656.2044835329341,-655.5966097804392,-654.9887360279441,-654.3808622754491,-653.772988522954,-653.1651147704591,-652.5572410179641,-651.949367265469,-651.341493512974,-650.7336197604791,-650.125746007984,-649.517872255489,-648.909998502994,-648.302124750499,-647.694250998004,-647.086377245509,-646.4785034930139,-645.870629740519,-645.262755988024,-644.6548822355289,-644.0470084830339,-643.439134730539,-642.8312609780439,-642.2233872255489,-641.6155134730539,-641.0076397205589,-640.3997659680639,-639.7918922155689,-639.1840184630738,-638.5761447105789,-637.9682709580838,-637.3603972055888,-636.7525234530938,-636.1446497005988,-635.5367759481038,-634.9289021956088,-634.3210284431137,-633.7131546906188,-633.1052809381238,-632.4974071856287,-631.8895334331337,-631.2816596806388,-630.6737859281437,-630.0659121756487,-629.4580384231537,-628.8501646706587,-628.2422909181637,-627.6344171656687,-627.0265434131736,-626.4186696606787,-625.8107959081836,-625.2029221556886,-624.5950484031936,-623.9871746506986,-623.3793008982036,-622.7714271457086,-622.1635533932135,-621.5556796407186,-620.9478058882236,-620.3399321357285,-619.7320583832335,-619.1241846307386,-618.5163108782435,-617.9084371257485,-617.3005633732535,-616.6926896207585,-616.0848158682635,-615.4769421157685,-614.8690683632734,-614.2611946107785,-613.6533208582835,-613.0454471057884,-612.4375733532934,-611.8296996007984,-611.2218258483034,-610.6139520958084,-610.0060783433133,-609.3982045908184,-608.7903308383234,-608.1824570858283,-607.5745833333333,-606.9667095808384,-606.3588358283433,-605.7509620758483,-605.1430883233533,-604.5352145708583,-603.9273408183633,-603.3194670658683,-602.7115933133732,-602.1037195608783,-601.4958458083833,-600.8879720558882,-600.2800983033932,-599.6722245508982,-599.0643507984032,-598.4564770459082,-597.8486032934131,-597.2407295409182,-596.6328557884232,-596.0249820359281,-595.4171082834331,-594.8092345309382,-594.2013607784431,-593.5934870259481,-592.985613273453,-592.3777395209581,-591.7698657684631,-591.161992015968,-590.554118263473,-589.9462445109781,-589.338370758483,-588.730497005988,-588.122623253493,-587.514749500998,-586.906875748503,-586.299001996008,-585.6911282435129,-585.083254491018,-584.475380738523,-583.8675069860279,-583.2596332335329,-582.651759481038,-582.0438857285429,-581.4360119760479,-580.8281382235529,-580.2202644710579,-579.6123907185629,-579.0045169660679,-578.3966432135728,-577.7887694610779,-577.1808957085829,-576.5730219560878,-575.9651482035928,-575.3572744510979,-574.7494006986028,-574.1415269461078,-573.5336531936127,-572.9257794411178,-572.3179056886228,-571.7100319361277,-571.1021581836327,-570.4942844311378,-569.8864106786427,-569.2785369261477,-568.6706631736527,-568.0627894211577,-567.4549156686627,-566.8470419161677,-566.2391681636726,-565.6312944111777,-565.0234206586827,-564.4155469061876,-563.8076731536926,-563.1997994011977,-562.5919256487026,-561.9840518962076,-561.3761781437125,-560.7683043912176,-560.1604306387226,-559.5525568862275,-558.9446831337325,-558.3368093812376,-557.7289356287425,-557.1210618762475,-556.5131881237525,-555.9053143712575,-555.2974406187625,-554.6895668662675,-554.0816931137724,-553.4738193612775,-552.8659456087825,-552.2580718562874,-551.6501981037924,-551.0423243512975,-550.4344505988024,-549.8265768463074,-549.2187030938123,-548.6108293413174,-548.0029555888224,-547.3950818363273,-546.7872080838323,-546.1793343313374,-545.5714605788423,-544.9635868263473,-544.3557130738523,-543.7478393213573,-543.1399655688623,-542.5320918163673,-541.9242180638722,-541.3163443113773,-540.7084705588823,-540.1005968063872,-539.4927230538922,-538.8848493013973,-538.2769755489022,-537.6691017964072,-537.0612280439121,-536.4533542914172,-535.8454805389222,-535.2376067864271,-534.6297330339321,-534.0218592814372,-533.4139855289421,-532.8061117764471,-532.1982380239521,-531.5903642714571,-530.9824905189621,-530.374616766467,-529.766743013972,-529.1588692614771,-528.550995508982,-527.943121756487,-527.335248003992,-526.727374251497,-526.119500499002,-525.511626746507,-524.9037529940119,-524.295879241517,-523.688005489022,-523.0801317365269,-522.4722579840319,-521.864384231537,-521.2565104790419,-520.6486367265469,-520.0407629740519,-519.4328892215569,-518.8250154690619,-518.2171417165669,-517.6092679640718,-517.0013942115769,-516.3935204590819,-515.7856467065868,-515.1777729540918,-514.5698992015969,-513.9620254491018,-513.3541516966068,-512.7462779441117,-512.1384041916168,-511.5305304391218,-510.92265668662674,-510.31478293413176,-509.7069091816367,-509.09903542914174,-508.4911616766467,-507.8832879241517,-507.2754141716567,-506.6675404191617,-506.05966666666666,-505.4517929141717,-504.84391916167664,-504.23604540918166,-503.6281716566866,-503.02029790419164,-502.4124241516966,-501.8045503992016,-501.1966766467066,-500.5888028942116,-499.98092914171656,-499.3730553892216,-498.76518163672654,-498.15730788423156,-497.5494341317365,-496.94156037924154,-496.3336866267465,-495.7258128742515,-495.1179391217565,-494.5100653692615,-493.90219161676646,-493.2943178642715,-492.68644411177644,-492.07857035928146,-491.4706966067864,-490.86282285429144,-490.2549491017964,-489.6470753493014,-489.0392015968064,-488.4313278443114,-487.82345409181636,-487.2155803393214,-486.60770658682634,-485.99983283433136,-485.3919590818363,-484.78408532934134,-484.1762115768463,-483.5683378243513,-482.9604640718563,-482.3525903193613,-481.74471656686626,-481.1368428143713,-480.52896906187624,-479.92109530938126,-479.3132215568862,-478.70534780439124,-478.0974740518962,-477.4896002994012,-476.8817265469062,-476.2738527944112,-475.66597904191616,-475.0581052894212,-474.45023153692614,-473.84235778443116,-473.2344840319361,-472.62661027944114,-472.0187365269461,-471.4108627744511,-470.8029890219561,-470.1951152694611,-469.58724151696606,-468.9793677644711,-468.37149401197604,-467.76362025948106,-467.155746506986,-466.54787275449104,-465.939999001996,-465.332125249501,-464.724251497006,-464.116377744511,-463.50850399201596,-462.900630239521,-462.29275648702594,-461.68488273453096,-461.0770089820359,-460.46913522954094,-459.8612614770459,-459.2533877245509,-458.6455139720559,-458.0376402195609,-457.42976646706586,-456.8218927145709,-456.21401896207584,-455.60614520958086,-454.9982714570858,-454.39039770459084,-453.7825239520958,-453.1746501996008,-452.5667764471058,-451.9589026946108,-451.35102894211576,-450.7431551896208,-450.13528143712574,-449.52740768463076,-448.9195339321357,-448.31166017964074,-447.7037864271457,-447.0959126746507,-446.4880389221557,-445.8801651696607,-445.27229141716566,-444.6644176646707,-444.05654391217564,-443.44867015968066,-442.8407964071856,-442.23292265469064,-441.6250489021956,-441.0171751497006,-440.4093013972056,-439.8014276447106,-439.19355389221556,-438.5856801397206,-437.97780638722554,-437.36993263473056,-436.7620588822355,-436.15418512974054,-435.5463113772455,-434.9384376247505,-434.3305638722555,-433.7226901197605,-433.11481636726546,-432.5069426147705,-431.89906886227544,-431.29119510978046,-430.6833213572854,-430.07544760479044,-429.4675738522954,-428.8597000998004,-428.2518263473054,-427.6439525948104,-427.03607884231536,-426.4282050898204,-425.82033133732534,-425.21245758483036,-424.6045838323353,-423.99671007984034,-423.3888363273453,-422.7809625748503,-422.1730888223553,-421.5652150698603,-420.95734131736526,-420.3494675648703,-419.74159381237524,-419.13372005988026,-418.5258463073852,-417.91797255489024,-417.3100988023952,-416.7022250499002,-416.0943512974052,-415.4864775449102,-414.87860379241516,-414.2707300399202,-413.66285628742514,-413.05498253493016,-412.4471087824351,-411.83923502994014,-411.2313612774451,-410.6234875249501,-410.0156137724551,-409.4077400199601,-408.79986626746506,-408.1919925149701,-407.58411876247504,-406.97624500998006,-406.368371257485,-405.76049750499004,-405.152623752495,-404.54475,-403.936876247505,-403.32900249501,-402.72112874251496,-402.11325499002,-401.50538123752494,-400.89750748502996,-400.2896337325349,-399.68175998003994,-399.0738862275449,-398.4660124750499,-397.8581387225549,-397.2502649700599,-396.64239121756486,-396.0345174650699,-395.42664371257484,-394.81876996007986,-394.2108962075848,-393.60302245508984,-392.9951487025948,-392.3872749500998,-391.7794011976048,-391.1715274451098,-390.56365369261476,-389.9557799401198,-389.34790618762474,-388.74003243512976,-388.1321586826347,-387.52428493013974,-386.9164111776447,-386.3085374251497,-385.7006636726547,-385.0927899201597,-384.48491616766466,-383.8770424151697,-383.26916866267464,-382.66129491017966,-382.0534211576846,-381.44554740518964,-380.8376736526946,-380.2297999001996,-379.6219261477046,-379.0140523952096,-378.40617864271456,-377.7983048902196,-377.19043113772454,-376.58255738522956,-375.9746836327345,-375.36680988023954,-374.7589361277445,-374.1510623752495,-373.5431886227545,-372.9353148702595,-372.32744111776447,-371.7195673652695,-371.11169361277445,-370.50381986027946,-369.8959461077844,-369.28807235528944,-368.6801986027944,-368.0723248502994,-367.4644510978044,-366.8565773453094,-366.24870359281437,-365.6408298403194,-365.03295608782435,-364.42508233532936,-363.8172085828343,-363.20933483033934,-362.6014610778443,-361.9935873253493,-361.3857135728543,-360.7778398203593,-360.16996606786427,-359.5620923153693,-358.95421856287425,-358.34634481037926,-357.7384710578842,-357.13059730538924,-356.5227235528942,-355.9148498003992,-355.3069760479042,-354.6991022954092,-354.09122854291417,-353.4833547904192,-352.87548103792415,-352.26760728542916,-351.6597335329341,-351.05185978043914,-350.4439860279441,-349.8361122754491,-349.2282385229541,-348.6203647704591,-348.01249101796407,-347.4046172654691,-346.79674351297405,-346.18886976047907,-345.580996007984,-344.97312225548905,-344.365248502994,-343.757374750499,-343.149500998004,-342.541627245509,-341.93375349301397,-341.325879740519,-340.71800598802395,-340.11013223552897,-339.5022584830339,-338.89438473053895,-338.2865109780439,-337.6786372255489,-337.0707634730539,-336.4628897205589,-335.85501596806387,-335.2471422155689,-334.63926846307385,-334.03139471057887,-333.4235209580838,-332.81564720558885,-332.2077734530938,-331.5998997005988,-330.9920259481038,-330.3841521956088,-329.77627844311377,-329.1684046906188,-328.56053093812375,-327.95265718562877,-327.3447834331337,-326.73690968063875,-326.1290359281437,-325.5211621756487,-324.9132884231537,-324.3054146706587,-323.69754091816367,-323.0896671656687,-322.48179341317365,-321.87391966067867,-321.2660459081836,-320.65817215568865,-320.0502984031936,-319.4424246506986,-318.8345508982036,-318.2266771457086,-317.61880339321357,-317.0109296407186,-316.40305588822355,-315.79518213572857,-315.1873083832335,-314.57943463073855,-313.9715608782435,-313.3636871257485,-312.7558133732535,-312.1479396207585,-311.54006586826347,-310.9321921157685,-310.32431836327345,-309.71644461077847,-309.10857085828343,-308.50069710578845,-307.8928233532934,-307.2849496007984,-306.6770758483034,-306.0692020958084,-305.46132834331337,-304.8534545908184,-304.24558083832335,-303.63770708582837,-303.02983333333333,-302.42195958083835,-301.8140858283433,-301.2062120758483,-300.5983383233533,-299.9904645708583,-299.38259081836327,-298.7747170658683,-298.16684331337325,-297.55896956087827,-296.95109580838323,-296.34322205588825,-295.7353483033932,-295.1274745508982,-294.5196007984032,-293.9117270459082,-293.30385329341317,-292.6959795409182,-292.08810578842315,-291.48023203592817,-290.87235828343313,-290.26448453093815,-289.6566107784431,-289.0487370259481,-288.4408632734531,-287.8329895209581,-287.22511576846307,-286.6172420159681,-286.00936826347305,-285.40149451097807,-284.79362075848303,-284.18574700598805,-283.577873253493,-282.96999950099803,-282.362125748503,-281.754251996008,-281.14637824351297,-280.538504491018,-279.93063073852295,-279.32275698602797,-278.71488323353293,-278.10700948103795,-277.4991357285429,-276.89126197604793,-276.2833882235529,-275.6755144710579,-275.06764071856287,-274.4597669660679,-273.85189321357285,-273.24401946107787,-272.63614570858283,-272.02827195608785,-271.4203982035928,-270.81252445109783,-270.2046506986028,-269.5967769461078,-268.98890319361277,-268.3810294411178,-267.77315568862275,-267.16528193612777,-266.55740818363273,-265.94953443113775,-265.3416606786427,-264.73378692614773,-264.1259131736527,-263.5180394211577,-262.91016566866267,-262.3022919161677,-261.69441816367265,-261.08654441117767,-260.47867065868263,-259.87079690618765,-259.2629231536926,-258.65504940119763,-258.0471756487026,-257.4393018962076,-256.83142814371257,-256.2235543912176,-255.61568063872255,-255.00780688622754,-254.39993313373253,-253.79205938123752,-253.1841856287425,-252.5763118762475,-251.9684381237525,-251.36056437125748,-250.75269061876247,-250.14481686626746,-249.53694311377245,-248.92906936127744,-248.32119560878243,-247.71332185628742,-247.1054481037924,-246.4975743512974,-245.8897005988024,-245.28182684630738,-244.67395309381237,-244.06607934131736,-243.45820558882235,-242.85033183632734,-242.24245808383233,-241.63458433133732,-241.0267105788423,-240.4188368263473,-239.8109630738523,-239.20308932135728,-238.59521556886227,-237.98734181636726,-237.37946806387225,-236.77159431137724,-236.16372055888223,-235.55584680638722,-234.9479730538922,-234.3400993013972,-233.7322255489022,-233.12435179640718,-232.51647804391217,-231.90860429141716,-231.30073053892215,-230.69285678642714,-230.08498303393213,-229.47710928143712,-228.8692355289421,-228.2613617764471,-227.6534880239521,-227.04561427145708,-226.43774051896207,-225.82986676646706,-225.22199301397205,-224.61411926147704,-224.00624550898203,-223.39837175648702,-222.790498003992,-222.182624251497,-221.574750499002,-220.96687674650698,-220.35900299401197,-219.75112924151696,-219.14325548902195,-218.53538173652694,-217.92750798403193,-217.31963423153692,-216.7117604790419,-216.1038867265469,-215.4960129740519,-214.88813922155688,-214.28026546906187,-213.67239171656686,-213.06451796407185,-212.45664421157684,-211.84877045908183,-211.24089670658682,-210.6330229540918,-210.0251492015968,-209.4172754491018,-208.80940169660678,-208.20152794411177,-207.59365419161676,-206.98578043912175,-206.37790668662674,-205.77003293413173,-205.16215918163672,-204.55428542914171,-203.9464116766467,-203.3385379241517,-202.73066417165668,-202.12279041916167,-201.51491666666666,-200.90704291417165,-200.29916916167664,-199.69129540918163,-199.08342165668662,-198.47554790419161,-197.8676741516966,-197.2598003992016,-196.65192664670658,-196.04405289421157,-195.43617914171656,-194.82830538922155,-194.22043163672654,-193.61255788423153,-193.00468413173652,-192.39681037924151,-191.7889366267465,-191.1810628742515,-190.57318912175649,-189.96531536926148,-189.35744161676647,-188.74956786427146,-188.14169411177645,-187.53382035928144,-186.92594660678643,-186.31807285429142,-185.7101991017964,-185.1023253493014,-184.49445159680639,-183.88657784431138,-183.27870409181637,-182.67083033932136,-182.06295658682635,-181.45508283433134,-180.84720908183633,-180.23933532934132,-179.6314615768463,-179.0235878243513,-178.41571407185629,-177.80784031936128,-177.19996656686627,-176.59209281437126,-175.98421906187625,-175.37634530938124,-174.76847155688623,-174.16059780439122,-173.5527240518962,-172.9448502994012,-172.3369765469062,-171.72910279441118,-171.12122904191617,-170.51335528942116,-169.90548153692615,-169.29760778443114,-168.68973403193613,-168.08186027944112,-167.4739865269461,-166.8661127744511,-166.2582390219561,-165.65036526946108,-165.04249151696607,-164.43461776447106,-163.82674401197605,-163.21887025948104,-162.61099650698603,-162.00312275449102,-161.395249001996,-160.787375249501,-160.179501497006,-159.57162774451098,-158.96375399201597,-158.35588023952096,-157.74800648702595,-157.14013273453094,-156.53225898203593,-155.92438522954092,-155.3165114770459,-154.7086377245509,-154.1007639720559,-153.49289021956088,-152.88501646706587,-152.27714271457086,-151.66926896207585,-151.06139520958084,-150.45352145708583,-149.84564770459082,-149.2377739520958,-148.6299001996008,-148.0220264471058,-147.41415269461078,-146.80627894211577,-146.19840518962076,-145.59053143712575,-144.98265768463074,-144.37478393213573,-143.76691017964072,-143.1590364271457,-142.5511626746507,-141.9432889221557,-141.33541516966068,-140.72754141716567,-140.11966766467066,-139.51179391217565,-138.90392015968064,-138.29604640718563,-137.68817265469062,-137.0802989021956,-136.4724251497006,-135.8645513972056,-135.25667764471058,-134.64880389221557,-134.04093013972056,-133.43305638722555,-132.82518263473054,-132.21730888223553,-131.60943512974052,-131.0015613772455,-130.3936876247505,-129.7858138722555,-129.17794011976048,-128.57006636726547,-127.96219261477046,-127.35431886227545,-126.74644510978044,-126.13857135728543,-125.53069760479042,-124.92282385229541,-124.3149500998004,-123.70707634730539,-123.09920259481038,-122.49132884231537,-121.88345508982036,-121.27558133732535,-120.66770758483034,-120.05983383233533,-119.45196007984032,-118.84408632734531,-118.2362125748503,-117.62833882235529,-117.02046506986028,-116.41259131736527,-115.80471756487026,-115.19684381237525,-114.58897005988024,-113.98109630738523,-113.37322255489022,-112.76534880239521,-112.1574750499002,-111.54960129740519,-110.94172754491018,-110.33385379241517,-109.72598003992016,-109.11810628742515,-108.51023253493014,-107.90235878243513,-107.29448502994012,-106.68661127744511,-106.0787375249501,-105.47086377245509,-104.86299001996008,-104.25511626746507,-103.64724251497006,-103.03936876247505,-102.43149500998004,-101.82362125748503,-101.21574750499002,-100.60787375249501,-100.0]} +{"expected":[0.0013547037113347225,-0.00008079568762223632,-0.0013032639667195508,0.0009482068870398874,0.0006745102501779503,-0.001398701036391261,0.000255111406170193,0.0012313462305846283,-0.0010749686633450609,-0.0005181201119177229,0.001421618557167307,-0.00042702148347751787,-0.0011399129246253469,0.0011863359506704022,0.0003524234202627142,-0.0014229228410856157,0.0005938738241728375,0.0010301941145364818,-0.0012804704349696006,-0.00017987537870032522, 0.001402405827825416, -0.0007530705608911163,-0.0009037097221535848,0.0013557809447669912,0.0000030571377722841856,-0.0013601908085929216, 0.00090210808806338,0.000762248885617645,-0.0014109498242049442,0.0001753624225516151, 0.001296733422985409,-0.0010386160079543679,-0.0006078450522017952,0.001444955378254708,-0.00035266657261104876,-0.001212817615884697,0.0011603943895041257,0.00044274714479023526,-0.0014570900164287276,0.0005261316848493853,0.0011095465725173583,-0.0012654487609877864,-0.0002693872052378724,0.0014469737831970422,-0.0006930686463979073,-0.000988328725870059,0.0013520222868440158,0.00009034497448808978,-0.0014145630303816937,0.0008508641090431388,0.0008508590059251448, -0.001418624616913376, 0.00009169008045193419,0.0013601540581324836,-0.0009970209502992236,-0.0006990955735162068,0.0014640569422267953,-0.00027395873965425173,-0.0012843816256290141,0.0011291973258827153,0.0005352323519178338,-0.0014874328448115856,0.00045367341552896007,0.0011882123093087816,-0.0012452437098237502,-0.0003616677354521192, 0.0014881945889650763,-0.0006280603358161934,-0.0010729327640676513,0.0013432373436468015,0.00018096991543083507,-0.0014661245672588433,0.0007944018925442475,0.0009401330203414861, -0.0014215135501630888,0.000004160681355470407,0.0014213516852222246,-0.0009500785172054345,-0.0007916850261118165,0.0014786934100406806,-0.00019093129845411085,-0.0013543525432043336,0.0010926094439607458,0.0006297167164955381, -0.0015137073498438882,0.00037649851658996944,0.0012659473512369715,-0.0012196917338998107,-0.00045658196359700174,0.001525814248009943,-0.0005580110665203211,-0.0011572905916697484,0.0013292369541027006,0.0002748268245898618,-0.0015146157294215843,0.0007326531501916804,0.0010298565237695327,-0.0014194049353070193,-0.00008715256558205705,0.0014800653889474682,-0.0008976876191456397,-0.0008854197031585339,0.0014886340709551128,-0.00010362400829825569,-0.0014224727585456776,0.001050498355498692,0.0007260307657469527,-0.001535667667814884,0.00029461234075868443,0.0013425019101925,-0.0011886312069928156,-0.0005539877994905418,0.001559575913552362,-0.0004828914172042128,-0.0012411646668722214,0.0013098328436288655, 0.0003718036967882991,-0.001559773088862306,0.0006655539214353752,0.0011198084749505927,-0.001412086929034473,-0.00018216994449885557,0.0015360297201346615,-0.0008397505962121314,-0.0009800990722710716,0.0014936470347427743,-0.000012082633562067368,-0.0014884794421914952,0.0010027341386315309,0.0008239981660159353,-0.0015530657694749106,0.00020802561615797507,0.0014176204183045842,-0.0011519019622018793,-0.0006537364115870995,0.001589219647786393,-0.00040267659810632063,-0.0013243112453736956,0.0012848371684575598,0.00047178205726226374,-0.0016013292823056078,0.0005930440357804405,0.0012097613546300848,-0.0013993470919285973,-0.00028080568809111265,0.001588974550466894, -0.0007761726582259892, -0.0010755160012907107,0.0014934988129685427,0.00008364156528367147,-0.0015521044591574695,0.00094918876280744,0.0009234360190147964,-0.0015656510730402305,0.00011675388673029073,0.0014910415080325629,-0.0011093447096898986,-0.0007556725955325025,0.001614482075996456,-0.0003173458452866235,-0.0014064804332869617,0.0012540619351463758,0.0005746374032369982,-0.0016390127160546362,0.0005150664666649428,0.0012994812972225718,-0.001380971819604787,-0.0003829684916221887,0.0016386248377328533,-0.0007068612053223135,-0.0011714569737996997,0.0014879537724232096,0.00018349241613511245,-0.0016130742041212014,0.0008897353845127244,0.0010241551652236242,-0.001573169931245789,0.00002081686083032396,0.00156249792648088,-0.0010608003173058424,-0.0008596351682610671,0.001635095919056224,-0.00022688170735919174,-0.0014874161892036053,0.0012173182770879943,0.0006802396901027961,-0.0016725471560730281,0.00043156656309144325,0.0013887281884543937,-0.0013567456272535535,-0.000488562090991066,0.0016847002857268295,-0.0006317250129069341,-0.0012677022891246742, 0.0014767734408503983,0.0002874095032710903,-0.0016711093432377332,0.0008242474956707887,0.0011259604917800744,-0.0015753649722662988,-0.00007976234293971042,0.0016317163708284598,-0.0010061089341634364,-0.000965457387776023,0.0016507893842002315,-0.00013126921096422736,-0.00156685626427808,0.0011744155665805965,0.0007884538653755591,-0.001701651183686849,0.00034249114254461993,0.0014772557201856835,-0.001326450264943872,-0.0005974859112116129,0.001726914880121763,-0.0005506732619276986,-0.001364026240751589,0.0014597156415146022,0.00039532892858703026,-0.0017259244452978689,0.0007525979032353132, 0.0012286512418043039,-0.001571974270654796, -0.00018495806565090112,0.0016984172294524755,-0.0009451089335665918,-0.0010729673989072401,0.001661285390290858,-0.000030494888622561294,-0.0016445320672257356,0.001125160337016451,0.0008991404543091707,-0.0017260374936996859,0.00024778742560025563,0.0015648113920925678,-0.0012898636368185866,-0.0007096357929777118,0.001764976278206037,-0.000463614391745148,-0.0014601972660317963,0.001436533428745077,0.0005071841776274079,-0.0017772274817679677,0.0006746575143988709,0.001332021321667042,-0.0015627303199562336,-0.0002947431093170613,0.0017623142104824195,-0.000877635647114571,-0.001181988705509238,0.0016663005993013656,0.00007545435059314086, -0.0017201684387403934,0.0010693549848473762,0.001012156201918434,-0.0017454120073067193,0.00014740178873852566,0.0016511364480105157,-0.0012467584920977201,-0.0008249048065848174,0.001798585026165915,-0.0003704547484103538,-0.0015559780588199226,0.0014069737911782346,0.0006229071044095671,-0.0018247191713425983,0.0005902938967497829,0.001435859602146698,-0.0015473587731087077,-0.0004090898882771942,0.0018231138360421866,-0.000803519856232126,-0.0012923406698205542,0.001665544220193843, 0.0001865925311464803,-0.0017934833168781646,0.0010067962149080377,0.001127354777251449,-0.0017594727667576057,0.00004127830710416601,0.0017359657324540131,-0.001196900849381846,-0.0009431841645044406,0.0018274335723978863,-0.0002710969955758156,-0.001651125635139938,0.0013707760827104086,0.0007424290519805918,-0.001868092139823284,0.0004993695764387755,0.0015399502087727235,-0.0015255769098995776,-0.0005279717534376103,0.00188051477612843,-0.0007225860004099564,-0.001403839039997842,0.0016587165444956085,0.00030293613040504176,-0.0018641872713166389,0.0009372731851724082,0.0012445875471416138,-0.0017679085719836606,-0.00007064294701475216,0.001819027449976196,-0.0011400481077436543,-0.0010643642464005963,0.0018512050388889978,-0.00016543824836932214,-0.0017453913400962337,0.0013276701328525117,0.0008656821293700336,-0.001907029860147505,0.0004017400295716867,0.0016440727958304524,-0.0014970917822124433,-0.0006513645170377981,0.0019342069907288739,-0.0006346500528023692,-0.0015162965072514853,0.0016455071643319288,0.0004245058420226093,-0.0019319828798616812,0.0008605652976278971,0.001363704428372864,-0.0017703973110033667,-0.00018842789163601208,0.001900042806508921,-0.001075946788139407,-0.0011883357535412034,0.0018695717046640144,-0.00005336788189923322,-0.0018385207818808719,0.0012773739777572452,0.0009926006702250087,-0.0019412053299194126,0.00029725131227621997,0.0017480027975165836,-0.0014615979771500486,-0.0007792482118121493,0.001983870642094953,-0.0005395170029725228,-0.001629523294508763,0.001625592812960617,0.0005513286258136866,-0.0019965639149130596,0.0007764395702116646,0.001484554829378281,-0.0017666039254031936,-0.00031215075946395925,0.001978725507397685,-0.0010043298361498824,-0.0013149910134956754,0.0018821931452067191,0.00006523504478390907,-0.0019302536757934271,0.0012195911401280484,0.0011231229042779956,-0.001970279434408502,0.0001857372625652008,0.001851511648473913,-0.001418774924698835,-0.0009116091262001133,0.0020291747306822954,-0.0004369778729492942,-0.001743327779203361,0.0015986347543832497,0.0006834400964042057,-0.002057614300462889,0.0006846475099158376,0.0016069886953264314,-0.0017561779389238092,-0.0004418968219652154,0.0020547810812882607, -0.000924913401277078,-0.0014442254610205064,0.0018887139590348678,0.00019050482219169304,-0.002020323577477306,0.0011540073696985783,0.0012571928801717372,-0.0019938989311213094,0.0000670161915541859,0.0019543669643717915,-0.0013682836596523155,-0.0010484421671582106,0.0020697753976417236,-0.0003268061754759243,-0.0018575171536167898,0.001564275631522286,0.0008208873153478847,-0.0021148067911734235,0.0005849213883968643,0.0017308576739633779,-0.0017387504603642919,-0.0005777655908633555,0.002127905991959581,-0.0008373929879720531,-0.0015759393274069797,0.0018887609964432857,0.0003225926717121879,-0.002108457479875406,0.001080286734963962,0.0013947626875822241,-0.002011693976974386,-0.000059113038232347526,0.0020563326712172494,-0.0013097629259197934,-0.0011897536146932108,0.002105313823211009,-0.00020875370130126231,-0.001971898127283933,0.0015221356607009724,0.0009637320672404105,-0.0021678013135685873,0.00047696979744531783,0.0018560164240317264,-0.0017139305505457741,-0.0007198745938893113,0.0021977864911968837,-0.0007414388479507661,-0.0017100395786922079,0.0018819399847623138,0.0004616709873947698,-0.0021943752423985775,0.000998066929991625,0.0015357950386406234,-0.00202327509979841,-0.0001928756751200614,0.002157169069536657,-0.0012428244836758834,-0.0013355643483812275,0.0021354136330099045,-0.00008254549414101212,-0.0020862776773738064,0.0014718080322355046,0.0011120547207021084,-0.0022162428945968968,0.0003604723308662394,0.001982324093842937,-0.0016813008154830246,-0.0008683638461671331,0.0022640971542257833,-0.0006366904504155093,-0.0018464421536347688,0.001867831417894018,0.0006079383796060455,-0.00227778881306316,0.0009069536255053196,0.0016802662841747563,-0.002028229491022795,-0.0003345266414862578,0.002256632816310448,-0.001167047444128274,-0.001485913646982005,0.0021596777018512894,0.000052126164564257466,-0.0022004638547519087,0.0014128533408520358,0.00126595880137988,-0.0022597590837185803,0.00023507319950235106,0.002109646005027821,-0.0016404120522096207,-0.0010234011704437892,0.0023264990242386147,-0.000522749824086804,-0.0019850745659288384,0.0018459855434035826,0.0007616256991975717,-0.002358401194327344,0.0008065136485335909,0.0018281699604801927,-0.0020261164640947796,-0.00048435720082909325,0.002354476803292009,-0.001081971410267293,-0.0016408636893334994,0.0021776842155512427,0.000195608986408136,-0.002314266655792915,0.0013447928226677994,0.001425576438384721,-0.0022979567497804884,0.00010037353418782036,0.002237855586182926,-0.0015907767271143437,-0.0011851885608449423,0.00238463727298552,-0.000399173509233965,-0.0021258789528946767,0.0018159162354147217,0.0009230032695451526,-0.0024359050902366397,0.0006962667161434248,0.001979520988699594,-0.0020164618809028695,-0.0006427029872792218,0.002450449904790678,-0.000987088141197932,-0.0018005049202373317,0.0021889818130413443,0.0003482994098796178,-0.0024274989730836936,0.0012671001137902057,0.001591074890516702,-0.0023304181012462908,-0.00004407793676921038,0.0023668366138935924,-0.0015318610054254897,-0.001353969839436181,0.002438138258662865,-0.00026546278450729853,-0.0022688156762296265,0.0017770934822175035,0.0010923896179530375,-0.002509981155198836,0.0005756753713361598,0.0021343606837074657,-0.0019987512926955397,-0.0008099537296424953,0.00254429656064475,-0.0008818313773363464,-0.0019649624919393944,0.002193083580589947,0.0005106532072058687,-0.0025399776422338678,0.0011791911639854604,0.0017626644181688235,-0.0023566957350428333,-0.00019879623938599445,0.0024964858354924813,-0.00146307496925485,-0.0015300399272331895,0.0024866058281607277,-0.00012105173600687797,-0.002413867611434128,0.0017289341386814685,0.0012701620832088038,-0.0025802957417004136,0.0004441326661138072,0.002292762775675713,-0.0019724214676952994,-0.0009865650998984582,0.0026357561503106584,-0.0007655643567507354,-0.0021344040543688977,0.002189459602589621,0.0006831984439252842,-0.002651524607416084,0.0010804118298358284,0.0019406078462819842, -0.0023763064613720563,-0.00036437405972063864,0.0026267160704977212,-0.0013837605529493208,-0.0017137561482247505,0.0025296166649512093,0.000034707394496151097,-0.002561045304065546,0.0016707904878263406,0.0014567697904262773,-0.002646498013376081,0.00030094699839199973,0.0024548407096760426,-0.0019368498777891524,-0.0011730732476570316,0.002724562100778038,-0.0006375644088929401,-0.002309049251439054,0.0021775276826245154,0.0008665514188886104,-0.00276196823553134,0.0009700225248251665,0.00212523227097055,-0.002388723573671563,-0.0005414988913268162,0.0027574599181244795,-0.0012931765775929575,-0.0019055521159241976,0.0025667144219387343,0.0002025623218156692,-0.00271039322720244,0.0016019360127129771,0.0016527496392930796,-0.0027082162479201343,0.00014532332177049004,0.002620756572964529,-0.0018913415811196205,-0.0013701127606773255,0.0028104406530286142,-0.0004970038162398186,-0.002489181395139813,0.0021566417250688395,0.0010614364138116946,-0.0028711448187372303,0.0008471791034790378,0.0023169435085278306,-0.00239336712625174,-0.000730974334831124,0.002888674239796538,-0.00119048006591996,-0.002105954930892777,0.002597402293865043,0.0003833832712040953,-0.0028619974513478742,0.0015215475837377457,0.001858746163983543,-0.0027650530968247786,-0.000023660310016934745,0.0027907321151725097,-0.0018351127513965395,-0.0015784390367687671,0.002893109186976975,-0.0003429258653320415,-0.0026751619463642935,0.0021260770975590824,0.0012687103586072714,-0.002978900318566654,0.0007109088807824078,0.0025162440868568238,-0.0023895916350289443,-0.0009337467671138778,0.0030203456428126102,-0.0010747027418019687,-0.0023156066647886274,0.0026211335666366594,0.0005781912888550294,-0.003015995144283809,0.0014286829949348902,0.00207553641687742,-0.0028165794891526013,-0.00020708225886448162,0.002965062486856878,-0.0017672698464407225,-0.0017989563928512285,0.0029722739702945705,-0.00017421463470532062,-0.0028674486500515845,0.0020850120581594692,0.001489393904630621,-0.00308509242353869,0.0005600803033798766,0.002723755860047883,-0.0023766704113479006,-0.0011509390262720404,0.0031524972711655,-0.0009447212311489739,-0.002535291452063633,0.00263729951680836,0.0007881940917086166,-0.003172586467121874,0.0013222524022365918,0.0023040614402268064,-0.0028623267544512165,-0.0004062147739228174,0.0031441335468466083,-0.0016867830453420921,-0.002032753715756122,0.00304762714776719,0.000010443459467399457,-0.003066618480062419,0.002032503997466113,0.0017247109421283146,-0.0031895930183452503,0.0003933642458396804,0.002940248723286922,-0.0023537754483585584,-0.0013838933649719738,0.0032851973223134404,-0.0007992189323923819,-0.002765969999908602,0.002645213801524339,0.0010148319025040486,-0.0033320496437458063,0.001200981675900577,0.0025454664754032564,-0.002901776380305369,-0.0006225720274057844,0.003328443908914386,-0.001592452066050137,-0.0022811501417381,0.0031188427180401414,0.00021260909091555508,-0.0032733969886735914,0.001967458769034038,0.0019761393762924065,-0.003292291199888101,0.00020918412732333507,0.003166677473009642,-0.0023199513626289466,-0.001634226794577885,0.003418569870328527,-0.0006366367365831966,-0.0030088240303863967,0.0026440921439657436,0.0012598366706164737,-0.0034947602842751633,0.00106336489986786,0.002801152903312241,-0.0029343465893604476,-0.0008579723517619143,0.003518633360445458,-0.001482861726775273,-0.0025457542387467462,0.0031855711431955994, 0.0004341542439747131,-0.0034886962922347376,0.0018885906894229385,0.0022454771055622153,-0.0033930970290240374,0.000005650913192192444,0.0034042296826839315,-0.0022740812867012975,-0.0019039032092644228,0.0035528088109410493,-0.00045510862731871024,-0.003265314194853117,0.0026330256291871613,0.0015253094743251686,-0.003661216486495206,0.000907602109727911,0.0030728461454490644,-0.0029593745820486613,-0.0011146198246699294,0.003715519963568881,-0.0013563235147126805,-0.002828541616136108,0.0032474320867874654,0.0006773466507477024,-0.0037136648619296303,0.001794369768372039, 0.0025349288117075377,-0.003491946285305541,-0.0002195226050794828,0.003654388684581852,-0.0022148417094277487,-0.002195328555105548,0.003688196091642576,-0.00025237648509922117,-0.0035372565233594256,0.002610945196425526,0.001813822974066847,-0.0038320718978704527,0.0007315166614984705,0.003362685595945985,-0.0029760927854200468,-0.0013952126006074046, 0.003920149160636109,-0.0012107977810680375,-0.0031319580560293077,0.0033040045506866306,0.0009449622704645561,-0.003949753693213065,0.0016829511968559049,0.002847221672715902, -0.0035888066087307,-0.0004691363725577702,0.003919017583745256,-0.0021406419055430667,-0.002511478137680439,0.0038251259134400675,-0.00002567584365816008,-0.0038269247725934235, 0.002576573809945749,0.0021285589266208304,-0.004008179917679837,0.0005324440447497479,0.003673345448960945,-0.0029835966784503266,-0.0017030888132177993,0.004133859743939733,-0.0010437886748348212,-0.0034590585677355223,0.0033548133355710426,0.0012404373066202102,-0.00419880557335494,0.0015520797741000489,0.003185761939967599,-0.003683685589540096,-0.0007466584551358059,0.004200473047897748,-0.0020495415108737936,-0.002856069512670352,0.003964137394679675,0.00022841962692444204,-0.004137189583835574,0.0025283610837445233,0.0024734956235666467,-0.004190653758641409,0.0003070799592868807,0.004008199614485406,-0.0029808005670774736,-0.0020424261917923845,0.004358373937524613,-0.0008522000264212038,-0.003813697915434429,0.0033993102084415457,0.001568076984060037,-0.004463177515213357,0.0013989582835381479,0.0035548503140859175,-0.003776641641035845,-0.0010564392749880028,0.004501762036534601,-0.00193913652081664,-0.0032338012457680614,0.004105959449068887,0.0005142133977710592,-0.004471710956287682,0.002464392436606433,0.002853667788669409,-0.004380949519793281,0.000051269145339538906,0.004371550776810554,-0.0029663757776967714,-0.002418519987341332,0.004595922632856262,-0.0006321341765754433,-0.004200796374251886,0.003436847291328689,0.0019333474571115053,-0.004745911775827162,0.001220062946280154,0.003959983656586641,-0.003867798924005278,-0.0014040124470628983,0.004826761733952966,-0.0018063987061387966,-0.003650688852895792,0.004251573658933666,0.0008371897247658116,-0.004835209581830059,0.002382260478291738,0.0032755339015728027,-0.004580983361802023,-0.0002402938291902078,0.004768954803937312,-0.0029386626286905145,-0.0028381775827841385,0.0048494230041166,-0.00037860558334096143,-0.004626717888750353,0.0034666387522217694,0.002343292225408638,-0.005050979654771991,0.0010108794041464586,0.004408286376083186,-0.003957368294960792,-0.0017965260083971817,0.005180534673883439,-0.001647444690657601,-0.0041145474877676315,0.0044023042767631845,0.0012044510685232089,-0.005233857607857714,0.0022788790314250107,0.0037475066359415068,-0.004793300436349143,-0.0005744978182697404,0.0052076903706089125, -0.002895542315413201,-0.0033102912790257503,0.0051227361018962095,-0.00008512393347294688,-0.005099820401838425,0.003487704444190258,0.0028071397807013206,-0.005383637093464895, 0.0007655162817272576,0.004909141618215742,-0.004045677424447762,-0.0022433751194695204,0.005569790989575016,-0.0014571959950690587,-0.004635702115674001,0.00455995019667687,0.001625363493193764,-0.005675855138867154,0.0021502076378049286,0.004280737739177666,-0.005021324495129137,-0.000960458061786816,0.005697455868660679,-0.0028342457756064757,-0.0038466908083075258,0.005421049995493061,0.0002569282692796016,-0.005631277434697048,0.0034987848582336096,0.0033372134707141746,-0.005750956990830926,0.00047612461878099527,0.005475139369483325,-0.004133215252738831,-0.002757155348611544,0.006003584843768021,-0.0012288649379606654,-0.00522806101919553,0.004726983799197774,0.0021125353435654417,-0.006172304493934396,0.001990832002869674,0.004890312209570127,-0.005269737180178703,-0.0014104976693106936,0.00625143335415501,-0.002751060266739111,-0.004463449147865363,0.005751466336222345,0.0006592523885541026,-0.0062363410064963706,0.003498208933595271,0.003950334848851842,-0.00616265012366927,0.00013199906500878158,0.006123544209342841,-0.004220699554409954,-0.003355143565738766,0.006494396399085612,-0.0009531526966266337,-0.005910789848249051,0.004906860016925527,0.0026833489096393676,-0.006738578726857215,0.0017933042142774152,0.005597124605185432,-0.005545073236956974,-0.0019416955511766076,0.006887966943517764,-0.0026408636819176584,-0.005182950281506819,0.006123928778520445,0.001138154612584251,-0.006936349874034027,0.0034836813230158603,0.004670063887855653,-0.0066323755725483016,-0.0002818630755707789,0.006878648581299539,-0.004309183074290739,-0.0040616818074015685,0.00705987387038743,-0.0006169522533267468,-0.006711018639932855,0.005104514344798969,0.0033624475453092463,-0.007396544559638518,0.0015470654647428096,0.006430940058342965,-0.0058566903088967965,-0.002578422795003113,0.00763331398680969,-0.0024963559927812322,-0.00603729362790659,0.006552750954942065,0.0017170617784943772,-0.0077620524740952095,0.0034519256225489995,0.00553042265382208,-0.007179919026460738,-0.0007871690515933735,0.007775704786464729,-0.004400226705933925,-0.00491217921746382,0.007725758930150321,-0.0002011587968342767,-0.007668410900047241,0.005327200054711453,0.0041859543335028716,-0.008178334646508209,0.0012366068812187032,0.007435615543206518,-0.006218420815770962,-0.0033566915953509562,0.008526364664715428,-0.0023067302785135637,-0.007074165127271463,0.007059250483814296,0.0024308841484176297,-0.008759371974002407,0.0033980556552814112,0.006582390854060322,-0.007834993073048638,-0.0014165550912911755,0.00886782717905591,-0.0044961948661743105,-0.005960176981576993,0.008531053351332505,0.0003232216797313565,-0.00884328286672188,0.005585968886779027,0.0052090134471317615,-0.009133094937371501,0.0008381560025934599,0.008678497434581005,-0.006651540203158853,-0.004332032288489173,0.009627195972428669,-0.002055240938339637,-0.008367546697812851,0.0076765515374687095,0.003334027568792855,-0.01],"x":[-709.0895,-708.481626247505,-707.87375249501,-707.2658787425149,-706.65800499002,-706.050131237525,-705.4422574850299,-704.8343837325349,-704.22650998004,-703.6186362275449,-703.0107624750499,-702.4028887225548,-701.7950149700599,-701.1871412175649,-700.5792674650698,-699.9713937125748,-699.3635199600799,-698.7556462075848,-698.1477724550898,-697.5398987025948,-696.9320249500998,-696.3241511976048,-695.7162774451098,-695.1084036926147,-694.5005299401198,-693.8926561876248,-693.2847824351297,-692.6769086826347,-692.0690349301398,-691.4611611776447,-690.8532874251497,-690.2454136726546,-689.6375399201597,-689.0296661676647,-688.4217924151696,-687.8139186626746,-687.2060449101797,-686.5981711576846,-685.9902974051896,-685.3824236526946,-684.7745499001996,-684.1666761477046,-683.5588023952096,-682.9509286427145,-682.3430548902196,-681.7351811377246,-681.1273073852295,-680.5194336327345,-679.9115598802396,-679.3036861277445,-678.6958123752495,-678.0879386227545,-677.4800648702595,-676.8721911177645,-676.2643173652694,-675.6564436127744,-675.0485698602795,-674.4406961077844,-673.8328223552894,-673.2249486027944,-672.6170748502994,-672.0092010978044,-671.4013273453094,-670.7934535928143,-670.1855798403194,-669.5777060878244,-668.9698323353293,-668.3619585828343,-667.7540848303394,-667.1462110778443,-666.5383373253493,-665.9304635728543,-665.3225898203593,-664.7147160678643,-664.1068423153692,-663.4989685628742,-662.8910948103793,-662.2832210578842,-661.6753473053892,-661.0674735528942,-660.4595998003992,-659.8517260479042,-659.2438522954092,-658.6359785429141,-658.0281047904192,-657.4202310379242,-656.8123572854291,-656.2044835329341,-655.5966097804392,-654.9887360279441,-654.3808622754491,-653.772988522954,-653.1651147704591,-652.5572410179641,-651.949367265469,-651.341493512974,-650.7336197604791,-650.125746007984,-649.517872255489,-648.909998502994,-648.302124750499,-647.694250998004,-647.086377245509,-646.4785034930139,-645.870629740519,-645.262755988024,-644.6548822355289,-644.0470084830339,-643.439134730539,-642.8312609780439,-642.2233872255489,-641.6155134730539,-641.0076397205589,-640.3997659680639,-639.7918922155689,-639.1840184630738,-638.5761447105789,-637.9682709580838,-637.3603972055888,-636.7525234530938,-636.1446497005988,-635.5367759481038,-634.9289021956088,-634.3210284431137,-633.7131546906188,-633.1052809381238,-632.4974071856287,-631.8895334331337,-631.2816596806388,-630.6737859281437,-630.0659121756487,-629.4580384231537,-628.8501646706587,-628.2422909181637,-627.6344171656687,-627.0265434131736,-626.4186696606787,-625.8107959081836,-625.2029221556886,-624.5950484031936,-623.9871746506986,-623.3793008982036,-622.7714271457086,-622.1635533932135,-621.5556796407186,-620.9478058882236,-620.3399321357285,-619.7320583832335,-619.1241846307386,-618.5163108782435,-617.9084371257485,-617.3005633732535,-616.6926896207585,-616.0848158682635,-615.4769421157685,-614.8690683632734,-614.2611946107785,-613.6533208582835,-613.0454471057884,-612.4375733532934,-611.8296996007984,-611.2218258483034,-610.6139520958084,-610.0060783433133,-609.3982045908184,-608.7903308383234,-608.1824570858283,-607.5745833333333,-606.9667095808384,-606.3588358283433,-605.7509620758483,-605.1430883233533,-604.5352145708583,-603.9273408183633,-603.3194670658683,-602.7115933133732,-602.1037195608783,-601.4958458083833,-600.8879720558882,-600.2800983033932,-599.6722245508982,-599.0643507984032,-598.4564770459082,-597.8486032934131,-597.2407295409182,-596.6328557884232,-596.0249820359281,-595.4171082834331,-594.8092345309382,-594.2013607784431,-593.5934870259481,-592.985613273453,-592.3777395209581,-591.7698657684631,-591.161992015968,-590.554118263473,-589.9462445109781,-589.338370758483,-588.730497005988,-588.122623253493,-587.514749500998,-586.906875748503,-586.299001996008,-585.6911282435129,-585.083254491018,-584.475380738523,-583.8675069860279,-583.2596332335329,-582.651759481038,-582.0438857285429,-581.4360119760479,-580.8281382235529,-580.2202644710579,-579.6123907185629,-579.0045169660679,-578.3966432135728,-577.7887694610779,-577.1808957085829,-576.5730219560878,-575.9651482035928,-575.3572744510979,-574.7494006986028,-574.1415269461078,-573.5336531936127,-572.9257794411178,-572.3179056886228,-571.7100319361277,-571.1021581836327,-570.4942844311378,-569.8864106786427,-569.2785369261477,-568.6706631736527,-568.0627894211577,-567.4549156686627,-566.8470419161677,-566.2391681636726,-565.6312944111777,-565.0234206586827,-564.4155469061876,-563.8076731536926,-563.1997994011977,-562.5919256487026,-561.9840518962076,-561.3761781437125,-560.7683043912176,-560.1604306387226,-559.5525568862275,-558.9446831337325,-558.3368093812376,-557.7289356287425,-557.1210618762475,-556.5131881237525,-555.9053143712575,-555.2974406187625,-554.6895668662675,-554.0816931137724,-553.4738193612775,-552.8659456087825,-552.2580718562874,-551.6501981037924,-551.0423243512975,-550.4344505988024,-549.8265768463074,-549.2187030938123,-548.6108293413174,-548.0029555888224,-547.3950818363273,-546.7872080838323,-546.1793343313374,-545.5714605788423,-544.9635868263473,-544.3557130738523,-543.7478393213573,-543.1399655688623,-542.5320918163673,-541.9242180638722,-541.3163443113773,-540.7084705588823,-540.1005968063872,-539.4927230538922,-538.8848493013973,-538.2769755489022,-537.6691017964072,-537.0612280439121,-536.4533542914172,-535.8454805389222,-535.2376067864271,-534.6297330339321,-534.0218592814372,-533.4139855289421,-532.8061117764471,-532.1982380239521,-531.5903642714571,-530.9824905189621,-530.374616766467,-529.766743013972,-529.1588692614771,-528.550995508982,-527.943121756487,-527.335248003992,-526.727374251497,-526.119500499002,-525.511626746507,-524.9037529940119,-524.295879241517,-523.688005489022,-523.0801317365269,-522.4722579840319,-521.864384231537,-521.2565104790419,-520.6486367265469,-520.0407629740519,-519.4328892215569,-518.8250154690619,-518.2171417165669,-517.6092679640718,-517.0013942115769,-516.3935204590819,-515.7856467065868,-515.1777729540918,-514.5698992015969,-513.9620254491018,-513.3541516966068,-512.7462779441117,-512.1384041916168,-511.5305304391218,-510.92265668662674,-510.31478293413176,-509.7069091816367,-509.09903542914174,-508.4911616766467,-507.8832879241517,-507.2754141716567,-506.6675404191617,-506.05966666666666,-505.4517929141717,-504.84391916167664,-504.23604540918166,-503.6281716566866,-503.02029790419164,-502.4124241516966,-501.8045503992016,-501.1966766467066,-500.5888028942116,-499.98092914171656,-499.3730553892216,-498.76518163672654,-498.15730788423156,-497.5494341317365,-496.94156037924154,-496.3336866267465,-495.7258128742515,-495.1179391217565,-494.5100653692615,-493.90219161676646,-493.2943178642715,-492.68644411177644,-492.07857035928146,-491.4706966067864,-490.86282285429144,-490.2549491017964,-489.6470753493014,-489.0392015968064,-488.4313278443114,-487.82345409181636,-487.2155803393214,-486.60770658682634,-485.99983283433136,-485.3919590818363,-484.78408532934134,-484.1762115768463,-483.5683378243513,-482.9604640718563,-482.3525903193613,-481.74471656686626,-481.1368428143713,-480.52896906187624,-479.92109530938126,-479.3132215568862,-478.70534780439124,-478.0974740518962,-477.4896002994012,-476.8817265469062,-476.2738527944112,-475.66597904191616,-475.0581052894212,-474.45023153692614,-473.84235778443116,-473.2344840319361,-472.62661027944114,-472.0187365269461,-471.4108627744511,-470.8029890219561,-470.1951152694611,-469.58724151696606,-468.9793677644711,-468.37149401197604,-467.76362025948106,-467.155746506986,-466.54787275449104,-465.939999001996,-465.332125249501,-464.724251497006,-464.116377744511,-463.50850399201596,-462.900630239521,-462.29275648702594,-461.68488273453096,-461.0770089820359,-460.46913522954094,-459.8612614770459,-459.2533877245509,-458.6455139720559,-458.0376402195609,-457.42976646706586,-456.8218927145709,-456.21401896207584,-455.60614520958086,-454.9982714570858,-454.39039770459084,-453.7825239520958,-453.1746501996008,-452.5667764471058,-451.9589026946108,-451.35102894211576,-450.7431551896208,-450.13528143712574,-449.52740768463076,-448.9195339321357,-448.31166017964074,-447.7037864271457,-447.0959126746507,-446.4880389221557,-445.8801651696607,-445.27229141716566,-444.6644176646707,-444.05654391217564,-443.44867015968066,-442.8407964071856,-442.23292265469064,-441.6250489021956,-441.0171751497006,-440.4093013972056,-439.8014276447106,-439.19355389221556,-438.5856801397206,-437.97780638722554,-437.36993263473056,-436.7620588822355,-436.15418512974054,-435.5463113772455,-434.9384376247505,-434.3305638722555,-433.7226901197605,-433.11481636726546,-432.5069426147705,-431.89906886227544,-431.29119510978046,-430.6833213572854,-430.07544760479044,-429.4675738522954,-428.8597000998004,-428.2518263473054,-427.6439525948104,-427.03607884231536,-426.4282050898204,-425.82033133732534,-425.21245758483036,-424.6045838323353,-423.99671007984034,-423.3888363273453,-422.7809625748503,-422.1730888223553,-421.5652150698603,-420.95734131736526,-420.3494675648703,-419.74159381237524,-419.13372005988026,-418.5258463073852,-417.91797255489024,-417.3100988023952,-416.7022250499002,-416.0943512974052,-415.4864775449102,-414.87860379241516,-414.2707300399202,-413.66285628742514,-413.05498253493016,-412.4471087824351,-411.83923502994014,-411.2313612774451,-410.6234875249501,-410.0156137724551,-409.4077400199601,-408.79986626746506,-408.1919925149701,-407.58411876247504,-406.97624500998006,-406.368371257485,-405.76049750499004,-405.152623752495,-404.54475,-403.936876247505,-403.32900249501,-402.72112874251496,-402.11325499002,-401.50538123752494,-400.89750748502996,-400.2896337325349,-399.68175998003994,-399.0738862275449,-398.4660124750499,-397.8581387225549,-397.2502649700599,-396.64239121756486,-396.0345174650699,-395.42664371257484,-394.81876996007986,-394.2108962075848,-393.60302245508984,-392.9951487025948,-392.3872749500998,-391.7794011976048,-391.1715274451098,-390.56365369261476,-389.9557799401198,-389.34790618762474,-388.74003243512976,-388.1321586826347,-387.52428493013974,-386.9164111776447,-386.3085374251497,-385.7006636726547,-385.0927899201597,-384.48491616766466,-383.8770424151697,-383.26916866267464,-382.66129491017966,-382.0534211576846,-381.44554740518964,-380.8376736526946,-380.2297999001996,-379.6219261477046,-379.0140523952096,-378.40617864271456,-377.7983048902196,-377.19043113772454,-376.58255738522956,-375.9746836327345,-375.36680988023954,-374.7589361277445,-374.1510623752495,-373.5431886227545,-372.9353148702595,-372.32744111776447,-371.7195673652695,-371.11169361277445,-370.50381986027946,-369.8959461077844,-369.28807235528944,-368.6801986027944,-368.0723248502994,-367.4644510978044,-366.8565773453094,-366.24870359281437,-365.6408298403194,-365.03295608782435,-364.42508233532936,-363.8172085828343,-363.20933483033934,-362.6014610778443,-361.9935873253493,-361.3857135728543,-360.7778398203593,-360.16996606786427,-359.5620923153693,-358.95421856287425,-358.34634481037926,-357.7384710578842,-357.13059730538924,-356.5227235528942,-355.9148498003992,-355.3069760479042,-354.6991022954092,-354.09122854291417,-353.4833547904192,-352.87548103792415,-352.26760728542916,-351.6597335329341,-351.05185978043914,-350.4439860279441,-349.8361122754491,-349.2282385229541,-348.6203647704591,-348.01249101796407,-347.4046172654691,-346.79674351297405,-346.18886976047907,-345.580996007984,-344.97312225548905,-344.365248502994,-343.757374750499,-343.149500998004,-342.541627245509,-341.93375349301397,-341.325879740519,-340.71800598802395,-340.11013223552897,-339.5022584830339,-338.89438473053895,-338.2865109780439,-337.6786372255489,-337.0707634730539,-336.4628897205589,-335.85501596806387,-335.2471422155689,-334.63926846307385,-334.03139471057887,-333.4235209580838,-332.81564720558885,-332.2077734530938,-331.5998997005988,-330.9920259481038,-330.3841521956088,-329.77627844311377,-329.1684046906188,-328.56053093812375,-327.95265718562877,-327.3447834331337,-326.73690968063875,-326.1290359281437,-325.5211621756487,-324.9132884231537,-324.3054146706587,-323.69754091816367,-323.0896671656687,-322.48179341317365,-321.87391966067867,-321.2660459081836,-320.65817215568865,-320.0502984031936,-319.4424246506986,-318.8345508982036,-318.2266771457086,-317.61880339321357,-317.0109296407186,-316.40305588822355,-315.79518213572857,-315.1873083832335,-314.57943463073855,-313.9715608782435,-313.3636871257485,-312.7558133732535,-312.1479396207585,-311.54006586826347,-310.9321921157685,-310.32431836327345,-309.71644461077847,-309.10857085828343,-308.50069710578845,-307.8928233532934,-307.2849496007984,-306.6770758483034,-306.0692020958084,-305.46132834331337,-304.8534545908184,-304.24558083832335,-303.63770708582837,-303.02983333333333,-302.42195958083835,-301.8140858283433,-301.2062120758483,-300.5983383233533,-299.9904645708583,-299.38259081836327,-298.7747170658683,-298.16684331337325,-297.55896956087827,-296.95109580838323,-296.34322205588825,-295.7353483033932,-295.1274745508982,-294.5196007984032,-293.9117270459082,-293.30385329341317,-292.6959795409182,-292.08810578842315,-291.48023203592817,-290.87235828343313,-290.26448453093815,-289.6566107784431,-289.0487370259481,-288.4408632734531,-287.8329895209581,-287.22511576846307,-286.6172420159681,-286.00936826347305,-285.40149451097807,-284.79362075848303,-284.18574700598805,-283.577873253493,-282.96999950099803,-282.362125748503,-281.754251996008,-281.14637824351297,-280.538504491018,-279.93063073852295,-279.32275698602797,-278.71488323353293,-278.10700948103795,-277.4991357285429,-276.89126197604793,-276.2833882235529,-275.6755144710579,-275.06764071856287,-274.4597669660679,-273.85189321357285,-273.24401946107787,-272.63614570858283,-272.02827195608785,-271.4203982035928,-270.81252445109783,-270.2046506986028,-269.5967769461078,-268.98890319361277,-268.3810294411178,-267.77315568862275,-267.16528193612777,-266.55740818363273,-265.94953443113775,-265.3416606786427,-264.73378692614773,-264.1259131736527,-263.5180394211577,-262.91016566866267,-262.3022919161677,-261.69441816367265,-261.08654441117767,-260.47867065868263,-259.87079690618765,-259.2629231536926,-258.65504940119763,-258.0471756487026,-257.4393018962076,-256.83142814371257,-256.2235543912176,-255.61568063872255,-255.00780688622754,-254.39993313373253,-253.79205938123752,-253.1841856287425,-252.5763118762475,-251.9684381237525,-251.36056437125748,-250.75269061876247,-250.14481686626746,-249.53694311377245,-248.92906936127744,-248.32119560878243,-247.71332185628742,-247.1054481037924,-246.4975743512974,-245.8897005988024,-245.28182684630738,-244.67395309381237,-244.06607934131736,-243.45820558882235,-242.85033183632734,-242.24245808383233,-241.63458433133732,-241.0267105788423,-240.4188368263473,-239.8109630738523,-239.20308932135728,-238.59521556886227,-237.98734181636726,-237.37946806387225,-236.77159431137724,-236.16372055888223,-235.55584680638722,-234.9479730538922,-234.3400993013972,-233.7322255489022,-233.12435179640718,-232.51647804391217,-231.90860429141716,-231.30073053892215,-230.69285678642714,-230.08498303393213,-229.47710928143712,-228.8692355289421,-228.2613617764471,-227.6534880239521,-227.04561427145708,-226.43774051896207,-225.82986676646706,-225.22199301397205,-224.61411926147704,-224.00624550898203,-223.39837175648702,-222.790498003992,-222.182624251497,-221.574750499002,-220.96687674650698,-220.35900299401197,-219.75112924151696,-219.14325548902195,-218.53538173652694,-217.92750798403193,-217.31963423153692,-216.7117604790419,-216.1038867265469,-215.4960129740519,-214.88813922155688,-214.28026546906187,-213.67239171656686,-213.06451796407185,-212.45664421157684,-211.84877045908183,-211.24089670658682,-210.6330229540918,-210.0251492015968,-209.4172754491018,-208.80940169660678,-208.20152794411177,-207.59365419161676,-206.98578043912175,-206.37790668662674,-205.77003293413173,-205.16215918163672,-204.55428542914171,-203.9464116766467,-203.3385379241517,-202.73066417165668,-202.12279041916167,-201.51491666666666,-200.90704291417165,-200.29916916167664,-199.69129540918163,-199.08342165668662,-198.47554790419161,-197.8676741516966,-197.2598003992016,-196.65192664670658,-196.04405289421157,-195.43617914171656,-194.82830538922155,-194.22043163672654,-193.61255788423153,-193.00468413173652,-192.39681037924151,-191.7889366267465,-191.1810628742515,-190.57318912175649,-189.96531536926148,-189.35744161676647,-188.74956786427146,-188.14169411177645,-187.53382035928144,-186.92594660678643,-186.31807285429142,-185.7101991017964,-185.1023253493014,-184.49445159680639,-183.88657784431138,-183.27870409181637,-182.67083033932136,-182.06295658682635,-181.45508283433134,-180.84720908183633,-180.23933532934132,-179.6314615768463,-179.0235878243513,-178.41571407185629,-177.80784031936128,-177.19996656686627,-176.59209281437126,-175.98421906187625,-175.37634530938124,-174.76847155688623,-174.16059780439122,-173.5527240518962,-172.9448502994012,-172.3369765469062,-171.72910279441118,-171.12122904191617,-170.51335528942116,-169.90548153692615,-169.29760778443114,-168.68973403193613,-168.08186027944112,-167.4739865269461,-166.8661127744511,-166.2582390219561,-165.65036526946108,-165.04249151696607,-164.43461776447106,-163.82674401197605,-163.21887025948104,-162.61099650698603,-162.00312275449102,-161.395249001996,-160.787375249501,-160.179501497006,-159.57162774451098,-158.96375399201597,-158.35588023952096,-157.74800648702595,-157.14013273453094,-156.53225898203593,-155.92438522954092,-155.3165114770459,-154.7086377245509,-154.1007639720559,-153.49289021956088,-152.88501646706587,-152.27714271457086,-151.66926896207585,-151.06139520958084,-150.45352145708583,-149.84564770459082,-149.2377739520958,-148.6299001996008,-148.0220264471058,-147.41415269461078,-146.80627894211577,-146.19840518962076,-145.59053143712575,-144.98265768463074,-144.37478393213573,-143.76691017964072,-143.1590364271457,-142.5511626746507,-141.9432889221557,-141.33541516966068,-140.72754141716567,-140.11966766467066,-139.51179391217565,-138.90392015968064,-138.29604640718563,-137.68817265469062,-137.0802989021956,-136.4724251497006,-135.8645513972056,-135.25667764471058,-134.64880389221557,-134.04093013972056,-133.43305638722555,-132.82518263473054,-132.21730888223553,-131.60943512974052,-131.0015613772455,-130.3936876247505,-129.7858138722555,-129.17794011976048,-128.57006636726547,-127.96219261477046,-127.35431886227545,-126.74644510978044,-126.13857135728543,-125.53069760479042,-124.92282385229541,-124.3149500998004,-123.70707634730539,-123.09920259481038,-122.49132884231537,-121.88345508982036,-121.27558133732535,-120.66770758483034,-120.05983383233533,-119.45196007984032,-118.84408632734531,-118.2362125748503,-117.62833882235529,-117.02046506986028,-116.41259131736527,-115.80471756487026,-115.19684381237525,-114.58897005988024,-113.98109630738523,-113.37322255489022,-112.76534880239521,-112.1574750499002,-111.54960129740519,-110.94172754491018,-110.33385379241517,-109.72598003992016,-109.11810628742515,-108.51023253493014,-107.90235878243513,-107.29448502994012,-106.68661127744511,-106.0787375249501,-105.47086377245509,-104.86299001996008,-104.25511626746507,-103.64724251497006,-103.03936876247505,-102.43149500998004,-101.82362125748503,-101.21574750499002,-100.60787375249501,-100.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json index 80bf5fec0d05..660bd264e972 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json @@ -1 +1 @@ -{"expected":[0.01,-0.0033746253790549624,-0.007622018879319136,0.008433494207046853,0.001889004559574384,-0.00959763287124854,0.0045548640918855405,0.00643775365526481,-0.008809666729723751,-0.000468327621357804,0.009021878600127204,-0.005574489042175532,-0.005188845438344393,0.008984167322636266,-0.0008822361340235784,-0.008293387424072578,0.006423300008544533,0.00390249149724315,-0.00896491048167861,0.0021410030233847974,0.007434361161677098,-0.0070945391115908776,-0.002605153786703288,0.0087627445091276,-0.003288961215575298,-0.006468148173580897,0.007584861802057748,0.001322173628641932,-0.008391166572328667,0.004309966210916445,0.005418829024186577,-0.007894256760515254,-0.00007741137080101638,0.00786600339799083,-0.005190888286691567,-0.004310799964470551,0.008025916288409504,-0.0011070829665529621,-0.00720506320694166,0.0059217096985319595,0.0031683612909959584,-0.007986059728650302,0.002211362742764597,0.006427764980119337,-0.006495570438395232,-0.002015317447555855,0.007783713328832359,-0.003217836901260242,-0.005554751504162455,0.0069087623461371135,0.0008745954285802678,-0.007430450743094688,0.004111477604627807,0.004607492872683843,-0.007160672340873091,0.00023211237554265316,0.006940099051174486,-0.004879980448715341,-0.0036078872171936413,0.007253676467270752,-0.0012846752729141803,-0.006328415747875719,0.005513875305599021,0.002577865411407692,-0.007192987327410233,0.002264816300126859,0.005612742616618405,-0.00600658676302084,-0.00153900633791215,0.006986458278165595,-0.0031563648778605274,-0.004811642742160233,0.006354444046560059,0.0005121690322926351,-0.006644348505237545,0.003945466543090176,0.003944527136917611,-0.006556641214801915,0.00048285236585137326,0.00617905372724083,-0.0046207470221406475,-0.0030312775513807594,0.006615149291794282,-0.0014276454140797585,-0.0056048078272581455,0.005173428759011166,0.002091872012714056,-0.006534582830377916,0.0023054630602133983,0.004937361147319414,-0.005597398884782191,-0.0011460194895600748,0.006322024170613043,-0.003101470027877635,-0.004193641507483116,0.005889228490530021,0.00021280982010589674,-0.005986809356747114,0.003802948422578564,0.0033914042216771465,-0.006048143932118084,0.0006896153286842611,0.005540280292535628,-0.004399459866491001,-0.0025488774753354643,0.006075951734989388,-0.0015443651716269698,-0.004995508238426995,0.0048829622877020395,0.00168440940535812,-0.005976919465789322,0.002336071445060531,0.00436699417707134,-0.005247880329196343,-0.0008161230833134467,0.005757615681360099,-0.003051124871582776,-0.003670351889638602,0.005491129188702045,-0.00003841464759629526,-0.005426712741594785,0.0036778730471761206,0.002921979790357042,-0.005612092537049578,0.000862504886225179,0.004994756869438384,-0.004206777101008821,-0.002138727658395496,0.005612555974717905,-0.001640603793679084,-0.00447391034918115,0.0046305252678440646,0.0013375643846813207,-0.005496598259191423,0.002358580514084293,0.003877671165064496,-0.004944102324323375,-0.0005352527185069069,0.005270443255972866,-0.003003941903847979,-0.003220575689940079,0.005144814658170978,-0.000251963241123376,-0.004942276221088671,0.0035660207544181725,0.002517890234124859,-0.005232271548429072,0.0010086524055568644,0.0045220286015450195,-0.004036124920485116,-0.001785297355488709,0.0052083240203809455,-0.001720467938676326,-0.004021136032862963,0.004407645528211705,0.00103858281312451,-0.005076963386680254,0.002374390930557525,0.003452274611672536,-0.004676123221830755,-0.000293328920583648,0.004844182283096554,-0.0029589426438823055,-0.002829080820353618,0.004839272196996332,-0.0004353801754854635,-0.004517801641045534,0.00346436212758138,0.0021658606757821207,-0.004896962550898842,0.0011332360936159342,0.0041072675988673485,-0.003882746693639497,-0.0014772937632670537,0.004851162237974012,-0.001786961913692683,-0.003623422830336836,0.004208153488994983,0.0007781377996418393,-0.004705840642293678,0.0023845416920389327,0.0030782571544993855,-0.004436661150818149,-0.00008293924808134595,0.004466836450525034,-0.0029154200873884777,-0.0024846425797872,0.00456639129577918,-0.000594244714662356,-0.004141693120882942,0.003370669019868411,0.001856058123530432,-0.004597490347915285,0.0012401078946157153,0.0037394657832780214,-0.003743118961844232,-0.0012063098334202998,0.004532072941424919,-0.001842335860794209,-0.003270503864866559,0.004027453169436672,0.0005492514201438184,-0.004374128830803134,0.0023898217124098888,0.0027462141060571542,-0.004220263892919906,0.0001014892078418608,0.004129395888683835,-0.002872853287528974,-0.002178808909098591,0.004320070339086555,-0.000732772431855468,-0.0038052023601414537,0.0032832688759818953,0.0015810451408781274,-0.004327298885133179,0.0013321936644063676,0.0034102820608713055,-0.003614579152420938,-0.0009659585916019596,0.0042442267481438865,-0.001888309967606561,-0.002954566646910544,0.003862053730280365,0.0003465992716145695,-0.004074890983889265,0.002390842639114913,0.002448959438274671,-0.004022771440620501,0.00026422738837701204,0.0038249653113078845,-0.002830852389397747,-0.001905095542674953,0.004095634147866093,-0.0008542085792722223,-0.003501607823646661,0.0032008843221029396,0.0013350931947516316,-0.004081344613809632,0.0014117568426467166,0.0031132831440029004,-0.003495080560118109,-0.000751301299248045,0.0039823495988200956,-0.0019262233125530552,-0.0026695630035545965,0.0037092590208348468,0.00016604814335501283,-0.003802750032448531,0.00238808774933818,0.0021809095582688387,-0.0038409575222055825,0.0004086038740077174,0.003548180682849912,-0.00278912216160145,-0.0016584460091960713,0.0038894430832158615,-0.0009610928562487279,-0.003225662294979352,0.0031225253816182913,0.0011137192491960006,-0.003855686955326962,0.0014805770200375756,0.0028434296419308706,-0.003383026569449437,-0.0005584593235005616,0.0037423065725655123,-0.0019571353282153824,-0.002410739334022185,0.0035669562592685992,0.000004340463089199634,-0.003553476225131052,0.002381945611343005,0.0019376615497718379,-0.003672284215497602,0.0005372516695656682,0.0032948088333592442,-0.0027474371465572647,-0.0014348600868823633,0.0036986240233832955,-0.0010554420895805701,-0.0029732117153399543,0.003047415214307232,0.0009133652765595503,-0.0036472049859943957,0.0015400738095075364,0.002596719693376865,-0.003277155743961312,-0.0003843443595345254,0.003520812524978191,-0.001981896589820398,-0.0021743092640833387,0.0034334687762567285,-0.0001411261126639814,-0.003323698874081737,0.0023727337708766235,0.0017156978580311923,-0.003514730101806216,0.0006522814102675338,0.0030614664015164317,-0.002705624325836564,-0.0012311324328946071,0.003520881067978818,-0.0011388790574619577,-0.002740926389843438,0.0029749378100310947,0.0007311717760163106,-0.0034533971691657716,0.0015913946155659104,0.0023699365314837134,-0.0031764604545482227,-0.00022646693702463983,0.0033152266358330964,-0.0020011992261728833,-0.001957220756854529,0.0033074512487201294,-0.00027245583099065574,-0.0031107008045504225,0.002360715744923774,0.0015121752946147878,-0.0033666674657802775,0.0007554053700443383,0.00284541857387878,-0.002663550773165199,-0.001044665065235685,0.0033543596961918744,-0.001212725111614123,-0.002526107720106278,0.002904600416141118,0.0005648146273983649,-0.0032722370521445954,0.0016354780062711222,0.002160466254018691,-0.003080128151737152,-0.000082797930510248,0.0031234037829790946,-0.002015613480508536,-0.00175698733817825,0.0031878137718127416,-0.0003913689234629894,-0.002912269083932181,0.0023461134262495863,0.0013247715479915683,-0.003226772947196665,0.0008480278373982253,0.0026444323795080907,-0.002621114694188058,-0.0008733304451363718,0.0031975475558126023,-0.0012780679337996753,-0.0023265468088722987,0.0028360060700229743,0.0004123855362323381,-0.003102067489642725,0.0016731002473195156,0.001966164025988275,-0.002987498252220287,0.00004833328785673103,0.002943585209223255,-0.002025614663560462,-0.0015715637451245235,0.003073665910135281,-0.0004992857952449686,-0.002726584833597506,0.0023291162790907956,0.0011515717076079155,-0.0030939614708402024,0.0009313120391705081,0.0024566680294338806,-0.002578238813341514,-0.000715369914541897,0.0030492008505353272,-0.0013358118795590603,-0.002140419386636313,0.0027688331984681023,0.00027230306044425507,-0.0029415219008097995,0.0017049099941755753,0.0017852543316613596,-0.0028980299980183146,0.00016831488624009116,0.0027743168705652277,-0.0020316033182352874,-0.0013992529276129046,0.002964274848589291,-0.0005973900770956857,-0.0025521406810003954,0.0023098882513615314,0.0009909831370976026,-0.0029673366695994975,0.0010062304166468866,0.002280597264378061,-0.002534865417417635,-0.0005693172763382291,0.0029082889338595324,-0.0013867159137674443,-0.0019662066190262472,0.0027028202465121734,0.00014324546521498255,-0.0027894648250310636,0.001731454512834913,0.0016162555759663638,-0.0028112781592852815,0.0002783101226767328,0.002614387616968737,-0.002033920507690205,-0.001238635550763712,0.002859033660935118,-0.0006866764820938022,-0.002387678084620776,0.0022885730357688917,0.000841670763073588,-0.0028461531856580177,0.0010736028917752718,0.002114941187700384,-0.002490952588011033,-0.0004339405427495209,0.0027739520605998113,-0.0014314225634394463,-0.0018026346487828543,0.0026377539430179966,0.000024099403604626595,-0.0026449464716313343,0.0017531997460879121,0.0014579223699989954,-0.002726874431534224,0.00037930144622244015,0.002462781801289147,-0.0020328595469610695,-0.0010885158914870888,0.0027574369494554997,-0.0007679875735691736,-0.0022321391627136557,0.0022652981196188125,0.000702507285968018,-0.002729787653816416,0.0011341263410876764,0.0019586223638290937,-0.00244647130004073,-0.0003081970043560719,0.002645468786255706,-0.0014704802733878732,-0.0016486278957671848,0.0025734602342109597,-0.00008607976421486678,-0.0025071675622243285,0.0017705458451201643,0.0013092008421668711,-0.002644513025712797,0.0004721246781596627,0.0023186425320669743,-0.002028675104990842,-0.0009478798462329672,0.002659061929424631,-0.0008420423294057347,-0.0020846292530919777,0.0022401779340787444,0.0005725344463660855,-0.002617716117379471,0.0011883975459047247,0.00181072750167585,-0.002401403159898697,-0.0001911981961946872,0.00252223053520494,-0.00150436085260325,-0.0015032725941173384,0.0025097972004579777,-0.00018809898018486252,-0.0023754518425589425,0.0017838393165831475,0.0011691936682461637,-0.0025639393856203506,0.0005574957818355751,0.002181242879348386,-0.002021590337661687,-0.0008158619997894686,0.0025635535866886197,-0.0009094585606012332,-0.0019443875126433023,0.0022133163256927288,0.00045093258457585547,-0.002509496269414901,0.0012369312421345489,0.0016704780892682278,-0.0023557386219282845,-0.00008218230752615857,0.0024037215609318827,-0.001533473223012741,-0.001365788039216979,0.0024466494652647408,-0.0002826519588731703,-0.0022492243779544466,0.0017933826134725838,0.0010371324395297126,-0.002484941265751537,0.0006360320298354078,0.002049963093101947,-0.0020118025292847827,-0.0006917195525119262,0.0024706129178784933,-0.0009707706722735125,-0.0018107636100686472,0.002184808512062205,0.00033699649284626125,-0.002404753355323932,0.0012801744470596899,0.001537207069170819,-0.0023094755667628676,0.000019507746753487322,0.002289503007619787,-0.0015581743520317768,-0.0012355037060267395,0.0023839237396364385,-0.00037033867283502197,-0.0021279942584771353,0.0017994417741892838,0.0009123556323570743,-0.002407341610307096,0.0007082688896385101,0.001924272416723798,-0.001999487592035099,-0.0005748114948746359,0.002379987528811685,-0.0010264438571449548,-0.001683199086011227,0.0021547426407978825,0.00023011609295240612,-0.0023031688829249506,0.0013185179278607563,0.001410340151546865,-0.00226261815632344,0.00011444190350763413,0.0021792001238734966,-0.0015787780180434162,-0.0011118408849488351,0.002321545239227773,-0.00045168099825255704,-0.0020113407007838497,0.0018022525561288292,0.0007942908968153683,-0.0023309928205821405,0.0007746736043426581,0.001803714447662988,-0.0019848036822188407,-0.0004645818368192538,0.0022914640549012346,-0.0010768855293036537,-0.0015612123237860743,0.0021232010403929814,0.0001297608503656892,-0.002204471506490353,0.0013523054543425155,0.0012893807223029292,-0.0022151759024297097,0.0002031171523614491,0.002072491922429874,-0.0015955618922985336,-0.0009942978268588042,0.002259454778879646,-0.0005271353749706217,-0.0018989017911572215,0.0018020253971051474,0.0006824407072985435,-0.0022557721026356748,0.0008356561984161872,0.0016878952618040433,-0.0019678941272325413,-0.00036054599946802374,0.0022048620023513398,-0.001122454603471095,-0.0014443863389041823,0.0020902612296847677,0.0000354671083238826,-0.0021084296094975655,0.0013818413183534276,0.0011738975633771888,-0.002167162901846324,0.0002859690931723308,0.0019691027549326263,-0.0016087733011967177,-0.000882437638330581,0.0021976063975728925,-0.0005971031245060763,-0.0017903653004237641,0.001798949456116054,0.0005763706527763578,-0.0021815776628847307,0.0008915784597268142,0.0015764737099661576,-0.0019488898098829778,-0.0002622796945123937,0.002120028706833092,-0.0011634690778397434,-0.00133235878806569,0.002055996736555064,-0.00005317227695481571,-0.0020148452260280994,0.0014073964858683516,0.0010635147912839954,-0.002118597202116705,0.0003633814063964488,0.0018687953986439004,-0.001618633945617953,-0.0007758783501296758,0.0021359654021759706,-0.0006619389156958006,-0.001685461137567241,0.0017931959250680322,0.0004756998166979747,-0.002108325574690938,0.0009427613181347118,0.0014691534354072185,-0.0019279111220849552,-0.00016940977630202798,0.0020368351781634214,-0.0012002122704387638,-0.0012248137397222571,0.0020204777647040138,-0.0001365164731501839,-0.0019235490254383598,0.001429213661905231,0.0009579035592634622,-0.0020695002709836996,0.00043569366276668194,0.001771365346153946,-0.0016253437895462407,-0.0006742847164405341,0.002074506744423042,-0.0007219577539746244,-0.001583955109401834,0.0017849207587636168,0.0003800928237751474,-0.0020359471799921113,0.0009894909439983504,0.001365676265258973,-0.0019050695742462466,-0.00008160667009977071,0.0019551726527607546,-0.0012329379787893553,-0.0011214748532388037,0.0019837717385284585,-0.00021488374589178938,-0.0018343961478594086,0.0014475114846589161,0.0008567751719113934,-0.0020198965484687923,0.0005032078018533034,0.0016766360593018427,-0.0016290842822227678,-0.0005773614024287887,0.0020132136649767046,-0.0007774407854154982,-0.001485643728726439,0.0017742669373665958,0.00028925322595191566,-0.0019643869206406876,0.001032023817418387,0.0012658167066469663,-0.0018804691274104883,0.0000014219314192059985,0.0018749497155054894,-0.0012618747724836893,-0.0010220996923464246,0.0019459437495293614,-0.0002885573539851103,-0.0017472627252814671,0.0014624880173070333,0.000759875338937036,-0.001969813065372363,0.0005661935363351936,0.0015844550012379893,-0.0016300210419186326,-0.00048484729311842076,0.0019520765530275522,-0.0008286401427992488,-0.0013903498698962624,0.001761366350587126,0.0002029179715772622,-0.0018936005171811343,0.001070590964359338,0.0011693773369627605,-0.0018542073006706367,0.00007993634436630187,0.001796089882737794,-0.001287229582897214,-0.0009264749580346582,0.00190705692264887,-0.000357790488405239,-0.0016620429587037447,0.001474323669667731,0.000666979353589724,-0.001919279115500805,0.0006248928836065682,0.001494690300540488,-0.0016283061020082176,-0.00039651071375081354,0.0018910919809583453,-0.0008757830124216558,-0.0012979191136915354,0.001746341373859158,0.0012085275628620108,-0.001823553430342144,0.0011054015141281398,0.0010761849224576528,-0.0018263760952866859,0.00015416933249647887,0.0017185295610630813,-0.0013091907195737172,-0.0008344124713796399,0.001867172717108242,-0.00042281043082654894,-0.0015786466491034894,0.0014831836541463507,0.000577888026299939,-0.0018683259716293663,0.0006795239841810711,0.0014072279318751814,-0.0016240797990220387,-0.0003121453955687333,0.0018302618820712844,-0.0009190750631916303,-0.0012082166562672975,0.0017293061922154344,0.000042848095910588676,-0.001754219553962642,0.0011366457007577196,0.0009860871336272348,-0.0017970627684170263,0.00022432985947940388,0.001642216314245644,-0.00132793041619937,-0.000745745771673329,0.0018263511733560237,-0.00048382207139291455,-0.001496997100948329,0.0014892200590753374,0.0004924242387303761,-0.0018169866372816674,0.000730284333815972,0.0013219693212437487,-0.0016174723661781761,-0.00023156705474265918,0.0017695928459084888,-0.0009587033508575022,-0.0011211246823503444,0.0017103679163289168,-0.000031284005997565645,-0.0016855800984575933,0.0011644974061324103,0.000898949752385515,-0.0017663504827774893,0.00029060627506083647,0.0015671073840996523,-0.001343606988452282,-0.0006603272222014626,0.0017846511154448806,-0.0005410108975245877,-0.0014170293332391715,0.001492573605985117,0.00041043001032005426,-0.0017652956280132586,0.0007773535310730766,0.0012388293021558306,-0.0016086052833111516,-0.0001546104783725948,0.001709095510765675,-0.0009948387879098184,-0.001036540122601161,0.0016896275264316656,-0.00010171289829495539,-0.0016176226320130786,0.0011891163234524363,0.0008146542866641094,-0.0017343188534058138,0.0003531690319383539,0.0014931684219100807,-0.0013563666699270584,-0.0005780255370831861,0.001742130316358363,-0.0005945455437270626,-0.001338688545766597,0.0014933751444066359,0.0003317639903807079,-0.0017132887771369898,0.0008208956222786434,0.0011577343633633864,-0.001597592424277112,0.0016487840369650121,-0.0010276382522176027,-0.0009543727305231596,0.0016671806729632347,-0.0001685917126398524,-0.0015503402530239307,0.0012106498045694487,0.0007330959242867455,-0.0017010444086675823,0.00041217301165898763,0.0014203723952454072,-0.0013663451796973138,-0.0004987236591255881,0.0016988456323976096,-0.000644579975265785,-0.001261928798224407,0.0014917469276472496,0.00025629930533804004,-0.001661003061809122,0.0008610611103393504,0.001078621140041301,-0.0015845410351623059,-0.000010982519468670268,0.001588675647577043,-0.0010572463937182544,-0.0008745434264680063,0.0016431183573983941,-0.00023205945121231676,-0.0014837308722831706,0.0012292344428094005,0.0006541817707338698,-0.0016666009794538096,0.00046775952319143125,0.0013486986416117019,-0.0013736690651118403,-0.00042231693169361435,0.0016548531116204845,-0.0006912553649986834,-0.0011867118677229454,0.0014878037049223778,0.00018392170375762485,-0.0016084764461720084,0.0008979886815637,0.0010014351092189444,-0.0015695525704905507,0.00005594466207552277,0.0015287902257490346,-0.001083797187546618,-0.0007969828659632944,0.0016175275124054767,-0.0002922427865284056,-0.0014177965873931977,0.0012449974334534334,0.0005778293255745284,-0.0016310600279888488,0.0005200580262196091,0.0012781320456142983,-0.0013784568554704394,-0.0003487115180043474,0.0016102080804333118,-0.0007347017119004154,-0.0011130062565073524,0.0014816536588215525,0.00011452795221224462,-0.0015557477388619453,0.0009318066948683035,0.00092612945734861,-0.001552723409721847,0.00011976511736049848,0.001469149959770467,-0.0011074152733014948,-0.0007216301972786769,0.0015904914970633767,-0.0003492576182697266,-0.0013525431350203407,0.001258057746515065,0.0005039651604261612,-0.0015944909256388486,0.0005691876218907034,0.0012086623204786548,-0.0013808200558933436,-0.0002778230295433546,0.0015649652117235575,-0.0007750392411754451,0.0010407863267157488,0.0014733992119670871,0.000048024443351710324,-0.0015028564626857373,0.0009626344698868147,0.000852664093594242,-0.0015341454724189692,0.0001805798375757076,0.0014097790285858799,-0.0011282171131553429,-0.0006484319793394448,0.0015620905201192293,-0.00040321042418424126,-0.0012879794091582,0.0012685271403792076,0.00043252376782482155,-0.0015569611874856634,0.0006152583463028969,0.001140283378138452,-0.001380864005588963,-0.00020957533199357617,0.0015191785773452852,-0.0008123796189423287,-0.0009700315430348592,0.0014631377225859693,-0.00001567401574594861,-0.001449842734661874,0.0009905834041994542,0.0007810047870022233,-0.0015139067472927914,0.00023848140533292832,0.0013507033217300011,-0.0011463119959027066,-0.0005773412360600683,0.0015324020020463702,-0.0004541994357349061,-0.0012241170356022742,0.0012765110399913272,0.00036344655563969773,-0.0015185366701156824,0.000658372295973902,0.0010729927747985181,-0.0013786886206157503,-0.0001438995024424062,0.0014729016873054363,-0.0008468270088493829,-0.0009007258073856401,0.001450962085384556,-0.00007664526144318761,-0.0013967471549453294,0.0010157579447764558,0.0007111224094082552,-0.0014920917477833327,0.00029355504647752005,0.001291950188696457,-0.0011618029094674707,-0.0005083166272211274,0.0015015008848669618,-0.0005023156640160524,-0.0011609699945040115,0.0012821092993090522,0.00029668096591077206,-0.0014792817380055517,0.000698624609657607,0.0010067912210918668,-0.0013743890378763429,-0.00008073291603006744,0.001426187517618761,-0.0008784789934285954,-0.0008328568724236371,0.0014369612513953334,-0.00013496069974191892,-0.0013436107034079628,0.0010382564345878728,0.0006429922689646879,-0.001468781904744373,0.0003458795506288721,0.0012335482135821156,-0.0011747873006891063,-0.0004413217192995347,0.0014694598972368577,-0.0005476437972705667,-0.0010985542842111163,0.0012854168645082713,0.00023217970047962564,-0.0014392594030160633,0.0007361043268706108,0.0009416821477331841,-0.0013680561743604513,-0.00002001844377637972,0.0013790885284927176,-0.0009074273792894457,-0.0007664158227911079,0.0014212206782551482,-0.00019068611930432298,-0.0012904746428634454,0.0010581718519219556,0.0005765935216221548,-0.0014440559051002789,0.00039552807880841544,0.0011755270115402297,-0.0011853577381613707,-0.0003763243423359188,0.0014363497810923871,-0.0005902629878833201,-0.001036887620716606,0.001286524351779206,0.00016990003861119102,-0.0013985314407912817,0.0007708951402235772,0.0008776713190505759,-0.0013597772134087674,0.0000382962537624602,0.0013316566742453079,-0.0009337589021888669, -0.0007013966148476759,0.0014038227205496864,-0.0002438824068503528,-0.0012373804280933014,0.0010755924571681343,0.0005119086499337978,-0.0014179899839424565,0.00044256887361214276,0.0011179170441275007,-0.0011936024914151245,-0.00031329602114924806,0.001402239485171366,-0.000630247543915065,-0.0009759891679376904,0.001285518551373567,0.00010980323415663845],"x":[100.0,100.60925648702595,101.21851297405189,101.82776946107785,102.4370259481038,103.04628243512974,103.65553892215569,104.26479540918163,104.87405189620759,105.48330838323353,106.09256487025948,106.70182135728543,107.31107784431137,107.92033433133733,108.52959081836327,109.13884730538922,109.74810379241517,110.35736027944112,110.96661676646707,111.57587325349301,112.18512974051896,112.7943862275449,113.40364271457086,114.01289920159681,114.62215568862275,115.2314121756487,115.84066866267464,116.4499251497006,117.05918163672655,117.6684381237525,118.27769461077844,118.88695109780438,119.49620758483034,120.10546407185629,120.71472055888223,121.32397704590818,121.93323353293412,122.54249001996008,123.15174650698603,123.76100299401197,124.37025948103792,124.97951596806388,125.58877245508982,126.19802894211577,126.80728542914171,127.41654191616766,128.02579840319362,128.63505489021955,129.2443113772455,129.85356786427147,130.4628243512974,131.07208083832336,131.6813373253493,132.29059381237525,132.8998502994012,133.50910678642714,134.1183632734531,134.72761976047903,135.336876247505,135.94613273453095,136.55538922155688,137.16464570858284,137.77390219560877,138.38315868263473,138.9924151696607,139.60167165668662,140.21092814371258,140.8201846307385,141.42944111776447,142.03869760479043,142.64795409181636,143.25721057884232,143.86646706586825,144.4757235528942,145.08498003992017,145.6942365269461,146.30349301397206,146.91274950099802,147.52200598802395,148.1312624750499,148.74051896207584,149.3497754491018,149.95903193612776,150.5682884231537,151.17754491017965,151.78680139720558,152.39605788423154,153.0053143712575,153.61457085828343,154.2238273453094,154.83308383233532,155.44234031936128,156.05159680638724,156.66085329341317,157.27010978043913,157.87936626746506,158.48862275449102,159.09787924151698,159.7071357285429,160.31639221556887,160.9256487025948,161.53490518962076,162.14416167664672,162.75341816367265,163.3626746506986,163.97193113772454,164.5811876247505,165.19044411177646,165.7997005988024,166.40895708582835,167.01821357285428,167.62747005988024,168.2367265469062,168.84598303393213,169.4552395209581,170.06449600798402,170.67375249500998,171.28300898203594,171.89226546906187,172.50152195608783,173.11077844311376,173.72003493013972,174.32929141716568,174.9385479041916,175.54780439121757,176.1570608782435,176.76631736526946,177.37557385229542,177.98483033932135,178.5940868263473,179.20334331337327,179.8125998003992,180.42185628742516,181.0311127744511,181.64036926147705,182.249625748503,182.85888223552894,183.4681387225549,184.07739520958083,184.6866516966068,185.29590818363275,185.90516467065868,186.51442115768464,187.12367764471057,187.73293413173653,188.3421906187625,188.95144710578842,189.56070359281438,190.1699600798403,190.77921656686627,191.38847305389223,191.99772954091816,192.60698602794412,193.21624251497005,193.825499001996,194.43475548902197,195.0440119760479,195.65326846307386,196.2625249500998,196.87178143712575,197.4810379241517,198.09029441117764,198.6995508982036,199.30880738522953,199.9180638722555,200.52732035928145,201.13657684630738,201.74583333333334,202.35508982035927,202.96434630738523,203.5736027944112,204.18285928143712,204.79211576846308,205.401372255489,206.01062874251497,206.61988522954093,207.22914171656686,207.83839820359282,208.44765469061878,209.0569111776447,209.66616766467067,210.2754241516966,210.88468063872256,211.49393712574852,212.10319361277445,212.7124500998004,213.32170658682634,213.9309630738523,214.54021956087826,215.1494760479042,215.75873253493015,216.36798902195608,216.97724550898204,217.586501996008,218.19575848303393,218.8050149700599,219.41427145708582,220.02352794411178,220.63278443113774,221.24204091816367,221.85129740518963,222.46055389221556,223.06981037924152,223.67906686626748,224.2883233532934,224.89757984031937,225.5068363273453,226.11609281437126,226.72534930139722,227.33460578842315,227.9438622754491,228.55311876247504,229.162375249501,229.77163173652696,230.3808882235529,230.99014471057885,231.59940119760478,232.20865768463074,232.8179141716567,233.42717065868263,234.0364271457086,234.64568363273452,235.25494011976048,235.86419660678644,236.47345309381237,237.08270958083833,237.69196606786429,238.30122255489022,238.91047904191618,239.5197355289421,240.12899201596807,240.73824850299403,241.34750499001996,241.95676147704592,242.56601796407185,243.1752744510978,243.78453093812377,244.3937874251497,245.00304391217566,245.6123003992016,246.22155688622755,246.8308133732535,247.44006986027944,248.0493263473054,248.65858283433133,249.2678393213573,249.87709580838325,250.48635229540918,251.09560878243514,251.70486526946107,252.31412175648703,252.92337824351299,253.53263473053892,254.14189121756488,254.7511477045908,255.36040419161677,255.96966067864273,256.57891716566866,257.1881736526946,257.7974301397206,258.40668662674653,259.01594311377244,259.6251996007984,260.23445608782436,260.8437125748503,261.4529690618763,262.0622255489022,262.67148203592814,263.2807385229541,263.88999500998005,264.499251497006,265.1085079840319,265.7177644710579,266.32702095808384,266.9362774451098,267.54553393213575,268.15479041916166,268.7640469061876,269.3733033932136,269.98255988023953,270.5918163672655,271.2010728542914,271.81032934131736,272.4195858283433,273.0288423153693,273.63809880239523,274.24735528942114,274.8566117764471,275.46586826347306,276.075124750499,276.684381237525,277.2936377245509,277.90289421157684,278.5121506986028,279.12140718562875,279.7306636726547,280.3399201596806,280.9491766467066,281.55843313373254,282.1676896207585,282.77694610778445,283.38620259481036,283.9954590818363,284.6047155688623,285.21397205588823,285.8232285429142,286.4324850299401,287.04174151696606,287.650998003992,288.260254491018,288.86951097804393,289.47876746506984,290.0880239520958,290.69728043912176,291.3065369261477,291.9157934131737,292.5250499001996,293.13430638722554,293.7435628742515,294.35281936127745,294.9620758483034,295.5713323353293,296.1805888223553,296.78984530938123,297.3991017964072,298.00835828343315,298.61761477045906,299.226871257485,299.836127744511,300.44538423153693,301.0546407185629,301.6638972055888,302.27315369261476,302.8824101796407,303.4916666666667,304.10092315369263,304.71017964071854,305.3194361277445,305.92869261477045,306.5379491017964,307.1472055888224,307.7564620758483,308.36571856287424,308.9749750499002,309.58423153692615,310.1934880239521,310.802744510978,311.412000998004,312.02125748502993,312.6305139720559,313.23977045908185,313.8490269461078,314.4582834331337,315.0675399201597,315.67679640718563,316.2860528942116,316.89530938123755,317.50456586826346,318.1138223552894,318.7230788423154,319.33233532934133,319.9415918163673,320.5508483033932,321.16010479041915,321.7693612774451,322.3786177644711,322.98787425149703,323.59713073852294,324.2063872255489,324.81564371257485,325.4249001996008,326.0341566866268,326.6434131736527,327.25266966067863,327.8619261477046,328.47118263473055,329.0804391217565,329.6896956087824,330.2989520958084,330.90820858283433,331.5174650698603,332.12672155688625,332.73597804391216,333.3452345309381,333.9544910179641,334.56374750499003,335.173003992016,335.7822604790419,336.39151696606785,337.0007734530938,337.6100299401198,338.21928642714573,338.82854291417163,339.4377994011976,340.04705588822355,340.6563123752495,341.2655688622755,341.8748253493014,342.48408183632733,343.0933383233533,343.70259481037925,344.3118512974052,344.9211077844311,345.5303642714571,346.13962075848303,346.748877245509,347.35813373253495,347.96739021956085,348.5766467065868,349.1859031936128,349.79515968063873,350.4044161676647,351.0136726546906,351.62292914171655,352.2321856287425,352.8414421157685,353.45069860279443,354.05995508982033,354.6692115768463,355.27846806387225,355.8877245508982,356.4969810379242,357.1062375249501,357.71549401197603,358.324750499002,358.93400698602795,359.5432634730539,360.1525199600798,360.7617764471058,361.37103293413173,361.9802894211577,362.58954590818365,363.19880239520955,363.8080588822355,364.4173153692615,365.02657185628743,365.6358283433134,366.2450848303393,366.85434131736525,367.4635978043912,368.0728542914172,368.68211077844313,369.29136726546903,369.900623752495,370.50988023952095,371.1191367265469,371.7283932135729,372.3376497005988,372.94690618762473,373.5561626746507,374.16541916167665,374.7746756487026,375.38393213572857,375.9931886227545,376.60244510978043,377.2117015968064,377.82095808383235,378.4302145708583,379.0394710578842,379.6487275449102,380.25798403193613,380.8672405189621,381.47649700598805,382.08575349301395,382.6950099800399,383.3042664670659,383.91352295409183,384.5227794411178,385.1320359281437,385.74129241516965,386.3505489021956,386.9598053892216,387.56906187624753,388.17831836327343,388.7875748502994,389.39683133732535,390.0060878243513,390.61534431137727,391.2246007984032,391.83385728542913,392.4431137724551,393.05237025948105,393.661626746507,394.2708832335329,394.8801397205589,395.48939620758483,396.0986526946108,396.70790918163675,397.31716566866265,397.9264221556886,398.5356786427146,399.14493512974053,399.7541916167665,400.3634481037924,400.97270459081835,401.5819610778443,402.19121756487027,402.80047405189623,403.40973053892213,404.0189870259481,404.62824351297405,405.2375,405.84675648702597,406.4560129740519,407.06526946107783,407.6745259481038,408.28378243512975,408.8930389221557,409.5022954091816,410.1115518962076,410.72080838323353,411.3300648702595,411.93932135728545,412.54857784431135,413.1578343313373,413.7670908183633,414.37634730538923,414.9856037924152,415.5948602794411,416.20411676646705,416.813373253493,417.42262974051897,418.03188622754493,418.64114271457083,419.2503992015968,419.85965568862275,420.4689121756487,421.07816866267467,421.6874251497006,422.29668163672653,422.9059381237525,423.51519461077845,424.1244510978044,424.7337075848303,425.3429640718563,425.95222055888223,426.5614770459082,427.17073353293415,427.77999001996005,428.389246506986,428.998502994012,429.60775948103793,430.2170159680639,430.8262724550898,431.43552894211575,432.0447854291417,432.65404191616767,433.26329840319363,433.87255489021953,434.4818113772455,435.09106786427145,435.7003243512974,436.30958083832337,436.91883732534933,437.52809381237523,438.1373502994012,438.74660678642715,439.3558632734531,439.96511976047907,440.574376247505,441.18363273453093,441.7928892215569,442.40214570858285,443.0114021956088,443.6206586826347,444.22991516966067,444.83917165668663,445.4484281437126,446.05768463073855,446.66694111776445,447.2761976047904,447.88545409181637,448.49471057884233,449.1039670658683,449.7132235528942,450.32248003992015,450.9317365269461,451.54099301397207,452.15024950099803,452.75950598802393,453.3687624750499,453.97801896207585,454.5872754491018,455.19653193612777,455.8057884231537,456.41504491017963,457.0243013972056,457.63355788423155,458.2428143712575,458.8520708582834,459.46132734530937,460.07058383233533,460.6798403193613,461.28909680638725,461.89835329341315,462.5076097804391,463.11686626746507,463.72612275449103,464.335379241517,464.9446357285429,465.55389221556885,466.1631487025948,466.77240518962077,467.38166167664673,467.99091816367263,468.6001746506986,469.20943113772455,469.8186876247505,470.42794411177647,471.0372005988024,471.64645708582833,472.2557135728543,472.86497005988025,473.4742265469062,474.0834830339321,474.69273952095807,475.30199600798403,475.91125249501,476.52050898203595,477.12976546906185,477.7390219560878,478.34827844311377,478.95753493013973,479.5667914171657,480.1760479041916,480.78530439121755,481.3945608782435,482.00381736526947,482.61307385229543,483.22233033932133,483.8315868263473,484.44084331337325,485.0500998003992,485.65935628742517,486.26861277445107,486.87786926147703,487.487125748503,488.09638223552895,488.7056387225549,489.3148952095808,489.92415169660677,490.53340818363273,491.1426646706587,491.75192115768465,492.36117764471055,492.9704341317365,493.57969061876247,494.18894710578843,494.7982035928144,495.4074600798403,496.01671656686625,496.6259730538922,497.23522954091817,497.84448602794413,498.4537425149701,499.062999001996,499.67225548902195,500.2815119760479,500.89076846307387,501.5000249500998,502.10928143712573,502.7185379241517,503.32779441117765,503.9370508982036,504.54630738522957,505.15556387225547,505.76482035928143,506.3740768463074,506.98333333333335,507.5925898203593,508.2018463073852,508.81110279441117,509.42035928143713,510.0296157684631,510.63887225548905,511.24812874251495,511.8573852295409,512.4666417165669,513.0758982035928,513.6851546906188,514.2944111776447,514.9036676646707,515.5129241516966,516.1221806387225,516.7314371257485,517.3406936127744,517.9499500998004,518.5592065868263,519.1684630738523,519.7777195608783,520.3869760479042,520.9962325349302,521.605489021956,522.214745508982,522.824001996008,523.4332584830339,524.0425149700599,524.6517714570858,525.2610279441118,525.8702844311377,526.4795409181637,527.0887974051897,527.6980538922156,528.3073103792415,528.9165668662674,529.5258233532934,530.1350798403193,530.7443363273453,531.3535928143713,531.9628493013972,532.5721057884232,533.1813622754491,533.7906187624751,534.399875249501,535.0091317365269,535.6183882235529,536.2276447105788,536.8369011976048,537.4461576846307,538.0554141716567,538.6646706586827,539.2739271457086,539.8831836327346,540.4924401197604,541.1016966067864,541.7109530938123,542.3202095808383,542.9294660678643,543.5387225548902,544.1479790419162,544.7572355289421,545.3664920159681,545.9757485029941,546.5850049900199,547.1942614770459,547.8035179640718,548.4127744510978,549.0220309381237,549.6312874251497,550.2405439121757,550.8498003992016,551.4590568862276,552.0683133732535,552.6775698602794,553.2868263473054,553.8960828343313,554.5053393213573,555.1145958083832,555.7238522954092,556.3331087824351,556.9423652694611,557.5516217564871,558.160878243513,558.7701347305389,559.3793912175648,559.9886477045908,560.5979041916167,561.2071606786427,561.8164171656687,562.4256736526946,563.0349301397206,563.6441866267465,564.2534431137725,564.8626996007984,565.4719560878243,566.0812125748503,566.6904690618762,567.2997255489022,567.9089820359281,568.5182385229541,569.1274950099801,569.736751497006,570.346007984032,570.9552644710578,571.5645209580838,572.1737774451097,572.7830339321357,573.3922904191617,574.0015469061876,574.6108033932136,575.2200598802395,575.8293163672655,576.4385728542915,577.0478293413173,577.6570858283433,578.2663423153692,578.8755988023952,579.4848552894211,580.0941117764471,580.7033682634731,581.312624750499,581.921881237525,582.531137724551,583.1403942115768,583.7496506986027,584.3589071856287,584.9681636726547,585.5774201596806,586.1866766467066,586.7959331337325,587.4051896207585,588.0144461077845,588.6237025948104,589.2329590818364,589.8422155688622,590.4514720558882,591.0607285429141,591.6699850299401,592.2792415169661,592.888498003992,593.497754491018,594.107010978044,594.7162674650699,595.3255239520959,595.9347804391217,596.5440369261477,597.1532934131736,597.7625499001996,598.3718063872255,598.9810628742515,599.5903193612775,600.1995758483034,600.8088323353294,601.4180888223553,602.0273453093812,602.6366017964071,603.2458582834331,603.8551147704591,604.464371257485,605.073627744511,605.682884231537,606.2921407185629,606.9013972055889,607.5106536926148,608.1199101796407,608.7291666666666,609.3384231536926,609.9476796407185,610.5569361277445,611.1661926147705,611.7754491017964,612.3847055888224,612.9939620758483,613.6032185628743,614.2124750499001,614.8217315369261,615.4309880239521,616.040244510978,616.649500998004,617.25875748503,617.8680139720559,618.4772704590819,619.0865269461078,619.6957834331338,620.3050399201596,620.9142964071856,621.5235528942115,622.1328093812375,622.7420658682635,623.3513223552894,623.9605788423154,624.5698353293413,625.1790918163673,625.7883483033933,626.3976047904191,627.0068612774451,627.616117764471,628.225374251497,628.834630738523,629.4438872255489,630.0531437125749,630.6624001996008,631.2716566866268,631.8809131736527,632.4901696606786,633.0994261477045,633.7086826347305,634.3179391217565,634.9271956087824,635.5364520958084,636.1457085828343,636.7549650698603,637.3642215568863,637.9734780439122,638.5827345309381,639.191991017964,639.80124750499,640.410503992016,641.0197604790419,641.6290169660679,642.2382734530938,642.8475299401198,643.4567864271457,644.0660429141717,644.6752994011975,645.2845558882235,645.8938123752495,646.5030688622754,647.1123253493014,647.7215818363273,648.3308383233533,648.9400948103793,649.5493512974052,650.1586077844312,650.7678642714571,651.377120758483,651.986377245509,652.5956337325349,653.2048902195609,653.8141467065868,654.4234031936128,655.0326596806387,655.6419161676647,656.2511726546907,656.8604291417166,657.4696856287425,658.0789421157684,658.6881986027944,659.2974550898203,659.9067115768463,660.5159680638723,661.1252245508982,661.7344810379242,662.3437375249501,662.9529940119761,663.562250499002,664.1715069860279,664.7807634730539,665.3900199600798,665.9992764471058,666.6085329341317,667.2177894211577,667.8270459081837,668.4363023952096,669.0455588822356,669.6548153692614,670.2640718562874,670.8733283433133,671.4825848303393,672.0918413173653,672.7010978043912,673.3103542914172,673.9196107784431,674.5288672654691,675.1381237524951,675.7473802395209,676.3566367265469,676.9658932135728,677.5751497005988,678.1844061876247,678.7936626746507,679.4029191616767,680.0121756487026,680.6214321357286,681.2306886227545,681.8399451097804,682.4492015968063,683.0584580838323,683.6677145708583,684.2769710578842,684.8862275449102,685.4954840319361,686.1047405189621,686.7139970059881,687.323253493014,687.9325099800399,688.5417664670658,689.1510229540918,689.7602794411177,690.3695359281437,690.9787924151697,691.5880489021956,692.1973053892216,692.8065618762475,693.4158183632735,694.0250748502993,694.6343313373253,695.2435878243513,695.8528443113772,696.4621007984032,697.0713572854291,697.6806137724551,698.2898702594811,698.899126746507,699.508383233533,700.1176397205588,700.7268962075848,701.3361526946107,701.9454091816367,702.5546656686627,703.1639221556886,703.7731786427146,704.3824351297405,704.9916916167665,705.6009481037925,706.2102045908183,706.8194610778443,707.4287175648702,708.0379740518962,708.6472305389221,709.2564870259481,709.8657435129741,710.475]} +{"expected":[0.01,-0.0033746253790549624,-0.007622018879319136,0.008433494207046853,0.001889004559574384,-0.00959763287124854,0.0045548640918855405,0.00643775365526481,-0.008809666729723751,-0.000468327621357804,0.009021878600127204,-0.005574489042175532,-0.005188845438344393,0.008984167322636266,-0.0008822361340235784,-0.008293387424072578,0.006423300008544533,0.00390249149724315,-0.00896491048167861,0.0021410030233847974,0.007434361161677098,-0.0070945391115908776,-0.002605153786703288,0.0087627445091276,-0.003288961215575298,-0.006468148173580897,0.007584861802057748,0.001322173628641932,-0.008391166572328667,0.004309966210916445,0.005418829024186577,-0.007894256760515254,-0.00007741137080101638,0.00786600339799083,-0.005190888286691567,-0.004310799964470551,0.008025916288409504,-0.0011070829665529621,-0.00720506320694166,0.0059217096985319595,0.0031683612909959584,-0.007986059728650302,0.002211362742764597,0.006427764980119337,-0.006495570438395232,-0.002015317447555855,0.007783713328832359,-0.003217836901260242,-0.005554751504162455,0.0069087623461371135,0.0008745954285802678,-0.007430450743094688,0.004111477604627807,0.004607492872683843,-0.007160672340873091,0.00023211237554265316,0.006940099051174486,-0.004879980448715341,-0.0036078872171936413,0.007253676467270752,-0.0012846752729141803,-0.006328415747875719,0.005513875305599021,0.002577865411407692,-0.007192987327410233,0.002264816300126859,0.005612742616618405,-0.00600658676302084,-0.00153900633791215,0.006986458278165595,-0.0031563648778605274,-0.004811642742160233,0.006354444046560059,0.0005121690322926351,-0.006644348505237545,0.003945466543090176,0.003944527136917611,-0.006556641214801915,0.00048285236585137326,0.00617905372724083,-0.0046207470221406475,-0.0030312775513807594,0.006615149291794282,-0.0014276454140797585,-0.0056048078272581455,0.005173428759011166,0.002091872012714056,-0.006534582830377916,0.0023054630602133983,0.004937361147319414,-0.005597398884782191,-0.0011460194895600748,0.006322024170613043,-0.003101470027877635,-0.004193641507483116,0.005889228490530021,0.00021280982010589674,-0.005986809356747114,0.003802948422578564,0.0033914042216771465,-0.006048143932118084,0.0006896153286842611,0.005540280292535628,-0.004399459866491001,-0.0025488774753354643,0.006075951734989388,-0.0015443651716269698,-0.004995508238426995,0.0048829622877020395,0.00168440940535812,-0.005976919465789322,0.002336071445060531,0.00436699417707134,-0.005247880329196343,-0.0008161230833134467,0.005757615681360099,-0.003051124871582776,-0.003670351889638602,0.005491129188702045,-0.00003841464759629526,-0.005426712741594785,0.0036778730471761206,0.002921979790357042,-0.005612092537049578,0.000862504886225179,0.004994756869438384,-0.004206777101008821,-0.002138727658395496,0.005612555974717905,-0.001640603793679084,-0.00447391034918115,0.0046305252678440646,0.0013375643846813207,-0.005496598259191423,0.002358580514084293,0.003877671165064496,-0.004944102324323375,-0.0005352527185069069,0.005270443255972866,-0.003003941903847979,-0.003220575689940079,0.005144814658170978,-0.000251963241123376,-0.004942276221088671,0.0035660207544181725,0.002517890234124859,-0.005232271548429072,0.0010086524055568644,0.0045220286015450195,-0.004036124920485116,-0.001785297355488709,0.0052083240203809455,-0.001720467938676326,-0.004021136032862963,0.004407645528211705,0.00103858281312451,-0.005076963386680254,0.002374390930557525,0.003452274611672536,-0.004676123221830755,-0.000293328920583648,0.004844182283096554,-0.0029589426438823055,-0.002829080820353618,0.004839272196996332,-0.0004353801754854635,-0.004517801641045534,0.00346436212758138,0.0021658606757821207,-0.004896962550898842,0.0011332360936159342,0.0041072675988673485,-0.003882746693639497,-0.0014772937632670537,0.004851162237974012,-0.001786961913692683,-0.003623422830336836,0.004208153488994983,0.0007781377996418393,-0.004705840642293678,0.0023845416920389327,0.0030782571544993855,-0.004436661150818149,-0.00008293924808134595,0.004466836450525034,-0.0029154200873884777,-0.0024846425797872,0.00456639129577918,-0.000594244714662356,-0.004141693120882942,0.003370669019868411,0.001856058123530432,-0.004597490347915285,0.0012401078946157153,0.0037394657832780214,-0.003743118961844232,-0.0012063098334202998,0.004532072941424919,-0.001842335860794209,-0.003270503864866559,0.004027453169436672,0.0005492514201438184,-0.004374128830803134,0.0023898217124098888,0.0027462141060571542,-0.004220263892919906,0.0001014892078418608,0.004129395888683835,-0.002872853287528974,-0.002178808909098591,0.004320070339086555,-0.000732772431855468,-0.0038052023601414537,0.0032832688759818953,0.0015810451408781274,-0.004327298885133179,0.0013321936644063676,0.0034102820608713055,-0.003614579152420938,-0.0009659585916019596,0.0042442267481438865,-0.001888309967606561,-0.002954566646910544,0.003862053730280365,0.0003465992716145695,-0.004074890983889265,0.002390842639114913,0.002448959438274671,-0.004022771440620501,0.00026422738837701204,0.0038249653113078845,-0.002830852389397747,-0.001905095542674953,0.004095634147866093,-0.0008542085792722223,-0.003501607823646661,0.0032008843221029396,0.0013350931947516316,-0.004081344613809632,0.0014117568426467166,0.0031132831440029004,-0.003495080560118109,-0.000751301299248045,0.0039823495988200956,-0.0019262233125530552,-0.0026695630035545965,0.0037092590208348468,0.00016604814335501283,-0.003802750032448531,0.00238808774933818,0.0021809095582688387,-0.0038409575222055825,0.0004086038740077174,0.003548180682849912,-0.00278912216160145,-0.0016584460091960713,0.0038894430832158615,-0.0009610928562487279,-0.003225662294979352,0.0031225253816182913,0.0011137192491960006,-0.003855686955326962,0.0014805770200375756,0.0028434296419308706,-0.003383026569449437,-0.0005584593235005616,0.0037423065725655123,-0.0019571353282153824,-0.002410739334022185,0.0035669562592685992,0.000004340463089199634,-0.003553476225131052,0.002381945611343005,0.0019376615497718379,-0.003672284215497602,0.0005372516695656682,0.0032948088333592442,-0.0027474371465572647,-0.0014348600868823633,0.0036986240233832955,-0.0010554420895805701,-0.0029732117153399543,0.003047415214307232,0.0009133652765595503,-0.0036472049859943957,0.0015400738095075364,0.002596719693376865,-0.003277155743961312,-0.0003843443595345254,0.003520812524978191,-0.001981896589820398,-0.0021743092640833387,0.0034334687762567285,-0.0001411261126639814,-0.003323698874081737,0.0023727337708766235,0.0017156978580311923,-0.003514730101806216,0.0006522814102675338,0.0030614664015164317,-0.002705624325836564,-0.0012311324328946071,0.003520881067978818,-0.0011388790574619577,-0.002740926389843438,0.0029749378100310947,0.0007311717760163106,-0.0034533971691657716,0.0015913946155659104,0.0023699365314837134,-0.0031764604545482227,-0.00022646693702463983,0.0033152266358330964,-0.0020011992261728833,-0.001957220756854529,0.0033074512487201294,-0.00027245583099065574,-0.0031107008045504225,0.002360715744923774,0.0015121752946147878,-0.0033666674657802775,0.0007554053700443383,0.00284541857387878,-0.002663550773165199,-0.001044665065235685,0.0033543596961918744,-0.001212725111614123,-0.002526107720106278,0.002904600416141118,0.0005648146273983649,-0.0032722370521445954,0.0016354780062711222,0.002160466254018691,-0.003080128151737152,-0.000082797930510248,0.0031234037829790946,-0.002015613480508536,-0.00175698733817825,0.0031878137718127416,-0.0003913689234629894,-0.002912269083932181,0.0023461134262495863,0.0013247715479915683,-0.003226772947196665,0.0008480278373982253,0.0026444323795080907,-0.002621114694188058,-0.0008733304451363718,0.0031975475558126023,-0.0012780679337996753,-0.0023265468088722987,0.0028360060700229743,0.0004123855362323381,-0.003102067489642725,0.0016731002473195156,0.001966164025988275,-0.002987498252220287,0.00004833328785673103,0.002943585209223255,-0.002025614663560462,-0.0015715637451245235,0.003073665910135281,-0.0004992857952449686,-0.002726584833597506,0.0023291162790907956,0.0011515717076079155,-0.0030939614708402024,0.0009313120391705081,0.0024566680294338806,-0.002578238813341514,-0.000715369914541897,0.0030492008505353272,-0.0013358118795590603,-0.002140419386636313,0.0027688331984681023,0.00027230306044425507,-0.0029415219008097995,0.0017049099941755753,0.0017852543316613596,-0.0028980299980183146,0.00016831488624009116,0.0027743168705652277,-0.0020316033182352874,-0.0013992529276129046,0.002964274848589291,-0.0005973900770956857,-0.0025521406810003954,0.0023098882513615314,0.0009909831370976026,-0.0029673366695994975,0.0010062304166468866,0.002280597264378061,-0.002534865417417635,-0.0005693172763382291,0.0029082889338595324,-0.0013867159137674443,-0.0019662066190262472,0.0027028202465121734,0.00014324546521498255,-0.0027894648250310636,0.001731454512834913,0.0016162555759663638,-0.0028112781592852815,0.0002783101226767328,0.002614387616968737,-0.002033920507690205,-0.001238635550763712,0.002859033660935118,-0.0006866764820938022,-0.002387678084620776,0.0022885730357688917,0.000841670763073588,-0.0028461531856580177,0.0010736028917752718,0.002114941187700384,-0.002490952588011033,-0.0004339405427495209,0.0027739520605998113,-0.0014314225634394463,-0.0018026346487828543,0.0026377539430179966,0.000024099403604626595,-0.0026449464716313343,0.0017531997460879121,0.0014579223699989954,-0.002726874431534224,0.00037930144622244015,0.002462781801289147,-0.0020328595469610695,-0.0010885158914870888,0.0027574369494554997,-0.0007679875735691736,-0.0022321391627136557,0.0022652981196188125,0.000702507285968018,-0.002729787653816416,0.0011341263410876764,0.0019586223638290937,-0.00244647130004073,-0.0003081970043560719,0.002645468786255706,-0.0014704802733878732,-0.0016486278957671848,0.0025734602342109597,-0.00008607976421486678,-0.0025071675622243285,0.0017705458451201643,0.0013092008421668711,-0.002644513025712797,0.0004721246781596627,0.0023186425320669743,-0.002028675104990842,-0.0009478798462329672,0.002659061929424631,-0.0008420423294057347,-0.0020846292530919777,0.0022401779340787444,0.0005725344463660855,-0.002617716117379471,0.0011883975459047247,0.00181072750167585,-0.002401403159898697,-0.0001911981961946872,0.00252223053520494,-0.00150436085260325,-0.0015032725941173384,0.0025097972004579777,-0.00018809898018486252,-0.0023754518425589425,0.0017838393165831475,0.0011691936682461637,-0.0025639393856203506,0.0005574957818355751,0.002181242879348386,-0.002021590337661687,-0.0008158619997894686,0.0025635535866886197,-0.0009094585606012332,-0.0019443875126433023,0.0022133163256927288,0.00045093258457585547,-0.002509496269414901,0.0012369312421345489,0.0016704780892682278,-0.0023557386219282845,-0.00008218230752615857,0.0024037215609318827,-0.001533473223012741,-0.001365788039216979,0.0024466494652647408,-0.0002826519588731703,-0.0022492243779544466,0.0017933826134725838,0.0010371324395297126,-0.002484941265751537,0.0006360320298354078,0.002049963093101947,-0.0020118025292847827,-0.0006917195525119262,0.0024706129178784933,-0.0009707706722735125,-0.0018107636100686472,0.002184808512062205,0.00033699649284626125,-0.002404753355323932,0.0012801744470596899,0.001537207069170819,-0.0023094755667628676,0.000019507746753487322,0.002289503007619787,-0.0015581743520317768,-0.0012355037060267395,0.0023839237396364385,-0.00037033867283502197,-0.0021279942584771353,0.0017994417741892838,0.0009123556323570743,-0.002407341610307096,0.0007082688896385101,0.001924272416723798,-0.001999487592035099,-0.0005748114948746359,0.002379987528811685,-0.0010264438571449548,-0.001683199086011227,0.0021547426407978825,0.00023011609295240612,-0.0023031688829249506,0.0013185179278607563,0.001410340151546865,-0.00226261815632344,0.00011444190350763413,0.0021792001238734966,-0.0015787780180434162,-0.0011118408849488351,0.002321545239227773,-0.00045168099825255704,-0.0020113407007838497,0.0018022525561288292,0.0007942908968153683,-0.0023309928205821405,0.0007746736043426581,0.001803714447662988,-0.0019848036822188407,-0.0004645818368192538,0.0022914640549012346,-0.0010768855293036537,-0.0015612123237860743,0.0021232010403929814,0.0001297608503656892,-0.002204471506490353,0.0013523054543425155,0.0012893807223029292,-0.0022151759024297097,0.0002031171523614491,0.002072491922429874,-0.0015955618922985336,-0.0009942978268588042,0.002259454778879646,-0.0005271353749706217,-0.0018989017911572215,0.0018020253971051474,0.0006824407072985435,-0.0022557721026356748,0.0008356561984161872,0.0016878952618040433,-0.0019678941272325413,-0.00036054599946802374,0.0022048620023513398,-0.001122454603471095,-0.0014443863389041823,0.0020902612296847677,0.0000354671083238826,-0.0021084296094975655,0.0013818413183534276,0.0011738975633771888,-0.002167162901846324,0.0002859690931723308,0.0019691027549326263,-0.0016087733011967177,-0.000882437638330581,0.0021976063975728925,-0.0005971031245060763,-0.0017903653004237641,0.001798949456116054,0.0005763706527763578,-0.0021815776628847307,0.0008915784597268142,0.0015764737099661576,-0.0019488898098829778,-0.0002622796945123937,0.002120028706833092,-0.0011634690778397434,-0.00133235878806569,0.002055996736555064,-0.00005317227695481571,-0.0020148452260280994,0.0014073964858683516,0.0010635147912839954,-0.002118597202116705,0.0003633814063964488,0.0018687953986439004,-0.001618633945617953,-0.0007758783501296758,0.0021359654021759706,-0.0006619389156958006,-0.001685461137567241,0.0017931959250680322,0.0004756998166979747,-0.002108325574690938,0.0009427613181347118,0.0014691534354072185,-0.0019279111220849552,-0.00016940977630202798,0.0020368351781634214,-0.0012002122704387638,-0.0012248137397222571,0.0020204777647040138,-0.0001365164731501839,-0.0019235490254383598,0.001429213661905231,0.0009579035592634622,-0.0020695002709836996,0.00043569366276668194,0.001771365346153946,-0.0016253437895462407,-0.0006742847164405341,0.002074506744423042,-0.0007219577539746244,-0.001583955109401834,0.0017849207587636168,0.0003800928237751474,-0.0020359471799921113,0.0009894909439983504,0.001365676265258973,-0.0019050695742462466,-0.00008160667009977071,0.0019551726527607546,-0.0012329379787893553,-0.0011214748532388037,0.0019837717385284585,-0.00021488374589178938,-0.0018343961478594086,0.0014475114846589161,0.0008567751719113934,-0.0020198965484687923,0.0005032078018533034,0.0016766360593018427,-0.0016290842822227678,-0.0005773614024287887,0.0020132136649767046,-0.0007774407854154982,-0.001485643728726439,0.0017742669373665958,0.00028925322595191566,-0.0019643869206406876,0.001032023817418387,0.0012658167066469663,-0.0018804691274104883,0.0000014219314192059985,0.0018749497155054894,-0.0012618747724836893,-0.0010220996923464246,0.0019459437495293614,-0.0002885573539851103,-0.0017472627252814671,0.0014624880173070333,0.000759875338937036,-0.001969813065372363,0.0005661935363351936,0.0015844550012379893,-0.0016300210419186326,-0.00048484729311842076,0.0019520765530275522,-0.0008286401427992488,-0.0013903498698962624,0.001761366350587126,0.0002029179715772622,-0.0018936005171811343,0.001070590964359338,0.0011693773369627605,-0.0018542073006706367,0.00007993634436630187,0.001796089882737794,-0.001287229582897214,-0.0009264749580346582,0.00190705692264887,-0.000357790488405239,-0.0016620429587037447,0.001474323669667731,0.000666979353589724,-0.001919279115500805,0.0006248928836065682,0.001494690300540488,-0.0016283061020082176,-0.00039651071375081354,0.0018910919809583453,-0.0008757830124216558,-0.0012979191136915354,0.001746341373859158,0.00012085275628620108,-0.001823553430342144,0.0011054015141281398,0.0010761849224576528,-0.0018263760952866859,0.00015416933249647887,0.0017185295610630813,-0.0013091907195737172,-0.0008344124713796399,0.001867172717108242,-0.00042281043082654894,-0.0015786466491034894,0.0014831836541463507,0.000577888026299939,-0.0018683259716293663,0.0006795239841810711,0.0014072279318751814,-0.0016240797990220387,-0.0003121453955687333,0.0018302618820712844,-0.0009190750631916303,-0.0012082166562672975,0.0017293061922154344,0.000042848095910588676,-0.001754219553962642,0.0011366457007577196,0.0009860871336272348,-0.0017970627684170263,0.00022432985947940388,0.001642216314245644,-0.00132793041619937,-0.000745745771673329,0.0018263511733560237,-0.00048382207139291455,-0.001496997100948329,0.0014892200590753374,0.0004924242387303761,-0.0018169866372816674,0.000730284333815972,0.0013219693212437487,-0.0016174723661781761,-0.00023156705474265918,0.0017695928459084888,-0.0009587033508575022,-0.0011211246823503444,0.0017103679163289168,-0.000031284005997565645,-0.0016855800984575933,0.0011644974061324103,0.000898949752385515,-0.0017663504827774893,0.00029060627506083647,0.0015671073840996523,-0.001343606988452282,-0.0006603272222014626,0.0017846511154448806,-0.0005410108975245877,-0.0014170293332391715,0.001492573605985117,0.00041043001032005426,-0.0017652956280132586,0.0007773535310730766,0.0012388293021558306,-0.0016086052833111516,-0.0001546104783725948,0.001709095510765675,-0.0009948387879098184,-0.001036540122601161,0.0016896275264316656,-0.00010171289829495539,-0.0016176226320130786,0.0011891163234524363,0.0008146542866641094,-0.0017343188534058138,0.0003531690319383539,0.0014931684219100807,-0.0013563666699270584,-0.0005780255370831861,0.001742130316358363,-0.0005945455437270626,-0.001338688545766597,0.0014933751444066359,0.0003317639903807079,-0.0017132887771369898,0.0008208956222786434,0.0011577343633633864,-0.001597592424277112,-0.00008112703202977462,0.0016487840369650121,-0.0010276382522176027,-0.0009543727305231596,0.0016671806729632347,-0.0001685917126398524,-0.0015503402530239307,0.0012106498045694487,0.0007330959242867455,-0.0017010444086675823,0.00041217301165898763,0.0014203723952454072,-0.0013663451796973138,-0.0004987236591255881,0.0016988456323976096,-0.000644579975265785,-0.001261928798224407,0.0014917469276472496,0.00025629930533804004,-0.001661003061809122,0.0008610611103393504,0.001078621140041301,-0.0015845410351623059,-0.000010982519468670268,0.001588675647577043,-0.0010572463937182544,-0.0008745434264680063,0.0016431183573983941,-0.00023205945121231676,-0.0014837308722831706,0.0012292344428094005,0.0006541817707338698,-0.0016666009794538096,0.00046775952319143125,0.0013486986416117019,-0.0013736690651118403,-0.00042231693169361435,0.0016548531116204845,-0.0006912553649986834,-0.0011867118677229454,0.0014878037049223778,0.00018392170375762485,-0.0016084764461720084,0.0008979886815637,0.0010014351092189444,-0.0015695525704905507,0.00005594466207552277,0.0015287902257490346,-0.001083797187546618,-0.0007969828659632944,0.0016175275124054767,-0.0002922427865284056,-0.0014177965873931977,0.0012449974334534334,0.0005778293255745284,-0.0016310600279888488,0.0005200580262196091,0.0012781320456142983,-0.0013784568554704394,-0.0003487115180043474,0.0016102080804333118,-0.0007347017119004154,-0.0011130062565073524,0.0014816536588215525,0.00011452795221224462,-0.0015557477388619453,0.0009318066948683035,0.00092612945734861,-0.001552723409721847,0.00011976511736049848,0.001469149959770467,-0.0011074152733014948,-0.0007216301972786769,0.0015904914970633767,-0.0003492576182697266,-0.0013525431350203407,0.001258057746515065,0.0005039651604261612,-0.0015944909256388486,0.0005691876218907034,0.0012086623204786548,-0.0013808200558933436,-0.0002778230295433546,0.0015649652117235575,-0.0007750392411754451,0.0010407863267157488,0.0014733992119670871,0.000048024443351710324,-0.0015028564626857373,0.0009626344698868147,0.000852664093594242,-0.0015341454724189692,0.0001805798375757076,0.0014097790285858799,-0.0011282171131553429,-0.0006484319793394448,0.0015620905201192293,-0.00040321042418424126,-0.0012879794091582,0.0012685271403792076,0.00043252376782482155,-0.0015569611874856634,0.0006152583463028969,0.001140283378138452,-0.001380864005588963,-0.00020957533199357617,0.0015191785773452852,-0.0008123796189423287,-0.0009700315430348592,0.0014631377225859693,-0.00001567401574594861,-0.001449842734661874,0.0009905834041994542,0.0007810047870022233,-0.0015139067472927914,0.00023848140533292832,0.0013507033217300011,-0.0011463119959027066,-0.0005773412360600683,0.0015324020020463702,-0.0004541994357349061,-0.0012241170356022742,0.0012765110399913272,0.00036344655563969773,-0.0015185366701156824,0.000658372295973902,0.0010729927747985181,-0.0013786886206157503,-0.0001438995024424062,0.0014729016873054363,-0.0008468270088493829,-0.0009007258073856401,0.001450962085384556,-0.00007664526144318761,-0.0013967471549453294,0.0010157579447764558,0.0007111224094082552,-0.0014920917477833327,0.00029355504647752005,0.001291950188696457,-0.0011618029094674707,-0.0005083166272211274,0.0015015008848669618,-0.0005023156640160524,-0.0011609699945040115,0.0012821092993090522,0.00029668096591077206,-0.0014792817380055517,0.000698624609657607,0.0010067912210918668,-0.0013743890378763429,-0.00008073291603006744,0.001426187517618761,-0.0008784789934285954,-0.0008328568724236371,0.0014369612513953334,-0.00013496069974191892,-0.0013436107034079628,0.0010382564345878728,0.0006429922689646879,-0.001468781904744373,0.0003458795506288721,0.0012335482135821156,-0.0011747873006891063,-0.0004413217192995347,0.0014694598972368577,-0.0005476437972705667,-0.0010985542842111163,0.0012854168645082713,0.00023217970047962564,-0.0014392594030160633,0.0007361043268706108,0.0009416821477331841,-0.0013680561743604513,-0.00002001844377637972,0.0013790885284927176,-0.0009074273792894457,-0.0007664158227911079,0.0014212206782551482,-0.00019068611930432298,-0.0012904746428634454,0.0010581718519219556,0.0005765935216221548,-0.0014440559051002789,0.00039552807880841544,0.0011755270115402297,-0.0011853577381613707,-0.0003763243423359188,0.0014363497810923871,-0.0005902629878833201,-0.001036887620716606,0.001286524351779206,0.00016990003861119102,-0.0013985314407912817,0.0007708951402235772,0.0008776713190505759,-0.0013597772134087674,0.0000382962537624602,0.0013316566742453079,-0.0009337589021888669, -0.0007013966148476759,0.0014038227205496864,-0.0002438824068503528,-0.0012373804280933014,0.0010755924571681343,0.0005119086499337978,-0.0014179899839424565,0.00044256887361214276,0.0011179170441275007,-0.0011936024914151245,-0.00031329602114924806,0.001402239485171366,-0.000630247543915065,-0.0009759891679376904,0.001285518551373567,0.00010980323415663845],"x":[100.0,100.60925648702595,101.21851297405189,101.82776946107785,102.4370259481038,103.04628243512974,103.65553892215569,104.26479540918163,104.87405189620759,105.48330838323353,106.09256487025948,106.70182135728543,107.31107784431137,107.92033433133733,108.52959081836327,109.13884730538922,109.74810379241517,110.35736027944112,110.96661676646707,111.57587325349301,112.18512974051896,112.7943862275449,113.40364271457086,114.01289920159681,114.62215568862275,115.2314121756487,115.84066866267464,116.4499251497006,117.05918163672655,117.6684381237525,118.27769461077844,118.88695109780438,119.49620758483034,120.10546407185629,120.71472055888223,121.32397704590818,121.93323353293412,122.54249001996008,123.15174650698603,123.76100299401197,124.37025948103792,124.97951596806388,125.58877245508982,126.19802894211577,126.80728542914171,127.41654191616766,128.02579840319362,128.63505489021955,129.2443113772455,129.85356786427147,130.4628243512974,131.07208083832336,131.6813373253493,132.29059381237525,132.8998502994012,133.50910678642714,134.1183632734531,134.72761976047903,135.336876247505,135.94613273453095,136.55538922155688,137.16464570858284,137.77390219560877,138.38315868263473,138.9924151696607,139.60167165668662,140.21092814371258,140.8201846307385,141.42944111776447,142.03869760479043,142.64795409181636,143.25721057884232,143.86646706586825,144.4757235528942,145.08498003992017,145.6942365269461,146.30349301397206,146.91274950099802,147.52200598802395,148.1312624750499,148.74051896207584,149.3497754491018,149.95903193612776,150.5682884231537,151.17754491017965,151.78680139720558,152.39605788423154,153.0053143712575,153.61457085828343,154.2238273453094,154.83308383233532,155.44234031936128,156.05159680638724,156.66085329341317,157.27010978043913,157.87936626746506,158.48862275449102,159.09787924151698,159.7071357285429,160.31639221556887,160.9256487025948,161.53490518962076,162.14416167664672,162.75341816367265,163.3626746506986,163.97193113772454,164.5811876247505,165.19044411177646,165.7997005988024,166.40895708582835,167.01821357285428,167.62747005988024,168.2367265469062,168.84598303393213,169.4552395209581,170.06449600798402,170.67375249500998,171.28300898203594,171.89226546906187,172.50152195608783,173.11077844311376,173.72003493013972,174.32929141716568,174.9385479041916,175.54780439121757,176.1570608782435,176.76631736526946,177.37557385229542,177.98483033932135,178.5940868263473,179.20334331337327,179.8125998003992,180.42185628742516,181.0311127744511,181.64036926147705,182.249625748503,182.85888223552894,183.4681387225549,184.07739520958083,184.6866516966068,185.29590818363275,185.90516467065868,186.51442115768464,187.12367764471057,187.73293413173653,188.3421906187625,188.95144710578842,189.56070359281438,190.1699600798403,190.77921656686627,191.38847305389223,191.99772954091816,192.60698602794412,193.21624251497005,193.825499001996,194.43475548902197,195.0440119760479,195.65326846307386,196.2625249500998,196.87178143712575,197.4810379241517,198.09029441117764,198.6995508982036,199.30880738522953,199.9180638722555,200.52732035928145,201.13657684630738,201.74583333333334,202.35508982035927,202.96434630738523,203.5736027944112,204.18285928143712,204.79211576846308,205.401372255489,206.01062874251497,206.61988522954093,207.22914171656686,207.83839820359282,208.44765469061878,209.0569111776447,209.66616766467067,210.2754241516966,210.88468063872256,211.49393712574852,212.10319361277445,212.7124500998004,213.32170658682634,213.9309630738523,214.54021956087826,215.1494760479042,215.75873253493015,216.36798902195608,216.97724550898204,217.586501996008,218.19575848303393,218.8050149700599,219.41427145708582,220.02352794411178,220.63278443113774,221.24204091816367,221.85129740518963,222.46055389221556,223.06981037924152,223.67906686626748,224.2883233532934,224.89757984031937,225.5068363273453,226.11609281437126,226.72534930139722,227.33460578842315,227.9438622754491,228.55311876247504,229.162375249501,229.77163173652696,230.3808882235529,230.99014471057885,231.59940119760478,232.20865768463074,232.8179141716567,233.42717065868263,234.0364271457086,234.64568363273452,235.25494011976048,235.86419660678644,236.47345309381237,237.08270958083833,237.69196606786429,238.30122255489022,238.91047904191618,239.5197355289421,240.12899201596807,240.73824850299403,241.34750499001996,241.95676147704592,242.56601796407185,243.1752744510978,243.78453093812377,244.3937874251497,245.00304391217566,245.6123003992016,246.22155688622755,246.8308133732535,247.44006986027944,248.0493263473054,248.65858283433133,249.2678393213573,249.87709580838325,250.48635229540918,251.09560878243514,251.70486526946107,252.31412175648703,252.92337824351299,253.53263473053892,254.14189121756488,254.7511477045908,255.36040419161677,255.96966067864273,256.57891716566866,257.1881736526946,257.7974301397206,258.40668662674653,259.01594311377244,259.6251996007984,260.23445608782436,260.8437125748503,261.4529690618763,262.0622255489022,262.67148203592814,263.2807385229541,263.88999500998005,264.499251497006,265.1085079840319,265.7177644710579,266.32702095808384,266.9362774451098,267.54553393213575,268.15479041916166,268.7640469061876,269.3733033932136,269.98255988023953,270.5918163672655,271.2010728542914,271.81032934131736,272.4195858283433,273.0288423153693,273.63809880239523,274.24735528942114,274.8566117764471,275.46586826347306,276.075124750499,276.684381237525,277.2936377245509,277.90289421157684,278.5121506986028,279.12140718562875,279.7306636726547,280.3399201596806,280.9491766467066,281.55843313373254,282.1676896207585,282.77694610778445,283.38620259481036,283.9954590818363,284.6047155688623,285.21397205588823,285.8232285429142,286.4324850299401,287.04174151696606,287.650998003992,288.260254491018,288.86951097804393,289.47876746506984,290.0880239520958,290.69728043912176,291.3065369261477,291.9157934131737,292.5250499001996,293.13430638722554,293.7435628742515,294.35281936127745,294.9620758483034,295.5713323353293,296.1805888223553,296.78984530938123,297.3991017964072,298.00835828343315,298.61761477045906,299.226871257485,299.836127744511,300.44538423153693,301.0546407185629,301.6638972055888,302.27315369261476,302.8824101796407,303.4916666666667,304.10092315369263,304.71017964071854,305.3194361277445,305.92869261477045,306.5379491017964,307.1472055888224,307.7564620758483,308.36571856287424,308.9749750499002,309.58423153692615,310.1934880239521,310.802744510978,311.412000998004,312.02125748502993,312.6305139720559,313.23977045908185,313.8490269461078,314.4582834331337,315.0675399201597,315.67679640718563,316.2860528942116,316.89530938123755,317.50456586826346,318.1138223552894,318.7230788423154,319.33233532934133,319.9415918163673,320.5508483033932,321.16010479041915,321.7693612774451,322.3786177644711,322.98787425149703,323.59713073852294,324.2063872255489,324.81564371257485,325.4249001996008,326.0341566866268,326.6434131736527,327.25266966067863,327.8619261477046,328.47118263473055,329.0804391217565,329.6896956087824,330.2989520958084,330.90820858283433,331.5174650698603,332.12672155688625,332.73597804391216,333.3452345309381,333.9544910179641,334.56374750499003,335.173003992016,335.7822604790419,336.39151696606785,337.0007734530938,337.6100299401198,338.21928642714573,338.82854291417163,339.4377994011976,340.04705588822355,340.6563123752495,341.2655688622755,341.8748253493014,342.48408183632733,343.0933383233533,343.70259481037925,344.3118512974052,344.9211077844311,345.5303642714571,346.13962075848303,346.748877245509,347.35813373253495,347.96739021956085,348.5766467065868,349.1859031936128,349.79515968063873,350.4044161676647,351.0136726546906,351.62292914171655,352.2321856287425,352.8414421157685,353.45069860279443,354.05995508982033,354.6692115768463,355.27846806387225,355.8877245508982,356.4969810379242,357.1062375249501,357.71549401197603,358.324750499002,358.93400698602795,359.5432634730539,360.1525199600798,360.7617764471058,361.37103293413173,361.9802894211577,362.58954590818365,363.19880239520955,363.8080588822355,364.4173153692615,365.02657185628743,365.6358283433134,366.2450848303393,366.85434131736525,367.4635978043912,368.0728542914172,368.68211077844313,369.29136726546903,369.900623752495,370.50988023952095,371.1191367265469,371.7283932135729,372.3376497005988,372.94690618762473,373.5561626746507,374.16541916167665,374.7746756487026,375.38393213572857,375.9931886227545,376.60244510978043,377.2117015968064,377.82095808383235,378.4302145708583,379.0394710578842,379.6487275449102,380.25798403193613,380.8672405189621,381.47649700598805,382.08575349301395,382.6950099800399,383.3042664670659,383.91352295409183,384.5227794411178,385.1320359281437,385.74129241516965,386.3505489021956,386.9598053892216,387.56906187624753,388.17831836327343,388.7875748502994,389.39683133732535,390.0060878243513,390.61534431137727,391.2246007984032,391.83385728542913,392.4431137724551,393.05237025948105,393.661626746507,394.2708832335329,394.8801397205589,395.48939620758483,396.0986526946108,396.70790918163675,397.31716566866265,397.9264221556886,398.5356786427146,399.14493512974053,399.7541916167665,400.3634481037924,400.97270459081835,401.5819610778443,402.19121756487027,402.80047405189623,403.40973053892213,404.0189870259481,404.62824351297405,405.2375,405.84675648702597,406.4560129740519,407.06526946107783,407.6745259481038,408.28378243512975,408.8930389221557,409.5022954091816,410.1115518962076,410.72080838323353,411.3300648702595,411.93932135728545,412.54857784431135,413.1578343313373,413.7670908183633,414.37634730538923,414.9856037924152,415.5948602794411,416.20411676646705,416.813373253493,417.42262974051897,418.03188622754493,418.64114271457083,419.2503992015968,419.85965568862275,420.4689121756487,421.07816866267467,421.6874251497006,422.29668163672653,422.9059381237525,423.51519461077845,424.1244510978044,424.7337075848303,425.3429640718563,425.95222055888223,426.5614770459082,427.17073353293415,427.77999001996005,428.389246506986,428.998502994012,429.60775948103793,430.2170159680639,430.8262724550898,431.43552894211575,432.0447854291417,432.65404191616767,433.26329840319363,433.87255489021953,434.4818113772455,435.09106786427145,435.7003243512974,436.30958083832337,436.91883732534933,437.52809381237523,438.1373502994012,438.74660678642715,439.3558632734531,439.96511976047907,440.574376247505,441.18363273453093,441.7928892215569,442.40214570858285,443.0114021956088,443.6206586826347,444.22991516966067,444.83917165668663,445.4484281437126,446.05768463073855,446.66694111776445,447.2761976047904,447.88545409181637,448.49471057884233,449.1039670658683,449.7132235528942,450.32248003992015,450.9317365269461,451.54099301397207,452.15024950099803,452.75950598802393,453.3687624750499,453.97801896207585,454.5872754491018,455.19653193612777,455.8057884231537,456.41504491017963,457.0243013972056,457.63355788423155,458.2428143712575,458.8520708582834,459.46132734530937,460.07058383233533,460.6798403193613,461.28909680638725,461.89835329341315,462.5076097804391,463.11686626746507,463.72612275449103,464.335379241517,464.9446357285429,465.55389221556885,466.1631487025948,466.77240518962077,467.38166167664673,467.99091816367263,468.6001746506986,469.20943113772455,469.8186876247505,470.42794411177647,471.0372005988024,471.64645708582833,472.2557135728543,472.86497005988025,473.4742265469062,474.0834830339321,474.69273952095807,475.30199600798403,475.91125249501,476.52050898203595,477.12976546906185,477.7390219560878,478.34827844311377,478.95753493013973,479.5667914171657,480.1760479041916,480.78530439121755,481.3945608782435,482.00381736526947,482.61307385229543,483.22233033932133,483.8315868263473,484.44084331337325,485.0500998003992,485.65935628742517,486.26861277445107,486.87786926147703,487.487125748503,488.09638223552895,488.7056387225549,489.3148952095808,489.92415169660677,490.53340818363273,491.1426646706587,491.75192115768465,492.36117764471055,492.9704341317365,493.57969061876247,494.18894710578843,494.7982035928144,495.4074600798403,496.01671656686625,496.6259730538922,497.23522954091817,497.84448602794413,498.4537425149701,499.062999001996,499.67225548902195,500.2815119760479,500.89076846307387,501.5000249500998,502.10928143712573,502.7185379241517,503.32779441117765,503.9370508982036,504.54630738522957,505.15556387225547,505.76482035928143,506.3740768463074,506.98333333333335,507.5925898203593,508.2018463073852,508.81110279441117,509.42035928143713,510.0296157684631,510.63887225548905,511.24812874251495,511.8573852295409,512.4666417165669,513.0758982035928,513.6851546906188,514.2944111776447,514.9036676646707,515.5129241516966,516.1221806387225,516.7314371257485,517.3406936127744,517.9499500998004,518.5592065868263,519.1684630738523,519.7777195608783,520.3869760479042,520.9962325349302,521.605489021956,522.214745508982,522.824001996008,523.4332584830339,524.0425149700599,524.6517714570858,525.2610279441118,525.8702844311377,526.4795409181637,527.0887974051897,527.6980538922156,528.3073103792415,528.9165668662674,529.5258233532934,530.1350798403193,530.7443363273453,531.3535928143713,531.9628493013972,532.5721057884232,533.1813622754491,533.7906187624751,534.399875249501,535.0091317365269,535.6183882235529,536.2276447105788,536.8369011976048,537.4461576846307,538.0554141716567,538.6646706586827,539.2739271457086,539.8831836327346,540.4924401197604,541.1016966067864,541.7109530938123,542.3202095808383,542.9294660678643,543.5387225548902,544.1479790419162,544.7572355289421,545.3664920159681,545.9757485029941,546.5850049900199,547.1942614770459,547.8035179640718,548.4127744510978,549.0220309381237,549.6312874251497,550.2405439121757,550.8498003992016,551.4590568862276,552.0683133732535,552.6775698602794,553.2868263473054,553.8960828343313,554.5053393213573,555.1145958083832,555.7238522954092,556.3331087824351,556.9423652694611,557.5516217564871,558.160878243513,558.7701347305389,559.3793912175648,559.9886477045908,560.5979041916167,561.2071606786427,561.8164171656687,562.4256736526946,563.0349301397206,563.6441866267465,564.2534431137725,564.8626996007984,565.4719560878243,566.0812125748503,566.6904690618762,567.2997255489022,567.9089820359281,568.5182385229541,569.1274950099801,569.736751497006,570.346007984032,570.9552644710578,571.5645209580838,572.1737774451097,572.7830339321357,573.3922904191617,574.0015469061876,574.6108033932136,575.2200598802395,575.8293163672655,576.4385728542915,577.0478293413173,577.6570858283433,578.2663423153692,578.8755988023952,579.4848552894211,580.0941117764471,580.7033682634731,581.312624750499,581.921881237525,582.531137724551,583.1403942115768,583.7496506986027,584.3589071856287,584.9681636726547,585.5774201596806,586.1866766467066,586.7959331337325,587.4051896207585,588.0144461077845,588.6237025948104,589.2329590818364,589.8422155688622,590.4514720558882,591.0607285429141,591.6699850299401,592.2792415169661,592.888498003992,593.497754491018,594.107010978044,594.7162674650699,595.3255239520959,595.9347804391217,596.5440369261477,597.1532934131736,597.7625499001996,598.3718063872255,598.9810628742515,599.5903193612775,600.1995758483034,600.8088323353294,601.4180888223553,602.0273453093812,602.6366017964071,603.2458582834331,603.8551147704591,604.464371257485,605.073627744511,605.682884231537,606.2921407185629,606.9013972055889,607.5106536926148,608.1199101796407,608.7291666666666,609.3384231536926,609.9476796407185,610.5569361277445,611.1661926147705,611.7754491017964,612.3847055888224,612.9939620758483,613.6032185628743,614.2124750499001,614.8217315369261,615.4309880239521,616.040244510978,616.649500998004,617.25875748503,617.8680139720559,618.4772704590819,619.0865269461078,619.6957834331338,620.3050399201596,620.9142964071856,621.5235528942115,622.1328093812375,622.7420658682635,623.3513223552894,623.9605788423154,624.5698353293413,625.1790918163673,625.7883483033933,626.3976047904191,627.0068612774451,627.616117764471,628.225374251497,628.834630738523,629.4438872255489,630.0531437125749,630.6624001996008,631.2716566866268,631.8809131736527,632.4901696606786,633.0994261477045,633.7086826347305,634.3179391217565,634.9271956087824,635.5364520958084,636.1457085828343,636.7549650698603,637.3642215568863,637.9734780439122,638.5827345309381,639.191991017964,639.80124750499,640.410503992016,641.0197604790419,641.6290169660679,642.2382734530938,642.8475299401198,643.4567864271457,644.0660429141717,644.6752994011975,645.2845558882235,645.8938123752495,646.5030688622754,647.1123253493014,647.7215818363273,648.3308383233533,648.9400948103793,649.5493512974052,650.1586077844312,650.7678642714571,651.377120758483,651.986377245509,652.5956337325349,653.2048902195609,653.8141467065868,654.4234031936128,655.0326596806387,655.6419161676647,656.2511726546907,656.8604291417166,657.4696856287425,658.0789421157684,658.6881986027944,659.2974550898203,659.9067115768463,660.5159680638723,661.1252245508982,661.7344810379242,662.3437375249501,662.9529940119761,663.562250499002,664.1715069860279,664.7807634730539,665.3900199600798,665.9992764471058,666.6085329341317,667.2177894211577,667.8270459081837,668.4363023952096,669.0455588822356,669.6548153692614,670.2640718562874,670.8733283433133,671.4825848303393,672.0918413173653,672.7010978043912,673.3103542914172,673.9196107784431,674.5288672654691,675.1381237524951,675.7473802395209,676.3566367265469,676.9658932135728,677.5751497005988,678.1844061876247,678.7936626746507,679.4029191616767,680.0121756487026,680.6214321357286,681.2306886227545,681.8399451097804,682.4492015968063,683.0584580838323,683.6677145708583,684.2769710578842,684.8862275449102,685.4954840319361,686.1047405189621,686.7139970059881,687.323253493014,687.9325099800399,688.5417664670658,689.1510229540918,689.7602794411177,690.3695359281437,690.9787924151697,691.5880489021956,692.1973053892216,692.8065618762475,693.4158183632735,694.0250748502993,694.6343313373253,695.2435878243513,695.8528443113772,696.4621007984032,697.0713572854291,697.6806137724551,698.2898702594811,698.899126746507,699.508383233533,700.1176397205588,700.7268962075848,701.3361526946107,701.9454091816367,702.5546656686627,703.1639221556886,703.7731786427146,704.3824351297405,704.9916916167665,705.6009481037925,706.2102045908183,706.8194610778443,707.4287175648702,708.0379740518962,708.6472305389221,709.2564870259481,709.8657435129741,710.475]} From d90a967826e41cc1ee05310677af2598282e935e Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Wed, 11 Dec 2024 13:24:19 +0600 Subject: [PATCH 58/63] "added changes" --- .../math/base/special/cosc/test/fixtures/julia/data.json | 2 +- .../base/special/cosc/test/fixtures/julia/large_positive.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/data.json b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/data.json index a7e087d40766..f1e0513f49b3 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/data.json +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/data.json @@ -1 +1 @@ -{"expected":[-0.01, -0.00988692665446217, -0.009530417260232635, -0.008939001927057518, -0.00812700023963896, -0.007114174661777941, -0.005925249651897664, -0.004589308189120179, -0.003139080437401436, -0.001610141944230643, -0.000040041013955833456, 0.0015326233416345881, 0.0030691502352163075, 0.004531689196248325, 0.005884172493081779, 0.007093204522074692, 0.008128886334342557, 0.008965554944794535, 0.009582419144642727, 0.009964076066946442, 0.010100895673283842, 0.009989263566841785, 0.009631676013797021, 0.009036684685486062, 0.008218692329369866, 0.007197604246304405, 0.005998344004833064, 0.004650245172536397, 0.0031863339073372196, 0.001642519952343532, 0.000056715849575066915, -0.00153209402566305, -0.0030848117512741317, -0.0045631879117862895, -0.005930763748120867, -0.007153770198919874, -0.008201961665838864, -0.009049363918998405, -0.009674917650644571, -0.010063001734130994, -0.010203823189262884, -0.010093664121865643, -0.009734979415048518, -0.009136342615950489, -0.008312241194704922, -0.00728272606016411, -0.0060729238083116685, -0.004712423565792373, -0.0032345533890227388, -0.001675563912446815, -0.0000737392399667339, 0.001531543115552564, 0.00310078016369045, 0.004595315448258029, 0.0059782912241642, 0.007215557347592569, 0.008276514468868288, 0.009134870711019328, 0.009769293124595185, 0.010163937779373152, 0.010308845323473495, 0.010200192137384127, 0.009840390753724568, 0.009238036916283918, 0.008407704423026918, 0.0073695926446301525, 0.006149035240488571, 0.004775882018532973, 0.003283769019197351, 0.0017092946699876987, 0.00009112218696606803, -0.001530969764797153, -0.0031170648437149825, -0.004628091205258873, -0.006026783911534547, -0.007278603873109481, -0.008352590664382306, -0.009222128157529003, -0.00986560404352474, -0.010266946900304674, -0.01041602746442601, -0.010308914090387096, -0.009947975959452496, -0.009341831339686926, -0.008505142009038258, -0.007458258740058715, -0.006226726414999595, -0.004840660803149927, -0.00333401220293789, -0.0017437339512144095, -0.0001088761619285668, 0.001530373082350148, 0.0031336755463287234, 0.004661535387110025, 0.0060762720085808086, 0.007342949264059696, 0.008430238095294144, 0.009311191309838516, 0.00996391133861546, 0.010372094428864201, 0.010525437750984275, 0.010419899256959096, 0.010057803740838872, 0.009447792329506606, 0.008604616481879815, 0.007548781402151541, 0.006306047483438199, 0.0049068019008445575, 0.0033853156810923096, 0.0017789044101855964, 0.00012701313104154568, -0.00152975212978499, -0.0031506224300722734, -0.004695669045019289, -0.006126786985255266, -0.007408634676172836, -0.008509506628087186, -0.009402117551157869, -0.010064278525306006, -0.01047944847111701, -0.010637147218504658, -0.010533219861166827, -0.010169945733445008, -0.009555989162640333, -0.008706193040386213, -0.00764122012567864, -0.006387050744406665, -0.004974349093233294, -0.0034377136020542084, -0.0018148296788304194, -0.00014554558228247226, 0.0015291059182347367, 0.0031679160781232906, 0.004730514121913109, 0.006178361650754986, 0.0074757030212299624, 0.008590448260943039, 0.009494966721381806, 0.01016677184176389, 0.010589080056074333, 0.01075122995439325, 0.01064895123355383, 0.010284476657319522, 0.009666494102209426, 0.008809939697100646, 0.007735636976214574, 0.006469790759651679, 0.0050433480599028115, 0.003491241598222934, 0.0018515344202770054, 0.00016448655416644695, -0.0015284334051064155, -0.0031855675207004695, -0.004766093500153822, -0.0062310302255206415, -0.007544199061731474, -0.008673117238872902, -0.009589801249979152, -0.010271460396355445, -0.01070106329419811, -0.010867763263796957, -0.01076717197996795, -0.010401474484817446, -0.0097793825602118, -0.00891592743171094, -0.007832096730511445, -0.006554324477814246, -0.00511384648238484, -0.0035459368674946967, -0.0018890443857169051, -0.00018384966640662659, 0.0015277334905348747, 0.003203588258907899, 0.004802431052346535, 0.006284828417937068, 0.007614169511750057, 0.008757570176396957, 0.009686686297598708, 0.010378416324808213, 0.010815475546331858, 0.01098682784620731, 0.010887964161528249, 0.01052102061949433, 0.009894733270925042, 0.009024230354636906, 0.007930667026167472, 0.006640711366395806, 0.00518589415503449, 0.0036018382601906906, 0.0019273864750659596, 0.00020364915265412223, -0.0015270050135687122, -0.0032219902901132642, -0.0048395516954862485, -0.00633979350608419, -0.007685663144457024, -0.008843866188345628, -0.009785689907073791, -0.01048771495781752, -0.010932397603869465, -0.011108507983824576, -0.011011413486579361, -0.010643200086942263, -0.010012628475892515, -0.009134925881564053, -0.00803141852132107, -0.006729013552570935, -0.005259543103367455, -0.0036589863718344637, -0.001966588801736915, -0.00022389989546712193, 0.0015262467480482893, 0.003240786134992019, 0.004877481448689318, 0.006395964424944249, 0.0077587309068310635, 0.008932067029426978, 0.009886883164553559, 0.010599434999880308, 0.01105191388104099, 0.011232891742606407, 0.011137609515594709, 0.010768101738503401, 0.010133154121412417, 0.009248094919780498, 0.00813442506516627, 0.006819295973559219, 0.005334847710433165, 0.0037174236422587853, 0.002006680761836088, 0.0002446174637050831, -0.0015254573981639328, -0.0032599888663503917, -0.004916247494804226, -0.00645338185948109, -0.007833426042127466, -0.009022237243243287, -0.009990340371570247, -0.010713658720364531, -0.011174112620279932, -0.0113600711870085, -0.011266645880046446, -0.010895818468891231, -0.010256400069519504, -0.009363822067268227, -0.00823976388014558, -0.006911626537311458, -0.005411864851883404, -0.0037771944615355283, -0.0020476931081573504, -0.00026581815252941317, 0.0015246355936486423, 0.0032796121398813776, 0.004955878246193867, 0.006512088344072049, 0.007909804220715057, 0.009114444321521939, 0.010096139228910206, 0.010830472157591824, 0.011299086111719118, 0.011490142609518082, 0.01139862051637145, 0.011026447448835098, 0.010382460323554764, 0.009482195825569065, 0.008347515756775439, 0.007006076294349274, 0.005490654040427009, 0.0038383452832982754, 0.0020896580293487143, 0.0002875190262419242, -0.0015237798845881456, -0.003299670226990427, -0.004996403415038466, -0.00657212836879014, -0.007987923679967875, -0.009208758874376709, -0.010204361033252141, -0.010949965337194027, -0.011426930927965368, -0.011623206776182355, -0.011533635916259553, -0.011160090373977484, -0.010511433269506572, -0.009603308827561281, -0.0084577652621272, -0.007102719621677968, -0.005571277580452928, -0.003900924746056256, -0.002132609234697766, -0.0003097379641831879, 0.001522888735793008, 0.0033201780498695213, 0.0050378540885073425, 0.00663354849310584, 0.008067845373939564, 0.009305254812510197, 0.01031509088761195, 0.011072232505793778, 0.011557748175405648, 0.011759369189448244, 0.01167179939460986, 0.011296853731357517, 0.010643421934430523, 0.009727258081365672, 0.008570600963101867, 0.007201634419756789, 0.005653800733659926, 0.003964983803162722, 0.002176582044981638, 0.00033249370996025145, -0.001521960520715658, -0.0033411512189909453, -0.0050802628092211375, -0.006696397467611468, -0.008149633133637126, -0.009404009542339867, -0.01042841792674361, -0.011197372381315024, -0.011691643763420745, -0.011898740369753469, -0.011813223376626478, -0.011436849084956666, -0.01077853426337144, -0.009854145231748159, -0.00868611566573316, -0.007302902323647564, -0.005738291896619819, -0.004030575862183254, -0.002221613489926261, -0.00035580592428265123, 0.0015209935148397405, 0.0033626060732225307, 0.005123663661416047, 0.0067607263644399035, 0.008233353838774906, 0.009505104175134903, 0.010544435558748297, 0.011325488421326742, 0.011828728693012169, 0.01204143615744953, 0.01195802570566823, 0.011580193381905442, 0.010916883416353076, 0.009984076840478081, 0.008804406671879364, 0.007406608929514652, 0.005824822791289449, 0.004097756934445616, 0.0022677424128075625, 0.00037969524172102025, -0.0015199858885155129, -0.003384559722778639, -0.0051680923633115935, -0.006826588717109743, -0.008319077601981714, -0.009608623751342315, -0.010663241724268916, -0.0114566891109392, -0.011969119366495633, -0.012187578036788894, -0.012106329973623965, -0.011727009281129063, -0.011058588087152581, -0.010117164687290788, -0.008925576054795813, -0.007512844037826293, -0.005913468669586553, -0.004166585795663593, -0.0023150095828370614, -0.00040418333173179754, 0.0015189356991723625, 0.0034070300952481303, 0.005213586366195044, 0.0068940406706050625, 0.008406877966526892, 0.00971465748142312, 0.010784939174781306, 0.011591088271950864, 0.012112937920077007, 0.012337293483882131, 0.012258265875760151, 0.01187742550636122, 0.011203772845747197, 0.01025352609321697, 0.009049730955228492, 0.0076217019146871045, 0.006004308533256078, 0.0042371241585981625, 0.0023634578160152417, 0.00042929296432671804, -0.001517840882848934, -0.003430035984944442, -0.00526018496080393, -0.006963141142563569, -0.008496832118737281, -0.009823299004609728, -0.010909635771645219, -0.011728805395083594, -0.012260312581308327, -0.012490716340718399, -0.012413969592181766, -0.0120315772256728, -0.011352568506508775, -0.010393284268267586, -0.00917698389983237, -0.007733281572913733, -0.006097425370375212, -0.004309436858824762, -0.0024131321051841037, -0.000455048080804994, 0.001516699244976413, 0.0034535971058876993, 0.005307929391640458, 0.007033951996561309, 0.008589021116394062, 0.009934646667183814, 0.011037444807740592, 0.011869965997356702, 0.01241137805362121, 0.012647987217556979, 0.01257358419826562, 0.012189606459857406, 0.011505112524436695, 0.010536568685619604, 0.00930745314390864, 0.007847687074605564, 0.006192906409989697, 0.0043835920547748135, 0.0024640797601374206, 0.00048147387000668074, -0.0015155084503307651, -0.003477734148703692, -0.005356862979918688, -0.007106538228550195, -0.00868353013453172, -0.010048803821994409, -0.011168485353712166, -0.012014702006836202, -0.012566275930364317, -0.012809253926231624, -0.012737260106664313, -0.012351662522275366, -0.011661549421945782, -0.010683515484707798, -0.009441263040645216, -0.007965027857164098, -0.006290843396517381, -0.004459661443360515, -0.002516350558681711, -0.0005085968506046707, 0.001514266012075679, 0.0035024688418020112, 0.0054070312559077295, 0.007180968167638915, 0.008780448730199739, 0.01016587915114885, 0.011302882631036706, 0.012163152177246743, 0.012725155141015809, 0.012974671947175291, 0.012905155543753436, 0.012517902493012727, 0.01182203124900195, 0.010834267905846668, 0.009578544439296047, 0.008085419084898031, 0.006391332885738154, 0.0045377204926023715, 0.002569996909679013, 0.0005364449599842499, -0.001512969279790106, -0.0035278240172101675, -0.005458482101529251, -0.007257313692512165, -0.00887987112792786, -0.010285987013979836, -0.011440768414380693, -0.012315462535177032, -0.012888172432531002, -0.013144404933265989, -0.013077437063691643, -0.012688491730525893, -0.011986718079678918, -0.010988976759310683, -0.009719435114967503, -0.008208982028594616, -0.006494476564373253, -0.00461784869286026, -0.002625074029175683, -0.0005650476503558295, 0.0015116154263882828, 0.0035538236814693746, 0.00551126590414333, 0.007335650464937388, 0.008981896527792297, 0.010409247822644567, 0.011582281465954605, 0.012471786862916296, 0.01305549288909077, 0.013318625253926769, 0.01325428010360674, 0.012863604424270996, 0.012155778548548057, 0.011147800932092035, 0.009864080232989993, 0.00833584447568282, 0.006600381595484517, 0.004700129828408825, 0.0026816401308816357, 0.0005944359927715187, -0.0015102014337907703, -0.003580493092072803, -0.005565435722552771, -0.007416058181949025, -0.009086629438214979, -0.0105357884479343, -0.011727568004884548, -0.012632287220270471, -0.013227290493877986, -0.013497514583281576, -0.013435869583795876, -0.013043424192202441, -0.012329390430677555, -0.01131090793592424, -0.010012632851152573, -0.008466141173911083, -0.0067091609921459345, -0.004784652271327309, -0.0027397566323577017, -0.0006246427898399152, 0.001508724077233647, 0.003607858839933399, 0.005621047466391389, 0.007498620848472102, 0.009194180035831013, 0.010665742658183692, 0.011876782214928206, 0.012797134509085477, 0.013403748736896336, 0.013681264536586487, 0.013622400557258232, 0.013228144727447766, 0.012507741269437852, 0.011478474500534986, 0.010165254463467811, 0.008600014311765294, 0.006820934022144826, 0.004871509299848284, 0.0027994883784689963, 0.0006557026979733072, -0.0015071799080421788, -0.0036359489384678264, -0.005678160090151004, -0.007583427072353768, -0.009304664555034639, -0.010799251594458421, -0.012030086794248706, -0.012966509084608429, -0.01358506127329904, -0.013870077359622443, -0.013814078913354245, -0.013417970498948778, -0.012691029056767496, -0.011650687216557029, -0.010322115589511812, -0.008737614039244489, -0.006935826646738166, -0.004960799443598293, -0.00286090388378896, -0.0006876523601446101, 0.0015055652347127203, 0.003664792919900075, 0.005736835803278438, 0.007670570383973737, 0.009418205710098777, 0.010936464285577674, 0.012187653551363396, 0.013140601418286178, 0.013771432637189456, 0.014064166676264561, 0.014011122140930345, 0.013613117511392724, 0.012879462971095709, 0.01182774323300063, 0.010483396413877088, 0.008879099032985305, 0.007053971996878242, 0.005052626858393415, 0.0029240755958798107, 0.0007205305502048775, -0.001503876102100212, -0.003694421939495912, -0.005797140297899685, -0.007760149582861, -0.009534933153084202, -0.011077538206922258, -0.012349664051856403, -0.013319612817118825, -0.013963079016428646, -0.014263758300036204, -0.014213760156853002, -0.013813814130377081, -0.01307326417869357, -0.012009851014782118, -0.010649287480762973, -0.009024637110223707, -0.007175510890671139, -0.0051471017336073635, -0.0029890801815564577, -0.0007543783299625464, 0.0015021082684974105, 0.0037248688884815436, 0.005859142995939838, 0.007852269114008683, 0.009654983971142447, 0.011222639887424245, 0.012516310320976765, 0.013503756205283697, 0.014160229094615834, 0.014469091116130801, 0.014422236206590586, 0.01402030197942878, 0.013272666704918262, 0.012197231166414477, 0.010819990449347791, 0.009174405896575422, 0.007300592396315846, 0.005244340735442973, 0.00305599883852759, 0.0007892392203537773, -0.0015002571803483097, -0.003756168516521863, -0.005922917317570303, -0.007947039476913645, -0.009778503227205113, -0.011371945569670857, -0.012687795607829545, -0.01369325697440833, -0.014363124967141254, -0.014680418041143412, -0.014636807844257003, -0.014232836916291763, -0.013477918382556043, -0.012390117328715117, -0.01099571891622728, -0.009328593553228428, -0.0074293744452379505, -0.005344467489871733, -0.0031249176350563387, -0.0008251593882100806, 0.0014983179443310232, 0.0037883575646899615, 0.005988540973186967, 0.008044577670688243, 0.009905644548561483, 0.01152564192860729, 0.012864335217565146, 0.013888353909629015, 0.014572023139021239, 0.014898007068620146, 0.014857748000421533, 0.014451690096772442, 0.013689281885353361, 0.012588757156183556, 0.011176699311977473, 0.009487399569802251, 0.00756202450073509, 0.005447613109424827, 0.003195927880649213, 0.0008621878502871834, -0.0014962852964669007, -0.003821474910017328, -0.0060560962813343815, -0.00814500767903403, -0.01003657076832504, -0.011683926855016508, -0.013046157418718948, -0.014089300199438888, -0.01478719561316758, -0.015122142409512172, -0.015085346146991644, -0.014677149135446104, -0.013907035855790485, -0.012793413383655411, -0.011363171879750803, -0.00965103562990562, -0.007698720288068099, -0.005553916768576673, -0.0032691265311025563, -0.0009003766964701549, 0.0014941535679173668, 0.0038555617227887706, 0.0061256705153319305, 0.008248460999282772, 0.01017145462543919, 0.011847010310674175, 0.013233504433751054, 0.014296364538302178, 0.015008931078796535, 0.015353125737739849, 0.015319909569623608, 0.014909519373670074, 0.014131476137286221, 0.013004364991881507, 0.011555391744804463, 0.009819726557274993, 0.007839650592710877, 0.005663526333004311, 0.0033446166317083422, 0.0009397813342607372, -0.0014919166470262143, -0.003890661637938775, -0.006197356281646028, -0.008355077220264387, -0.010310479529530353, -0.01201511526296148, -0.013426633521814406, -0.014509832332133439, -0.015237536210895212, -0.015591277552345352, -0.015561764759421871, -0.015149125266661038, -0.014362917122283375, -0.013221908482918158, -0.011753630084960982, -0.00999371135140407, -0.007985016134273973, -0.005776599048728531, -0.003422507802850432, -0.0009804607569779459, 0.0014895679371589765, 0.003926820942018058, 0.006271251933469901, 0.008465004654331377, 0.010453840397743733, 0.012188478707671278, 0.013625818163939164, 0.014730007018010458, 0.015473337093048467, 0.01583693866916641, 0.015811258937180557, 0.01539631190288308, 0.014601693229142315, 0.01344635927757641, 0.011958175413308575, 0.010173244322676796, 0.008135030524631728, 0.0058933022978664, 0.003502916772823997, 0.0010224778383769908, -0.001487100309771126, -0.003964088777422805, -0.006347462023384735, -0.008578401029559696, -0.010601744571577348, -0.012367352789886285, -0.013831349362103474, -0.014957211510959793, -0.01571668077750334, -0.016090471856632402, -0.016068761725133072, -0.01565144667071286, -0.01484816052242278, -0.013678053248790532, -0.012169334985884213, -0.010358596338355093, -0.008289921319845897, -0.006013814428645822, -0.00358596796330269, -0.0010658996567819582, 0.0014845060520990187, 0.004002517365761239, 0.006426097799475317, 0.008695434248910946, 0.010754412822790455, 0.012552006034062261, 0.014043537065176076, 0.015191789792313466, 0.015967936998171128, 0.016352263632192453, 0.016334666983135473, 0.015914921089307917, 0.01510269849307106, 0.013917348406577117, 0.01238743634879346, 0.010550056192249314, 0.00844993117679996, 0.006138325668332812, 0.0036717941336339363, 0.0011107978522339242, -0.0014817768087463344, -0.004042162252482523, -0.006507277749850425, -0.008816283224044838, -0.010912080458642084, -0.01274272469594671, -0.014262711736419848, -0.015434108656074148, -0.01622750005434679, -0.016622726238085875, -0.016609394828468384, -0.016187152822868124, -0.01536571201722591, -0.014164626752362219, -0.012612829041148339, -0.010747932112644102, -0.00861531912689051, -0.006267039128890971, -0.003760537090970943, -0.001157249020643111, 0.0014789035163418351, 0.004083082575162304, 0.006591128201166812, 0.008941138792478428, 0.01107499853809616, 0.012939814250640322, 0.014489226079229513, 0.01568455963193199, 0.016495790885330992, 0.016902299817695796, 0.016893393861042563, 0.016468587900084916, 0.015637633514912264, 0.014420296322880373, 0.012845886472440123, 0.010952553425030978, 0.00878636198084336, 0.006400171916557462, 0.0038523484742248285, 0.0012053351494930766, -0.0014758763303124628, -0.004125341358152247, -0.006677783977501463, -0.00907020472798442, -0.011243435212211054, -0.013143601033071101, -0.014723456940057238, -0.015943561106138756, -0.016773259358913464, -0.0171914548166528, -0.017187143618797848, -0.016759703163586933, -0.015918925332827474, -0.014684793446642084, -0.013087007995559164, -0.011164272388517619, -0.008963355880674064, -0.006537956358078169, -0.003947390620945353, -0.0012551441002946941, 0.0014726845426654006, 0.004169005836660102, 0.006767389126796241, 0.009203698855466333, 0.011417677203762421, 0.013354434049408942, 0.0149658074101196, 0.01621156066440465, 0.01706038679988794, 0.01749069463624016, 0.01749115729156568, 0.01706100897767456, 0.016210082378840956, 0.014958585239220884, 0.01333662119966691, 0.011383466227450137, 0.009146618017092942, 0.006680641358165862, 0.004045837527545893, 0.0013067701437436538, -0.0014693164894944498, -0.00421414781373992, -0.006860097723097169, -0.009341854283142872, -0.011598031443268719, -0.013572686980568216, -0.015216709150542077, -0.016489037684412143, -0.017357688788491546, -0.017800558570582454, -0.017805984725702103, -0.017373052226689025, -0.01651163503978421, -0.015242172367376265, -0.013595184450611723, -0.011610539382894636, -0.009336488533302033, -0.006828493904860024, -0.0041478759148108075, -0.0013603145544176297, 0.001465759446719489, 0.004260844054152627, 0.006956074753967209, 0.009484920766687402, 0.011784826881051856, 0.013798760401989695, 0.015476624969149727, 0.016776506209538748, 0.01766571826299747, 0.018121625063668843, 0.01813221575649913, 0.017696419641072714, 0.0168241524187194, 0.015536092116421273, 0.013863189710638955, 0.011845926012245416, 0.009533332639218314, 0.00698180074193476, 0.00425370641239668, 0.0014158862728771715, -0.0014619995123083503, -0.004309176719598887, -0.007055497103818308, -0.00963316622211583, -0.01197841649783296, -0.014033084247438437, -0.015746051681265607, -0.017074518140026737, -0.017985068965737396, -0.018454515327594064, -0.01847048391086406, -0.018031741493678005, -0.017148245933255864, -0.015840921800370295, -0.01414116567388658, -0.012090092769458638, -0.00973754296376593, -0.007140870230383336, -0.004363544878129217, -0.0014736026442548796, 0.0014580214729519095, 0.004359233850482901, 0.007158554645467053, 0.009786878406685736, 0.012179179539710852, 0.014276120548695422, 0.01602552329171928, 0.017383666783279676, 0.01831637927773821, 0.01879989736963455, 0.01882147052916995, 0.01837969571531807, 0.017484573322782467, 0.016157282560405165, 0.014429681259710595, 0.012343541903364555, 0.009949542177106146, 0.007306034424402156, 0.0044776238703218025, 0.0015335902438227366, -0.0014538086527930056, -0.0044111099000922445, -0.007265451454066508, -0.009946366789984631, -0.012387524007289234, -0.014528366487870287, -0.016315614540938994, -0.017704590811336286, -0.01866033649408109, -0.019158490483088715, -0.019185909362704284, -0.01874101248610479, -0.017833843119877037, -0.01648584360424349, -0.014729349512403154, -0.012606814717344235, -0.010169785919654208, -0.007477651391260532, -0.004596194294233312, -0.0015959858017239922, 0.001449342741398208, 0.004464906327954974, 0.007376407159717166, 0.010111964640790701, 0.012603889433318145, 0.014790357804758226, 0.016616944864676755, 0.01803797868106729, 0.01901768160023188, 0.01953107026540974, 0.01956459171199397, 0.01911647936800563, 0.018196819649855225, 0.016827326947297692, 0.015040831963555518, 0.012880495440505936, 0.010398766080577318, 0.007656107809154755, 0.004719527247166626, 0.0016609372410321054, -0.0014446035976516342, -0.004520732260143092, -0.007491658457589516, -0.010284031359299499, -0.012828749988630149, -0.015062672608372893, -0.016930182824770337, -0.01838457358146649, -0.01938921461919245, -0.01991847423730338, -0.019958372181729127, -0.019506947054543904, -0.01857432863270137, -0.017182512726305502, -0.015364843522381998, -0.013165215568622846, -0.010637014475414111, -0.007841821882691375, -0.004847916090733178, -0.0017286048456612963, 0.0014395690256408702, 0.004578705225476139, 0.0076114607973697635, 0.01046295508903968, 0.013062617962545028, 0.015345935649716345, 0.017256051077630386, 0.018745178982852075, 0.01977580061067893, 0.020321608148466484, 0.02036817514037182, 0.01991333582598347, 0.018967263473787375, 0.017552245167735667, 0.015702157970090804, 0.013461658742704948, 0.010885106980668984, 0.00803524662224405, 0.004981678783586307, 0.001799162577462036, -0.0014342145178684036, -0.004638951977968352, -0.007736090277359182, -0.010649155648402648, -0.013306047671493555, -0.01564082312223433, -0.017595331958165122, -0.019120664875185364, -0.02017837641700946, -0.020741453069891697, -0.020795001987215615, -0.020336642813097917, -0.01937659234425528, -0.017937439307072287, -0.01605361414717332, -0.013770566244524685, -0.011143668193024418, -0.008236873541284693, -0.00512116051362339, -0.001872799565193099, 0.0014285129602281106, 0.004701609417503775, 0.007865845772732562, 0.010843087828347087, 0.01355963985860183, 0.015948068067589787, 0.017948873769948484, 0.019511974797451613, 0.02059795826643028, 0.021179073389635567, 0.02123993934715472, 0.020777950190207506, 0.019803366169178657, 0.018339088571548923, 0.016420122937750074, 0.014092743202076926, 0.011413376692503495, 0.008447236835180484, 0.005266736675474589, 0.001949721792085243, -0.0014224342921030796, -0.004766825622644644, -0.008001051332409456, -0.011045245110773868, -0.013824046657724857, -0.016268466477704437, -0.0183175978880867, -0.01992013377766081, -0.021035650363780373, -0.021635625849232985, -0.021704168334336423, -0.02123843443920328, -0.020248727662251526, -0.018758273358612788, -0.016802675173390073, -0.01442906561432045, -0.011694971002927077, -0.008666918116214093, -0.005418816247279349, -0.002030154013573293, 0.0014159451135996363, 0.0048347610117874355, 0.008142058884927836, 0.011256163871514457, 0.014099977208244213, 0.016602884199987185, 0.01870250679997753, 0.020346257324130222, 0.021492654621383556, 0.02211236978227433, 0.02218897505096694, 0.021719376851525442, 0.02071392157053252, 0.019196170766077665, 0.017202350600789406, 0.014780488324228859, 0.011989256359865254, 0.00889655179314466, 0.005577845630634449, 0.0021143419426139726, -0.0014090082303222888, -0.004905589651580832, -0.008289251300775222, -0.011476428143240297, -0.014388204022376368, -0.0169522647718485, -0.019104693231692844, -0.02079156163410287, -0.021970281710725372, -0.022610678745961087, -0.02269576251777271, -0.0222221754654938, -0.021200306322634328, -0.019654065658479634, -0.01762032808419807, -0.015148054092932059, -0.012297112416656514, -0.009136831200036163, -0.005744313029523505, -0.0022025547471406647, 0.0014015821240636816, 0.004979500734773004, 0.008443045867156263, 0.011706675027270965, 0.014689570225327627, 0.017317638333743533, 0.019525350534920622, 0.021257375216423076, 0.0224699636489046, 0.023132053771873582, 0.02322606426917705, 0.022748358673196824, 0.02170936730991112, 0.020133363288725184, 0.018057897245600793, 0.015532903956532725, 0.012619502043745399, 0.009388515598962177, 0.005918753458577677, 0.0022950879128631695, -0.0013936203353077019, -0.005056700253527537, -0.008603898241440406, -0.011947600859789681, -0.015004997811136076, -0.0177001317980202, -0.019965784542375846, -0.021745152162181668, -0.022993268174411507, -0.02367813850517202, -0.02378155989064526, -0.023299600775860924, -0.022242732074113928, -0.020635603736159858, -0.018516471784701557, -0.015936289082210075, -0.012957481406684766, -0.00965243820547652, -0.006101754488727927, -0.0023922665352370284, 0.0013850707403448518, 0.005137412898898334, 0.008772306961969172, 0.012199968258041404, 0.015335497084391253, 0.01810098048495144, 0.020427427139727148, 0.022256487342528417, 0.023541915216202396, 0.02425073655385625, 0.02436409282978715, 0.023877739821182492, 0.022802187728621772, 0.021162478473522036, 0.01899760476849918, 0.016359584383080997, 0.013312211544931866, 0.00992951541543272, 0.006293962860044532, 0.002494449117477997, -0.001375874701930989, -0.00522188422275308, -0.008948818610024297, -0.012464614196551687, -0.015682177491412555, -0.018521541478982193, -0.020911851851144147, -0.02279313386825835, -0.024117795820529128, -0.024851831433870496, -0.024975690879125174, -0.024484798122965536, -0.023389701006101316, -0.021715849438222797, -0.019503006238796267, -0.016804304203895018, -0.01368497171879119, -0.010220757448281948, -0.006496092118328332, -0.0026020319676232843, 0.001365966067563401, 0.005310383105204344, 0.009134033735229603, 0.012742459293363153, 0.016046260085392557, 0.018963309009365447, 0.021420791795844378, 0.02335702321385102, 0.024722993974344232, 0.025483609574772036, 0.025618589810057598, 0.025123005945741624, 0.024007441406453174, 0.02229777106101561, 0.020034563558235203, 0.017272120454565915, 0.0140771748476989, 0.010527280667149653, 0.006708931465170797, 0.0027154543076808382, -0.0013552699833031712, -0.005403204578809037, -0.009328613679311357, -0.013034518523135051, -0.016429091920474845, -0.019427932222406526, -0.02195616044737453, -0.023950288492718824, -0.025359811855992162, -0.02614848694825868, -0.026295260738500102, -0.02579482893893182, -0.02465780801919245, -0.022910515801281728, -0.02059436500497898, -0.017764883649082144, -0.014490385432373016, -0.010850321892127689, -0.006933356052438774, -0.0028352042329097753, 0.0013437014832890033, 0.005500673070805175, 0.009533288461087149, 0.013341913619528646, 0.016832162732151795, 0.019917235790679125, 0.022520075719611662, 0.024575291474765667, 0.026030799158008915, 0.026849140003096225, 0.02700844192819885, 0.02650300003184549, 0.02534346071923226, 0.023556603857893828, 0.021184727237718665, 0.018284647407741748, 0.014926340439833754, 0.01119125509333045, 0.007170339003769359, 0.0029618256906964366, -0.001331163805118587, -0.005603146136868287, -0.009748865920135921, -0.013665887485905524, -0.017257124339123915, -0.02043324390195766, -0.023114888018489464, -0.025234654067561823, -0.02673878726933229, -0.027588541741460543, -0.02776117589459602, -0.02725055665931302, -0.026067356591233094, -0.0242388378745622, -0.021808227392475857, -0.018833697106561933, -0.015386973738882403, -0.011551610938363006, -0.00742096551061517, -0.0030959266881517037, 0.001317546368469544, 0.005711018774875783, 0.009976242359706794, 0.014007821004124314, 0.017705813299013568, 0.02097820829258309, 0.023743213042684303, 0.025931295145825258, 0.027486929283124892, 0.028370003962019125, 0.028556852869357694, 0.02804088438713193, 0.02683279263428047, 0.02496034364739416, 0.02246774074882283, 0.019414583516504727, 0.015874444810639654, 0.011933099780192646, 0.007686449432636199, 0.003238188987982639, -0.0013027223377762409, -0.005824728425681175, -0.01021641498335492, -0.0143692527200899, -0.018180277472766543, -0.021554641143706536, -0.02440797029840228, -0.02666847382012554, -0.028278747022388008, -0.029197226935616903, -0.029399261935112754, -0.028877768258816584, -0.02764345604759437, -0.02572461808166495, -0.023166485126521388, -0.020030162476652687, -0.016391172632809214, -0.012337638813004781, -0.007968152937031377, -0.003389379616669657, 0.0012865456681831298, 0.005944760790801549, 0.010470496487726267, 0.014751901997060052, 0.018682807307600788, 0.022165353853743745, 0.02511242852427709, 0.027449840497666158, 0.029118186562759683, 0.030074358085368774, 0.030292651457416855, 0.02976545350647457, 0.02850348371523099, 0.026535585949934375, 0.02390807345864437, 0.020683641902855238, 0.01693987585888804, 0.012767384304911852, 0.008267609845855799, 0.003550364592062848, -0.0012688475056811717, -0.006071656625437276, -0.010739732259961119, -0.015157696370589255, -0.019215972845949746, -0.022813502949086857, -0.0258602595172773, -0.028279497422869986, -0.03000968409937416, -0.031006061634676355, -0.0312418008477099, -0.030708717680625327, -0.029417532914776237, -0.027397667395413428, -0.02469657635356035, -0.02137863776437287, -0.01752362070005786, -0.013224770050090023, -0.00858655353405395, -0.0037221253852645977, 0.001249431774876786, 0.006206019700854476, 0.011025520737872224, 0.01558880402193828, 0.019782667721332886, 0.023502644714648798, 0.026655602229819213, 0.029162070816599703, 0.03095824447811959, 0.03199760169175226, 0.03225210621587792, 0.03171295678576018, 0.030390865801022342, 0.028315858631141038, 0.025536596932260312, 0.02211924108986833, 0.018145878289095554, 0.013712553486468966, 0.008926950447013124, 0.0039057787725801647, -0.0012280697379316008, -0.006348526174896253, -0.01132943763183663, -0.016047672522620546, -0.020386161729657456, -0.024236800539339205, -0.02750313949968955, -0.030102797291907995, -0.03196953532616544, -0.033054941895315104, -0.033329683153327495, -0.032784288700560854, -0.0314294509004591, -0.029295828945729147, -0.026433360845851756, -0.02291009862393184, -0.018810593791329953, -0.014233871322446913, -0.009291040603097043, -0.004102600919038626, 0.0012044932410635316, 0.006499935665802778, 0.01165326488927006, 0.016537075309099286, 0.021030163990934887, 0.02502053551081111, 0.028408190415966098, 0.03110762795489405, 0.033050000520523266, 0.03418486560509714, 0.03448149078152378, 0.03392967806934082, 0.032540085751275594, 0.030344037993709903, 0.027392825191067536, 0.02375651049218683, 0.019522270167744785, 0.014792307040607423, 0.009681386839109378, 0.004314056781926493, -0.0011783862739623765, -0.006661104396002175, -0.011999025519415403, -0.017060167747651196, -0.021718899276122857, -0.02585905350273495, -0.029376822168700183, -0.03218335456211164, -0.034206997793803866, -0.035395121754895106, -0.03571548238235808, -0.03515708805171253, -0.03373054601342288, -0.03146787849760915, -0.028421811119948154, -0.02466454921140987, -0.020286070346324788, -0.015391973344937582, -0.010100935080726818, -0.004541836254177766, 0.0011493743426731647, 0.006833000863593335, 0.012369025707057535, 0.017620555178721402, 0.02245720081468121, 0.026758312937909628, 0.030415986351579702, 0.03333776338604048, 0.035448966687508174, 0.036694602996596645, 0.037040789501930585, 0.036475665919543515, 0.0350097679627348, 0.03267585102537363, 0.029528166383197368, 0.025641205692228317, 0.021107942699744846, 0.01603761355714693, 0.010553088626439146, 0.004787898916586145, -0.0011170109838320786, -0.007016724615632022, -0.012765906055097089, -0.018222376034960235, -0.023250623888004633, -0.02772516866856249, -0.03153368618986353, -0.03457982415788262, -0.0367856349589826, -0.038093564795228206, -0.03846794853982125, -0.037895971649023814, -0.036388073426999026, -0.0339777795814216, -0.03072096599778863, -0.02669456965654962, -0.021994776275473676, -0.01673472724307832, -0.011041800395747568, -0.00505452988290973, 0.0010807605064279292, 0.007213528846832649, 0.01319270434508554, 0.01887040407466864, 0.024105585848465318, 0.028767547115414665, 0.03273918320045868, 0.035919923785232455, 0.038228274120851856, 0.03960389689510679, 0.04000918171978581, 0.03943026159467963, 0.03787744914379113, 0.0353850795802979, 0.03201076189467498, 0.027834054319310762, 0.02295459434521461, 0.017489727101159706, 0.011571688417459912, 0.005344410073992825, -0.0010399757050144841, -0.0074248477399438805, -0.013652932944866013, -0.019570175058984503, -0.025029540022369297, -0.02989466412910709, -0.03404325457445231, -0.037370157732002536, -0.039790018320897166, -0.04123946236788188, -0.04167874830312566, -0.041092843377906925, -0.039491896546726336, -0.036911093677711414, -0.033409896084762726, -0.029070678542675074, -0.02399679777989721, -0.018310136576819232, -0.012148181680284304, -0.005660705451633081, 0.0009938687974211094, 0.0076523297129725025, 0.01415067499982784, 0.02032814496710092, 0.026031193460751608, 0.031117298244761806, 0.03545851642402369, 0.0389446963687638, 0.04148626566814567, 0.0430165247207653, 0.043493387422937076, 0.04290052375832249, 0.04124787360313001, 0.03857151638831131, 0.03493289703084622, 0.03041742437480281, 0.025132473880760012, 0.019204841087239376, 0.012777706073684657, 0.006007181439886247, -0.0009414731264110504, -0.007897878060513699, -0.014690704930135929, -0.021151889295771584, -0.027120781995569207, -0.03244813648414854, -0.036999833431092026, -0.04066024980477284, -0.04333518799363926, -0.044954290955762775, -0.04547288169133724, -0.044873179207958296, -0.043164858261110495, -0.04038493613666263, -0.0365969862096151, -0.031889694561537396, -0.026374792162006683, -0.020184410616967702, -0.013467923875374594, -0.006388351206328386, 0.0008815921118185305, 0.008163700892720189, 0.015278640684767338, 0.022050356436424164, 0.028310420992857712, 0.033902216210620804, 0.038684843093857474, 0.04253666353426054, 0.04535838483786766, 0.04707560904475848, 0.047640781837326326, 0.047034490284135554, 0.04526607443227936, 0.04237353446064296, 0.03842273233382807, 0.03350590423117338, 0.02773951704213118, 0.02126151849891941, 0.014228045656594964, 0.006809670052392738, -0.0008127303613873564, -0.00845237281107258, -0.0159211379194867, -0.02303419303441456, -0.029614557259915096, -0.03549749566512367, -0.040534633795878135, -0.044597689957183224, -0.04758173162654764, -0.04940787359363372, -0.05002534873600844, -0.049412897417359984, -0.04757943797181527, -0.044563998218335926, -0.0404349060083777, -0.03528825500760315, -0.029245679802396875, -0.022451491563595237, -0.015069241468690719, -0.00727779348202495, 0.0007329994411380307, 0.008766911441869713, 0.016626140142081094, 0.024116166334272132, 0.031050557834344406, 0.03725559911993998, 0.04257463205223556, 0.0468719994899754, 0.05003649280530915, 0.051984215989698504, 0.05266079292072407, 0.05204286011769851, 0.05013880456847281, 0.04698872454599365, 0.042663610306633515, 0.037263760710770574, 0.030916470660572133, 0.02377304234622229, 0.016005190181960952, 0.007800924576506751, -0.0006399870643162677, -0.0091108727973616, -0.01740320447709402, -0.025311718939246008, -0.03263948655884517, -0.03920280232746917, -0.04483577828208111, -0.04939452279944783, -0.05276080179806228, -0.054845089045171526, -0.05558892726589368, -0.054966538251426916, -0.05298563827005523, -0.04968743436259672, -0.045145797086595135, -0.039465625474603624, -0.03278043989704993, -0.025249257679180216, -0.0170528242402898, -0.008389288755623215, 0.0005305725205495466, 0.009488470446348752, 0.018263930940601202, 0.02663970698412368, 0.03440714217315404, 0.0413713537628353, 0.04735610682044428, 0.052208257960808434, 0.05580165700999147, 0.058040407612741166, 0.05886140296968819, 0.058236070204037337, 0.05617127590227354, 0.05270936569215346, 0.04792733182312627, 0.04193512408648538, 0.03487314053260381, 0.02690895479132257, 0.01823335587564968, 0.009055793673379052, -0.0004006615288056828, -0.00990472457261861, -0.01922253541079721, -0.028123396414942516, -0.03638546666900316, -0.04380127312229389, -0.050182902127436875, -0.055366741909069817, -0.059217656746670844, -0.061632486877791125, -0.0625427840302011, -0.06191671069946386, -0.05976005136997113, -0.05611630535181256, -0.051065853255304106, -0.044724211807306895, -0.03723941417493742, -0.028788574651262038, -0.019573716937970546, -0.009816963824513431, 0.0002447976542581643, 0.010365647912284425, 0.02029662514555339, 0.02979182887031968, 0.038614487530296074, 0.046542840967106126, 0.05337569213534612, 0.05893748962269077, 0.06308281315348811, 0.06570014807312911, 0.06671485151208935, 0.06609123212243802, 0.06383368651178462, 0.05998685826333667, 0.05463480917852971, 0.04789921653551982, 0.03993663413396974, 0.030934878105860313, 0.021108620340357785, 0.010694292353985049, -0.000055579966072378735, -0.010878475554157368, -0.02150826455208684, -0.0316817271138933, -0.04114504555836765, -0.04966011036966608, -0.05701048402120933, -0.06300687391799167, -0.06749197676406792, -0.07034457112098592, -0.07148275249891736, -0.07086622560648369, -0.06849759090005603, -0.0644225867831778, -0.05872927413119461, -0.051546175643438844, -0.04303940822721678, -0.03340887156492654, -0.022883579592515142, -0.0117162432380793, -0.00017723189123422176, 0.011451942788160103, 0.022885464374922754, 0.033840205146846096, 0.04404270514452168, 0.05323596556231756, 0.0611858885058277, 0.06768720258065185, 0.07256872518894629, 0.07569782755373403, 0.0769839870235062, 0.0763813327030229, 0.07389011440687408, 0.06955705077314138, 0.06347453948797596, 0.05577874030510009, 0.04664656922426033, 0.03629166914295973, 0.02495944785266131, 0.012921297779449724, 0.0004681327799633279, -0.012096604934119787, -0.02446430051326567, -0.03632870742170339, -0.04739349029666966, -0.05737958490394189, -0.06603219339913259, -0.0731272405914557, -0.07847712871210755, -0.08193564405857741, -0.08340188846345706, -0.0828231313730624, -0.08019650388575829, -0.07556948379014228, -0.06903914980047904, -0.06075021311142119, -0.05089186436229865, -0.039693503382582034, -0.027419446964902026, -0.014362735689161719, -0.0008381838553119206, 0.01282516371060033, 0.026291988340062616, 0.039228876438802976, 0.05131252233152403, 0.06223775446178087, 0.07172518698177661, 0.07952830622706637, 0.08543981374265511, 0.08929706415282987, 0.0909864568796878, 0.09044666504488008, 0.08767061227369252, 0.08270613791944983, 0.07565532273444175, 0.0666724794787314, 0.05596084559826265, 0.043768047125701544, 0.030380433576706035, 0.016116412073490242, 0.001318934515252228, -0.01365268631650857, -0.02843143784849382, -0.04265153871210899, -0.05595742386340848, -0.06801256472957104, -0.07850790727602941, -0.08716971818437527, -0.09376664180269138, -0.0981157879210721, -0.10008769235809131, -0.09961001832756423, -0.09666989599527905, -0.09131482984925757, -0.08365213773798943, -0.07384692086654407, -0.06211859983148428, -0.04873608705656028, -0.03401169990116058, -0.01829395041648606, -0.0019593764301506977, 0.014596396376675315, 0.030968151116136388, 0.04675090906811126, 0.061549855407494046, 0.07499012016988567, 0.08672617440988756, 0.09645060841446165, 0.10390207147197254, 0.10887217081613709, 0.111211150578966, 0.11083219938661018, 0.10771426698985458, 0.1019033053079908, 0.09351188666693155, 0.08271719094928028, 0.06975739291935958, 0.05492652018971173, 0.03856789020578331, 0.02106627031240182, 0.0028389375435634327, -0.01567415657392982, -0.034020886925686944, -0.051747873450736386, -0.06841155664804177, -0.08358916235281316, -0.09688928786169759, -0.10796184763762301, -0.1165071293753649, -0.12228372992451303, -0.12511516506351938, -0.12489497686974774, -0.12159019677681535, -0.11524306057542291, -0.10597091272051502, -0.09396428039908959, -0.07948314187429105, -0.06285145760316091, -0.044450075468664745, -0.024708162127954344, -0.004093349955757894, 0.016899177583090667, 0.03775841091365877, 0.057969775791158376, 0.077027640956467, 0.09444777219727382, 0.10977943053792967, 0.12261681705438875, 0.13260957879629867, 0.1394721092951341, 0.14299140277451738, 0.1430332529225548, 0.13954662425038294, 0.1325660658228375, 0.12221208256362037, 0.108689427367626, 0.09228332678160647, 0.07335370287653258, 0.0523275029443789, 0.029689295628155837, 0.005970335890561177, -0.01826365924112269, -0.042425747944643696, -0.06592170955057826, -0.08816437359801006, -0.1085879926813563, -0.12666231393687538, -0.14190600633619363, -0.15389911147840166, -0.16229420415986734, -0.16682597531758303, -0.16731898346602683, -0.16369336078079016, -0.15596830566349973, -0.14426324394643283, -0.12879659473383123, -0.10988213300503037, -0.08792299822707543, -0.06340345500629486, -0.03687856690458372, -0.00896199663448453, 0.01968780634197324, 0.048382727437664384, 0.07642107860306181, 0.10310429250053224, 0.1277538315634778, 0.1497279130443418, 0.1684376491072559, 0.18336220837419148, 0.19406262205081448, 0.20019388358405366, 0.20151502526600837, 0.19789689761916696, 0.189327426902406, 0.1759141816158624, 0.15788413925089936, 0.1355806083959433, 0.10945732723744157, 0.08006982598769256, 0.04806420629408882, 0.014163553705028316, -0.020847741709477518, -0.056141427884018255, -0.0908642208733083, -0.12415760806429027, -0.15517817999730485, -0.1831180260798301, -0.20722471962616423, -0.2268204185687688, -0.24131962000459464, -0.2502451293581236, -0.2532418380095207, -0.250087946155664, -0.24070331961559538, -0.22515472921520677, -0.20365778804800397, -0.1765754738988976, -0.14441319988521523, -0.1078104742558364, -0.06752926856705777, -0.02443929036167685, 0.020499569738334285, 0.06625727766290929, 0.11175578088768122, 0.15589276288422144, 0.19756652586968287, 0.23570146589357968, 0.26927358087283637, 0.29733544082962854, 0.3190400507314688, 0.33366305013827313, 0.3406227202063703, 0.3394973070841716, 0.3300392206839182, 0.3121857282915725, 0.28606583230094706, 0.2520030991258598, 0.21051429046014672, 0.16230373676503088, 0.10825348428940883, 0.04940933911145689, -0.013036977370172781, -0.0777692593667126, -0.14337144941015142, -0.20835501273819312, -0.27118852655467424, -0.33032890100276513, -0.38425360400038866, -0.4314932301851665, -0.47066373594440686, -0.5004976584229822, -0.5198736467664834, -0.5278436586178057, -0.5236572136806412, -0.5067821483258684, -0.47692137978539223, -0.43402526421586846, -0.37829921833413127, -0.31020636771814003, -0.23046508433710483, -0.14004137938069144, -0.040136222854785776, 0.06783203350335418, 0.18224985087955142, 0.30133493864376465, 0.4231664622049397, 0.5457184731667526, 0.6668959397772901, 0.7845726961028191, 0.8966305822835551, 1.0009990167107312, 1.0956942247623747, 1.1788573482944704, 1.2487906755200475, 1.3039912620028704, 1.3431812596962447, 1.3653343314019821, 1.369697601537646, 1.3558086792299628, 1.3235073847970373, 1.2729419137252571, 1.204569281197083, 1.1191500028608041, 1.0177370815456634, 0.9016594826725571, 0.7725003908622943, 0.6320706444335235, 0.482377840955056, 0.3255916937732503, 0.16400629467421043, 0, -0.16400629467421043, -0.3255916937732503, -0.482377840955056, -0.6320706444335235, -0.7725003908622943, -0.9016594826725571, -1.0177370815456634, -1.1191500028608041, -1.204569281197083, -1.2729419137252571, -1.3235073847970373, -1.3558086792299628, -1.369697601537646, -1.3653343314019821, -1.3431812596962447, -1.3039912620028704, -1.2487906755200475, -1.1788573482944704, -1.0956942247623747, -1.0009990167107312, -0.8966305822835551, -0.7845726961028191, -0.6668959397772901, -0.5457184731667526, -0.4231664622049397, -0.30133493864376465, -0.18224985087955142, -0.06783203350335418, 0.040136222854785776, 0.14004137938069144, 0.23046508433710483, 0.31020636771814003, 0.37829921833413127, 0.43402526421586846, 0.47692137978539223, 0.5067821483258684, 0.5236572136806412, 0.5278436586178057, 0.5198736467664834, 0.5004976584229822, 0.47066373594440686, 0.4314932301851665, 0.38425360400038866, 0.33032890100276513, 0.27118852655467424, 0.20835501273819312, 0.14337144941015142, 0.0777692593667126, 0.013036977370172781, -0.04940933911145689, -0.10825348428940883, -0.16230373676503088, -0.21051429046014672, -0.2520030991258598, -0.28606583230094706, -0.3121857282915725, -0.3300392206839182, -0.3394973070841716, -0.3406227202063703, -0.33366305013827313, -0.3190400507314688, -0.29733544082962854, -0.26927358087283637, -0.23570146589357968, -0.19756652586968287, -0.15589276288422144, -0.11175578088768122, -0.06625727766290929, -0.020499569738334285, 0.02443929036167685, 0.06752926856705777, 0.1078104742558364, 0.14441319988521523, 0.1765754738988976, 0.20365778804800397, 0.22515472921520677, 0.24070331961559538, 0.250087946155664, 0.2532418380095207, 0.2502451293581236, 0.24131962000459464, 0.2268204185687688, 0.20722471962616423, 0.1831180260798301, 0.15517817999730485, 0.12415760806429027, 0.0908642208733083, 0.056141427884018255, 0.020847741709477518, -0.014163553705028316, -0.04806420629408882, -0.08006982598769256, -0.10945732723744157, -0.1355806083959433, -0.15788413925089936, -0.1759141816158624, -0.189327426902406, -0.19789689761916696, -0.20151502526600837, -0.20019388358405366, -0.19406262205081448, -0.18336220837419148, -0.1684376491072559, -0.1497279130443418, -0.1277538315634778, -0.10310429250053224, -0.07642107860306181, -0.048382727437664384, -0.01968780634197324, 0.00896199663448453, 0.03687856690458372, 0.06340345500629486, 0.08792299822707543, 0.10988213300503037, 0.12879659473383123, 0.14426324394643283, 0.15596830566349973, 0.16369336078079016, 0.16731898346602683, 0.16682597531758303, 0.16229420415986734, 0.15389911147840166, 0.14190600633619363, 0.12666231393687538, 0.1085879926813563, 0.08816437359801006, 0.06592170955057826, 0.042425747944643696, 0.01826365924112269, -0.005970335890561177, -0.029689295628155837, -0.0523275029443789, -0.07335370287653258, -0.09228332678160647, -0.108689427367626, -0.12221208256362037, -0.1325660658228375, -0.13954662425038294, -0.1430332529225548, -0.14299140277451738, -0.1394721092951341, -0.13260957879629867, -0.12261681705438875, -0.10977943053792967, -0.09444777219727382, -0.077027640956467, -0.057969775791158376, -0.03775841091365877, -0.016899177583090667, 0.004093349955757894, 0.024708162127954344, 0.044450075468664745, 0.06285145760316091, 0.07948314187429105, 0.09396428039908959, 0.10597091272051502, 0.11524306057542291, 0.12159019677681535, 0.12489497686974774, 0.12511516506351938, 0.12228372992451303, 0.1165071293753649, 0.10796184763762301, 0.09688928786169759, 0.08358916235281316, 0.06841155664804177, 0.051747873450736386, 0.034020886925686944, 0.01567415657392982, -0.0028389375435634327, -0.02106627031240182, -0.03856789020578331, -0.05492652018971173, -0.06975739291935958, -0.08271719094928028, -0.09351188666693155, -0.1019033053079908, -0.10771426698985458, -0.11083219938661018, -0.111211150578966, -0.10887217081613709, -0.10390207147197254, -0.09645060841446165, -0.08672617440988756, -0.07499012016988567, -0.061549855407494046, -0.04675090906811126, -0.030968151116136388, -0.014596396376675315, 0.0019593764301506977, 0.01829395041648606, 0.03401169990116058, 0.04873608705656028, 0.06211859983148428, 0.07384692086654407, 0.08365213773798943, 0.09131482984925757, 0.09666989599527905, 0.09961001832756423, 0.10008769235809131, 0.0981157879210721, 0.09376664180269138, 0.08716971818437527, 0.07850790727602941, 0.06801256472957104, 0.05595742386340848, 0.04265153871210899, 0.02843143784849382, 0.01365268631650857, -0.001318934515252228, -0.016116412073490242, -0.030380433576706035, -0.043768047125701544, -0.05596084559826265, -0.0666724794787314, -0.07565532273444175, -0.08270613791944983, -0.08767061227369252, -0.09044666504488008, -0.0909864568796878, -0.08929706415282987, -0.08543981374265511, -0.07952830622706637, -0.07172518698177661, -0.06223775446178087, -0.05131252233152403, -0.039228876438802976, -0.026291988340062616, -0.01282516371060033, 0.0008381838553119206, 0.014362735689161719, 0.027419446964902026, 0.039693503382582034, 0.05089186436229865, 0.06075021311142119, 0.06903914980047904, 0.07556948379014228, 0.08019650388575829, 0.0828231313730624, 0.08340188846345706, 0.08193564405857741, 0.07847712871210755, 0.0731272405914557, 0.06603219339913259, 0.05737958490394189, 0.04739349029666966, 0.03632870742170339, 0.02446430051326567, 0.012096604934119787, -0.0004681327799633279, -0.012921297779449724, -0.02495944785266131, -0.03629166914295973, -0.04664656922426033, -0.05577874030510009, -0.06347453948797596, -0.06955705077314138, -0.07389011440687408, -0.0763813327030229, -0.0769839870235062, -0.07569782755373403, -0.07256872518894629, -0.06768720258065185, -0.0611858885058277, -0.05323596556231756, -0.04404270514452168, -0.033840205146846096, -0.022885464374922754, -0.011451942788160103, 0.00017723189123422176, 0.0117162432380793, 0.022883579592515142, 0.03340887156492654, 0.04303940822721678, 0.051546175643438844, 0.05872927413119461, 0.0644225867831778, 0.06849759090005603, 0.07086622560648369, 0.07148275249891736, 0.07034457112098592, 0.06749197676406792, 0.06300687391799167, 0.05701048402120933, 0.04966011036966608, 0.04114504555836765, 0.0316817271138933, 0.02150826455208684, 0.010878475554157368, 0.000055579966072378735, -0.010694292353985049, -0.021108620340357785, -0.030934878105860313, -0.03993663413396974, -0.04789921653551982, -0.05463480917852971, -0.05998685826333667, -0.06383368651178462, -0.06609123212243802, -0.06671485151208935, -0.06570014807312911, -0.06308281315348811, -0.05893748962269077, -0.05337569213534612, -0.046542840967106126, -0.038614487530296074, -0.02979182887031968, -0.02029662514555339, -0.010365647912284425, -0.0002447976542581643, 0.009816963824513431, 0.019573716937970546, 0.028788574651262038, 0.03723941417493742, 0.044724211807306895, 0.051065853255304106, 0.05611630535181256, 0.05976005136997113, 0.06191671069946386, 0.0625427840302011, 0.061632486877791125, 0.059217656746670844, 0.055366741909069817, 0.050182902127436875, 0.04380127312229389, 0.03638546666900316, 0.028123396414942516, 0.01922253541079721, 0.00990472457261861, 0.0004006615288056828, -0.009055793673379052, -0.01823335587564968, -0.02690895479132257, -0.03487314053260381, -0.04193512408648538, -0.04792733182312627, -0.05270936569215346, -0.05617127590227354, -0.058236070204037337, -0.05886140296968819, -0.058040407612741166, -0.05580165700999147, -0.052208257960808434, -0.04735610682044428, -0.0413713537628353, -0.03440714217315404, -0.02663970698412368, -0.018263930940601202, -0.009488470446348752, -0.0005305725205495466, 0.008389288755623215, 0.0170528242402898, 0.025249257679180216, 0.03278043989704993, 0.039465625474603624, 0.045145797086595135, 0.04968743436259672, 0.05298563827005523, 0.054966538251426916, 0.05558892726589368, 0.054845089045171526, 0.05276080179806228, 0.04939452279944783, 0.04483577828208111, 0.03920280232746917, 0.03263948655884517, 0.025311718939246008, 0.01740320447709402, 0.0091108727973616, 0.0006399870643162677, -0.007800924576506751, -0.016005190181960952, -0.02377304234622229, -0.030916470660572133, -0.037263760710770574, -0.042663610306633515, -0.04698872454599365, -0.05013880456847281, -0.05204286011769851, -0.05266079292072407, -0.051984215989698504, -0.05003649280530915, -0.0468719994899754, -0.04257463205223556, -0.03725559911993998, -0.031050557834344406, -0.024116166334272132, -0.016626140142081094, -0.008766911441869713, -0.0007329994411380307, 0.00727779348202495, 0.015069241468690719, 0.022451491563595237, 0.029245679802396875, 0.03528825500760315, 0.0404349060083777, 0.044563998218335926, 0.04757943797181527, 0.049412897417359984, 0.05002534873600844, 0.04940787359363372, 0.04758173162654764, 0.044597689957183224, 0.040534633795878135, 0.03549749566512367, 0.029614557259915096, 0.02303419303441456, 0.0159211379194867, 0.00845237281107258, 0.0008127303613873564, -0.006809670052392738, -0.014228045656594964, -0.02126151849891941, -0.02773951704213118, -0.03350590423117338, -0.03842273233382807, -0.04237353446064296, -0.04526607443227936, -0.047034490284135554, -0.047640781837326326, -0.04707560904475848, -0.04535838483786766, -0.04253666353426054, -0.038684843093857474, -0.033902216210620804, -0.028310420992857712, -0.022050356436424164, -0.015278640684767338, -0.008163700892720189, -0.0008815921118185305, 0.006388351206328386, 0.013467923875374594, 0.020184410616967702, 0.026374792162006683, 0.031889694561537396, 0.0365969862096151, 0.04038493613666263, 0.043164858261110495, 0.044873179207958296, 0.04547288169133724, 0.044954290955762775, 0.04333518799363926, 0.04066024980477284, 0.036999833431092026, 0.03244813648414854, 0.027120781995569207, 0.021151889295771584, 0.014690704930135929, 0.007897878060513699, 0.0009414731264110504, -0.006007181439886247, -0.012777706073684657, -0.019204841087239376, -0.025132473880760012, -0.03041742437480281, -0.03493289703084622, -0.03857151638831131, -0.04124787360313001, -0.04290052375832249, -0.043493387422937076, -0.0430165247207653, -0.04148626566814567, -0.0389446963687638, -0.03545851642402369, -0.031117298244761806, -0.026031193460751608, -0.02032814496710092, -0.01415067499982784, -0.0076523297129725025, -0.0009938687974211094, 0.005660705451633081, 0.012148181680284304, 0.018310136576819232, 0.02399679777989721, 0.029070678542675074, 0.033409896084762726, 0.036911093677711414, 0.039491896546726336, 0.041092843377906925, 0.04167874830312566, 0.04123946236788188, 0.039790018320897166, 0.037370157732002536, 0.03404325457445231, 0.02989466412910709, 0.025029540022369297, 0.019570175058984503, 0.013652932944866013, 0.0074248477399438805, 0.0010399757050144841, -0.005344410073992825, -0.011571688417459912, -0.017489727101159706, -0.02295459434521461, -0.027834054319310762, -0.03201076189467498, -0.0353850795802979, -0.03787744914379113, -0.03943026159467963, -0.04000918171978581, -0.03960389689510679, -0.038228274120851856, -0.035919923785232455, -0.03273918320045868, -0.028767547115414665, -0.024105585848465318, -0.01887040407466864, -0.01319270434508554, -0.007213528846832649, -0.0010807605064279292, 0.00505452988290973, 0.011041800395747568, 0.01673472724307832, 0.021994776275473676, 0.02669456965654962, 0.03072096599778863, 0.0339777795814216, 0.036388073426999026, 0.037895971649023814, 0.03846794853982125, 0.038093564795228206, 0.0367856349589826, 0.03457982415788262, 0.03153368618986353, 0.02772516866856249, 0.023250623888004633, 0.018222376034960235, 0.012765906055097089, 0.007016724615632022, 0.0011170109838320786, -0.004787898916586145, -0.010553088626439146, -0.01603761355714693, -0.021107942699744846, -0.025641205692228317, -0.029528166383197368, -0.03267585102537363, -0.0350097679627348, -0.036475665919543515, -0.037040789501930585, -0.036694602996596645, -0.035448966687508174, -0.03333776338604048, -0.030415986351579702, -0.026758312937909628, -0.02245720081468121, -0.017620555178721402, -0.012369025707057535, -0.006833000863593335, -0.0011493743426731647, 0.004541836254177766, 0.010100935080726818, 0.015391973344937582, 0.020286070346324788, 0.02466454921140987, 0.028421811119948154, 0.03146787849760915, 0.03373054601342288, 0.03515708805171253, 0.03571548238235808, 0.035395121754895106, 0.034206997793803866, 0.03218335456211164, 0.029376822168700183, 0.02585905350273495, 0.021718899276122857, 0.017060167747651196, 0.011999025519415403, 0.006661104396002175, 0.0011783862739623765, -0.004314056781926493, -0.009681386839109378, -0.014792307040607423, -0.019522270167744785, -0.02375651049218683, -0.027392825191067536, -0.030344037993709903, -0.032540085751275594, -0.03392967806934082, -0.03448149078152378, -0.03418486560509714, -0.033050000520523266, -0.03110762795489405, -0.028408190415966098, -0.02502053551081111, -0.021030163990934887, -0.016537075309099286, -0.01165326488927006, -0.006499935665802778, -0.0012044932410635316, 0.004102600919038626, 0.009291040603097043, 0.014233871322446913, 0.018810593791329953, 0.02291009862393184, 0.026433360845851756, 0.029295828945729147, 0.0314294509004591, 0.032784288700560854, 0.033329683153327495, 0.033054941895315104, 0.03196953532616544, 0.030102797291907995, 0.02750313949968955, 0.024236800539339205, 0.020386161729657456, 0.016047672522620546, 0.01132943763183663, 0.006348526174896253, 0.0012280697379316008, -0.0039057787725801647, -0.008926950447013124, -0.013712553486468966, -0.018145878289095554, -0.02211924108986833, -0.025536596932260312, -0.028315858631141038, -0.030390865801022342, -0.03171295678576018, -0.03225210621587792, -0.03199760169175226, -0.03095824447811959, -0.029162070816599703, -0.026655602229819213, -0.023502644714648798, -0.019782667721332886, -0.01558880402193828, -0.011025520737872224, -0.006206019700854476, -0.001249431774876786, 0.0037221253852645977, 0.00858655353405395, 0.013224770050090023, 0.01752362070005786, 0.02137863776437287, 0.02469657635356035, 0.027397667395413428, 0.029417532914776237, 0.030708717680625327, 0.0312418008477099, 0.031006061634676355, 0.03000968409937416, 0.028279497422869986, 0.0258602595172773, 0.022813502949086857, 0.019215972845949746, 0.015157696370589255, 0.010739732259961119, 0.006071656625437276, 0.0012688475056811717, -0.003550364592062848, -0.008267609845855799, -0.012767384304911852, -0.01693987585888804, -0.020683641902855238, -0.02390807345864437, -0.026535585949934375, -0.02850348371523099, -0.02976545350647457, -0.030292651457416855, -0.030074358085368774, -0.029118186562759683, -0.027449840497666158, -0.02511242852427709, -0.022165353853743745, -0.018682807307600788, -0.014751901997060052, -0.010470496487726267, -0.005944760790801549, -0.0012865456681831298, 0.003389379616669657, 0.007968152937031377, 0.012337638813004781, 0.016391172632809214, 0.020030162476652687, 0.023166485126521388, 0.02572461808166495, 0.02764345604759437, 0.028877768258816584, 0.029399261935112754, 0.029197226935616903, 0.028278747022388008, 0.02666847382012554, 0.02440797029840228, 0.021554641143706536, 0.018180277472766543, 0.0143692527200899, 0.01021641498335492, 0.005824728425681175, 0.0013027223377762409, -0.003238188987982639, -0.007686449432636199, -0.011933099780192646, -0.015874444810639654, -0.019414583516504727, -0.02246774074882283, -0.02496034364739416, -0.02683279263428047, -0.02804088438713193, -0.028556852869357694, -0.028370003962019125, -0.027486929283124892, -0.025931295145825258, -0.023743213042684303, -0.02097820829258309, -0.017705813299013568, -0.014007821004124314, -0.009976242359706794, -0.005711018774875783, -0.001317546368469544, 0.0030959266881517037, 0.00742096551061517, 0.011551610938363006, 0.015386973738882403, 0.018833697106561933, 0.021808227392475857, 0.0242388378745622, 0.026067356591233094, 0.02725055665931302, 0.02776117589459602, 0.027588541741460543, 0.02673878726933229, 0.025234654067561823, 0.023114888018489464, 0.02043324390195766, 0.017257124339123915, 0.013665887485905524, 0.009748865920135921, 0.005603146136868287, 0.001331163805118587, -0.0029618256906964366, -0.007170339003769359, -0.01119125509333045, -0.014926340439833754, -0.018284647407741748, -0.021184727237718665, -0.023556603857893828, -0.02534346071923226, -0.02650300003184549, -0.02700844192819885, -0.026849140003096225, -0.026030799158008915, -0.024575291474765667, -0.022520075719611662, -0.019917235790679125, -0.016832162732151795, -0.013341913619528646, -0.009533288461087149, -0.005500673070805175, -0.0013437014832890033, 0.0028352042329097753, 0.006933356052438774, 0.010850321892127689, 0.014490385432373016, 0.017764883649082144, 0.02059436500497898, 0.022910515801281728, 0.02465780801919245, 0.02579482893893182, 0.026295260738500102, 0.02614848694825868, 0.025359811855992162, 0.023950288492718824, 0.02195616044737453, 0.019427932222406526, 0.016429091920474845, 0.013034518523135051, 0.009328613679311357, 0.005403204578809037, 0.0013552699833031712, -0.0027154543076808382, -0.006708931465170797, -0.010527280667149653, -0.0140771748476989, -0.017272120454565915, -0.020034563558235203, -0.02229777106101561, -0.024007441406453174, -0.025123005945741624, -0.025618589810057598, -0.025483609574772036, -0.024722993974344232, -0.02335702321385102, -0.021420791795844378, -0.018963309009365447, -0.016046260085392557, -0.012742459293363153, -0.009134033735229603, -0.005310383105204344, -0.001365966067563401, 0.0026020319676232843, 0.006496092118328332, 0.010220757448281948, 0.01368497171879119, 0.016804304203895018, 0.019503006238796267, 0.021715849438222797, 0.023389701006101316, 0.024484798122965536, 0.024975690879125174, 0.024851831433870496, 0.024117795820529128, 0.02279313386825835, 0.020911851851144147, 0.018521541478982193, 0.015682177491412555, 0.012464614196551687, 0.008948818610024297, 0.00522188422275308, 0.001375874701930989, -0.002494449117477997, -0.006293962860044532, -0.00992951541543272, -0.013312211544931866, -0.016359584383080997, -0.01899760476849918, -0.021162478473522036, -0.022802187728621772, -0.023877739821182492, -0.02436409282978715, -0.02425073655385625, -0.023541915216202396, -0.022256487342528417, -0.020427427139727148, -0.01810098048495144, -0.015335497084391253, -0.012199968258041404, -0.008772306961969172, -0.005137412898898334, -0.0013850707403448518, 0.0023922665352370284, 0.006101754488727927, 0.00965243820547652, 0.012957481406684766, 0.015936289082210075, 0.018516471784701557, 0.020635603736159858, 0.022242732074113928, 0.023299600775860924, 0.02378155989064526, 0.02367813850517202, 0.022993268174411507, 0.021745152162181668, 0.019965784542375846, 0.0177001317980202, 0.015004997811136076, 0.011947600859789681, 0.008603898241440406, 0.005056700253527537, 0.0013936203353077019, -0.0022950879128631695, -0.005918753458577677, -0.009388515598962177, -0.012619502043745399, -0.015532903956532725, -0.018057897245600793, -0.020133363288725184, -0.02170936730991112, -0.022748358673196824, -0.02322606426917705, -0.023132053771873582, -0.0224699636489046, -0.021257375216423076, -0.019525350534920622, -0.017317638333743533, -0.014689570225327627, -0.011706675027270965, -0.008443045867156263, -0.004979500734773004, -0.0014015821240636816, 0.0022025547471406647, 0.005744313029523505, 0.009136831200036163, 0.012297112416656514, 0.015148054092932059, 0.01762032808419807, 0.019654065658479634, 0.021200306322634314, 0.02222217546549378, 0.0226957625177727, 0.022610678745961104, 0.021970281710725268, 0.02079156163410272, 0.019104693231692664, 0.016952264771848306, 0.014388204022376175, 0.011476428143240118, 0.008289251300775069, 0.004905589651580713, 0.00140900823032221, -0.0021143419426140086, -0.005577845630634443, -0.008896551793144617, -0.011989256359865178, -0.014780488324228756, -0.017202350600789295, -0.019196170766077887, -0.02071392157053247, -0.021719376851525408, -0.022188975050966963, -0.022112369782274294, -0.02149265462138347, -0.020346257324130104, -0.01870250679997739, -0.016602884199987043, -0.014099977208244078, -0.011256163871514341, -0.008142058884927753, -0.004834761011787389, -0.00141594511359963, 0.0020301540135732573, 0.005418816247279273, 0.008666918116213984, 0.011694971002926942, 0.014429065614320767, 0.016802675173390316, 0.018758273358612965, 0.020248727662251685, 0.021238434439203365, 0.021704168334336447, 0.021635625849232957, 0.021035650363780307, 0.019920133777660724, 0.018317597888086602, 0.016268466477704344, 0.01382404665772478, 0.011045245110773818, 0.008001051332409439, 0.004766825622644666, 0.001422434292103143, -0.0019497217920851394, -0.005266736675474448, -0.008447236835180876, -0.011413376692503821, -0.014092743202077183, -0.01642012293775027, -0.018339088571549058, -0.01980336616917874, -0.020777950190207572, -0.02123993934715474, -0.02117907338963555, -0.02059795826643023, -0.019511974797451554, -0.017948873769948425, -0.015948068067589742, -0.01355963985860181, -0.010843087828347095, -0.00786584577273261, -0.004701609417503863, -0.0014285129602282405, 0.00187279956519293, 0.0051211605136237655, 0.008236873541285012, 0.01114366819302468, 0.01377056624452489, 0.01605361414717347, 0.017937439307072388, 0.019376592344255338, 0.02033664281309794, 0.020795001987215626, 0.020741453069891686, 0.020178376417009432, 0.019120664875185333, 0.0175953319581651, 0.01564082312223433, 0.013306047671493584, 0.010649155648402716, 0.00773609027735929, 0.004638951977968503, 0.0014342145178680122, -0.0017991625774623876, -0.004981678783586611, -0.008035246622244304, -0.010885106980669185, -0.013461658742705098, -0.015702157970090905, -0.01755224516773573, -0.018967263473787403, -0.01991333582598348, -0.02036817514037183, -0.020321608148466484, -0.019775800610678917, -0.018745178982852075, -0.017256051077630397, -0.015345935649716385, -0.013062617962545108, -0.0104629550890398, -0.0076114607973693975, -0.004578705225475791, -0.0014395690256405519, 0.0017286048456615758, 0.004847916090733413, 0.007841821882691563, 0.010637014475414253, 0.01316521556862294, 0.015364843522382056, 0.01718251272630553, 0.01857432863270137, 0.019506947054543904, 0.019958372181729127, 0.01991847423730338, 0.01938921461919245, 0.01838457358146651, 0.016930182824770386, 0.015062672608372978, 0.012828749988629842, 0.01028403135929919, 0.007491658457589216, 0.004520732260142814, 0.0014446035976513863, -0.0016609372410323162, -0.004719527247166793, -0.00765610780915488, -0.010398766080577401, -0.012880495440505985, -0.015040831963555533, -0.016827326947297692, -0.018196819649855207, -0.01911647936800561, -0.01956459171199397, -0.01953107026540971, -0.019017681600231897, -0.018037978681067334, -0.01661694486467684, -0.014790357804757985, -0.012603889433317896, -0.010111964640790455, -0.0073764071597169295, -0.004464906327954762, -0.001449342741398271, 0.0015959858017241364, 0.004596194294233417, 0.007477651391260596, 0.010169785919654237, 0.012606814717344235, 0.01472934951240313, 0.01648584360424345, 0.017833843119877, 0.018741012486104755, 0.019185909362704312, 0.019158490483088687, 0.018660336494081123, 0.017704590811336143, 0.016315614540938817, 0.01452836648787009, 0.012387524007289036, 0.009946366789984437, 0.007265451454066335, 0.004411109900092095, 0.0014538086527928896, -0.0015335902438228164, -0.004477623870321846, -0.007306034424402164, -0.009949542177106122, -0.012343541903364506, -0.014429681259710532, -0.016157282560405096, -0.01748457332278261, -0.018379695715318146, -0.01882147052916997, -0.018799897369634553, -0.01831637927773816, -0.017383666783279565, -0.016025523291719142, -0.01427612054869527, -0.012179179539710703, -0.0097868784066856, -0.007158554645466938, -0.004359233850482814, -0.0014580214729518557, 0.001473602644254898, 0.004363544878129201, 0.0071408702303832885, 0.009737542963765855, 0.012090092769458544, 0.01414116567388682, 0.01584092180037047, 0.017148245933255975, 0.018031741493678068, 0.018470483910864078, 0.01845451532759405, 0.01798506896573736, 0.01707451814002669, 0.015746051681265503, 0.014033084247438328, 0.011978416497832857, 0.009633166222115746, 0.00705549710381825, 0.00430917671959886, 0.0014619995123083566, -0.0014158862728771305, -0.004253706412396606, -0.0069818007419346585, -0.009533332639218631, -0.011845926012245675, -0.013863189710639153, -0.015536092116421414, -0.016824152418719495, -0.01769641964107276, -0.018132215756499145, -0.018121625063668843, -0.01766571826299745, -0.016776506209538723, -0.015476624969149652, -0.013798760401989628, -0.011784826881051801, -0.009484920766687369, -0.006956074753967209, -0.004260844054152656, -0.0014657594467195533, 0.0013603145544175315, 0.004147875914810678, 0.006828493904860343, 0.009336488533302297, 0.011610539382894846, 0.013595184450611883, 0.015242172367376374, 0.016511635039784277, 0.017373052226689063, 0.017805984725702103, 0.017800558570582454, 0.017357688788491536, 0.016489037684412143, 0.015216709150542095, 0.013572686980568186, 0.01159803144326871, 0.009341854283142888, 0.006860097723097219, 0.004214147813740005, 0.0014693164894945697, -0.0013067701437440014, -0.0040458375275462, -0.006680641358166121, -0.009146618017093154, -0.0113834662274503, -0.01333662119966703, -0.014958585239220964, -0.016210082378840997, -0.01706100897767458, -0.01749115729156568, -0.01749069463624016, -0.01706038679988794, -0.016211560664404667, -0.014965807410119642, -0.013354434049408942, -0.011417677203762454, -0.009203698855466397, -0.006767389126796341, -0.004169005836659759, -0.0014726845426650819, 0.0012551441002949801, 0.003947390620945601, 0.0065379563580783735, 0.008963355880674225, 0.011164272388517736, 0.013087007995559244, 0.014684793446642131, 0.015918925332827495, 0.016759703163586933, 0.017187143618797848, 0.0171914548166528, 0.01677325935891348, 0.015943561106138794, 0.014723456940057058, 0.013143601033070898, 0.01124343521221113, 0.00907020472798412, 0.006677783977501164, 0.004125341358151963, 0.0014758763303122046, -0.001205335149493303, -0.003852348474225018, -0.006400171916557612, -0.00878636198084347, -0.010952553425031049, -0.012845886472440166, -0.014420296322880392, -0.015637633514912264, -0.016468587900084916, -0.016893393861042563, -0.016902299817695796, -0.01649579088533091, -0.01568455963193187, -0.014489226079229364, -0.012939814250640157, -0.011074998538095987, -0.008941138792478176, -0.006591128201166568, -0.004083082575162079, -0.0014789035163416356, 0.0011572490206432794, 0.003760537090971077, 0.006267039128891068, 0.00861531912689057, 0.010747932112644135, 0.012612829041148339, 0.014164626752362209, 0.015365712017225888, 0.016187152822868107, 0.01660939482846842, 0.016622726238085854, 0.016227500054346724, 0.015434108656074051, 0.014262711736419728, 0.01274272469594658, 0.010912080458641957, 0.008816283224044635, 0.006507277749850236, 0.004042162252482353, 0.0014817768087461913, -0.0011107978522340363, -0.0036717941336340152, -0.006138325668332858, -0.008449931176799973, -0.010550056192249302, -0.01238743634879343, -0.013917348406577077, -0.01510269849307102, -0.015914921089308, -0.016334666983135498, -0.016352263632192436, -0.015967936998171076, -0.015191789792313391, -0.014043537065175988, -0.012552006034062167, -0.010754412822790367, -0.008695434248910875, -0.0064260977994751774, -0.0040025173657611225, -0.0014845060520989296, 0.001065899656782016, 0.0035859679633027165, 0.0060138144286458195, 0.008289921319845869, 0.010358596338355043, 0.012169334985884152, 0.01367805324879071, 0.014848160522422897, 0.01565144667071293, 0.016068761725133097, 0.01609047185663239, 0.0157166807775033, 0.014957211510959738, 0.013831349362103413, 0.012367352789886227, 0.010601744571577303, 0.00857840102955967, 0.006347462023384735, 0.003964088777422741, 0.0014871003097710904, -0.0010224778383769964, -0.0035029167728239732, -0.005893302297866349, -0.008135030524631656, -0.010173244322677057, -0.011958175413308776, -0.013446359277576559, -0.014601693229142412, -0.015396311902883136, -0.01581125893718057, -0.0158369386691664, -0.01547333709304844, -0.014730007018010421, -0.013625818163939131, -0.012188478707671256, -0.010453840397743728, -0.008465004654331396, -0.006271251933469948, -0.0039268209420180444, -0.001489567937158992, 0.0009804607569779006, 0.0034225078028503587, 0.005776599048728849, 0.007985016134274239, 0.009993711351404286, 0.01175363008496115, 0.013221908482918276, 0.014362917122283454, 0.01514912526666108, 0.015561764759421884, 0.01559127755234534, 0.015237536210895197, 0.014509832332133389, 0.013426633521814398, 0.012015115262961428, 0.010310479529530386, 0.008355077220264368, 0.006197356281645716, 0.00389066163793881, 0.0014919166470259346, -0.0009397813342606426, -0.0033446166317085586, -0.005663526333004577, -0.007839650592711016, -0.009819726557275166, -0.011555391744804534, -0.0130043649918816, -0.01413147613728624, -0.014909519373670103, -0.015319909569623626, -0.015353125737739849, -0.015008931078796509, -0.014296364538302178, -0.013233504433751023, -0.011847010310674214, -0.010171454625439188, -0.008248460999282507, -0.006125670515331982, -0.003855561722788522, -0.0014941535679170478, 0.0009003766964703528, 0.0032691265311028126, 0.0055539167685768045, 0.007698720288068272, 0.00965103562990568, 0.0113631718797509, 0.012793413383655425, 0.013907035855790523, 0.014677149135446097, 0.015085346146991644, 0.015122142409512172, 0.01478719561316758, 0.014089300199438874, 0.013046157418718991, 0.01168392685501652, 0.010036570768324824, 0.00814500767903409, 0.006056096281334168, 0.0038214749100170414, 0.0014962852964667261, -0.0008621878502874215, -0.0031959278806493285, -0.0054476131094249956, -0.007562024500735143, -0.009487399569802346, -0.011176699311977477, -0.012588757156183593, -0.01368928188535334, -0.014451690096772446, -0.014857748000421564, -0.014898007068620149, -0.014572023139021235, -0.013888353909628899, -0.012864335217565165, -0.011525641928607123, -0.009905644548561236, -0.008044577670688067, -0.005988540973186719, -0.0037883575646898123, -0.001498317944330809, 0.0008251593882101772, 0.0031249176350564944, 0.005344467489871771, 0.007429374445238039, 0.009328593553228418, 0.01099571891622731, 0.01239011732871508, 0.013477918382556037, 0.014232836916291836, 0.014636807844256994, 0.014680418041143398, 0.014363124967141193, 0.01369325697440835, 0.012687795607829424, 0.011371945569670666, 0.009778503227204973, 0.007947039476913437, 0.005922917317570183, 0.0037561685165216764, 0.0015002571803482342, -0.0007892392203539142, -0.00305599883852761, -0.0052443407354430495, -0.007300592396315815, -0.009174405896575442, -0.010819990449348012, -0.012197231166414461, -0.01327266670491837, -0.014020301979428757, -0.01442223620659061, -0.014469091116130787, -0.014160229094615801, -0.013503756205283617, -0.012516310320976625, -0.011222639887424142, -0.009654983971142277, -0.007852269114008591, -0.005859142995939682, -0.0037248688884814903, -0.0015021082684972948, 0.0007543783299625474, 0.0029890801815565184, 0.005147101733607314, 0.007175510890671145, 0.00902463711022394, 0.010649287480762942, 0.012009851014782252, 0.013073264178693695, 0.01381381413037713, 0.014213760156853028, 0.014263758300036197, 0.013963079016428607, 0.013319612817118734, 0.012349664051856333, 0.01107753820692213, 0.009534933153084136, 0.007760149582860876, 0.005797140297899653, 0.0036944219394958186, 0.0015038761021002299, -0.0007205305502049192, -0.002924075595879741, -0.005052626858393404, -0.0070539719968784826, -0.008879099032985255, -0.010483396413877239, -0.011827743233000787, -0.01287946297109578, -0.013613117511392785, -0.014011122140930357, -0.014064166676264553, -0.013771432637189442, -0.013140601418286135, -0.012187653551363304, -0.010936464285577633, -0.00941820571009868, -0.007670570383973723, -0.005736835803278369, -0.00366479291990011, -0.001505565234712698, 0.0006876523601449177, 0.00286090388378893, 0.0049607994435985295, 0.006935826646738437, 0.008737614039244647, 0.01032211558951199, 0.01165068721655711, 0.012691029056767581, 0.013417970498948804, 0.01381407891335426, 0.013870077359622441, 0.01358506127329902, 0.012966509084608432, 0.01203008679424868, 0.010799251594458353, 0.009304664555034639, 0.007583427072353721, 0.005678160090151053, 0.0036359489384678225, 0.0015071799080418947, -0.0006557026979732587, -0.002799488378469224, -0.004871509299848556, -0.006820934022144984, -0.008600014311765478, -0.010165254463467898, -0.011478474500535086, -0.012507741269437883, -0.013228144727447802, -0.013622400557258232, -0.013681264536586487, -0.013403748736896336, -0.012797134509085466, -0.01187678221492805, -0.010665742658183706, -0.009194180035830985, -0.00749862084847184, -0.005621047466391402, -0.003607858839933144, -0.0015087240772337124, 0.0006246427898401269, 0.0027397566323579653, 0.004784652271327459, 0.0067091609921461235, 0.008466141173911168, 0.010012632851152684, 0.011310907935924272, 0.012329390430677602, 0.013043424192202441, 0.013435869583795883, 0.013497514583281576, 0.013227290493877986, 0.01263228722027037, 0.011727568004884567, 0.010535788447934154, 0.009086629438214764, 0.007416058181949052, 0.00556543572255255, 0.003580493092072516, 0.0015102014337905801, -0.0005944359927717659, -0.0026816401308817728, -0.00470012982840901, -0.0066003815954845954, -0.008335844475682933, -0.00986408023299002, -0.011147800932092089, -0.012155778548548051, -0.012863604424271008, -0.013254280103606731, -0.013318625253926769, -0.013055492889090718, -0.012471786862916317, -0.011582281465954499, -0.010409247822644397, -0.008981896527792336, -0.007335650464937203, -0.005511265904143077, -0.0035538236814692103, -0.0015116154263880575, 0.0005650476503559502, 0.002625074029175856, 0.004617848692860326, 0.006494476564373363, 0.008208982028594632, 0.009719435114967555, 0.01098897675931067, 0.011986718079678929, 0.012688491730525973, 0.013077437063691643, 0.013144404933265979, 0.012888172432530941, 0.012315462535176964, 0.01144076841438057, 0.010285987013979746, 0.008879871127927713, 0.007257313692511953, 0.005458482101529113, 0.0035278240172099684, 0.0015129692797900048, -0.0005364449599844065, -0.002569996909679064, -0.004537720492602471, -0.006391332885738158, -0.008085419084898076, -0.009578544439296014, -0.010834267905846674, -0.011822031249002064, -0.012517902493012715, -0.012905155543753462, -0.01297467194717528, -0.012725155141015774, -0.012163152177246664, -0.011302882631036643, -0.010165879151148737, -0.008780448730199682, -0.007180968167638807, -0.0054070312559075595, -0.003502468841801931, -0.0015142660120755424, 0.0005085968506047051, 0.002516350558681798, 0.004459661443360502, 0.006290843396517416, 0.007965027857164334, 0.009441263040645211, 0.010683515484707942, 0.011661549421945758, 0.012351662522275424, 0.012737260106664346, 0.012809253926231617, 0.012566275930364277, 0.012014702006836162, 0.011168485353712086, 0.01004880382199437, 0.008683530134531634, 0.007106538228550186, 0.005356862979918629, 0.0034777341487035773, 0.0015155084503307484, -0.00048147387000675127, -0.0024640797601373898, -0.004383592054774834, -0.006192906409989943, -0.007847687074605545, -0.0093074531439088, -0.010536568685619762, -0.011505112524436771, -0.012189606459857474, -0.012573584198265635, -0.01264798721755697, -0.012411378053621193, -0.011869965997356654, -0.011037444807740571, -0.009934646667183755, -0.008589021116394062, -0.00703395199656127, -0.005307929391640506, -0.0034535971058876993, -0.001516699244976306, 0.00045504808080494644, 0.0024131321051841085, 0.0043094368588250075, 0.006097425370375175, 0.007733281572913899, 0.009176983899832552, 0.010393284268267678, 0.011352568506508866, 0.012031577225672833, 0.012413969592181787, 0.012490716340718399, 0.0122603125813083, 0.011728805395083586, 0.010909635771645183, 0.009823299004609742, 0.008496832118737259, 0.006963141142563334, 0.005260184960803945, 0.0034300359849442144, 0.0015178408828486465, -0.00042929296432670666, -0.0023634578160154794, -0.00423712415859844, -0.006004308533256249, -0.0076217019146873, -0.009049730955228595, -0.01025352609321708, -0.01120377284574724, -0.011877425506361262, -0.012258265875760151, -0.012337293483882131, -0.012112937920077007, -0.011591088271950845, -0.010784939174781327, -0.009714657481423113, -0.008406877966526699, -0.00689404067060509, -0.005213586366194846, -0.0034070300952478713, -0.00151893569917239, 0.0004041833317320204, 0.002315009582837331, 0.004166585795663758, 0.005913468669586753, 0.007512844037826396, 0.008925576054795938, 0.010117164687290837, 0.01105858808715264, 0.011727009281129073, 0.012106329973623976, 0.012187578036788894, 0.011969119366495626, 0.011456689110939219, 0.010663241724268916, 0.009608623751342376, 0.008319077601981749, 0.006826588717109863, 0.0051680923633116785, 0.0033845597227788226, 0.0015199858885156523, -0.0003796952417209309, -0.0022677424128073795, -0.004097756934445488, -0.005824822791289849, -0.007406608929514508, -0.008804406671879646, -0.00998407684047834, -0.010916883416353232, -0.011580193381905555, -0.01195802570566827, -0.01204143615744952, -0.011828728693012117, -0.011325488421326635, -0.010544435558748188, -0.009505104175134735, -0.008233353838774774, -0.006760726364439712, -0.005123663661415923, -0.0033626060732225352, -0.0015209935148396514, 0.0003558059242827915, 0.002221613489926448, 0.004030575862183344, 0.005738291896619945, 0.007302902323647602, 0.008686115665733228, 0.009854145231748159, 0.010778534263371465, 0.011436849084956653, 0.011813223376626478, 0.011898740369753469, 0.01169164376342075, 0.011197372381315067, 0.010428417926743648, 0.009404009542339973, 0.008149633133637214, 0.006696397467611093, 0.00508026280922129, 0.003341151218990552, 0.0015219605207158697, -0.00033249370996061596, -0.0021765820449820453, -0.003964983803162525, -0.00565380073366025, -0.007201634419757122, -0.00857060096310209, -0.009727258081365882, -0.010643421934430644, -0.011296853731357609, -0.011671799394609888, -0.011759369189448235, -0.011557748175405612, -0.011072232505793696, -0.01031509088761188, -0.009305254812510079, -0.00806784537393949, -0.006633548493105717, -0.0050378540885072905, -0.00332017804986942, -0.0015228887357929956, 0.0003097379641832494, 0.002132609234697734, 0.0039009247460562724, 0.005571277580452986, 0.007102719621677949, 0.008457765262127215, 0.009603308827561241, 0.010511433269506563, 0.01116009037397745, 0.011533635916259543, 0.01162320677618236, 0.011426930927965387, 0.010949965337194096, 0.010204361033252212, 0.009208758874376458, 0.007987923679968019, 0.0065721283687898355, 0.004996403415038089, 0.003299670226990114, 0.0015237798845877746, -0.00028751902624220564, -0.0020896580293490383, -0.003838345283298632, -0.00549065404042726, -0.00700607629434954, -0.008347515756775607, -0.00948219582556923, -0.010382460323554851, -0.011026447448835167, -0.011398620516371472, -0.011490142609518077, -0.011299086111719097, -0.01083047215759177, -0.010096139228910174, -0.009114444321521939, -0.007909804220715057, -0.006512088344072049, -0.004955878246193867, -0.0032796121398813776, -0.0015246355936486423, 0.00026581815252941317, 0.0020476931081573504, 0.0037771944615355283, 0.005411864851883404, 0.006911626537311458, 0.00823976388014558, 0.009363822067268227, 0.010256400069519504, 0.010895818468891231, 0.011266645880046446, 0.0113600711870085, 0.011174112620279932, 0.010713658720364531, 0.009990340371570247, 0.009022237243243287, 0.007833426042127466, 0.00645338185948109, 0.004916247494804226, 0.0032599888663503917, 0.0015254573981639328, -0.0002446174637050831, -0.002006680761836088, -0.0037174236422587853, -0.0053348477104333165, -0.006819295973559219, -0.00813442506516627, -0.009248094919780498, -0.010133154121412417, -0.010768101738503401, -0.011137609515594709, -0.011232891742606407, -0.01105191388104099, -0.010599434999880308, -0.009886883164553556, -0.008932067029426978, -0.0077587309068310635, -0.006395964424944249, -0.004877481448689318, -0.003240786134992019, -0.0015262467480482893, 0.00022389989546712193, 0.001966588801736915, 0.0036589863718344637, 0.005259543103367455, 0.006729013552570935, 0.00803141852132107, 0.009134925881564053, 0.010012628475892515, 0.010643200086942263, 0.011011413486579361, 0.011108507983824576, 0.010932397603869465, 0.010487714957811752, 0.009785689907073791, 0.008843866188345628, 0.007685663144457024, 0.00633979350608419, 0.0048395516954862485, 0.0032219902901132642, 0.0015270050135687122, -0.00020364915265412223, -0.0019273864750659596, -0.0036018382601906906, -0.00518589415503449, -0.006640711366395806, -0.007930667026167472, -0.009024230354636906, -0.009894733270925042, -0.01052102061949433, -0.010887964161528249, -0.01098682784620731, -0.010815475546331858, -0.010378416324808213, -0.009686686297598708, -0.008757570176396957, -0.007614169511750057, -0.006284828417937068, -0.004802431052346535, -0.003203588258907899, -0.0015277334905348747, 0.00018384966640662659, 0.0018890443857169051, 0.0035459368674946967, 0.00511384648238484, 0.006554324477814246, 0.007832096730511445, 0.00891592743171094, 0.0097793825602118, 0.010401474484817446, 0.01076717197996795, 0.010867763263796957, 0.01070106329419811, 0.010271460396355445, 0.009589801249979152, 0.008673117238872902, 0.007544199061731474, 0.0062310302255206415, 0.004766093500153822, 0.0031855675207004695, 0.0015284334051064155, -0.00016448655416644695, -0.0018515344202770054, -0.003491241598222934, -0.0050433480599028115, -0.006469790759651679, -0.007735636976214574, -0.008809939697100646, -0.009666494102209426, -0.010284476657319522, -0.010648951233553383, -0.01075122995439325, -0.010589080056074333, -0.01016677184176389, -0.009494966721381806, -0.008590448260943039, -0.0074757030212299624, -0.006178361650754986, -0.004730514121913109, -0.0031679160781232906, -0.0015291059182347367, 0.00014554558228247226, 0.0018148296788304194, 0.0034377136020542084, 0.004974349093233294, 0.006387050744406665, 0.00764122012567864, 0.008706193040386213, 0.009555989162640333, 0.010169945733445008, 0.010533219861166827, 0.010637147218504658, 0.01047944847111701, 0.010064278525306006, 0.009402117551157869, 0.008509506628087186, 0.007408634676172836, 0.006126786985255266, 0.004695669045019289, 0.0031506224300722734, 0.00152975212978499, -0.00012701313104154568, -0.0017789044101855964, -0.0033853156810923096, -0.0049068019008445575, -0.006306047483438199, -0.007548781402151541, -0.008604616481879815, -0.009447792329506606, -0.010057803740838872, -0.010419899256959096, -0.010525437750984275, -0.010372094428864201, -0.00996391133861546, -0.009311191309838516, -0.008430238095294144, -0.007342949264059696, -0.0060762720085808086, -0.004661535387110025, -0.0031336755463287234, -0.001530373082350148, 0.0001088761619285668, 0.0017437339512144095, 0.00333401220293789, 0.004840660803149927, 0.006226726414999595, 0.007458258740058715, 0.008505142009038258, 0.009341831339686926, 0.009947975959452496, 0.010308914090387096, 0.01041602746442601, 0.010266946900304674, 0.00986560404352474, 0.009222128157529003, 0.008352590664382306, 0.007278603873109481, 0.006026783911534547, 0.004628091205258873, 0.0031170648437149825, 0.001530969764797153, -0.00009112218696606803, -0.0017092946699876987, -0.003283769019197351, -0.004775882018532973, -0.006149035240488571, -0.0073695926446301525, -0.008407704423026918, -0.009238036916283918, -0.009840390753724568, -0.010200192137384127, -0.010308845323473493, -0.010163937779373152, -0.009769293124595185, -0.009134870711019328, -0.008276514468868288, -0.007215557347592569, -0.0059782912241642, -0.004595315448258029, -0.00310078016369045, -0.0015315431155527564, 0.0000737392399667339, 0.001675563912446815, 0.0032345533890227388, 0.004712423565792373, 0.0060729238083116685, 0.00728272606016411, 0.008312241194704922, 0.009136342615950489, 0.009734979415048518, 0.010093664121865643, 0.010203823189262884, 0.010063001734130994, 0.009674917650644571, 0.009049363918998405, 0.008201961665838864, 0.007153770198919874, 0.005930763748120867, 0.0045631879117862895, 0.0030848117512741317, 0.00153209402566305, -0.000056715849575066915, -0.001642519952343532, -0.0031863339073372196, -0.004650245172536397, -0.005998344004833064, -0.007197604246304405, -0.008218692329369866, -0.009036684685486062, -0.009631676013797021, -0.009989263566841785, -0.010100895673283842, -0.009964076066946442, -0.009582419144642727, -0.008965554944794535, -0.008128886334342557, -0.007093204522074692, -0.005884172493081779, -0.004531689196248325, -0.0030691502352163075, -0.0015326233416345881, 0.000040041013955833456, 0.001610141944230643, 0.003139080437401436, 0.004589308189120179, 0.005925249651897664, 0.007114174661777941, 0.00812700023963896, 0.008939001927057518, 0.009530417260232635, 0.00988692665446217, 0.01],"x":[-100.0,-99.95002498750625,-99.9000499750125,-99.85007496251875,-99.80009995002499,-99.75012493753124,-99.70014992503748,-99.65017491254373,-99.60019990004997,-99.55022488755623,-99.50024987506247,-99.45027486256872,-99.40029985007496,-99.35032483758121,-99.30034982508745,-99.2503748125937,-99.20039980009994,-99.1504247876062,-99.10044977511244,-99.05047476261869,-99.00049975012493,-98.95052473763118,-98.90054972513744,-98.85057471264368,-98.80059970014993,-98.75062468765617,-98.70064967516242,-98.65067466266866,-98.60069965017492,-98.55072463768116,-98.50074962518741,-98.45077461269365,-98.4007996001999,-98.35082458770614,-98.3008495752124,-98.25087456271864,-98.20089955022489,-98.15092453773113,-98.10094952523738,-98.05097451274362,-98.00099950024988,-97.95102448775611,-97.90104947526237,-97.85107446276862,-97.80109945027486,-97.75112443778112,-97.70114942528735,-97.65117441279361,-97.60119940029985,-97.5512243878061,-97.50124937531234,-97.4512743628186,-97.40129935032483,-97.35132433783109,-97.30134932533733,-97.25137431284358,-97.20139930034982,-97.15142428785607,-97.10144927536231,-97.05147426286857,-97.0014992503748,-96.95152423788106,-96.90154922538731,-96.85157421289355,-96.8015992003998,-96.75162418790605,-96.7016491754123,-96.65167416291854,-96.60169915042479,-96.55172413793103,-96.50174912543729,-96.45177411294353,-96.40179910044978,-96.35182408795602,-96.30184907546227,-96.25187406296851,-96.20189905047476,-96.151924037981,-96.10194902548726,-96.0519740129935,-96.00199900049975,-95.95202398800599,-95.90204897551224,-95.8520739630185,-95.80209895052474,-95.75212393803099,-95.70214892553723,-95.65217391304348,-95.60219890054972,-95.55222388805598,-95.50224887556222,-95.45227386306847,-95.40229885057471,-95.35232383808096,-95.3023488255872,-95.25237381309346,-95.2023988005997,-95.15242378810595,-95.10244877561219,-95.05247376311844,-95.00249875062468,-94.95252373813094,-94.90254872563717,-94.85257371314343,-94.80259870064968,-94.75262368815592,-94.70264867566218,-94.65267366316841,-94.60269865067467,-94.55272363818091,-94.50274862568716,-94.4527736131934,-94.40279860069965,-94.3528235882059,-94.30284857571215,-94.25287356321839,-94.20289855072464,-94.15292353823088,-94.10294852573713,-94.05297351324337,-94.00299850074963,-93.95302348825587,-93.90304847576212,-93.85307346326836,-93.80309845077461,-93.75312343828087,-93.7031484257871,-93.65317341329336,-93.6031984007996,-93.55322338830585,-93.50324837581209,-93.45327336331835,-93.40329835082458,-93.35332333833084,-93.30334832583708,-93.25337331334333,-93.20339830084957,-93.15342328835582,-93.10344827586206,-93.05347326336832,-93.00349825087456,-92.95352323838081,-92.90354822588705,-92.8535732133933,-92.80359820089954,-92.7536231884058,-92.70364817591205,-92.65367316341829,-92.60369815092454,-92.55372313843078,-92.50374812593704,-92.45377311344328,-92.40379810094953,-92.35382308845577,-92.30384807596202,-92.25387306346826,-92.20389805097452,-92.15392303848076,-92.10394802598701,-92.05397301349325,-92.0039980009995,-91.95402298850574,-91.904047976012,-91.85407296351823,-91.80409795102449,-91.75412293853073,-91.70414792603698,-91.65417291354323,-91.60419790104947,-91.55422288855573,-91.50424787606197,-91.45427286356822,-91.40429785107446,-91.35432283858071,-91.30434782608695,-91.2543728135932,-91.20439780109945,-91.1544227886057,-91.10444777611194,-91.0544727636182,-91.00449775112443,-90.95452273863069,-90.90454772613693,-90.85457271364318,-90.80459770114942,-90.75462268865567,-90.70464767616193,-90.65467266366817,-90.60469765117442,-90.55472263868066,-90.50474762618691,-90.45477261369315,-90.4047976011994,-90.35482258870564,-90.3048475762119,-90.25487256371814,-90.20489755122439,-90.15492253873063,-90.10494752623688,-90.05497251374312,-90.00499750124938,-89.95502248875562,-89.90504747626187,-89.85507246376811,-89.80509745127436,-89.7551224387806,-89.70514742628686,-89.65517241379311,-89.60519740129935,-89.5552223888056,-89.50524737631184,-89.4552723638181,-89.40529735132434,-89.35532233883059,-89.30534732633683,-89.25537231384308,-89.20539730134932,-89.15542228885558,-89.10544727636182,-89.05547226386807,-89.00549725137431,-88.95552223888056,-88.9055472263868,-88.85557221389305,-88.8055972013993,-88.75562218890555,-88.70564717641179,-88.65567216391804,-88.6056971514243,-88.55572213893053,-88.50574712643679,-88.45577211394303,-88.40579710144928,-88.35582208895552,-88.30584707646177,-88.25587206396801,-88.20589705147427,-88.1559220389805,-88.10594702648676,-88.055972013993,-88.00599700149925,-87.95602198900549,-87.90604697651175,-87.85607196401799,-87.80609695152424,-87.75612193903048,-87.70614692653673,-87.65617191404297,-87.60619690154923,-87.55622188905548,-87.50624687656172,-87.45627186406797,-87.40629685157421,-87.35632183908046,-87.3063468265867,-87.25637181409296,-87.2063968015992,-87.15642178910545,-87.10644677661169,-87.05647176411794,-87.00649675162418,-86.95652173913044,-86.90654672663668,-86.85657171414293,-86.80659670164917,-86.75662168915542,-86.70664667666166,-86.65667166416792,-86.60669665167416,-86.55672163918041,-86.50674662668666,-86.4567716141929,-86.40679660169916,-86.3568215892054,-86.30684657671165,-86.25687156421789,-86.20689655172414,-86.15692153923038,-86.10694652673664,-86.05697151424287,-86.00699650174913,-85.95702148925537,-85.90704647676162,-85.85707146426786,-85.80709645177411,-85.75712143928035,-85.70714642678661,-85.65717141429285,-85.6071964017991,-85.55722138930535,-85.5072463768116,-85.45727136431785,-85.40729635182409,-85.35732133933034,-85.30734632683658,-85.25737131434283,-85.20739630184907,-85.15742128935533,-85.10744627686157,-85.05747126436782,-85.00749625187406,-84.95752123938031,-84.90754622688655,-84.8575712143928,-84.80759620189905,-84.7576211894053,-84.70764617691154,-84.65767116441779,-84.60769615192403,-84.55772113943029,-84.50774612693654,-84.45777111444278,-84.40779610194903,-84.35782108945527,-84.30784607696152,-84.25787106446776,-84.20789605197402,-84.15792103948026,-84.10794602698651,-84.05797101449275,-84.007996001999,-83.95802098950524,-83.9080459770115,-83.85807096451774,-83.80809595202399,-83.75812093953023,-83.70814592703648,-83.65817091454272,-83.60819590204898,-83.55822088955522,-83.50824587706147,-83.45827086456772,-83.40829585207396,-83.35832083958022,-83.30834582708646,-83.25837081459271,-83.20839580209895,-83.1584207896052,-83.10844577711144,-83.0584707646177,-83.00849575212393,-82.95852073963019,-82.90854572713643,-82.85857071464268,-82.80859570214892,-82.75862068965517,-82.70864567716141,-82.65867066466767,-82.6086956521739,-82.55872063968016,-82.5087456271864,-82.45877061469265,-82.40879560219891,-82.35882058970515,-82.3088455772114,-82.25887056471764,-82.2088955522239,-82.15892053973013,-82.10894552723639,-82.05897051474263,-82.00899550224888,-81.95902048975512,-81.90904547726137,-81.85907046476761,-81.80909545227387,-81.7591204397801,-81.70914542728636,-81.6591704147926,-81.60919540229885,-81.55922038980509,-81.50924537731134,-81.45927036481758,-81.40929535232384,-81.35932033983009,-81.30934532733633,-81.25937031484258,-81.20939530234882,-81.15942028985508,-81.10944527736132,-81.05947026486757,-81.00949525237381,-80.95952023988006,-80.9095452273863,-80.85957021489256,-80.8095952023988,-80.75962018990505,-80.70964517741129,-80.65967016491754,-80.60969515242378,-80.55972013993004,-80.50974512743628,-80.45977011494253,-80.40979510244878,-80.35982008995502,-80.30984507746128,-80.25987006496752,-80.20989505247377,-80.15992003998001,-80.10994502748626,-80.0599700149925,-80.00999500249875,-79.960019990005,-79.91004497751125,-79.86006996501749,-79.81009495252374,-79.76011994002998,-79.71014492753623,-79.66016991504247,-79.61019490254873,-79.56021989005497,-79.51024487756122,-79.46026986506746,-79.41029485257371,-79.36031984007997,-79.3103448275862,-79.26036981509246,-79.2103948025987,-79.16041979010495,-79.11044477761119,-79.06046976511745,-79.01049475262369,-78.96051974012994,-78.91054472763618,-78.86056971514243,-78.81059470264867,-78.76061969015493,-78.71064467766116,-78.66066966516742,-78.61069465267366,-78.56071964017991,-78.51074462768615,-78.4607696151924,-78.41079460269864,-78.3608195902049,-78.31084457771115,-78.26086956521739,-78.21089455272364,-78.16091954022988,-78.11094452773614,-78.06096951524238,-78.01099450274863,-77.96101949025487,-77.91104447776112,-77.86106946526736,-77.81109445277362,-77.76111944027986,-77.71114442778611,-77.66116941529235,-77.6111944027986,-77.56121939030484,-77.5112443778111,-77.46126936531734,-77.41129435282359,-77.36131934032983,-77.31134432783608,-77.26136931534234,-77.21139430284857,-77.16141929035483,-77.11144427786107,-77.06146926536732,-77.01149425287356,-76.96151924037981,-76.91154422788605,-76.86156921539231,-76.81159420289855,-76.7616191904048,-76.71164417791104,-76.6616691654173,-76.61169415292353,-76.56171914042979,-76.51174412793603,-76.46176911544228,-76.41179410294852,-76.36181909045477,-76.31184407796101,-76.26186906546727,-76.21189405297352,-76.16191904047976,-76.11194402798601,-76.06196901549225,-76.0119940029985,-75.96201899050475,-75.912043978011,-75.86206896551724,-75.81209395302349,-75.76211894052973,-75.71214392803599,-75.66216891554222,-75.61219390304848,-75.56221889055472,-75.51224387806097,-75.46226886556721,-75.41229385307346,-75.3623188405797,-75.31234382808596,-75.2623688155922,-75.21239380309845,-75.1624187906047,-75.11244377811094,-75.0624687656172,-75.01249375312344,-74.96251874062969,-74.91254372813593,-74.86256871564218,-74.81259370314842,-74.76261869065468,-74.71264367816092,-74.66266866566717,-74.61269365317341,-74.56271864067966,-74.5127436281859,-74.46276861569216,-74.4127936031984,-74.36281859070465,-74.31284357821089,-74.26286856571714,-74.2128935532234,-74.16291854072963,-74.11294352823589,-74.06296851574213,-74.01299350324838,-73.96301849075462,-73.91304347826087,-73.86306846576711,-73.81309345327337,-73.7631184407796,-73.71314342828586,-73.6631684157921,-73.61319340329835,-73.5632183908046,-73.51324337831085,-73.46326836581709,-73.41329335332334,-73.36331834082958,-73.31334332833583,-73.26336831584207,-73.21339330334833,-73.16341829085458,-73.11344327836082,-73.06346826586707,-73.01349325337331,-72.96351824087957,-72.9135432283858,-72.86356821589206,-72.8135932033983,-72.76361819090455,-72.71364317841079,-72.66366816591704,-72.61369315342328,-72.56371814092954,-72.51374312843578,-72.46376811594203,-72.41379310344827,-72.36381809095452,-72.31384307846076,-72.26386806596702,-72.21389305347326,-72.16391804097951,-72.11394302848576,-72.063968015992,-72.01399300349826,-71.9640179910045,-71.91404297851075,-71.86406796601699,-71.81409295352324,-71.76411794102948,-71.71414292853574,-71.66416791604198,-71.61419290354823,-71.56421789105447,-71.51424287856072,-71.46426786606696,-71.41429285357322,-71.36431784107945,-71.31434282858571,-71.26436781609195,-71.2143928035982,-71.16441779110444,-71.1144427786107,-71.06446776611695,-71.01449275362319,-70.96451774112944,-70.91454272863568,-70.86456771614193,-70.81459270364817,-70.76461769115443,-70.71464267866067,-70.66466766616692,-70.61469265367316,-70.56471764117941,-70.51474262868565,-70.4647676161919,-70.41479260369815,-70.3648175912044,-70.31484257871064,-70.26486756621689,-70.21489255372313,-70.16491754122939,-70.11494252873563,-70.06496751624188,-70.01499250374813,-69.96501749125437,-69.91504247876063,-69.86506746626686,-69.81509245377312,-69.76511744127936,-69.71514242878561,-69.66516741629185,-69.6151924037981,-69.56521739130434,-69.5152423788106,-69.46526736631684,-69.41529235382309,-69.36531734132933,-69.31534232883558,-69.26536731634182,-69.21539230384808,-69.16541729135432,-69.11544227886057,-69.06546726636682,-69.01549225387306,-68.96551724137932,-68.91554222888556,-68.86556721639181,-68.81559220389805,-68.7656171914043,-68.71564217891054,-68.6656671664168,-68.61569215392304,-68.56571714142929,-68.51574212893553,-68.46576711644178,-68.41579210394802,-68.36581709145428,-68.31584207896051,-68.26586706646677,-68.21589205397301,-68.16591704147926,-68.1159420289855,-68.06596701649175,-68.01599200399801,-67.96601699150425,-67.9160419790105,-67.86606696651674,-67.816091954023,-67.76611694152923,-67.71614192903549,-67.66616691654173,-67.61619190404798,-67.56621689155422,-67.51624187906047,-67.46626686656671,-67.41629185407297,-67.3663168415792,-67.31634182908546,-67.2663668165917,-67.21639180409795,-67.16641679160419,-67.11644177911045,-67.06646676661668,-67.01649175412294,-66.96651674162919,-66.91654172913543,-66.86656671664169,-66.81659170414792,-66.76661669165418,-66.71664167916042,-66.66666666666667,-66.61669165417291,-66.56671664167916,-66.5167416291854,-66.46676661669166,-66.4167916041979,-66.36681659170415,-66.31684157921039,-66.26686656671664,-66.21689155422288,-66.16691654172914,-66.11694152923538,-66.06696651674163,-66.01699150424787,-65.96701649175412,-65.91704147926038,-65.86706646676662,-65.81709145427287,-65.76711644177911,-65.71714142928536,-65.6671664167916,-65.61719140429786,-65.5672163918041,-65.51724137931035,-65.46726636681659,-65.41729135432284,-65.36731634182908,-65.31734132933533,-65.26736631684157,-65.21739130434783,-65.16741629185407,-65.11744127936032,-65.06746626686656,-65.01749125437281,-64.96751624187905,-64.91754122938531,-64.86756621689156,-64.8175912043978,-64.76761619190405,-64.7176411794103,-64.66766616691655,-64.61769115442279,-64.56771614192904,-64.51774112943528,-64.46776611694153,-64.41779110444777,-64.36781609195403,-64.31784107946027,-64.26786606696652,-64.21789105447276,-64.16791604197901,-64.11794102948525,-64.0679660169915,-64.01799100449774,-63.968015992004,-63.918040979510245,-63.86806596701649,-63.81809095452274,-63.768115942028984,-63.71814092953523,-63.66816591704148,-63.618190904547724,-63.56821589205397,-63.51824087956022,-63.468265867066464,-63.41829085457271,-63.368315842078964,-63.31834082958521,-63.26836581709146,-63.2183908045977,-63.16841579210395,-63.1184407796102,-63.06846576711644,-63.01849075462269,-62.968515742128936,-62.91854072963518,-62.86856571714143,-62.818590704647676,-62.76861569215392,-62.71864067966017,-62.668665667166415,-62.61869065467266,-62.56871564217891,-62.518740629685155,-62.4687656171914,-62.41879060469765,-62.3688155922039,-62.31884057971015,-62.268865567216395,-62.21889055472264,-62.16891554222889,-62.118940529735134,-62.06896551724138,-62.01899050474763,-61.969015492253874,-61.91904047976012,-61.86906546726637,-61.81909045477261,-61.76911544227886,-61.71914042978511,-61.66916541729135,-61.6191904047976,-61.569215392303846,-61.51924037981009,-61.46926536731634,-61.419290354822586,-61.36931534232883,-61.319340329835086,-61.26936531734133,-61.21939030484758,-61.169415292353825,-61.11944027986007,-61.06946526736632,-61.019490254872565,-60.96951524237881,-60.91954022988506,-60.869565217391305,-60.81959020489755,-60.7696151924038,-60.719640179910044,-60.66966516741629,-60.61969015492254,-60.569715142428784,-60.51974012993503,-60.46976511744128,-60.41979010494752,-60.36981509245377,-60.31984007996002,-60.26986506746627,-60.21989005497252,-60.16991504247876,-60.11994002998501,-60.069965017491256,-60.0199900049975,-59.97001499250375,-59.920039980009996,-59.87006496751624,-59.82008995502249,-59.770114942528735,-59.72013993003498,-59.67016491754123,-59.620189905047475,-59.57021489255372,-59.52023988005997,-59.470264867566215,-59.42028985507246,-59.37031484257871,-59.320339830084954,-59.27036481759121,-59.220389805097454,-59.1704147926037,-59.12043978010995,-59.070464767616194,-59.02048975512244,-58.97051474262869,-58.920539730134934,-58.87056471764118,-58.82058970514743,-58.77061469265367,-58.72063968015992,-58.670664667666166,-58.62068965517241,-58.57071464267866,-58.520739630184906,-58.47076461769115,-58.4207896051974,-58.370814592703645,-58.32083958020989,-58.27086456771614,-58.22088955522239,-58.17091454272864,-58.120939530234885,-58.07096451774113,-58.02098950524738,-57.971014492753625,-57.92103948025987,-57.87106446776612,-57.821089455272364,-57.77111444277861,-57.72113943028486,-57.671164417791104,-57.62118940529735,-57.5712143928036,-57.521239380309844,-57.47126436781609,-57.42128935532234,-57.37131434282858,-57.32133933033483,-57.271364317841076,-57.22138930534732,-57.17141429285358,-57.12143928035982,-57.07146426786607,-57.021489255372316,-56.97151424287856,-56.92153923038481,-56.871564217891056,-56.8215892053973,-56.77161419290355,-56.721639180409795,-56.67166416791604,-56.62168915542229,-56.571714142928535,-56.52173913043478,-56.47176411794103,-56.421789105447274,-56.37181409295352,-56.32183908045977,-56.271864067966014,-56.22188905547226,-56.171914042978514,-56.12193903048476,-56.07196401799101,-56.021989005497254,-55.9720139930035,-55.92203898050975,-55.87206396801599,-55.82208895552224,-55.77211394302849,-55.72213893053473,-55.67216391804098,-55.622188905547226,-55.57221389305347,-55.52223888055972,-55.472263868065966,-55.42228885557221,-55.37231384307846,-55.322338830584705,-55.27236381809095,-55.2223888055972,-55.172413793103445,-55.1224387806097,-55.072463768115945,-55.02248875562219,-54.97251374312844,-54.922538730634685,-54.87256371814093,-54.82258870564718,-54.772613693153424,-54.72263868065967,-54.67266366816592,-54.622688655672164,-54.57271364317841,-54.52273863068466,-54.4727636181909,-54.42278860569715,-54.3728135932034,-54.32283858070964,-54.27286356821589,-54.222888555722136,-54.17291354322838,-54.122938530734636,-54.07296351824088,-54.02298850574713,-53.973013493253376,-53.92303848075962,-53.87306346826587,-53.823088455772115,-53.77311344327836,-53.72313843078461,-53.673163418290855,-53.6231884057971,-53.57321339330335,-53.523238380809595,-53.47326336831584,-53.42328835582209,-53.373313343328334,-53.32333833083458,-53.27336331834083,-53.223388305847074,-53.17341329335332,-53.12343828085957,-53.07346326836582,-53.02348825587207,-52.973513243378314,-52.92353823088456,-52.87356321839081,-52.82358820589705,-52.7736131934033,-52.723638180909546,-52.67366316841579,-52.62368815592204,-52.573713143428286,-52.52373813093453,-52.47376311844078,-52.423788105947025,-52.37381309345327,-52.32383808095952,-52.273863068465765,-52.22388805597201,-52.17391304347826,-52.123938030984505,-52.07396301849075,-52.023988005997005,-51.97401299350325,-51.9240379810095,-51.874062968515744,-51.82408795602199,-51.77411294352824,-51.724137931034484,-51.67416291854073,-51.62418790604698,-51.574212893553224,-51.52423788105947,-51.47426286856572,-51.42428785607196,-51.37431284357821,-51.324337831084456,-51.2743628185907,-51.22438780609695,-51.174412793603196,-51.12443778110944,-51.07446276861569,-51.02448775612194,-50.97451274362819,-50.924537731134436,-50.87456271864068,-50.82458770614693,-50.774612693653175,-50.72463768115942,-50.67466266866567,-50.624687656171915,-50.57471264367816,-50.52473763118441,-50.474762618690654,-50.4247876061969,-50.37481259370315,-50.324837581209394,-50.27486256871564,-50.22488755622189,-50.174912543728134,-50.12493753123438,-50.07496251874063,-50.02498750624687,-49.97501249375313,-49.92503748125937,-49.87506246876562,-49.825087456271866,-49.77511244377811,-49.72513743128436,-49.675162418790606,-49.62518740629685,-49.5752123938031,-49.525237381309346,-49.47526236881559,-49.42528735632184,-49.375312343828085,-49.32533733133433,-49.27536231884058,-49.225387306346825,-49.17541229385307,-49.12543728135932,-49.075462268865564,-49.02548725637181,-48.97551224387806,-48.92553723138431,-48.87556221889056,-48.825587206396804,-48.77561219390305,-48.7256371814093,-48.675662168915544,-48.62568715642179,-48.57571214392804,-48.52573713143428,-48.47576211894053,-48.425787106446776,-48.37581209395302,-48.32583708145927,-48.275862068965516,-48.22588705647176,-48.17591204397801,-48.125937031484256,-48.0759620189905,-48.02598700649675,-47.976011994002995,-47.92603698150925,-47.876061969015495,-47.82608695652174,-47.77611194402799,-47.726136931534235,-47.67616191904048,-47.62618690654673,-47.576211894052975,-47.52623688155922,-47.47626186906547,-47.426286856571714,-47.37631184407796,-47.32633683158421,-47.276361819090454,-47.2263868065967,-47.17641179410295,-47.12643678160919,-47.07646176911544,-47.026486756621686,-46.97651174412793,-46.92653673163418,-46.87656171914043,-46.82658670664668,-46.776611694152926,-46.72663668165917,-46.67666166916542,-46.626686656671666,-46.57671164417791,-46.52673663168416,-46.476761619190405,-46.42678660669665,-46.3768115942029,-46.326836581709145,-46.27686156921539,-46.22688655672164,-46.176911544227885,-46.12693653173413,-46.07696151924038,-46.026986506746624,-45.97701149425287,-45.92703648175912,-45.877061469265364,-45.82708645677162,-45.777111444277864,-45.72713643178411,-45.67716141929036,-45.6271864067966,-45.57721139430285,-45.5272363818091,-45.47726136931534,-45.42728635682159,-45.377311344327836,-45.32733633183408,-45.27736131934033,-45.227386306846576,-45.17741129435282,-45.12743628185907,-45.077461269365315,-45.02748625687156,-44.97751124437781,-44.927536231884055,-44.8775612193903,-44.827586206896555,-44.7776111944028,-44.72763618190905,-44.677661169415295,-44.62768615692154,-44.57771114442779,-44.527736131934034,-44.47776111944028,-44.42778610694653,-44.377811094452774,-44.32783608195902,-44.27786106946527,-44.22788605697151,-44.17791104447776,-44.12793603198401,-44.07796101949025,-44.0279860069965,-43.978010994502746,-43.92803598200899,-43.87806096951524,-43.828085957021486,-43.77811094452774,-43.728135932033986,-43.67816091954023,-43.62818590704648,-43.578210894552726,-43.52823588205897,-43.47826086956522,-43.428285857071465,-43.37831084457771,-43.32833583208396,-43.278360819590205,-43.22838580709645,-43.1784107946027,-43.128435782108944,-43.07846076961519,-43.02848575712144,-42.978510744627684,-42.92853573213393,-42.87856071964018,-42.82858570714642,-42.77861069465268,-42.728635682158924,-42.67866066966517,-42.62868565717142,-42.57871064467766,-42.52873563218391,-42.478760619690156,-42.4287856071964,-42.37881059470265,-42.328835582208896,-42.27886056971514,-42.22888555722139,-42.178910544727636,-42.12893553223388,-42.07896051974013,-42.028985507246375,-41.97901049475262,-41.92903548225887,-41.879060469765115,-41.82908545727136,-41.77911044477761,-41.72913543228386,-41.67916041979011,-41.629185407296355,-41.5792103948026,-41.52923538230885,-41.479260369815094,-41.42928535732134,-41.37931034482759,-41.329335332333834,-41.27936031984008,-41.22938530734633,-41.17941029485257,-41.12943528235882,-41.079460269865066,-41.02948525737131,-40.97951024487756,-40.929535232383806,-40.87956021989005,-40.8295852073963,-40.779610194902546,-40.72963518240879,-40.679660169915046,-40.62968515742129,-40.57971014492754,-40.529735132433785,-40.47976011994003,-40.42978510744628,-40.379810094952525,-40.32983508245877,-40.27986006996502,-40.229885057471265,-40.17991004497751,-40.12993503248376,-40.079960019990004,-40.02998500749625,-39.9800099950025,-39.930034982508744,-39.88005997001499,-39.83008495752124,-39.78010994502748,-39.73013493253373,-39.68015992003998,-39.63018490754623,-39.58020989505248,-39.53023488255872,-39.48025987006497,-39.430284857571216,-39.38030984507746,-39.33033483258371,-39.280359820089956,-39.2303848075962,-39.18040979510245,-39.130434782608695,-39.08045977011494,-39.03048475762119,-38.980509745127435,-38.93053473263368,-38.88055972013993,-38.830584707646175,-38.78060969515242,-38.73063468265867,-38.680659670164914,-38.63068465767117,-38.580709645177414,-38.53073463268366,-38.48075962018991,-38.430784607696154,-38.3808095952024,-38.33083458270865,-38.28085957021489,-38.23088455772114,-38.18090954522739,-38.13093453273363,-38.08095952023988,-38.030984507746126,-37.98100949525237,-37.93103448275862,-37.881059470264866,-37.83108445777111,-37.78110944527736,-37.731134432783605,-37.68115942028985,-37.6311844077961,-37.58120939530235,-37.5312343828086,-37.481259370314845,-37.43128435782109,-37.38130934532734,-37.331334332833585,-37.28135932033983,-37.23138430784608,-37.181409295352324,-37.13143428285857,-37.08145927036482,-37.031484257871064,-36.98150924537731,-36.93153423288356,-36.8815592203898,-36.83158420789605,-36.7816091954023,-36.73163418290854,-36.68165917041479,-36.631684157921036,-36.58170914542729,-36.531734132933536,-36.48175912043978,-36.43178410794603,-36.381809095452276,-36.33183408295852,-36.28185907046477,-36.231884057971016,-36.18190904547726,-36.13193403298351,-36.081959020489755,-36.031984007996,-35.98200899550225,-35.932033983008495,-35.88205897051474,-35.83208395802099,-35.782108945527234,-35.73213393303348,-35.68215892053973,-35.632183908045974,-35.58220889555222,-35.532233883058474,-35.48225887056472,-35.43228385807097,-35.382308845577214,-35.33233383308346,-35.28235882058971,-35.23238380809595,-35.1824087956022,-35.132433783108446,-35.08245877061469,-35.03248375812094,-34.982508745627186,-34.93253373313343,-34.88255872063968,-34.832583708145926,-34.78260869565217,-34.73263368315842,-34.682658670664665,-34.63268365817091,-34.58270864567716,-34.53273363318341,-34.48275862068966,-34.432783608195905,-34.38280859570215,-34.3328335832084,-34.282858570714644,-34.23288355822089,-34.18290854572714,-34.132933533233384,-34.08295852073963,-34.03298350824588,-33.983008495752124,-33.93303348325837,-33.88305847076462,-33.83308345827086,-33.78310844577711,-33.733133433283356,-33.6831584207896,-33.63318340829585,-33.583208395802096,-33.53323338330834,-33.483258370814596,-33.43328335832084,-33.38330834582709,-33.333333333333336,-33.28335832083958,-33.23338330834583,-33.183408295852075,-33.13343328335832,-33.08345827086457,-33.033483258370815,-32.98350824587706,-32.93353323338331,-32.883558220889554,-32.8335832083958,-32.78360819590205,-32.733633183408294,-32.68365817091454,-32.63368315842079,-32.583708145927034,-32.53373313343328,-32.48375812093953,-32.43378310844578,-32.38380809595203,-32.33383308345827,-32.28385807096452,-32.23388305847077,-32.18390804597701,-32.13393303348326,-32.083958020989506,-32.03398300849575,-31.984007996002,-31.934032983508246,-31.884057971014492,-31.83408295852074,-31.784107946026985,-31.734132933533232,-31.684157921039482,-31.63418290854573,-31.584207896051975,-31.53423288355822,-31.484257871064468,-31.434282858570715,-31.38430784607696,-31.334332833583208,-31.284357821089454,-31.2343828085957,-31.18440779610195,-31.134432783608197,-31.084457771114444,-31.03448275862069,-30.984507746126937,-30.934532733633183,-30.88455772113943,-30.834582708645677,-30.784607696151923,-30.73463268365817,-30.684657671164416,-30.634682658670666,-30.584707646176913,-30.53473263368316,-30.484757621189406,-30.434782608695652,-30.3848075962019,-30.334832583708145,-30.284857571214392,-30.23488255872064,-30.184907546226885,-30.134932533733135,-30.08495752123938,-30.034982508745628,-29.985007496251875,-29.93503248375812,-29.885057471264368,-29.835082458770614,-29.78510744627686,-29.735132433783107,-29.685157421289354,-29.635182408795604,-29.58520739630185,-29.535232383808097,-29.485257371314344,-29.43528235882059,-29.385307346326837,-29.335332333833083,-29.28535732133933,-29.235382308845576,-29.185407296351823,-29.13543228385807,-29.08545727136432,-29.035482258870566,-28.985507246376812,-28.93553223388306,-28.885557221389305,-28.835582208895552,-28.7856071964018,-28.735632183908045,-28.68565717141429,-28.635682158920538,-28.58570714642679,-28.535732133933035,-28.48575712143928,-28.435782108945528,-28.385807096451774,-28.33583208395802,-28.285857071464267,-28.235882058970514,-28.18590704647676,-28.135932033983007,-28.085957021489257,-28.035982008995504,-27.98600699650175,-27.936031984007997,-27.886056971514243,-27.83608195902049,-27.786106946526736,-27.736131934032983,-27.68615692153923,-27.636181909045476,-27.586206896551722,-27.536231884057973,-27.48625687156422,-27.436281859070466,-27.386306846576712,-27.33633183408296,-27.286356821589205,-27.23638180909545,-27.1864067966017,-27.136431784107945,-27.08645677161419,-27.03648175912044,-26.986506746626688,-26.936531734132934,-26.88655672163918,-26.836581709145428,-26.786606696651674,-26.73663168415792,-26.686656671664167,-26.636681659170414,-26.58670664667666,-26.53673163418291,-26.486756621689157,-26.436781609195403,-26.38680659670165,-26.336831584207896,-26.286856571714143,-26.23688155922039,-26.186906546726636,-26.136931534232883,-26.08695652173913,-26.036981509245376,-25.987006496751626,-25.937031484257872,-25.88705647176412,-25.837081459270365,-25.787106446776612,-25.73713143428286,-25.687156421789105,-25.63718140929535,-25.587206396801598,-25.537231384307844,-25.487256371814095,-25.43728135932034,-25.387306346826588,-25.337331334332834,-25.28735632183908,-25.237381309345327,-25.187406296851574,-25.13743128435782,-25.087456271864067,-25.037481259370313,-24.987506246876563,-24.93753123438281,-24.887556221889056,-24.837581209395303,-24.78760619690155,-24.737631184407796,-24.687656171914043,-24.63768115942029,-24.587706146926536,-24.537731134432782,-24.48775612193903,-24.43778110944528,-24.387806096951525,-24.337831084457772,-24.28785607196402,-24.237881059470265,-24.18790604697651,-24.137931034482758,-24.087956021989005,-24.03798100949525,-23.988005997001498,-23.938030984507748,-23.888055972013994,-23.83808095952024,-23.788105947026487,-23.738130934532734,-23.68815592203898,-23.638180909545227,-23.588205897051473,-23.53823088455772,-23.488255872063966,-23.438280859570217,-23.388305847076463,-23.33833083458271,-23.288355822088956,-23.238380809595203,-23.18840579710145,-23.138430784607696,-23.088455772113942,-23.03848075962019,-22.988505747126435,-22.938530734632682,-22.888555722138932,-22.83858070964518,-22.788605697151425,-22.73863068465767,-22.688655672163918,-22.638680659670165,-22.58870564717641,-22.538730634682658,-22.488755622188904,-22.43878060969515,-22.3888055972014,-22.338830584707647,-22.288855572213894,-22.23888055972014,-22.188905547226387,-22.138930534732634,-22.08895552223888,-22.038980509745127,-21.989005497251373,-21.93903048475762,-21.88905547226387,-21.839080459770116,-21.789105447276363,-21.73913043478261,-21.689155422288856,-21.639180409795102,-21.58920539730135,-21.539230384807595,-21.489255372313842,-21.43928035982009,-21.38930534732634,-21.339330334832585,-21.28935532233883,-21.239380309845078,-21.189405297351325,-21.13943028485757,-21.089455272363818,-21.039480259870064,-20.98950524737631,-20.939530234882557,-20.889555222388804,-20.839580209895054,-20.7896051974013,-20.739630184907547,-20.689655172413794,-20.63968015992004,-20.589705147426287,-20.539730134932533,-20.48975512243878,-20.439780109945026,-20.389805097451273,-20.339830084957523,-20.28985507246377,-20.239880059970016,-20.189905047476262,-20.13993003498251,-20.089955022488756,-20.039980009995002,-19.99000499750125,-19.940029985007495,-19.89005497251374,-19.84007996001999,-19.79010494752624,-19.740129935032485,-19.69015492253873,-19.640179910044978,-19.590204897551224,-19.54022988505747,-19.490254872563717,-19.440279860069964,-19.39030484757621,-19.340329835082457,-19.290354822588707,-19.240379810094954,-19.1904047976012,-19.140429785107447,-19.090454772613693,-19.04047976011994,-18.990504747626186,-18.940529735132433,-18.89055472263868,-18.840579710144926,-18.790604697651176,-18.740629685157423,-18.69065467266367,-18.640679660169916,-18.590704647676162,-18.54072963518241,-18.490754622688655,-18.4407796101949,-18.39080459770115,-18.340829585207395,-18.290854572713645,-18.24087956021989,-18.190904547726138,-18.140929535232384,-18.09095452273863,-18.040979510244878,-17.991004497751124,-17.94102948525737,-17.891054472763617,-17.841079460269864,-17.79110444777611,-17.74112943528236,-17.691154422788607,-17.641179410294853,-17.5912043978011,-17.541229385307346,-17.491254372813593,-17.44127936031984,-17.391304347826086,-17.341329335332333,-17.29135432283858,-17.24137931034483,-17.191404297851076,-17.141429285357322,-17.09145427286357,-17.041479260369815,-16.991504247876062,-16.94152923538231,-16.891554222888555,-16.8415792103948,-16.791604197901048,-16.741629185407298,-16.691654172913545,-16.64167916041979,-16.591704147926038,-16.541729135432284,-16.49175412293853,-16.441779110444777,-16.391804097951024,-16.34182908545727,-16.291854072963517,-16.241879060469763,-16.191904047976013,-16.14192903548226,-16.091954022988507,-16.041979010494753,-15.992003998001,-15.942028985507246,-15.892053973013493,-15.842078960519741,-15.792103948025987,-15.742128935532234,-15.69215392303848,-15.642178910544727,-15.592203898050975,-15.542228885557222,-15.492253873063468,-15.442278860569715,-15.392303848075962,-15.342328835582208,-15.292353823088456,-15.242378810594703,-15.19240379810095,-15.142428785607196,-15.092453773113442,-15.04247876061969,-14.992503748125937,-14.942528735632184,-14.89255372313843,-14.842578710644677,-14.792603698150925,-14.742628685657172,-14.692653673163418,-14.642678660669665,-14.592703648175911,-14.54272863568216,-14.492753623188406,-14.442778610694653,-14.3928035982009,-14.342828585707146,-14.292853573213394,-14.24287856071964,-14.192903548225887,-14.142928535732134,-14.09295352323838,-14.042978510744629,-13.993003498250875,-13.943028485757122,-13.893053473263368,-13.843078460769615,-13.793103448275861,-13.74312843578211,-13.693153423288356,-13.643178410794603,-13.59320339830085,-13.543228385807096,-13.493253373313344,-13.44327836081959,-13.393303348325837,-13.343328335832084,-13.29335332333833,-13.243378310844578,-13.193403298350825,-13.143428285857071,-13.093453273363318,-13.043478260869565,-12.993503248375813,-12.94352823588206,-12.893553223388306,-12.843578210894552,-12.793603198400799,-12.743628185907047,-12.693653173413294,-12.64367816091954,-12.593703148425787,-12.543728135932033,-12.493753123438282,-12.443778110944528,-12.393803098450775,-12.343828085957021,-12.293853073463268,-12.243878060969514,-12.193903048475763,-12.14392803598201,-12.093953023488256,-12.043978010994502,-11.994002998500749,-11.944027986006997,-11.894052973513244,-11.84407796101949,-11.794102948525737,-11.744127936031983,-11.694152923538232,-11.644177911044478,-11.594202898550725,-11.544227886056971,-11.494252873563218,-11.444277861069466,-11.394302848575713,-11.344327836081959,-11.294352823588206,-11.244377811094452,-11.1944027986007,-11.144427786106947,-11.094452773613193,-11.04447776111944,-10.994502748625687,-10.944527736131935,-10.894552723638181,-10.844577711144428,-10.794602698650674,-10.744627686156921,-10.69465267366317,-10.644677661169416,-10.594702648675662,-10.544727636181909,-10.494752623688155,-10.444777611194402,-10.39480259870065,-10.344827586206897,-10.294852573713143,-10.24487756121939,-10.194902548725636,-10.144927536231885,-10.094952523738131,-10.044977511244378,-9.995002498750624,-9.94502748625687,-9.89505247376312,-9.845077461269366,-9.795102448775612,-9.745127436281859,-9.695152423788105,-9.645177411294354,-9.5952023988006,-9.545227386306847,-9.495252373813093,-9.44527736131934,-9.395302348825588,-9.345327336331835,-9.295352323838081,-9.245377311344328,-9.195402298850574,-9.145427286356822,-9.095452273863069,-9.045477261369316,-8.995502248875562,-8.945527236381809,-8.895552223888055,-8.845577211394303,-8.79560219890055,-8.745627186406796,-8.695652173913043,-8.64567716141929,-8.595702148925538,-8.545727136431784,-8.495752123938031,-8.445777111444277,-8.395802098950524,-8.345827086456772,-8.295852073963019,-8.245877061469265,-8.195902048975512,-8.145927036481758,-8.095952023988007,-8.045977011494253,-7.9960019990005,-7.946026986506746,-7.896051974012994,-7.84607696151924,-7.796101949025488,-7.746126936531734,-7.696151924037981,-7.646176911544228,-7.596201899050475,-7.546226886556721,-7.496251874062969,-7.446276861569215,-7.396301849075463,-7.346326836581709,-7.296351824087956,-7.246376811594203,-7.19640179910045,-7.146426786606697,-7.096451774112944,-7.04647676161919,-6.9965017491254375,-6.946526736631684,-6.896551724137931,-6.846576711644178,-6.796601699150425,-6.746626686656672,-6.6966516741629185,-6.646676661669165,-6.5967016491754125,-6.546726636681659,-6.496751624187906,-6.446776611694153,-6.3968015992003995,-6.346826586706647,-6.296851574212893,-6.246876561719141,-6.196901549225387,-6.146926536731634,-6.096951524237881,-6.046976511744128,-5.997001499250374,-5.947026486756622,-5.897051474262868,-5.847076461769116,-5.797101449275362,-5.747126436781609,-5.697151424287856,-5.647176411794103,-5.59720139930035,-5.547226386806597,-5.497251374312843,-5.447276361819091,-5.397301349325337,-5.347326336831585,-5.297351324337831,-5.247376311844078,-5.197401299350325,-5.147426286856572,-5.097451274362818,-5.047476261869066,-4.997501249375312,-4.94752623688156,-4.897551224387806,-4.847576211894053,-4.7976011994003,-4.747626186906547,-4.697651174412794,-4.6476761619190405,-4.597701149425287,-4.5477261369315345,-4.497751124437781,-4.4477761119440276,-4.397801099450275,-4.3478260869565215,-4.297851074462769,-4.2478760619690155,-4.197901049475262,-4.147926036981509,-4.097951024487756,-4.047976011994003,-3.99800099950025,-3.948025987006497,-3.898050974512744,-3.8480759620189904,-3.7981009495252374,-3.7481259370314843,-3.6981509245377313,-3.648175912043978,-3.598200899550225,-3.548225887056472,-3.4982508745627188,-3.4482758620689653,-3.3983008495752123,-3.3483258370814593,-3.2983508245877062,-3.248375812093953,-3.1984007996001997,-3.1484257871064467,-3.0984507746126937,-3.0484757621189407,-2.998500749625187,-2.948525737131434,-2.898550724637681,-2.848575712143928,-2.798600699650175,-2.7486256871564216,-2.6986506746626686,-2.6486756621689156,-2.5987006496751626,-2.548725637181409,-2.498750624687656,-2.448775612193903,-2.39880059970015,-2.348825587206397,-2.2988505747126435,-2.2488755622188905,-2.1989005497251375,-2.1489255372313845,-2.098950524737631,-2.048975512243878,-1.999000499750125,-1.949025487256372,-1.8990504747626187,-1.8490754622688657,-1.7991004497751124,-1.7491254372813594,-1.6991504247876061,-1.6491754122938531,-1.5992003998000999,-1.5492253873063468,-1.4992503748125936,-1.4492753623188406,-1.3993003498250876,-1.3493253373313343,-1.2993503248375813,-1.249375312343828,-1.199400299850075,-1.1494252873563218,-1.0994502748625687,-1.0494752623688155,-0.9995002498750625,-0.9495252373813093,-0.8995502248875562,-0.8495752123938031,-0.7996001999000499,-0.7496251874062968,-0.6996501749125438,-0.6496751624187906,-0.5997001499250375,-0.5497251374312844,-0.49975012493753124,-0.4497751124437781,-0.39980009995002497,-0.3498250874562719,-0.29985007496251875,-0.24987506246876562,-0.19990004997501248,-0.14992503748125938,-0.09995002498750624,-0.04997501249375312,0.0,0.04997501249375312,0.09995002498750624,0.14992503748125938,0.19990004997501248,0.24987506246876562,0.29985007496251875,0.3498250874562719,0.39980009995002497,0.4497751124437781,0.49975012493753124,0.5497251374312844,0.5997001499250375,0.6496751624187906,0.6996501749125438,0.7496251874062968,0.7996001999000499,0.8495752123938031,0.8995502248875562,0.9495252373813093,0.9995002498750625,1.0494752623688155,1.0994502748625687,1.1494252873563218,1.199400299850075,1.249375312343828,1.2993503248375813,1.3493253373313343,1.3993003498250876,1.4492753623188406,1.4992503748125936,1.5492253873063468,1.5992003998000999,1.6491754122938531,1.6991504247876061,1.7491254372813594,1.7991004497751124,1.8490754622688657,1.8990504747626187,1.949025487256372,1.999000499750125,2.048975512243878,2.098950524737631,2.1489255372313845,2.1989005497251375,2.2488755622188905,2.2988505747126435,2.348825587206397,2.39880059970015,2.448775612193903,2.498750624687656,2.548725637181409,2.5987006496751626,2.6486756621689156,2.6986506746626686,2.7486256871564216,2.798600699650175,2.848575712143928,2.898550724637681,2.948525737131434,2.998500749625187,3.0484757621189407,3.0984507746126937,3.1484257871064467,3.1984007996001997,3.248375812093953,3.2983508245877062,3.3483258370814593,3.3983008495752123,3.4482758620689653,3.4982508745627188,3.548225887056472,3.598200899550225,3.648175912043978,3.6981509245377313,3.7481259370314843,3.7981009495252374,3.8480759620189904,3.898050974512744,3.948025987006497,3.99800099950025,4.047976011994003,4.097951024487756,4.147926036981509,4.197901049475262,4.2478760619690155,4.297851074462769,4.3478260869565215,4.397801099450275,4.4477761119440276,4.497751124437781,4.5477261369315345,4.597701149425287,4.6476761619190405,4.697651174412794,4.747626186906547,4.7976011994003,4.847576211894053,4.897551224387806,4.94752623688156,4.997501249375312,5.047476261869066,5.097451274362818,5.147426286856572,5.197401299350325,5.247376311844078,5.297351324337831,5.347326336831585,5.397301349325337,5.447276361819091,5.497251374312843,5.547226386806597,5.59720139930035,5.647176411794103,5.697151424287856,5.747126436781609,5.797101449275362,5.847076461769116,5.897051474262868,5.947026486756622,5.997001499250374,6.046976511744128,6.096951524237881,6.146926536731634,6.196901549225387,6.246876561719141,6.296851574212893,6.346826586706647,6.3968015992003995,6.446776611694153,6.496751624187906,6.546726636681659,6.5967016491754125,6.646676661669165,6.6966516741629185,6.746626686656672,6.796601699150425,6.846576711644178,6.896551724137931,6.946526736631684,6.9965017491254375,7.04647676161919,7.096451774112944,7.146426786606697,7.19640179910045,7.246376811594203,7.296351824087956,7.346326836581709,7.396301849075463,7.446276861569215,7.496251874062969,7.546226886556721,7.596201899050475,7.646176911544228,7.696151924037981,7.746126936531734,7.796101949025488,7.84607696151924,7.896051974012994,7.946026986506746,7.9960019990005,8.045977011494253,8.095952023988007,8.145927036481758,8.195902048975512,8.245877061469265,8.295852073963019,8.345827086456772,8.395802098950524,8.445777111444277,8.495752123938031,8.545727136431784,8.595702148925538,8.64567716141929,8.695652173913043,8.745627186406796,8.79560219890055,8.845577211394303,8.895552223888055,8.945527236381809,8.995502248875562,9.045477261369316,9.095452273863069,9.145427286356822,9.195402298850574,9.245377311344328,9.295352323838081,9.345327336331835,9.395302348825588,9.44527736131934,9.495252373813093,9.545227386306847,9.5952023988006,9.645177411294354,9.695152423788105,9.745127436281859,9.795102448775612,9.845077461269366,9.89505247376312,9.94502748625687,9.995002498750624,10.044977511244378,10.094952523738131,10.144927536231885,10.194902548725636,10.24487756121939,10.294852573713143,10.344827586206897,10.39480259870065,10.444777611194402,10.494752623688155,10.544727636181909,10.594702648675662,10.644677661169416,10.69465267366317,10.744627686156921,10.794602698650674,10.844577711144428,10.894552723638181,10.944527736131935,10.994502748625687,11.04447776111944,11.094452773613193,11.144427786106947,11.1944027986007,11.244377811094452,11.294352823588206,11.344327836081959,11.394302848575713,11.444277861069466,11.494252873563218,11.544227886056971,11.594202898550725,11.644177911044478,11.694152923538232,11.744127936031983,11.794102948525737,11.84407796101949,11.894052973513244,11.944027986006997,11.994002998500749,12.043978010994502,12.093953023488256,12.14392803598201,12.193903048475763,12.243878060969514,12.293853073463268,12.343828085957021,12.393803098450775,12.443778110944528,12.493753123438282,12.543728135932033,12.593703148425787,12.64367816091954,12.693653173413294,12.743628185907047,12.793603198400799,12.843578210894552,12.893553223388306,12.94352823588206,12.993503248375813,13.043478260869565,13.093453273363318,13.143428285857071,13.193403298350825,13.243378310844578,13.29335332333833,13.343328335832084,13.393303348325837,13.44327836081959,13.493253373313344,13.543228385807096,13.59320339830085,13.643178410794603,13.693153423288356,13.74312843578211,13.793103448275861,13.843078460769615,13.893053473263368,13.943028485757122,13.993003498250875,14.042978510744629,14.09295352323838,14.142928535732134,14.192903548225887,14.24287856071964,14.292853573213394,14.342828585707146,14.3928035982009,14.442778610694653,14.492753623188406,14.54272863568216,14.592703648175911,14.642678660669665,14.692653673163418,14.742628685657172,14.792603698150925,14.842578710644677,14.89255372313843,14.942528735632184,14.992503748125937,15.04247876061969,15.092453773113442,15.142428785607196,15.19240379810095,15.242378810594703,15.292353823088456,15.342328835582208,15.392303848075962,15.442278860569715,15.492253873063468,15.542228885557222,15.592203898050975,15.642178910544727,15.69215392303848,15.742128935532234,15.792103948025987,15.842078960519741,15.892053973013493,15.942028985507246,15.992003998001,16.041979010494753,16.091954022988507,16.14192903548226,16.191904047976013,16.241879060469763,16.291854072963517,16.34182908545727,16.391804097951024,16.441779110444777,16.49175412293853,16.541729135432284,16.591704147926038,16.64167916041979,16.691654172913545,16.741629185407298,16.791604197901048,16.8415792103948,16.891554222888555,16.94152923538231,16.991504247876062,17.041479260369815,17.09145427286357,17.141429285357322,17.191404297851076,17.24137931034483,17.29135432283858,17.341329335332333,17.391304347826086,17.44127936031984,17.491254372813593,17.541229385307346,17.5912043978011,17.641179410294853,17.691154422788607,17.74112943528236,17.79110444777611,17.841079460269864,17.891054472763617,17.94102948525737,17.991004497751124,18.040979510244878,18.09095452273863,18.140929535232384,18.190904547726138,18.24087956021989,18.290854572713645,18.340829585207395,18.39080459770115,18.4407796101949,18.490754622688655,18.54072963518241,18.590704647676162,18.640679660169916,18.69065467266367,18.740629685157423,18.790604697651176,18.840579710144926,18.89055472263868,18.940529735132433,18.990504747626186,19.04047976011994,19.090454772613693,19.140429785107447,19.1904047976012,19.240379810094954,19.290354822588707,19.340329835082457,19.39030484757621,19.440279860069964,19.490254872563717,19.54022988505747,19.590204897551224,19.640179910044978,19.69015492253873,19.740129935032485,19.79010494752624,19.84007996001999,19.89005497251374,19.940029985007495,19.99000499750125,20.039980009995002,20.089955022488756,20.13993003498251,20.189905047476262,20.239880059970016,20.28985507246377,20.339830084957523,20.389805097451273,20.439780109945026,20.48975512243878,20.539730134932533,20.589705147426287,20.63968015992004,20.689655172413794,20.739630184907547,20.7896051974013,20.839580209895054,20.889555222388804,20.939530234882557,20.98950524737631,21.039480259870064,21.089455272363818,21.13943028485757,21.189405297351325,21.239380309845078,21.28935532233883,21.339330334832585,21.38930534732634,21.43928035982009,21.489255372313842,21.539230384807595,21.58920539730135,21.639180409795102,21.689155422288856,21.73913043478261,21.789105447276363,21.839080459770116,21.88905547226387,21.93903048475762,21.989005497251373,22.038980509745127,22.08895552223888,22.138930534732634,22.188905547226387,22.23888055972014,22.288855572213894,22.338830584707647,22.3888055972014,22.43878060969515,22.488755622188904,22.538730634682658,22.58870564717641,22.638680659670165,22.688655672163918,22.73863068465767,22.788605697151425,22.83858070964518,22.888555722138932,22.938530734632682,22.988505747126435,23.03848075962019,23.088455772113942,23.138430784607696,23.18840579710145,23.238380809595203,23.288355822088956,23.33833083458271,23.388305847076463,23.438280859570217,23.488255872063966,23.53823088455772,23.588205897051473,23.638180909545227,23.68815592203898,23.738130934532734,23.788105947026487,23.83808095952024,23.888055972013994,23.938030984507748,23.988005997001498,24.03798100949525,24.087956021989005,24.137931034482758,24.18790604697651,24.237881059470265,24.28785607196402,24.337831084457772,24.387806096951525,24.43778110944528,24.48775612193903,24.537731134432782,24.587706146926536,24.63768115942029,24.687656171914043,24.737631184407796,24.78760619690155,24.837581209395303,24.887556221889056,24.93753123438281,24.987506246876563,25.037481259370313,25.087456271864067,25.13743128435782,25.187406296851574,25.237381309345327,25.28735632183908,25.337331334332834,25.387306346826588,25.43728135932034,25.487256371814095,25.537231384307844,25.587206396801598,25.63718140929535,25.687156421789105,25.73713143428286,25.787106446776612,25.837081459270365,25.88705647176412,25.937031484257872,25.987006496751626,26.036981509245376,26.08695652173913,26.136931534232883,26.186906546726636,26.23688155922039,26.286856571714143,26.336831584207896,26.38680659670165,26.436781609195403,26.486756621689157,26.53673163418291,26.58670664667666,26.636681659170414,26.686656671664167,26.73663168415792,26.786606696651674,26.836581709145428,26.88655672163918,26.936531734132934,26.986506746626688,27.03648175912044,27.08645677161419,27.136431784107945,27.1864067966017,27.23638180909545,27.286356821589205,27.33633183408296,27.386306846576712,27.436281859070466,27.48625687156422,27.536231884057973,27.586206896551722,27.636181909045476,27.68615692153923,27.736131934032983,27.786106946526736,27.83608195902049,27.886056971514243,27.936031984007997,27.98600699650175,28.035982008995504,28.085957021489257,28.135932033983007,28.18590704647676,28.235882058970514,28.285857071464267,28.33583208395802,28.385807096451774,28.435782108945528,28.48575712143928,28.535732133933035,28.58570714642679,28.635682158920538,28.68565717141429,28.735632183908045,28.7856071964018,28.835582208895552,28.885557221389305,28.93553223388306,28.985507246376812,29.035482258870566,29.08545727136432,29.13543228385807,29.185407296351823,29.235382308845576,29.28535732133933,29.335332333833083,29.385307346326837,29.43528235882059,29.485257371314344,29.535232383808097,29.58520739630185,29.635182408795604,29.685157421289354,29.735132433783107,29.78510744627686,29.835082458770614,29.885057471264368,29.93503248375812,29.985007496251875,30.034982508745628,30.08495752123938,30.134932533733135,30.184907546226885,30.23488255872064,30.284857571214392,30.334832583708145,30.3848075962019,30.434782608695652,30.484757621189406,30.53473263368316,30.584707646176913,30.634682658670666,30.684657671164416,30.73463268365817,30.784607696151923,30.834582708645677,30.88455772113943,30.934532733633183,30.984507746126937,31.03448275862069,31.084457771114444,31.134432783608197,31.18440779610195,31.2343828085957,31.284357821089454,31.334332833583208,31.38430784607696,31.434282858570715,31.484257871064468,31.53423288355822,31.584207896051975,31.63418290854573,31.684157921039482,31.734132933533232,31.784107946026985,31.83408295852074,31.884057971014492,31.934032983508246,31.984007996002,32.03398300849575,32.083958020989506,32.13393303348326,32.18390804597701,32.23388305847077,32.28385807096452,32.33383308345827,32.38380809595203,32.43378310844578,32.48375812093953,32.53373313343328,32.583708145927034,32.63368315842079,32.68365817091454,32.733633183408294,32.78360819590205,32.8335832083958,32.883558220889554,32.93353323338331,32.98350824587706,33.033483258370815,33.08345827086457,33.13343328335832,33.183408295852075,33.23338330834583,33.28335832083958,33.333333333333336,33.38330834582709,33.43328335832084,33.483258370814596,33.53323338330834,33.583208395802096,33.63318340829585,33.6831584207896,33.733133433283356,33.78310844577711,33.83308345827086,33.88305847076462,33.93303348325837,33.983008495752124,34.03298350824588,34.08295852073963,34.132933533233384,34.18290854572714,34.23288355822089,34.282858570714644,34.3328335832084,34.38280859570215,34.432783608195905,34.48275862068966,34.53273363318341,34.58270864567716,34.63268365817091,34.682658670664665,34.73263368315842,34.78260869565217,34.832583708145926,34.88255872063968,34.93253373313343,34.982508745627186,35.03248375812094,35.08245877061469,35.132433783108446,35.1824087956022,35.23238380809595,35.28235882058971,35.33233383308346,35.382308845577214,35.43228385807097,35.48225887056472,35.532233883058474,35.58220889555222,35.632183908045974,35.68215892053973,35.73213393303348,35.782108945527234,35.83208395802099,35.88205897051474,35.932033983008495,35.98200899550225,36.031984007996,36.081959020489755,36.13193403298351,36.18190904547726,36.231884057971016,36.28185907046477,36.33183408295852,36.381809095452276,36.43178410794603,36.48175912043978,36.531734132933536,36.58170914542729,36.631684157921036,36.68165917041479,36.73163418290854,36.7816091954023,36.83158420789605,36.8815592203898,36.93153423288356,36.98150924537731,37.031484257871064,37.08145927036482,37.13143428285857,37.181409295352324,37.23138430784608,37.28135932033983,37.331334332833585,37.38130934532734,37.43128435782109,37.481259370314845,37.5312343828086,37.58120939530235,37.6311844077961,37.68115942028985,37.731134432783605,37.78110944527736,37.83108445777111,37.881059470264866,37.93103448275862,37.98100949525237,38.030984507746126,38.08095952023988,38.13093453273363,38.18090954522739,38.23088455772114,38.28085957021489,38.33083458270865,38.3808095952024,38.430784607696154,38.48075962018991,38.53073463268366,38.580709645177414,38.63068465767117,38.680659670164914,38.73063468265867,38.78060969515242,38.830584707646175,38.88055972013993,38.93053473263368,38.980509745127435,39.03048475762119,39.08045977011494,39.130434782608695,39.18040979510245,39.2303848075962,39.280359820089956,39.33033483258371,39.38030984507746,39.430284857571216,39.48025987006497,39.53023488255872,39.58020989505248,39.63018490754623,39.68015992003998,39.73013493253373,39.78010994502748,39.83008495752124,39.88005997001499,39.930034982508744,39.9800099950025,40.02998500749625,40.079960019990004,40.12993503248376,40.17991004497751,40.229885057471265,40.27986006996502,40.32983508245877,40.379810094952525,40.42978510744628,40.47976011994003,40.529735132433785,40.57971014492754,40.62968515742129,40.679660169915046,40.72963518240879,40.779610194902546,40.8295852073963,40.87956021989005,40.929535232383806,40.97951024487756,41.02948525737131,41.079460269865066,41.12943528235882,41.17941029485257,41.22938530734633,41.27936031984008,41.329335332333834,41.37931034482759,41.42928535732134,41.479260369815094,41.52923538230885,41.5792103948026,41.629185407296355,41.67916041979011,41.72913543228386,41.77911044477761,41.82908545727136,41.879060469765115,41.92903548225887,41.97901049475262,42.028985507246375,42.07896051974013,42.12893553223388,42.178910544727636,42.22888555722139,42.27886056971514,42.328835582208896,42.37881059470265,42.4287856071964,42.478760619690156,42.52873563218391,42.57871064467766,42.62868565717142,42.67866066966517,42.728635682158924,42.77861069465268,42.82858570714642,42.87856071964018,42.92853573213393,42.978510744627684,43.02848575712144,43.07846076961519,43.128435782108944,43.1784107946027,43.22838580709645,43.278360819590205,43.32833583208396,43.37831084457771,43.428285857071465,43.47826086956522,43.52823588205897,43.578210894552726,43.62818590704648,43.67816091954023,43.728135932033986,43.77811094452774,43.828085957021486,43.87806096951524,43.92803598200899,43.978010994502746,44.0279860069965,44.07796101949025,44.12793603198401,44.17791104447776,44.22788605697151,44.27786106946527,44.32783608195902,44.377811094452774,44.42778610694653,44.47776111944028,44.527736131934034,44.57771114442779,44.62768615692154,44.677661169415295,44.72763618190905,44.7776111944028,44.827586206896555,44.8775612193903,44.927536231884055,44.97751124437781,45.02748625687156,45.077461269365315,45.12743628185907,45.17741129435282,45.227386306846576,45.27736131934033,45.32733633183408,45.377311344327836,45.42728635682159,45.47726136931534,45.5272363818091,45.57721139430285,45.6271864067966,45.67716141929036,45.72713643178411,45.777111444277864,45.82708645677162,45.877061469265364,45.92703648175912,45.97701149425287,46.026986506746624,46.07696151924038,46.12693653173413,46.176911544227885,46.22688655672164,46.27686156921539,46.326836581709145,46.3768115942029,46.42678660669665,46.476761619190405,46.52673663168416,46.57671164417791,46.626686656671666,46.67666166916542,46.72663668165917,46.776611694152926,46.82658670664668,46.87656171914043,46.92653673163418,46.97651174412793,47.026486756621686,47.07646176911544,47.12643678160919,47.17641179410295,47.2263868065967,47.276361819090454,47.32633683158421,47.37631184407796,47.426286856571714,47.47626186906547,47.52623688155922,47.576211894052975,47.62618690654673,47.67616191904048,47.726136931534235,47.77611194402799,47.82608695652174,47.876061969015495,47.92603698150925,47.976011994002995,48.02598700649675,48.0759620189905,48.125937031484256,48.17591204397801,48.22588705647176,48.275862068965516,48.32583708145927,48.37581209395302,48.425787106446776,48.47576211894053,48.52573713143428,48.57571214392804,48.62568715642179,48.675662168915544,48.7256371814093,48.77561219390305,48.825587206396804,48.87556221889056,48.92553723138431,48.97551224387806,49.02548725637181,49.075462268865564,49.12543728135932,49.17541229385307,49.225387306346825,49.27536231884058,49.32533733133433,49.375312343828085,49.42528735632184,49.47526236881559,49.525237381309346,49.5752123938031,49.62518740629685,49.675162418790606,49.72513743128436,49.77511244377811,49.825087456271866,49.87506246876562,49.92503748125937,49.97501249375313,50.02498750624687,50.07496251874063,50.12493753123438,50.174912543728134,50.22488755622189,50.27486256871564,50.324837581209394,50.37481259370315,50.4247876061969,50.474762618690654,50.52473763118441,50.57471264367816,50.624687656171915,50.67466266866567,50.72463768115942,50.774612693653175,50.82458770614693,50.87456271864068,50.924537731134436,50.97451274362819,51.02448775612194,51.07446276861569,51.12443778110944,51.174412793603196,51.22438780609695,51.2743628185907,51.324337831084456,51.37431284357821,51.42428785607196,51.47426286856572,51.52423788105947,51.574212893553224,51.62418790604698,51.67416291854073,51.724137931034484,51.77411294352824,51.82408795602199,51.874062968515744,51.9240379810095,51.97401299350325,52.023988005997005,52.07396301849075,52.123938030984505,52.17391304347826,52.22388805597201,52.273863068465765,52.32383808095952,52.37381309345327,52.423788105947025,52.47376311844078,52.52373813093453,52.573713143428286,52.62368815592204,52.67366316841579,52.723638180909546,52.7736131934033,52.82358820589705,52.87356321839081,52.92353823088456,52.973513243378314,53.02348825587207,53.07346326836582,53.12343828085957,53.17341329335332,53.223388305847074,53.27336331834083,53.32333833083458,53.373313343328334,53.42328835582209,53.47326336831584,53.523238380809595,53.57321339330335,53.6231884057971,53.673163418290855,53.72313843078461,53.77311344327836,53.823088455772115,53.87306346826587,53.92303848075962,53.973013493253376,54.02298850574713,54.07296351824088,54.122938530734636,54.17291354322838,54.222888555722136,54.27286356821589,54.32283858070964,54.3728135932034,54.42278860569715,54.4727636181909,54.52273863068466,54.57271364317841,54.622688655672164,54.67266366816592,54.72263868065967,54.772613693153424,54.82258870564718,54.87256371814093,54.922538730634685,54.97251374312844,55.02248875562219,55.072463768115945,55.1224387806097,55.172413793103445,55.2223888055972,55.27236381809095,55.322338830584705,55.37231384307846,55.42228885557221,55.472263868065966,55.52223888055972,55.57221389305347,55.622188905547226,55.67216391804098,55.72213893053473,55.77211394302849,55.82208895552224,55.87206396801599,55.92203898050975,55.9720139930035,56.021989005497254,56.07196401799101,56.12193903048476,56.171914042978514,56.22188905547226,56.271864067966014,56.32183908045977,56.37181409295352,56.421789105447274,56.47176411794103,56.52173913043478,56.571714142928535,56.62168915542229,56.67166416791604,56.721639180409795,56.77161419290355,56.8215892053973,56.871564217891056,56.92153923038481,56.97151424287856,57.021489255372316,57.07146426786607,57.12143928035982,57.17141429285358,57.22138930534732,57.271364317841076,57.32133933033483,57.37131434282858,57.42128935532234,57.47126436781609,57.521239380309844,57.5712143928036,57.62118940529735,57.671164417791104,57.72113943028486,57.77111444277861,57.821089455272364,57.87106446776612,57.92103948025987,57.971014492753625,58.02098950524738,58.07096451774113,58.120939530234885,58.17091454272864,58.22088955522239,58.27086456771614,58.32083958020989,58.370814592703645,58.4207896051974,58.47076461769115,58.520739630184906,58.57071464267866,58.62068965517241,58.670664667666166,58.72063968015992,58.77061469265367,58.82058970514743,58.87056471764118,58.920539730134934,58.97051474262869,59.02048975512244,59.070464767616194,59.12043978010995,59.1704147926037,59.220389805097454,59.27036481759121,59.320339830084954,59.37031484257871,59.42028985507246,59.470264867566215,59.52023988005997,59.57021489255372,59.620189905047475,59.67016491754123,59.72013993003498,59.770114942528735,59.82008995502249,59.87006496751624,59.920039980009996,59.97001499250375,60.0199900049975,60.069965017491256,60.11994002998501,60.16991504247876,60.21989005497252,60.26986506746627,60.31984007996002,60.36981509245377,60.41979010494752,60.46976511744128,60.51974012993503,60.569715142428784,60.61969015492254,60.66966516741629,60.719640179910044,60.7696151924038,60.81959020489755,60.869565217391305,60.91954022988506,60.96951524237881,61.019490254872565,61.06946526736632,61.11944027986007,61.169415292353825,61.21939030484758,61.26936531734133,61.319340329835086,61.36931534232883,61.419290354822586,61.46926536731634,61.51924037981009,61.569215392303846,61.6191904047976,61.66916541729135,61.71914042978511,61.76911544227886,61.81909045477261,61.86906546726637,61.91904047976012,61.969015492253874,62.01899050474763,62.06896551724138,62.118940529735134,62.16891554222889,62.21889055472264,62.268865567216395,62.31884057971015,62.3688155922039,62.41879060469765,62.4687656171914,62.518740629685155,62.56871564217891,62.61869065467266,62.668665667166415,62.71864067966017,62.76861569215392,62.818590704647676,62.86856571714143,62.91854072963518,62.968515742128936,63.01849075462269,63.06846576711644,63.1184407796102,63.16841579210395,63.2183908045977,63.26836581709146,63.31834082958521,63.368315842078964,63.41829085457271,63.468265867066464,63.51824087956022,63.56821589205397,63.618190904547724,63.66816591704148,63.71814092953523,63.768115942028984,63.81809095452274,63.86806596701649,63.918040979510245,63.968015992004,64.01799100449774,64.0679660169915,64.11794102948525,64.16791604197901,64.21789105447276,64.26786606696652,64.31784107946027,64.36781609195403,64.41779110444777,64.46776611694153,64.51774112943528,64.56771614192904,64.61769115442279,64.66766616691655,64.7176411794103,64.76761619190405,64.8175912043978,64.86756621689156,64.91754122938531,64.96751624187905,65.01749125437281,65.06746626686656,65.11744127936032,65.16741629185407,65.21739130434783,65.26736631684157,65.31734132933533,65.36731634182908,65.41729135432284,65.46726636681659,65.51724137931035,65.5672163918041,65.61719140429786,65.6671664167916,65.71714142928536,65.76711644177911,65.81709145427287,65.86706646676662,65.91704147926038,65.96701649175412,66.01699150424787,66.06696651674163,66.11694152923538,66.16691654172914,66.21689155422288,66.26686656671664,66.31684157921039,66.36681659170415,66.4167916041979,66.46676661669166,66.5167416291854,66.56671664167916,66.61669165417291,66.66666666666667,66.71664167916042,66.76661669165418,66.81659170414792,66.86656671664169,66.91654172913543,66.96651674162919,67.01649175412294,67.06646676661668,67.11644177911045,67.16641679160419,67.21639180409795,67.2663668165917,67.31634182908546,67.3663168415792,67.41629185407297,67.46626686656671,67.51624187906047,67.56621689155422,67.61619190404798,67.66616691654173,67.71614192903549,67.76611694152923,67.816091954023,67.86606696651674,67.9160419790105,67.96601699150425,68.01599200399801,68.06596701649175,68.1159420289855,68.16591704147926,68.21589205397301,68.26586706646677,68.31584207896051,68.36581709145428,68.41579210394802,68.46576711644178,68.51574212893553,68.56571714142929,68.61569215392304,68.6656671664168,68.71564217891054,68.7656171914043,68.81559220389805,68.86556721639181,68.91554222888556,68.96551724137932,69.01549225387306,69.06546726636682,69.11544227886057,69.16541729135432,69.21539230384808,69.26536731634182,69.31534232883558,69.36531734132933,69.41529235382309,69.46526736631684,69.5152423788106,69.56521739130434,69.6151924037981,69.66516741629185,69.71514242878561,69.76511744127936,69.81509245377312,69.86506746626686,69.91504247876063,69.96501749125437,70.01499250374813,70.06496751624188,70.11494252873563,70.16491754122939,70.21489255372313,70.26486756621689,70.31484257871064,70.3648175912044,70.41479260369815,70.4647676161919,70.51474262868565,70.56471764117941,70.61469265367316,70.66466766616692,70.71464267866067,70.76461769115443,70.81459270364817,70.86456771614193,70.91454272863568,70.96451774112944,71.01449275362319,71.06446776611695,71.1144427786107,71.16441779110444,71.2143928035982,71.26436781609195,71.31434282858571,71.36431784107945,71.41429285357322,71.46426786606696,71.51424287856072,71.56421789105447,71.61419290354823,71.66416791604198,71.71414292853574,71.76411794102948,71.81409295352324,71.86406796601699,71.91404297851075,71.9640179910045,72.01399300349826,72.063968015992,72.11394302848576,72.16391804097951,72.21389305347326,72.26386806596702,72.31384307846076,72.36381809095452,72.41379310344827,72.46376811594203,72.51374312843578,72.56371814092954,72.61369315342328,72.66366816591704,72.71364317841079,72.76361819090455,72.8135932033983,72.86356821589206,72.9135432283858,72.96351824087957,73.01349325337331,73.06346826586707,73.11344327836082,73.16341829085458,73.21339330334833,73.26336831584207,73.31334332833583,73.36331834082958,73.41329335332334,73.46326836581709,73.51324337831085,73.5632183908046,73.61319340329835,73.6631684157921,73.71314342828586,73.7631184407796,73.81309345327337,73.86306846576711,73.91304347826087,73.96301849075462,74.01299350324838,74.06296851574213,74.11294352823589,74.16291854072963,74.2128935532234,74.26286856571714,74.31284357821089,74.36281859070465,74.4127936031984,74.46276861569216,74.5127436281859,74.56271864067966,74.61269365317341,74.66266866566717,74.71264367816092,74.76261869065468,74.81259370314842,74.86256871564218,74.91254372813593,74.96251874062969,75.01249375312344,75.0624687656172,75.11244377811094,75.1624187906047,75.21239380309845,75.2623688155922,75.31234382808596,75.3623188405797,75.41229385307346,75.46226886556721,75.51224387806097,75.56221889055472,75.61219390304848,75.66216891554222,75.71214392803599,75.76211894052973,75.81209395302349,75.86206896551724,75.912043978011,75.96201899050475,76.0119940029985,76.06196901549225,76.11194402798601,76.16191904047976,76.21189405297352,76.26186906546727,76.31184407796101,76.36181909045477,76.41179410294852,76.46176911544228,76.51174412793603,76.56171914042979,76.61169415292353,76.6616691654173,76.71164417791104,76.7616191904048,76.81159420289855,76.86156921539231,76.91154422788605,76.96151924037981,77.01149425287356,77.06146926536732,77.11144427786107,77.16141929035483,77.21139430284857,77.26136931534234,77.31134432783608,77.36131934032983,77.41129435282359,77.46126936531734,77.5112443778111,77.56121939030484,77.6111944027986,77.66116941529235,77.71114442778611,77.76111944027986,77.81109445277362,77.86106946526736,77.91104447776112,77.96101949025487,78.01099450274863,78.06096951524238,78.11094452773614,78.16091954022988,78.21089455272364,78.26086956521739,78.31084457771115,78.3608195902049,78.41079460269864,78.4607696151924,78.51074462768615,78.56071964017991,78.61069465267366,78.66066966516742,78.71064467766116,78.76061969015493,78.81059470264867,78.86056971514243,78.91054472763618,78.96051974012994,79.01049475262369,79.06046976511745,79.11044477761119,79.16041979010495,79.2103948025987,79.26036981509246,79.3103448275862,79.36031984007997,79.41029485257371,79.46026986506746,79.51024487756122,79.56021989005497,79.61019490254873,79.66016991504247,79.71014492753623,79.76011994002998,79.81009495252374,79.86006996501749,79.91004497751125,79.960019990005,80.00999500249875,80.0599700149925,80.10994502748626,80.15992003998001,80.20989505247377,80.25987006496752,80.30984507746128,80.35982008995502,80.40979510244878,80.45977011494253,80.50974512743628,80.55972013993004,80.60969515242378,80.65967016491754,80.70964517741129,80.75962018990505,80.8095952023988,80.85957021489256,80.9095452273863,80.95952023988006,81.00949525237381,81.05947026486757,81.10944527736132,81.15942028985508,81.20939530234882,81.25937031484258,81.30934532733633,81.35932033983009,81.40929535232384,81.45927036481758,81.50924537731134,81.55922038980509,81.60919540229885,81.6591704147926,81.70914542728636,81.7591204397801,81.80909545227387,81.85907046476761,81.90904547726137,81.95902048975512,82.00899550224888,82.05897051474263,82.10894552723639,82.15892053973013,82.2088955522239,82.25887056471764,82.3088455772114,82.35882058970515,82.40879560219891,82.45877061469265,82.5087456271864,82.55872063968016,82.6086956521739,82.65867066466767,82.70864567716141,82.75862068965517,82.80859570214892,82.85857071464268,82.90854572713643,82.95852073963019,83.00849575212393,83.0584707646177,83.10844577711144,83.1584207896052,83.20839580209895,83.25837081459271,83.30834582708646,83.35832083958022,83.40829585207396,83.45827086456772,83.50824587706147,83.55822088955522,83.60819590204898,83.65817091454272,83.70814592703648,83.75812093953023,83.80809595202399,83.85807096451774,83.9080459770115,83.95802098950524,84.007996001999,84.05797101449275,84.10794602698651,84.15792103948026,84.20789605197402,84.25787106446776,84.30784607696152,84.35782108945527,84.40779610194903,84.45777111444278,84.50774612693654,84.55772113943029,84.60769615192403,84.65767116441779,84.70764617691154,84.7576211894053,84.80759620189905,84.8575712143928,84.90754622688655,84.95752123938031,85.00749625187406,85.05747126436782,85.10744627686157,85.15742128935533,85.20739630184907,85.25737131434283,85.30734632683658,85.35732133933034,85.40729635182409,85.45727136431785,85.5072463768116,85.55722138930535,85.6071964017991,85.65717141429285,85.70714642678661,85.75712143928035,85.80709645177411,85.85707146426786,85.90704647676162,85.95702148925537,86.00699650174913,86.05697151424287,86.10694652673664,86.15692153923038,86.20689655172414,86.25687156421789,86.30684657671165,86.3568215892054,86.40679660169916,86.4567716141929,86.50674662668666,86.55672163918041,86.60669665167416,86.65667166416792,86.70664667666166,86.75662168915542,86.80659670164917,86.85657171414293,86.90654672663668,86.95652173913044,87.00649675162418,87.05647176411794,87.10644677661169,87.15642178910545,87.2063968015992,87.25637181409296,87.3063468265867,87.35632183908046,87.40629685157421,87.45627186406797,87.50624687656172,87.55622188905548,87.60619690154923,87.65617191404297,87.70614692653673,87.75612193903048,87.80609695152424,87.85607196401799,87.90604697651175,87.95602198900549,88.00599700149925,88.055972013993,88.10594702648676,88.1559220389805,88.20589705147427,88.25587206396801,88.30584707646177,88.35582208895552,88.40579710144928,88.45577211394303,88.50574712643679,88.55572213893053,88.6056971514243,88.65567216391804,88.70564717641179,88.75562218890555,88.8055972013993,88.85557221389305,88.9055472263868,88.95552223888056,89.00549725137431,89.05547226386807,89.10544727636182,89.15542228885558,89.20539730134932,89.25537231384308,89.30534732633683,89.35532233883059,89.40529735132434,89.4552723638181,89.50524737631184,89.5552223888056,89.60519740129935,89.65517241379311,89.70514742628686,89.7551224387806,89.80509745127436,89.85507246376811,89.90504747626187,89.95502248875562,90.00499750124938,90.05497251374312,90.10494752623688,90.15492253873063,90.20489755122439,90.25487256371814,90.3048475762119,90.35482258870564,90.4047976011994,90.45477261369315,90.50474762618691,90.55472263868066,90.60469765117442,90.65467266366817,90.70464767616193,90.75462268865567,90.80459770114942,90.85457271364318,90.90454772613693,90.95452273863069,91.00449775112443,91.0544727636182,91.10444777611194,91.1544227886057,91.20439780109945,91.2543728135932,91.30434782608695,91.35432283858071,91.40429785107446,91.45427286356822,91.50424787606197,91.55422288855573,91.60419790104947,91.65417291354323,91.70414792603698,91.75412293853073,91.80409795102449,91.85407296351823,91.904047976012,91.95402298850574,92.0039980009995,92.05397301349325,92.10394802598701,92.15392303848076,92.20389805097452,92.25387306346826,92.30384807596202,92.35382308845577,92.40379810094953,92.45377311344328,92.50374812593704,92.55372313843078,92.60369815092454,92.65367316341829,92.70364817591205,92.7536231884058,92.80359820089954,92.8535732133933,92.90354822588705,92.95352323838081,93.00349825087456,93.05347326336832,93.10344827586206,93.15342328835582,93.20339830084957,93.25337331334333,93.30334832583708,93.35332333833084,93.40329835082458,93.45327336331835,93.50324837581209,93.55322338830585,93.6031984007996,93.65317341329336,93.7031484257871,93.75312343828087,93.80309845077461,93.85307346326836,93.90304847576212,93.95302348825587,94.00299850074963,94.05297351324337,94.10294852573713,94.15292353823088,94.20289855072464,94.25287356321839,94.30284857571215,94.3528235882059,94.40279860069965,94.4527736131934,94.50274862568716,94.55272363818091,94.60269865067467,94.65267366316841,94.70264867566218,94.75262368815592,94.80259870064968,94.85257371314343,94.90254872563717,94.95252373813094,95.00249875062468,95.05247376311844,95.10244877561219,95.15242378810595,95.2023988005997,95.25237381309346,95.3023488255872,95.35232383808096,95.40229885057471,95.45227386306847,95.50224887556222,95.55222388805598,95.60219890054972,95.65217391304348,95.70214892553723,95.75212393803099,95.80209895052474,95.8520739630185,95.90204897551224,95.95202398800599,96.00199900049975,96.0519740129935,96.10194902548726,96.151924037981,96.20189905047476,96.25187406296851,96.30184907546227,96.35182408795602,96.40179910044978,96.45177411294353,96.50174912543729,96.55172413793103,96.60169915042479,96.65167416291854,96.7016491754123,96.75162418790605,96.8015992003998,96.85157421289355,96.90154922538731,96.95152423788106,97.0014992503748,97.05147426286857,97.10144927536231,97.15142428785607,97.20139930034982,97.25137431284358,97.30134932533733,97.35132433783109,97.40129935032483,97.4512743628186,97.50124937531234,97.5512243878061,97.60119940029985,97.65117441279361,97.70114942528735,97.75112443778112,97.80109945027486,97.85107446276862,97.90104947526237,97.95102448775611,98.00099950024988,98.05097451274362,98.10094952523738,98.15092453773113,98.20089955022489,98.25087456271864,98.3008495752124,98.35082458770614,98.4007996001999,98.45077461269365,98.50074962518741,98.55072463768116,98.60069965017492,98.65067466266866,98.70064967516242,98.75062468765617,98.80059970014993,98.85057471264368,98.90054972513744,98.95052473763118,99.00049975012493,99.05047476261869,99.10044977511244,99.1504247876062,99.20039980009994,99.2503748125937,99.30034982508745,99.35032483758121,99.40029985007496,99.45027486256872,99.50024987506247,99.55022488755623,99.60019990004997,99.65017491254373,99.70014992503748,99.75012493753124,99.80009995002499,99.85007496251875,99.9000499750125,99.95002498750625,100.0]} + {"expected":[-0.01,-0.00988692665446217,-0.009530417260232635,-0.008939001927057518,-0.00812700023963896,-0.007114174661777941,-0.005925249651897664,-0.004589308189120179,-0.003139080437401436,-0.001610141944230643,-0.000040041013955833456,0.0015326233416345881,0.0030691502352163075,0.004531689196248325,0.005884172493081779,0.007093204522074692,0.008128886334342557,0.008965554944794535,0.009582419144642727,0.009964076066946442,0.01010089567328384,0.009989263566841785,0.009631676013797021,0.009036684685486062,0.008218692329369866,0.007197604246304405,0.005998344004833064,0.004650245172536397,0.0031863339073372196,0.001642519952343532,0.000056715849575066915,-0.00153209402566305,-0.0030848117512741317,-0.0045631879117862895,-0.005930763748120867,-0.007153770198919874,-0.008201961665838864,-0.009049363918998405,-0.00967491765064457,-0.010063001734130994,-0.010203823189262884,-0.010093664121865643,-0.009734979415048518,-0.009136342615950489,-0.008312241194704922,-0.00728272606016411,-0.0060729238083116685,-0.004712423565792373,-0.0032345533890227388,-0.001675563912446815,-0.0000737392399667339,0.001531543115552564,0.00310078016369045,0.004595315448258029,0.0059782912241642,0.007215557347592569,0.008276514468868288,0.009134870711019328,0.009769293124595185,0.010163937779373152,0.010308845323473495,0.010200192137384127,0.009840390753724568,0.009238036916283918,0.008407704423026918,0.0073695926446301525,0.006149035240488571,0.004775882018532973,0.003283769019197351,0.0017092946699876987,0.00009112218696606803,-0.001530969764797153,-0.0031170648437149825,-0.004628091205258873,-0.006026783911534547,-0.007278603873109481,-0.008352590664382306,-0.009222128157529003,-0.00986560404352474,-0.010266946900304674,-0.010416027464426008,-0.010308914090387096,-0.009947975959452496,-0.009341831339686926,-0.008505142009038258,-0.007458258740058715,-0.006226726414999595,-0.004840660803149927,-0.00333401220293789,-0.0017437339512144095,-0.0001088761619285668,0.001530373082350148,0.0031336755463287234,0.004661535387110025,0.0060762720085808086,0.007342949264059696,0.008430238095294144,0.009311191309838516,0.00996391133861546,0.010372094428864201,0.010525437750984275,0.010419899256959096,0.010057803740838872,0.009447792329506606,0.008604616481879815,0.007548781402151541,0.006306047483438199,0.0049068019008445575,0.0033853156810923096,0.0017789044101855964,0.00012701313104154568,-0.00152975212978499,-0.0031506224300722734,-0.004695669045019289,-0.006126786985255266,-0.007408634676172836,-0.008509506628087186,-0.009402117551157869,-0.010064278525306006,-0.01047944847111701,-0.010637147218504657,-0.010533219861166827,-0.010169945733445008,-0.009555989162640333,-0.008706193040386213,-0.00764122012567864,-0.006387050744406665,-0.004974349093233294,-0.0034377136020542084,-0.0018148296788304194,-0.00014554558228247226,0.0015291059182347367,0.0031679160781232906,0.004730514121913109,0.006178361650754986,0.0074757030212299624,0.008590448260943039,0.009494966721381806,0.01016677184176389,0.010589080056074333,0.01075122995439325,0.010648951233553383,0.010284476657319522,0.009666494102209426,0.008809939697100646,0.007735636976214574,0.006469790759651679,0.0050433480599028115,0.003491241598222934,0.0018515344202770054,0.00016448655416644695,-0.0015284334051064155,-0.0031855675207004695,-0.004766093500153822,-0.0062310302255206415,-0.007544199061731474,-0.008673117238872902,-0.009589801249979152,-0.010271460396355445,-0.01070106329419811,-0.010867763263796957,-0.01076717197996795,-0.010401474484817446,-0.0097793825602118,-0.00891592743171094,-0.007832096730511445,-0.006554324477814246,-0.00511384648238484,-0.0035459368674946967,-0.0018890443857169051,-0.00018384966640662659,0.0015277334905348747,0.003203588258907899,0.004802431052346535,0.006284828417937068,0.007614169511750057,0.008757570176396957,0.009686686297598708,0.01037841632480821,0.010815475546331858,0.01098682784620731,0.01088796416152825,0.01052102061949433,0.009894733270925042,0.009024230354636906,0.007930667026167472,0.006640711366395806,0.00518589415503449,0.0036018382601906906,0.0019273864750659596,0.00020364915265412223,-0.0015270050135687122,-0.0032219902901132642,-0.0048395516954862485,-0.00633979350608419,-0.007685663144457024,-0.008843866188345628,-0.009785689907073791,-0.010487714957811752,-0.010932397603869465,-0.011108507983824576,-0.011011413486579361,-0.010643200086942263,-0.010012628475892515,-0.009134925881564053,-0.00803141852132107,-0.006729013552570935,-0.005259543103367455,-0.0036589863718344637,-0.001966588801736915,-0.00022389989546712193,0.0015262467480482893,0.003240786134992019,0.004877481448689318,0.006395964424944249,0.0077587309068310635,0.008932067029426978,0.009886883164553559,0.010599434999880308,0.01105191388104099,0.011232891742606404,0.011137609515594709,0.010768101738503401,0.010133154121412417,0.009248094919780498,0.00813442506516627,0.006819295973559219,0.0053348477104333165,0.0037174236422587853,0.002006680761836088,0.0002446174637050831,-0.0015254573981639328,-0.0032599888663503917,-0.004916247494804226,-0.00645338185948109,-0.007833426042127466,-0.009022237243243287,-0.009990340371570247,-0.010713658720364531,-0.011174112620279932,-0.0113600711870085,-0.011266645880046446,-0.010895818468891231,-0.010256400069519504,-0.009363822067268227,-0.00823976388014558,-0.006911626537311458,-0.005411864851883404,-0.0037771944615355283,-0.0020476931081573504,-0.00026581815252941317,0.0015246355936486423,0.0032796121398813776,0.004955878246193867,0.006512088344072049,0.007909804220715057,0.009114444321521939,0.010096139228910174,0.01083047215759177,0.011299086111719097,0.011490142609518077,0.011398620516371472,0.011026447448835167,0.010382460323554851,0.00948219582556923,0.008347515756775607,0.00700607629434954,0.00549065404042726,0.003838345283298632,0.0020896580293490383,0.00028751902624220564,-0.0015237798845877746,-0.003299670226990114,-0.004996403415038466,-0.0065721283687898355,-0.007987923679968019,-0.009208758874376458,-0.010204361033252212,-0.010949965337194096,-0.01142693092796538,-0.01162320677618236,-0.011533635916259543,-0.01116009037397745,-0.010511433269506563,-0.009603308827561241,-0.008457765262127215,-0.007102719621677949,-0.005571277580452986,-0.0039009247460562724,-0.002132609234697734,-0.0003097379641832494,0.0015228887357929956,0.00332017804986942,0.0050378540885072905,0.006633548493105717,0.00806784537393949,0.009305254812510079,0.01031509088761188,0.011072232505793696,0.011557748175405612,0.011759369189448235,0.011671799394609888,0.011296853731357609,0.010643421934430644,0.009727258081365882,0.00857060096310209,0.007201634419757122,0.00565380073366025,0.003964983803162525,0.0021765820449820453,0.00033249370996061596,-0.0015219605207158697,-0.003341151218990552,-0.00508026280922129,-0.006696397467611093,-0.008149633133637214,-0.009404009542339973,-0.010428417926743648,-0.011197372381315067,-0.01169164376342075,-0.011898740369753472,-0.01181322337662648,-0.011436849084956653,-0.010778534263371465,-0.009854145231748162,-0.008686115665733228,-0.007302902323647602,-0.005738291896619945,-0.004030575862183344,-0.002221613489926448,-0.0003558059242827915,0.0015209935148396514,0.003362606073222352,0.005123663661415923,0.006760726364439712,0.008233353838774774,0.009505104175134735,0.010544435558748188,0.011325488421326635,0.011828728693012117,0.01204143615744952,0.01195802570566827,0.011580193381905555,0.010916883416353232,0.00998407684047834,0.008804406671879646,0.007406608929514508,0.005824822791289849,0.004097756934445488,0.0022677424128073795,0.0003796952417209309,-0.0015199858885156523,-0.0033845597227788226,-0.0051680923633116785,-0.006826588717109863,-0.008319077601981749,-0.009608623751342376,-0.010663241724268918,-0.011456689110939219,-0.011969119366495626,-0.012187578036788896,-0.012106329973623976,-0.011727009281129073,-0.01105858808715264,-0.010117164687290837,-0.008925576054795938,-0.007512844037826396,-0.005913468669586753,-0.004166585795663758,-0.002315009582837331,-0.0004041833317320204,0.00151893569917239,0.0034070300952478713,0.005213586366194846,0.00689404067060509,0.008406877966526699,0.009714657481423113,0.010784939174781327,0.011591088271950845,0.012112937920077005,0.012337293483882128,0.012258265875760156,0.011877425506361262,0.01120377284574724,0.01025352609321708,0.009049730955228595,0.0076217019146873,0.006004308533256249,0.00423712415859844,0.0023634578160154794,0.00042929296432670666,-0.0015178408828486465,-0.0034300359849442144,-0.005260184960803945,-0.006963141142563334,-0.008496832118737259,-0.009823299004609742,-0.010909635771645183,-0.011728805395083586,-0.0122603125813083,-0.012490716340718397,-0.012413969592181787,-0.012031577225672833,-0.011352568506508866,-0.010393284268267678,-0.009176983899832552,-0.007733281572913899,-0.006097425370375175,-0.0043094368588250075,-0.0024131321051841085,-0.00045504808080494644,0.0015166992449763606,0.0034535971058876984,0.005307929391640506,0.00703395199656127,0.008589021116394065,0.009934646667183755,0.011037444807740571,0.011869965997356654,0.012411378053621193,0.01264798721755697,0.012573584198265635,0.012189606459857474,0.011505112524436771,0.010536568685619762,0.0093074531439088,0.007847687074605545,0.006192906409989943,0.004383592054774834,0.0024640797601373898,0.00048147387000675127,-0.0015155084503307484,-0.0034777341487035773,-0.005356862979918629,-0.007106538228550186,-0.008683530134531634,-0.01004880382199437,-0.011168485353712086,-0.012014702006836162,-0.012566275930364277,-0.012809253926231617,-0.012737260106664346,-0.012351662522275424,-0.011661549421945758,-0.010683515484707942,-0.009441263040645211,-0.007965027857164334,-0.006290843396517416,-0.004459661443360502,-0.002516350558681798,-0.0005085968506047051,0.0015142660120755424,0.003502468841801931,0.0054070312559075595,0.007180968167638807,0.008780448730199682,0.010165879151148737,0.011302882631036643,0.012163152177246664,0.012725155141015774,0.01297467194717528,0.012905155543753462,0.012517902493012715,0.011822031249002064,0.010834267905846674,0.009578544439296014,0.008085419084898076,0.006391332885738158,0.004537720492602471,0.002569996909679064,0.0005364449599844065,-0.0015129692797900048,-0.0035278240172099684,-0.005458482101529113,-0.007257313692511953,-0.008879871127927713,-0.010285987013979746,-0.01144076841438057,-0.012315462535176964,-0.012888172432530941,-0.013144404933265979,-0.013077437063691641,-0.012688491730525973,-0.011986718079678929,-0.01098897675931067,-0.009719435114967555,-0.008208982028594632,-0.006494476564373363,-0.004617848692860326,-0.002625074029175856,-0.0005650476503559502,0.0015116154263880575,0.0035538236814692103,0.005511265904143077,0.007335650464937203,0.008981896527792336,0.010409247822644397,0.011582281465954499,0.012471786862916317,0.013055492889090718,0.013318625253926769,0.013254280103606731,0.012863604424271008,0.012155778548548051,0.011147800932092089,0.00986408023299002,0.008335844475682933,0.0066003815954845954,0.00470012982840901,0.0026816401308817728,0.0005944359927717659,-0.0015102014337905801,-0.003580493092072516,-0.00556543572255255,-0.007416058181949052,-0.009086629438214764,-0.010535788447934154,-0.011727568004884567,-0.01263228722027037,-0.013227290493877985,-0.013497514583281578,-0.013435869583795883,-0.013043424192202443,-0.012329390430677602,-0.011310907935924272,-0.010012632851152684,-0.008466141173911168,-0.0067091609921461235,-0.004784652271327459,-0.0027397566323579653,-0.0006246427898401269,0.0015087240772337124,0.003607858839933144,0.005621047466391402,0.00749862084847184,0.009194180035830985,0.010665742658183706,0.01187678221492805,0.012797134509085466,0.013403748736896341,0.013681264536586484,0.013622400557258236,0.013228144727447802,0.012507741269437883,0.011478474500535086,0.010165254463467898,0.008600014311765478,0.006820934022144984,0.004871509299848556,0.002799488378469224,0.0006557026979732587,-0.0015071799080418947,-0.0036359489384678225,-0.005678160090151053,-0.007583427072353721,-0.009304664555034639,-0.010799251594458353,-0.01203008679424868,-0.012966509084608432,-0.01358506127329902,-0.013870077359622441,-0.01381407891335426,-0.013417970498948804,-0.012691029056767581,-0.01165068721655711,-0.01032211558951199,-0.008737614039244647,-0.006935826646738437,-0.0049607994435985295,-0.00286090388378893,-0.0006876523601449177,0.001505565234712698,0.00366479291990011,0.005736835803278369,0.007670570383973723,0.00941820571009868,0.010936464285577633,0.012187653551363304,0.013140601418286135,0.013771432637189442,0.014064166676264553,0.014011122140930357,0.013613117511392785,0.01287946297109578,0.011827743233000787,0.010483396413877239,0.008879099032985255,0.0070539719968784826,0.005052626858393404,0.002924075595879741,0.0007205305502049192,-0.0015038761021002299,-0.0036944219394958186,-0.005797140297899653,-0.007760149582860876,-0.009534933153084136,-0.01107753820692213,-0.012349664051856333,-0.013319612817118734,-0.013963079016428607,-0.014263758300036197,-0.014213760156853028,-0.01381381413037713,-0.013073264178693695,-0.012009851014782252,-0.010649287480762942,-0.00902463711022394,-0.007175510890671145,-0.005147101733607314,-0.0029890801815565184,-0.0007543783299625474,0.0015021082684972948,0.0037248688884814903,0.005859142995939682,0.007852269114008591,0.009654983971142277,0.011222639887424142,0.012516310320976625,0.013503756205283617,0.014160229094615801,0.014469091116130787,0.01442223620659061,0.014020301979428757,0.01327266670491837,0.012197231166414461,0.010819990449348012,0.009174405896575442,0.007300592396315815,0.0052443407354430495,0.00305599883852761,0.0007892392203539142,-0.0015002571803482342,-0.0037561685165216764,-0.005922917317570183,-0.007947039476913437,-0.009778503227204973,-0.011371945569670666,-0.012687795607829424,-0.01369325697440835,-0.014363124967141193,-0.014680418041143398,-0.014636807844256994,-0.014232836916291836,-0.013477918382556037,-0.01099571891622731,-0.009328593553228418,-0.007429374445238039,-0.005344467489871771,-0.0031249176350564944,-0.0008251593882101772,0.001498317944330809,0.0037883575646898123,0.005988540973186719,0.008044577670688067,0.009905644548561236,0.011525641928607123,0.012864335217565165,0.013888353909628899,0.014572023139021235,0.014898007068620149,0.014857748000421564,0.014451690096772446,0.01368928188535334,0.012588757156183593,0.011176699311977477,0.009487399569802346,0.007562024500735143,0.0054476131094249956,0.0031959278806493285,0.0008621878502874215,-0.0014962852964667261,-0.0038214749100170414,-0.006056096281334168,-0.00814500767903409,-0.010036570768324824,-0.01168392685501652,-0.013046157418718991,-0.014089300199438874,-0.014787195613167586,-0.015122142409512167,-0.015085346146991647,-0.014677149135446097,-0.013907035855790523,-0.012793413383655425,-0.0113631718797509,-0.00965103562990568,-0.007698720288068272,-0.0055539167685768045,-0.0032691265311028126,-0.0009003766964703528,0.0014941535679170478,0.003855561722788522,0.006125670515331982,0.008248460999282507,0.010171454625439188,0.011847010310674214,0.013233504433751023,0.014296364538302181,0.015008931078796509,0.015353125737739847,0.015319909569623626,0.014909519373670103,0.01413147613728624,0.0130043649918816,0.011555391744804534,0.009819726557275166,0.007839650592711016,0.005663526333004577,0.0033446166317085586,0.0009397813342606426,-0.0014919166470259346,-0.00389066163793881,-0.006197356281645716,-0.008355077220264368,-0.010310479529530386,-0.012015115262961428,-0.013426633521814398,-0.014509832332133389,-0.015237536210895197,-0.01559127755234534,-0.015561764759421884,-0.01514912526666108,-0.014362917122283454,-0.013221908482918276,-0.01175363008496115,-0.009993711351404286,-0.007985016134274239,-0.005776599048728849,-0.0034225078028503587,-0.0009804607569779006,0.001489567937158992,0.0039268209420180444,0.006271251933469948,0.008465004654331396,0.010453840397743728,0.012188478707671256,0.013625818163939131,0.014730007018010421,0.01547333709304844,0.0158369386691664,0.01581125893718057,0.015396311902883136,0.014601693229142412,0.013446359277576559,0.011958175413308776,0.010173244322677057,0.008135030524631656,0.005893302297866349,0.0035029167728239732,0.0010224778383769964,-0.0014871003097710904,-0.003964088777422741,-0.006347462023384735,-0.00857840102955967,-0.010601744571577303,-0.012367352789886227,-0.013831349362103413,-0.014957211510959738,-0.0157166807775033,-0.01609047185663239,-0.016068761725133097,-0.01565144667071293,-0.014848160522422897,-0.01367805324879071,-0.012169334985884152,-0.010358596338355043,-0.008289921319845869,-0.0060138144286458195,-0.0035859679633027165,-0.001065899656782016,0.0014845060520989296,0.0040025173657611225,0.0064260977994751774,0.008695434248910875,0.010754412822790367,0.012552006034062167,0.014043537065175988,0.015191789792313391,0.015967936998171076,0.016352263632192436,0.016334666983135498,0.015914921089308,0.01510269849307102,0.013917348406577077,0.01238743634879343,0.010550056192249302,0.008449931176799973,0.006138325668332858,0.0036717941336340152,0.0011107978522340363,-0.0014817768087461913,-0.004042162252482353,-0.006507277749850236,-0.008816283224044635,-0.010912080458641957,-0.01274272469594658,-0.014262711736419728,-0.015434108656074051,-0.016227500054346724,-0.016622726238085854,-0.01660939482846842,-0.016187152822868107,-0.015365712017225888,-0.014164626752362209,-0.012612829041148344,-0.010747932112644135,-0.00861531912689057,-0.006267039128891068,-0.003760537090971077,-0.0011572490206432794,0.0014789035163416356,0.004083082575162079,0.006591128201166568,0.008941138792478176,0.011074998538095987,0.012939814250640157,0.014489226079229364,0.01568455963193187,0.01649579088533091,0.016902299817695803,0.016893393861042556,0.01646858790008491,0.015637633514912264,0.014420296322880392,0.012845886472440166,0.010952553425031049,0.00878636198084347,0.006400171916557612,0.003852348474225018,0.001205335149493303,-0.0014758763303122046,-0.004125341358151963,-0.006677783977501164,-0.00907020472798412,-0.01124343521221113,-0.013143601033070898,-0.014723456940057058,-0.015943561106138794,-0.01677325935891348,-0.017191454816652803,-0.017187143618797848,-0.016759703163586936,-0.015918925332827495,-0.014684793446642131,-0.013087007995559244,-0.011164272388517736,-0.008963355880674225,-0.0065379563580783735,-0.003947390620945601,-0.0012551441002949801,0.0014726845426650819,0.004169005836659759,0.006767389126796341,0.009203698855466397,0.011417677203762454,0.013354434049408948,0.014965807410119642,0.016211560664404667,0.017060386799887944,0.01749069463624016,0.017491157291565685,0.01706100897767458,0.016210082378840997,0.014958585239220964,0.01333662119966703,0.0113834662274503,0.009146618017093154,0.006680641358166121,0.0040458375275462,0.0013067701437440014,-0.0014693164894945697,-0.004214147813740005,-0.006860097723097219,-0.009341854283142888,-0.01159803144326871,-0.013572686980568186,-0.015216709150542095,-0.01648903768441214,-0.017357688788491536,-0.01780055857058245,-0.01780598472570211,-0.017373052226689063,-0.016511635039784277,-0.015242172367376374,-0.013595184450611883,-0.011610539382894846,-0.009336488533302297,-0.006828493904860343,-0.004147875914810678,-0.0013603145544175315,0.0014657594467195533,0.004260844054152656,0.006956074753967206,0.009484920766687369,0.011784826881051801,0.013798760401989628,0.015476624969149652,0.016776506209538723,0.01766571826299745,0.018121625063668836,0.018132215756499145,0.01769641964107276,0.016824152418719495,0.015536092116421414,0.013863189710639153,0.011845926012245675,0.009533332639218631,0.0069818007419346585,0.004253706412396606,0.0014158862728771305,-0.0014619995123083566,-0.00430917671959886,-0.00705549710381825,-0.009633166222115746,-0.011978416497832857,-0.014033084247438328,-0.015746051681265503,-0.01707451814002669,-0.01798506896573736,-0.01845451532759405,-0.018470483910864078,-0.018031741493678068,-0.017148245933255975,-0.01584092180037047,-0.01414116567388682,-0.012090092769458544,-0.009737542963765855,-0.0071408702303832885,-0.004363544878129201,-0.001473602644254898,0.0014580214729518557,0.004359233850482814,0.007158554645466938,0.0097868784066856,0.012179179539710703,0.01427612054869527,0.016025523291719142,0.017383666783279565,0.01831637927773816,0.01879989736963453,0.01882147052916997,0.018379695715318146,0.01748457332278261,0.016157282560405096,0.014429681259710532,0.012343541903364506,0.009949542177106122,0.007306034424402164,0.004477623870321846,0.0015335902438228164,-0.0014538086527928896,-0.004411109900092095,-0.007265451454066335,-0.009946366789984437,-0.012387524007289036,-0.01452836648787009,-0.016315614540938817,-0.017704590811336143,-0.018660336494081123,-0.019158490483088687,-0.019185909362704312,-0.018741012486104755,-0.017833843119877,-0.01648584360424345,-0.01472934951240313,-0.012606814717344234,-0.010169785919654237,-0.007477651391260596,-0.004596194294233417,-0.0015959858017241364,0.0014493427413980271,0.004464906327954762,0.0073764071597169295,0.010111964640790455,0.012603889433317896,0.014790357804757985,0.01661694486467684,0.018037978681067334,0.019017681600231897,0.01953107026540971,0.019564591711993963,0.01911647936800561,0.018196819649855207,0.016827326947297685,0.015040831963555533,0.012880495440505985,0.010398766080577401,0.00765610780915488,0.004719527247166793,0.0016609372410323162,-0.0014446035976513863,-0.004520732260142814,-0.007491658457589216,-0.01028403135929919,-0.012828749988629842,-0.015062672608372978,-0.016930182824770386,-0.01838457358146651,-0.019389214619192453,-0.019918474237303377,-0.019958372181729127,-0.0195069470545439,-0.018574328632701375,-0.01718251272630553,-0.015364843522382056,-0.01316521556862294,-0.010637014475414253,-0.007841821882691563,-0.004847916090733413,-0.0017286048456615758,0.0014395690256405519,0.004578705225475791,0.0076114607973693975,0.0104629550890398,0.013062617962545108,0.015345935649716385,0.017256051077630397,0.018745178982852072,0.019775800610678917,0.020321608148466477,0.02036817514037183,0.01991333582598348,0.018967263473787403,0.01755224516773573,0.015702157970090905,0.013461658742705098,0.010885106980669185,0.008035246622244304,0.004981678783586611,0.0017991625774623876,-0.0014342145178680122,-0.004638951977968503,-0.00773609027735929,-0.010649155648402716,-0.013306047671493584,-0.01564082312223433,-0.0175953319581651,-0.019120664875185333,-0.020178376417009432,-0.020741453069891686,-0.020795001987215626,-0.02033664281309794,-0.019376592344255338,-0.017937439307072388,-0.01605361414717347,-0.01377056624452489,-0.01114366819302468,-0.008236873541285012,-0.0051211605136237655,-0.00187279956519293,0.0014285129602282405,0.004701609417503863,0.00786584577273261,0.010843087828347095,0.01355963985860181,0.015948068067589742,0.017948873769948425,0.019511974797451554,0.02059795826643023,0.02117907338963555,0.02123993934715474,0.020777950190207572,0.01980336616917874,0.018339088571549058,0.01642012293775027,0.014092743202077183,0.011413376692503821,0.008447236835180876,0.005266736675474448,0.0019497217920851394,-0.001422434292103143,-0.004766825622644666,-0.008001051332409439,-0.011045245110773818,-0.01382404665772478,-0.016268466477704344,-0.018317597888086602,-0.019920133777660724,-0.021035650363780307,-0.021635625849232957,-0.021704168334336447,-0.021238434439203365,-0.020248727662251685,-0.018758273358612965,-0.016802675173390316,-0.014429065614320767,-0.011694971002926942,-0.008666918116213984,-0.005418816247279273,-0.0020301540135732573,0.00141594511359963,0.004834761011787389,0.008142058884927753,0.011256163871514341,0.014099977208244078,0.016602884199987043,0.01870250679997739,0.020346257324130104,0.02149265462138347,0.022112369782274294,0.022188975050966963,0.021719376851525408,0.02071392157053247,0.019196170766077877,0.017202350600789295,0.014780488324228756,0.011989256359865178,0.008896551793144617,0.005577845630634443,0.0021143419426140086,-0.00140900823032221,-0.004905589651580713,-0.008289251300775069,-0.011476428143240118,-0.014388204022376175,-0.016952264771848306,-0.019104693231692664,-0.02079156163410272,-0.021970281710725268,-0.022610678745961104,-0.0226957625177727,-0.02222217546549378,-0.021200306322634314,-0.019654065658479634,-0.017620328084198004,-0.01514805409293201,-0.012297112416656496,-0.009136831200036187,-0.005744313029523571,-0.0022025547471407753,0.0014015821240635268,0.00497950073477281,0.008443045867156036,0.011706675027270718,0.014689570225327374,0.017317638333743286,0.0195253505349204,0.021257375216423152,0.02246996364890464,0.023132053771873592,0.02322606426917705,0.022748358673196818,0.02170936730991113,0.02013336328872522,0.018057897245600772,0.015532903956532736,0.012619502043745446,0.009388515598962269,0.005918753458577819,0.0022950879128633586,-0.001393620335307468,-0.005056700253527264,-0.008603898241440104,-0.01194760085978936,-0.015004997811135755,-0.01770013179802034,-0.01996578454237594,-0.021745152162181716,-0.022993268174411528,-0.02367813850517202,-0.02378155989064526,-0.023299600775860938,-0.022242732074113963,-0.020635603736159934,-0.018516471784701678,-0.015936289082210144,-0.01295748140668488,-0.009652438205476687,-0.006101754488728146,-0.0023922665352372995,0.0013850707403445341,0.005137412898897979,0.00877230696196879,0.01219996825804101,0.015335497084391398,0.018100980484951536,0.0204274271397272,0.022256487342528438,0.0235419152162024,0.024250736553856247,0.024364092829787156,0.02387773982118252,0.022802187728621838,0.021162478473522154,0.018997604768499352,0.016359584383080977,0.01331221154493205,0.009929515415432962,0.006293962860044494,0.002494449117478005,-0.0013758747019309342,-0.005221884222752981,-0.008948818610024157,-0.012464614196551519,-0.015682177491412368,-0.018521541478982,-0.020911851851144154,-0.02279313386825834,-0.024117795820529107,-0.024851831433870486,-0.024975690879125184,-0.02448479812296558,-0.02338970100610141,-0.021715849438222776,-0.019503006238796274,-0.016804304203895056,-0.013684971718791142,-0.010220757448281943,-0.0064960921183283725,-0.0026020319676233737,0.0013659660675632635,0.0053103831052041615,0.009134033735229384,0.012742459293362908,0.01604626008539258,0.018963309009365437,0.021420791795844343,0.023357023213850973,0.024722993974344194,0.025483609574772016,0.025618589810057612,0.025123005945741614,0.02400744140645317,0.02229777106101563,0.02003456355823526,0.017272120454566015,0.014077174847699055,0.010527280667149724,0.00670893146517092,0.0027154543076810126,-0.001355269983302946,-0.005403204578808768,-0.0093286136793114,-0.01303451852313505,-0.016429091920474804,-0.01942793222240646,-0.02195616044737445,-0.023950288492718744,-0.0253598118559921,-0.026148486948258647,-0.0262952607385001,-0.025794828938931827,-0.02465780801919247,-0.02291051580128179,-0.02059436500497909,-0.01776488364908231,-0.014490385432373245,-0.010850321892127642,-0.006933356052438982,-0.0028352042329100402,0.001343701483289065,0.0055006730708051866,0.009533288461087112,0.01334191361952857,0.016832162732151684,0.019917235790678996,0.02252007571961153,0.02457529147476555,0.026030799158008922,0.026849140003096225,0.027008441928198852,0.026503000031845518,0.02534346071923232,0.02355660385789394,0.021184727237718838,0.0182846474077417,0.014926340439833742,0.011191255093330483,0.007170339003769659,0.0029618256906964097,-0.0013311638051185619,-0.005603146136868212,-0.0097488659201358,-0.013665887485905364,-0.01725712433912373,-0.02043324390195747,-0.023114888018489495,-0.025234654067561823,-0.026738787269332275,-0.027588541741460533,-0.027761175894596028,-0.02725055665931306,-0.026067356591233187,-0.024238837874562352,-0.02180822739247584,-0.01883369710656195,-0.015386973738882462,-0.011551610938363124,-0.007420965510615344,-0.003095926688151766,0.001317546368469427,0.005711018774875616,0.009976242359706584,0.014007821004124073,0.01770581329901362,0.02097820829258311,0.023743213042684282,0.025931295145825223,0.027486929283124854,0.028370003962019105,0.028556852869357708,0.02804088438713199,0.026832792634280456,0.024960343647394165,0.022467740748822865,0.01941458351650481,0.0158744448106398,0.01193309978019285,0.007686449432636469,0.003238188987982796,-0.0013027223377760275,-0.005824728425680911,-0.010216414983354617,-0.014369252720089926,-0.018180277472766522,-0.021554641143706487,-0.024407970298402207,-0.026668473820125462,-0.02827874702238794,-0.02919722693561687,-0.02939926193511275,-0.02887776825881658,-0.027643456047594384,-0.025724618081665002,-0.023166485126521485,-0.020030162476652846,-0.016391172632809436,-0.012337638813005081,-0.007968152937031342,-0.0033893796166696746,0.0012865456681828138,0.0059447607908016,0.010470496487726263,0.014751901997059997,0.018682807307600694,0.022165353853743627,0.02511242852427696,0.027449840497666037,0.029118186562759708,0.030074358085368777,0.030292651457416858,0.02976545350647459,0.02850348371523104,0.02653558594993448,0.023908073458644534,0.02068364190285547,0.01693987585888799,0.012767384304911854,0.008267609845855855,0.0035503645920629645,-0.001268847505680996,-0.006071656625437231,-0.01073973225996102,-0.015157696370589111,-0.019215972845949572,-0.022813502949086663,-0.02586025951727711,-0.028279497422870004,-0.030009684099374156,-0.031006061634676344,-0.031241800847709906,-0.03070871768062537,-0.02941753291477632,-0.02739766739541358,-0.0246965763535603,-0.02137863776437286,-0.017523620700057814,-0.013224770050090028,-0.008586553534054013,-0.003722125385264724,0.0012494317748765991,0.006206019700854233,0.011025520737871936,0.015588804021938352,0.019782667721332903,0.023502644714648777,0.026655602229819216,0.029162070816599675,0.030958244478119557,0.03199760169175224,0.032252106215877936,0.03171295678576024,0.03039086580102231,0.028315858631141024,0.02553659693226033,0.0221192410898684,0.01814587828909568,0.01371255348646907,0.008926950447013294,0.0039057787725803998,-0.0012280697379313018,-0.006348526174896356,-0.01132943763183667,-0.01604767252262053,-0.020386161729657393,-0.0242368005393391,-0.02750313949968943,-0.030102797291907922,-0.03196953532616538,-0.03305494189531506,-0.03332968315332751,-0.03278428870056085,-0.0314294509004591,-0.029295828945729185,-0.02643336084585184,-0.022910098623931986,-0.018810593791330175,-0.014233871322447118,-0.009291040603097322,-0.004102600919038977,0.0012044932410635945,0.006499935665802777,0.011653264889269998,0.016537075309099168,0.02103016399093473,0.025020535510810935,0.028408190415965918,0.031107627954894093,0.03305000052052317,0.034184865605097155,0.03448149078152378,0.033929678069340836,0.03254008575127564,0.030344037993709997,0.0273928251910677,0.023756510492187057,0.019522270167744694,0.014792307040607383,0.009681386839109296,0.004314056781926476,-0.0011783862739623283,-0.006661104396002062,-0.011999025519415231,-0.017060167747650977,-0.021718899276122607,-0.02585905350273503,-0.029376822168700217,-0.03218335456211163,-0.03420699779380387,-0.0353951217548951,-0.03571548238235808,-0.03515708805171256,-0.03373054601342297,-0.0314678784976093,-0.02842181111994807,-0.024664549211409818,-0.02028607034632479,-0.015391973344937648,-0.010100935080726955,-0.004541836254177863,0.0011493743426729977,0.006833000863593102,0.012369025707057247,0.017620555178721076,0.022457200814681267,0.026758312937909638,0.03041598635157967,0.03333776338604042,0.035448966687508125,0.036694602996596624,0.03704078950193059,0.03647566591954357,0.035009767962734924,0.032675851025373584,0.02952816638319736,0.025641205692228355,0.02110794269974495,0.016037613557147102,0.010553088626439402,0.004787898916586367,-0.0011170109838317837,-0.0070167246156316605,-0.012765906055097183,-0.01822237603496026,-0.023250623888004602,-0.02772516866856241,-0.03153368618986343,-0.03457982415788251,-0.03678563495898251,-0.03809356479522823,-0.03846794853982126,-0.037895971649023794,-0.03638807342699901,-0.03397777958142162,-0.0307209659977887,-0.026694569656549757,-0.021994776275473887,-0.016734727243078618,-0.011041800395747425,-0.005054529882909653,0.001080760506428053,0.007213528846832697,0.013192704345085515,0.01887040407466855,0.024105585848465175,0.028767547115414495,0.032739183200458495,0.03591992378523228,0.038228274120851884,0.03960389689510679,0.040009181719785805,0.03943026159467964,0.03787744914379117,0.03538507958029798,0.032010761894675124,0.027834054319310995,0.02295459434521494,0.017489727101159612,0.01157168841745989,0.005344410073992874,-0.0010399757050143568, -0.0074248477399438025,-0.013652932944865866,-0.019570175058984295, -0.02502954002236904,-0.02989466412910682,-0.034043254574452377,-0.03737015773200255,-0.039790018320897146,-0.04123946236788187,-0.041678748303125665, -0.04109284337790695, -0.03949189654672641,-0.036911093677711566,-0.03340989608476297,-0.02907067854267498,-0.023996797779897168,-0.018310136576819257,-0.012148181680284408,-0.005660705451633268,0.0009938687974208394,0.007652329712972285, 0.014150674999827556,0.020328144967100583,0.02603119346075172,0.031117298244761855,0.03545851642402368,0.038944696368763757,0.041486265668145623,0.04301652472076526,0.04349338742293708,0.04290052375832257,0.04124787360313014,0.038571516388311224,0.03493289703084617,0.030417424374802812,0.02513247388076009,0.019204841087239532,0.012777706073684902,0.006007181439886584,-0.0009414731264106246,-0.00789787806051382,-0.014690704930136092,-0.021151889295771664,-0.027120781995569207,-0.032448136484148495,-0.03699983343109193,-0.04066024980477274,-0.043335187993639154,-0.04495429095576272,-0.04547288169133723,-0.04487317920795829,-0.04316485826111046,-0.04038493613666262,-0.03659698620961514,-0.0318896945615375,-0.026374792162006874,-0.020184410616968,-0.013467923875374994,-0.006388351206328235,0.0008815921118185961,0.008163700892720166,0.015278640684767369,0.022050356436424112,0.028310420992857598,0.03390221621062065,0.03868484309385729,0.04253666353426036,0.045358384837867714,0.04707560904475849,0.047640781837326326,0.047034490284135574,0.04526607443227943,0.042373534460643014,0.0384227323338282,0.03350590423117361,0.027739517042131512,0.021261518498919243,0.01422804565659487,0.006809670052392734,-0.0008127303613872672,-0.008452372811072403,-0.01592113791948644,-0.023034193034414358,-0.029614557259915124,-0.035497495665123634,-0.040534633795878044,-0.04459768995718312,-0.04758173162654765,-0.04940787359363371,-0.05002534873600844,-0.049412897417360026,-0.04757943797181527,-0.0445639982183359,-0.04043490600837773,-0.03528825500760325,-0.029245679802397066,-0.022451491563595213,-0.015069241468690781,-0.00727779348202511,0.0007329994411377716,0.008766911441869722,0.01662614014208101,0.02411616633427197,0.0310505578343443,0.03725559911993982,0.04257463205223558,0.04687199948997537,0.050036492805309106,0.05198421598969846,0.05266079292072407,0.052042860117698514,0.050138804568472875,0.04698872454599378,0.04266361030663365,0.03726376071077053,0.030916470660572168,0.023773042346222416,0.016005190181961185,0.007800924576506711,-0.000639987064316204,-0.009110872797361436,-0.01740320447709376,-0.025311718939246018,-0.032639486558844924,-0.03920280232746915,-0.04483577828208104,-0.04939452279944773,-0.05276080179806229,-0.05484508904517152,-0.05558892726589368,-0.05496653825142696,-0.05298563827005522,-0.04968743436259676,-0.045145797086595246,-0.03946562547460371,-0.03278043989705011,-0.02524925767918015,-0.017052824240289834,-0.008389288755623357,0.000530572520549295,0.009488470446348795,0.018263930940601143,0.02663970698412353,0.03440714217315382,0.041371353762835156,0.04735610682044409,0.05220825796080843,0.05580165700999143,0.05804040761274113,0.05886140296968819,0.05823607020403734,0.056171275902273596,0.052709365692153586,0.04792733182312625,0.041935124086485594,0.03487314053260381,0.026908954791322676,0.018233355875649906,0.00905579367337897,-0.00040066152880565103,-0.009904724572618465,-0.01922253541079696,-0.02812339641494256,-0.0363854666690031,-0.043801273122293774,-0.05018290212743681,-0.05536674190906972,-0.05921765674667074,-0.061632486877791125,-0.0625427840302011,-0.06191671069946391,-0.05976005136997111,-0.056116305351812536,-0.05106585325530414,-0.04472421180730702,-0.037239414174937674,-0.028788574651262014,-0.019573716937970543,-0.00981696382451355,0.000244797654257922,0.010365647912284521,0.02029662514555336,0.02979182887031954,0.03861448753029594,0.04654284096710592,0.053375692135346146,0.05893748962269074,0.06308281315348804,0.06570014807312907,0.06671485151208935,0.06609123212243802,0.06383368651178466,0.059986858263336794,0.054634809178529885,0.04789921653551977,0.039936634133969785,0.030934878105860486,0.021108620340358097,0.010694292353985396,-0.00005557996607238711,-0.010878475554157246,-0.021508264552086598,-0.031681727113893395,-0.04114504555836772,-0.04966011036966606,-0.05701048402120923,-0.06300687391799153,-0.06749197676406793,-0.07034457112098592,-0.07148275249891736,-0.07086622560648373,-0.068497590900056,-0.0644225867831778,-0.05872927413119469,-0.05154617564343897,-0.043039408227217024,-0.03340887156492647,-0.0228835795925152,-0.011716243238079502,-0.00017723189123445188,0.011451942788159733,0.022885464374922768,0.033840205146845985,0.04404270514452145,0.05323596556231735,0.06118588850582777,0.06768720258065183,0.07256872518894625,0.07569782755373398,0.0769839870235062,0.07638133270302289,0.07389011440687411,0.0695570507731415,0.06347453948797586,0.05577874030510001,0.046646569224260345,0.03629166914295988,0.02495944785266162,0.012921297779449632,0.0004681327799632659,-0.0120966049341197,-0.024464300513265442,-0.036328707421703035,-0.04739349029666969,-0.0573795849039418,-0.0660321933991325,-0.07312724059145556,-0.07847712871210756,-0.0819356440585774,-0.08340188846345704,-0.08282313137306244,-0.08019650388575841,-0.07556948379014226,-0.06903914980047911,-0.06075021311142139,-0.05089186436229889,-0.0396935033825819,-0.02741944696490204,-0.014362735689161897,-0.0008381838553122669,0.012825163710599954,0.02629198834006269,0.03922887643880289,0.0513125223315238,0.062237754461780564,0.07172518698177673,0.07952830622706637,0.08543981374265507,0.08929706415282981,0.0909864568796878,0.09044666504488007,0.08767061227369254,0.08270613791944995,0.07565532273444199,0.06667247947873134,0.055960845598262615,0.04376804712570167,0.03038043357670634,0.016116412073490075,0.001318934515252238,-0.01365268631650838,-0.02843143784849361,-0.042651538712108625,-0.055957423863408566,-0.06801256472957097,-0.07850790727602923,-0.0871697181843753,-0.09376664180269134,-0.0981157879210721,-0.10008769235809131,-0.09961001832756423,-0.09666989599527905,-0.09131482984925766,-0.08365213773798948,-0.07384692086654425,-0.06211859983148435,-0.0487360870565604,-0.03401169990116054,-0.018293950416486213,-0.0019593764301506747,0.014596396376675138,0.03096815111613618,0.046750909068111225,0.061549855407493845,0.07499012016988563,0.0867261744098874,0.0964506084144615,0.1039020714719725,0.10887217081613709,0.111211150578966,0.11083219938661018,0.10771426698985462,0.1019033053079909,0.09351188666693157,0.08271719094928044,0.0697573929193596,0.05492652018971198,0.03856789020578361,0.02106627031240195,0.002838937543563369,-0.015674156573929662,-0.03402088692568697,-0.051747873450736386,-0.06841155664804159,-0.08358916235281315,-0.09688928786169744,-0.10796184763762298,-0.11650712937536487,-0.12228372992451296,-0.12511516506351938,-0.12489497686974772,-0.12159019677681537,-0.11524306057542304,-0.10597091272051502,-0.09396428039908976,-0.07948314187429106,-0.06285145760316106,-0.04445007546866469,-0.02470816212795454,-0.0040933499557582525,0.016899177583090532,0.037758410913658495,0.057969775791158314,0.07702764095646673,0.09444777219727384,0.10977943053792952,0.12261681705438879,0.13260957879629862,0.1394721092951341,0.14299140277451738,0.14303325292255478,0.139546624250383,0.13256606582283764,0.1222120825636204,0.10868942736762614,0.09228332678160646,0.0733537028765328,0.05232750294437881,0.029689295628156025,0.005970335890561541,-0.01826365924112258,-0.042425747944643835,-0.06592170955057823,-0.08816437359800977,-0.10858799268135634,-0.12666231393687521,-0.14190600633619366,-0.1538991114784016,-0.16229420415986737,-0.16682597531758303,-0.16731898346602686,-0.16369336078079016,-0.15596830566349987,-0.14426324394643283,-0.12879659473383145,-0.1098821330050303,-0.08792299822707564,-0.06340345500629471,-0.03687856690458388,-0.008961996634484394,0.019687806341973174,0.048382727437663975,0.07642107860306183,0.10310429250053196,0.1277538315634778,0.14972791304434163,0.16843764910725595,0.18336220837419137,0.19406262205081445,0.2001938835840536,0.20151502526600837,0.19789689761916696,0.18932742690240606,0.17591418161586236,0.15788413925089936,0.13558060839594346,0.1094573272374418,0.08006982598769283,0.04806420629408894,0.01416355370502847,-0.020847741709477344,-0.056141427884018213,-0.09086422087330824,-0.12415760806428999,-0.1551781799973049,-0.18311802607983016,-0.20722471962616415,-0.22682041856876872,-0.24131962000459461,-0.2502451293581236,-0.25324183800952077,-0.250087946155664,-0.24070331961559538,-0.22515472921520674,-0.20365778804800422,-0.17657547389889783,-0.14441319988521548,-0.10781047425583663,-0.06752926856705795,-0.024439290361676958,0.02049956973833415,0.06625727766290923,0.11175578088768122,0.15589276288422155,0.19756652586968265,0.23570146589357976,0.26927358087283626,0.29733544082962843,0.3190400507314687,0.33366305013827313,0.3406227202063703,0.3394973070841716,0.3300392206839183,0.31218572829157243,0.28606583230094695,0.25200309912586005,0.21051429046014697,0.1623037367650311,0.1082534842894091,0.049409339111457055,-0.013036977370172714,-0.07776925936671261,-0.14337144941015117,-0.20835501273819287,-0.2711885265546741,-0.3842536040003885,-0.47066373594440675,-0.5004976584229822,-0.5198736467664834,-0.5278436586178057,-0.5236572136806413,-0.5067821483258685,-0.47692137978539223,-0.43402526421586857,-0.37829921833413116,-0.31020636771813986,-0.23046508433710503,-0.14004137938069164,-0.0401362228547858,0.0678320335033543,0.182249850879551,0.3013349386437645,0.42316646220493953,0.6668959397772898,0.784572696102819,0.8966305822835551,1.0009990167107312,1.0956942247623747,1.1788573482944704,1.2487906755200475,1.3039912620028706,1.3431812596962447,1.365334331401982,1.3696976015376463,1.3558086792299628,1.3235073847970373,1.2729419137252573,1.2045692811970832,1.119150002860804,1.0177370815456632,0.9016594826725575,0.7725003908622943,0.6320706444335235,0.482377840955056,0.3255916937732503,0.16400629467421043, 0, -0.16400629467421043, -0.3255916937732503, -0.482377840955056, -0.6320706444335235, -0.7725003908622943,-0.9016594826725575,-1.0177370815456632,-1.119150002860804,-1.2045692811970832,-1.2729419137252573,-1.3235073847970373,-1.3558086792299628,-1.3696976015376463,-1.365334331401982,-1.3431812596962447,-1.3039912620028706,-1.2487906755200475, -1.1788573482944704, -1.0956942247623747, -1.0009990167107312, -0.8966305822835551,-0.784572696102819,-0.6668959397772898, -0.5457184731667526, -0.42316646220493953,-0.3013349386437645,-0.182249850879551,-0.0678320335033543,0.0401362228547858,0.14004137938069164,0.23046508433710503, 0.31020636771813986,0.37829921833413116, 0.43402526421586857,0.47692137978539223,0.5067821483258685,0.5236572136806413,0.5278436586178057,0.5198736467664834,0.5004976584229822,0.47066373594440675,0.4314932301851665,0.3842536040003885,0.33032890100276513,0.2711885265546741,0.20835501273819287,0.14337144941015117,0.07776925936671261,0.013036977370172714,-0.049409339111457055,-0.1082534842894091,-0.1623037367650311,-0.21051429046014697,-0.25200309912586005,-0.28606583230094695,-0.31218572829157243,-0.3300392206839183,-0.3394973070841716,-0.3406227202063703,-0.33366305013827313,-0.3190400507314687,-0.29733544082962843,-0.26927358087283626,-0.23570146589357976,-0.19756652586968265,-0.15589276288422155,-0.11175578088768122,-0.06625727766290923,-0.02049956973833415,0.024439290361676958,0.06752926856705795,0.10781047425583663,0.14441319988521548,0.17657547389889783,0.20365778804800422,0.22515472921520674,0.24070331961559538,0.250087946155664,0.25324183800952077,0.2502451293581236,0.24131962000459461,0.22682041856876872,0.20722471962616415,0.18311802607983016,0.1551781799973049,0.12415760806428999,0.09086422087330824,0.056141427884018213,0.020847741709477344,-0.01416355370502847,-0.04806420629408894,-0.08006982598769283,-0.1094573272374418,-0.13558060839594346,-0.15788413925089936,-0.17591418161586236,-0.18932742690240606,-0.19789689761916696,-0.20151502526600837,-0.2001938835840536,-0.19406262205081445,-0.18336220837419137,-0.16843764910725595,-0.14972791304434163,-0.1277538315634778,-0.10310429250053196,-0.07642107860306183,-0.048382727437663975,-0.019687806341973174,0.008961996634484394,0.03687856690458388,0.06340345500629471,0.08792299822707564,0.1098821330050303,0.12879659473383145,0.15596830566349987,0.16369336078079016,0.16731898346602686,0.16682597531758303,0.16229420415986737,0.1538991114784016,0.14190600633619366,0.12666231393687521,0.10858799268135634,0.08816437359800977,0.06592170955057823,0.042425747944643835,0.01826365924112258,-0.005970335890561541,-0.029689295628156025,-0.05232750294437881,-0.0733537028765328,-0.09228332678160646,-0.10868942736762614,-0.1222120825636204,-0.13256606582283764,-0.139546624250383,-0.14303325292255478,-0.14299140277451738,-0.1394721092951341,-0.13260957879629862,-0.12261681705438879,-0.10977943053792952,-0.09444777219727384,-0.057969775791158314,-0.037758410913658495,-0.016899177583090532,0.0040933499557582525,0.02470816212795454,0.04445007546866469,0.06285145760316106,0.07948314187429106,0.09396428039908976,0.10597091272051502,0.11524306057542304,0.12159019677681537,0.12489497686974772,0.12511516506351938,0.12228372992451296,0.11650712937536487,0.10796184763762298,0.09688928786169744,0.08358916235281315,0.06841155664804159,0.051747873450736386,0.03402088692568697,0.015674156573929662,-0.002838937543563369,-0.02106627031240195,-0.03856789020578361,-0.05492652018971198,-0.0697573929193596,-0.08271719094928044,-0.09351188666693157,-0.1019033053079909,-0.10771426698985462,-0.11083219938661018,-0.111211150578966,-0.10887217081613709,-0.1039020714719725,-0.0964506084144615,-0.0867261744098874,-0.07499012016988563,-0.061549855407493845,-0.046750909068111225,-0.03096815111613618,-0.014596396376675138,0.0019593764301506747,0.018293950416486213,0.03401169990116054,0.0487360870565604,0.06211859983148435,0.07384692086654425,0.08365213773798948,0.09131482984925766,0.09666989599527905,0.09961001832756423,0.10008769235809131,0.0981157879210721,0.09376664180269134,0.0871697181843753,0.07850790727602923,0.06801256472957097,0.055957423863408566,0.042651538712108625,0.02843143784849361,0.01365268631650838,-0.001318934515252238,-0.016116412073490075,-0.03038043357670634,-0.04376804712570167,-0.055960845598262615,-0.06667247947873134,-0.07565532273444199,-0.08270613791944995,-0.08767061227369254,-0.09044666504488007,-0.0909864568796878,-0.08929706415282981,-0.08543981374265507,-0.07172518698177673,-0.062237754461780564,-0.0513125223315238,-0.03922887643880289,-0.02629198834006269,-0.012825163710599954,0.0008381838553122669,0.014362735689161897,0.02741944696490204,0.0396935033825819,0.05089186436229889,0.06075021311142139,0.06903914980047911,0.07556948379014226,0.08282313137306244,0.08340188846345704,0.0819356440585774,0.07847712871210756,0.07312724059145556,0.0660321933991325,0.0573795849039418,0.04739349029666969,0.036328707421703035,0.024464300513265442,0.0120966049341197,-0.0004681327799632659,-0.012921297779449632,-0.02495944785266162,-0.03629166914295988,-0.046646569224260345,-0.05577874030510001,-0.06347453948797586,-0.0695570507731415,-0.07389011440687411,-0.07638133270302289,-0.0769839870235062,-0.07569782755373398,-0.07256872518894625,-0.06768720258065183,-0.06118588850582777,-0.05323596556231735,-0.04404270514452145,-0.033840205146845985,-0.022885464374922768,-0.011451942788159733,0.00017723189123445188,0.011716243238079502,0.0228835795925152,0.03340887156492647,0.043039408227217024,0.05154617564343897,0.05872927413119469,0.0644225867831778,0.068497590900056,0.07086622560648373,0.07148275249891736,0.07034457112098592,0.06749197676406793,0.06300687391799153,0.05701048402120923,0.04966011036966606,0.04114504555836772,0.031681727113893395,0.021508264552086598,0.010878475554157246,0.00005557996607238711,-0.010694292353985396,-0.021108620340358097,-0.030934878105860486,-0.039936634133969785,-0.04789921653551977,-0.054634809178529885,-0.059986858263336794,-0.06383368651178466,-0.06609123212243802,-0.06671485151208935,-0.06570014807312907,-0.06308281315348804,-0.05893748962269074,-0.053375692135346146,-0.04654284096710592,-0.03861448753029594,-0.02979182887031954,-0.02029662514555336,-0.010365647912284521,-0.000244797654257922,0.00981696382451355,0.019573716937970543,0.028788574651262014,0.037239414174937674,0.04472421180730702,0.05106585325530414,0.056116305351812536,0.05976005136997111,0.06191671069946391,0.0625427840302011,0.061632486877791125,0.05921765674667074,0.05536674190906972,0.05018290212743681,0.043801273122293774,0.0363854666690031,0.02812339641494256,0.01922253541079696,0.009904724572618465,0.00040066152880565103,-0.00905579367337897,-0.018233355875649906,-0.026908954791322676,-0.03487314053260381,-0.041935124086485594,-0.04792733182312625,-0.052709365692153586,-0.056171275902273596,-0.05823607020403734,-0.05886140296968819,-0.05804040761274113,-0.05580165700999143,-0.05220825796080843,-0.04735610682044409,-0.041371353762835156,-0.03440714217315382,-0.02663970698412353,-0.018263930940601143,-0.009488470446348795,-0.000530572520549295,0.008389288755623357,0.017052824240289834,0.02524925767918015,0.03278043989705011,0.03946562547460371,0.045145797086595246,0.04968743436259676,0.05298563827005522,0.05496653825142696,0.05558892726589368,0.05484508904517152,0.05276080179806229,0.04939452279944773,0.04483577828208104,0.03920280232746915,0.032639486558844924,0.025311718939246018,0.01740320447709376,0.009110872797361436,0.000639987064316204,-0.007800924576506711,-0.016005190181961185,-0.023773042346222416,-0.030916470660572168,-0.03726376071077053,-0.04266361030663365,-0.04698872454599378,-0.050138804568472875,-0.052042860117698514,-0.05266079292072407,-0.05198421598969846,-0.050036492805309106,-0.04687199948997537,-0.04257463205223558,-0.03725559911993982,-0.0310505578343443,-0.02411616633427197,-0.01662614014208101,-0.008766911441869722,-0.0007329994411377716,0.00727779348202511,0.015069241468690781,0.022451491563595213,0.029245679802397066,0.03528825500760325,0.04043490600837773,0.0445639982183359,0.04757943797181527,0.049412897417360026,0.05002534873600844,0.04940787359363371,0.04758173162654765,0.04459768995718312,0.040534633795878044,0.035497495665123634,0.029614557259915124,0.023034193034414358,0.01592113791948644,0.008452372811072403,0.0008127303613872672,-0.006809670052392734,-0.01422804565659487,-0.021261518498919243,-0.027739517042131512,-0.03350590423117361,-0.0384227323338282,-0.042373534460643014,-0.04526607443227943,-0.047034490284135574,-0.047640781837326326,-0.04707560904475849,-0.045358384837867714,-0.04253666353426036,-0.03868484309385729,-0.03390221621062065,-0.028310420992857598,-0.022050356436424112,-0.015278640684767369,-0.008163700892720166,-0.0008815921118185961,0.006388351206328235,0.013467923875374994,0.020184410616968,0.026374792162006874,0.0318896945615375,0.03659698620961514,0.04038493613666262,0.04316485826111046,0.04487317920795829,0.04547288169133723,0.04495429095576272,0.043335187993639154,0.04066024980477274,0.03699983343109193,0.032448136484148495,0.027120781995569207,0.021151889295771664,0.014690704930136092,0.00789787806051382,0.0009414731264106246,-0.006007181439886584,-0.012777706073684902,-0.019204841087239532,-0.02513247388076009,-0.030417424374802812,-0.03493289703084617,-0.038571516388311224,-0.0412478736031301,-0.04290052375832257,-0.04349338742293708,-0.04301652472076526,-0.041486265668145623,-0.038944696368763757,-0.03545851642402368,-0.031117298244761855,-0.02603119346075172,-0.020328144967100583,-0.014150674999827556,-0.007652329712972285,-0.0009938687974208394,0.005660705451633268,0.012148181680284408,0.018310136576819257,0.023996797779897168,0.02907067854267498,0.03340989608476297,0.036911093677711566,0.03949189654672641,0.04109284337790695,0.041678748303125665,0.04123946236788187,0.039790018320897146,0.03737015773200255,0.034043254574452377, 0.02989466412910682,0.02502954002236904,0.019570175058984295,0.013652932944865866,0.0074248477399438025,0.0010399757050143568,-0.005344410073992874,-0.01157168841745989,-0.017489727101159612,-0.02295459434521494,-0.027834054319310995,-0.032010761894675124,-0.03538507958029798,-0.03787744914379117,-0.03943026159467964,-0.040009181719785805,-0.03960389689510679,-0.038228274120851884,-0.03591992378523228,-0.032739183200458495,-0.028767547115414495,-0.024105585848465175,-0.01887040407466855,-0.013192704345085515,-0.007213528846832697,-0.001080760506428053,0.005054529882909653,0.011041800395747425,0.016734727243078618,0.021994776275473887,0.026694569656549757,0.0307209659977887,0.03397777958142162,0.03638807342699901,0.037895971649023794,0.03846794853982126,0.03809356479522823,0.03678563495898251,0.03457982415788251,0.03153368618986343,0.02772516866856241,0.023250623888004602,0.01822237603496026,0.012765906055097183,0.0070167246156316605,0.0011170109838317837,-0.004787898916586367,-0.010553088626439402,-0.016037613557147102,-0.02110794269974495,-0.025641205692228355,-0.02952816638319736,-0.032675851025373584,-0.035009767962734924,-0.03647566591954357,-0.03704078950193059,-0.036694602996596624,-0.035448966687508125,-0.03333776338604042,-0.03041598635157967,-0.026758312937909638,-0.022457200814681267,-0.017620555178721076,-0.012369025707057247,-0.006833000863593102,-0.0011493743426729977,0.004541836254177863,0.010100935080726955,0.015391973344937648,0.02028607034632479,0.024664549211409818,0.02842181111994807,0.0314678784976093,0.03373054601342297,0.03515708805171256,0.03571548238235808,0.0353951217548951,0.03420699779380387,0.03218335456211163,0.029376822168700217,0.02585905350273503,0.021718899276122607,0.017060167747650977,0.011999025519415231,0.006661104396002062,0.0011783862739623283,-0.004314056781926476,-0.009681386839109296,-0.014792307040607383,-0.019522270167744694,-0.023756510492187057,-0.0273928251910677,-0.030344037993709997,-0.03254008575127564,-0.033929678069340836,-0.03448149078152378,-0.034184865605097155,-0.03305000052052317,-0.031107627954894093,-0.028408190415965918,-0.025020535510810935,-0.02103016399093473,-0.016537075309099168,-0.011653264889269998,-0.006499935665802777,-0.0012044932410635945,0.004102600919038977,0.009291040603097322,0.014233871322447118,0.018810593791330175,0.022910098623931986,0.02643336084585184,0.029295828945729185,0.0314294509004591,0.03278428870056085,0.03332968315332751,0.03305494189531506,0.03196953532616538,0.030102797291907922,0.02750313949968943,0.0242368005393391,0.020386161729657393,0.01604767252262053,0.01132943763183667,0.006348526174896356,0.0012280697379313018,-0.0039057787725803998,-0.008926950447013294,-0.01371255348646907,-0.01814587828909568,-0.0221192410898684,-0.02553659693226033,-0.028315858631141024,-0.03039086580102231,-0.03171295678576024,-0.032252106215877936,-0.03199760169175224,-0.030958244478119557,-0.029162070816599675,-0.026655602229819216,-0.023502644714648777,-0.019782667721332903,-0.015588804021938352,-0.011025520737871936,-0.006206019700854233,-0.0012494317748765991,0.003722125385264724,0.008586553534054013,0.013224770050090028,0.017523620700057814,0.02137863776437286,0.0246965763535603,0.02739766739541358,0.02941753291477632,0.03070871768062537,0.031241800847709906,0.031006061634676344,0.030009684099374156,0.028279497422870004,0.02586025951727711,0.022813502949086663,0.019215972845949572,0.015157696370589111,0.01073973225996102,0.006071656625437231,0.001268847505680996,-0.0035503645920629645,-0.008267609845855855,-0.012767384304911854,-0.01693987585888799,-0.02068364190285547,-0.023908073458644534,-0.02653558594993448,-0.02850348371523104,-0.02976545350647459,-0.030292651457416858,-0.030074358085368777,-0.029118186562759708,-0.027449840497666037,-0.02511242852427696,-0.022165353853743627,-0.018682807307600694,-0.014751901997059997,-0.010470496487726263,-0.0059447607908016,-0.0012865456681828138,0.0033893796166696746,0.007968152937031342,0.012337638813005081,0.016391172632809436,0.020030162476652846,0.023166485126521485,0.025724618081665002,0.027643456047594384,0.02887776825881658,0.02939926193511275,0.02919722693561687,0.02827874702238794,0.026668473820125462,0.024407970298402207,0.021554641143706487,0.018180277472766522,0.014369252720089926,0.010216414983354617,0.005824728425680911,0.0013027223377760275,-0.003238188987982796,-0.007686449432636469,-0.01193309978019285,-0.0158744448106398,-0.01941458351650481,-0.022467740748822865,-0.024960343647394165,-0.026832792634280456,-0.02804088438713199,-0.028556852869357708,-0.028370003962019105,-0.027486929283124854,-0.025931295145825223,-0.023743213042684282,-0.02097820829258311,-0.01770581329901362,-0.014007821004124073,-0.009976242359706584,-0.005711018774875616,-0.001317546368469427,0.003095926688151766,0.007420965510615344,0.011551610938363124,0.015386973738882462,0.01883369710656195,0.02180822739247584,0.024238837874562352,0.026067356591233187,0.02725055665931306,0.027761175894596028,0.027588541741460533,0.026738787269332275,0.025234654067561823,0.023114888018489495,0.02043324390195747,0.01725712433912373,0.013665887485905364,0.0097488659201358,0.005603146136868212,0.0013311638051185619,-0.0029618256906964097,-0.007170339003769659,-0.011191255093330483,-0.014926340439833742,-0.0182846474077417,-0.021184727237718838,-0.02355660385789394,-0.02534346071923232,-0.026503000031845518,-0.027008441928198852,-0.026849140003096225,-0.026030799158008922,-0.02457529147476555,-0.02252007571961153,-0.019917235790678996,-0.016832162732151684,-0.01334191361952857,-0.009533288461087112,-0.0055006730708051866,-0.001343701483289065,0.0028352042329100402,0.006933356052438982,0.010850321892127642,0.014490385432373245,0.01776488364908231,0.02059436500497909,0.02291051580128179,0.02465780801919247,0.025794828938931827,0.0262952607385001,0.026148486948258647,0.0253598118559921,0.023950288492718744,0.02195616044737445,0.01942793222240646,0.016429091920474804,0.01303451852313505,0.0093286136793114,0.005403204578808768,0.001355269983302946,-0.0027154543076810126,-0.00670893146517092,-0.010527280667149724,-0.014077174847699055,-0.017272120454566015,-0.02003456355823526,-0.02229777106101563,-0.02400744140645317,-0.025123005945741614,-0.025618589810057612,-0.025483609574772016,-0.024722993974344194,-0.023357023213850973,-0.021420791795844343,-0.018963309009365437,-0.01604626008539258,-0.012742459293362908,-0.009134033735229384,-0.0053103831052041615,-0.0013659660675632635,0.0026020319676233737,0.0064960921183283725,0.010220757448281943,0.013684971718791142,0.016804304203895056,0.019503006238796274,0.021715849438222776,0.02338970100610141,0.02448479812296558,0.024975690879125184,0.024851831433870486,0.024117795820529107,0.02279313386825834,0.020911851851144154,0.018521541478982,0.015682177491412368,0.012464614196551519,0.008948818610024157,0.005221884222752981,0.0013758747019309342,-0.002494449117478005,-0.006293962860044494,-0.009929515415432962,-0.01331221154493205,-0.016359584383080977,-0.018997604768499352,-0.021162478473522154,-0.022802187728621838,-0.02387773982118252,-0.024364092829787156,-0.024250736553856247,-0.0235419152162024,-0.022256487342528438,-0.0204274271397272,-0.018100980484951536,-0.015335497084391398,-0.01219996825804101,-0.00877230696196879,-0.005137412898897979,-0.0013850707403445341,0.0023922665352372995,0.006101754488728146,0.009652438205476687,0.01295748140668488,0.015936289082210144,0.018516471784701678,0.020635603736159934,0.022242732074113963,0.023299600775860938,0.02378155989064526,0.02367813850517202,0.022993268174411528, 0.021745152162181716,0.01996578454237594,0.01770013179802034,0.015004997811135755,0.01194760085978936,0.008603898241440104,0.005056700253527264,0.001393620335307468,-0.0022950879128633586,-0.005918753458577819, -0.009388515598962269,-0.012619502043745446,-0.015532903956532736,-0.018057897245600772,-0.02013336328872522,-0.02170936730991113, -0.022748358673196818,-0.02322606426917705,-0.023132053771873592,-0.02246996364890464,-0.021257375216423152,-0.0195253505349204,-0.017317638333743286,-0.014689570225327374,-0.011706675027270718,-0.008443045867156036,-0.00497950073477281,-0.0014015821240635268,0.0022025547471407753,0.005744313029523571,0.009136831200036187,0.012297112416656496, 0.01514805409293201,0.017620328084198004, 0.019654065658479634, 0.021200306322634314, 0.02222217546549378, 0.0226957625177727, 0.022610678745961104, 0.021970281710725268, 0.02079156163410272, 0.019104693231692664, 0.016952264771848306, 0.014388204022376175, 0.011476428143240118, 0.008289251300775069, 0.004905589651580713, 0.00140900823032221, -0.0021143419426140086, -0.005577845630634443, -0.008896551793144617, -0.011989256359865178, -0.014780488324228756, -0.017202350600789295, -0.019196170766077877, -0.02071392157053247, -0.021719376851525408, -0.022188975050966963, -0.022112369782274294, -0.02149265462138347, -0.020346257324130104, -0.01870250679997739, -0.016602884199987043, -0.014099977208244078, -0.011256163871514341, -0.008142058884927753, -0.004834761011787389, -0.00141594511359963, 0.0020301540135732573, 0.005418816247279273, 0.008666918116213984, 0.011694971002926942, 0.014429065614320767, 0.016802675173390316, 0.018758273358612965, 0.020248727662251685, 0.021238434439203365, 0.021704168334336447, 0.021635625849232957, 0.021035650363780307, 0.019920133777660724, 0.018317597888086602, 0.016268466477704344, 0.01382404665772478, 0.011045245110773818, 0.008001051332409439, 0.004766825622644666, 0.001422434292103143, -0.0019497217920851394, -0.005266736675474448, -0.008447236835180876, -0.011413376692503821, -0.014092743202077183, -0.01642012293775027, -0.018339088571549058, -0.01980336616917874, -0.020777950190207572, -0.02123993934715474, -0.02117907338963555, -0.02059795826643023, -0.019511974797451554, -0.017948873769948425, -0.015948068067589742, -0.01355963985860181, -0.010843087828347095, -0.00786584577273261, -0.004701609417503863, -0.0014285129602282405, 0.00187279956519293, 0.0051211605136237655, 0.008236873541285012, 0.01114366819302468, 0.01377056624452489, 0.01605361414717347, 0.017937439307072388, 0.019376592344255338, 0.02033664281309794, 0.020795001987215626, 0.020741453069891686, 0.020178376417009432, 0.019120664875185333, 0.0175953319581651, 0.01564082312223433, 0.013306047671493584, 0.010649155648402716, 0.00773609027735929, 0.004638951977968503, 0.0014342145178680122, -0.0017991625774623876, -0.004981678783586611, -0.008035246622244304, -0.010885106980669185, -0.013461658742705098, -0.015702157970090905, -0.01755224516773573, -0.018967263473787403, -0.01991333582598348, -0.02036817514037183, -0.020321608148466477, -0.019775800610678917, -0.018745178982852072, -0.017256051077630397, -0.015345935649716385, -0.013062617962545108, -0.0104629550890398, -0.0076114607973693975, -0.004578705225475791, -0.0014395690256405519, 0.0017286048456615758, 0.004847916090733413, 0.007841821882691563, 0.010637014475414253, 0.01316521556862294, 0.015364843522382056, 0.01718251272630553, 0.018574328632701375, 0.0195069470545439, 0.019958372181729127, 0.019918474237303377, 0.019389214619192453, 0.01838457358146651, 0.016930182824770386, 0.015062672608372978, 0.012828749988629842, 0.01028403135929919, 0.007491658457589216, 0.004520732260142814, 0.0014446035976513863, -0.0016609372410323162, -0.004719527247166793, -0.00765610780915488, -0.010398766080577401, -0.012880495440505985, -0.015040831963555533, -0.016827326947297685, -0.018196819649855207, -0.01911647936800561, -0.019564591711993963, -0.01953107026540971, -0.019017681600231897, -0.018037978681067334, -0.01661694486467684, -0.014790357804757985, -0.012603889433317896, -0.010111964640790455, -0.0073764071597169295, -0.004464906327954762, -0.0014493427413980271, 0.0015959858017241364, 0.004596194294233417, 0.007477651391260596, 0.010169785919654237, 0.012606814717344234, 0.01472934951240313, 0.01648584360424345, 0.017833843119877, 0.018741012486104755, 0.019185909362704312, 0.019158490483088687, 0.018660336494081123, 0.017704590811336143, 0.016315614540938817, 0.01452836648787009, 0.012387524007289036, 0.009946366789984437, 0.007265451454066335, 0.004411109900092095, 0.0014538086527928896, -0.0015335902438228164, -0.004477623870321846, -0.007306034424402164, -0.009949542177106122, -0.012343541903364506, -0.014429681259710532, -0.016157282560405096, -0.01748457332278261, -0.018379695715318146, -0.01882147052916997, -0.01879989736963453, -0.01831637927773816, -0.017383666783279565, -0.016025523291719142, -0.01427612054869527, -0.012179179539710703, -0.0097868784066856, -0.007158554645466938, -0.004359233850482814, -0.0014580214729518557, 0.001473602644254898, 0.004363544878129201, 0.0071408702303832885, 0.009737542963765855, 0.012090092769458544, 0.01414116567388682, 0.01584092180037047, 0.017148245933255975, 0.018031741493678068, 0.018470483910864078, 0.01845451532759405, 0.01798506896573736, 0.01707451814002669, 0.015746051681265503, 0.014033084247438328, 0.011978416497832857, 0.009633166222115746, 0.00705549710381825, 0.00430917671959886, 0.0014619995123083566, -0.0014158862728771305, -0.004253706412396606, -0.0069818007419346585, -0.009533332639218631, -0.011845926012245675, -0.013863189710639153, -0.015536092116421414, -0.016824152418719495, -0.01769641964107276, -0.018132215756499145, -0.018121625063668836, -0.01766571826299745, -0.016776506209538723, -0.015476624969149652, -0.013798760401989628, -0.011784826881051801, -0.009484920766687369, -0.006956074753967206, -0.004260844054152656, -0.0014657594467195533, 0.0013603145544175315, 0.004147875914810678, 0.006828493904860343, 0.009336488533302297, 0.011610539382894846, 0.013595184450611883, 0.015242172367376374, 0.016511635039784277, 0.017373052226689063, 0.01780598472570211, 0.01780055857058245, 0.017357688788491536, 0.01648903768441214, 0.015216709150542095, 0.013572686980568186, 0.01159803144326871, 0.009341854283142888, 0.006860097723097219, 0.004214147813740005, 0.0014693164894945697, -0.0013067701437440014, -0.0040458375275462, -0.006680641358166121, -0.009146618017093154, -0.0113834662274503, -0.01333662119966703, -0.014958585239220964, -0.016210082378840997, -0.01706100897767458, -0.017491157291565685, -0.01749069463624016, -0.017060386799887944, -0.016211560664404667, -0.014965807410119642, -0.013354434049408948, -0.011417677203762454, -0.009203698855466397, -0.006767389126796341, -0.004169005836659759, -0.0014726845426650819, 0.0012551441002949801, 0.003947390620945601, 0.0065379563580783735, 0.008963355880674225, 0.011164272388517736, 0.013087007995559244, 0.014684793446642131, 0.015918925332827495, 0.016759703163586936, 0.017187143618797848, 0.017191454816652803, 0.01677325935891348, 0.015943561106138794, 0.014723456940057058, 0.013143601033070898, 0.01124343521221113, 0.00907020472798412, 0.006677783977501164, 0.004125341358151963, 0.0014758763303122046, -0.001205335149493303, -0.003852348474225018, -0.006400171916557612, -0.00878636198084347, -0.010952553425031049, -0.012845886472440166, -0.014420296322880392, -0.015637633514912264, -0.01646858790008491, -0.016893393861042556, -0.016902299817695803, -0.01649579088533091, -0.01568455963193187, -0.014489226079229364, -0.012939814250640157, -0.011074998538095987, -0.008941138792478176, -0.006591128201166568, -0.004083082575162079, -0.0014789035163416356, 0.0011572490206432794, 0.003760537090971077, 0.006267039128891068, 0.00861531912689057, 0.010747932112644135, 0.012612829041148344, 0.014164626752362209, 0.015365712017225888, 0.016187152822868107, 0.01660939482846842, 0.016622726238085854, 0.016227500054346724, 0.015434108656074051, 0.014262711736419728, 0.01274272469594658, 0.010912080458641957, 0.008816283224044635, 0.006507277749850236, 0.004042162252482353, 0.0014817768087461913, -0.0011107978522340363, -0.0036717941336340152, -0.006138325668332858, -0.008449931176799973, -0.010550056192249302, -0.01238743634879343, -0.013917348406577077, -0.01510269849307102, -0.015914921089308, -0.016334666983135498, -0.016352263632192436, -0.015967936998171076, -0.015191789792313391, -0.014043537065175988, -0.012552006034062167, -0.010754412822790367, -0.008695434248910875, -0.0064260977994751774, -0.0040025173657611225, -0.0014845060520989296, 0.001065899656782016, 0.0035859679633027165, 0.0060138144286458195, 0.008289921319845869, 0.010358596338355043, 0.012169334985884152, 0.01367805324879071, 0.014848160522422897, 0.01565144667071293, 0.016068761725133097, 0.01609047185663239, 0.0157166807775033, 0.014957211510959738, 0.013831349362103413, 0.012367352789886227, 0.010601744571577303, 0.00857840102955967, 0.006347462023384735, 0.003964088777422741, 0.0014871003097710904, -0.0010224778383769964, -0.0035029167728239732, -0.005893302297866349, -0.008135030524631656, -0.010173244322677057, -0.011958175413308776, -0.013446359277576559, -0.014601693229142412, -0.015396311902883136, -0.01581125893718057, -0.0158369386691664, -0.01547333709304844, -0.014730007018010421, -0.013625818163939131, -0.012188478707671256, -0.010453840397743728, -0.008465004654331396, -0.006271251933469948, -0.0039268209420180444, -0.001489567937158992, 0.0009804607569779006, 0.0034225078028503587, 0.005776599048728849, 0.007985016134274239, 0.009993711351404286, 0.01175363008496115, 0.013221908482918276, 0.014362917122283454, 0.01514912526666108, 0.015561764759421884, 0.01559127755234534, 0.015237536210895197, 0.014509832332133389, 0.013426633521814398, 0.012015115262961428, 0.010310479529530386, 0.008355077220264368, 0.006197356281645716, 0.00389066163793881, 0.0014919166470259346, -0.0009397813342606426, -0.0033446166317085586, -0.005663526333004577, -0.007839650592711016, -0.009819726557275166, -0.011555391744804534, -0.0130043649918816, -0.01413147613728624, -0.014909519373670103, -0.015319909569623626, -0.015353125737739847, -0.015008931078796509, -0.014296364538302181, -0.013233504433751023, -0.011847010310674214, -0.010171454625439188, -0.008248460999282507, -0.006125670515331982, -0.003855561722788522, -0.0014941535679170478, 0.0009003766964703528, 0.0032691265311028126, 0.0055539167685768045, 0.007698720288068272, 0.00965103562990568, 0.0113631718797509, 0.012793413383655425, 0.013907035855790523, 0.014677149135446097, 0.015085346146991647, 0.015122142409512167, 0.014787195613167586, 0.014089300199438874, 0.013046157418718991, 0.01168392685501652, 0.010036570768324824, 0.00814500767903409, 0.006056096281334168, 0.0038214749100170414, 0.0014962852964667261, -0.0008621878502874215, -0.0031959278806493285, -0.0054476131094249956, -0.007562024500735143, -0.009487399569802346, -0.011176699311977477, -0.012588757156183593, -0.01368928188535334, -0.014451690096772446, -0.014857748000421564, -0.014898007068620149, -0.014572023139021235, -0.013888353909628899, -0.012864335217565165, -0.011525641928607123, -0.009905644548561236, -0.008044577670688067, -0.005988540973186719, -0.0037883575646898123, -0.001498317944330809, 0.0008251593882101772, 0.0031249176350564944, 0.005344467489871771, 0.007429374445238039, 0.009328593553228418, 0.01099571891622731, 0.01239011732871508, 0.013477918382556037, 0.014232836916291836, 0.014636807844256994, 0.014680418041143398, 0.014363124967141193, 0.01369325697440835, 0.012687795607829424, 0.011371945569670666, 0.009778503227204973, 0.007947039476913437, 0.005922917317570183, 0.0037561685165216764, 0.0015002571803482342, -0.0007892392203539142, -0.00305599883852761, -0.0052443407354430495, -0.007300592396315815, -0.009174405896575442, -0.010819990449348012, -0.012197231166414461, -0.01327266670491837, -0.014020301979428757, -0.01442223620659061, -0.014469091116130787, -0.014160229094615801, -0.013503756205283617, -0.012516310320976625, -0.011222639887424142, -0.009654983971142277, -0.007852269114008591, -0.005859142995939682, -0.0037248688884814903, -0.0015021082684972948, 0.0007543783299625474, 0.0029890801815565184, 0.005147101733607314, 0.007175510890671145, 0.00902463711022394, 0.010649287480762942, 0.012009851014782252, 0.013073264178693695, 0.01381381413037713, 0.014213760156853028, 0.014263758300036197, 0.013963079016428607, 0.013319612817118734, 0.012349664051856333, 0.01107753820692213, 0.009534933153084136, 0.007760149582860876, 0.005797140297899653, 0.0036944219394958186, 0.0015038761021002299, -0.0007205305502049192, -0.002924075595879741, -0.005052626858393404, -0.0070539719968784826, -0.008879099032985255, -0.010483396413877239, -0.011827743233000787, -0.01287946297109578, -0.013613117511392785, -0.014011122140930357, -0.014064166676264553, -0.013771432637189442, -0.013140601418286135, -0.012187653551363304, -0.010936464285577633, -0.00941820571009868, -0.007670570383973723, -0.005736835803278369, -0.00366479291990011, -0.001505565234712698, 0.0006876523601449177, 0.00286090388378893, 0.0049607994435985295, 0.006935826646738437, 0.008737614039244647, 0.01032211558951199, 0.01165068721655711, 0.012691029056767581, 0.013417970498948804, 0.01381407891335426, 0.013870077359622441, 0.01358506127329902, 0.012966509084608432, 0.01203008679424868, 0.010799251594458353, 0.009304664555034639, 0.007583427072353721, 0.005678160090151053, 0.0036359489384678225, 0.0015071799080418947, -0.0006557026979732587, -0.002799488378469224, -0.004871509299848556, -0.006820934022144984, -0.008600014311765478, -0.010165254463467898, -0.011478474500535086, -0.012507741269437883, -0.013228144727447802, -0.013622400557258236, -0.013681264536586484, -0.013403748736896341, -0.012797134509085466, -0.01187678221492805, -0.010665742658183706, -0.009194180035830985, -0.00749862084847184, -0.005621047466391402, -0.003607858839933144, -0.0015087240772337124, 0.0006246427898401269, 0.0027397566323579653, 0.004784652271327459, 0.0067091609921461235, 0.008466141173911168, 0.010012632851152684, 0.011310907935924272, 0.012329390430677602, 0.013043424192202443, 0.013435869583795883, 0.013497514583281578, 0.013227290493877985, 0.01263228722027037, 0.011727568004884567, 0.010535788447934154, 0.009086629438214764, 0.007416058181949052, 0.00556543572255255, 0.003580493092072516, 0.0015102014337905801, -0.0005944359927717659, -0.0026816401308817728, -0.00470012982840901, -0.0066003815954845954, -0.008335844475682933, -0.00986408023299002, -0.011147800932092089, -0.012155778548548051, -0.012863604424271008, -0.013254280103606731, -0.013318625253926769, -0.013055492889090718, -0.012471786862916317, -0.011582281465954499, -0.010409247822644397, -0.008981896527792336, -0.007335650464937203, -0.005511265904143077, -0.0035538236814692103, -0.0015116154263880575, 0.0005650476503559502, 0.002625074029175856, 0.004617848692860326, 0.006494476564373363, 0.008208982028594632, 0.009719435114967555, 0.01098897675931067, 0.011986718079678929, 0.012688491730525973, 0.013077437063691641, 0.013144404933265979, 0.012888172432530941, 0.012315462535176964, 0.01144076841438057, 0.010285987013979746, 0.008879871127927713, 0.007257313692511953, 0.005458482101529113, 0.0035278240172099684, 0.0015129692797900048, -0.0005364449599844065, -0.002569996909679064, -0.004537720492602471, -0.006391332885738158, -0.008085419084898076, -0.009578544439296014, -0.010834267905846674, -0.011822031249002064, -0.012517902493012715, -0.012905155543753462, -0.01297467194717528, -0.012725155141015774, -0.012163152177246664, -0.011302882631036643, -0.010165879151148737, -0.008780448730199682, -0.007180968167638807, -0.0054070312559075595, -0.003502468841801931, -0.0015142660120755424, 0.0005085968506047051, 0.002516350558681798, 0.004459661443360502, 0.006290843396517416, 0.007965027857164334, 0.009441263040645211, 0.010683515484707942, 0.011661549421945758, 0.012351662522275424, 0.012737260106664346, 0.012809253926231617, 0.012566275930364277, 0.012014702006836162, 0.011168485353712086, 0.01004880382199437, 0.008683530134531634, 0.007106538228550186, 0.005356862979918629, 0.0034777341487035773, 0.0015155084503307484, -0.00048147387000675127, -0.0024640797601373898, -0.004383592054774834, -0.006192906409989943, -0.007847687074605545, -0.0093074531439088, -0.010536568685619762, -0.011505112524436771, -0.012189606459857474, -0.012573584198265635, -0.01264798721755697, -0.012411378053621193, -0.011869965997356654, -0.011037444807740571, -0.009934646667183755, -0.008589021116394065, -0.00703395199656127, -0.005307929391640506, -0.0034535971058876984, -0.0015166992449763606, 0.00045504808080494644, 0.0024131321051841085, 0.0043094368588250075, 0.006097425370375175, 0.007733281572913899, 0.009176983899832552, 0.010393284268267678, 0.011352568506508866, 0.012031577225672833, 0.012413969592181787, 0.012490716340718397, 0.0122603125813083, 0.011728805395083586, 0.010909635771645183, 0.009823299004609742, 0.008496832118737259, 0.006963141142563334, 0.005260184960803945, 0.0034300359849442144, 0.0015178408828486465, -0.00042929296432670666, -0.0023634578160154794, -0.00423712415859844, -0.006004308533256249, -0.0076217019146873, -0.009049730955228595, -0.01025352609321708, -0.01120377284574724, -0.011877425506361262, -0.012258265875760156, -0.012337293483882128, -0.012112937920077005, -0.011591088271950845, -0.010784939174781327, -0.009714657481423113, -0.008406877966526699, -0.00689404067060509, -0.005213586366194846, -0.0034070300952478713, -0.00151893569917239, 0.0004041833317320204, 0.002315009582837331, 0.004166585795663758, 0.005913468669586753, 0.007512844037826396, 0.008925576054795938, 0.010117164687290837, 0.01105858808715264, 0.011727009281129073, 0.012106329973623976, 0.012187578036788896, 0.011969119366495626, 0.011456689110939219, 0.010663241724268918, 0.009608623751342376, 0.008319077601981749, 0.006826588717109863, 0.0051680923633116785, 0.0033845597227788226, 0.0015199858885156523, -0.0003796952417209309, -0.0022677424128073795, -0.004097756934445488, -0.005824822791289849, -0.007406608929514508, -0.008804406671879646, -0.00998407684047834, -0.010916883416353232, -0.011580193381905555, -0.01195802570566827, -0.01204143615744952, -0.011828728693012117, -0.011325488421326635, -0.010544435558748188, -0.009505104175134735, -0.008233353838774774, -0.006760726364439712, -0.005123663661415923, -0.003362606073222352, -0.0015209935148396514, 0.0003558059242827915, 0.002221613489926448, 0.004030575862183344, 0.005738291896619945, 0.007302902323647602, 0.008686115665733228, 0.009854145231748162, 0.010778534263371465, 0.011436849084956653, 0.01181322337662648, 0.011898740369753472, 0.01169164376342075, 0.011197372381315067, 0.010428417926743648, 0.009404009542339973, 0.008149633133637214, 0.006696397467611093, 0.00508026280922129, 0.003341151218990552, 0.0015219605207158697, -0.00033249370996061596, -0.0021765820449820453, -0.003964983803162525, -0.00565380073366025, -0.007201634419757122, -0.00857060096310209, -0.009727258081365882, -0.010643421934430644, -0.011296853731357609, -0.011671799394609888, -0.011759369189448235, -0.011557748175405612, -0.011072232505793696, -0.01031509088761188, -0.009305254812510079, -0.00806784537393949, -0.006633548493105717, -0.0050378540885072905, -0.00332017804986942, -0.0015228887357929956, 0.0003097379641832494, 0.002132609234697734, 0.0039009247460562724, 0.005571277580452986, 0.007102719621677949, 0.008457765262127215, 0.009603308827561241, 0.010511433269506563, 0.01116009037397745, 0.011533635916259543, 0.01162320677618236, 0.011426930927965387, 0.010949965337194096, 0.010204361033252212, 0.009208758874376458, 0.007987923679968019, 0.0065721283687898355, 0.004996403415038089, 0.003299670226990114, 0.0015237798845877746, -0.00028751902624220564, -0.0020896580293490383, -0.003838345283298632, -0.00549065404042726, -0.00700607629434954, -0.008347515756775607, -0.00948219582556923, -0.010382460323554851, -0.011026447448835167, -0.011398620516371472, -0.011490142609518077, -0.011299086111719097, -0.01083047215759177, -0.010096139228910174, -0.009114444321521939, -0.007909804220715057, -0.006512088344072049, -0.004955878246193867, -0.0032796121398813776, -0.0015246355936486423, 0.00026581815252941317, 0.0020476931081573504, 0.0037771944615355283, 0.005411864851883404, 0.006911626537311458, 0.00823976388014558, 0.009363822067268227, 0.010256400069519504, 0.010895818468891231, 0.011266645880046446, 0.0113600711870085, 0.011174112620279932, 0.010713658720364531, 0.009990340371570247, 0.009022237243243287, 0.007833426042127466, 0.00645338185948109, 0.004916247494804226, 0.0032599888663503917, 0.0015254573981639328, -0.0002446174637050831, -0.002006680761836088, -0.0037174236422587853, -0.0053348477104333165, -0.006819295973559219, -0.00813442506516627, -0.009248094919780498, -0.010133154121412417, -0.010768101738503401, -0.011137609515594709, -0.011232891742606404, -0.01105191388104099, -0.010599434999880308, -0.009886883164553559, -0.008932067029426978, -0.0077587309068310635, -0.006395964424944249, -0.004877481448689318, -0.003240786134992019, -0.0015262467480482893, 0.00022389989546712193, 0.001966588801736915, 0.0036589863718344637, 0.005259543103367455, 0.006729013552570935, 0.00803141852132107, 0.009134925881564053, 0.010012628475892515, 0.010643200086942263, 0.011011413486579361, 0.011108507983824576, 0.010932397603869465, 0.010487714957811752, 0.009785689907073791, 0.008843866188345628, 0.007685663144457024, 0.00633979350608419, 0.0048395516954862485, 0.0032219902901132642, 0.0015270050135687122, -0.00020364915265412223, -0.0019273864750659596, -0.0036018382601906906, -0.00518589415503449, -0.006640711366395806, -0.007930667026167472, -0.009024230354636906, -0.009894733270925042, -0.01052102061949433, -0.01088796416152825, -0.01098682784620731, -0.010815475546331858, -0.01037841632480821, -0.009686686297598708, -0.008757570176396957, -0.007614169511750057, -0.006284828417937068, -0.004802431052346535, -0.003203588258907899, -0.0015277334905348747, 0.00018384966640662659, 0.0018890443857169051, 0.0035459368674946967, 0.00511384648238484, 0.006554324477814246, 0.007832096730511445, 0.00891592743171094, 0.0097793825602118, 0.010401474484817446, 0.01076717197996795, 0.010867763263796957, 0.01070106329419811, 0.010271460396355445, 0.009589801249979152, 0.008673117238872902, 0.007544199061731474, 0.0062310302255206415, 0.004766093500153822, 0.0031855675207004695, 0.0015284334051064155, -0.00016448655416644695, -0.0018515344202770054, -0.003491241598222934, -0.0050433480599028115, -0.006469790759651679, -0.007735636976214574, -0.008809939697100646, -0.009666494102209426, -0.010284476657319522, -0.010648951233553383, -0.01075122995439325, -0.010589080056074333, -0.01016677184176389, -0.009494966721381806, -0.008590448260943039, -0.0074757030212299624, -0.006178361650754986, -0.004730514121913109, -0.0031679160781232906, -0.0015291059182347367, 0.00014554558228247226, 0.0018148296788304194, 0.0034377136020542084, 0.004974349093233294, 0.006387050744406665, 0.00764122012567864, 0.008706193040386213, 0.009555989162640333, 0.010169945733445008, 0.010533219861166827, 0.010637147218504657, 0.01047944847111701, 0.010064278525306006, 0.009402117551157869, 0.008509506628087186, 0.007408634676172836, 0.006126786985255266, 0.004695669045019289, 0.0031506224300722734, 0.00152975212978499, -0.00012701313104154568, -0.0017789044101855964, -0.0033853156810923096, -0.0049068019008445575, -0.006306047483438199, -0.007548781402151541, -0.008604616481879815, -0.009447792329506606, -0.010057803740838872, -0.010419899256959096, -0.010525437750984275, -0.010372094428864201, -0.00996391133861546, -0.009311191309838516, -0.008430238095294144, -0.007342949264059696, -0.0060762720085808086, -0.004661535387110025, -0.0031336755463287234, -0.001530373082350148, 0.0001088761619285668, 0.0017437339512144095, 0.00333401220293789, 0.004840660803149927, 0.006226726414999595, 0.007458258740058715, 0.008505142009038258, 0.009341831339686926, 0.009947975959452496, 0.010308914090387096, 0.010416027464426008, 0.010266946900304674, 0.00986560404352474, 0.009222128157529003, 0.008352590664382306, 0.007278603873109481, 0.006026783911534547, 0.004628091205258873, 0.0031170648437149825, 0.001530969764797153, -0.00009112218696606803, -0.0017092946699876987, -0.003283769019197351, -0.004775882018532973, -0.006149035240488571, -0.0073695926446301525, -0.008407704423026918, -0.009238036916283918, -0.009840390753724568, -0.010200192137384127, -0.010308845323473495, -0.010163937779373152, -0.009769293124595185, -0.009134870711019328, -0.008276514468868288, -0.007215557347592569, -0.0059782912241642, -0.004595315448258029, -0.00310078016369045, -0.001531543115552564, 0.0000737392399667339, 0.001675563912446815, 0.0032345533890227388, 0.004712423565792373, 0.0060729238083116685, 0.00728272606016411, 0.008312241194704922, 0.009136342615950489, 0.009734979415048518, 0.010093664121865643, 0.010203823189262884, 0.010063001734130994, 0.00967491765064457, 0.009049363918998405, 0.008201961665838864, 0.007153770198919874, 0.005930763748120867, 0.0045631879117862895, 0.0030848117512741317, 0.00153209402566305, -0.000056715849575066915, -0.001642519952343532, -0.0031863339073372196, -0.004650245172536397, -0.005998344004833064, -0.007197604246304405, -0.008218692329369866, -0.009036684685486062, -0.009631676013797021, -0.009989263566841785, -0.01010089567328384, -0.009964076066946442, -0.009582419144642727, -0.008965554944794535, -0.008128886334342557, -0.007093204522074692, -0.005884172493081779, -0.004531689196248325, -0.0030691502352163075, -0.0015326233416345881, 0.000040041013955833456, 0.001610141944230643, 0.003139080437401436, 0.004589308189120179, 0.005925249651897664, 0.007114174661777941, 0.00812700023963896, 0.008939001927057518, 0.009530417260232635, 0.00988692665446217, 0.01],"x":[-100.0,-99.95002498750625,-99.9000499750125,-99.85007496251875,-99.80009995002499,-99.75012493753124,-99.70014992503748,-99.65017491254373,-99.60019990004997,-99.55022488755623,-99.50024987506247,-99.45027486256872,-99.40029985007496,-99.35032483758121,-99.30034982508745,-99.2503748125937,-99.20039980009994,-99.1504247876062,-99.10044977511244,-99.05047476261869,-99.00049975012493,-98.95052473763118,-98.90054972513744,-98.85057471264368,-98.80059970014993,-98.75062468765617,-98.70064967516242,-98.65067466266866,-98.60069965017492,-98.55072463768116,-98.50074962518741,-98.45077461269365,-98.4007996001999,-98.35082458770614,-98.3008495752124,-98.25087456271864,-98.20089955022489,-98.15092453773113,-98.10094952523738,-98.05097451274362,-98.00099950024988,-97.95102448775611,-97.90104947526237,-97.85107446276862,-97.80109945027486,-97.75112443778112,-97.70114942528735,-97.65117441279361,-97.60119940029985,-97.5512243878061,-97.50124937531234,-97.4512743628186,-97.40129935032483,-97.35132433783109,-97.30134932533733,-97.25137431284358,-97.20139930034982,-97.15142428785607,-97.10144927536231,-97.05147426286857,-97.0014992503748,-96.95152423788106,-96.90154922538731,-96.85157421289355,-96.8015992003998,-96.75162418790605,-96.7016491754123,-96.65167416291854,-96.60169915042479,-96.55172413793103,-96.50174912543729,-96.45177411294353,-96.40179910044978,-96.35182408795602,-96.30184907546227,-96.25187406296851,-96.20189905047476,-96.151924037981,-96.10194902548726,-96.0519740129935,-96.00199900049975,-95.95202398800599,-95.90204897551224,-95.8520739630185,-95.80209895052474,-95.75212393803099,-95.70214892553723,-95.65217391304348,-95.60219890054972,-95.55222388805598,-95.50224887556222,-95.45227386306847,-95.40229885057471,-95.35232383808096,-95.3023488255872,-95.25237381309346,-95.2023988005997,-95.15242378810595,-95.10244877561219,-95.05247376311844,-95.00249875062468,-94.95252373813094,-94.90254872563717,-94.85257371314343,-94.80259870064968,-94.75262368815592,-94.70264867566218,-94.65267366316841,-94.60269865067467,-94.55272363818091,-94.50274862568716,-94.4527736131934,-94.40279860069965,-94.3528235882059,-94.30284857571215,-94.25287356321839,-94.20289855072464,-94.15292353823088,-94.10294852573713,-94.05297351324337,-94.00299850074963,-93.95302348825587,-93.90304847576212,-93.85307346326836,-93.80309845077461,-93.75312343828087,-93.7031484257871,-93.65317341329336,-93.6031984007996,-93.55322338830585,-93.50324837581209,-93.45327336331835,-93.40329835082458,-93.35332333833084,-93.30334832583708,-93.25337331334333,-93.20339830084957,-93.15342328835582,-93.10344827586206,-93.05347326336832,-93.00349825087456,-92.95352323838081,-92.90354822588705,-92.8535732133933,-92.80359820089954,-92.7536231884058,-92.70364817591205,-92.65367316341829,-92.60369815092454,-92.55372313843078,-92.50374812593704,-92.45377311344328,-92.40379810094953,-92.35382308845577,-92.30384807596202,-92.25387306346826,-92.20389805097452,-92.15392303848076,-92.10394802598701,-92.05397301349325,-92.0039980009995,-91.95402298850574,-91.904047976012,-91.85407296351823,-91.80409795102449,-91.75412293853073,-91.70414792603698,-91.65417291354323,-91.60419790104947,-91.55422288855573,-91.50424787606197,-91.45427286356822,-91.40429785107446,-91.35432283858071,-91.30434782608695,-91.2543728135932,-91.20439780109945,-91.1544227886057,-91.10444777611194,-91.0544727636182,-91.00449775112443,-90.95452273863069,-90.90454772613693,-90.85457271364318,-90.80459770114942,-90.75462268865567,-90.70464767616193,-90.65467266366817,-90.60469765117442,-90.55472263868066,-90.50474762618691,-90.45477261369315,-90.4047976011994,-90.35482258870564,-90.3048475762119,-90.25487256371814,-90.20489755122439,-90.15492253873063,-90.10494752623688,-90.05497251374312,-90.00499750124938,-89.95502248875562,-89.90504747626187,-89.85507246376811,-89.80509745127436,-89.7551224387806,-89.70514742628686,-89.65517241379311,-89.60519740129935,-89.5552223888056,-89.50524737631184,-89.4552723638181,-89.40529735132434,-89.35532233883059,-89.30534732633683,-89.25537231384308,-89.20539730134932,-89.15542228885558,-89.10544727636182,-89.05547226386807,-89.00549725137431,-88.95552223888056,-88.9055472263868,-88.85557221389305,-88.8055972013993,-88.75562218890555,-88.70564717641179,-88.65567216391804,-88.6056971514243,-88.55572213893053,-88.50574712643679,-88.45577211394303,-88.40579710144928,-88.35582208895552,-88.30584707646177,-88.25587206396801,-88.20589705147427,-88.1559220389805,-88.10594702648676,-88.055972013993,-88.00599700149925,-87.95602198900549,-87.90604697651175,-87.85607196401799,-87.80609695152424,-87.75612193903048,-87.70614692653673,-87.65617191404297,-87.60619690154923,-87.55622188905548,-87.50624687656172,-87.45627186406797,-87.40629685157421,-87.35632183908046,-87.3063468265867,-87.25637181409296,-87.2063968015992,-87.15642178910545,-87.10644677661169,-87.05647176411794,-87.00649675162418,-86.95652173913044,-86.90654672663668,-86.85657171414293,-86.80659670164917,-86.75662168915542,-86.70664667666166,-86.65667166416792,-86.60669665167416,-86.55672163918041,-86.50674662668666,-86.4567716141929,-86.40679660169916,-86.3568215892054,-86.30684657671165,-86.25687156421789,-86.20689655172414,-86.15692153923038,-86.10694652673664,-86.05697151424287,-86.00699650174913,-85.95702148925537,-85.90704647676162,-85.85707146426786,-85.80709645177411,-85.75712143928035,-85.70714642678661,-85.65717141429285,-85.6071964017991,-85.55722138930535,-85.5072463768116,-85.45727136431785,-85.40729635182409,-85.35732133933034,-85.30734632683658,-85.25737131434283,-85.20739630184907,-85.15742128935533,-85.10744627686157,-85.05747126436782,-85.00749625187406,-84.95752123938031,-84.90754622688655,-84.8575712143928,-84.80759620189905,-84.7576211894053,-84.70764617691154,-84.65767116441779,-84.60769615192403,-84.55772113943029,-84.50774612693654,-84.45777111444278,-84.40779610194903,-84.35782108945527,-84.30784607696152,-84.25787106446776,-84.20789605197402,-84.15792103948026,-84.10794602698651,-84.05797101449275,-84.007996001999,-83.95802098950524,-83.9080459770115,-83.85807096451774,-83.80809595202399,-83.75812093953023,-83.70814592703648,-83.65817091454272,-83.60819590204898,-83.55822088955522,-83.50824587706147,-83.45827086456772,-83.40829585207396,-83.35832083958022,-83.30834582708646,-83.25837081459271,-83.20839580209895,-83.1584207896052,-83.10844577711144,-83.0584707646177,-83.00849575212393,-82.95852073963019,-82.90854572713643,-82.85857071464268,-82.80859570214892,-82.75862068965517,-82.70864567716141,-82.65867066466767,-82.6086956521739,-82.55872063968016,-82.5087456271864,-82.45877061469265,-82.40879560219891,-82.35882058970515,-82.3088455772114,-82.25887056471764,-82.2088955522239,-82.15892053973013,-82.10894552723639,-82.05897051474263,-82.00899550224888,-81.95902048975512,-81.90904547726137,-81.85907046476761,-81.80909545227387,-81.7591204397801,-81.70914542728636,-81.6591704147926,-81.60919540229885,-81.55922038980509,-81.50924537731134,-81.45927036481758,-81.40929535232384,-81.35932033983009,-81.30934532733633,-81.25937031484258,-81.20939530234882,-81.15942028985508,-81.10944527736132,-81.05947026486757,-81.00949525237381,-80.95952023988006,-80.9095452273863,-80.85957021489256,-80.8095952023988,-80.75962018990505,-80.70964517741129,-80.65967016491754,-80.60969515242378,-80.55972013993004,-80.50974512743628,-80.45977011494253,-80.40979510244878,-80.35982008995502,-80.30984507746128,-80.25987006496752,-80.20989505247377,-80.15992003998001,-80.10994502748626,-80.0599700149925,-80.00999500249875,-79.960019990005,-79.91004497751125,-79.86006996501749,-79.81009495252374,-79.76011994002998,-79.71014492753623,-79.66016991504247,-79.61019490254873,-79.56021989005497,-79.51024487756122,-79.46026986506746,-79.41029485257371,-79.36031984007997,-79.3103448275862,-79.26036981509246,-79.2103948025987,-79.16041979010495,-79.11044477761119,-79.06046976511745,-79.01049475262369,-78.96051974012994,-78.91054472763618,-78.86056971514243,-78.81059470264867,-78.76061969015493,-78.71064467766116,-78.66066966516742,-78.61069465267366,-78.56071964017991,-78.51074462768615,-78.4607696151924,-78.41079460269864,-78.3608195902049,-78.31084457771115,-78.26086956521739,-78.21089455272364,-78.16091954022988,-78.11094452773614,-78.06096951524238,-78.01099450274863,-77.96101949025487,-77.91104447776112,-77.86106946526736,-77.81109445277362,-77.76111944027986,-77.71114442778611,-77.66116941529235,-77.6111944027986,-77.56121939030484,-77.5112443778111,-77.46126936531734,-77.41129435282359,-77.36131934032983,-77.31134432783608,-77.26136931534234,-77.21139430284857,-77.16141929035483,-77.11144427786107,-77.06146926536732,-77.01149425287356,-76.96151924037981,-76.91154422788605,-76.86156921539231,-76.81159420289855,-76.7616191904048,-76.71164417791104,-76.6616691654173,-76.61169415292353,-76.56171914042979,-76.51174412793603,-76.46176911544228,-76.41179410294852,-76.36181909045477,-76.31184407796101,-76.26186906546727,-76.21189405297352,-76.16191904047976,-76.11194402798601,-76.06196901549225,-76.0119940029985,-75.96201899050475,-75.912043978011,-75.86206896551724,-75.81209395302349,-75.76211894052973,-75.71214392803599,-75.66216891554222,-75.61219390304848,-75.56221889055472,-75.51224387806097,-75.46226886556721,-75.41229385307346,-75.3623188405797,-75.31234382808596,-75.2623688155922,-75.21239380309845,-75.1624187906047,-75.11244377811094,-75.0624687656172,-75.01249375312344,-74.96251874062969,-74.91254372813593,-74.86256871564218,-74.81259370314842,-74.76261869065468,-74.71264367816092,-74.66266866566717,-74.61269365317341,-74.56271864067966,-74.5127436281859,-74.46276861569216,-74.4127936031984,-74.36281859070465,-74.31284357821089,-74.26286856571714,-74.2128935532234,-74.16291854072963,-74.11294352823589,-74.06296851574213,-74.01299350324838,-73.96301849075462,-73.91304347826087,-73.86306846576711,-73.81309345327337,-73.7631184407796,-73.71314342828586,-73.6631684157921,-73.61319340329835,-73.5632183908046,-73.51324337831085,-73.46326836581709,-73.41329335332334,-73.36331834082958,-73.31334332833583,-73.26336831584207,-73.21339330334833,-73.16341829085458,-73.11344327836082,-73.06346826586707,-73.01349325337331,-72.96351824087957,-72.9135432283858,-72.86356821589206,-72.8135932033983,-72.76361819090455,-72.71364317841079,-72.66366816591704,-72.61369315342328,-72.56371814092954,-72.51374312843578,-72.46376811594203,-72.41379310344827,-72.36381809095452,-72.31384307846076,-72.26386806596702,-72.21389305347326,-72.16391804097951,-72.11394302848576,-72.063968015992,-72.01399300349826,-71.9640179910045,-71.91404297851075,-71.86406796601699,-71.81409295352324,-71.76411794102948,-71.71414292853574,-71.66416791604198,-71.61419290354823,-71.56421789105447,-71.51424287856072,-71.46426786606696,-71.41429285357322,-71.36431784107945,-71.31434282858571,-71.26436781609195,-71.2143928035982,-71.16441779110444,-71.1144427786107,-71.06446776611695,-71.01449275362319,-70.96451774112944,-70.91454272863568,-70.86456771614193,-70.81459270364817,-70.76461769115443,-70.71464267866067,-70.66466766616692,-70.61469265367316,-70.56471764117941,-70.51474262868565,-70.4647676161919,-70.41479260369815,-70.3648175912044,-70.31484257871064,-70.26486756621689,-70.21489255372313,-70.16491754122939,-70.11494252873563,-70.06496751624188,-70.01499250374813,-69.96501749125437,-69.91504247876063,-69.86506746626686,-69.81509245377312,-69.76511744127936,-69.71514242878561,-69.66516741629185,-69.6151924037981,-69.56521739130434,-69.5152423788106,-69.46526736631684,-69.41529235382309,-69.36531734132933,-69.31534232883558,-69.26536731634182,-69.21539230384808,-69.16541729135432,-69.11544227886057,-69.06546726636682,-69.01549225387306,-68.96551724137932,-68.91554222888556,-68.86556721639181,-68.81559220389805,-68.7656171914043,-68.71564217891054,-68.6656671664168,-68.61569215392304,-68.56571714142929,-68.51574212893553,-68.46576711644178,-68.41579210394802,-68.36581709145428,-68.31584207896051,-68.26586706646677,-68.21589205397301,-68.16591704147926,-68.1159420289855,-68.06596701649175,-68.01599200399801,-67.96601699150425,-67.9160419790105,-67.86606696651674,-67.816091954023,-67.76611694152923,-67.71614192903549,-67.66616691654173,-67.61619190404798,-67.56621689155422,-67.51624187906047,-67.46626686656671,-67.41629185407297,-67.3663168415792,-67.31634182908546,-67.2663668165917,-67.21639180409795,-67.16641679160419,-67.11644177911045,-67.06646676661668,-67.01649175412294,-66.96651674162919,-66.91654172913543,-66.86656671664169,-66.81659170414792,-66.76661669165418,-66.71664167916042,-66.66666666666667,-66.61669165417291,-66.56671664167916,-66.5167416291854,-66.46676661669166,-66.4167916041979,-66.36681659170415,-66.31684157921039,-66.26686656671664,-66.21689155422288,-66.16691654172914,-66.11694152923538,-66.06696651674163,-66.01699150424787,-65.96701649175412,-65.91704147926038,-65.86706646676662,-65.81709145427287,-65.76711644177911,-65.71714142928536,-65.6671664167916,-65.61719140429786,-65.5672163918041,-65.51724137931035,-65.46726636681659,-65.41729135432284,-65.36731634182908,-65.31734132933533,-65.26736631684157,-65.21739130434783,-65.16741629185407,-65.11744127936032,-65.06746626686656,-65.01749125437281,-64.96751624187905,-64.91754122938531,-64.86756621689156,-64.8175912043978,-64.76761619190405,-64.7176411794103,-64.66766616691655,-64.61769115442279,-64.56771614192904,-64.51774112943528,-64.46776611694153,-64.41779110444777,-64.36781609195403,-64.31784107946027,-64.26786606696652,-64.21789105447276,-64.16791604197901,-64.11794102948525,-64.0679660169915,-64.01799100449774,-63.968015992004,-63.918040979510245,-63.86806596701649,-63.81809095452274,-63.768115942028984,-63.71814092953523,-63.66816591704148,-63.618190904547724,-63.56821589205397,-63.51824087956022,-63.468265867066464,-63.41829085457271,-63.368315842078964,-63.31834082958521,-63.26836581709146,-63.2183908045977,-63.16841579210395,-63.1184407796102,-63.06846576711644,-63.01849075462269,-62.968515742128936,-62.91854072963518,-62.86856571714143,-62.818590704647676,-62.76861569215392,-62.71864067966017,-62.668665667166415,-62.61869065467266,-62.56871564217891,-62.518740629685155,-62.4687656171914,-62.41879060469765,-62.3688155922039,-62.31884057971015,-62.268865567216395,-62.21889055472264,-62.16891554222889,-62.118940529735134,-62.06896551724138,-62.01899050474763,-61.969015492253874,-61.91904047976012,-61.86906546726637,-61.81909045477261,-61.76911544227886,-61.71914042978511,-61.66916541729135,-61.6191904047976,-61.569215392303846,-61.51924037981009,-61.46926536731634,-61.419290354822586,-61.36931534232883,-61.319340329835086,-61.26936531734133,-61.21939030484758,-61.169415292353825,-61.11944027986007,-61.06946526736632,-61.019490254872565,-60.96951524237881,-60.91954022988506,-60.869565217391305,-60.81959020489755,-60.7696151924038,-60.719640179910044,-60.66966516741629,-60.61969015492254,-60.569715142428784,-60.51974012993503,-60.46976511744128,-60.41979010494752,-60.36981509245377,-60.31984007996002,-60.26986506746627,-60.21989005497252,-60.16991504247876,-60.11994002998501,-60.069965017491256,-60.0199900049975,-59.97001499250375,-59.920039980009996,-59.87006496751624,-59.82008995502249,-59.770114942528735,-59.72013993003498,-59.67016491754123,-59.620189905047475,-59.57021489255372,-59.52023988005997,-59.470264867566215,-59.42028985507246,-59.37031484257871,-59.320339830084954,-59.27036481759121,-59.220389805097454,-59.1704147926037,-59.12043978010995,-59.070464767616194,-59.02048975512244,-58.97051474262869,-58.920539730134934,-58.87056471764118,-58.82058970514743,-58.77061469265367,-58.72063968015992,-58.670664667666166,-58.62068965517241,-58.57071464267866,-58.520739630184906,-58.47076461769115,-58.4207896051974,-58.370814592703645,-58.32083958020989,-58.27086456771614,-58.22088955522239,-58.17091454272864,-58.120939530234885,-58.07096451774113,-58.02098950524738,-57.971014492753625,-57.92103948025987,-57.87106446776612,-57.821089455272364,-57.77111444277861,-57.72113943028486,-57.671164417791104,-57.62118940529735,-57.5712143928036,-57.521239380309844,-57.47126436781609,-57.42128935532234,-57.37131434282858,-57.32133933033483,-57.271364317841076,-57.22138930534732,-57.17141429285358,-57.12143928035982,-57.07146426786607,-57.021489255372316,-56.97151424287856,-56.92153923038481,-56.871564217891056,-56.8215892053973,-56.77161419290355,-56.721639180409795,-56.67166416791604,-56.62168915542229,-56.571714142928535,-56.52173913043478,-56.47176411794103,-56.421789105447274,-56.37181409295352,-56.32183908045977,-56.271864067966014,-56.22188905547226,-56.171914042978514,-56.12193903048476,-56.07196401799101,-56.021989005497254,-55.9720139930035,-55.92203898050975,-55.87206396801599,-55.82208895552224,-55.77211394302849,-55.72213893053473,-55.67216391804098,-55.622188905547226,-55.57221389305347,-55.52223888055972,-55.472263868065966,-55.42228885557221,-55.37231384307846,-55.322338830584705,-55.27236381809095,-55.2223888055972,-55.172413793103445,-55.1224387806097,-55.072463768115945,-55.02248875562219,-54.97251374312844,-54.922538730634685,-54.87256371814093,-54.82258870564718,-54.772613693153424,-54.72263868065967,-54.67266366816592,-54.622688655672164,-54.57271364317841,-54.52273863068466,-54.4727636181909,-54.42278860569715,-54.3728135932034,-54.32283858070964,-54.27286356821589,-54.222888555722136,-54.17291354322838,-54.122938530734636,-54.07296351824088,-54.02298850574713,-53.973013493253376,-53.92303848075962,-53.87306346826587,-53.823088455772115,-53.77311344327836,-53.72313843078461,-53.673163418290855,-53.6231884057971,-53.57321339330335,-53.523238380809595,-53.47326336831584,-53.42328835582209,-53.373313343328334,-53.32333833083458,-53.27336331834083,-53.223388305847074,-53.17341329335332,-53.12343828085957,-53.07346326836582,-53.02348825587207,-52.973513243378314,-52.92353823088456,-52.87356321839081,-52.82358820589705,-52.7736131934033,-52.723638180909546,-52.67366316841579,-52.62368815592204,-52.573713143428286,-52.52373813093453,-52.47376311844078,-52.423788105947025,-52.37381309345327,-52.32383808095952,-52.273863068465765,-52.22388805597201,-52.17391304347826,-52.123938030984505,-52.07396301849075,-52.023988005997005,-51.97401299350325,-51.9240379810095,-51.874062968515744,-51.82408795602199,-51.77411294352824,-51.724137931034484,-51.67416291854073,-51.62418790604698,-51.574212893553224,-51.52423788105947,-51.47426286856572,-51.42428785607196,-51.37431284357821,-51.324337831084456,-51.2743628185907,-51.22438780609695,-51.174412793603196,-51.12443778110944,-51.07446276861569,-51.02448775612194,-50.97451274362819,-50.924537731134436,-50.87456271864068,-50.82458770614693,-50.774612693653175,-50.72463768115942,-50.67466266866567,-50.624687656171915,-50.57471264367816,-50.52473763118441,-50.474762618690654,-50.4247876061969,-50.37481259370315,-50.324837581209394,-50.27486256871564,-50.22488755622189,-50.174912543728134,-50.12493753123438,-50.07496251874063,-50.02498750624687,-49.97501249375313,-49.92503748125937,-49.87506246876562,-49.825087456271866,-49.77511244377811,-49.72513743128436,-49.675162418790606,-49.62518740629685,-49.5752123938031,-49.525237381309346,-49.47526236881559,-49.42528735632184,-49.375312343828085,-49.32533733133433,-49.27536231884058,-49.225387306346825,-49.17541229385307,-49.12543728135932,-49.075462268865564,-49.02548725637181,-48.97551224387806,-48.92553723138431,-48.87556221889056,-48.825587206396804,-48.77561219390305,-48.7256371814093,-48.675662168915544,-48.62568715642179,-48.57571214392804,-48.52573713143428,-48.47576211894053,-48.425787106446776,-48.37581209395302,-48.32583708145927,-48.275862068965516,-48.22588705647176,-48.17591204397801,-48.125937031484256,-48.0759620189905,-48.02598700649675,-47.976011994002995,-47.92603698150925,-47.876061969015495,-47.82608695652174,-47.77611194402799,-47.726136931534235,-47.67616191904048,-47.62618690654673,-47.576211894052975,-47.52623688155922,-47.47626186906547,-47.426286856571714,-47.37631184407796,-47.32633683158421,-47.276361819090454,-47.2263868065967,-47.17641179410295,-47.12643678160919,-47.07646176911544,-47.026486756621686,-46.97651174412793,-46.92653673163418,-46.87656171914043,-46.82658670664668,-46.776611694152926,-46.72663668165917,-46.67666166916542,-46.626686656671666,-46.57671164417791,-46.52673663168416,-46.476761619190405,-46.42678660669665,-46.3768115942029,-46.326836581709145,-46.27686156921539,-46.22688655672164,-46.176911544227885,-46.12693653173413,-46.07696151924038,-46.026986506746624,-45.97701149425287,-45.92703648175912,-45.877061469265364,-45.82708645677162,-45.777111444277864,-45.72713643178411,-45.67716141929036,-45.6271864067966,-45.57721139430285,-45.5272363818091,-45.47726136931534,-45.42728635682159,-45.377311344327836,-45.32733633183408,-45.27736131934033,-45.227386306846576,-45.17741129435282,-45.12743628185907,-45.077461269365315,-45.02748625687156,-44.97751124437781,-44.927536231884055,-44.8775612193903,-44.827586206896555,-44.7776111944028,-44.72763618190905,-44.677661169415295,-44.62768615692154,-44.57771114442779,-44.527736131934034,-44.47776111944028,-44.42778610694653,-44.377811094452774,-44.32783608195902,-44.27786106946527,-44.22788605697151,-44.17791104447776,-44.12793603198401,-44.07796101949025,-44.0279860069965,-43.978010994502746,-43.92803598200899,-43.87806096951524,-43.828085957021486,-43.77811094452774,-43.728135932033986,-43.67816091954023,-43.62818590704648,-43.578210894552726,-43.52823588205897,-43.47826086956522,-43.428285857071465,-43.37831084457771,-43.32833583208396,-43.278360819590205,-43.22838580709645,-43.1784107946027,-43.128435782108944,-43.07846076961519,-43.02848575712144,-42.978510744627684,-42.92853573213393,-42.87856071964018,-42.82858570714642,-42.77861069465268,-42.728635682158924,-42.67866066966517,-42.62868565717142,-42.57871064467766,-42.52873563218391,-42.478760619690156,-42.4287856071964,-42.37881059470265,-42.328835582208896,-42.27886056971514,-42.22888555722139,-42.178910544727636,-42.12893553223388,-42.07896051974013,-42.028985507246375,-41.97901049475262,-41.92903548225887,-41.879060469765115,-41.82908545727136,-41.77911044477761,-41.72913543228386,-41.67916041979011,-41.629185407296355,-41.5792103948026,-41.52923538230885,-41.479260369815094,-41.42928535732134,-41.37931034482759,-41.329335332333834,-41.27936031984008,-41.22938530734633,-41.17941029485257,-41.12943528235882,-41.079460269865066,-41.02948525737131,-40.97951024487756,-40.929535232383806,-40.87956021989005,-40.8295852073963,-40.779610194902546,-40.72963518240879,-40.679660169915046,-40.62968515742129,-40.57971014492754,-40.529735132433785,-40.47976011994003,-40.42978510744628,-40.379810094952525,-40.32983508245877,-40.27986006996502,-40.229885057471265,-40.17991004497751,-40.12993503248376,-40.079960019990004,-40.02998500749625,-39.9800099950025,-39.930034982508744,-39.88005997001499,-39.83008495752124,-39.78010994502748,-39.73013493253373,-39.68015992003998,-39.63018490754623,-39.58020989505248,-39.53023488255872,-39.48025987006497,-39.430284857571216,-39.38030984507746,-39.33033483258371,-39.280359820089956,-39.2303848075962,-39.18040979510245,-39.130434782608695,-39.08045977011494,-39.03048475762119,-38.980509745127435,-38.93053473263368,-38.88055972013993,-38.830584707646175,-38.78060969515242,-38.73063468265867,-38.680659670164914,-38.63068465767117,-38.580709645177414,-38.53073463268366,-38.48075962018991,-38.430784607696154,-38.3808095952024,-38.33083458270865,-38.28085957021489,-38.23088455772114,-38.18090954522739,-38.13093453273363,-38.08095952023988,-38.030984507746126,-37.98100949525237,-37.93103448275862,-37.881059470264866,-37.83108445777111,-37.78110944527736,-37.731134432783605,-37.68115942028985,-37.6311844077961,-37.58120939530235,-37.5312343828086,-37.481259370314845,-37.43128435782109,-37.38130934532734,-37.331334332833585,-37.28135932033983,-37.23138430784608,-37.181409295352324,-37.13143428285857,-37.08145927036482,-37.031484257871064,-36.98150924537731,-36.93153423288356,-36.8815592203898,-36.83158420789605,-36.7816091954023,-36.73163418290854,-36.68165917041479,-36.631684157921036,-36.58170914542729,-36.531734132933536,-36.48175912043978,-36.43178410794603,-36.381809095452276,-36.33183408295852,-36.28185907046477,-36.231884057971016,-36.18190904547726,-36.13193403298351,-36.081959020489755,-36.031984007996,-35.98200899550225,-35.932033983008495,-35.88205897051474,-35.83208395802099,-35.782108945527234,-35.73213393303348,-35.68215892053973,-35.632183908045974,-35.58220889555222,-35.532233883058474,-35.48225887056472,-35.43228385807097,-35.382308845577214,-35.33233383308346,-35.28235882058971,-35.23238380809595,-35.1824087956022,-35.132433783108446,-35.08245877061469,-35.03248375812094,-34.982508745627186,-34.93253373313343,-34.88255872063968,-34.832583708145926,-34.78260869565217,-34.73263368315842,-34.682658670664665,-34.63268365817091,-34.58270864567716,-34.53273363318341,-34.48275862068966,-34.432783608195905,-34.38280859570215,-34.3328335832084,-34.282858570714644,-34.23288355822089,-34.18290854572714,-34.132933533233384,-34.08295852073963,-34.03298350824588,-33.983008495752124,-33.93303348325837,-33.88305847076462,-33.83308345827086,-33.78310844577711,-33.733133433283356,-33.6831584207896,-33.63318340829585,-33.583208395802096,-33.53323338330834,-33.483258370814596,-33.43328335832084,-33.38330834582709,-33.333333333333336,-33.28335832083958,-33.23338330834583,-33.183408295852075,-33.13343328335832,-33.08345827086457,-33.033483258370815,-32.98350824587706,-32.93353323338331,-32.883558220889554,-32.8335832083958,-32.78360819590205,-32.733633183408294,-32.68365817091454,-32.63368315842079,-32.583708145927034,-32.53373313343328,-32.48375812093953,-32.43378310844578,-32.38380809595203,-32.33383308345827,-32.28385807096452,-32.23388305847077,-32.18390804597701,-32.13393303348326,-32.083958020989506,-32.03398300849575,-31.984007996002,-31.934032983508246,-31.884057971014492,-31.83408295852074,-31.784107946026985,-31.734132933533232,-31.684157921039482,-31.63418290854573,-31.584207896051975,-31.53423288355822,-31.484257871064468,-31.434282858570715,-31.38430784607696,-31.334332833583208,-31.284357821089454,-31.2343828085957,-31.18440779610195,-31.134432783608197,-31.084457771114444,-31.03448275862069,-30.984507746126937,-30.934532733633183,-30.88455772113943,-30.834582708645677,-30.784607696151923,-30.73463268365817,-30.684657671164416,-30.634682658670666,-30.584707646176913,-30.53473263368316,-30.484757621189406,-30.434782608695652,-30.3848075962019,-30.334832583708145,-30.284857571214392,-30.23488255872064,-30.184907546226885,-30.134932533733135,-30.08495752123938,-30.034982508745628,-29.985007496251875,-29.93503248375812,-29.885057471264368,-29.835082458770614,-29.78510744627686,-29.735132433783107,-29.685157421289354,-29.635182408795604,-29.58520739630185,-29.535232383808097,-29.485257371314344,-29.43528235882059,-29.385307346326837,-29.335332333833083,-29.28535732133933,-29.235382308845576,-29.185407296351823,-29.13543228385807,-29.08545727136432,-29.035482258870566,-28.985507246376812,-28.93553223388306,-28.885557221389305,-28.835582208895552,-28.7856071964018,-28.735632183908045,-28.68565717141429,-28.635682158920538,-28.58570714642679,-28.535732133933035,-28.48575712143928,-28.435782108945528,-28.385807096451774,-28.33583208395802,-28.285857071464267,-28.235882058970514,-28.18590704647676,-28.135932033983007,-28.085957021489257,-28.035982008995504,-27.98600699650175,-27.936031984007997,-27.886056971514243,-27.83608195902049,-27.786106946526736,-27.736131934032983,-27.68615692153923,-27.636181909045476,-27.586206896551722,-27.536231884057973,-27.48625687156422,-27.436281859070466,-27.386306846576712,-27.33633183408296,-27.286356821589205,-27.23638180909545,-27.1864067966017,-27.136431784107945,-27.08645677161419,-27.03648175912044,-26.986506746626688,-26.936531734132934,-26.88655672163918,-26.836581709145428,-26.786606696651674,-26.73663168415792,-26.686656671664167,-26.636681659170414,-26.58670664667666,-26.53673163418291,-26.486756621689157,-26.436781609195403,-26.38680659670165,-26.336831584207896,-26.286856571714143,-26.23688155922039,-26.186906546726636,-26.136931534232883,-26.08695652173913,-26.036981509245376,-25.987006496751626,-25.937031484257872,-25.88705647176412,-25.837081459270365,-25.787106446776612,-25.73713143428286,-25.687156421789105,-25.63718140929535,-25.587206396801598,-25.537231384307844,-25.487256371814095,-25.43728135932034,-25.387306346826588,-25.337331334332834,-25.28735632183908,-25.237381309345327,-25.187406296851574,-25.13743128435782,-25.087456271864067,-25.037481259370313,-24.987506246876563,-24.93753123438281,-24.887556221889056,-24.837581209395303,-24.78760619690155,-24.737631184407796,-24.687656171914043,-24.63768115942029,-24.587706146926536,-24.537731134432782,-24.48775612193903,-24.43778110944528,-24.387806096951525,-24.337831084457772,-24.28785607196402,-24.237881059470265,-24.18790604697651,-24.137931034482758,-24.087956021989005,-24.03798100949525,-23.988005997001498,-23.938030984507748,-23.888055972013994,-23.83808095952024,-23.788105947026487,-23.738130934532734,-23.68815592203898,-23.638180909545227,-23.588205897051473,-23.53823088455772,-23.488255872063966,-23.438280859570217,-23.388305847076463,-23.33833083458271,-23.288355822088956,-23.238380809595203,-23.18840579710145,-23.138430784607696,-23.088455772113942,-23.03848075962019,-22.988505747126435,-22.938530734632682,-22.888555722138932,-22.83858070964518,-22.788605697151425,-22.73863068465767,-22.688655672163918,-22.638680659670165,-22.58870564717641,-22.538730634682658,-22.488755622188904,-22.43878060969515,-22.3888055972014,-22.338830584707647,-22.288855572213894,-22.23888055972014,-22.188905547226387,-22.138930534732634,-22.08895552223888,-22.038980509745127,-21.989005497251373,-21.93903048475762,-21.88905547226387,-21.839080459770116,-21.789105447276363,-21.73913043478261,-21.689155422288856,-21.639180409795102,-21.58920539730135,-21.539230384807595,-21.489255372313842,-21.43928035982009,-21.38930534732634,-21.339330334832585,-21.28935532233883,-21.239380309845078,-21.189405297351325,-21.13943028485757,-21.089455272363818,-21.039480259870064,-20.98950524737631,-20.939530234882557,-20.889555222388804,-20.839580209895054,-20.7896051974013,-20.739630184907547,-20.689655172413794,-20.63968015992004,-20.589705147426287,-20.539730134932533,-20.48975512243878,-20.439780109945026,-20.389805097451273,-20.339830084957523,-20.28985507246377,-20.239880059970016,-20.189905047476262,-20.13993003498251,-20.089955022488756,-20.039980009995002,-19.99000499750125,-19.940029985007495,-19.89005497251374,-19.84007996001999,-19.79010494752624,-19.740129935032485,-19.69015492253873,-19.640179910044978,-19.590204897551224,-19.54022988505747,-19.490254872563717,-19.440279860069964,-19.39030484757621,-19.340329835082457,-19.290354822588707,-19.240379810094954,-19.1904047976012,-19.140429785107447,-19.090454772613693,-19.04047976011994,-18.990504747626186,-18.940529735132433,-18.89055472263868,-18.840579710144926,-18.790604697651176,-18.740629685157423,-18.69065467266367,-18.640679660169916,-18.590704647676162,-18.54072963518241,-18.490754622688655,-18.4407796101949,-18.39080459770115,-18.340829585207395,-18.290854572713645,-18.24087956021989,-18.190904547726138,-18.140929535232384,-18.09095452273863,-18.040979510244878,-17.991004497751124,-17.94102948525737,-17.891054472763617,-17.841079460269864,-17.79110444777611,-17.74112943528236,-17.691154422788607,-17.641179410294853,-17.5912043978011,-17.541229385307346,-17.491254372813593,-17.44127936031984,-17.391304347826086,-17.341329335332333,-17.29135432283858,-17.24137931034483,-17.191404297851076,-17.141429285357322,-17.09145427286357,-17.041479260369815,-16.991504247876062,-16.94152923538231,-16.891554222888555,-16.8415792103948,-16.791604197901048,-16.741629185407298,-16.691654172913545,-16.64167916041979,-16.591704147926038,-16.541729135432284,-16.49175412293853,-16.441779110444777,-16.391804097951024,-16.34182908545727,-16.291854072963517,-16.241879060469763,-16.191904047976013,-16.14192903548226,-16.091954022988507,-16.041979010494753,-15.992003998001,-15.942028985507246,-15.892053973013493,-15.842078960519741,-15.792103948025987,-15.742128935532234,-15.69215392303848,-15.642178910544727,-15.592203898050975,-15.542228885557222,-15.492253873063468,-15.442278860569715,-15.392303848075962,-15.342328835582208,-15.292353823088456,-15.242378810594703,-15.19240379810095,-15.142428785607196,-15.092453773113442,-15.04247876061969,-14.992503748125937,-14.942528735632184,-14.89255372313843,-14.842578710644677,-14.792603698150925,-14.742628685657172,-14.692653673163418,-14.642678660669665,-14.592703648175911,-14.54272863568216,-14.492753623188406,-14.442778610694653,-14.3928035982009,-14.342828585707146,-14.292853573213394,-14.24287856071964,-14.192903548225887,-14.142928535732134,-14.09295352323838,-14.042978510744629,-13.993003498250875,-13.943028485757122,-13.893053473263368,-13.843078460769615,-13.793103448275861,-13.74312843578211,-13.693153423288356,-13.643178410794603,-13.59320339830085,-13.543228385807096,-13.493253373313344,-13.44327836081959,-13.393303348325837,-13.343328335832084,-13.29335332333833,-13.243378310844578,-13.193403298350825,-13.143428285857071,-13.093453273363318,-13.043478260869565,-12.993503248375813,-12.94352823588206,-12.893553223388306,-12.843578210894552,-12.793603198400799,-12.743628185907047,-12.693653173413294,-12.64367816091954,-12.593703148425787,-12.543728135932033,-12.493753123438282,-12.443778110944528,-12.393803098450775,-12.343828085957021,-12.293853073463268,-12.243878060969514,-12.193903048475763,-12.14392803598201,-12.093953023488256,-12.043978010994502,-11.994002998500749,-11.944027986006997,-11.894052973513244,-11.84407796101949,-11.794102948525737,-11.744127936031983,-11.694152923538232,-11.644177911044478,-11.594202898550725,-11.544227886056971,-11.494252873563218,-11.444277861069466,-11.394302848575713,-11.344327836081959,-11.294352823588206,-11.244377811094452,-11.1944027986007,-11.144427786106947,-11.094452773613193,-11.04447776111944,-10.994502748625687,-10.944527736131935,-10.894552723638181,-10.844577711144428,-10.794602698650674,-10.744627686156921,-10.69465267366317,-10.644677661169416,-10.594702648675662,-10.544727636181909,-10.494752623688155,-10.444777611194402,-10.39480259870065,-10.344827586206897,-10.294852573713143,-10.24487756121939,-10.194902548725636,-10.144927536231885,-10.094952523738131,-10.044977511244378,-9.995002498750624,-9.94502748625687,-9.89505247376312,-9.845077461269366,-9.795102448775612,-9.745127436281859,-9.695152423788105,-9.645177411294354,-9.5952023988006,-9.545227386306847,-9.495252373813093,-9.44527736131934,-9.395302348825588,-9.345327336331835,-9.295352323838081,-9.245377311344328,-9.195402298850574,-9.145427286356822,-9.095452273863069,-9.045477261369316,-8.995502248875562,-8.945527236381809,-8.895552223888055,-8.845577211394303,-8.79560219890055,-8.745627186406796,-8.695652173913043,-8.64567716141929,-8.595702148925538,-8.545727136431784,-8.495752123938031,-8.445777111444277,-8.395802098950524,-8.345827086456772,-8.295852073963019,-8.245877061469265,-8.195902048975512,-8.145927036481758,-8.095952023988007,-8.045977011494253,-7.9960019990005,-7.946026986506746,-7.896051974012994,-7.84607696151924,-7.796101949025488,-7.746126936531734,-7.696151924037981,-7.646176911544228,-7.596201899050475,-7.546226886556721,-7.496251874062969,-7.446276861569215,-7.396301849075463,-7.346326836581709,-7.296351824087956,-7.246376811594203,-7.19640179910045,-7.146426786606697,-7.096451774112944,-7.04647676161919,-6.9965017491254375,-6.946526736631684,-6.896551724137931,-6.846576711644178,-6.796601699150425,-6.746626686656672,-6.6966516741629185,-6.646676661669165,-6.5967016491754125,-6.546726636681659,-6.496751624187906,-6.446776611694153,-6.3968015992003995,-6.346826586706647,-6.296851574212893,-6.246876561719141,-6.196901549225387,-6.146926536731634,-6.096951524237881,-6.046976511744128,-5.997001499250374,-5.947026486756622,-5.897051474262868,-5.847076461769116,-5.797101449275362,-5.747126436781609,-5.697151424287856,-5.647176411794103,-5.59720139930035,-5.547226386806597,-5.497251374312843,-5.447276361819091,-5.397301349325337,-5.347326336831585,-5.297351324337831,-5.247376311844078,-5.197401299350325,-5.147426286856572,-5.097451274362818,-5.047476261869066,-4.997501249375312,-4.94752623688156,-4.897551224387806,-4.847576211894053,-4.7976011994003,-4.747626186906547,-4.697651174412794,-4.6476761619190405,-4.597701149425287,-4.5477261369315345,-4.497751124437781,-4.4477761119440276,-4.397801099450275,-4.3478260869565215,-4.297851074462769,-4.2478760619690155,-4.197901049475262,-4.147926036981509,-4.097951024487756,-4.047976011994003,-3.99800099950025,-3.948025987006497,-3.898050974512744,-3.8480759620189904,-3.7981009495252374,-3.7481259370314843,-3.6981509245377313,-3.648175912043978,-3.598200899550225,-3.548225887056472,-3.4982508745627188,-3.4482758620689653,-3.3983008495752123,-3.3483258370814593,-3.2983508245877062,-3.248375812093953,-3.1984007996001997,-3.1484257871064467,-3.0984507746126937,-3.0484757621189407,-2.998500749625187,-2.948525737131434,-2.898550724637681,-2.848575712143928,-2.798600699650175,-2.7486256871564216,-2.6986506746626686,-2.6486756621689156,-2.5987006496751626,-2.548725637181409,-2.498750624687656,-2.448775612193903,-2.39880059970015,-2.348825587206397,-2.2988505747126435,-2.2488755622188905,-2.1989005497251375,-2.1489255372313845,-2.098950524737631,-2.048975512243878,-1.999000499750125,-1.949025487256372,-1.8990504747626187,-1.8490754622688657,-1.7991004497751124,-1.7491254372813594,-1.6991504247876061,-1.6491754122938531,-1.5992003998000999,-1.5492253873063468,-1.4992503748125936,-1.4492753623188406,-1.3993003498250876,-1.3493253373313343,-1.2993503248375813,-1.249375312343828,-1.199400299850075,-1.1494252873563218,-1.0994502748625687,-1.0494752623688155,-0.9995002498750625,-0.9495252373813093,-0.8995502248875562,-0.8495752123938031,-0.7996001999000499,-0.7496251874062968,-0.6996501749125438,-0.6496751624187906,-0.5997001499250375,-0.5497251374312844,-0.49975012493753124,-0.4497751124437781,-0.39980009995002497,-0.3498250874562719,-0.29985007496251875,-0.24987506246876562,-0.19990004997501248,-0.14992503748125938,-0.09995002498750624,-0.04997501249375312,0.0,0.04997501249375312,0.09995002498750624,0.14992503748125938,0.19990004997501248,0.24987506246876562,0.29985007496251875,0.3498250874562719,0.39980009995002497,0.4497751124437781,0.49975012493753124,0.5497251374312844,0.5997001499250375,0.6496751624187906,0.6996501749125438,0.7496251874062968,0.7996001999000499,0.8495752123938031,0.8995502248875562,0.9495252373813093,0.9995002498750625,1.0494752623688155,1.0994502748625687,1.1494252873563218,1.199400299850075,1.249375312343828,1.2993503248375813,1.3493253373313343,1.3993003498250876,1.4492753623188406,1.4992503748125936,1.5492253873063468,1.5992003998000999,1.6491754122938531,1.6991504247876061,1.7491254372813594,1.7991004497751124,1.8490754622688657,1.8990504747626187,1.949025487256372,1.999000499750125,2.048975512243878,2.098950524737631,2.1489255372313845,2.1989005497251375,2.2488755622188905,2.2988505747126435,2.348825587206397,2.39880059970015,2.448775612193903,2.498750624687656,2.548725637181409,2.5987006496751626,2.6486756621689156,2.6986506746626686,2.7486256871564216,2.798600699650175,2.848575712143928,2.898550724637681,2.948525737131434,2.998500749625187,3.0484757621189407,3.0984507746126937,3.1484257871064467,3.1984007996001997,3.248375812093953,3.2983508245877062,3.3483258370814593,3.3983008495752123,3.4482758620689653,3.4982508745627188,3.548225887056472,3.598200899550225,3.648175912043978,3.6981509245377313,3.7481259370314843,3.7981009495252374,3.8480759620189904,3.898050974512744,3.948025987006497,3.99800099950025,4.047976011994003,4.097951024487756,4.147926036981509,4.197901049475262,4.2478760619690155,4.297851074462769,4.3478260869565215,4.397801099450275,4.4477761119440276,4.497751124437781,4.5477261369315345,4.597701149425287,4.6476761619190405,4.697651174412794,4.747626186906547,4.7976011994003,4.847576211894053,4.897551224387806,4.94752623688156,4.997501249375312,5.047476261869066,5.097451274362818,5.147426286856572,5.197401299350325,5.247376311844078,5.297351324337831,5.347326336831585,5.397301349325337,5.447276361819091,5.497251374312843,5.547226386806597,5.59720139930035,5.647176411794103,5.697151424287856,5.747126436781609,5.797101449275362,5.847076461769116,5.897051474262868,5.947026486756622,5.997001499250374,6.046976511744128,6.096951524237881,6.146926536731634,6.196901549225387,6.246876561719141,6.296851574212893,6.346826586706647,6.3968015992003995,6.446776611694153,6.496751624187906,6.546726636681659,6.5967016491754125,6.646676661669165,6.6966516741629185,6.746626686656672,6.796601699150425,6.846576711644178,6.896551724137931,6.946526736631684,6.9965017491254375,7.04647676161919,7.096451774112944,7.146426786606697,7.19640179910045,7.246376811594203,7.296351824087956,7.346326836581709,7.396301849075463,7.446276861569215,7.496251874062969,7.546226886556721,7.596201899050475,7.646176911544228,7.696151924037981,7.746126936531734,7.796101949025488,7.84607696151924,7.896051974012994,7.946026986506746,7.9960019990005,8.045977011494253,8.095952023988007,8.145927036481758,8.195902048975512,8.245877061469265,8.295852073963019,8.345827086456772,8.395802098950524,8.445777111444277,8.495752123938031,8.545727136431784,8.595702148925538,8.64567716141929,8.695652173913043,8.745627186406796,8.79560219890055,8.845577211394303,8.895552223888055,8.945527236381809,8.995502248875562,9.045477261369316,9.095452273863069,9.145427286356822,9.195402298850574,9.245377311344328,9.295352323838081,9.345327336331835,9.395302348825588,9.44527736131934,9.495252373813093,9.545227386306847,9.5952023988006,9.645177411294354,9.695152423788105,9.745127436281859,9.795102448775612,9.845077461269366,9.89505247376312,9.94502748625687,9.995002498750624,10.044977511244378,10.094952523738131,10.144927536231885,10.194902548725636,10.24487756121939,10.294852573713143,10.344827586206897,10.39480259870065,10.444777611194402,10.494752623688155,10.544727636181909,10.594702648675662,10.644677661169416,10.69465267366317,10.744627686156921,10.794602698650674,10.844577711144428,10.894552723638181,10.944527736131935,10.994502748625687,11.04447776111944,11.094452773613193,11.144427786106947,11.1944027986007,11.244377811094452,11.294352823588206,11.344327836081959,11.394302848575713,11.444277861069466,11.494252873563218,11.544227886056971,11.594202898550725,11.644177911044478,11.694152923538232,11.744127936031983,11.794102948525737,11.84407796101949,11.894052973513244,11.944027986006997,11.994002998500749,12.043978010994502,12.093953023488256,12.14392803598201,12.193903048475763,12.243878060969514,12.293853073463268,12.343828085957021,12.393803098450775,12.443778110944528,12.493753123438282,12.543728135932033,12.593703148425787,12.64367816091954,12.693653173413294,12.743628185907047,12.793603198400799,12.843578210894552,12.893553223388306,12.94352823588206,12.993503248375813,13.043478260869565,13.093453273363318,13.143428285857071,13.193403298350825,13.243378310844578,13.29335332333833,13.343328335832084,13.393303348325837,13.44327836081959,13.493253373313344,13.543228385807096,13.59320339830085,13.643178410794603,13.693153423288356,13.74312843578211,13.793103448275861,13.843078460769615,13.893053473263368,13.943028485757122,13.993003498250875,14.042978510744629,14.09295352323838,14.142928535732134,14.192903548225887,14.24287856071964,14.292853573213394,14.342828585707146,14.3928035982009,14.442778610694653,14.492753623188406,14.54272863568216,14.592703648175911,14.642678660669665,14.692653673163418,14.742628685657172,14.792603698150925,14.842578710644677,14.89255372313843,14.942528735632184,14.992503748125937,15.04247876061969,15.092453773113442,15.142428785607196,15.19240379810095,15.242378810594703,15.292353823088456,15.342328835582208,15.392303848075962,15.442278860569715,15.492253873063468,15.542228885557222,15.592203898050975,15.642178910544727,15.69215392303848,15.742128935532234,15.792103948025987,15.842078960519741,15.892053973013493,15.942028985507246,15.992003998001,16.041979010494753,16.091954022988507,16.14192903548226,16.191904047976013,16.241879060469763,16.291854072963517,16.34182908545727,16.391804097951024,16.441779110444777,16.49175412293853,16.541729135432284,16.591704147926038,16.64167916041979,16.691654172913545,16.741629185407298,16.791604197901048,16.8415792103948,16.891554222888555,16.94152923538231,16.991504247876062,17.041479260369815,17.09145427286357,17.141429285357322,17.191404297851076,17.24137931034483,17.29135432283858,17.341329335332333,17.391304347826086,17.44127936031984,17.491254372813593,17.541229385307346,17.5912043978011,17.641179410294853,17.691154422788607,17.74112943528236,17.79110444777611,17.841079460269864,17.891054472763617,17.94102948525737,17.991004497751124,18.040979510244878,18.09095452273863,18.140929535232384,18.190904547726138,18.24087956021989,18.290854572713645,18.340829585207395,18.39080459770115,18.4407796101949,18.490754622688655,18.54072963518241,18.590704647676162,18.640679660169916,18.69065467266367,18.740629685157423,18.790604697651176,18.840579710144926,18.89055472263868,18.940529735132433,18.990504747626186,19.04047976011994,19.090454772613693,19.140429785107447,19.1904047976012,19.240379810094954,19.290354822588707,19.340329835082457,19.39030484757621,19.440279860069964,19.490254872563717,19.54022988505747,19.590204897551224,19.640179910044978,19.69015492253873,19.740129935032485,19.79010494752624,19.84007996001999,19.89005497251374,19.940029985007495,19.99000499750125,20.039980009995002,20.089955022488756,20.13993003498251,20.189905047476262,20.239880059970016,20.28985507246377,20.339830084957523,20.389805097451273,20.439780109945026,20.48975512243878,20.539730134932533,20.589705147426287,20.63968015992004,20.689655172413794,20.739630184907547,20.7896051974013,20.839580209895054,20.889555222388804,20.939530234882557,20.98950524737631,21.039480259870064,21.089455272363818,21.13943028485757,21.189405297351325,21.239380309845078,21.28935532233883,21.339330334832585,21.38930534732634,21.43928035982009,21.489255372313842,21.539230384807595,21.58920539730135,21.639180409795102,21.689155422288856,21.73913043478261,21.789105447276363,21.839080459770116,21.88905547226387,21.93903048475762,21.989005497251373,22.038980509745127,22.08895552223888,22.138930534732634,22.188905547226387,22.23888055972014,22.288855572213894,22.338830584707647,22.3888055972014,22.43878060969515,22.488755622188904,22.538730634682658,22.58870564717641,22.638680659670165,22.688655672163918,22.73863068465767,22.788605697151425,22.83858070964518,22.888555722138932,22.938530734632682,22.988505747126435,23.03848075962019,23.088455772113942,23.138430784607696,23.18840579710145,23.238380809595203,23.288355822088956,23.33833083458271,23.388305847076463,23.438280859570217,23.488255872063966,23.53823088455772,23.588205897051473,23.638180909545227,23.68815592203898,23.738130934532734,23.788105947026487,23.83808095952024,23.888055972013994,23.938030984507748,23.988005997001498,24.03798100949525,24.087956021989005,24.137931034482758,24.18790604697651,24.237881059470265,24.28785607196402,24.337831084457772,24.387806096951525,24.43778110944528,24.48775612193903,24.537731134432782,24.587706146926536,24.63768115942029,24.687656171914043,24.737631184407796,24.78760619690155,24.837581209395303,24.887556221889056,24.93753123438281,24.987506246876563,25.037481259370313,25.087456271864067,25.13743128435782,25.187406296851574,25.237381309345327,25.28735632183908,25.337331334332834,25.387306346826588,25.43728135932034,25.487256371814095,25.537231384307844,25.587206396801598,25.63718140929535,25.687156421789105,25.73713143428286,25.787106446776612,25.837081459270365,25.88705647176412,25.937031484257872,25.987006496751626,26.036981509245376,26.08695652173913,26.136931534232883,26.186906546726636,26.23688155922039,26.286856571714143,26.336831584207896,26.38680659670165,26.436781609195403,26.486756621689157,26.53673163418291,26.58670664667666,26.636681659170414,26.686656671664167,26.73663168415792,26.786606696651674,26.836581709145428,26.88655672163918,26.936531734132934,26.986506746626688,27.03648175912044,27.08645677161419,27.136431784107945,27.1864067966017,27.23638180909545,27.286356821589205,27.33633183408296,27.386306846576712,27.436281859070466,27.48625687156422,27.536231884057973,27.586206896551722,27.636181909045476,27.68615692153923,27.736131934032983,27.786106946526736,27.83608195902049,27.886056971514243,27.936031984007997,27.98600699650175,28.035982008995504,28.085957021489257,28.135932033983007,28.18590704647676,28.235882058970514,28.285857071464267,28.33583208395802,28.385807096451774,28.435782108945528,28.48575712143928,28.535732133933035,28.58570714642679,28.635682158920538,28.68565717141429,28.735632183908045,28.7856071964018,28.835582208895552,28.885557221389305,28.93553223388306,28.985507246376812,29.035482258870566,29.08545727136432,29.13543228385807,29.185407296351823,29.235382308845576,29.28535732133933,29.335332333833083,29.385307346326837,29.43528235882059,29.485257371314344,29.535232383808097,29.58520739630185,29.635182408795604,29.685157421289354,29.735132433783107,29.78510744627686,29.835082458770614,29.885057471264368,29.93503248375812,29.985007496251875,30.034982508745628,30.08495752123938,30.134932533733135,30.184907546226885,30.23488255872064,30.284857571214392,30.334832583708145,30.3848075962019,30.434782608695652,30.484757621189406,30.53473263368316,30.584707646176913,30.634682658670666,30.684657671164416,30.73463268365817,30.784607696151923,30.834582708645677,30.88455772113943,30.934532733633183,30.984507746126937,31.03448275862069,31.084457771114444,31.134432783608197,31.18440779610195,31.2343828085957,31.284357821089454,31.334332833583208,31.38430784607696,31.434282858570715,31.484257871064468,31.53423288355822,31.584207896051975,31.63418290854573,31.684157921039482,31.734132933533232,31.784107946026985,31.83408295852074,31.884057971014492,31.934032983508246,31.984007996002,32.03398300849575,32.083958020989506,32.13393303348326,32.18390804597701,32.23388305847077,32.28385807096452,32.33383308345827,32.38380809595203,32.43378310844578,32.48375812093953,32.53373313343328,32.583708145927034,32.63368315842079,32.68365817091454,32.733633183408294,32.78360819590205,32.8335832083958,32.883558220889554,32.93353323338331,32.98350824587706,33.033483258370815,33.08345827086457,33.13343328335832,33.183408295852075,33.23338330834583,33.28335832083958,33.333333333333336,33.38330834582709,33.43328335832084,33.483258370814596,33.53323338330834,33.583208395802096,33.63318340829585,33.6831584207896,33.733133433283356,33.78310844577711,33.83308345827086,33.88305847076462,33.93303348325837,33.983008495752124,34.03298350824588,34.08295852073963,34.132933533233384,34.18290854572714,34.23288355822089,34.282858570714644,34.3328335832084,34.38280859570215,34.432783608195905,34.48275862068966,34.53273363318341,34.58270864567716,34.63268365817091,34.682658670664665,34.73263368315842,34.78260869565217,34.832583708145926,34.88255872063968,34.93253373313343,34.982508745627186,35.03248375812094,35.08245877061469,35.132433783108446,35.1824087956022,35.23238380809595,35.28235882058971,35.33233383308346,35.382308845577214,35.43228385807097,35.48225887056472,35.532233883058474,35.58220889555222,35.632183908045974,35.68215892053973,35.73213393303348,35.782108945527234,35.83208395802099,35.88205897051474,35.932033983008495,35.98200899550225,36.031984007996,36.081959020489755,36.13193403298351,36.18190904547726,36.231884057971016,36.28185907046477,36.33183408295852,36.381809095452276,36.43178410794603,36.48175912043978,36.531734132933536,36.58170914542729,36.631684157921036,36.68165917041479,36.73163418290854,36.7816091954023,36.83158420789605,36.8815592203898,36.93153423288356,36.98150924537731,37.031484257871064,37.08145927036482,37.13143428285857,37.181409295352324,37.23138430784608,37.28135932033983,37.331334332833585,37.38130934532734,37.43128435782109,37.481259370314845,37.5312343828086,37.58120939530235,37.6311844077961,37.68115942028985,37.731134432783605,37.78110944527736,37.83108445777111,37.881059470264866,37.93103448275862,37.98100949525237,38.030984507746126,38.08095952023988,38.13093453273363,38.18090954522739,38.23088455772114,38.28085957021489,38.33083458270865,38.3808095952024,38.430784607696154,38.48075962018991,38.53073463268366,38.580709645177414,38.63068465767117,38.680659670164914,38.73063468265867,38.78060969515242,38.830584707646175,38.88055972013993,38.93053473263368,38.980509745127435,39.03048475762119,39.08045977011494,39.130434782608695,39.18040979510245,39.2303848075962,39.280359820089956,39.33033483258371,39.38030984507746,39.430284857571216,39.48025987006497,39.53023488255872,39.58020989505248,39.63018490754623,39.68015992003998,39.73013493253373,39.78010994502748,39.83008495752124,39.88005997001499,39.930034982508744,39.9800099950025,40.02998500749625,40.079960019990004,40.12993503248376,40.17991004497751,40.229885057471265,40.27986006996502,40.32983508245877,40.379810094952525,40.42978510744628,40.47976011994003,40.529735132433785,40.57971014492754,40.62968515742129,40.679660169915046,40.72963518240879,40.779610194902546,40.8295852073963,40.87956021989005,40.929535232383806,40.97951024487756,41.02948525737131,41.079460269865066,41.12943528235882,41.17941029485257,41.22938530734633,41.27936031984008,41.329335332333834,41.37931034482759,41.42928535732134,41.479260369815094,41.52923538230885,41.5792103948026,41.629185407296355,41.67916041979011,41.72913543228386,41.77911044477761,41.82908545727136,41.879060469765115,41.92903548225887,41.97901049475262,42.028985507246375,42.07896051974013,42.12893553223388,42.178910544727636,42.22888555722139,42.27886056971514,42.328835582208896,42.37881059470265,42.4287856071964,42.478760619690156,42.52873563218391,42.57871064467766,42.62868565717142,42.67866066966517,42.728635682158924,42.77861069465268,42.82858570714642,42.87856071964018,42.92853573213393,42.978510744627684,43.02848575712144,43.07846076961519,43.128435782108944,43.1784107946027,43.22838580709645,43.278360819590205,43.32833583208396,43.37831084457771,43.428285857071465,43.47826086956522,43.52823588205897,43.578210894552726,43.62818590704648,43.67816091954023,43.728135932033986,43.77811094452774,43.828085957021486,43.87806096951524,43.92803598200899,43.978010994502746,44.0279860069965,44.07796101949025,44.12793603198401,44.17791104447776,44.22788605697151,44.27786106946527,44.32783608195902,44.377811094452774,44.42778610694653,44.47776111944028,44.527736131934034,44.57771114442779,44.62768615692154,44.677661169415295,44.72763618190905,44.7776111944028,44.827586206896555,44.8775612193903,44.927536231884055,44.97751124437781,45.02748625687156,45.077461269365315,45.12743628185907,45.17741129435282,45.227386306846576,45.27736131934033,45.32733633183408,45.377311344327836,45.42728635682159,45.47726136931534,45.5272363818091,45.57721139430285,45.6271864067966,45.67716141929036,45.72713643178411,45.777111444277864,45.82708645677162,45.877061469265364,45.92703648175912,45.97701149425287,46.026986506746624,46.07696151924038,46.12693653173413,46.176911544227885,46.22688655672164,46.27686156921539,46.326836581709145,46.3768115942029,46.42678660669665,46.476761619190405,46.52673663168416,46.57671164417791,46.626686656671666,46.67666166916542,46.72663668165917,46.776611694152926,46.82658670664668,46.87656171914043,46.92653673163418,46.97651174412793,47.026486756621686,47.07646176911544,47.12643678160919,47.17641179410295,47.2263868065967,47.276361819090454,47.32633683158421,47.37631184407796,47.426286856571714,47.47626186906547,47.52623688155922,47.576211894052975,47.62618690654673,47.67616191904048,47.726136931534235,47.77611194402799,47.82608695652174,47.876061969015495,47.92603698150925,47.976011994002995,48.02598700649675,48.0759620189905,48.125937031484256,48.17591204397801,48.22588705647176,48.275862068965516,48.32583708145927,48.37581209395302,48.425787106446776,48.47576211894053,48.52573713143428,48.57571214392804,48.62568715642179,48.675662168915544,48.7256371814093,48.77561219390305,48.825587206396804,48.87556221889056,48.92553723138431,48.97551224387806,49.02548725637181,49.075462268865564,49.12543728135932,49.17541229385307,49.225387306346825,49.27536231884058,49.32533733133433,49.375312343828085,49.42528735632184,49.47526236881559,49.525237381309346,49.5752123938031,49.62518740629685,49.675162418790606,49.72513743128436,49.77511244377811,49.825087456271866,49.87506246876562,49.92503748125937,49.97501249375313,50.02498750624687,50.07496251874063,50.12493753123438,50.174912543728134,50.22488755622189,50.27486256871564,50.324837581209394,50.37481259370315,50.4247876061969,50.474762618690654,50.52473763118441,50.57471264367816,50.624687656171915,50.67466266866567,50.72463768115942,50.774612693653175,50.82458770614693,50.87456271864068,50.924537731134436,50.97451274362819,51.02448775612194,51.07446276861569,51.12443778110944,51.174412793603196,51.22438780609695,51.2743628185907,51.324337831084456,51.37431284357821,51.42428785607196,51.47426286856572,51.52423788105947,51.574212893553224,51.62418790604698,51.67416291854073,51.724137931034484,51.77411294352824,51.82408795602199,51.874062968515744,51.9240379810095,51.97401299350325,52.023988005997005,52.07396301849075,52.123938030984505,52.17391304347826,52.22388805597201,52.273863068465765,52.32383808095952,52.37381309345327,52.423788105947025,52.47376311844078,52.52373813093453,52.573713143428286,52.62368815592204,52.67366316841579,52.723638180909546,52.7736131934033,52.82358820589705,52.87356321839081,52.92353823088456,52.973513243378314,53.02348825587207,53.07346326836582,53.12343828085957,53.17341329335332,53.223388305847074,53.27336331834083,53.32333833083458,53.373313343328334,53.42328835582209,53.47326336831584,53.523238380809595,53.57321339330335,53.6231884057971,53.673163418290855,53.72313843078461,53.77311344327836,53.823088455772115,53.87306346826587,53.92303848075962,53.973013493253376,54.02298850574713,54.07296351824088,54.122938530734636,54.17291354322838,54.222888555722136,54.27286356821589,54.32283858070964,54.3728135932034,54.42278860569715,54.4727636181909,54.52273863068466,54.57271364317841,54.622688655672164,54.67266366816592,54.72263868065967,54.772613693153424,54.82258870564718,54.87256371814093,54.922538730634685,54.97251374312844,55.02248875562219,55.072463768115945,55.1224387806097,55.172413793103445,55.2223888055972,55.27236381809095,55.322338830584705,55.37231384307846,55.42228885557221,55.472263868065966,55.52223888055972,55.57221389305347,55.622188905547226,55.67216391804098,55.72213893053473,55.77211394302849,55.82208895552224,55.87206396801599,55.92203898050975,55.9720139930035,56.021989005497254,56.07196401799101,56.12193903048476,56.171914042978514,56.22188905547226,56.271864067966014,56.32183908045977,56.37181409295352,56.421789105447274,56.47176411794103,56.52173913043478,56.571714142928535,56.62168915542229,56.67166416791604,56.721639180409795,56.77161419290355,56.8215892053973,56.871564217891056,56.92153923038481,56.97151424287856,57.021489255372316,57.07146426786607,57.12143928035982,57.17141429285358,57.22138930534732,57.271364317841076,57.32133933033483,57.37131434282858,57.42128935532234,57.47126436781609,57.521239380309844,57.5712143928036,57.62118940529735,57.671164417791104,57.72113943028486,57.77111444277861,57.821089455272364,57.87106446776612,57.92103948025987,57.971014492753625,58.02098950524738,58.07096451774113,58.120939530234885,58.17091454272864,58.22088955522239,58.27086456771614,58.32083958020989,58.370814592703645,58.4207896051974,58.47076461769115,58.520739630184906,58.57071464267866,58.62068965517241,58.670664667666166,58.72063968015992,58.77061469265367,58.82058970514743,58.87056471764118,58.920539730134934,58.97051474262869,59.02048975512244,59.070464767616194,59.12043978010995,59.1704147926037,59.220389805097454,59.27036481759121,59.320339830084954,59.37031484257871,59.42028985507246,59.470264867566215,59.52023988005997,59.57021489255372,59.620189905047475,59.67016491754123,59.72013993003498,59.770114942528735,59.82008995502249,59.87006496751624,59.920039980009996,59.97001499250375,60.0199900049975,60.069965017491256,60.11994002998501,60.16991504247876,60.21989005497252,60.26986506746627,60.31984007996002,60.36981509245377,60.41979010494752,60.46976511744128,60.51974012993503,60.569715142428784,60.61969015492254,60.66966516741629,60.719640179910044,60.7696151924038,60.81959020489755,60.869565217391305,60.91954022988506,60.96951524237881,61.019490254872565,61.06946526736632,61.11944027986007,61.169415292353825,61.21939030484758,61.26936531734133,61.319340329835086,61.36931534232883,61.419290354822586,61.46926536731634,61.51924037981009,61.569215392303846,61.6191904047976,61.66916541729135,61.71914042978511,61.76911544227886,61.81909045477261,61.86906546726637,61.91904047976012,61.969015492253874,62.01899050474763,62.06896551724138,62.118940529735134,62.16891554222889,62.21889055472264,62.268865567216395,62.31884057971015,62.3688155922039,62.41879060469765,62.4687656171914,62.518740629685155,62.56871564217891,62.61869065467266,62.668665667166415,62.71864067966017,62.76861569215392,62.818590704647676,62.86856571714143,62.91854072963518,62.968515742128936,63.01849075462269,63.06846576711644,63.1184407796102,63.16841579210395,63.2183908045977,63.26836581709146,63.31834082958521,63.368315842078964,63.41829085457271,63.468265867066464,63.51824087956022,63.56821589205397,63.618190904547724,63.66816591704148,63.71814092953523,63.768115942028984,63.81809095452274,63.86806596701649,63.918040979510245,63.968015992004,64.01799100449774,64.0679660169915,64.11794102948525,64.16791604197901,64.21789105447276,64.26786606696652,64.31784107946027,64.36781609195403,64.41779110444777,64.46776611694153,64.51774112943528,64.56771614192904,64.61769115442279,64.66766616691655,64.7176411794103,64.76761619190405,64.8175912043978,64.86756621689156,64.91754122938531,64.96751624187905,65.01749125437281,65.06746626686656,65.11744127936032,65.16741629185407,65.21739130434783,65.26736631684157,65.31734132933533,65.36731634182908,65.41729135432284,65.46726636681659,65.51724137931035,65.5672163918041,65.61719140429786,65.6671664167916,65.71714142928536,65.76711644177911,65.81709145427287,65.86706646676662,65.91704147926038,65.96701649175412,66.01699150424787,66.06696651674163,66.11694152923538,66.16691654172914,66.21689155422288,66.26686656671664,66.31684157921039,66.36681659170415,66.4167916041979,66.46676661669166,66.5167416291854,66.56671664167916,66.61669165417291,66.66666666666667,66.71664167916042,66.76661669165418,66.81659170414792,66.86656671664169,66.91654172913543,66.96651674162919,67.01649175412294,67.06646676661668,67.11644177911045,67.16641679160419,67.21639180409795,67.2663668165917,67.31634182908546,67.3663168415792,67.41629185407297,67.46626686656671,67.51624187906047,67.56621689155422,67.61619190404798,67.66616691654173,67.71614192903549,67.76611694152923,67.816091954023,67.86606696651674,67.9160419790105,67.96601699150425,68.01599200399801,68.06596701649175,68.1159420289855,68.16591704147926,68.21589205397301,68.26586706646677,68.31584207896051,68.36581709145428,68.41579210394802,68.46576711644178,68.51574212893553,68.56571714142929,68.61569215392304,68.6656671664168,68.71564217891054,68.7656171914043,68.81559220389805,68.86556721639181,68.91554222888556,68.96551724137932,69.01549225387306,69.06546726636682,69.11544227886057,69.16541729135432,69.21539230384808,69.26536731634182,69.31534232883558,69.36531734132933,69.41529235382309,69.46526736631684,69.5152423788106,69.56521739130434,69.6151924037981,69.66516741629185,69.71514242878561,69.76511744127936,69.81509245377312,69.86506746626686,69.91504247876063,69.96501749125437,70.01499250374813,70.06496751624188,70.11494252873563,70.16491754122939,70.21489255372313,70.26486756621689,70.31484257871064,70.3648175912044,70.41479260369815,70.4647676161919,70.51474262868565,70.56471764117941,70.61469265367316,70.66466766616692,70.71464267866067,70.76461769115443,70.81459270364817,70.86456771614193,70.91454272863568,70.96451774112944,71.01449275362319,71.06446776611695,71.1144427786107,71.16441779110444,71.2143928035982,71.26436781609195,71.31434282858571,71.36431784107945,71.41429285357322,71.46426786606696,71.51424287856072,71.56421789105447,71.61419290354823,71.66416791604198,71.71414292853574,71.76411794102948,71.81409295352324,71.86406796601699,71.91404297851075,71.9640179910045,72.01399300349826,72.063968015992,72.11394302848576,72.16391804097951,72.21389305347326,72.26386806596702,72.31384307846076,72.36381809095452,72.41379310344827,72.46376811594203,72.51374312843578,72.56371814092954,72.61369315342328,72.66366816591704,72.71364317841079,72.76361819090455,72.8135932033983,72.86356821589206,72.9135432283858,72.96351824087957,73.01349325337331,73.06346826586707,73.11344327836082,73.16341829085458,73.21339330334833,73.26336831584207,73.31334332833583,73.36331834082958,73.41329335332334,73.46326836581709,73.51324337831085,73.5632183908046,73.61319340329835,73.6631684157921,73.71314342828586,73.7631184407796,73.81309345327337,73.86306846576711,73.91304347826087,73.96301849075462,74.01299350324838,74.06296851574213,74.11294352823589,74.16291854072963,74.2128935532234,74.26286856571714,74.31284357821089,74.36281859070465,74.4127936031984,74.46276861569216,74.5127436281859,74.56271864067966,74.61269365317341,74.66266866566717,74.71264367816092,74.76261869065468,74.81259370314842,74.86256871564218,74.91254372813593,74.96251874062969,75.01249375312344,75.0624687656172,75.11244377811094,75.1624187906047,75.21239380309845,75.2623688155922,75.31234382808596,75.3623188405797,75.41229385307346,75.46226886556721,75.51224387806097,75.56221889055472,75.61219390304848,75.66216891554222,75.71214392803599,75.76211894052973,75.81209395302349,75.86206896551724,75.912043978011,75.96201899050475,76.0119940029985,76.06196901549225,76.11194402798601,76.16191904047976,76.21189405297352,76.26186906546727,76.31184407796101,76.36181909045477,76.41179410294852,76.46176911544228,76.51174412793603,76.56171914042979,76.61169415292353,76.6616691654173,76.71164417791104,76.7616191904048,76.81159420289855,76.86156921539231,76.91154422788605,76.96151924037981,77.01149425287356,77.06146926536732,77.11144427786107,77.16141929035483,77.21139430284857,77.26136931534234,77.31134432783608,77.36131934032983,77.41129435282359,77.46126936531734,77.5112443778111,77.56121939030484,77.6111944027986,77.66116941529235,77.71114442778611,77.76111944027986,77.81109445277362,77.86106946526736,77.91104447776112,77.96101949025487,78.01099450274863,78.06096951524238,78.11094452773614,78.16091954022988,78.21089455272364,78.26086956521739,78.31084457771115,78.3608195902049,78.41079460269864,78.4607696151924,78.51074462768615,78.56071964017991,78.61069465267366,78.66066966516742,78.71064467766116,78.76061969015493,78.81059470264867,78.86056971514243,78.91054472763618,78.96051974012994,79.01049475262369,79.06046976511745,79.11044477761119,79.16041979010495,79.2103948025987,79.26036981509246,79.3103448275862,79.36031984007997,79.41029485257371,79.46026986506746,79.51024487756122,79.56021989005497,79.61019490254873,79.66016991504247,79.71014492753623,79.76011994002998,79.81009495252374,79.86006996501749,79.91004497751125,79.960019990005,80.00999500249875,80.0599700149925,80.10994502748626,80.15992003998001,80.20989505247377,80.25987006496752,80.30984507746128,80.35982008995502,80.40979510244878,80.45977011494253,80.50974512743628,80.55972013993004,80.60969515242378,80.65967016491754,80.70964517741129,80.75962018990505,80.8095952023988,80.85957021489256,80.9095452273863,80.95952023988006,81.00949525237381,81.05947026486757,81.10944527736132,81.15942028985508,81.20939530234882,81.25937031484258,81.30934532733633,81.35932033983009,81.40929535232384,81.45927036481758,81.50924537731134,81.55922038980509,81.60919540229885,81.6591704147926,81.70914542728636,81.7591204397801,81.80909545227387,81.85907046476761,81.90904547726137,81.95902048975512,82.00899550224888,82.05897051474263,82.10894552723639,82.15892053973013,82.2088955522239,82.25887056471764,82.3088455772114,82.35882058970515,82.40879560219891,82.45877061469265,82.5087456271864,82.55872063968016,82.6086956521739,82.65867066466767,82.70864567716141,82.75862068965517,82.80859570214892,82.85857071464268,82.90854572713643,82.95852073963019,83.00849575212393,83.0584707646177,83.10844577711144,83.1584207896052,83.20839580209895,83.25837081459271,83.30834582708646,83.35832083958022,83.40829585207396,83.45827086456772,83.50824587706147,83.55822088955522,83.60819590204898,83.65817091454272,83.70814592703648,83.75812093953023,83.80809595202399,83.85807096451774,83.9080459770115,83.95802098950524,84.007996001999,84.05797101449275,84.10794602698651,84.15792103948026,84.20789605197402,84.25787106446776,84.30784607696152,84.35782108945527,84.40779610194903,84.45777111444278,84.50774612693654,84.55772113943029,84.60769615192403,84.65767116441779,84.70764617691154,84.7576211894053,84.80759620189905,84.8575712143928,84.90754622688655,84.95752123938031,85.00749625187406,85.05747126436782,85.10744627686157,85.15742128935533,85.20739630184907,85.25737131434283,85.30734632683658,85.35732133933034,85.40729635182409,85.45727136431785,85.5072463768116,85.55722138930535,85.6071964017991,85.65717141429285,85.70714642678661,85.75712143928035,85.80709645177411,85.85707146426786,85.90704647676162,85.95702148925537,86.00699650174913,86.05697151424287,86.10694652673664,86.15692153923038,86.20689655172414,86.25687156421789,86.30684657671165,86.3568215892054,86.40679660169916,86.4567716141929,86.50674662668666,86.55672163918041,86.60669665167416,86.65667166416792,86.70664667666166,86.75662168915542,86.80659670164917,86.85657171414293,86.90654672663668,86.95652173913044,87.00649675162418,87.05647176411794,87.10644677661169,87.15642178910545,87.2063968015992,87.25637181409296,87.3063468265867,87.35632183908046,87.40629685157421,87.45627186406797,87.50624687656172,87.55622188905548,87.60619690154923,87.65617191404297,87.70614692653673,87.75612193903048,87.80609695152424,87.85607196401799,87.90604697651175,87.95602198900549,88.00599700149925,88.055972013993,88.10594702648676,88.1559220389805,88.20589705147427,88.25587206396801,88.30584707646177,88.35582208895552,88.40579710144928,88.45577211394303,88.50574712643679,88.55572213893053,88.6056971514243,88.65567216391804,88.70564717641179,88.75562218890555,88.8055972013993,88.85557221389305,88.9055472263868,88.95552223888056,89.00549725137431,89.05547226386807,89.10544727636182,89.15542228885558,89.20539730134932,89.25537231384308,89.30534732633683,89.35532233883059,89.40529735132434,89.4552723638181,89.50524737631184,89.5552223888056,89.60519740129935,89.65517241379311,89.70514742628686,89.7551224387806,89.80509745127436,89.85507246376811,89.90504747626187,89.95502248875562,90.00499750124938,90.05497251374312,90.10494752623688,90.15492253873063,90.20489755122439,90.25487256371814,90.3048475762119,90.35482258870564,90.4047976011994,90.45477261369315,90.50474762618691,90.55472263868066,90.60469765117442,90.65467266366817,90.70464767616193,90.75462268865567,90.80459770114942,90.85457271364318,90.90454772613693,90.95452273863069,91.00449775112443,91.0544727636182,91.10444777611194,91.1544227886057,91.20439780109945,91.2543728135932,91.30434782608695,91.35432283858071,91.40429785107446,91.45427286356822,91.50424787606197,91.55422288855573,91.60419790104947,91.65417291354323,91.70414792603698,91.75412293853073,91.80409795102449,91.85407296351823,91.904047976012,91.95402298850574,92.0039980009995,92.05397301349325,92.10394802598701,92.15392303848076,92.20389805097452,92.25387306346826,92.30384807596202,92.35382308845577,92.40379810094953,92.45377311344328,92.50374812593704,92.55372313843078,92.60369815092454,92.65367316341829,92.70364817591205,92.7536231884058,92.80359820089954,92.8535732133933,92.90354822588705,92.95352323838081,93.00349825087456,93.05347326336832,93.10344827586206,93.15342328835582,93.20339830084957,93.25337331334333,93.30334832583708,93.35332333833084,93.40329835082458,93.45327336331835,93.50324837581209,93.55322338830585,93.6031984007996,93.65317341329336,93.7031484257871,93.75312343828087,93.80309845077461,93.85307346326836,93.90304847576212,93.95302348825587,94.00299850074963,94.05297351324337,94.10294852573713,94.15292353823088,94.20289855072464,94.25287356321839,94.30284857571215,94.3528235882059,94.40279860069965,94.4527736131934,94.50274862568716,94.55272363818091,94.60269865067467,94.65267366316841,94.70264867566218,94.75262368815592,94.80259870064968,94.85257371314343,94.90254872563717,94.95252373813094,95.00249875062468,95.05247376311844,95.10244877561219,95.15242378810595,95.2023988005997,95.25237381309346,95.3023488255872,95.35232383808096,95.40229885057471,95.45227386306847,95.50224887556222,95.55222388805598,95.60219890054972,95.65217391304348,95.70214892553723,95.75212393803099,95.80209895052474,95.8520739630185,95.90204897551224,95.95202398800599,96.00199900049975,96.0519740129935,96.10194902548726,96.151924037981,96.20189905047476,96.25187406296851,96.30184907546227,96.35182408795602,96.40179910044978,96.45177411294353,96.50174912543729,96.55172413793103,96.60169915042479,96.65167416291854,96.7016491754123,96.75162418790605,96.8015992003998,96.85157421289355,96.90154922538731,96.95152423788106,97.0014992503748,97.05147426286857,97.10144927536231,97.15142428785607,97.20139930034982,97.25137431284358,97.30134932533733,97.35132433783109,97.40129935032483,97.4512743628186,97.50124937531234,97.5512243878061,97.60119940029985,97.65117441279361,97.70114942528735,97.75112443778112,97.80109945027486,97.85107446276862,97.90104947526237,97.95102448775611,98.00099950024988,98.05097451274362,98.10094952523738,98.15092453773113,98.20089955022489,98.25087456271864,98.3008495752124,98.35082458770614,98.4007996001999,98.45077461269365,98.50074962518741,98.55072463768116,98.60069965017492,98.65067466266866,98.70064967516242,98.75062468765617,98.80059970014993,98.85057471264368,98.90054972513744,98.95052473763118,99.00049975012493,99.05047476261869,99.10044977511244,99.1504247876062,99.20039980009994,99.2503748125937,99.30034982508745,99.35032483758121,99.40029985007496,99.45027486256872,99.50024987506247,99.55022488755623,99.60019990004997,99.65017491254373,99.70014992503748,99.75012493753124,99.80009995002499,99.85007496251875,99.9000499750125,99.95002498750625,100.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json index 660bd264e972..f39775fcbab2 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json @@ -1 +1 @@ -{"expected":[0.01,-0.0033746253790549624,-0.007622018879319136,0.008433494207046853,0.001889004559574384,-0.00959763287124854,0.0045548640918855405,0.00643775365526481,-0.008809666729723751,-0.000468327621357804,0.009021878600127204,-0.005574489042175532,-0.005188845438344393,0.008984167322636266,-0.0008822361340235784,-0.008293387424072578,0.006423300008544533,0.00390249149724315,-0.00896491048167861,0.0021410030233847974,0.007434361161677098,-0.0070945391115908776,-0.002605153786703288,0.0087627445091276,-0.003288961215575298,-0.006468148173580897,0.007584861802057748,0.001322173628641932,-0.008391166572328667,0.004309966210916445,0.005418829024186577,-0.007894256760515254,-0.00007741137080101638,0.00786600339799083,-0.005190888286691567,-0.004310799964470551,0.008025916288409504,-0.0011070829665529621,-0.00720506320694166,0.0059217096985319595,0.0031683612909959584,-0.007986059728650302,0.002211362742764597,0.006427764980119337,-0.006495570438395232,-0.002015317447555855,0.007783713328832359,-0.003217836901260242,-0.005554751504162455,0.0069087623461371135,0.0008745954285802678,-0.007430450743094688,0.004111477604627807,0.004607492872683843,-0.007160672340873091,0.00023211237554265316,0.006940099051174486,-0.004879980448715341,-0.0036078872171936413,0.007253676467270752,-0.0012846752729141803,-0.006328415747875719,0.005513875305599021,0.002577865411407692,-0.007192987327410233,0.002264816300126859,0.005612742616618405,-0.00600658676302084,-0.00153900633791215,0.006986458278165595,-0.0031563648778605274,-0.004811642742160233,0.006354444046560059,0.0005121690322926351,-0.006644348505237545,0.003945466543090176,0.003944527136917611,-0.006556641214801915,0.00048285236585137326,0.00617905372724083,-0.0046207470221406475,-0.0030312775513807594,0.006615149291794282,-0.0014276454140797585,-0.0056048078272581455,0.005173428759011166,0.002091872012714056,-0.006534582830377916,0.0023054630602133983,0.004937361147319414,-0.005597398884782191,-0.0011460194895600748,0.006322024170613043,-0.003101470027877635,-0.004193641507483116,0.005889228490530021,0.00021280982010589674,-0.005986809356747114,0.003802948422578564,0.0033914042216771465,-0.006048143932118084,0.0006896153286842611,0.005540280292535628,-0.004399459866491001,-0.0025488774753354643,0.006075951734989388,-0.0015443651716269698,-0.004995508238426995,0.0048829622877020395,0.00168440940535812,-0.005976919465789322,0.002336071445060531,0.00436699417707134,-0.005247880329196343,-0.0008161230833134467,0.005757615681360099,-0.003051124871582776,-0.003670351889638602,0.005491129188702045,-0.00003841464759629526,-0.005426712741594785,0.0036778730471761206,0.002921979790357042,-0.005612092537049578,0.000862504886225179,0.004994756869438384,-0.004206777101008821,-0.002138727658395496,0.005612555974717905,-0.001640603793679084,-0.00447391034918115,0.0046305252678440646,0.0013375643846813207,-0.005496598259191423,0.002358580514084293,0.003877671165064496,-0.004944102324323375,-0.0005352527185069069,0.005270443255972866,-0.003003941903847979,-0.003220575689940079,0.005144814658170978,-0.000251963241123376,-0.004942276221088671,0.0035660207544181725,0.002517890234124859,-0.005232271548429072,0.0010086524055568644,0.0045220286015450195,-0.004036124920485116,-0.001785297355488709,0.0052083240203809455,-0.001720467938676326,-0.004021136032862963,0.004407645528211705,0.00103858281312451,-0.005076963386680254,0.002374390930557525,0.003452274611672536,-0.004676123221830755,-0.000293328920583648,0.004844182283096554,-0.0029589426438823055,-0.002829080820353618,0.004839272196996332,-0.0004353801754854635,-0.004517801641045534,0.00346436212758138,0.0021658606757821207,-0.004896962550898842,0.0011332360936159342,0.0041072675988673485,-0.003882746693639497,-0.0014772937632670537,0.004851162237974012,-0.001786961913692683,-0.003623422830336836,0.004208153488994983,0.0007781377996418393,-0.004705840642293678,0.0023845416920389327,0.0030782571544993855,-0.004436661150818149,-0.00008293924808134595,0.004466836450525034,-0.0029154200873884777,-0.0024846425797872,0.00456639129577918,-0.000594244714662356,-0.004141693120882942,0.003370669019868411,0.001856058123530432,-0.004597490347915285,0.0012401078946157153,0.0037394657832780214,-0.003743118961844232,-0.0012063098334202998,0.004532072941424919,-0.001842335860794209,-0.003270503864866559,0.004027453169436672,0.0005492514201438184,-0.004374128830803134,0.0023898217124098888,0.0027462141060571542,-0.004220263892919906,0.0001014892078418608,0.004129395888683835,-0.002872853287528974,-0.002178808909098591,0.004320070339086555,-0.000732772431855468,-0.0038052023601414537,0.0032832688759818953,0.0015810451408781274,-0.004327298885133179,0.0013321936644063676,0.0034102820608713055,-0.003614579152420938,-0.0009659585916019596,0.0042442267481438865,-0.001888309967606561,-0.002954566646910544,0.003862053730280365,0.0003465992716145695,-0.004074890983889265,0.002390842639114913,0.002448959438274671,-0.004022771440620501,0.00026422738837701204,0.0038249653113078845,-0.002830852389397747,-0.001905095542674953,0.004095634147866093,-0.0008542085792722223,-0.003501607823646661,0.0032008843221029396,0.0013350931947516316,-0.004081344613809632,0.0014117568426467166,0.0031132831440029004,-0.003495080560118109,-0.000751301299248045,0.0039823495988200956,-0.0019262233125530552,-0.0026695630035545965,0.0037092590208348468,0.00016604814335501283,-0.003802750032448531,0.00238808774933818,0.0021809095582688387,-0.0038409575222055825,0.0004086038740077174,0.003548180682849912,-0.00278912216160145,-0.0016584460091960713,0.0038894430832158615,-0.0009610928562487279,-0.003225662294979352,0.0031225253816182913,0.0011137192491960006,-0.003855686955326962,0.0014805770200375756,0.0028434296419308706,-0.003383026569449437,-0.0005584593235005616,0.0037423065725655123,-0.0019571353282153824,-0.002410739334022185,0.0035669562592685992,0.000004340463089199634,-0.003553476225131052,0.002381945611343005,0.0019376615497718379,-0.003672284215497602,0.0005372516695656682,0.0032948088333592442,-0.0027474371465572647,-0.0014348600868823633,0.0036986240233832955,-0.0010554420895805701,-0.0029732117153399543,0.003047415214307232,0.0009133652765595503,-0.0036472049859943957,0.0015400738095075364,0.002596719693376865,-0.003277155743961312,-0.0003843443595345254,0.003520812524978191,-0.001981896589820398,-0.0021743092640833387,0.0034334687762567285,-0.0001411261126639814,-0.003323698874081737,0.0023727337708766235,0.0017156978580311923,-0.003514730101806216,0.0006522814102675338,0.0030614664015164317,-0.002705624325836564,-0.0012311324328946071,0.003520881067978818,-0.0011388790574619577,-0.002740926389843438,0.0029749378100310947,0.0007311717760163106,-0.0034533971691657716,0.0015913946155659104,0.0023699365314837134,-0.0031764604545482227,-0.00022646693702463983,0.0033152266358330964,-0.0020011992261728833,-0.001957220756854529,0.0033074512487201294,-0.00027245583099065574,-0.0031107008045504225,0.002360715744923774,0.0015121752946147878,-0.0033666674657802775,0.0007554053700443383,0.00284541857387878,-0.002663550773165199,-0.001044665065235685,0.0033543596961918744,-0.001212725111614123,-0.002526107720106278,0.002904600416141118,0.0005648146273983649,-0.0032722370521445954,0.0016354780062711222,0.002160466254018691,-0.003080128151737152,-0.000082797930510248,0.0031234037829790946,-0.002015613480508536,-0.00175698733817825,0.0031878137718127416,-0.0003913689234629894,-0.002912269083932181,0.0023461134262495863,0.0013247715479915683,-0.003226772947196665,0.0008480278373982253,0.0026444323795080907,-0.002621114694188058,-0.0008733304451363718,0.0031975475558126023,-0.0012780679337996753,-0.0023265468088722987,0.0028360060700229743,0.0004123855362323381,-0.003102067489642725,0.0016731002473195156,0.001966164025988275,-0.002987498252220287,0.00004833328785673103,0.002943585209223255,-0.002025614663560462,-0.0015715637451245235,0.003073665910135281,-0.0004992857952449686,-0.002726584833597506,0.0023291162790907956,0.0011515717076079155,-0.0030939614708402024,0.0009313120391705081,0.0024566680294338806,-0.002578238813341514,-0.000715369914541897,0.0030492008505353272,-0.0013358118795590603,-0.002140419386636313,0.0027688331984681023,0.00027230306044425507,-0.0029415219008097995,0.0017049099941755753,0.0017852543316613596,-0.0028980299980183146,0.00016831488624009116,0.0027743168705652277,-0.0020316033182352874,-0.0013992529276129046,0.002964274848589291,-0.0005973900770956857,-0.0025521406810003954,0.0023098882513615314,0.0009909831370976026,-0.0029673366695994975,0.0010062304166468866,0.002280597264378061,-0.002534865417417635,-0.0005693172763382291,0.0029082889338595324,-0.0013867159137674443,-0.0019662066190262472,0.0027028202465121734,0.00014324546521498255,-0.0027894648250310636,0.001731454512834913,0.0016162555759663638,-0.0028112781592852815,0.0002783101226767328,0.002614387616968737,-0.002033920507690205,-0.001238635550763712,0.002859033660935118,-0.0006866764820938022,-0.002387678084620776,0.0022885730357688917,0.000841670763073588,-0.0028461531856580177,0.0010736028917752718,0.002114941187700384,-0.002490952588011033,-0.0004339405427495209,0.0027739520605998113,-0.0014314225634394463,-0.0018026346487828543,0.0026377539430179966,0.000024099403604626595,-0.0026449464716313343,0.0017531997460879121,0.0014579223699989954,-0.002726874431534224,0.00037930144622244015,0.002462781801289147,-0.0020328595469610695,-0.0010885158914870888,0.0027574369494554997,-0.0007679875735691736,-0.0022321391627136557,0.0022652981196188125,0.000702507285968018,-0.002729787653816416,0.0011341263410876764,0.0019586223638290937,-0.00244647130004073,-0.0003081970043560719,0.002645468786255706,-0.0014704802733878732,-0.0016486278957671848,0.0025734602342109597,-0.00008607976421486678,-0.0025071675622243285,0.0017705458451201643,0.0013092008421668711,-0.002644513025712797,0.0004721246781596627,0.0023186425320669743,-0.002028675104990842,-0.0009478798462329672,0.002659061929424631,-0.0008420423294057347,-0.0020846292530919777,0.0022401779340787444,0.0005725344463660855,-0.002617716117379471,0.0011883975459047247,0.00181072750167585,-0.002401403159898697,-0.0001911981961946872,0.00252223053520494,-0.00150436085260325,-0.0015032725941173384,0.0025097972004579777,-0.00018809898018486252,-0.0023754518425589425,0.0017838393165831475,0.0011691936682461637,-0.0025639393856203506,0.0005574957818355751,0.002181242879348386,-0.002021590337661687,-0.0008158619997894686,0.0025635535866886197,-0.0009094585606012332,-0.0019443875126433023,0.0022133163256927288,0.00045093258457585547,-0.002509496269414901,0.0012369312421345489,0.0016704780892682278,-0.0023557386219282845,-0.00008218230752615857,0.0024037215609318827,-0.001533473223012741,-0.001365788039216979,0.0024466494652647408,-0.0002826519588731703,-0.0022492243779544466,0.0017933826134725838,0.0010371324395297126,-0.002484941265751537,0.0006360320298354078,0.002049963093101947,-0.0020118025292847827,-0.0006917195525119262,0.0024706129178784933,-0.0009707706722735125,-0.0018107636100686472,0.002184808512062205,0.00033699649284626125,-0.002404753355323932,0.0012801744470596899,0.001537207069170819,-0.0023094755667628676,0.000019507746753487322,0.002289503007619787,-0.0015581743520317768,-0.0012355037060267395,0.0023839237396364385,-0.00037033867283502197,-0.0021279942584771353,0.0017994417741892838,0.0009123556323570743,-0.002407341610307096,0.0007082688896385101,0.001924272416723798,-0.001999487592035099,-0.0005748114948746359,0.002379987528811685,-0.0010264438571449548,-0.001683199086011227,0.0021547426407978825,0.00023011609295240612,-0.0023031688829249506,0.0013185179278607563,0.001410340151546865,-0.00226261815632344,0.00011444190350763413,0.0021792001238734966,-0.0015787780180434162,-0.0011118408849488351,0.002321545239227773,-0.00045168099825255704,-0.0020113407007838497,0.0018022525561288292,0.0007942908968153683,-0.0023309928205821405,0.0007746736043426581,0.001803714447662988,-0.0019848036822188407,-0.0004645818368192538,0.0022914640549012346,-0.0010768855293036537,-0.0015612123237860743,0.0021232010403929814,0.0001297608503656892,-0.002204471506490353,0.0013523054543425155,0.0012893807223029292,-0.0022151759024297097,0.0002031171523614491,0.002072491922429874,-0.0015955618922985336,-0.0009942978268588042,0.002259454778879646,-0.0005271353749706217,-0.0018989017911572215,0.0018020253971051474,0.0006824407072985435,-0.0022557721026356748,0.0008356561984161872,0.0016878952618040433,-0.0019678941272325413,-0.00036054599946802374,0.0022048620023513398,-0.001122454603471095,-0.0014443863389041823,0.0020902612296847677,0.0000354671083238826,-0.0021084296094975655,0.0013818413183534276,0.0011738975633771888,-0.002167162901846324,0.0002859690931723308,0.0019691027549326263,-0.0016087733011967177,-0.000882437638330581,0.0021976063975728925,-0.0005971031245060763,-0.0017903653004237641,0.001798949456116054,0.0005763706527763578,-0.0021815776628847307,0.0008915784597268142,0.0015764737099661576,-0.0019488898098829778,-0.0002622796945123937,0.002120028706833092,-0.0011634690778397434,-0.00133235878806569,0.002055996736555064,-0.00005317227695481571,-0.0020148452260280994,0.0014073964858683516,0.0010635147912839954,-0.002118597202116705,0.0003633814063964488,0.0018687953986439004,-0.001618633945617953,-0.0007758783501296758,0.0021359654021759706,-0.0006619389156958006,-0.001685461137567241,0.0017931959250680322,0.0004756998166979747,-0.002108325574690938,0.0009427613181347118,0.0014691534354072185,-0.0019279111220849552,-0.00016940977630202798,0.0020368351781634214,-0.0012002122704387638,-0.0012248137397222571,0.0020204777647040138,-0.0001365164731501839,-0.0019235490254383598,0.001429213661905231,0.0009579035592634622,-0.0020695002709836996,0.00043569366276668194,0.001771365346153946,-0.0016253437895462407,-0.0006742847164405341,0.002074506744423042,-0.0007219577539746244,-0.001583955109401834,0.0017849207587636168,0.0003800928237751474,-0.0020359471799921113,0.0009894909439983504,0.001365676265258973,-0.0019050695742462466,-0.00008160667009977071,0.0019551726527607546,-0.0012329379787893553,-0.0011214748532388037,0.0019837717385284585,-0.00021488374589178938,-0.0018343961478594086,0.0014475114846589161,0.0008567751719113934,-0.0020198965484687923,0.0005032078018533034,0.0016766360593018427,-0.0016290842822227678,-0.0005773614024287887,0.0020132136649767046,-0.0007774407854154982,-0.001485643728726439,0.0017742669373665958,0.00028925322595191566,-0.0019643869206406876,0.001032023817418387,0.0012658167066469663,-0.0018804691274104883,0.0000014219314192059985,0.0018749497155054894,-0.0012618747724836893,-0.0010220996923464246,0.0019459437495293614,-0.0002885573539851103,-0.0017472627252814671,0.0014624880173070333,0.000759875338937036,-0.001969813065372363,0.0005661935363351936,0.0015844550012379893,-0.0016300210419186326,-0.00048484729311842076,0.0019520765530275522,-0.0008286401427992488,-0.0013903498698962624,0.001761366350587126,0.0002029179715772622,-0.0018936005171811343,0.001070590964359338,0.0011693773369627605,-0.0018542073006706367,0.00007993634436630187,0.001796089882737794,-0.001287229582897214,-0.0009264749580346582,0.00190705692264887,-0.000357790488405239,-0.0016620429587037447,0.001474323669667731,0.000666979353589724,-0.001919279115500805,0.0006248928836065682,0.001494690300540488,-0.0016283061020082176,-0.00039651071375081354,0.0018910919809583453,-0.0008757830124216558,-0.0012979191136915354,0.001746341373859158,0.00012085275628620108,-0.001823553430342144,0.0011054015141281398,0.0010761849224576528,-0.0018263760952866859,0.00015416933249647887,0.0017185295610630813,-0.0013091907195737172,-0.0008344124713796399,0.001867172717108242,-0.00042281043082654894,-0.0015786466491034894,0.0014831836541463507,0.000577888026299939,-0.0018683259716293663,0.0006795239841810711,0.0014072279318751814,-0.0016240797990220387,-0.0003121453955687333,0.0018302618820712844,-0.0009190750631916303,-0.0012082166562672975,0.0017293061922154344,0.000042848095910588676,-0.001754219553962642,0.0011366457007577196,0.0009860871336272348,-0.0017970627684170263,0.00022432985947940388,0.001642216314245644,-0.00132793041619937,-0.000745745771673329,0.0018263511733560237,-0.00048382207139291455,-0.001496997100948329,0.0014892200590753374,0.0004924242387303761,-0.0018169866372816674,0.000730284333815972,0.0013219693212437487,-0.0016174723661781761,-0.00023156705474265918,0.0017695928459084888,-0.0009587033508575022,-0.0011211246823503444,0.0017103679163289168,-0.000031284005997565645,-0.0016855800984575933,0.0011644974061324103,0.000898949752385515,-0.0017663504827774893,0.00029060627506083647,0.0015671073840996523,-0.001343606988452282,-0.0006603272222014626,0.0017846511154448806,-0.0005410108975245877,-0.0014170293332391715,0.001492573605985117,0.00041043001032005426,-0.0017652956280132586,0.0007773535310730766,0.0012388293021558306,-0.0016086052833111516,-0.0001546104783725948,0.001709095510765675,-0.0009948387879098184,-0.001036540122601161,0.0016896275264316656,-0.00010171289829495539,-0.0016176226320130786,0.0011891163234524363,0.0008146542866641094,-0.0017343188534058138,0.0003531690319383539,0.0014931684219100807,-0.0013563666699270584,-0.0005780255370831861,0.001742130316358363,-0.0005945455437270626,-0.001338688545766597,0.0014933751444066359,0.0003317639903807079,-0.0017132887771369898,0.0008208956222786434,0.0011577343633633864,-0.001597592424277112,-0.00008112703202977462,0.0016487840369650121,-0.0010276382522176027,-0.0009543727305231596,0.0016671806729632347,-0.0001685917126398524,-0.0015503402530239307,0.0012106498045694487,0.0007330959242867455,-0.0017010444086675823,0.00041217301165898763,0.0014203723952454072,-0.0013663451796973138,-0.0004987236591255881,0.0016988456323976096,-0.000644579975265785,-0.001261928798224407,0.0014917469276472496,0.00025629930533804004,-0.001661003061809122,0.0008610611103393504,0.001078621140041301,-0.0015845410351623059,-0.000010982519468670268,0.001588675647577043,-0.0010572463937182544,-0.0008745434264680063,0.0016431183573983941,-0.00023205945121231676,-0.0014837308722831706,0.0012292344428094005,0.0006541817707338698,-0.0016666009794538096,0.00046775952319143125,0.0013486986416117019,-0.0013736690651118403,-0.00042231693169361435,0.0016548531116204845,-0.0006912553649986834,-0.0011867118677229454,0.0014878037049223778,0.00018392170375762485,-0.0016084764461720084,0.0008979886815637,0.0010014351092189444,-0.0015695525704905507,0.00005594466207552277,0.0015287902257490346,-0.001083797187546618,-0.0007969828659632944,0.0016175275124054767,-0.0002922427865284056,-0.0014177965873931977,0.0012449974334534334,0.0005778293255745284,-0.0016310600279888488,0.0005200580262196091,0.0012781320456142983,-0.0013784568554704394,-0.0003487115180043474,0.0016102080804333118,-0.0007347017119004154,-0.0011130062565073524,0.0014816536588215525,0.00011452795221224462,-0.0015557477388619453,0.0009318066948683035,0.00092612945734861,-0.001552723409721847,0.00011976511736049848,0.001469149959770467,-0.0011074152733014948,-0.0007216301972786769,0.0015904914970633767,-0.0003492576182697266,-0.0013525431350203407,0.001258057746515065,0.0005039651604261612,-0.0015944909256388486,0.0005691876218907034,0.0012086623204786548,-0.0013808200558933436,-0.0002778230295433546,0.0015649652117235575,-0.0007750392411754451,0.0010407863267157488,0.0014733992119670871,0.000048024443351710324,-0.0015028564626857373,0.0009626344698868147,0.000852664093594242,-0.0015341454724189692,0.0001805798375757076,0.0014097790285858799,-0.0011282171131553429,-0.0006484319793394448,0.0015620905201192293,-0.00040321042418424126,-0.0012879794091582,0.0012685271403792076,0.00043252376782482155,-0.0015569611874856634,0.0006152583463028969,0.001140283378138452,-0.001380864005588963,-0.00020957533199357617,0.0015191785773452852,-0.0008123796189423287,-0.0009700315430348592,0.0014631377225859693,-0.00001567401574594861,-0.001449842734661874,0.0009905834041994542,0.0007810047870022233,-0.0015139067472927914,0.00023848140533292832,0.0013507033217300011,-0.0011463119959027066,-0.0005773412360600683,0.0015324020020463702,-0.0004541994357349061,-0.0012241170356022742,0.0012765110399913272,0.00036344655563969773,-0.0015185366701156824,0.000658372295973902,0.0010729927747985181,-0.0013786886206157503,-0.0001438995024424062,0.0014729016873054363,-0.0008468270088493829,-0.0009007258073856401,0.001450962085384556,-0.00007664526144318761,-0.0013967471549453294,0.0010157579447764558,0.0007111224094082552,-0.0014920917477833327,0.00029355504647752005,0.001291950188696457,-0.0011618029094674707,-0.0005083166272211274,0.0015015008848669618,-0.0005023156640160524,-0.0011609699945040115,0.0012821092993090522,0.00029668096591077206,-0.0014792817380055517,0.000698624609657607,0.0010067912210918668,-0.0013743890378763429,-0.00008073291603006744,0.001426187517618761,-0.0008784789934285954,-0.0008328568724236371,0.0014369612513953334,-0.00013496069974191892,-0.0013436107034079628,0.0010382564345878728,0.0006429922689646879,-0.001468781904744373,0.0003458795506288721,0.0012335482135821156,-0.0011747873006891063,-0.0004413217192995347,0.0014694598972368577,-0.0005476437972705667,-0.0010985542842111163,0.0012854168645082713,0.00023217970047962564,-0.0014392594030160633,0.0007361043268706108,0.0009416821477331841,-0.0013680561743604513,-0.00002001844377637972,0.0013790885284927176,-0.0009074273792894457,-0.0007664158227911079,0.0014212206782551482,-0.00019068611930432298,-0.0012904746428634454,0.0010581718519219556,0.0005765935216221548,-0.0014440559051002789,0.00039552807880841544,0.0011755270115402297,-0.0011853577381613707,-0.0003763243423359188,0.0014363497810923871,-0.0005902629878833201,-0.001036887620716606,0.001286524351779206,0.00016990003861119102,-0.0013985314407912817,0.0007708951402235772,0.0008776713190505759,-0.0013597772134087674,0.0000382962537624602,0.0013316566742453079,-0.0009337589021888669, -0.0007013966148476759,0.0014038227205496864,-0.0002438824068503528,-0.0012373804280933014,0.0010755924571681343,0.0005119086499337978,-0.0014179899839424565,0.00044256887361214276,0.0011179170441275007,-0.0011936024914151245,-0.00031329602114924806,0.001402239485171366,-0.000630247543915065,-0.0009759891679376904,0.001285518551373567,0.00010980323415663845],"x":[100.0,100.60925648702595,101.21851297405189,101.82776946107785,102.4370259481038,103.04628243512974,103.65553892215569,104.26479540918163,104.87405189620759,105.48330838323353,106.09256487025948,106.70182135728543,107.31107784431137,107.92033433133733,108.52959081836327,109.13884730538922,109.74810379241517,110.35736027944112,110.96661676646707,111.57587325349301,112.18512974051896,112.7943862275449,113.40364271457086,114.01289920159681,114.62215568862275,115.2314121756487,115.84066866267464,116.4499251497006,117.05918163672655,117.6684381237525,118.27769461077844,118.88695109780438,119.49620758483034,120.10546407185629,120.71472055888223,121.32397704590818,121.93323353293412,122.54249001996008,123.15174650698603,123.76100299401197,124.37025948103792,124.97951596806388,125.58877245508982,126.19802894211577,126.80728542914171,127.41654191616766,128.02579840319362,128.63505489021955,129.2443113772455,129.85356786427147,130.4628243512974,131.07208083832336,131.6813373253493,132.29059381237525,132.8998502994012,133.50910678642714,134.1183632734531,134.72761976047903,135.336876247505,135.94613273453095,136.55538922155688,137.16464570858284,137.77390219560877,138.38315868263473,138.9924151696607,139.60167165668662,140.21092814371258,140.8201846307385,141.42944111776447,142.03869760479043,142.64795409181636,143.25721057884232,143.86646706586825,144.4757235528942,145.08498003992017,145.6942365269461,146.30349301397206,146.91274950099802,147.52200598802395,148.1312624750499,148.74051896207584,149.3497754491018,149.95903193612776,150.5682884231537,151.17754491017965,151.78680139720558,152.39605788423154,153.0053143712575,153.61457085828343,154.2238273453094,154.83308383233532,155.44234031936128,156.05159680638724,156.66085329341317,157.27010978043913,157.87936626746506,158.48862275449102,159.09787924151698,159.7071357285429,160.31639221556887,160.9256487025948,161.53490518962076,162.14416167664672,162.75341816367265,163.3626746506986,163.97193113772454,164.5811876247505,165.19044411177646,165.7997005988024,166.40895708582835,167.01821357285428,167.62747005988024,168.2367265469062,168.84598303393213,169.4552395209581,170.06449600798402,170.67375249500998,171.28300898203594,171.89226546906187,172.50152195608783,173.11077844311376,173.72003493013972,174.32929141716568,174.9385479041916,175.54780439121757,176.1570608782435,176.76631736526946,177.37557385229542,177.98483033932135,178.5940868263473,179.20334331337327,179.8125998003992,180.42185628742516,181.0311127744511,181.64036926147705,182.249625748503,182.85888223552894,183.4681387225549,184.07739520958083,184.6866516966068,185.29590818363275,185.90516467065868,186.51442115768464,187.12367764471057,187.73293413173653,188.3421906187625,188.95144710578842,189.56070359281438,190.1699600798403,190.77921656686627,191.38847305389223,191.99772954091816,192.60698602794412,193.21624251497005,193.825499001996,194.43475548902197,195.0440119760479,195.65326846307386,196.2625249500998,196.87178143712575,197.4810379241517,198.09029441117764,198.6995508982036,199.30880738522953,199.9180638722555,200.52732035928145,201.13657684630738,201.74583333333334,202.35508982035927,202.96434630738523,203.5736027944112,204.18285928143712,204.79211576846308,205.401372255489,206.01062874251497,206.61988522954093,207.22914171656686,207.83839820359282,208.44765469061878,209.0569111776447,209.66616766467067,210.2754241516966,210.88468063872256,211.49393712574852,212.10319361277445,212.7124500998004,213.32170658682634,213.9309630738523,214.54021956087826,215.1494760479042,215.75873253493015,216.36798902195608,216.97724550898204,217.586501996008,218.19575848303393,218.8050149700599,219.41427145708582,220.02352794411178,220.63278443113774,221.24204091816367,221.85129740518963,222.46055389221556,223.06981037924152,223.67906686626748,224.2883233532934,224.89757984031937,225.5068363273453,226.11609281437126,226.72534930139722,227.33460578842315,227.9438622754491,228.55311876247504,229.162375249501,229.77163173652696,230.3808882235529,230.99014471057885,231.59940119760478,232.20865768463074,232.8179141716567,233.42717065868263,234.0364271457086,234.64568363273452,235.25494011976048,235.86419660678644,236.47345309381237,237.08270958083833,237.69196606786429,238.30122255489022,238.91047904191618,239.5197355289421,240.12899201596807,240.73824850299403,241.34750499001996,241.95676147704592,242.56601796407185,243.1752744510978,243.78453093812377,244.3937874251497,245.00304391217566,245.6123003992016,246.22155688622755,246.8308133732535,247.44006986027944,248.0493263473054,248.65858283433133,249.2678393213573,249.87709580838325,250.48635229540918,251.09560878243514,251.70486526946107,252.31412175648703,252.92337824351299,253.53263473053892,254.14189121756488,254.7511477045908,255.36040419161677,255.96966067864273,256.57891716566866,257.1881736526946,257.7974301397206,258.40668662674653,259.01594311377244,259.6251996007984,260.23445608782436,260.8437125748503,261.4529690618763,262.0622255489022,262.67148203592814,263.2807385229541,263.88999500998005,264.499251497006,265.1085079840319,265.7177644710579,266.32702095808384,266.9362774451098,267.54553393213575,268.15479041916166,268.7640469061876,269.3733033932136,269.98255988023953,270.5918163672655,271.2010728542914,271.81032934131736,272.4195858283433,273.0288423153693,273.63809880239523,274.24735528942114,274.8566117764471,275.46586826347306,276.075124750499,276.684381237525,277.2936377245509,277.90289421157684,278.5121506986028,279.12140718562875,279.7306636726547,280.3399201596806,280.9491766467066,281.55843313373254,282.1676896207585,282.77694610778445,283.38620259481036,283.9954590818363,284.6047155688623,285.21397205588823,285.8232285429142,286.4324850299401,287.04174151696606,287.650998003992,288.260254491018,288.86951097804393,289.47876746506984,290.0880239520958,290.69728043912176,291.3065369261477,291.9157934131737,292.5250499001996,293.13430638722554,293.7435628742515,294.35281936127745,294.9620758483034,295.5713323353293,296.1805888223553,296.78984530938123,297.3991017964072,298.00835828343315,298.61761477045906,299.226871257485,299.836127744511,300.44538423153693,301.0546407185629,301.6638972055888,302.27315369261476,302.8824101796407,303.4916666666667,304.10092315369263,304.71017964071854,305.3194361277445,305.92869261477045,306.5379491017964,307.1472055888224,307.7564620758483,308.36571856287424,308.9749750499002,309.58423153692615,310.1934880239521,310.802744510978,311.412000998004,312.02125748502993,312.6305139720559,313.23977045908185,313.8490269461078,314.4582834331337,315.0675399201597,315.67679640718563,316.2860528942116,316.89530938123755,317.50456586826346,318.1138223552894,318.7230788423154,319.33233532934133,319.9415918163673,320.5508483033932,321.16010479041915,321.7693612774451,322.3786177644711,322.98787425149703,323.59713073852294,324.2063872255489,324.81564371257485,325.4249001996008,326.0341566866268,326.6434131736527,327.25266966067863,327.8619261477046,328.47118263473055,329.0804391217565,329.6896956087824,330.2989520958084,330.90820858283433,331.5174650698603,332.12672155688625,332.73597804391216,333.3452345309381,333.9544910179641,334.56374750499003,335.173003992016,335.7822604790419,336.39151696606785,337.0007734530938,337.6100299401198,338.21928642714573,338.82854291417163,339.4377994011976,340.04705588822355,340.6563123752495,341.2655688622755,341.8748253493014,342.48408183632733,343.0933383233533,343.70259481037925,344.3118512974052,344.9211077844311,345.5303642714571,346.13962075848303,346.748877245509,347.35813373253495,347.96739021956085,348.5766467065868,349.1859031936128,349.79515968063873,350.4044161676647,351.0136726546906,351.62292914171655,352.2321856287425,352.8414421157685,353.45069860279443,354.05995508982033,354.6692115768463,355.27846806387225,355.8877245508982,356.4969810379242,357.1062375249501,357.71549401197603,358.324750499002,358.93400698602795,359.5432634730539,360.1525199600798,360.7617764471058,361.37103293413173,361.9802894211577,362.58954590818365,363.19880239520955,363.8080588822355,364.4173153692615,365.02657185628743,365.6358283433134,366.2450848303393,366.85434131736525,367.4635978043912,368.0728542914172,368.68211077844313,369.29136726546903,369.900623752495,370.50988023952095,371.1191367265469,371.7283932135729,372.3376497005988,372.94690618762473,373.5561626746507,374.16541916167665,374.7746756487026,375.38393213572857,375.9931886227545,376.60244510978043,377.2117015968064,377.82095808383235,378.4302145708583,379.0394710578842,379.6487275449102,380.25798403193613,380.8672405189621,381.47649700598805,382.08575349301395,382.6950099800399,383.3042664670659,383.91352295409183,384.5227794411178,385.1320359281437,385.74129241516965,386.3505489021956,386.9598053892216,387.56906187624753,388.17831836327343,388.7875748502994,389.39683133732535,390.0060878243513,390.61534431137727,391.2246007984032,391.83385728542913,392.4431137724551,393.05237025948105,393.661626746507,394.2708832335329,394.8801397205589,395.48939620758483,396.0986526946108,396.70790918163675,397.31716566866265,397.9264221556886,398.5356786427146,399.14493512974053,399.7541916167665,400.3634481037924,400.97270459081835,401.5819610778443,402.19121756487027,402.80047405189623,403.40973053892213,404.0189870259481,404.62824351297405,405.2375,405.84675648702597,406.4560129740519,407.06526946107783,407.6745259481038,408.28378243512975,408.8930389221557,409.5022954091816,410.1115518962076,410.72080838323353,411.3300648702595,411.93932135728545,412.54857784431135,413.1578343313373,413.7670908183633,414.37634730538923,414.9856037924152,415.5948602794411,416.20411676646705,416.813373253493,417.42262974051897,418.03188622754493,418.64114271457083,419.2503992015968,419.85965568862275,420.4689121756487,421.07816866267467,421.6874251497006,422.29668163672653,422.9059381237525,423.51519461077845,424.1244510978044,424.7337075848303,425.3429640718563,425.95222055888223,426.5614770459082,427.17073353293415,427.77999001996005,428.389246506986,428.998502994012,429.60775948103793,430.2170159680639,430.8262724550898,431.43552894211575,432.0447854291417,432.65404191616767,433.26329840319363,433.87255489021953,434.4818113772455,435.09106786427145,435.7003243512974,436.30958083832337,436.91883732534933,437.52809381237523,438.1373502994012,438.74660678642715,439.3558632734531,439.96511976047907,440.574376247505,441.18363273453093,441.7928892215569,442.40214570858285,443.0114021956088,443.6206586826347,444.22991516966067,444.83917165668663,445.4484281437126,446.05768463073855,446.66694111776445,447.2761976047904,447.88545409181637,448.49471057884233,449.1039670658683,449.7132235528942,450.32248003992015,450.9317365269461,451.54099301397207,452.15024950099803,452.75950598802393,453.3687624750499,453.97801896207585,454.5872754491018,455.19653193612777,455.8057884231537,456.41504491017963,457.0243013972056,457.63355788423155,458.2428143712575,458.8520708582834,459.46132734530937,460.07058383233533,460.6798403193613,461.28909680638725,461.89835329341315,462.5076097804391,463.11686626746507,463.72612275449103,464.335379241517,464.9446357285429,465.55389221556885,466.1631487025948,466.77240518962077,467.38166167664673,467.99091816367263,468.6001746506986,469.20943113772455,469.8186876247505,470.42794411177647,471.0372005988024,471.64645708582833,472.2557135728543,472.86497005988025,473.4742265469062,474.0834830339321,474.69273952095807,475.30199600798403,475.91125249501,476.52050898203595,477.12976546906185,477.7390219560878,478.34827844311377,478.95753493013973,479.5667914171657,480.1760479041916,480.78530439121755,481.3945608782435,482.00381736526947,482.61307385229543,483.22233033932133,483.8315868263473,484.44084331337325,485.0500998003992,485.65935628742517,486.26861277445107,486.87786926147703,487.487125748503,488.09638223552895,488.7056387225549,489.3148952095808,489.92415169660677,490.53340818363273,491.1426646706587,491.75192115768465,492.36117764471055,492.9704341317365,493.57969061876247,494.18894710578843,494.7982035928144,495.4074600798403,496.01671656686625,496.6259730538922,497.23522954091817,497.84448602794413,498.4537425149701,499.062999001996,499.67225548902195,500.2815119760479,500.89076846307387,501.5000249500998,502.10928143712573,502.7185379241517,503.32779441117765,503.9370508982036,504.54630738522957,505.15556387225547,505.76482035928143,506.3740768463074,506.98333333333335,507.5925898203593,508.2018463073852,508.81110279441117,509.42035928143713,510.0296157684631,510.63887225548905,511.24812874251495,511.8573852295409,512.4666417165669,513.0758982035928,513.6851546906188,514.2944111776447,514.9036676646707,515.5129241516966,516.1221806387225,516.7314371257485,517.3406936127744,517.9499500998004,518.5592065868263,519.1684630738523,519.7777195608783,520.3869760479042,520.9962325349302,521.605489021956,522.214745508982,522.824001996008,523.4332584830339,524.0425149700599,524.6517714570858,525.2610279441118,525.8702844311377,526.4795409181637,527.0887974051897,527.6980538922156,528.3073103792415,528.9165668662674,529.5258233532934,530.1350798403193,530.7443363273453,531.3535928143713,531.9628493013972,532.5721057884232,533.1813622754491,533.7906187624751,534.399875249501,535.0091317365269,535.6183882235529,536.2276447105788,536.8369011976048,537.4461576846307,538.0554141716567,538.6646706586827,539.2739271457086,539.8831836327346,540.4924401197604,541.1016966067864,541.7109530938123,542.3202095808383,542.9294660678643,543.5387225548902,544.1479790419162,544.7572355289421,545.3664920159681,545.9757485029941,546.5850049900199,547.1942614770459,547.8035179640718,548.4127744510978,549.0220309381237,549.6312874251497,550.2405439121757,550.8498003992016,551.4590568862276,552.0683133732535,552.6775698602794,553.2868263473054,553.8960828343313,554.5053393213573,555.1145958083832,555.7238522954092,556.3331087824351,556.9423652694611,557.5516217564871,558.160878243513,558.7701347305389,559.3793912175648,559.9886477045908,560.5979041916167,561.2071606786427,561.8164171656687,562.4256736526946,563.0349301397206,563.6441866267465,564.2534431137725,564.8626996007984,565.4719560878243,566.0812125748503,566.6904690618762,567.2997255489022,567.9089820359281,568.5182385229541,569.1274950099801,569.736751497006,570.346007984032,570.9552644710578,571.5645209580838,572.1737774451097,572.7830339321357,573.3922904191617,574.0015469061876,574.6108033932136,575.2200598802395,575.8293163672655,576.4385728542915,577.0478293413173,577.6570858283433,578.2663423153692,578.8755988023952,579.4848552894211,580.0941117764471,580.7033682634731,581.312624750499,581.921881237525,582.531137724551,583.1403942115768,583.7496506986027,584.3589071856287,584.9681636726547,585.5774201596806,586.1866766467066,586.7959331337325,587.4051896207585,588.0144461077845,588.6237025948104,589.2329590818364,589.8422155688622,590.4514720558882,591.0607285429141,591.6699850299401,592.2792415169661,592.888498003992,593.497754491018,594.107010978044,594.7162674650699,595.3255239520959,595.9347804391217,596.5440369261477,597.1532934131736,597.7625499001996,598.3718063872255,598.9810628742515,599.5903193612775,600.1995758483034,600.8088323353294,601.4180888223553,602.0273453093812,602.6366017964071,603.2458582834331,603.8551147704591,604.464371257485,605.073627744511,605.682884231537,606.2921407185629,606.9013972055889,607.5106536926148,608.1199101796407,608.7291666666666,609.3384231536926,609.9476796407185,610.5569361277445,611.1661926147705,611.7754491017964,612.3847055888224,612.9939620758483,613.6032185628743,614.2124750499001,614.8217315369261,615.4309880239521,616.040244510978,616.649500998004,617.25875748503,617.8680139720559,618.4772704590819,619.0865269461078,619.6957834331338,620.3050399201596,620.9142964071856,621.5235528942115,622.1328093812375,622.7420658682635,623.3513223552894,623.9605788423154,624.5698353293413,625.1790918163673,625.7883483033933,626.3976047904191,627.0068612774451,627.616117764471,628.225374251497,628.834630738523,629.4438872255489,630.0531437125749,630.6624001996008,631.2716566866268,631.8809131736527,632.4901696606786,633.0994261477045,633.7086826347305,634.3179391217565,634.9271956087824,635.5364520958084,636.1457085828343,636.7549650698603,637.3642215568863,637.9734780439122,638.5827345309381,639.191991017964,639.80124750499,640.410503992016,641.0197604790419,641.6290169660679,642.2382734530938,642.8475299401198,643.4567864271457,644.0660429141717,644.6752994011975,645.2845558882235,645.8938123752495,646.5030688622754,647.1123253493014,647.7215818363273,648.3308383233533,648.9400948103793,649.5493512974052,650.1586077844312,650.7678642714571,651.377120758483,651.986377245509,652.5956337325349,653.2048902195609,653.8141467065868,654.4234031936128,655.0326596806387,655.6419161676647,656.2511726546907,656.8604291417166,657.4696856287425,658.0789421157684,658.6881986027944,659.2974550898203,659.9067115768463,660.5159680638723,661.1252245508982,661.7344810379242,662.3437375249501,662.9529940119761,663.562250499002,664.1715069860279,664.7807634730539,665.3900199600798,665.9992764471058,666.6085329341317,667.2177894211577,667.8270459081837,668.4363023952096,669.0455588822356,669.6548153692614,670.2640718562874,670.8733283433133,671.4825848303393,672.0918413173653,672.7010978043912,673.3103542914172,673.9196107784431,674.5288672654691,675.1381237524951,675.7473802395209,676.3566367265469,676.9658932135728,677.5751497005988,678.1844061876247,678.7936626746507,679.4029191616767,680.0121756487026,680.6214321357286,681.2306886227545,681.8399451097804,682.4492015968063,683.0584580838323,683.6677145708583,684.2769710578842,684.8862275449102,685.4954840319361,686.1047405189621,686.7139970059881,687.323253493014,687.9325099800399,688.5417664670658,689.1510229540918,689.7602794411177,690.3695359281437,690.9787924151697,691.5880489021956,692.1973053892216,692.8065618762475,693.4158183632735,694.0250748502993,694.6343313373253,695.2435878243513,695.8528443113772,696.4621007984032,697.0713572854291,697.6806137724551,698.2898702594811,698.899126746507,699.508383233533,700.1176397205588,700.7268962075848,701.3361526946107,701.9454091816367,702.5546656686627,703.1639221556886,703.7731786427146,704.3824351297405,704.9916916167665,705.6009481037925,706.2102045908183,706.8194610778443,707.4287175648702,708.0379740518962,708.6472305389221,709.2564870259481,709.8657435129741,710.475]} +{"expected":[0.01,-0.0033746253790549624,-0.007622018879319136,0.008433494207046853,0.001889004559574384,-0.00959763287124854,0.0045548640918855405,0.00643775365526481,-0.008809666729723751,-0.000468327621357804,0.009021878600127204,-0.005574489042175532,-0.005188845438344393,0.008984167322636266,-0.0008822361340235784,-0.008293387424072578,0.006423300008544533,0.00390249149724315,-0.00896491048167861,0.0021410030233847974,0.007434361161677098,-0.0070945391115908776,-0.002605153786703288,0.0087627445091276,-0.003288961215575298,-0.006468148173580897,0.007584861802057748,0.001322173628641932,-0.008391166572328667,0.004309966210916445,0.005418829024186577,-0.007894256760515254,-0.00007741137080101638,0.00786600339799083,-0.005190888286691567,-0.004310799964470551,0.008025916288409504,-0.0011070829665529621,-0.00720506320694166,0.0059217096985319595,0.0031683612909959584,-0.007986059728650302,0.002211362742764597,0.006427764980119337,-0.006495570438395232,-0.002015317447555855,0.007783713328832359,-0.003217836901260242,-0.005554751504162455,0.0069087623461371135,0.0008745954285802678,-0.007430450743094688,0.004111477604627807,0.004607492872683843,-0.007160672340873091,0.00023211237554265316,0.006940099051174486,-0.004879980448715341,-0.0036078872171936413,0.007253676467270752,-0.0012846752729141803,-0.006328415747875719,0.005513875305599021,0.002577865411407692,-0.007192987327410233,0.002264816300126859,0.005612742616618405,-0.00600658676302084,-0.00153900633791215,0.006986458278165595,-0.0031563648778605274,-0.004811642742160233,0.006354444046560059,0.0005121690322926351,-0.006644348505237545,0.003945466543090176,0.003944527136917611,-0.006556641214801915,0.00048285236585137326,0.00617905372724083,-0.0046207470221406475,-0.0030312775513807594,0.006615149291794282,-0.0014276454140797585,-0.0056048078272581455,0.005173428759011166,0.002091872012714056,-0.006534582830377916,0.0023054630602133983,0.004937361147319414,-0.005597398884782191,-0.0011460194895600748,0.006322024170613043,-0.003101470027877635,-0.004193641507483116,0.005889228490530021,0.00021280982010589674,-0.005986809356747114,0.003802948422578564,0.0033914042216771465,-0.006048143932118084,0.0006896153286842611,0.005540280292535628,-0.004399459866491001,-0.0025488774753354643,0.006075951734989388,-0.0015443651716269698,-0.004995508238426995,0.0048829622877020395,0.00168440940535812,-0.005976919465789322,0.002336071445060531,0.00436699417707134,-0.005247880329196343,-0.0008161230833134467,0.005757615681360099,-0.003051124871582776,-0.0036703518896386025,0.005491129188702045,-0.00003841464759629526,-0.005426712741594785,0.0036778730471761206,0.002921979790357042,-0.005612092537049578,0.000862504886225179,0.004994756869438384,-0.004206777101008821,-0.0021387276583954965,0.005612555974717905,-0.001640603793679084,-0.00447391034918115,0.0046305252678440646,0.0013375643846813207,-0.005496598259191423,0.002358580514084293,0.003877671165064496,-0.004944102324323375,-0.0005352527185069069,0.005270443255972866,-0.003003941903847979,-0.003220575689940079,0.005144814658170978,-0.00025196324112337605,-0.004942276221088671,0.0035660207544181725,0.002517890234124859,-0.005232271548429072,0.0010086524055568644,0.0045220286015450195,-0.004036124920485116,-0.0017852973554887096,0.0052083240203809455,-0.001720467938676326,-0.004021136032862963,0.004407645528211705,0.00103858281312451,-0.005076963386680254,0.002374390930557525,0.003452274611672536,-0.004676123221830755,-0.000293328920583648,0.004844182283096554,-0.0029589426438823055,-0.0028290808203536187,0.004839272196996332,-0.0004353801754854635,-0.0045178016410455345,0.00346436212758138,0.0021658606757821207,-0.004896962550898842,0.0011332360936159342,0.0041072675988673485,-0.0038827466936394977,-0.0014772937632670537,0.004851162237974012,-0.0017869619136926833,-0.003623422830336836,0.004208153488994983,0.0007781377996418393,-0.004705840642293678,0.0023845416920389327,0.0030782571544993855,-0.004436661150818149,-0.00008293924808134595,0.004466836450525034,-0.0029154200873884777,-0.0024846425797872,0.00456639129577918,-0.000594244714662356,-0.004141693120882942,0.003370669019868411,0.001856058123530432,-0.004597490347915285,0.0012401078946157153,0.0037394657832780214,-0.003743118961844232,-0.0012063098334202998,0.004532072941424919,-0.0018423358607942096,-0.003270503864866559,0.004027453169436672,0.0005492514201438184,-0.004374128830803134,0.0023898217124098888,0.0027462141060571542,-0.0042202638929199066,0.0001014892078418608,0.004129395888683835,-0.0028728532875289745,-0.0021788089090985915,0.004320070339086555,-0.0007327724318554683,-0.0038052023601414537,0.0032832688759818953,0.0015810451408781274,-0.004327298885133179,0.0013321936644063676,0.0034102820608713055,-0.003614579152420938,-0.0009659585916019596,0.0042442267481438865,-0.0018883099676065612,-0.0029545666469105447,0.003862053730280365,0.0003465992716145695,-0.004074890983889265,0.002390842639114913,0.002448959438274671,-0.004022771440620501,0.00026422738837701204,0.0038249653113078845,-0.0028308523893977476,-0.001905095542674953,0.004095634147866093,-0.0008542085792722223,-0.003501607823646661,0.0032008843221029396,0.0013350931947516316,-0.004081344613809632,0.0014117568426467166,0.0031132831440029004,-0.003495080560118109,-0.000751301299248045,0.0039823495988200956,-0.0019262233125530552,-0.0026695630035545965,0.0037092590208348468,0.00016604814335501283,-0.003802750032448531,0.00238808774933818,0.0021809095582688387,-0.0038409575222055825,0.0004086038740077174,0.003548180682849912,-0.00278912216160145,-0.0016584460091960713,0.0038894430832158615,-0.0009610928562487279,-0.003225662294979352,0.0031225253816182913,0.0011137192491960006,-0.003855686955326962,0.0014805770200375756,0.0028434296419308706,-0.003383026569449437,-0.0005584593235005616,0.0037423065725655123,-0.0019571353282153824,-0.002410739334022185,0.0035669562592685992,0.000004340463089199634,-0.003553476225131052,0.002381945611343005,0.0019376615497718379,-0.003672284215497602,0.0005372516695656682,0.0032948088333592442,-0.0027474371465572647,-0.0014348600868823633,0.0036986240233832955,-0.0010554420895805701,-0.0029732117153399543,0.003047415214307232,0.0009133652765595503,-0.0036472049859943957,0.0015400738095075364,0.002596719693376865,-0.003277155743961312,-0.0003843443595345254,0.003520812524978191,-0.001981896589820398,-0.0021743092640833387,0.0034334687762567285,-0.0001411261126639814,-0.003323698874081737,0.0023727337708766235,0.0017156978580311923,-0.003514730101806216,0.0006522814102675338,0.0030614664015164317,-0.002705624325836564,-0.0012311324328946071,0.003520881067978818,-0.0011388790574619577,-0.002740926389843438,0.0029749378100310947,0.0007311717760163106,-0.0034533971691657716,0.0015913946155659104,0.0023699365314837134,-0.0031764604545482227,-0.00022646693702463983,0.0033152266358330964,-0.0020011992261728833,-0.001957220756854529,0.0033074512487201294,-0.00027245583099065574,-0.0031107008045504225,0.002360715744923774,0.0015121752946147878,-0.0033666674657802775,0.0007554053700443383,0.00284541857387878,-0.002663550773165199,-0.001044665065235685,0.0033543596961918744,-0.001212725111614123,-0.002526107720106278,0.002904600416141118,0.0005648146273983649,-0.0032722370521445954,0.0016354780062711222,0.002160466254018691,-0.003080128151737152,-0.000082797930510248,0.0031234037829790946,-0.002015613480508536,-0.00175698733817825,0.0031878137718127416,-0.0003913689234629894,-0.002912269083932181,0.0023461134262495863,0.0013247715479915683,-0.003226772947196665,0.0008480278373982253,0.0026444323795080907,-0.002621114694188058,-0.0008733304451363718,0.0031975475558126023,-0.0012780679337996753,-0.0023265468088722987,0.0028360060700229743,0.0004123855362323381,-0.003102067489642725,0.0016731002473195156,0.001966164025988275,-0.002987498252220287,0.00004833328785673103,0.002943585209223255,-0.002025614663560462,-0.0015715637451245235,0.003073665910135281,-0.0004992857952449686,-0.002726584833597506,0.0023291162790907956,0.0011515717076079155,-0.0030939614708402024,0.0009313120391705081,0.0024566680294338806,-0.002578238813341514,-0.000715369914541897,0.0030492008505353272,-0.0013358118795590603,-0.002140419386636313,0.0027688331984681023,0.00027230306044425507,-0.0029415219008097995,0.0017049099941755753,0.0017852543316613596,-0.0028980299980183146,0.00016831488624009116,0.0027743168705652277,-0.0020316033182352874,-0.0013992529276129046,0.002964274848589291,-0.0005973900770956857,-0.0025521406810003954,0.0023098882513615314,0.0009909831370976026,-0.0029673366695994975,0.0010062304166468866,0.002280597264378061,-0.002534865417417635,-0.0005693172763382291,0.0029082889338595324,-0.0013867159137674443,-0.0019662066190262472,0.0027028202465121734,0.00014324546521498255,-0.0027894648250310636,0.001731454512834913,0.0016162555759663638,-0.0028112781592852815,0.0002783101226767328,0.002614387616968737,-0.002033920507690205,-0.001238635550763712,0.002859033660935118,-0.0006866764820938022,-0.002387678084620776,0.0022885730357688917,0.000841670763073588,-0.0028461531856580177,0.0010736028917752718,0.002114941187700384,-0.002490952588011033,-0.0004339405427495209,0.0027739520605998113,-0.0014314225634394463,-0.0018026346487828543,0.0026377539430179966,0.000024099403604626595,-0.0026449464716313343,0.0017531997460879121,0.0014579223699989954,-0.002726874431534224,0.00037930144622244015,0.002462781801289147,-0.0020328595469610695,-0.0010885158914870888,0.0027574369494554997,-0.0007679875735691736,-0.0022321391627136557,0.0022652981196188125,0.000702507285968018,-0.002729787653816416,0.0011341263410876764,0.0019586223638290937,-0.00244647130004073,-0.0003081970043560719,0.002645468786255706,-0.0014704802733878732,-0.0016486278957671848,0.0025734602342109597,-0.00008607976421486678,-0.0025071675622243285,0.0017705458451201643,0.0013092008421668711,-0.002644513025712797,0.0004721246781596627,0.0023186425320669743,-0.002028675104990842,-0.0009478798462329672,0.002659061929424631,-0.0008420423294057347,-0.0020846292530919777,0.0022401779340787444,0.0005725344463660855,-0.002617716117379471,0.0011883975459047247,0.00181072750167585,-0.002401403159898697,-0.0001911981961946872,0.00252223053520494,-0.00150436085260325,-0.0015032725941173384,0.0025097972004579777,-0.00018809898018486252,-0.0023754518425589425,0.0017838393165831475,0.0011691936682461637,-0.0025639393856203506,0.0005574957818355751,0.002181242879348386,-0.002021590337661687,-0.0008158619997894686,0.0025635535866886197,-0.0009094585606012332,-0.0019443875126433023,0.0022133163256927288,0.00045093258457585547,-0.002509496269414901,0.0012369312421345489,0.0016704780892682278,-0.0023557386219282845,-0.00008218230752615857,0.0024037215609318827,-0.001533473223012741,-0.001365788039216979,0.0024466494652647408,-0.0002826519588731703,-0.0022492243779544466,0.0017933826134725838,0.0010371324395297126,-0.002484941265751537,0.0006360320298354078,0.002049963093101947,-0.0020118025292847827,-0.0006917195525119262,0.0024706129178784933,-0.0009707706722735125,-0.0018107636100686472,0.002184808512062205,0.00033699649284626125,-0.002404753355323932,0.0012801744470596899,0.001537207069170819,-0.0023094755667628676,0.000019507746753487322,0.002289503007619787,-0.0015581743520317768,-0.0012355037060267395,0.0023839237396364385,-0.00037033867283502197,-0.0021279942584771353,0.0017994417741892838,0.0009123556323570743,-0.002407341610307096,0.0007082688896385101,0.001924272416723798,-0.001999487592035099,-0.0005748114948746359,0.002379987528811685,-0.0010264438571449548,-0.001683199086011227,0.0021547426407978825,0.00023011609295240612,-0.0023031688829249506,0.0013185179278607563,0.001410340151546865,-0.00226261815632344,0.00011444190350763413,0.0021792001238734966,-0.0015787780180434162,-0.0011118408849488351,0.002321545239227773,-0.00045168099825255704,-0.0020113407007838497,0.0018022525561288292,0.0007942908968153683,-0.0023309928205821405,0.0007746736043426581,0.001803714447662988,-0.0019848036822188407,-0.0004645818368192538,0.0022914640549012346,-0.0010768855293036537,-0.0015612123237860743,0.0021232010403929814,0.0001297608503656892,-0.002204471506490353,0.0013523054543425155,0.0012893807223029292,-0.0022151759024297097,0.0002031171523614491,0.002072491922429874,-0.0015955618922985336,-0.0009942978268588042,0.002259454778879646,-0.0005271353749706217,-0.0018989017911572215,0.0018020253971051474,0.0006824407072985435,-0.0022557721026356748,0.0008356561984161872,0.0016878952618040433,-0.0019678941272325413,-0.00036054599946802374,0.0022048620023513398,-0.001122454603471095,-0.0014443863389041823,0.0020902612296847677,0.0000354671083238826,-0.0021084296094975655,0.0013818413183534276,0.0011738975633771888,-0.002167162901846324,0.0002859690931723308,0.0019691027549326263,-0.0016087733011967177,-0.000882437638330581,0.0021976063975728925,-0.0005971031245060763,-0.0017903653004237641,0.001798949456116054,0.0005763706527763578,-0.0021815776628847307,0.0008915784597268142,0.0015764737099661576,-0.0019488898098829778,-0.0002622796945123937,0.002120028706833092,-0.0011634690778397434,-0.00133235878806569,0.002055996736555064,-0.00005317227695481571,-0.0020148452260280994,0.0014073964858683516,0.0010635147912839954,-0.002118597202116705,0.0003633814063964488,0.0018687953986439004,-0.001618633945617953,-0.0007758783501296758,0.0021359654021759706,-0.0006619389156958006,-0.001685461137567241,0.0017931959250680322,0.0004756998166979747,-0.002108325574690938,0.0009427613181347118,0.0014691534354072185,-0.0019279111220849552,-0.00016940977630202798,0.0020368351781634214,-0.0012002122704387638,-0.0012248137397222571,0.0020204777647040138,-0.0001365164731501839,-0.0019235490254383598,0.001429213661905231,0.0009579035592634622,-0.0020695002709836996,0.00043569366276668194,0.001771365346153946,-0.0016253437895462407,-0.0006742847164405341,0.002074506744423042,-0.0007219577539746244,-0.001583955109401834,0.0017849207587636168,0.0003800928237751474,-0.0020359471799921113,0.0009894909439983504,0.001365676265258973,-0.0019050695742462466,-0.00008160667009977071,0.0019551726527607546,-0.0012329379787893553,-0.0011214748532388037,0.0019837717385284585,-0.00021488374589178938,-0.0018343961478594086,0.0014475114846589161,0.0008567751719113934,-0.0020198965484687923,0.0005032078018533034,0.0016766360593018427,-0.0016290842822227678,-0.0005773614024287887,0.0020132136649767046,-0.0007774407854154982,-0.001485643728726439,0.0017742669373665958,0.00028925322595191566,-0.0019643869206406876,0.001032023817418387,0.0012658167066469663,-0.0018804691274104883,0.0000014219314192059985,0.0018749497155054894,-0.0012618747724836893,-0.0010220996923464246,0.0019459437495293614,-0.0002885573539851103,-0.0017472627252814671,0.0014624880173070333,0.000759875338937036,-0.001969813065372363,0.0005661935363351936,0.0015844550012379893,-0.0016300210419186326,-0.00048484729311842076,0.0019520765530275522,-0.0008286401427992488,-0.0013903498698962624,0.001761366350587126,0.0002029179715772622,-0.0018936005171811343,0.001070590964359338,0.0011693773369627605,-0.0018542073006706367,0.00007993634436630187,0.001796089882737794,-0.001287229582897214,-0.0009264749580346582,0.00190705692264887,-0.000357790488405239,-0.0016620429587037447,0.001474323669667731,0.000666979353589724,-0.001919279115500805,0.0006248928836065682,0.001494690300540488,-0.0016283061020082176,-0.00039651071375081354,0.0018910919809583453,-0.0008757830124216558,-0.0012979191136915354,0.001746341373859158,0.00012085275628620108,-0.001823553430342144,0.0011054015141281398,0.0010761849224576528,-0.0018263760952866859,0.00015416933249647887,0.0017185295610630813,-0.0013091907195737172,-0.0008344124713796399,0.001867172717108242,-0.00042281043082654894,-0.0015786466491034894,0.0014831836541463507,0.000577888026299939,-0.0018683259716293663,0.0006795239841810711,0.0014072279318751814,-0.0016240797990220387,-0.0003121453955687333,0.0018302618820712844,-0.0009190750631916303,-0.0012082166562672975,0.0017293061922154344,0.000042848095910588676,-0.001754219553962642,0.0011366457007577196,0.0009860871336272348,-0.0017970627684170263,0.00022432985947940388,0.001642216314245644,-0.00132793041619937,-0.000745745771673329,0.0018263511733560237,-0.00048382207139291455,-0.001496997100948329,0.0014892200590753374,0.0004924242387303761,-0.0018169866372816674,0.000730284333815972,0.0013219693212437487,-0.0016174723661781761,-0.00023156705474265918,0.0017695928459084888,-0.0009587033508575022,-0.0011211246823503444,0.0017103679163289168,-0.000031284005997565645,-0.0016855800984575933,0.0011644974061324103,0.000898949752385515,-0.0017663504827774893,0.00029060627506083647,0.0015671073840996523,-0.001343606988452282,-0.0006603272222014626,0.0017846511154448806,-0.0005410108975245877,-0.0014170293332391715,0.001492573605985117,0.00041043001032005426,-0.0017652956280132586,0.0007773535310730766,0.0012388293021558306,-0.0016086052833111516,-0.0001546104783725948,0.001709095510765675,-0.0009948387879098184,-0.001036540122601161,0.0016896275264316656,-0.00010171289829495539,-0.0016176226320130786,0.0011891163234524363,0.0008146542866641094,-0.0017343188534058138,0.0003531690319383539,0.0014931684219100807,-0.0013563666699270584,-0.0005780255370831861,0.001742130316358363,-0.0005945455437270626,-0.001338688545766597,0.0014933751444066359,0.0003317639903807079,-0.0017132887771369898,0.0008208956222786434,0.0011577343633633864,-0.001597592424277112,-0.00008112703202977462,0.0016487840369650121,-0.0010276382522176027,-0.0009543727305231596,0.0016671806729632347,-0.0001685917126398524,-0.0015503402530239307,0.0012106498045694487,0.0007330959242867455,-0.0017010444086675823,0.00041217301165898763,0.0014203723952454072,-0.0013663451796973138,-0.0004987236591255881,0.0016988456323976096,-0.000644579975265785,-0.001261928798224407,0.0014917469276472496,0.00025629930533804004,-0.001661003061809122,0.0008610611103393504,0.001078621140041301,-0.0015845410351623059,-0.000010982519468670268,0.001588675647577043,-0.0010572463937182544,-0.0008745434264680063,0.0016431183573983941,-0.00023205945121231676,-0.0014837308722831706,0.0012292344428094005,0.0006541817707338698,-0.0016666009794538096,0.00046775952319143125,0.0013486986416117019,-0.0013736690651118403,-0.00042231693169361435,0.0016548531116204845,-0.0006912553649986834,-0.0011867118677229454,0.0014878037049223778,0.00018392170375762485,-0.0016084764461720084,0.0008979886815637,0.0010014351092189444,-0.0015695525704905507,0.00005594466207552277,0.0015287902257490346,-0.001083797187546618,-0.0007969828659632944,0.0016175275124054767,-0.0002922427865284056,-0.0014177965873931977,0.0012449974334534334,0.0005778293255745284,-0.0016310600279888488,0.0005200580262196091,0.0012781320456142983,-0.0013784568554704394,-0.0003487115180043474,0.0016102080804333118,-0.0007347017119004154,-0.0011130062565073524,0.0014816536588215525,0.00011452795221224462,-0.0015557477388619453,0.0009318066948683035,0.00092612945734861,-0.001552723409721847,0.00011976511736049848,0.001469149959770467,-0.0011074152733014948,-0.0007216301972786769,0.0015904914970633767,-0.0003492576182697266,-0.0013525431350203407,0.001258057746515065,0.0005039651604261612,-0.0015944909256388486,0.0005691876218907034,0.0012086623204786548,-0.0013808200558933436,-0.0002778230295433546,0.0015649652117235575,-0.0007750392411754451,-0.0010407863267157488,0.0014733992119670871,0.000048024443351710324,-0.0015028564626857373,0.0009626344698868147,0.000852664093594242,-0.0015341454724189692,0.0001805798375757076,0.0014097790285858799,-0.0011282171131553429,-0.0006484319793394448,0.0015620905201192293,-0.00040321042418424126,-0.0012879794091582,0.0012685271403792076,0.00043252376782482155,-0.0015569611874856634,0.0006152583463028969,0.001140283378138452,-0.001380864005588963,-0.00020957533199357617,0.0015191785773452852,-0.0008123796189423287,-0.0009700315430348592,0.0014631377225859693,-0.00001567401574594861,-0.001449842734661874,0.0009905834041994542,0.0007810047870022233,-0.0015139067472927914,0.00023848140533292832,0.0013507033217300011,-0.0011463119959027066,-0.0005773412360600683,0.0015324020020463702,-0.0004541994357349061,-0.0012241170356022742,0.0012765110399913272,0.00036344655563969773,-0.0015185366701156824,0.000658372295973902,0.0010729927747985181,-0.0013786886206157503,-0.0001438995024424062,0.0014729016873054363,-0.0008468270088493829,-0.0009007258073856401,0.001450962085384556,-0.00007664526144318761,-0.0013967471549453294,0.0010157579447764558,0.0007111224094082552,-0.0014920917477833327,0.00029355504647752005,0.001291950188696457,-0.0011618029094674707,-0.0005083166272211274,0.0015015008848669618,-0.0005023156640160524,-0.0011609699945040115,0.0012821092993090522,0.00029668096591077206,-0.0014792817380055517,0.000698624609657607,0.0010067912210918668,-0.0013743890378763429,-0.00008073291603006744,0.001426187517618761,-0.0008784789934285954,-0.0008328568724236371,0.0014369612513953334,-0.00013496069974191892,-0.0013436107034079628,0.0010382564345878728,0.0006429922689646879,-0.001468781904744373,0.0003458795506288721,0.0012335482135821156,-0.0011747873006891063,-0.0004413217192995347,0.0014694598972368577,-0.0005476437972705667,-0.0010985542842111163,0.0012854168645082713,0.00023217970047962564,-0.0014392594030160633,0.0007361043268706108,0.0009416821477331841,-0.0013680561743604513,-0.00002001844377637972,0.0013790885284927176,-0.0009074273792894457,-0.0007664158227911079,0.0014212206782551482,-0.00019068611930432298,-0.0012904746428634454,0.0010581718519219556,0.0005765935216221548,-0.0014440559051002789,0.00039552807880841544,0.0011755270115402297,-0.0011853577381613707,-0.0003763243423359188,0.0014363497810923871,-0.0005902629878833201,-0.001036887620716606,0.001286524351779206,0.00016990003861119102,-0.0013985314407912817,0.0007708951402235772,0.0008776713190505759,-0.0013597772134087674,0.0000382962537624602,0.0013316566742453079,-0.0009337589021888669, -0.0007013966148476759,0.0014038227205496864,-0.0002438824068503528,-0.0012373804280933014,0.0010755924571681343,0.0005119086499337978,-0.0014179899839424565,0.00044256887361214276,0.0011179170441275007,-0.0011936024914151245,-0.00031329602114924806,0.001402239485171366,-0.000630247543915065,-0.0009759891679376904,0.001285518551373567,0.00010980323415663845],"x":[100.0,100.60925648702595,101.21851297405189,101.82776946107785,102.4370259481038,103.04628243512974,103.65553892215569,104.26479540918163,104.87405189620759,105.48330838323353,106.09256487025948,106.70182135728543,107.31107784431137,107.92033433133733,108.52959081836327,109.13884730538922,109.74810379241517,110.35736027944112,110.96661676646707,111.57587325349301,112.18512974051896,112.7943862275449,113.40364271457086,114.01289920159681,114.62215568862275,115.2314121756487,115.84066866267464,116.4499251497006,117.05918163672655,117.6684381237525,118.27769461077844,118.88695109780438,119.49620758483034,120.10546407185629,120.71472055888223,121.32397704590818,121.93323353293412,122.54249001996008,123.15174650698603,123.76100299401197,124.37025948103792,124.97951596806388,125.58877245508982,126.19802894211577,126.80728542914171,127.41654191616766,128.02579840319362,128.63505489021955,129.2443113772455,129.85356786427147,130.4628243512974,131.07208083832336,131.6813373253493,132.29059381237525,132.8998502994012,133.50910678642714,134.1183632734531,134.72761976047903,135.336876247505,135.94613273453095,136.55538922155688,137.16464570858284,137.77390219560877,138.38315868263473,138.9924151696607,139.60167165668662,140.21092814371258,140.8201846307385,141.42944111776447,142.03869760479043,142.64795409181636,143.25721057884232,143.86646706586825,144.4757235528942,145.08498003992017,145.6942365269461,146.30349301397206,146.91274950099802,147.52200598802395,148.1312624750499,148.74051896207584,149.3497754491018,149.95903193612776,150.5682884231537,151.17754491017965,151.78680139720558,152.39605788423154,153.0053143712575,153.61457085828343,154.2238273453094,154.83308383233532,155.44234031936128,156.05159680638724,156.66085329341317,157.27010978043913,157.87936626746506,158.48862275449102,159.09787924151698,159.7071357285429,160.31639221556887,160.9256487025948,161.53490518962076,162.14416167664672,162.75341816367265,163.3626746506986,163.97193113772454,164.5811876247505,165.19044411177646,165.7997005988024,166.40895708582835,167.01821357285428,167.62747005988024,168.2367265469062,168.84598303393213,169.4552395209581,170.06449600798402,170.67375249500998,171.28300898203594,171.89226546906187,172.50152195608783,173.11077844311376,173.72003493013972,174.32929141716568,174.9385479041916,175.54780439121757,176.1570608782435,176.76631736526946,177.37557385229542,177.98483033932135,178.5940868263473,179.20334331337327,179.8125998003992,180.42185628742516,181.0311127744511,181.64036926147705,182.249625748503,182.85888223552894,183.4681387225549,184.07739520958083,184.6866516966068,185.29590818363275,185.90516467065868,186.51442115768464,187.12367764471057,187.73293413173653,188.3421906187625,188.95144710578842,189.56070359281438,190.1699600798403,190.77921656686627,191.38847305389223,191.99772954091816,192.60698602794412,193.21624251497005,193.825499001996,194.43475548902197,195.0440119760479,195.65326846307386,196.2625249500998,196.87178143712575,197.4810379241517,198.09029441117764,198.6995508982036,199.30880738522953,199.9180638722555,200.52732035928145,201.13657684630738,201.74583333333334,202.35508982035927,202.96434630738523,203.5736027944112,204.18285928143712,204.79211576846308,205.401372255489,206.01062874251497,206.61988522954093,207.22914171656686,207.83839820359282,208.44765469061878,209.0569111776447,209.66616766467067,210.2754241516966,210.88468063872256,211.49393712574852,212.10319361277445,212.7124500998004,213.32170658682634,213.9309630738523,214.54021956087826,215.1494760479042,215.75873253493015,216.36798902195608,216.97724550898204,217.586501996008,218.19575848303393,218.8050149700599,219.41427145708582,220.02352794411178,220.63278443113774,221.24204091816367,221.85129740518963,222.46055389221556,223.06981037924152,223.67906686626748,224.2883233532934,224.89757984031937,225.5068363273453,226.11609281437126,226.72534930139722,227.33460578842315,227.9438622754491,228.55311876247504,229.162375249501,229.77163173652696,230.3808882235529,230.99014471057885,231.59940119760478,232.20865768463074,232.8179141716567,233.42717065868263,234.0364271457086,234.64568363273452,235.25494011976048,235.86419660678644,236.47345309381237,237.08270958083833,237.69196606786429,238.30122255489022,238.91047904191618,239.5197355289421,240.12899201596807,240.73824850299403,241.34750499001996,241.95676147704592,242.56601796407185,243.1752744510978,243.78453093812377,244.3937874251497,245.00304391217566,245.6123003992016,246.22155688622755,246.8308133732535,247.44006986027944,248.0493263473054,248.65858283433133,249.2678393213573,249.87709580838325,250.48635229540918,251.09560878243514,251.70486526946107,252.31412175648703,252.92337824351299,253.53263473053892,254.14189121756488,254.7511477045908,255.36040419161677,255.96966067864273,256.57891716566866,257.1881736526946,257.7974301397206,258.40668662674653,259.01594311377244,259.6251996007984,260.23445608782436,260.8437125748503,261.4529690618763,262.0622255489022,262.67148203592814,263.2807385229541,263.88999500998005,264.499251497006,265.1085079840319,265.7177644710579,266.32702095808384,266.9362774451098,267.54553393213575,268.15479041916166,268.7640469061876,269.3733033932136,269.98255988023953,270.5918163672655,271.2010728542914,271.81032934131736,272.4195858283433,273.0288423153693,273.63809880239523,274.24735528942114,274.8566117764471,275.46586826347306,276.075124750499,276.684381237525,277.2936377245509,277.90289421157684,278.5121506986028,279.12140718562875,279.7306636726547,280.3399201596806,280.9491766467066,281.55843313373254,282.1676896207585,282.77694610778445,283.38620259481036,283.9954590818363,284.6047155688623,285.21397205588823,285.8232285429142,286.4324850299401,287.04174151696606,287.650998003992,288.260254491018,288.86951097804393,289.47876746506984,290.0880239520958,290.69728043912176,291.3065369261477,291.9157934131737,292.5250499001996,293.13430638722554,293.7435628742515,294.35281936127745,294.9620758483034,295.5713323353293,296.1805888223553,296.78984530938123,297.3991017964072,298.00835828343315,298.61761477045906,299.226871257485,299.836127744511,300.44538423153693,301.0546407185629,301.6638972055888,302.27315369261476,302.8824101796407,303.4916666666667,304.10092315369263,304.71017964071854,305.3194361277445,305.92869261477045,306.5379491017964,307.1472055888224,307.7564620758483,308.36571856287424,308.9749750499002,309.58423153692615,310.1934880239521,310.802744510978,311.412000998004,312.02125748502993,312.6305139720559,313.23977045908185,313.8490269461078,314.4582834331337,315.0675399201597,315.67679640718563,316.2860528942116,316.89530938123755,317.50456586826346,318.1138223552894,318.7230788423154,319.33233532934133,319.9415918163673,320.5508483033932,321.16010479041915,321.7693612774451,322.3786177644711,322.98787425149703,323.59713073852294,324.2063872255489,324.81564371257485,325.4249001996008,326.0341566866268,326.6434131736527,327.25266966067863,327.8619261477046,328.47118263473055,329.0804391217565,329.6896956087824,330.2989520958084,330.90820858283433,331.5174650698603,332.12672155688625,332.73597804391216,333.3452345309381,333.9544910179641,334.56374750499003,335.173003992016,335.7822604790419,336.39151696606785,337.0007734530938,337.6100299401198,338.21928642714573,338.82854291417163,339.4377994011976,340.04705588822355,340.6563123752495,341.2655688622755,341.8748253493014,342.48408183632733,343.0933383233533,343.70259481037925,344.3118512974052,344.9211077844311,345.5303642714571,346.13962075848303,346.748877245509,347.35813373253495,347.96739021956085,348.5766467065868,349.1859031936128,349.79515968063873,350.4044161676647,351.0136726546906,351.62292914171655,352.2321856287425,352.8414421157685,353.45069860279443,354.05995508982033,354.6692115768463,355.27846806387225,355.8877245508982,356.4969810379242,357.1062375249501,357.71549401197603,358.324750499002,358.93400698602795,359.5432634730539,360.1525199600798,360.7617764471058,361.37103293413173,361.9802894211577,362.58954590818365,363.19880239520955,363.8080588822355,364.4173153692615,365.02657185628743,365.6358283433134,366.2450848303393,366.85434131736525,367.4635978043912,368.0728542914172,368.68211077844313,369.29136726546903,369.900623752495,370.50988023952095,371.1191367265469,371.7283932135729,372.3376497005988,372.94690618762473,373.5561626746507,374.16541916167665,374.7746756487026,375.38393213572857,375.9931886227545,376.60244510978043,377.2117015968064,377.82095808383235,378.4302145708583,379.0394710578842,379.6487275449102,380.25798403193613,380.8672405189621,381.47649700598805,382.08575349301395,382.6950099800399,383.3042664670659,383.91352295409183,384.5227794411178,385.1320359281437,385.74129241516965,386.3505489021956,386.9598053892216,387.56906187624753,388.17831836327343,388.7875748502994,389.39683133732535,390.0060878243513,390.61534431137727,391.2246007984032,391.83385728542913,392.4431137724551,393.05237025948105,393.661626746507,394.2708832335329,394.8801397205589,395.48939620758483,396.0986526946108,396.70790918163675,397.31716566866265,397.9264221556886,398.5356786427146,399.14493512974053,399.7541916167665,400.3634481037924,400.97270459081835,401.5819610778443,402.19121756487027,402.80047405189623,403.40973053892213,404.0189870259481,404.62824351297405,405.2375,405.84675648702597,406.4560129740519,407.06526946107783,407.6745259481038,408.28378243512975,408.8930389221557,409.5022954091816,410.1115518962076,410.72080838323353,411.3300648702595,411.93932135728545,412.54857784431135,413.1578343313373,413.7670908183633,414.37634730538923,414.9856037924152,415.5948602794411,416.20411676646705,416.813373253493,417.42262974051897,418.03188622754493,418.64114271457083,419.2503992015968,419.85965568862275,420.4689121756487,421.07816866267467,421.6874251497006,422.29668163672653,422.9059381237525,423.51519461077845,424.1244510978044,424.7337075848303,425.3429640718563,425.95222055888223,426.5614770459082,427.17073353293415,427.77999001996005,428.389246506986,428.998502994012,429.60775948103793,430.2170159680639,430.8262724550898,431.43552894211575,432.0447854291417,432.65404191616767,433.26329840319363,433.87255489021953,434.4818113772455,435.09106786427145,435.7003243512974,436.30958083832337,436.91883732534933,437.52809381237523,438.1373502994012,438.74660678642715,439.3558632734531,439.96511976047907,440.574376247505,441.18363273453093,441.7928892215569,442.40214570858285,443.0114021956088,443.6206586826347,444.22991516966067,444.83917165668663,445.4484281437126,446.05768463073855,446.66694111776445,447.2761976047904,447.88545409181637,448.49471057884233,449.1039670658683,449.7132235528942,450.32248003992015,450.9317365269461,451.54099301397207,452.15024950099803,452.75950598802393,453.3687624750499,453.97801896207585,454.5872754491018,455.19653193612777,455.8057884231537,456.41504491017963,457.0243013972056,457.63355788423155,458.2428143712575,458.8520708582834,459.46132734530937,460.07058383233533,460.6798403193613,461.28909680638725,461.89835329341315,462.5076097804391,463.11686626746507,463.72612275449103,464.335379241517,464.9446357285429,465.55389221556885,466.1631487025948,466.77240518962077,467.38166167664673,467.99091816367263,468.6001746506986,469.20943113772455,469.8186876247505,470.42794411177647,471.0372005988024,471.64645708582833,472.2557135728543,472.86497005988025,473.4742265469062,474.0834830339321,474.69273952095807,475.30199600798403,475.91125249501,476.52050898203595,477.12976546906185,477.7390219560878,478.34827844311377,478.95753493013973,479.5667914171657,480.1760479041916,480.78530439121755,481.3945608782435,482.00381736526947,482.61307385229543,483.22233033932133,483.8315868263473,484.44084331337325,485.0500998003992,485.65935628742517,486.26861277445107,486.87786926147703,487.487125748503,488.09638223552895,488.7056387225549,489.3148952095808,489.92415169660677,490.53340818363273,491.1426646706587,491.75192115768465,492.36117764471055,492.9704341317365,493.57969061876247,494.18894710578843,494.7982035928144,495.4074600798403,496.01671656686625,496.6259730538922,497.23522954091817,497.84448602794413,498.4537425149701,499.062999001996,499.67225548902195,500.2815119760479,500.89076846307387,501.5000249500998,502.10928143712573,502.7185379241517,503.32779441117765,503.9370508982036,504.54630738522957,505.15556387225547,505.76482035928143,506.3740768463074,506.98333333333335,507.5925898203593,508.2018463073852,508.81110279441117,509.42035928143713,510.0296157684631,510.63887225548905,511.24812874251495,511.8573852295409,512.4666417165669,513.0758982035928,513.6851546906188,514.2944111776447,514.9036676646707,515.5129241516966,516.1221806387225,516.7314371257485,517.3406936127744,517.9499500998004,518.5592065868263,519.1684630738523,519.7777195608783,520.3869760479042,520.9962325349302,521.605489021956,522.214745508982,522.824001996008,523.4332584830339,524.0425149700599,524.6517714570858,525.2610279441118,525.8702844311377,526.4795409181637,527.0887974051897,527.6980538922156,528.3073103792415,528.9165668662674,529.5258233532934,530.1350798403193,530.7443363273453,531.3535928143713,531.9628493013972,532.5721057884232,533.1813622754491,533.7906187624751,534.399875249501,535.0091317365269,535.6183882235529,536.2276447105788,536.8369011976048,537.4461576846307,538.0554141716567,538.6646706586827,539.2739271457086,539.8831836327346,540.4924401197604,541.1016966067864,541.7109530938123,542.3202095808383,542.9294660678643,543.5387225548902,544.1479790419162,544.7572355289421,545.3664920159681,545.9757485029941,546.5850049900199,547.1942614770459,547.8035179640718,548.4127744510978,549.0220309381237,549.6312874251497,550.2405439121757,550.8498003992016,551.4590568862276,552.0683133732535,552.6775698602794,553.2868263473054,553.8960828343313,554.5053393213573,555.1145958083832,555.7238522954092,556.3331087824351,556.9423652694611,557.5516217564871,558.160878243513,558.7701347305389,559.3793912175648,559.9886477045908,560.5979041916167,561.2071606786427,561.8164171656687,562.4256736526946,563.0349301397206,563.6441866267465,564.2534431137725,564.8626996007984,565.4719560878243,566.0812125748503,566.6904690618762,567.2997255489022,567.9089820359281,568.5182385229541,569.1274950099801,569.736751497006,570.346007984032,570.9552644710578,571.5645209580838,572.1737774451097,572.7830339321357,573.3922904191617,574.0015469061876,574.6108033932136,575.2200598802395,575.8293163672655,576.4385728542915,577.0478293413173,577.6570858283433,578.2663423153692,578.8755988023952,579.4848552894211,580.0941117764471,580.7033682634731,581.312624750499,581.921881237525,582.531137724551,583.1403942115768,583.7496506986027,584.3589071856287,584.9681636726547,585.5774201596806,586.1866766467066,586.7959331337325,587.4051896207585,588.0144461077845,588.6237025948104,589.2329590818364,589.8422155688622,590.4514720558882,591.0607285429141,591.6699850299401,592.2792415169661,592.888498003992,593.497754491018,594.107010978044,594.7162674650699,595.3255239520959,595.9347804391217,596.5440369261477,597.1532934131736,597.7625499001996,598.3718063872255,598.9810628742515,599.5903193612775,600.1995758483034,600.8088323353294,601.4180888223553,602.0273453093812,602.6366017964071,603.2458582834331,603.8551147704591,604.464371257485,605.073627744511,605.682884231537,606.2921407185629,606.9013972055889,607.5106536926148,608.1199101796407,608.7291666666666,609.3384231536926,609.9476796407185,610.5569361277445,611.1661926147705,611.7754491017964,612.3847055888224,612.9939620758483,613.6032185628743,614.2124750499001,614.8217315369261,615.4309880239521,616.040244510978,616.649500998004,617.25875748503,617.8680139720559,618.4772704590819,619.0865269461078,619.6957834331338,620.3050399201596,620.9142964071856,621.5235528942115,622.1328093812375,622.7420658682635,623.3513223552894,623.9605788423154,624.5698353293413,625.1790918163673,625.7883483033933,626.3976047904191,627.0068612774451,627.616117764471,628.225374251497,628.834630738523,629.4438872255489,630.0531437125749,630.6624001996008,631.2716566866268,631.8809131736527,632.4901696606786,633.0994261477045,633.7086826347305,634.3179391217565,634.9271956087824,635.5364520958084,636.1457085828343,636.7549650698603,637.3642215568863,637.9734780439122,638.5827345309381,639.191991017964,639.80124750499,640.410503992016,641.0197604790419,641.6290169660679,642.2382734530938,642.8475299401198,643.4567864271457,644.0660429141717,644.6752994011975,645.2845558882235,645.8938123752495,646.5030688622754,647.1123253493014,647.7215818363273,648.3308383233533,648.9400948103793,649.5493512974052,650.1586077844312,650.7678642714571,651.377120758483,651.986377245509,652.5956337325349,653.2048902195609,653.8141467065868,654.4234031936128,655.0326596806387,655.6419161676647,656.2511726546907,656.8604291417166,657.4696856287425,658.0789421157684,658.6881986027944,659.2974550898203,659.9067115768463,660.5159680638723,661.1252245508982,661.7344810379242,662.3437375249501,662.9529940119761,663.562250499002,664.1715069860279,664.7807634730539,665.3900199600798,665.9992764471058,666.6085329341317,667.2177894211577,667.8270459081837,668.4363023952096,669.0455588822356,669.6548153692614,670.2640718562874,670.8733283433133,671.4825848303393,672.0918413173653,672.7010978043912,673.3103542914172,673.9196107784431,674.5288672654691,675.1381237524951,675.7473802395209,676.3566367265469,676.9658932135728,677.5751497005988,678.1844061876247,678.7936626746507,679.4029191616767,680.0121756487026,680.6214321357286,681.2306886227545,681.8399451097804,682.4492015968063,683.0584580838323,683.6677145708583,684.2769710578842,684.8862275449102,685.4954840319361,686.1047405189621,686.7139970059881,687.323253493014,687.9325099800399,688.5417664670658,689.1510229540918,689.7602794411177,690.3695359281437,690.9787924151697,691.5880489021956,692.1973053892216,692.8065618762475,693.4158183632735,694.0250748502993,694.6343313373253,695.2435878243513,695.8528443113772,696.4621007984032,697.0713572854291,697.6806137724551,698.2898702594811,698.899126746507,699.508383233533,700.1176397205588,700.7268962075848,701.3361526946107,701.9454091816367,702.5546656686627,703.1639221556886,703.7731786427146,704.3824351297405,704.9916916167665,705.6009481037925,706.2102045908183,706.8194610778443,707.4287175648702,708.0379740518962,708.6472305389221,709.2564870259481,709.8657435129741,710.475]} From e0e03fadcdcb6a5d986ff8fe335e3801c006511d Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Wed, 11 Dec 2024 16:59:06 +0600 Subject: [PATCH 59/63] "added changes" --- .../math/base/special/cosc/test/fixtures/julia/data.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/data.json b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/data.json index f1e0513f49b3..34ca85469bcb 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/data.json +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/data.json @@ -1 +1 @@ - {"expected":[-0.01,-0.00988692665446217,-0.009530417260232635,-0.008939001927057518,-0.00812700023963896,-0.007114174661777941,-0.005925249651897664,-0.004589308189120179,-0.003139080437401436,-0.001610141944230643,-0.000040041013955833456,0.0015326233416345881,0.0030691502352163075,0.004531689196248325,0.005884172493081779,0.007093204522074692,0.008128886334342557,0.008965554944794535,0.009582419144642727,0.009964076066946442,0.01010089567328384,0.009989263566841785,0.009631676013797021,0.009036684685486062,0.008218692329369866,0.007197604246304405,0.005998344004833064,0.004650245172536397,0.0031863339073372196,0.001642519952343532,0.000056715849575066915,-0.00153209402566305,-0.0030848117512741317,-0.0045631879117862895,-0.005930763748120867,-0.007153770198919874,-0.008201961665838864,-0.009049363918998405,-0.00967491765064457,-0.010063001734130994,-0.010203823189262884,-0.010093664121865643,-0.009734979415048518,-0.009136342615950489,-0.008312241194704922,-0.00728272606016411,-0.0060729238083116685,-0.004712423565792373,-0.0032345533890227388,-0.001675563912446815,-0.0000737392399667339,0.001531543115552564,0.00310078016369045,0.004595315448258029,0.0059782912241642,0.007215557347592569,0.008276514468868288,0.009134870711019328,0.009769293124595185,0.010163937779373152,0.010308845323473495,0.010200192137384127,0.009840390753724568,0.009238036916283918,0.008407704423026918,0.0073695926446301525,0.006149035240488571,0.004775882018532973,0.003283769019197351,0.0017092946699876987,0.00009112218696606803,-0.001530969764797153,-0.0031170648437149825,-0.004628091205258873,-0.006026783911534547,-0.007278603873109481,-0.008352590664382306,-0.009222128157529003,-0.00986560404352474,-0.010266946900304674,-0.010416027464426008,-0.010308914090387096,-0.009947975959452496,-0.009341831339686926,-0.008505142009038258,-0.007458258740058715,-0.006226726414999595,-0.004840660803149927,-0.00333401220293789,-0.0017437339512144095,-0.0001088761619285668,0.001530373082350148,0.0031336755463287234,0.004661535387110025,0.0060762720085808086,0.007342949264059696,0.008430238095294144,0.009311191309838516,0.00996391133861546,0.010372094428864201,0.010525437750984275,0.010419899256959096,0.010057803740838872,0.009447792329506606,0.008604616481879815,0.007548781402151541,0.006306047483438199,0.0049068019008445575,0.0033853156810923096,0.0017789044101855964,0.00012701313104154568,-0.00152975212978499,-0.0031506224300722734,-0.004695669045019289,-0.006126786985255266,-0.007408634676172836,-0.008509506628087186,-0.009402117551157869,-0.010064278525306006,-0.01047944847111701,-0.010637147218504657,-0.010533219861166827,-0.010169945733445008,-0.009555989162640333,-0.008706193040386213,-0.00764122012567864,-0.006387050744406665,-0.004974349093233294,-0.0034377136020542084,-0.0018148296788304194,-0.00014554558228247226,0.0015291059182347367,0.0031679160781232906,0.004730514121913109,0.006178361650754986,0.0074757030212299624,0.008590448260943039,0.009494966721381806,0.01016677184176389,0.010589080056074333,0.01075122995439325,0.010648951233553383,0.010284476657319522,0.009666494102209426,0.008809939697100646,0.007735636976214574,0.006469790759651679,0.0050433480599028115,0.003491241598222934,0.0018515344202770054,0.00016448655416644695,-0.0015284334051064155,-0.0031855675207004695,-0.004766093500153822,-0.0062310302255206415,-0.007544199061731474,-0.008673117238872902,-0.009589801249979152,-0.010271460396355445,-0.01070106329419811,-0.010867763263796957,-0.01076717197996795,-0.010401474484817446,-0.0097793825602118,-0.00891592743171094,-0.007832096730511445,-0.006554324477814246,-0.00511384648238484,-0.0035459368674946967,-0.0018890443857169051,-0.00018384966640662659,0.0015277334905348747,0.003203588258907899,0.004802431052346535,0.006284828417937068,0.007614169511750057,0.008757570176396957,0.009686686297598708,0.01037841632480821,0.010815475546331858,0.01098682784620731,0.01088796416152825,0.01052102061949433,0.009894733270925042,0.009024230354636906,0.007930667026167472,0.006640711366395806,0.00518589415503449,0.0036018382601906906,0.0019273864750659596,0.00020364915265412223,-0.0015270050135687122,-0.0032219902901132642,-0.0048395516954862485,-0.00633979350608419,-0.007685663144457024,-0.008843866188345628,-0.009785689907073791,-0.010487714957811752,-0.010932397603869465,-0.011108507983824576,-0.011011413486579361,-0.010643200086942263,-0.010012628475892515,-0.009134925881564053,-0.00803141852132107,-0.006729013552570935,-0.005259543103367455,-0.0036589863718344637,-0.001966588801736915,-0.00022389989546712193,0.0015262467480482893,0.003240786134992019,0.004877481448689318,0.006395964424944249,0.0077587309068310635,0.008932067029426978,0.009886883164553559,0.010599434999880308,0.01105191388104099,0.011232891742606404,0.011137609515594709,0.010768101738503401,0.010133154121412417,0.009248094919780498,0.00813442506516627,0.006819295973559219,0.0053348477104333165,0.0037174236422587853,0.002006680761836088,0.0002446174637050831,-0.0015254573981639328,-0.0032599888663503917,-0.004916247494804226,-0.00645338185948109,-0.007833426042127466,-0.009022237243243287,-0.009990340371570247,-0.010713658720364531,-0.011174112620279932,-0.0113600711870085,-0.011266645880046446,-0.010895818468891231,-0.010256400069519504,-0.009363822067268227,-0.00823976388014558,-0.006911626537311458,-0.005411864851883404,-0.0037771944615355283,-0.0020476931081573504,-0.00026581815252941317,0.0015246355936486423,0.0032796121398813776,0.004955878246193867,0.006512088344072049,0.007909804220715057,0.009114444321521939,0.010096139228910174,0.01083047215759177,0.011299086111719097,0.011490142609518077,0.011398620516371472,0.011026447448835167,0.010382460323554851,0.00948219582556923,0.008347515756775607,0.00700607629434954,0.00549065404042726,0.003838345283298632,0.0020896580293490383,0.00028751902624220564,-0.0015237798845877746,-0.003299670226990114,-0.004996403415038466,-0.0065721283687898355,-0.007987923679968019,-0.009208758874376458,-0.010204361033252212,-0.010949965337194096,-0.01142693092796538,-0.01162320677618236,-0.011533635916259543,-0.01116009037397745,-0.010511433269506563,-0.009603308827561241,-0.008457765262127215,-0.007102719621677949,-0.005571277580452986,-0.0039009247460562724,-0.002132609234697734,-0.0003097379641832494,0.0015228887357929956,0.00332017804986942,0.0050378540885072905,0.006633548493105717,0.00806784537393949,0.009305254812510079,0.01031509088761188,0.011072232505793696,0.011557748175405612,0.011759369189448235,0.011671799394609888,0.011296853731357609,0.010643421934430644,0.009727258081365882,0.00857060096310209,0.007201634419757122,0.00565380073366025,0.003964983803162525,0.0021765820449820453,0.00033249370996061596,-0.0015219605207158697,-0.003341151218990552,-0.00508026280922129,-0.006696397467611093,-0.008149633133637214,-0.009404009542339973,-0.010428417926743648,-0.011197372381315067,-0.01169164376342075,-0.011898740369753472,-0.01181322337662648,-0.011436849084956653,-0.010778534263371465,-0.009854145231748162,-0.008686115665733228,-0.007302902323647602,-0.005738291896619945,-0.004030575862183344,-0.002221613489926448,-0.0003558059242827915,0.0015209935148396514,0.003362606073222352,0.005123663661415923,0.006760726364439712,0.008233353838774774,0.009505104175134735,0.010544435558748188,0.011325488421326635,0.011828728693012117,0.01204143615744952,0.01195802570566827,0.011580193381905555,0.010916883416353232,0.00998407684047834,0.008804406671879646,0.007406608929514508,0.005824822791289849,0.004097756934445488,0.0022677424128073795,0.0003796952417209309,-0.0015199858885156523,-0.0033845597227788226,-0.0051680923633116785,-0.006826588717109863,-0.008319077601981749,-0.009608623751342376,-0.010663241724268918,-0.011456689110939219,-0.011969119366495626,-0.012187578036788896,-0.012106329973623976,-0.011727009281129073,-0.01105858808715264,-0.010117164687290837,-0.008925576054795938,-0.007512844037826396,-0.005913468669586753,-0.004166585795663758,-0.002315009582837331,-0.0004041833317320204,0.00151893569917239,0.0034070300952478713,0.005213586366194846,0.00689404067060509,0.008406877966526699,0.009714657481423113,0.010784939174781327,0.011591088271950845,0.012112937920077005,0.012337293483882128,0.012258265875760156,0.011877425506361262,0.01120377284574724,0.01025352609321708,0.009049730955228595,0.0076217019146873,0.006004308533256249,0.00423712415859844,0.0023634578160154794,0.00042929296432670666,-0.0015178408828486465,-0.0034300359849442144,-0.005260184960803945,-0.006963141142563334,-0.008496832118737259,-0.009823299004609742,-0.010909635771645183,-0.011728805395083586,-0.0122603125813083,-0.012490716340718397,-0.012413969592181787,-0.012031577225672833,-0.011352568506508866,-0.010393284268267678,-0.009176983899832552,-0.007733281572913899,-0.006097425370375175,-0.0043094368588250075,-0.0024131321051841085,-0.00045504808080494644,0.0015166992449763606,0.0034535971058876984,0.005307929391640506,0.00703395199656127,0.008589021116394065,0.009934646667183755,0.011037444807740571,0.011869965997356654,0.012411378053621193,0.01264798721755697,0.012573584198265635,0.012189606459857474,0.011505112524436771,0.010536568685619762,0.0093074531439088,0.007847687074605545,0.006192906409989943,0.004383592054774834,0.0024640797601373898,0.00048147387000675127,-0.0015155084503307484,-0.0034777341487035773,-0.005356862979918629,-0.007106538228550186,-0.008683530134531634,-0.01004880382199437,-0.011168485353712086,-0.012014702006836162,-0.012566275930364277,-0.012809253926231617,-0.012737260106664346,-0.012351662522275424,-0.011661549421945758,-0.010683515484707942,-0.009441263040645211,-0.007965027857164334,-0.006290843396517416,-0.004459661443360502,-0.002516350558681798,-0.0005085968506047051,0.0015142660120755424,0.003502468841801931,0.0054070312559075595,0.007180968167638807,0.008780448730199682,0.010165879151148737,0.011302882631036643,0.012163152177246664,0.012725155141015774,0.01297467194717528,0.012905155543753462,0.012517902493012715,0.011822031249002064,0.010834267905846674,0.009578544439296014,0.008085419084898076,0.006391332885738158,0.004537720492602471,0.002569996909679064,0.0005364449599844065,-0.0015129692797900048,-0.0035278240172099684,-0.005458482101529113,-0.007257313692511953,-0.008879871127927713,-0.010285987013979746,-0.01144076841438057,-0.012315462535176964,-0.012888172432530941,-0.013144404933265979,-0.013077437063691641,-0.012688491730525973,-0.011986718079678929,-0.01098897675931067,-0.009719435114967555,-0.008208982028594632,-0.006494476564373363,-0.004617848692860326,-0.002625074029175856,-0.0005650476503559502,0.0015116154263880575,0.0035538236814692103,0.005511265904143077,0.007335650464937203,0.008981896527792336,0.010409247822644397,0.011582281465954499,0.012471786862916317,0.013055492889090718,0.013318625253926769,0.013254280103606731,0.012863604424271008,0.012155778548548051,0.011147800932092089,0.00986408023299002,0.008335844475682933,0.0066003815954845954,0.00470012982840901,0.0026816401308817728,0.0005944359927717659,-0.0015102014337905801,-0.003580493092072516,-0.00556543572255255,-0.007416058181949052,-0.009086629438214764,-0.010535788447934154,-0.011727568004884567,-0.01263228722027037,-0.013227290493877985,-0.013497514583281578,-0.013435869583795883,-0.013043424192202443,-0.012329390430677602,-0.011310907935924272,-0.010012632851152684,-0.008466141173911168,-0.0067091609921461235,-0.004784652271327459,-0.0027397566323579653,-0.0006246427898401269,0.0015087240772337124,0.003607858839933144,0.005621047466391402,0.00749862084847184,0.009194180035830985,0.010665742658183706,0.01187678221492805,0.012797134509085466,0.013403748736896341,0.013681264536586484,0.013622400557258236,0.013228144727447802,0.012507741269437883,0.011478474500535086,0.010165254463467898,0.008600014311765478,0.006820934022144984,0.004871509299848556,0.002799488378469224,0.0006557026979732587,-0.0015071799080418947,-0.0036359489384678225,-0.005678160090151053,-0.007583427072353721,-0.009304664555034639,-0.010799251594458353,-0.01203008679424868,-0.012966509084608432,-0.01358506127329902,-0.013870077359622441,-0.01381407891335426,-0.013417970498948804,-0.012691029056767581,-0.01165068721655711,-0.01032211558951199,-0.008737614039244647,-0.006935826646738437,-0.0049607994435985295,-0.00286090388378893,-0.0006876523601449177,0.001505565234712698,0.00366479291990011,0.005736835803278369,0.007670570383973723,0.00941820571009868,0.010936464285577633,0.012187653551363304,0.013140601418286135,0.013771432637189442,0.014064166676264553,0.014011122140930357,0.013613117511392785,0.01287946297109578,0.011827743233000787,0.010483396413877239,0.008879099032985255,0.0070539719968784826,0.005052626858393404,0.002924075595879741,0.0007205305502049192,-0.0015038761021002299,-0.0036944219394958186,-0.005797140297899653,-0.007760149582860876,-0.009534933153084136,-0.01107753820692213,-0.012349664051856333,-0.013319612817118734,-0.013963079016428607,-0.014263758300036197,-0.014213760156853028,-0.01381381413037713,-0.013073264178693695,-0.012009851014782252,-0.010649287480762942,-0.00902463711022394,-0.007175510890671145,-0.005147101733607314,-0.0029890801815565184,-0.0007543783299625474,0.0015021082684972948,0.0037248688884814903,0.005859142995939682,0.007852269114008591,0.009654983971142277,0.011222639887424142,0.012516310320976625,0.013503756205283617,0.014160229094615801,0.014469091116130787,0.01442223620659061,0.014020301979428757,0.01327266670491837,0.012197231166414461,0.010819990449348012,0.009174405896575442,0.007300592396315815,0.0052443407354430495,0.00305599883852761,0.0007892392203539142,-0.0015002571803482342,-0.0037561685165216764,-0.005922917317570183,-0.007947039476913437,-0.009778503227204973,-0.011371945569670666,-0.012687795607829424,-0.01369325697440835,-0.014363124967141193,-0.014680418041143398,-0.014636807844256994,-0.014232836916291836,-0.013477918382556037,-0.01099571891622731,-0.009328593553228418,-0.007429374445238039,-0.005344467489871771,-0.0031249176350564944,-0.0008251593882101772,0.001498317944330809,0.0037883575646898123,0.005988540973186719,0.008044577670688067,0.009905644548561236,0.011525641928607123,0.012864335217565165,0.013888353909628899,0.014572023139021235,0.014898007068620149,0.014857748000421564,0.014451690096772446,0.01368928188535334,0.012588757156183593,0.011176699311977477,0.009487399569802346,0.007562024500735143,0.0054476131094249956,0.0031959278806493285,0.0008621878502874215,-0.0014962852964667261,-0.0038214749100170414,-0.006056096281334168,-0.00814500767903409,-0.010036570768324824,-0.01168392685501652,-0.013046157418718991,-0.014089300199438874,-0.014787195613167586,-0.015122142409512167,-0.015085346146991647,-0.014677149135446097,-0.013907035855790523,-0.012793413383655425,-0.0113631718797509,-0.00965103562990568,-0.007698720288068272,-0.0055539167685768045,-0.0032691265311028126,-0.0009003766964703528,0.0014941535679170478,0.003855561722788522,0.006125670515331982,0.008248460999282507,0.010171454625439188,0.011847010310674214,0.013233504433751023,0.014296364538302181,0.015008931078796509,0.015353125737739847,0.015319909569623626,0.014909519373670103,0.01413147613728624,0.0130043649918816,0.011555391744804534,0.009819726557275166,0.007839650592711016,0.005663526333004577,0.0033446166317085586,0.0009397813342606426,-0.0014919166470259346,-0.00389066163793881,-0.006197356281645716,-0.008355077220264368,-0.010310479529530386,-0.012015115262961428,-0.013426633521814398,-0.014509832332133389,-0.015237536210895197,-0.01559127755234534,-0.015561764759421884,-0.01514912526666108,-0.014362917122283454,-0.013221908482918276,-0.01175363008496115,-0.009993711351404286,-0.007985016134274239,-0.005776599048728849,-0.0034225078028503587,-0.0009804607569779006,0.001489567937158992,0.0039268209420180444,0.006271251933469948,0.008465004654331396,0.010453840397743728,0.012188478707671256,0.013625818163939131,0.014730007018010421,0.01547333709304844,0.0158369386691664,0.01581125893718057,0.015396311902883136,0.014601693229142412,0.013446359277576559,0.011958175413308776,0.010173244322677057,0.008135030524631656,0.005893302297866349,0.0035029167728239732,0.0010224778383769964,-0.0014871003097710904,-0.003964088777422741,-0.006347462023384735,-0.00857840102955967,-0.010601744571577303,-0.012367352789886227,-0.013831349362103413,-0.014957211510959738,-0.0157166807775033,-0.01609047185663239,-0.016068761725133097,-0.01565144667071293,-0.014848160522422897,-0.01367805324879071,-0.012169334985884152,-0.010358596338355043,-0.008289921319845869,-0.0060138144286458195,-0.0035859679633027165,-0.001065899656782016,0.0014845060520989296,0.0040025173657611225,0.0064260977994751774,0.008695434248910875,0.010754412822790367,0.012552006034062167,0.014043537065175988,0.015191789792313391,0.015967936998171076,0.016352263632192436,0.016334666983135498,0.015914921089308,0.01510269849307102,0.013917348406577077,0.01238743634879343,0.010550056192249302,0.008449931176799973,0.006138325668332858,0.0036717941336340152,0.0011107978522340363,-0.0014817768087461913,-0.004042162252482353,-0.006507277749850236,-0.008816283224044635,-0.010912080458641957,-0.01274272469594658,-0.014262711736419728,-0.015434108656074051,-0.016227500054346724,-0.016622726238085854,-0.01660939482846842,-0.016187152822868107,-0.015365712017225888,-0.014164626752362209,-0.012612829041148344,-0.010747932112644135,-0.00861531912689057,-0.006267039128891068,-0.003760537090971077,-0.0011572490206432794,0.0014789035163416356,0.004083082575162079,0.006591128201166568,0.008941138792478176,0.011074998538095987,0.012939814250640157,0.014489226079229364,0.01568455963193187,0.01649579088533091,0.016902299817695803,0.016893393861042556,0.01646858790008491,0.015637633514912264,0.014420296322880392,0.012845886472440166,0.010952553425031049,0.00878636198084347,0.006400171916557612,0.003852348474225018,0.001205335149493303,-0.0014758763303122046,-0.004125341358151963,-0.006677783977501164,-0.00907020472798412,-0.01124343521221113,-0.013143601033070898,-0.014723456940057058,-0.015943561106138794,-0.01677325935891348,-0.017191454816652803,-0.017187143618797848,-0.016759703163586936,-0.015918925332827495,-0.014684793446642131,-0.013087007995559244,-0.011164272388517736,-0.008963355880674225,-0.0065379563580783735,-0.003947390620945601,-0.0012551441002949801,0.0014726845426650819,0.004169005836659759,0.006767389126796341,0.009203698855466397,0.011417677203762454,0.013354434049408948,0.014965807410119642,0.016211560664404667,0.017060386799887944,0.01749069463624016,0.017491157291565685,0.01706100897767458,0.016210082378840997,0.014958585239220964,0.01333662119966703,0.0113834662274503,0.009146618017093154,0.006680641358166121,0.0040458375275462,0.0013067701437440014,-0.0014693164894945697,-0.004214147813740005,-0.006860097723097219,-0.009341854283142888,-0.01159803144326871,-0.013572686980568186,-0.015216709150542095,-0.01648903768441214,-0.017357688788491536,-0.01780055857058245,-0.01780598472570211,-0.017373052226689063,-0.016511635039784277,-0.015242172367376374,-0.013595184450611883,-0.011610539382894846,-0.009336488533302297,-0.006828493904860343,-0.004147875914810678,-0.0013603145544175315,0.0014657594467195533,0.004260844054152656,0.006956074753967206,0.009484920766687369,0.011784826881051801,0.013798760401989628,0.015476624969149652,0.016776506209538723,0.01766571826299745,0.018121625063668836,0.018132215756499145,0.01769641964107276,0.016824152418719495,0.015536092116421414,0.013863189710639153,0.011845926012245675,0.009533332639218631,0.0069818007419346585,0.004253706412396606,0.0014158862728771305,-0.0014619995123083566,-0.00430917671959886,-0.00705549710381825,-0.009633166222115746,-0.011978416497832857,-0.014033084247438328,-0.015746051681265503,-0.01707451814002669,-0.01798506896573736,-0.01845451532759405,-0.018470483910864078,-0.018031741493678068,-0.017148245933255975,-0.01584092180037047,-0.01414116567388682,-0.012090092769458544,-0.009737542963765855,-0.0071408702303832885,-0.004363544878129201,-0.001473602644254898,0.0014580214729518557,0.004359233850482814,0.007158554645466938,0.0097868784066856,0.012179179539710703,0.01427612054869527,0.016025523291719142,0.017383666783279565,0.01831637927773816,0.01879989736963453,0.01882147052916997,0.018379695715318146,0.01748457332278261,0.016157282560405096,0.014429681259710532,0.012343541903364506,0.009949542177106122,0.007306034424402164,0.004477623870321846,0.0015335902438228164,-0.0014538086527928896,-0.004411109900092095,-0.007265451454066335,-0.009946366789984437,-0.012387524007289036,-0.01452836648787009,-0.016315614540938817,-0.017704590811336143,-0.018660336494081123,-0.019158490483088687,-0.019185909362704312,-0.018741012486104755,-0.017833843119877,-0.01648584360424345,-0.01472934951240313,-0.012606814717344234,-0.010169785919654237,-0.007477651391260596,-0.004596194294233417,-0.0015959858017241364,0.0014493427413980271,0.004464906327954762,0.0073764071597169295,0.010111964640790455,0.012603889433317896,0.014790357804757985,0.01661694486467684,0.018037978681067334,0.019017681600231897,0.01953107026540971,0.019564591711993963,0.01911647936800561,0.018196819649855207,0.016827326947297685,0.015040831963555533,0.012880495440505985,0.010398766080577401,0.00765610780915488,0.004719527247166793,0.0016609372410323162,-0.0014446035976513863,-0.004520732260142814,-0.007491658457589216,-0.01028403135929919,-0.012828749988629842,-0.015062672608372978,-0.016930182824770386,-0.01838457358146651,-0.019389214619192453,-0.019918474237303377,-0.019958372181729127,-0.0195069470545439,-0.018574328632701375,-0.01718251272630553,-0.015364843522382056,-0.01316521556862294,-0.010637014475414253,-0.007841821882691563,-0.004847916090733413,-0.0017286048456615758,0.0014395690256405519,0.004578705225475791,0.0076114607973693975,0.0104629550890398,0.013062617962545108,0.015345935649716385,0.017256051077630397,0.018745178982852072,0.019775800610678917,0.020321608148466477,0.02036817514037183,0.01991333582598348,0.018967263473787403,0.01755224516773573,0.015702157970090905,0.013461658742705098,0.010885106980669185,0.008035246622244304,0.004981678783586611,0.0017991625774623876,-0.0014342145178680122,-0.004638951977968503,-0.00773609027735929,-0.010649155648402716,-0.013306047671493584,-0.01564082312223433,-0.0175953319581651,-0.019120664875185333,-0.020178376417009432,-0.020741453069891686,-0.020795001987215626,-0.02033664281309794,-0.019376592344255338,-0.017937439307072388,-0.01605361414717347,-0.01377056624452489,-0.01114366819302468,-0.008236873541285012,-0.0051211605136237655,-0.00187279956519293,0.0014285129602282405,0.004701609417503863,0.00786584577273261,0.010843087828347095,0.01355963985860181,0.015948068067589742,0.017948873769948425,0.019511974797451554,0.02059795826643023,0.02117907338963555,0.02123993934715474,0.020777950190207572,0.01980336616917874,0.018339088571549058,0.01642012293775027,0.014092743202077183,0.011413376692503821,0.008447236835180876,0.005266736675474448,0.0019497217920851394,-0.001422434292103143,-0.004766825622644666,-0.008001051332409439,-0.011045245110773818,-0.01382404665772478,-0.016268466477704344,-0.018317597888086602,-0.019920133777660724,-0.021035650363780307,-0.021635625849232957,-0.021704168334336447,-0.021238434439203365,-0.020248727662251685,-0.018758273358612965,-0.016802675173390316,-0.014429065614320767,-0.011694971002926942,-0.008666918116213984,-0.005418816247279273,-0.0020301540135732573,0.00141594511359963,0.004834761011787389,0.008142058884927753,0.011256163871514341,0.014099977208244078,0.016602884199987043,0.01870250679997739,0.020346257324130104,0.02149265462138347,0.022112369782274294,0.022188975050966963,0.021719376851525408,0.02071392157053247,0.019196170766077877,0.017202350600789295,0.014780488324228756,0.011989256359865178,0.008896551793144617,0.005577845630634443,0.0021143419426140086,-0.00140900823032221,-0.004905589651580713,-0.008289251300775069,-0.011476428143240118,-0.014388204022376175,-0.016952264771848306,-0.019104693231692664,-0.02079156163410272,-0.021970281710725268,-0.022610678745961104,-0.0226957625177727,-0.02222217546549378,-0.021200306322634314,-0.019654065658479634,-0.017620328084198004,-0.01514805409293201,-0.012297112416656496,-0.009136831200036187,-0.005744313029523571,-0.0022025547471407753,0.0014015821240635268,0.00497950073477281,0.008443045867156036,0.011706675027270718,0.014689570225327374,0.017317638333743286,0.0195253505349204,0.021257375216423152,0.02246996364890464,0.023132053771873592,0.02322606426917705,0.022748358673196818,0.02170936730991113,0.02013336328872522,0.018057897245600772,0.015532903956532736,0.012619502043745446,0.009388515598962269,0.005918753458577819,0.0022950879128633586,-0.001393620335307468,-0.005056700253527264,-0.008603898241440104,-0.01194760085978936,-0.015004997811135755,-0.01770013179802034,-0.01996578454237594,-0.021745152162181716,-0.022993268174411528,-0.02367813850517202,-0.02378155989064526,-0.023299600775860938,-0.022242732074113963,-0.020635603736159934,-0.018516471784701678,-0.015936289082210144,-0.01295748140668488,-0.009652438205476687,-0.006101754488728146,-0.0023922665352372995,0.0013850707403445341,0.005137412898897979,0.00877230696196879,0.01219996825804101,0.015335497084391398,0.018100980484951536,0.0204274271397272,0.022256487342528438,0.0235419152162024,0.024250736553856247,0.024364092829787156,0.02387773982118252,0.022802187728621838,0.021162478473522154,0.018997604768499352,0.016359584383080977,0.01331221154493205,0.009929515415432962,0.006293962860044494,0.002494449117478005,-0.0013758747019309342,-0.005221884222752981,-0.008948818610024157,-0.012464614196551519,-0.015682177491412368,-0.018521541478982,-0.020911851851144154,-0.02279313386825834,-0.024117795820529107,-0.024851831433870486,-0.024975690879125184,-0.02448479812296558,-0.02338970100610141,-0.021715849438222776,-0.019503006238796274,-0.016804304203895056,-0.013684971718791142,-0.010220757448281943,-0.0064960921183283725,-0.0026020319676233737,0.0013659660675632635,0.0053103831052041615,0.009134033735229384,0.012742459293362908,0.01604626008539258,0.018963309009365437,0.021420791795844343,0.023357023213850973,0.024722993974344194,0.025483609574772016,0.025618589810057612,0.025123005945741614,0.02400744140645317,0.02229777106101563,0.02003456355823526,0.017272120454566015,0.014077174847699055,0.010527280667149724,0.00670893146517092,0.0027154543076810126,-0.001355269983302946,-0.005403204578808768,-0.0093286136793114,-0.01303451852313505,-0.016429091920474804,-0.01942793222240646,-0.02195616044737445,-0.023950288492718744,-0.0253598118559921,-0.026148486948258647,-0.0262952607385001,-0.025794828938931827,-0.02465780801919247,-0.02291051580128179,-0.02059436500497909,-0.01776488364908231,-0.014490385432373245,-0.010850321892127642,-0.006933356052438982,-0.0028352042329100402,0.001343701483289065,0.0055006730708051866,0.009533288461087112,0.01334191361952857,0.016832162732151684,0.019917235790678996,0.02252007571961153,0.02457529147476555,0.026030799158008922,0.026849140003096225,0.027008441928198852,0.026503000031845518,0.02534346071923232,0.02355660385789394,0.021184727237718838,0.0182846474077417,0.014926340439833742,0.011191255093330483,0.007170339003769659,0.0029618256906964097,-0.0013311638051185619,-0.005603146136868212,-0.0097488659201358,-0.013665887485905364,-0.01725712433912373,-0.02043324390195747,-0.023114888018489495,-0.025234654067561823,-0.026738787269332275,-0.027588541741460533,-0.027761175894596028,-0.02725055665931306,-0.026067356591233187,-0.024238837874562352,-0.02180822739247584,-0.01883369710656195,-0.015386973738882462,-0.011551610938363124,-0.007420965510615344,-0.003095926688151766,0.001317546368469427,0.005711018774875616,0.009976242359706584,0.014007821004124073,0.01770581329901362,0.02097820829258311,0.023743213042684282,0.025931295145825223,0.027486929283124854,0.028370003962019105,0.028556852869357708,0.02804088438713199,0.026832792634280456,0.024960343647394165,0.022467740748822865,0.01941458351650481,0.0158744448106398,0.01193309978019285,0.007686449432636469,0.003238188987982796,-0.0013027223377760275,-0.005824728425680911,-0.010216414983354617,-0.014369252720089926,-0.018180277472766522,-0.021554641143706487,-0.024407970298402207,-0.026668473820125462,-0.02827874702238794,-0.02919722693561687,-0.02939926193511275,-0.02887776825881658,-0.027643456047594384,-0.025724618081665002,-0.023166485126521485,-0.020030162476652846,-0.016391172632809436,-0.012337638813005081,-0.007968152937031342,-0.0033893796166696746,0.0012865456681828138,0.0059447607908016,0.010470496487726263,0.014751901997059997,0.018682807307600694,0.022165353853743627,0.02511242852427696,0.027449840497666037,0.029118186562759708,0.030074358085368777,0.030292651457416858,0.02976545350647459,0.02850348371523104,0.02653558594993448,0.023908073458644534,0.02068364190285547,0.01693987585888799,0.012767384304911854,0.008267609845855855,0.0035503645920629645,-0.001268847505680996,-0.006071656625437231,-0.01073973225996102,-0.015157696370589111,-0.019215972845949572,-0.022813502949086663,-0.02586025951727711,-0.028279497422870004,-0.030009684099374156,-0.031006061634676344,-0.031241800847709906,-0.03070871768062537,-0.02941753291477632,-0.02739766739541358,-0.0246965763535603,-0.02137863776437286,-0.017523620700057814,-0.013224770050090028,-0.008586553534054013,-0.003722125385264724,0.0012494317748765991,0.006206019700854233,0.011025520737871936,0.015588804021938352,0.019782667721332903,0.023502644714648777,0.026655602229819216,0.029162070816599675,0.030958244478119557,0.03199760169175224,0.032252106215877936,0.03171295678576024,0.03039086580102231,0.028315858631141024,0.02553659693226033,0.0221192410898684,0.01814587828909568,0.01371255348646907,0.008926950447013294,0.0039057787725803998,-0.0012280697379313018,-0.006348526174896356,-0.01132943763183667,-0.01604767252262053,-0.020386161729657393,-0.0242368005393391,-0.02750313949968943,-0.030102797291907922,-0.03196953532616538,-0.03305494189531506,-0.03332968315332751,-0.03278428870056085,-0.0314294509004591,-0.029295828945729185,-0.02643336084585184,-0.022910098623931986,-0.018810593791330175,-0.014233871322447118,-0.009291040603097322,-0.004102600919038977,0.0012044932410635945,0.006499935665802777,0.011653264889269998,0.016537075309099168,0.02103016399093473,0.025020535510810935,0.028408190415965918,0.031107627954894093,0.03305000052052317,0.034184865605097155,0.03448149078152378,0.033929678069340836,0.03254008575127564,0.030344037993709997,0.0273928251910677,0.023756510492187057,0.019522270167744694,0.014792307040607383,0.009681386839109296,0.004314056781926476,-0.0011783862739623283,-0.006661104396002062,-0.011999025519415231,-0.017060167747650977,-0.021718899276122607,-0.02585905350273503,-0.029376822168700217,-0.03218335456211163,-0.03420699779380387,-0.0353951217548951,-0.03571548238235808,-0.03515708805171256,-0.03373054601342297,-0.0314678784976093,-0.02842181111994807,-0.024664549211409818,-0.02028607034632479,-0.015391973344937648,-0.010100935080726955,-0.004541836254177863,0.0011493743426729977,0.006833000863593102,0.012369025707057247,0.017620555178721076,0.022457200814681267,0.026758312937909638,0.03041598635157967,0.03333776338604042,0.035448966687508125,0.036694602996596624,0.03704078950193059,0.03647566591954357,0.035009767962734924,0.032675851025373584,0.02952816638319736,0.025641205692228355,0.02110794269974495,0.016037613557147102,0.010553088626439402,0.004787898916586367,-0.0011170109838317837,-0.0070167246156316605,-0.012765906055097183,-0.01822237603496026,-0.023250623888004602,-0.02772516866856241,-0.03153368618986343,-0.03457982415788251,-0.03678563495898251,-0.03809356479522823,-0.03846794853982126,-0.037895971649023794,-0.03638807342699901,-0.03397777958142162,-0.0307209659977887,-0.026694569656549757,-0.021994776275473887,-0.016734727243078618,-0.011041800395747425,-0.005054529882909653,0.001080760506428053,0.007213528846832697,0.013192704345085515,0.01887040407466855,0.024105585848465175,0.028767547115414495,0.032739183200458495,0.03591992378523228,0.038228274120851884,0.03960389689510679,0.040009181719785805,0.03943026159467964,0.03787744914379117,0.03538507958029798,0.032010761894675124,0.027834054319310995,0.02295459434521494,0.017489727101159612,0.01157168841745989,0.005344410073992874,-0.0010399757050143568, -0.0074248477399438025,-0.013652932944865866,-0.019570175058984295, -0.02502954002236904,-0.02989466412910682,-0.034043254574452377,-0.03737015773200255,-0.039790018320897146,-0.04123946236788187,-0.041678748303125665, -0.04109284337790695, -0.03949189654672641,-0.036911093677711566,-0.03340989608476297,-0.02907067854267498,-0.023996797779897168,-0.018310136576819257,-0.012148181680284408,-0.005660705451633268,0.0009938687974208394,0.007652329712972285, 0.014150674999827556,0.020328144967100583,0.02603119346075172,0.031117298244761855,0.03545851642402368,0.038944696368763757,0.041486265668145623,0.04301652472076526,0.04349338742293708,0.04290052375832257,0.04124787360313014,0.038571516388311224,0.03493289703084617,0.030417424374802812,0.02513247388076009,0.019204841087239532,0.012777706073684902,0.006007181439886584,-0.0009414731264106246,-0.00789787806051382,-0.014690704930136092,-0.021151889295771664,-0.027120781995569207,-0.032448136484148495,-0.03699983343109193,-0.04066024980477274,-0.043335187993639154,-0.04495429095576272,-0.04547288169133723,-0.04487317920795829,-0.04316485826111046,-0.04038493613666262,-0.03659698620961514,-0.0318896945615375,-0.026374792162006874,-0.020184410616968,-0.013467923875374994,-0.006388351206328235,0.0008815921118185961,0.008163700892720166,0.015278640684767369,0.022050356436424112,0.028310420992857598,0.03390221621062065,0.03868484309385729,0.04253666353426036,0.045358384837867714,0.04707560904475849,0.047640781837326326,0.047034490284135574,0.04526607443227943,0.042373534460643014,0.0384227323338282,0.03350590423117361,0.027739517042131512,0.021261518498919243,0.01422804565659487,0.006809670052392734,-0.0008127303613872672,-0.008452372811072403,-0.01592113791948644,-0.023034193034414358,-0.029614557259915124,-0.035497495665123634,-0.040534633795878044,-0.04459768995718312,-0.04758173162654765,-0.04940787359363371,-0.05002534873600844,-0.049412897417360026,-0.04757943797181527,-0.0445639982183359,-0.04043490600837773,-0.03528825500760325,-0.029245679802397066,-0.022451491563595213,-0.015069241468690781,-0.00727779348202511,0.0007329994411377716,0.008766911441869722,0.01662614014208101,0.02411616633427197,0.0310505578343443,0.03725559911993982,0.04257463205223558,0.04687199948997537,0.050036492805309106,0.05198421598969846,0.05266079292072407,0.052042860117698514,0.050138804568472875,0.04698872454599378,0.04266361030663365,0.03726376071077053,0.030916470660572168,0.023773042346222416,0.016005190181961185,0.007800924576506711,-0.000639987064316204,-0.009110872797361436,-0.01740320447709376,-0.025311718939246018,-0.032639486558844924,-0.03920280232746915,-0.04483577828208104,-0.04939452279944773,-0.05276080179806229,-0.05484508904517152,-0.05558892726589368,-0.05496653825142696,-0.05298563827005522,-0.04968743436259676,-0.045145797086595246,-0.03946562547460371,-0.03278043989705011,-0.02524925767918015,-0.017052824240289834,-0.008389288755623357,0.000530572520549295,0.009488470446348795,0.018263930940601143,0.02663970698412353,0.03440714217315382,0.041371353762835156,0.04735610682044409,0.05220825796080843,0.05580165700999143,0.05804040761274113,0.05886140296968819,0.05823607020403734,0.056171275902273596,0.052709365692153586,0.04792733182312625,0.041935124086485594,0.03487314053260381,0.026908954791322676,0.018233355875649906,0.00905579367337897,-0.00040066152880565103,-0.009904724572618465,-0.01922253541079696,-0.02812339641494256,-0.0363854666690031,-0.043801273122293774,-0.05018290212743681,-0.05536674190906972,-0.05921765674667074,-0.061632486877791125,-0.0625427840302011,-0.06191671069946391,-0.05976005136997111,-0.056116305351812536,-0.05106585325530414,-0.04472421180730702,-0.037239414174937674,-0.028788574651262014,-0.019573716937970543,-0.00981696382451355,0.000244797654257922,0.010365647912284521,0.02029662514555336,0.02979182887031954,0.03861448753029594,0.04654284096710592,0.053375692135346146,0.05893748962269074,0.06308281315348804,0.06570014807312907,0.06671485151208935,0.06609123212243802,0.06383368651178466,0.059986858263336794,0.054634809178529885,0.04789921653551977,0.039936634133969785,0.030934878105860486,0.021108620340358097,0.010694292353985396,-0.00005557996607238711,-0.010878475554157246,-0.021508264552086598,-0.031681727113893395,-0.04114504555836772,-0.04966011036966606,-0.05701048402120923,-0.06300687391799153,-0.06749197676406793,-0.07034457112098592,-0.07148275249891736,-0.07086622560648373,-0.068497590900056,-0.0644225867831778,-0.05872927413119469,-0.05154617564343897,-0.043039408227217024,-0.03340887156492647,-0.0228835795925152,-0.011716243238079502,-0.00017723189123445188,0.011451942788159733,0.022885464374922768,0.033840205146845985,0.04404270514452145,0.05323596556231735,0.06118588850582777,0.06768720258065183,0.07256872518894625,0.07569782755373398,0.0769839870235062,0.07638133270302289,0.07389011440687411,0.0695570507731415,0.06347453948797586,0.05577874030510001,0.046646569224260345,0.03629166914295988,0.02495944785266162,0.012921297779449632,0.0004681327799632659,-0.0120966049341197,-0.024464300513265442,-0.036328707421703035,-0.04739349029666969,-0.0573795849039418,-0.0660321933991325,-0.07312724059145556,-0.07847712871210756,-0.0819356440585774,-0.08340188846345704,-0.08282313137306244,-0.08019650388575841,-0.07556948379014226,-0.06903914980047911,-0.06075021311142139,-0.05089186436229889,-0.0396935033825819,-0.02741944696490204,-0.014362735689161897,-0.0008381838553122669,0.012825163710599954,0.02629198834006269,0.03922887643880289,0.0513125223315238,0.062237754461780564,0.07172518698177673,0.07952830622706637,0.08543981374265507,0.08929706415282981,0.0909864568796878,0.09044666504488007,0.08767061227369254,0.08270613791944995,0.07565532273444199,0.06667247947873134,0.055960845598262615,0.04376804712570167,0.03038043357670634,0.016116412073490075,0.001318934515252238,-0.01365268631650838,-0.02843143784849361,-0.042651538712108625,-0.055957423863408566,-0.06801256472957097,-0.07850790727602923,-0.0871697181843753,-0.09376664180269134,-0.0981157879210721,-0.10008769235809131,-0.09961001832756423,-0.09666989599527905,-0.09131482984925766,-0.08365213773798948,-0.07384692086654425,-0.06211859983148435,-0.0487360870565604,-0.03401169990116054,-0.018293950416486213,-0.0019593764301506747,0.014596396376675138,0.03096815111613618,0.046750909068111225,0.061549855407493845,0.07499012016988563,0.0867261744098874,0.0964506084144615,0.1039020714719725,0.10887217081613709,0.111211150578966,0.11083219938661018,0.10771426698985462,0.1019033053079909,0.09351188666693157,0.08271719094928044,0.0697573929193596,0.05492652018971198,0.03856789020578361,0.02106627031240195,0.002838937543563369,-0.015674156573929662,-0.03402088692568697,-0.051747873450736386,-0.06841155664804159,-0.08358916235281315,-0.09688928786169744,-0.10796184763762298,-0.11650712937536487,-0.12228372992451296,-0.12511516506351938,-0.12489497686974772,-0.12159019677681537,-0.11524306057542304,-0.10597091272051502,-0.09396428039908976,-0.07948314187429106,-0.06285145760316106,-0.04445007546866469,-0.02470816212795454,-0.0040933499557582525,0.016899177583090532,0.037758410913658495,0.057969775791158314,0.07702764095646673,0.09444777219727384,0.10977943053792952,0.12261681705438879,0.13260957879629862,0.1394721092951341,0.14299140277451738,0.14303325292255478,0.139546624250383,0.13256606582283764,0.1222120825636204,0.10868942736762614,0.09228332678160646,0.0733537028765328,0.05232750294437881,0.029689295628156025,0.005970335890561541,-0.01826365924112258,-0.042425747944643835,-0.06592170955057823,-0.08816437359800977,-0.10858799268135634,-0.12666231393687521,-0.14190600633619366,-0.1538991114784016,-0.16229420415986737,-0.16682597531758303,-0.16731898346602686,-0.16369336078079016,-0.15596830566349987,-0.14426324394643283,-0.12879659473383145,-0.1098821330050303,-0.08792299822707564,-0.06340345500629471,-0.03687856690458388,-0.008961996634484394,0.019687806341973174,0.048382727437663975,0.07642107860306183,0.10310429250053196,0.1277538315634778,0.14972791304434163,0.16843764910725595,0.18336220837419137,0.19406262205081445,0.2001938835840536,0.20151502526600837,0.19789689761916696,0.18932742690240606,0.17591418161586236,0.15788413925089936,0.13558060839594346,0.1094573272374418,0.08006982598769283,0.04806420629408894,0.01416355370502847,-0.020847741709477344,-0.056141427884018213,-0.09086422087330824,-0.12415760806428999,-0.1551781799973049,-0.18311802607983016,-0.20722471962616415,-0.22682041856876872,-0.24131962000459461,-0.2502451293581236,-0.25324183800952077,-0.250087946155664,-0.24070331961559538,-0.22515472921520674,-0.20365778804800422,-0.17657547389889783,-0.14441319988521548,-0.10781047425583663,-0.06752926856705795,-0.024439290361676958,0.02049956973833415,0.06625727766290923,0.11175578088768122,0.15589276288422155,0.19756652586968265,0.23570146589357976,0.26927358087283626,0.29733544082962843,0.3190400507314687,0.33366305013827313,0.3406227202063703,0.3394973070841716,0.3300392206839183,0.31218572829157243,0.28606583230094695,0.25200309912586005,0.21051429046014697,0.1623037367650311,0.1082534842894091,0.049409339111457055,-0.013036977370172714,-0.07776925936671261,-0.14337144941015117,-0.20835501273819287,-0.2711885265546741,-0.3842536040003885,-0.47066373594440675,-0.5004976584229822,-0.5198736467664834,-0.5278436586178057,-0.5236572136806413,-0.5067821483258685,-0.47692137978539223,-0.43402526421586857,-0.37829921833413116,-0.31020636771813986,-0.23046508433710503,-0.14004137938069164,-0.0401362228547858,0.0678320335033543,0.182249850879551,0.3013349386437645,0.42316646220493953,0.6668959397772898,0.784572696102819,0.8966305822835551,1.0009990167107312,1.0956942247623747,1.1788573482944704,1.2487906755200475,1.3039912620028706,1.3431812596962447,1.365334331401982,1.3696976015376463,1.3558086792299628,1.3235073847970373,1.2729419137252573,1.2045692811970832,1.119150002860804,1.0177370815456632,0.9016594826725575,0.7725003908622943,0.6320706444335235,0.482377840955056,0.3255916937732503,0.16400629467421043, 0, -0.16400629467421043, -0.3255916937732503, -0.482377840955056, -0.6320706444335235, -0.7725003908622943,-0.9016594826725575,-1.0177370815456632,-1.119150002860804,-1.2045692811970832,-1.2729419137252573,-1.3235073847970373,-1.3558086792299628,-1.3696976015376463,-1.365334331401982,-1.3431812596962447,-1.3039912620028706,-1.2487906755200475, -1.1788573482944704, -1.0956942247623747, -1.0009990167107312, -0.8966305822835551,-0.784572696102819,-0.6668959397772898, -0.5457184731667526, -0.42316646220493953,-0.3013349386437645,-0.182249850879551,-0.0678320335033543,0.0401362228547858,0.14004137938069164,0.23046508433710503, 0.31020636771813986,0.37829921833413116, 0.43402526421586857,0.47692137978539223,0.5067821483258685,0.5236572136806413,0.5278436586178057,0.5198736467664834,0.5004976584229822,0.47066373594440675,0.4314932301851665,0.3842536040003885,0.33032890100276513,0.2711885265546741,0.20835501273819287,0.14337144941015117,0.07776925936671261,0.013036977370172714,-0.049409339111457055,-0.1082534842894091,-0.1623037367650311,-0.21051429046014697,-0.25200309912586005,-0.28606583230094695,-0.31218572829157243,-0.3300392206839183,-0.3394973070841716,-0.3406227202063703,-0.33366305013827313,-0.3190400507314687,-0.29733544082962843,-0.26927358087283626,-0.23570146589357976,-0.19756652586968265,-0.15589276288422155,-0.11175578088768122,-0.06625727766290923,-0.02049956973833415,0.024439290361676958,0.06752926856705795,0.10781047425583663,0.14441319988521548,0.17657547389889783,0.20365778804800422,0.22515472921520674,0.24070331961559538,0.250087946155664,0.25324183800952077,0.2502451293581236,0.24131962000459461,0.22682041856876872,0.20722471962616415,0.18311802607983016,0.1551781799973049,0.12415760806428999,0.09086422087330824,0.056141427884018213,0.020847741709477344,-0.01416355370502847,-0.04806420629408894,-0.08006982598769283,-0.1094573272374418,-0.13558060839594346,-0.15788413925089936,-0.17591418161586236,-0.18932742690240606,-0.19789689761916696,-0.20151502526600837,-0.2001938835840536,-0.19406262205081445,-0.18336220837419137,-0.16843764910725595,-0.14972791304434163,-0.1277538315634778,-0.10310429250053196,-0.07642107860306183,-0.048382727437663975,-0.019687806341973174,0.008961996634484394,0.03687856690458388,0.06340345500629471,0.08792299822707564,0.1098821330050303,0.12879659473383145,0.15596830566349987,0.16369336078079016,0.16731898346602686,0.16682597531758303,0.16229420415986737,0.1538991114784016,0.14190600633619366,0.12666231393687521,0.10858799268135634,0.08816437359800977,0.06592170955057823,0.042425747944643835,0.01826365924112258,-0.005970335890561541,-0.029689295628156025,-0.05232750294437881,-0.0733537028765328,-0.09228332678160646,-0.10868942736762614,-0.1222120825636204,-0.13256606582283764,-0.139546624250383,-0.14303325292255478,-0.14299140277451738,-0.1394721092951341,-0.13260957879629862,-0.12261681705438879,-0.10977943053792952,-0.09444777219727384,-0.057969775791158314,-0.037758410913658495,-0.016899177583090532,0.0040933499557582525,0.02470816212795454,0.04445007546866469,0.06285145760316106,0.07948314187429106,0.09396428039908976,0.10597091272051502,0.11524306057542304,0.12159019677681537,0.12489497686974772,0.12511516506351938,0.12228372992451296,0.11650712937536487,0.10796184763762298,0.09688928786169744,0.08358916235281315,0.06841155664804159,0.051747873450736386,0.03402088692568697,0.015674156573929662,-0.002838937543563369,-0.02106627031240195,-0.03856789020578361,-0.05492652018971198,-0.0697573929193596,-0.08271719094928044,-0.09351188666693157,-0.1019033053079909,-0.10771426698985462,-0.11083219938661018,-0.111211150578966,-0.10887217081613709,-0.1039020714719725,-0.0964506084144615,-0.0867261744098874,-0.07499012016988563,-0.061549855407493845,-0.046750909068111225,-0.03096815111613618,-0.014596396376675138,0.0019593764301506747,0.018293950416486213,0.03401169990116054,0.0487360870565604,0.06211859983148435,0.07384692086654425,0.08365213773798948,0.09131482984925766,0.09666989599527905,0.09961001832756423,0.10008769235809131,0.0981157879210721,0.09376664180269134,0.0871697181843753,0.07850790727602923,0.06801256472957097,0.055957423863408566,0.042651538712108625,0.02843143784849361,0.01365268631650838,-0.001318934515252238,-0.016116412073490075,-0.03038043357670634,-0.04376804712570167,-0.055960845598262615,-0.06667247947873134,-0.07565532273444199,-0.08270613791944995,-0.08767061227369254,-0.09044666504488007,-0.0909864568796878,-0.08929706415282981,-0.08543981374265507,-0.07172518698177673,-0.062237754461780564,-0.0513125223315238,-0.03922887643880289,-0.02629198834006269,-0.012825163710599954,0.0008381838553122669,0.014362735689161897,0.02741944696490204,0.0396935033825819,0.05089186436229889,0.06075021311142139,0.06903914980047911,0.07556948379014226,0.08282313137306244,0.08340188846345704,0.0819356440585774,0.07847712871210756,0.07312724059145556,0.0660321933991325,0.0573795849039418,0.04739349029666969,0.036328707421703035,0.024464300513265442,0.0120966049341197,-0.0004681327799632659,-0.012921297779449632,-0.02495944785266162,-0.03629166914295988,-0.046646569224260345,-0.05577874030510001,-0.06347453948797586,-0.0695570507731415,-0.07389011440687411,-0.07638133270302289,-0.0769839870235062,-0.07569782755373398,-0.07256872518894625,-0.06768720258065183,-0.06118588850582777,-0.05323596556231735,-0.04404270514452145,-0.033840205146845985,-0.022885464374922768,-0.011451942788159733,0.00017723189123445188,0.011716243238079502,0.0228835795925152,0.03340887156492647,0.043039408227217024,0.05154617564343897,0.05872927413119469,0.0644225867831778,0.068497590900056,0.07086622560648373,0.07148275249891736,0.07034457112098592,0.06749197676406793,0.06300687391799153,0.05701048402120923,0.04966011036966606,0.04114504555836772,0.031681727113893395,0.021508264552086598,0.010878475554157246,0.00005557996607238711,-0.010694292353985396,-0.021108620340358097,-0.030934878105860486,-0.039936634133969785,-0.04789921653551977,-0.054634809178529885,-0.059986858263336794,-0.06383368651178466,-0.06609123212243802,-0.06671485151208935,-0.06570014807312907,-0.06308281315348804,-0.05893748962269074,-0.053375692135346146,-0.04654284096710592,-0.03861448753029594,-0.02979182887031954,-0.02029662514555336,-0.010365647912284521,-0.000244797654257922,0.00981696382451355,0.019573716937970543,0.028788574651262014,0.037239414174937674,0.04472421180730702,0.05106585325530414,0.056116305351812536,0.05976005136997111,0.06191671069946391,0.0625427840302011,0.061632486877791125,0.05921765674667074,0.05536674190906972,0.05018290212743681,0.043801273122293774,0.0363854666690031,0.02812339641494256,0.01922253541079696,0.009904724572618465,0.00040066152880565103,-0.00905579367337897,-0.018233355875649906,-0.026908954791322676,-0.03487314053260381,-0.041935124086485594,-0.04792733182312625,-0.052709365692153586,-0.056171275902273596,-0.05823607020403734,-0.05886140296968819,-0.05804040761274113,-0.05580165700999143,-0.05220825796080843,-0.04735610682044409,-0.041371353762835156,-0.03440714217315382,-0.02663970698412353,-0.018263930940601143,-0.009488470446348795,-0.000530572520549295,0.008389288755623357,0.017052824240289834,0.02524925767918015,0.03278043989705011,0.03946562547460371,0.045145797086595246,0.04968743436259676,0.05298563827005522,0.05496653825142696,0.05558892726589368,0.05484508904517152,0.05276080179806229,0.04939452279944773,0.04483577828208104,0.03920280232746915,0.032639486558844924,0.025311718939246018,0.01740320447709376,0.009110872797361436,0.000639987064316204,-0.007800924576506711,-0.016005190181961185,-0.023773042346222416,-0.030916470660572168,-0.03726376071077053,-0.04266361030663365,-0.04698872454599378,-0.050138804568472875,-0.052042860117698514,-0.05266079292072407,-0.05198421598969846,-0.050036492805309106,-0.04687199948997537,-0.04257463205223558,-0.03725559911993982,-0.0310505578343443,-0.02411616633427197,-0.01662614014208101,-0.008766911441869722,-0.0007329994411377716,0.00727779348202511,0.015069241468690781,0.022451491563595213,0.029245679802397066,0.03528825500760325,0.04043490600837773,0.0445639982183359,0.04757943797181527,0.049412897417360026,0.05002534873600844,0.04940787359363371,0.04758173162654765,0.04459768995718312,0.040534633795878044,0.035497495665123634,0.029614557259915124,0.023034193034414358,0.01592113791948644,0.008452372811072403,0.0008127303613872672,-0.006809670052392734,-0.01422804565659487,-0.021261518498919243,-0.027739517042131512,-0.03350590423117361,-0.0384227323338282,-0.042373534460643014,-0.04526607443227943,-0.047034490284135574,-0.047640781837326326,-0.04707560904475849,-0.045358384837867714,-0.04253666353426036,-0.03868484309385729,-0.03390221621062065,-0.028310420992857598,-0.022050356436424112,-0.015278640684767369,-0.008163700892720166,-0.0008815921118185961,0.006388351206328235,0.013467923875374994,0.020184410616968,0.026374792162006874,0.0318896945615375,0.03659698620961514,0.04038493613666262,0.04316485826111046,0.04487317920795829,0.04547288169133723,0.04495429095576272,0.043335187993639154,0.04066024980477274,0.03699983343109193,0.032448136484148495,0.027120781995569207,0.021151889295771664,0.014690704930136092,0.00789787806051382,0.0009414731264106246,-0.006007181439886584,-0.012777706073684902,-0.019204841087239532,-0.02513247388076009,-0.030417424374802812,-0.03493289703084617,-0.038571516388311224,-0.0412478736031301,-0.04290052375832257,-0.04349338742293708,-0.04301652472076526,-0.041486265668145623,-0.038944696368763757,-0.03545851642402368,-0.031117298244761855,-0.02603119346075172,-0.020328144967100583,-0.014150674999827556,-0.007652329712972285,-0.0009938687974208394,0.005660705451633268,0.012148181680284408,0.018310136576819257,0.023996797779897168,0.02907067854267498,0.03340989608476297,0.036911093677711566,0.03949189654672641,0.04109284337790695,0.041678748303125665,0.04123946236788187,0.039790018320897146,0.03737015773200255,0.034043254574452377, 0.02989466412910682,0.02502954002236904,0.019570175058984295,0.013652932944865866,0.0074248477399438025,0.0010399757050143568,-0.005344410073992874,-0.01157168841745989,-0.017489727101159612,-0.02295459434521494,-0.027834054319310995,-0.032010761894675124,-0.03538507958029798,-0.03787744914379117,-0.03943026159467964,-0.040009181719785805,-0.03960389689510679,-0.038228274120851884,-0.03591992378523228,-0.032739183200458495,-0.028767547115414495,-0.024105585848465175,-0.01887040407466855,-0.013192704345085515,-0.007213528846832697,-0.001080760506428053,0.005054529882909653,0.011041800395747425,0.016734727243078618,0.021994776275473887,0.026694569656549757,0.0307209659977887,0.03397777958142162,0.03638807342699901,0.037895971649023794,0.03846794853982126,0.03809356479522823,0.03678563495898251,0.03457982415788251,0.03153368618986343,0.02772516866856241,0.023250623888004602,0.01822237603496026,0.012765906055097183,0.0070167246156316605,0.0011170109838317837,-0.004787898916586367,-0.010553088626439402,-0.016037613557147102,-0.02110794269974495,-0.025641205692228355,-0.02952816638319736,-0.032675851025373584,-0.035009767962734924,-0.03647566591954357,-0.03704078950193059,-0.036694602996596624,-0.035448966687508125,-0.03333776338604042,-0.03041598635157967,-0.026758312937909638,-0.022457200814681267,-0.017620555178721076,-0.012369025707057247,-0.006833000863593102,-0.0011493743426729977,0.004541836254177863,0.010100935080726955,0.015391973344937648,0.02028607034632479,0.024664549211409818,0.02842181111994807,0.0314678784976093,0.03373054601342297,0.03515708805171256,0.03571548238235808,0.0353951217548951,0.03420699779380387,0.03218335456211163,0.029376822168700217,0.02585905350273503,0.021718899276122607,0.017060167747650977,0.011999025519415231,0.006661104396002062,0.0011783862739623283,-0.004314056781926476,-0.009681386839109296,-0.014792307040607383,-0.019522270167744694,-0.023756510492187057,-0.0273928251910677,-0.030344037993709997,-0.03254008575127564,-0.033929678069340836,-0.03448149078152378,-0.034184865605097155,-0.03305000052052317,-0.031107627954894093,-0.028408190415965918,-0.025020535510810935,-0.02103016399093473,-0.016537075309099168,-0.011653264889269998,-0.006499935665802777,-0.0012044932410635945,0.004102600919038977,0.009291040603097322,0.014233871322447118,0.018810593791330175,0.022910098623931986,0.02643336084585184,0.029295828945729185,0.0314294509004591,0.03278428870056085,0.03332968315332751,0.03305494189531506,0.03196953532616538,0.030102797291907922,0.02750313949968943,0.0242368005393391,0.020386161729657393,0.01604767252262053,0.01132943763183667,0.006348526174896356,0.0012280697379313018,-0.0039057787725803998,-0.008926950447013294,-0.01371255348646907,-0.01814587828909568,-0.0221192410898684,-0.02553659693226033,-0.028315858631141024,-0.03039086580102231,-0.03171295678576024,-0.032252106215877936,-0.03199760169175224,-0.030958244478119557,-0.029162070816599675,-0.026655602229819216,-0.023502644714648777,-0.019782667721332903,-0.015588804021938352,-0.011025520737871936,-0.006206019700854233,-0.0012494317748765991,0.003722125385264724,0.008586553534054013,0.013224770050090028,0.017523620700057814,0.02137863776437286,0.0246965763535603,0.02739766739541358,0.02941753291477632,0.03070871768062537,0.031241800847709906,0.031006061634676344,0.030009684099374156,0.028279497422870004,0.02586025951727711,0.022813502949086663,0.019215972845949572,0.015157696370589111,0.01073973225996102,0.006071656625437231,0.001268847505680996,-0.0035503645920629645,-0.008267609845855855,-0.012767384304911854,-0.01693987585888799,-0.02068364190285547,-0.023908073458644534,-0.02653558594993448,-0.02850348371523104,-0.02976545350647459,-0.030292651457416858,-0.030074358085368777,-0.029118186562759708,-0.027449840497666037,-0.02511242852427696,-0.022165353853743627,-0.018682807307600694,-0.014751901997059997,-0.010470496487726263,-0.0059447607908016,-0.0012865456681828138,0.0033893796166696746,0.007968152937031342,0.012337638813005081,0.016391172632809436,0.020030162476652846,0.023166485126521485,0.025724618081665002,0.027643456047594384,0.02887776825881658,0.02939926193511275,0.02919722693561687,0.02827874702238794,0.026668473820125462,0.024407970298402207,0.021554641143706487,0.018180277472766522,0.014369252720089926,0.010216414983354617,0.005824728425680911,0.0013027223377760275,-0.003238188987982796,-0.007686449432636469,-0.01193309978019285,-0.0158744448106398,-0.01941458351650481,-0.022467740748822865,-0.024960343647394165,-0.026832792634280456,-0.02804088438713199,-0.028556852869357708,-0.028370003962019105,-0.027486929283124854,-0.025931295145825223,-0.023743213042684282,-0.02097820829258311,-0.01770581329901362,-0.014007821004124073,-0.009976242359706584,-0.005711018774875616,-0.001317546368469427,0.003095926688151766,0.007420965510615344,0.011551610938363124,0.015386973738882462,0.01883369710656195,0.02180822739247584,0.024238837874562352,0.026067356591233187,0.02725055665931306,0.027761175894596028,0.027588541741460533,0.026738787269332275,0.025234654067561823,0.023114888018489495,0.02043324390195747,0.01725712433912373,0.013665887485905364,0.0097488659201358,0.005603146136868212,0.0013311638051185619,-0.0029618256906964097,-0.007170339003769659,-0.011191255093330483,-0.014926340439833742,-0.0182846474077417,-0.021184727237718838,-0.02355660385789394,-0.02534346071923232,-0.026503000031845518,-0.027008441928198852,-0.026849140003096225,-0.026030799158008922,-0.02457529147476555,-0.02252007571961153,-0.019917235790678996,-0.016832162732151684,-0.01334191361952857,-0.009533288461087112,-0.0055006730708051866,-0.001343701483289065,0.0028352042329100402,0.006933356052438982,0.010850321892127642,0.014490385432373245,0.01776488364908231,0.02059436500497909,0.02291051580128179,0.02465780801919247,0.025794828938931827,0.0262952607385001,0.026148486948258647,0.0253598118559921,0.023950288492718744,0.02195616044737445,0.01942793222240646,0.016429091920474804,0.01303451852313505,0.0093286136793114,0.005403204578808768,0.001355269983302946,-0.0027154543076810126,-0.00670893146517092,-0.010527280667149724,-0.014077174847699055,-0.017272120454566015,-0.02003456355823526,-0.02229777106101563,-0.02400744140645317,-0.025123005945741614,-0.025618589810057612,-0.025483609574772016,-0.024722993974344194,-0.023357023213850973,-0.021420791795844343,-0.018963309009365437,-0.01604626008539258,-0.012742459293362908,-0.009134033735229384,-0.0053103831052041615,-0.0013659660675632635,0.0026020319676233737,0.0064960921183283725,0.010220757448281943,0.013684971718791142,0.016804304203895056,0.019503006238796274,0.021715849438222776,0.02338970100610141,0.02448479812296558,0.024975690879125184,0.024851831433870486,0.024117795820529107,0.02279313386825834,0.020911851851144154,0.018521541478982,0.015682177491412368,0.012464614196551519,0.008948818610024157,0.005221884222752981,0.0013758747019309342,-0.002494449117478005,-0.006293962860044494,-0.009929515415432962,-0.01331221154493205,-0.016359584383080977,-0.018997604768499352,-0.021162478473522154,-0.022802187728621838,-0.02387773982118252,-0.024364092829787156,-0.024250736553856247,-0.0235419152162024,-0.022256487342528438,-0.0204274271397272,-0.018100980484951536,-0.015335497084391398,-0.01219996825804101,-0.00877230696196879,-0.005137412898897979,-0.0013850707403445341,0.0023922665352372995,0.006101754488728146,0.009652438205476687,0.01295748140668488,0.015936289082210144,0.018516471784701678,0.020635603736159934,0.022242732074113963,0.023299600775860938,0.02378155989064526,0.02367813850517202,0.022993268174411528, 0.021745152162181716,0.01996578454237594,0.01770013179802034,0.015004997811135755,0.01194760085978936,0.008603898241440104,0.005056700253527264,0.001393620335307468,-0.0022950879128633586,-0.005918753458577819, -0.009388515598962269,-0.012619502043745446,-0.015532903956532736,-0.018057897245600772,-0.02013336328872522,-0.02170936730991113, -0.022748358673196818,-0.02322606426917705,-0.023132053771873592,-0.02246996364890464,-0.021257375216423152,-0.0195253505349204,-0.017317638333743286,-0.014689570225327374,-0.011706675027270718,-0.008443045867156036,-0.00497950073477281,-0.0014015821240635268,0.0022025547471407753,0.005744313029523571,0.009136831200036187,0.012297112416656496, 0.01514805409293201,0.017620328084198004, 0.019654065658479634, 0.021200306322634314, 0.02222217546549378, 0.0226957625177727, 0.022610678745961104, 0.021970281710725268, 0.02079156163410272, 0.019104693231692664, 0.016952264771848306, 0.014388204022376175, 0.011476428143240118, 0.008289251300775069, 0.004905589651580713, 0.00140900823032221, -0.0021143419426140086, -0.005577845630634443, -0.008896551793144617, -0.011989256359865178, -0.014780488324228756, -0.017202350600789295, -0.019196170766077877, -0.02071392157053247, -0.021719376851525408, -0.022188975050966963, -0.022112369782274294, -0.02149265462138347, -0.020346257324130104, -0.01870250679997739, -0.016602884199987043, -0.014099977208244078, -0.011256163871514341, -0.008142058884927753, -0.004834761011787389, -0.00141594511359963, 0.0020301540135732573, 0.005418816247279273, 0.008666918116213984, 0.011694971002926942, 0.014429065614320767, 0.016802675173390316, 0.018758273358612965, 0.020248727662251685, 0.021238434439203365, 0.021704168334336447, 0.021635625849232957, 0.021035650363780307, 0.019920133777660724, 0.018317597888086602, 0.016268466477704344, 0.01382404665772478, 0.011045245110773818, 0.008001051332409439, 0.004766825622644666, 0.001422434292103143, -0.0019497217920851394, -0.005266736675474448, -0.008447236835180876, -0.011413376692503821, -0.014092743202077183, -0.01642012293775027, -0.018339088571549058, -0.01980336616917874, -0.020777950190207572, -0.02123993934715474, -0.02117907338963555, -0.02059795826643023, -0.019511974797451554, -0.017948873769948425, -0.015948068067589742, -0.01355963985860181, -0.010843087828347095, -0.00786584577273261, -0.004701609417503863, -0.0014285129602282405, 0.00187279956519293, 0.0051211605136237655, 0.008236873541285012, 0.01114366819302468, 0.01377056624452489, 0.01605361414717347, 0.017937439307072388, 0.019376592344255338, 0.02033664281309794, 0.020795001987215626, 0.020741453069891686, 0.020178376417009432, 0.019120664875185333, 0.0175953319581651, 0.01564082312223433, 0.013306047671493584, 0.010649155648402716, 0.00773609027735929, 0.004638951977968503, 0.0014342145178680122, -0.0017991625774623876, -0.004981678783586611, -0.008035246622244304, -0.010885106980669185, -0.013461658742705098, -0.015702157970090905, -0.01755224516773573, -0.018967263473787403, -0.01991333582598348, -0.02036817514037183, -0.020321608148466477, -0.019775800610678917, -0.018745178982852072, -0.017256051077630397, -0.015345935649716385, -0.013062617962545108, -0.0104629550890398, -0.0076114607973693975, -0.004578705225475791, -0.0014395690256405519, 0.0017286048456615758, 0.004847916090733413, 0.007841821882691563, 0.010637014475414253, 0.01316521556862294, 0.015364843522382056, 0.01718251272630553, 0.018574328632701375, 0.0195069470545439, 0.019958372181729127, 0.019918474237303377, 0.019389214619192453, 0.01838457358146651, 0.016930182824770386, 0.015062672608372978, 0.012828749988629842, 0.01028403135929919, 0.007491658457589216, 0.004520732260142814, 0.0014446035976513863, -0.0016609372410323162, -0.004719527247166793, -0.00765610780915488, -0.010398766080577401, -0.012880495440505985, -0.015040831963555533, -0.016827326947297685, -0.018196819649855207, -0.01911647936800561, -0.019564591711993963, -0.01953107026540971, -0.019017681600231897, -0.018037978681067334, -0.01661694486467684, -0.014790357804757985, -0.012603889433317896, -0.010111964640790455, -0.0073764071597169295, -0.004464906327954762, -0.0014493427413980271, 0.0015959858017241364, 0.004596194294233417, 0.007477651391260596, 0.010169785919654237, 0.012606814717344234, 0.01472934951240313, 0.01648584360424345, 0.017833843119877, 0.018741012486104755, 0.019185909362704312, 0.019158490483088687, 0.018660336494081123, 0.017704590811336143, 0.016315614540938817, 0.01452836648787009, 0.012387524007289036, 0.009946366789984437, 0.007265451454066335, 0.004411109900092095, 0.0014538086527928896, -0.0015335902438228164, -0.004477623870321846, -0.007306034424402164, -0.009949542177106122, -0.012343541903364506, -0.014429681259710532, -0.016157282560405096, -0.01748457332278261, -0.018379695715318146, -0.01882147052916997, -0.01879989736963453, -0.01831637927773816, -0.017383666783279565, -0.016025523291719142, -0.01427612054869527, -0.012179179539710703, -0.0097868784066856, -0.007158554645466938, -0.004359233850482814, -0.0014580214729518557, 0.001473602644254898, 0.004363544878129201, 0.0071408702303832885, 0.009737542963765855, 0.012090092769458544, 0.01414116567388682, 0.01584092180037047, 0.017148245933255975, 0.018031741493678068, 0.018470483910864078, 0.01845451532759405, 0.01798506896573736, 0.01707451814002669, 0.015746051681265503, 0.014033084247438328, 0.011978416497832857, 0.009633166222115746, 0.00705549710381825, 0.00430917671959886, 0.0014619995123083566, -0.0014158862728771305, -0.004253706412396606, -0.0069818007419346585, -0.009533332639218631, -0.011845926012245675, -0.013863189710639153, -0.015536092116421414, -0.016824152418719495, -0.01769641964107276, -0.018132215756499145, -0.018121625063668836, -0.01766571826299745, -0.016776506209538723, -0.015476624969149652, -0.013798760401989628, -0.011784826881051801, -0.009484920766687369, -0.006956074753967206, -0.004260844054152656, -0.0014657594467195533, 0.0013603145544175315, 0.004147875914810678, 0.006828493904860343, 0.009336488533302297, 0.011610539382894846, 0.013595184450611883, 0.015242172367376374, 0.016511635039784277, 0.017373052226689063, 0.01780598472570211, 0.01780055857058245, 0.017357688788491536, 0.01648903768441214, 0.015216709150542095, 0.013572686980568186, 0.01159803144326871, 0.009341854283142888, 0.006860097723097219, 0.004214147813740005, 0.0014693164894945697, -0.0013067701437440014, -0.0040458375275462, -0.006680641358166121, -0.009146618017093154, -0.0113834662274503, -0.01333662119966703, -0.014958585239220964, -0.016210082378840997, -0.01706100897767458, -0.017491157291565685, -0.01749069463624016, -0.017060386799887944, -0.016211560664404667, -0.014965807410119642, -0.013354434049408948, -0.011417677203762454, -0.009203698855466397, -0.006767389126796341, -0.004169005836659759, -0.0014726845426650819, 0.0012551441002949801, 0.003947390620945601, 0.0065379563580783735, 0.008963355880674225, 0.011164272388517736, 0.013087007995559244, 0.014684793446642131, 0.015918925332827495, 0.016759703163586936, 0.017187143618797848, 0.017191454816652803, 0.01677325935891348, 0.015943561106138794, 0.014723456940057058, 0.013143601033070898, 0.01124343521221113, 0.00907020472798412, 0.006677783977501164, 0.004125341358151963, 0.0014758763303122046, -0.001205335149493303, -0.003852348474225018, -0.006400171916557612, -0.00878636198084347, -0.010952553425031049, -0.012845886472440166, -0.014420296322880392, -0.015637633514912264, -0.01646858790008491, -0.016893393861042556, -0.016902299817695803, -0.01649579088533091, -0.01568455963193187, -0.014489226079229364, -0.012939814250640157, -0.011074998538095987, -0.008941138792478176, -0.006591128201166568, -0.004083082575162079, -0.0014789035163416356, 0.0011572490206432794, 0.003760537090971077, 0.006267039128891068, 0.00861531912689057, 0.010747932112644135, 0.012612829041148344, 0.014164626752362209, 0.015365712017225888, 0.016187152822868107, 0.01660939482846842, 0.016622726238085854, 0.016227500054346724, 0.015434108656074051, 0.014262711736419728, 0.01274272469594658, 0.010912080458641957, 0.008816283224044635, 0.006507277749850236, 0.004042162252482353, 0.0014817768087461913, -0.0011107978522340363, -0.0036717941336340152, -0.006138325668332858, -0.008449931176799973, -0.010550056192249302, -0.01238743634879343, -0.013917348406577077, -0.01510269849307102, -0.015914921089308, -0.016334666983135498, -0.016352263632192436, -0.015967936998171076, -0.015191789792313391, -0.014043537065175988, -0.012552006034062167, -0.010754412822790367, -0.008695434248910875, -0.0064260977994751774, -0.0040025173657611225, -0.0014845060520989296, 0.001065899656782016, 0.0035859679633027165, 0.0060138144286458195, 0.008289921319845869, 0.010358596338355043, 0.012169334985884152, 0.01367805324879071, 0.014848160522422897, 0.01565144667071293, 0.016068761725133097, 0.01609047185663239, 0.0157166807775033, 0.014957211510959738, 0.013831349362103413, 0.012367352789886227, 0.010601744571577303, 0.00857840102955967, 0.006347462023384735, 0.003964088777422741, 0.0014871003097710904, -0.0010224778383769964, -0.0035029167728239732, -0.005893302297866349, -0.008135030524631656, -0.010173244322677057, -0.011958175413308776, -0.013446359277576559, -0.014601693229142412, -0.015396311902883136, -0.01581125893718057, -0.0158369386691664, -0.01547333709304844, -0.014730007018010421, -0.013625818163939131, -0.012188478707671256, -0.010453840397743728, -0.008465004654331396, -0.006271251933469948, -0.0039268209420180444, -0.001489567937158992, 0.0009804607569779006, 0.0034225078028503587, 0.005776599048728849, 0.007985016134274239, 0.009993711351404286, 0.01175363008496115, 0.013221908482918276, 0.014362917122283454, 0.01514912526666108, 0.015561764759421884, 0.01559127755234534, 0.015237536210895197, 0.014509832332133389, 0.013426633521814398, 0.012015115262961428, 0.010310479529530386, 0.008355077220264368, 0.006197356281645716, 0.00389066163793881, 0.0014919166470259346, -0.0009397813342606426, -0.0033446166317085586, -0.005663526333004577, -0.007839650592711016, -0.009819726557275166, -0.011555391744804534, -0.0130043649918816, -0.01413147613728624, -0.014909519373670103, -0.015319909569623626, -0.015353125737739847, -0.015008931078796509, -0.014296364538302181, -0.013233504433751023, -0.011847010310674214, -0.010171454625439188, -0.008248460999282507, -0.006125670515331982, -0.003855561722788522, -0.0014941535679170478, 0.0009003766964703528, 0.0032691265311028126, 0.0055539167685768045, 0.007698720288068272, 0.00965103562990568, 0.0113631718797509, 0.012793413383655425, 0.013907035855790523, 0.014677149135446097, 0.015085346146991647, 0.015122142409512167, 0.014787195613167586, 0.014089300199438874, 0.013046157418718991, 0.01168392685501652, 0.010036570768324824, 0.00814500767903409, 0.006056096281334168, 0.0038214749100170414, 0.0014962852964667261, -0.0008621878502874215, -0.0031959278806493285, -0.0054476131094249956, -0.007562024500735143, -0.009487399569802346, -0.011176699311977477, -0.012588757156183593, -0.01368928188535334, -0.014451690096772446, -0.014857748000421564, -0.014898007068620149, -0.014572023139021235, -0.013888353909628899, -0.012864335217565165, -0.011525641928607123, -0.009905644548561236, -0.008044577670688067, -0.005988540973186719, -0.0037883575646898123, -0.001498317944330809, 0.0008251593882101772, 0.0031249176350564944, 0.005344467489871771, 0.007429374445238039, 0.009328593553228418, 0.01099571891622731, 0.01239011732871508, 0.013477918382556037, 0.014232836916291836, 0.014636807844256994, 0.014680418041143398, 0.014363124967141193, 0.01369325697440835, 0.012687795607829424, 0.011371945569670666, 0.009778503227204973, 0.007947039476913437, 0.005922917317570183, 0.0037561685165216764, 0.0015002571803482342, -0.0007892392203539142, -0.00305599883852761, -0.0052443407354430495, -0.007300592396315815, -0.009174405896575442, -0.010819990449348012, -0.012197231166414461, -0.01327266670491837, -0.014020301979428757, -0.01442223620659061, -0.014469091116130787, -0.014160229094615801, -0.013503756205283617, -0.012516310320976625, -0.011222639887424142, -0.009654983971142277, -0.007852269114008591, -0.005859142995939682, -0.0037248688884814903, -0.0015021082684972948, 0.0007543783299625474, 0.0029890801815565184, 0.005147101733607314, 0.007175510890671145, 0.00902463711022394, 0.010649287480762942, 0.012009851014782252, 0.013073264178693695, 0.01381381413037713, 0.014213760156853028, 0.014263758300036197, 0.013963079016428607, 0.013319612817118734, 0.012349664051856333, 0.01107753820692213, 0.009534933153084136, 0.007760149582860876, 0.005797140297899653, 0.0036944219394958186, 0.0015038761021002299, -0.0007205305502049192, -0.002924075595879741, -0.005052626858393404, -0.0070539719968784826, -0.008879099032985255, -0.010483396413877239, -0.011827743233000787, -0.01287946297109578, -0.013613117511392785, -0.014011122140930357, -0.014064166676264553, -0.013771432637189442, -0.013140601418286135, -0.012187653551363304, -0.010936464285577633, -0.00941820571009868, -0.007670570383973723, -0.005736835803278369, -0.00366479291990011, -0.001505565234712698, 0.0006876523601449177, 0.00286090388378893, 0.0049607994435985295, 0.006935826646738437, 0.008737614039244647, 0.01032211558951199, 0.01165068721655711, 0.012691029056767581, 0.013417970498948804, 0.01381407891335426, 0.013870077359622441, 0.01358506127329902, 0.012966509084608432, 0.01203008679424868, 0.010799251594458353, 0.009304664555034639, 0.007583427072353721, 0.005678160090151053, 0.0036359489384678225, 0.0015071799080418947, -0.0006557026979732587, -0.002799488378469224, -0.004871509299848556, -0.006820934022144984, -0.008600014311765478, -0.010165254463467898, -0.011478474500535086, -0.012507741269437883, -0.013228144727447802, -0.013622400557258236, -0.013681264536586484, -0.013403748736896341, -0.012797134509085466, -0.01187678221492805, -0.010665742658183706, -0.009194180035830985, -0.00749862084847184, -0.005621047466391402, -0.003607858839933144, -0.0015087240772337124, 0.0006246427898401269, 0.0027397566323579653, 0.004784652271327459, 0.0067091609921461235, 0.008466141173911168, 0.010012632851152684, 0.011310907935924272, 0.012329390430677602, 0.013043424192202443, 0.013435869583795883, 0.013497514583281578, 0.013227290493877985, 0.01263228722027037, 0.011727568004884567, 0.010535788447934154, 0.009086629438214764, 0.007416058181949052, 0.00556543572255255, 0.003580493092072516, 0.0015102014337905801, -0.0005944359927717659, -0.0026816401308817728, -0.00470012982840901, -0.0066003815954845954, -0.008335844475682933, -0.00986408023299002, -0.011147800932092089, -0.012155778548548051, -0.012863604424271008, -0.013254280103606731, -0.013318625253926769, -0.013055492889090718, -0.012471786862916317, -0.011582281465954499, -0.010409247822644397, -0.008981896527792336, -0.007335650464937203, -0.005511265904143077, -0.0035538236814692103, -0.0015116154263880575, 0.0005650476503559502, 0.002625074029175856, 0.004617848692860326, 0.006494476564373363, 0.008208982028594632, 0.009719435114967555, 0.01098897675931067, 0.011986718079678929, 0.012688491730525973, 0.013077437063691641, 0.013144404933265979, 0.012888172432530941, 0.012315462535176964, 0.01144076841438057, 0.010285987013979746, 0.008879871127927713, 0.007257313692511953, 0.005458482101529113, 0.0035278240172099684, 0.0015129692797900048, -0.0005364449599844065, -0.002569996909679064, -0.004537720492602471, -0.006391332885738158, -0.008085419084898076, -0.009578544439296014, -0.010834267905846674, -0.011822031249002064, -0.012517902493012715, -0.012905155543753462, -0.01297467194717528, -0.012725155141015774, -0.012163152177246664, -0.011302882631036643, -0.010165879151148737, -0.008780448730199682, -0.007180968167638807, -0.0054070312559075595, -0.003502468841801931, -0.0015142660120755424, 0.0005085968506047051, 0.002516350558681798, 0.004459661443360502, 0.006290843396517416, 0.007965027857164334, 0.009441263040645211, 0.010683515484707942, 0.011661549421945758, 0.012351662522275424, 0.012737260106664346, 0.012809253926231617, 0.012566275930364277, 0.012014702006836162, 0.011168485353712086, 0.01004880382199437, 0.008683530134531634, 0.007106538228550186, 0.005356862979918629, 0.0034777341487035773, 0.0015155084503307484, -0.00048147387000675127, -0.0024640797601373898, -0.004383592054774834, -0.006192906409989943, -0.007847687074605545, -0.0093074531439088, -0.010536568685619762, -0.011505112524436771, -0.012189606459857474, -0.012573584198265635, -0.01264798721755697, -0.012411378053621193, -0.011869965997356654, -0.011037444807740571, -0.009934646667183755, -0.008589021116394065, -0.00703395199656127, -0.005307929391640506, -0.0034535971058876984, -0.0015166992449763606, 0.00045504808080494644, 0.0024131321051841085, 0.0043094368588250075, 0.006097425370375175, 0.007733281572913899, 0.009176983899832552, 0.010393284268267678, 0.011352568506508866, 0.012031577225672833, 0.012413969592181787, 0.012490716340718397, 0.0122603125813083, 0.011728805395083586, 0.010909635771645183, 0.009823299004609742, 0.008496832118737259, 0.006963141142563334, 0.005260184960803945, 0.0034300359849442144, 0.0015178408828486465, -0.00042929296432670666, -0.0023634578160154794, -0.00423712415859844, -0.006004308533256249, -0.0076217019146873, -0.009049730955228595, -0.01025352609321708, -0.01120377284574724, -0.011877425506361262, -0.012258265875760156, -0.012337293483882128, -0.012112937920077005, -0.011591088271950845, -0.010784939174781327, -0.009714657481423113, -0.008406877966526699, -0.00689404067060509, -0.005213586366194846, -0.0034070300952478713, -0.00151893569917239, 0.0004041833317320204, 0.002315009582837331, 0.004166585795663758, 0.005913468669586753, 0.007512844037826396, 0.008925576054795938, 0.010117164687290837, 0.01105858808715264, 0.011727009281129073, 0.012106329973623976, 0.012187578036788896, 0.011969119366495626, 0.011456689110939219, 0.010663241724268918, 0.009608623751342376, 0.008319077601981749, 0.006826588717109863, 0.0051680923633116785, 0.0033845597227788226, 0.0015199858885156523, -0.0003796952417209309, -0.0022677424128073795, -0.004097756934445488, -0.005824822791289849, -0.007406608929514508, -0.008804406671879646, -0.00998407684047834, -0.010916883416353232, -0.011580193381905555, -0.01195802570566827, -0.01204143615744952, -0.011828728693012117, -0.011325488421326635, -0.010544435558748188, -0.009505104175134735, -0.008233353838774774, -0.006760726364439712, -0.005123663661415923, -0.003362606073222352, -0.0015209935148396514, 0.0003558059242827915, 0.002221613489926448, 0.004030575862183344, 0.005738291896619945, 0.007302902323647602, 0.008686115665733228, 0.009854145231748162, 0.010778534263371465, 0.011436849084956653, 0.01181322337662648, 0.011898740369753472, 0.01169164376342075, 0.011197372381315067, 0.010428417926743648, 0.009404009542339973, 0.008149633133637214, 0.006696397467611093, 0.00508026280922129, 0.003341151218990552, 0.0015219605207158697, -0.00033249370996061596, -0.0021765820449820453, -0.003964983803162525, -0.00565380073366025, -0.007201634419757122, -0.00857060096310209, -0.009727258081365882, -0.010643421934430644, -0.011296853731357609, -0.011671799394609888, -0.011759369189448235, -0.011557748175405612, -0.011072232505793696, -0.01031509088761188, -0.009305254812510079, -0.00806784537393949, -0.006633548493105717, -0.0050378540885072905, -0.00332017804986942, -0.0015228887357929956, 0.0003097379641832494, 0.002132609234697734, 0.0039009247460562724, 0.005571277580452986, 0.007102719621677949, 0.008457765262127215, 0.009603308827561241, 0.010511433269506563, 0.01116009037397745, 0.011533635916259543, 0.01162320677618236, 0.011426930927965387, 0.010949965337194096, 0.010204361033252212, 0.009208758874376458, 0.007987923679968019, 0.0065721283687898355, 0.004996403415038089, 0.003299670226990114, 0.0015237798845877746, -0.00028751902624220564, -0.0020896580293490383, -0.003838345283298632, -0.00549065404042726, -0.00700607629434954, -0.008347515756775607, -0.00948219582556923, -0.010382460323554851, -0.011026447448835167, -0.011398620516371472, -0.011490142609518077, -0.011299086111719097, -0.01083047215759177, -0.010096139228910174, -0.009114444321521939, -0.007909804220715057, -0.006512088344072049, -0.004955878246193867, -0.0032796121398813776, -0.0015246355936486423, 0.00026581815252941317, 0.0020476931081573504, 0.0037771944615355283, 0.005411864851883404, 0.006911626537311458, 0.00823976388014558, 0.009363822067268227, 0.010256400069519504, 0.010895818468891231, 0.011266645880046446, 0.0113600711870085, 0.011174112620279932, 0.010713658720364531, 0.009990340371570247, 0.009022237243243287, 0.007833426042127466, 0.00645338185948109, 0.004916247494804226, 0.0032599888663503917, 0.0015254573981639328, -0.0002446174637050831, -0.002006680761836088, -0.0037174236422587853, -0.0053348477104333165, -0.006819295973559219, -0.00813442506516627, -0.009248094919780498, -0.010133154121412417, -0.010768101738503401, -0.011137609515594709, -0.011232891742606404, -0.01105191388104099, -0.010599434999880308, -0.009886883164553559, -0.008932067029426978, -0.0077587309068310635, -0.006395964424944249, -0.004877481448689318, -0.003240786134992019, -0.0015262467480482893, 0.00022389989546712193, 0.001966588801736915, 0.0036589863718344637, 0.005259543103367455, 0.006729013552570935, 0.00803141852132107, 0.009134925881564053, 0.010012628475892515, 0.010643200086942263, 0.011011413486579361, 0.011108507983824576, 0.010932397603869465, 0.010487714957811752, 0.009785689907073791, 0.008843866188345628, 0.007685663144457024, 0.00633979350608419, 0.0048395516954862485, 0.0032219902901132642, 0.0015270050135687122, -0.00020364915265412223, -0.0019273864750659596, -0.0036018382601906906, -0.00518589415503449, -0.006640711366395806, -0.007930667026167472, -0.009024230354636906, -0.009894733270925042, -0.01052102061949433, -0.01088796416152825, -0.01098682784620731, -0.010815475546331858, -0.01037841632480821, -0.009686686297598708, -0.008757570176396957, -0.007614169511750057, -0.006284828417937068, -0.004802431052346535, -0.003203588258907899, -0.0015277334905348747, 0.00018384966640662659, 0.0018890443857169051, 0.0035459368674946967, 0.00511384648238484, 0.006554324477814246, 0.007832096730511445, 0.00891592743171094, 0.0097793825602118, 0.010401474484817446, 0.01076717197996795, 0.010867763263796957, 0.01070106329419811, 0.010271460396355445, 0.009589801249979152, 0.008673117238872902, 0.007544199061731474, 0.0062310302255206415, 0.004766093500153822, 0.0031855675207004695, 0.0015284334051064155, -0.00016448655416644695, -0.0018515344202770054, -0.003491241598222934, -0.0050433480599028115, -0.006469790759651679, -0.007735636976214574, -0.008809939697100646, -0.009666494102209426, -0.010284476657319522, -0.010648951233553383, -0.01075122995439325, -0.010589080056074333, -0.01016677184176389, -0.009494966721381806, -0.008590448260943039, -0.0074757030212299624, -0.006178361650754986, -0.004730514121913109, -0.0031679160781232906, -0.0015291059182347367, 0.00014554558228247226, 0.0018148296788304194, 0.0034377136020542084, 0.004974349093233294, 0.006387050744406665, 0.00764122012567864, 0.008706193040386213, 0.009555989162640333, 0.010169945733445008, 0.010533219861166827, 0.010637147218504657, 0.01047944847111701, 0.010064278525306006, 0.009402117551157869, 0.008509506628087186, 0.007408634676172836, 0.006126786985255266, 0.004695669045019289, 0.0031506224300722734, 0.00152975212978499, -0.00012701313104154568, -0.0017789044101855964, -0.0033853156810923096, -0.0049068019008445575, -0.006306047483438199, -0.007548781402151541, -0.008604616481879815, -0.009447792329506606, -0.010057803740838872, -0.010419899256959096, -0.010525437750984275, -0.010372094428864201, -0.00996391133861546, -0.009311191309838516, -0.008430238095294144, -0.007342949264059696, -0.0060762720085808086, -0.004661535387110025, -0.0031336755463287234, -0.001530373082350148, 0.0001088761619285668, 0.0017437339512144095, 0.00333401220293789, 0.004840660803149927, 0.006226726414999595, 0.007458258740058715, 0.008505142009038258, 0.009341831339686926, 0.009947975959452496, 0.010308914090387096, 0.010416027464426008, 0.010266946900304674, 0.00986560404352474, 0.009222128157529003, 0.008352590664382306, 0.007278603873109481, 0.006026783911534547, 0.004628091205258873, 0.0031170648437149825, 0.001530969764797153, -0.00009112218696606803, -0.0017092946699876987, -0.003283769019197351, -0.004775882018532973, -0.006149035240488571, -0.0073695926446301525, -0.008407704423026918, -0.009238036916283918, -0.009840390753724568, -0.010200192137384127, -0.010308845323473495, -0.010163937779373152, -0.009769293124595185, -0.009134870711019328, -0.008276514468868288, -0.007215557347592569, -0.0059782912241642, -0.004595315448258029, -0.00310078016369045, -0.001531543115552564, 0.0000737392399667339, 0.001675563912446815, 0.0032345533890227388, 0.004712423565792373, 0.0060729238083116685, 0.00728272606016411, 0.008312241194704922, 0.009136342615950489, 0.009734979415048518, 0.010093664121865643, 0.010203823189262884, 0.010063001734130994, 0.00967491765064457, 0.009049363918998405, 0.008201961665838864, 0.007153770198919874, 0.005930763748120867, 0.0045631879117862895, 0.0030848117512741317, 0.00153209402566305, -0.000056715849575066915, -0.001642519952343532, -0.0031863339073372196, -0.004650245172536397, -0.005998344004833064, -0.007197604246304405, -0.008218692329369866, -0.009036684685486062, -0.009631676013797021, -0.009989263566841785, -0.01010089567328384, -0.009964076066946442, -0.009582419144642727, -0.008965554944794535, -0.008128886334342557, -0.007093204522074692, -0.005884172493081779, -0.004531689196248325, -0.0030691502352163075, -0.0015326233416345881, 0.000040041013955833456, 0.001610141944230643, 0.003139080437401436, 0.004589308189120179, 0.005925249651897664, 0.007114174661777941, 0.00812700023963896, 0.008939001927057518, 0.009530417260232635, 0.00988692665446217, 0.01],"x":[-100.0,-99.95002498750625,-99.9000499750125,-99.85007496251875,-99.80009995002499,-99.75012493753124,-99.70014992503748,-99.65017491254373,-99.60019990004997,-99.55022488755623,-99.50024987506247,-99.45027486256872,-99.40029985007496,-99.35032483758121,-99.30034982508745,-99.2503748125937,-99.20039980009994,-99.1504247876062,-99.10044977511244,-99.05047476261869,-99.00049975012493,-98.95052473763118,-98.90054972513744,-98.85057471264368,-98.80059970014993,-98.75062468765617,-98.70064967516242,-98.65067466266866,-98.60069965017492,-98.55072463768116,-98.50074962518741,-98.45077461269365,-98.4007996001999,-98.35082458770614,-98.3008495752124,-98.25087456271864,-98.20089955022489,-98.15092453773113,-98.10094952523738,-98.05097451274362,-98.00099950024988,-97.95102448775611,-97.90104947526237,-97.85107446276862,-97.80109945027486,-97.75112443778112,-97.70114942528735,-97.65117441279361,-97.60119940029985,-97.5512243878061,-97.50124937531234,-97.4512743628186,-97.40129935032483,-97.35132433783109,-97.30134932533733,-97.25137431284358,-97.20139930034982,-97.15142428785607,-97.10144927536231,-97.05147426286857,-97.0014992503748,-96.95152423788106,-96.90154922538731,-96.85157421289355,-96.8015992003998,-96.75162418790605,-96.7016491754123,-96.65167416291854,-96.60169915042479,-96.55172413793103,-96.50174912543729,-96.45177411294353,-96.40179910044978,-96.35182408795602,-96.30184907546227,-96.25187406296851,-96.20189905047476,-96.151924037981,-96.10194902548726,-96.0519740129935,-96.00199900049975,-95.95202398800599,-95.90204897551224,-95.8520739630185,-95.80209895052474,-95.75212393803099,-95.70214892553723,-95.65217391304348,-95.60219890054972,-95.55222388805598,-95.50224887556222,-95.45227386306847,-95.40229885057471,-95.35232383808096,-95.3023488255872,-95.25237381309346,-95.2023988005997,-95.15242378810595,-95.10244877561219,-95.05247376311844,-95.00249875062468,-94.95252373813094,-94.90254872563717,-94.85257371314343,-94.80259870064968,-94.75262368815592,-94.70264867566218,-94.65267366316841,-94.60269865067467,-94.55272363818091,-94.50274862568716,-94.4527736131934,-94.40279860069965,-94.3528235882059,-94.30284857571215,-94.25287356321839,-94.20289855072464,-94.15292353823088,-94.10294852573713,-94.05297351324337,-94.00299850074963,-93.95302348825587,-93.90304847576212,-93.85307346326836,-93.80309845077461,-93.75312343828087,-93.7031484257871,-93.65317341329336,-93.6031984007996,-93.55322338830585,-93.50324837581209,-93.45327336331835,-93.40329835082458,-93.35332333833084,-93.30334832583708,-93.25337331334333,-93.20339830084957,-93.15342328835582,-93.10344827586206,-93.05347326336832,-93.00349825087456,-92.95352323838081,-92.90354822588705,-92.8535732133933,-92.80359820089954,-92.7536231884058,-92.70364817591205,-92.65367316341829,-92.60369815092454,-92.55372313843078,-92.50374812593704,-92.45377311344328,-92.40379810094953,-92.35382308845577,-92.30384807596202,-92.25387306346826,-92.20389805097452,-92.15392303848076,-92.10394802598701,-92.05397301349325,-92.0039980009995,-91.95402298850574,-91.904047976012,-91.85407296351823,-91.80409795102449,-91.75412293853073,-91.70414792603698,-91.65417291354323,-91.60419790104947,-91.55422288855573,-91.50424787606197,-91.45427286356822,-91.40429785107446,-91.35432283858071,-91.30434782608695,-91.2543728135932,-91.20439780109945,-91.1544227886057,-91.10444777611194,-91.0544727636182,-91.00449775112443,-90.95452273863069,-90.90454772613693,-90.85457271364318,-90.80459770114942,-90.75462268865567,-90.70464767616193,-90.65467266366817,-90.60469765117442,-90.55472263868066,-90.50474762618691,-90.45477261369315,-90.4047976011994,-90.35482258870564,-90.3048475762119,-90.25487256371814,-90.20489755122439,-90.15492253873063,-90.10494752623688,-90.05497251374312,-90.00499750124938,-89.95502248875562,-89.90504747626187,-89.85507246376811,-89.80509745127436,-89.7551224387806,-89.70514742628686,-89.65517241379311,-89.60519740129935,-89.5552223888056,-89.50524737631184,-89.4552723638181,-89.40529735132434,-89.35532233883059,-89.30534732633683,-89.25537231384308,-89.20539730134932,-89.15542228885558,-89.10544727636182,-89.05547226386807,-89.00549725137431,-88.95552223888056,-88.9055472263868,-88.85557221389305,-88.8055972013993,-88.75562218890555,-88.70564717641179,-88.65567216391804,-88.6056971514243,-88.55572213893053,-88.50574712643679,-88.45577211394303,-88.40579710144928,-88.35582208895552,-88.30584707646177,-88.25587206396801,-88.20589705147427,-88.1559220389805,-88.10594702648676,-88.055972013993,-88.00599700149925,-87.95602198900549,-87.90604697651175,-87.85607196401799,-87.80609695152424,-87.75612193903048,-87.70614692653673,-87.65617191404297,-87.60619690154923,-87.55622188905548,-87.50624687656172,-87.45627186406797,-87.40629685157421,-87.35632183908046,-87.3063468265867,-87.25637181409296,-87.2063968015992,-87.15642178910545,-87.10644677661169,-87.05647176411794,-87.00649675162418,-86.95652173913044,-86.90654672663668,-86.85657171414293,-86.80659670164917,-86.75662168915542,-86.70664667666166,-86.65667166416792,-86.60669665167416,-86.55672163918041,-86.50674662668666,-86.4567716141929,-86.40679660169916,-86.3568215892054,-86.30684657671165,-86.25687156421789,-86.20689655172414,-86.15692153923038,-86.10694652673664,-86.05697151424287,-86.00699650174913,-85.95702148925537,-85.90704647676162,-85.85707146426786,-85.80709645177411,-85.75712143928035,-85.70714642678661,-85.65717141429285,-85.6071964017991,-85.55722138930535,-85.5072463768116,-85.45727136431785,-85.40729635182409,-85.35732133933034,-85.30734632683658,-85.25737131434283,-85.20739630184907,-85.15742128935533,-85.10744627686157,-85.05747126436782,-85.00749625187406,-84.95752123938031,-84.90754622688655,-84.8575712143928,-84.80759620189905,-84.7576211894053,-84.70764617691154,-84.65767116441779,-84.60769615192403,-84.55772113943029,-84.50774612693654,-84.45777111444278,-84.40779610194903,-84.35782108945527,-84.30784607696152,-84.25787106446776,-84.20789605197402,-84.15792103948026,-84.10794602698651,-84.05797101449275,-84.007996001999,-83.95802098950524,-83.9080459770115,-83.85807096451774,-83.80809595202399,-83.75812093953023,-83.70814592703648,-83.65817091454272,-83.60819590204898,-83.55822088955522,-83.50824587706147,-83.45827086456772,-83.40829585207396,-83.35832083958022,-83.30834582708646,-83.25837081459271,-83.20839580209895,-83.1584207896052,-83.10844577711144,-83.0584707646177,-83.00849575212393,-82.95852073963019,-82.90854572713643,-82.85857071464268,-82.80859570214892,-82.75862068965517,-82.70864567716141,-82.65867066466767,-82.6086956521739,-82.55872063968016,-82.5087456271864,-82.45877061469265,-82.40879560219891,-82.35882058970515,-82.3088455772114,-82.25887056471764,-82.2088955522239,-82.15892053973013,-82.10894552723639,-82.05897051474263,-82.00899550224888,-81.95902048975512,-81.90904547726137,-81.85907046476761,-81.80909545227387,-81.7591204397801,-81.70914542728636,-81.6591704147926,-81.60919540229885,-81.55922038980509,-81.50924537731134,-81.45927036481758,-81.40929535232384,-81.35932033983009,-81.30934532733633,-81.25937031484258,-81.20939530234882,-81.15942028985508,-81.10944527736132,-81.05947026486757,-81.00949525237381,-80.95952023988006,-80.9095452273863,-80.85957021489256,-80.8095952023988,-80.75962018990505,-80.70964517741129,-80.65967016491754,-80.60969515242378,-80.55972013993004,-80.50974512743628,-80.45977011494253,-80.40979510244878,-80.35982008995502,-80.30984507746128,-80.25987006496752,-80.20989505247377,-80.15992003998001,-80.10994502748626,-80.0599700149925,-80.00999500249875,-79.960019990005,-79.91004497751125,-79.86006996501749,-79.81009495252374,-79.76011994002998,-79.71014492753623,-79.66016991504247,-79.61019490254873,-79.56021989005497,-79.51024487756122,-79.46026986506746,-79.41029485257371,-79.36031984007997,-79.3103448275862,-79.26036981509246,-79.2103948025987,-79.16041979010495,-79.11044477761119,-79.06046976511745,-79.01049475262369,-78.96051974012994,-78.91054472763618,-78.86056971514243,-78.81059470264867,-78.76061969015493,-78.71064467766116,-78.66066966516742,-78.61069465267366,-78.56071964017991,-78.51074462768615,-78.4607696151924,-78.41079460269864,-78.3608195902049,-78.31084457771115,-78.26086956521739,-78.21089455272364,-78.16091954022988,-78.11094452773614,-78.06096951524238,-78.01099450274863,-77.96101949025487,-77.91104447776112,-77.86106946526736,-77.81109445277362,-77.76111944027986,-77.71114442778611,-77.66116941529235,-77.6111944027986,-77.56121939030484,-77.5112443778111,-77.46126936531734,-77.41129435282359,-77.36131934032983,-77.31134432783608,-77.26136931534234,-77.21139430284857,-77.16141929035483,-77.11144427786107,-77.06146926536732,-77.01149425287356,-76.96151924037981,-76.91154422788605,-76.86156921539231,-76.81159420289855,-76.7616191904048,-76.71164417791104,-76.6616691654173,-76.61169415292353,-76.56171914042979,-76.51174412793603,-76.46176911544228,-76.41179410294852,-76.36181909045477,-76.31184407796101,-76.26186906546727,-76.21189405297352,-76.16191904047976,-76.11194402798601,-76.06196901549225,-76.0119940029985,-75.96201899050475,-75.912043978011,-75.86206896551724,-75.81209395302349,-75.76211894052973,-75.71214392803599,-75.66216891554222,-75.61219390304848,-75.56221889055472,-75.51224387806097,-75.46226886556721,-75.41229385307346,-75.3623188405797,-75.31234382808596,-75.2623688155922,-75.21239380309845,-75.1624187906047,-75.11244377811094,-75.0624687656172,-75.01249375312344,-74.96251874062969,-74.91254372813593,-74.86256871564218,-74.81259370314842,-74.76261869065468,-74.71264367816092,-74.66266866566717,-74.61269365317341,-74.56271864067966,-74.5127436281859,-74.46276861569216,-74.4127936031984,-74.36281859070465,-74.31284357821089,-74.26286856571714,-74.2128935532234,-74.16291854072963,-74.11294352823589,-74.06296851574213,-74.01299350324838,-73.96301849075462,-73.91304347826087,-73.86306846576711,-73.81309345327337,-73.7631184407796,-73.71314342828586,-73.6631684157921,-73.61319340329835,-73.5632183908046,-73.51324337831085,-73.46326836581709,-73.41329335332334,-73.36331834082958,-73.31334332833583,-73.26336831584207,-73.21339330334833,-73.16341829085458,-73.11344327836082,-73.06346826586707,-73.01349325337331,-72.96351824087957,-72.9135432283858,-72.86356821589206,-72.8135932033983,-72.76361819090455,-72.71364317841079,-72.66366816591704,-72.61369315342328,-72.56371814092954,-72.51374312843578,-72.46376811594203,-72.41379310344827,-72.36381809095452,-72.31384307846076,-72.26386806596702,-72.21389305347326,-72.16391804097951,-72.11394302848576,-72.063968015992,-72.01399300349826,-71.9640179910045,-71.91404297851075,-71.86406796601699,-71.81409295352324,-71.76411794102948,-71.71414292853574,-71.66416791604198,-71.61419290354823,-71.56421789105447,-71.51424287856072,-71.46426786606696,-71.41429285357322,-71.36431784107945,-71.31434282858571,-71.26436781609195,-71.2143928035982,-71.16441779110444,-71.1144427786107,-71.06446776611695,-71.01449275362319,-70.96451774112944,-70.91454272863568,-70.86456771614193,-70.81459270364817,-70.76461769115443,-70.71464267866067,-70.66466766616692,-70.61469265367316,-70.56471764117941,-70.51474262868565,-70.4647676161919,-70.41479260369815,-70.3648175912044,-70.31484257871064,-70.26486756621689,-70.21489255372313,-70.16491754122939,-70.11494252873563,-70.06496751624188,-70.01499250374813,-69.96501749125437,-69.91504247876063,-69.86506746626686,-69.81509245377312,-69.76511744127936,-69.71514242878561,-69.66516741629185,-69.6151924037981,-69.56521739130434,-69.5152423788106,-69.46526736631684,-69.41529235382309,-69.36531734132933,-69.31534232883558,-69.26536731634182,-69.21539230384808,-69.16541729135432,-69.11544227886057,-69.06546726636682,-69.01549225387306,-68.96551724137932,-68.91554222888556,-68.86556721639181,-68.81559220389805,-68.7656171914043,-68.71564217891054,-68.6656671664168,-68.61569215392304,-68.56571714142929,-68.51574212893553,-68.46576711644178,-68.41579210394802,-68.36581709145428,-68.31584207896051,-68.26586706646677,-68.21589205397301,-68.16591704147926,-68.1159420289855,-68.06596701649175,-68.01599200399801,-67.96601699150425,-67.9160419790105,-67.86606696651674,-67.816091954023,-67.76611694152923,-67.71614192903549,-67.66616691654173,-67.61619190404798,-67.56621689155422,-67.51624187906047,-67.46626686656671,-67.41629185407297,-67.3663168415792,-67.31634182908546,-67.2663668165917,-67.21639180409795,-67.16641679160419,-67.11644177911045,-67.06646676661668,-67.01649175412294,-66.96651674162919,-66.91654172913543,-66.86656671664169,-66.81659170414792,-66.76661669165418,-66.71664167916042,-66.66666666666667,-66.61669165417291,-66.56671664167916,-66.5167416291854,-66.46676661669166,-66.4167916041979,-66.36681659170415,-66.31684157921039,-66.26686656671664,-66.21689155422288,-66.16691654172914,-66.11694152923538,-66.06696651674163,-66.01699150424787,-65.96701649175412,-65.91704147926038,-65.86706646676662,-65.81709145427287,-65.76711644177911,-65.71714142928536,-65.6671664167916,-65.61719140429786,-65.5672163918041,-65.51724137931035,-65.46726636681659,-65.41729135432284,-65.36731634182908,-65.31734132933533,-65.26736631684157,-65.21739130434783,-65.16741629185407,-65.11744127936032,-65.06746626686656,-65.01749125437281,-64.96751624187905,-64.91754122938531,-64.86756621689156,-64.8175912043978,-64.76761619190405,-64.7176411794103,-64.66766616691655,-64.61769115442279,-64.56771614192904,-64.51774112943528,-64.46776611694153,-64.41779110444777,-64.36781609195403,-64.31784107946027,-64.26786606696652,-64.21789105447276,-64.16791604197901,-64.11794102948525,-64.0679660169915,-64.01799100449774,-63.968015992004,-63.918040979510245,-63.86806596701649,-63.81809095452274,-63.768115942028984,-63.71814092953523,-63.66816591704148,-63.618190904547724,-63.56821589205397,-63.51824087956022,-63.468265867066464,-63.41829085457271,-63.368315842078964,-63.31834082958521,-63.26836581709146,-63.2183908045977,-63.16841579210395,-63.1184407796102,-63.06846576711644,-63.01849075462269,-62.968515742128936,-62.91854072963518,-62.86856571714143,-62.818590704647676,-62.76861569215392,-62.71864067966017,-62.668665667166415,-62.61869065467266,-62.56871564217891,-62.518740629685155,-62.4687656171914,-62.41879060469765,-62.3688155922039,-62.31884057971015,-62.268865567216395,-62.21889055472264,-62.16891554222889,-62.118940529735134,-62.06896551724138,-62.01899050474763,-61.969015492253874,-61.91904047976012,-61.86906546726637,-61.81909045477261,-61.76911544227886,-61.71914042978511,-61.66916541729135,-61.6191904047976,-61.569215392303846,-61.51924037981009,-61.46926536731634,-61.419290354822586,-61.36931534232883,-61.319340329835086,-61.26936531734133,-61.21939030484758,-61.169415292353825,-61.11944027986007,-61.06946526736632,-61.019490254872565,-60.96951524237881,-60.91954022988506,-60.869565217391305,-60.81959020489755,-60.7696151924038,-60.719640179910044,-60.66966516741629,-60.61969015492254,-60.569715142428784,-60.51974012993503,-60.46976511744128,-60.41979010494752,-60.36981509245377,-60.31984007996002,-60.26986506746627,-60.21989005497252,-60.16991504247876,-60.11994002998501,-60.069965017491256,-60.0199900049975,-59.97001499250375,-59.920039980009996,-59.87006496751624,-59.82008995502249,-59.770114942528735,-59.72013993003498,-59.67016491754123,-59.620189905047475,-59.57021489255372,-59.52023988005997,-59.470264867566215,-59.42028985507246,-59.37031484257871,-59.320339830084954,-59.27036481759121,-59.220389805097454,-59.1704147926037,-59.12043978010995,-59.070464767616194,-59.02048975512244,-58.97051474262869,-58.920539730134934,-58.87056471764118,-58.82058970514743,-58.77061469265367,-58.72063968015992,-58.670664667666166,-58.62068965517241,-58.57071464267866,-58.520739630184906,-58.47076461769115,-58.4207896051974,-58.370814592703645,-58.32083958020989,-58.27086456771614,-58.22088955522239,-58.17091454272864,-58.120939530234885,-58.07096451774113,-58.02098950524738,-57.971014492753625,-57.92103948025987,-57.87106446776612,-57.821089455272364,-57.77111444277861,-57.72113943028486,-57.671164417791104,-57.62118940529735,-57.5712143928036,-57.521239380309844,-57.47126436781609,-57.42128935532234,-57.37131434282858,-57.32133933033483,-57.271364317841076,-57.22138930534732,-57.17141429285358,-57.12143928035982,-57.07146426786607,-57.021489255372316,-56.97151424287856,-56.92153923038481,-56.871564217891056,-56.8215892053973,-56.77161419290355,-56.721639180409795,-56.67166416791604,-56.62168915542229,-56.571714142928535,-56.52173913043478,-56.47176411794103,-56.421789105447274,-56.37181409295352,-56.32183908045977,-56.271864067966014,-56.22188905547226,-56.171914042978514,-56.12193903048476,-56.07196401799101,-56.021989005497254,-55.9720139930035,-55.92203898050975,-55.87206396801599,-55.82208895552224,-55.77211394302849,-55.72213893053473,-55.67216391804098,-55.622188905547226,-55.57221389305347,-55.52223888055972,-55.472263868065966,-55.42228885557221,-55.37231384307846,-55.322338830584705,-55.27236381809095,-55.2223888055972,-55.172413793103445,-55.1224387806097,-55.072463768115945,-55.02248875562219,-54.97251374312844,-54.922538730634685,-54.87256371814093,-54.82258870564718,-54.772613693153424,-54.72263868065967,-54.67266366816592,-54.622688655672164,-54.57271364317841,-54.52273863068466,-54.4727636181909,-54.42278860569715,-54.3728135932034,-54.32283858070964,-54.27286356821589,-54.222888555722136,-54.17291354322838,-54.122938530734636,-54.07296351824088,-54.02298850574713,-53.973013493253376,-53.92303848075962,-53.87306346826587,-53.823088455772115,-53.77311344327836,-53.72313843078461,-53.673163418290855,-53.6231884057971,-53.57321339330335,-53.523238380809595,-53.47326336831584,-53.42328835582209,-53.373313343328334,-53.32333833083458,-53.27336331834083,-53.223388305847074,-53.17341329335332,-53.12343828085957,-53.07346326836582,-53.02348825587207,-52.973513243378314,-52.92353823088456,-52.87356321839081,-52.82358820589705,-52.7736131934033,-52.723638180909546,-52.67366316841579,-52.62368815592204,-52.573713143428286,-52.52373813093453,-52.47376311844078,-52.423788105947025,-52.37381309345327,-52.32383808095952,-52.273863068465765,-52.22388805597201,-52.17391304347826,-52.123938030984505,-52.07396301849075,-52.023988005997005,-51.97401299350325,-51.9240379810095,-51.874062968515744,-51.82408795602199,-51.77411294352824,-51.724137931034484,-51.67416291854073,-51.62418790604698,-51.574212893553224,-51.52423788105947,-51.47426286856572,-51.42428785607196,-51.37431284357821,-51.324337831084456,-51.2743628185907,-51.22438780609695,-51.174412793603196,-51.12443778110944,-51.07446276861569,-51.02448775612194,-50.97451274362819,-50.924537731134436,-50.87456271864068,-50.82458770614693,-50.774612693653175,-50.72463768115942,-50.67466266866567,-50.624687656171915,-50.57471264367816,-50.52473763118441,-50.474762618690654,-50.4247876061969,-50.37481259370315,-50.324837581209394,-50.27486256871564,-50.22488755622189,-50.174912543728134,-50.12493753123438,-50.07496251874063,-50.02498750624687,-49.97501249375313,-49.92503748125937,-49.87506246876562,-49.825087456271866,-49.77511244377811,-49.72513743128436,-49.675162418790606,-49.62518740629685,-49.5752123938031,-49.525237381309346,-49.47526236881559,-49.42528735632184,-49.375312343828085,-49.32533733133433,-49.27536231884058,-49.225387306346825,-49.17541229385307,-49.12543728135932,-49.075462268865564,-49.02548725637181,-48.97551224387806,-48.92553723138431,-48.87556221889056,-48.825587206396804,-48.77561219390305,-48.7256371814093,-48.675662168915544,-48.62568715642179,-48.57571214392804,-48.52573713143428,-48.47576211894053,-48.425787106446776,-48.37581209395302,-48.32583708145927,-48.275862068965516,-48.22588705647176,-48.17591204397801,-48.125937031484256,-48.0759620189905,-48.02598700649675,-47.976011994002995,-47.92603698150925,-47.876061969015495,-47.82608695652174,-47.77611194402799,-47.726136931534235,-47.67616191904048,-47.62618690654673,-47.576211894052975,-47.52623688155922,-47.47626186906547,-47.426286856571714,-47.37631184407796,-47.32633683158421,-47.276361819090454,-47.2263868065967,-47.17641179410295,-47.12643678160919,-47.07646176911544,-47.026486756621686,-46.97651174412793,-46.92653673163418,-46.87656171914043,-46.82658670664668,-46.776611694152926,-46.72663668165917,-46.67666166916542,-46.626686656671666,-46.57671164417791,-46.52673663168416,-46.476761619190405,-46.42678660669665,-46.3768115942029,-46.326836581709145,-46.27686156921539,-46.22688655672164,-46.176911544227885,-46.12693653173413,-46.07696151924038,-46.026986506746624,-45.97701149425287,-45.92703648175912,-45.877061469265364,-45.82708645677162,-45.777111444277864,-45.72713643178411,-45.67716141929036,-45.6271864067966,-45.57721139430285,-45.5272363818091,-45.47726136931534,-45.42728635682159,-45.377311344327836,-45.32733633183408,-45.27736131934033,-45.227386306846576,-45.17741129435282,-45.12743628185907,-45.077461269365315,-45.02748625687156,-44.97751124437781,-44.927536231884055,-44.8775612193903,-44.827586206896555,-44.7776111944028,-44.72763618190905,-44.677661169415295,-44.62768615692154,-44.57771114442779,-44.527736131934034,-44.47776111944028,-44.42778610694653,-44.377811094452774,-44.32783608195902,-44.27786106946527,-44.22788605697151,-44.17791104447776,-44.12793603198401,-44.07796101949025,-44.0279860069965,-43.978010994502746,-43.92803598200899,-43.87806096951524,-43.828085957021486,-43.77811094452774,-43.728135932033986,-43.67816091954023,-43.62818590704648,-43.578210894552726,-43.52823588205897,-43.47826086956522,-43.428285857071465,-43.37831084457771,-43.32833583208396,-43.278360819590205,-43.22838580709645,-43.1784107946027,-43.128435782108944,-43.07846076961519,-43.02848575712144,-42.978510744627684,-42.92853573213393,-42.87856071964018,-42.82858570714642,-42.77861069465268,-42.728635682158924,-42.67866066966517,-42.62868565717142,-42.57871064467766,-42.52873563218391,-42.478760619690156,-42.4287856071964,-42.37881059470265,-42.328835582208896,-42.27886056971514,-42.22888555722139,-42.178910544727636,-42.12893553223388,-42.07896051974013,-42.028985507246375,-41.97901049475262,-41.92903548225887,-41.879060469765115,-41.82908545727136,-41.77911044477761,-41.72913543228386,-41.67916041979011,-41.629185407296355,-41.5792103948026,-41.52923538230885,-41.479260369815094,-41.42928535732134,-41.37931034482759,-41.329335332333834,-41.27936031984008,-41.22938530734633,-41.17941029485257,-41.12943528235882,-41.079460269865066,-41.02948525737131,-40.97951024487756,-40.929535232383806,-40.87956021989005,-40.8295852073963,-40.779610194902546,-40.72963518240879,-40.679660169915046,-40.62968515742129,-40.57971014492754,-40.529735132433785,-40.47976011994003,-40.42978510744628,-40.379810094952525,-40.32983508245877,-40.27986006996502,-40.229885057471265,-40.17991004497751,-40.12993503248376,-40.079960019990004,-40.02998500749625,-39.9800099950025,-39.930034982508744,-39.88005997001499,-39.83008495752124,-39.78010994502748,-39.73013493253373,-39.68015992003998,-39.63018490754623,-39.58020989505248,-39.53023488255872,-39.48025987006497,-39.430284857571216,-39.38030984507746,-39.33033483258371,-39.280359820089956,-39.2303848075962,-39.18040979510245,-39.130434782608695,-39.08045977011494,-39.03048475762119,-38.980509745127435,-38.93053473263368,-38.88055972013993,-38.830584707646175,-38.78060969515242,-38.73063468265867,-38.680659670164914,-38.63068465767117,-38.580709645177414,-38.53073463268366,-38.48075962018991,-38.430784607696154,-38.3808095952024,-38.33083458270865,-38.28085957021489,-38.23088455772114,-38.18090954522739,-38.13093453273363,-38.08095952023988,-38.030984507746126,-37.98100949525237,-37.93103448275862,-37.881059470264866,-37.83108445777111,-37.78110944527736,-37.731134432783605,-37.68115942028985,-37.6311844077961,-37.58120939530235,-37.5312343828086,-37.481259370314845,-37.43128435782109,-37.38130934532734,-37.331334332833585,-37.28135932033983,-37.23138430784608,-37.181409295352324,-37.13143428285857,-37.08145927036482,-37.031484257871064,-36.98150924537731,-36.93153423288356,-36.8815592203898,-36.83158420789605,-36.7816091954023,-36.73163418290854,-36.68165917041479,-36.631684157921036,-36.58170914542729,-36.531734132933536,-36.48175912043978,-36.43178410794603,-36.381809095452276,-36.33183408295852,-36.28185907046477,-36.231884057971016,-36.18190904547726,-36.13193403298351,-36.081959020489755,-36.031984007996,-35.98200899550225,-35.932033983008495,-35.88205897051474,-35.83208395802099,-35.782108945527234,-35.73213393303348,-35.68215892053973,-35.632183908045974,-35.58220889555222,-35.532233883058474,-35.48225887056472,-35.43228385807097,-35.382308845577214,-35.33233383308346,-35.28235882058971,-35.23238380809595,-35.1824087956022,-35.132433783108446,-35.08245877061469,-35.03248375812094,-34.982508745627186,-34.93253373313343,-34.88255872063968,-34.832583708145926,-34.78260869565217,-34.73263368315842,-34.682658670664665,-34.63268365817091,-34.58270864567716,-34.53273363318341,-34.48275862068966,-34.432783608195905,-34.38280859570215,-34.3328335832084,-34.282858570714644,-34.23288355822089,-34.18290854572714,-34.132933533233384,-34.08295852073963,-34.03298350824588,-33.983008495752124,-33.93303348325837,-33.88305847076462,-33.83308345827086,-33.78310844577711,-33.733133433283356,-33.6831584207896,-33.63318340829585,-33.583208395802096,-33.53323338330834,-33.483258370814596,-33.43328335832084,-33.38330834582709,-33.333333333333336,-33.28335832083958,-33.23338330834583,-33.183408295852075,-33.13343328335832,-33.08345827086457,-33.033483258370815,-32.98350824587706,-32.93353323338331,-32.883558220889554,-32.8335832083958,-32.78360819590205,-32.733633183408294,-32.68365817091454,-32.63368315842079,-32.583708145927034,-32.53373313343328,-32.48375812093953,-32.43378310844578,-32.38380809595203,-32.33383308345827,-32.28385807096452,-32.23388305847077,-32.18390804597701,-32.13393303348326,-32.083958020989506,-32.03398300849575,-31.984007996002,-31.934032983508246,-31.884057971014492,-31.83408295852074,-31.784107946026985,-31.734132933533232,-31.684157921039482,-31.63418290854573,-31.584207896051975,-31.53423288355822,-31.484257871064468,-31.434282858570715,-31.38430784607696,-31.334332833583208,-31.284357821089454,-31.2343828085957,-31.18440779610195,-31.134432783608197,-31.084457771114444,-31.03448275862069,-30.984507746126937,-30.934532733633183,-30.88455772113943,-30.834582708645677,-30.784607696151923,-30.73463268365817,-30.684657671164416,-30.634682658670666,-30.584707646176913,-30.53473263368316,-30.484757621189406,-30.434782608695652,-30.3848075962019,-30.334832583708145,-30.284857571214392,-30.23488255872064,-30.184907546226885,-30.134932533733135,-30.08495752123938,-30.034982508745628,-29.985007496251875,-29.93503248375812,-29.885057471264368,-29.835082458770614,-29.78510744627686,-29.735132433783107,-29.685157421289354,-29.635182408795604,-29.58520739630185,-29.535232383808097,-29.485257371314344,-29.43528235882059,-29.385307346326837,-29.335332333833083,-29.28535732133933,-29.235382308845576,-29.185407296351823,-29.13543228385807,-29.08545727136432,-29.035482258870566,-28.985507246376812,-28.93553223388306,-28.885557221389305,-28.835582208895552,-28.7856071964018,-28.735632183908045,-28.68565717141429,-28.635682158920538,-28.58570714642679,-28.535732133933035,-28.48575712143928,-28.435782108945528,-28.385807096451774,-28.33583208395802,-28.285857071464267,-28.235882058970514,-28.18590704647676,-28.135932033983007,-28.085957021489257,-28.035982008995504,-27.98600699650175,-27.936031984007997,-27.886056971514243,-27.83608195902049,-27.786106946526736,-27.736131934032983,-27.68615692153923,-27.636181909045476,-27.586206896551722,-27.536231884057973,-27.48625687156422,-27.436281859070466,-27.386306846576712,-27.33633183408296,-27.286356821589205,-27.23638180909545,-27.1864067966017,-27.136431784107945,-27.08645677161419,-27.03648175912044,-26.986506746626688,-26.936531734132934,-26.88655672163918,-26.836581709145428,-26.786606696651674,-26.73663168415792,-26.686656671664167,-26.636681659170414,-26.58670664667666,-26.53673163418291,-26.486756621689157,-26.436781609195403,-26.38680659670165,-26.336831584207896,-26.286856571714143,-26.23688155922039,-26.186906546726636,-26.136931534232883,-26.08695652173913,-26.036981509245376,-25.987006496751626,-25.937031484257872,-25.88705647176412,-25.837081459270365,-25.787106446776612,-25.73713143428286,-25.687156421789105,-25.63718140929535,-25.587206396801598,-25.537231384307844,-25.487256371814095,-25.43728135932034,-25.387306346826588,-25.337331334332834,-25.28735632183908,-25.237381309345327,-25.187406296851574,-25.13743128435782,-25.087456271864067,-25.037481259370313,-24.987506246876563,-24.93753123438281,-24.887556221889056,-24.837581209395303,-24.78760619690155,-24.737631184407796,-24.687656171914043,-24.63768115942029,-24.587706146926536,-24.537731134432782,-24.48775612193903,-24.43778110944528,-24.387806096951525,-24.337831084457772,-24.28785607196402,-24.237881059470265,-24.18790604697651,-24.137931034482758,-24.087956021989005,-24.03798100949525,-23.988005997001498,-23.938030984507748,-23.888055972013994,-23.83808095952024,-23.788105947026487,-23.738130934532734,-23.68815592203898,-23.638180909545227,-23.588205897051473,-23.53823088455772,-23.488255872063966,-23.438280859570217,-23.388305847076463,-23.33833083458271,-23.288355822088956,-23.238380809595203,-23.18840579710145,-23.138430784607696,-23.088455772113942,-23.03848075962019,-22.988505747126435,-22.938530734632682,-22.888555722138932,-22.83858070964518,-22.788605697151425,-22.73863068465767,-22.688655672163918,-22.638680659670165,-22.58870564717641,-22.538730634682658,-22.488755622188904,-22.43878060969515,-22.3888055972014,-22.338830584707647,-22.288855572213894,-22.23888055972014,-22.188905547226387,-22.138930534732634,-22.08895552223888,-22.038980509745127,-21.989005497251373,-21.93903048475762,-21.88905547226387,-21.839080459770116,-21.789105447276363,-21.73913043478261,-21.689155422288856,-21.639180409795102,-21.58920539730135,-21.539230384807595,-21.489255372313842,-21.43928035982009,-21.38930534732634,-21.339330334832585,-21.28935532233883,-21.239380309845078,-21.189405297351325,-21.13943028485757,-21.089455272363818,-21.039480259870064,-20.98950524737631,-20.939530234882557,-20.889555222388804,-20.839580209895054,-20.7896051974013,-20.739630184907547,-20.689655172413794,-20.63968015992004,-20.589705147426287,-20.539730134932533,-20.48975512243878,-20.439780109945026,-20.389805097451273,-20.339830084957523,-20.28985507246377,-20.239880059970016,-20.189905047476262,-20.13993003498251,-20.089955022488756,-20.039980009995002,-19.99000499750125,-19.940029985007495,-19.89005497251374,-19.84007996001999,-19.79010494752624,-19.740129935032485,-19.69015492253873,-19.640179910044978,-19.590204897551224,-19.54022988505747,-19.490254872563717,-19.440279860069964,-19.39030484757621,-19.340329835082457,-19.290354822588707,-19.240379810094954,-19.1904047976012,-19.140429785107447,-19.090454772613693,-19.04047976011994,-18.990504747626186,-18.940529735132433,-18.89055472263868,-18.840579710144926,-18.790604697651176,-18.740629685157423,-18.69065467266367,-18.640679660169916,-18.590704647676162,-18.54072963518241,-18.490754622688655,-18.4407796101949,-18.39080459770115,-18.340829585207395,-18.290854572713645,-18.24087956021989,-18.190904547726138,-18.140929535232384,-18.09095452273863,-18.040979510244878,-17.991004497751124,-17.94102948525737,-17.891054472763617,-17.841079460269864,-17.79110444777611,-17.74112943528236,-17.691154422788607,-17.641179410294853,-17.5912043978011,-17.541229385307346,-17.491254372813593,-17.44127936031984,-17.391304347826086,-17.341329335332333,-17.29135432283858,-17.24137931034483,-17.191404297851076,-17.141429285357322,-17.09145427286357,-17.041479260369815,-16.991504247876062,-16.94152923538231,-16.891554222888555,-16.8415792103948,-16.791604197901048,-16.741629185407298,-16.691654172913545,-16.64167916041979,-16.591704147926038,-16.541729135432284,-16.49175412293853,-16.441779110444777,-16.391804097951024,-16.34182908545727,-16.291854072963517,-16.241879060469763,-16.191904047976013,-16.14192903548226,-16.091954022988507,-16.041979010494753,-15.992003998001,-15.942028985507246,-15.892053973013493,-15.842078960519741,-15.792103948025987,-15.742128935532234,-15.69215392303848,-15.642178910544727,-15.592203898050975,-15.542228885557222,-15.492253873063468,-15.442278860569715,-15.392303848075962,-15.342328835582208,-15.292353823088456,-15.242378810594703,-15.19240379810095,-15.142428785607196,-15.092453773113442,-15.04247876061969,-14.992503748125937,-14.942528735632184,-14.89255372313843,-14.842578710644677,-14.792603698150925,-14.742628685657172,-14.692653673163418,-14.642678660669665,-14.592703648175911,-14.54272863568216,-14.492753623188406,-14.442778610694653,-14.3928035982009,-14.342828585707146,-14.292853573213394,-14.24287856071964,-14.192903548225887,-14.142928535732134,-14.09295352323838,-14.042978510744629,-13.993003498250875,-13.943028485757122,-13.893053473263368,-13.843078460769615,-13.793103448275861,-13.74312843578211,-13.693153423288356,-13.643178410794603,-13.59320339830085,-13.543228385807096,-13.493253373313344,-13.44327836081959,-13.393303348325837,-13.343328335832084,-13.29335332333833,-13.243378310844578,-13.193403298350825,-13.143428285857071,-13.093453273363318,-13.043478260869565,-12.993503248375813,-12.94352823588206,-12.893553223388306,-12.843578210894552,-12.793603198400799,-12.743628185907047,-12.693653173413294,-12.64367816091954,-12.593703148425787,-12.543728135932033,-12.493753123438282,-12.443778110944528,-12.393803098450775,-12.343828085957021,-12.293853073463268,-12.243878060969514,-12.193903048475763,-12.14392803598201,-12.093953023488256,-12.043978010994502,-11.994002998500749,-11.944027986006997,-11.894052973513244,-11.84407796101949,-11.794102948525737,-11.744127936031983,-11.694152923538232,-11.644177911044478,-11.594202898550725,-11.544227886056971,-11.494252873563218,-11.444277861069466,-11.394302848575713,-11.344327836081959,-11.294352823588206,-11.244377811094452,-11.1944027986007,-11.144427786106947,-11.094452773613193,-11.04447776111944,-10.994502748625687,-10.944527736131935,-10.894552723638181,-10.844577711144428,-10.794602698650674,-10.744627686156921,-10.69465267366317,-10.644677661169416,-10.594702648675662,-10.544727636181909,-10.494752623688155,-10.444777611194402,-10.39480259870065,-10.344827586206897,-10.294852573713143,-10.24487756121939,-10.194902548725636,-10.144927536231885,-10.094952523738131,-10.044977511244378,-9.995002498750624,-9.94502748625687,-9.89505247376312,-9.845077461269366,-9.795102448775612,-9.745127436281859,-9.695152423788105,-9.645177411294354,-9.5952023988006,-9.545227386306847,-9.495252373813093,-9.44527736131934,-9.395302348825588,-9.345327336331835,-9.295352323838081,-9.245377311344328,-9.195402298850574,-9.145427286356822,-9.095452273863069,-9.045477261369316,-8.995502248875562,-8.945527236381809,-8.895552223888055,-8.845577211394303,-8.79560219890055,-8.745627186406796,-8.695652173913043,-8.64567716141929,-8.595702148925538,-8.545727136431784,-8.495752123938031,-8.445777111444277,-8.395802098950524,-8.345827086456772,-8.295852073963019,-8.245877061469265,-8.195902048975512,-8.145927036481758,-8.095952023988007,-8.045977011494253,-7.9960019990005,-7.946026986506746,-7.896051974012994,-7.84607696151924,-7.796101949025488,-7.746126936531734,-7.696151924037981,-7.646176911544228,-7.596201899050475,-7.546226886556721,-7.496251874062969,-7.446276861569215,-7.396301849075463,-7.346326836581709,-7.296351824087956,-7.246376811594203,-7.19640179910045,-7.146426786606697,-7.096451774112944,-7.04647676161919,-6.9965017491254375,-6.946526736631684,-6.896551724137931,-6.846576711644178,-6.796601699150425,-6.746626686656672,-6.6966516741629185,-6.646676661669165,-6.5967016491754125,-6.546726636681659,-6.496751624187906,-6.446776611694153,-6.3968015992003995,-6.346826586706647,-6.296851574212893,-6.246876561719141,-6.196901549225387,-6.146926536731634,-6.096951524237881,-6.046976511744128,-5.997001499250374,-5.947026486756622,-5.897051474262868,-5.847076461769116,-5.797101449275362,-5.747126436781609,-5.697151424287856,-5.647176411794103,-5.59720139930035,-5.547226386806597,-5.497251374312843,-5.447276361819091,-5.397301349325337,-5.347326336831585,-5.297351324337831,-5.247376311844078,-5.197401299350325,-5.147426286856572,-5.097451274362818,-5.047476261869066,-4.997501249375312,-4.94752623688156,-4.897551224387806,-4.847576211894053,-4.7976011994003,-4.747626186906547,-4.697651174412794,-4.6476761619190405,-4.597701149425287,-4.5477261369315345,-4.497751124437781,-4.4477761119440276,-4.397801099450275,-4.3478260869565215,-4.297851074462769,-4.2478760619690155,-4.197901049475262,-4.147926036981509,-4.097951024487756,-4.047976011994003,-3.99800099950025,-3.948025987006497,-3.898050974512744,-3.8480759620189904,-3.7981009495252374,-3.7481259370314843,-3.6981509245377313,-3.648175912043978,-3.598200899550225,-3.548225887056472,-3.4982508745627188,-3.4482758620689653,-3.3983008495752123,-3.3483258370814593,-3.2983508245877062,-3.248375812093953,-3.1984007996001997,-3.1484257871064467,-3.0984507746126937,-3.0484757621189407,-2.998500749625187,-2.948525737131434,-2.898550724637681,-2.848575712143928,-2.798600699650175,-2.7486256871564216,-2.6986506746626686,-2.6486756621689156,-2.5987006496751626,-2.548725637181409,-2.498750624687656,-2.448775612193903,-2.39880059970015,-2.348825587206397,-2.2988505747126435,-2.2488755622188905,-2.1989005497251375,-2.1489255372313845,-2.098950524737631,-2.048975512243878,-1.999000499750125,-1.949025487256372,-1.8990504747626187,-1.8490754622688657,-1.7991004497751124,-1.7491254372813594,-1.6991504247876061,-1.6491754122938531,-1.5992003998000999,-1.5492253873063468,-1.4992503748125936,-1.4492753623188406,-1.3993003498250876,-1.3493253373313343,-1.2993503248375813,-1.249375312343828,-1.199400299850075,-1.1494252873563218,-1.0994502748625687,-1.0494752623688155,-0.9995002498750625,-0.9495252373813093,-0.8995502248875562,-0.8495752123938031,-0.7996001999000499,-0.7496251874062968,-0.6996501749125438,-0.6496751624187906,-0.5997001499250375,-0.5497251374312844,-0.49975012493753124,-0.4497751124437781,-0.39980009995002497,-0.3498250874562719,-0.29985007496251875,-0.24987506246876562,-0.19990004997501248,-0.14992503748125938,-0.09995002498750624,-0.04997501249375312,0.0,0.04997501249375312,0.09995002498750624,0.14992503748125938,0.19990004997501248,0.24987506246876562,0.29985007496251875,0.3498250874562719,0.39980009995002497,0.4497751124437781,0.49975012493753124,0.5497251374312844,0.5997001499250375,0.6496751624187906,0.6996501749125438,0.7496251874062968,0.7996001999000499,0.8495752123938031,0.8995502248875562,0.9495252373813093,0.9995002498750625,1.0494752623688155,1.0994502748625687,1.1494252873563218,1.199400299850075,1.249375312343828,1.2993503248375813,1.3493253373313343,1.3993003498250876,1.4492753623188406,1.4992503748125936,1.5492253873063468,1.5992003998000999,1.6491754122938531,1.6991504247876061,1.7491254372813594,1.7991004497751124,1.8490754622688657,1.8990504747626187,1.949025487256372,1.999000499750125,2.048975512243878,2.098950524737631,2.1489255372313845,2.1989005497251375,2.2488755622188905,2.2988505747126435,2.348825587206397,2.39880059970015,2.448775612193903,2.498750624687656,2.548725637181409,2.5987006496751626,2.6486756621689156,2.6986506746626686,2.7486256871564216,2.798600699650175,2.848575712143928,2.898550724637681,2.948525737131434,2.998500749625187,3.0484757621189407,3.0984507746126937,3.1484257871064467,3.1984007996001997,3.248375812093953,3.2983508245877062,3.3483258370814593,3.3983008495752123,3.4482758620689653,3.4982508745627188,3.548225887056472,3.598200899550225,3.648175912043978,3.6981509245377313,3.7481259370314843,3.7981009495252374,3.8480759620189904,3.898050974512744,3.948025987006497,3.99800099950025,4.047976011994003,4.097951024487756,4.147926036981509,4.197901049475262,4.2478760619690155,4.297851074462769,4.3478260869565215,4.397801099450275,4.4477761119440276,4.497751124437781,4.5477261369315345,4.597701149425287,4.6476761619190405,4.697651174412794,4.747626186906547,4.7976011994003,4.847576211894053,4.897551224387806,4.94752623688156,4.997501249375312,5.047476261869066,5.097451274362818,5.147426286856572,5.197401299350325,5.247376311844078,5.297351324337831,5.347326336831585,5.397301349325337,5.447276361819091,5.497251374312843,5.547226386806597,5.59720139930035,5.647176411794103,5.697151424287856,5.747126436781609,5.797101449275362,5.847076461769116,5.897051474262868,5.947026486756622,5.997001499250374,6.046976511744128,6.096951524237881,6.146926536731634,6.196901549225387,6.246876561719141,6.296851574212893,6.346826586706647,6.3968015992003995,6.446776611694153,6.496751624187906,6.546726636681659,6.5967016491754125,6.646676661669165,6.6966516741629185,6.746626686656672,6.796601699150425,6.846576711644178,6.896551724137931,6.946526736631684,6.9965017491254375,7.04647676161919,7.096451774112944,7.146426786606697,7.19640179910045,7.246376811594203,7.296351824087956,7.346326836581709,7.396301849075463,7.446276861569215,7.496251874062969,7.546226886556721,7.596201899050475,7.646176911544228,7.696151924037981,7.746126936531734,7.796101949025488,7.84607696151924,7.896051974012994,7.946026986506746,7.9960019990005,8.045977011494253,8.095952023988007,8.145927036481758,8.195902048975512,8.245877061469265,8.295852073963019,8.345827086456772,8.395802098950524,8.445777111444277,8.495752123938031,8.545727136431784,8.595702148925538,8.64567716141929,8.695652173913043,8.745627186406796,8.79560219890055,8.845577211394303,8.895552223888055,8.945527236381809,8.995502248875562,9.045477261369316,9.095452273863069,9.145427286356822,9.195402298850574,9.245377311344328,9.295352323838081,9.345327336331835,9.395302348825588,9.44527736131934,9.495252373813093,9.545227386306847,9.5952023988006,9.645177411294354,9.695152423788105,9.745127436281859,9.795102448775612,9.845077461269366,9.89505247376312,9.94502748625687,9.995002498750624,10.044977511244378,10.094952523738131,10.144927536231885,10.194902548725636,10.24487756121939,10.294852573713143,10.344827586206897,10.39480259870065,10.444777611194402,10.494752623688155,10.544727636181909,10.594702648675662,10.644677661169416,10.69465267366317,10.744627686156921,10.794602698650674,10.844577711144428,10.894552723638181,10.944527736131935,10.994502748625687,11.04447776111944,11.094452773613193,11.144427786106947,11.1944027986007,11.244377811094452,11.294352823588206,11.344327836081959,11.394302848575713,11.444277861069466,11.494252873563218,11.544227886056971,11.594202898550725,11.644177911044478,11.694152923538232,11.744127936031983,11.794102948525737,11.84407796101949,11.894052973513244,11.944027986006997,11.994002998500749,12.043978010994502,12.093953023488256,12.14392803598201,12.193903048475763,12.243878060969514,12.293853073463268,12.343828085957021,12.393803098450775,12.443778110944528,12.493753123438282,12.543728135932033,12.593703148425787,12.64367816091954,12.693653173413294,12.743628185907047,12.793603198400799,12.843578210894552,12.893553223388306,12.94352823588206,12.993503248375813,13.043478260869565,13.093453273363318,13.143428285857071,13.193403298350825,13.243378310844578,13.29335332333833,13.343328335832084,13.393303348325837,13.44327836081959,13.493253373313344,13.543228385807096,13.59320339830085,13.643178410794603,13.693153423288356,13.74312843578211,13.793103448275861,13.843078460769615,13.893053473263368,13.943028485757122,13.993003498250875,14.042978510744629,14.09295352323838,14.142928535732134,14.192903548225887,14.24287856071964,14.292853573213394,14.342828585707146,14.3928035982009,14.442778610694653,14.492753623188406,14.54272863568216,14.592703648175911,14.642678660669665,14.692653673163418,14.742628685657172,14.792603698150925,14.842578710644677,14.89255372313843,14.942528735632184,14.992503748125937,15.04247876061969,15.092453773113442,15.142428785607196,15.19240379810095,15.242378810594703,15.292353823088456,15.342328835582208,15.392303848075962,15.442278860569715,15.492253873063468,15.542228885557222,15.592203898050975,15.642178910544727,15.69215392303848,15.742128935532234,15.792103948025987,15.842078960519741,15.892053973013493,15.942028985507246,15.992003998001,16.041979010494753,16.091954022988507,16.14192903548226,16.191904047976013,16.241879060469763,16.291854072963517,16.34182908545727,16.391804097951024,16.441779110444777,16.49175412293853,16.541729135432284,16.591704147926038,16.64167916041979,16.691654172913545,16.741629185407298,16.791604197901048,16.8415792103948,16.891554222888555,16.94152923538231,16.991504247876062,17.041479260369815,17.09145427286357,17.141429285357322,17.191404297851076,17.24137931034483,17.29135432283858,17.341329335332333,17.391304347826086,17.44127936031984,17.491254372813593,17.541229385307346,17.5912043978011,17.641179410294853,17.691154422788607,17.74112943528236,17.79110444777611,17.841079460269864,17.891054472763617,17.94102948525737,17.991004497751124,18.040979510244878,18.09095452273863,18.140929535232384,18.190904547726138,18.24087956021989,18.290854572713645,18.340829585207395,18.39080459770115,18.4407796101949,18.490754622688655,18.54072963518241,18.590704647676162,18.640679660169916,18.69065467266367,18.740629685157423,18.790604697651176,18.840579710144926,18.89055472263868,18.940529735132433,18.990504747626186,19.04047976011994,19.090454772613693,19.140429785107447,19.1904047976012,19.240379810094954,19.290354822588707,19.340329835082457,19.39030484757621,19.440279860069964,19.490254872563717,19.54022988505747,19.590204897551224,19.640179910044978,19.69015492253873,19.740129935032485,19.79010494752624,19.84007996001999,19.89005497251374,19.940029985007495,19.99000499750125,20.039980009995002,20.089955022488756,20.13993003498251,20.189905047476262,20.239880059970016,20.28985507246377,20.339830084957523,20.389805097451273,20.439780109945026,20.48975512243878,20.539730134932533,20.589705147426287,20.63968015992004,20.689655172413794,20.739630184907547,20.7896051974013,20.839580209895054,20.889555222388804,20.939530234882557,20.98950524737631,21.039480259870064,21.089455272363818,21.13943028485757,21.189405297351325,21.239380309845078,21.28935532233883,21.339330334832585,21.38930534732634,21.43928035982009,21.489255372313842,21.539230384807595,21.58920539730135,21.639180409795102,21.689155422288856,21.73913043478261,21.789105447276363,21.839080459770116,21.88905547226387,21.93903048475762,21.989005497251373,22.038980509745127,22.08895552223888,22.138930534732634,22.188905547226387,22.23888055972014,22.288855572213894,22.338830584707647,22.3888055972014,22.43878060969515,22.488755622188904,22.538730634682658,22.58870564717641,22.638680659670165,22.688655672163918,22.73863068465767,22.788605697151425,22.83858070964518,22.888555722138932,22.938530734632682,22.988505747126435,23.03848075962019,23.088455772113942,23.138430784607696,23.18840579710145,23.238380809595203,23.288355822088956,23.33833083458271,23.388305847076463,23.438280859570217,23.488255872063966,23.53823088455772,23.588205897051473,23.638180909545227,23.68815592203898,23.738130934532734,23.788105947026487,23.83808095952024,23.888055972013994,23.938030984507748,23.988005997001498,24.03798100949525,24.087956021989005,24.137931034482758,24.18790604697651,24.237881059470265,24.28785607196402,24.337831084457772,24.387806096951525,24.43778110944528,24.48775612193903,24.537731134432782,24.587706146926536,24.63768115942029,24.687656171914043,24.737631184407796,24.78760619690155,24.837581209395303,24.887556221889056,24.93753123438281,24.987506246876563,25.037481259370313,25.087456271864067,25.13743128435782,25.187406296851574,25.237381309345327,25.28735632183908,25.337331334332834,25.387306346826588,25.43728135932034,25.487256371814095,25.537231384307844,25.587206396801598,25.63718140929535,25.687156421789105,25.73713143428286,25.787106446776612,25.837081459270365,25.88705647176412,25.937031484257872,25.987006496751626,26.036981509245376,26.08695652173913,26.136931534232883,26.186906546726636,26.23688155922039,26.286856571714143,26.336831584207896,26.38680659670165,26.436781609195403,26.486756621689157,26.53673163418291,26.58670664667666,26.636681659170414,26.686656671664167,26.73663168415792,26.786606696651674,26.836581709145428,26.88655672163918,26.936531734132934,26.986506746626688,27.03648175912044,27.08645677161419,27.136431784107945,27.1864067966017,27.23638180909545,27.286356821589205,27.33633183408296,27.386306846576712,27.436281859070466,27.48625687156422,27.536231884057973,27.586206896551722,27.636181909045476,27.68615692153923,27.736131934032983,27.786106946526736,27.83608195902049,27.886056971514243,27.936031984007997,27.98600699650175,28.035982008995504,28.085957021489257,28.135932033983007,28.18590704647676,28.235882058970514,28.285857071464267,28.33583208395802,28.385807096451774,28.435782108945528,28.48575712143928,28.535732133933035,28.58570714642679,28.635682158920538,28.68565717141429,28.735632183908045,28.7856071964018,28.835582208895552,28.885557221389305,28.93553223388306,28.985507246376812,29.035482258870566,29.08545727136432,29.13543228385807,29.185407296351823,29.235382308845576,29.28535732133933,29.335332333833083,29.385307346326837,29.43528235882059,29.485257371314344,29.535232383808097,29.58520739630185,29.635182408795604,29.685157421289354,29.735132433783107,29.78510744627686,29.835082458770614,29.885057471264368,29.93503248375812,29.985007496251875,30.034982508745628,30.08495752123938,30.134932533733135,30.184907546226885,30.23488255872064,30.284857571214392,30.334832583708145,30.3848075962019,30.434782608695652,30.484757621189406,30.53473263368316,30.584707646176913,30.634682658670666,30.684657671164416,30.73463268365817,30.784607696151923,30.834582708645677,30.88455772113943,30.934532733633183,30.984507746126937,31.03448275862069,31.084457771114444,31.134432783608197,31.18440779610195,31.2343828085957,31.284357821089454,31.334332833583208,31.38430784607696,31.434282858570715,31.484257871064468,31.53423288355822,31.584207896051975,31.63418290854573,31.684157921039482,31.734132933533232,31.784107946026985,31.83408295852074,31.884057971014492,31.934032983508246,31.984007996002,32.03398300849575,32.083958020989506,32.13393303348326,32.18390804597701,32.23388305847077,32.28385807096452,32.33383308345827,32.38380809595203,32.43378310844578,32.48375812093953,32.53373313343328,32.583708145927034,32.63368315842079,32.68365817091454,32.733633183408294,32.78360819590205,32.8335832083958,32.883558220889554,32.93353323338331,32.98350824587706,33.033483258370815,33.08345827086457,33.13343328335832,33.183408295852075,33.23338330834583,33.28335832083958,33.333333333333336,33.38330834582709,33.43328335832084,33.483258370814596,33.53323338330834,33.583208395802096,33.63318340829585,33.6831584207896,33.733133433283356,33.78310844577711,33.83308345827086,33.88305847076462,33.93303348325837,33.983008495752124,34.03298350824588,34.08295852073963,34.132933533233384,34.18290854572714,34.23288355822089,34.282858570714644,34.3328335832084,34.38280859570215,34.432783608195905,34.48275862068966,34.53273363318341,34.58270864567716,34.63268365817091,34.682658670664665,34.73263368315842,34.78260869565217,34.832583708145926,34.88255872063968,34.93253373313343,34.982508745627186,35.03248375812094,35.08245877061469,35.132433783108446,35.1824087956022,35.23238380809595,35.28235882058971,35.33233383308346,35.382308845577214,35.43228385807097,35.48225887056472,35.532233883058474,35.58220889555222,35.632183908045974,35.68215892053973,35.73213393303348,35.782108945527234,35.83208395802099,35.88205897051474,35.932033983008495,35.98200899550225,36.031984007996,36.081959020489755,36.13193403298351,36.18190904547726,36.231884057971016,36.28185907046477,36.33183408295852,36.381809095452276,36.43178410794603,36.48175912043978,36.531734132933536,36.58170914542729,36.631684157921036,36.68165917041479,36.73163418290854,36.7816091954023,36.83158420789605,36.8815592203898,36.93153423288356,36.98150924537731,37.031484257871064,37.08145927036482,37.13143428285857,37.181409295352324,37.23138430784608,37.28135932033983,37.331334332833585,37.38130934532734,37.43128435782109,37.481259370314845,37.5312343828086,37.58120939530235,37.6311844077961,37.68115942028985,37.731134432783605,37.78110944527736,37.83108445777111,37.881059470264866,37.93103448275862,37.98100949525237,38.030984507746126,38.08095952023988,38.13093453273363,38.18090954522739,38.23088455772114,38.28085957021489,38.33083458270865,38.3808095952024,38.430784607696154,38.48075962018991,38.53073463268366,38.580709645177414,38.63068465767117,38.680659670164914,38.73063468265867,38.78060969515242,38.830584707646175,38.88055972013993,38.93053473263368,38.980509745127435,39.03048475762119,39.08045977011494,39.130434782608695,39.18040979510245,39.2303848075962,39.280359820089956,39.33033483258371,39.38030984507746,39.430284857571216,39.48025987006497,39.53023488255872,39.58020989505248,39.63018490754623,39.68015992003998,39.73013493253373,39.78010994502748,39.83008495752124,39.88005997001499,39.930034982508744,39.9800099950025,40.02998500749625,40.079960019990004,40.12993503248376,40.17991004497751,40.229885057471265,40.27986006996502,40.32983508245877,40.379810094952525,40.42978510744628,40.47976011994003,40.529735132433785,40.57971014492754,40.62968515742129,40.679660169915046,40.72963518240879,40.779610194902546,40.8295852073963,40.87956021989005,40.929535232383806,40.97951024487756,41.02948525737131,41.079460269865066,41.12943528235882,41.17941029485257,41.22938530734633,41.27936031984008,41.329335332333834,41.37931034482759,41.42928535732134,41.479260369815094,41.52923538230885,41.5792103948026,41.629185407296355,41.67916041979011,41.72913543228386,41.77911044477761,41.82908545727136,41.879060469765115,41.92903548225887,41.97901049475262,42.028985507246375,42.07896051974013,42.12893553223388,42.178910544727636,42.22888555722139,42.27886056971514,42.328835582208896,42.37881059470265,42.4287856071964,42.478760619690156,42.52873563218391,42.57871064467766,42.62868565717142,42.67866066966517,42.728635682158924,42.77861069465268,42.82858570714642,42.87856071964018,42.92853573213393,42.978510744627684,43.02848575712144,43.07846076961519,43.128435782108944,43.1784107946027,43.22838580709645,43.278360819590205,43.32833583208396,43.37831084457771,43.428285857071465,43.47826086956522,43.52823588205897,43.578210894552726,43.62818590704648,43.67816091954023,43.728135932033986,43.77811094452774,43.828085957021486,43.87806096951524,43.92803598200899,43.978010994502746,44.0279860069965,44.07796101949025,44.12793603198401,44.17791104447776,44.22788605697151,44.27786106946527,44.32783608195902,44.377811094452774,44.42778610694653,44.47776111944028,44.527736131934034,44.57771114442779,44.62768615692154,44.677661169415295,44.72763618190905,44.7776111944028,44.827586206896555,44.8775612193903,44.927536231884055,44.97751124437781,45.02748625687156,45.077461269365315,45.12743628185907,45.17741129435282,45.227386306846576,45.27736131934033,45.32733633183408,45.377311344327836,45.42728635682159,45.47726136931534,45.5272363818091,45.57721139430285,45.6271864067966,45.67716141929036,45.72713643178411,45.777111444277864,45.82708645677162,45.877061469265364,45.92703648175912,45.97701149425287,46.026986506746624,46.07696151924038,46.12693653173413,46.176911544227885,46.22688655672164,46.27686156921539,46.326836581709145,46.3768115942029,46.42678660669665,46.476761619190405,46.52673663168416,46.57671164417791,46.626686656671666,46.67666166916542,46.72663668165917,46.776611694152926,46.82658670664668,46.87656171914043,46.92653673163418,46.97651174412793,47.026486756621686,47.07646176911544,47.12643678160919,47.17641179410295,47.2263868065967,47.276361819090454,47.32633683158421,47.37631184407796,47.426286856571714,47.47626186906547,47.52623688155922,47.576211894052975,47.62618690654673,47.67616191904048,47.726136931534235,47.77611194402799,47.82608695652174,47.876061969015495,47.92603698150925,47.976011994002995,48.02598700649675,48.0759620189905,48.125937031484256,48.17591204397801,48.22588705647176,48.275862068965516,48.32583708145927,48.37581209395302,48.425787106446776,48.47576211894053,48.52573713143428,48.57571214392804,48.62568715642179,48.675662168915544,48.7256371814093,48.77561219390305,48.825587206396804,48.87556221889056,48.92553723138431,48.97551224387806,49.02548725637181,49.075462268865564,49.12543728135932,49.17541229385307,49.225387306346825,49.27536231884058,49.32533733133433,49.375312343828085,49.42528735632184,49.47526236881559,49.525237381309346,49.5752123938031,49.62518740629685,49.675162418790606,49.72513743128436,49.77511244377811,49.825087456271866,49.87506246876562,49.92503748125937,49.97501249375313,50.02498750624687,50.07496251874063,50.12493753123438,50.174912543728134,50.22488755622189,50.27486256871564,50.324837581209394,50.37481259370315,50.4247876061969,50.474762618690654,50.52473763118441,50.57471264367816,50.624687656171915,50.67466266866567,50.72463768115942,50.774612693653175,50.82458770614693,50.87456271864068,50.924537731134436,50.97451274362819,51.02448775612194,51.07446276861569,51.12443778110944,51.174412793603196,51.22438780609695,51.2743628185907,51.324337831084456,51.37431284357821,51.42428785607196,51.47426286856572,51.52423788105947,51.574212893553224,51.62418790604698,51.67416291854073,51.724137931034484,51.77411294352824,51.82408795602199,51.874062968515744,51.9240379810095,51.97401299350325,52.023988005997005,52.07396301849075,52.123938030984505,52.17391304347826,52.22388805597201,52.273863068465765,52.32383808095952,52.37381309345327,52.423788105947025,52.47376311844078,52.52373813093453,52.573713143428286,52.62368815592204,52.67366316841579,52.723638180909546,52.7736131934033,52.82358820589705,52.87356321839081,52.92353823088456,52.973513243378314,53.02348825587207,53.07346326836582,53.12343828085957,53.17341329335332,53.223388305847074,53.27336331834083,53.32333833083458,53.373313343328334,53.42328835582209,53.47326336831584,53.523238380809595,53.57321339330335,53.6231884057971,53.673163418290855,53.72313843078461,53.77311344327836,53.823088455772115,53.87306346826587,53.92303848075962,53.973013493253376,54.02298850574713,54.07296351824088,54.122938530734636,54.17291354322838,54.222888555722136,54.27286356821589,54.32283858070964,54.3728135932034,54.42278860569715,54.4727636181909,54.52273863068466,54.57271364317841,54.622688655672164,54.67266366816592,54.72263868065967,54.772613693153424,54.82258870564718,54.87256371814093,54.922538730634685,54.97251374312844,55.02248875562219,55.072463768115945,55.1224387806097,55.172413793103445,55.2223888055972,55.27236381809095,55.322338830584705,55.37231384307846,55.42228885557221,55.472263868065966,55.52223888055972,55.57221389305347,55.622188905547226,55.67216391804098,55.72213893053473,55.77211394302849,55.82208895552224,55.87206396801599,55.92203898050975,55.9720139930035,56.021989005497254,56.07196401799101,56.12193903048476,56.171914042978514,56.22188905547226,56.271864067966014,56.32183908045977,56.37181409295352,56.421789105447274,56.47176411794103,56.52173913043478,56.571714142928535,56.62168915542229,56.67166416791604,56.721639180409795,56.77161419290355,56.8215892053973,56.871564217891056,56.92153923038481,56.97151424287856,57.021489255372316,57.07146426786607,57.12143928035982,57.17141429285358,57.22138930534732,57.271364317841076,57.32133933033483,57.37131434282858,57.42128935532234,57.47126436781609,57.521239380309844,57.5712143928036,57.62118940529735,57.671164417791104,57.72113943028486,57.77111444277861,57.821089455272364,57.87106446776612,57.92103948025987,57.971014492753625,58.02098950524738,58.07096451774113,58.120939530234885,58.17091454272864,58.22088955522239,58.27086456771614,58.32083958020989,58.370814592703645,58.4207896051974,58.47076461769115,58.520739630184906,58.57071464267866,58.62068965517241,58.670664667666166,58.72063968015992,58.77061469265367,58.82058970514743,58.87056471764118,58.920539730134934,58.97051474262869,59.02048975512244,59.070464767616194,59.12043978010995,59.1704147926037,59.220389805097454,59.27036481759121,59.320339830084954,59.37031484257871,59.42028985507246,59.470264867566215,59.52023988005997,59.57021489255372,59.620189905047475,59.67016491754123,59.72013993003498,59.770114942528735,59.82008995502249,59.87006496751624,59.920039980009996,59.97001499250375,60.0199900049975,60.069965017491256,60.11994002998501,60.16991504247876,60.21989005497252,60.26986506746627,60.31984007996002,60.36981509245377,60.41979010494752,60.46976511744128,60.51974012993503,60.569715142428784,60.61969015492254,60.66966516741629,60.719640179910044,60.7696151924038,60.81959020489755,60.869565217391305,60.91954022988506,60.96951524237881,61.019490254872565,61.06946526736632,61.11944027986007,61.169415292353825,61.21939030484758,61.26936531734133,61.319340329835086,61.36931534232883,61.419290354822586,61.46926536731634,61.51924037981009,61.569215392303846,61.6191904047976,61.66916541729135,61.71914042978511,61.76911544227886,61.81909045477261,61.86906546726637,61.91904047976012,61.969015492253874,62.01899050474763,62.06896551724138,62.118940529735134,62.16891554222889,62.21889055472264,62.268865567216395,62.31884057971015,62.3688155922039,62.41879060469765,62.4687656171914,62.518740629685155,62.56871564217891,62.61869065467266,62.668665667166415,62.71864067966017,62.76861569215392,62.818590704647676,62.86856571714143,62.91854072963518,62.968515742128936,63.01849075462269,63.06846576711644,63.1184407796102,63.16841579210395,63.2183908045977,63.26836581709146,63.31834082958521,63.368315842078964,63.41829085457271,63.468265867066464,63.51824087956022,63.56821589205397,63.618190904547724,63.66816591704148,63.71814092953523,63.768115942028984,63.81809095452274,63.86806596701649,63.918040979510245,63.968015992004,64.01799100449774,64.0679660169915,64.11794102948525,64.16791604197901,64.21789105447276,64.26786606696652,64.31784107946027,64.36781609195403,64.41779110444777,64.46776611694153,64.51774112943528,64.56771614192904,64.61769115442279,64.66766616691655,64.7176411794103,64.76761619190405,64.8175912043978,64.86756621689156,64.91754122938531,64.96751624187905,65.01749125437281,65.06746626686656,65.11744127936032,65.16741629185407,65.21739130434783,65.26736631684157,65.31734132933533,65.36731634182908,65.41729135432284,65.46726636681659,65.51724137931035,65.5672163918041,65.61719140429786,65.6671664167916,65.71714142928536,65.76711644177911,65.81709145427287,65.86706646676662,65.91704147926038,65.96701649175412,66.01699150424787,66.06696651674163,66.11694152923538,66.16691654172914,66.21689155422288,66.26686656671664,66.31684157921039,66.36681659170415,66.4167916041979,66.46676661669166,66.5167416291854,66.56671664167916,66.61669165417291,66.66666666666667,66.71664167916042,66.76661669165418,66.81659170414792,66.86656671664169,66.91654172913543,66.96651674162919,67.01649175412294,67.06646676661668,67.11644177911045,67.16641679160419,67.21639180409795,67.2663668165917,67.31634182908546,67.3663168415792,67.41629185407297,67.46626686656671,67.51624187906047,67.56621689155422,67.61619190404798,67.66616691654173,67.71614192903549,67.76611694152923,67.816091954023,67.86606696651674,67.9160419790105,67.96601699150425,68.01599200399801,68.06596701649175,68.1159420289855,68.16591704147926,68.21589205397301,68.26586706646677,68.31584207896051,68.36581709145428,68.41579210394802,68.46576711644178,68.51574212893553,68.56571714142929,68.61569215392304,68.6656671664168,68.71564217891054,68.7656171914043,68.81559220389805,68.86556721639181,68.91554222888556,68.96551724137932,69.01549225387306,69.06546726636682,69.11544227886057,69.16541729135432,69.21539230384808,69.26536731634182,69.31534232883558,69.36531734132933,69.41529235382309,69.46526736631684,69.5152423788106,69.56521739130434,69.6151924037981,69.66516741629185,69.71514242878561,69.76511744127936,69.81509245377312,69.86506746626686,69.91504247876063,69.96501749125437,70.01499250374813,70.06496751624188,70.11494252873563,70.16491754122939,70.21489255372313,70.26486756621689,70.31484257871064,70.3648175912044,70.41479260369815,70.4647676161919,70.51474262868565,70.56471764117941,70.61469265367316,70.66466766616692,70.71464267866067,70.76461769115443,70.81459270364817,70.86456771614193,70.91454272863568,70.96451774112944,71.01449275362319,71.06446776611695,71.1144427786107,71.16441779110444,71.2143928035982,71.26436781609195,71.31434282858571,71.36431784107945,71.41429285357322,71.46426786606696,71.51424287856072,71.56421789105447,71.61419290354823,71.66416791604198,71.71414292853574,71.76411794102948,71.81409295352324,71.86406796601699,71.91404297851075,71.9640179910045,72.01399300349826,72.063968015992,72.11394302848576,72.16391804097951,72.21389305347326,72.26386806596702,72.31384307846076,72.36381809095452,72.41379310344827,72.46376811594203,72.51374312843578,72.56371814092954,72.61369315342328,72.66366816591704,72.71364317841079,72.76361819090455,72.8135932033983,72.86356821589206,72.9135432283858,72.96351824087957,73.01349325337331,73.06346826586707,73.11344327836082,73.16341829085458,73.21339330334833,73.26336831584207,73.31334332833583,73.36331834082958,73.41329335332334,73.46326836581709,73.51324337831085,73.5632183908046,73.61319340329835,73.6631684157921,73.71314342828586,73.7631184407796,73.81309345327337,73.86306846576711,73.91304347826087,73.96301849075462,74.01299350324838,74.06296851574213,74.11294352823589,74.16291854072963,74.2128935532234,74.26286856571714,74.31284357821089,74.36281859070465,74.4127936031984,74.46276861569216,74.5127436281859,74.56271864067966,74.61269365317341,74.66266866566717,74.71264367816092,74.76261869065468,74.81259370314842,74.86256871564218,74.91254372813593,74.96251874062969,75.01249375312344,75.0624687656172,75.11244377811094,75.1624187906047,75.21239380309845,75.2623688155922,75.31234382808596,75.3623188405797,75.41229385307346,75.46226886556721,75.51224387806097,75.56221889055472,75.61219390304848,75.66216891554222,75.71214392803599,75.76211894052973,75.81209395302349,75.86206896551724,75.912043978011,75.96201899050475,76.0119940029985,76.06196901549225,76.11194402798601,76.16191904047976,76.21189405297352,76.26186906546727,76.31184407796101,76.36181909045477,76.41179410294852,76.46176911544228,76.51174412793603,76.56171914042979,76.61169415292353,76.6616691654173,76.71164417791104,76.7616191904048,76.81159420289855,76.86156921539231,76.91154422788605,76.96151924037981,77.01149425287356,77.06146926536732,77.11144427786107,77.16141929035483,77.21139430284857,77.26136931534234,77.31134432783608,77.36131934032983,77.41129435282359,77.46126936531734,77.5112443778111,77.56121939030484,77.6111944027986,77.66116941529235,77.71114442778611,77.76111944027986,77.81109445277362,77.86106946526736,77.91104447776112,77.96101949025487,78.01099450274863,78.06096951524238,78.11094452773614,78.16091954022988,78.21089455272364,78.26086956521739,78.31084457771115,78.3608195902049,78.41079460269864,78.4607696151924,78.51074462768615,78.56071964017991,78.61069465267366,78.66066966516742,78.71064467766116,78.76061969015493,78.81059470264867,78.86056971514243,78.91054472763618,78.96051974012994,79.01049475262369,79.06046976511745,79.11044477761119,79.16041979010495,79.2103948025987,79.26036981509246,79.3103448275862,79.36031984007997,79.41029485257371,79.46026986506746,79.51024487756122,79.56021989005497,79.61019490254873,79.66016991504247,79.71014492753623,79.76011994002998,79.81009495252374,79.86006996501749,79.91004497751125,79.960019990005,80.00999500249875,80.0599700149925,80.10994502748626,80.15992003998001,80.20989505247377,80.25987006496752,80.30984507746128,80.35982008995502,80.40979510244878,80.45977011494253,80.50974512743628,80.55972013993004,80.60969515242378,80.65967016491754,80.70964517741129,80.75962018990505,80.8095952023988,80.85957021489256,80.9095452273863,80.95952023988006,81.00949525237381,81.05947026486757,81.10944527736132,81.15942028985508,81.20939530234882,81.25937031484258,81.30934532733633,81.35932033983009,81.40929535232384,81.45927036481758,81.50924537731134,81.55922038980509,81.60919540229885,81.6591704147926,81.70914542728636,81.7591204397801,81.80909545227387,81.85907046476761,81.90904547726137,81.95902048975512,82.00899550224888,82.05897051474263,82.10894552723639,82.15892053973013,82.2088955522239,82.25887056471764,82.3088455772114,82.35882058970515,82.40879560219891,82.45877061469265,82.5087456271864,82.55872063968016,82.6086956521739,82.65867066466767,82.70864567716141,82.75862068965517,82.80859570214892,82.85857071464268,82.90854572713643,82.95852073963019,83.00849575212393,83.0584707646177,83.10844577711144,83.1584207896052,83.20839580209895,83.25837081459271,83.30834582708646,83.35832083958022,83.40829585207396,83.45827086456772,83.50824587706147,83.55822088955522,83.60819590204898,83.65817091454272,83.70814592703648,83.75812093953023,83.80809595202399,83.85807096451774,83.9080459770115,83.95802098950524,84.007996001999,84.05797101449275,84.10794602698651,84.15792103948026,84.20789605197402,84.25787106446776,84.30784607696152,84.35782108945527,84.40779610194903,84.45777111444278,84.50774612693654,84.55772113943029,84.60769615192403,84.65767116441779,84.70764617691154,84.7576211894053,84.80759620189905,84.8575712143928,84.90754622688655,84.95752123938031,85.00749625187406,85.05747126436782,85.10744627686157,85.15742128935533,85.20739630184907,85.25737131434283,85.30734632683658,85.35732133933034,85.40729635182409,85.45727136431785,85.5072463768116,85.55722138930535,85.6071964017991,85.65717141429285,85.70714642678661,85.75712143928035,85.80709645177411,85.85707146426786,85.90704647676162,85.95702148925537,86.00699650174913,86.05697151424287,86.10694652673664,86.15692153923038,86.20689655172414,86.25687156421789,86.30684657671165,86.3568215892054,86.40679660169916,86.4567716141929,86.50674662668666,86.55672163918041,86.60669665167416,86.65667166416792,86.70664667666166,86.75662168915542,86.80659670164917,86.85657171414293,86.90654672663668,86.95652173913044,87.00649675162418,87.05647176411794,87.10644677661169,87.15642178910545,87.2063968015992,87.25637181409296,87.3063468265867,87.35632183908046,87.40629685157421,87.45627186406797,87.50624687656172,87.55622188905548,87.60619690154923,87.65617191404297,87.70614692653673,87.75612193903048,87.80609695152424,87.85607196401799,87.90604697651175,87.95602198900549,88.00599700149925,88.055972013993,88.10594702648676,88.1559220389805,88.20589705147427,88.25587206396801,88.30584707646177,88.35582208895552,88.40579710144928,88.45577211394303,88.50574712643679,88.55572213893053,88.6056971514243,88.65567216391804,88.70564717641179,88.75562218890555,88.8055972013993,88.85557221389305,88.9055472263868,88.95552223888056,89.00549725137431,89.05547226386807,89.10544727636182,89.15542228885558,89.20539730134932,89.25537231384308,89.30534732633683,89.35532233883059,89.40529735132434,89.4552723638181,89.50524737631184,89.5552223888056,89.60519740129935,89.65517241379311,89.70514742628686,89.7551224387806,89.80509745127436,89.85507246376811,89.90504747626187,89.95502248875562,90.00499750124938,90.05497251374312,90.10494752623688,90.15492253873063,90.20489755122439,90.25487256371814,90.3048475762119,90.35482258870564,90.4047976011994,90.45477261369315,90.50474762618691,90.55472263868066,90.60469765117442,90.65467266366817,90.70464767616193,90.75462268865567,90.80459770114942,90.85457271364318,90.90454772613693,90.95452273863069,91.00449775112443,91.0544727636182,91.10444777611194,91.1544227886057,91.20439780109945,91.2543728135932,91.30434782608695,91.35432283858071,91.40429785107446,91.45427286356822,91.50424787606197,91.55422288855573,91.60419790104947,91.65417291354323,91.70414792603698,91.75412293853073,91.80409795102449,91.85407296351823,91.904047976012,91.95402298850574,92.0039980009995,92.05397301349325,92.10394802598701,92.15392303848076,92.20389805097452,92.25387306346826,92.30384807596202,92.35382308845577,92.40379810094953,92.45377311344328,92.50374812593704,92.55372313843078,92.60369815092454,92.65367316341829,92.70364817591205,92.7536231884058,92.80359820089954,92.8535732133933,92.90354822588705,92.95352323838081,93.00349825087456,93.05347326336832,93.10344827586206,93.15342328835582,93.20339830084957,93.25337331334333,93.30334832583708,93.35332333833084,93.40329835082458,93.45327336331835,93.50324837581209,93.55322338830585,93.6031984007996,93.65317341329336,93.7031484257871,93.75312343828087,93.80309845077461,93.85307346326836,93.90304847576212,93.95302348825587,94.00299850074963,94.05297351324337,94.10294852573713,94.15292353823088,94.20289855072464,94.25287356321839,94.30284857571215,94.3528235882059,94.40279860069965,94.4527736131934,94.50274862568716,94.55272363818091,94.60269865067467,94.65267366316841,94.70264867566218,94.75262368815592,94.80259870064968,94.85257371314343,94.90254872563717,94.95252373813094,95.00249875062468,95.05247376311844,95.10244877561219,95.15242378810595,95.2023988005997,95.25237381309346,95.3023488255872,95.35232383808096,95.40229885057471,95.45227386306847,95.50224887556222,95.55222388805598,95.60219890054972,95.65217391304348,95.70214892553723,95.75212393803099,95.80209895052474,95.8520739630185,95.90204897551224,95.95202398800599,96.00199900049975,96.0519740129935,96.10194902548726,96.151924037981,96.20189905047476,96.25187406296851,96.30184907546227,96.35182408795602,96.40179910044978,96.45177411294353,96.50174912543729,96.55172413793103,96.60169915042479,96.65167416291854,96.7016491754123,96.75162418790605,96.8015992003998,96.85157421289355,96.90154922538731,96.95152423788106,97.0014992503748,97.05147426286857,97.10144927536231,97.15142428785607,97.20139930034982,97.25137431284358,97.30134932533733,97.35132433783109,97.40129935032483,97.4512743628186,97.50124937531234,97.5512243878061,97.60119940029985,97.65117441279361,97.70114942528735,97.75112443778112,97.80109945027486,97.85107446276862,97.90104947526237,97.95102448775611,98.00099950024988,98.05097451274362,98.10094952523738,98.15092453773113,98.20089955022489,98.25087456271864,98.3008495752124,98.35082458770614,98.4007996001999,98.45077461269365,98.50074962518741,98.55072463768116,98.60069965017492,98.65067466266866,98.70064967516242,98.75062468765617,98.80059970014993,98.85057471264368,98.90054972513744,98.95052473763118,99.00049975012493,99.05047476261869,99.10044977511244,99.1504247876062,99.20039980009994,99.2503748125937,99.30034982508745,99.35032483758121,99.40029985007496,99.45027486256872,99.50024987506247,99.55022488755623,99.60019990004997,99.65017491254373,99.70014992503748,99.75012493753124,99.80009995002499,99.85007496251875,99.9000499750125,99.95002498750625,100.0]} +{"expected":[-0.01,-0.00988692665446217,-0.009530417260232635,-0.008939001927057518,-0.00812700023963896,-0.007114174661777941,-0.005925249651897664,-0.004589308189120179,-0.003139080437401436,-0.001610141944230643,-0.000040041013955833456,0.0015326233416345881,0.0030691502352163075,0.004531689196248325,0.005884172493081779,0.007093204522074692,0.008128886334342557,0.008965554944794535,0.009582419144642727,0.009964076066946442,0.01010089567328384,0.009989263566841785,0.009631676013797021,0.009036684685486062,0.008218692329369866,0.007197604246304405,0.005998344004833064,0.004650245172536397,0.0031863339073372196,0.001642519952343532,0.000056715849575066915,-0.00153209402566305,-0.0030848117512741317,-0.0045631879117862895,-0.005930763748120867,-0.007153770198919874,-0.008201961665838864,-0.009049363918998405,-0.00967491765064457,-0.010063001734130994,-0.010203823189262884,-0.010093664121865643,-0.009734979415048518,-0.009136342615950489,-0.008312241194704922,-0.00728272606016411,-0.0060729238083116685,-0.004712423565792373,-0.0032345533890227388,-0.001675563912446815,-0.0000737392399667339,0.001531543115552564,0.00310078016369045,0.004595315448258029,0.0059782912241642,0.007215557347592569,0.008276514468868288,0.009134870711019328,0.009769293124595185,0.010163937779373152,0.010308845323473495,0.010200192137384127,0.009840390753724568,0.009238036916283918,0.008407704423026918,0.0073695926446301525,0.006149035240488571,0.004775882018532973,0.003283769019197351,0.0017092946699876987,0.00009112218696606803,-0.001530969764797153,-0.0031170648437149825,-0.004628091205258873,-0.006026783911534547,-0.007278603873109481,-0.008352590664382306,-0.009222128157529003,-0.00986560404352474,-0.010266946900304674,-0.010416027464426008,-0.010308914090387096,-0.009947975959452496,-0.009341831339686926,-0.008505142009038258,-0.007458258740058715,-0.006226726414999595,-0.004840660803149927,-0.00333401220293789,-0.0017437339512144095,-0.0001088761619285668,0.001530373082350148,0.0031336755463287234,0.004661535387110025,0.0060762720085808086,0.007342949264059696,0.008430238095294144,0.009311191309838516,0.00996391133861546,0.010372094428864201,0.010525437750984275,0.010419899256959096,0.010057803740838872,0.009447792329506606,0.008604616481879815,0.007548781402151541,0.006306047483438199,0.0049068019008445575,0.0033853156810923096,0.0017789044101855964,0.00012701313104154568,-0.00152975212978499,-0.0031506224300722734,-0.004695669045019289,-0.006126786985255266,-0.007408634676172836,-0.008509506628087186,-0.009402117551157869,-0.010064278525306006,-0.01047944847111701,-0.010637147218504657,-0.010533219861166827,-0.010169945733445008,-0.009555989162640333,-0.008706193040386213,-0.00764122012567864,-0.006387050744406665,-0.004974349093233294,-0.0034377136020542084,-0.0018148296788304194,-0.00014554558228247226,0.0015291059182347367,0.0031679160781232906,0.004730514121913109,0.006178361650754986,0.0074757030212299624,0.008590448260943039,0.009494966721381806,0.01016677184176389,0.010589080056074333,0.01075122995439325,0.010648951233553383,0.010284476657319522,0.009666494102209426,0.008809939697100646,0.007735636976214574,0.006469790759651679,0.0050433480599028115,0.003491241598222934,0.0018515344202770054,0.00016448655416644695,-0.0015284334051064155,-0.0031855675207004695,-0.004766093500153822,-0.0062310302255206415,-0.007544199061731474,-0.008673117238872902,-0.009589801249979152,-0.010271460396355445,-0.01070106329419811,-0.010867763263796957,-0.01076717197996795,-0.010401474484817446,-0.0097793825602118,-0.00891592743171094,-0.007832096730511445,-0.006554324477814246,-0.00511384648238484,-0.0035459368674946967,-0.0018890443857169051,-0.00018384966640662659,0.0015277334905348747,0.003203588258907899,0.004802431052346535,0.006284828417937068,0.007614169511750057,0.008757570176396957,0.009686686297598708,0.01037841632480821,0.010815475546331858,0.01098682784620731,0.01088796416152825,0.01052102061949433,0.009894733270925042,0.009024230354636906,0.007930667026167472,0.006640711366395806,0.00518589415503449,0.0036018382601906906,0.0019273864750659596,0.00020364915265412223,-0.0015270050135687122,-0.0032219902901132642,-0.0048395516954862485,-0.00633979350608419,-0.007685663144457024,-0.008843866188345628,-0.009785689907073791,-0.010487714957811752,-0.010932397603869465,-0.011108507983824576,-0.011011413486579361,-0.010643200086942263,-0.010012628475892515,-0.009134925881564053,-0.00803141852132107,-0.006729013552570935,-0.005259543103367455,-0.0036589863718344637,-0.001966588801736915,-0.00022389989546712193,0.0015262467480482893,0.003240786134992019,0.004877481448689318,0.006395964424944249,0.0077587309068310635,0.008932067029426978,0.009886883164553559,0.010599434999880308,0.01105191388104099,0.011232891742606404,0.011137609515594709,0.010768101738503401,0.010133154121412417,0.009248094919780498,0.00813442506516627,0.006819295973559219,0.0053348477104333165,0.0037174236422587853,0.002006680761836088,0.0002446174637050831,-0.0015254573981639328,-0.0032599888663503917,-0.004916247494804226,-0.00645338185948109,-0.007833426042127466,-0.009022237243243287,-0.009990340371570247,-0.010713658720364531,-0.011174112620279932,-0.0113600711870085,-0.011266645880046446,-0.010895818468891231,-0.010256400069519504,-0.009363822067268227,-0.00823976388014558,-0.006911626537311458,-0.005411864851883404,-0.0037771944615355283,-0.0020476931081573504,-0.00026581815252941317,0.0015246355936486423,0.0032796121398813776,0.004955878246193867,0.006512088344072049,0.007909804220715057,0.009114444321521939,0.010096139228910174,0.01083047215759177,0.011299086111719097,0.011490142609518077,0.011398620516371472,0.011026447448835167,0.010382460323554851,0.00948219582556923,0.008347515756775607,0.00700607629434954,0.00549065404042726,0.003838345283298632,0.0020896580293490383,0.00028751902624220564,-0.0015237798845877746,-0.003299670226990114,-0.004996403415038089,-0.0065721283687898355,-0.007987923679968019,-0.009208758874376458,-0.010204361033252212,-0.010949965337194096,-0.011426930927965387,-0.01162320677618236,-0.011533635916259543,-0.01116009037397745,-0.010511433269506563,-0.009603308827561241,-0.008457765262127215,-0.007102719621677949,-0.005571277580452986,-0.0039009247460562724,-0.002132609234697734,-0.0003097379641832494,0.0015228887357929956,0.00332017804986942,0.0050378540885072905,0.006633548493105717,0.00806784537393949,0.009305254812510079,0.01031509088761188,0.011072232505793696,0.011557748175405612,0.011759369189448235,0.011671799394609888,0.011296853731357609,0.010643421934430644,0.009727258081365882,0.00857060096310209,0.007201634419757122,0.00565380073366025,0.003964983803162525,0.0021765820449820453,0.00033249370996061596,-0.0015219605207158697,-0.003341151218990552,-0.00508026280922129,-0.006696397467611093,-0.008149633133637214,-0.009404009542339973,-0.010428417926743648,-0.011197372381315067,-0.01169164376342075,-0.011898740369753472,-0.01181322337662648,-0.011436849084956653,-0.010778534263371465,-0.009854145231748162,-0.008686115665733228,-0.007302902323647602,-0.005738291896619945,-0.004030575862183344,-0.002221613489926448,-0.0003558059242827915,0.0015209935148396514,0.003362606073222352,0.005123663661415923,0.006760726364439712,0.008233353838774774,0.009505104175134735,0.010544435558748188,0.011325488421326635,0.011828728693012117,0.01204143615744952,0.01195802570566827,0.011580193381905555,0.010916883416353232,0.00998407684047834,0.008804406671879646,0.007406608929514508,0.005824822791289849,0.004097756934445488,0.0022677424128073795,0.0003796952417209309,-0.0015199858885156523,-0.0033845597227788226,-0.0051680923633116785,-0.006826588717109863,-0.008319077601981749,-0.009608623751342376,-0.010663241724268918,-0.011456689110939219,-0.011969119366495626,-0.012187578036788896,-0.012106329973623976,-0.011727009281129073,-0.01105858808715264,-0.010117164687290837,-0.008925576054795938,-0.007512844037826396,-0.005913468669586753,-0.004166585795663758,-0.002315009582837331,-0.0004041833317320204,0.00151893569917239,0.0034070300952478713,0.005213586366194846,0.00689404067060509,0.008406877966526699,0.009714657481423113,0.010784939174781327,0.011591088271950845,0.012112937920077005,0.012337293483882128,0.012258265875760156,0.011877425506361262,0.01120377284574724,0.01025352609321708,0.009049730955228595,0.0076217019146873,0.006004308533256249,0.00423712415859844,0.0023634578160154794,0.00042929296432670666,-0.0015178408828486465,-0.0034300359849442144,-0.005260184960803945,-0.006963141142563334,-0.008496832118737259,-0.009823299004609742,-0.010909635771645183,-0.011728805395083586,-0.0122603125813083,-0.012490716340718397,-0.012413969592181787,-0.012031577225672833,-0.011352568506508866,-0.010393284268267678,-0.009176983899832552,-0.007733281572913899,-0.006097425370375175,-0.0043094368588250075,-0.0024131321051841085,-0.00045504808080494644,0.0015166992449763606,0.0034535971058876984,0.005307929391640506,0.00703395199656127,0.008589021116394065,0.009934646667183755,0.011037444807740571,0.011869965997356654,0.012411378053621193,0.01264798721755697,0.012573584198265635,0.012189606459857474,0.011505112524436771,0.010536568685619762,0.0093074531439088,0.007847687074605545,0.006192906409989943,0.004383592054774834,0.0024640797601373898,0.00048147387000675127,-0.0015155084503307484,-0.0034777341487035773,-0.005356862979918629,-0.007106538228550186,-0.008683530134531634,-0.01004880382199437,-0.011168485353712086,-0.012014702006836162,-0.012566275930364277,-0.012809253926231617,-0.012737260106664346,-0.012351662522275424,-0.011661549421945758,-0.010683515484707942,-0.009441263040645211,-0.007965027857164334,-0.006290843396517416,-0.004459661443360502,-0.002516350558681798,-0.0005085968506047051,0.0015142660120755424,0.003502468841801931,0.0054070312559075595,0.007180968167638807,0.008780448730199682,0.010165879151148737,0.011302882631036643,0.012163152177246664,0.012725155141015774,0.01297467194717528,0.012905155543753462,0.012517902493012715,0.011822031249002064,0.010834267905846674,0.009578544439296014,0.008085419084898076,0.006391332885738158,0.004537720492602471,0.002569996909679064,0.0005364449599844065,-0.0015129692797900048,-0.0035278240172099684,-0.005458482101529113,-0.007257313692511953,-0.008879871127927713,-0.010285987013979746,-0.01144076841438057,-0.012315462535176964,-0.012888172432530941,-0.013144404933265979,-0.013077437063691641,-0.012688491730525973,-0.011986718079678929,-0.01098897675931067,-0.009719435114967555,-0.008208982028594632,-0.006494476564373363,-0.004617848692860326,-0.002625074029175856,-0.0005650476503559502,0.0015116154263880575,0.0035538236814692103,0.005511265904143077,0.007335650464937203,0.008981896527792336,0.010409247822644397,0.011582281465954499,0.012471786862916317,0.013055492889090718,0.013318625253926769,0.013254280103606731,0.012863604424271008,0.012155778548548051,0.011147800932092089,0.00986408023299002,0.008335844475682933,0.0066003815954845954,0.00470012982840901,0.0026816401308817728,0.0005944359927717659,-0.0015102014337905801,-0.003580493092072516,-0.00556543572255255,-0.007416058181949052,-0.009086629438214764,-0.010535788447934154,-0.011727568004884567,-0.01263228722027037,-0.013227290493877985,-0.013497514583281578,-0.013435869583795883,-0.013043424192202443,-0.012329390430677602,-0.011310907935924272,-0.010012632851152684,-0.008466141173911168,-0.0067091609921461235,-0.004784652271327459,-0.0027397566323579653,-0.0006246427898401269,0.0015087240772337124,0.003607858839933144,0.005621047466391402,0.00749862084847184,0.009194180035830985,0.010665742658183706,0.01187678221492805,0.012797134509085466,0.013403748736896341,0.013681264536586484,0.013622400557258236,0.013228144727447802,0.012507741269437883,0.011478474500535086,0.010165254463467898,0.008600014311765478,0.006820934022144984,0.004871509299848556,0.002799488378469224,0.0006557026979732587,-0.0015071799080418947,-0.0036359489384678225,-0.005678160090151053,-0.007583427072353721,-0.009304664555034639,-0.010799251594458353,-0.01203008679424868,-0.012966509084608432,-0.01358506127329902,-0.013870077359622441,-0.01381407891335426,-0.013417970498948804,-0.012691029056767581,-0.01165068721655711,-0.01032211558951199,-0.008737614039244647,-0.006935826646738437,-0.0049607994435985295,-0.00286090388378893,-0.0006876523601449177,0.001505565234712698,0.00366479291990011,0.005736835803278369,0.007670570383973723,0.00941820571009868,0.010936464285577633,0.012187653551363304,0.013140601418286135,0.013771432637189442,0.014064166676264553,0.014011122140930357,0.013613117511392785,0.01287946297109578,0.011827743233000787,0.010483396413877239,0.008879099032985255,0.0070539719968784826,0.005052626858393404,0.002924075595879741,0.0007205305502049192,-0.0015038761021002299,-0.0036944219394958186,-0.005797140297899653,-0.007760149582860876,-0.009534933153084136,-0.01107753820692213,-0.012349664051856333,-0.013319612817118734,-0.013963079016428607,-0.014263758300036197,-0.014213760156853028,-0.01381381413037713,-0.013073264178693695,-0.012009851014782252,-0.010649287480762942,-0.00902463711022394,-0.007175510890671145,-0.005147101733607314,-0.0029890801815565184,-0.0007543783299625474,0.0015021082684972948,0.0037248688884814903,0.005859142995939682,0.007852269114008591,0.009654983971142277,0.011222639887424142,0.012516310320976625,0.013503756205283617,0.014160229094615801,0.014469091116130787,0.01442223620659061,0.014020301979428757,0.01327266670491837,0.012197231166414461,0.010819990449348012,0.009174405896575442,0.007300592396315815,0.0052443407354430495,0.00305599883852761,0.0007892392203539142,-0.0015002571803482342,-0.0037561685165216764,-0.005922917317570183,-0.007947039476913437,-0.009778503227204973,-0.011371945569670666,-0.012687795607829424,-0.01369325697440835,-0.014363124967141193,-0.014680418041143398,-0.014636807844256994,-0.014232836916291836,-0.013477918382556037,-0.01239011732871508,-0.01099571891622731,-0.009328593553228418,-0.007429374445238039,-0.005344467489871771,-0.0031249176350564944,-0.0008251593882101772,0.001498317944330809,0.0037883575646898123,0.005988540973186719,0.008044577670688067,0.009905644548561236,0.011525641928607123,0.012864335217565165,0.013888353909628899,0.014572023139021235,0.014898007068620149,0.014857748000421564,0.014451690096772446,0.01368928188535334,0.012588757156183593,0.011176699311977477,0.009487399569802346,0.007562024500735143,0.0054476131094249956,0.0031959278806493285,0.0008621878502874215,-0.0014962852964667261,-0.0038214749100170414,-0.006056096281334168,-0.00814500767903409,-0.010036570768324824,-0.01168392685501652,-0.013046157418718991,-0.014089300199438874,-0.014787195613167586,-0.015122142409512167,-0.015085346146991647,-0.014677149135446097,-0.013907035855790523,-0.012793413383655425,-0.0113631718797509,-0.00965103562990568,-0.007698720288068272,-0.0055539167685768045,-0.0032691265311028126,-0.0009003766964703528,0.0014941535679170478,0.003855561722788522,0.006125670515331982,0.008248460999282507,0.010171454625439188,0.011847010310674214,0.013233504433751023,0.014296364538302181,0.015008931078796509,0.015353125737739847,0.015319909569623626,0.014909519373670103,0.01413147613728624,0.0130043649918816,0.011555391744804534,0.009819726557275166,0.007839650592711016,0.005663526333004577,0.0033446166317085586,0.0009397813342606426,-0.0014919166470259346,-0.00389066163793881,-0.006197356281645716,-0.008355077220264368,-0.010310479529530386,-0.012015115262961428,-0.013426633521814398,-0.014509832332133389,-0.015237536210895197,-0.01559127755234534,-0.015561764759421884,-0.01514912526666108,-0.014362917122283454,-0.013221908482918276,-0.01175363008496115,-0.009993711351404286,-0.007985016134274239,-0.005776599048728849,-0.0034225078028503587,-0.0009804607569779006,0.001489567937158992,0.0039268209420180444,0.006271251933469948,0.008465004654331396,0.010453840397743728,0.012188478707671256,0.013625818163939131,0.014730007018010421,0.01547333709304844,0.0158369386691664,0.01581125893718057,0.015396311902883136,0.014601693229142412,0.013446359277576559,0.011958175413308776,0.010173244322677057,0.008135030524631656,0.005893302297866349,0.0035029167728239732,0.0010224778383769964,-0.0014871003097710904,-0.003964088777422741,-0.006347462023384735,-0.00857840102955967,-0.010601744571577303,-0.012367352789886227,-0.013831349362103413,-0.014957211510959738,-0.0157166807775033,-0.01609047185663239,-0.016068761725133097,-0.01565144667071293,-0.014848160522422897,-0.01367805324879071,-0.012169334985884152,-0.010358596338355043,-0.008289921319845869,-0.0060138144286458195,-0.0035859679633027165,-0.001065899656782016,0.0014845060520989296,0.0040025173657611225,0.0064260977994751774,0.008695434248910875,0.010754412822790367,0.012552006034062167,0.014043537065175988,0.015191789792313391,0.015967936998171076,0.016352263632192436,0.016334666983135498,0.015914921089308,0.01510269849307102,0.013917348406577077,0.01238743634879343,0.010550056192249302,0.008449931176799973,0.006138325668332858,0.0036717941336340152,0.0011107978522340363,-0.0014817768087461913,-0.004042162252482353,-0.006507277749850236,-0.008816283224044635,-0.010912080458641957,-0.01274272469594658,-0.014262711736419728,-0.015434108656074051,-0.016227500054346724,-0.016622726238085854,-0.01660939482846842,-0.016187152822868107,-0.015365712017225888,-0.014164626752362209,-0.012612829041148344,-0.010747932112644135,-0.00861531912689057,-0.006267039128891068,-0.003760537090971077,-0.0011572490206432794,0.0014789035163416356,0.004083082575162079,0.006591128201166568,0.008941138792478176,0.011074998538095987,0.012939814250640157,0.014489226079229364,0.01568455963193187,0.01649579088533091,0.016902299817695803,0.016893393861042556,0.01646858790008491,0.015637633514912264,0.014420296322880392,0.012845886472440166,0.010952553425031049,0.00878636198084347,0.006400171916557612,0.003852348474225018,0.001205335149493303,-0.0014758763303122046,-0.004125341358151963,-0.006677783977501164,-0.00907020472798412,-0.01124343521221113,-0.013143601033070898,-0.014723456940057058,-0.015943561106138794,-0.01677325935891348,-0.017191454816652803,-0.017187143618797848,-0.016759703163586936,-0.015918925332827495,-0.014684793446642131,-0.013087007995559244,-0.011164272388517736,-0.008963355880674225,-0.0065379563580783735,-0.003947390620945601,-0.0012551441002949801,0.0014726845426650819,0.004169005836659759,0.006767389126796341,0.009203698855466397,0.011417677203762454,0.013354434049408948,0.014965807410119642,0.016211560664404667,0.017060386799887944,0.01749069463624016,0.017491157291565685,0.01706100897767458,0.016210082378840997,0.014958585239220964,0.01333662119966703,0.0113834662274503,0.009146618017093154,0.006680641358166121,0.0040458375275462,0.0013067701437440014,-0.0014693164894945697,-0.004214147813740005,-0.006860097723097219,-0.009341854283142888,-0.01159803144326871,-0.013572686980568186,-0.015216709150542095,-0.01648903768441214,-0.017357688788491536,-0.01780055857058245,-0.01780598472570211,-0.017373052226689063,-0.016511635039784277,-0.015242172367376374,-0.013595184450611883,-0.011610539382894846,-0.009336488533302297,-0.006828493904860343,-0.004147875914810678,-0.0013603145544175315,0.0014657594467195533,0.004260844054152656,0.006956074753967206,0.009484920766687369,0.011784826881051801,0.013798760401989628,0.015476624969149652,0.016776506209538723,0.01766571826299745,0.018121625063668836,0.018132215756499145,0.01769641964107276,0.016824152418719495,0.015536092116421414,0.013863189710639153,0.011845926012245675,0.009533332639218631,0.0069818007419346585,0.004253706412396606,0.0014158862728771305,-0.0014619995123083566,-0.00430917671959886,-0.00705549710381825,-0.009633166222115746,-0.011978416497832857,-0.014033084247438328,-0.015746051681265503,-0.01707451814002669,-0.01798506896573736,-0.01845451532759405,-0.018470483910864078,-0.018031741493678068,-0.017148245933255975,-0.01584092180037047,-0.01414116567388682,-0.012090092769458544,-0.009737542963765855,-0.0071408702303832885,-0.004363544878129201,-0.001473602644254898,0.0014580214729518557,0.004359233850482814,0.007158554645466938,0.0097868784066856,0.012179179539710703,0.01427612054869527,0.016025523291719142,0.017383666783279565,0.01831637927773816,0.01879989736963453,0.01882147052916997,0.018379695715318146,0.01748457332278261,0.016157282560405096,0.014429681259710532,0.012343541903364506,0.009949542177106122,0.007306034424402164,0.004477623870321846,0.0015335902438228164,-0.0014538086527928896,-0.004411109900092095,-0.007265451454066335,-0.009946366789984437,-0.012387524007289036,-0.01452836648787009,-0.016315614540938817,-0.017704590811336143,-0.018660336494081123,-0.019158490483088687,-0.019185909362704312,-0.018741012486104755,-0.017833843119877,-0.01648584360424345,-0.01472934951240313,-0.012606814717344234,-0.010169785919654237,-0.007477651391260596,-0.004596194294233417,-0.0015959858017241364,0.0014493427413980271,0.004464906327954762,0.0073764071597169295,0.010111964640790455,0.012603889433317896,0.014790357804757985,0.01661694486467684,0.018037978681067334,0.019017681600231897,0.01953107026540971,0.019564591711993963,0.01911647936800561,0.018196819649855207,0.016827326947297685,0.015040831963555533,0.012880495440505985,0.010398766080577401,0.00765610780915488,0.004719527247166793,0.0016609372410323162,-0.0014446035976513863,-0.004520732260142814,-0.007491658457589216,-0.01028403135929919,-0.012828749988629842,-0.015062672608372978,-0.016930182824770386,-0.01838457358146651,-0.019389214619192453,-0.019918474237303377,-0.019958372181729127,-0.0195069470545439,-0.018574328632701375,-0.01718251272630553,-0.015364843522382056,-0.01316521556862294,-0.010637014475414253,-0.007841821882691563,-0.004847916090733413,-0.0017286048456615758,0.0014395690256405519,0.004578705225475791,0.0076114607973693975,0.0104629550890398,0.013062617962545108,0.015345935649716385,0.017256051077630397,0.018745178982852072,0.019775800610678917,0.020321608148466477,0.02036817514037183,0.01991333582598348,0.018967263473787403,0.01755224516773573,0.015702157970090905,0.013461658742705098,0.010885106980669185,0.008035246622244304,0.004981678783586611,0.0017991625774623876,-0.0014342145178680122,-0.004638951977968503,-0.00773609027735929,-0.010649155648402716,-0.013306047671493584,-0.01564082312223433,-0.0175953319581651,-0.019120664875185333,-0.020178376417009432,-0.020741453069891686,-0.020795001987215626,-0.02033664281309794,-0.019376592344255338,-0.017937439307072388,-0.01605361414717347,-0.01377056624452489,-0.01114366819302468,-0.008236873541285012,-0.0051211605136237655,-0.00187279956519293,0.0014285129602282405,0.004701609417503863,0.00786584577273261,0.010843087828347095,0.01355963985860181,0.015948068067589742,0.017948873769948425,0.019511974797451554,0.02059795826643023,0.02117907338963555,0.02123993934715474,0.020777950190207572,0.01980336616917874,0.018339088571549058,0.01642012293775027,0.014092743202077183,0.011413376692503821,0.008447236835180876,0.005266736675474448,0.0019497217920851394,-0.001422434292103143,-0.004766825622644666,-0.008001051332409439,-0.011045245110773818,-0.01382404665772478,-0.016268466477704344,-0.018317597888086602,-0.019920133777660724,-0.021035650363780307,-0.021635625849232957,-0.021704168334336447,-0.021238434439203365,-0.020248727662251685,-0.018758273358612965,-0.016802675173390316,-0.014429065614320767,-0.011694971002926942,-0.008666918116213984,-0.005418816247279273,-0.0020301540135732573,0.00141594511359963,0.004834761011787389,0.008142058884927753,0.011256163871514341,0.014099977208244078,0.016602884199987043,0.01870250679997739,0.020346257324130104,0.02149265462138347,0.022112369782274294,0.022188975050966963,0.021719376851525408,0.02071392157053247,0.019196170766077877,0.017202350600789295,0.014780488324228756,0.011989256359865178,0.008896551793144617,0.005577845630634443,0.0021143419426140086,-0.00140900823032221,-0.004905589651580713,-0.008289251300775069,-0.011476428143240118,-0.014388204022376175,-0.016952264771848306,-0.019104693231692664,-0.02079156163410272,-0.021970281710725268,-0.022610678745961104,-0.0226957625177727,-0.02222217546549378,-0.021200306322634314,-0.019654065658479634,-0.017620328084198004,-0.01514805409293201,-0.012297112416656496,-0.009136831200036187,-0.005744313029523571,-0.0022025547471407753,0.0014015821240635268,0.00497950073477281,0.008443045867156036,0.011706675027270718,0.014689570225327374,0.017317638333743286,0.0195253505349204,0.021257375216423152,0.02246996364890464,0.023132053771873592,0.02322606426917705,0.022748358673196818,0.02170936730991113,0.02013336328872522,0.018057897245600772,0.015532903956532736,0.012619502043745446,0.009388515598962269,0.005918753458577819,0.0022950879128633586,-0.001393620335307468,-0.005056700253527264,-0.008603898241440104,-0.01194760085978936,-0.015004997811135755,-0.01770013179802034,-0.01996578454237594,-0.021745152162181716,-0.022993268174411528,-0.02367813850517202,-0.02378155989064526,-0.023299600775860938,-0.022242732074113963,-0.020635603736159934,-0.018516471784701678,-0.015936289082210144,-0.01295748140668488,-0.009652438205476687,-0.006101754488728146,-0.0023922665352372995,0.0013850707403445341,0.005137412898897979,0.00877230696196879,0.01219996825804101,0.015335497084391398,0.018100980484951536,0.0204274271397272,0.022256487342528438,0.0235419152162024,0.024250736553856247,0.024364092829787156,0.02387773982118252,0.022802187728621838,0.021162478473522154,0.018997604768499352,0.016359584383080977,0.01331221154493205,0.009929515415432962,0.006293962860044494,0.002494449117478005,-0.0013758747019309342,-0.005221884222752981,-0.008948818610024157,-0.012464614196551519,-0.015682177491412368,-0.018521541478982,-0.020911851851144154,-0.02279313386825834,-0.024117795820529107,-0.024851831433870486,-0.024975690879125184,-0.02448479812296558,-0.02338970100610141,-0.021715849438222776,-0.019503006238796274,-0.016804304203895056,-0.013684971718791142,-0.010220757448281943,-0.0064960921183283725,-0.0026020319676233737,0.0013659660675632635,0.0053103831052041615,0.009134033735229384,0.012742459293362908,0.01604626008539258,0.018963309009365437,0.021420791795844343,0.023357023213850973,0.024722993974344194,0.025483609574772016,0.025618589810057612,0.025123005945741614,0.02400744140645317,0.02229777106101563,0.02003456355823526,0.017272120454566015,0.014077174847699055,0.010527280667149724,0.00670893146517092,0.0027154543076810126,-0.001355269983302946,-0.005403204578808768,-0.0093286136793114,-0.01303451852313505,-0.016429091920474804,-0.01942793222240646,-0.02195616044737445,-0.023950288492718744,-0.0253598118559921,-0.026148486948258647,-0.0262952607385001,-0.025794828938931827,-0.02465780801919247,-0.02291051580128179,-0.02059436500497909,-0.01776488364908231,-0.014490385432373245,-0.010850321892127642,-0.006933356052438982,-0.0028352042329100402,0.001343701483289065,0.0055006730708051866,0.009533288461087112,0.01334191361952857,0.016832162732151684,0.019917235790678996,0.02252007571961153,0.02457529147476555,0.026030799158008922,0.026849140003096225,0.027008441928198852,0.026503000031845518,0.02534346071923232,0.02355660385789394,0.021184727237718838,0.0182846474077417,0.014926340439833742,0.011191255093330483,0.007170339003769659,0.0029618256906964097,-0.0013311638051185619,-0.005603146136868212,-0.0097488659201358,-0.013665887485905364,-0.01725712433912373,-0.02043324390195747,-0.023114888018489495,-0.025234654067561823,-0.026738787269332275,-0.027588541741460533,-0.027761175894596028,-0.02725055665931306,-0.026067356591233187,-0.024238837874562352,-0.02180822739247584,-0.01883369710656195,-0.015386973738882462,-0.011551610938363124,-0.007420965510615344,-0.003095926688151766,0.001317546368469427,0.005711018774875616,0.009976242359706584,0.014007821004124073,0.01770581329901362,0.02097820829258311,0.023743213042684282,0.025931295145825223,0.027486929283124854,0.028370003962019105,0.028556852869357708,0.02804088438713199,0.026832792634280456,0.024960343647394165,0.022467740748822865,0.01941458351650481,0.0158744448106398,0.01193309978019285,0.007686449432636469,0.003238188987982796,-0.0013027223377760275,-0.005824728425680911,-0.010216414983354617,-0.014369252720089926,-0.018180277472766522,-0.021554641143706487,-0.024407970298402207,-0.026668473820125462,-0.02827874702238794,-0.02919722693561687,-0.02939926193511275,-0.02887776825881658,-0.027643456047594384,-0.025724618081665002,-0.023166485126521485,-0.020030162476652846,-0.016391172632809436,-0.012337638813005081,-0.007968152937031342,-0.0033893796166696746,0.0012865456681828138,0.0059447607908016,0.010470496487726263,0.014751901997059997,0.018682807307600694,0.022165353853743627,0.02511242852427696,0.027449840497666037,0.029118186562759708,0.030074358085368777,0.030292651457416858,0.02976545350647459,0.02850348371523104,0.02653558594993448,0.023908073458644534,0.02068364190285547,0.01693987585888799,0.012767384304911854,0.008267609845855855,0.0035503645920629645,-0.001268847505680996,-0.006071656625437231,-0.01073973225996102,-0.015157696370589111,-0.019215972845949572,-0.022813502949086663,-0.02586025951727711,-0.028279497422870004,-0.030009684099374156,-0.031006061634676344,-0.031241800847709906,-0.03070871768062537,-0.02941753291477632,-0.02739766739541358,-0.0246965763535603,-0.02137863776437286,-0.017523620700057814,-0.013224770050090028,-0.008586553534054013,-0.003722125385264724,0.0012494317748765991,0.006206019700854233,0.011025520737871936,0.015588804021938352,0.019782667721332903,0.023502644714648777,0.026655602229819216,0.029162070816599675,0.030958244478119557,0.03199760169175224,0.032252106215877936,0.03171295678576024,0.03039086580102231,0.028315858631141024,0.02553659693226033,0.0221192410898684,0.01814587828909568,0.01371255348646907,0.008926950447013294,0.0039057787725803998,-0.0012280697379313018,-0.006348526174896356,-0.01132943763183667,-0.01604767252262053,-0.020386161729657393,-0.0242368005393391,-0.02750313949968943,-0.030102797291907922,-0.03196953532616538,-0.03305494189531506,-0.03332968315332751,-0.03278428870056085,-0.0314294509004591,-0.029295828945729185,-0.02643336084585184,-0.022910098623931986,-0.018810593791330175,-0.014233871322447118,-0.009291040603097322,-0.004102600919038977,0.0012044932410635945,0.006499935665802777,0.011653264889269998,0.016537075309099168,0.02103016399093473,0.025020535510810935,0.028408190415965918,0.031107627954894093,0.03305000052052317,0.034184865605097155,0.03448149078152378,0.033929678069340836,0.03254008575127564,0.030344037993709997,0.0273928251910677,0.023756510492187057,0.019522270167744694,0.014792307040607383,0.009681386839109296,0.004314056781926476,-0.0011783862739623283,-0.006661104396002062,-0.011999025519415231,-0.017060167747650977,-0.021718899276122607,-0.02585905350273503,-0.029376822168700217,-0.03218335456211163,-0.03420699779380387,-0.0353951217548951,-0.03571548238235808,-0.03515708805171256,-0.03373054601342297,-0.0314678784976093,-0.02842181111994807,-0.024664549211409818,-0.02028607034632479,-0.015391973344937648,-0.010100935080726955,-0.004541836254177863,0.0011493743426729977,0.006833000863593102,0.012369025707057247,0.017620555178721076,0.022457200814681267,0.026758312937909638,0.03041598635157967,0.03333776338604042,0.035448966687508125,0.036694602996596624,0.03704078950193059,0.03647566591954357,0.035009767962734924,0.032675851025373584,0.02952816638319736,0.025641205692228355,0.02110794269974495,0.016037613557147102,0.010553088626439402,0.004787898916586367,-0.0011170109838317837,-0.0070167246156316605,-0.012765906055097183,-0.01822237603496026,-0.023250623888004602,-0.02772516866856241,-0.03153368618986343,-0.03457982415788251,-0.03678563495898251,-0.03809356479522823,-0.03846794853982126,-0.037895971649023794,-0.03638807342699901,-0.03397777958142162,-0.0307209659977887,-0.026694569656549757,-0.021994776275473887,-0.016734727243078618,-0.011041800395747425,-0.005054529882909653,0.001080760506428053,0.007213528846832697,0.013192704345085515,0.01887040407466855,0.024105585848465175,0.028767547115414495,0.032739183200458495,0.03591992378523228,0.038228274120851884,0.03960389689510679,0.040009181719785805,0.03943026159467964,0.03787744914379117,0.03538507958029798,0.032010761894675124,0.027834054319310995,0.02295459434521494,0.017489727101159612,0.01157168841745989,0.005344410073992874,-0.0010399757050143568, -0.0074248477399438025,-0.013652932944865866,-0.019570175058984295, -0.02502954002236904,-0.02989466412910682,-0.034043254574452377,-0.03737015773200255,-0.039790018320897146,-0.04123946236788187,-0.041678748303125665, -0.04109284337790695, -0.03949189654672641,-0.036911093677711566,-0.03340989608476297,-0.02907067854267498,-0.023996797779897168,-0.018310136576819257,-0.012148181680284408,-0.005660705451633268,0.0009938687974208394,0.007652329712972285, 0.014150674999827556,0.020328144967100583,0.02603119346075172,0.031117298244761855,0.03545851642402368,0.038944696368763757,0.041486265668145623,0.04301652472076526,0.04349338742293708,0.04290052375832257,0.04124787360313014,0.038571516388311224,0.03493289703084617,0.030417424374802812,0.02513247388076009,0.019204841087239532,0.012777706073684902,0.006007181439886584,-0.0009414731264106246,-0.00789787806051382,-0.014690704930136092,-0.021151889295771664,-0.027120781995569207,-0.032448136484148495,-0.03699983343109193,-0.04066024980477274,-0.043335187993639154,-0.04495429095576272,-0.04547288169133723,-0.04487317920795829,-0.04316485826111046,-0.04038493613666262,-0.03659698620961514,-0.0318896945615375,-0.026374792162006874,-0.020184410616968,-0.013467923875374994,-0.006388351206328235,0.0008815921118185961,0.008163700892720166,0.015278640684767369,0.022050356436424112,0.028310420992857598,0.03390221621062065,0.03868484309385729,0.04253666353426036,0.045358384837867714,0.04707560904475849,0.047640781837326326,0.047034490284135574,0.04526607443227943,0.042373534460643014,0.0384227323338282,0.03350590423117361,0.027739517042131512,0.021261518498919243,0.01422804565659487,0.006809670052392734,-0.0008127303613872672,-0.008452372811072403,-0.01592113791948644,-0.023034193034414358,-0.029614557259915124,-0.035497495665123634,-0.040534633795878044,-0.04459768995718312,-0.04758173162654765,-0.04940787359363371,-0.05002534873600844,-0.049412897417360026,-0.04757943797181527,-0.0445639982183359,-0.04043490600837773,-0.03528825500760325,-0.029245679802397066,-0.022451491563595213,-0.015069241468690781,-0.00727779348202511,0.0007329994411377716,0.008766911441869722,0.01662614014208101,0.02411616633427197,0.0310505578343443,0.03725559911993982,0.04257463205223558,0.04687199948997537,0.050036492805309106,0.05198421598969846,0.05266079292072407,0.052042860117698514,0.050138804568472875,0.04698872454599378,0.04266361030663365,0.03726376071077053,0.030916470660572168,0.023773042346222416,0.016005190181961185,0.007800924576506711,-0.000639987064316204,-0.009110872797361436,-0.01740320447709376,-0.025311718939246018,-0.032639486558844924,-0.03920280232746915,-0.04483577828208104,-0.04939452279944773,-0.05276080179806229,-0.05484508904517152,-0.05558892726589368,-0.05496653825142696,-0.05298563827005522,-0.04968743436259676,-0.045145797086595246,-0.03946562547460371,-0.03278043989705011,-0.02524925767918015,-0.017052824240289834,-0.008389288755623357,0.000530572520549295,0.009488470446348795,0.018263930940601143,0.02663970698412353,0.03440714217315382,0.041371353762835156,0.04735610682044409,0.05220825796080843,0.05580165700999143,0.05804040761274113,0.05886140296968819,0.05823607020403734,0.056171275902273596,0.052709365692153586,0.04792733182312625,0.041935124086485594,0.03487314053260381,0.026908954791322676,0.018233355875649906,0.00905579367337897,-0.00040066152880565103,-0.009904724572618465,-0.01922253541079696,-0.02812339641494256,-0.0363854666690031,-0.043801273122293774,-0.05018290212743681,-0.05536674190906972,-0.05921765674667074,-0.061632486877791125,-0.0625427840302011,-0.06191671069946391,-0.05976005136997111,-0.056116305351812536,-0.05106585325530414,-0.04472421180730702,-0.037239414174937674,-0.028788574651262014,-0.019573716937970543,-0.00981696382451355,0.000244797654257922,0.010365647912284521,0.02029662514555336,0.02979182887031954,0.03861448753029594,0.04654284096710592,0.053375692135346146,0.05893748962269074,0.06308281315348804,0.06570014807312907,0.06671485151208935,0.06609123212243802,0.06383368651178466,0.059986858263336794,0.054634809178529885,0.04789921653551977,0.039936634133969785,0.030934878105860486,0.021108620340358097,0.010694292353985396,-0.00005557996607238711,-0.010878475554157246,-0.021508264552086598,-0.031681727113893395,-0.04114504555836772,-0.04966011036966606,-0.05701048402120923,-0.06300687391799153,-0.06749197676406793,-0.07034457112098592,-0.07148275249891736,-0.07086622560648373,-0.068497590900056,-0.0644225867831778,-0.05872927413119469,-0.05154617564343897,-0.043039408227217024,-0.03340887156492647,-0.0228835795925152,-0.011716243238079502,-0.00017723189123445188,0.011451942788159733,0.022885464374922768,0.033840205146845985,0.04404270514452145,0.05323596556231735,0.06118588850582777,0.06768720258065183,0.07256872518894625,0.07569782755373398,0.0769839870235062,0.07638133270302289,0.07389011440687411,0.0695570507731415,0.06347453948797586,0.05577874030510001,0.046646569224260345,0.03629166914295988,0.02495944785266162,0.012921297779449632,0.0004681327799632659,-0.0120966049341197,-0.024464300513265442,-0.036328707421703035,-0.04739349029666969,-0.0573795849039418,-0.0660321933991325,-0.07312724059145556,-0.07847712871210756,-0.0819356440585774,-0.08340188846345704,-0.08282313137306244,-0.08019650388575841,-0.07556948379014226,-0.06903914980047911,-0.06075021311142139,-0.05089186436229889,-0.0396935033825819,-0.02741944696490204,-0.014362735689161897,-0.0008381838553122669,0.012825163710599954,0.02629198834006269,0.03922887643880289,0.0513125223315238,0.062237754461780564,0.07172518698177673,0.07952830622706637,0.08543981374265507,0.08929706415282981,0.0909864568796878,0.09044666504488007,0.08767061227369254,0.08270613791944995,0.07565532273444199,0.06667247947873134,0.055960845598262615,0.04376804712570167,0.03038043357670634,0.016116412073490075,0.001318934515252238,-0.01365268631650838,-0.02843143784849361,-0.042651538712108625,-0.055957423863408566,-0.06801256472957097,-0.07850790727602923,-0.0871697181843753,-0.09376664180269134,-0.0981157879210721,-0.10008769235809131,-0.09961001832756423,-0.09666989599527905,-0.09131482984925766,-0.08365213773798948,-0.07384692086654425,-0.06211859983148435,-0.0487360870565604,-0.03401169990116054,-0.018293950416486213,-0.0019593764301506747,0.014596396376675138,0.03096815111613618,0.046750909068111225,0.061549855407493845,0.07499012016988563,0.0867261744098874,0.0964506084144615,0.1039020714719725,0.10887217081613709,0.111211150578966,0.11083219938661018,0.10771426698985462,0.1019033053079909,0.09351188666693157,0.08271719094928044,0.0697573929193596,0.05492652018971198,0.03856789020578361,0.02106627031240195,0.002838937543563369,-0.015674156573929662,-0.03402088692568697,-0.051747873450736386,-0.06841155664804159,-0.08358916235281315,-0.09688928786169744,-0.10796184763762298,-0.11650712937536487,-0.12228372992451296,-0.12511516506351938,-0.12489497686974772,-0.12159019677681537,-0.11524306057542304,-0.10597091272051502,-0.09396428039908976,-0.07948314187429106,-0.06285145760316106,-0.04445007546866469,-0.02470816212795454,-0.0040933499557582525,0.016899177583090532,0.037758410913658495,0.057969775791158314,0.07702764095646673,0.09444777219727384,0.10977943053792952,0.12261681705438879,0.13260957879629862,0.1394721092951341,0.14299140277451738,0.14303325292255478,0.139546624250383,0.13256606582283764,0.1222120825636204,0.10868942736762614,0.09228332678160646,0.0733537028765328,0.05232750294437881,0.029689295628156025,0.005970335890561541,-0.01826365924112258,-0.042425747944643835,-0.06592170955057823,-0.08816437359800977,-0.10858799268135634,-0.12666231393687521,-0.14190600633619366,-0.1538991114784016,-0.16229420415986737,-0.16682597531758303,-0.16731898346602686,-0.16369336078079016,-0.15596830566349987,-0.14426324394643283,-0.12879659473383145,-0.1098821330050303,-0.08792299822707564,-0.06340345500629471,-0.03687856690458388,-0.008961996634484394,0.019687806341973174,0.048382727437663975,0.07642107860306183,0.10310429250053196,0.1277538315634778,0.14972791304434163,0.16843764910725595,0.18336220837419137,0.19406262205081445,0.2001938835840536,0.20151502526600837,0.19789689761916696,0.18932742690240606,0.17591418161586236,0.15788413925089936,0.13558060839594346,0.1094573272374418,0.08006982598769283,0.04806420629408894,0.01416355370502847,-0.020847741709477344,-0.056141427884018213,-0.09086422087330824,-0.12415760806428999,-0.1551781799973049,-0.18311802607983016,-0.20722471962616415,-0.22682041856876872,-0.24131962000459461,-0.2502451293581236,-0.25324183800952077,-0.250087946155664,-0.24070331961559538,-0.22515472921520674,-0.20365778804800422,-0.17657547389889783,-0.14441319988521548,-0.10781047425583663,-0.06752926856705795,-0.024439290361676958,0.02049956973833415,0.06625727766290923,0.11175578088768122,0.15589276288422155,0.19756652586968265,0.23570146589357976,0.26927358087283626,0.29733544082962843,0.3190400507314687,0.33366305013827313,0.3406227202063703,0.3394973070841716,0.3300392206839183,0.31218572829157243,0.28606583230094695,0.25200309912586005,0.21051429046014697,0.1623037367650311,0.1082534842894091,0.049409339111457055,-0.013036977370172714,-0.07776925936671261,-0.14337144941015117,-0.20835501273819287,-0.2711885265546741,-0.33032890100276513,-0.3842536040003885,-0.4314932301851665,-0.47066373594440675,-0.5004976584229822,-0.5198736467664834,-0.5278436586178057,-0.5236572136806413,-0.5067821483258685,-0.47692137978539223,-0.43402526421586857,-0.37829921833413116,-0.31020636771813986,-0.23046508433710503,-0.14004137938069164,-0.0401362228547858,0.0678320335033543,0.182249850879551,0.3013349386437645,0.42316646220493953,0.6668959397772898,0.784572696102819,0.8966305822835551,1.0009990167107312,1.0956942247623747,1.1788573482944704,1.2487906755200475,1.3039912620028706,1.3431812596962447,1.365334331401982,1.3696976015376463,1.3558086792299628,1.3235073847970373,1.2729419137252573,1.2045692811970832,1.119150002860804,1.0177370815456632,0.9016594826725575,0.7725003908622943,0.6320706444335235,0.482377840955056,0.3255916937732503,0.16400629467421043, 0, -0.16400629467421043, -0.3255916937732503, -0.482377840955056, -0.6320706444335235, -0.7725003908622943,-0.9016594826725575,-1.0177370815456632,-1.119150002860804,-1.2045692811970832,-1.2729419137252573,-1.3235073847970373,-1.3558086792299628,-1.3696976015376463,-1.365334331401982,-1.3431812596962447,-1.3039912620028706,-1.2487906755200475, -1.1788573482944704, -1.0956942247623747, -1.0009990167107312, -0.8966305822835551,-0.784572696102819,-0.6668959397772898, -0.5457184731667526, -0.42316646220493953,-0.3013349386437645,-0.182249850879551,-0.0678320335033543,0.0401362228547858,0.14004137938069164,0.23046508433710503, 0.31020636771813986,0.37829921833413116, 0.43402526421586857,0.47692137978539223,0.5067821483258685,0.5236572136806413,0.5278436586178057,0.5198736467664834,0.5004976584229822,0.47066373594440675,0.4314932301851665,0.3842536040003885,0.33032890100276513,0.2711885265546741,0.20835501273819287,0.14337144941015117,0.07776925936671261,0.013036977370172714,-0.049409339111457055,-0.1082534842894091,-0.1623037367650311,-0.21051429046014697,-0.25200309912586005,-0.28606583230094695,-0.31218572829157243,-0.3300392206839183,-0.3394973070841716,-0.3406227202063703,-0.33366305013827313,-0.3190400507314687,-0.29733544082962843,-0.26927358087283626,-0.23570146589357976,-0.19756652586968265,-0.15589276288422155,-0.11175578088768122,-0.06625727766290923,-0.02049956973833415,0.024439290361676958,0.06752926856705795,0.10781047425583663,0.14441319988521548,0.17657547389889783,0.20365778804800422,0.22515472921520674,0.24070331961559538,0.250087946155664,0.25324183800952077,0.2502451293581236,0.24131962000459461,0.22682041856876872,0.20722471962616415,0.18311802607983016,0.1551781799973049,0.12415760806428999,0.09086422087330824,0.056141427884018213,0.020847741709477344,-0.01416355370502847,-0.04806420629408894,-0.08006982598769283,-0.1094573272374418,-0.13558060839594346,-0.15788413925089936,-0.17591418161586236,-0.18932742690240606,-0.19789689761916696,-0.20151502526600837,-0.2001938835840536,-0.19406262205081445,-0.18336220837419137,-0.16843764910725595,-0.14972791304434163,-0.1277538315634778,-0.10310429250053196,-0.07642107860306183,-0.048382727437663975,-0.019687806341973174,0.008961996634484394,0.03687856690458388,0.06340345500629471,0.08792299822707564,0.1098821330050303,0.12879659473383145,0.15596830566349987,0.16369336078079016,0.16731898346602686,0.16682597531758303,0.16229420415986737,0.1538991114784016,0.14190600633619366,0.12666231393687521,0.10858799268135634,0.08816437359800977,0.06592170955057823,0.042425747944643835,0.01826365924112258,-0.005970335890561541,-0.029689295628156025,-0.05232750294437881,-0.0733537028765328,-0.09228332678160646,-0.10868942736762614,-0.1222120825636204,-0.13256606582283764,-0.139546624250383,-0.14303325292255478,-0.14299140277451738,-0.1394721092951341,-0.13260957879629862,-0.12261681705438879,-0.10977943053792952,-0.09444777219727384,-0.057969775791158314,-0.037758410913658495,-0.016899177583090532,0.0040933499557582525,0.02470816212795454,0.04445007546866469,0.06285145760316106,0.07948314187429106,0.09396428039908976,0.10597091272051502,0.11524306057542304,0.12159019677681537,0.12489497686974772,0.12511516506351938,0.12228372992451296,0.11650712937536487,0.10796184763762298,0.09688928786169744,0.08358916235281315,0.06841155664804159,0.051747873450736386,0.03402088692568697,0.015674156573929662,-0.002838937543563369,-0.02106627031240195,-0.03856789020578361,-0.05492652018971198,-0.0697573929193596,-0.08271719094928044,-0.09351188666693157,-0.1019033053079909,-0.10771426698985462,-0.11083219938661018,-0.111211150578966,-0.10887217081613709,-0.1039020714719725,-0.0964506084144615,-0.0867261744098874,-0.07499012016988563,-0.061549855407493845,-0.046750909068111225,-0.03096815111613618,-0.014596396376675138,0.0019593764301506747,0.018293950416486213,0.03401169990116054,0.0487360870565604,0.06211859983148435,0.07384692086654425,0.08365213773798948,0.09131482984925766,0.09666989599527905,0.09961001832756423,0.10008769235809131,0.0981157879210721,0.09376664180269134,0.0871697181843753,0.07850790727602923,0.06801256472957097,0.055957423863408566,0.042651538712108625,0.02843143784849361,0.01365268631650838,-0.001318934515252238,-0.016116412073490075,-0.03038043357670634,-0.04376804712570167,-0.055960845598262615,-0.06667247947873134,-0.07565532273444199,-0.08270613791944995,-0.08767061227369254,-0.09044666504488007,-0.0909864568796878,-0.08929706415282981,-0.08543981374265507,-0.07172518698177673,-0.062237754461780564,-0.0513125223315238,-0.03922887643880289,-0.02629198834006269,-0.012825163710599954,0.0008381838553122669,0.014362735689161897,0.02741944696490204,0.0396935033825819,0.05089186436229889,0.06075021311142139,0.06903914980047911,0.07556948379014226,0.08282313137306244,0.08340188846345704,0.0819356440585774,0.07847712871210756,0.07312724059145556,0.0660321933991325,0.0573795849039418,0.04739349029666969,0.036328707421703035,0.024464300513265442,0.0120966049341197,-0.0004681327799632659,-0.012921297779449632,-0.02495944785266162,-0.03629166914295988,-0.046646569224260345,-0.05577874030510001,-0.06347453948797586,-0.0695570507731415,-0.07389011440687411,-0.07638133270302289,-0.0769839870235062,-0.07569782755373398,-0.07256872518894625,-0.06768720258065183,-0.06118588850582777,-0.05323596556231735,-0.04404270514452145,-0.033840205146845985,-0.022885464374922768,-0.011451942788159733,0.00017723189123445188,0.011716243238079502,0.0228835795925152,0.03340887156492647,0.043039408227217024,0.05154617564343897,0.05872927413119469,0.0644225867831778,0.068497590900056,0.07086622560648373,0.07148275249891736,0.07034457112098592,0.06749197676406793,0.06300687391799153,0.05701048402120923,0.04966011036966606,0.04114504555836772,0.031681727113893395,0.021508264552086598,0.010878475554157246,0.00005557996607238711,-0.010694292353985396,-0.021108620340358097,-0.030934878105860486,-0.039936634133969785,-0.04789921653551977,-0.054634809178529885,-0.059986858263336794,-0.06383368651178466,-0.06609123212243802,-0.06671485151208935,-0.06570014807312907,-0.06308281315348804,-0.05893748962269074,-0.053375692135346146,-0.04654284096710592,-0.03861448753029594,-0.02979182887031954,-0.02029662514555336,-0.010365647912284521,-0.000244797654257922,0.00981696382451355,0.019573716937970543,0.028788574651262014,0.037239414174937674,0.04472421180730702,0.05106585325530414,0.056116305351812536,0.05976005136997111,0.06191671069946391,0.0625427840302011,0.061632486877791125,0.05921765674667074,0.05536674190906972,0.05018290212743681,0.043801273122293774,0.0363854666690031,0.02812339641494256,0.01922253541079696,0.009904724572618465,0.00040066152880565103,-0.00905579367337897,-0.018233355875649906,-0.026908954791322676,-0.03487314053260381,-0.041935124086485594,-0.04792733182312625,-0.052709365692153586,-0.056171275902273596,-0.05823607020403734,-0.05886140296968819,-0.05804040761274113,-0.05580165700999143,-0.05220825796080843,-0.04735610682044409,-0.041371353762835156,-0.03440714217315382,-0.02663970698412353,-0.018263930940601143,-0.009488470446348795,-0.000530572520549295,0.008389288755623357,0.017052824240289834,0.02524925767918015,0.03278043989705011,0.03946562547460371,0.045145797086595246,0.04968743436259676,0.05298563827005522,0.05496653825142696,0.05558892726589368,0.05484508904517152,0.05276080179806229,0.04939452279944773,0.04483577828208104,0.03920280232746915,0.032639486558844924,0.025311718939246018,0.01740320447709376,0.009110872797361436,0.000639987064316204,-0.007800924576506711,-0.016005190181961185,-0.023773042346222416,-0.030916470660572168,-0.03726376071077053,-0.04266361030663365,-0.04698872454599378,-0.050138804568472875,-0.052042860117698514,-0.05266079292072407,-0.05198421598969846,-0.050036492805309106,-0.04687199948997537,-0.04257463205223558,-0.03725559911993982,-0.0310505578343443,-0.02411616633427197,-0.01662614014208101,-0.008766911441869722,-0.0007329994411377716,0.00727779348202511,0.015069241468690781,0.022451491563595213,0.029245679802397066,0.03528825500760325,0.04043490600837773,0.0445639982183359,0.04757943797181527,0.049412897417360026,0.05002534873600844,0.04940787359363371,0.04758173162654765,0.04459768995718312,0.040534633795878044,0.035497495665123634,0.029614557259915124,0.023034193034414358,0.01592113791948644,0.008452372811072403,0.0008127303613872672,-0.006809670052392734,-0.01422804565659487,-0.021261518498919243,-0.027739517042131512,-0.03350590423117361,-0.0384227323338282,-0.042373534460643014,-0.04526607443227943,-0.047034490284135574,-0.047640781837326326,-0.04707560904475849,-0.045358384837867714,-0.04253666353426036,-0.03868484309385729,-0.03390221621062065,-0.028310420992857598,-0.022050356436424112,-0.015278640684767369,-0.008163700892720166,-0.0008815921118185961,0.006388351206328235,0.013467923875374994,0.020184410616968,0.026374792162006874,0.0318896945615375,0.03659698620961514,0.04038493613666262,0.04316485826111046,0.04487317920795829,0.04547288169133723,0.04495429095576272,0.043335187993639154,0.04066024980477274,0.03699983343109193,0.032448136484148495,0.027120781995569207,0.021151889295771664,0.014690704930136092,0.00789787806051382,0.0009414731264106246,-0.006007181439886584,-0.012777706073684902,-0.019204841087239532,-0.02513247388076009,-0.030417424374802812,-0.03493289703084617,-0.038571516388311224,-0.0412478736031301,-0.04290052375832257,-0.04349338742293708,-0.04301652472076526,-0.041486265668145623,-0.038944696368763757,-0.03545851642402368,-0.031117298244761855,-0.02603119346075172,-0.020328144967100583,-0.014150674999827556,-0.007652329712972285,-0.0009938687974208394,0.005660705451633268,0.012148181680284408,0.018310136576819257,0.023996797779897168,0.02907067854267498,0.03340989608476297,0.036911093677711566,0.03949189654672641,0.04109284337790695,0.041678748303125665,0.04123946236788187,0.039790018320897146,0.03737015773200255,0.034043254574452377, 0.02989466412910682,0.02502954002236904,0.019570175058984295,0.013652932944865866,0.0074248477399438025,0.0010399757050143568,-0.005344410073992874,-0.01157168841745989,-0.017489727101159612,-0.02295459434521494,-0.027834054319310995,-0.032010761894675124,-0.03538507958029798,-0.03787744914379117,-0.03943026159467964,-0.040009181719785805,-0.03960389689510679,-0.038228274120851884,-0.03591992378523228,-0.032739183200458495,-0.028767547115414495,-0.024105585848465175,-0.01887040407466855,-0.013192704345085515,-0.007213528846832697,-0.001080760506428053,0.005054529882909653,0.011041800395747425,0.016734727243078618,0.021994776275473887,0.026694569656549757,0.0307209659977887,0.03397777958142162,0.03638807342699901,0.037895971649023794,0.03846794853982126,0.03809356479522823,0.03678563495898251,0.03457982415788251,0.03153368618986343,0.02772516866856241,0.023250623888004602,0.01822237603496026,0.012765906055097183,0.0070167246156316605,0.0011170109838317837,-0.004787898916586367,-0.010553088626439402,-0.016037613557147102,-0.02110794269974495,-0.025641205692228355,-0.02952816638319736,-0.032675851025373584,-0.035009767962734924,-0.03647566591954357,-0.03704078950193059,-0.036694602996596624,-0.035448966687508125,-0.03333776338604042,-0.03041598635157967,-0.026758312937909638,-0.022457200814681267,-0.017620555178721076,-0.012369025707057247,-0.006833000863593102,-0.0011493743426729977,0.004541836254177863,0.010100935080726955,0.015391973344937648,0.02028607034632479,0.024664549211409818,0.02842181111994807,0.0314678784976093,0.03373054601342297,0.03515708805171256,0.03571548238235808,0.0353951217548951,0.03420699779380387,0.03218335456211163,0.029376822168700217,0.02585905350273503,0.021718899276122607,0.017060167747650977,0.011999025519415231,0.006661104396002062,0.0011783862739623283,-0.004314056781926476,-0.009681386839109296,-0.014792307040607383,-0.019522270167744694,-0.023756510492187057,-0.0273928251910677,-0.030344037993709997,-0.03254008575127564,-0.033929678069340836,-0.03448149078152378,-0.034184865605097155,-0.03305000052052317,-0.031107627954894093,-0.028408190415965918,-0.025020535510810935,-0.02103016399093473,-0.016537075309099168,-0.011653264889269998,-0.006499935665802777,-0.0012044932410635945,0.004102600919038977,0.009291040603097322,0.014233871322447118,0.018810593791330175,0.022910098623931986,0.02643336084585184,0.029295828945729185,0.0314294509004591,0.03278428870056085,0.03332968315332751,0.03305494189531506,0.03196953532616538,0.030102797291907922,0.02750313949968943,0.0242368005393391,0.020386161729657393,0.01604767252262053,0.01132943763183667,0.006348526174896356,0.0012280697379313018,-0.0039057787725803998,-0.008926950447013294,-0.01371255348646907,-0.01814587828909568,-0.0221192410898684,-0.02553659693226033,-0.028315858631141024,-0.03039086580102231,-0.03171295678576024,-0.032252106215877936,-0.03199760169175224,-0.030958244478119557,-0.029162070816599675,-0.026655602229819216,-0.023502644714648777,-0.019782667721332903,-0.015588804021938352,-0.011025520737871936,-0.006206019700854233,-0.0012494317748765991,0.003722125385264724,0.008586553534054013,0.013224770050090028,0.017523620700057814,0.02137863776437286,0.0246965763535603,0.02739766739541358,0.02941753291477632,0.03070871768062537,0.031241800847709906,0.031006061634676344,0.030009684099374156,0.028279497422870004,0.02586025951727711,0.022813502949086663,0.019215972845949572,0.015157696370589111,0.01073973225996102,0.006071656625437231,0.001268847505680996,-0.0035503645920629645,-0.008267609845855855,-0.012767384304911854,-0.01693987585888799,-0.02068364190285547,-0.023908073458644534,-0.02653558594993448,-0.02850348371523104,-0.02976545350647459,-0.030292651457416858,-0.030074358085368777,-0.029118186562759708,-0.027449840497666037,-0.02511242852427696,-0.022165353853743627,-0.018682807307600694,-0.014751901997059997,-0.010470496487726263,-0.0059447607908016,-0.0012865456681828138,0.0033893796166696746,0.007968152937031342,0.012337638813005081,0.016391172632809436,0.020030162476652846,0.023166485126521485,0.025724618081665002,0.027643456047594384,0.02887776825881658,0.02939926193511275,0.02919722693561687,0.02827874702238794,0.026668473820125462,0.024407970298402207,0.021554641143706487,0.018180277472766522,0.014369252720089926,0.010216414983354617,0.005824728425680911,0.0013027223377760275,-0.003238188987982796,-0.007686449432636469,-0.01193309978019285,-0.0158744448106398,-0.01941458351650481,-0.022467740748822865,-0.024960343647394165,-0.026832792634280456,-0.02804088438713199,-0.028556852869357708,-0.028370003962019105,-0.027486929283124854,-0.025931295145825223,-0.023743213042684282,-0.02097820829258311,-0.01770581329901362,-0.014007821004124073,-0.009976242359706584,-0.005711018774875616,-0.001317546368469427,0.003095926688151766,0.007420965510615344,0.011551610938363124,0.015386973738882462,0.01883369710656195,0.02180822739247584,0.024238837874562352,0.026067356591233187,0.02725055665931306,0.027761175894596028,0.027588541741460533,0.026738787269332275,0.025234654067561823,0.023114888018489495,0.02043324390195747,0.01725712433912373,0.013665887485905364,0.0097488659201358,0.005603146136868212,0.0013311638051185619,-0.0029618256906964097,-0.007170339003769659,-0.011191255093330483,-0.014926340439833742,-0.0182846474077417,-0.021184727237718838,-0.02355660385789394,-0.02534346071923232,-0.026503000031845518,-0.027008441928198852,-0.026849140003096225,-0.026030799158008922,-0.02457529147476555,-0.02252007571961153,-0.019917235790678996,-0.016832162732151684,-0.01334191361952857,-0.009533288461087112,-0.0055006730708051866,-0.001343701483289065,0.0028352042329100402,0.006933356052438982,0.010850321892127642,0.014490385432373245,0.01776488364908231,0.02059436500497909,0.02291051580128179,0.02465780801919247,0.025794828938931827,0.0262952607385001,0.026148486948258647,0.0253598118559921,0.023950288492718744,0.02195616044737445,0.01942793222240646,0.016429091920474804,0.01303451852313505,0.0093286136793114,0.005403204578808768,0.001355269983302946,-0.0027154543076810126,-0.00670893146517092,-0.010527280667149724,-0.014077174847699055,-0.017272120454566015,-0.02003456355823526,-0.02229777106101563,-0.02400744140645317,-0.025123005945741614,-0.025618589810057612,-0.025483609574772016,-0.024722993974344194,-0.023357023213850973,-0.021420791795844343,-0.018963309009365437,-0.01604626008539258,-0.012742459293362908,-0.009134033735229384,-0.0053103831052041615,-0.0013659660675632635,0.0026020319676233737,0.0064960921183283725,0.010220757448281943,0.013684971718791142,0.016804304203895056,0.019503006238796274,0.021715849438222776,0.02338970100610141,0.02448479812296558,0.024975690879125184,0.024851831433870486,0.024117795820529107,0.02279313386825834,0.020911851851144154,0.018521541478982,0.015682177491412368,0.012464614196551519,0.008948818610024157,0.005221884222752981,0.0013758747019309342,-0.002494449117478005,-0.006293962860044494,-0.009929515415432962,-0.01331221154493205,-0.016359584383080977,-0.018997604768499352,-0.021162478473522154,-0.022802187728621838,-0.02387773982118252,-0.024364092829787156,-0.024250736553856247,-0.0235419152162024,-0.022256487342528438,-0.0204274271397272,-0.018100980484951536,-0.015335497084391398,-0.01219996825804101,-0.00877230696196879,-0.005137412898897979,-0.0013850707403445341,0.0023922665352372995,0.006101754488728146,0.009652438205476687,0.01295748140668488,0.015936289082210144,0.018516471784701678,0.020635603736159934,0.022242732074113963,0.023299600775860938,0.02378155989064526,0.02367813850517202,0.022993268174411528, 0.021745152162181716,0.01996578454237594,0.01770013179802034,0.015004997811135755,0.01194760085978936,0.008603898241440104,0.005056700253527264,0.001393620335307468,-0.0022950879128633586,-0.005918753458577819, -0.009388515598962269,-0.012619502043745446,-0.015532903956532736,-0.018057897245600772,-0.02013336328872522,-0.02170936730991113, -0.022748358673196818,-0.02322606426917705,-0.023132053771873592,-0.02246996364890464,-0.021257375216423152,-0.0195253505349204,-0.017317638333743286,-0.014689570225327374,-0.011706675027270718,-0.008443045867156036,-0.00497950073477281,-0.0014015821240635268,0.0022025547471407753,0.005744313029523571,0.009136831200036187,0.012297112416656496, 0.01514805409293201,0.017620328084198004, 0.019654065658479634, 0.021200306322634314, 0.02222217546549378, 0.0226957625177727, 0.022610678745961104, 0.021970281710725268, 0.02079156163410272, 0.019104693231692664, 0.016952264771848306, 0.014388204022376175, 0.011476428143240118, 0.008289251300775069, 0.004905589651580713, 0.00140900823032221, -0.0021143419426140086, -0.005577845630634443, -0.008896551793144617, -0.011989256359865178, -0.014780488324228756, -0.017202350600789295, -0.019196170766077877, -0.02071392157053247, -0.021719376851525408, -0.022188975050966963, -0.022112369782274294, -0.02149265462138347, -0.020346257324130104, -0.01870250679997739, -0.016602884199987043, -0.014099977208244078, -0.011256163871514341, -0.008142058884927753, -0.004834761011787389, -0.00141594511359963, 0.0020301540135732573, 0.005418816247279273, 0.008666918116213984, 0.011694971002926942, 0.014429065614320767, 0.016802675173390316, 0.018758273358612965, 0.020248727662251685, 0.021238434439203365, 0.021704168334336447, 0.021635625849232957, 0.021035650363780307, 0.019920133777660724, 0.018317597888086602, 0.016268466477704344, 0.01382404665772478, 0.011045245110773818, 0.008001051332409439, 0.004766825622644666, 0.001422434292103143, -0.0019497217920851394, -0.005266736675474448, -0.008447236835180876, -0.011413376692503821, -0.014092743202077183, -0.01642012293775027, -0.018339088571549058, -0.01980336616917874, -0.020777950190207572, -0.02123993934715474, -0.02117907338963555, -0.02059795826643023, -0.019511974797451554, -0.017948873769948425, -0.015948068067589742, -0.01355963985860181, -0.010843087828347095, -0.00786584577273261, -0.004701609417503863, -0.0014285129602282405, 0.00187279956519293, 0.0051211605136237655, 0.008236873541285012, 0.01114366819302468, 0.01377056624452489, 0.01605361414717347, 0.017937439307072388, 0.019376592344255338, 0.02033664281309794, 0.020795001987215626, 0.020741453069891686, 0.020178376417009432, 0.019120664875185333, 0.0175953319581651, 0.01564082312223433, 0.013306047671493584, 0.010649155648402716, 0.00773609027735929, 0.004638951977968503, 0.0014342145178680122, -0.0017991625774623876, -0.004981678783586611, -0.008035246622244304, -0.010885106980669185, -0.013461658742705098, -0.015702157970090905, -0.01755224516773573, -0.018967263473787403, -0.01991333582598348, -0.02036817514037183, -0.020321608148466477, -0.019775800610678917, -0.018745178982852072, -0.017256051077630397, -0.015345935649716385, -0.013062617962545108, -0.0104629550890398, -0.0076114607973693975, -0.004578705225475791, -0.0014395690256405519, 0.0017286048456615758, 0.004847916090733413, 0.007841821882691563, 0.010637014475414253, 0.01316521556862294, 0.015364843522382056, 0.01718251272630553, 0.018574328632701375, 0.0195069470545439, 0.019958372181729127, 0.019918474237303377, 0.019389214619192453, 0.01838457358146651, 0.016930182824770386, 0.015062672608372978, 0.012828749988629842, 0.01028403135929919, 0.007491658457589216, 0.004520732260142814, 0.0014446035976513863, -0.0016609372410323162, -0.004719527247166793, -0.00765610780915488, -0.010398766080577401, -0.012880495440505985, -0.015040831963555533, -0.016827326947297685, -0.018196819649855207, -0.01911647936800561, -0.019564591711993963, -0.01953107026540971, -0.019017681600231897, -0.018037978681067334, -0.01661694486467684, -0.014790357804757985, -0.012603889433317896, -0.010111964640790455, -0.0073764071597169295, -0.004464906327954762, -0.0014493427413980271, 0.0015959858017241364, 0.004596194294233417, 0.007477651391260596, 0.010169785919654237, 0.012606814717344234, 0.01472934951240313, 0.01648584360424345, 0.017833843119877, 0.018741012486104755, 0.019185909362704312, 0.019158490483088687, 0.018660336494081123, 0.017704590811336143, 0.016315614540938817, 0.01452836648787009, 0.012387524007289036, 0.009946366789984437, 0.007265451454066335, 0.004411109900092095, 0.0014538086527928896, -0.0015335902438228164, -0.004477623870321846, -0.007306034424402164, -0.009949542177106122, -0.012343541903364506, -0.014429681259710532, -0.016157282560405096, -0.01748457332278261, -0.018379695715318146, -0.01882147052916997, -0.01879989736963453, -0.01831637927773816, -0.017383666783279565, -0.016025523291719142, -0.01427612054869527, -0.012179179539710703, -0.0097868784066856, -0.007158554645466938, -0.004359233850482814, -0.0014580214729518557, 0.001473602644254898, 0.004363544878129201, 0.0071408702303832885, 0.009737542963765855, 0.012090092769458544, 0.01414116567388682, 0.01584092180037047, 0.017148245933255975, 0.018031741493678068, 0.018470483910864078, 0.01845451532759405, 0.01798506896573736, 0.01707451814002669, 0.015746051681265503, 0.014033084247438328, 0.011978416497832857, 0.009633166222115746, 0.00705549710381825, 0.00430917671959886, 0.0014619995123083566, -0.0014158862728771305, -0.004253706412396606, -0.0069818007419346585, -0.009533332639218631, -0.011845926012245675, -0.013863189710639153, -0.015536092116421414, -0.016824152418719495, -0.01769641964107276, -0.018132215756499145, -0.018121625063668836, -0.01766571826299745, -0.016776506209538723, -0.015476624969149652, -0.013798760401989628, -0.011784826881051801, -0.009484920766687369, -0.006956074753967206, -0.004260844054152656, -0.0014657594467195533, 0.0013603145544175315, 0.004147875914810678, 0.006828493904860343, 0.009336488533302297, 0.011610539382894846, 0.013595184450611883, 0.015242172367376374, 0.016511635039784277, 0.017373052226689063, 0.01780598472570211, 0.01780055857058245, 0.017357688788491536, 0.01648903768441214, 0.015216709150542095, 0.013572686980568186, 0.01159803144326871, 0.009341854283142888, 0.006860097723097219, 0.004214147813740005, 0.0014693164894945697, -0.0013067701437440014, -0.0040458375275462, -0.006680641358166121, -0.009146618017093154, -0.0113834662274503, -0.01333662119966703, -0.014958585239220964, -0.016210082378840997, -0.01706100897767458, -0.017491157291565685, -0.01749069463624016, -0.017060386799887944, -0.016211560664404667, -0.014965807410119642, -0.013354434049408948, -0.011417677203762454, -0.009203698855466397, -0.006767389126796341, -0.004169005836659759, -0.0014726845426650819, 0.0012551441002949801, 0.003947390620945601, 0.0065379563580783735, 0.008963355880674225, 0.011164272388517736, 0.013087007995559244, 0.014684793446642131, 0.015918925332827495, 0.016759703163586936, 0.017187143618797848, 0.017191454816652803, 0.01677325935891348, 0.015943561106138794, 0.014723456940057058, 0.013143601033070898, 0.01124343521221113, 0.00907020472798412, 0.006677783977501164, 0.004125341358151963, 0.0014758763303122046, -0.001205335149493303, -0.003852348474225018, -0.006400171916557612, -0.00878636198084347, -0.010952553425031049, -0.012845886472440166, -0.014420296322880392, -0.015637633514912264, -0.01646858790008491, -0.016893393861042556, -0.016902299817695803, -0.01649579088533091, -0.01568455963193187, -0.014489226079229364, -0.012939814250640157, -0.011074998538095987, -0.008941138792478176, -0.006591128201166568, -0.004083082575162079, -0.0014789035163416356, 0.0011572490206432794, 0.003760537090971077, 0.006267039128891068, 0.00861531912689057, 0.010747932112644135, 0.012612829041148344, 0.014164626752362209, 0.015365712017225888, 0.016187152822868107, 0.01660939482846842, 0.016622726238085854, 0.016227500054346724, 0.015434108656074051, 0.014262711736419728, 0.01274272469594658, 0.010912080458641957, 0.008816283224044635, 0.006507277749850236, 0.004042162252482353, 0.0014817768087461913, -0.0011107978522340363, -0.0036717941336340152, -0.006138325668332858, -0.008449931176799973, -0.010550056192249302, -0.01238743634879343, -0.013917348406577077, -0.01510269849307102, -0.015914921089308, -0.016334666983135498, -0.016352263632192436, -0.015967936998171076, -0.015191789792313391, -0.014043537065175988, -0.012552006034062167, -0.010754412822790367, -0.008695434248910875, -0.0064260977994751774, -0.0040025173657611225, -0.0014845060520989296, 0.001065899656782016, 0.0035859679633027165, 0.0060138144286458195, 0.008289921319845869, 0.010358596338355043, 0.012169334985884152, 0.01367805324879071, 0.014848160522422897, 0.01565144667071293, 0.016068761725133097, 0.01609047185663239, 0.0157166807775033, 0.014957211510959738, 0.013831349362103413, 0.012367352789886227, 0.010601744571577303, 0.00857840102955967, 0.006347462023384735, 0.003964088777422741, 0.0014871003097710904, -0.0010224778383769964, -0.0035029167728239732, -0.005893302297866349, -0.008135030524631656, -0.010173244322677057, -0.011958175413308776, -0.013446359277576559, -0.014601693229142412, -0.015396311902883136, -0.01581125893718057, -0.0158369386691664, -0.01547333709304844, -0.014730007018010421, -0.013625818163939131, -0.012188478707671256, -0.010453840397743728, -0.008465004654331396, -0.006271251933469948, -0.0039268209420180444, -0.001489567937158992, 0.0009804607569779006, 0.0034225078028503587, 0.005776599048728849, 0.007985016134274239, 0.009993711351404286, 0.01175363008496115, 0.013221908482918276, 0.014362917122283454, 0.01514912526666108, 0.015561764759421884, 0.01559127755234534, 0.015237536210895197, 0.014509832332133389, 0.013426633521814398, 0.012015115262961428, 0.010310479529530386, 0.008355077220264368, 0.006197356281645716, 0.00389066163793881, 0.0014919166470259346, -0.0009397813342606426, -0.0033446166317085586, -0.005663526333004577, -0.007839650592711016, -0.009819726557275166, -0.011555391744804534, -0.0130043649918816, -0.01413147613728624, -0.014909519373670103, -0.015319909569623626, -0.015353125737739847, -0.015008931078796509, -0.014296364538302181, -0.013233504433751023, -0.011847010310674214, -0.010171454625439188, -0.008248460999282507, -0.006125670515331982, -0.003855561722788522, -0.0014941535679170478, 0.0009003766964703528, 0.0032691265311028126, 0.0055539167685768045, 0.007698720288068272, 0.00965103562990568, 0.0113631718797509, 0.012793413383655425, 0.013907035855790523, 0.014677149135446097, 0.015085346146991647, 0.015122142409512167, 0.014787195613167586, 0.014089300199438874, 0.013046157418718991, 0.01168392685501652, 0.010036570768324824, 0.00814500767903409, 0.006056096281334168, 0.0038214749100170414, 0.0014962852964667261, -0.0008621878502874215, -0.0031959278806493285, -0.0054476131094249956, -0.007562024500735143, -0.009487399569802346, -0.011176699311977477, -0.012588757156183593, -0.01368928188535334, -0.014451690096772446, -0.014857748000421564, -0.014898007068620149, -0.014572023139021235, -0.013888353909628899, -0.012864335217565165, -0.011525641928607123, -0.009905644548561236, -0.008044577670688067, -0.005988540973186719, -0.0037883575646898123, -0.001498317944330809, 0.0008251593882101772, 0.0031249176350564944, 0.005344467489871771, 0.007429374445238039, 0.009328593553228418, 0.01099571891622731, 0.01239011732871508, 0.013477918382556037, 0.014232836916291836, 0.014636807844256994, 0.014680418041143398, 0.014363124967141193, 0.01369325697440835, 0.012687795607829424, 0.011371945569670666, 0.009778503227204973, 0.007947039476913437, 0.005922917317570183, 0.0037561685165216764, 0.0015002571803482342, -0.0007892392203539142, -0.00305599883852761, -0.0052443407354430495, -0.007300592396315815, -0.009174405896575442, -0.010819990449348012, -0.012197231166414461, -0.01327266670491837, -0.014020301979428757, -0.01442223620659061, -0.014469091116130787, -0.014160229094615801, -0.013503756205283617, -0.012516310320976625, -0.011222639887424142, -0.009654983971142277, -0.007852269114008591, -0.005859142995939682, -0.0037248688884814903, -0.0015021082684972948, 0.0007543783299625474, 0.0029890801815565184, 0.005147101733607314, 0.007175510890671145, 0.00902463711022394, 0.010649287480762942, 0.012009851014782252, 0.013073264178693695, 0.01381381413037713, 0.014213760156853028, 0.014263758300036197, 0.013963079016428607, 0.013319612817118734, 0.012349664051856333, 0.01107753820692213, 0.009534933153084136, 0.007760149582860876, 0.005797140297899653, 0.0036944219394958186, 0.0015038761021002299, -0.0007205305502049192, -0.002924075595879741, -0.005052626858393404, -0.0070539719968784826, -0.008879099032985255, -0.010483396413877239, -0.011827743233000787, -0.01287946297109578, -0.013613117511392785, -0.014011122140930357, -0.014064166676264553, -0.013771432637189442, -0.013140601418286135, -0.012187653551363304, -0.010936464285577633, -0.00941820571009868, -0.007670570383973723, -0.005736835803278369, -0.00366479291990011, -0.001505565234712698, 0.0006876523601449177, 0.00286090388378893, 0.0049607994435985295, 0.006935826646738437, 0.008737614039244647, 0.01032211558951199, 0.01165068721655711, 0.012691029056767581, 0.013417970498948804, 0.01381407891335426, 0.013870077359622441, 0.01358506127329902, 0.012966509084608432, 0.01203008679424868, 0.010799251594458353, 0.009304664555034639, 0.007583427072353721, 0.005678160090151053, 0.0036359489384678225, 0.0015071799080418947, -0.0006557026979732587, -0.002799488378469224, -0.004871509299848556, -0.006820934022144984, -0.008600014311765478, -0.010165254463467898, -0.011478474500535086, -0.012507741269437883, -0.013228144727447802, -0.013622400557258236, -0.013681264536586484, -0.013403748736896341, -0.012797134509085466, -0.01187678221492805, -0.010665742658183706, -0.009194180035830985, -0.00749862084847184, -0.005621047466391402, -0.003607858839933144, -0.0015087240772337124, 0.0006246427898401269, 0.0027397566323579653, 0.004784652271327459, 0.0067091609921461235, 0.008466141173911168, 0.010012632851152684, 0.011310907935924272, 0.012329390430677602, 0.013043424192202443, 0.013435869583795883, 0.013497514583281578, 0.013227290493877985, 0.01263228722027037, 0.011727568004884567, 0.010535788447934154, 0.009086629438214764, 0.007416058181949052, 0.00556543572255255, 0.003580493092072516, 0.0015102014337905801, -0.0005944359927717659, -0.0026816401308817728, -0.00470012982840901, -0.0066003815954845954, -0.008335844475682933, -0.00986408023299002, -0.011147800932092089, -0.012155778548548051, -0.012863604424271008, -0.013254280103606731, -0.013318625253926769, -0.013055492889090718, -0.012471786862916317, -0.011582281465954499, -0.010409247822644397, -0.008981896527792336, -0.007335650464937203, -0.005511265904143077, -0.0035538236814692103, -0.0015116154263880575, 0.0005650476503559502, 0.002625074029175856, 0.004617848692860326, 0.006494476564373363, 0.008208982028594632, 0.009719435114967555, 0.01098897675931067, 0.011986718079678929, 0.012688491730525973, 0.013077437063691641, 0.013144404933265979, 0.012888172432530941, 0.012315462535176964, 0.01144076841438057, 0.010285987013979746, 0.008879871127927713, 0.007257313692511953, 0.005458482101529113, 0.0035278240172099684, 0.0015129692797900048, -0.0005364449599844065, -0.002569996909679064, -0.004537720492602471, -0.006391332885738158, -0.008085419084898076, -0.009578544439296014, -0.010834267905846674, -0.011822031249002064, -0.012517902493012715, -0.012905155543753462, -0.01297467194717528, -0.012725155141015774, -0.012163152177246664, -0.011302882631036643, -0.010165879151148737, -0.008780448730199682, -0.007180968167638807, -0.0054070312559075595, -0.003502468841801931, -0.0015142660120755424, 0.0005085968506047051, 0.002516350558681798, 0.004459661443360502, 0.006290843396517416, 0.007965027857164334, 0.009441263040645211, 0.010683515484707942, 0.011661549421945758, 0.012351662522275424, 0.012737260106664346, 0.012809253926231617, 0.012566275930364277, 0.012014702006836162, 0.011168485353712086, 0.01004880382199437, 0.008683530134531634, 0.007106538228550186, 0.005356862979918629, 0.0034777341487035773, 0.0015155084503307484, -0.00048147387000675127, -0.0024640797601373898, -0.004383592054774834, -0.006192906409989943, -0.007847687074605545, -0.0093074531439088, -0.010536568685619762, -0.011505112524436771, -0.012189606459857474, -0.012573584198265635, -0.01264798721755697, -0.012411378053621193, -0.011869965997356654, -0.011037444807740571, -0.009934646667183755, -0.008589021116394065, -0.00703395199656127, -0.005307929391640506, -0.0034535971058876984, -0.0015166992449763606, 0.00045504808080494644, 0.0024131321051841085, 0.0043094368588250075, 0.006097425370375175, 0.007733281572913899, 0.009176983899832552, 0.010393284268267678, 0.011352568506508866, 0.012031577225672833, 0.012413969592181787, 0.012490716340718397, 0.0122603125813083, 0.011728805395083586, 0.010909635771645183, 0.009823299004609742, 0.008496832118737259, 0.006963141142563334, 0.005260184960803945, 0.0034300359849442144, 0.0015178408828486465, -0.00042929296432670666, -0.0023634578160154794, -0.00423712415859844, -0.006004308533256249, -0.0076217019146873, -0.009049730955228595, -0.01025352609321708, -0.01120377284574724, -0.011877425506361262, -0.012258265875760156, -0.012337293483882128, -0.012112937920077005, -0.011591088271950845, -0.010784939174781327, -0.009714657481423113, -0.008406877966526699, -0.00689404067060509, -0.005213586366194846, -0.0034070300952478713, -0.00151893569917239, 0.0004041833317320204, 0.002315009582837331, 0.004166585795663758, 0.005913468669586753, 0.007512844037826396, 0.008925576054795938, 0.010117164687290837, 0.01105858808715264, 0.011727009281129073, 0.012106329973623976, 0.012187578036788896, 0.011969119366495626, 0.011456689110939219, 0.010663241724268918, 0.009608623751342376, 0.008319077601981749, 0.006826588717109863, 0.0051680923633116785, 0.0033845597227788226, 0.0015199858885156523, -0.0003796952417209309, -0.0022677424128073795, -0.004097756934445488, -0.005824822791289849, -0.007406608929514508, -0.008804406671879646, -0.00998407684047834, -0.010916883416353232, -0.011580193381905555, -0.01195802570566827, -0.01204143615744952, -0.011828728693012117, -0.011325488421326635, -0.010544435558748188, -0.009505104175134735, -0.008233353838774774, -0.006760726364439712, -0.005123663661415923, -0.003362606073222352, -0.0015209935148396514, 0.0003558059242827915, 0.002221613489926448, 0.004030575862183344, 0.005738291896619945, 0.007302902323647602, 0.008686115665733228, 0.009854145231748162, 0.010778534263371465, 0.011436849084956653, 0.01181322337662648, 0.011898740369753472, 0.01169164376342075, 0.011197372381315067, 0.010428417926743648, 0.009404009542339973, 0.008149633133637214, 0.006696397467611093, 0.00508026280922129, 0.003341151218990552, 0.0015219605207158697, -0.00033249370996061596, -0.0021765820449820453, -0.003964983803162525, -0.00565380073366025, -0.007201634419757122, -0.00857060096310209, -0.009727258081365882, -0.010643421934430644, -0.011296853731357609, -0.011671799394609888, -0.011759369189448235, -0.011557748175405612, -0.011072232505793696, -0.01031509088761188, -0.009305254812510079, -0.00806784537393949, -0.006633548493105717, -0.0050378540885072905, -0.00332017804986942, -0.0015228887357929956, 0.0003097379641832494, 0.002132609234697734, 0.0039009247460562724, 0.005571277580452986, 0.007102719621677949, 0.008457765262127215, 0.009603308827561241, 0.010511433269506563, 0.01116009037397745, 0.011533635916259543, 0.01162320677618236, 0.011426930927965387, 0.010949965337194096, 0.010204361033252212, 0.009208758874376458, 0.007987923679968019, 0.0065721283687898355, 0.004996403415038089, 0.003299670226990114, 0.0015237798845877746, -0.00028751902624220564, -0.0020896580293490383, -0.003838345283298632, -0.00549065404042726, -0.00700607629434954, -0.008347515756775607, -0.00948219582556923, -0.010382460323554851, -0.011026447448835167, -0.011398620516371472, -0.011490142609518077, -0.011299086111719097, -0.01083047215759177, -0.010096139228910174, -0.009114444321521939, -0.007909804220715057, -0.006512088344072049, -0.004955878246193867, -0.0032796121398813776, -0.0015246355936486423, 0.00026581815252941317, 0.0020476931081573504, 0.0037771944615355283, 0.005411864851883404, 0.006911626537311458, 0.00823976388014558, 0.009363822067268227, 0.010256400069519504, 0.010895818468891231, 0.011266645880046446, 0.0113600711870085, 0.011174112620279932, 0.010713658720364531, 0.009990340371570247, 0.009022237243243287, 0.007833426042127466, 0.00645338185948109, 0.004916247494804226, 0.0032599888663503917, 0.0015254573981639328, -0.0002446174637050831, -0.002006680761836088, -0.0037174236422587853, -0.0053348477104333165, -0.006819295973559219, -0.00813442506516627, -0.009248094919780498, -0.010133154121412417, -0.010768101738503401, -0.011137609515594709, -0.011232891742606404, -0.01105191388104099, -0.010599434999880308, -0.009886883164553559, -0.008932067029426978, -0.0077587309068310635, -0.006395964424944249, -0.004877481448689318, -0.003240786134992019, -0.0015262467480482893, 0.00022389989546712193, 0.001966588801736915, 0.0036589863718344637, 0.005259543103367455, 0.006729013552570935, 0.00803141852132107, 0.009134925881564053, 0.010012628475892515, 0.010643200086942263, 0.011011413486579361, 0.011108507983824576, 0.010932397603869465, 0.010487714957811752, 0.009785689907073791, 0.008843866188345628, 0.007685663144457024, 0.00633979350608419, 0.0048395516954862485, 0.0032219902901132642, 0.0015270050135687122, -0.00020364915265412223, -0.0019273864750659596, -0.0036018382601906906, -0.00518589415503449, -0.006640711366395806, -0.007930667026167472, -0.009024230354636906, -0.009894733270925042, -0.01052102061949433, -0.01088796416152825, -0.01098682784620731, -0.010815475546331858, -0.01037841632480821, -0.009686686297598708, -0.008757570176396957, -0.007614169511750057, -0.006284828417937068, -0.004802431052346535, -0.003203588258907899, -0.0015277334905348747, 0.00018384966640662659, 0.0018890443857169051, 0.0035459368674946967, 0.00511384648238484, 0.006554324477814246, 0.007832096730511445, 0.00891592743171094, 0.0097793825602118, 0.010401474484817446, 0.01076717197996795, 0.010867763263796957, 0.01070106329419811, 0.010271460396355445, 0.009589801249979152, 0.008673117238872902, 0.007544199061731474, 0.0062310302255206415, 0.004766093500153822, 0.0031855675207004695, 0.0015284334051064155, -0.00016448655416644695, -0.0018515344202770054, -0.003491241598222934, -0.0050433480599028115, -0.006469790759651679, -0.007735636976214574, -0.008809939697100646, -0.009666494102209426, -0.010284476657319522, -0.010648951233553383, -0.01075122995439325, -0.010589080056074333, -0.01016677184176389, -0.009494966721381806, -0.008590448260943039, -0.0074757030212299624, -0.006178361650754986, -0.004730514121913109, -0.0031679160781232906, -0.0015291059182347367, 0.00014554558228247226, 0.0018148296788304194, 0.0034377136020542084, 0.004974349093233294, 0.006387050744406665, 0.00764122012567864, 0.008706193040386213, 0.009555989162640333, 0.010169945733445008, 0.010533219861166827, 0.010637147218504657, 0.01047944847111701, 0.010064278525306006, 0.009402117551157869, 0.008509506628087186, 0.007408634676172836, 0.006126786985255266, 0.004695669045019289, 0.0031506224300722734, 0.00152975212978499, -0.00012701313104154568, -0.0017789044101855964, -0.0033853156810923096, -0.0049068019008445575, -0.006306047483438199, -0.007548781402151541, -0.008604616481879815, -0.009447792329506606, -0.010057803740838872, -0.010419899256959096, -0.010525437750984275, -0.010372094428864201, -0.00996391133861546, -0.009311191309838516, -0.008430238095294144, -0.007342949264059696, -0.0060762720085808086, -0.004661535387110025, -0.0031336755463287234, -0.001530373082350148, 0.0001088761619285668, 0.0017437339512144095, 0.00333401220293789, 0.004840660803149927, 0.006226726414999595, 0.007458258740058715, 0.008505142009038258, 0.009341831339686926, 0.009947975959452496, 0.010308914090387096, 0.010416027464426008, 0.010266946900304674, 0.00986560404352474, 0.009222128157529003, 0.008352590664382306, 0.007278603873109481, 0.006026783911534547, 0.004628091205258873, 0.0031170648437149825, 0.001530969764797153, -0.00009112218696606803, -0.0017092946699876987, -0.003283769019197351, -0.004775882018532973, -0.006149035240488571, -0.0073695926446301525, -0.008407704423026918, -0.009238036916283918, -0.009840390753724568, -0.010200192137384127, -0.010308845323473495, -0.010163937779373152, -0.009769293124595185, -0.009134870711019328, -0.008276514468868288, -0.007215557347592569, -0.0059782912241642, -0.004595315448258029, -0.00310078016369045, -0.001531543115552564, 0.0000737392399667339, 0.001675563912446815, 0.0032345533890227388, 0.004712423565792373, 0.0060729238083116685, 0.00728272606016411, 0.008312241194704922, 0.009136342615950489, 0.009734979415048518, 0.010093664121865643, 0.010203823189262884, 0.010063001734130994, 0.00967491765064457, 0.009049363918998405, 0.008201961665838864, 0.007153770198919874, 0.005930763748120867, 0.0045631879117862895, 0.0030848117512741317, 0.00153209402566305, -0.000056715849575066915, -0.001642519952343532, -0.0031863339073372196, -0.004650245172536397, -0.005998344004833064, -0.007197604246304405, -0.008218692329369866, -0.009036684685486062, -0.009631676013797021, -0.009989263566841785, -0.01010089567328384, -0.009964076066946442, -0.009582419144642727, -0.008965554944794535, -0.008128886334342557, -0.007093204522074692, -0.005884172493081779, -0.004531689196248325, -0.0030691502352163075, -0.0015326233416345881, 0.000040041013955833456, 0.001610141944230643, 0.003139080437401436, 0.004589308189120179, 0.005925249651897664, 0.007114174661777941, 0.00812700023963896, 0.008939001927057518, 0.009530417260232635, 0.00988692665446217, 0.01],"x":[-100.0,-99.95002498750625,-99.9000499750125,-99.85007496251875,-99.80009995002499,-99.75012493753124,-99.70014992503748,-99.65017491254373,-99.60019990004997,-99.55022488755623,-99.50024987506247,-99.45027486256872,-99.40029985007496,-99.35032483758121,-99.30034982508745,-99.2503748125937,-99.20039980009994,-99.1504247876062,-99.10044977511244,-99.05047476261869,-99.00049975012493,-98.95052473763118,-98.90054972513744,-98.85057471264368,-98.80059970014993,-98.75062468765617,-98.70064967516242,-98.65067466266866,-98.60069965017492,-98.55072463768116,-98.50074962518741,-98.45077461269365,-98.4007996001999,-98.35082458770614,-98.3008495752124,-98.25087456271864,-98.20089955022489,-98.15092453773113,-98.10094952523738,-98.05097451274362,-98.00099950024988,-97.95102448775611,-97.90104947526237,-97.85107446276862,-97.80109945027486,-97.75112443778112,-97.70114942528735,-97.65117441279361,-97.60119940029985,-97.5512243878061,-97.50124937531234,-97.4512743628186,-97.40129935032483,-97.35132433783109,-97.30134932533733,-97.25137431284358,-97.20139930034982,-97.15142428785607,-97.10144927536231,-97.05147426286857,-97.0014992503748,-96.95152423788106,-96.90154922538731,-96.85157421289355,-96.8015992003998,-96.75162418790605,-96.7016491754123,-96.65167416291854,-96.60169915042479,-96.55172413793103,-96.50174912543729,-96.45177411294353,-96.40179910044978,-96.35182408795602,-96.30184907546227,-96.25187406296851,-96.20189905047476,-96.151924037981,-96.10194902548726,-96.0519740129935,-96.00199900049975,-95.95202398800599,-95.90204897551224,-95.8520739630185,-95.80209895052474,-95.75212393803099,-95.70214892553723,-95.65217391304348,-95.60219890054972,-95.55222388805598,-95.50224887556222,-95.45227386306847,-95.40229885057471,-95.35232383808096,-95.3023488255872,-95.25237381309346,-95.2023988005997,-95.15242378810595,-95.10244877561219,-95.05247376311844,-95.00249875062468,-94.95252373813094,-94.90254872563717,-94.85257371314343,-94.80259870064968,-94.75262368815592,-94.70264867566218,-94.65267366316841,-94.60269865067467,-94.55272363818091,-94.50274862568716,-94.4527736131934,-94.40279860069965,-94.3528235882059,-94.30284857571215,-94.25287356321839,-94.20289855072464,-94.15292353823088,-94.10294852573713,-94.05297351324337,-94.00299850074963,-93.95302348825587,-93.90304847576212,-93.85307346326836,-93.80309845077461,-93.75312343828087,-93.7031484257871,-93.65317341329336,-93.6031984007996,-93.55322338830585,-93.50324837581209,-93.45327336331835,-93.40329835082458,-93.35332333833084,-93.30334832583708,-93.25337331334333,-93.20339830084957,-93.15342328835582,-93.10344827586206,-93.05347326336832,-93.00349825087456,-92.95352323838081,-92.90354822588705,-92.8535732133933,-92.80359820089954,-92.7536231884058,-92.70364817591205,-92.65367316341829,-92.60369815092454,-92.55372313843078,-92.50374812593704,-92.45377311344328,-92.40379810094953,-92.35382308845577,-92.30384807596202,-92.25387306346826,-92.20389805097452,-92.15392303848076,-92.10394802598701,-92.05397301349325,-92.0039980009995,-91.95402298850574,-91.904047976012,-91.85407296351823,-91.80409795102449,-91.75412293853073,-91.70414792603698,-91.65417291354323,-91.60419790104947,-91.55422288855573,-91.50424787606197,-91.45427286356822,-91.40429785107446,-91.35432283858071,-91.30434782608695,-91.2543728135932,-91.20439780109945,-91.1544227886057,-91.10444777611194,-91.0544727636182,-91.00449775112443,-90.95452273863069,-90.90454772613693,-90.85457271364318,-90.80459770114942,-90.75462268865567,-90.70464767616193,-90.65467266366817,-90.60469765117442,-90.55472263868066,-90.50474762618691,-90.45477261369315,-90.4047976011994,-90.35482258870564,-90.3048475762119,-90.25487256371814,-90.20489755122439,-90.15492253873063,-90.10494752623688,-90.05497251374312,-90.00499750124938,-89.95502248875562,-89.90504747626187,-89.85507246376811,-89.80509745127436,-89.7551224387806,-89.70514742628686,-89.65517241379311,-89.60519740129935,-89.5552223888056,-89.50524737631184,-89.4552723638181,-89.40529735132434,-89.35532233883059,-89.30534732633683,-89.25537231384308,-89.20539730134932,-89.15542228885558,-89.10544727636182,-89.05547226386807,-89.00549725137431,-88.95552223888056,-88.9055472263868,-88.85557221389305,-88.8055972013993,-88.75562218890555,-88.70564717641179,-88.65567216391804,-88.6056971514243,-88.55572213893053,-88.50574712643679,-88.45577211394303,-88.40579710144928,-88.35582208895552,-88.30584707646177,-88.25587206396801,-88.20589705147427,-88.1559220389805,-88.10594702648676,-88.055972013993,-88.00599700149925,-87.95602198900549,-87.90604697651175,-87.85607196401799,-87.80609695152424,-87.75612193903048,-87.70614692653673,-87.65617191404297,-87.60619690154923,-87.55622188905548,-87.50624687656172,-87.45627186406797,-87.40629685157421,-87.35632183908046,-87.3063468265867,-87.25637181409296,-87.2063968015992,-87.15642178910545,-87.10644677661169,-87.05647176411794,-87.00649675162418,-86.95652173913044,-86.90654672663668,-86.85657171414293,-86.80659670164917,-86.75662168915542,-86.70664667666166,-86.65667166416792,-86.60669665167416,-86.55672163918041,-86.50674662668666,-86.4567716141929,-86.40679660169916,-86.3568215892054,-86.30684657671165,-86.25687156421789,-86.20689655172414,-86.15692153923038,-86.10694652673664,-86.05697151424287,-86.00699650174913,-85.95702148925537,-85.90704647676162,-85.85707146426786,-85.80709645177411,-85.75712143928035,-85.70714642678661,-85.65717141429285,-85.6071964017991,-85.55722138930535,-85.5072463768116,-85.45727136431785,-85.40729635182409,-85.35732133933034,-85.30734632683658,-85.25737131434283,-85.20739630184907,-85.15742128935533,-85.10744627686157,-85.05747126436782,-85.00749625187406,-84.95752123938031,-84.90754622688655,-84.8575712143928,-84.80759620189905,-84.7576211894053,-84.70764617691154,-84.65767116441779,-84.60769615192403,-84.55772113943029,-84.50774612693654,-84.45777111444278,-84.40779610194903,-84.35782108945527,-84.30784607696152,-84.25787106446776,-84.20789605197402,-84.15792103948026,-84.10794602698651,-84.05797101449275,-84.007996001999,-83.95802098950524,-83.9080459770115,-83.85807096451774,-83.80809595202399,-83.75812093953023,-83.70814592703648,-83.65817091454272,-83.60819590204898,-83.55822088955522,-83.50824587706147,-83.45827086456772,-83.40829585207396,-83.35832083958022,-83.30834582708646,-83.25837081459271,-83.20839580209895,-83.1584207896052,-83.10844577711144,-83.0584707646177,-83.00849575212393,-82.95852073963019,-82.90854572713643,-82.85857071464268,-82.80859570214892,-82.75862068965517,-82.70864567716141,-82.65867066466767,-82.6086956521739,-82.55872063968016,-82.5087456271864,-82.45877061469265,-82.40879560219891,-82.35882058970515,-82.3088455772114,-82.25887056471764,-82.2088955522239,-82.15892053973013,-82.10894552723639,-82.05897051474263,-82.00899550224888,-81.95902048975512,-81.90904547726137,-81.85907046476761,-81.80909545227387,-81.7591204397801,-81.70914542728636,-81.6591704147926,-81.60919540229885,-81.55922038980509,-81.50924537731134,-81.45927036481758,-81.40929535232384,-81.35932033983009,-81.30934532733633,-81.25937031484258,-81.20939530234882,-81.15942028985508,-81.10944527736132,-81.05947026486757,-81.00949525237381,-80.95952023988006,-80.9095452273863,-80.85957021489256,-80.8095952023988,-80.75962018990505,-80.70964517741129,-80.65967016491754,-80.60969515242378,-80.55972013993004,-80.50974512743628,-80.45977011494253,-80.40979510244878,-80.35982008995502,-80.30984507746128,-80.25987006496752,-80.20989505247377,-80.15992003998001,-80.10994502748626,-80.0599700149925,-80.00999500249875,-79.960019990005,-79.91004497751125,-79.86006996501749,-79.81009495252374,-79.76011994002998,-79.71014492753623,-79.66016991504247,-79.61019490254873,-79.56021989005497,-79.51024487756122,-79.46026986506746,-79.41029485257371,-79.36031984007997,-79.3103448275862,-79.26036981509246,-79.2103948025987,-79.16041979010495,-79.11044477761119,-79.06046976511745,-79.01049475262369,-78.96051974012994,-78.91054472763618,-78.86056971514243,-78.81059470264867,-78.76061969015493,-78.71064467766116,-78.66066966516742,-78.61069465267366,-78.56071964017991,-78.51074462768615,-78.4607696151924,-78.41079460269864,-78.3608195902049,-78.31084457771115,-78.26086956521739,-78.21089455272364,-78.16091954022988,-78.11094452773614,-78.06096951524238,-78.01099450274863,-77.96101949025487,-77.91104447776112,-77.86106946526736,-77.81109445277362,-77.76111944027986,-77.71114442778611,-77.66116941529235,-77.6111944027986,-77.56121939030484,-77.5112443778111,-77.46126936531734,-77.41129435282359,-77.36131934032983,-77.31134432783608,-77.26136931534234,-77.21139430284857,-77.16141929035483,-77.11144427786107,-77.06146926536732,-77.01149425287356,-76.96151924037981,-76.91154422788605,-76.86156921539231,-76.81159420289855,-76.7616191904048,-76.71164417791104,-76.6616691654173,-76.61169415292353,-76.56171914042979,-76.51174412793603,-76.46176911544228,-76.41179410294852,-76.36181909045477,-76.31184407796101,-76.26186906546727,-76.21189405297352,-76.16191904047976,-76.11194402798601,-76.06196901549225,-76.0119940029985,-75.96201899050475,-75.912043978011,-75.86206896551724,-75.81209395302349,-75.76211894052973,-75.71214392803599,-75.66216891554222,-75.61219390304848,-75.56221889055472,-75.51224387806097,-75.46226886556721,-75.41229385307346,-75.3623188405797,-75.31234382808596,-75.2623688155922,-75.21239380309845,-75.1624187906047,-75.11244377811094,-75.0624687656172,-75.01249375312344,-74.96251874062969,-74.91254372813593,-74.86256871564218,-74.81259370314842,-74.76261869065468,-74.71264367816092,-74.66266866566717,-74.61269365317341,-74.56271864067966,-74.5127436281859,-74.46276861569216,-74.4127936031984,-74.36281859070465,-74.31284357821089,-74.26286856571714,-74.2128935532234,-74.16291854072963,-74.11294352823589,-74.06296851574213,-74.01299350324838,-73.96301849075462,-73.91304347826087,-73.86306846576711,-73.81309345327337,-73.7631184407796,-73.71314342828586,-73.6631684157921,-73.61319340329835,-73.5632183908046,-73.51324337831085,-73.46326836581709,-73.41329335332334,-73.36331834082958,-73.31334332833583,-73.26336831584207,-73.21339330334833,-73.16341829085458,-73.11344327836082,-73.06346826586707,-73.01349325337331,-72.96351824087957,-72.9135432283858,-72.86356821589206,-72.8135932033983,-72.76361819090455,-72.71364317841079,-72.66366816591704,-72.61369315342328,-72.56371814092954,-72.51374312843578,-72.46376811594203,-72.41379310344827,-72.36381809095452,-72.31384307846076,-72.26386806596702,-72.21389305347326,-72.16391804097951,-72.11394302848576,-72.063968015992,-72.01399300349826,-71.9640179910045,-71.91404297851075,-71.86406796601699,-71.81409295352324,-71.76411794102948,-71.71414292853574,-71.66416791604198,-71.61419290354823,-71.56421789105447,-71.51424287856072,-71.46426786606696,-71.41429285357322,-71.36431784107945,-71.31434282858571,-71.26436781609195,-71.2143928035982,-71.16441779110444,-71.1144427786107,-71.06446776611695,-71.01449275362319,-70.96451774112944,-70.91454272863568,-70.86456771614193,-70.81459270364817,-70.76461769115443,-70.71464267866067,-70.66466766616692,-70.61469265367316,-70.56471764117941,-70.51474262868565,-70.4647676161919,-70.41479260369815,-70.3648175912044,-70.31484257871064,-70.26486756621689,-70.21489255372313,-70.16491754122939,-70.11494252873563,-70.06496751624188,-70.01499250374813,-69.96501749125437,-69.91504247876063,-69.86506746626686,-69.81509245377312,-69.76511744127936,-69.71514242878561,-69.66516741629185,-69.6151924037981,-69.56521739130434,-69.5152423788106,-69.46526736631684,-69.41529235382309,-69.36531734132933,-69.31534232883558,-69.26536731634182,-69.21539230384808,-69.16541729135432,-69.11544227886057,-69.06546726636682,-69.01549225387306,-68.96551724137932,-68.91554222888556,-68.86556721639181,-68.81559220389805,-68.7656171914043,-68.71564217891054,-68.6656671664168,-68.61569215392304,-68.56571714142929,-68.51574212893553,-68.46576711644178,-68.41579210394802,-68.36581709145428,-68.31584207896051,-68.26586706646677,-68.21589205397301,-68.16591704147926,-68.1159420289855,-68.06596701649175,-68.01599200399801,-67.96601699150425,-67.9160419790105,-67.86606696651674,-67.816091954023,-67.76611694152923,-67.71614192903549,-67.66616691654173,-67.61619190404798,-67.56621689155422,-67.51624187906047,-67.46626686656671,-67.41629185407297,-67.3663168415792,-67.31634182908546,-67.2663668165917,-67.21639180409795,-67.16641679160419,-67.11644177911045,-67.06646676661668,-67.01649175412294,-66.96651674162919,-66.91654172913543,-66.86656671664169,-66.81659170414792,-66.76661669165418,-66.71664167916042,-66.66666666666667,-66.61669165417291,-66.56671664167916,-66.5167416291854,-66.46676661669166,-66.4167916041979,-66.36681659170415,-66.31684157921039,-66.26686656671664,-66.21689155422288,-66.16691654172914,-66.11694152923538,-66.06696651674163,-66.01699150424787,-65.96701649175412,-65.91704147926038,-65.86706646676662,-65.81709145427287,-65.76711644177911,-65.71714142928536,-65.6671664167916,-65.61719140429786,-65.5672163918041,-65.51724137931035,-65.46726636681659,-65.41729135432284,-65.36731634182908,-65.31734132933533,-65.26736631684157,-65.21739130434783,-65.16741629185407,-65.11744127936032,-65.06746626686656,-65.01749125437281,-64.96751624187905,-64.91754122938531,-64.86756621689156,-64.8175912043978,-64.76761619190405,-64.7176411794103,-64.66766616691655,-64.61769115442279,-64.56771614192904,-64.51774112943528,-64.46776611694153,-64.41779110444777,-64.36781609195403,-64.31784107946027,-64.26786606696652,-64.21789105447276,-64.16791604197901,-64.11794102948525,-64.0679660169915,-64.01799100449774,-63.968015992004,-63.918040979510245,-63.86806596701649,-63.81809095452274,-63.768115942028984,-63.71814092953523,-63.66816591704148,-63.618190904547724,-63.56821589205397,-63.51824087956022,-63.468265867066464,-63.41829085457271,-63.368315842078964,-63.31834082958521,-63.26836581709146,-63.2183908045977,-63.16841579210395,-63.1184407796102,-63.06846576711644,-63.01849075462269,-62.968515742128936,-62.91854072963518,-62.86856571714143,-62.818590704647676,-62.76861569215392,-62.71864067966017,-62.668665667166415,-62.61869065467266,-62.56871564217891,-62.518740629685155,-62.4687656171914,-62.41879060469765,-62.3688155922039,-62.31884057971015,-62.268865567216395,-62.21889055472264,-62.16891554222889,-62.118940529735134,-62.06896551724138,-62.01899050474763,-61.969015492253874,-61.91904047976012,-61.86906546726637,-61.81909045477261,-61.76911544227886,-61.71914042978511,-61.66916541729135,-61.6191904047976,-61.569215392303846,-61.51924037981009,-61.46926536731634,-61.419290354822586,-61.36931534232883,-61.319340329835086,-61.26936531734133,-61.21939030484758,-61.169415292353825,-61.11944027986007,-61.06946526736632,-61.019490254872565,-60.96951524237881,-60.91954022988506,-60.869565217391305,-60.81959020489755,-60.7696151924038,-60.719640179910044,-60.66966516741629,-60.61969015492254,-60.569715142428784,-60.51974012993503,-60.46976511744128,-60.41979010494752,-60.36981509245377,-60.31984007996002,-60.26986506746627,-60.21989005497252,-60.16991504247876,-60.11994002998501,-60.069965017491256,-60.0199900049975,-59.97001499250375,-59.920039980009996,-59.87006496751624,-59.82008995502249,-59.770114942528735,-59.72013993003498,-59.67016491754123,-59.620189905047475,-59.57021489255372,-59.52023988005997,-59.470264867566215,-59.42028985507246,-59.37031484257871,-59.320339830084954,-59.27036481759121,-59.220389805097454,-59.1704147926037,-59.12043978010995,-59.070464767616194,-59.02048975512244,-58.97051474262869,-58.920539730134934,-58.87056471764118,-58.82058970514743,-58.77061469265367,-58.72063968015992,-58.670664667666166,-58.62068965517241,-58.57071464267866,-58.520739630184906,-58.47076461769115,-58.4207896051974,-58.370814592703645,-58.32083958020989,-58.27086456771614,-58.22088955522239,-58.17091454272864,-58.120939530234885,-58.07096451774113,-58.02098950524738,-57.971014492753625,-57.92103948025987,-57.87106446776612,-57.821089455272364,-57.77111444277861,-57.72113943028486,-57.671164417791104,-57.62118940529735,-57.5712143928036,-57.521239380309844,-57.47126436781609,-57.42128935532234,-57.37131434282858,-57.32133933033483,-57.271364317841076,-57.22138930534732,-57.17141429285358,-57.12143928035982,-57.07146426786607,-57.021489255372316,-56.97151424287856,-56.92153923038481,-56.871564217891056,-56.8215892053973,-56.77161419290355,-56.721639180409795,-56.67166416791604,-56.62168915542229,-56.571714142928535,-56.52173913043478,-56.47176411794103,-56.421789105447274,-56.37181409295352,-56.32183908045977,-56.271864067966014,-56.22188905547226,-56.171914042978514,-56.12193903048476,-56.07196401799101,-56.021989005497254,-55.9720139930035,-55.92203898050975,-55.87206396801599,-55.82208895552224,-55.77211394302849,-55.72213893053473,-55.67216391804098,-55.622188905547226,-55.57221389305347,-55.52223888055972,-55.472263868065966,-55.42228885557221,-55.37231384307846,-55.322338830584705,-55.27236381809095,-55.2223888055972,-55.172413793103445,-55.1224387806097,-55.072463768115945,-55.02248875562219,-54.97251374312844,-54.922538730634685,-54.87256371814093,-54.82258870564718,-54.772613693153424,-54.72263868065967,-54.67266366816592,-54.622688655672164,-54.57271364317841,-54.52273863068466,-54.4727636181909,-54.42278860569715,-54.3728135932034,-54.32283858070964,-54.27286356821589,-54.222888555722136,-54.17291354322838,-54.122938530734636,-54.07296351824088,-54.02298850574713,-53.973013493253376,-53.92303848075962,-53.87306346826587,-53.823088455772115,-53.77311344327836,-53.72313843078461,-53.673163418290855,-53.6231884057971,-53.57321339330335,-53.523238380809595,-53.47326336831584,-53.42328835582209,-53.373313343328334,-53.32333833083458,-53.27336331834083,-53.223388305847074,-53.17341329335332,-53.12343828085957,-53.07346326836582,-53.02348825587207,-52.973513243378314,-52.92353823088456,-52.87356321839081,-52.82358820589705,-52.7736131934033,-52.723638180909546,-52.67366316841579,-52.62368815592204,-52.573713143428286,-52.52373813093453,-52.47376311844078,-52.423788105947025,-52.37381309345327,-52.32383808095952,-52.273863068465765,-52.22388805597201,-52.17391304347826,-52.123938030984505,-52.07396301849075,-52.023988005997005,-51.97401299350325,-51.9240379810095,-51.874062968515744,-51.82408795602199,-51.77411294352824,-51.724137931034484,-51.67416291854073,-51.62418790604698,-51.574212893553224,-51.52423788105947,-51.47426286856572,-51.42428785607196,-51.37431284357821,-51.324337831084456,-51.2743628185907,-51.22438780609695,-51.174412793603196,-51.12443778110944,-51.07446276861569,-51.02448775612194,-50.97451274362819,-50.924537731134436,-50.87456271864068,-50.82458770614693,-50.774612693653175,-50.72463768115942,-50.67466266866567,-50.624687656171915,-50.57471264367816,-50.52473763118441,-50.474762618690654,-50.4247876061969,-50.37481259370315,-50.324837581209394,-50.27486256871564,-50.22488755622189,-50.174912543728134,-50.12493753123438,-50.07496251874063,-50.02498750624687,-49.97501249375313,-49.92503748125937,-49.87506246876562,-49.825087456271866,-49.77511244377811,-49.72513743128436,-49.675162418790606,-49.62518740629685,-49.5752123938031,-49.525237381309346,-49.47526236881559,-49.42528735632184,-49.375312343828085,-49.32533733133433,-49.27536231884058,-49.225387306346825,-49.17541229385307,-49.12543728135932,-49.075462268865564,-49.02548725637181,-48.97551224387806,-48.92553723138431,-48.87556221889056,-48.825587206396804,-48.77561219390305,-48.7256371814093,-48.675662168915544,-48.62568715642179,-48.57571214392804,-48.52573713143428,-48.47576211894053,-48.425787106446776,-48.37581209395302,-48.32583708145927,-48.275862068965516,-48.22588705647176,-48.17591204397801,-48.125937031484256,-48.0759620189905,-48.02598700649675,-47.976011994002995,-47.92603698150925,-47.876061969015495,-47.82608695652174,-47.77611194402799,-47.726136931534235,-47.67616191904048,-47.62618690654673,-47.576211894052975,-47.52623688155922,-47.47626186906547,-47.426286856571714,-47.37631184407796,-47.32633683158421,-47.276361819090454,-47.2263868065967,-47.17641179410295,-47.12643678160919,-47.07646176911544,-47.026486756621686,-46.97651174412793,-46.92653673163418,-46.87656171914043,-46.82658670664668,-46.776611694152926,-46.72663668165917,-46.67666166916542,-46.626686656671666,-46.57671164417791,-46.52673663168416,-46.476761619190405,-46.42678660669665,-46.3768115942029,-46.326836581709145,-46.27686156921539,-46.22688655672164,-46.176911544227885,-46.12693653173413,-46.07696151924038,-46.026986506746624,-45.97701149425287,-45.92703648175912,-45.877061469265364,-45.82708645677162,-45.777111444277864,-45.72713643178411,-45.67716141929036,-45.6271864067966,-45.57721139430285,-45.5272363818091,-45.47726136931534,-45.42728635682159,-45.377311344327836,-45.32733633183408,-45.27736131934033,-45.227386306846576,-45.17741129435282,-45.12743628185907,-45.077461269365315,-45.02748625687156,-44.97751124437781,-44.927536231884055,-44.8775612193903,-44.827586206896555,-44.7776111944028,-44.72763618190905,-44.677661169415295,-44.62768615692154,-44.57771114442779,-44.527736131934034,-44.47776111944028,-44.42778610694653,-44.377811094452774,-44.32783608195902,-44.27786106946527,-44.22788605697151,-44.17791104447776,-44.12793603198401,-44.07796101949025,-44.0279860069965,-43.978010994502746,-43.92803598200899,-43.87806096951524,-43.828085957021486,-43.77811094452774,-43.728135932033986,-43.67816091954023,-43.62818590704648,-43.578210894552726,-43.52823588205897,-43.47826086956522,-43.428285857071465,-43.37831084457771,-43.32833583208396,-43.278360819590205,-43.22838580709645,-43.1784107946027,-43.128435782108944,-43.07846076961519,-43.02848575712144,-42.978510744627684,-42.92853573213393,-42.87856071964018,-42.82858570714642,-42.77861069465268,-42.728635682158924,-42.67866066966517,-42.62868565717142,-42.57871064467766,-42.52873563218391,-42.478760619690156,-42.4287856071964,-42.37881059470265,-42.328835582208896,-42.27886056971514,-42.22888555722139,-42.178910544727636,-42.12893553223388,-42.07896051974013,-42.028985507246375,-41.97901049475262,-41.92903548225887,-41.879060469765115,-41.82908545727136,-41.77911044477761,-41.72913543228386,-41.67916041979011,-41.629185407296355,-41.5792103948026,-41.52923538230885,-41.479260369815094,-41.42928535732134,-41.37931034482759,-41.329335332333834,-41.27936031984008,-41.22938530734633,-41.17941029485257,-41.12943528235882,-41.079460269865066,-41.02948525737131,-40.97951024487756,-40.929535232383806,-40.87956021989005,-40.8295852073963,-40.779610194902546,-40.72963518240879,-40.679660169915046,-40.62968515742129,-40.57971014492754,-40.529735132433785,-40.47976011994003,-40.42978510744628,-40.379810094952525,-40.32983508245877,-40.27986006996502,-40.229885057471265,-40.17991004497751,-40.12993503248376,-40.079960019990004,-40.02998500749625,-39.9800099950025,-39.930034982508744,-39.88005997001499,-39.83008495752124,-39.78010994502748,-39.73013493253373,-39.68015992003998,-39.63018490754623,-39.58020989505248,-39.53023488255872,-39.48025987006497,-39.430284857571216,-39.38030984507746,-39.33033483258371,-39.280359820089956,-39.2303848075962,-39.18040979510245,-39.130434782608695,-39.08045977011494,-39.03048475762119,-38.980509745127435,-38.93053473263368,-38.88055972013993,-38.830584707646175,-38.78060969515242,-38.73063468265867,-38.680659670164914,-38.63068465767117,-38.580709645177414,-38.53073463268366,-38.48075962018991,-38.430784607696154,-38.3808095952024,-38.33083458270865,-38.28085957021489,-38.23088455772114,-38.18090954522739,-38.13093453273363,-38.08095952023988,-38.030984507746126,-37.98100949525237,-37.93103448275862,-37.881059470264866,-37.83108445777111,-37.78110944527736,-37.731134432783605,-37.68115942028985,-37.6311844077961,-37.58120939530235,-37.5312343828086,-37.481259370314845,-37.43128435782109,-37.38130934532734,-37.331334332833585,-37.28135932033983,-37.23138430784608,-37.181409295352324,-37.13143428285857,-37.08145927036482,-37.031484257871064,-36.98150924537731,-36.93153423288356,-36.8815592203898,-36.83158420789605,-36.7816091954023,-36.73163418290854,-36.68165917041479,-36.631684157921036,-36.58170914542729,-36.531734132933536,-36.48175912043978,-36.43178410794603,-36.381809095452276,-36.33183408295852,-36.28185907046477,-36.231884057971016,-36.18190904547726,-36.13193403298351,-36.081959020489755,-36.031984007996,-35.98200899550225,-35.932033983008495,-35.88205897051474,-35.83208395802099,-35.782108945527234,-35.73213393303348,-35.68215892053973,-35.632183908045974,-35.58220889555222,-35.532233883058474,-35.48225887056472,-35.43228385807097,-35.382308845577214,-35.33233383308346,-35.28235882058971,-35.23238380809595,-35.1824087956022,-35.132433783108446,-35.08245877061469,-35.03248375812094,-34.982508745627186,-34.93253373313343,-34.88255872063968,-34.832583708145926,-34.78260869565217,-34.73263368315842,-34.682658670664665,-34.63268365817091,-34.58270864567716,-34.53273363318341,-34.48275862068966,-34.432783608195905,-34.38280859570215,-34.3328335832084,-34.282858570714644,-34.23288355822089,-34.18290854572714,-34.132933533233384,-34.08295852073963,-34.03298350824588,-33.983008495752124,-33.93303348325837,-33.88305847076462,-33.83308345827086,-33.78310844577711,-33.733133433283356,-33.6831584207896,-33.63318340829585,-33.583208395802096,-33.53323338330834,-33.483258370814596,-33.43328335832084,-33.38330834582709,-33.333333333333336,-33.28335832083958,-33.23338330834583,-33.183408295852075,-33.13343328335832,-33.08345827086457,-33.033483258370815,-32.98350824587706,-32.93353323338331,-32.883558220889554,-32.8335832083958,-32.78360819590205,-32.733633183408294,-32.68365817091454,-32.63368315842079,-32.583708145927034,-32.53373313343328,-32.48375812093953,-32.43378310844578,-32.38380809595203,-32.33383308345827,-32.28385807096452,-32.23388305847077,-32.18390804597701,-32.13393303348326,-32.083958020989506,-32.03398300849575,-31.984007996002,-31.934032983508246,-31.884057971014492,-31.83408295852074,-31.784107946026985,-31.734132933533232,-31.684157921039482,-31.63418290854573,-31.584207896051975,-31.53423288355822,-31.484257871064468,-31.434282858570715,-31.38430784607696,-31.334332833583208,-31.284357821089454,-31.2343828085957,-31.18440779610195,-31.134432783608197,-31.084457771114444,-31.03448275862069,-30.984507746126937,-30.934532733633183,-30.88455772113943,-30.834582708645677,-30.784607696151923,-30.73463268365817,-30.684657671164416,-30.634682658670666,-30.584707646176913,-30.53473263368316,-30.484757621189406,-30.434782608695652,-30.3848075962019,-30.334832583708145,-30.284857571214392,-30.23488255872064,-30.184907546226885,-30.134932533733135,-30.08495752123938,-30.034982508745628,-29.985007496251875,-29.93503248375812,-29.885057471264368,-29.835082458770614,-29.78510744627686,-29.735132433783107,-29.685157421289354,-29.635182408795604,-29.58520739630185,-29.535232383808097,-29.485257371314344,-29.43528235882059,-29.385307346326837,-29.335332333833083,-29.28535732133933,-29.235382308845576,-29.185407296351823,-29.13543228385807,-29.08545727136432,-29.035482258870566,-28.985507246376812,-28.93553223388306,-28.885557221389305,-28.835582208895552,-28.7856071964018,-28.735632183908045,-28.68565717141429,-28.635682158920538,-28.58570714642679,-28.535732133933035,-28.48575712143928,-28.435782108945528,-28.385807096451774,-28.33583208395802,-28.285857071464267,-28.235882058970514,-28.18590704647676,-28.135932033983007,-28.085957021489257,-28.035982008995504,-27.98600699650175,-27.936031984007997,-27.886056971514243,-27.83608195902049,-27.786106946526736,-27.736131934032983,-27.68615692153923,-27.636181909045476,-27.586206896551722,-27.536231884057973,-27.48625687156422,-27.436281859070466,-27.386306846576712,-27.33633183408296,-27.286356821589205,-27.23638180909545,-27.1864067966017,-27.136431784107945,-27.08645677161419,-27.03648175912044,-26.986506746626688,-26.936531734132934,-26.88655672163918,-26.836581709145428,-26.786606696651674,-26.73663168415792,-26.686656671664167,-26.636681659170414,-26.58670664667666,-26.53673163418291,-26.486756621689157,-26.436781609195403,-26.38680659670165,-26.336831584207896,-26.286856571714143,-26.23688155922039,-26.186906546726636,-26.136931534232883,-26.08695652173913,-26.036981509245376,-25.987006496751626,-25.937031484257872,-25.88705647176412,-25.837081459270365,-25.787106446776612,-25.73713143428286,-25.687156421789105,-25.63718140929535,-25.587206396801598,-25.537231384307844,-25.487256371814095,-25.43728135932034,-25.387306346826588,-25.337331334332834,-25.28735632183908,-25.237381309345327,-25.187406296851574,-25.13743128435782,-25.087456271864067,-25.037481259370313,-24.987506246876563,-24.93753123438281,-24.887556221889056,-24.837581209395303,-24.78760619690155,-24.737631184407796,-24.687656171914043,-24.63768115942029,-24.587706146926536,-24.537731134432782,-24.48775612193903,-24.43778110944528,-24.387806096951525,-24.337831084457772,-24.28785607196402,-24.237881059470265,-24.18790604697651,-24.137931034482758,-24.087956021989005,-24.03798100949525,-23.988005997001498,-23.938030984507748,-23.888055972013994,-23.83808095952024,-23.788105947026487,-23.738130934532734,-23.68815592203898,-23.638180909545227,-23.588205897051473,-23.53823088455772,-23.488255872063966,-23.438280859570217,-23.388305847076463,-23.33833083458271,-23.288355822088956,-23.238380809595203,-23.18840579710145,-23.138430784607696,-23.088455772113942,-23.03848075962019,-22.988505747126435,-22.938530734632682,-22.888555722138932,-22.83858070964518,-22.788605697151425,-22.73863068465767,-22.688655672163918,-22.638680659670165,-22.58870564717641,-22.538730634682658,-22.488755622188904,-22.43878060969515,-22.3888055972014,-22.338830584707647,-22.288855572213894,-22.23888055972014,-22.188905547226387,-22.138930534732634,-22.08895552223888,-22.038980509745127,-21.989005497251373,-21.93903048475762,-21.88905547226387,-21.839080459770116,-21.789105447276363,-21.73913043478261,-21.689155422288856,-21.639180409795102,-21.58920539730135,-21.539230384807595,-21.489255372313842,-21.43928035982009,-21.38930534732634,-21.339330334832585,-21.28935532233883,-21.239380309845078,-21.189405297351325,-21.13943028485757,-21.089455272363818,-21.039480259870064,-20.98950524737631,-20.939530234882557,-20.889555222388804,-20.839580209895054,-20.7896051974013,-20.739630184907547,-20.689655172413794,-20.63968015992004,-20.589705147426287,-20.539730134932533,-20.48975512243878,-20.439780109945026,-20.389805097451273,-20.339830084957523,-20.28985507246377,-20.239880059970016,-20.189905047476262,-20.13993003498251,-20.089955022488756,-20.039980009995002,-19.99000499750125,-19.940029985007495,-19.89005497251374,-19.84007996001999,-19.79010494752624,-19.740129935032485,-19.69015492253873,-19.640179910044978,-19.590204897551224,-19.54022988505747,-19.490254872563717,-19.440279860069964,-19.39030484757621,-19.340329835082457,-19.290354822588707,-19.240379810094954,-19.1904047976012,-19.140429785107447,-19.090454772613693,-19.04047976011994,-18.990504747626186,-18.940529735132433,-18.89055472263868,-18.840579710144926,-18.790604697651176,-18.740629685157423,-18.69065467266367,-18.640679660169916,-18.590704647676162,-18.54072963518241,-18.490754622688655,-18.4407796101949,-18.39080459770115,-18.340829585207395,-18.290854572713645,-18.24087956021989,-18.190904547726138,-18.140929535232384,-18.09095452273863,-18.040979510244878,-17.991004497751124,-17.94102948525737,-17.891054472763617,-17.841079460269864,-17.79110444777611,-17.74112943528236,-17.691154422788607,-17.641179410294853,-17.5912043978011,-17.541229385307346,-17.491254372813593,-17.44127936031984,-17.391304347826086,-17.341329335332333,-17.29135432283858,-17.24137931034483,-17.191404297851076,-17.141429285357322,-17.09145427286357,-17.041479260369815,-16.991504247876062,-16.94152923538231,-16.891554222888555,-16.8415792103948,-16.791604197901048,-16.741629185407298,-16.691654172913545,-16.64167916041979,-16.591704147926038,-16.541729135432284,-16.49175412293853,-16.441779110444777,-16.391804097951024,-16.34182908545727,-16.291854072963517,-16.241879060469763,-16.191904047976013,-16.14192903548226,-16.091954022988507,-16.041979010494753,-15.992003998001,-15.942028985507246,-15.892053973013493,-15.842078960519741,-15.792103948025987,-15.742128935532234,-15.69215392303848,-15.642178910544727,-15.592203898050975,-15.542228885557222,-15.492253873063468,-15.442278860569715,-15.392303848075962,-15.342328835582208,-15.292353823088456,-15.242378810594703,-15.19240379810095,-15.142428785607196,-15.092453773113442,-15.04247876061969,-14.992503748125937,-14.942528735632184,-14.89255372313843,-14.842578710644677,-14.792603698150925,-14.742628685657172,-14.692653673163418,-14.642678660669665,-14.592703648175911,-14.54272863568216,-14.492753623188406,-14.442778610694653,-14.3928035982009,-14.342828585707146,-14.292853573213394,-14.24287856071964,-14.192903548225887,-14.142928535732134,-14.09295352323838,-14.042978510744629,-13.993003498250875,-13.943028485757122,-13.893053473263368,-13.843078460769615,-13.793103448275861,-13.74312843578211,-13.693153423288356,-13.643178410794603,-13.59320339830085,-13.543228385807096,-13.493253373313344,-13.44327836081959,-13.393303348325837,-13.343328335832084,-13.29335332333833,-13.243378310844578,-13.193403298350825,-13.143428285857071,-13.093453273363318,-13.043478260869565,-12.993503248375813,-12.94352823588206,-12.893553223388306,-12.843578210894552,-12.793603198400799,-12.743628185907047,-12.693653173413294,-12.64367816091954,-12.593703148425787,-12.543728135932033,-12.493753123438282,-12.443778110944528,-12.393803098450775,-12.343828085957021,-12.293853073463268,-12.243878060969514,-12.193903048475763,-12.14392803598201,-12.093953023488256,-12.043978010994502,-11.994002998500749,-11.944027986006997,-11.894052973513244,-11.84407796101949,-11.794102948525737,-11.744127936031983,-11.694152923538232,-11.644177911044478,-11.594202898550725,-11.544227886056971,-11.494252873563218,-11.444277861069466,-11.394302848575713,-11.344327836081959,-11.294352823588206,-11.244377811094452,-11.1944027986007,-11.144427786106947,-11.094452773613193,-11.04447776111944,-10.994502748625687,-10.944527736131935,-10.894552723638181,-10.844577711144428,-10.794602698650674,-10.744627686156921,-10.69465267366317,-10.644677661169416,-10.594702648675662,-10.544727636181909,-10.494752623688155,-10.444777611194402,-10.39480259870065,-10.344827586206897,-10.294852573713143,-10.24487756121939,-10.194902548725636,-10.144927536231885,-10.094952523738131,-10.044977511244378,-9.995002498750624,-9.94502748625687,-9.89505247376312,-9.845077461269366,-9.795102448775612,-9.745127436281859,-9.695152423788105,-9.645177411294354,-9.5952023988006,-9.545227386306847,-9.495252373813093,-9.44527736131934,-9.395302348825588,-9.345327336331835,-9.295352323838081,-9.245377311344328,-9.195402298850574,-9.145427286356822,-9.095452273863069,-9.045477261369316,-8.995502248875562,-8.945527236381809,-8.895552223888055,-8.845577211394303,-8.79560219890055,-8.745627186406796,-8.695652173913043,-8.64567716141929,-8.595702148925538,-8.545727136431784,-8.495752123938031,-8.445777111444277,-8.395802098950524,-8.345827086456772,-8.295852073963019,-8.245877061469265,-8.195902048975512,-8.145927036481758,-8.095952023988007,-8.045977011494253,-7.9960019990005,-7.946026986506746,-7.896051974012994,-7.84607696151924,-7.796101949025488,-7.746126936531734,-7.696151924037981,-7.646176911544228,-7.596201899050475,-7.546226886556721,-7.496251874062969,-7.446276861569215,-7.396301849075463,-7.346326836581709,-7.296351824087956,-7.246376811594203,-7.19640179910045,-7.146426786606697,-7.096451774112944,-7.04647676161919,-6.9965017491254375,-6.946526736631684,-6.896551724137931,-6.846576711644178,-6.796601699150425,-6.746626686656672,-6.6966516741629185,-6.646676661669165,-6.5967016491754125,-6.546726636681659,-6.496751624187906,-6.446776611694153,-6.3968015992003995,-6.346826586706647,-6.296851574212893,-6.246876561719141,-6.196901549225387,-6.146926536731634,-6.096951524237881,-6.046976511744128,-5.997001499250374,-5.947026486756622,-5.897051474262868,-5.847076461769116,-5.797101449275362,-5.747126436781609,-5.697151424287856,-5.647176411794103,-5.59720139930035,-5.547226386806597,-5.497251374312843,-5.447276361819091,-5.397301349325337,-5.347326336831585,-5.297351324337831,-5.247376311844078,-5.197401299350325,-5.147426286856572,-5.097451274362818,-5.047476261869066,-4.997501249375312,-4.94752623688156,-4.897551224387806,-4.847576211894053,-4.7976011994003,-4.747626186906547,-4.697651174412794,-4.6476761619190405,-4.597701149425287,-4.5477261369315345,-4.497751124437781,-4.4477761119440276,-4.397801099450275,-4.3478260869565215,-4.297851074462769,-4.2478760619690155,-4.197901049475262,-4.147926036981509,-4.097951024487756,-4.047976011994003,-3.99800099950025,-3.948025987006497,-3.898050974512744,-3.8480759620189904,-3.7981009495252374,-3.7481259370314843,-3.6981509245377313,-3.648175912043978,-3.598200899550225,-3.548225887056472,-3.4982508745627188,-3.4482758620689653,-3.3983008495752123,-3.3483258370814593,-3.2983508245877062,-3.248375812093953,-3.1984007996001997,-3.1484257871064467,-3.0984507746126937,-3.0484757621189407,-2.998500749625187,-2.948525737131434,-2.898550724637681,-2.848575712143928,-2.798600699650175,-2.7486256871564216,-2.6986506746626686,-2.6486756621689156,-2.5987006496751626,-2.548725637181409,-2.498750624687656,-2.448775612193903,-2.39880059970015,-2.348825587206397,-2.2988505747126435,-2.2488755622188905,-2.1989005497251375,-2.1489255372313845,-2.098950524737631,-2.048975512243878,-1.999000499750125,-1.949025487256372,-1.8990504747626187,-1.8490754622688657,-1.7991004497751124,-1.7491254372813594,-1.6991504247876061,-1.6491754122938531,-1.5992003998000999,-1.5492253873063468,-1.4992503748125936,-1.4492753623188406,-1.3993003498250876,-1.3493253373313343,-1.2993503248375813,-1.249375312343828,-1.199400299850075,-1.1494252873563218,-1.0994502748625687,-1.0494752623688155,-0.9995002498750625,-0.9495252373813093,-0.8995502248875562,-0.8495752123938031,-0.7996001999000499,-0.7496251874062968,-0.6996501749125438,-0.6496751624187906,-0.5997001499250375,-0.5497251374312844,-0.49975012493753124,-0.4497751124437781,-0.39980009995002497,-0.3498250874562719,-0.29985007496251875,-0.24987506246876562,-0.19990004997501248,-0.14992503748125938,-0.09995002498750624,-0.04997501249375312,0.0,0.04997501249375312,0.09995002498750624,0.14992503748125938,0.19990004997501248,0.24987506246876562,0.29985007496251875,0.3498250874562719,0.39980009995002497,0.4497751124437781,0.49975012493753124,0.5497251374312844,0.5997001499250375,0.6496751624187906,0.6996501749125438,0.7496251874062968,0.7996001999000499,0.8495752123938031,0.8995502248875562,0.9495252373813093,0.9995002498750625,1.0494752623688155,1.0994502748625687,1.1494252873563218,1.199400299850075,1.249375312343828,1.2993503248375813,1.3493253373313343,1.3993003498250876,1.4492753623188406,1.4992503748125936,1.5492253873063468,1.5992003998000999,1.6491754122938531,1.6991504247876061,1.7491254372813594,1.7991004497751124,1.8490754622688657,1.8990504747626187,1.949025487256372,1.999000499750125,2.048975512243878,2.098950524737631,2.1489255372313845,2.1989005497251375,2.2488755622188905,2.2988505747126435,2.348825587206397,2.39880059970015,2.448775612193903,2.498750624687656,2.548725637181409,2.5987006496751626,2.6486756621689156,2.6986506746626686,2.7486256871564216,2.798600699650175,2.848575712143928,2.898550724637681,2.948525737131434,2.998500749625187,3.0484757621189407,3.0984507746126937,3.1484257871064467,3.1984007996001997,3.248375812093953,3.2983508245877062,3.3483258370814593,3.3983008495752123,3.4482758620689653,3.4982508745627188,3.548225887056472,3.598200899550225,3.648175912043978,3.6981509245377313,3.7481259370314843,3.7981009495252374,3.8480759620189904,3.898050974512744,3.948025987006497,3.99800099950025,4.047976011994003,4.097951024487756,4.147926036981509,4.197901049475262,4.2478760619690155,4.297851074462769,4.3478260869565215,4.397801099450275,4.4477761119440276,4.497751124437781,4.5477261369315345,4.597701149425287,4.6476761619190405,4.697651174412794,4.747626186906547,4.7976011994003,4.847576211894053,4.897551224387806,4.94752623688156,4.997501249375312,5.047476261869066,5.097451274362818,5.147426286856572,5.197401299350325,5.247376311844078,5.297351324337831,5.347326336831585,5.397301349325337,5.447276361819091,5.497251374312843,5.547226386806597,5.59720139930035,5.647176411794103,5.697151424287856,5.747126436781609,5.797101449275362,5.847076461769116,5.897051474262868,5.947026486756622,5.997001499250374,6.046976511744128,6.096951524237881,6.146926536731634,6.196901549225387,6.246876561719141,6.296851574212893,6.346826586706647,6.3968015992003995,6.446776611694153,6.496751624187906,6.546726636681659,6.5967016491754125,6.646676661669165,6.6966516741629185,6.746626686656672,6.796601699150425,6.846576711644178,6.896551724137931,6.946526736631684,6.9965017491254375,7.04647676161919,7.096451774112944,7.146426786606697,7.19640179910045,7.246376811594203,7.296351824087956,7.346326836581709,7.396301849075463,7.446276861569215,7.496251874062969,7.546226886556721,7.596201899050475,7.646176911544228,7.696151924037981,7.746126936531734,7.796101949025488,7.84607696151924,7.896051974012994,7.946026986506746,7.9960019990005,8.045977011494253,8.095952023988007,8.145927036481758,8.195902048975512,8.245877061469265,8.295852073963019,8.345827086456772,8.395802098950524,8.445777111444277,8.495752123938031,8.545727136431784,8.595702148925538,8.64567716141929,8.695652173913043,8.745627186406796,8.79560219890055,8.845577211394303,8.895552223888055,8.945527236381809,8.995502248875562,9.045477261369316,9.095452273863069,9.145427286356822,9.195402298850574,9.245377311344328,9.295352323838081,9.345327336331835,9.395302348825588,9.44527736131934,9.495252373813093,9.545227386306847,9.5952023988006,9.645177411294354,9.695152423788105,9.745127436281859,9.795102448775612,9.845077461269366,9.89505247376312,9.94502748625687,9.995002498750624,10.044977511244378,10.094952523738131,10.144927536231885,10.194902548725636,10.24487756121939,10.294852573713143,10.344827586206897,10.39480259870065,10.444777611194402,10.494752623688155,10.544727636181909,10.594702648675662,10.644677661169416,10.69465267366317,10.744627686156921,10.794602698650674,10.844577711144428,10.894552723638181,10.944527736131935,10.994502748625687,11.04447776111944,11.094452773613193,11.144427786106947,11.1944027986007,11.244377811094452,11.294352823588206,11.344327836081959,11.394302848575713,11.444277861069466,11.494252873563218,11.544227886056971,11.594202898550725,11.644177911044478,11.694152923538232,11.744127936031983,11.794102948525737,11.84407796101949,11.894052973513244,11.944027986006997,11.994002998500749,12.043978010994502,12.093953023488256,12.14392803598201,12.193903048475763,12.243878060969514,12.293853073463268,12.343828085957021,12.393803098450775,12.443778110944528,12.493753123438282,12.543728135932033,12.593703148425787,12.64367816091954,12.693653173413294,12.743628185907047,12.793603198400799,12.843578210894552,12.893553223388306,12.94352823588206,12.993503248375813,13.043478260869565,13.093453273363318,13.143428285857071,13.193403298350825,13.243378310844578,13.29335332333833,13.343328335832084,13.393303348325837,13.44327836081959,13.493253373313344,13.543228385807096,13.59320339830085,13.643178410794603,13.693153423288356,13.74312843578211,13.793103448275861,13.843078460769615,13.893053473263368,13.943028485757122,13.993003498250875,14.042978510744629,14.09295352323838,14.142928535732134,14.192903548225887,14.24287856071964,14.292853573213394,14.342828585707146,14.3928035982009,14.442778610694653,14.492753623188406,14.54272863568216,14.592703648175911,14.642678660669665,14.692653673163418,14.742628685657172,14.792603698150925,14.842578710644677,14.89255372313843,14.942528735632184,14.992503748125937,15.04247876061969,15.092453773113442,15.142428785607196,15.19240379810095,15.242378810594703,15.292353823088456,15.342328835582208,15.392303848075962,15.442278860569715,15.492253873063468,15.542228885557222,15.592203898050975,15.642178910544727,15.69215392303848,15.742128935532234,15.792103948025987,15.842078960519741,15.892053973013493,15.942028985507246,15.992003998001,16.041979010494753,16.091954022988507,16.14192903548226,16.191904047976013,16.241879060469763,16.291854072963517,16.34182908545727,16.391804097951024,16.441779110444777,16.49175412293853,16.541729135432284,16.591704147926038,16.64167916041979,16.691654172913545,16.741629185407298,16.791604197901048,16.8415792103948,16.891554222888555,16.94152923538231,16.991504247876062,17.041479260369815,17.09145427286357,17.141429285357322,17.191404297851076,17.24137931034483,17.29135432283858,17.341329335332333,17.391304347826086,17.44127936031984,17.491254372813593,17.541229385307346,17.5912043978011,17.641179410294853,17.691154422788607,17.74112943528236,17.79110444777611,17.841079460269864,17.891054472763617,17.94102948525737,17.991004497751124,18.040979510244878,18.09095452273863,18.140929535232384,18.190904547726138,18.24087956021989,18.290854572713645,18.340829585207395,18.39080459770115,18.4407796101949,18.490754622688655,18.54072963518241,18.590704647676162,18.640679660169916,18.69065467266367,18.740629685157423,18.790604697651176,18.840579710144926,18.89055472263868,18.940529735132433,18.990504747626186,19.04047976011994,19.090454772613693,19.140429785107447,19.1904047976012,19.240379810094954,19.290354822588707,19.340329835082457,19.39030484757621,19.440279860069964,19.490254872563717,19.54022988505747,19.590204897551224,19.640179910044978,19.69015492253873,19.740129935032485,19.79010494752624,19.84007996001999,19.89005497251374,19.940029985007495,19.99000499750125,20.039980009995002,20.089955022488756,20.13993003498251,20.189905047476262,20.239880059970016,20.28985507246377,20.339830084957523,20.389805097451273,20.439780109945026,20.48975512243878,20.539730134932533,20.589705147426287,20.63968015992004,20.689655172413794,20.739630184907547,20.7896051974013,20.839580209895054,20.889555222388804,20.939530234882557,20.98950524737631,21.039480259870064,21.089455272363818,21.13943028485757,21.189405297351325,21.239380309845078,21.28935532233883,21.339330334832585,21.38930534732634,21.43928035982009,21.489255372313842,21.539230384807595,21.58920539730135,21.639180409795102,21.689155422288856,21.73913043478261,21.789105447276363,21.839080459770116,21.88905547226387,21.93903048475762,21.989005497251373,22.038980509745127,22.08895552223888,22.138930534732634,22.188905547226387,22.23888055972014,22.288855572213894,22.338830584707647,22.3888055972014,22.43878060969515,22.488755622188904,22.538730634682658,22.58870564717641,22.638680659670165,22.688655672163918,22.73863068465767,22.788605697151425,22.83858070964518,22.888555722138932,22.938530734632682,22.988505747126435,23.03848075962019,23.088455772113942,23.138430784607696,23.18840579710145,23.238380809595203,23.288355822088956,23.33833083458271,23.388305847076463,23.438280859570217,23.488255872063966,23.53823088455772,23.588205897051473,23.638180909545227,23.68815592203898,23.738130934532734,23.788105947026487,23.83808095952024,23.888055972013994,23.938030984507748,23.988005997001498,24.03798100949525,24.087956021989005,24.137931034482758,24.18790604697651,24.237881059470265,24.28785607196402,24.337831084457772,24.387806096951525,24.43778110944528,24.48775612193903,24.537731134432782,24.587706146926536,24.63768115942029,24.687656171914043,24.737631184407796,24.78760619690155,24.837581209395303,24.887556221889056,24.93753123438281,24.987506246876563,25.037481259370313,25.087456271864067,25.13743128435782,25.187406296851574,25.237381309345327,25.28735632183908,25.337331334332834,25.387306346826588,25.43728135932034,25.487256371814095,25.537231384307844,25.587206396801598,25.63718140929535,25.687156421789105,25.73713143428286,25.787106446776612,25.837081459270365,25.88705647176412,25.937031484257872,25.987006496751626,26.036981509245376,26.08695652173913,26.136931534232883,26.186906546726636,26.23688155922039,26.286856571714143,26.336831584207896,26.38680659670165,26.436781609195403,26.486756621689157,26.53673163418291,26.58670664667666,26.636681659170414,26.686656671664167,26.73663168415792,26.786606696651674,26.836581709145428,26.88655672163918,26.936531734132934,26.986506746626688,27.03648175912044,27.08645677161419,27.136431784107945,27.1864067966017,27.23638180909545,27.286356821589205,27.33633183408296,27.386306846576712,27.436281859070466,27.48625687156422,27.536231884057973,27.586206896551722,27.636181909045476,27.68615692153923,27.736131934032983,27.786106946526736,27.83608195902049,27.886056971514243,27.936031984007997,27.98600699650175,28.035982008995504,28.085957021489257,28.135932033983007,28.18590704647676,28.235882058970514,28.285857071464267,28.33583208395802,28.385807096451774,28.435782108945528,28.48575712143928,28.535732133933035,28.58570714642679,28.635682158920538,28.68565717141429,28.735632183908045,28.7856071964018,28.835582208895552,28.885557221389305,28.93553223388306,28.985507246376812,29.035482258870566,29.08545727136432,29.13543228385807,29.185407296351823,29.235382308845576,29.28535732133933,29.335332333833083,29.385307346326837,29.43528235882059,29.485257371314344,29.535232383808097,29.58520739630185,29.635182408795604,29.685157421289354,29.735132433783107,29.78510744627686,29.835082458770614,29.885057471264368,29.93503248375812,29.985007496251875,30.034982508745628,30.08495752123938,30.134932533733135,30.184907546226885,30.23488255872064,30.284857571214392,30.334832583708145,30.3848075962019,30.434782608695652,30.484757621189406,30.53473263368316,30.584707646176913,30.634682658670666,30.684657671164416,30.73463268365817,30.784607696151923,30.834582708645677,30.88455772113943,30.934532733633183,30.984507746126937,31.03448275862069,31.084457771114444,31.134432783608197,31.18440779610195,31.2343828085957,31.284357821089454,31.334332833583208,31.38430784607696,31.434282858570715,31.484257871064468,31.53423288355822,31.584207896051975,31.63418290854573,31.684157921039482,31.734132933533232,31.784107946026985,31.83408295852074,31.884057971014492,31.934032983508246,31.984007996002,32.03398300849575,32.083958020989506,32.13393303348326,32.18390804597701,32.23388305847077,32.28385807096452,32.33383308345827,32.38380809595203,32.43378310844578,32.48375812093953,32.53373313343328,32.583708145927034,32.63368315842079,32.68365817091454,32.733633183408294,32.78360819590205,32.8335832083958,32.883558220889554,32.93353323338331,32.98350824587706,33.033483258370815,33.08345827086457,33.13343328335832,33.183408295852075,33.23338330834583,33.28335832083958,33.333333333333336,33.38330834582709,33.43328335832084,33.483258370814596,33.53323338330834,33.583208395802096,33.63318340829585,33.6831584207896,33.733133433283356,33.78310844577711,33.83308345827086,33.88305847076462,33.93303348325837,33.983008495752124,34.03298350824588,34.08295852073963,34.132933533233384,34.18290854572714,34.23288355822089,34.282858570714644,34.3328335832084,34.38280859570215,34.432783608195905,34.48275862068966,34.53273363318341,34.58270864567716,34.63268365817091,34.682658670664665,34.73263368315842,34.78260869565217,34.832583708145926,34.88255872063968,34.93253373313343,34.982508745627186,35.03248375812094,35.08245877061469,35.132433783108446,35.1824087956022,35.23238380809595,35.28235882058971,35.33233383308346,35.382308845577214,35.43228385807097,35.48225887056472,35.532233883058474,35.58220889555222,35.632183908045974,35.68215892053973,35.73213393303348,35.782108945527234,35.83208395802099,35.88205897051474,35.932033983008495,35.98200899550225,36.031984007996,36.081959020489755,36.13193403298351,36.18190904547726,36.231884057971016,36.28185907046477,36.33183408295852,36.381809095452276,36.43178410794603,36.48175912043978,36.531734132933536,36.58170914542729,36.631684157921036,36.68165917041479,36.73163418290854,36.7816091954023,36.83158420789605,36.8815592203898,36.93153423288356,36.98150924537731,37.031484257871064,37.08145927036482,37.13143428285857,37.181409295352324,37.23138430784608,37.28135932033983,37.331334332833585,37.38130934532734,37.43128435782109,37.481259370314845,37.5312343828086,37.58120939530235,37.6311844077961,37.68115942028985,37.731134432783605,37.78110944527736,37.83108445777111,37.881059470264866,37.93103448275862,37.98100949525237,38.030984507746126,38.08095952023988,38.13093453273363,38.18090954522739,38.23088455772114,38.28085957021489,38.33083458270865,38.3808095952024,38.430784607696154,38.48075962018991,38.53073463268366,38.580709645177414,38.63068465767117,38.680659670164914,38.73063468265867,38.78060969515242,38.830584707646175,38.88055972013993,38.93053473263368,38.980509745127435,39.03048475762119,39.08045977011494,39.130434782608695,39.18040979510245,39.2303848075962,39.280359820089956,39.33033483258371,39.38030984507746,39.430284857571216,39.48025987006497,39.53023488255872,39.58020989505248,39.63018490754623,39.68015992003998,39.73013493253373,39.78010994502748,39.83008495752124,39.88005997001499,39.930034982508744,39.9800099950025,40.02998500749625,40.079960019990004,40.12993503248376,40.17991004497751,40.229885057471265,40.27986006996502,40.32983508245877,40.379810094952525,40.42978510744628,40.47976011994003,40.529735132433785,40.57971014492754,40.62968515742129,40.679660169915046,40.72963518240879,40.779610194902546,40.8295852073963,40.87956021989005,40.929535232383806,40.97951024487756,41.02948525737131,41.079460269865066,41.12943528235882,41.17941029485257,41.22938530734633,41.27936031984008,41.329335332333834,41.37931034482759,41.42928535732134,41.479260369815094,41.52923538230885,41.5792103948026,41.629185407296355,41.67916041979011,41.72913543228386,41.77911044477761,41.82908545727136,41.879060469765115,41.92903548225887,41.97901049475262,42.028985507246375,42.07896051974013,42.12893553223388,42.178910544727636,42.22888555722139,42.27886056971514,42.328835582208896,42.37881059470265,42.4287856071964,42.478760619690156,42.52873563218391,42.57871064467766,42.62868565717142,42.67866066966517,42.728635682158924,42.77861069465268,42.82858570714642,42.87856071964018,42.92853573213393,42.978510744627684,43.02848575712144,43.07846076961519,43.128435782108944,43.1784107946027,43.22838580709645,43.278360819590205,43.32833583208396,43.37831084457771,43.428285857071465,43.47826086956522,43.52823588205897,43.578210894552726,43.62818590704648,43.67816091954023,43.728135932033986,43.77811094452774,43.828085957021486,43.87806096951524,43.92803598200899,43.978010994502746,44.0279860069965,44.07796101949025,44.12793603198401,44.17791104447776,44.22788605697151,44.27786106946527,44.32783608195902,44.377811094452774,44.42778610694653,44.47776111944028,44.527736131934034,44.57771114442779,44.62768615692154,44.677661169415295,44.72763618190905,44.7776111944028,44.827586206896555,44.8775612193903,44.927536231884055,44.97751124437781,45.02748625687156,45.077461269365315,45.12743628185907,45.17741129435282,45.227386306846576,45.27736131934033,45.32733633183408,45.377311344327836,45.42728635682159,45.47726136931534,45.5272363818091,45.57721139430285,45.6271864067966,45.67716141929036,45.72713643178411,45.777111444277864,45.82708645677162,45.877061469265364,45.92703648175912,45.97701149425287,46.026986506746624,46.07696151924038,46.12693653173413,46.176911544227885,46.22688655672164,46.27686156921539,46.326836581709145,46.3768115942029,46.42678660669665,46.476761619190405,46.52673663168416,46.57671164417791,46.626686656671666,46.67666166916542,46.72663668165917,46.776611694152926,46.82658670664668,46.87656171914043,46.92653673163418,46.97651174412793,47.026486756621686,47.07646176911544,47.12643678160919,47.17641179410295,47.2263868065967,47.276361819090454,47.32633683158421,47.37631184407796,47.426286856571714,47.47626186906547,47.52623688155922,47.576211894052975,47.62618690654673,47.67616191904048,47.726136931534235,47.77611194402799,47.82608695652174,47.876061969015495,47.92603698150925,47.976011994002995,48.02598700649675,48.0759620189905,48.125937031484256,48.17591204397801,48.22588705647176,48.275862068965516,48.32583708145927,48.37581209395302,48.425787106446776,48.47576211894053,48.52573713143428,48.57571214392804,48.62568715642179,48.675662168915544,48.7256371814093,48.77561219390305,48.825587206396804,48.87556221889056,48.92553723138431,48.97551224387806,49.02548725637181,49.075462268865564,49.12543728135932,49.17541229385307,49.225387306346825,49.27536231884058,49.32533733133433,49.375312343828085,49.42528735632184,49.47526236881559,49.525237381309346,49.5752123938031,49.62518740629685,49.675162418790606,49.72513743128436,49.77511244377811,49.825087456271866,49.87506246876562,49.92503748125937,49.97501249375313,50.02498750624687,50.07496251874063,50.12493753123438,50.174912543728134,50.22488755622189,50.27486256871564,50.324837581209394,50.37481259370315,50.4247876061969,50.474762618690654,50.52473763118441,50.57471264367816,50.624687656171915,50.67466266866567,50.72463768115942,50.774612693653175,50.82458770614693,50.87456271864068,50.924537731134436,50.97451274362819,51.02448775612194,51.07446276861569,51.12443778110944,51.174412793603196,51.22438780609695,51.2743628185907,51.324337831084456,51.37431284357821,51.42428785607196,51.47426286856572,51.52423788105947,51.574212893553224,51.62418790604698,51.67416291854073,51.724137931034484,51.77411294352824,51.82408795602199,51.874062968515744,51.9240379810095,51.97401299350325,52.023988005997005,52.07396301849075,52.123938030984505,52.17391304347826,52.22388805597201,52.273863068465765,52.32383808095952,52.37381309345327,52.423788105947025,52.47376311844078,52.52373813093453,52.573713143428286,52.62368815592204,52.67366316841579,52.723638180909546,52.7736131934033,52.82358820589705,52.87356321839081,52.92353823088456,52.973513243378314,53.02348825587207,53.07346326836582,53.12343828085957,53.17341329335332,53.223388305847074,53.27336331834083,53.32333833083458,53.373313343328334,53.42328835582209,53.47326336831584,53.523238380809595,53.57321339330335,53.6231884057971,53.673163418290855,53.72313843078461,53.77311344327836,53.823088455772115,53.87306346826587,53.92303848075962,53.973013493253376,54.02298850574713,54.07296351824088,54.122938530734636,54.17291354322838,54.222888555722136,54.27286356821589,54.32283858070964,54.3728135932034,54.42278860569715,54.4727636181909,54.52273863068466,54.57271364317841,54.622688655672164,54.67266366816592,54.72263868065967,54.772613693153424,54.82258870564718,54.87256371814093,54.922538730634685,54.97251374312844,55.02248875562219,55.072463768115945,55.1224387806097,55.172413793103445,55.2223888055972,55.27236381809095,55.322338830584705,55.37231384307846,55.42228885557221,55.472263868065966,55.52223888055972,55.57221389305347,55.622188905547226,55.67216391804098,55.72213893053473,55.77211394302849,55.82208895552224,55.87206396801599,55.92203898050975,55.9720139930035,56.021989005497254,56.07196401799101,56.12193903048476,56.171914042978514,56.22188905547226,56.271864067966014,56.32183908045977,56.37181409295352,56.421789105447274,56.47176411794103,56.52173913043478,56.571714142928535,56.62168915542229,56.67166416791604,56.721639180409795,56.77161419290355,56.8215892053973,56.871564217891056,56.92153923038481,56.97151424287856,57.021489255372316,57.07146426786607,57.12143928035982,57.17141429285358,57.22138930534732,57.271364317841076,57.32133933033483,57.37131434282858,57.42128935532234,57.47126436781609,57.521239380309844,57.5712143928036,57.62118940529735,57.671164417791104,57.72113943028486,57.77111444277861,57.821089455272364,57.87106446776612,57.92103948025987,57.971014492753625,58.02098950524738,58.07096451774113,58.120939530234885,58.17091454272864,58.22088955522239,58.27086456771614,58.32083958020989,58.370814592703645,58.4207896051974,58.47076461769115,58.520739630184906,58.57071464267866,58.62068965517241,58.670664667666166,58.72063968015992,58.77061469265367,58.82058970514743,58.87056471764118,58.920539730134934,58.97051474262869,59.02048975512244,59.070464767616194,59.12043978010995,59.1704147926037,59.220389805097454,59.27036481759121,59.320339830084954,59.37031484257871,59.42028985507246,59.470264867566215,59.52023988005997,59.57021489255372,59.620189905047475,59.67016491754123,59.72013993003498,59.770114942528735,59.82008995502249,59.87006496751624,59.920039980009996,59.97001499250375,60.0199900049975,60.069965017491256,60.11994002998501,60.16991504247876,60.21989005497252,60.26986506746627,60.31984007996002,60.36981509245377,60.41979010494752,60.46976511744128,60.51974012993503,60.569715142428784,60.61969015492254,60.66966516741629,60.719640179910044,60.7696151924038,60.81959020489755,60.869565217391305,60.91954022988506,60.96951524237881,61.019490254872565,61.06946526736632,61.11944027986007,61.169415292353825,61.21939030484758,61.26936531734133,61.319340329835086,61.36931534232883,61.419290354822586,61.46926536731634,61.51924037981009,61.569215392303846,61.6191904047976,61.66916541729135,61.71914042978511,61.76911544227886,61.81909045477261,61.86906546726637,61.91904047976012,61.969015492253874,62.01899050474763,62.06896551724138,62.118940529735134,62.16891554222889,62.21889055472264,62.268865567216395,62.31884057971015,62.3688155922039,62.41879060469765,62.4687656171914,62.518740629685155,62.56871564217891,62.61869065467266,62.668665667166415,62.71864067966017,62.76861569215392,62.818590704647676,62.86856571714143,62.91854072963518,62.968515742128936,63.01849075462269,63.06846576711644,63.1184407796102,63.16841579210395,63.2183908045977,63.26836581709146,63.31834082958521,63.368315842078964,63.41829085457271,63.468265867066464,63.51824087956022,63.56821589205397,63.618190904547724,63.66816591704148,63.71814092953523,63.768115942028984,63.81809095452274,63.86806596701649,63.918040979510245,63.968015992004,64.01799100449774,64.0679660169915,64.11794102948525,64.16791604197901,64.21789105447276,64.26786606696652,64.31784107946027,64.36781609195403,64.41779110444777,64.46776611694153,64.51774112943528,64.56771614192904,64.61769115442279,64.66766616691655,64.7176411794103,64.76761619190405,64.8175912043978,64.86756621689156,64.91754122938531,64.96751624187905,65.01749125437281,65.06746626686656,65.11744127936032,65.16741629185407,65.21739130434783,65.26736631684157,65.31734132933533,65.36731634182908,65.41729135432284,65.46726636681659,65.51724137931035,65.5672163918041,65.61719140429786,65.6671664167916,65.71714142928536,65.76711644177911,65.81709145427287,65.86706646676662,65.91704147926038,65.96701649175412,66.01699150424787,66.06696651674163,66.11694152923538,66.16691654172914,66.21689155422288,66.26686656671664,66.31684157921039,66.36681659170415,66.4167916041979,66.46676661669166,66.5167416291854,66.56671664167916,66.61669165417291,66.66666666666667,66.71664167916042,66.76661669165418,66.81659170414792,66.86656671664169,66.91654172913543,66.96651674162919,67.01649175412294,67.06646676661668,67.11644177911045,67.16641679160419,67.21639180409795,67.2663668165917,67.31634182908546,67.3663168415792,67.41629185407297,67.46626686656671,67.51624187906047,67.56621689155422,67.61619190404798,67.66616691654173,67.71614192903549,67.76611694152923,67.816091954023,67.86606696651674,67.9160419790105,67.96601699150425,68.01599200399801,68.06596701649175,68.1159420289855,68.16591704147926,68.21589205397301,68.26586706646677,68.31584207896051,68.36581709145428,68.41579210394802,68.46576711644178,68.51574212893553,68.56571714142929,68.61569215392304,68.6656671664168,68.71564217891054,68.7656171914043,68.81559220389805,68.86556721639181,68.91554222888556,68.96551724137932,69.01549225387306,69.06546726636682,69.11544227886057,69.16541729135432,69.21539230384808,69.26536731634182,69.31534232883558,69.36531734132933,69.41529235382309,69.46526736631684,69.5152423788106,69.56521739130434,69.6151924037981,69.66516741629185,69.71514242878561,69.76511744127936,69.81509245377312,69.86506746626686,69.91504247876063,69.96501749125437,70.01499250374813,70.06496751624188,70.11494252873563,70.16491754122939,70.21489255372313,70.26486756621689,70.31484257871064,70.3648175912044,70.41479260369815,70.4647676161919,70.51474262868565,70.56471764117941,70.61469265367316,70.66466766616692,70.71464267866067,70.76461769115443,70.81459270364817,70.86456771614193,70.91454272863568,70.96451774112944,71.01449275362319,71.06446776611695,71.1144427786107,71.16441779110444,71.2143928035982,71.26436781609195,71.31434282858571,71.36431784107945,71.41429285357322,71.46426786606696,71.51424287856072,71.56421789105447,71.61419290354823,71.66416791604198,71.71414292853574,71.76411794102948,71.81409295352324,71.86406796601699,71.91404297851075,71.9640179910045,72.01399300349826,72.063968015992,72.11394302848576,72.16391804097951,72.21389305347326,72.26386806596702,72.31384307846076,72.36381809095452,72.41379310344827,72.46376811594203,72.51374312843578,72.56371814092954,72.61369315342328,72.66366816591704,72.71364317841079,72.76361819090455,72.8135932033983,72.86356821589206,72.9135432283858,72.96351824087957,73.01349325337331,73.06346826586707,73.11344327836082,73.16341829085458,73.21339330334833,73.26336831584207,73.31334332833583,73.36331834082958,73.41329335332334,73.46326836581709,73.51324337831085,73.5632183908046,73.61319340329835,73.6631684157921,73.71314342828586,73.7631184407796,73.81309345327337,73.86306846576711,73.91304347826087,73.96301849075462,74.01299350324838,74.06296851574213,74.11294352823589,74.16291854072963,74.2128935532234,74.26286856571714,74.31284357821089,74.36281859070465,74.4127936031984,74.46276861569216,74.5127436281859,74.56271864067966,74.61269365317341,74.66266866566717,74.71264367816092,74.76261869065468,74.81259370314842,74.86256871564218,74.91254372813593,74.96251874062969,75.01249375312344,75.0624687656172,75.11244377811094,75.1624187906047,75.21239380309845,75.2623688155922,75.31234382808596,75.3623188405797,75.41229385307346,75.46226886556721,75.51224387806097,75.56221889055472,75.61219390304848,75.66216891554222,75.71214392803599,75.76211894052973,75.81209395302349,75.86206896551724,75.912043978011,75.96201899050475,76.0119940029985,76.06196901549225,76.11194402798601,76.16191904047976,76.21189405297352,76.26186906546727,76.31184407796101,76.36181909045477,76.41179410294852,76.46176911544228,76.51174412793603,76.56171914042979,76.61169415292353,76.6616691654173,76.71164417791104,76.7616191904048,76.81159420289855,76.86156921539231,76.91154422788605,76.96151924037981,77.01149425287356,77.06146926536732,77.11144427786107,77.16141929035483,77.21139430284857,77.26136931534234,77.31134432783608,77.36131934032983,77.41129435282359,77.46126936531734,77.5112443778111,77.56121939030484,77.6111944027986,77.66116941529235,77.71114442778611,77.76111944027986,77.81109445277362,77.86106946526736,77.91104447776112,77.96101949025487,78.01099450274863,78.06096951524238,78.11094452773614,78.16091954022988,78.21089455272364,78.26086956521739,78.31084457771115,78.3608195902049,78.41079460269864,78.4607696151924,78.51074462768615,78.56071964017991,78.61069465267366,78.66066966516742,78.71064467766116,78.76061969015493,78.81059470264867,78.86056971514243,78.91054472763618,78.96051974012994,79.01049475262369,79.06046976511745,79.11044477761119,79.16041979010495,79.2103948025987,79.26036981509246,79.3103448275862,79.36031984007997,79.41029485257371,79.46026986506746,79.51024487756122,79.56021989005497,79.61019490254873,79.66016991504247,79.71014492753623,79.76011994002998,79.81009495252374,79.86006996501749,79.91004497751125,79.960019990005,80.00999500249875,80.0599700149925,80.10994502748626,80.15992003998001,80.20989505247377,80.25987006496752,80.30984507746128,80.35982008995502,80.40979510244878,80.45977011494253,80.50974512743628,80.55972013993004,80.60969515242378,80.65967016491754,80.70964517741129,80.75962018990505,80.8095952023988,80.85957021489256,80.9095452273863,80.95952023988006,81.00949525237381,81.05947026486757,81.10944527736132,81.15942028985508,81.20939530234882,81.25937031484258,81.30934532733633,81.35932033983009,81.40929535232384,81.45927036481758,81.50924537731134,81.55922038980509,81.60919540229885,81.6591704147926,81.70914542728636,81.7591204397801,81.80909545227387,81.85907046476761,81.90904547726137,81.95902048975512,82.00899550224888,82.05897051474263,82.10894552723639,82.15892053973013,82.2088955522239,82.25887056471764,82.3088455772114,82.35882058970515,82.40879560219891,82.45877061469265,82.5087456271864,82.55872063968016,82.6086956521739,82.65867066466767,82.70864567716141,82.75862068965517,82.80859570214892,82.85857071464268,82.90854572713643,82.95852073963019,83.00849575212393,83.0584707646177,83.10844577711144,83.1584207896052,83.20839580209895,83.25837081459271,83.30834582708646,83.35832083958022,83.40829585207396,83.45827086456772,83.50824587706147,83.55822088955522,83.60819590204898,83.65817091454272,83.70814592703648,83.75812093953023,83.80809595202399,83.85807096451774,83.9080459770115,83.95802098950524,84.007996001999,84.05797101449275,84.10794602698651,84.15792103948026,84.20789605197402,84.25787106446776,84.30784607696152,84.35782108945527,84.40779610194903,84.45777111444278,84.50774612693654,84.55772113943029,84.60769615192403,84.65767116441779,84.70764617691154,84.7576211894053,84.80759620189905,84.8575712143928,84.90754622688655,84.95752123938031,85.00749625187406,85.05747126436782,85.10744627686157,85.15742128935533,85.20739630184907,85.25737131434283,85.30734632683658,85.35732133933034,85.40729635182409,85.45727136431785,85.5072463768116,85.55722138930535,85.6071964017991,85.65717141429285,85.70714642678661,85.75712143928035,85.80709645177411,85.85707146426786,85.90704647676162,85.95702148925537,86.00699650174913,86.05697151424287,86.10694652673664,86.15692153923038,86.20689655172414,86.25687156421789,86.30684657671165,86.3568215892054,86.40679660169916,86.4567716141929,86.50674662668666,86.55672163918041,86.60669665167416,86.65667166416792,86.70664667666166,86.75662168915542,86.80659670164917,86.85657171414293,86.90654672663668,86.95652173913044,87.00649675162418,87.05647176411794,87.10644677661169,87.15642178910545,87.2063968015992,87.25637181409296,87.3063468265867,87.35632183908046,87.40629685157421,87.45627186406797,87.50624687656172,87.55622188905548,87.60619690154923,87.65617191404297,87.70614692653673,87.75612193903048,87.80609695152424,87.85607196401799,87.90604697651175,87.95602198900549,88.00599700149925,88.055972013993,88.10594702648676,88.1559220389805,88.20589705147427,88.25587206396801,88.30584707646177,88.35582208895552,88.40579710144928,88.45577211394303,88.50574712643679,88.55572213893053,88.6056971514243,88.65567216391804,88.70564717641179,88.75562218890555,88.8055972013993,88.85557221389305,88.9055472263868,88.95552223888056,89.00549725137431,89.05547226386807,89.10544727636182,89.15542228885558,89.20539730134932,89.25537231384308,89.30534732633683,89.35532233883059,89.40529735132434,89.4552723638181,89.50524737631184,89.5552223888056,89.60519740129935,89.65517241379311,89.70514742628686,89.7551224387806,89.80509745127436,89.85507246376811,89.90504747626187,89.95502248875562,90.00499750124938,90.05497251374312,90.10494752623688,90.15492253873063,90.20489755122439,90.25487256371814,90.3048475762119,90.35482258870564,90.4047976011994,90.45477261369315,90.50474762618691,90.55472263868066,90.60469765117442,90.65467266366817,90.70464767616193,90.75462268865567,90.80459770114942,90.85457271364318,90.90454772613693,90.95452273863069,91.00449775112443,91.0544727636182,91.10444777611194,91.1544227886057,91.20439780109945,91.2543728135932,91.30434782608695,91.35432283858071,91.40429785107446,91.45427286356822,91.50424787606197,91.55422288855573,91.60419790104947,91.65417291354323,91.70414792603698,91.75412293853073,91.80409795102449,91.85407296351823,91.904047976012,91.95402298850574,92.0039980009995,92.05397301349325,92.10394802598701,92.15392303848076,92.20389805097452,92.25387306346826,92.30384807596202,92.35382308845577,92.40379810094953,92.45377311344328,92.50374812593704,92.55372313843078,92.60369815092454,92.65367316341829,92.70364817591205,92.7536231884058,92.80359820089954,92.8535732133933,92.90354822588705,92.95352323838081,93.00349825087456,93.05347326336832,93.10344827586206,93.15342328835582,93.20339830084957,93.25337331334333,93.30334832583708,93.35332333833084,93.40329835082458,93.45327336331835,93.50324837581209,93.55322338830585,93.6031984007996,93.65317341329336,93.7031484257871,93.75312343828087,93.80309845077461,93.85307346326836,93.90304847576212,93.95302348825587,94.00299850074963,94.05297351324337,94.10294852573713,94.15292353823088,94.20289855072464,94.25287356321839,94.30284857571215,94.3528235882059,94.40279860069965,94.4527736131934,94.50274862568716,94.55272363818091,94.60269865067467,94.65267366316841,94.70264867566218,94.75262368815592,94.80259870064968,94.85257371314343,94.90254872563717,94.95252373813094,95.00249875062468,95.05247376311844,95.10244877561219,95.15242378810595,95.2023988005997,95.25237381309346,95.3023488255872,95.35232383808096,95.40229885057471,95.45227386306847,95.50224887556222,95.55222388805598,95.60219890054972,95.65217391304348,95.70214892553723,95.75212393803099,95.80209895052474,95.8520739630185,95.90204897551224,95.95202398800599,96.00199900049975,96.0519740129935,96.10194902548726,96.151924037981,96.20189905047476,96.25187406296851,96.30184907546227,96.35182408795602,96.40179910044978,96.45177411294353,96.50174912543729,96.55172413793103,96.60169915042479,96.65167416291854,96.7016491754123,96.75162418790605,96.8015992003998,96.85157421289355,96.90154922538731,96.95152423788106,97.0014992503748,97.05147426286857,97.10144927536231,97.15142428785607,97.20139930034982,97.25137431284358,97.30134932533733,97.35132433783109,97.40129935032483,97.4512743628186,97.50124937531234,97.5512243878061,97.60119940029985,97.65117441279361,97.70114942528735,97.75112443778112,97.80109945027486,97.85107446276862,97.90104947526237,97.95102448775611,98.00099950024988,98.05097451274362,98.10094952523738,98.15092453773113,98.20089955022489,98.25087456271864,98.3008495752124,98.35082458770614,98.4007996001999,98.45077461269365,98.50074962518741,98.55072463768116,98.60069965017492,98.65067466266866,98.70064967516242,98.75062468765617,98.80059970014993,98.85057471264368,98.90054972513744,98.95052473763118,99.00049975012493,99.05047476261869,99.10044977511244,99.1504247876062,99.20039980009994,99.2503748125937,99.30034982508745,99.35032483758121,99.40029985007496,99.45027486256872,99.50024987506247,99.55022488755623,99.60019990004997,99.65017491254373,99.70014992503748,99.75012493753124,99.80009995002499,99.85007496251875,99.9000499750125,99.95002498750625,100.0]} From b824901c15ee3e0f87ef8a31db9e8cd2501282bf Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Wed, 11 Dec 2024 18:13:13 +0600 Subject: [PATCH 60/63] "added changes" --- .../math/base/special/cosc/test/fixtures/julia/data.json | 2 +- .../base/special/cosc/test/fixtures/julia/large_positive.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/data.json b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/data.json index 34ca85469bcb..50a70c49b713 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/data.json +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/data.json @@ -1 +1 @@ -{"expected":[-0.01,-0.00988692665446217,-0.009530417260232635,-0.008939001927057518,-0.00812700023963896,-0.007114174661777941,-0.005925249651897664,-0.004589308189120179,-0.003139080437401436,-0.001610141944230643,-0.000040041013955833456,0.0015326233416345881,0.0030691502352163075,0.004531689196248325,0.005884172493081779,0.007093204522074692,0.008128886334342557,0.008965554944794535,0.009582419144642727,0.009964076066946442,0.01010089567328384,0.009989263566841785,0.009631676013797021,0.009036684685486062,0.008218692329369866,0.007197604246304405,0.005998344004833064,0.004650245172536397,0.0031863339073372196,0.001642519952343532,0.000056715849575066915,-0.00153209402566305,-0.0030848117512741317,-0.0045631879117862895,-0.005930763748120867,-0.007153770198919874,-0.008201961665838864,-0.009049363918998405,-0.00967491765064457,-0.010063001734130994,-0.010203823189262884,-0.010093664121865643,-0.009734979415048518,-0.009136342615950489,-0.008312241194704922,-0.00728272606016411,-0.0060729238083116685,-0.004712423565792373,-0.0032345533890227388,-0.001675563912446815,-0.0000737392399667339,0.001531543115552564,0.00310078016369045,0.004595315448258029,0.0059782912241642,0.007215557347592569,0.008276514468868288,0.009134870711019328,0.009769293124595185,0.010163937779373152,0.010308845323473495,0.010200192137384127,0.009840390753724568,0.009238036916283918,0.008407704423026918,0.0073695926446301525,0.006149035240488571,0.004775882018532973,0.003283769019197351,0.0017092946699876987,0.00009112218696606803,-0.001530969764797153,-0.0031170648437149825,-0.004628091205258873,-0.006026783911534547,-0.007278603873109481,-0.008352590664382306,-0.009222128157529003,-0.00986560404352474,-0.010266946900304674,-0.010416027464426008,-0.010308914090387096,-0.009947975959452496,-0.009341831339686926,-0.008505142009038258,-0.007458258740058715,-0.006226726414999595,-0.004840660803149927,-0.00333401220293789,-0.0017437339512144095,-0.0001088761619285668,0.001530373082350148,0.0031336755463287234,0.004661535387110025,0.0060762720085808086,0.007342949264059696,0.008430238095294144,0.009311191309838516,0.00996391133861546,0.010372094428864201,0.010525437750984275,0.010419899256959096,0.010057803740838872,0.009447792329506606,0.008604616481879815,0.007548781402151541,0.006306047483438199,0.0049068019008445575,0.0033853156810923096,0.0017789044101855964,0.00012701313104154568,-0.00152975212978499,-0.0031506224300722734,-0.004695669045019289,-0.006126786985255266,-0.007408634676172836,-0.008509506628087186,-0.009402117551157869,-0.010064278525306006,-0.01047944847111701,-0.010637147218504657,-0.010533219861166827,-0.010169945733445008,-0.009555989162640333,-0.008706193040386213,-0.00764122012567864,-0.006387050744406665,-0.004974349093233294,-0.0034377136020542084,-0.0018148296788304194,-0.00014554558228247226,0.0015291059182347367,0.0031679160781232906,0.004730514121913109,0.006178361650754986,0.0074757030212299624,0.008590448260943039,0.009494966721381806,0.01016677184176389,0.010589080056074333,0.01075122995439325,0.010648951233553383,0.010284476657319522,0.009666494102209426,0.008809939697100646,0.007735636976214574,0.006469790759651679,0.0050433480599028115,0.003491241598222934,0.0018515344202770054,0.00016448655416644695,-0.0015284334051064155,-0.0031855675207004695,-0.004766093500153822,-0.0062310302255206415,-0.007544199061731474,-0.008673117238872902,-0.009589801249979152,-0.010271460396355445,-0.01070106329419811,-0.010867763263796957,-0.01076717197996795,-0.010401474484817446,-0.0097793825602118,-0.00891592743171094,-0.007832096730511445,-0.006554324477814246,-0.00511384648238484,-0.0035459368674946967,-0.0018890443857169051,-0.00018384966640662659,0.0015277334905348747,0.003203588258907899,0.004802431052346535,0.006284828417937068,0.007614169511750057,0.008757570176396957,0.009686686297598708,0.01037841632480821,0.010815475546331858,0.01098682784620731,0.01088796416152825,0.01052102061949433,0.009894733270925042,0.009024230354636906,0.007930667026167472,0.006640711366395806,0.00518589415503449,0.0036018382601906906,0.0019273864750659596,0.00020364915265412223,-0.0015270050135687122,-0.0032219902901132642,-0.0048395516954862485,-0.00633979350608419,-0.007685663144457024,-0.008843866188345628,-0.009785689907073791,-0.010487714957811752,-0.010932397603869465,-0.011108507983824576,-0.011011413486579361,-0.010643200086942263,-0.010012628475892515,-0.009134925881564053,-0.00803141852132107,-0.006729013552570935,-0.005259543103367455,-0.0036589863718344637,-0.001966588801736915,-0.00022389989546712193,0.0015262467480482893,0.003240786134992019,0.004877481448689318,0.006395964424944249,0.0077587309068310635,0.008932067029426978,0.009886883164553559,0.010599434999880308,0.01105191388104099,0.011232891742606404,0.011137609515594709,0.010768101738503401,0.010133154121412417,0.009248094919780498,0.00813442506516627,0.006819295973559219,0.0053348477104333165,0.0037174236422587853,0.002006680761836088,0.0002446174637050831,-0.0015254573981639328,-0.0032599888663503917,-0.004916247494804226,-0.00645338185948109,-0.007833426042127466,-0.009022237243243287,-0.009990340371570247,-0.010713658720364531,-0.011174112620279932,-0.0113600711870085,-0.011266645880046446,-0.010895818468891231,-0.010256400069519504,-0.009363822067268227,-0.00823976388014558,-0.006911626537311458,-0.005411864851883404,-0.0037771944615355283,-0.0020476931081573504,-0.00026581815252941317,0.0015246355936486423,0.0032796121398813776,0.004955878246193867,0.006512088344072049,0.007909804220715057,0.009114444321521939,0.010096139228910174,0.01083047215759177,0.011299086111719097,0.011490142609518077,0.011398620516371472,0.011026447448835167,0.010382460323554851,0.00948219582556923,0.008347515756775607,0.00700607629434954,0.00549065404042726,0.003838345283298632,0.0020896580293490383,0.00028751902624220564,-0.0015237798845877746,-0.003299670226990114,-0.004996403415038089,-0.0065721283687898355,-0.007987923679968019,-0.009208758874376458,-0.010204361033252212,-0.010949965337194096,-0.011426930927965387,-0.01162320677618236,-0.011533635916259543,-0.01116009037397745,-0.010511433269506563,-0.009603308827561241,-0.008457765262127215,-0.007102719621677949,-0.005571277580452986,-0.0039009247460562724,-0.002132609234697734,-0.0003097379641832494,0.0015228887357929956,0.00332017804986942,0.0050378540885072905,0.006633548493105717,0.00806784537393949,0.009305254812510079,0.01031509088761188,0.011072232505793696,0.011557748175405612,0.011759369189448235,0.011671799394609888,0.011296853731357609,0.010643421934430644,0.009727258081365882,0.00857060096310209,0.007201634419757122,0.00565380073366025,0.003964983803162525,0.0021765820449820453,0.00033249370996061596,-0.0015219605207158697,-0.003341151218990552,-0.00508026280922129,-0.006696397467611093,-0.008149633133637214,-0.009404009542339973,-0.010428417926743648,-0.011197372381315067,-0.01169164376342075,-0.011898740369753472,-0.01181322337662648,-0.011436849084956653,-0.010778534263371465,-0.009854145231748162,-0.008686115665733228,-0.007302902323647602,-0.005738291896619945,-0.004030575862183344,-0.002221613489926448,-0.0003558059242827915,0.0015209935148396514,0.003362606073222352,0.005123663661415923,0.006760726364439712,0.008233353838774774,0.009505104175134735,0.010544435558748188,0.011325488421326635,0.011828728693012117,0.01204143615744952,0.01195802570566827,0.011580193381905555,0.010916883416353232,0.00998407684047834,0.008804406671879646,0.007406608929514508,0.005824822791289849,0.004097756934445488,0.0022677424128073795,0.0003796952417209309,-0.0015199858885156523,-0.0033845597227788226,-0.0051680923633116785,-0.006826588717109863,-0.008319077601981749,-0.009608623751342376,-0.010663241724268918,-0.011456689110939219,-0.011969119366495626,-0.012187578036788896,-0.012106329973623976,-0.011727009281129073,-0.01105858808715264,-0.010117164687290837,-0.008925576054795938,-0.007512844037826396,-0.005913468669586753,-0.004166585795663758,-0.002315009582837331,-0.0004041833317320204,0.00151893569917239,0.0034070300952478713,0.005213586366194846,0.00689404067060509,0.008406877966526699,0.009714657481423113,0.010784939174781327,0.011591088271950845,0.012112937920077005,0.012337293483882128,0.012258265875760156,0.011877425506361262,0.01120377284574724,0.01025352609321708,0.009049730955228595,0.0076217019146873,0.006004308533256249,0.00423712415859844,0.0023634578160154794,0.00042929296432670666,-0.0015178408828486465,-0.0034300359849442144,-0.005260184960803945,-0.006963141142563334,-0.008496832118737259,-0.009823299004609742,-0.010909635771645183,-0.011728805395083586,-0.0122603125813083,-0.012490716340718397,-0.012413969592181787,-0.012031577225672833,-0.011352568506508866,-0.010393284268267678,-0.009176983899832552,-0.007733281572913899,-0.006097425370375175,-0.0043094368588250075,-0.0024131321051841085,-0.00045504808080494644,0.0015166992449763606,0.0034535971058876984,0.005307929391640506,0.00703395199656127,0.008589021116394065,0.009934646667183755,0.011037444807740571,0.011869965997356654,0.012411378053621193,0.01264798721755697,0.012573584198265635,0.012189606459857474,0.011505112524436771,0.010536568685619762,0.0093074531439088,0.007847687074605545,0.006192906409989943,0.004383592054774834,0.0024640797601373898,0.00048147387000675127,-0.0015155084503307484,-0.0034777341487035773,-0.005356862979918629,-0.007106538228550186,-0.008683530134531634,-0.01004880382199437,-0.011168485353712086,-0.012014702006836162,-0.012566275930364277,-0.012809253926231617,-0.012737260106664346,-0.012351662522275424,-0.011661549421945758,-0.010683515484707942,-0.009441263040645211,-0.007965027857164334,-0.006290843396517416,-0.004459661443360502,-0.002516350558681798,-0.0005085968506047051,0.0015142660120755424,0.003502468841801931,0.0054070312559075595,0.007180968167638807,0.008780448730199682,0.010165879151148737,0.011302882631036643,0.012163152177246664,0.012725155141015774,0.01297467194717528,0.012905155543753462,0.012517902493012715,0.011822031249002064,0.010834267905846674,0.009578544439296014,0.008085419084898076,0.006391332885738158,0.004537720492602471,0.002569996909679064,0.0005364449599844065,-0.0015129692797900048,-0.0035278240172099684,-0.005458482101529113,-0.007257313692511953,-0.008879871127927713,-0.010285987013979746,-0.01144076841438057,-0.012315462535176964,-0.012888172432530941,-0.013144404933265979,-0.013077437063691641,-0.012688491730525973,-0.011986718079678929,-0.01098897675931067,-0.009719435114967555,-0.008208982028594632,-0.006494476564373363,-0.004617848692860326,-0.002625074029175856,-0.0005650476503559502,0.0015116154263880575,0.0035538236814692103,0.005511265904143077,0.007335650464937203,0.008981896527792336,0.010409247822644397,0.011582281465954499,0.012471786862916317,0.013055492889090718,0.013318625253926769,0.013254280103606731,0.012863604424271008,0.012155778548548051,0.011147800932092089,0.00986408023299002,0.008335844475682933,0.0066003815954845954,0.00470012982840901,0.0026816401308817728,0.0005944359927717659,-0.0015102014337905801,-0.003580493092072516,-0.00556543572255255,-0.007416058181949052,-0.009086629438214764,-0.010535788447934154,-0.011727568004884567,-0.01263228722027037,-0.013227290493877985,-0.013497514583281578,-0.013435869583795883,-0.013043424192202443,-0.012329390430677602,-0.011310907935924272,-0.010012632851152684,-0.008466141173911168,-0.0067091609921461235,-0.004784652271327459,-0.0027397566323579653,-0.0006246427898401269,0.0015087240772337124,0.003607858839933144,0.005621047466391402,0.00749862084847184,0.009194180035830985,0.010665742658183706,0.01187678221492805,0.012797134509085466,0.013403748736896341,0.013681264536586484,0.013622400557258236,0.013228144727447802,0.012507741269437883,0.011478474500535086,0.010165254463467898,0.008600014311765478,0.006820934022144984,0.004871509299848556,0.002799488378469224,0.0006557026979732587,-0.0015071799080418947,-0.0036359489384678225,-0.005678160090151053,-0.007583427072353721,-0.009304664555034639,-0.010799251594458353,-0.01203008679424868,-0.012966509084608432,-0.01358506127329902,-0.013870077359622441,-0.01381407891335426,-0.013417970498948804,-0.012691029056767581,-0.01165068721655711,-0.01032211558951199,-0.008737614039244647,-0.006935826646738437,-0.0049607994435985295,-0.00286090388378893,-0.0006876523601449177,0.001505565234712698,0.00366479291990011,0.005736835803278369,0.007670570383973723,0.00941820571009868,0.010936464285577633,0.012187653551363304,0.013140601418286135,0.013771432637189442,0.014064166676264553,0.014011122140930357,0.013613117511392785,0.01287946297109578,0.011827743233000787,0.010483396413877239,0.008879099032985255,0.0070539719968784826,0.005052626858393404,0.002924075595879741,0.0007205305502049192,-0.0015038761021002299,-0.0036944219394958186,-0.005797140297899653,-0.007760149582860876,-0.009534933153084136,-0.01107753820692213,-0.012349664051856333,-0.013319612817118734,-0.013963079016428607,-0.014263758300036197,-0.014213760156853028,-0.01381381413037713,-0.013073264178693695,-0.012009851014782252,-0.010649287480762942,-0.00902463711022394,-0.007175510890671145,-0.005147101733607314,-0.0029890801815565184,-0.0007543783299625474,0.0015021082684972948,0.0037248688884814903,0.005859142995939682,0.007852269114008591,0.009654983971142277,0.011222639887424142,0.012516310320976625,0.013503756205283617,0.014160229094615801,0.014469091116130787,0.01442223620659061,0.014020301979428757,0.01327266670491837,0.012197231166414461,0.010819990449348012,0.009174405896575442,0.007300592396315815,0.0052443407354430495,0.00305599883852761,0.0007892392203539142,-0.0015002571803482342,-0.0037561685165216764,-0.005922917317570183,-0.007947039476913437,-0.009778503227204973,-0.011371945569670666,-0.012687795607829424,-0.01369325697440835,-0.014363124967141193,-0.014680418041143398,-0.014636807844256994,-0.014232836916291836,-0.013477918382556037,-0.01239011732871508,-0.01099571891622731,-0.009328593553228418,-0.007429374445238039,-0.005344467489871771,-0.0031249176350564944,-0.0008251593882101772,0.001498317944330809,0.0037883575646898123,0.005988540973186719,0.008044577670688067,0.009905644548561236,0.011525641928607123,0.012864335217565165,0.013888353909628899,0.014572023139021235,0.014898007068620149,0.014857748000421564,0.014451690096772446,0.01368928188535334,0.012588757156183593,0.011176699311977477,0.009487399569802346,0.007562024500735143,0.0054476131094249956,0.0031959278806493285,0.0008621878502874215,-0.0014962852964667261,-0.0038214749100170414,-0.006056096281334168,-0.00814500767903409,-0.010036570768324824,-0.01168392685501652,-0.013046157418718991,-0.014089300199438874,-0.014787195613167586,-0.015122142409512167,-0.015085346146991647,-0.014677149135446097,-0.013907035855790523,-0.012793413383655425,-0.0113631718797509,-0.00965103562990568,-0.007698720288068272,-0.0055539167685768045,-0.0032691265311028126,-0.0009003766964703528,0.0014941535679170478,0.003855561722788522,0.006125670515331982,0.008248460999282507,0.010171454625439188,0.011847010310674214,0.013233504433751023,0.014296364538302181,0.015008931078796509,0.015353125737739847,0.015319909569623626,0.014909519373670103,0.01413147613728624,0.0130043649918816,0.011555391744804534,0.009819726557275166,0.007839650592711016,0.005663526333004577,0.0033446166317085586,0.0009397813342606426,-0.0014919166470259346,-0.00389066163793881,-0.006197356281645716,-0.008355077220264368,-0.010310479529530386,-0.012015115262961428,-0.013426633521814398,-0.014509832332133389,-0.015237536210895197,-0.01559127755234534,-0.015561764759421884,-0.01514912526666108,-0.014362917122283454,-0.013221908482918276,-0.01175363008496115,-0.009993711351404286,-0.007985016134274239,-0.005776599048728849,-0.0034225078028503587,-0.0009804607569779006,0.001489567937158992,0.0039268209420180444,0.006271251933469948,0.008465004654331396,0.010453840397743728,0.012188478707671256,0.013625818163939131,0.014730007018010421,0.01547333709304844,0.0158369386691664,0.01581125893718057,0.015396311902883136,0.014601693229142412,0.013446359277576559,0.011958175413308776,0.010173244322677057,0.008135030524631656,0.005893302297866349,0.0035029167728239732,0.0010224778383769964,-0.0014871003097710904,-0.003964088777422741,-0.006347462023384735,-0.00857840102955967,-0.010601744571577303,-0.012367352789886227,-0.013831349362103413,-0.014957211510959738,-0.0157166807775033,-0.01609047185663239,-0.016068761725133097,-0.01565144667071293,-0.014848160522422897,-0.01367805324879071,-0.012169334985884152,-0.010358596338355043,-0.008289921319845869,-0.0060138144286458195,-0.0035859679633027165,-0.001065899656782016,0.0014845060520989296,0.0040025173657611225,0.0064260977994751774,0.008695434248910875,0.010754412822790367,0.012552006034062167,0.014043537065175988,0.015191789792313391,0.015967936998171076,0.016352263632192436,0.016334666983135498,0.015914921089308,0.01510269849307102,0.013917348406577077,0.01238743634879343,0.010550056192249302,0.008449931176799973,0.006138325668332858,0.0036717941336340152,0.0011107978522340363,-0.0014817768087461913,-0.004042162252482353,-0.006507277749850236,-0.008816283224044635,-0.010912080458641957,-0.01274272469594658,-0.014262711736419728,-0.015434108656074051,-0.016227500054346724,-0.016622726238085854,-0.01660939482846842,-0.016187152822868107,-0.015365712017225888,-0.014164626752362209,-0.012612829041148344,-0.010747932112644135,-0.00861531912689057,-0.006267039128891068,-0.003760537090971077,-0.0011572490206432794,0.0014789035163416356,0.004083082575162079,0.006591128201166568,0.008941138792478176,0.011074998538095987,0.012939814250640157,0.014489226079229364,0.01568455963193187,0.01649579088533091,0.016902299817695803,0.016893393861042556,0.01646858790008491,0.015637633514912264,0.014420296322880392,0.012845886472440166,0.010952553425031049,0.00878636198084347,0.006400171916557612,0.003852348474225018,0.001205335149493303,-0.0014758763303122046,-0.004125341358151963,-0.006677783977501164,-0.00907020472798412,-0.01124343521221113,-0.013143601033070898,-0.014723456940057058,-0.015943561106138794,-0.01677325935891348,-0.017191454816652803,-0.017187143618797848,-0.016759703163586936,-0.015918925332827495,-0.014684793446642131,-0.013087007995559244,-0.011164272388517736,-0.008963355880674225,-0.0065379563580783735,-0.003947390620945601,-0.0012551441002949801,0.0014726845426650819,0.004169005836659759,0.006767389126796341,0.009203698855466397,0.011417677203762454,0.013354434049408948,0.014965807410119642,0.016211560664404667,0.017060386799887944,0.01749069463624016,0.017491157291565685,0.01706100897767458,0.016210082378840997,0.014958585239220964,0.01333662119966703,0.0113834662274503,0.009146618017093154,0.006680641358166121,0.0040458375275462,0.0013067701437440014,-0.0014693164894945697,-0.004214147813740005,-0.006860097723097219,-0.009341854283142888,-0.01159803144326871,-0.013572686980568186,-0.015216709150542095,-0.01648903768441214,-0.017357688788491536,-0.01780055857058245,-0.01780598472570211,-0.017373052226689063,-0.016511635039784277,-0.015242172367376374,-0.013595184450611883,-0.011610539382894846,-0.009336488533302297,-0.006828493904860343,-0.004147875914810678,-0.0013603145544175315,0.0014657594467195533,0.004260844054152656,0.006956074753967206,0.009484920766687369,0.011784826881051801,0.013798760401989628,0.015476624969149652,0.016776506209538723,0.01766571826299745,0.018121625063668836,0.018132215756499145,0.01769641964107276,0.016824152418719495,0.015536092116421414,0.013863189710639153,0.011845926012245675,0.009533332639218631,0.0069818007419346585,0.004253706412396606,0.0014158862728771305,-0.0014619995123083566,-0.00430917671959886,-0.00705549710381825,-0.009633166222115746,-0.011978416497832857,-0.014033084247438328,-0.015746051681265503,-0.01707451814002669,-0.01798506896573736,-0.01845451532759405,-0.018470483910864078,-0.018031741493678068,-0.017148245933255975,-0.01584092180037047,-0.01414116567388682,-0.012090092769458544,-0.009737542963765855,-0.0071408702303832885,-0.004363544878129201,-0.001473602644254898,0.0014580214729518557,0.004359233850482814,0.007158554645466938,0.0097868784066856,0.012179179539710703,0.01427612054869527,0.016025523291719142,0.017383666783279565,0.01831637927773816,0.01879989736963453,0.01882147052916997,0.018379695715318146,0.01748457332278261,0.016157282560405096,0.014429681259710532,0.012343541903364506,0.009949542177106122,0.007306034424402164,0.004477623870321846,0.0015335902438228164,-0.0014538086527928896,-0.004411109900092095,-0.007265451454066335,-0.009946366789984437,-0.012387524007289036,-0.01452836648787009,-0.016315614540938817,-0.017704590811336143,-0.018660336494081123,-0.019158490483088687,-0.019185909362704312,-0.018741012486104755,-0.017833843119877,-0.01648584360424345,-0.01472934951240313,-0.012606814717344234,-0.010169785919654237,-0.007477651391260596,-0.004596194294233417,-0.0015959858017241364,0.0014493427413980271,0.004464906327954762,0.0073764071597169295,0.010111964640790455,0.012603889433317896,0.014790357804757985,0.01661694486467684,0.018037978681067334,0.019017681600231897,0.01953107026540971,0.019564591711993963,0.01911647936800561,0.018196819649855207,0.016827326947297685,0.015040831963555533,0.012880495440505985,0.010398766080577401,0.00765610780915488,0.004719527247166793,0.0016609372410323162,-0.0014446035976513863,-0.004520732260142814,-0.007491658457589216,-0.01028403135929919,-0.012828749988629842,-0.015062672608372978,-0.016930182824770386,-0.01838457358146651,-0.019389214619192453,-0.019918474237303377,-0.019958372181729127,-0.0195069470545439,-0.018574328632701375,-0.01718251272630553,-0.015364843522382056,-0.01316521556862294,-0.010637014475414253,-0.007841821882691563,-0.004847916090733413,-0.0017286048456615758,0.0014395690256405519,0.004578705225475791,0.0076114607973693975,0.0104629550890398,0.013062617962545108,0.015345935649716385,0.017256051077630397,0.018745178982852072,0.019775800610678917,0.020321608148466477,0.02036817514037183,0.01991333582598348,0.018967263473787403,0.01755224516773573,0.015702157970090905,0.013461658742705098,0.010885106980669185,0.008035246622244304,0.004981678783586611,0.0017991625774623876,-0.0014342145178680122,-0.004638951977968503,-0.00773609027735929,-0.010649155648402716,-0.013306047671493584,-0.01564082312223433,-0.0175953319581651,-0.019120664875185333,-0.020178376417009432,-0.020741453069891686,-0.020795001987215626,-0.02033664281309794,-0.019376592344255338,-0.017937439307072388,-0.01605361414717347,-0.01377056624452489,-0.01114366819302468,-0.008236873541285012,-0.0051211605136237655,-0.00187279956519293,0.0014285129602282405,0.004701609417503863,0.00786584577273261,0.010843087828347095,0.01355963985860181,0.015948068067589742,0.017948873769948425,0.019511974797451554,0.02059795826643023,0.02117907338963555,0.02123993934715474,0.020777950190207572,0.01980336616917874,0.018339088571549058,0.01642012293775027,0.014092743202077183,0.011413376692503821,0.008447236835180876,0.005266736675474448,0.0019497217920851394,-0.001422434292103143,-0.004766825622644666,-0.008001051332409439,-0.011045245110773818,-0.01382404665772478,-0.016268466477704344,-0.018317597888086602,-0.019920133777660724,-0.021035650363780307,-0.021635625849232957,-0.021704168334336447,-0.021238434439203365,-0.020248727662251685,-0.018758273358612965,-0.016802675173390316,-0.014429065614320767,-0.011694971002926942,-0.008666918116213984,-0.005418816247279273,-0.0020301540135732573,0.00141594511359963,0.004834761011787389,0.008142058884927753,0.011256163871514341,0.014099977208244078,0.016602884199987043,0.01870250679997739,0.020346257324130104,0.02149265462138347,0.022112369782274294,0.022188975050966963,0.021719376851525408,0.02071392157053247,0.019196170766077877,0.017202350600789295,0.014780488324228756,0.011989256359865178,0.008896551793144617,0.005577845630634443,0.0021143419426140086,-0.00140900823032221,-0.004905589651580713,-0.008289251300775069,-0.011476428143240118,-0.014388204022376175,-0.016952264771848306,-0.019104693231692664,-0.02079156163410272,-0.021970281710725268,-0.022610678745961104,-0.0226957625177727,-0.02222217546549378,-0.021200306322634314,-0.019654065658479634,-0.017620328084198004,-0.01514805409293201,-0.012297112416656496,-0.009136831200036187,-0.005744313029523571,-0.0022025547471407753,0.0014015821240635268,0.00497950073477281,0.008443045867156036,0.011706675027270718,0.014689570225327374,0.017317638333743286,0.0195253505349204,0.021257375216423152,0.02246996364890464,0.023132053771873592,0.02322606426917705,0.022748358673196818,0.02170936730991113,0.02013336328872522,0.018057897245600772,0.015532903956532736,0.012619502043745446,0.009388515598962269,0.005918753458577819,0.0022950879128633586,-0.001393620335307468,-0.005056700253527264,-0.008603898241440104,-0.01194760085978936,-0.015004997811135755,-0.01770013179802034,-0.01996578454237594,-0.021745152162181716,-0.022993268174411528,-0.02367813850517202,-0.02378155989064526,-0.023299600775860938,-0.022242732074113963,-0.020635603736159934,-0.018516471784701678,-0.015936289082210144,-0.01295748140668488,-0.009652438205476687,-0.006101754488728146,-0.0023922665352372995,0.0013850707403445341,0.005137412898897979,0.00877230696196879,0.01219996825804101,0.015335497084391398,0.018100980484951536,0.0204274271397272,0.022256487342528438,0.0235419152162024,0.024250736553856247,0.024364092829787156,0.02387773982118252,0.022802187728621838,0.021162478473522154,0.018997604768499352,0.016359584383080977,0.01331221154493205,0.009929515415432962,0.006293962860044494,0.002494449117478005,-0.0013758747019309342,-0.005221884222752981,-0.008948818610024157,-0.012464614196551519,-0.015682177491412368,-0.018521541478982,-0.020911851851144154,-0.02279313386825834,-0.024117795820529107,-0.024851831433870486,-0.024975690879125184,-0.02448479812296558,-0.02338970100610141,-0.021715849438222776,-0.019503006238796274,-0.016804304203895056,-0.013684971718791142,-0.010220757448281943,-0.0064960921183283725,-0.0026020319676233737,0.0013659660675632635,0.0053103831052041615,0.009134033735229384,0.012742459293362908,0.01604626008539258,0.018963309009365437,0.021420791795844343,0.023357023213850973,0.024722993974344194,0.025483609574772016,0.025618589810057612,0.025123005945741614,0.02400744140645317,0.02229777106101563,0.02003456355823526,0.017272120454566015,0.014077174847699055,0.010527280667149724,0.00670893146517092,0.0027154543076810126,-0.001355269983302946,-0.005403204578808768,-0.0093286136793114,-0.01303451852313505,-0.016429091920474804,-0.01942793222240646,-0.02195616044737445,-0.023950288492718744,-0.0253598118559921,-0.026148486948258647,-0.0262952607385001,-0.025794828938931827,-0.02465780801919247,-0.02291051580128179,-0.02059436500497909,-0.01776488364908231,-0.014490385432373245,-0.010850321892127642,-0.006933356052438982,-0.0028352042329100402,0.001343701483289065,0.0055006730708051866,0.009533288461087112,0.01334191361952857,0.016832162732151684,0.019917235790678996,0.02252007571961153,0.02457529147476555,0.026030799158008922,0.026849140003096225,0.027008441928198852,0.026503000031845518,0.02534346071923232,0.02355660385789394,0.021184727237718838,0.0182846474077417,0.014926340439833742,0.011191255093330483,0.007170339003769659,0.0029618256906964097,-0.0013311638051185619,-0.005603146136868212,-0.0097488659201358,-0.013665887485905364,-0.01725712433912373,-0.02043324390195747,-0.023114888018489495,-0.025234654067561823,-0.026738787269332275,-0.027588541741460533,-0.027761175894596028,-0.02725055665931306,-0.026067356591233187,-0.024238837874562352,-0.02180822739247584,-0.01883369710656195,-0.015386973738882462,-0.011551610938363124,-0.007420965510615344,-0.003095926688151766,0.001317546368469427,0.005711018774875616,0.009976242359706584,0.014007821004124073,0.01770581329901362,0.02097820829258311,0.023743213042684282,0.025931295145825223,0.027486929283124854,0.028370003962019105,0.028556852869357708,0.02804088438713199,0.026832792634280456,0.024960343647394165,0.022467740748822865,0.01941458351650481,0.0158744448106398,0.01193309978019285,0.007686449432636469,0.003238188987982796,-0.0013027223377760275,-0.005824728425680911,-0.010216414983354617,-0.014369252720089926,-0.018180277472766522,-0.021554641143706487,-0.024407970298402207,-0.026668473820125462,-0.02827874702238794,-0.02919722693561687,-0.02939926193511275,-0.02887776825881658,-0.027643456047594384,-0.025724618081665002,-0.023166485126521485,-0.020030162476652846,-0.016391172632809436,-0.012337638813005081,-0.007968152937031342,-0.0033893796166696746,0.0012865456681828138,0.0059447607908016,0.010470496487726263,0.014751901997059997,0.018682807307600694,0.022165353853743627,0.02511242852427696,0.027449840497666037,0.029118186562759708,0.030074358085368777,0.030292651457416858,0.02976545350647459,0.02850348371523104,0.02653558594993448,0.023908073458644534,0.02068364190285547,0.01693987585888799,0.012767384304911854,0.008267609845855855,0.0035503645920629645,-0.001268847505680996,-0.006071656625437231,-0.01073973225996102,-0.015157696370589111,-0.019215972845949572,-0.022813502949086663,-0.02586025951727711,-0.028279497422870004,-0.030009684099374156,-0.031006061634676344,-0.031241800847709906,-0.03070871768062537,-0.02941753291477632,-0.02739766739541358,-0.0246965763535603,-0.02137863776437286,-0.017523620700057814,-0.013224770050090028,-0.008586553534054013,-0.003722125385264724,0.0012494317748765991,0.006206019700854233,0.011025520737871936,0.015588804021938352,0.019782667721332903,0.023502644714648777,0.026655602229819216,0.029162070816599675,0.030958244478119557,0.03199760169175224,0.032252106215877936,0.03171295678576024,0.03039086580102231,0.028315858631141024,0.02553659693226033,0.0221192410898684,0.01814587828909568,0.01371255348646907,0.008926950447013294,0.0039057787725803998,-0.0012280697379313018,-0.006348526174896356,-0.01132943763183667,-0.01604767252262053,-0.020386161729657393,-0.0242368005393391,-0.02750313949968943,-0.030102797291907922,-0.03196953532616538,-0.03305494189531506,-0.03332968315332751,-0.03278428870056085,-0.0314294509004591,-0.029295828945729185,-0.02643336084585184,-0.022910098623931986,-0.018810593791330175,-0.014233871322447118,-0.009291040603097322,-0.004102600919038977,0.0012044932410635945,0.006499935665802777,0.011653264889269998,0.016537075309099168,0.02103016399093473,0.025020535510810935,0.028408190415965918,0.031107627954894093,0.03305000052052317,0.034184865605097155,0.03448149078152378,0.033929678069340836,0.03254008575127564,0.030344037993709997,0.0273928251910677,0.023756510492187057,0.019522270167744694,0.014792307040607383,0.009681386839109296,0.004314056781926476,-0.0011783862739623283,-0.006661104396002062,-0.011999025519415231,-0.017060167747650977,-0.021718899276122607,-0.02585905350273503,-0.029376822168700217,-0.03218335456211163,-0.03420699779380387,-0.0353951217548951,-0.03571548238235808,-0.03515708805171256,-0.03373054601342297,-0.0314678784976093,-0.02842181111994807,-0.024664549211409818,-0.02028607034632479,-0.015391973344937648,-0.010100935080726955,-0.004541836254177863,0.0011493743426729977,0.006833000863593102,0.012369025707057247,0.017620555178721076,0.022457200814681267,0.026758312937909638,0.03041598635157967,0.03333776338604042,0.035448966687508125,0.036694602996596624,0.03704078950193059,0.03647566591954357,0.035009767962734924,0.032675851025373584,0.02952816638319736,0.025641205692228355,0.02110794269974495,0.016037613557147102,0.010553088626439402,0.004787898916586367,-0.0011170109838317837,-0.0070167246156316605,-0.012765906055097183,-0.01822237603496026,-0.023250623888004602,-0.02772516866856241,-0.03153368618986343,-0.03457982415788251,-0.03678563495898251,-0.03809356479522823,-0.03846794853982126,-0.037895971649023794,-0.03638807342699901,-0.03397777958142162,-0.0307209659977887,-0.026694569656549757,-0.021994776275473887,-0.016734727243078618,-0.011041800395747425,-0.005054529882909653,0.001080760506428053,0.007213528846832697,0.013192704345085515,0.01887040407466855,0.024105585848465175,0.028767547115414495,0.032739183200458495,0.03591992378523228,0.038228274120851884,0.03960389689510679,0.040009181719785805,0.03943026159467964,0.03787744914379117,0.03538507958029798,0.032010761894675124,0.027834054319310995,0.02295459434521494,0.017489727101159612,0.01157168841745989,0.005344410073992874,-0.0010399757050143568, -0.0074248477399438025,-0.013652932944865866,-0.019570175058984295, -0.02502954002236904,-0.02989466412910682,-0.034043254574452377,-0.03737015773200255,-0.039790018320897146,-0.04123946236788187,-0.041678748303125665, -0.04109284337790695, -0.03949189654672641,-0.036911093677711566,-0.03340989608476297,-0.02907067854267498,-0.023996797779897168,-0.018310136576819257,-0.012148181680284408,-0.005660705451633268,0.0009938687974208394,0.007652329712972285, 0.014150674999827556,0.020328144967100583,0.02603119346075172,0.031117298244761855,0.03545851642402368,0.038944696368763757,0.041486265668145623,0.04301652472076526,0.04349338742293708,0.04290052375832257,0.04124787360313014,0.038571516388311224,0.03493289703084617,0.030417424374802812,0.02513247388076009,0.019204841087239532,0.012777706073684902,0.006007181439886584,-0.0009414731264106246,-0.00789787806051382,-0.014690704930136092,-0.021151889295771664,-0.027120781995569207,-0.032448136484148495,-0.03699983343109193,-0.04066024980477274,-0.043335187993639154,-0.04495429095576272,-0.04547288169133723,-0.04487317920795829,-0.04316485826111046,-0.04038493613666262,-0.03659698620961514,-0.0318896945615375,-0.026374792162006874,-0.020184410616968,-0.013467923875374994,-0.006388351206328235,0.0008815921118185961,0.008163700892720166,0.015278640684767369,0.022050356436424112,0.028310420992857598,0.03390221621062065,0.03868484309385729,0.04253666353426036,0.045358384837867714,0.04707560904475849,0.047640781837326326,0.047034490284135574,0.04526607443227943,0.042373534460643014,0.0384227323338282,0.03350590423117361,0.027739517042131512,0.021261518498919243,0.01422804565659487,0.006809670052392734,-0.0008127303613872672,-0.008452372811072403,-0.01592113791948644,-0.023034193034414358,-0.029614557259915124,-0.035497495665123634,-0.040534633795878044,-0.04459768995718312,-0.04758173162654765,-0.04940787359363371,-0.05002534873600844,-0.049412897417360026,-0.04757943797181527,-0.0445639982183359,-0.04043490600837773,-0.03528825500760325,-0.029245679802397066,-0.022451491563595213,-0.015069241468690781,-0.00727779348202511,0.0007329994411377716,0.008766911441869722,0.01662614014208101,0.02411616633427197,0.0310505578343443,0.03725559911993982,0.04257463205223558,0.04687199948997537,0.050036492805309106,0.05198421598969846,0.05266079292072407,0.052042860117698514,0.050138804568472875,0.04698872454599378,0.04266361030663365,0.03726376071077053,0.030916470660572168,0.023773042346222416,0.016005190181961185,0.007800924576506711,-0.000639987064316204,-0.009110872797361436,-0.01740320447709376,-0.025311718939246018,-0.032639486558844924,-0.03920280232746915,-0.04483577828208104,-0.04939452279944773,-0.05276080179806229,-0.05484508904517152,-0.05558892726589368,-0.05496653825142696,-0.05298563827005522,-0.04968743436259676,-0.045145797086595246,-0.03946562547460371,-0.03278043989705011,-0.02524925767918015,-0.017052824240289834,-0.008389288755623357,0.000530572520549295,0.009488470446348795,0.018263930940601143,0.02663970698412353,0.03440714217315382,0.041371353762835156,0.04735610682044409,0.05220825796080843,0.05580165700999143,0.05804040761274113,0.05886140296968819,0.05823607020403734,0.056171275902273596,0.052709365692153586,0.04792733182312625,0.041935124086485594,0.03487314053260381,0.026908954791322676,0.018233355875649906,0.00905579367337897,-0.00040066152880565103,-0.009904724572618465,-0.01922253541079696,-0.02812339641494256,-0.0363854666690031,-0.043801273122293774,-0.05018290212743681,-0.05536674190906972,-0.05921765674667074,-0.061632486877791125,-0.0625427840302011,-0.06191671069946391,-0.05976005136997111,-0.056116305351812536,-0.05106585325530414,-0.04472421180730702,-0.037239414174937674,-0.028788574651262014,-0.019573716937970543,-0.00981696382451355,0.000244797654257922,0.010365647912284521,0.02029662514555336,0.02979182887031954,0.03861448753029594,0.04654284096710592,0.053375692135346146,0.05893748962269074,0.06308281315348804,0.06570014807312907,0.06671485151208935,0.06609123212243802,0.06383368651178466,0.059986858263336794,0.054634809178529885,0.04789921653551977,0.039936634133969785,0.030934878105860486,0.021108620340358097,0.010694292353985396,-0.00005557996607238711,-0.010878475554157246,-0.021508264552086598,-0.031681727113893395,-0.04114504555836772,-0.04966011036966606,-0.05701048402120923,-0.06300687391799153,-0.06749197676406793,-0.07034457112098592,-0.07148275249891736,-0.07086622560648373,-0.068497590900056,-0.0644225867831778,-0.05872927413119469,-0.05154617564343897,-0.043039408227217024,-0.03340887156492647,-0.0228835795925152,-0.011716243238079502,-0.00017723189123445188,0.011451942788159733,0.022885464374922768,0.033840205146845985,0.04404270514452145,0.05323596556231735,0.06118588850582777,0.06768720258065183,0.07256872518894625,0.07569782755373398,0.0769839870235062,0.07638133270302289,0.07389011440687411,0.0695570507731415,0.06347453948797586,0.05577874030510001,0.046646569224260345,0.03629166914295988,0.02495944785266162,0.012921297779449632,0.0004681327799632659,-0.0120966049341197,-0.024464300513265442,-0.036328707421703035,-0.04739349029666969,-0.0573795849039418,-0.0660321933991325,-0.07312724059145556,-0.07847712871210756,-0.0819356440585774,-0.08340188846345704,-0.08282313137306244,-0.08019650388575841,-0.07556948379014226,-0.06903914980047911,-0.06075021311142139,-0.05089186436229889,-0.0396935033825819,-0.02741944696490204,-0.014362735689161897,-0.0008381838553122669,0.012825163710599954,0.02629198834006269,0.03922887643880289,0.0513125223315238,0.062237754461780564,0.07172518698177673,0.07952830622706637,0.08543981374265507,0.08929706415282981,0.0909864568796878,0.09044666504488007,0.08767061227369254,0.08270613791944995,0.07565532273444199,0.06667247947873134,0.055960845598262615,0.04376804712570167,0.03038043357670634,0.016116412073490075,0.001318934515252238,-0.01365268631650838,-0.02843143784849361,-0.042651538712108625,-0.055957423863408566,-0.06801256472957097,-0.07850790727602923,-0.0871697181843753,-0.09376664180269134,-0.0981157879210721,-0.10008769235809131,-0.09961001832756423,-0.09666989599527905,-0.09131482984925766,-0.08365213773798948,-0.07384692086654425,-0.06211859983148435,-0.0487360870565604,-0.03401169990116054,-0.018293950416486213,-0.0019593764301506747,0.014596396376675138,0.03096815111613618,0.046750909068111225,0.061549855407493845,0.07499012016988563,0.0867261744098874,0.0964506084144615,0.1039020714719725,0.10887217081613709,0.111211150578966,0.11083219938661018,0.10771426698985462,0.1019033053079909,0.09351188666693157,0.08271719094928044,0.0697573929193596,0.05492652018971198,0.03856789020578361,0.02106627031240195,0.002838937543563369,-0.015674156573929662,-0.03402088692568697,-0.051747873450736386,-0.06841155664804159,-0.08358916235281315,-0.09688928786169744,-0.10796184763762298,-0.11650712937536487,-0.12228372992451296,-0.12511516506351938,-0.12489497686974772,-0.12159019677681537,-0.11524306057542304,-0.10597091272051502,-0.09396428039908976,-0.07948314187429106,-0.06285145760316106,-0.04445007546866469,-0.02470816212795454,-0.0040933499557582525,0.016899177583090532,0.037758410913658495,0.057969775791158314,0.07702764095646673,0.09444777219727384,0.10977943053792952,0.12261681705438879,0.13260957879629862,0.1394721092951341,0.14299140277451738,0.14303325292255478,0.139546624250383,0.13256606582283764,0.1222120825636204,0.10868942736762614,0.09228332678160646,0.0733537028765328,0.05232750294437881,0.029689295628156025,0.005970335890561541,-0.01826365924112258,-0.042425747944643835,-0.06592170955057823,-0.08816437359800977,-0.10858799268135634,-0.12666231393687521,-0.14190600633619366,-0.1538991114784016,-0.16229420415986737,-0.16682597531758303,-0.16731898346602686,-0.16369336078079016,-0.15596830566349987,-0.14426324394643283,-0.12879659473383145,-0.1098821330050303,-0.08792299822707564,-0.06340345500629471,-0.03687856690458388,-0.008961996634484394,0.019687806341973174,0.048382727437663975,0.07642107860306183,0.10310429250053196,0.1277538315634778,0.14972791304434163,0.16843764910725595,0.18336220837419137,0.19406262205081445,0.2001938835840536,0.20151502526600837,0.19789689761916696,0.18932742690240606,0.17591418161586236,0.15788413925089936,0.13558060839594346,0.1094573272374418,0.08006982598769283,0.04806420629408894,0.01416355370502847,-0.020847741709477344,-0.056141427884018213,-0.09086422087330824,-0.12415760806428999,-0.1551781799973049,-0.18311802607983016,-0.20722471962616415,-0.22682041856876872,-0.24131962000459461,-0.2502451293581236,-0.25324183800952077,-0.250087946155664,-0.24070331961559538,-0.22515472921520674,-0.20365778804800422,-0.17657547389889783,-0.14441319988521548,-0.10781047425583663,-0.06752926856705795,-0.024439290361676958,0.02049956973833415,0.06625727766290923,0.11175578088768122,0.15589276288422155,0.19756652586968265,0.23570146589357976,0.26927358087283626,0.29733544082962843,0.3190400507314687,0.33366305013827313,0.3406227202063703,0.3394973070841716,0.3300392206839183,0.31218572829157243,0.28606583230094695,0.25200309912586005,0.21051429046014697,0.1623037367650311,0.1082534842894091,0.049409339111457055,-0.013036977370172714,-0.07776925936671261,-0.14337144941015117,-0.20835501273819287,-0.2711885265546741,-0.33032890100276513,-0.3842536040003885,-0.4314932301851665,-0.47066373594440675,-0.5004976584229822,-0.5198736467664834,-0.5278436586178057,-0.5236572136806413,-0.5067821483258685,-0.47692137978539223,-0.43402526421586857,-0.37829921833413116,-0.31020636771813986,-0.23046508433710503,-0.14004137938069164,-0.0401362228547858,0.0678320335033543,0.182249850879551,0.3013349386437645,0.42316646220493953,0.6668959397772898,0.784572696102819,0.8966305822835551,1.0009990167107312,1.0956942247623747,1.1788573482944704,1.2487906755200475,1.3039912620028706,1.3431812596962447,1.365334331401982,1.3696976015376463,1.3558086792299628,1.3235073847970373,1.2729419137252573,1.2045692811970832,1.119150002860804,1.0177370815456632,0.9016594826725575,0.7725003908622943,0.6320706444335235,0.482377840955056,0.3255916937732503,0.16400629467421043, 0, -0.16400629467421043, -0.3255916937732503, -0.482377840955056, -0.6320706444335235, -0.7725003908622943,-0.9016594826725575,-1.0177370815456632,-1.119150002860804,-1.2045692811970832,-1.2729419137252573,-1.3235073847970373,-1.3558086792299628,-1.3696976015376463,-1.365334331401982,-1.3431812596962447,-1.3039912620028706,-1.2487906755200475, -1.1788573482944704, -1.0956942247623747, -1.0009990167107312, -0.8966305822835551,-0.784572696102819,-0.6668959397772898, -0.5457184731667526, -0.42316646220493953,-0.3013349386437645,-0.182249850879551,-0.0678320335033543,0.0401362228547858,0.14004137938069164,0.23046508433710503, 0.31020636771813986,0.37829921833413116, 0.43402526421586857,0.47692137978539223,0.5067821483258685,0.5236572136806413,0.5278436586178057,0.5198736467664834,0.5004976584229822,0.47066373594440675,0.4314932301851665,0.3842536040003885,0.33032890100276513,0.2711885265546741,0.20835501273819287,0.14337144941015117,0.07776925936671261,0.013036977370172714,-0.049409339111457055,-0.1082534842894091,-0.1623037367650311,-0.21051429046014697,-0.25200309912586005,-0.28606583230094695,-0.31218572829157243,-0.3300392206839183,-0.3394973070841716,-0.3406227202063703,-0.33366305013827313,-0.3190400507314687,-0.29733544082962843,-0.26927358087283626,-0.23570146589357976,-0.19756652586968265,-0.15589276288422155,-0.11175578088768122,-0.06625727766290923,-0.02049956973833415,0.024439290361676958,0.06752926856705795,0.10781047425583663,0.14441319988521548,0.17657547389889783,0.20365778804800422,0.22515472921520674,0.24070331961559538,0.250087946155664,0.25324183800952077,0.2502451293581236,0.24131962000459461,0.22682041856876872,0.20722471962616415,0.18311802607983016,0.1551781799973049,0.12415760806428999,0.09086422087330824,0.056141427884018213,0.020847741709477344,-0.01416355370502847,-0.04806420629408894,-0.08006982598769283,-0.1094573272374418,-0.13558060839594346,-0.15788413925089936,-0.17591418161586236,-0.18932742690240606,-0.19789689761916696,-0.20151502526600837,-0.2001938835840536,-0.19406262205081445,-0.18336220837419137,-0.16843764910725595,-0.14972791304434163,-0.1277538315634778,-0.10310429250053196,-0.07642107860306183,-0.048382727437663975,-0.019687806341973174,0.008961996634484394,0.03687856690458388,0.06340345500629471,0.08792299822707564,0.1098821330050303,0.12879659473383145,0.15596830566349987,0.16369336078079016,0.16731898346602686,0.16682597531758303,0.16229420415986737,0.1538991114784016,0.14190600633619366,0.12666231393687521,0.10858799268135634,0.08816437359800977,0.06592170955057823,0.042425747944643835,0.01826365924112258,-0.005970335890561541,-0.029689295628156025,-0.05232750294437881,-0.0733537028765328,-0.09228332678160646,-0.10868942736762614,-0.1222120825636204,-0.13256606582283764,-0.139546624250383,-0.14303325292255478,-0.14299140277451738,-0.1394721092951341,-0.13260957879629862,-0.12261681705438879,-0.10977943053792952,-0.09444777219727384,-0.057969775791158314,-0.037758410913658495,-0.016899177583090532,0.0040933499557582525,0.02470816212795454,0.04445007546866469,0.06285145760316106,0.07948314187429106,0.09396428039908976,0.10597091272051502,0.11524306057542304,0.12159019677681537,0.12489497686974772,0.12511516506351938,0.12228372992451296,0.11650712937536487,0.10796184763762298,0.09688928786169744,0.08358916235281315,0.06841155664804159,0.051747873450736386,0.03402088692568697,0.015674156573929662,-0.002838937543563369,-0.02106627031240195,-0.03856789020578361,-0.05492652018971198,-0.0697573929193596,-0.08271719094928044,-0.09351188666693157,-0.1019033053079909,-0.10771426698985462,-0.11083219938661018,-0.111211150578966,-0.10887217081613709,-0.1039020714719725,-0.0964506084144615,-0.0867261744098874,-0.07499012016988563,-0.061549855407493845,-0.046750909068111225,-0.03096815111613618,-0.014596396376675138,0.0019593764301506747,0.018293950416486213,0.03401169990116054,0.0487360870565604,0.06211859983148435,0.07384692086654425,0.08365213773798948,0.09131482984925766,0.09666989599527905,0.09961001832756423,0.10008769235809131,0.0981157879210721,0.09376664180269134,0.0871697181843753,0.07850790727602923,0.06801256472957097,0.055957423863408566,0.042651538712108625,0.02843143784849361,0.01365268631650838,-0.001318934515252238,-0.016116412073490075,-0.03038043357670634,-0.04376804712570167,-0.055960845598262615,-0.06667247947873134,-0.07565532273444199,-0.08270613791944995,-0.08767061227369254,-0.09044666504488007,-0.0909864568796878,-0.08929706415282981,-0.08543981374265507,-0.07172518698177673,-0.062237754461780564,-0.0513125223315238,-0.03922887643880289,-0.02629198834006269,-0.012825163710599954,0.0008381838553122669,0.014362735689161897,0.02741944696490204,0.0396935033825819,0.05089186436229889,0.06075021311142139,0.06903914980047911,0.07556948379014226,0.08282313137306244,0.08340188846345704,0.0819356440585774,0.07847712871210756,0.07312724059145556,0.0660321933991325,0.0573795849039418,0.04739349029666969,0.036328707421703035,0.024464300513265442,0.0120966049341197,-0.0004681327799632659,-0.012921297779449632,-0.02495944785266162,-0.03629166914295988,-0.046646569224260345,-0.05577874030510001,-0.06347453948797586,-0.0695570507731415,-0.07389011440687411,-0.07638133270302289,-0.0769839870235062,-0.07569782755373398,-0.07256872518894625,-0.06768720258065183,-0.06118588850582777,-0.05323596556231735,-0.04404270514452145,-0.033840205146845985,-0.022885464374922768,-0.011451942788159733,0.00017723189123445188,0.011716243238079502,0.0228835795925152,0.03340887156492647,0.043039408227217024,0.05154617564343897,0.05872927413119469,0.0644225867831778,0.068497590900056,0.07086622560648373,0.07148275249891736,0.07034457112098592,0.06749197676406793,0.06300687391799153,0.05701048402120923,0.04966011036966606,0.04114504555836772,0.031681727113893395,0.021508264552086598,0.010878475554157246,0.00005557996607238711,-0.010694292353985396,-0.021108620340358097,-0.030934878105860486,-0.039936634133969785,-0.04789921653551977,-0.054634809178529885,-0.059986858263336794,-0.06383368651178466,-0.06609123212243802,-0.06671485151208935,-0.06570014807312907,-0.06308281315348804,-0.05893748962269074,-0.053375692135346146,-0.04654284096710592,-0.03861448753029594,-0.02979182887031954,-0.02029662514555336,-0.010365647912284521,-0.000244797654257922,0.00981696382451355,0.019573716937970543,0.028788574651262014,0.037239414174937674,0.04472421180730702,0.05106585325530414,0.056116305351812536,0.05976005136997111,0.06191671069946391,0.0625427840302011,0.061632486877791125,0.05921765674667074,0.05536674190906972,0.05018290212743681,0.043801273122293774,0.0363854666690031,0.02812339641494256,0.01922253541079696,0.009904724572618465,0.00040066152880565103,-0.00905579367337897,-0.018233355875649906,-0.026908954791322676,-0.03487314053260381,-0.041935124086485594,-0.04792733182312625,-0.052709365692153586,-0.056171275902273596,-0.05823607020403734,-0.05886140296968819,-0.05804040761274113,-0.05580165700999143,-0.05220825796080843,-0.04735610682044409,-0.041371353762835156,-0.03440714217315382,-0.02663970698412353,-0.018263930940601143,-0.009488470446348795,-0.000530572520549295,0.008389288755623357,0.017052824240289834,0.02524925767918015,0.03278043989705011,0.03946562547460371,0.045145797086595246,0.04968743436259676,0.05298563827005522,0.05496653825142696,0.05558892726589368,0.05484508904517152,0.05276080179806229,0.04939452279944773,0.04483577828208104,0.03920280232746915,0.032639486558844924,0.025311718939246018,0.01740320447709376,0.009110872797361436,0.000639987064316204,-0.007800924576506711,-0.016005190181961185,-0.023773042346222416,-0.030916470660572168,-0.03726376071077053,-0.04266361030663365,-0.04698872454599378,-0.050138804568472875,-0.052042860117698514,-0.05266079292072407,-0.05198421598969846,-0.050036492805309106,-0.04687199948997537,-0.04257463205223558,-0.03725559911993982,-0.0310505578343443,-0.02411616633427197,-0.01662614014208101,-0.008766911441869722,-0.0007329994411377716,0.00727779348202511,0.015069241468690781,0.022451491563595213,0.029245679802397066,0.03528825500760325,0.04043490600837773,0.0445639982183359,0.04757943797181527,0.049412897417360026,0.05002534873600844,0.04940787359363371,0.04758173162654765,0.04459768995718312,0.040534633795878044,0.035497495665123634,0.029614557259915124,0.023034193034414358,0.01592113791948644,0.008452372811072403,0.0008127303613872672,-0.006809670052392734,-0.01422804565659487,-0.021261518498919243,-0.027739517042131512,-0.03350590423117361,-0.0384227323338282,-0.042373534460643014,-0.04526607443227943,-0.047034490284135574,-0.047640781837326326,-0.04707560904475849,-0.045358384837867714,-0.04253666353426036,-0.03868484309385729,-0.03390221621062065,-0.028310420992857598,-0.022050356436424112,-0.015278640684767369,-0.008163700892720166,-0.0008815921118185961,0.006388351206328235,0.013467923875374994,0.020184410616968,0.026374792162006874,0.0318896945615375,0.03659698620961514,0.04038493613666262,0.04316485826111046,0.04487317920795829,0.04547288169133723,0.04495429095576272,0.043335187993639154,0.04066024980477274,0.03699983343109193,0.032448136484148495,0.027120781995569207,0.021151889295771664,0.014690704930136092,0.00789787806051382,0.0009414731264106246,-0.006007181439886584,-0.012777706073684902,-0.019204841087239532,-0.02513247388076009,-0.030417424374802812,-0.03493289703084617,-0.038571516388311224,-0.0412478736031301,-0.04290052375832257,-0.04349338742293708,-0.04301652472076526,-0.041486265668145623,-0.038944696368763757,-0.03545851642402368,-0.031117298244761855,-0.02603119346075172,-0.020328144967100583,-0.014150674999827556,-0.007652329712972285,-0.0009938687974208394,0.005660705451633268,0.012148181680284408,0.018310136576819257,0.023996797779897168,0.02907067854267498,0.03340989608476297,0.036911093677711566,0.03949189654672641,0.04109284337790695,0.041678748303125665,0.04123946236788187,0.039790018320897146,0.03737015773200255,0.034043254574452377, 0.02989466412910682,0.02502954002236904,0.019570175058984295,0.013652932944865866,0.0074248477399438025,0.0010399757050143568,-0.005344410073992874,-0.01157168841745989,-0.017489727101159612,-0.02295459434521494,-0.027834054319310995,-0.032010761894675124,-0.03538507958029798,-0.03787744914379117,-0.03943026159467964,-0.040009181719785805,-0.03960389689510679,-0.038228274120851884,-0.03591992378523228,-0.032739183200458495,-0.028767547115414495,-0.024105585848465175,-0.01887040407466855,-0.013192704345085515,-0.007213528846832697,-0.001080760506428053,0.005054529882909653,0.011041800395747425,0.016734727243078618,0.021994776275473887,0.026694569656549757,0.0307209659977887,0.03397777958142162,0.03638807342699901,0.037895971649023794,0.03846794853982126,0.03809356479522823,0.03678563495898251,0.03457982415788251,0.03153368618986343,0.02772516866856241,0.023250623888004602,0.01822237603496026,0.012765906055097183,0.0070167246156316605,0.0011170109838317837,-0.004787898916586367,-0.010553088626439402,-0.016037613557147102,-0.02110794269974495,-0.025641205692228355,-0.02952816638319736,-0.032675851025373584,-0.035009767962734924,-0.03647566591954357,-0.03704078950193059,-0.036694602996596624,-0.035448966687508125,-0.03333776338604042,-0.03041598635157967,-0.026758312937909638,-0.022457200814681267,-0.017620555178721076,-0.012369025707057247,-0.006833000863593102,-0.0011493743426729977,0.004541836254177863,0.010100935080726955,0.015391973344937648,0.02028607034632479,0.024664549211409818,0.02842181111994807,0.0314678784976093,0.03373054601342297,0.03515708805171256,0.03571548238235808,0.0353951217548951,0.03420699779380387,0.03218335456211163,0.029376822168700217,0.02585905350273503,0.021718899276122607,0.017060167747650977,0.011999025519415231,0.006661104396002062,0.0011783862739623283,-0.004314056781926476,-0.009681386839109296,-0.014792307040607383,-0.019522270167744694,-0.023756510492187057,-0.0273928251910677,-0.030344037993709997,-0.03254008575127564,-0.033929678069340836,-0.03448149078152378,-0.034184865605097155,-0.03305000052052317,-0.031107627954894093,-0.028408190415965918,-0.025020535510810935,-0.02103016399093473,-0.016537075309099168,-0.011653264889269998,-0.006499935665802777,-0.0012044932410635945,0.004102600919038977,0.009291040603097322,0.014233871322447118,0.018810593791330175,0.022910098623931986,0.02643336084585184,0.029295828945729185,0.0314294509004591,0.03278428870056085,0.03332968315332751,0.03305494189531506,0.03196953532616538,0.030102797291907922,0.02750313949968943,0.0242368005393391,0.020386161729657393,0.01604767252262053,0.01132943763183667,0.006348526174896356,0.0012280697379313018,-0.0039057787725803998,-0.008926950447013294,-0.01371255348646907,-0.01814587828909568,-0.0221192410898684,-0.02553659693226033,-0.028315858631141024,-0.03039086580102231,-0.03171295678576024,-0.032252106215877936,-0.03199760169175224,-0.030958244478119557,-0.029162070816599675,-0.026655602229819216,-0.023502644714648777,-0.019782667721332903,-0.015588804021938352,-0.011025520737871936,-0.006206019700854233,-0.0012494317748765991,0.003722125385264724,0.008586553534054013,0.013224770050090028,0.017523620700057814,0.02137863776437286,0.0246965763535603,0.02739766739541358,0.02941753291477632,0.03070871768062537,0.031241800847709906,0.031006061634676344,0.030009684099374156,0.028279497422870004,0.02586025951727711,0.022813502949086663,0.019215972845949572,0.015157696370589111,0.01073973225996102,0.006071656625437231,0.001268847505680996,-0.0035503645920629645,-0.008267609845855855,-0.012767384304911854,-0.01693987585888799,-0.02068364190285547,-0.023908073458644534,-0.02653558594993448,-0.02850348371523104,-0.02976545350647459,-0.030292651457416858,-0.030074358085368777,-0.029118186562759708,-0.027449840497666037,-0.02511242852427696,-0.022165353853743627,-0.018682807307600694,-0.014751901997059997,-0.010470496487726263,-0.0059447607908016,-0.0012865456681828138,0.0033893796166696746,0.007968152937031342,0.012337638813005081,0.016391172632809436,0.020030162476652846,0.023166485126521485,0.025724618081665002,0.027643456047594384,0.02887776825881658,0.02939926193511275,0.02919722693561687,0.02827874702238794,0.026668473820125462,0.024407970298402207,0.021554641143706487,0.018180277472766522,0.014369252720089926,0.010216414983354617,0.005824728425680911,0.0013027223377760275,-0.003238188987982796,-0.007686449432636469,-0.01193309978019285,-0.0158744448106398,-0.01941458351650481,-0.022467740748822865,-0.024960343647394165,-0.026832792634280456,-0.02804088438713199,-0.028556852869357708,-0.028370003962019105,-0.027486929283124854,-0.025931295145825223,-0.023743213042684282,-0.02097820829258311,-0.01770581329901362,-0.014007821004124073,-0.009976242359706584,-0.005711018774875616,-0.001317546368469427,0.003095926688151766,0.007420965510615344,0.011551610938363124,0.015386973738882462,0.01883369710656195,0.02180822739247584,0.024238837874562352,0.026067356591233187,0.02725055665931306,0.027761175894596028,0.027588541741460533,0.026738787269332275,0.025234654067561823,0.023114888018489495,0.02043324390195747,0.01725712433912373,0.013665887485905364,0.0097488659201358,0.005603146136868212,0.0013311638051185619,-0.0029618256906964097,-0.007170339003769659,-0.011191255093330483,-0.014926340439833742,-0.0182846474077417,-0.021184727237718838,-0.02355660385789394,-0.02534346071923232,-0.026503000031845518,-0.027008441928198852,-0.026849140003096225,-0.026030799158008922,-0.02457529147476555,-0.02252007571961153,-0.019917235790678996,-0.016832162732151684,-0.01334191361952857,-0.009533288461087112,-0.0055006730708051866,-0.001343701483289065,0.0028352042329100402,0.006933356052438982,0.010850321892127642,0.014490385432373245,0.01776488364908231,0.02059436500497909,0.02291051580128179,0.02465780801919247,0.025794828938931827,0.0262952607385001,0.026148486948258647,0.0253598118559921,0.023950288492718744,0.02195616044737445,0.01942793222240646,0.016429091920474804,0.01303451852313505,0.0093286136793114,0.005403204578808768,0.001355269983302946,-0.0027154543076810126,-0.00670893146517092,-0.010527280667149724,-0.014077174847699055,-0.017272120454566015,-0.02003456355823526,-0.02229777106101563,-0.02400744140645317,-0.025123005945741614,-0.025618589810057612,-0.025483609574772016,-0.024722993974344194,-0.023357023213850973,-0.021420791795844343,-0.018963309009365437,-0.01604626008539258,-0.012742459293362908,-0.009134033735229384,-0.0053103831052041615,-0.0013659660675632635,0.0026020319676233737,0.0064960921183283725,0.010220757448281943,0.013684971718791142,0.016804304203895056,0.019503006238796274,0.021715849438222776,0.02338970100610141,0.02448479812296558,0.024975690879125184,0.024851831433870486,0.024117795820529107,0.02279313386825834,0.020911851851144154,0.018521541478982,0.015682177491412368,0.012464614196551519,0.008948818610024157,0.005221884222752981,0.0013758747019309342,-0.002494449117478005,-0.006293962860044494,-0.009929515415432962,-0.01331221154493205,-0.016359584383080977,-0.018997604768499352,-0.021162478473522154,-0.022802187728621838,-0.02387773982118252,-0.024364092829787156,-0.024250736553856247,-0.0235419152162024,-0.022256487342528438,-0.0204274271397272,-0.018100980484951536,-0.015335497084391398,-0.01219996825804101,-0.00877230696196879,-0.005137412898897979,-0.0013850707403445341,0.0023922665352372995,0.006101754488728146,0.009652438205476687,0.01295748140668488,0.015936289082210144,0.018516471784701678,0.020635603736159934,0.022242732074113963,0.023299600775860938,0.02378155989064526,0.02367813850517202,0.022993268174411528, 0.021745152162181716,0.01996578454237594,0.01770013179802034,0.015004997811135755,0.01194760085978936,0.008603898241440104,0.005056700253527264,0.001393620335307468,-0.0022950879128633586,-0.005918753458577819, -0.009388515598962269,-0.012619502043745446,-0.015532903956532736,-0.018057897245600772,-0.02013336328872522,-0.02170936730991113, -0.022748358673196818,-0.02322606426917705,-0.023132053771873592,-0.02246996364890464,-0.021257375216423152,-0.0195253505349204,-0.017317638333743286,-0.014689570225327374,-0.011706675027270718,-0.008443045867156036,-0.00497950073477281,-0.0014015821240635268,0.0022025547471407753,0.005744313029523571,0.009136831200036187,0.012297112416656496, 0.01514805409293201,0.017620328084198004, 0.019654065658479634, 0.021200306322634314, 0.02222217546549378, 0.0226957625177727, 0.022610678745961104, 0.021970281710725268, 0.02079156163410272, 0.019104693231692664, 0.016952264771848306, 0.014388204022376175, 0.011476428143240118, 0.008289251300775069, 0.004905589651580713, 0.00140900823032221, -0.0021143419426140086, -0.005577845630634443, -0.008896551793144617, -0.011989256359865178, -0.014780488324228756, -0.017202350600789295, -0.019196170766077877, -0.02071392157053247, -0.021719376851525408, -0.022188975050966963, -0.022112369782274294, -0.02149265462138347, -0.020346257324130104, -0.01870250679997739, -0.016602884199987043, -0.014099977208244078, -0.011256163871514341, -0.008142058884927753, -0.004834761011787389, -0.00141594511359963, 0.0020301540135732573, 0.005418816247279273, 0.008666918116213984, 0.011694971002926942, 0.014429065614320767, 0.016802675173390316, 0.018758273358612965, 0.020248727662251685, 0.021238434439203365, 0.021704168334336447, 0.021635625849232957, 0.021035650363780307, 0.019920133777660724, 0.018317597888086602, 0.016268466477704344, 0.01382404665772478, 0.011045245110773818, 0.008001051332409439, 0.004766825622644666, 0.001422434292103143, -0.0019497217920851394, -0.005266736675474448, -0.008447236835180876, -0.011413376692503821, -0.014092743202077183, -0.01642012293775027, -0.018339088571549058, -0.01980336616917874, -0.020777950190207572, -0.02123993934715474, -0.02117907338963555, -0.02059795826643023, -0.019511974797451554, -0.017948873769948425, -0.015948068067589742, -0.01355963985860181, -0.010843087828347095, -0.00786584577273261, -0.004701609417503863, -0.0014285129602282405, 0.00187279956519293, 0.0051211605136237655, 0.008236873541285012, 0.01114366819302468, 0.01377056624452489, 0.01605361414717347, 0.017937439307072388, 0.019376592344255338, 0.02033664281309794, 0.020795001987215626, 0.020741453069891686, 0.020178376417009432, 0.019120664875185333, 0.0175953319581651, 0.01564082312223433, 0.013306047671493584, 0.010649155648402716, 0.00773609027735929, 0.004638951977968503, 0.0014342145178680122, -0.0017991625774623876, -0.004981678783586611, -0.008035246622244304, -0.010885106980669185, -0.013461658742705098, -0.015702157970090905, -0.01755224516773573, -0.018967263473787403, -0.01991333582598348, -0.02036817514037183, -0.020321608148466477, -0.019775800610678917, -0.018745178982852072, -0.017256051077630397, -0.015345935649716385, -0.013062617962545108, -0.0104629550890398, -0.0076114607973693975, -0.004578705225475791, -0.0014395690256405519, 0.0017286048456615758, 0.004847916090733413, 0.007841821882691563, 0.010637014475414253, 0.01316521556862294, 0.015364843522382056, 0.01718251272630553, 0.018574328632701375, 0.0195069470545439, 0.019958372181729127, 0.019918474237303377, 0.019389214619192453, 0.01838457358146651, 0.016930182824770386, 0.015062672608372978, 0.012828749988629842, 0.01028403135929919, 0.007491658457589216, 0.004520732260142814, 0.0014446035976513863, -0.0016609372410323162, -0.004719527247166793, -0.00765610780915488, -0.010398766080577401, -0.012880495440505985, -0.015040831963555533, -0.016827326947297685, -0.018196819649855207, -0.01911647936800561, -0.019564591711993963, -0.01953107026540971, -0.019017681600231897, -0.018037978681067334, -0.01661694486467684, -0.014790357804757985, -0.012603889433317896, -0.010111964640790455, -0.0073764071597169295, -0.004464906327954762, -0.0014493427413980271, 0.0015959858017241364, 0.004596194294233417, 0.007477651391260596, 0.010169785919654237, 0.012606814717344234, 0.01472934951240313, 0.01648584360424345, 0.017833843119877, 0.018741012486104755, 0.019185909362704312, 0.019158490483088687, 0.018660336494081123, 0.017704590811336143, 0.016315614540938817, 0.01452836648787009, 0.012387524007289036, 0.009946366789984437, 0.007265451454066335, 0.004411109900092095, 0.0014538086527928896, -0.0015335902438228164, -0.004477623870321846, -0.007306034424402164, -0.009949542177106122, -0.012343541903364506, -0.014429681259710532, -0.016157282560405096, -0.01748457332278261, -0.018379695715318146, -0.01882147052916997, -0.01879989736963453, -0.01831637927773816, -0.017383666783279565, -0.016025523291719142, -0.01427612054869527, -0.012179179539710703, -0.0097868784066856, -0.007158554645466938, -0.004359233850482814, -0.0014580214729518557, 0.001473602644254898, 0.004363544878129201, 0.0071408702303832885, 0.009737542963765855, 0.012090092769458544, 0.01414116567388682, 0.01584092180037047, 0.017148245933255975, 0.018031741493678068, 0.018470483910864078, 0.01845451532759405, 0.01798506896573736, 0.01707451814002669, 0.015746051681265503, 0.014033084247438328, 0.011978416497832857, 0.009633166222115746, 0.00705549710381825, 0.00430917671959886, 0.0014619995123083566, -0.0014158862728771305, -0.004253706412396606, -0.0069818007419346585, -0.009533332639218631, -0.011845926012245675, -0.013863189710639153, -0.015536092116421414, -0.016824152418719495, -0.01769641964107276, -0.018132215756499145, -0.018121625063668836, -0.01766571826299745, -0.016776506209538723, -0.015476624969149652, -0.013798760401989628, -0.011784826881051801, -0.009484920766687369, -0.006956074753967206, -0.004260844054152656, -0.0014657594467195533, 0.0013603145544175315, 0.004147875914810678, 0.006828493904860343, 0.009336488533302297, 0.011610539382894846, 0.013595184450611883, 0.015242172367376374, 0.016511635039784277, 0.017373052226689063, 0.01780598472570211, 0.01780055857058245, 0.017357688788491536, 0.01648903768441214, 0.015216709150542095, 0.013572686980568186, 0.01159803144326871, 0.009341854283142888, 0.006860097723097219, 0.004214147813740005, 0.0014693164894945697, -0.0013067701437440014, -0.0040458375275462, -0.006680641358166121, -0.009146618017093154, -0.0113834662274503, -0.01333662119966703, -0.014958585239220964, -0.016210082378840997, -0.01706100897767458, -0.017491157291565685, -0.01749069463624016, -0.017060386799887944, -0.016211560664404667, -0.014965807410119642, -0.013354434049408948, -0.011417677203762454, -0.009203698855466397, -0.006767389126796341, -0.004169005836659759, -0.0014726845426650819, 0.0012551441002949801, 0.003947390620945601, 0.0065379563580783735, 0.008963355880674225, 0.011164272388517736, 0.013087007995559244, 0.014684793446642131, 0.015918925332827495, 0.016759703163586936, 0.017187143618797848, 0.017191454816652803, 0.01677325935891348, 0.015943561106138794, 0.014723456940057058, 0.013143601033070898, 0.01124343521221113, 0.00907020472798412, 0.006677783977501164, 0.004125341358151963, 0.0014758763303122046, -0.001205335149493303, -0.003852348474225018, -0.006400171916557612, -0.00878636198084347, -0.010952553425031049, -0.012845886472440166, -0.014420296322880392, -0.015637633514912264, -0.01646858790008491, -0.016893393861042556, -0.016902299817695803, -0.01649579088533091, -0.01568455963193187, -0.014489226079229364, -0.012939814250640157, -0.011074998538095987, -0.008941138792478176, -0.006591128201166568, -0.004083082575162079, -0.0014789035163416356, 0.0011572490206432794, 0.003760537090971077, 0.006267039128891068, 0.00861531912689057, 0.010747932112644135, 0.012612829041148344, 0.014164626752362209, 0.015365712017225888, 0.016187152822868107, 0.01660939482846842, 0.016622726238085854, 0.016227500054346724, 0.015434108656074051, 0.014262711736419728, 0.01274272469594658, 0.010912080458641957, 0.008816283224044635, 0.006507277749850236, 0.004042162252482353, 0.0014817768087461913, -0.0011107978522340363, -0.0036717941336340152, -0.006138325668332858, -0.008449931176799973, -0.010550056192249302, -0.01238743634879343, -0.013917348406577077, -0.01510269849307102, -0.015914921089308, -0.016334666983135498, -0.016352263632192436, -0.015967936998171076, -0.015191789792313391, -0.014043537065175988, -0.012552006034062167, -0.010754412822790367, -0.008695434248910875, -0.0064260977994751774, -0.0040025173657611225, -0.0014845060520989296, 0.001065899656782016, 0.0035859679633027165, 0.0060138144286458195, 0.008289921319845869, 0.010358596338355043, 0.012169334985884152, 0.01367805324879071, 0.014848160522422897, 0.01565144667071293, 0.016068761725133097, 0.01609047185663239, 0.0157166807775033, 0.014957211510959738, 0.013831349362103413, 0.012367352789886227, 0.010601744571577303, 0.00857840102955967, 0.006347462023384735, 0.003964088777422741, 0.0014871003097710904, -0.0010224778383769964, -0.0035029167728239732, -0.005893302297866349, -0.008135030524631656, -0.010173244322677057, -0.011958175413308776, -0.013446359277576559, -0.014601693229142412, -0.015396311902883136, -0.01581125893718057, -0.0158369386691664, -0.01547333709304844, -0.014730007018010421, -0.013625818163939131, -0.012188478707671256, -0.010453840397743728, -0.008465004654331396, -0.006271251933469948, -0.0039268209420180444, -0.001489567937158992, 0.0009804607569779006, 0.0034225078028503587, 0.005776599048728849, 0.007985016134274239, 0.009993711351404286, 0.01175363008496115, 0.013221908482918276, 0.014362917122283454, 0.01514912526666108, 0.015561764759421884, 0.01559127755234534, 0.015237536210895197, 0.014509832332133389, 0.013426633521814398, 0.012015115262961428, 0.010310479529530386, 0.008355077220264368, 0.006197356281645716, 0.00389066163793881, 0.0014919166470259346, -0.0009397813342606426, -0.0033446166317085586, -0.005663526333004577, -0.007839650592711016, -0.009819726557275166, -0.011555391744804534, -0.0130043649918816, -0.01413147613728624, -0.014909519373670103, -0.015319909569623626, -0.015353125737739847, -0.015008931078796509, -0.014296364538302181, -0.013233504433751023, -0.011847010310674214, -0.010171454625439188, -0.008248460999282507, -0.006125670515331982, -0.003855561722788522, -0.0014941535679170478, 0.0009003766964703528, 0.0032691265311028126, 0.0055539167685768045, 0.007698720288068272, 0.00965103562990568, 0.0113631718797509, 0.012793413383655425, 0.013907035855790523, 0.014677149135446097, 0.015085346146991647, 0.015122142409512167, 0.014787195613167586, 0.014089300199438874, 0.013046157418718991, 0.01168392685501652, 0.010036570768324824, 0.00814500767903409, 0.006056096281334168, 0.0038214749100170414, 0.0014962852964667261, -0.0008621878502874215, -0.0031959278806493285, -0.0054476131094249956, -0.007562024500735143, -0.009487399569802346, -0.011176699311977477, -0.012588757156183593, -0.01368928188535334, -0.014451690096772446, -0.014857748000421564, -0.014898007068620149, -0.014572023139021235, -0.013888353909628899, -0.012864335217565165, -0.011525641928607123, -0.009905644548561236, -0.008044577670688067, -0.005988540973186719, -0.0037883575646898123, -0.001498317944330809, 0.0008251593882101772, 0.0031249176350564944, 0.005344467489871771, 0.007429374445238039, 0.009328593553228418, 0.01099571891622731, 0.01239011732871508, 0.013477918382556037, 0.014232836916291836, 0.014636807844256994, 0.014680418041143398, 0.014363124967141193, 0.01369325697440835, 0.012687795607829424, 0.011371945569670666, 0.009778503227204973, 0.007947039476913437, 0.005922917317570183, 0.0037561685165216764, 0.0015002571803482342, -0.0007892392203539142, -0.00305599883852761, -0.0052443407354430495, -0.007300592396315815, -0.009174405896575442, -0.010819990449348012, -0.012197231166414461, -0.01327266670491837, -0.014020301979428757, -0.01442223620659061, -0.014469091116130787, -0.014160229094615801, -0.013503756205283617, -0.012516310320976625, -0.011222639887424142, -0.009654983971142277, -0.007852269114008591, -0.005859142995939682, -0.0037248688884814903, -0.0015021082684972948, 0.0007543783299625474, 0.0029890801815565184, 0.005147101733607314, 0.007175510890671145, 0.00902463711022394, 0.010649287480762942, 0.012009851014782252, 0.013073264178693695, 0.01381381413037713, 0.014213760156853028, 0.014263758300036197, 0.013963079016428607, 0.013319612817118734, 0.012349664051856333, 0.01107753820692213, 0.009534933153084136, 0.007760149582860876, 0.005797140297899653, 0.0036944219394958186, 0.0015038761021002299, -0.0007205305502049192, -0.002924075595879741, -0.005052626858393404, -0.0070539719968784826, -0.008879099032985255, -0.010483396413877239, -0.011827743233000787, -0.01287946297109578, -0.013613117511392785, -0.014011122140930357, -0.014064166676264553, -0.013771432637189442, -0.013140601418286135, -0.012187653551363304, -0.010936464285577633, -0.00941820571009868, -0.007670570383973723, -0.005736835803278369, -0.00366479291990011, -0.001505565234712698, 0.0006876523601449177, 0.00286090388378893, 0.0049607994435985295, 0.006935826646738437, 0.008737614039244647, 0.01032211558951199, 0.01165068721655711, 0.012691029056767581, 0.013417970498948804, 0.01381407891335426, 0.013870077359622441, 0.01358506127329902, 0.012966509084608432, 0.01203008679424868, 0.010799251594458353, 0.009304664555034639, 0.007583427072353721, 0.005678160090151053, 0.0036359489384678225, 0.0015071799080418947, -0.0006557026979732587, -0.002799488378469224, -0.004871509299848556, -0.006820934022144984, -0.008600014311765478, -0.010165254463467898, -0.011478474500535086, -0.012507741269437883, -0.013228144727447802, -0.013622400557258236, -0.013681264536586484, -0.013403748736896341, -0.012797134509085466, -0.01187678221492805, -0.010665742658183706, -0.009194180035830985, -0.00749862084847184, -0.005621047466391402, -0.003607858839933144, -0.0015087240772337124, 0.0006246427898401269, 0.0027397566323579653, 0.004784652271327459, 0.0067091609921461235, 0.008466141173911168, 0.010012632851152684, 0.011310907935924272, 0.012329390430677602, 0.013043424192202443, 0.013435869583795883, 0.013497514583281578, 0.013227290493877985, 0.01263228722027037, 0.011727568004884567, 0.010535788447934154, 0.009086629438214764, 0.007416058181949052, 0.00556543572255255, 0.003580493092072516, 0.0015102014337905801, -0.0005944359927717659, -0.0026816401308817728, -0.00470012982840901, -0.0066003815954845954, -0.008335844475682933, -0.00986408023299002, -0.011147800932092089, -0.012155778548548051, -0.012863604424271008, -0.013254280103606731, -0.013318625253926769, -0.013055492889090718, -0.012471786862916317, -0.011582281465954499, -0.010409247822644397, -0.008981896527792336, -0.007335650464937203, -0.005511265904143077, -0.0035538236814692103, -0.0015116154263880575, 0.0005650476503559502, 0.002625074029175856, 0.004617848692860326, 0.006494476564373363, 0.008208982028594632, 0.009719435114967555, 0.01098897675931067, 0.011986718079678929, 0.012688491730525973, 0.013077437063691641, 0.013144404933265979, 0.012888172432530941, 0.012315462535176964, 0.01144076841438057, 0.010285987013979746, 0.008879871127927713, 0.007257313692511953, 0.005458482101529113, 0.0035278240172099684, 0.0015129692797900048, -0.0005364449599844065, -0.002569996909679064, -0.004537720492602471, -0.006391332885738158, -0.008085419084898076, -0.009578544439296014, -0.010834267905846674, -0.011822031249002064, -0.012517902493012715, -0.012905155543753462, -0.01297467194717528, -0.012725155141015774, -0.012163152177246664, -0.011302882631036643, -0.010165879151148737, -0.008780448730199682, -0.007180968167638807, -0.0054070312559075595, -0.003502468841801931, -0.0015142660120755424, 0.0005085968506047051, 0.002516350558681798, 0.004459661443360502, 0.006290843396517416, 0.007965027857164334, 0.009441263040645211, 0.010683515484707942, 0.011661549421945758, 0.012351662522275424, 0.012737260106664346, 0.012809253926231617, 0.012566275930364277, 0.012014702006836162, 0.011168485353712086, 0.01004880382199437, 0.008683530134531634, 0.007106538228550186, 0.005356862979918629, 0.0034777341487035773, 0.0015155084503307484, -0.00048147387000675127, -0.0024640797601373898, -0.004383592054774834, -0.006192906409989943, -0.007847687074605545, -0.0093074531439088, -0.010536568685619762, -0.011505112524436771, -0.012189606459857474, -0.012573584198265635, -0.01264798721755697, -0.012411378053621193, -0.011869965997356654, -0.011037444807740571, -0.009934646667183755, -0.008589021116394065, -0.00703395199656127, -0.005307929391640506, -0.0034535971058876984, -0.0015166992449763606, 0.00045504808080494644, 0.0024131321051841085, 0.0043094368588250075, 0.006097425370375175, 0.007733281572913899, 0.009176983899832552, 0.010393284268267678, 0.011352568506508866, 0.012031577225672833, 0.012413969592181787, 0.012490716340718397, 0.0122603125813083, 0.011728805395083586, 0.010909635771645183, 0.009823299004609742, 0.008496832118737259, 0.006963141142563334, 0.005260184960803945, 0.0034300359849442144, 0.0015178408828486465, -0.00042929296432670666, -0.0023634578160154794, -0.00423712415859844, -0.006004308533256249, -0.0076217019146873, -0.009049730955228595, -0.01025352609321708, -0.01120377284574724, -0.011877425506361262, -0.012258265875760156, -0.012337293483882128, -0.012112937920077005, -0.011591088271950845, -0.010784939174781327, -0.009714657481423113, -0.008406877966526699, -0.00689404067060509, -0.005213586366194846, -0.0034070300952478713, -0.00151893569917239, 0.0004041833317320204, 0.002315009582837331, 0.004166585795663758, 0.005913468669586753, 0.007512844037826396, 0.008925576054795938, 0.010117164687290837, 0.01105858808715264, 0.011727009281129073, 0.012106329973623976, 0.012187578036788896, 0.011969119366495626, 0.011456689110939219, 0.010663241724268918, 0.009608623751342376, 0.008319077601981749, 0.006826588717109863, 0.0051680923633116785, 0.0033845597227788226, 0.0015199858885156523, -0.0003796952417209309, -0.0022677424128073795, -0.004097756934445488, -0.005824822791289849, -0.007406608929514508, -0.008804406671879646, -0.00998407684047834, -0.010916883416353232, -0.011580193381905555, -0.01195802570566827, -0.01204143615744952, -0.011828728693012117, -0.011325488421326635, -0.010544435558748188, -0.009505104175134735, -0.008233353838774774, -0.006760726364439712, -0.005123663661415923, -0.003362606073222352, -0.0015209935148396514, 0.0003558059242827915, 0.002221613489926448, 0.004030575862183344, 0.005738291896619945, 0.007302902323647602, 0.008686115665733228, 0.009854145231748162, 0.010778534263371465, 0.011436849084956653, 0.01181322337662648, 0.011898740369753472, 0.01169164376342075, 0.011197372381315067, 0.010428417926743648, 0.009404009542339973, 0.008149633133637214, 0.006696397467611093, 0.00508026280922129, 0.003341151218990552, 0.0015219605207158697, -0.00033249370996061596, -0.0021765820449820453, -0.003964983803162525, -0.00565380073366025, -0.007201634419757122, -0.00857060096310209, -0.009727258081365882, -0.010643421934430644, -0.011296853731357609, -0.011671799394609888, -0.011759369189448235, -0.011557748175405612, -0.011072232505793696, -0.01031509088761188, -0.009305254812510079, -0.00806784537393949, -0.006633548493105717, -0.0050378540885072905, -0.00332017804986942, -0.0015228887357929956, 0.0003097379641832494, 0.002132609234697734, 0.0039009247460562724, 0.005571277580452986, 0.007102719621677949, 0.008457765262127215, 0.009603308827561241, 0.010511433269506563, 0.01116009037397745, 0.011533635916259543, 0.01162320677618236, 0.011426930927965387, 0.010949965337194096, 0.010204361033252212, 0.009208758874376458, 0.007987923679968019, 0.0065721283687898355, 0.004996403415038089, 0.003299670226990114, 0.0015237798845877746, -0.00028751902624220564, -0.0020896580293490383, -0.003838345283298632, -0.00549065404042726, -0.00700607629434954, -0.008347515756775607, -0.00948219582556923, -0.010382460323554851, -0.011026447448835167, -0.011398620516371472, -0.011490142609518077, -0.011299086111719097, -0.01083047215759177, -0.010096139228910174, -0.009114444321521939, -0.007909804220715057, -0.006512088344072049, -0.004955878246193867, -0.0032796121398813776, -0.0015246355936486423, 0.00026581815252941317, 0.0020476931081573504, 0.0037771944615355283, 0.005411864851883404, 0.006911626537311458, 0.00823976388014558, 0.009363822067268227, 0.010256400069519504, 0.010895818468891231, 0.011266645880046446, 0.0113600711870085, 0.011174112620279932, 0.010713658720364531, 0.009990340371570247, 0.009022237243243287, 0.007833426042127466, 0.00645338185948109, 0.004916247494804226, 0.0032599888663503917, 0.0015254573981639328, -0.0002446174637050831, -0.002006680761836088, -0.0037174236422587853, -0.0053348477104333165, -0.006819295973559219, -0.00813442506516627, -0.009248094919780498, -0.010133154121412417, -0.010768101738503401, -0.011137609515594709, -0.011232891742606404, -0.01105191388104099, -0.010599434999880308, -0.009886883164553559, -0.008932067029426978, -0.0077587309068310635, -0.006395964424944249, -0.004877481448689318, -0.003240786134992019, -0.0015262467480482893, 0.00022389989546712193, 0.001966588801736915, 0.0036589863718344637, 0.005259543103367455, 0.006729013552570935, 0.00803141852132107, 0.009134925881564053, 0.010012628475892515, 0.010643200086942263, 0.011011413486579361, 0.011108507983824576, 0.010932397603869465, 0.010487714957811752, 0.009785689907073791, 0.008843866188345628, 0.007685663144457024, 0.00633979350608419, 0.0048395516954862485, 0.0032219902901132642, 0.0015270050135687122, -0.00020364915265412223, -0.0019273864750659596, -0.0036018382601906906, -0.00518589415503449, -0.006640711366395806, -0.007930667026167472, -0.009024230354636906, -0.009894733270925042, -0.01052102061949433, -0.01088796416152825, -0.01098682784620731, -0.010815475546331858, -0.01037841632480821, -0.009686686297598708, -0.008757570176396957, -0.007614169511750057, -0.006284828417937068, -0.004802431052346535, -0.003203588258907899, -0.0015277334905348747, 0.00018384966640662659, 0.0018890443857169051, 0.0035459368674946967, 0.00511384648238484, 0.006554324477814246, 0.007832096730511445, 0.00891592743171094, 0.0097793825602118, 0.010401474484817446, 0.01076717197996795, 0.010867763263796957, 0.01070106329419811, 0.010271460396355445, 0.009589801249979152, 0.008673117238872902, 0.007544199061731474, 0.0062310302255206415, 0.004766093500153822, 0.0031855675207004695, 0.0015284334051064155, -0.00016448655416644695, -0.0018515344202770054, -0.003491241598222934, -0.0050433480599028115, -0.006469790759651679, -0.007735636976214574, -0.008809939697100646, -0.009666494102209426, -0.010284476657319522, -0.010648951233553383, -0.01075122995439325, -0.010589080056074333, -0.01016677184176389, -0.009494966721381806, -0.008590448260943039, -0.0074757030212299624, -0.006178361650754986, -0.004730514121913109, -0.0031679160781232906, -0.0015291059182347367, 0.00014554558228247226, 0.0018148296788304194, 0.0034377136020542084, 0.004974349093233294, 0.006387050744406665, 0.00764122012567864, 0.008706193040386213, 0.009555989162640333, 0.010169945733445008, 0.010533219861166827, 0.010637147218504657, 0.01047944847111701, 0.010064278525306006, 0.009402117551157869, 0.008509506628087186, 0.007408634676172836, 0.006126786985255266, 0.004695669045019289, 0.0031506224300722734, 0.00152975212978499, -0.00012701313104154568, -0.0017789044101855964, -0.0033853156810923096, -0.0049068019008445575, -0.006306047483438199, -0.007548781402151541, -0.008604616481879815, -0.009447792329506606, -0.010057803740838872, -0.010419899256959096, -0.010525437750984275, -0.010372094428864201, -0.00996391133861546, -0.009311191309838516, -0.008430238095294144, -0.007342949264059696, -0.0060762720085808086, -0.004661535387110025, -0.0031336755463287234, -0.001530373082350148, 0.0001088761619285668, 0.0017437339512144095, 0.00333401220293789, 0.004840660803149927, 0.006226726414999595, 0.007458258740058715, 0.008505142009038258, 0.009341831339686926, 0.009947975959452496, 0.010308914090387096, 0.010416027464426008, 0.010266946900304674, 0.00986560404352474, 0.009222128157529003, 0.008352590664382306, 0.007278603873109481, 0.006026783911534547, 0.004628091205258873, 0.0031170648437149825, 0.001530969764797153, -0.00009112218696606803, -0.0017092946699876987, -0.003283769019197351, -0.004775882018532973, -0.006149035240488571, -0.0073695926446301525, -0.008407704423026918, -0.009238036916283918, -0.009840390753724568, -0.010200192137384127, -0.010308845323473495, -0.010163937779373152, -0.009769293124595185, -0.009134870711019328, -0.008276514468868288, -0.007215557347592569, -0.0059782912241642, -0.004595315448258029, -0.00310078016369045, -0.001531543115552564, 0.0000737392399667339, 0.001675563912446815, 0.0032345533890227388, 0.004712423565792373, 0.0060729238083116685, 0.00728272606016411, 0.008312241194704922, 0.009136342615950489, 0.009734979415048518, 0.010093664121865643, 0.010203823189262884, 0.010063001734130994, 0.00967491765064457, 0.009049363918998405, 0.008201961665838864, 0.007153770198919874, 0.005930763748120867, 0.0045631879117862895, 0.0030848117512741317, 0.00153209402566305, -0.000056715849575066915, -0.001642519952343532, -0.0031863339073372196, -0.004650245172536397, -0.005998344004833064, -0.007197604246304405, -0.008218692329369866, -0.009036684685486062, -0.009631676013797021, -0.009989263566841785, -0.01010089567328384, -0.009964076066946442, -0.009582419144642727, -0.008965554944794535, -0.008128886334342557, -0.007093204522074692, -0.005884172493081779, -0.004531689196248325, -0.0030691502352163075, -0.0015326233416345881, 0.000040041013955833456, 0.001610141944230643, 0.003139080437401436, 0.004589308189120179, 0.005925249651897664, 0.007114174661777941, 0.00812700023963896, 0.008939001927057518, 0.009530417260232635, 0.00988692665446217, 0.01],"x":[-100.0,-99.95002498750625,-99.9000499750125,-99.85007496251875,-99.80009995002499,-99.75012493753124,-99.70014992503748,-99.65017491254373,-99.60019990004997,-99.55022488755623,-99.50024987506247,-99.45027486256872,-99.40029985007496,-99.35032483758121,-99.30034982508745,-99.2503748125937,-99.20039980009994,-99.1504247876062,-99.10044977511244,-99.05047476261869,-99.00049975012493,-98.95052473763118,-98.90054972513744,-98.85057471264368,-98.80059970014993,-98.75062468765617,-98.70064967516242,-98.65067466266866,-98.60069965017492,-98.55072463768116,-98.50074962518741,-98.45077461269365,-98.4007996001999,-98.35082458770614,-98.3008495752124,-98.25087456271864,-98.20089955022489,-98.15092453773113,-98.10094952523738,-98.05097451274362,-98.00099950024988,-97.95102448775611,-97.90104947526237,-97.85107446276862,-97.80109945027486,-97.75112443778112,-97.70114942528735,-97.65117441279361,-97.60119940029985,-97.5512243878061,-97.50124937531234,-97.4512743628186,-97.40129935032483,-97.35132433783109,-97.30134932533733,-97.25137431284358,-97.20139930034982,-97.15142428785607,-97.10144927536231,-97.05147426286857,-97.0014992503748,-96.95152423788106,-96.90154922538731,-96.85157421289355,-96.8015992003998,-96.75162418790605,-96.7016491754123,-96.65167416291854,-96.60169915042479,-96.55172413793103,-96.50174912543729,-96.45177411294353,-96.40179910044978,-96.35182408795602,-96.30184907546227,-96.25187406296851,-96.20189905047476,-96.151924037981,-96.10194902548726,-96.0519740129935,-96.00199900049975,-95.95202398800599,-95.90204897551224,-95.8520739630185,-95.80209895052474,-95.75212393803099,-95.70214892553723,-95.65217391304348,-95.60219890054972,-95.55222388805598,-95.50224887556222,-95.45227386306847,-95.40229885057471,-95.35232383808096,-95.3023488255872,-95.25237381309346,-95.2023988005997,-95.15242378810595,-95.10244877561219,-95.05247376311844,-95.00249875062468,-94.95252373813094,-94.90254872563717,-94.85257371314343,-94.80259870064968,-94.75262368815592,-94.70264867566218,-94.65267366316841,-94.60269865067467,-94.55272363818091,-94.50274862568716,-94.4527736131934,-94.40279860069965,-94.3528235882059,-94.30284857571215,-94.25287356321839,-94.20289855072464,-94.15292353823088,-94.10294852573713,-94.05297351324337,-94.00299850074963,-93.95302348825587,-93.90304847576212,-93.85307346326836,-93.80309845077461,-93.75312343828087,-93.7031484257871,-93.65317341329336,-93.6031984007996,-93.55322338830585,-93.50324837581209,-93.45327336331835,-93.40329835082458,-93.35332333833084,-93.30334832583708,-93.25337331334333,-93.20339830084957,-93.15342328835582,-93.10344827586206,-93.05347326336832,-93.00349825087456,-92.95352323838081,-92.90354822588705,-92.8535732133933,-92.80359820089954,-92.7536231884058,-92.70364817591205,-92.65367316341829,-92.60369815092454,-92.55372313843078,-92.50374812593704,-92.45377311344328,-92.40379810094953,-92.35382308845577,-92.30384807596202,-92.25387306346826,-92.20389805097452,-92.15392303848076,-92.10394802598701,-92.05397301349325,-92.0039980009995,-91.95402298850574,-91.904047976012,-91.85407296351823,-91.80409795102449,-91.75412293853073,-91.70414792603698,-91.65417291354323,-91.60419790104947,-91.55422288855573,-91.50424787606197,-91.45427286356822,-91.40429785107446,-91.35432283858071,-91.30434782608695,-91.2543728135932,-91.20439780109945,-91.1544227886057,-91.10444777611194,-91.0544727636182,-91.00449775112443,-90.95452273863069,-90.90454772613693,-90.85457271364318,-90.80459770114942,-90.75462268865567,-90.70464767616193,-90.65467266366817,-90.60469765117442,-90.55472263868066,-90.50474762618691,-90.45477261369315,-90.4047976011994,-90.35482258870564,-90.3048475762119,-90.25487256371814,-90.20489755122439,-90.15492253873063,-90.10494752623688,-90.05497251374312,-90.00499750124938,-89.95502248875562,-89.90504747626187,-89.85507246376811,-89.80509745127436,-89.7551224387806,-89.70514742628686,-89.65517241379311,-89.60519740129935,-89.5552223888056,-89.50524737631184,-89.4552723638181,-89.40529735132434,-89.35532233883059,-89.30534732633683,-89.25537231384308,-89.20539730134932,-89.15542228885558,-89.10544727636182,-89.05547226386807,-89.00549725137431,-88.95552223888056,-88.9055472263868,-88.85557221389305,-88.8055972013993,-88.75562218890555,-88.70564717641179,-88.65567216391804,-88.6056971514243,-88.55572213893053,-88.50574712643679,-88.45577211394303,-88.40579710144928,-88.35582208895552,-88.30584707646177,-88.25587206396801,-88.20589705147427,-88.1559220389805,-88.10594702648676,-88.055972013993,-88.00599700149925,-87.95602198900549,-87.90604697651175,-87.85607196401799,-87.80609695152424,-87.75612193903048,-87.70614692653673,-87.65617191404297,-87.60619690154923,-87.55622188905548,-87.50624687656172,-87.45627186406797,-87.40629685157421,-87.35632183908046,-87.3063468265867,-87.25637181409296,-87.2063968015992,-87.15642178910545,-87.10644677661169,-87.05647176411794,-87.00649675162418,-86.95652173913044,-86.90654672663668,-86.85657171414293,-86.80659670164917,-86.75662168915542,-86.70664667666166,-86.65667166416792,-86.60669665167416,-86.55672163918041,-86.50674662668666,-86.4567716141929,-86.40679660169916,-86.3568215892054,-86.30684657671165,-86.25687156421789,-86.20689655172414,-86.15692153923038,-86.10694652673664,-86.05697151424287,-86.00699650174913,-85.95702148925537,-85.90704647676162,-85.85707146426786,-85.80709645177411,-85.75712143928035,-85.70714642678661,-85.65717141429285,-85.6071964017991,-85.55722138930535,-85.5072463768116,-85.45727136431785,-85.40729635182409,-85.35732133933034,-85.30734632683658,-85.25737131434283,-85.20739630184907,-85.15742128935533,-85.10744627686157,-85.05747126436782,-85.00749625187406,-84.95752123938031,-84.90754622688655,-84.8575712143928,-84.80759620189905,-84.7576211894053,-84.70764617691154,-84.65767116441779,-84.60769615192403,-84.55772113943029,-84.50774612693654,-84.45777111444278,-84.40779610194903,-84.35782108945527,-84.30784607696152,-84.25787106446776,-84.20789605197402,-84.15792103948026,-84.10794602698651,-84.05797101449275,-84.007996001999,-83.95802098950524,-83.9080459770115,-83.85807096451774,-83.80809595202399,-83.75812093953023,-83.70814592703648,-83.65817091454272,-83.60819590204898,-83.55822088955522,-83.50824587706147,-83.45827086456772,-83.40829585207396,-83.35832083958022,-83.30834582708646,-83.25837081459271,-83.20839580209895,-83.1584207896052,-83.10844577711144,-83.0584707646177,-83.00849575212393,-82.95852073963019,-82.90854572713643,-82.85857071464268,-82.80859570214892,-82.75862068965517,-82.70864567716141,-82.65867066466767,-82.6086956521739,-82.55872063968016,-82.5087456271864,-82.45877061469265,-82.40879560219891,-82.35882058970515,-82.3088455772114,-82.25887056471764,-82.2088955522239,-82.15892053973013,-82.10894552723639,-82.05897051474263,-82.00899550224888,-81.95902048975512,-81.90904547726137,-81.85907046476761,-81.80909545227387,-81.7591204397801,-81.70914542728636,-81.6591704147926,-81.60919540229885,-81.55922038980509,-81.50924537731134,-81.45927036481758,-81.40929535232384,-81.35932033983009,-81.30934532733633,-81.25937031484258,-81.20939530234882,-81.15942028985508,-81.10944527736132,-81.05947026486757,-81.00949525237381,-80.95952023988006,-80.9095452273863,-80.85957021489256,-80.8095952023988,-80.75962018990505,-80.70964517741129,-80.65967016491754,-80.60969515242378,-80.55972013993004,-80.50974512743628,-80.45977011494253,-80.40979510244878,-80.35982008995502,-80.30984507746128,-80.25987006496752,-80.20989505247377,-80.15992003998001,-80.10994502748626,-80.0599700149925,-80.00999500249875,-79.960019990005,-79.91004497751125,-79.86006996501749,-79.81009495252374,-79.76011994002998,-79.71014492753623,-79.66016991504247,-79.61019490254873,-79.56021989005497,-79.51024487756122,-79.46026986506746,-79.41029485257371,-79.36031984007997,-79.3103448275862,-79.26036981509246,-79.2103948025987,-79.16041979010495,-79.11044477761119,-79.06046976511745,-79.01049475262369,-78.96051974012994,-78.91054472763618,-78.86056971514243,-78.81059470264867,-78.76061969015493,-78.71064467766116,-78.66066966516742,-78.61069465267366,-78.56071964017991,-78.51074462768615,-78.4607696151924,-78.41079460269864,-78.3608195902049,-78.31084457771115,-78.26086956521739,-78.21089455272364,-78.16091954022988,-78.11094452773614,-78.06096951524238,-78.01099450274863,-77.96101949025487,-77.91104447776112,-77.86106946526736,-77.81109445277362,-77.76111944027986,-77.71114442778611,-77.66116941529235,-77.6111944027986,-77.56121939030484,-77.5112443778111,-77.46126936531734,-77.41129435282359,-77.36131934032983,-77.31134432783608,-77.26136931534234,-77.21139430284857,-77.16141929035483,-77.11144427786107,-77.06146926536732,-77.01149425287356,-76.96151924037981,-76.91154422788605,-76.86156921539231,-76.81159420289855,-76.7616191904048,-76.71164417791104,-76.6616691654173,-76.61169415292353,-76.56171914042979,-76.51174412793603,-76.46176911544228,-76.41179410294852,-76.36181909045477,-76.31184407796101,-76.26186906546727,-76.21189405297352,-76.16191904047976,-76.11194402798601,-76.06196901549225,-76.0119940029985,-75.96201899050475,-75.912043978011,-75.86206896551724,-75.81209395302349,-75.76211894052973,-75.71214392803599,-75.66216891554222,-75.61219390304848,-75.56221889055472,-75.51224387806097,-75.46226886556721,-75.41229385307346,-75.3623188405797,-75.31234382808596,-75.2623688155922,-75.21239380309845,-75.1624187906047,-75.11244377811094,-75.0624687656172,-75.01249375312344,-74.96251874062969,-74.91254372813593,-74.86256871564218,-74.81259370314842,-74.76261869065468,-74.71264367816092,-74.66266866566717,-74.61269365317341,-74.56271864067966,-74.5127436281859,-74.46276861569216,-74.4127936031984,-74.36281859070465,-74.31284357821089,-74.26286856571714,-74.2128935532234,-74.16291854072963,-74.11294352823589,-74.06296851574213,-74.01299350324838,-73.96301849075462,-73.91304347826087,-73.86306846576711,-73.81309345327337,-73.7631184407796,-73.71314342828586,-73.6631684157921,-73.61319340329835,-73.5632183908046,-73.51324337831085,-73.46326836581709,-73.41329335332334,-73.36331834082958,-73.31334332833583,-73.26336831584207,-73.21339330334833,-73.16341829085458,-73.11344327836082,-73.06346826586707,-73.01349325337331,-72.96351824087957,-72.9135432283858,-72.86356821589206,-72.8135932033983,-72.76361819090455,-72.71364317841079,-72.66366816591704,-72.61369315342328,-72.56371814092954,-72.51374312843578,-72.46376811594203,-72.41379310344827,-72.36381809095452,-72.31384307846076,-72.26386806596702,-72.21389305347326,-72.16391804097951,-72.11394302848576,-72.063968015992,-72.01399300349826,-71.9640179910045,-71.91404297851075,-71.86406796601699,-71.81409295352324,-71.76411794102948,-71.71414292853574,-71.66416791604198,-71.61419290354823,-71.56421789105447,-71.51424287856072,-71.46426786606696,-71.41429285357322,-71.36431784107945,-71.31434282858571,-71.26436781609195,-71.2143928035982,-71.16441779110444,-71.1144427786107,-71.06446776611695,-71.01449275362319,-70.96451774112944,-70.91454272863568,-70.86456771614193,-70.81459270364817,-70.76461769115443,-70.71464267866067,-70.66466766616692,-70.61469265367316,-70.56471764117941,-70.51474262868565,-70.4647676161919,-70.41479260369815,-70.3648175912044,-70.31484257871064,-70.26486756621689,-70.21489255372313,-70.16491754122939,-70.11494252873563,-70.06496751624188,-70.01499250374813,-69.96501749125437,-69.91504247876063,-69.86506746626686,-69.81509245377312,-69.76511744127936,-69.71514242878561,-69.66516741629185,-69.6151924037981,-69.56521739130434,-69.5152423788106,-69.46526736631684,-69.41529235382309,-69.36531734132933,-69.31534232883558,-69.26536731634182,-69.21539230384808,-69.16541729135432,-69.11544227886057,-69.06546726636682,-69.01549225387306,-68.96551724137932,-68.91554222888556,-68.86556721639181,-68.81559220389805,-68.7656171914043,-68.71564217891054,-68.6656671664168,-68.61569215392304,-68.56571714142929,-68.51574212893553,-68.46576711644178,-68.41579210394802,-68.36581709145428,-68.31584207896051,-68.26586706646677,-68.21589205397301,-68.16591704147926,-68.1159420289855,-68.06596701649175,-68.01599200399801,-67.96601699150425,-67.9160419790105,-67.86606696651674,-67.816091954023,-67.76611694152923,-67.71614192903549,-67.66616691654173,-67.61619190404798,-67.56621689155422,-67.51624187906047,-67.46626686656671,-67.41629185407297,-67.3663168415792,-67.31634182908546,-67.2663668165917,-67.21639180409795,-67.16641679160419,-67.11644177911045,-67.06646676661668,-67.01649175412294,-66.96651674162919,-66.91654172913543,-66.86656671664169,-66.81659170414792,-66.76661669165418,-66.71664167916042,-66.66666666666667,-66.61669165417291,-66.56671664167916,-66.5167416291854,-66.46676661669166,-66.4167916041979,-66.36681659170415,-66.31684157921039,-66.26686656671664,-66.21689155422288,-66.16691654172914,-66.11694152923538,-66.06696651674163,-66.01699150424787,-65.96701649175412,-65.91704147926038,-65.86706646676662,-65.81709145427287,-65.76711644177911,-65.71714142928536,-65.6671664167916,-65.61719140429786,-65.5672163918041,-65.51724137931035,-65.46726636681659,-65.41729135432284,-65.36731634182908,-65.31734132933533,-65.26736631684157,-65.21739130434783,-65.16741629185407,-65.11744127936032,-65.06746626686656,-65.01749125437281,-64.96751624187905,-64.91754122938531,-64.86756621689156,-64.8175912043978,-64.76761619190405,-64.7176411794103,-64.66766616691655,-64.61769115442279,-64.56771614192904,-64.51774112943528,-64.46776611694153,-64.41779110444777,-64.36781609195403,-64.31784107946027,-64.26786606696652,-64.21789105447276,-64.16791604197901,-64.11794102948525,-64.0679660169915,-64.01799100449774,-63.968015992004,-63.918040979510245,-63.86806596701649,-63.81809095452274,-63.768115942028984,-63.71814092953523,-63.66816591704148,-63.618190904547724,-63.56821589205397,-63.51824087956022,-63.468265867066464,-63.41829085457271,-63.368315842078964,-63.31834082958521,-63.26836581709146,-63.2183908045977,-63.16841579210395,-63.1184407796102,-63.06846576711644,-63.01849075462269,-62.968515742128936,-62.91854072963518,-62.86856571714143,-62.818590704647676,-62.76861569215392,-62.71864067966017,-62.668665667166415,-62.61869065467266,-62.56871564217891,-62.518740629685155,-62.4687656171914,-62.41879060469765,-62.3688155922039,-62.31884057971015,-62.268865567216395,-62.21889055472264,-62.16891554222889,-62.118940529735134,-62.06896551724138,-62.01899050474763,-61.969015492253874,-61.91904047976012,-61.86906546726637,-61.81909045477261,-61.76911544227886,-61.71914042978511,-61.66916541729135,-61.6191904047976,-61.569215392303846,-61.51924037981009,-61.46926536731634,-61.419290354822586,-61.36931534232883,-61.319340329835086,-61.26936531734133,-61.21939030484758,-61.169415292353825,-61.11944027986007,-61.06946526736632,-61.019490254872565,-60.96951524237881,-60.91954022988506,-60.869565217391305,-60.81959020489755,-60.7696151924038,-60.719640179910044,-60.66966516741629,-60.61969015492254,-60.569715142428784,-60.51974012993503,-60.46976511744128,-60.41979010494752,-60.36981509245377,-60.31984007996002,-60.26986506746627,-60.21989005497252,-60.16991504247876,-60.11994002998501,-60.069965017491256,-60.0199900049975,-59.97001499250375,-59.920039980009996,-59.87006496751624,-59.82008995502249,-59.770114942528735,-59.72013993003498,-59.67016491754123,-59.620189905047475,-59.57021489255372,-59.52023988005997,-59.470264867566215,-59.42028985507246,-59.37031484257871,-59.320339830084954,-59.27036481759121,-59.220389805097454,-59.1704147926037,-59.12043978010995,-59.070464767616194,-59.02048975512244,-58.97051474262869,-58.920539730134934,-58.87056471764118,-58.82058970514743,-58.77061469265367,-58.72063968015992,-58.670664667666166,-58.62068965517241,-58.57071464267866,-58.520739630184906,-58.47076461769115,-58.4207896051974,-58.370814592703645,-58.32083958020989,-58.27086456771614,-58.22088955522239,-58.17091454272864,-58.120939530234885,-58.07096451774113,-58.02098950524738,-57.971014492753625,-57.92103948025987,-57.87106446776612,-57.821089455272364,-57.77111444277861,-57.72113943028486,-57.671164417791104,-57.62118940529735,-57.5712143928036,-57.521239380309844,-57.47126436781609,-57.42128935532234,-57.37131434282858,-57.32133933033483,-57.271364317841076,-57.22138930534732,-57.17141429285358,-57.12143928035982,-57.07146426786607,-57.021489255372316,-56.97151424287856,-56.92153923038481,-56.871564217891056,-56.8215892053973,-56.77161419290355,-56.721639180409795,-56.67166416791604,-56.62168915542229,-56.571714142928535,-56.52173913043478,-56.47176411794103,-56.421789105447274,-56.37181409295352,-56.32183908045977,-56.271864067966014,-56.22188905547226,-56.171914042978514,-56.12193903048476,-56.07196401799101,-56.021989005497254,-55.9720139930035,-55.92203898050975,-55.87206396801599,-55.82208895552224,-55.77211394302849,-55.72213893053473,-55.67216391804098,-55.622188905547226,-55.57221389305347,-55.52223888055972,-55.472263868065966,-55.42228885557221,-55.37231384307846,-55.322338830584705,-55.27236381809095,-55.2223888055972,-55.172413793103445,-55.1224387806097,-55.072463768115945,-55.02248875562219,-54.97251374312844,-54.922538730634685,-54.87256371814093,-54.82258870564718,-54.772613693153424,-54.72263868065967,-54.67266366816592,-54.622688655672164,-54.57271364317841,-54.52273863068466,-54.4727636181909,-54.42278860569715,-54.3728135932034,-54.32283858070964,-54.27286356821589,-54.222888555722136,-54.17291354322838,-54.122938530734636,-54.07296351824088,-54.02298850574713,-53.973013493253376,-53.92303848075962,-53.87306346826587,-53.823088455772115,-53.77311344327836,-53.72313843078461,-53.673163418290855,-53.6231884057971,-53.57321339330335,-53.523238380809595,-53.47326336831584,-53.42328835582209,-53.373313343328334,-53.32333833083458,-53.27336331834083,-53.223388305847074,-53.17341329335332,-53.12343828085957,-53.07346326836582,-53.02348825587207,-52.973513243378314,-52.92353823088456,-52.87356321839081,-52.82358820589705,-52.7736131934033,-52.723638180909546,-52.67366316841579,-52.62368815592204,-52.573713143428286,-52.52373813093453,-52.47376311844078,-52.423788105947025,-52.37381309345327,-52.32383808095952,-52.273863068465765,-52.22388805597201,-52.17391304347826,-52.123938030984505,-52.07396301849075,-52.023988005997005,-51.97401299350325,-51.9240379810095,-51.874062968515744,-51.82408795602199,-51.77411294352824,-51.724137931034484,-51.67416291854073,-51.62418790604698,-51.574212893553224,-51.52423788105947,-51.47426286856572,-51.42428785607196,-51.37431284357821,-51.324337831084456,-51.2743628185907,-51.22438780609695,-51.174412793603196,-51.12443778110944,-51.07446276861569,-51.02448775612194,-50.97451274362819,-50.924537731134436,-50.87456271864068,-50.82458770614693,-50.774612693653175,-50.72463768115942,-50.67466266866567,-50.624687656171915,-50.57471264367816,-50.52473763118441,-50.474762618690654,-50.4247876061969,-50.37481259370315,-50.324837581209394,-50.27486256871564,-50.22488755622189,-50.174912543728134,-50.12493753123438,-50.07496251874063,-50.02498750624687,-49.97501249375313,-49.92503748125937,-49.87506246876562,-49.825087456271866,-49.77511244377811,-49.72513743128436,-49.675162418790606,-49.62518740629685,-49.5752123938031,-49.525237381309346,-49.47526236881559,-49.42528735632184,-49.375312343828085,-49.32533733133433,-49.27536231884058,-49.225387306346825,-49.17541229385307,-49.12543728135932,-49.075462268865564,-49.02548725637181,-48.97551224387806,-48.92553723138431,-48.87556221889056,-48.825587206396804,-48.77561219390305,-48.7256371814093,-48.675662168915544,-48.62568715642179,-48.57571214392804,-48.52573713143428,-48.47576211894053,-48.425787106446776,-48.37581209395302,-48.32583708145927,-48.275862068965516,-48.22588705647176,-48.17591204397801,-48.125937031484256,-48.0759620189905,-48.02598700649675,-47.976011994002995,-47.92603698150925,-47.876061969015495,-47.82608695652174,-47.77611194402799,-47.726136931534235,-47.67616191904048,-47.62618690654673,-47.576211894052975,-47.52623688155922,-47.47626186906547,-47.426286856571714,-47.37631184407796,-47.32633683158421,-47.276361819090454,-47.2263868065967,-47.17641179410295,-47.12643678160919,-47.07646176911544,-47.026486756621686,-46.97651174412793,-46.92653673163418,-46.87656171914043,-46.82658670664668,-46.776611694152926,-46.72663668165917,-46.67666166916542,-46.626686656671666,-46.57671164417791,-46.52673663168416,-46.476761619190405,-46.42678660669665,-46.3768115942029,-46.326836581709145,-46.27686156921539,-46.22688655672164,-46.176911544227885,-46.12693653173413,-46.07696151924038,-46.026986506746624,-45.97701149425287,-45.92703648175912,-45.877061469265364,-45.82708645677162,-45.777111444277864,-45.72713643178411,-45.67716141929036,-45.6271864067966,-45.57721139430285,-45.5272363818091,-45.47726136931534,-45.42728635682159,-45.377311344327836,-45.32733633183408,-45.27736131934033,-45.227386306846576,-45.17741129435282,-45.12743628185907,-45.077461269365315,-45.02748625687156,-44.97751124437781,-44.927536231884055,-44.8775612193903,-44.827586206896555,-44.7776111944028,-44.72763618190905,-44.677661169415295,-44.62768615692154,-44.57771114442779,-44.527736131934034,-44.47776111944028,-44.42778610694653,-44.377811094452774,-44.32783608195902,-44.27786106946527,-44.22788605697151,-44.17791104447776,-44.12793603198401,-44.07796101949025,-44.0279860069965,-43.978010994502746,-43.92803598200899,-43.87806096951524,-43.828085957021486,-43.77811094452774,-43.728135932033986,-43.67816091954023,-43.62818590704648,-43.578210894552726,-43.52823588205897,-43.47826086956522,-43.428285857071465,-43.37831084457771,-43.32833583208396,-43.278360819590205,-43.22838580709645,-43.1784107946027,-43.128435782108944,-43.07846076961519,-43.02848575712144,-42.978510744627684,-42.92853573213393,-42.87856071964018,-42.82858570714642,-42.77861069465268,-42.728635682158924,-42.67866066966517,-42.62868565717142,-42.57871064467766,-42.52873563218391,-42.478760619690156,-42.4287856071964,-42.37881059470265,-42.328835582208896,-42.27886056971514,-42.22888555722139,-42.178910544727636,-42.12893553223388,-42.07896051974013,-42.028985507246375,-41.97901049475262,-41.92903548225887,-41.879060469765115,-41.82908545727136,-41.77911044477761,-41.72913543228386,-41.67916041979011,-41.629185407296355,-41.5792103948026,-41.52923538230885,-41.479260369815094,-41.42928535732134,-41.37931034482759,-41.329335332333834,-41.27936031984008,-41.22938530734633,-41.17941029485257,-41.12943528235882,-41.079460269865066,-41.02948525737131,-40.97951024487756,-40.929535232383806,-40.87956021989005,-40.8295852073963,-40.779610194902546,-40.72963518240879,-40.679660169915046,-40.62968515742129,-40.57971014492754,-40.529735132433785,-40.47976011994003,-40.42978510744628,-40.379810094952525,-40.32983508245877,-40.27986006996502,-40.229885057471265,-40.17991004497751,-40.12993503248376,-40.079960019990004,-40.02998500749625,-39.9800099950025,-39.930034982508744,-39.88005997001499,-39.83008495752124,-39.78010994502748,-39.73013493253373,-39.68015992003998,-39.63018490754623,-39.58020989505248,-39.53023488255872,-39.48025987006497,-39.430284857571216,-39.38030984507746,-39.33033483258371,-39.280359820089956,-39.2303848075962,-39.18040979510245,-39.130434782608695,-39.08045977011494,-39.03048475762119,-38.980509745127435,-38.93053473263368,-38.88055972013993,-38.830584707646175,-38.78060969515242,-38.73063468265867,-38.680659670164914,-38.63068465767117,-38.580709645177414,-38.53073463268366,-38.48075962018991,-38.430784607696154,-38.3808095952024,-38.33083458270865,-38.28085957021489,-38.23088455772114,-38.18090954522739,-38.13093453273363,-38.08095952023988,-38.030984507746126,-37.98100949525237,-37.93103448275862,-37.881059470264866,-37.83108445777111,-37.78110944527736,-37.731134432783605,-37.68115942028985,-37.6311844077961,-37.58120939530235,-37.5312343828086,-37.481259370314845,-37.43128435782109,-37.38130934532734,-37.331334332833585,-37.28135932033983,-37.23138430784608,-37.181409295352324,-37.13143428285857,-37.08145927036482,-37.031484257871064,-36.98150924537731,-36.93153423288356,-36.8815592203898,-36.83158420789605,-36.7816091954023,-36.73163418290854,-36.68165917041479,-36.631684157921036,-36.58170914542729,-36.531734132933536,-36.48175912043978,-36.43178410794603,-36.381809095452276,-36.33183408295852,-36.28185907046477,-36.231884057971016,-36.18190904547726,-36.13193403298351,-36.081959020489755,-36.031984007996,-35.98200899550225,-35.932033983008495,-35.88205897051474,-35.83208395802099,-35.782108945527234,-35.73213393303348,-35.68215892053973,-35.632183908045974,-35.58220889555222,-35.532233883058474,-35.48225887056472,-35.43228385807097,-35.382308845577214,-35.33233383308346,-35.28235882058971,-35.23238380809595,-35.1824087956022,-35.132433783108446,-35.08245877061469,-35.03248375812094,-34.982508745627186,-34.93253373313343,-34.88255872063968,-34.832583708145926,-34.78260869565217,-34.73263368315842,-34.682658670664665,-34.63268365817091,-34.58270864567716,-34.53273363318341,-34.48275862068966,-34.432783608195905,-34.38280859570215,-34.3328335832084,-34.282858570714644,-34.23288355822089,-34.18290854572714,-34.132933533233384,-34.08295852073963,-34.03298350824588,-33.983008495752124,-33.93303348325837,-33.88305847076462,-33.83308345827086,-33.78310844577711,-33.733133433283356,-33.6831584207896,-33.63318340829585,-33.583208395802096,-33.53323338330834,-33.483258370814596,-33.43328335832084,-33.38330834582709,-33.333333333333336,-33.28335832083958,-33.23338330834583,-33.183408295852075,-33.13343328335832,-33.08345827086457,-33.033483258370815,-32.98350824587706,-32.93353323338331,-32.883558220889554,-32.8335832083958,-32.78360819590205,-32.733633183408294,-32.68365817091454,-32.63368315842079,-32.583708145927034,-32.53373313343328,-32.48375812093953,-32.43378310844578,-32.38380809595203,-32.33383308345827,-32.28385807096452,-32.23388305847077,-32.18390804597701,-32.13393303348326,-32.083958020989506,-32.03398300849575,-31.984007996002,-31.934032983508246,-31.884057971014492,-31.83408295852074,-31.784107946026985,-31.734132933533232,-31.684157921039482,-31.63418290854573,-31.584207896051975,-31.53423288355822,-31.484257871064468,-31.434282858570715,-31.38430784607696,-31.334332833583208,-31.284357821089454,-31.2343828085957,-31.18440779610195,-31.134432783608197,-31.084457771114444,-31.03448275862069,-30.984507746126937,-30.934532733633183,-30.88455772113943,-30.834582708645677,-30.784607696151923,-30.73463268365817,-30.684657671164416,-30.634682658670666,-30.584707646176913,-30.53473263368316,-30.484757621189406,-30.434782608695652,-30.3848075962019,-30.334832583708145,-30.284857571214392,-30.23488255872064,-30.184907546226885,-30.134932533733135,-30.08495752123938,-30.034982508745628,-29.985007496251875,-29.93503248375812,-29.885057471264368,-29.835082458770614,-29.78510744627686,-29.735132433783107,-29.685157421289354,-29.635182408795604,-29.58520739630185,-29.535232383808097,-29.485257371314344,-29.43528235882059,-29.385307346326837,-29.335332333833083,-29.28535732133933,-29.235382308845576,-29.185407296351823,-29.13543228385807,-29.08545727136432,-29.035482258870566,-28.985507246376812,-28.93553223388306,-28.885557221389305,-28.835582208895552,-28.7856071964018,-28.735632183908045,-28.68565717141429,-28.635682158920538,-28.58570714642679,-28.535732133933035,-28.48575712143928,-28.435782108945528,-28.385807096451774,-28.33583208395802,-28.285857071464267,-28.235882058970514,-28.18590704647676,-28.135932033983007,-28.085957021489257,-28.035982008995504,-27.98600699650175,-27.936031984007997,-27.886056971514243,-27.83608195902049,-27.786106946526736,-27.736131934032983,-27.68615692153923,-27.636181909045476,-27.586206896551722,-27.536231884057973,-27.48625687156422,-27.436281859070466,-27.386306846576712,-27.33633183408296,-27.286356821589205,-27.23638180909545,-27.1864067966017,-27.136431784107945,-27.08645677161419,-27.03648175912044,-26.986506746626688,-26.936531734132934,-26.88655672163918,-26.836581709145428,-26.786606696651674,-26.73663168415792,-26.686656671664167,-26.636681659170414,-26.58670664667666,-26.53673163418291,-26.486756621689157,-26.436781609195403,-26.38680659670165,-26.336831584207896,-26.286856571714143,-26.23688155922039,-26.186906546726636,-26.136931534232883,-26.08695652173913,-26.036981509245376,-25.987006496751626,-25.937031484257872,-25.88705647176412,-25.837081459270365,-25.787106446776612,-25.73713143428286,-25.687156421789105,-25.63718140929535,-25.587206396801598,-25.537231384307844,-25.487256371814095,-25.43728135932034,-25.387306346826588,-25.337331334332834,-25.28735632183908,-25.237381309345327,-25.187406296851574,-25.13743128435782,-25.087456271864067,-25.037481259370313,-24.987506246876563,-24.93753123438281,-24.887556221889056,-24.837581209395303,-24.78760619690155,-24.737631184407796,-24.687656171914043,-24.63768115942029,-24.587706146926536,-24.537731134432782,-24.48775612193903,-24.43778110944528,-24.387806096951525,-24.337831084457772,-24.28785607196402,-24.237881059470265,-24.18790604697651,-24.137931034482758,-24.087956021989005,-24.03798100949525,-23.988005997001498,-23.938030984507748,-23.888055972013994,-23.83808095952024,-23.788105947026487,-23.738130934532734,-23.68815592203898,-23.638180909545227,-23.588205897051473,-23.53823088455772,-23.488255872063966,-23.438280859570217,-23.388305847076463,-23.33833083458271,-23.288355822088956,-23.238380809595203,-23.18840579710145,-23.138430784607696,-23.088455772113942,-23.03848075962019,-22.988505747126435,-22.938530734632682,-22.888555722138932,-22.83858070964518,-22.788605697151425,-22.73863068465767,-22.688655672163918,-22.638680659670165,-22.58870564717641,-22.538730634682658,-22.488755622188904,-22.43878060969515,-22.3888055972014,-22.338830584707647,-22.288855572213894,-22.23888055972014,-22.188905547226387,-22.138930534732634,-22.08895552223888,-22.038980509745127,-21.989005497251373,-21.93903048475762,-21.88905547226387,-21.839080459770116,-21.789105447276363,-21.73913043478261,-21.689155422288856,-21.639180409795102,-21.58920539730135,-21.539230384807595,-21.489255372313842,-21.43928035982009,-21.38930534732634,-21.339330334832585,-21.28935532233883,-21.239380309845078,-21.189405297351325,-21.13943028485757,-21.089455272363818,-21.039480259870064,-20.98950524737631,-20.939530234882557,-20.889555222388804,-20.839580209895054,-20.7896051974013,-20.739630184907547,-20.689655172413794,-20.63968015992004,-20.589705147426287,-20.539730134932533,-20.48975512243878,-20.439780109945026,-20.389805097451273,-20.339830084957523,-20.28985507246377,-20.239880059970016,-20.189905047476262,-20.13993003498251,-20.089955022488756,-20.039980009995002,-19.99000499750125,-19.940029985007495,-19.89005497251374,-19.84007996001999,-19.79010494752624,-19.740129935032485,-19.69015492253873,-19.640179910044978,-19.590204897551224,-19.54022988505747,-19.490254872563717,-19.440279860069964,-19.39030484757621,-19.340329835082457,-19.290354822588707,-19.240379810094954,-19.1904047976012,-19.140429785107447,-19.090454772613693,-19.04047976011994,-18.990504747626186,-18.940529735132433,-18.89055472263868,-18.840579710144926,-18.790604697651176,-18.740629685157423,-18.69065467266367,-18.640679660169916,-18.590704647676162,-18.54072963518241,-18.490754622688655,-18.4407796101949,-18.39080459770115,-18.340829585207395,-18.290854572713645,-18.24087956021989,-18.190904547726138,-18.140929535232384,-18.09095452273863,-18.040979510244878,-17.991004497751124,-17.94102948525737,-17.891054472763617,-17.841079460269864,-17.79110444777611,-17.74112943528236,-17.691154422788607,-17.641179410294853,-17.5912043978011,-17.541229385307346,-17.491254372813593,-17.44127936031984,-17.391304347826086,-17.341329335332333,-17.29135432283858,-17.24137931034483,-17.191404297851076,-17.141429285357322,-17.09145427286357,-17.041479260369815,-16.991504247876062,-16.94152923538231,-16.891554222888555,-16.8415792103948,-16.791604197901048,-16.741629185407298,-16.691654172913545,-16.64167916041979,-16.591704147926038,-16.541729135432284,-16.49175412293853,-16.441779110444777,-16.391804097951024,-16.34182908545727,-16.291854072963517,-16.241879060469763,-16.191904047976013,-16.14192903548226,-16.091954022988507,-16.041979010494753,-15.992003998001,-15.942028985507246,-15.892053973013493,-15.842078960519741,-15.792103948025987,-15.742128935532234,-15.69215392303848,-15.642178910544727,-15.592203898050975,-15.542228885557222,-15.492253873063468,-15.442278860569715,-15.392303848075962,-15.342328835582208,-15.292353823088456,-15.242378810594703,-15.19240379810095,-15.142428785607196,-15.092453773113442,-15.04247876061969,-14.992503748125937,-14.942528735632184,-14.89255372313843,-14.842578710644677,-14.792603698150925,-14.742628685657172,-14.692653673163418,-14.642678660669665,-14.592703648175911,-14.54272863568216,-14.492753623188406,-14.442778610694653,-14.3928035982009,-14.342828585707146,-14.292853573213394,-14.24287856071964,-14.192903548225887,-14.142928535732134,-14.09295352323838,-14.042978510744629,-13.993003498250875,-13.943028485757122,-13.893053473263368,-13.843078460769615,-13.793103448275861,-13.74312843578211,-13.693153423288356,-13.643178410794603,-13.59320339830085,-13.543228385807096,-13.493253373313344,-13.44327836081959,-13.393303348325837,-13.343328335832084,-13.29335332333833,-13.243378310844578,-13.193403298350825,-13.143428285857071,-13.093453273363318,-13.043478260869565,-12.993503248375813,-12.94352823588206,-12.893553223388306,-12.843578210894552,-12.793603198400799,-12.743628185907047,-12.693653173413294,-12.64367816091954,-12.593703148425787,-12.543728135932033,-12.493753123438282,-12.443778110944528,-12.393803098450775,-12.343828085957021,-12.293853073463268,-12.243878060969514,-12.193903048475763,-12.14392803598201,-12.093953023488256,-12.043978010994502,-11.994002998500749,-11.944027986006997,-11.894052973513244,-11.84407796101949,-11.794102948525737,-11.744127936031983,-11.694152923538232,-11.644177911044478,-11.594202898550725,-11.544227886056971,-11.494252873563218,-11.444277861069466,-11.394302848575713,-11.344327836081959,-11.294352823588206,-11.244377811094452,-11.1944027986007,-11.144427786106947,-11.094452773613193,-11.04447776111944,-10.994502748625687,-10.944527736131935,-10.894552723638181,-10.844577711144428,-10.794602698650674,-10.744627686156921,-10.69465267366317,-10.644677661169416,-10.594702648675662,-10.544727636181909,-10.494752623688155,-10.444777611194402,-10.39480259870065,-10.344827586206897,-10.294852573713143,-10.24487756121939,-10.194902548725636,-10.144927536231885,-10.094952523738131,-10.044977511244378,-9.995002498750624,-9.94502748625687,-9.89505247376312,-9.845077461269366,-9.795102448775612,-9.745127436281859,-9.695152423788105,-9.645177411294354,-9.5952023988006,-9.545227386306847,-9.495252373813093,-9.44527736131934,-9.395302348825588,-9.345327336331835,-9.295352323838081,-9.245377311344328,-9.195402298850574,-9.145427286356822,-9.095452273863069,-9.045477261369316,-8.995502248875562,-8.945527236381809,-8.895552223888055,-8.845577211394303,-8.79560219890055,-8.745627186406796,-8.695652173913043,-8.64567716141929,-8.595702148925538,-8.545727136431784,-8.495752123938031,-8.445777111444277,-8.395802098950524,-8.345827086456772,-8.295852073963019,-8.245877061469265,-8.195902048975512,-8.145927036481758,-8.095952023988007,-8.045977011494253,-7.9960019990005,-7.946026986506746,-7.896051974012994,-7.84607696151924,-7.796101949025488,-7.746126936531734,-7.696151924037981,-7.646176911544228,-7.596201899050475,-7.546226886556721,-7.496251874062969,-7.446276861569215,-7.396301849075463,-7.346326836581709,-7.296351824087956,-7.246376811594203,-7.19640179910045,-7.146426786606697,-7.096451774112944,-7.04647676161919,-6.9965017491254375,-6.946526736631684,-6.896551724137931,-6.846576711644178,-6.796601699150425,-6.746626686656672,-6.6966516741629185,-6.646676661669165,-6.5967016491754125,-6.546726636681659,-6.496751624187906,-6.446776611694153,-6.3968015992003995,-6.346826586706647,-6.296851574212893,-6.246876561719141,-6.196901549225387,-6.146926536731634,-6.096951524237881,-6.046976511744128,-5.997001499250374,-5.947026486756622,-5.897051474262868,-5.847076461769116,-5.797101449275362,-5.747126436781609,-5.697151424287856,-5.647176411794103,-5.59720139930035,-5.547226386806597,-5.497251374312843,-5.447276361819091,-5.397301349325337,-5.347326336831585,-5.297351324337831,-5.247376311844078,-5.197401299350325,-5.147426286856572,-5.097451274362818,-5.047476261869066,-4.997501249375312,-4.94752623688156,-4.897551224387806,-4.847576211894053,-4.7976011994003,-4.747626186906547,-4.697651174412794,-4.6476761619190405,-4.597701149425287,-4.5477261369315345,-4.497751124437781,-4.4477761119440276,-4.397801099450275,-4.3478260869565215,-4.297851074462769,-4.2478760619690155,-4.197901049475262,-4.147926036981509,-4.097951024487756,-4.047976011994003,-3.99800099950025,-3.948025987006497,-3.898050974512744,-3.8480759620189904,-3.7981009495252374,-3.7481259370314843,-3.6981509245377313,-3.648175912043978,-3.598200899550225,-3.548225887056472,-3.4982508745627188,-3.4482758620689653,-3.3983008495752123,-3.3483258370814593,-3.2983508245877062,-3.248375812093953,-3.1984007996001997,-3.1484257871064467,-3.0984507746126937,-3.0484757621189407,-2.998500749625187,-2.948525737131434,-2.898550724637681,-2.848575712143928,-2.798600699650175,-2.7486256871564216,-2.6986506746626686,-2.6486756621689156,-2.5987006496751626,-2.548725637181409,-2.498750624687656,-2.448775612193903,-2.39880059970015,-2.348825587206397,-2.2988505747126435,-2.2488755622188905,-2.1989005497251375,-2.1489255372313845,-2.098950524737631,-2.048975512243878,-1.999000499750125,-1.949025487256372,-1.8990504747626187,-1.8490754622688657,-1.7991004497751124,-1.7491254372813594,-1.6991504247876061,-1.6491754122938531,-1.5992003998000999,-1.5492253873063468,-1.4992503748125936,-1.4492753623188406,-1.3993003498250876,-1.3493253373313343,-1.2993503248375813,-1.249375312343828,-1.199400299850075,-1.1494252873563218,-1.0994502748625687,-1.0494752623688155,-0.9995002498750625,-0.9495252373813093,-0.8995502248875562,-0.8495752123938031,-0.7996001999000499,-0.7496251874062968,-0.6996501749125438,-0.6496751624187906,-0.5997001499250375,-0.5497251374312844,-0.49975012493753124,-0.4497751124437781,-0.39980009995002497,-0.3498250874562719,-0.29985007496251875,-0.24987506246876562,-0.19990004997501248,-0.14992503748125938,-0.09995002498750624,-0.04997501249375312,0.0,0.04997501249375312,0.09995002498750624,0.14992503748125938,0.19990004997501248,0.24987506246876562,0.29985007496251875,0.3498250874562719,0.39980009995002497,0.4497751124437781,0.49975012493753124,0.5497251374312844,0.5997001499250375,0.6496751624187906,0.6996501749125438,0.7496251874062968,0.7996001999000499,0.8495752123938031,0.8995502248875562,0.9495252373813093,0.9995002498750625,1.0494752623688155,1.0994502748625687,1.1494252873563218,1.199400299850075,1.249375312343828,1.2993503248375813,1.3493253373313343,1.3993003498250876,1.4492753623188406,1.4992503748125936,1.5492253873063468,1.5992003998000999,1.6491754122938531,1.6991504247876061,1.7491254372813594,1.7991004497751124,1.8490754622688657,1.8990504747626187,1.949025487256372,1.999000499750125,2.048975512243878,2.098950524737631,2.1489255372313845,2.1989005497251375,2.2488755622188905,2.2988505747126435,2.348825587206397,2.39880059970015,2.448775612193903,2.498750624687656,2.548725637181409,2.5987006496751626,2.6486756621689156,2.6986506746626686,2.7486256871564216,2.798600699650175,2.848575712143928,2.898550724637681,2.948525737131434,2.998500749625187,3.0484757621189407,3.0984507746126937,3.1484257871064467,3.1984007996001997,3.248375812093953,3.2983508245877062,3.3483258370814593,3.3983008495752123,3.4482758620689653,3.4982508745627188,3.548225887056472,3.598200899550225,3.648175912043978,3.6981509245377313,3.7481259370314843,3.7981009495252374,3.8480759620189904,3.898050974512744,3.948025987006497,3.99800099950025,4.047976011994003,4.097951024487756,4.147926036981509,4.197901049475262,4.2478760619690155,4.297851074462769,4.3478260869565215,4.397801099450275,4.4477761119440276,4.497751124437781,4.5477261369315345,4.597701149425287,4.6476761619190405,4.697651174412794,4.747626186906547,4.7976011994003,4.847576211894053,4.897551224387806,4.94752623688156,4.997501249375312,5.047476261869066,5.097451274362818,5.147426286856572,5.197401299350325,5.247376311844078,5.297351324337831,5.347326336831585,5.397301349325337,5.447276361819091,5.497251374312843,5.547226386806597,5.59720139930035,5.647176411794103,5.697151424287856,5.747126436781609,5.797101449275362,5.847076461769116,5.897051474262868,5.947026486756622,5.997001499250374,6.046976511744128,6.096951524237881,6.146926536731634,6.196901549225387,6.246876561719141,6.296851574212893,6.346826586706647,6.3968015992003995,6.446776611694153,6.496751624187906,6.546726636681659,6.5967016491754125,6.646676661669165,6.6966516741629185,6.746626686656672,6.796601699150425,6.846576711644178,6.896551724137931,6.946526736631684,6.9965017491254375,7.04647676161919,7.096451774112944,7.146426786606697,7.19640179910045,7.246376811594203,7.296351824087956,7.346326836581709,7.396301849075463,7.446276861569215,7.496251874062969,7.546226886556721,7.596201899050475,7.646176911544228,7.696151924037981,7.746126936531734,7.796101949025488,7.84607696151924,7.896051974012994,7.946026986506746,7.9960019990005,8.045977011494253,8.095952023988007,8.145927036481758,8.195902048975512,8.245877061469265,8.295852073963019,8.345827086456772,8.395802098950524,8.445777111444277,8.495752123938031,8.545727136431784,8.595702148925538,8.64567716141929,8.695652173913043,8.745627186406796,8.79560219890055,8.845577211394303,8.895552223888055,8.945527236381809,8.995502248875562,9.045477261369316,9.095452273863069,9.145427286356822,9.195402298850574,9.245377311344328,9.295352323838081,9.345327336331835,9.395302348825588,9.44527736131934,9.495252373813093,9.545227386306847,9.5952023988006,9.645177411294354,9.695152423788105,9.745127436281859,9.795102448775612,9.845077461269366,9.89505247376312,9.94502748625687,9.995002498750624,10.044977511244378,10.094952523738131,10.144927536231885,10.194902548725636,10.24487756121939,10.294852573713143,10.344827586206897,10.39480259870065,10.444777611194402,10.494752623688155,10.544727636181909,10.594702648675662,10.644677661169416,10.69465267366317,10.744627686156921,10.794602698650674,10.844577711144428,10.894552723638181,10.944527736131935,10.994502748625687,11.04447776111944,11.094452773613193,11.144427786106947,11.1944027986007,11.244377811094452,11.294352823588206,11.344327836081959,11.394302848575713,11.444277861069466,11.494252873563218,11.544227886056971,11.594202898550725,11.644177911044478,11.694152923538232,11.744127936031983,11.794102948525737,11.84407796101949,11.894052973513244,11.944027986006997,11.994002998500749,12.043978010994502,12.093953023488256,12.14392803598201,12.193903048475763,12.243878060969514,12.293853073463268,12.343828085957021,12.393803098450775,12.443778110944528,12.493753123438282,12.543728135932033,12.593703148425787,12.64367816091954,12.693653173413294,12.743628185907047,12.793603198400799,12.843578210894552,12.893553223388306,12.94352823588206,12.993503248375813,13.043478260869565,13.093453273363318,13.143428285857071,13.193403298350825,13.243378310844578,13.29335332333833,13.343328335832084,13.393303348325837,13.44327836081959,13.493253373313344,13.543228385807096,13.59320339830085,13.643178410794603,13.693153423288356,13.74312843578211,13.793103448275861,13.843078460769615,13.893053473263368,13.943028485757122,13.993003498250875,14.042978510744629,14.09295352323838,14.142928535732134,14.192903548225887,14.24287856071964,14.292853573213394,14.342828585707146,14.3928035982009,14.442778610694653,14.492753623188406,14.54272863568216,14.592703648175911,14.642678660669665,14.692653673163418,14.742628685657172,14.792603698150925,14.842578710644677,14.89255372313843,14.942528735632184,14.992503748125937,15.04247876061969,15.092453773113442,15.142428785607196,15.19240379810095,15.242378810594703,15.292353823088456,15.342328835582208,15.392303848075962,15.442278860569715,15.492253873063468,15.542228885557222,15.592203898050975,15.642178910544727,15.69215392303848,15.742128935532234,15.792103948025987,15.842078960519741,15.892053973013493,15.942028985507246,15.992003998001,16.041979010494753,16.091954022988507,16.14192903548226,16.191904047976013,16.241879060469763,16.291854072963517,16.34182908545727,16.391804097951024,16.441779110444777,16.49175412293853,16.541729135432284,16.591704147926038,16.64167916041979,16.691654172913545,16.741629185407298,16.791604197901048,16.8415792103948,16.891554222888555,16.94152923538231,16.991504247876062,17.041479260369815,17.09145427286357,17.141429285357322,17.191404297851076,17.24137931034483,17.29135432283858,17.341329335332333,17.391304347826086,17.44127936031984,17.491254372813593,17.541229385307346,17.5912043978011,17.641179410294853,17.691154422788607,17.74112943528236,17.79110444777611,17.841079460269864,17.891054472763617,17.94102948525737,17.991004497751124,18.040979510244878,18.09095452273863,18.140929535232384,18.190904547726138,18.24087956021989,18.290854572713645,18.340829585207395,18.39080459770115,18.4407796101949,18.490754622688655,18.54072963518241,18.590704647676162,18.640679660169916,18.69065467266367,18.740629685157423,18.790604697651176,18.840579710144926,18.89055472263868,18.940529735132433,18.990504747626186,19.04047976011994,19.090454772613693,19.140429785107447,19.1904047976012,19.240379810094954,19.290354822588707,19.340329835082457,19.39030484757621,19.440279860069964,19.490254872563717,19.54022988505747,19.590204897551224,19.640179910044978,19.69015492253873,19.740129935032485,19.79010494752624,19.84007996001999,19.89005497251374,19.940029985007495,19.99000499750125,20.039980009995002,20.089955022488756,20.13993003498251,20.189905047476262,20.239880059970016,20.28985507246377,20.339830084957523,20.389805097451273,20.439780109945026,20.48975512243878,20.539730134932533,20.589705147426287,20.63968015992004,20.689655172413794,20.739630184907547,20.7896051974013,20.839580209895054,20.889555222388804,20.939530234882557,20.98950524737631,21.039480259870064,21.089455272363818,21.13943028485757,21.189405297351325,21.239380309845078,21.28935532233883,21.339330334832585,21.38930534732634,21.43928035982009,21.489255372313842,21.539230384807595,21.58920539730135,21.639180409795102,21.689155422288856,21.73913043478261,21.789105447276363,21.839080459770116,21.88905547226387,21.93903048475762,21.989005497251373,22.038980509745127,22.08895552223888,22.138930534732634,22.188905547226387,22.23888055972014,22.288855572213894,22.338830584707647,22.3888055972014,22.43878060969515,22.488755622188904,22.538730634682658,22.58870564717641,22.638680659670165,22.688655672163918,22.73863068465767,22.788605697151425,22.83858070964518,22.888555722138932,22.938530734632682,22.988505747126435,23.03848075962019,23.088455772113942,23.138430784607696,23.18840579710145,23.238380809595203,23.288355822088956,23.33833083458271,23.388305847076463,23.438280859570217,23.488255872063966,23.53823088455772,23.588205897051473,23.638180909545227,23.68815592203898,23.738130934532734,23.788105947026487,23.83808095952024,23.888055972013994,23.938030984507748,23.988005997001498,24.03798100949525,24.087956021989005,24.137931034482758,24.18790604697651,24.237881059470265,24.28785607196402,24.337831084457772,24.387806096951525,24.43778110944528,24.48775612193903,24.537731134432782,24.587706146926536,24.63768115942029,24.687656171914043,24.737631184407796,24.78760619690155,24.837581209395303,24.887556221889056,24.93753123438281,24.987506246876563,25.037481259370313,25.087456271864067,25.13743128435782,25.187406296851574,25.237381309345327,25.28735632183908,25.337331334332834,25.387306346826588,25.43728135932034,25.487256371814095,25.537231384307844,25.587206396801598,25.63718140929535,25.687156421789105,25.73713143428286,25.787106446776612,25.837081459270365,25.88705647176412,25.937031484257872,25.987006496751626,26.036981509245376,26.08695652173913,26.136931534232883,26.186906546726636,26.23688155922039,26.286856571714143,26.336831584207896,26.38680659670165,26.436781609195403,26.486756621689157,26.53673163418291,26.58670664667666,26.636681659170414,26.686656671664167,26.73663168415792,26.786606696651674,26.836581709145428,26.88655672163918,26.936531734132934,26.986506746626688,27.03648175912044,27.08645677161419,27.136431784107945,27.1864067966017,27.23638180909545,27.286356821589205,27.33633183408296,27.386306846576712,27.436281859070466,27.48625687156422,27.536231884057973,27.586206896551722,27.636181909045476,27.68615692153923,27.736131934032983,27.786106946526736,27.83608195902049,27.886056971514243,27.936031984007997,27.98600699650175,28.035982008995504,28.085957021489257,28.135932033983007,28.18590704647676,28.235882058970514,28.285857071464267,28.33583208395802,28.385807096451774,28.435782108945528,28.48575712143928,28.535732133933035,28.58570714642679,28.635682158920538,28.68565717141429,28.735632183908045,28.7856071964018,28.835582208895552,28.885557221389305,28.93553223388306,28.985507246376812,29.035482258870566,29.08545727136432,29.13543228385807,29.185407296351823,29.235382308845576,29.28535732133933,29.335332333833083,29.385307346326837,29.43528235882059,29.485257371314344,29.535232383808097,29.58520739630185,29.635182408795604,29.685157421289354,29.735132433783107,29.78510744627686,29.835082458770614,29.885057471264368,29.93503248375812,29.985007496251875,30.034982508745628,30.08495752123938,30.134932533733135,30.184907546226885,30.23488255872064,30.284857571214392,30.334832583708145,30.3848075962019,30.434782608695652,30.484757621189406,30.53473263368316,30.584707646176913,30.634682658670666,30.684657671164416,30.73463268365817,30.784607696151923,30.834582708645677,30.88455772113943,30.934532733633183,30.984507746126937,31.03448275862069,31.084457771114444,31.134432783608197,31.18440779610195,31.2343828085957,31.284357821089454,31.334332833583208,31.38430784607696,31.434282858570715,31.484257871064468,31.53423288355822,31.584207896051975,31.63418290854573,31.684157921039482,31.734132933533232,31.784107946026985,31.83408295852074,31.884057971014492,31.934032983508246,31.984007996002,32.03398300849575,32.083958020989506,32.13393303348326,32.18390804597701,32.23388305847077,32.28385807096452,32.33383308345827,32.38380809595203,32.43378310844578,32.48375812093953,32.53373313343328,32.583708145927034,32.63368315842079,32.68365817091454,32.733633183408294,32.78360819590205,32.8335832083958,32.883558220889554,32.93353323338331,32.98350824587706,33.033483258370815,33.08345827086457,33.13343328335832,33.183408295852075,33.23338330834583,33.28335832083958,33.333333333333336,33.38330834582709,33.43328335832084,33.483258370814596,33.53323338330834,33.583208395802096,33.63318340829585,33.6831584207896,33.733133433283356,33.78310844577711,33.83308345827086,33.88305847076462,33.93303348325837,33.983008495752124,34.03298350824588,34.08295852073963,34.132933533233384,34.18290854572714,34.23288355822089,34.282858570714644,34.3328335832084,34.38280859570215,34.432783608195905,34.48275862068966,34.53273363318341,34.58270864567716,34.63268365817091,34.682658670664665,34.73263368315842,34.78260869565217,34.832583708145926,34.88255872063968,34.93253373313343,34.982508745627186,35.03248375812094,35.08245877061469,35.132433783108446,35.1824087956022,35.23238380809595,35.28235882058971,35.33233383308346,35.382308845577214,35.43228385807097,35.48225887056472,35.532233883058474,35.58220889555222,35.632183908045974,35.68215892053973,35.73213393303348,35.782108945527234,35.83208395802099,35.88205897051474,35.932033983008495,35.98200899550225,36.031984007996,36.081959020489755,36.13193403298351,36.18190904547726,36.231884057971016,36.28185907046477,36.33183408295852,36.381809095452276,36.43178410794603,36.48175912043978,36.531734132933536,36.58170914542729,36.631684157921036,36.68165917041479,36.73163418290854,36.7816091954023,36.83158420789605,36.8815592203898,36.93153423288356,36.98150924537731,37.031484257871064,37.08145927036482,37.13143428285857,37.181409295352324,37.23138430784608,37.28135932033983,37.331334332833585,37.38130934532734,37.43128435782109,37.481259370314845,37.5312343828086,37.58120939530235,37.6311844077961,37.68115942028985,37.731134432783605,37.78110944527736,37.83108445777111,37.881059470264866,37.93103448275862,37.98100949525237,38.030984507746126,38.08095952023988,38.13093453273363,38.18090954522739,38.23088455772114,38.28085957021489,38.33083458270865,38.3808095952024,38.430784607696154,38.48075962018991,38.53073463268366,38.580709645177414,38.63068465767117,38.680659670164914,38.73063468265867,38.78060969515242,38.830584707646175,38.88055972013993,38.93053473263368,38.980509745127435,39.03048475762119,39.08045977011494,39.130434782608695,39.18040979510245,39.2303848075962,39.280359820089956,39.33033483258371,39.38030984507746,39.430284857571216,39.48025987006497,39.53023488255872,39.58020989505248,39.63018490754623,39.68015992003998,39.73013493253373,39.78010994502748,39.83008495752124,39.88005997001499,39.930034982508744,39.9800099950025,40.02998500749625,40.079960019990004,40.12993503248376,40.17991004497751,40.229885057471265,40.27986006996502,40.32983508245877,40.379810094952525,40.42978510744628,40.47976011994003,40.529735132433785,40.57971014492754,40.62968515742129,40.679660169915046,40.72963518240879,40.779610194902546,40.8295852073963,40.87956021989005,40.929535232383806,40.97951024487756,41.02948525737131,41.079460269865066,41.12943528235882,41.17941029485257,41.22938530734633,41.27936031984008,41.329335332333834,41.37931034482759,41.42928535732134,41.479260369815094,41.52923538230885,41.5792103948026,41.629185407296355,41.67916041979011,41.72913543228386,41.77911044477761,41.82908545727136,41.879060469765115,41.92903548225887,41.97901049475262,42.028985507246375,42.07896051974013,42.12893553223388,42.178910544727636,42.22888555722139,42.27886056971514,42.328835582208896,42.37881059470265,42.4287856071964,42.478760619690156,42.52873563218391,42.57871064467766,42.62868565717142,42.67866066966517,42.728635682158924,42.77861069465268,42.82858570714642,42.87856071964018,42.92853573213393,42.978510744627684,43.02848575712144,43.07846076961519,43.128435782108944,43.1784107946027,43.22838580709645,43.278360819590205,43.32833583208396,43.37831084457771,43.428285857071465,43.47826086956522,43.52823588205897,43.578210894552726,43.62818590704648,43.67816091954023,43.728135932033986,43.77811094452774,43.828085957021486,43.87806096951524,43.92803598200899,43.978010994502746,44.0279860069965,44.07796101949025,44.12793603198401,44.17791104447776,44.22788605697151,44.27786106946527,44.32783608195902,44.377811094452774,44.42778610694653,44.47776111944028,44.527736131934034,44.57771114442779,44.62768615692154,44.677661169415295,44.72763618190905,44.7776111944028,44.827586206896555,44.8775612193903,44.927536231884055,44.97751124437781,45.02748625687156,45.077461269365315,45.12743628185907,45.17741129435282,45.227386306846576,45.27736131934033,45.32733633183408,45.377311344327836,45.42728635682159,45.47726136931534,45.5272363818091,45.57721139430285,45.6271864067966,45.67716141929036,45.72713643178411,45.777111444277864,45.82708645677162,45.877061469265364,45.92703648175912,45.97701149425287,46.026986506746624,46.07696151924038,46.12693653173413,46.176911544227885,46.22688655672164,46.27686156921539,46.326836581709145,46.3768115942029,46.42678660669665,46.476761619190405,46.52673663168416,46.57671164417791,46.626686656671666,46.67666166916542,46.72663668165917,46.776611694152926,46.82658670664668,46.87656171914043,46.92653673163418,46.97651174412793,47.026486756621686,47.07646176911544,47.12643678160919,47.17641179410295,47.2263868065967,47.276361819090454,47.32633683158421,47.37631184407796,47.426286856571714,47.47626186906547,47.52623688155922,47.576211894052975,47.62618690654673,47.67616191904048,47.726136931534235,47.77611194402799,47.82608695652174,47.876061969015495,47.92603698150925,47.976011994002995,48.02598700649675,48.0759620189905,48.125937031484256,48.17591204397801,48.22588705647176,48.275862068965516,48.32583708145927,48.37581209395302,48.425787106446776,48.47576211894053,48.52573713143428,48.57571214392804,48.62568715642179,48.675662168915544,48.7256371814093,48.77561219390305,48.825587206396804,48.87556221889056,48.92553723138431,48.97551224387806,49.02548725637181,49.075462268865564,49.12543728135932,49.17541229385307,49.225387306346825,49.27536231884058,49.32533733133433,49.375312343828085,49.42528735632184,49.47526236881559,49.525237381309346,49.5752123938031,49.62518740629685,49.675162418790606,49.72513743128436,49.77511244377811,49.825087456271866,49.87506246876562,49.92503748125937,49.97501249375313,50.02498750624687,50.07496251874063,50.12493753123438,50.174912543728134,50.22488755622189,50.27486256871564,50.324837581209394,50.37481259370315,50.4247876061969,50.474762618690654,50.52473763118441,50.57471264367816,50.624687656171915,50.67466266866567,50.72463768115942,50.774612693653175,50.82458770614693,50.87456271864068,50.924537731134436,50.97451274362819,51.02448775612194,51.07446276861569,51.12443778110944,51.174412793603196,51.22438780609695,51.2743628185907,51.324337831084456,51.37431284357821,51.42428785607196,51.47426286856572,51.52423788105947,51.574212893553224,51.62418790604698,51.67416291854073,51.724137931034484,51.77411294352824,51.82408795602199,51.874062968515744,51.9240379810095,51.97401299350325,52.023988005997005,52.07396301849075,52.123938030984505,52.17391304347826,52.22388805597201,52.273863068465765,52.32383808095952,52.37381309345327,52.423788105947025,52.47376311844078,52.52373813093453,52.573713143428286,52.62368815592204,52.67366316841579,52.723638180909546,52.7736131934033,52.82358820589705,52.87356321839081,52.92353823088456,52.973513243378314,53.02348825587207,53.07346326836582,53.12343828085957,53.17341329335332,53.223388305847074,53.27336331834083,53.32333833083458,53.373313343328334,53.42328835582209,53.47326336831584,53.523238380809595,53.57321339330335,53.6231884057971,53.673163418290855,53.72313843078461,53.77311344327836,53.823088455772115,53.87306346826587,53.92303848075962,53.973013493253376,54.02298850574713,54.07296351824088,54.122938530734636,54.17291354322838,54.222888555722136,54.27286356821589,54.32283858070964,54.3728135932034,54.42278860569715,54.4727636181909,54.52273863068466,54.57271364317841,54.622688655672164,54.67266366816592,54.72263868065967,54.772613693153424,54.82258870564718,54.87256371814093,54.922538730634685,54.97251374312844,55.02248875562219,55.072463768115945,55.1224387806097,55.172413793103445,55.2223888055972,55.27236381809095,55.322338830584705,55.37231384307846,55.42228885557221,55.472263868065966,55.52223888055972,55.57221389305347,55.622188905547226,55.67216391804098,55.72213893053473,55.77211394302849,55.82208895552224,55.87206396801599,55.92203898050975,55.9720139930035,56.021989005497254,56.07196401799101,56.12193903048476,56.171914042978514,56.22188905547226,56.271864067966014,56.32183908045977,56.37181409295352,56.421789105447274,56.47176411794103,56.52173913043478,56.571714142928535,56.62168915542229,56.67166416791604,56.721639180409795,56.77161419290355,56.8215892053973,56.871564217891056,56.92153923038481,56.97151424287856,57.021489255372316,57.07146426786607,57.12143928035982,57.17141429285358,57.22138930534732,57.271364317841076,57.32133933033483,57.37131434282858,57.42128935532234,57.47126436781609,57.521239380309844,57.5712143928036,57.62118940529735,57.671164417791104,57.72113943028486,57.77111444277861,57.821089455272364,57.87106446776612,57.92103948025987,57.971014492753625,58.02098950524738,58.07096451774113,58.120939530234885,58.17091454272864,58.22088955522239,58.27086456771614,58.32083958020989,58.370814592703645,58.4207896051974,58.47076461769115,58.520739630184906,58.57071464267866,58.62068965517241,58.670664667666166,58.72063968015992,58.77061469265367,58.82058970514743,58.87056471764118,58.920539730134934,58.97051474262869,59.02048975512244,59.070464767616194,59.12043978010995,59.1704147926037,59.220389805097454,59.27036481759121,59.320339830084954,59.37031484257871,59.42028985507246,59.470264867566215,59.52023988005997,59.57021489255372,59.620189905047475,59.67016491754123,59.72013993003498,59.770114942528735,59.82008995502249,59.87006496751624,59.920039980009996,59.97001499250375,60.0199900049975,60.069965017491256,60.11994002998501,60.16991504247876,60.21989005497252,60.26986506746627,60.31984007996002,60.36981509245377,60.41979010494752,60.46976511744128,60.51974012993503,60.569715142428784,60.61969015492254,60.66966516741629,60.719640179910044,60.7696151924038,60.81959020489755,60.869565217391305,60.91954022988506,60.96951524237881,61.019490254872565,61.06946526736632,61.11944027986007,61.169415292353825,61.21939030484758,61.26936531734133,61.319340329835086,61.36931534232883,61.419290354822586,61.46926536731634,61.51924037981009,61.569215392303846,61.6191904047976,61.66916541729135,61.71914042978511,61.76911544227886,61.81909045477261,61.86906546726637,61.91904047976012,61.969015492253874,62.01899050474763,62.06896551724138,62.118940529735134,62.16891554222889,62.21889055472264,62.268865567216395,62.31884057971015,62.3688155922039,62.41879060469765,62.4687656171914,62.518740629685155,62.56871564217891,62.61869065467266,62.668665667166415,62.71864067966017,62.76861569215392,62.818590704647676,62.86856571714143,62.91854072963518,62.968515742128936,63.01849075462269,63.06846576711644,63.1184407796102,63.16841579210395,63.2183908045977,63.26836581709146,63.31834082958521,63.368315842078964,63.41829085457271,63.468265867066464,63.51824087956022,63.56821589205397,63.618190904547724,63.66816591704148,63.71814092953523,63.768115942028984,63.81809095452274,63.86806596701649,63.918040979510245,63.968015992004,64.01799100449774,64.0679660169915,64.11794102948525,64.16791604197901,64.21789105447276,64.26786606696652,64.31784107946027,64.36781609195403,64.41779110444777,64.46776611694153,64.51774112943528,64.56771614192904,64.61769115442279,64.66766616691655,64.7176411794103,64.76761619190405,64.8175912043978,64.86756621689156,64.91754122938531,64.96751624187905,65.01749125437281,65.06746626686656,65.11744127936032,65.16741629185407,65.21739130434783,65.26736631684157,65.31734132933533,65.36731634182908,65.41729135432284,65.46726636681659,65.51724137931035,65.5672163918041,65.61719140429786,65.6671664167916,65.71714142928536,65.76711644177911,65.81709145427287,65.86706646676662,65.91704147926038,65.96701649175412,66.01699150424787,66.06696651674163,66.11694152923538,66.16691654172914,66.21689155422288,66.26686656671664,66.31684157921039,66.36681659170415,66.4167916041979,66.46676661669166,66.5167416291854,66.56671664167916,66.61669165417291,66.66666666666667,66.71664167916042,66.76661669165418,66.81659170414792,66.86656671664169,66.91654172913543,66.96651674162919,67.01649175412294,67.06646676661668,67.11644177911045,67.16641679160419,67.21639180409795,67.2663668165917,67.31634182908546,67.3663168415792,67.41629185407297,67.46626686656671,67.51624187906047,67.56621689155422,67.61619190404798,67.66616691654173,67.71614192903549,67.76611694152923,67.816091954023,67.86606696651674,67.9160419790105,67.96601699150425,68.01599200399801,68.06596701649175,68.1159420289855,68.16591704147926,68.21589205397301,68.26586706646677,68.31584207896051,68.36581709145428,68.41579210394802,68.46576711644178,68.51574212893553,68.56571714142929,68.61569215392304,68.6656671664168,68.71564217891054,68.7656171914043,68.81559220389805,68.86556721639181,68.91554222888556,68.96551724137932,69.01549225387306,69.06546726636682,69.11544227886057,69.16541729135432,69.21539230384808,69.26536731634182,69.31534232883558,69.36531734132933,69.41529235382309,69.46526736631684,69.5152423788106,69.56521739130434,69.6151924037981,69.66516741629185,69.71514242878561,69.76511744127936,69.81509245377312,69.86506746626686,69.91504247876063,69.96501749125437,70.01499250374813,70.06496751624188,70.11494252873563,70.16491754122939,70.21489255372313,70.26486756621689,70.31484257871064,70.3648175912044,70.41479260369815,70.4647676161919,70.51474262868565,70.56471764117941,70.61469265367316,70.66466766616692,70.71464267866067,70.76461769115443,70.81459270364817,70.86456771614193,70.91454272863568,70.96451774112944,71.01449275362319,71.06446776611695,71.1144427786107,71.16441779110444,71.2143928035982,71.26436781609195,71.31434282858571,71.36431784107945,71.41429285357322,71.46426786606696,71.51424287856072,71.56421789105447,71.61419290354823,71.66416791604198,71.71414292853574,71.76411794102948,71.81409295352324,71.86406796601699,71.91404297851075,71.9640179910045,72.01399300349826,72.063968015992,72.11394302848576,72.16391804097951,72.21389305347326,72.26386806596702,72.31384307846076,72.36381809095452,72.41379310344827,72.46376811594203,72.51374312843578,72.56371814092954,72.61369315342328,72.66366816591704,72.71364317841079,72.76361819090455,72.8135932033983,72.86356821589206,72.9135432283858,72.96351824087957,73.01349325337331,73.06346826586707,73.11344327836082,73.16341829085458,73.21339330334833,73.26336831584207,73.31334332833583,73.36331834082958,73.41329335332334,73.46326836581709,73.51324337831085,73.5632183908046,73.61319340329835,73.6631684157921,73.71314342828586,73.7631184407796,73.81309345327337,73.86306846576711,73.91304347826087,73.96301849075462,74.01299350324838,74.06296851574213,74.11294352823589,74.16291854072963,74.2128935532234,74.26286856571714,74.31284357821089,74.36281859070465,74.4127936031984,74.46276861569216,74.5127436281859,74.56271864067966,74.61269365317341,74.66266866566717,74.71264367816092,74.76261869065468,74.81259370314842,74.86256871564218,74.91254372813593,74.96251874062969,75.01249375312344,75.0624687656172,75.11244377811094,75.1624187906047,75.21239380309845,75.2623688155922,75.31234382808596,75.3623188405797,75.41229385307346,75.46226886556721,75.51224387806097,75.56221889055472,75.61219390304848,75.66216891554222,75.71214392803599,75.76211894052973,75.81209395302349,75.86206896551724,75.912043978011,75.96201899050475,76.0119940029985,76.06196901549225,76.11194402798601,76.16191904047976,76.21189405297352,76.26186906546727,76.31184407796101,76.36181909045477,76.41179410294852,76.46176911544228,76.51174412793603,76.56171914042979,76.61169415292353,76.6616691654173,76.71164417791104,76.7616191904048,76.81159420289855,76.86156921539231,76.91154422788605,76.96151924037981,77.01149425287356,77.06146926536732,77.11144427786107,77.16141929035483,77.21139430284857,77.26136931534234,77.31134432783608,77.36131934032983,77.41129435282359,77.46126936531734,77.5112443778111,77.56121939030484,77.6111944027986,77.66116941529235,77.71114442778611,77.76111944027986,77.81109445277362,77.86106946526736,77.91104447776112,77.96101949025487,78.01099450274863,78.06096951524238,78.11094452773614,78.16091954022988,78.21089455272364,78.26086956521739,78.31084457771115,78.3608195902049,78.41079460269864,78.4607696151924,78.51074462768615,78.56071964017991,78.61069465267366,78.66066966516742,78.71064467766116,78.76061969015493,78.81059470264867,78.86056971514243,78.91054472763618,78.96051974012994,79.01049475262369,79.06046976511745,79.11044477761119,79.16041979010495,79.2103948025987,79.26036981509246,79.3103448275862,79.36031984007997,79.41029485257371,79.46026986506746,79.51024487756122,79.56021989005497,79.61019490254873,79.66016991504247,79.71014492753623,79.76011994002998,79.81009495252374,79.86006996501749,79.91004497751125,79.960019990005,80.00999500249875,80.0599700149925,80.10994502748626,80.15992003998001,80.20989505247377,80.25987006496752,80.30984507746128,80.35982008995502,80.40979510244878,80.45977011494253,80.50974512743628,80.55972013993004,80.60969515242378,80.65967016491754,80.70964517741129,80.75962018990505,80.8095952023988,80.85957021489256,80.9095452273863,80.95952023988006,81.00949525237381,81.05947026486757,81.10944527736132,81.15942028985508,81.20939530234882,81.25937031484258,81.30934532733633,81.35932033983009,81.40929535232384,81.45927036481758,81.50924537731134,81.55922038980509,81.60919540229885,81.6591704147926,81.70914542728636,81.7591204397801,81.80909545227387,81.85907046476761,81.90904547726137,81.95902048975512,82.00899550224888,82.05897051474263,82.10894552723639,82.15892053973013,82.2088955522239,82.25887056471764,82.3088455772114,82.35882058970515,82.40879560219891,82.45877061469265,82.5087456271864,82.55872063968016,82.6086956521739,82.65867066466767,82.70864567716141,82.75862068965517,82.80859570214892,82.85857071464268,82.90854572713643,82.95852073963019,83.00849575212393,83.0584707646177,83.10844577711144,83.1584207896052,83.20839580209895,83.25837081459271,83.30834582708646,83.35832083958022,83.40829585207396,83.45827086456772,83.50824587706147,83.55822088955522,83.60819590204898,83.65817091454272,83.70814592703648,83.75812093953023,83.80809595202399,83.85807096451774,83.9080459770115,83.95802098950524,84.007996001999,84.05797101449275,84.10794602698651,84.15792103948026,84.20789605197402,84.25787106446776,84.30784607696152,84.35782108945527,84.40779610194903,84.45777111444278,84.50774612693654,84.55772113943029,84.60769615192403,84.65767116441779,84.70764617691154,84.7576211894053,84.80759620189905,84.8575712143928,84.90754622688655,84.95752123938031,85.00749625187406,85.05747126436782,85.10744627686157,85.15742128935533,85.20739630184907,85.25737131434283,85.30734632683658,85.35732133933034,85.40729635182409,85.45727136431785,85.5072463768116,85.55722138930535,85.6071964017991,85.65717141429285,85.70714642678661,85.75712143928035,85.80709645177411,85.85707146426786,85.90704647676162,85.95702148925537,86.00699650174913,86.05697151424287,86.10694652673664,86.15692153923038,86.20689655172414,86.25687156421789,86.30684657671165,86.3568215892054,86.40679660169916,86.4567716141929,86.50674662668666,86.55672163918041,86.60669665167416,86.65667166416792,86.70664667666166,86.75662168915542,86.80659670164917,86.85657171414293,86.90654672663668,86.95652173913044,87.00649675162418,87.05647176411794,87.10644677661169,87.15642178910545,87.2063968015992,87.25637181409296,87.3063468265867,87.35632183908046,87.40629685157421,87.45627186406797,87.50624687656172,87.55622188905548,87.60619690154923,87.65617191404297,87.70614692653673,87.75612193903048,87.80609695152424,87.85607196401799,87.90604697651175,87.95602198900549,88.00599700149925,88.055972013993,88.10594702648676,88.1559220389805,88.20589705147427,88.25587206396801,88.30584707646177,88.35582208895552,88.40579710144928,88.45577211394303,88.50574712643679,88.55572213893053,88.6056971514243,88.65567216391804,88.70564717641179,88.75562218890555,88.8055972013993,88.85557221389305,88.9055472263868,88.95552223888056,89.00549725137431,89.05547226386807,89.10544727636182,89.15542228885558,89.20539730134932,89.25537231384308,89.30534732633683,89.35532233883059,89.40529735132434,89.4552723638181,89.50524737631184,89.5552223888056,89.60519740129935,89.65517241379311,89.70514742628686,89.7551224387806,89.80509745127436,89.85507246376811,89.90504747626187,89.95502248875562,90.00499750124938,90.05497251374312,90.10494752623688,90.15492253873063,90.20489755122439,90.25487256371814,90.3048475762119,90.35482258870564,90.4047976011994,90.45477261369315,90.50474762618691,90.55472263868066,90.60469765117442,90.65467266366817,90.70464767616193,90.75462268865567,90.80459770114942,90.85457271364318,90.90454772613693,90.95452273863069,91.00449775112443,91.0544727636182,91.10444777611194,91.1544227886057,91.20439780109945,91.2543728135932,91.30434782608695,91.35432283858071,91.40429785107446,91.45427286356822,91.50424787606197,91.55422288855573,91.60419790104947,91.65417291354323,91.70414792603698,91.75412293853073,91.80409795102449,91.85407296351823,91.904047976012,91.95402298850574,92.0039980009995,92.05397301349325,92.10394802598701,92.15392303848076,92.20389805097452,92.25387306346826,92.30384807596202,92.35382308845577,92.40379810094953,92.45377311344328,92.50374812593704,92.55372313843078,92.60369815092454,92.65367316341829,92.70364817591205,92.7536231884058,92.80359820089954,92.8535732133933,92.90354822588705,92.95352323838081,93.00349825087456,93.05347326336832,93.10344827586206,93.15342328835582,93.20339830084957,93.25337331334333,93.30334832583708,93.35332333833084,93.40329835082458,93.45327336331835,93.50324837581209,93.55322338830585,93.6031984007996,93.65317341329336,93.7031484257871,93.75312343828087,93.80309845077461,93.85307346326836,93.90304847576212,93.95302348825587,94.00299850074963,94.05297351324337,94.10294852573713,94.15292353823088,94.20289855072464,94.25287356321839,94.30284857571215,94.3528235882059,94.40279860069965,94.4527736131934,94.50274862568716,94.55272363818091,94.60269865067467,94.65267366316841,94.70264867566218,94.75262368815592,94.80259870064968,94.85257371314343,94.90254872563717,94.95252373813094,95.00249875062468,95.05247376311844,95.10244877561219,95.15242378810595,95.2023988005997,95.25237381309346,95.3023488255872,95.35232383808096,95.40229885057471,95.45227386306847,95.50224887556222,95.55222388805598,95.60219890054972,95.65217391304348,95.70214892553723,95.75212393803099,95.80209895052474,95.8520739630185,95.90204897551224,95.95202398800599,96.00199900049975,96.0519740129935,96.10194902548726,96.151924037981,96.20189905047476,96.25187406296851,96.30184907546227,96.35182408795602,96.40179910044978,96.45177411294353,96.50174912543729,96.55172413793103,96.60169915042479,96.65167416291854,96.7016491754123,96.75162418790605,96.8015992003998,96.85157421289355,96.90154922538731,96.95152423788106,97.0014992503748,97.05147426286857,97.10144927536231,97.15142428785607,97.20139930034982,97.25137431284358,97.30134932533733,97.35132433783109,97.40129935032483,97.4512743628186,97.50124937531234,97.5512243878061,97.60119940029985,97.65117441279361,97.70114942528735,97.75112443778112,97.80109945027486,97.85107446276862,97.90104947526237,97.95102448775611,98.00099950024988,98.05097451274362,98.10094952523738,98.15092453773113,98.20089955022489,98.25087456271864,98.3008495752124,98.35082458770614,98.4007996001999,98.45077461269365,98.50074962518741,98.55072463768116,98.60069965017492,98.65067466266866,98.70064967516242,98.75062468765617,98.80059970014993,98.85057471264368,98.90054972513744,98.95052473763118,99.00049975012493,99.05047476261869,99.10044977511244,99.1504247876062,99.20039980009994,99.2503748125937,99.30034982508745,99.35032483758121,99.40029985007496,99.45027486256872,99.50024987506247,99.55022488755623,99.60019990004997,99.65017491254373,99.70014992503748,99.75012493753124,99.80009995002499,99.85007496251875,99.9000499750125,99.95002498750625,100.0]} +{"expected":[-0.01,-0.00988692665446217,-0.009530417260232635,-0.008939001927057518,-0.00812700023963896,-0.007114174661777941,-0.005925249651897664,-0.004589308189120179,-0.003139080437401436,-0.001610141944230643,-0.000040041013955833456,0.0015326233416345881,0.0030691502352163075,0.004531689196248325,0.005884172493081779,0.007093204522074692,0.008128886334342557,0.008965554944794535,0.009582419144642727,0.009964076066946442,0.01010089567328384,0.009989263566841785,0.009631676013797021,0.009036684685486062,0.008218692329369866,0.007197604246304405,0.005998344004833064,0.004650245172536397,0.0031863339073372196,0.001642519952343532,0.000056715849575066915,-0.00153209402566305,-0.0030848117512741317,-0.0045631879117862895,-0.005930763748120867,-0.007153770198919874,-0.008201961665838864,-0.009049363918998405,-0.00967491765064457,-0.010063001734130994,-0.010203823189262884,-0.010093664121865643,-0.009734979415048518,-0.009136342615950489,-0.008312241194704922,-0.00728272606016411,-0.0060729238083116685,-0.004712423565792373,-0.0032345533890227388,-0.001675563912446815,-0.0000737392399667339,0.001531543115552564,0.00310078016369045,0.004595315448258029,0.0059782912241642,0.007215557347592569,0.008276514468868288,0.009134870711019328,0.009769293124595185,0.010163937779373152,0.010308845323473495,0.010200192137384127,0.009840390753724568,0.009238036916283918,0.008407704423026918,0.0073695926446301525,0.006149035240488571,0.004775882018532973,0.003283769019197351,0.0017092946699876987,0.00009112218696606803,-0.001530969764797153,-0.0031170648437149825,-0.004628091205258873,-0.006026783911534547,-0.007278603873109481,-0.008352590664382306,-0.009222128157529003,-0.00986560404352474,-0.010266946900304674,-0.010416027464426008,-0.010308914090387096,-0.009947975959452496,-0.009341831339686926,-0.008505142009038258,-0.007458258740058715,-0.006226726414999595,-0.004840660803149927,-0.00333401220293789,-0.0017437339512144095,-0.0001088761619285668,0.001530373082350148,0.0031336755463287234,0.004661535387110025,0.0060762720085808086,0.007342949264059696,0.008430238095294144,0.009311191309838516,0.00996391133861546,0.010372094428864201,0.010525437750984275,0.010419899256959096,0.010057803740838872,0.009447792329506606,0.008604616481879815,0.007548781402151541,0.006306047483438199,0.0049068019008445575,0.0033853156810923096,0.0017789044101855964,0.00012701313104154568,-0.00152975212978499,-0.0031506224300722734,-0.004695669045019289,-0.006126786985255266,-0.007408634676172836,-0.008509506628087186,-0.009402117551157869,-0.010064278525306006,-0.01047944847111701,-0.010637147218504657,-0.010533219861166827,-0.010169945733445008,-0.009555989162640333,-0.008706193040386213,-0.00764122012567864,-0.006387050744406665,-0.004974349093233294,-0.0034377136020542084,-0.0018148296788304194,-0.00014554558228247226,0.0015291059182347367,0.0031679160781232906,0.004730514121913109,0.006178361650754986,0.0074757030212299624,0.008590448260943039,0.009494966721381806,0.01016677184176389,0.010589080056074333,0.01075122995439325,0.010648951233553383,0.010284476657319522,0.009666494102209426,0.008809939697100646,0.007735636976214574,0.006469790759651679,0.0050433480599028115,0.003491241598222934,0.0018515344202770054,0.00016448655416644695,-0.0015284334051064155,-0.0031855675207004695,-0.004766093500153822,-0.0062310302255206415,-0.007544199061731474,-0.008673117238872902,-0.009589801249979152,-0.010271460396355445,-0.01070106329419811,-0.010867763263796957,-0.01076717197996795,-0.010401474484817446,-0.0097793825602118,-0.00891592743171094,-0.007832096730511445,-0.006554324477814246,-0.00511384648238484,-0.0035459368674946967,-0.0018890443857169051,-0.00018384966640662659,0.0015277334905348747,0.003203588258907899,0.004802431052346535,0.006284828417937068,0.007614169511750057,0.008757570176396957,0.009686686297598708,0.01037841632480821,0.010815475546331858,0.01098682784620731,0.01088796416152825,0.01052102061949433,0.009894733270925042,0.009024230354636906,0.007930667026167472,0.006640711366395806,0.00518589415503449,0.0036018382601906906,0.0019273864750659596,0.00020364915265412223,-0.0015270050135687122,-0.0032219902901132642,-0.0048395516954862485,-0.00633979350608419,-0.007685663144457024,-0.008843866188345628,-0.009785689907073791,-0.010487714957811752,-0.010932397603869465,-0.011108507983824576,-0.011011413486579361,-0.010643200086942263,-0.010012628475892515,-0.009134925881564053,-0.00803141852132107,-0.006729013552570935,-0.005259543103367455,-0.0036589863718344637,-0.001966588801736915,-0.00022389989546712193,0.0015262467480482893,0.003240786134992019,0.004877481448689318,0.006395964424944249,0.0077587309068310635,0.008932067029426978,0.009886883164553559,0.010599434999880308,0.01105191388104099,0.011232891742606404,0.011137609515594709,0.010768101738503401,0.010133154121412417,0.009248094919780498,0.00813442506516627,0.006819295973559219,0.0053348477104333165,0.0037174236422587853,0.002006680761836088,0.0002446174637050831,-0.0015254573981639328,-0.0032599888663503917,-0.004916247494804226,-0.00645338185948109,-0.007833426042127466,-0.009022237243243287,-0.009990340371570247,-0.010713658720364531,-0.011174112620279932,-0.0113600711870085,-0.011266645880046446,-0.010895818468891231,-0.010256400069519504,-0.009363822067268227,-0.00823976388014558,-0.006911626537311458,-0.005411864851883404,-0.0037771944615355283,-0.0020476931081573504,-0.00026581815252941317,0.0015246355936486423,0.0032796121398813776,0.004955878246193867,0.006512088344072049,0.007909804220715057,0.009114444321521939,0.010096139228910174,0.01083047215759177,0.011299086111719097,0.011490142609518077,0.011398620516371472,0.011026447448835167,0.010382460323554851,0.00948219582556923,0.008347515756775607,0.00700607629434954,0.00549065404042726,0.003838345283298632,0.0020896580293490383,0.00028751902624220564,-0.0015237798845877746,-0.003299670226990114,-0.004996403415038089,-0.0065721283687898355,-0.007987923679968019,-0.009208758874376458,-0.010204361033252212,-0.010949965337194096,-0.011426930927965387,-0.01162320677618236,-0.011533635916259543,-0.01116009037397745,-0.010511433269506563,-0.009603308827561241,-0.008457765262127215,-0.007102719621677949,-0.005571277580452986,-0.0039009247460562724,-0.002132609234697734,-0.0003097379641832494,0.0015228887357929956,0.00332017804986942,0.0050378540885072905,0.006633548493105717,0.00806784537393949,0.009305254812510079,0.01031509088761188,0.011072232505793696,0.011557748175405612,0.011759369189448235,0.011671799394609888,0.011296853731357609,0.010643421934430644,0.009727258081365882,0.00857060096310209,0.007201634419757122,0.00565380073366025,0.003964983803162525,0.0021765820449820453,0.00033249370996061596,-0.0015219605207158697,-0.003341151218990552,-0.00508026280922129,-0.006696397467611093,-0.008149633133637214,-0.009404009542339973,-0.010428417926743648,-0.011197372381315067,-0.01169164376342075,-0.011898740369753472,-0.01181322337662648,-0.011436849084956653,-0.010778534263371465,-0.009854145231748162,-0.008686115665733228,-0.007302902323647602,-0.005738291896619945,-0.004030575862183344,-0.002221613489926448,-0.0003558059242827915,0.0015209935148396514,0.003362606073222352,0.005123663661415923,0.006760726364439712,0.008233353838774774,0.009505104175134735,0.010544435558748188,0.011325488421326635,0.011828728693012117,0.01204143615744952,0.01195802570566827,0.011580193381905555,0.010916883416353232,0.00998407684047834,0.008804406671879646,0.007406608929514508,0.005824822791289849,0.004097756934445488,0.0022677424128073795,0.0003796952417209309,-0.0015199858885156523,-0.0033845597227788226,-0.0051680923633116785,-0.006826588717109863,-0.008319077601981749,-0.009608623751342376,-0.010663241724268918,-0.011456689110939219,-0.011969119366495626,-0.012187578036788896,-0.012106329973623976,-0.011727009281129073,-0.01105858808715264,-0.010117164687290837,-0.008925576054795938,-0.007512844037826396,-0.005913468669586753,-0.004166585795663758,-0.002315009582837331,-0.0004041833317320204,0.00151893569917239,0.0034070300952478713,0.005213586366194846,0.00689404067060509,0.008406877966526699,0.009714657481423113,0.010784939174781327,0.011591088271950845,0.012112937920077005,0.012337293483882128,0.012258265875760156,0.011877425506361262,0.01120377284574724,0.01025352609321708,0.009049730955228595,0.0076217019146873,0.006004308533256249,0.00423712415859844,0.0023634578160154794,0.00042929296432670666,-0.0015178408828486465,-0.0034300359849442144,-0.005260184960803945,-0.006963141142563334,-0.008496832118737259,-0.009823299004609742,-0.010909635771645183,-0.011728805395083586,-0.0122603125813083,-0.012490716340718397,-0.012413969592181787,-0.012031577225672833,-0.011352568506508866,-0.010393284268267678,-0.009176983899832552,-0.007733281572913899,-0.006097425370375175,-0.0043094368588250075,-0.0024131321051841085,-0.00045504808080494644,0.0015166992449763606,0.0034535971058876984,0.005307929391640506,0.00703395199656127,0.008589021116394065,0.009934646667183755,0.011037444807740571,0.011869965997356654,0.012411378053621193,0.01264798721755697,0.012573584198265635,0.012189606459857474,0.011505112524436771,0.010536568685619762,0.0093074531439088,0.007847687074605545,0.006192906409989943,0.004383592054774834,0.0024640797601373898,0.00048147387000675127,-0.0015155084503307484,-0.0034777341487035773,-0.005356862979918629,-0.007106538228550186,-0.008683530134531634,-0.01004880382199437,-0.011168485353712086,-0.012014702006836162,-0.012566275930364277,-0.012809253926231617,-0.012737260106664346,-0.012351662522275424,-0.011661549421945758,-0.010683515484707942,-0.009441263040645211,-0.007965027857164334,-0.006290843396517416,-0.004459661443360502,-0.002516350558681798,-0.0005085968506047051,0.0015142660120755424,0.003502468841801931,0.0054070312559075595,0.007180968167638807,0.008780448730199682,0.010165879151148737,0.011302882631036643,0.012163152177246664,0.012725155141015774,0.01297467194717528,0.012905155543753462,0.012517902493012715,0.011822031249002064,0.010834267905846674,0.009578544439296014,0.008085419084898076,0.006391332885738158,0.004537720492602471,0.002569996909679064,0.0005364449599844065,-0.0015129692797900048,-0.0035278240172099684,-0.005458482101529113,-0.007257313692511953,-0.008879871127927713,-0.010285987013979746,-0.01144076841438057,-0.012315462535176964,-0.012888172432530941,-0.013144404933265979,-0.013077437063691641,-0.012688491730525973,-0.011986718079678929,-0.01098897675931067,-0.009719435114967555,-0.008208982028594632,-0.006494476564373363,-0.004617848692860326,-0.002625074029175856,-0.0005650476503559502,0.0015116154263880575,0.0035538236814692103,0.005511265904143077,0.007335650464937203,0.008981896527792336,0.010409247822644397,0.011582281465954499,0.012471786862916317,0.013055492889090718,0.013318625253926769,0.013254280103606731,0.012863604424271008,0.012155778548548051,0.011147800932092089,0.00986408023299002,0.008335844475682933,0.0066003815954845954,0.00470012982840901,0.0026816401308817728,0.0005944359927717659,-0.0015102014337905801,-0.003580493092072516,-0.00556543572255255,-0.007416058181949052,-0.009086629438214764,-0.010535788447934154,-0.011727568004884567,-0.01263228722027037,-0.013227290493877985,-0.013497514583281578,-0.013435869583795883,-0.013043424192202443,-0.012329390430677602,-0.011310907935924272,-0.010012632851152684,-0.008466141173911168,-0.0067091609921461235,-0.004784652271327459,-0.0027397566323579653,-0.0006246427898401269,0.0015087240772337124,0.003607858839933144,0.005621047466391402,0.00749862084847184,0.009194180035830985,0.010665742658183706,0.01187678221492805,0.012797134509085466,0.013403748736896341,0.013681264536586484,0.013622400557258236,0.013228144727447802,0.012507741269437883,0.011478474500535086,0.010165254463467898,0.008600014311765478,0.006820934022144984,0.004871509299848556,0.002799488378469224,0.0006557026979732587,-0.0015071799080418947,-0.0036359489384678225,-0.005678160090151053,-0.007583427072353721,-0.009304664555034639,-0.010799251594458353,-0.01203008679424868,-0.012966509084608432,-0.01358506127329902,-0.013870077359622441,-0.01381407891335426,-0.013417970498948804,-0.012691029056767581,-0.01165068721655711,-0.01032211558951199,-0.008737614039244647,-0.006935826646738437,-0.0049607994435985295,-0.00286090388378893,-0.0006876523601449177,0.001505565234712698,0.00366479291990011,0.005736835803278369,0.007670570383973723,0.00941820571009868,0.010936464285577633,0.012187653551363304,0.013140601418286135,0.013771432637189442,0.014064166676264553,0.014011122140930357,0.013613117511392785,0.01287946297109578,0.011827743233000787,0.010483396413877239,0.008879099032985255,0.0070539719968784826,0.005052626858393404,0.002924075595879741,0.0007205305502049192,-0.0015038761021002299,-0.0036944219394958186,-0.005797140297899653,-0.007760149582860876,-0.009534933153084136,-0.01107753820692213,-0.012349664051856333,-0.013319612817118734,-0.013963079016428607,-0.014263758300036197,-0.014213760156853028,-0.01381381413037713,-0.013073264178693695,-0.012009851014782252,-0.010649287480762942,-0.00902463711022394,-0.007175510890671145,-0.005147101733607314,-0.0029890801815565184,-0.0007543783299625474,0.0015021082684972948,0.0037248688884814903,0.005859142995939682,0.007852269114008591,0.009654983971142277,0.011222639887424142,0.012516310320976625,0.013503756205283617,0.014160229094615801,0.014469091116130787,0.01442223620659061,0.014020301979428757,0.01327266670491837,0.012197231166414461,0.010819990449348012,0.009174405896575442,0.007300592396315815,0.0052443407354430495,0.00305599883852761,0.0007892392203539142,-0.0015002571803482342,-0.0037561685165216764,-0.005922917317570183,-0.007947039476913437,-0.009778503227204973,-0.011371945569670666,-0.012687795607829424,-0.01369325697440835,-0.014363124967141193,-0.014680418041143398,-0.014636807844256994,-0.014232836916291836,-0.013477918382556037,-0.01239011732871508,-0.01099571891622731,-0.009328593553228418,-0.007429374445238039,-0.005344467489871771,-0.0031249176350564944,-0.0008251593882101772,0.001498317944330809,0.0037883575646898123,0.005988540973186719,0.008044577670688067,0.009905644548561236,0.011525641928607123,0.012864335217565165,0.013888353909628899,0.014572023139021235,0.014898007068620149,0.014857748000421564,0.014451690096772446,0.01368928188535334,0.012588757156183593,0.011176699311977477,0.009487399569802346,0.007562024500735143,0.0054476131094249956,0.0031959278806493285,0.0008621878502874215,-0.0014962852964667261,-0.0038214749100170414,-0.006056096281334168,-0.00814500767903409,-0.010036570768324824,-0.01168392685501652,-0.013046157418718991,-0.014089300199438874,-0.014787195613167586,-0.015122142409512167,-0.015085346146991647,-0.014677149135446097,-0.013907035855790523,-0.012793413383655425,-0.0113631718797509,-0.00965103562990568,-0.007698720288068272,-0.0055539167685768045,-0.0032691265311028126,-0.0009003766964703528,0.0014941535679170478,0.003855561722788522,0.006125670515331982,0.008248460999282507,0.010171454625439188,0.011847010310674214,0.013233504433751023,0.014296364538302181,0.015008931078796509,0.015353125737739847,0.015319909569623626,0.014909519373670103,0.01413147613728624,0.0130043649918816,0.011555391744804534,0.009819726557275166,0.007839650592711016,0.005663526333004577,0.0033446166317085586,0.0009397813342606426,-0.0014919166470259346,-0.00389066163793881,-0.006197356281645716,-0.008355077220264368,-0.010310479529530386,-0.012015115262961428,-0.013426633521814398,-0.014509832332133389,-0.015237536210895197,-0.01559127755234534,-0.015561764759421884,-0.01514912526666108,-0.014362917122283454,-0.013221908482918276,-0.01175363008496115,-0.009993711351404286,-0.007985016134274239,-0.005776599048728849,-0.0034225078028503587,-0.0009804607569779006,0.001489567937158992,0.0039268209420180444,0.006271251933469948,0.008465004654331396,0.010453840397743728,0.012188478707671256,0.013625818163939131,0.014730007018010421,0.01547333709304844,0.0158369386691664,0.01581125893718057,0.015396311902883136,0.014601693229142412,0.013446359277576559,0.011958175413308776,0.010173244322677057,0.008135030524631656,0.005893302297866349,0.0035029167728239732,0.0010224778383769964,-0.0014871003097710904,-0.003964088777422741,-0.006347462023384735,-0.00857840102955967,-0.010601744571577303,-0.012367352789886227,-0.013831349362103413,-0.014957211510959738,-0.0157166807775033,-0.01609047185663239,-0.016068761725133097,-0.01565144667071293,-0.014848160522422897,-0.01367805324879071,-0.012169334985884152,-0.010358596338355043,-0.008289921319845869,-0.0060138144286458195,-0.0035859679633027165,-0.001065899656782016,0.0014845060520989296,0.0040025173657611225,0.0064260977994751774,0.008695434248910875,0.010754412822790367,0.012552006034062167,0.014043537065175988,0.015191789792313391,0.015967936998171076,0.016352263632192436,0.016334666983135498,0.015914921089308,0.01510269849307102,0.013917348406577077,0.01238743634879343,0.010550056192249302,0.008449931176799973,0.006138325668332858,0.0036717941336340152,0.0011107978522340363,-0.0014817768087461913,-0.004042162252482353,-0.006507277749850236,-0.008816283224044635,-0.010912080458641957,-0.01274272469594658,-0.014262711736419728,-0.015434108656074051,-0.016227500054346724,-0.016622726238085854,-0.01660939482846842,-0.016187152822868107,-0.015365712017225888,-0.014164626752362209,-0.012612829041148344,-0.010747932112644135,-0.00861531912689057,-0.006267039128891068,-0.003760537090971077,-0.0011572490206432794,0.0014789035163416356,0.004083082575162079,0.006591128201166568,0.008941138792478176,0.011074998538095987,0.012939814250640157,0.014489226079229364,0.01568455963193187,0.01649579088533091,0.016902299817695803,0.016893393861042556,0.01646858790008491,0.015637633514912264,0.014420296322880392,0.012845886472440166,0.010952553425031049,0.00878636198084347,0.006400171916557612,0.003852348474225018,0.001205335149493303,-0.0014758763303122046,-0.004125341358151963,-0.006677783977501164,-0.00907020472798412,-0.01124343521221113,-0.013143601033070898,-0.014723456940057058,-0.015943561106138794,-0.01677325935891348,-0.017191454816652803,-0.017187143618797848,-0.016759703163586936,-0.015918925332827495,-0.014684793446642131,-0.013087007995559244,-0.011164272388517736,-0.008963355880674225,-0.0065379563580783735,-0.003947390620945601,-0.0012551441002949801,0.0014726845426650819,0.004169005836659759,0.006767389126796341,0.009203698855466397,0.011417677203762454,0.013354434049408948,0.014965807410119642,0.016211560664404667,0.017060386799887944,0.01749069463624016,0.017491157291565685,0.01706100897767458,0.016210082378840997,0.014958585239220964,0.01333662119966703,0.0113834662274503,0.009146618017093154,0.006680641358166121,0.0040458375275462,0.0013067701437440014,-0.0014693164894945697,-0.004214147813740005,-0.006860097723097219,-0.009341854283142888,-0.01159803144326871,-0.013572686980568186,-0.015216709150542095,-0.01648903768441214,-0.017357688788491536,-0.01780055857058245,-0.01780598472570211,-0.017373052226689063,-0.016511635039784277,-0.015242172367376374,-0.013595184450611883,-0.011610539382894846,-0.009336488533302297,-0.006828493904860343,-0.004147875914810678,-0.0013603145544175315,0.0014657594467195533,0.004260844054152656,0.006956074753967206,0.009484920766687369,0.011784826881051801,0.013798760401989628,0.015476624969149652,0.016776506209538723,0.01766571826299745,0.018121625063668836,0.018132215756499145,0.01769641964107276,0.016824152418719495,0.015536092116421414,0.013863189710639153,0.011845926012245675,0.009533332639218631,0.0069818007419346585,0.004253706412396606,0.0014158862728771305,-0.0014619995123083566,-0.00430917671959886,-0.00705549710381825,-0.009633166222115746,-0.011978416497832857,-0.014033084247438328,-0.015746051681265503,-0.01707451814002669,-0.01798506896573736,-0.01845451532759405,-0.018470483910864078,-0.018031741493678068,-0.017148245933255975,-0.01584092180037047,-0.01414116567388682,-0.012090092769458544,-0.009737542963765855,-0.0071408702303832885,-0.004363544878129201,-0.001473602644254898,0.0014580214729518557,0.004359233850482814,0.007158554645466938,0.0097868784066856,0.012179179539710703,0.01427612054869527,0.016025523291719142,0.017383666783279565,0.01831637927773816,0.01879989736963453,0.01882147052916997,0.018379695715318146,0.01748457332278261,0.016157282560405096,0.014429681259710532,0.012343541903364506,0.009949542177106122,0.007306034424402164,0.004477623870321846,0.0015335902438228164,-0.0014538086527928896,-0.004411109900092095,-0.007265451454066335,-0.009946366789984437,-0.012387524007289036,-0.01452836648787009,-0.016315614540938817,-0.017704590811336143,-0.018660336494081123,-0.019158490483088687,-0.019185909362704312,-0.018741012486104755,-0.017833843119877,-0.01648584360424345,-0.01472934951240313,-0.012606814717344234,-0.010169785919654237,-0.007477651391260596,-0.004596194294233417,-0.0015959858017241364,0.0014493427413980271,0.004464906327954762,0.0073764071597169295,0.010111964640790455,0.012603889433317896,0.014790357804757985,0.01661694486467684,0.018037978681067334,0.019017681600231897,0.01953107026540971,0.019564591711993963,0.01911647936800561,0.018196819649855207,0.016827326947297685,0.015040831963555533,0.012880495440505985,0.010398766080577401,0.00765610780915488,0.004719527247166793,0.0016609372410323162,-0.0014446035976513863,-0.004520732260142814,-0.007491658457589216,-0.01028403135929919,-0.012828749988629842,-0.015062672608372978,-0.016930182824770386,-0.01838457358146651,-0.019389214619192453,-0.019918474237303377,-0.019958372181729127,-0.0195069470545439,-0.018574328632701375,-0.01718251272630553,-0.015364843522382056,-0.01316521556862294,-0.010637014475414253,-0.007841821882691563,-0.004847916090733413,-0.0017286048456615758,0.0014395690256405519,0.004578705225475791,0.0076114607973693975,0.0104629550890398,0.013062617962545108,0.015345935649716385,0.017256051077630397,0.018745178982852072,0.019775800610678917,0.020321608148466477,0.02036817514037183,0.01991333582598348,0.018967263473787403,0.01755224516773573,0.015702157970090905,0.013461658742705098,0.010885106980669185,0.008035246622244304,0.004981678783586611,0.0017991625774623876,-0.0014342145178680122,-0.004638951977968503,-0.00773609027735929,-0.010649155648402716,-0.013306047671493584,-0.01564082312223433,-0.0175953319581651,-0.019120664875185333,-0.020178376417009432,-0.020741453069891686,-0.020795001987215626,-0.02033664281309794,-0.019376592344255338,-0.017937439307072388,-0.01605361414717347,-0.01377056624452489,-0.01114366819302468,-0.008236873541285012,-0.0051211605136237655,-0.00187279956519293,0.0014285129602282405,0.004701609417503863,0.00786584577273261,0.010843087828347095,0.01355963985860181,0.015948068067589742,0.017948873769948425,0.019511974797451554,0.02059795826643023,0.02117907338963555,0.02123993934715474,0.020777950190207572,0.01980336616917874,0.018339088571549058,0.01642012293775027,0.014092743202077183,0.011413376692503821,0.008447236835180876,0.005266736675474448,0.0019497217920851394,-0.001422434292103143,-0.004766825622644666,-0.008001051332409439,-0.011045245110773818,-0.01382404665772478,-0.016268466477704344,-0.018317597888086602,-0.019920133777660724,-0.021035650363780307,-0.021635625849232957,-0.021704168334336447,-0.021238434439203365,-0.020248727662251685,-0.018758273358612965,-0.016802675173390316,-0.014429065614320767,-0.011694971002926942,-0.008666918116213984,-0.005418816247279273,-0.0020301540135732573,0.00141594511359963,0.004834761011787389,0.008142058884927753,0.011256163871514341,0.014099977208244078,0.016602884199987043,0.01870250679997739,0.020346257324130104,0.02149265462138347,0.022112369782274294,0.022188975050966963,0.021719376851525408,0.02071392157053247,0.019196170766077877,0.017202350600789295,0.014780488324228756,0.011989256359865178,0.008896551793144617,0.005577845630634443,0.0021143419426140086,-0.00140900823032221,-0.004905589651580713,-0.008289251300775069,-0.011476428143240118,-0.014388204022376175,-0.016952264771848306,-0.019104693231692664,-0.02079156163410272,-0.021970281710725268,-0.022610678745961104,-0.0226957625177727,-0.02222217546549378,-0.021200306322634314,-0.019654065658479634,-0.017620328084198004,-0.01514805409293201,-0.012297112416656496,-0.009136831200036187,-0.005744313029523571,-0.0022025547471407753,0.0014015821240635268,0.00497950073477281,0.008443045867156036,0.011706675027270718,0.014689570225327374,0.017317638333743286,0.0195253505349204,0.021257375216423152,0.02246996364890464,0.023132053771873592,0.02322606426917705,0.022748358673196818,0.02170936730991113,0.02013336328872522,0.018057897245600772,0.015532903956532736,0.012619502043745446,0.009388515598962269,0.005918753458577819,0.0022950879128633586,-0.001393620335307468,-0.005056700253527264,-0.008603898241440104,-0.01194760085978936,-0.015004997811135755,-0.01770013179802034,-0.01996578454237594,-0.021745152162181716,-0.022993268174411528,-0.02367813850517202,-0.02378155989064526,-0.023299600775860938,-0.022242732074113963,-0.020635603736159934,-0.018516471784701678,-0.015936289082210144,-0.01295748140668488,-0.009652438205476687,-0.006101754488728146,-0.0023922665352372995,0.0013850707403445341,0.005137412898897979,0.00877230696196879,0.01219996825804101,0.015335497084391398,0.018100980484951536,0.0204274271397272,0.022256487342528438,0.0235419152162024,0.024250736553856247,0.024364092829787156,0.02387773982118252,0.022802187728621838,0.021162478473522154,0.018997604768499352,0.016359584383080977,0.01331221154493205,0.009929515415432962,0.006293962860044494,0.002494449117478005,-0.0013758747019309342,-0.005221884222752981,-0.008948818610024157,-0.012464614196551519,-0.015682177491412368,-0.018521541478982,-0.020911851851144154,-0.02279313386825834,-0.024117795820529107,-0.024851831433870486,-0.024975690879125184,-0.02448479812296558,-0.02338970100610141,-0.021715849438222776,-0.019503006238796274,-0.016804304203895056,-0.013684971718791142,-0.010220757448281943,-0.0064960921183283725,-0.0026020319676233737,0.0013659660675632635,0.0053103831052041615,0.009134033735229384,0.012742459293362908,0.01604626008539258,0.018963309009365437,0.021420791795844343,0.023357023213850973,0.024722993974344194,0.025483609574772016,0.025618589810057612,0.025123005945741614,0.02400744140645317,0.02229777106101563,0.02003456355823526,0.017272120454566015,0.014077174847699055,0.010527280667149724,0.00670893146517092,0.0027154543076810126,-0.001355269983302946,-0.005403204578808768,-0.0093286136793114,-0.01303451852313505,-0.016429091920474804,-0.01942793222240646,-0.02195616044737445,-0.023950288492718744,-0.0253598118559921,-0.026148486948258647,-0.0262952607385001,-0.025794828938931827,-0.02465780801919247,-0.02291051580128179,-0.02059436500497909,-0.01776488364908231,-0.014490385432373245,-0.010850321892127642,-0.006933356052438982,-0.0028352042329100402,0.001343701483289065,0.0055006730708051866,0.009533288461087112,0.01334191361952857,0.016832162732151684,0.019917235790678996,0.02252007571961153,0.02457529147476555,0.026030799158008922,0.026849140003096225,0.027008441928198852,0.026503000031845518,0.02534346071923232,0.02355660385789394,0.021184727237718838,0.0182846474077417,0.014926340439833742,0.011191255093330483,0.007170339003769659,0.0029618256906964097,-0.0013311638051185619,-0.005603146136868212,-0.0097488659201358,-0.013665887485905364,-0.01725712433912373,-0.02043324390195747,-0.023114888018489495,-0.025234654067561823,-0.026738787269332275,-0.027588541741460533,-0.027761175894596028,-0.02725055665931306,-0.026067356591233187,-0.024238837874562352,-0.02180822739247584,-0.01883369710656195,-0.015386973738882462,-0.011551610938363124,-0.007420965510615344,-0.003095926688151766,0.001317546368469427,0.005711018774875616,0.009976242359706584,0.014007821004124073,0.01770581329901362,0.02097820829258311,0.023743213042684282,0.025931295145825223,0.027486929283124854,0.028370003962019105,0.028556852869357708,0.02804088438713199,0.026832792634280456,0.024960343647394165,0.022467740748822865,0.01941458351650481,0.0158744448106398,0.01193309978019285,0.007686449432636469,0.003238188987982796,-0.0013027223377760275,-0.005824728425680911,-0.010216414983354617,-0.014369252720089926,-0.018180277472766522,-0.021554641143706487,-0.024407970298402207,-0.026668473820125462,-0.02827874702238794,-0.02919722693561687,-0.02939926193511275,-0.02887776825881658,-0.027643456047594384,-0.025724618081665002,-0.023166485126521485,-0.020030162476652846,-0.016391172632809436,-0.012337638813005081,-0.007968152937031342,-0.0033893796166696746,0.0012865456681828138,0.0059447607908016,0.010470496487726263,0.014751901997059997,0.018682807307600694,0.022165353853743627,0.02511242852427696,0.027449840497666037,0.029118186562759708,0.030074358085368777,0.030292651457416858,0.02976545350647459,0.02850348371523104,0.02653558594993448,0.023908073458644534,0.02068364190285547,0.01693987585888799,0.012767384304911854,0.008267609845855855,0.0035503645920629645,-0.001268847505680996,-0.006071656625437231,-0.01073973225996102,-0.015157696370589111,-0.019215972845949572,-0.022813502949086663,-0.02586025951727711,-0.028279497422870004,-0.030009684099374156,-0.031006061634676344,-0.031241800847709906,-0.03070871768062537,-0.02941753291477632,-0.02739766739541358,-0.0246965763535603,-0.02137863776437286,-0.017523620700057814,-0.013224770050090028,-0.008586553534054013,-0.003722125385264724,0.0012494317748765991,0.006206019700854233,0.011025520737871936,0.015588804021938352,0.019782667721332903,0.023502644714648777,0.026655602229819216,0.029162070816599675,0.030958244478119557,0.03199760169175224,0.032252106215877936,0.03171295678576024,0.03039086580102231,0.028315858631141024,0.02553659693226033,0.0221192410898684,0.01814587828909568,0.01371255348646907,0.008926950447013294,0.0039057787725803998,-0.0012280697379313018,-0.006348526174896356,-0.01132943763183667,-0.01604767252262053,-0.020386161729657393,-0.0242368005393391,-0.02750313949968943,-0.030102797291907922,-0.03196953532616538,-0.03305494189531506,-0.03332968315332751,-0.03278428870056085,-0.0314294509004591,-0.029295828945729185,-0.02643336084585184,-0.022910098623931986,-0.018810593791330175,-0.014233871322447118,-0.009291040603097322,-0.004102600919038977,0.0012044932410635945,0.006499935665802777,0.011653264889269998,0.016537075309099168,0.02103016399093473,0.025020535510810935,0.028408190415965918,0.031107627954894093,0.03305000052052317,0.034184865605097155,0.03448149078152378,0.033929678069340836,0.03254008575127564,0.030344037993709997,0.0273928251910677,0.023756510492187057,0.019522270167744694,0.014792307040607383,0.009681386839109296,0.004314056781926476,-0.0011783862739623283,-0.006661104396002062,-0.011999025519415231,-0.017060167747650977,-0.021718899276122607,-0.02585905350273503,-0.029376822168700217,-0.03218335456211163,-0.03420699779380387,-0.0353951217548951,-0.03571548238235808,-0.03515708805171256,-0.03373054601342297,-0.0314678784976093,-0.02842181111994807,-0.024664549211409818,-0.02028607034632479,-0.015391973344937648,-0.010100935080726955,-0.004541836254177863,0.0011493743426729977,0.006833000863593102,0.012369025707057247,0.017620555178721076,0.022457200814681267,0.026758312937909638,0.03041598635157967,0.03333776338604042,0.035448966687508125,0.036694602996596624,0.03704078950193059,0.03647566591954357,0.035009767962734924,0.032675851025373584,0.02952816638319736,0.025641205692228355,0.02110794269974495,0.016037613557147102,0.010553088626439402,0.004787898916586367,-0.0011170109838317837,-0.0070167246156316605,-0.012765906055097183,-0.01822237603496026,-0.023250623888004602,-0.02772516866856241,-0.03153368618986343,-0.03457982415788251,-0.03678563495898251,-0.03809356479522823,-0.03846794853982126,-0.037895971649023794,-0.03638807342699901,-0.03397777958142162,-0.0307209659977887,-0.026694569656549757,-0.021994776275473887,-0.016734727243078618,-0.011041800395747425,-0.005054529882909653,0.001080760506428053,0.007213528846832697,0.013192704345085515,0.01887040407466855,0.024105585848465175,0.028767547115414495,0.032739183200458495,0.03591992378523228,0.038228274120851884,0.03960389689510679,0.040009181719785805,0.03943026159467964,0.03787744914379117,0.03538507958029798,0.032010761894675124,0.027834054319310995,0.02295459434521494,0.017489727101159612,0.01157168841745989,0.005344410073992874,-0.0010399757050143568, -0.0074248477399438025,-0.013652932944865866,-0.019570175058984295, -0.02502954002236904,-0.02989466412910682,-0.034043254574452377,-0.03737015773200255,-0.039790018320897146,-0.04123946236788187,-0.041678748303125665, -0.04109284337790695, -0.03949189654672641,-0.036911093677711566,-0.03340989608476297,-0.02907067854267498,-0.023996797779897168,-0.018310136576819257,-0.012148181680284408,-0.005660705451633268,0.0009938687974208394,0.007652329712972285, 0.014150674999827556,0.020328144967100583,0.02603119346075172,0.031117298244761855,0.03545851642402368,0.038944696368763757,0.041486265668145623,0.04301652472076526,0.04349338742293708,0.04290052375832257,0.04124787360313014,0.038571516388311224,0.03493289703084617,0.030417424374802812,0.02513247388076009,0.019204841087239532,0.012777706073684902,0.006007181439886584,-0.0009414731264106246,-0.00789787806051382,-0.014690704930136092,-0.021151889295771664,-0.027120781995569207,-0.032448136484148495,-0.03699983343109193,-0.04066024980477274,-0.043335187993639154,-0.04495429095576272,-0.04547288169133723,-0.04487317920795829,-0.04316485826111046,-0.04038493613666262,-0.03659698620961514,-0.0318896945615375,-0.026374792162006874,-0.020184410616968,-0.013467923875374994,-0.006388351206328235,0.0008815921118185961,0.008163700892720166,0.015278640684767369,0.022050356436424112,0.028310420992857598,0.03390221621062065,0.03868484309385729,0.04253666353426036,0.045358384837867714,0.04707560904475849,0.047640781837326326,0.047034490284135574,0.04526607443227943,0.042373534460643014,0.0384227323338282,0.03350590423117361,0.027739517042131512,0.021261518498919243,0.01422804565659487,0.006809670052392734,-0.0008127303613872672,-0.008452372811072403,-0.01592113791948644,-0.023034193034414358,-0.029614557259915124,-0.035497495665123634,-0.040534633795878044,-0.04459768995718312,-0.04758173162654765,-0.04940787359363371,-0.05002534873600844,-0.049412897417360026,-0.04757943797181527,-0.0445639982183359,-0.04043490600837773,-0.03528825500760325,-0.029245679802397066,-0.022451491563595213,-0.015069241468690781,-0.00727779348202511,0.0007329994411377716,0.008766911441869722,0.01662614014208101,0.02411616633427197,0.0310505578343443,0.03725559911993982,0.04257463205223558,0.04687199948997537,0.050036492805309106,0.05198421598969846,0.05266079292072407,0.052042860117698514,0.050138804568472875,0.04698872454599378,0.04266361030663365,0.03726376071077053,0.030916470660572168,0.023773042346222416,0.016005190181961185,0.007800924576506711,-0.000639987064316204,-0.009110872797361436,-0.01740320447709376,-0.025311718939246018,-0.032639486558844924,-0.03920280232746915,-0.04483577828208104,-0.04939452279944773,-0.05276080179806229,-0.05484508904517152,-0.05558892726589368,-0.05496653825142696,-0.05298563827005522,-0.04968743436259676,-0.045145797086595246,-0.03946562547460371,-0.03278043989705011,-0.02524925767918015,-0.017052824240289834,-0.008389288755623357,0.000530572520549295,0.009488470446348795,0.018263930940601143,0.02663970698412353,0.03440714217315382,0.041371353762835156,0.04735610682044409,0.05220825796080843,0.05580165700999143,0.05804040761274113,0.05886140296968819,0.05823607020403734,0.056171275902273596,0.052709365692153586,0.04792733182312625,0.041935124086485594,0.03487314053260381,0.026908954791322676,0.018233355875649906,0.00905579367337897,-0.00040066152880565103,-0.009904724572618465,-0.01922253541079696,-0.02812339641494256,-0.0363854666690031,-0.043801273122293774,-0.05018290212743681,-0.05536674190906972,-0.05921765674667074,-0.061632486877791125,-0.0625427840302011,-0.06191671069946391,-0.05976005136997111,-0.056116305351812536,-0.05106585325530414,-0.04472421180730702,-0.037239414174937674,-0.028788574651262014,-0.019573716937970543,-0.00981696382451355,0.000244797654257922,0.010365647912284521,0.02029662514555336,0.02979182887031954,0.03861448753029594,0.04654284096710592,0.053375692135346146,0.05893748962269074,0.06308281315348804,0.06570014807312907,0.06671485151208935,0.06609123212243802,0.06383368651178466,0.059986858263336794,0.054634809178529885,0.04789921653551977,0.039936634133969785,0.030934878105860486,0.021108620340358097,0.010694292353985396,-0.00005557996607238711,-0.010878475554157246,-0.021508264552086598,-0.031681727113893395,-0.04114504555836772,-0.04966011036966606,-0.05701048402120923,-0.06300687391799153,-0.06749197676406793,-0.07034457112098592,-0.07148275249891736,-0.07086622560648373,-0.068497590900056,-0.0644225867831778,-0.05872927413119469,-0.05154617564343897,-0.043039408227217024,-0.03340887156492647,-0.0228835795925152,-0.011716243238079502,-0.00017723189123445188,0.011451942788159733,0.022885464374922768,0.033840205146845985,0.04404270514452145,0.05323596556231735,0.06118588850582777,0.06768720258065183,0.07256872518894625,0.07569782755373398,0.0769839870235062,0.07638133270302289,0.07389011440687411,0.0695570507731415,0.06347453948797586,0.05577874030510001,0.046646569224260345,0.03629166914295988,0.02495944785266162,0.012921297779449632,0.0004681327799632659,-0.0120966049341197,-0.024464300513265442,-0.036328707421703035,-0.04739349029666969,-0.0573795849039418,-0.0660321933991325,-0.07312724059145556,-0.07847712871210756,-0.0819356440585774,-0.08340188846345704,-0.08282313137306244,-0.08019650388575841,-0.07556948379014226,-0.06903914980047911,-0.06075021311142139,-0.05089186436229889,-0.0396935033825819,-0.02741944696490204,-0.014362735689161897,-0.0008381838553122669,0.012825163710599954,0.02629198834006269,0.03922887643880289,0.0513125223315238,0.062237754461780564,0.07172518698177673,0.07952830622706637,0.08543981374265507,0.08929706415282981,0.0909864568796878,0.09044666504488007,0.08767061227369254,0.08270613791944995,0.07565532273444199,0.06667247947873134,0.055960845598262615,0.04376804712570167,0.03038043357670634,0.016116412073490075,0.001318934515252238,-0.01365268631650838,-0.02843143784849361,-0.042651538712108625,-0.055957423863408566,-0.06801256472957097,-0.07850790727602923,-0.0871697181843753,-0.09376664180269134,-0.0981157879210721,-0.10008769235809131,-0.09961001832756423,-0.09666989599527905,-0.09131482984925766,-0.08365213773798948,-0.07384692086654425,-0.06211859983148435,-0.0487360870565604,-0.03401169990116054,-0.018293950416486213,-0.0019593764301506747,0.014596396376675138,0.03096815111613618,0.046750909068111225,0.061549855407493845,0.07499012016988563,0.0867261744098874,0.0964506084144615,0.1039020714719725,0.10887217081613709,0.111211150578966,0.11083219938661018,0.10771426698985462,0.1019033053079909,0.09351188666693157,0.08271719094928044,0.0697573929193596,0.05492652018971198,0.03856789020578361,0.02106627031240195,0.002838937543563369,-0.015674156573929662,-0.03402088692568697,-0.051747873450736386,-0.06841155664804159,-0.08358916235281315,-0.09688928786169744,-0.10796184763762298,-0.11650712937536487,-0.12228372992451296,-0.12511516506351938,-0.12489497686974772,-0.12159019677681537,-0.11524306057542304,-0.10597091272051502,-0.09396428039908976,-0.07948314187429106,-0.06285145760316106,-0.04445007546866469,-0.02470816212795454,-0.0040933499557582525,0.016899177583090532,0.037758410913658495,0.057969775791158314,0.07702764095646673,0.09444777219727384,0.10977943053792952,0.12261681705438879,0.13260957879629862,0.1394721092951341,0.14299140277451738,0.14303325292255478,0.139546624250383,0.13256606582283764,0.1222120825636204,0.10868942736762614,0.09228332678160646,0.0733537028765328,0.05232750294437881,0.029689295628156025,0.005970335890561541,-0.01826365924112258,-0.042425747944643835,-0.06592170955057823,-0.08816437359800977,-0.10858799268135634,-0.12666231393687521,-0.14190600633619366,-0.1538991114784016,-0.16229420415986737,-0.16682597531758303,-0.16731898346602686,-0.16369336078079016,-0.15596830566349987,-0.14426324394643283,-0.12879659473383145,-0.1098821330050303,-0.08792299822707564,-0.06340345500629471,-0.03687856690458388,-0.008961996634484394,0.019687806341973174,0.048382727437663975,0.07642107860306183,0.10310429250053196,0.1277538315634778,0.14972791304434163,0.16843764910725595,0.18336220837419137,0.19406262205081445,0.2001938835840536,0.20151502526600837,0.19789689761916696,0.18932742690240606,0.17591418161586236,0.15788413925089936,0.13558060839594346,0.1094573272374418,0.08006982598769283,0.04806420629408894,0.01416355370502847,-0.020847741709477344,-0.056141427884018213,-0.09086422087330824,-0.12415760806428999,-0.1551781799973049,-0.18311802607983016,-0.20722471962616415,-0.22682041856876872,-0.24131962000459461,-0.2502451293581236,-0.25324183800952077,-0.250087946155664,-0.24070331961559538,-0.22515472921520674,-0.20365778804800422,-0.17657547389889783,-0.14441319988521548,-0.10781047425583663,-0.06752926856705795,-0.024439290361676958,0.02049956973833415,0.06625727766290923,0.11175578088768122,0.15589276288422155,0.19756652586968265,0.23570146589357976,0.26927358087283626,0.29733544082962843,0.3190400507314687,0.33366305013827313,0.3406227202063703,0.3394973070841716,0.3300392206839183,0.31218572829157243,0.28606583230094695,0.25200309912586005,0.21051429046014697,0.1623037367650311,0.1082534842894091,0.049409339111457055,-0.013036977370172714,-0.07776925936671261,-0.14337144941015117,-0.20835501273819287,-0.2711885265546741,-0.33032890100276513,-0.3842536040003885,-0.4314932301851665,-0.47066373594440675,-0.5004976584229822,-0.5198736467664834,-0.5278436586178057,-0.5236572136806413,-0.5067821483258685,-0.47692137978539223,-0.43402526421586857,-0.37829921833413116,-0.31020636771813986,-0.23046508433710503,-0.14004137938069164,-0.0401362228547858,0.0678320335033543,0.182249850879551,0.3013349386437645,0.42316646220493953,0.5457184731667526,0.6668959397772898,0.784572696102819,0.8966305822835551,1.0009990167107312,1.0956942247623747,1.1788573482944704,1.2487906755200475,1.3039912620028706,1.3431812596962447,1.365334331401982,1.3696976015376463,1.3558086792299628,1.3235073847970373,1.2729419137252573,1.2045692811970832,1.119150002860804,1.0177370815456632,0.9016594826725575,0.7725003908622943,0.6320706444335235,0.482377840955056,0.3255916937732503,0.16400629467421043, 0, -0.16400629467421043, -0.3255916937732503, -0.482377840955056, -0.6320706444335235, -0.7725003908622943,-0.9016594826725575,-1.0177370815456632,-1.119150002860804,-1.2045692811970832,-1.2729419137252573,-1.3235073847970373,-1.3558086792299628,-1.3696976015376463,-1.365334331401982,-1.3431812596962447,-1.3039912620028706,-1.2487906755200475, -1.1788573482944704, -1.0956942247623747, -1.0009990167107312, -0.8966305822835551,-0.784572696102819,-0.6668959397772898, -0.5457184731667526, -0.42316646220493953,-0.3013349386437645,-0.182249850879551,-0.0678320335033543,0.0401362228547858,0.14004137938069164,0.23046508433710503, 0.31020636771813986,0.37829921833413116, 0.43402526421586857,0.47692137978539223,0.5067821483258685,0.5236572136806413,0.5278436586178057,0.5198736467664834,0.5004976584229822,0.47066373594440675,0.4314932301851665,0.3842536040003885,0.33032890100276513,0.2711885265546741,0.20835501273819287,0.14337144941015117,0.07776925936671261,0.013036977370172714,-0.049409339111457055,-0.1082534842894091,-0.1623037367650311,-0.21051429046014697,-0.25200309912586005,-0.28606583230094695,-0.31218572829157243,-0.3300392206839183,-0.3394973070841716,-0.3406227202063703,-0.33366305013827313,-0.3190400507314687,-0.29733544082962843,-0.26927358087283626,-0.23570146589357976,-0.19756652586968265,-0.15589276288422155,-0.11175578088768122,-0.06625727766290923,-0.02049956973833415,0.024439290361676958,0.06752926856705795,0.10781047425583663,0.14441319988521548,0.17657547389889783,0.20365778804800422,0.22515472921520674,0.24070331961559538,0.250087946155664,0.25324183800952077,0.2502451293581236,0.24131962000459461,0.22682041856876872,0.20722471962616415,0.18311802607983016,0.1551781799973049,0.12415760806428999,0.09086422087330824,0.056141427884018213,0.020847741709477344,-0.01416355370502847,-0.04806420629408894,-0.08006982598769283,-0.1094573272374418,-0.13558060839594346,-0.15788413925089936,-0.17591418161586236,-0.18932742690240606,-0.19789689761916696,-0.20151502526600837,-0.2001938835840536,-0.19406262205081445,-0.18336220837419137,-0.16843764910725595,-0.14972791304434163,-0.1277538315634778,-0.10310429250053196,-0.07642107860306183,-0.048382727437663975,-0.019687806341973174,0.008961996634484394,0.03687856690458388,0.06340345500629471,0.08792299822707564,0.1098821330050303,0.12879659473383145,0.14426324394643283,0.15596830566349987,0.16369336078079016,0.16731898346602686,0.16682597531758303,0.16229420415986737,0.1538991114784016,0.14190600633619366,0.12666231393687521,0.10858799268135634,0.08816437359800977,0.06592170955057823,0.042425747944643835,0.01826365924112258,-0.005970335890561541,-0.029689295628156025,-0.05232750294437881,-0.0733537028765328,-0.09228332678160646,-0.10868942736762614,-0.1222120825636204,-0.13256606582283764,-0.139546624250383,-0.14303325292255478,-0.14299140277451738,-0.1394721092951341,-0.13260957879629862,-0.12261681705438879,-0.10977943053792952,-0.09444777219727384,-0.07702764095646673,-0.057969775791158314,-0.037758410913658495,-0.016899177583090532,0.0040933499557582525,0.02470816212795454,0.04445007546866469,0.06285145760316106,0.07948314187429106,0.09396428039908976,0.10597091272051502,0.11524306057542304,0.12159019677681537,0.12489497686974772,0.12511516506351938,0.12228372992451296,0.11650712937536487,0.10796184763762298,0.09688928786169744,0.08358916235281315,0.06841155664804159,0.051747873450736386,0.03402088692568697,0.015674156573929662,-0.002838937543563369,-0.02106627031240195,-0.03856789020578361,-0.05492652018971198,-0.0697573929193596,-0.08271719094928044,-0.09351188666693157,-0.1019033053079909,-0.10771426698985462,-0.11083219938661018,-0.111211150578966,-0.10887217081613709,-0.1039020714719725,-0.0964506084144615,-0.0867261744098874,-0.07499012016988563,-0.061549855407493845,-0.046750909068111225,-0.03096815111613618,-0.014596396376675138,0.0019593764301506747,0.018293950416486213,0.03401169990116054,0.0487360870565604,0.06211859983148435,0.07384692086654425,0.08365213773798948,0.09131482984925766,0.09666989599527905,0.09961001832756423,0.10008769235809131,0.0981157879210721,0.09376664180269134,0.0871697181843753,0.07850790727602923,0.06801256472957097,0.055957423863408566,0.042651538712108625,0.02843143784849361,0.01365268631650838,-0.001318934515252238,-0.016116412073490075,-0.03038043357670634,-0.04376804712570167,-0.055960845598262615,-0.06667247947873134,-0.07565532273444199,-0.08270613791944995,-0.08767061227369254,-0.09044666504488007,-0.0909864568796878,-0.08929706415282981,-0.08543981374265507,-0.07952830622706637,-0.07172518698177673,-0.062237754461780564,-0.0513125223315238,-0.03922887643880289,-0.02629198834006269,-0.012825163710599954,0.0008381838553122669,0.014362735689161897,0.02741944696490204,0.0396935033825819,0.05089186436229889,0.06075021311142139,0.06903914980047911,0.07556948379014226,0.08019650388575841,0.08282313137306244,0.08340188846345704,0.0819356440585774,0.07847712871210756,0.07312724059145556,0.0660321933991325,0.0573795849039418,0.04739349029666969,0.036328707421703035,0.024464300513265442,0.0120966049341197,-0.0004681327799632659,-0.012921297779449632,-0.02495944785266162,-0.03629166914295988,-0.046646569224260345,-0.05577874030510001,-0.06347453948797586,-0.0695570507731415,-0.07389011440687411,-0.07638133270302289,-0.0769839870235062,-0.07569782755373398,-0.07256872518894625,-0.06768720258065183,-0.06118588850582777,-0.05323596556231735,-0.04404270514452145,-0.033840205146845985,-0.022885464374922768,-0.011451942788159733,0.00017723189123445188,0.011716243238079502,0.0228835795925152,0.03340887156492647,0.043039408227217024,0.05154617564343897,0.05872927413119469,0.0644225867831778,0.068497590900056,0.07086622560648373,0.07148275249891736,0.07034457112098592,0.06749197676406793,0.06300687391799153,0.05701048402120923,0.04966011036966606,0.04114504555836772,0.031681727113893395,0.021508264552086598,0.010878475554157246,0.00005557996607238711,-0.010694292353985396,-0.021108620340358097,-0.030934878105860486,-0.039936634133969785,-0.04789921653551977,-0.054634809178529885,-0.059986858263336794,-0.06383368651178466,-0.06609123212243802,-0.06671485151208935,-0.06570014807312907,-0.06308281315348804,-0.05893748962269074,-0.053375692135346146,-0.04654284096710592,-0.03861448753029594,-0.02979182887031954,-0.02029662514555336,-0.010365647912284521,-0.000244797654257922,0.00981696382451355,0.019573716937970543,0.028788574651262014,0.037239414174937674,0.04472421180730702,0.05106585325530414,0.056116305351812536,0.05976005136997111,0.06191671069946391,0.0625427840302011,0.061632486877791125,0.05921765674667074,0.05536674190906972,0.05018290212743681,0.043801273122293774,0.0363854666690031,0.02812339641494256,0.01922253541079696,0.009904724572618465,0.00040066152880565103,-0.00905579367337897,-0.018233355875649906,-0.026908954791322676,-0.03487314053260381,-0.041935124086485594,-0.04792733182312625,-0.052709365692153586,-0.056171275902273596,-0.05823607020403734,-0.05886140296968819,-0.05804040761274113,-0.05580165700999143,-0.05220825796080843,-0.04735610682044409,-0.041371353762835156,-0.03440714217315382,-0.02663970698412353,-0.018263930940601143,-0.009488470446348795,-0.000530572520549295,0.008389288755623357,0.017052824240289834,0.02524925767918015,0.03278043989705011,0.03946562547460371,0.045145797086595246,0.04968743436259676,0.05298563827005522,0.05496653825142696,0.05558892726589368,0.05484508904517152,0.05276080179806229,0.04939452279944773,0.04483577828208104,0.03920280232746915,0.032639486558844924,0.025311718939246018,0.01740320447709376,0.009110872797361436,0.000639987064316204,-0.007800924576506711,-0.016005190181961185,-0.023773042346222416,-0.030916470660572168,-0.03726376071077053,-0.04266361030663365,-0.04698872454599378,-0.050138804568472875,-0.052042860117698514,-0.05266079292072407,-0.05198421598969846,-0.050036492805309106,-0.04687199948997537,-0.04257463205223558,-0.03725559911993982,-0.0310505578343443,-0.02411616633427197,-0.01662614014208101,-0.008766911441869722,-0.0007329994411377716,0.00727779348202511,0.015069241468690781,0.022451491563595213,0.029245679802397066,0.03528825500760325,0.04043490600837773,0.0445639982183359,0.04757943797181527,0.049412897417360026,0.05002534873600844,0.04940787359363371,0.04758173162654765,0.04459768995718312,0.040534633795878044,0.035497495665123634,0.029614557259915124,0.023034193034414358,0.01592113791948644,0.008452372811072403,0.0008127303613872672,-0.006809670052392734,-0.01422804565659487,-0.021261518498919243,-0.027739517042131512,-0.03350590423117361,-0.0384227323338282,-0.042373534460643014,-0.04526607443227943,-0.047034490284135574,-0.047640781837326326,-0.04707560904475849,-0.045358384837867714,-0.04253666353426036,-0.03868484309385729,-0.03390221621062065,-0.028310420992857598,-0.022050356436424112,-0.015278640684767369,-0.008163700892720166,-0.0008815921118185961,0.006388351206328235,0.013467923875374994,0.020184410616968,0.026374792162006874,0.0318896945615375,0.03659698620961514,0.04038493613666262,0.04316485826111046,0.04487317920795829,0.04547288169133723,0.04495429095576272,0.043335187993639154,0.04066024980477274,0.03699983343109193,0.032448136484148495,0.027120781995569207,0.021151889295771664,0.014690704930136092,0.00789787806051382,0.0009414731264106246,-0.006007181439886584,-0.012777706073684902,-0.019204841087239532,-0.02513247388076009,-0.030417424374802812,-0.03493289703084617,-0.038571516388311224,-0.0412478736031301,-0.04290052375832257,-0.04349338742293708,-0.04301652472076526,-0.041486265668145623,-0.038944696368763757,-0.03545851642402368,-0.031117298244761855,-0.02603119346075172,-0.020328144967100583,-0.014150674999827556,-0.007652329712972285,-0.0009938687974208394,0.005660705451633268,0.012148181680284408,0.018310136576819257,0.023996797779897168,0.02907067854267498,0.03340989608476297,0.036911093677711566,0.03949189654672641,0.04109284337790695,0.041678748303125665,0.04123946236788187,0.039790018320897146,0.03737015773200255,0.034043254574452377, 0.02989466412910682,0.02502954002236904,0.019570175058984295,0.013652932944865866,0.0074248477399438025,0.0010399757050143568,-0.005344410073992874,-0.01157168841745989,-0.017489727101159612,-0.02295459434521494,-0.027834054319310995,-0.032010761894675124,-0.03538507958029798,-0.03787744914379117,-0.03943026159467964,-0.040009181719785805,-0.03960389689510679,-0.038228274120851884,-0.03591992378523228,-0.032739183200458495,-0.028767547115414495,-0.024105585848465175,-0.01887040407466855,-0.013192704345085515,-0.007213528846832697,-0.001080760506428053,0.005054529882909653,0.011041800395747425,0.016734727243078618,0.021994776275473887,0.026694569656549757,0.0307209659977887,0.03397777958142162,0.03638807342699901,0.037895971649023794,0.03846794853982126,0.03809356479522823,0.03678563495898251,0.03457982415788251,0.03153368618986343,0.02772516866856241,0.023250623888004602,0.01822237603496026,0.012765906055097183,0.0070167246156316605,0.0011170109838317837,-0.004787898916586367,-0.010553088626439402,-0.016037613557147102,-0.02110794269974495,-0.025641205692228355,-0.02952816638319736,-0.032675851025373584,-0.035009767962734924,-0.03647566591954357,-0.03704078950193059,-0.036694602996596624,-0.035448966687508125,-0.03333776338604042,-0.03041598635157967,-0.026758312937909638,-0.022457200814681267,-0.017620555178721076,-0.012369025707057247,-0.006833000863593102,-0.0011493743426729977,0.004541836254177863,0.010100935080726955,0.015391973344937648,0.02028607034632479,0.024664549211409818,0.02842181111994807,0.0314678784976093,0.03373054601342297,0.03515708805171256,0.03571548238235808,0.0353951217548951,0.03420699779380387,0.03218335456211163,0.029376822168700217,0.02585905350273503,0.021718899276122607,0.017060167747650977,0.011999025519415231,0.006661104396002062,0.0011783862739623283,-0.004314056781926476,-0.009681386839109296,-0.014792307040607383,-0.019522270167744694,-0.023756510492187057,-0.0273928251910677,-0.030344037993709997,-0.03254008575127564,-0.033929678069340836,-0.03448149078152378,-0.034184865605097155,-0.03305000052052317,-0.031107627954894093,-0.028408190415965918,-0.025020535510810935,-0.02103016399093473,-0.016537075309099168,-0.011653264889269998,-0.006499935665802777,-0.0012044932410635945,0.004102600919038977,0.009291040603097322,0.014233871322447118,0.018810593791330175,0.022910098623931986,0.02643336084585184,0.029295828945729185,0.0314294509004591,0.03278428870056085,0.03332968315332751,0.03305494189531506,0.03196953532616538,0.030102797291907922,0.02750313949968943,0.0242368005393391,0.020386161729657393,0.01604767252262053,0.01132943763183667,0.006348526174896356,0.0012280697379313018,-0.0039057787725803998,-0.008926950447013294,-0.01371255348646907,-0.01814587828909568,-0.0221192410898684,-0.02553659693226033,-0.028315858631141024,-0.03039086580102231,-0.03171295678576024,-0.032252106215877936,-0.03199760169175224,-0.030958244478119557,-0.029162070816599675,-0.026655602229819216,-0.023502644714648777,-0.019782667721332903,-0.015588804021938352,-0.011025520737871936,-0.006206019700854233,-0.0012494317748765991,0.003722125385264724,0.008586553534054013,0.013224770050090028,0.017523620700057814,0.02137863776437286,0.0246965763535603,0.02739766739541358,0.02941753291477632,0.03070871768062537,0.031241800847709906,0.031006061634676344,0.030009684099374156,0.028279497422870004,0.02586025951727711,0.022813502949086663,0.019215972845949572,0.015157696370589111,0.01073973225996102,0.006071656625437231,0.001268847505680996,-0.0035503645920629645,-0.008267609845855855,-0.012767384304911854,-0.01693987585888799,-0.02068364190285547,-0.023908073458644534,-0.02653558594993448,-0.02850348371523104,-0.02976545350647459,-0.030292651457416858,-0.030074358085368777,-0.029118186562759708,-0.027449840497666037,-0.02511242852427696,-0.022165353853743627,-0.018682807307600694,-0.014751901997059997,-0.010470496487726263,-0.0059447607908016,-0.0012865456681828138,0.0033893796166696746,0.007968152937031342,0.012337638813005081,0.016391172632809436,0.020030162476652846,0.023166485126521485,0.025724618081665002,0.027643456047594384,0.02887776825881658,0.02939926193511275,0.02919722693561687,0.02827874702238794,0.026668473820125462,0.024407970298402207,0.021554641143706487,0.018180277472766522,0.014369252720089926,0.010216414983354617,0.005824728425680911,0.0013027223377760275,-0.003238188987982796,-0.007686449432636469,-0.01193309978019285,-0.0158744448106398,-0.01941458351650481,-0.022467740748822865,-0.024960343647394165,-0.026832792634280456,-0.02804088438713199,-0.028556852869357708,-0.028370003962019105,-0.027486929283124854,-0.025931295145825223,-0.023743213042684282,-0.02097820829258311,-0.01770581329901362,-0.014007821004124073,-0.009976242359706584,-0.005711018774875616,-0.001317546368469427,0.003095926688151766,0.007420965510615344,0.011551610938363124,0.015386973738882462,0.01883369710656195,0.02180822739247584,0.024238837874562352,0.026067356591233187,0.02725055665931306,0.027761175894596028,0.027588541741460533,0.026738787269332275,0.025234654067561823,0.023114888018489495,0.02043324390195747,0.01725712433912373,0.013665887485905364,0.0097488659201358,0.005603146136868212,0.0013311638051185619,-0.0029618256906964097,-0.007170339003769659,-0.011191255093330483,-0.014926340439833742,-0.0182846474077417,-0.021184727237718838,-0.02355660385789394,-0.02534346071923232,-0.026503000031845518,-0.027008441928198852,-0.026849140003096225,-0.026030799158008922,-0.02457529147476555,-0.02252007571961153,-0.019917235790678996,-0.016832162732151684,-0.01334191361952857,-0.009533288461087112,-0.0055006730708051866,-0.001343701483289065,0.0028352042329100402,0.006933356052438982,0.010850321892127642,0.014490385432373245,0.01776488364908231,0.02059436500497909,0.02291051580128179,0.02465780801919247,0.025794828938931827,0.0262952607385001,0.026148486948258647,0.0253598118559921,0.023950288492718744,0.02195616044737445,0.01942793222240646,0.016429091920474804,0.01303451852313505,0.0093286136793114,0.005403204578808768,0.001355269983302946,-0.0027154543076810126,-0.00670893146517092,-0.010527280667149724,-0.014077174847699055,-0.017272120454566015,-0.02003456355823526,-0.02229777106101563,-0.02400744140645317,-0.025123005945741614,-0.025618589810057612,-0.025483609574772016,-0.024722993974344194,-0.023357023213850973,-0.021420791795844343,-0.018963309009365437,-0.01604626008539258,-0.012742459293362908,-0.009134033735229384,-0.0053103831052041615,-0.0013659660675632635,0.0026020319676233737,0.0064960921183283725,0.010220757448281943,0.013684971718791142,0.016804304203895056,0.019503006238796274,0.021715849438222776,0.02338970100610141,0.02448479812296558,0.024975690879125184,0.024851831433870486,0.024117795820529107,0.02279313386825834,0.020911851851144154,0.018521541478982,0.015682177491412368,0.012464614196551519,0.008948818610024157,0.005221884222752981,0.0013758747019309342,-0.002494449117478005,-0.006293962860044494,-0.009929515415432962,-0.01331221154493205,-0.016359584383080977,-0.018997604768499352,-0.021162478473522154,-0.022802187728621838,-0.02387773982118252,-0.024364092829787156,-0.024250736553856247,-0.0235419152162024,-0.022256487342528438,-0.0204274271397272,-0.018100980484951536,-0.015335497084391398,-0.01219996825804101,-0.00877230696196879,-0.005137412898897979,-0.0013850707403445341,0.0023922665352372995,0.006101754488728146,0.009652438205476687,0.01295748140668488,0.015936289082210144,0.018516471784701678,0.020635603736159934,0.022242732074113963,0.023299600775860938,0.02378155989064526,0.02367813850517202,0.022993268174411528, 0.021745152162181716,0.01996578454237594,0.01770013179802034,0.015004997811135755,0.01194760085978936,0.008603898241440104,0.005056700253527264,0.001393620335307468,-0.0022950879128633586,-0.005918753458577819, -0.009388515598962269,-0.012619502043745446,-0.015532903956532736,-0.018057897245600772,-0.02013336328872522,-0.02170936730991113, -0.022748358673196818,-0.02322606426917705,-0.023132053771873592,-0.02246996364890464,-0.021257375216423152,-0.0195253505349204,-0.017317638333743286,-0.014689570225327374,-0.011706675027270718,-0.008443045867156036,-0.00497950073477281,-0.0014015821240635268,0.0022025547471407753,0.005744313029523571,0.009136831200036187,0.012297112416656496, 0.01514805409293201,0.017620328084198004, 0.019654065658479634, 0.021200306322634314, 0.02222217546549378, 0.0226957625177727, 0.022610678745961104, 0.021970281710725268, 0.02079156163410272, 0.019104693231692664, 0.016952264771848306, 0.014388204022376175, 0.011476428143240118, 0.008289251300775069, 0.004905589651580713, 0.00140900823032221, -0.0021143419426140086, -0.005577845630634443, -0.008896551793144617, -0.011989256359865178, -0.014780488324228756, -0.017202350600789295, -0.019196170766077877, -0.02071392157053247, -0.021719376851525408, -0.022188975050966963, -0.022112369782274294, -0.02149265462138347, -0.020346257324130104, -0.01870250679997739, -0.016602884199987043, -0.014099977208244078, -0.011256163871514341, -0.008142058884927753, -0.004834761011787389, -0.00141594511359963, 0.0020301540135732573, 0.005418816247279273, 0.008666918116213984, 0.011694971002926942, 0.014429065614320767, 0.016802675173390316, 0.018758273358612965, 0.020248727662251685, 0.021238434439203365, 0.021704168334336447, 0.021635625849232957, 0.021035650363780307, 0.019920133777660724, 0.018317597888086602, 0.016268466477704344, 0.01382404665772478, 0.011045245110773818, 0.008001051332409439, 0.004766825622644666, 0.001422434292103143, -0.0019497217920851394, -0.005266736675474448, -0.008447236835180876, -0.011413376692503821, -0.014092743202077183, -0.01642012293775027, -0.018339088571549058, -0.01980336616917874, -0.020777950190207572, -0.02123993934715474, -0.02117907338963555, -0.02059795826643023, -0.019511974797451554, -0.017948873769948425, -0.015948068067589742, -0.01355963985860181, -0.010843087828347095, -0.00786584577273261, -0.004701609417503863, -0.0014285129602282405, 0.00187279956519293, 0.0051211605136237655, 0.008236873541285012, 0.01114366819302468, 0.01377056624452489, 0.01605361414717347, 0.017937439307072388, 0.019376592344255338, 0.02033664281309794, 0.020795001987215626, 0.020741453069891686, 0.020178376417009432, 0.019120664875185333, 0.0175953319581651, 0.01564082312223433, 0.013306047671493584, 0.010649155648402716, 0.00773609027735929, 0.004638951977968503, 0.0014342145178680122, -0.0017991625774623876, -0.004981678783586611, -0.008035246622244304, -0.010885106980669185, -0.013461658742705098, -0.015702157970090905, -0.01755224516773573, -0.018967263473787403, -0.01991333582598348, -0.02036817514037183, -0.020321608148466477, -0.019775800610678917, -0.018745178982852072, -0.017256051077630397, -0.015345935649716385, -0.013062617962545108, -0.0104629550890398, -0.0076114607973693975, -0.004578705225475791, -0.0014395690256405519, 0.0017286048456615758, 0.004847916090733413, 0.007841821882691563, 0.010637014475414253, 0.01316521556862294, 0.015364843522382056, 0.01718251272630553, 0.018574328632701375, 0.0195069470545439, 0.019958372181729127, 0.019918474237303377, 0.019389214619192453, 0.01838457358146651, 0.016930182824770386, 0.015062672608372978, 0.012828749988629842, 0.01028403135929919, 0.007491658457589216, 0.004520732260142814, 0.0014446035976513863, -0.0016609372410323162, -0.004719527247166793, -0.00765610780915488, -0.010398766080577401, -0.012880495440505985, -0.015040831963555533, -0.016827326947297685, -0.018196819649855207, -0.01911647936800561, -0.019564591711993963, -0.01953107026540971, -0.019017681600231897, -0.018037978681067334, -0.01661694486467684, -0.014790357804757985, -0.012603889433317896, -0.010111964640790455, -0.0073764071597169295, -0.004464906327954762, -0.0014493427413980271, 0.0015959858017241364, 0.004596194294233417, 0.007477651391260596, 0.010169785919654237, 0.012606814717344234, 0.01472934951240313, 0.01648584360424345, 0.017833843119877, 0.018741012486104755, 0.019185909362704312, 0.019158490483088687, 0.018660336494081123, 0.017704590811336143, 0.016315614540938817, 0.01452836648787009, 0.012387524007289036, 0.009946366789984437, 0.007265451454066335, 0.004411109900092095, 0.0014538086527928896, -0.0015335902438228164, -0.004477623870321846, -0.007306034424402164, -0.009949542177106122, -0.012343541903364506, -0.014429681259710532, -0.016157282560405096, -0.01748457332278261, -0.018379695715318146, -0.01882147052916997, -0.01879989736963453, -0.01831637927773816, -0.017383666783279565, -0.016025523291719142, -0.01427612054869527, -0.012179179539710703, -0.0097868784066856, -0.007158554645466938, -0.004359233850482814, -0.0014580214729518557, 0.001473602644254898, 0.004363544878129201, 0.0071408702303832885, 0.009737542963765855, 0.012090092769458544, 0.01414116567388682, 0.01584092180037047, 0.017148245933255975, 0.018031741493678068, 0.018470483910864078, 0.01845451532759405, 0.01798506896573736, 0.01707451814002669, 0.015746051681265503, 0.014033084247438328, 0.011978416497832857, 0.009633166222115746, 0.00705549710381825, 0.00430917671959886, 0.0014619995123083566, -0.0014158862728771305, -0.004253706412396606, -0.0069818007419346585, -0.009533332639218631, -0.011845926012245675, -0.013863189710639153, -0.015536092116421414, -0.016824152418719495, -0.01769641964107276, -0.018132215756499145, -0.018121625063668836, -0.01766571826299745, -0.016776506209538723, -0.015476624969149652, -0.013798760401989628, -0.011784826881051801, -0.009484920766687369, -0.006956074753967206, -0.004260844054152656, -0.0014657594467195533, 0.0013603145544175315, 0.004147875914810678, 0.006828493904860343, 0.009336488533302297, 0.011610539382894846, 0.013595184450611883, 0.015242172367376374, 0.016511635039784277, 0.017373052226689063, 0.01780598472570211, 0.01780055857058245, 0.017357688788491536, 0.01648903768441214, 0.015216709150542095, 0.013572686980568186, 0.01159803144326871, 0.009341854283142888, 0.006860097723097219, 0.004214147813740005, 0.0014693164894945697, -0.0013067701437440014, -0.0040458375275462, -0.006680641358166121, -0.009146618017093154, -0.0113834662274503, -0.01333662119966703, -0.014958585239220964, -0.016210082378840997, -0.01706100897767458, -0.017491157291565685, -0.01749069463624016, -0.017060386799887944, -0.016211560664404667, -0.014965807410119642, -0.013354434049408948, -0.011417677203762454, -0.009203698855466397, -0.006767389126796341, -0.004169005836659759, -0.0014726845426650819, 0.0012551441002949801, 0.003947390620945601, 0.0065379563580783735, 0.008963355880674225, 0.011164272388517736, 0.013087007995559244, 0.014684793446642131, 0.015918925332827495, 0.016759703163586936, 0.017187143618797848, 0.017191454816652803, 0.01677325935891348, 0.015943561106138794, 0.014723456940057058, 0.013143601033070898, 0.01124343521221113, 0.00907020472798412, 0.006677783977501164, 0.004125341358151963, 0.0014758763303122046, -0.001205335149493303, -0.003852348474225018, -0.006400171916557612, -0.00878636198084347, -0.010952553425031049, -0.012845886472440166, -0.014420296322880392, -0.015637633514912264, -0.01646858790008491, -0.016893393861042556, -0.016902299817695803, -0.01649579088533091, -0.01568455963193187, -0.014489226079229364, -0.012939814250640157, -0.011074998538095987, -0.008941138792478176, -0.006591128201166568, -0.004083082575162079, -0.0014789035163416356, 0.0011572490206432794, 0.003760537090971077, 0.006267039128891068, 0.00861531912689057, 0.010747932112644135, 0.012612829041148344, 0.014164626752362209, 0.015365712017225888, 0.016187152822868107, 0.01660939482846842, 0.016622726238085854, 0.016227500054346724, 0.015434108656074051, 0.014262711736419728, 0.01274272469594658, 0.010912080458641957, 0.008816283224044635, 0.006507277749850236, 0.004042162252482353, 0.0014817768087461913, -0.0011107978522340363, -0.0036717941336340152, -0.006138325668332858, -0.008449931176799973, -0.010550056192249302, -0.01238743634879343, -0.013917348406577077, -0.01510269849307102, -0.015914921089308, -0.016334666983135498, -0.016352263632192436, -0.015967936998171076, -0.015191789792313391, -0.014043537065175988, -0.012552006034062167, -0.010754412822790367, -0.008695434248910875, -0.0064260977994751774, -0.0040025173657611225, -0.0014845060520989296, 0.001065899656782016, 0.0035859679633027165, 0.0060138144286458195, 0.008289921319845869, 0.010358596338355043, 0.012169334985884152, 0.01367805324879071, 0.014848160522422897, 0.01565144667071293, 0.016068761725133097, 0.01609047185663239, 0.0157166807775033, 0.014957211510959738, 0.013831349362103413, 0.012367352789886227, 0.010601744571577303, 0.00857840102955967, 0.006347462023384735, 0.003964088777422741, 0.0014871003097710904, -0.0010224778383769964, -0.0035029167728239732, -0.005893302297866349, -0.008135030524631656, -0.010173244322677057, -0.011958175413308776, -0.013446359277576559, -0.014601693229142412, -0.015396311902883136, -0.01581125893718057, -0.0158369386691664, -0.01547333709304844, -0.014730007018010421, -0.013625818163939131, -0.012188478707671256, -0.010453840397743728, -0.008465004654331396, -0.006271251933469948, -0.0039268209420180444, -0.001489567937158992, 0.0009804607569779006, 0.0034225078028503587, 0.005776599048728849, 0.007985016134274239, 0.009993711351404286, 0.01175363008496115, 0.013221908482918276, 0.014362917122283454, 0.01514912526666108, 0.015561764759421884, 0.01559127755234534, 0.015237536210895197, 0.014509832332133389, 0.013426633521814398, 0.012015115262961428, 0.010310479529530386, 0.008355077220264368, 0.006197356281645716, 0.00389066163793881, 0.0014919166470259346, -0.0009397813342606426, -0.0033446166317085586, -0.005663526333004577, -0.007839650592711016, -0.009819726557275166, -0.011555391744804534, -0.0130043649918816, -0.01413147613728624, -0.014909519373670103, -0.015319909569623626, -0.015353125737739847, -0.015008931078796509, -0.014296364538302181, -0.013233504433751023, -0.011847010310674214, -0.010171454625439188, -0.008248460999282507, -0.006125670515331982, -0.003855561722788522, -0.0014941535679170478, 0.0009003766964703528, 0.0032691265311028126, 0.0055539167685768045, 0.007698720288068272, 0.00965103562990568, 0.0113631718797509, 0.012793413383655425, 0.013907035855790523, 0.014677149135446097, 0.015085346146991647, 0.015122142409512167, 0.014787195613167586, 0.014089300199438874, 0.013046157418718991, 0.01168392685501652, 0.010036570768324824, 0.00814500767903409, 0.006056096281334168, 0.0038214749100170414, 0.0014962852964667261, -0.0008621878502874215, -0.0031959278806493285, -0.0054476131094249956, -0.007562024500735143, -0.009487399569802346, -0.011176699311977477, -0.012588757156183593, -0.01368928188535334, -0.014451690096772446, -0.014857748000421564, -0.014898007068620149, -0.014572023139021235, -0.013888353909628899, -0.012864335217565165, -0.011525641928607123, -0.009905644548561236, -0.008044577670688067, -0.005988540973186719, -0.0037883575646898123, -0.001498317944330809, 0.0008251593882101772, 0.0031249176350564944, 0.005344467489871771, 0.007429374445238039, 0.009328593553228418, 0.01099571891622731, 0.01239011732871508, 0.013477918382556037, 0.014232836916291836, 0.014636807844256994, 0.014680418041143398, 0.014363124967141193, 0.01369325697440835, 0.012687795607829424, 0.011371945569670666, 0.009778503227204973, 0.007947039476913437, 0.005922917317570183, 0.0037561685165216764, 0.0015002571803482342, -0.0007892392203539142, -0.00305599883852761, -0.0052443407354430495, -0.007300592396315815, -0.009174405896575442, -0.010819990449348012, -0.012197231166414461, -0.01327266670491837, -0.014020301979428757, -0.01442223620659061, -0.014469091116130787, -0.014160229094615801, -0.013503756205283617, -0.012516310320976625, -0.011222639887424142, -0.009654983971142277, -0.007852269114008591, -0.005859142995939682, -0.0037248688884814903, -0.0015021082684972948, 0.0007543783299625474, 0.0029890801815565184, 0.005147101733607314, 0.007175510890671145, 0.00902463711022394, 0.010649287480762942, 0.012009851014782252, 0.013073264178693695, 0.01381381413037713, 0.014213760156853028, 0.014263758300036197, 0.013963079016428607, 0.013319612817118734, 0.012349664051856333, 0.01107753820692213, 0.009534933153084136, 0.007760149582860876, 0.005797140297899653, 0.0036944219394958186, 0.0015038761021002299, -0.0007205305502049192, -0.002924075595879741, -0.005052626858393404, -0.0070539719968784826, -0.008879099032985255, -0.010483396413877239, -0.011827743233000787, -0.01287946297109578, -0.013613117511392785, -0.014011122140930357, -0.014064166676264553, -0.013771432637189442, -0.013140601418286135, -0.012187653551363304, -0.010936464285577633, -0.00941820571009868, -0.007670570383973723, -0.005736835803278369, -0.00366479291990011, -0.001505565234712698, 0.0006876523601449177, 0.00286090388378893, 0.0049607994435985295, 0.006935826646738437, 0.008737614039244647, 0.01032211558951199, 0.01165068721655711, 0.012691029056767581, 0.013417970498948804, 0.01381407891335426, 0.013870077359622441, 0.01358506127329902, 0.012966509084608432, 0.01203008679424868, 0.010799251594458353, 0.009304664555034639, 0.007583427072353721, 0.005678160090151053, 0.0036359489384678225, 0.0015071799080418947, -0.0006557026979732587, -0.002799488378469224, -0.004871509299848556, -0.006820934022144984, -0.008600014311765478, -0.010165254463467898, -0.011478474500535086, -0.012507741269437883, -0.013228144727447802, -0.013622400557258236, -0.013681264536586484, -0.013403748736896341, -0.012797134509085466, -0.01187678221492805, -0.010665742658183706, -0.009194180035830985, -0.00749862084847184, -0.005621047466391402, -0.003607858839933144, -0.0015087240772337124, 0.0006246427898401269, 0.0027397566323579653, 0.004784652271327459, 0.0067091609921461235, 0.008466141173911168, 0.010012632851152684, 0.011310907935924272, 0.012329390430677602, 0.013043424192202443, 0.013435869583795883, 0.013497514583281578, 0.013227290493877985, 0.01263228722027037, 0.011727568004884567, 0.010535788447934154, 0.009086629438214764, 0.007416058181949052, 0.00556543572255255, 0.003580493092072516, 0.0015102014337905801, -0.0005944359927717659, -0.0026816401308817728, -0.00470012982840901, -0.0066003815954845954, -0.008335844475682933, -0.00986408023299002, -0.011147800932092089, -0.012155778548548051, -0.012863604424271008, -0.013254280103606731, -0.013318625253926769, -0.013055492889090718, -0.012471786862916317, -0.011582281465954499, -0.010409247822644397, -0.008981896527792336, -0.007335650464937203, -0.005511265904143077, -0.0035538236814692103, -0.0015116154263880575, 0.0005650476503559502, 0.002625074029175856, 0.004617848692860326, 0.006494476564373363, 0.008208982028594632, 0.009719435114967555, 0.01098897675931067, 0.011986718079678929, 0.012688491730525973, 0.013077437063691641, 0.013144404933265979, 0.012888172432530941, 0.012315462535176964, 0.01144076841438057, 0.010285987013979746, 0.008879871127927713, 0.007257313692511953, 0.005458482101529113, 0.0035278240172099684, 0.0015129692797900048, -0.0005364449599844065, -0.002569996909679064, -0.004537720492602471, -0.006391332885738158, -0.008085419084898076, -0.009578544439296014, -0.010834267905846674, -0.011822031249002064, -0.012517902493012715, -0.012905155543753462, -0.01297467194717528, -0.012725155141015774, -0.012163152177246664, -0.011302882631036643, -0.010165879151148737, -0.008780448730199682, -0.007180968167638807, -0.0054070312559075595, -0.003502468841801931, -0.0015142660120755424, 0.0005085968506047051, 0.002516350558681798, 0.004459661443360502, 0.006290843396517416, 0.007965027857164334, 0.009441263040645211, 0.010683515484707942, 0.011661549421945758, 0.012351662522275424, 0.012737260106664346, 0.012809253926231617, 0.012566275930364277, 0.012014702006836162, 0.011168485353712086, 0.01004880382199437, 0.008683530134531634, 0.007106538228550186, 0.005356862979918629, 0.0034777341487035773, 0.0015155084503307484, -0.00048147387000675127, -0.0024640797601373898, -0.004383592054774834, -0.006192906409989943, -0.007847687074605545, -0.0093074531439088, -0.010536568685619762, -0.011505112524436771, -0.012189606459857474, -0.012573584198265635, -0.01264798721755697, -0.012411378053621193, -0.011869965997356654, -0.011037444807740571, -0.009934646667183755, -0.008589021116394065, -0.00703395199656127, -0.005307929391640506, -0.0034535971058876984, -0.0015166992449763606, 0.00045504808080494644, 0.0024131321051841085, 0.0043094368588250075, 0.006097425370375175, 0.007733281572913899, 0.009176983899832552, 0.010393284268267678, 0.011352568506508866, 0.012031577225672833, 0.012413969592181787, 0.012490716340718397, 0.0122603125813083, 0.011728805395083586, 0.010909635771645183, 0.009823299004609742, 0.008496832118737259, 0.006963141142563334, 0.005260184960803945, 0.0034300359849442144, 0.0015178408828486465, -0.00042929296432670666, -0.0023634578160154794, -0.00423712415859844, -0.006004308533256249, -0.0076217019146873, -0.009049730955228595, -0.01025352609321708, -0.01120377284574724, -0.011877425506361262, -0.012258265875760156, -0.012337293483882128, -0.012112937920077005, -0.011591088271950845, -0.010784939174781327, -0.009714657481423113, -0.008406877966526699, -0.00689404067060509, -0.005213586366194846, -0.0034070300952478713, -0.00151893569917239, 0.0004041833317320204, 0.002315009582837331, 0.004166585795663758, 0.005913468669586753, 0.007512844037826396, 0.008925576054795938, 0.010117164687290837, 0.01105858808715264, 0.011727009281129073, 0.012106329973623976, 0.012187578036788896, 0.011969119366495626, 0.011456689110939219, 0.010663241724268918, 0.009608623751342376, 0.008319077601981749, 0.006826588717109863, 0.0051680923633116785, 0.0033845597227788226, 0.0015199858885156523, -0.0003796952417209309, -0.0022677424128073795, -0.004097756934445488, -0.005824822791289849, -0.007406608929514508, -0.008804406671879646, -0.00998407684047834, -0.010916883416353232, -0.011580193381905555, -0.01195802570566827, -0.01204143615744952, -0.011828728693012117, -0.011325488421326635, -0.010544435558748188, -0.009505104175134735, -0.008233353838774774, -0.006760726364439712, -0.005123663661415923, -0.003362606073222352, -0.0015209935148396514, 0.0003558059242827915, 0.002221613489926448, 0.004030575862183344, 0.005738291896619945, 0.007302902323647602, 0.008686115665733228, 0.009854145231748162, 0.010778534263371465, 0.011436849084956653, 0.01181322337662648, 0.011898740369753472, 0.01169164376342075, 0.011197372381315067, 0.010428417926743648, 0.009404009542339973, 0.008149633133637214, 0.006696397467611093, 0.00508026280922129, 0.003341151218990552, 0.0015219605207158697, -0.00033249370996061596, -0.0021765820449820453, -0.003964983803162525, -0.00565380073366025, -0.007201634419757122, -0.00857060096310209, -0.009727258081365882, -0.010643421934430644, -0.011296853731357609, -0.011671799394609888, -0.011759369189448235, -0.011557748175405612, -0.011072232505793696, -0.01031509088761188, -0.009305254812510079, -0.00806784537393949, -0.006633548493105717, -0.0050378540885072905, -0.00332017804986942, -0.0015228887357929956, 0.0003097379641832494, 0.002132609234697734, 0.0039009247460562724, 0.005571277580452986, 0.007102719621677949, 0.008457765262127215, 0.009603308827561241, 0.010511433269506563, 0.01116009037397745, 0.011533635916259543, 0.01162320677618236, 0.011426930927965387, 0.010949965337194096, 0.010204361033252212, 0.009208758874376458, 0.007987923679968019, 0.0065721283687898355, 0.004996403415038089, 0.003299670226990114, 0.0015237798845877746, -0.00028751902624220564, -0.0020896580293490383, -0.003838345283298632, -0.00549065404042726, -0.00700607629434954, -0.008347515756775607, -0.00948219582556923, -0.010382460323554851, -0.011026447448835167, -0.011398620516371472, -0.011490142609518077, -0.011299086111719097, -0.01083047215759177, -0.010096139228910174, -0.009114444321521939, -0.007909804220715057, -0.006512088344072049, -0.004955878246193867, -0.0032796121398813776, -0.0015246355936486423, 0.00026581815252941317, 0.0020476931081573504, 0.0037771944615355283, 0.005411864851883404, 0.006911626537311458, 0.00823976388014558, 0.009363822067268227, 0.010256400069519504, 0.010895818468891231, 0.011266645880046446, 0.0113600711870085, 0.011174112620279932, 0.010713658720364531, 0.009990340371570247, 0.009022237243243287, 0.007833426042127466, 0.00645338185948109, 0.004916247494804226, 0.0032599888663503917, 0.0015254573981639328, -0.0002446174637050831, -0.002006680761836088, -0.0037174236422587853, -0.0053348477104333165, -0.006819295973559219, -0.00813442506516627, -0.009248094919780498, -0.010133154121412417, -0.010768101738503401, -0.011137609515594709, -0.011232891742606404, -0.01105191388104099, -0.010599434999880308, -0.009886883164553559, -0.008932067029426978, -0.0077587309068310635, -0.006395964424944249, -0.004877481448689318, -0.003240786134992019, -0.0015262467480482893, 0.00022389989546712193, 0.001966588801736915, 0.0036589863718344637, 0.005259543103367455, 0.006729013552570935, 0.00803141852132107, 0.009134925881564053, 0.010012628475892515, 0.010643200086942263, 0.011011413486579361, 0.011108507983824576, 0.010932397603869465, 0.010487714957811752, 0.009785689907073791, 0.008843866188345628, 0.007685663144457024, 0.00633979350608419, 0.0048395516954862485, 0.0032219902901132642, 0.0015270050135687122, -0.00020364915265412223, -0.0019273864750659596, -0.0036018382601906906, -0.00518589415503449, -0.006640711366395806, -0.007930667026167472, -0.009024230354636906, -0.009894733270925042, -0.01052102061949433, -0.01088796416152825, -0.01098682784620731, -0.010815475546331858, -0.01037841632480821, -0.009686686297598708, -0.008757570176396957, -0.007614169511750057, -0.006284828417937068, -0.004802431052346535, -0.003203588258907899, -0.0015277334905348747, 0.00018384966640662659, 0.0018890443857169051, 0.0035459368674946967, 0.00511384648238484, 0.006554324477814246, 0.007832096730511445, 0.00891592743171094, 0.0097793825602118, 0.010401474484817446, 0.01076717197996795, 0.010867763263796957, 0.01070106329419811, 0.010271460396355445, 0.009589801249979152, 0.008673117238872902, 0.007544199061731474, 0.0062310302255206415, 0.004766093500153822, 0.0031855675207004695, 0.0015284334051064155, -0.00016448655416644695, -0.0018515344202770054, -0.003491241598222934, -0.0050433480599028115, -0.006469790759651679, -0.007735636976214574, -0.008809939697100646, -0.009666494102209426, -0.010284476657319522, -0.010648951233553383, -0.01075122995439325, -0.010589080056074333, -0.01016677184176389, -0.009494966721381806, -0.008590448260943039, -0.0074757030212299624, -0.006178361650754986, -0.004730514121913109, -0.0031679160781232906, -0.0015291059182347367, 0.00014554558228247226, 0.0018148296788304194, 0.0034377136020542084, 0.004974349093233294, 0.006387050744406665, 0.00764122012567864, 0.008706193040386213, 0.009555989162640333, 0.010169945733445008, 0.010533219861166827, 0.010637147218504657, 0.01047944847111701, 0.010064278525306006, 0.009402117551157869, 0.008509506628087186, 0.007408634676172836, 0.006126786985255266, 0.004695669045019289, 0.0031506224300722734, 0.00152975212978499, -0.00012701313104154568, -0.0017789044101855964, -0.0033853156810923096, -0.0049068019008445575, -0.006306047483438199, -0.007548781402151541, -0.008604616481879815, -0.009447792329506606, -0.010057803740838872, -0.010419899256959096, -0.010525437750984275, -0.010372094428864201, -0.00996391133861546, -0.009311191309838516, -0.008430238095294144, -0.007342949264059696, -0.0060762720085808086, -0.004661535387110025, -0.0031336755463287234, -0.001530373082350148, 0.0001088761619285668, 0.0017437339512144095, 0.00333401220293789, 0.004840660803149927, 0.006226726414999595, 0.007458258740058715, 0.008505142009038258, 0.009341831339686926, 0.009947975959452496, 0.010308914090387096, 0.010416027464426008, 0.010266946900304674, 0.00986560404352474, 0.009222128157529003, 0.008352590664382306, 0.007278603873109481, 0.006026783911534547, 0.004628091205258873, 0.0031170648437149825, 0.001530969764797153, -0.00009112218696606803, -0.0017092946699876987, -0.003283769019197351, -0.004775882018532973, -0.006149035240488571, -0.0073695926446301525, -0.008407704423026918, -0.009238036916283918, -0.009840390753724568, -0.010200192137384127, -0.010308845323473495, -0.010163937779373152, -0.009769293124595185, -0.009134870711019328, -0.008276514468868288, -0.007215557347592569, -0.0059782912241642, -0.004595315448258029, -0.00310078016369045, -0.001531543115552564, 0.0000737392399667339, 0.001675563912446815, 0.0032345533890227388, 0.004712423565792373, 0.0060729238083116685, 0.00728272606016411, 0.008312241194704922, 0.009136342615950489, 0.009734979415048518, 0.010093664121865643, 0.010203823189262884, 0.010063001734130994, 0.00967491765064457, 0.009049363918998405, 0.008201961665838864, 0.007153770198919874, 0.005930763748120867, 0.0045631879117862895, 0.0030848117512741317, 0.00153209402566305, -0.000056715849575066915, -0.001642519952343532, -0.0031863339073372196, -0.004650245172536397, -0.005998344004833064, -0.007197604246304405, -0.008218692329369866, -0.009036684685486062, -0.009631676013797021, -0.009989263566841785, -0.01010089567328384, -0.009964076066946442, -0.009582419144642727, -0.008965554944794535, -0.008128886334342557, -0.007093204522074692, -0.005884172493081779, -0.004531689196248325, -0.0030691502352163075, -0.0015326233416345881, 0.000040041013955833456, 0.001610141944230643, 0.003139080437401436, 0.004589308189120179, 0.005925249651897664, 0.007114174661777941, 0.00812700023963896, 0.008939001927057518, 0.009530417260232635, 0.00988692665446217, 0.01],"x":[-100.0,-99.95002498750625,-99.9000499750125,-99.85007496251875,-99.80009995002499,-99.75012493753124,-99.70014992503748,-99.65017491254373,-99.60019990004997,-99.55022488755623,-99.50024987506247,-99.45027486256872,-99.40029985007496,-99.35032483758121,-99.30034982508745,-99.2503748125937,-99.20039980009994,-99.1504247876062,-99.10044977511244,-99.05047476261869,-99.00049975012493,-98.95052473763118,-98.90054972513744,-98.85057471264368,-98.80059970014993,-98.75062468765617,-98.70064967516242,-98.65067466266866,-98.60069965017492,-98.55072463768116,-98.50074962518741,-98.45077461269365,-98.4007996001999,-98.35082458770614,-98.3008495752124,-98.25087456271864,-98.20089955022489,-98.15092453773113,-98.10094952523738,-98.05097451274362,-98.00099950024988,-97.95102448775611,-97.90104947526237,-97.85107446276862,-97.80109945027486,-97.75112443778112,-97.70114942528735,-97.65117441279361,-97.60119940029985,-97.5512243878061,-97.50124937531234,-97.4512743628186,-97.40129935032483,-97.35132433783109,-97.30134932533733,-97.25137431284358,-97.20139930034982,-97.15142428785607,-97.10144927536231,-97.05147426286857,-97.0014992503748,-96.95152423788106,-96.90154922538731,-96.85157421289355,-96.8015992003998,-96.75162418790605,-96.7016491754123,-96.65167416291854,-96.60169915042479,-96.55172413793103,-96.50174912543729,-96.45177411294353,-96.40179910044978,-96.35182408795602,-96.30184907546227,-96.25187406296851,-96.20189905047476,-96.151924037981,-96.10194902548726,-96.0519740129935,-96.00199900049975,-95.95202398800599,-95.90204897551224,-95.8520739630185,-95.80209895052474,-95.75212393803099,-95.70214892553723,-95.65217391304348,-95.60219890054972,-95.55222388805598,-95.50224887556222,-95.45227386306847,-95.40229885057471,-95.35232383808096,-95.3023488255872,-95.25237381309346,-95.2023988005997,-95.15242378810595,-95.10244877561219,-95.05247376311844,-95.00249875062468,-94.95252373813094,-94.90254872563717,-94.85257371314343,-94.80259870064968,-94.75262368815592,-94.70264867566218,-94.65267366316841,-94.60269865067467,-94.55272363818091,-94.50274862568716,-94.4527736131934,-94.40279860069965,-94.3528235882059,-94.30284857571215,-94.25287356321839,-94.20289855072464,-94.15292353823088,-94.10294852573713,-94.05297351324337,-94.00299850074963,-93.95302348825587,-93.90304847576212,-93.85307346326836,-93.80309845077461,-93.75312343828087,-93.7031484257871,-93.65317341329336,-93.6031984007996,-93.55322338830585,-93.50324837581209,-93.45327336331835,-93.40329835082458,-93.35332333833084,-93.30334832583708,-93.25337331334333,-93.20339830084957,-93.15342328835582,-93.10344827586206,-93.05347326336832,-93.00349825087456,-92.95352323838081,-92.90354822588705,-92.8535732133933,-92.80359820089954,-92.7536231884058,-92.70364817591205,-92.65367316341829,-92.60369815092454,-92.55372313843078,-92.50374812593704,-92.45377311344328,-92.40379810094953,-92.35382308845577,-92.30384807596202,-92.25387306346826,-92.20389805097452,-92.15392303848076,-92.10394802598701,-92.05397301349325,-92.0039980009995,-91.95402298850574,-91.904047976012,-91.85407296351823,-91.80409795102449,-91.75412293853073,-91.70414792603698,-91.65417291354323,-91.60419790104947,-91.55422288855573,-91.50424787606197,-91.45427286356822,-91.40429785107446,-91.35432283858071,-91.30434782608695,-91.2543728135932,-91.20439780109945,-91.1544227886057,-91.10444777611194,-91.0544727636182,-91.00449775112443,-90.95452273863069,-90.90454772613693,-90.85457271364318,-90.80459770114942,-90.75462268865567,-90.70464767616193,-90.65467266366817,-90.60469765117442,-90.55472263868066,-90.50474762618691,-90.45477261369315,-90.4047976011994,-90.35482258870564,-90.3048475762119,-90.25487256371814,-90.20489755122439,-90.15492253873063,-90.10494752623688,-90.05497251374312,-90.00499750124938,-89.95502248875562,-89.90504747626187,-89.85507246376811,-89.80509745127436,-89.7551224387806,-89.70514742628686,-89.65517241379311,-89.60519740129935,-89.5552223888056,-89.50524737631184,-89.4552723638181,-89.40529735132434,-89.35532233883059,-89.30534732633683,-89.25537231384308,-89.20539730134932,-89.15542228885558,-89.10544727636182,-89.05547226386807,-89.00549725137431,-88.95552223888056,-88.9055472263868,-88.85557221389305,-88.8055972013993,-88.75562218890555,-88.70564717641179,-88.65567216391804,-88.6056971514243,-88.55572213893053,-88.50574712643679,-88.45577211394303,-88.40579710144928,-88.35582208895552,-88.30584707646177,-88.25587206396801,-88.20589705147427,-88.1559220389805,-88.10594702648676,-88.055972013993,-88.00599700149925,-87.95602198900549,-87.90604697651175,-87.85607196401799,-87.80609695152424,-87.75612193903048,-87.70614692653673,-87.65617191404297,-87.60619690154923,-87.55622188905548,-87.50624687656172,-87.45627186406797,-87.40629685157421,-87.35632183908046,-87.3063468265867,-87.25637181409296,-87.2063968015992,-87.15642178910545,-87.10644677661169,-87.05647176411794,-87.00649675162418,-86.95652173913044,-86.90654672663668,-86.85657171414293,-86.80659670164917,-86.75662168915542,-86.70664667666166,-86.65667166416792,-86.60669665167416,-86.55672163918041,-86.50674662668666,-86.4567716141929,-86.40679660169916,-86.3568215892054,-86.30684657671165,-86.25687156421789,-86.20689655172414,-86.15692153923038,-86.10694652673664,-86.05697151424287,-86.00699650174913,-85.95702148925537,-85.90704647676162,-85.85707146426786,-85.80709645177411,-85.75712143928035,-85.70714642678661,-85.65717141429285,-85.6071964017991,-85.55722138930535,-85.5072463768116,-85.45727136431785,-85.40729635182409,-85.35732133933034,-85.30734632683658,-85.25737131434283,-85.20739630184907,-85.15742128935533,-85.10744627686157,-85.05747126436782,-85.00749625187406,-84.95752123938031,-84.90754622688655,-84.8575712143928,-84.80759620189905,-84.7576211894053,-84.70764617691154,-84.65767116441779,-84.60769615192403,-84.55772113943029,-84.50774612693654,-84.45777111444278,-84.40779610194903,-84.35782108945527,-84.30784607696152,-84.25787106446776,-84.20789605197402,-84.15792103948026,-84.10794602698651,-84.05797101449275,-84.007996001999,-83.95802098950524,-83.9080459770115,-83.85807096451774,-83.80809595202399,-83.75812093953023,-83.70814592703648,-83.65817091454272,-83.60819590204898,-83.55822088955522,-83.50824587706147,-83.45827086456772,-83.40829585207396,-83.35832083958022,-83.30834582708646,-83.25837081459271,-83.20839580209895,-83.1584207896052,-83.10844577711144,-83.0584707646177,-83.00849575212393,-82.95852073963019,-82.90854572713643,-82.85857071464268,-82.80859570214892,-82.75862068965517,-82.70864567716141,-82.65867066466767,-82.6086956521739,-82.55872063968016,-82.5087456271864,-82.45877061469265,-82.40879560219891,-82.35882058970515,-82.3088455772114,-82.25887056471764,-82.2088955522239,-82.15892053973013,-82.10894552723639,-82.05897051474263,-82.00899550224888,-81.95902048975512,-81.90904547726137,-81.85907046476761,-81.80909545227387,-81.7591204397801,-81.70914542728636,-81.6591704147926,-81.60919540229885,-81.55922038980509,-81.50924537731134,-81.45927036481758,-81.40929535232384,-81.35932033983009,-81.30934532733633,-81.25937031484258,-81.20939530234882,-81.15942028985508,-81.10944527736132,-81.05947026486757,-81.00949525237381,-80.95952023988006,-80.9095452273863,-80.85957021489256,-80.8095952023988,-80.75962018990505,-80.70964517741129,-80.65967016491754,-80.60969515242378,-80.55972013993004,-80.50974512743628,-80.45977011494253,-80.40979510244878,-80.35982008995502,-80.30984507746128,-80.25987006496752,-80.20989505247377,-80.15992003998001,-80.10994502748626,-80.0599700149925,-80.00999500249875,-79.960019990005,-79.91004497751125,-79.86006996501749,-79.81009495252374,-79.76011994002998,-79.71014492753623,-79.66016991504247,-79.61019490254873,-79.56021989005497,-79.51024487756122,-79.46026986506746,-79.41029485257371,-79.36031984007997,-79.3103448275862,-79.26036981509246,-79.2103948025987,-79.16041979010495,-79.11044477761119,-79.06046976511745,-79.01049475262369,-78.96051974012994,-78.91054472763618,-78.86056971514243,-78.81059470264867,-78.76061969015493,-78.71064467766116,-78.66066966516742,-78.61069465267366,-78.56071964017991,-78.51074462768615,-78.4607696151924,-78.41079460269864,-78.3608195902049,-78.31084457771115,-78.26086956521739,-78.21089455272364,-78.16091954022988,-78.11094452773614,-78.06096951524238,-78.01099450274863,-77.96101949025487,-77.91104447776112,-77.86106946526736,-77.81109445277362,-77.76111944027986,-77.71114442778611,-77.66116941529235,-77.6111944027986,-77.56121939030484,-77.5112443778111,-77.46126936531734,-77.41129435282359,-77.36131934032983,-77.31134432783608,-77.26136931534234,-77.21139430284857,-77.16141929035483,-77.11144427786107,-77.06146926536732,-77.01149425287356,-76.96151924037981,-76.91154422788605,-76.86156921539231,-76.81159420289855,-76.7616191904048,-76.71164417791104,-76.6616691654173,-76.61169415292353,-76.56171914042979,-76.51174412793603,-76.46176911544228,-76.41179410294852,-76.36181909045477,-76.31184407796101,-76.26186906546727,-76.21189405297352,-76.16191904047976,-76.11194402798601,-76.06196901549225,-76.0119940029985,-75.96201899050475,-75.912043978011,-75.86206896551724,-75.81209395302349,-75.76211894052973,-75.71214392803599,-75.66216891554222,-75.61219390304848,-75.56221889055472,-75.51224387806097,-75.46226886556721,-75.41229385307346,-75.3623188405797,-75.31234382808596,-75.2623688155922,-75.21239380309845,-75.1624187906047,-75.11244377811094,-75.0624687656172,-75.01249375312344,-74.96251874062969,-74.91254372813593,-74.86256871564218,-74.81259370314842,-74.76261869065468,-74.71264367816092,-74.66266866566717,-74.61269365317341,-74.56271864067966,-74.5127436281859,-74.46276861569216,-74.4127936031984,-74.36281859070465,-74.31284357821089,-74.26286856571714,-74.2128935532234,-74.16291854072963,-74.11294352823589,-74.06296851574213,-74.01299350324838,-73.96301849075462,-73.91304347826087,-73.86306846576711,-73.81309345327337,-73.7631184407796,-73.71314342828586,-73.6631684157921,-73.61319340329835,-73.5632183908046,-73.51324337831085,-73.46326836581709,-73.41329335332334,-73.36331834082958,-73.31334332833583,-73.26336831584207,-73.21339330334833,-73.16341829085458,-73.11344327836082,-73.06346826586707,-73.01349325337331,-72.96351824087957,-72.9135432283858,-72.86356821589206,-72.8135932033983,-72.76361819090455,-72.71364317841079,-72.66366816591704,-72.61369315342328,-72.56371814092954,-72.51374312843578,-72.46376811594203,-72.41379310344827,-72.36381809095452,-72.31384307846076,-72.26386806596702,-72.21389305347326,-72.16391804097951,-72.11394302848576,-72.063968015992,-72.01399300349826,-71.9640179910045,-71.91404297851075,-71.86406796601699,-71.81409295352324,-71.76411794102948,-71.71414292853574,-71.66416791604198,-71.61419290354823,-71.56421789105447,-71.51424287856072,-71.46426786606696,-71.41429285357322,-71.36431784107945,-71.31434282858571,-71.26436781609195,-71.2143928035982,-71.16441779110444,-71.1144427786107,-71.06446776611695,-71.01449275362319,-70.96451774112944,-70.91454272863568,-70.86456771614193,-70.81459270364817,-70.76461769115443,-70.71464267866067,-70.66466766616692,-70.61469265367316,-70.56471764117941,-70.51474262868565,-70.4647676161919,-70.41479260369815,-70.3648175912044,-70.31484257871064,-70.26486756621689,-70.21489255372313,-70.16491754122939,-70.11494252873563,-70.06496751624188,-70.01499250374813,-69.96501749125437,-69.91504247876063,-69.86506746626686,-69.81509245377312,-69.76511744127936,-69.71514242878561,-69.66516741629185,-69.6151924037981,-69.56521739130434,-69.5152423788106,-69.46526736631684,-69.41529235382309,-69.36531734132933,-69.31534232883558,-69.26536731634182,-69.21539230384808,-69.16541729135432,-69.11544227886057,-69.06546726636682,-69.01549225387306,-68.96551724137932,-68.91554222888556,-68.86556721639181,-68.81559220389805,-68.7656171914043,-68.71564217891054,-68.6656671664168,-68.61569215392304,-68.56571714142929,-68.51574212893553,-68.46576711644178,-68.41579210394802,-68.36581709145428,-68.31584207896051,-68.26586706646677,-68.21589205397301,-68.16591704147926,-68.1159420289855,-68.06596701649175,-68.01599200399801,-67.96601699150425,-67.9160419790105,-67.86606696651674,-67.816091954023,-67.76611694152923,-67.71614192903549,-67.66616691654173,-67.61619190404798,-67.56621689155422,-67.51624187906047,-67.46626686656671,-67.41629185407297,-67.3663168415792,-67.31634182908546,-67.2663668165917,-67.21639180409795,-67.16641679160419,-67.11644177911045,-67.06646676661668,-67.01649175412294,-66.96651674162919,-66.91654172913543,-66.86656671664169,-66.81659170414792,-66.76661669165418,-66.71664167916042,-66.66666666666667,-66.61669165417291,-66.56671664167916,-66.5167416291854,-66.46676661669166,-66.4167916041979,-66.36681659170415,-66.31684157921039,-66.26686656671664,-66.21689155422288,-66.16691654172914,-66.11694152923538,-66.06696651674163,-66.01699150424787,-65.96701649175412,-65.91704147926038,-65.86706646676662,-65.81709145427287,-65.76711644177911,-65.71714142928536,-65.6671664167916,-65.61719140429786,-65.5672163918041,-65.51724137931035,-65.46726636681659,-65.41729135432284,-65.36731634182908,-65.31734132933533,-65.26736631684157,-65.21739130434783,-65.16741629185407,-65.11744127936032,-65.06746626686656,-65.01749125437281,-64.96751624187905,-64.91754122938531,-64.86756621689156,-64.8175912043978,-64.76761619190405,-64.7176411794103,-64.66766616691655,-64.61769115442279,-64.56771614192904,-64.51774112943528,-64.46776611694153,-64.41779110444777,-64.36781609195403,-64.31784107946027,-64.26786606696652,-64.21789105447276,-64.16791604197901,-64.11794102948525,-64.0679660169915,-64.01799100449774,-63.968015992004,-63.918040979510245,-63.86806596701649,-63.81809095452274,-63.768115942028984,-63.71814092953523,-63.66816591704148,-63.618190904547724,-63.56821589205397,-63.51824087956022,-63.468265867066464,-63.41829085457271,-63.368315842078964,-63.31834082958521,-63.26836581709146,-63.2183908045977,-63.16841579210395,-63.1184407796102,-63.06846576711644,-63.01849075462269,-62.968515742128936,-62.91854072963518,-62.86856571714143,-62.818590704647676,-62.76861569215392,-62.71864067966017,-62.668665667166415,-62.61869065467266,-62.56871564217891,-62.518740629685155,-62.4687656171914,-62.41879060469765,-62.3688155922039,-62.31884057971015,-62.268865567216395,-62.21889055472264,-62.16891554222889,-62.118940529735134,-62.06896551724138,-62.01899050474763,-61.969015492253874,-61.91904047976012,-61.86906546726637,-61.81909045477261,-61.76911544227886,-61.71914042978511,-61.66916541729135,-61.6191904047976,-61.569215392303846,-61.51924037981009,-61.46926536731634,-61.419290354822586,-61.36931534232883,-61.319340329835086,-61.26936531734133,-61.21939030484758,-61.169415292353825,-61.11944027986007,-61.06946526736632,-61.019490254872565,-60.96951524237881,-60.91954022988506,-60.869565217391305,-60.81959020489755,-60.7696151924038,-60.719640179910044,-60.66966516741629,-60.61969015492254,-60.569715142428784,-60.51974012993503,-60.46976511744128,-60.41979010494752,-60.36981509245377,-60.31984007996002,-60.26986506746627,-60.21989005497252,-60.16991504247876,-60.11994002998501,-60.069965017491256,-60.0199900049975,-59.97001499250375,-59.920039980009996,-59.87006496751624,-59.82008995502249,-59.770114942528735,-59.72013993003498,-59.67016491754123,-59.620189905047475,-59.57021489255372,-59.52023988005997,-59.470264867566215,-59.42028985507246,-59.37031484257871,-59.320339830084954,-59.27036481759121,-59.220389805097454,-59.1704147926037,-59.12043978010995,-59.070464767616194,-59.02048975512244,-58.97051474262869,-58.920539730134934,-58.87056471764118,-58.82058970514743,-58.77061469265367,-58.72063968015992,-58.670664667666166,-58.62068965517241,-58.57071464267866,-58.520739630184906,-58.47076461769115,-58.4207896051974,-58.370814592703645,-58.32083958020989,-58.27086456771614,-58.22088955522239,-58.17091454272864,-58.120939530234885,-58.07096451774113,-58.02098950524738,-57.971014492753625,-57.92103948025987,-57.87106446776612,-57.821089455272364,-57.77111444277861,-57.72113943028486,-57.671164417791104,-57.62118940529735,-57.5712143928036,-57.521239380309844,-57.47126436781609,-57.42128935532234,-57.37131434282858,-57.32133933033483,-57.271364317841076,-57.22138930534732,-57.17141429285358,-57.12143928035982,-57.07146426786607,-57.021489255372316,-56.97151424287856,-56.92153923038481,-56.871564217891056,-56.8215892053973,-56.77161419290355,-56.721639180409795,-56.67166416791604,-56.62168915542229,-56.571714142928535,-56.52173913043478,-56.47176411794103,-56.421789105447274,-56.37181409295352,-56.32183908045977,-56.271864067966014,-56.22188905547226,-56.171914042978514,-56.12193903048476,-56.07196401799101,-56.021989005497254,-55.9720139930035,-55.92203898050975,-55.87206396801599,-55.82208895552224,-55.77211394302849,-55.72213893053473,-55.67216391804098,-55.622188905547226,-55.57221389305347,-55.52223888055972,-55.472263868065966,-55.42228885557221,-55.37231384307846,-55.322338830584705,-55.27236381809095,-55.2223888055972,-55.172413793103445,-55.1224387806097,-55.072463768115945,-55.02248875562219,-54.97251374312844,-54.922538730634685,-54.87256371814093,-54.82258870564718,-54.772613693153424,-54.72263868065967,-54.67266366816592,-54.622688655672164,-54.57271364317841,-54.52273863068466,-54.4727636181909,-54.42278860569715,-54.3728135932034,-54.32283858070964,-54.27286356821589,-54.222888555722136,-54.17291354322838,-54.122938530734636,-54.07296351824088,-54.02298850574713,-53.973013493253376,-53.92303848075962,-53.87306346826587,-53.823088455772115,-53.77311344327836,-53.72313843078461,-53.673163418290855,-53.6231884057971,-53.57321339330335,-53.523238380809595,-53.47326336831584,-53.42328835582209,-53.373313343328334,-53.32333833083458,-53.27336331834083,-53.223388305847074,-53.17341329335332,-53.12343828085957,-53.07346326836582,-53.02348825587207,-52.973513243378314,-52.92353823088456,-52.87356321839081,-52.82358820589705,-52.7736131934033,-52.723638180909546,-52.67366316841579,-52.62368815592204,-52.573713143428286,-52.52373813093453,-52.47376311844078,-52.423788105947025,-52.37381309345327,-52.32383808095952,-52.273863068465765,-52.22388805597201,-52.17391304347826,-52.123938030984505,-52.07396301849075,-52.023988005997005,-51.97401299350325,-51.9240379810095,-51.874062968515744,-51.82408795602199,-51.77411294352824,-51.724137931034484,-51.67416291854073,-51.62418790604698,-51.574212893553224,-51.52423788105947,-51.47426286856572,-51.42428785607196,-51.37431284357821,-51.324337831084456,-51.2743628185907,-51.22438780609695,-51.174412793603196,-51.12443778110944,-51.07446276861569,-51.02448775612194,-50.97451274362819,-50.924537731134436,-50.87456271864068,-50.82458770614693,-50.774612693653175,-50.72463768115942,-50.67466266866567,-50.624687656171915,-50.57471264367816,-50.52473763118441,-50.474762618690654,-50.4247876061969,-50.37481259370315,-50.324837581209394,-50.27486256871564,-50.22488755622189,-50.174912543728134,-50.12493753123438,-50.07496251874063,-50.02498750624687,-49.97501249375313,-49.92503748125937,-49.87506246876562,-49.825087456271866,-49.77511244377811,-49.72513743128436,-49.675162418790606,-49.62518740629685,-49.5752123938031,-49.525237381309346,-49.47526236881559,-49.42528735632184,-49.375312343828085,-49.32533733133433,-49.27536231884058,-49.225387306346825,-49.17541229385307,-49.12543728135932,-49.075462268865564,-49.02548725637181,-48.97551224387806,-48.92553723138431,-48.87556221889056,-48.825587206396804,-48.77561219390305,-48.7256371814093,-48.675662168915544,-48.62568715642179,-48.57571214392804,-48.52573713143428,-48.47576211894053,-48.425787106446776,-48.37581209395302,-48.32583708145927,-48.275862068965516,-48.22588705647176,-48.17591204397801,-48.125937031484256,-48.0759620189905,-48.02598700649675,-47.976011994002995,-47.92603698150925,-47.876061969015495,-47.82608695652174,-47.77611194402799,-47.726136931534235,-47.67616191904048,-47.62618690654673,-47.576211894052975,-47.52623688155922,-47.47626186906547,-47.426286856571714,-47.37631184407796,-47.32633683158421,-47.276361819090454,-47.2263868065967,-47.17641179410295,-47.12643678160919,-47.07646176911544,-47.026486756621686,-46.97651174412793,-46.92653673163418,-46.87656171914043,-46.82658670664668,-46.776611694152926,-46.72663668165917,-46.67666166916542,-46.626686656671666,-46.57671164417791,-46.52673663168416,-46.476761619190405,-46.42678660669665,-46.3768115942029,-46.326836581709145,-46.27686156921539,-46.22688655672164,-46.176911544227885,-46.12693653173413,-46.07696151924038,-46.026986506746624,-45.97701149425287,-45.92703648175912,-45.877061469265364,-45.82708645677162,-45.777111444277864,-45.72713643178411,-45.67716141929036,-45.6271864067966,-45.57721139430285,-45.5272363818091,-45.47726136931534,-45.42728635682159,-45.377311344327836,-45.32733633183408,-45.27736131934033,-45.227386306846576,-45.17741129435282,-45.12743628185907,-45.077461269365315,-45.02748625687156,-44.97751124437781,-44.927536231884055,-44.8775612193903,-44.827586206896555,-44.7776111944028,-44.72763618190905,-44.677661169415295,-44.62768615692154,-44.57771114442779,-44.527736131934034,-44.47776111944028,-44.42778610694653,-44.377811094452774,-44.32783608195902,-44.27786106946527,-44.22788605697151,-44.17791104447776,-44.12793603198401,-44.07796101949025,-44.0279860069965,-43.978010994502746,-43.92803598200899,-43.87806096951524,-43.828085957021486,-43.77811094452774,-43.728135932033986,-43.67816091954023,-43.62818590704648,-43.578210894552726,-43.52823588205897,-43.47826086956522,-43.428285857071465,-43.37831084457771,-43.32833583208396,-43.278360819590205,-43.22838580709645,-43.1784107946027,-43.128435782108944,-43.07846076961519,-43.02848575712144,-42.978510744627684,-42.92853573213393,-42.87856071964018,-42.82858570714642,-42.77861069465268,-42.728635682158924,-42.67866066966517,-42.62868565717142,-42.57871064467766,-42.52873563218391,-42.478760619690156,-42.4287856071964,-42.37881059470265,-42.328835582208896,-42.27886056971514,-42.22888555722139,-42.178910544727636,-42.12893553223388,-42.07896051974013,-42.028985507246375,-41.97901049475262,-41.92903548225887,-41.879060469765115,-41.82908545727136,-41.77911044477761,-41.72913543228386,-41.67916041979011,-41.629185407296355,-41.5792103948026,-41.52923538230885,-41.479260369815094,-41.42928535732134,-41.37931034482759,-41.329335332333834,-41.27936031984008,-41.22938530734633,-41.17941029485257,-41.12943528235882,-41.079460269865066,-41.02948525737131,-40.97951024487756,-40.929535232383806,-40.87956021989005,-40.8295852073963,-40.779610194902546,-40.72963518240879,-40.679660169915046,-40.62968515742129,-40.57971014492754,-40.529735132433785,-40.47976011994003,-40.42978510744628,-40.379810094952525,-40.32983508245877,-40.27986006996502,-40.229885057471265,-40.17991004497751,-40.12993503248376,-40.079960019990004,-40.02998500749625,-39.9800099950025,-39.930034982508744,-39.88005997001499,-39.83008495752124,-39.78010994502748,-39.73013493253373,-39.68015992003998,-39.63018490754623,-39.58020989505248,-39.53023488255872,-39.48025987006497,-39.430284857571216,-39.38030984507746,-39.33033483258371,-39.280359820089956,-39.2303848075962,-39.18040979510245,-39.130434782608695,-39.08045977011494,-39.03048475762119,-38.980509745127435,-38.93053473263368,-38.88055972013993,-38.830584707646175,-38.78060969515242,-38.73063468265867,-38.680659670164914,-38.63068465767117,-38.580709645177414,-38.53073463268366,-38.48075962018991,-38.430784607696154,-38.3808095952024,-38.33083458270865,-38.28085957021489,-38.23088455772114,-38.18090954522739,-38.13093453273363,-38.08095952023988,-38.030984507746126,-37.98100949525237,-37.93103448275862,-37.881059470264866,-37.83108445777111,-37.78110944527736,-37.731134432783605,-37.68115942028985,-37.6311844077961,-37.58120939530235,-37.5312343828086,-37.481259370314845,-37.43128435782109,-37.38130934532734,-37.331334332833585,-37.28135932033983,-37.23138430784608,-37.181409295352324,-37.13143428285857,-37.08145927036482,-37.031484257871064,-36.98150924537731,-36.93153423288356,-36.8815592203898,-36.83158420789605,-36.7816091954023,-36.73163418290854,-36.68165917041479,-36.631684157921036,-36.58170914542729,-36.531734132933536,-36.48175912043978,-36.43178410794603,-36.381809095452276,-36.33183408295852,-36.28185907046477,-36.231884057971016,-36.18190904547726,-36.13193403298351,-36.081959020489755,-36.031984007996,-35.98200899550225,-35.932033983008495,-35.88205897051474,-35.83208395802099,-35.782108945527234,-35.73213393303348,-35.68215892053973,-35.632183908045974,-35.58220889555222,-35.532233883058474,-35.48225887056472,-35.43228385807097,-35.382308845577214,-35.33233383308346,-35.28235882058971,-35.23238380809595,-35.1824087956022,-35.132433783108446,-35.08245877061469,-35.03248375812094,-34.982508745627186,-34.93253373313343,-34.88255872063968,-34.832583708145926,-34.78260869565217,-34.73263368315842,-34.682658670664665,-34.63268365817091,-34.58270864567716,-34.53273363318341,-34.48275862068966,-34.432783608195905,-34.38280859570215,-34.3328335832084,-34.282858570714644,-34.23288355822089,-34.18290854572714,-34.132933533233384,-34.08295852073963,-34.03298350824588,-33.983008495752124,-33.93303348325837,-33.88305847076462,-33.83308345827086,-33.78310844577711,-33.733133433283356,-33.6831584207896,-33.63318340829585,-33.583208395802096,-33.53323338330834,-33.483258370814596,-33.43328335832084,-33.38330834582709,-33.333333333333336,-33.28335832083958,-33.23338330834583,-33.183408295852075,-33.13343328335832,-33.08345827086457,-33.033483258370815,-32.98350824587706,-32.93353323338331,-32.883558220889554,-32.8335832083958,-32.78360819590205,-32.733633183408294,-32.68365817091454,-32.63368315842079,-32.583708145927034,-32.53373313343328,-32.48375812093953,-32.43378310844578,-32.38380809595203,-32.33383308345827,-32.28385807096452,-32.23388305847077,-32.18390804597701,-32.13393303348326,-32.083958020989506,-32.03398300849575,-31.984007996002,-31.934032983508246,-31.884057971014492,-31.83408295852074,-31.784107946026985,-31.734132933533232,-31.684157921039482,-31.63418290854573,-31.584207896051975,-31.53423288355822,-31.484257871064468,-31.434282858570715,-31.38430784607696,-31.334332833583208,-31.284357821089454,-31.2343828085957,-31.18440779610195,-31.134432783608197,-31.084457771114444,-31.03448275862069,-30.984507746126937,-30.934532733633183,-30.88455772113943,-30.834582708645677,-30.784607696151923,-30.73463268365817,-30.684657671164416,-30.634682658670666,-30.584707646176913,-30.53473263368316,-30.484757621189406,-30.434782608695652,-30.3848075962019,-30.334832583708145,-30.284857571214392,-30.23488255872064,-30.184907546226885,-30.134932533733135,-30.08495752123938,-30.034982508745628,-29.985007496251875,-29.93503248375812,-29.885057471264368,-29.835082458770614,-29.78510744627686,-29.735132433783107,-29.685157421289354,-29.635182408795604,-29.58520739630185,-29.535232383808097,-29.485257371314344,-29.43528235882059,-29.385307346326837,-29.335332333833083,-29.28535732133933,-29.235382308845576,-29.185407296351823,-29.13543228385807,-29.08545727136432,-29.035482258870566,-28.985507246376812,-28.93553223388306,-28.885557221389305,-28.835582208895552,-28.7856071964018,-28.735632183908045,-28.68565717141429,-28.635682158920538,-28.58570714642679,-28.535732133933035,-28.48575712143928,-28.435782108945528,-28.385807096451774,-28.33583208395802,-28.285857071464267,-28.235882058970514,-28.18590704647676,-28.135932033983007,-28.085957021489257,-28.035982008995504,-27.98600699650175,-27.936031984007997,-27.886056971514243,-27.83608195902049,-27.786106946526736,-27.736131934032983,-27.68615692153923,-27.636181909045476,-27.586206896551722,-27.536231884057973,-27.48625687156422,-27.436281859070466,-27.386306846576712,-27.33633183408296,-27.286356821589205,-27.23638180909545,-27.1864067966017,-27.136431784107945,-27.08645677161419,-27.03648175912044,-26.986506746626688,-26.936531734132934,-26.88655672163918,-26.836581709145428,-26.786606696651674,-26.73663168415792,-26.686656671664167,-26.636681659170414,-26.58670664667666,-26.53673163418291,-26.486756621689157,-26.436781609195403,-26.38680659670165,-26.336831584207896,-26.286856571714143,-26.23688155922039,-26.186906546726636,-26.136931534232883,-26.08695652173913,-26.036981509245376,-25.987006496751626,-25.937031484257872,-25.88705647176412,-25.837081459270365,-25.787106446776612,-25.73713143428286,-25.687156421789105,-25.63718140929535,-25.587206396801598,-25.537231384307844,-25.487256371814095,-25.43728135932034,-25.387306346826588,-25.337331334332834,-25.28735632183908,-25.237381309345327,-25.187406296851574,-25.13743128435782,-25.087456271864067,-25.037481259370313,-24.987506246876563,-24.93753123438281,-24.887556221889056,-24.837581209395303,-24.78760619690155,-24.737631184407796,-24.687656171914043,-24.63768115942029,-24.587706146926536,-24.537731134432782,-24.48775612193903,-24.43778110944528,-24.387806096951525,-24.337831084457772,-24.28785607196402,-24.237881059470265,-24.18790604697651,-24.137931034482758,-24.087956021989005,-24.03798100949525,-23.988005997001498,-23.938030984507748,-23.888055972013994,-23.83808095952024,-23.788105947026487,-23.738130934532734,-23.68815592203898,-23.638180909545227,-23.588205897051473,-23.53823088455772,-23.488255872063966,-23.438280859570217,-23.388305847076463,-23.33833083458271,-23.288355822088956,-23.238380809595203,-23.18840579710145,-23.138430784607696,-23.088455772113942,-23.03848075962019,-22.988505747126435,-22.938530734632682,-22.888555722138932,-22.83858070964518,-22.788605697151425,-22.73863068465767,-22.688655672163918,-22.638680659670165,-22.58870564717641,-22.538730634682658,-22.488755622188904,-22.43878060969515,-22.3888055972014,-22.338830584707647,-22.288855572213894,-22.23888055972014,-22.188905547226387,-22.138930534732634,-22.08895552223888,-22.038980509745127,-21.989005497251373,-21.93903048475762,-21.88905547226387,-21.839080459770116,-21.789105447276363,-21.73913043478261,-21.689155422288856,-21.639180409795102,-21.58920539730135,-21.539230384807595,-21.489255372313842,-21.43928035982009,-21.38930534732634,-21.339330334832585,-21.28935532233883,-21.239380309845078,-21.189405297351325,-21.13943028485757,-21.089455272363818,-21.039480259870064,-20.98950524737631,-20.939530234882557,-20.889555222388804,-20.839580209895054,-20.7896051974013,-20.739630184907547,-20.689655172413794,-20.63968015992004,-20.589705147426287,-20.539730134932533,-20.48975512243878,-20.439780109945026,-20.389805097451273,-20.339830084957523,-20.28985507246377,-20.239880059970016,-20.189905047476262,-20.13993003498251,-20.089955022488756,-20.039980009995002,-19.99000499750125,-19.940029985007495,-19.89005497251374,-19.84007996001999,-19.79010494752624,-19.740129935032485,-19.69015492253873,-19.640179910044978,-19.590204897551224,-19.54022988505747,-19.490254872563717,-19.440279860069964,-19.39030484757621,-19.340329835082457,-19.290354822588707,-19.240379810094954,-19.1904047976012,-19.140429785107447,-19.090454772613693,-19.04047976011994,-18.990504747626186,-18.940529735132433,-18.89055472263868,-18.840579710144926,-18.790604697651176,-18.740629685157423,-18.69065467266367,-18.640679660169916,-18.590704647676162,-18.54072963518241,-18.490754622688655,-18.4407796101949,-18.39080459770115,-18.340829585207395,-18.290854572713645,-18.24087956021989,-18.190904547726138,-18.140929535232384,-18.09095452273863,-18.040979510244878,-17.991004497751124,-17.94102948525737,-17.891054472763617,-17.841079460269864,-17.79110444777611,-17.74112943528236,-17.691154422788607,-17.641179410294853,-17.5912043978011,-17.541229385307346,-17.491254372813593,-17.44127936031984,-17.391304347826086,-17.341329335332333,-17.29135432283858,-17.24137931034483,-17.191404297851076,-17.141429285357322,-17.09145427286357,-17.041479260369815,-16.991504247876062,-16.94152923538231,-16.891554222888555,-16.8415792103948,-16.791604197901048,-16.741629185407298,-16.691654172913545,-16.64167916041979,-16.591704147926038,-16.541729135432284,-16.49175412293853,-16.441779110444777,-16.391804097951024,-16.34182908545727,-16.291854072963517,-16.241879060469763,-16.191904047976013,-16.14192903548226,-16.091954022988507,-16.041979010494753,-15.992003998001,-15.942028985507246,-15.892053973013493,-15.842078960519741,-15.792103948025987,-15.742128935532234,-15.69215392303848,-15.642178910544727,-15.592203898050975,-15.542228885557222,-15.492253873063468,-15.442278860569715,-15.392303848075962,-15.342328835582208,-15.292353823088456,-15.242378810594703,-15.19240379810095,-15.142428785607196,-15.092453773113442,-15.04247876061969,-14.992503748125937,-14.942528735632184,-14.89255372313843,-14.842578710644677,-14.792603698150925,-14.742628685657172,-14.692653673163418,-14.642678660669665,-14.592703648175911,-14.54272863568216,-14.492753623188406,-14.442778610694653,-14.3928035982009,-14.342828585707146,-14.292853573213394,-14.24287856071964,-14.192903548225887,-14.142928535732134,-14.09295352323838,-14.042978510744629,-13.993003498250875,-13.943028485757122,-13.893053473263368,-13.843078460769615,-13.793103448275861,-13.74312843578211,-13.693153423288356,-13.643178410794603,-13.59320339830085,-13.543228385807096,-13.493253373313344,-13.44327836081959,-13.393303348325837,-13.343328335832084,-13.29335332333833,-13.243378310844578,-13.193403298350825,-13.143428285857071,-13.093453273363318,-13.043478260869565,-12.993503248375813,-12.94352823588206,-12.893553223388306,-12.843578210894552,-12.793603198400799,-12.743628185907047,-12.693653173413294,-12.64367816091954,-12.593703148425787,-12.543728135932033,-12.493753123438282,-12.443778110944528,-12.393803098450775,-12.343828085957021,-12.293853073463268,-12.243878060969514,-12.193903048475763,-12.14392803598201,-12.093953023488256,-12.043978010994502,-11.994002998500749,-11.944027986006997,-11.894052973513244,-11.84407796101949,-11.794102948525737,-11.744127936031983,-11.694152923538232,-11.644177911044478,-11.594202898550725,-11.544227886056971,-11.494252873563218,-11.444277861069466,-11.394302848575713,-11.344327836081959,-11.294352823588206,-11.244377811094452,-11.1944027986007,-11.144427786106947,-11.094452773613193,-11.04447776111944,-10.994502748625687,-10.944527736131935,-10.894552723638181,-10.844577711144428,-10.794602698650674,-10.744627686156921,-10.69465267366317,-10.644677661169416,-10.594702648675662,-10.544727636181909,-10.494752623688155,-10.444777611194402,-10.39480259870065,-10.344827586206897,-10.294852573713143,-10.24487756121939,-10.194902548725636,-10.144927536231885,-10.094952523738131,-10.044977511244378,-9.995002498750624,-9.94502748625687,-9.89505247376312,-9.845077461269366,-9.795102448775612,-9.745127436281859,-9.695152423788105,-9.645177411294354,-9.5952023988006,-9.545227386306847,-9.495252373813093,-9.44527736131934,-9.395302348825588,-9.345327336331835,-9.295352323838081,-9.245377311344328,-9.195402298850574,-9.145427286356822,-9.095452273863069,-9.045477261369316,-8.995502248875562,-8.945527236381809,-8.895552223888055,-8.845577211394303,-8.79560219890055,-8.745627186406796,-8.695652173913043,-8.64567716141929,-8.595702148925538,-8.545727136431784,-8.495752123938031,-8.445777111444277,-8.395802098950524,-8.345827086456772,-8.295852073963019,-8.245877061469265,-8.195902048975512,-8.145927036481758,-8.095952023988007,-8.045977011494253,-7.9960019990005,-7.946026986506746,-7.896051974012994,-7.84607696151924,-7.796101949025488,-7.746126936531734,-7.696151924037981,-7.646176911544228,-7.596201899050475,-7.546226886556721,-7.496251874062969,-7.446276861569215,-7.396301849075463,-7.346326836581709,-7.296351824087956,-7.246376811594203,-7.19640179910045,-7.146426786606697,-7.096451774112944,-7.04647676161919,-6.9965017491254375,-6.946526736631684,-6.896551724137931,-6.846576711644178,-6.796601699150425,-6.746626686656672,-6.6966516741629185,-6.646676661669165,-6.5967016491754125,-6.546726636681659,-6.496751624187906,-6.446776611694153,-6.3968015992003995,-6.346826586706647,-6.296851574212893,-6.246876561719141,-6.196901549225387,-6.146926536731634,-6.096951524237881,-6.046976511744128,-5.997001499250374,-5.947026486756622,-5.897051474262868,-5.847076461769116,-5.797101449275362,-5.747126436781609,-5.697151424287856,-5.647176411794103,-5.59720139930035,-5.547226386806597,-5.497251374312843,-5.447276361819091,-5.397301349325337,-5.347326336831585,-5.297351324337831,-5.247376311844078,-5.197401299350325,-5.147426286856572,-5.097451274362818,-5.047476261869066,-4.997501249375312,-4.94752623688156,-4.897551224387806,-4.847576211894053,-4.7976011994003,-4.747626186906547,-4.697651174412794,-4.6476761619190405,-4.597701149425287,-4.5477261369315345,-4.497751124437781,-4.4477761119440276,-4.397801099450275,-4.3478260869565215,-4.297851074462769,-4.2478760619690155,-4.197901049475262,-4.147926036981509,-4.097951024487756,-4.047976011994003,-3.99800099950025,-3.948025987006497,-3.898050974512744,-3.8480759620189904,-3.7981009495252374,-3.7481259370314843,-3.6981509245377313,-3.648175912043978,-3.598200899550225,-3.548225887056472,-3.4982508745627188,-3.4482758620689653,-3.3983008495752123,-3.3483258370814593,-3.2983508245877062,-3.248375812093953,-3.1984007996001997,-3.1484257871064467,-3.0984507746126937,-3.0484757621189407,-2.998500749625187,-2.948525737131434,-2.898550724637681,-2.848575712143928,-2.798600699650175,-2.7486256871564216,-2.6986506746626686,-2.6486756621689156,-2.5987006496751626,-2.548725637181409,-2.498750624687656,-2.448775612193903,-2.39880059970015,-2.348825587206397,-2.2988505747126435,-2.2488755622188905,-2.1989005497251375,-2.1489255372313845,-2.098950524737631,-2.048975512243878,-1.999000499750125,-1.949025487256372,-1.8990504747626187,-1.8490754622688657,-1.7991004497751124,-1.7491254372813594,-1.6991504247876061,-1.6491754122938531,-1.5992003998000999,-1.5492253873063468,-1.4992503748125936,-1.4492753623188406,-1.3993003498250876,-1.3493253373313343,-1.2993503248375813,-1.249375312343828,-1.199400299850075,-1.1494252873563218,-1.0994502748625687,-1.0494752623688155,-0.9995002498750625,-0.9495252373813093,-0.8995502248875562,-0.8495752123938031,-0.7996001999000499,-0.7496251874062968,-0.6996501749125438,-0.6496751624187906,-0.5997001499250375,-0.5497251374312844,-0.49975012493753124,-0.4497751124437781,-0.39980009995002497,-0.3498250874562719,-0.29985007496251875,-0.24987506246876562,-0.19990004997501248,-0.14992503748125938,-0.09995002498750624,-0.04997501249375312,0.0,0.04997501249375312,0.09995002498750624,0.14992503748125938,0.19990004997501248,0.24987506246876562,0.29985007496251875,0.3498250874562719,0.39980009995002497,0.4497751124437781,0.49975012493753124,0.5497251374312844,0.5997001499250375,0.6496751624187906,0.6996501749125438,0.7496251874062968,0.7996001999000499,0.8495752123938031,0.8995502248875562,0.9495252373813093,0.9995002498750625,1.0494752623688155,1.0994502748625687,1.1494252873563218,1.199400299850075,1.249375312343828,1.2993503248375813,1.3493253373313343,1.3993003498250876,1.4492753623188406,1.4992503748125936,1.5492253873063468,1.5992003998000999,1.6491754122938531,1.6991504247876061,1.7491254372813594,1.7991004497751124,1.8490754622688657,1.8990504747626187,1.949025487256372,1.999000499750125,2.048975512243878,2.098950524737631,2.1489255372313845,2.1989005497251375,2.2488755622188905,2.2988505747126435,2.348825587206397,2.39880059970015,2.448775612193903,2.498750624687656,2.548725637181409,2.5987006496751626,2.6486756621689156,2.6986506746626686,2.7486256871564216,2.798600699650175,2.848575712143928,2.898550724637681,2.948525737131434,2.998500749625187,3.0484757621189407,3.0984507746126937,3.1484257871064467,3.1984007996001997,3.248375812093953,3.2983508245877062,3.3483258370814593,3.3983008495752123,3.4482758620689653,3.4982508745627188,3.548225887056472,3.598200899550225,3.648175912043978,3.6981509245377313,3.7481259370314843,3.7981009495252374,3.8480759620189904,3.898050974512744,3.948025987006497,3.99800099950025,4.047976011994003,4.097951024487756,4.147926036981509,4.197901049475262,4.2478760619690155,4.297851074462769,4.3478260869565215,4.397801099450275,4.4477761119440276,4.497751124437781,4.5477261369315345,4.597701149425287,4.6476761619190405,4.697651174412794,4.747626186906547,4.7976011994003,4.847576211894053,4.897551224387806,4.94752623688156,4.997501249375312,5.047476261869066,5.097451274362818,5.147426286856572,5.197401299350325,5.247376311844078,5.297351324337831,5.347326336831585,5.397301349325337,5.447276361819091,5.497251374312843,5.547226386806597,5.59720139930035,5.647176411794103,5.697151424287856,5.747126436781609,5.797101449275362,5.847076461769116,5.897051474262868,5.947026486756622,5.997001499250374,6.046976511744128,6.096951524237881,6.146926536731634,6.196901549225387,6.246876561719141,6.296851574212893,6.346826586706647,6.3968015992003995,6.446776611694153,6.496751624187906,6.546726636681659,6.5967016491754125,6.646676661669165,6.6966516741629185,6.746626686656672,6.796601699150425,6.846576711644178,6.896551724137931,6.946526736631684,6.9965017491254375,7.04647676161919,7.096451774112944,7.146426786606697,7.19640179910045,7.246376811594203,7.296351824087956,7.346326836581709,7.396301849075463,7.446276861569215,7.496251874062969,7.546226886556721,7.596201899050475,7.646176911544228,7.696151924037981,7.746126936531734,7.796101949025488,7.84607696151924,7.896051974012994,7.946026986506746,7.9960019990005,8.045977011494253,8.095952023988007,8.145927036481758,8.195902048975512,8.245877061469265,8.295852073963019,8.345827086456772,8.395802098950524,8.445777111444277,8.495752123938031,8.545727136431784,8.595702148925538,8.64567716141929,8.695652173913043,8.745627186406796,8.79560219890055,8.845577211394303,8.895552223888055,8.945527236381809,8.995502248875562,9.045477261369316,9.095452273863069,9.145427286356822,9.195402298850574,9.245377311344328,9.295352323838081,9.345327336331835,9.395302348825588,9.44527736131934,9.495252373813093,9.545227386306847,9.5952023988006,9.645177411294354,9.695152423788105,9.745127436281859,9.795102448775612,9.845077461269366,9.89505247376312,9.94502748625687,9.995002498750624,10.044977511244378,10.094952523738131,10.144927536231885,10.194902548725636,10.24487756121939,10.294852573713143,10.344827586206897,10.39480259870065,10.444777611194402,10.494752623688155,10.544727636181909,10.594702648675662,10.644677661169416,10.69465267366317,10.744627686156921,10.794602698650674,10.844577711144428,10.894552723638181,10.944527736131935,10.994502748625687,11.04447776111944,11.094452773613193,11.144427786106947,11.1944027986007,11.244377811094452,11.294352823588206,11.344327836081959,11.394302848575713,11.444277861069466,11.494252873563218,11.544227886056971,11.594202898550725,11.644177911044478,11.694152923538232,11.744127936031983,11.794102948525737,11.84407796101949,11.894052973513244,11.944027986006997,11.994002998500749,12.043978010994502,12.093953023488256,12.14392803598201,12.193903048475763,12.243878060969514,12.293853073463268,12.343828085957021,12.393803098450775,12.443778110944528,12.493753123438282,12.543728135932033,12.593703148425787,12.64367816091954,12.693653173413294,12.743628185907047,12.793603198400799,12.843578210894552,12.893553223388306,12.94352823588206,12.993503248375813,13.043478260869565,13.093453273363318,13.143428285857071,13.193403298350825,13.243378310844578,13.29335332333833,13.343328335832084,13.393303348325837,13.44327836081959,13.493253373313344,13.543228385807096,13.59320339830085,13.643178410794603,13.693153423288356,13.74312843578211,13.793103448275861,13.843078460769615,13.893053473263368,13.943028485757122,13.993003498250875,14.042978510744629,14.09295352323838,14.142928535732134,14.192903548225887,14.24287856071964,14.292853573213394,14.342828585707146,14.3928035982009,14.442778610694653,14.492753623188406,14.54272863568216,14.592703648175911,14.642678660669665,14.692653673163418,14.742628685657172,14.792603698150925,14.842578710644677,14.89255372313843,14.942528735632184,14.992503748125937,15.04247876061969,15.092453773113442,15.142428785607196,15.19240379810095,15.242378810594703,15.292353823088456,15.342328835582208,15.392303848075962,15.442278860569715,15.492253873063468,15.542228885557222,15.592203898050975,15.642178910544727,15.69215392303848,15.742128935532234,15.792103948025987,15.842078960519741,15.892053973013493,15.942028985507246,15.992003998001,16.041979010494753,16.091954022988507,16.14192903548226,16.191904047976013,16.241879060469763,16.291854072963517,16.34182908545727,16.391804097951024,16.441779110444777,16.49175412293853,16.541729135432284,16.591704147926038,16.64167916041979,16.691654172913545,16.741629185407298,16.791604197901048,16.8415792103948,16.891554222888555,16.94152923538231,16.991504247876062,17.041479260369815,17.09145427286357,17.141429285357322,17.191404297851076,17.24137931034483,17.29135432283858,17.341329335332333,17.391304347826086,17.44127936031984,17.491254372813593,17.541229385307346,17.5912043978011,17.641179410294853,17.691154422788607,17.74112943528236,17.79110444777611,17.841079460269864,17.891054472763617,17.94102948525737,17.991004497751124,18.040979510244878,18.09095452273863,18.140929535232384,18.190904547726138,18.24087956021989,18.290854572713645,18.340829585207395,18.39080459770115,18.4407796101949,18.490754622688655,18.54072963518241,18.590704647676162,18.640679660169916,18.69065467266367,18.740629685157423,18.790604697651176,18.840579710144926,18.89055472263868,18.940529735132433,18.990504747626186,19.04047976011994,19.090454772613693,19.140429785107447,19.1904047976012,19.240379810094954,19.290354822588707,19.340329835082457,19.39030484757621,19.440279860069964,19.490254872563717,19.54022988505747,19.590204897551224,19.640179910044978,19.69015492253873,19.740129935032485,19.79010494752624,19.84007996001999,19.89005497251374,19.940029985007495,19.99000499750125,20.039980009995002,20.089955022488756,20.13993003498251,20.189905047476262,20.239880059970016,20.28985507246377,20.339830084957523,20.389805097451273,20.439780109945026,20.48975512243878,20.539730134932533,20.589705147426287,20.63968015992004,20.689655172413794,20.739630184907547,20.7896051974013,20.839580209895054,20.889555222388804,20.939530234882557,20.98950524737631,21.039480259870064,21.089455272363818,21.13943028485757,21.189405297351325,21.239380309845078,21.28935532233883,21.339330334832585,21.38930534732634,21.43928035982009,21.489255372313842,21.539230384807595,21.58920539730135,21.639180409795102,21.689155422288856,21.73913043478261,21.789105447276363,21.839080459770116,21.88905547226387,21.93903048475762,21.989005497251373,22.038980509745127,22.08895552223888,22.138930534732634,22.188905547226387,22.23888055972014,22.288855572213894,22.338830584707647,22.3888055972014,22.43878060969515,22.488755622188904,22.538730634682658,22.58870564717641,22.638680659670165,22.688655672163918,22.73863068465767,22.788605697151425,22.83858070964518,22.888555722138932,22.938530734632682,22.988505747126435,23.03848075962019,23.088455772113942,23.138430784607696,23.18840579710145,23.238380809595203,23.288355822088956,23.33833083458271,23.388305847076463,23.438280859570217,23.488255872063966,23.53823088455772,23.588205897051473,23.638180909545227,23.68815592203898,23.738130934532734,23.788105947026487,23.83808095952024,23.888055972013994,23.938030984507748,23.988005997001498,24.03798100949525,24.087956021989005,24.137931034482758,24.18790604697651,24.237881059470265,24.28785607196402,24.337831084457772,24.387806096951525,24.43778110944528,24.48775612193903,24.537731134432782,24.587706146926536,24.63768115942029,24.687656171914043,24.737631184407796,24.78760619690155,24.837581209395303,24.887556221889056,24.93753123438281,24.987506246876563,25.037481259370313,25.087456271864067,25.13743128435782,25.187406296851574,25.237381309345327,25.28735632183908,25.337331334332834,25.387306346826588,25.43728135932034,25.487256371814095,25.537231384307844,25.587206396801598,25.63718140929535,25.687156421789105,25.73713143428286,25.787106446776612,25.837081459270365,25.88705647176412,25.937031484257872,25.987006496751626,26.036981509245376,26.08695652173913,26.136931534232883,26.186906546726636,26.23688155922039,26.286856571714143,26.336831584207896,26.38680659670165,26.436781609195403,26.486756621689157,26.53673163418291,26.58670664667666,26.636681659170414,26.686656671664167,26.73663168415792,26.786606696651674,26.836581709145428,26.88655672163918,26.936531734132934,26.986506746626688,27.03648175912044,27.08645677161419,27.136431784107945,27.1864067966017,27.23638180909545,27.286356821589205,27.33633183408296,27.386306846576712,27.436281859070466,27.48625687156422,27.536231884057973,27.586206896551722,27.636181909045476,27.68615692153923,27.736131934032983,27.786106946526736,27.83608195902049,27.886056971514243,27.936031984007997,27.98600699650175,28.035982008995504,28.085957021489257,28.135932033983007,28.18590704647676,28.235882058970514,28.285857071464267,28.33583208395802,28.385807096451774,28.435782108945528,28.48575712143928,28.535732133933035,28.58570714642679,28.635682158920538,28.68565717141429,28.735632183908045,28.7856071964018,28.835582208895552,28.885557221389305,28.93553223388306,28.985507246376812,29.035482258870566,29.08545727136432,29.13543228385807,29.185407296351823,29.235382308845576,29.28535732133933,29.335332333833083,29.385307346326837,29.43528235882059,29.485257371314344,29.535232383808097,29.58520739630185,29.635182408795604,29.685157421289354,29.735132433783107,29.78510744627686,29.835082458770614,29.885057471264368,29.93503248375812,29.985007496251875,30.034982508745628,30.08495752123938,30.134932533733135,30.184907546226885,30.23488255872064,30.284857571214392,30.334832583708145,30.3848075962019,30.434782608695652,30.484757621189406,30.53473263368316,30.584707646176913,30.634682658670666,30.684657671164416,30.73463268365817,30.784607696151923,30.834582708645677,30.88455772113943,30.934532733633183,30.984507746126937,31.03448275862069,31.084457771114444,31.134432783608197,31.18440779610195,31.2343828085957,31.284357821089454,31.334332833583208,31.38430784607696,31.434282858570715,31.484257871064468,31.53423288355822,31.584207896051975,31.63418290854573,31.684157921039482,31.734132933533232,31.784107946026985,31.83408295852074,31.884057971014492,31.934032983508246,31.984007996002,32.03398300849575,32.083958020989506,32.13393303348326,32.18390804597701,32.23388305847077,32.28385807096452,32.33383308345827,32.38380809595203,32.43378310844578,32.48375812093953,32.53373313343328,32.583708145927034,32.63368315842079,32.68365817091454,32.733633183408294,32.78360819590205,32.8335832083958,32.883558220889554,32.93353323338331,32.98350824587706,33.033483258370815,33.08345827086457,33.13343328335832,33.183408295852075,33.23338330834583,33.28335832083958,33.333333333333336,33.38330834582709,33.43328335832084,33.483258370814596,33.53323338330834,33.583208395802096,33.63318340829585,33.6831584207896,33.733133433283356,33.78310844577711,33.83308345827086,33.88305847076462,33.93303348325837,33.983008495752124,34.03298350824588,34.08295852073963,34.132933533233384,34.18290854572714,34.23288355822089,34.282858570714644,34.3328335832084,34.38280859570215,34.432783608195905,34.48275862068966,34.53273363318341,34.58270864567716,34.63268365817091,34.682658670664665,34.73263368315842,34.78260869565217,34.832583708145926,34.88255872063968,34.93253373313343,34.982508745627186,35.03248375812094,35.08245877061469,35.132433783108446,35.1824087956022,35.23238380809595,35.28235882058971,35.33233383308346,35.382308845577214,35.43228385807097,35.48225887056472,35.532233883058474,35.58220889555222,35.632183908045974,35.68215892053973,35.73213393303348,35.782108945527234,35.83208395802099,35.88205897051474,35.932033983008495,35.98200899550225,36.031984007996,36.081959020489755,36.13193403298351,36.18190904547726,36.231884057971016,36.28185907046477,36.33183408295852,36.381809095452276,36.43178410794603,36.48175912043978,36.531734132933536,36.58170914542729,36.631684157921036,36.68165917041479,36.73163418290854,36.7816091954023,36.83158420789605,36.8815592203898,36.93153423288356,36.98150924537731,37.031484257871064,37.08145927036482,37.13143428285857,37.181409295352324,37.23138430784608,37.28135932033983,37.331334332833585,37.38130934532734,37.43128435782109,37.481259370314845,37.5312343828086,37.58120939530235,37.6311844077961,37.68115942028985,37.731134432783605,37.78110944527736,37.83108445777111,37.881059470264866,37.93103448275862,37.98100949525237,38.030984507746126,38.08095952023988,38.13093453273363,38.18090954522739,38.23088455772114,38.28085957021489,38.33083458270865,38.3808095952024,38.430784607696154,38.48075962018991,38.53073463268366,38.580709645177414,38.63068465767117,38.680659670164914,38.73063468265867,38.78060969515242,38.830584707646175,38.88055972013993,38.93053473263368,38.980509745127435,39.03048475762119,39.08045977011494,39.130434782608695,39.18040979510245,39.2303848075962,39.280359820089956,39.33033483258371,39.38030984507746,39.430284857571216,39.48025987006497,39.53023488255872,39.58020989505248,39.63018490754623,39.68015992003998,39.73013493253373,39.78010994502748,39.83008495752124,39.88005997001499,39.930034982508744,39.9800099950025,40.02998500749625,40.079960019990004,40.12993503248376,40.17991004497751,40.229885057471265,40.27986006996502,40.32983508245877,40.379810094952525,40.42978510744628,40.47976011994003,40.529735132433785,40.57971014492754,40.62968515742129,40.679660169915046,40.72963518240879,40.779610194902546,40.8295852073963,40.87956021989005,40.929535232383806,40.97951024487756,41.02948525737131,41.079460269865066,41.12943528235882,41.17941029485257,41.22938530734633,41.27936031984008,41.329335332333834,41.37931034482759,41.42928535732134,41.479260369815094,41.52923538230885,41.5792103948026,41.629185407296355,41.67916041979011,41.72913543228386,41.77911044477761,41.82908545727136,41.879060469765115,41.92903548225887,41.97901049475262,42.028985507246375,42.07896051974013,42.12893553223388,42.178910544727636,42.22888555722139,42.27886056971514,42.328835582208896,42.37881059470265,42.4287856071964,42.478760619690156,42.52873563218391,42.57871064467766,42.62868565717142,42.67866066966517,42.728635682158924,42.77861069465268,42.82858570714642,42.87856071964018,42.92853573213393,42.978510744627684,43.02848575712144,43.07846076961519,43.128435782108944,43.1784107946027,43.22838580709645,43.278360819590205,43.32833583208396,43.37831084457771,43.428285857071465,43.47826086956522,43.52823588205897,43.578210894552726,43.62818590704648,43.67816091954023,43.728135932033986,43.77811094452774,43.828085957021486,43.87806096951524,43.92803598200899,43.978010994502746,44.0279860069965,44.07796101949025,44.12793603198401,44.17791104447776,44.22788605697151,44.27786106946527,44.32783608195902,44.377811094452774,44.42778610694653,44.47776111944028,44.527736131934034,44.57771114442779,44.62768615692154,44.677661169415295,44.72763618190905,44.7776111944028,44.827586206896555,44.8775612193903,44.927536231884055,44.97751124437781,45.02748625687156,45.077461269365315,45.12743628185907,45.17741129435282,45.227386306846576,45.27736131934033,45.32733633183408,45.377311344327836,45.42728635682159,45.47726136931534,45.5272363818091,45.57721139430285,45.6271864067966,45.67716141929036,45.72713643178411,45.777111444277864,45.82708645677162,45.877061469265364,45.92703648175912,45.97701149425287,46.026986506746624,46.07696151924038,46.12693653173413,46.176911544227885,46.22688655672164,46.27686156921539,46.326836581709145,46.3768115942029,46.42678660669665,46.476761619190405,46.52673663168416,46.57671164417791,46.626686656671666,46.67666166916542,46.72663668165917,46.776611694152926,46.82658670664668,46.87656171914043,46.92653673163418,46.97651174412793,47.026486756621686,47.07646176911544,47.12643678160919,47.17641179410295,47.2263868065967,47.276361819090454,47.32633683158421,47.37631184407796,47.426286856571714,47.47626186906547,47.52623688155922,47.576211894052975,47.62618690654673,47.67616191904048,47.726136931534235,47.77611194402799,47.82608695652174,47.876061969015495,47.92603698150925,47.976011994002995,48.02598700649675,48.0759620189905,48.125937031484256,48.17591204397801,48.22588705647176,48.275862068965516,48.32583708145927,48.37581209395302,48.425787106446776,48.47576211894053,48.52573713143428,48.57571214392804,48.62568715642179,48.675662168915544,48.7256371814093,48.77561219390305,48.825587206396804,48.87556221889056,48.92553723138431,48.97551224387806,49.02548725637181,49.075462268865564,49.12543728135932,49.17541229385307,49.225387306346825,49.27536231884058,49.32533733133433,49.375312343828085,49.42528735632184,49.47526236881559,49.525237381309346,49.5752123938031,49.62518740629685,49.675162418790606,49.72513743128436,49.77511244377811,49.825087456271866,49.87506246876562,49.92503748125937,49.97501249375313,50.02498750624687,50.07496251874063,50.12493753123438,50.174912543728134,50.22488755622189,50.27486256871564,50.324837581209394,50.37481259370315,50.4247876061969,50.474762618690654,50.52473763118441,50.57471264367816,50.624687656171915,50.67466266866567,50.72463768115942,50.774612693653175,50.82458770614693,50.87456271864068,50.924537731134436,50.97451274362819,51.02448775612194,51.07446276861569,51.12443778110944,51.174412793603196,51.22438780609695,51.2743628185907,51.324337831084456,51.37431284357821,51.42428785607196,51.47426286856572,51.52423788105947,51.574212893553224,51.62418790604698,51.67416291854073,51.724137931034484,51.77411294352824,51.82408795602199,51.874062968515744,51.9240379810095,51.97401299350325,52.023988005997005,52.07396301849075,52.123938030984505,52.17391304347826,52.22388805597201,52.273863068465765,52.32383808095952,52.37381309345327,52.423788105947025,52.47376311844078,52.52373813093453,52.573713143428286,52.62368815592204,52.67366316841579,52.723638180909546,52.7736131934033,52.82358820589705,52.87356321839081,52.92353823088456,52.973513243378314,53.02348825587207,53.07346326836582,53.12343828085957,53.17341329335332,53.223388305847074,53.27336331834083,53.32333833083458,53.373313343328334,53.42328835582209,53.47326336831584,53.523238380809595,53.57321339330335,53.6231884057971,53.673163418290855,53.72313843078461,53.77311344327836,53.823088455772115,53.87306346826587,53.92303848075962,53.973013493253376,54.02298850574713,54.07296351824088,54.122938530734636,54.17291354322838,54.222888555722136,54.27286356821589,54.32283858070964,54.3728135932034,54.42278860569715,54.4727636181909,54.52273863068466,54.57271364317841,54.622688655672164,54.67266366816592,54.72263868065967,54.772613693153424,54.82258870564718,54.87256371814093,54.922538730634685,54.97251374312844,55.02248875562219,55.072463768115945,55.1224387806097,55.172413793103445,55.2223888055972,55.27236381809095,55.322338830584705,55.37231384307846,55.42228885557221,55.472263868065966,55.52223888055972,55.57221389305347,55.622188905547226,55.67216391804098,55.72213893053473,55.77211394302849,55.82208895552224,55.87206396801599,55.92203898050975,55.9720139930035,56.021989005497254,56.07196401799101,56.12193903048476,56.171914042978514,56.22188905547226,56.271864067966014,56.32183908045977,56.37181409295352,56.421789105447274,56.47176411794103,56.52173913043478,56.571714142928535,56.62168915542229,56.67166416791604,56.721639180409795,56.77161419290355,56.8215892053973,56.871564217891056,56.92153923038481,56.97151424287856,57.021489255372316,57.07146426786607,57.12143928035982,57.17141429285358,57.22138930534732,57.271364317841076,57.32133933033483,57.37131434282858,57.42128935532234,57.47126436781609,57.521239380309844,57.5712143928036,57.62118940529735,57.671164417791104,57.72113943028486,57.77111444277861,57.821089455272364,57.87106446776612,57.92103948025987,57.971014492753625,58.02098950524738,58.07096451774113,58.120939530234885,58.17091454272864,58.22088955522239,58.27086456771614,58.32083958020989,58.370814592703645,58.4207896051974,58.47076461769115,58.520739630184906,58.57071464267866,58.62068965517241,58.670664667666166,58.72063968015992,58.77061469265367,58.82058970514743,58.87056471764118,58.920539730134934,58.97051474262869,59.02048975512244,59.070464767616194,59.12043978010995,59.1704147926037,59.220389805097454,59.27036481759121,59.320339830084954,59.37031484257871,59.42028985507246,59.470264867566215,59.52023988005997,59.57021489255372,59.620189905047475,59.67016491754123,59.72013993003498,59.770114942528735,59.82008995502249,59.87006496751624,59.920039980009996,59.97001499250375,60.0199900049975,60.069965017491256,60.11994002998501,60.16991504247876,60.21989005497252,60.26986506746627,60.31984007996002,60.36981509245377,60.41979010494752,60.46976511744128,60.51974012993503,60.569715142428784,60.61969015492254,60.66966516741629,60.719640179910044,60.7696151924038,60.81959020489755,60.869565217391305,60.91954022988506,60.96951524237881,61.019490254872565,61.06946526736632,61.11944027986007,61.169415292353825,61.21939030484758,61.26936531734133,61.319340329835086,61.36931534232883,61.419290354822586,61.46926536731634,61.51924037981009,61.569215392303846,61.6191904047976,61.66916541729135,61.71914042978511,61.76911544227886,61.81909045477261,61.86906546726637,61.91904047976012,61.969015492253874,62.01899050474763,62.06896551724138,62.118940529735134,62.16891554222889,62.21889055472264,62.268865567216395,62.31884057971015,62.3688155922039,62.41879060469765,62.4687656171914,62.518740629685155,62.56871564217891,62.61869065467266,62.668665667166415,62.71864067966017,62.76861569215392,62.818590704647676,62.86856571714143,62.91854072963518,62.968515742128936,63.01849075462269,63.06846576711644,63.1184407796102,63.16841579210395,63.2183908045977,63.26836581709146,63.31834082958521,63.368315842078964,63.41829085457271,63.468265867066464,63.51824087956022,63.56821589205397,63.618190904547724,63.66816591704148,63.71814092953523,63.768115942028984,63.81809095452274,63.86806596701649,63.918040979510245,63.968015992004,64.01799100449774,64.0679660169915,64.11794102948525,64.16791604197901,64.21789105447276,64.26786606696652,64.31784107946027,64.36781609195403,64.41779110444777,64.46776611694153,64.51774112943528,64.56771614192904,64.61769115442279,64.66766616691655,64.7176411794103,64.76761619190405,64.8175912043978,64.86756621689156,64.91754122938531,64.96751624187905,65.01749125437281,65.06746626686656,65.11744127936032,65.16741629185407,65.21739130434783,65.26736631684157,65.31734132933533,65.36731634182908,65.41729135432284,65.46726636681659,65.51724137931035,65.5672163918041,65.61719140429786,65.6671664167916,65.71714142928536,65.76711644177911,65.81709145427287,65.86706646676662,65.91704147926038,65.96701649175412,66.01699150424787,66.06696651674163,66.11694152923538,66.16691654172914,66.21689155422288,66.26686656671664,66.31684157921039,66.36681659170415,66.4167916041979,66.46676661669166,66.5167416291854,66.56671664167916,66.61669165417291,66.66666666666667,66.71664167916042,66.76661669165418,66.81659170414792,66.86656671664169,66.91654172913543,66.96651674162919,67.01649175412294,67.06646676661668,67.11644177911045,67.16641679160419,67.21639180409795,67.2663668165917,67.31634182908546,67.3663168415792,67.41629185407297,67.46626686656671,67.51624187906047,67.56621689155422,67.61619190404798,67.66616691654173,67.71614192903549,67.76611694152923,67.816091954023,67.86606696651674,67.9160419790105,67.96601699150425,68.01599200399801,68.06596701649175,68.1159420289855,68.16591704147926,68.21589205397301,68.26586706646677,68.31584207896051,68.36581709145428,68.41579210394802,68.46576711644178,68.51574212893553,68.56571714142929,68.61569215392304,68.6656671664168,68.71564217891054,68.7656171914043,68.81559220389805,68.86556721639181,68.91554222888556,68.96551724137932,69.01549225387306,69.06546726636682,69.11544227886057,69.16541729135432,69.21539230384808,69.26536731634182,69.31534232883558,69.36531734132933,69.41529235382309,69.46526736631684,69.5152423788106,69.56521739130434,69.6151924037981,69.66516741629185,69.71514242878561,69.76511744127936,69.81509245377312,69.86506746626686,69.91504247876063,69.96501749125437,70.01499250374813,70.06496751624188,70.11494252873563,70.16491754122939,70.21489255372313,70.26486756621689,70.31484257871064,70.3648175912044,70.41479260369815,70.4647676161919,70.51474262868565,70.56471764117941,70.61469265367316,70.66466766616692,70.71464267866067,70.76461769115443,70.81459270364817,70.86456771614193,70.91454272863568,70.96451774112944,71.01449275362319,71.06446776611695,71.1144427786107,71.16441779110444,71.2143928035982,71.26436781609195,71.31434282858571,71.36431784107945,71.41429285357322,71.46426786606696,71.51424287856072,71.56421789105447,71.61419290354823,71.66416791604198,71.71414292853574,71.76411794102948,71.81409295352324,71.86406796601699,71.91404297851075,71.9640179910045,72.01399300349826,72.063968015992,72.11394302848576,72.16391804097951,72.21389305347326,72.26386806596702,72.31384307846076,72.36381809095452,72.41379310344827,72.46376811594203,72.51374312843578,72.56371814092954,72.61369315342328,72.66366816591704,72.71364317841079,72.76361819090455,72.8135932033983,72.86356821589206,72.9135432283858,72.96351824087957,73.01349325337331,73.06346826586707,73.11344327836082,73.16341829085458,73.21339330334833,73.26336831584207,73.31334332833583,73.36331834082958,73.41329335332334,73.46326836581709,73.51324337831085,73.5632183908046,73.61319340329835,73.6631684157921,73.71314342828586,73.7631184407796,73.81309345327337,73.86306846576711,73.91304347826087,73.96301849075462,74.01299350324838,74.06296851574213,74.11294352823589,74.16291854072963,74.2128935532234,74.26286856571714,74.31284357821089,74.36281859070465,74.4127936031984,74.46276861569216,74.5127436281859,74.56271864067966,74.61269365317341,74.66266866566717,74.71264367816092,74.76261869065468,74.81259370314842,74.86256871564218,74.91254372813593,74.96251874062969,75.01249375312344,75.0624687656172,75.11244377811094,75.1624187906047,75.21239380309845,75.2623688155922,75.31234382808596,75.3623188405797,75.41229385307346,75.46226886556721,75.51224387806097,75.56221889055472,75.61219390304848,75.66216891554222,75.71214392803599,75.76211894052973,75.81209395302349,75.86206896551724,75.912043978011,75.96201899050475,76.0119940029985,76.06196901549225,76.11194402798601,76.16191904047976,76.21189405297352,76.26186906546727,76.31184407796101,76.36181909045477,76.41179410294852,76.46176911544228,76.51174412793603,76.56171914042979,76.61169415292353,76.6616691654173,76.71164417791104,76.7616191904048,76.81159420289855,76.86156921539231,76.91154422788605,76.96151924037981,77.01149425287356,77.06146926536732,77.11144427786107,77.16141929035483,77.21139430284857,77.26136931534234,77.31134432783608,77.36131934032983,77.41129435282359,77.46126936531734,77.5112443778111,77.56121939030484,77.6111944027986,77.66116941529235,77.71114442778611,77.76111944027986,77.81109445277362,77.86106946526736,77.91104447776112,77.96101949025487,78.01099450274863,78.06096951524238,78.11094452773614,78.16091954022988,78.21089455272364,78.26086956521739,78.31084457771115,78.3608195902049,78.41079460269864,78.4607696151924,78.51074462768615,78.56071964017991,78.61069465267366,78.66066966516742,78.71064467766116,78.76061969015493,78.81059470264867,78.86056971514243,78.91054472763618,78.96051974012994,79.01049475262369,79.06046976511745,79.11044477761119,79.16041979010495,79.2103948025987,79.26036981509246,79.3103448275862,79.36031984007997,79.41029485257371,79.46026986506746,79.51024487756122,79.56021989005497,79.61019490254873,79.66016991504247,79.71014492753623,79.76011994002998,79.81009495252374,79.86006996501749,79.91004497751125,79.960019990005,80.00999500249875,80.0599700149925,80.10994502748626,80.15992003998001,80.20989505247377,80.25987006496752,80.30984507746128,80.35982008995502,80.40979510244878,80.45977011494253,80.50974512743628,80.55972013993004,80.60969515242378,80.65967016491754,80.70964517741129,80.75962018990505,80.8095952023988,80.85957021489256,80.9095452273863,80.95952023988006,81.00949525237381,81.05947026486757,81.10944527736132,81.15942028985508,81.20939530234882,81.25937031484258,81.30934532733633,81.35932033983009,81.40929535232384,81.45927036481758,81.50924537731134,81.55922038980509,81.60919540229885,81.6591704147926,81.70914542728636,81.7591204397801,81.80909545227387,81.85907046476761,81.90904547726137,81.95902048975512,82.00899550224888,82.05897051474263,82.10894552723639,82.15892053973013,82.2088955522239,82.25887056471764,82.3088455772114,82.35882058970515,82.40879560219891,82.45877061469265,82.5087456271864,82.55872063968016,82.6086956521739,82.65867066466767,82.70864567716141,82.75862068965517,82.80859570214892,82.85857071464268,82.90854572713643,82.95852073963019,83.00849575212393,83.0584707646177,83.10844577711144,83.1584207896052,83.20839580209895,83.25837081459271,83.30834582708646,83.35832083958022,83.40829585207396,83.45827086456772,83.50824587706147,83.55822088955522,83.60819590204898,83.65817091454272,83.70814592703648,83.75812093953023,83.80809595202399,83.85807096451774,83.9080459770115,83.95802098950524,84.007996001999,84.05797101449275,84.10794602698651,84.15792103948026,84.20789605197402,84.25787106446776,84.30784607696152,84.35782108945527,84.40779610194903,84.45777111444278,84.50774612693654,84.55772113943029,84.60769615192403,84.65767116441779,84.70764617691154,84.7576211894053,84.80759620189905,84.8575712143928,84.90754622688655,84.95752123938031,85.00749625187406,85.05747126436782,85.10744627686157,85.15742128935533,85.20739630184907,85.25737131434283,85.30734632683658,85.35732133933034,85.40729635182409,85.45727136431785,85.5072463768116,85.55722138930535,85.6071964017991,85.65717141429285,85.70714642678661,85.75712143928035,85.80709645177411,85.85707146426786,85.90704647676162,85.95702148925537,86.00699650174913,86.05697151424287,86.10694652673664,86.15692153923038,86.20689655172414,86.25687156421789,86.30684657671165,86.3568215892054,86.40679660169916,86.4567716141929,86.50674662668666,86.55672163918041,86.60669665167416,86.65667166416792,86.70664667666166,86.75662168915542,86.80659670164917,86.85657171414293,86.90654672663668,86.95652173913044,87.00649675162418,87.05647176411794,87.10644677661169,87.15642178910545,87.2063968015992,87.25637181409296,87.3063468265867,87.35632183908046,87.40629685157421,87.45627186406797,87.50624687656172,87.55622188905548,87.60619690154923,87.65617191404297,87.70614692653673,87.75612193903048,87.80609695152424,87.85607196401799,87.90604697651175,87.95602198900549,88.00599700149925,88.055972013993,88.10594702648676,88.1559220389805,88.20589705147427,88.25587206396801,88.30584707646177,88.35582208895552,88.40579710144928,88.45577211394303,88.50574712643679,88.55572213893053,88.6056971514243,88.65567216391804,88.70564717641179,88.75562218890555,88.8055972013993,88.85557221389305,88.9055472263868,88.95552223888056,89.00549725137431,89.05547226386807,89.10544727636182,89.15542228885558,89.20539730134932,89.25537231384308,89.30534732633683,89.35532233883059,89.40529735132434,89.4552723638181,89.50524737631184,89.5552223888056,89.60519740129935,89.65517241379311,89.70514742628686,89.7551224387806,89.80509745127436,89.85507246376811,89.90504747626187,89.95502248875562,90.00499750124938,90.05497251374312,90.10494752623688,90.15492253873063,90.20489755122439,90.25487256371814,90.3048475762119,90.35482258870564,90.4047976011994,90.45477261369315,90.50474762618691,90.55472263868066,90.60469765117442,90.65467266366817,90.70464767616193,90.75462268865567,90.80459770114942,90.85457271364318,90.90454772613693,90.95452273863069,91.00449775112443,91.0544727636182,91.10444777611194,91.1544227886057,91.20439780109945,91.2543728135932,91.30434782608695,91.35432283858071,91.40429785107446,91.45427286356822,91.50424787606197,91.55422288855573,91.60419790104947,91.65417291354323,91.70414792603698,91.75412293853073,91.80409795102449,91.85407296351823,91.904047976012,91.95402298850574,92.0039980009995,92.05397301349325,92.10394802598701,92.15392303848076,92.20389805097452,92.25387306346826,92.30384807596202,92.35382308845577,92.40379810094953,92.45377311344328,92.50374812593704,92.55372313843078,92.60369815092454,92.65367316341829,92.70364817591205,92.7536231884058,92.80359820089954,92.8535732133933,92.90354822588705,92.95352323838081,93.00349825087456,93.05347326336832,93.10344827586206,93.15342328835582,93.20339830084957,93.25337331334333,93.30334832583708,93.35332333833084,93.40329835082458,93.45327336331835,93.50324837581209,93.55322338830585,93.6031984007996,93.65317341329336,93.7031484257871,93.75312343828087,93.80309845077461,93.85307346326836,93.90304847576212,93.95302348825587,94.00299850074963,94.05297351324337,94.10294852573713,94.15292353823088,94.20289855072464,94.25287356321839,94.30284857571215,94.3528235882059,94.40279860069965,94.4527736131934,94.50274862568716,94.55272363818091,94.60269865067467,94.65267366316841,94.70264867566218,94.75262368815592,94.80259870064968,94.85257371314343,94.90254872563717,94.95252373813094,95.00249875062468,95.05247376311844,95.10244877561219,95.15242378810595,95.2023988005997,95.25237381309346,95.3023488255872,95.35232383808096,95.40229885057471,95.45227386306847,95.50224887556222,95.55222388805598,95.60219890054972,95.65217391304348,95.70214892553723,95.75212393803099,95.80209895052474,95.8520739630185,95.90204897551224,95.95202398800599,96.00199900049975,96.0519740129935,96.10194902548726,96.151924037981,96.20189905047476,96.25187406296851,96.30184907546227,96.35182408795602,96.40179910044978,96.45177411294353,96.50174912543729,96.55172413793103,96.60169915042479,96.65167416291854,96.7016491754123,96.75162418790605,96.8015992003998,96.85157421289355,96.90154922538731,96.95152423788106,97.0014992503748,97.05147426286857,97.10144927536231,97.15142428785607,97.20139930034982,97.25137431284358,97.30134932533733,97.35132433783109,97.40129935032483,97.4512743628186,97.50124937531234,97.5512243878061,97.60119940029985,97.65117441279361,97.70114942528735,97.75112443778112,97.80109945027486,97.85107446276862,97.90104947526237,97.95102448775611,98.00099950024988,98.05097451274362,98.10094952523738,98.15092453773113,98.20089955022489,98.25087456271864,98.3008495752124,98.35082458770614,98.4007996001999,98.45077461269365,98.50074962518741,98.55072463768116,98.60069965017492,98.65067466266866,98.70064967516242,98.75062468765617,98.80059970014993,98.85057471264368,98.90054972513744,98.95052473763118,99.00049975012493,99.05047476261869,99.10044977511244,99.1504247876062,99.20039980009994,99.2503748125937,99.30034982508745,99.35032483758121,99.40029985007496,99.45027486256872,99.50024987506247,99.55022488755623,99.60019990004997,99.65017491254373,99.70014992503748,99.75012493753124,99.80009995002499,99.85007496251875,99.9000499750125,99.95002498750625,100.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json index f39775fcbab2..f43f0e637a94 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json @@ -1 +1 @@ -{"expected":[0.01,-0.0033746253790549624,-0.007622018879319136,0.008433494207046853,0.001889004559574384,-0.00959763287124854,0.0045548640918855405,0.00643775365526481,-0.008809666729723751,-0.000468327621357804,0.009021878600127204,-0.005574489042175532,-0.005188845438344393,0.008984167322636266,-0.0008822361340235784,-0.008293387424072578,0.006423300008544533,0.00390249149724315,-0.00896491048167861,0.0021410030233847974,0.007434361161677098,-0.0070945391115908776,-0.002605153786703288,0.0087627445091276,-0.003288961215575298,-0.006468148173580897,0.007584861802057748,0.001322173628641932,-0.008391166572328667,0.004309966210916445,0.005418829024186577,-0.007894256760515254,-0.00007741137080101638,0.00786600339799083,-0.005190888286691567,-0.004310799964470551,0.008025916288409504,-0.0011070829665529621,-0.00720506320694166,0.0059217096985319595,0.0031683612909959584,-0.007986059728650302,0.002211362742764597,0.006427764980119337,-0.006495570438395232,-0.002015317447555855,0.007783713328832359,-0.003217836901260242,-0.005554751504162455,0.0069087623461371135,0.0008745954285802678,-0.007430450743094688,0.004111477604627807,0.004607492872683843,-0.007160672340873091,0.00023211237554265316,0.006940099051174486,-0.004879980448715341,-0.0036078872171936413,0.007253676467270752,-0.0012846752729141803,-0.006328415747875719,0.005513875305599021,0.002577865411407692,-0.007192987327410233,0.002264816300126859,0.005612742616618405,-0.00600658676302084,-0.00153900633791215,0.006986458278165595,-0.0031563648778605274,-0.004811642742160233,0.006354444046560059,0.0005121690322926351,-0.006644348505237545,0.003945466543090176,0.003944527136917611,-0.006556641214801915,0.00048285236585137326,0.00617905372724083,-0.0046207470221406475,-0.0030312775513807594,0.006615149291794282,-0.0014276454140797585,-0.0056048078272581455,0.005173428759011166,0.002091872012714056,-0.006534582830377916,0.0023054630602133983,0.004937361147319414,-0.005597398884782191,-0.0011460194895600748,0.006322024170613043,-0.003101470027877635,-0.004193641507483116,0.005889228490530021,0.00021280982010589674,-0.005986809356747114,0.003802948422578564,0.0033914042216771465,-0.006048143932118084,0.0006896153286842611,0.005540280292535628,-0.004399459866491001,-0.0025488774753354643,0.006075951734989388,-0.0015443651716269698,-0.004995508238426995,0.0048829622877020395,0.00168440940535812,-0.005976919465789322,0.002336071445060531,0.00436699417707134,-0.005247880329196343,-0.0008161230833134467,0.005757615681360099,-0.003051124871582776,-0.0036703518896386025,0.005491129188702045,-0.00003841464759629526,-0.005426712741594785,0.0036778730471761206,0.002921979790357042,-0.005612092537049578,0.000862504886225179,0.004994756869438384,-0.004206777101008821,-0.0021387276583954965,0.005612555974717905,-0.001640603793679084,-0.00447391034918115,0.0046305252678440646,0.0013375643846813207,-0.005496598259191423,0.002358580514084293,0.003877671165064496,-0.004944102324323375,-0.0005352527185069069,0.005270443255972866,-0.003003941903847979,-0.003220575689940079,0.005144814658170978,-0.00025196324112337605,-0.004942276221088671,0.0035660207544181725,0.002517890234124859,-0.005232271548429072,0.0010086524055568644,0.0045220286015450195,-0.004036124920485116,-0.0017852973554887096,0.0052083240203809455,-0.001720467938676326,-0.004021136032862963,0.004407645528211705,0.00103858281312451,-0.005076963386680254,0.002374390930557525,0.003452274611672536,-0.004676123221830755,-0.000293328920583648,0.004844182283096554,-0.0029589426438823055,-0.0028290808203536187,0.004839272196996332,-0.0004353801754854635,-0.0045178016410455345,0.00346436212758138,0.0021658606757821207,-0.004896962550898842,0.0011332360936159342,0.0041072675988673485,-0.0038827466936394977,-0.0014772937632670537,0.004851162237974012,-0.0017869619136926833,-0.003623422830336836,0.004208153488994983,0.0007781377996418393,-0.004705840642293678,0.0023845416920389327,0.0030782571544993855,-0.004436661150818149,-0.00008293924808134595,0.004466836450525034,-0.0029154200873884777,-0.0024846425797872,0.00456639129577918,-0.000594244714662356,-0.004141693120882942,0.003370669019868411,0.001856058123530432,-0.004597490347915285,0.0012401078946157153,0.0037394657832780214,-0.003743118961844232,-0.0012063098334202998,0.004532072941424919,-0.0018423358607942096,-0.003270503864866559,0.004027453169436672,0.0005492514201438184,-0.004374128830803134,0.0023898217124098888,0.0027462141060571542,-0.0042202638929199066,0.0001014892078418608,0.004129395888683835,-0.0028728532875289745,-0.0021788089090985915,0.004320070339086555,-0.0007327724318554683,-0.0038052023601414537,0.0032832688759818953,0.0015810451408781274,-0.004327298885133179,0.0013321936644063676,0.0034102820608713055,-0.003614579152420938,-0.0009659585916019596,0.0042442267481438865,-0.0018883099676065612,-0.0029545666469105447,0.003862053730280365,0.0003465992716145695,-0.004074890983889265,0.002390842639114913,0.002448959438274671,-0.004022771440620501,0.00026422738837701204,0.0038249653113078845,-0.0028308523893977476,-0.001905095542674953,0.004095634147866093,-0.0008542085792722223,-0.003501607823646661,0.0032008843221029396,0.0013350931947516316,-0.004081344613809632,0.0014117568426467166,0.0031132831440029004,-0.003495080560118109,-0.000751301299248045,0.0039823495988200956,-0.0019262233125530552,-0.0026695630035545965,0.0037092590208348468,0.00016604814335501283,-0.003802750032448531,0.00238808774933818,0.0021809095582688387,-0.0038409575222055825,0.0004086038740077174,0.003548180682849912,-0.00278912216160145,-0.0016584460091960713,0.0038894430832158615,-0.0009610928562487279,-0.003225662294979352,0.0031225253816182913,0.0011137192491960006,-0.003855686955326962,0.0014805770200375756,0.0028434296419308706,-0.003383026569449437,-0.0005584593235005616,0.0037423065725655123,-0.0019571353282153824,-0.002410739334022185,0.0035669562592685992,0.000004340463089199634,-0.003553476225131052,0.002381945611343005,0.0019376615497718379,-0.003672284215497602,0.0005372516695656682,0.0032948088333592442,-0.0027474371465572647,-0.0014348600868823633,0.0036986240233832955,-0.0010554420895805701,-0.0029732117153399543,0.003047415214307232,0.0009133652765595503,-0.0036472049859943957,0.0015400738095075364,0.002596719693376865,-0.003277155743961312,-0.0003843443595345254,0.003520812524978191,-0.001981896589820398,-0.0021743092640833387,0.0034334687762567285,-0.0001411261126639814,-0.003323698874081737,0.0023727337708766235,0.0017156978580311923,-0.003514730101806216,0.0006522814102675338,0.0030614664015164317,-0.002705624325836564,-0.0012311324328946071,0.003520881067978818,-0.0011388790574619577,-0.002740926389843438,0.0029749378100310947,0.0007311717760163106,-0.0034533971691657716,0.0015913946155659104,0.0023699365314837134,-0.0031764604545482227,-0.00022646693702463983,0.0033152266358330964,-0.0020011992261728833,-0.001957220756854529,0.0033074512487201294,-0.00027245583099065574,-0.0031107008045504225,0.002360715744923774,0.0015121752946147878,-0.0033666674657802775,0.0007554053700443383,0.00284541857387878,-0.002663550773165199,-0.001044665065235685,0.0033543596961918744,-0.001212725111614123,-0.002526107720106278,0.002904600416141118,0.0005648146273983649,-0.0032722370521445954,0.0016354780062711222,0.002160466254018691,-0.003080128151737152,-0.000082797930510248,0.0031234037829790946,-0.002015613480508536,-0.00175698733817825,0.0031878137718127416,-0.0003913689234629894,-0.002912269083932181,0.0023461134262495863,0.0013247715479915683,-0.003226772947196665,0.0008480278373982253,0.0026444323795080907,-0.002621114694188058,-0.0008733304451363718,0.0031975475558126023,-0.0012780679337996753,-0.0023265468088722987,0.0028360060700229743,0.0004123855362323381,-0.003102067489642725,0.0016731002473195156,0.001966164025988275,-0.002987498252220287,0.00004833328785673103,0.002943585209223255,-0.002025614663560462,-0.0015715637451245235,0.003073665910135281,-0.0004992857952449686,-0.002726584833597506,0.0023291162790907956,0.0011515717076079155,-0.0030939614708402024,0.0009313120391705081,0.0024566680294338806,-0.002578238813341514,-0.000715369914541897,0.0030492008505353272,-0.0013358118795590603,-0.002140419386636313,0.0027688331984681023,0.00027230306044425507,-0.0029415219008097995,0.0017049099941755753,0.0017852543316613596,-0.0028980299980183146,0.00016831488624009116,0.0027743168705652277,-0.0020316033182352874,-0.0013992529276129046,0.002964274848589291,-0.0005973900770956857,-0.0025521406810003954,0.0023098882513615314,0.0009909831370976026,-0.0029673366695994975,0.0010062304166468866,0.002280597264378061,-0.002534865417417635,-0.0005693172763382291,0.0029082889338595324,-0.0013867159137674443,-0.0019662066190262472,0.0027028202465121734,0.00014324546521498255,-0.0027894648250310636,0.001731454512834913,0.0016162555759663638,-0.0028112781592852815,0.0002783101226767328,0.002614387616968737,-0.002033920507690205,-0.001238635550763712,0.002859033660935118,-0.0006866764820938022,-0.002387678084620776,0.0022885730357688917,0.000841670763073588,-0.0028461531856580177,0.0010736028917752718,0.002114941187700384,-0.002490952588011033,-0.0004339405427495209,0.0027739520605998113,-0.0014314225634394463,-0.0018026346487828543,0.0026377539430179966,0.000024099403604626595,-0.0026449464716313343,0.0017531997460879121,0.0014579223699989954,-0.002726874431534224,0.00037930144622244015,0.002462781801289147,-0.0020328595469610695,-0.0010885158914870888,0.0027574369494554997,-0.0007679875735691736,-0.0022321391627136557,0.0022652981196188125,0.000702507285968018,-0.002729787653816416,0.0011341263410876764,0.0019586223638290937,-0.00244647130004073,-0.0003081970043560719,0.002645468786255706,-0.0014704802733878732,-0.0016486278957671848,0.0025734602342109597,-0.00008607976421486678,-0.0025071675622243285,0.0017705458451201643,0.0013092008421668711,-0.002644513025712797,0.0004721246781596627,0.0023186425320669743,-0.002028675104990842,-0.0009478798462329672,0.002659061929424631,-0.0008420423294057347,-0.0020846292530919777,0.0022401779340787444,0.0005725344463660855,-0.002617716117379471,0.0011883975459047247,0.00181072750167585,-0.002401403159898697,-0.0001911981961946872,0.00252223053520494,-0.00150436085260325,-0.0015032725941173384,0.0025097972004579777,-0.00018809898018486252,-0.0023754518425589425,0.0017838393165831475,0.0011691936682461637,-0.0025639393856203506,0.0005574957818355751,0.002181242879348386,-0.002021590337661687,-0.0008158619997894686,0.0025635535866886197,-0.0009094585606012332,-0.0019443875126433023,0.0022133163256927288,0.00045093258457585547,-0.002509496269414901,0.0012369312421345489,0.0016704780892682278,-0.0023557386219282845,-0.00008218230752615857,0.0024037215609318827,-0.001533473223012741,-0.001365788039216979,0.0024466494652647408,-0.0002826519588731703,-0.0022492243779544466,0.0017933826134725838,0.0010371324395297126,-0.002484941265751537,0.0006360320298354078,0.002049963093101947,-0.0020118025292847827,-0.0006917195525119262,0.0024706129178784933,-0.0009707706722735125,-0.0018107636100686472,0.002184808512062205,0.00033699649284626125,-0.002404753355323932,0.0012801744470596899,0.001537207069170819,-0.0023094755667628676,0.000019507746753487322,0.002289503007619787,-0.0015581743520317768,-0.0012355037060267395,0.0023839237396364385,-0.00037033867283502197,-0.0021279942584771353,0.0017994417741892838,0.0009123556323570743,-0.002407341610307096,0.0007082688896385101,0.001924272416723798,-0.001999487592035099,-0.0005748114948746359,0.002379987528811685,-0.0010264438571449548,-0.001683199086011227,0.0021547426407978825,0.00023011609295240612,-0.0023031688829249506,0.0013185179278607563,0.001410340151546865,-0.00226261815632344,0.00011444190350763413,0.0021792001238734966,-0.0015787780180434162,-0.0011118408849488351,0.002321545239227773,-0.00045168099825255704,-0.0020113407007838497,0.0018022525561288292,0.0007942908968153683,-0.0023309928205821405,0.0007746736043426581,0.001803714447662988,-0.0019848036822188407,-0.0004645818368192538,0.0022914640549012346,-0.0010768855293036537,-0.0015612123237860743,0.0021232010403929814,0.0001297608503656892,-0.002204471506490353,0.0013523054543425155,0.0012893807223029292,-0.0022151759024297097,0.0002031171523614491,0.002072491922429874,-0.0015955618922985336,-0.0009942978268588042,0.002259454778879646,-0.0005271353749706217,-0.0018989017911572215,0.0018020253971051474,0.0006824407072985435,-0.0022557721026356748,0.0008356561984161872,0.0016878952618040433,-0.0019678941272325413,-0.00036054599946802374,0.0022048620023513398,-0.001122454603471095,-0.0014443863389041823,0.0020902612296847677,0.0000354671083238826,-0.0021084296094975655,0.0013818413183534276,0.0011738975633771888,-0.002167162901846324,0.0002859690931723308,0.0019691027549326263,-0.0016087733011967177,-0.000882437638330581,0.0021976063975728925,-0.0005971031245060763,-0.0017903653004237641,0.001798949456116054,0.0005763706527763578,-0.0021815776628847307,0.0008915784597268142,0.0015764737099661576,-0.0019488898098829778,-0.0002622796945123937,0.002120028706833092,-0.0011634690778397434,-0.00133235878806569,0.002055996736555064,-0.00005317227695481571,-0.0020148452260280994,0.0014073964858683516,0.0010635147912839954,-0.002118597202116705,0.0003633814063964488,0.0018687953986439004,-0.001618633945617953,-0.0007758783501296758,0.0021359654021759706,-0.0006619389156958006,-0.001685461137567241,0.0017931959250680322,0.0004756998166979747,-0.002108325574690938,0.0009427613181347118,0.0014691534354072185,-0.0019279111220849552,-0.00016940977630202798,0.0020368351781634214,-0.0012002122704387638,-0.0012248137397222571,0.0020204777647040138,-0.0001365164731501839,-0.0019235490254383598,0.001429213661905231,0.0009579035592634622,-0.0020695002709836996,0.00043569366276668194,0.001771365346153946,-0.0016253437895462407,-0.0006742847164405341,0.002074506744423042,-0.0007219577539746244,-0.001583955109401834,0.0017849207587636168,0.0003800928237751474,-0.0020359471799921113,0.0009894909439983504,0.001365676265258973,-0.0019050695742462466,-0.00008160667009977071,0.0019551726527607546,-0.0012329379787893553,-0.0011214748532388037,0.0019837717385284585,-0.00021488374589178938,-0.0018343961478594086,0.0014475114846589161,0.0008567751719113934,-0.0020198965484687923,0.0005032078018533034,0.0016766360593018427,-0.0016290842822227678,-0.0005773614024287887,0.0020132136649767046,-0.0007774407854154982,-0.001485643728726439,0.0017742669373665958,0.00028925322595191566,-0.0019643869206406876,0.001032023817418387,0.0012658167066469663,-0.0018804691274104883,0.0000014219314192059985,0.0018749497155054894,-0.0012618747724836893,-0.0010220996923464246,0.0019459437495293614,-0.0002885573539851103,-0.0017472627252814671,0.0014624880173070333,0.000759875338937036,-0.001969813065372363,0.0005661935363351936,0.0015844550012379893,-0.0016300210419186326,-0.00048484729311842076,0.0019520765530275522,-0.0008286401427992488,-0.0013903498698962624,0.001761366350587126,0.0002029179715772622,-0.0018936005171811343,0.001070590964359338,0.0011693773369627605,-0.0018542073006706367,0.00007993634436630187,0.001796089882737794,-0.001287229582897214,-0.0009264749580346582,0.00190705692264887,-0.000357790488405239,-0.0016620429587037447,0.001474323669667731,0.000666979353589724,-0.001919279115500805,0.0006248928836065682,0.001494690300540488,-0.0016283061020082176,-0.00039651071375081354,0.0018910919809583453,-0.0008757830124216558,-0.0012979191136915354,0.001746341373859158,0.00012085275628620108,-0.001823553430342144,0.0011054015141281398,0.0010761849224576528,-0.0018263760952866859,0.00015416933249647887,0.0017185295610630813,-0.0013091907195737172,-0.0008344124713796399,0.001867172717108242,-0.00042281043082654894,-0.0015786466491034894,0.0014831836541463507,0.000577888026299939,-0.0018683259716293663,0.0006795239841810711,0.0014072279318751814,-0.0016240797990220387,-0.0003121453955687333,0.0018302618820712844,-0.0009190750631916303,-0.0012082166562672975,0.0017293061922154344,0.000042848095910588676,-0.001754219553962642,0.0011366457007577196,0.0009860871336272348,-0.0017970627684170263,0.00022432985947940388,0.001642216314245644,-0.00132793041619937,-0.000745745771673329,0.0018263511733560237,-0.00048382207139291455,-0.001496997100948329,0.0014892200590753374,0.0004924242387303761,-0.0018169866372816674,0.000730284333815972,0.0013219693212437487,-0.0016174723661781761,-0.00023156705474265918,0.0017695928459084888,-0.0009587033508575022,-0.0011211246823503444,0.0017103679163289168,-0.000031284005997565645,-0.0016855800984575933,0.0011644974061324103,0.000898949752385515,-0.0017663504827774893,0.00029060627506083647,0.0015671073840996523,-0.001343606988452282,-0.0006603272222014626,0.0017846511154448806,-0.0005410108975245877,-0.0014170293332391715,0.001492573605985117,0.00041043001032005426,-0.0017652956280132586,0.0007773535310730766,0.0012388293021558306,-0.0016086052833111516,-0.0001546104783725948,0.001709095510765675,-0.0009948387879098184,-0.001036540122601161,0.0016896275264316656,-0.00010171289829495539,-0.0016176226320130786,0.0011891163234524363,0.0008146542866641094,-0.0017343188534058138,0.0003531690319383539,0.0014931684219100807,-0.0013563666699270584,-0.0005780255370831861,0.001742130316358363,-0.0005945455437270626,-0.001338688545766597,0.0014933751444066359,0.0003317639903807079,-0.0017132887771369898,0.0008208956222786434,0.0011577343633633864,-0.001597592424277112,-0.00008112703202977462,0.0016487840369650121,-0.0010276382522176027,-0.0009543727305231596,0.0016671806729632347,-0.0001685917126398524,-0.0015503402530239307,0.0012106498045694487,0.0007330959242867455,-0.0017010444086675823,0.00041217301165898763,0.0014203723952454072,-0.0013663451796973138,-0.0004987236591255881,0.0016988456323976096,-0.000644579975265785,-0.001261928798224407,0.0014917469276472496,0.00025629930533804004,-0.001661003061809122,0.0008610611103393504,0.001078621140041301,-0.0015845410351623059,-0.000010982519468670268,0.001588675647577043,-0.0010572463937182544,-0.0008745434264680063,0.0016431183573983941,-0.00023205945121231676,-0.0014837308722831706,0.0012292344428094005,0.0006541817707338698,-0.0016666009794538096,0.00046775952319143125,0.0013486986416117019,-0.0013736690651118403,-0.00042231693169361435,0.0016548531116204845,-0.0006912553649986834,-0.0011867118677229454,0.0014878037049223778,0.00018392170375762485,-0.0016084764461720084,0.0008979886815637,0.0010014351092189444,-0.0015695525704905507,0.00005594466207552277,0.0015287902257490346,-0.001083797187546618,-0.0007969828659632944,0.0016175275124054767,-0.0002922427865284056,-0.0014177965873931977,0.0012449974334534334,0.0005778293255745284,-0.0016310600279888488,0.0005200580262196091,0.0012781320456142983,-0.0013784568554704394,-0.0003487115180043474,0.0016102080804333118,-0.0007347017119004154,-0.0011130062565073524,0.0014816536588215525,0.00011452795221224462,-0.0015557477388619453,0.0009318066948683035,0.00092612945734861,-0.001552723409721847,0.00011976511736049848,0.001469149959770467,-0.0011074152733014948,-0.0007216301972786769,0.0015904914970633767,-0.0003492576182697266,-0.0013525431350203407,0.001258057746515065,0.0005039651604261612,-0.0015944909256388486,0.0005691876218907034,0.0012086623204786548,-0.0013808200558933436,-0.0002778230295433546,0.0015649652117235575,-0.0007750392411754451,-0.0010407863267157488,0.0014733992119670871,0.000048024443351710324,-0.0015028564626857373,0.0009626344698868147,0.000852664093594242,-0.0015341454724189692,0.0001805798375757076,0.0014097790285858799,-0.0011282171131553429,-0.0006484319793394448,0.0015620905201192293,-0.00040321042418424126,-0.0012879794091582,0.0012685271403792076,0.00043252376782482155,-0.0015569611874856634,0.0006152583463028969,0.001140283378138452,-0.001380864005588963,-0.00020957533199357617,0.0015191785773452852,-0.0008123796189423287,-0.0009700315430348592,0.0014631377225859693,-0.00001567401574594861,-0.001449842734661874,0.0009905834041994542,0.0007810047870022233,-0.0015139067472927914,0.00023848140533292832,0.0013507033217300011,-0.0011463119959027066,-0.0005773412360600683,0.0015324020020463702,-0.0004541994357349061,-0.0012241170356022742,0.0012765110399913272,0.00036344655563969773,-0.0015185366701156824,0.000658372295973902,0.0010729927747985181,-0.0013786886206157503,-0.0001438995024424062,0.0014729016873054363,-0.0008468270088493829,-0.0009007258073856401,0.001450962085384556,-0.00007664526144318761,-0.0013967471549453294,0.0010157579447764558,0.0007111224094082552,-0.0014920917477833327,0.00029355504647752005,0.001291950188696457,-0.0011618029094674707,-0.0005083166272211274,0.0015015008848669618,-0.0005023156640160524,-0.0011609699945040115,0.0012821092993090522,0.00029668096591077206,-0.0014792817380055517,0.000698624609657607,0.0010067912210918668,-0.0013743890378763429,-0.00008073291603006744,0.001426187517618761,-0.0008784789934285954,-0.0008328568724236371,0.0014369612513953334,-0.00013496069974191892,-0.0013436107034079628,0.0010382564345878728,0.0006429922689646879,-0.001468781904744373,0.0003458795506288721,0.0012335482135821156,-0.0011747873006891063,-0.0004413217192995347,0.0014694598972368577,-0.0005476437972705667,-0.0010985542842111163,0.0012854168645082713,0.00023217970047962564,-0.0014392594030160633,0.0007361043268706108,0.0009416821477331841,-0.0013680561743604513,-0.00002001844377637972,0.0013790885284927176,-0.0009074273792894457,-0.0007664158227911079,0.0014212206782551482,-0.00019068611930432298,-0.0012904746428634454,0.0010581718519219556,0.0005765935216221548,-0.0014440559051002789,0.00039552807880841544,0.0011755270115402297,-0.0011853577381613707,-0.0003763243423359188,0.0014363497810923871,-0.0005902629878833201,-0.001036887620716606,0.001286524351779206,0.00016990003861119102,-0.0013985314407912817,0.0007708951402235772,0.0008776713190505759,-0.0013597772134087674,0.0000382962537624602,0.0013316566742453079,-0.0009337589021888669, -0.0007013966148476759,0.0014038227205496864,-0.0002438824068503528,-0.0012373804280933014,0.0010755924571681343,0.0005119086499337978,-0.0014179899839424565,0.00044256887361214276,0.0011179170441275007,-0.0011936024914151245,-0.00031329602114924806,0.001402239485171366,-0.000630247543915065,-0.0009759891679376904,0.001285518551373567,0.00010980323415663845],"x":[100.0,100.60925648702595,101.21851297405189,101.82776946107785,102.4370259481038,103.04628243512974,103.65553892215569,104.26479540918163,104.87405189620759,105.48330838323353,106.09256487025948,106.70182135728543,107.31107784431137,107.92033433133733,108.52959081836327,109.13884730538922,109.74810379241517,110.35736027944112,110.96661676646707,111.57587325349301,112.18512974051896,112.7943862275449,113.40364271457086,114.01289920159681,114.62215568862275,115.2314121756487,115.84066866267464,116.4499251497006,117.05918163672655,117.6684381237525,118.27769461077844,118.88695109780438,119.49620758483034,120.10546407185629,120.71472055888223,121.32397704590818,121.93323353293412,122.54249001996008,123.15174650698603,123.76100299401197,124.37025948103792,124.97951596806388,125.58877245508982,126.19802894211577,126.80728542914171,127.41654191616766,128.02579840319362,128.63505489021955,129.2443113772455,129.85356786427147,130.4628243512974,131.07208083832336,131.6813373253493,132.29059381237525,132.8998502994012,133.50910678642714,134.1183632734531,134.72761976047903,135.336876247505,135.94613273453095,136.55538922155688,137.16464570858284,137.77390219560877,138.38315868263473,138.9924151696607,139.60167165668662,140.21092814371258,140.8201846307385,141.42944111776447,142.03869760479043,142.64795409181636,143.25721057884232,143.86646706586825,144.4757235528942,145.08498003992017,145.6942365269461,146.30349301397206,146.91274950099802,147.52200598802395,148.1312624750499,148.74051896207584,149.3497754491018,149.95903193612776,150.5682884231537,151.17754491017965,151.78680139720558,152.39605788423154,153.0053143712575,153.61457085828343,154.2238273453094,154.83308383233532,155.44234031936128,156.05159680638724,156.66085329341317,157.27010978043913,157.87936626746506,158.48862275449102,159.09787924151698,159.7071357285429,160.31639221556887,160.9256487025948,161.53490518962076,162.14416167664672,162.75341816367265,163.3626746506986,163.97193113772454,164.5811876247505,165.19044411177646,165.7997005988024,166.40895708582835,167.01821357285428,167.62747005988024,168.2367265469062,168.84598303393213,169.4552395209581,170.06449600798402,170.67375249500998,171.28300898203594,171.89226546906187,172.50152195608783,173.11077844311376,173.72003493013972,174.32929141716568,174.9385479041916,175.54780439121757,176.1570608782435,176.76631736526946,177.37557385229542,177.98483033932135,178.5940868263473,179.20334331337327,179.8125998003992,180.42185628742516,181.0311127744511,181.64036926147705,182.249625748503,182.85888223552894,183.4681387225549,184.07739520958083,184.6866516966068,185.29590818363275,185.90516467065868,186.51442115768464,187.12367764471057,187.73293413173653,188.3421906187625,188.95144710578842,189.56070359281438,190.1699600798403,190.77921656686627,191.38847305389223,191.99772954091816,192.60698602794412,193.21624251497005,193.825499001996,194.43475548902197,195.0440119760479,195.65326846307386,196.2625249500998,196.87178143712575,197.4810379241517,198.09029441117764,198.6995508982036,199.30880738522953,199.9180638722555,200.52732035928145,201.13657684630738,201.74583333333334,202.35508982035927,202.96434630738523,203.5736027944112,204.18285928143712,204.79211576846308,205.401372255489,206.01062874251497,206.61988522954093,207.22914171656686,207.83839820359282,208.44765469061878,209.0569111776447,209.66616766467067,210.2754241516966,210.88468063872256,211.49393712574852,212.10319361277445,212.7124500998004,213.32170658682634,213.9309630738523,214.54021956087826,215.1494760479042,215.75873253493015,216.36798902195608,216.97724550898204,217.586501996008,218.19575848303393,218.8050149700599,219.41427145708582,220.02352794411178,220.63278443113774,221.24204091816367,221.85129740518963,222.46055389221556,223.06981037924152,223.67906686626748,224.2883233532934,224.89757984031937,225.5068363273453,226.11609281437126,226.72534930139722,227.33460578842315,227.9438622754491,228.55311876247504,229.162375249501,229.77163173652696,230.3808882235529,230.99014471057885,231.59940119760478,232.20865768463074,232.8179141716567,233.42717065868263,234.0364271457086,234.64568363273452,235.25494011976048,235.86419660678644,236.47345309381237,237.08270958083833,237.69196606786429,238.30122255489022,238.91047904191618,239.5197355289421,240.12899201596807,240.73824850299403,241.34750499001996,241.95676147704592,242.56601796407185,243.1752744510978,243.78453093812377,244.3937874251497,245.00304391217566,245.6123003992016,246.22155688622755,246.8308133732535,247.44006986027944,248.0493263473054,248.65858283433133,249.2678393213573,249.87709580838325,250.48635229540918,251.09560878243514,251.70486526946107,252.31412175648703,252.92337824351299,253.53263473053892,254.14189121756488,254.7511477045908,255.36040419161677,255.96966067864273,256.57891716566866,257.1881736526946,257.7974301397206,258.40668662674653,259.01594311377244,259.6251996007984,260.23445608782436,260.8437125748503,261.4529690618763,262.0622255489022,262.67148203592814,263.2807385229541,263.88999500998005,264.499251497006,265.1085079840319,265.7177644710579,266.32702095808384,266.9362774451098,267.54553393213575,268.15479041916166,268.7640469061876,269.3733033932136,269.98255988023953,270.5918163672655,271.2010728542914,271.81032934131736,272.4195858283433,273.0288423153693,273.63809880239523,274.24735528942114,274.8566117764471,275.46586826347306,276.075124750499,276.684381237525,277.2936377245509,277.90289421157684,278.5121506986028,279.12140718562875,279.7306636726547,280.3399201596806,280.9491766467066,281.55843313373254,282.1676896207585,282.77694610778445,283.38620259481036,283.9954590818363,284.6047155688623,285.21397205588823,285.8232285429142,286.4324850299401,287.04174151696606,287.650998003992,288.260254491018,288.86951097804393,289.47876746506984,290.0880239520958,290.69728043912176,291.3065369261477,291.9157934131737,292.5250499001996,293.13430638722554,293.7435628742515,294.35281936127745,294.9620758483034,295.5713323353293,296.1805888223553,296.78984530938123,297.3991017964072,298.00835828343315,298.61761477045906,299.226871257485,299.836127744511,300.44538423153693,301.0546407185629,301.6638972055888,302.27315369261476,302.8824101796407,303.4916666666667,304.10092315369263,304.71017964071854,305.3194361277445,305.92869261477045,306.5379491017964,307.1472055888224,307.7564620758483,308.36571856287424,308.9749750499002,309.58423153692615,310.1934880239521,310.802744510978,311.412000998004,312.02125748502993,312.6305139720559,313.23977045908185,313.8490269461078,314.4582834331337,315.0675399201597,315.67679640718563,316.2860528942116,316.89530938123755,317.50456586826346,318.1138223552894,318.7230788423154,319.33233532934133,319.9415918163673,320.5508483033932,321.16010479041915,321.7693612774451,322.3786177644711,322.98787425149703,323.59713073852294,324.2063872255489,324.81564371257485,325.4249001996008,326.0341566866268,326.6434131736527,327.25266966067863,327.8619261477046,328.47118263473055,329.0804391217565,329.6896956087824,330.2989520958084,330.90820858283433,331.5174650698603,332.12672155688625,332.73597804391216,333.3452345309381,333.9544910179641,334.56374750499003,335.173003992016,335.7822604790419,336.39151696606785,337.0007734530938,337.6100299401198,338.21928642714573,338.82854291417163,339.4377994011976,340.04705588822355,340.6563123752495,341.2655688622755,341.8748253493014,342.48408183632733,343.0933383233533,343.70259481037925,344.3118512974052,344.9211077844311,345.5303642714571,346.13962075848303,346.748877245509,347.35813373253495,347.96739021956085,348.5766467065868,349.1859031936128,349.79515968063873,350.4044161676647,351.0136726546906,351.62292914171655,352.2321856287425,352.8414421157685,353.45069860279443,354.05995508982033,354.6692115768463,355.27846806387225,355.8877245508982,356.4969810379242,357.1062375249501,357.71549401197603,358.324750499002,358.93400698602795,359.5432634730539,360.1525199600798,360.7617764471058,361.37103293413173,361.9802894211577,362.58954590818365,363.19880239520955,363.8080588822355,364.4173153692615,365.02657185628743,365.6358283433134,366.2450848303393,366.85434131736525,367.4635978043912,368.0728542914172,368.68211077844313,369.29136726546903,369.900623752495,370.50988023952095,371.1191367265469,371.7283932135729,372.3376497005988,372.94690618762473,373.5561626746507,374.16541916167665,374.7746756487026,375.38393213572857,375.9931886227545,376.60244510978043,377.2117015968064,377.82095808383235,378.4302145708583,379.0394710578842,379.6487275449102,380.25798403193613,380.8672405189621,381.47649700598805,382.08575349301395,382.6950099800399,383.3042664670659,383.91352295409183,384.5227794411178,385.1320359281437,385.74129241516965,386.3505489021956,386.9598053892216,387.56906187624753,388.17831836327343,388.7875748502994,389.39683133732535,390.0060878243513,390.61534431137727,391.2246007984032,391.83385728542913,392.4431137724551,393.05237025948105,393.661626746507,394.2708832335329,394.8801397205589,395.48939620758483,396.0986526946108,396.70790918163675,397.31716566866265,397.9264221556886,398.5356786427146,399.14493512974053,399.7541916167665,400.3634481037924,400.97270459081835,401.5819610778443,402.19121756487027,402.80047405189623,403.40973053892213,404.0189870259481,404.62824351297405,405.2375,405.84675648702597,406.4560129740519,407.06526946107783,407.6745259481038,408.28378243512975,408.8930389221557,409.5022954091816,410.1115518962076,410.72080838323353,411.3300648702595,411.93932135728545,412.54857784431135,413.1578343313373,413.7670908183633,414.37634730538923,414.9856037924152,415.5948602794411,416.20411676646705,416.813373253493,417.42262974051897,418.03188622754493,418.64114271457083,419.2503992015968,419.85965568862275,420.4689121756487,421.07816866267467,421.6874251497006,422.29668163672653,422.9059381237525,423.51519461077845,424.1244510978044,424.7337075848303,425.3429640718563,425.95222055888223,426.5614770459082,427.17073353293415,427.77999001996005,428.389246506986,428.998502994012,429.60775948103793,430.2170159680639,430.8262724550898,431.43552894211575,432.0447854291417,432.65404191616767,433.26329840319363,433.87255489021953,434.4818113772455,435.09106786427145,435.7003243512974,436.30958083832337,436.91883732534933,437.52809381237523,438.1373502994012,438.74660678642715,439.3558632734531,439.96511976047907,440.574376247505,441.18363273453093,441.7928892215569,442.40214570858285,443.0114021956088,443.6206586826347,444.22991516966067,444.83917165668663,445.4484281437126,446.05768463073855,446.66694111776445,447.2761976047904,447.88545409181637,448.49471057884233,449.1039670658683,449.7132235528942,450.32248003992015,450.9317365269461,451.54099301397207,452.15024950099803,452.75950598802393,453.3687624750499,453.97801896207585,454.5872754491018,455.19653193612777,455.8057884231537,456.41504491017963,457.0243013972056,457.63355788423155,458.2428143712575,458.8520708582834,459.46132734530937,460.07058383233533,460.6798403193613,461.28909680638725,461.89835329341315,462.5076097804391,463.11686626746507,463.72612275449103,464.335379241517,464.9446357285429,465.55389221556885,466.1631487025948,466.77240518962077,467.38166167664673,467.99091816367263,468.6001746506986,469.20943113772455,469.8186876247505,470.42794411177647,471.0372005988024,471.64645708582833,472.2557135728543,472.86497005988025,473.4742265469062,474.0834830339321,474.69273952095807,475.30199600798403,475.91125249501,476.52050898203595,477.12976546906185,477.7390219560878,478.34827844311377,478.95753493013973,479.5667914171657,480.1760479041916,480.78530439121755,481.3945608782435,482.00381736526947,482.61307385229543,483.22233033932133,483.8315868263473,484.44084331337325,485.0500998003992,485.65935628742517,486.26861277445107,486.87786926147703,487.487125748503,488.09638223552895,488.7056387225549,489.3148952095808,489.92415169660677,490.53340818363273,491.1426646706587,491.75192115768465,492.36117764471055,492.9704341317365,493.57969061876247,494.18894710578843,494.7982035928144,495.4074600798403,496.01671656686625,496.6259730538922,497.23522954091817,497.84448602794413,498.4537425149701,499.062999001996,499.67225548902195,500.2815119760479,500.89076846307387,501.5000249500998,502.10928143712573,502.7185379241517,503.32779441117765,503.9370508982036,504.54630738522957,505.15556387225547,505.76482035928143,506.3740768463074,506.98333333333335,507.5925898203593,508.2018463073852,508.81110279441117,509.42035928143713,510.0296157684631,510.63887225548905,511.24812874251495,511.8573852295409,512.4666417165669,513.0758982035928,513.6851546906188,514.2944111776447,514.9036676646707,515.5129241516966,516.1221806387225,516.7314371257485,517.3406936127744,517.9499500998004,518.5592065868263,519.1684630738523,519.7777195608783,520.3869760479042,520.9962325349302,521.605489021956,522.214745508982,522.824001996008,523.4332584830339,524.0425149700599,524.6517714570858,525.2610279441118,525.8702844311377,526.4795409181637,527.0887974051897,527.6980538922156,528.3073103792415,528.9165668662674,529.5258233532934,530.1350798403193,530.7443363273453,531.3535928143713,531.9628493013972,532.5721057884232,533.1813622754491,533.7906187624751,534.399875249501,535.0091317365269,535.6183882235529,536.2276447105788,536.8369011976048,537.4461576846307,538.0554141716567,538.6646706586827,539.2739271457086,539.8831836327346,540.4924401197604,541.1016966067864,541.7109530938123,542.3202095808383,542.9294660678643,543.5387225548902,544.1479790419162,544.7572355289421,545.3664920159681,545.9757485029941,546.5850049900199,547.1942614770459,547.8035179640718,548.4127744510978,549.0220309381237,549.6312874251497,550.2405439121757,550.8498003992016,551.4590568862276,552.0683133732535,552.6775698602794,553.2868263473054,553.8960828343313,554.5053393213573,555.1145958083832,555.7238522954092,556.3331087824351,556.9423652694611,557.5516217564871,558.160878243513,558.7701347305389,559.3793912175648,559.9886477045908,560.5979041916167,561.2071606786427,561.8164171656687,562.4256736526946,563.0349301397206,563.6441866267465,564.2534431137725,564.8626996007984,565.4719560878243,566.0812125748503,566.6904690618762,567.2997255489022,567.9089820359281,568.5182385229541,569.1274950099801,569.736751497006,570.346007984032,570.9552644710578,571.5645209580838,572.1737774451097,572.7830339321357,573.3922904191617,574.0015469061876,574.6108033932136,575.2200598802395,575.8293163672655,576.4385728542915,577.0478293413173,577.6570858283433,578.2663423153692,578.8755988023952,579.4848552894211,580.0941117764471,580.7033682634731,581.312624750499,581.921881237525,582.531137724551,583.1403942115768,583.7496506986027,584.3589071856287,584.9681636726547,585.5774201596806,586.1866766467066,586.7959331337325,587.4051896207585,588.0144461077845,588.6237025948104,589.2329590818364,589.8422155688622,590.4514720558882,591.0607285429141,591.6699850299401,592.2792415169661,592.888498003992,593.497754491018,594.107010978044,594.7162674650699,595.3255239520959,595.9347804391217,596.5440369261477,597.1532934131736,597.7625499001996,598.3718063872255,598.9810628742515,599.5903193612775,600.1995758483034,600.8088323353294,601.4180888223553,602.0273453093812,602.6366017964071,603.2458582834331,603.8551147704591,604.464371257485,605.073627744511,605.682884231537,606.2921407185629,606.9013972055889,607.5106536926148,608.1199101796407,608.7291666666666,609.3384231536926,609.9476796407185,610.5569361277445,611.1661926147705,611.7754491017964,612.3847055888224,612.9939620758483,613.6032185628743,614.2124750499001,614.8217315369261,615.4309880239521,616.040244510978,616.649500998004,617.25875748503,617.8680139720559,618.4772704590819,619.0865269461078,619.6957834331338,620.3050399201596,620.9142964071856,621.5235528942115,622.1328093812375,622.7420658682635,623.3513223552894,623.9605788423154,624.5698353293413,625.1790918163673,625.7883483033933,626.3976047904191,627.0068612774451,627.616117764471,628.225374251497,628.834630738523,629.4438872255489,630.0531437125749,630.6624001996008,631.2716566866268,631.8809131736527,632.4901696606786,633.0994261477045,633.7086826347305,634.3179391217565,634.9271956087824,635.5364520958084,636.1457085828343,636.7549650698603,637.3642215568863,637.9734780439122,638.5827345309381,639.191991017964,639.80124750499,640.410503992016,641.0197604790419,641.6290169660679,642.2382734530938,642.8475299401198,643.4567864271457,644.0660429141717,644.6752994011975,645.2845558882235,645.8938123752495,646.5030688622754,647.1123253493014,647.7215818363273,648.3308383233533,648.9400948103793,649.5493512974052,650.1586077844312,650.7678642714571,651.377120758483,651.986377245509,652.5956337325349,653.2048902195609,653.8141467065868,654.4234031936128,655.0326596806387,655.6419161676647,656.2511726546907,656.8604291417166,657.4696856287425,658.0789421157684,658.6881986027944,659.2974550898203,659.9067115768463,660.5159680638723,661.1252245508982,661.7344810379242,662.3437375249501,662.9529940119761,663.562250499002,664.1715069860279,664.7807634730539,665.3900199600798,665.9992764471058,666.6085329341317,667.2177894211577,667.8270459081837,668.4363023952096,669.0455588822356,669.6548153692614,670.2640718562874,670.8733283433133,671.4825848303393,672.0918413173653,672.7010978043912,673.3103542914172,673.9196107784431,674.5288672654691,675.1381237524951,675.7473802395209,676.3566367265469,676.9658932135728,677.5751497005988,678.1844061876247,678.7936626746507,679.4029191616767,680.0121756487026,680.6214321357286,681.2306886227545,681.8399451097804,682.4492015968063,683.0584580838323,683.6677145708583,684.2769710578842,684.8862275449102,685.4954840319361,686.1047405189621,686.7139970059881,687.323253493014,687.9325099800399,688.5417664670658,689.1510229540918,689.7602794411177,690.3695359281437,690.9787924151697,691.5880489021956,692.1973053892216,692.8065618762475,693.4158183632735,694.0250748502993,694.6343313373253,695.2435878243513,695.8528443113772,696.4621007984032,697.0713572854291,697.6806137724551,698.2898702594811,698.899126746507,699.508383233533,700.1176397205588,700.7268962075848,701.3361526946107,701.9454091816367,702.5546656686627,703.1639221556886,703.7731786427146,704.3824351297405,704.9916916167665,705.6009481037925,706.2102045908183,706.8194610778443,707.4287175648702,708.0379740518962,708.6472305389221,709.2564870259481,709.8657435129741,710.475]} +{"expected":[0.01,-0.0033746253790549624,-0.007622018879319136,0.008433494207046853,0.001889004559574384,-0.00959763287124854,0.0045548640918855405,0.00643775365526481,-0.008809666729723751,-0.000468327621357804,0.009021878600127204,-0.005574489042175532,-0.005188845438344393,0.008984167322636266,-0.0008822361340235784,-0.008293387424072578,0.006423300008544533,0.00390249149724315,-0.00896491048167861,0.0021410030233847974,0.007434361161677098,-0.0070945391115908776,-0.002605153786703288,0.0087627445091276,-0.003288961215575298,-0.006468148173580897,0.007584861802057748,0.001322173628641932,-0.008391166572328667,0.004309966210916445,0.005418829024186577,-0.007894256760515254,-0.00007741137080101638,0.00786600339799083,-0.005190888286691567,-0.004310799964470551,0.008025916288409504,-0.0011070829665529621,-0.00720506320694166,0.0059217096985319595,0.0031683612909959584,-0.007986059728650302,0.002211362742764597,0.006427764980119337,-0.006495570438395232,-0.002015317447555855,0.007783713328832359,-0.003217836901260242,-0.005554751504162455,0.0069087623461371135,0.0008745954285802678,-0.007430450743094688,0.004111477604627807,0.004607492872683843,-0.007160672340873091,0.00023211237554265316,0.006940099051174486,-0.004879980448715341,-0.0036078872171936413,0.007253676467270752,-0.0012846752729141803,-0.006328415747875719,0.005513875305599021,0.002577865411407692,-0.007192987327410233,0.002264816300126859,0.005612742616618405,-0.00600658676302084,-0.00153900633791215,0.006986458278165595,-0.0031563648778605274,-0.004811642742160233,0.006354444046560059,0.0005121690322926351,-0.006644348505237545,0.003945466543090176,0.003944527136917611,-0.006556641214801915,0.00048285236585137326,0.00617905372724083,-0.0046207470221406475,-0.0030312775513807594,0.006615149291794282,-0.0014276454140797585,-0.0056048078272581455,0.005173428759011166,0.002091872012714056,-0.006534582830377916,0.0023054630602133983,0.004937361147319414,-0.005597398884782191,-0.0011460194895600748,0.006322024170613043,-0.003101470027877635,-0.004193641507483116,0.005889228490530021,0.00021280982010589674,-0.005986809356747114,0.003802948422578564,0.0033914042216771465,-0.006048143932118084,0.0006896153286842611,0.005540280292535628,-0.004399459866491001,-0.0025488774753354643,0.006075951734989388,-0.0015443651716269698,-0.004995508238426995,0.0048829622877020395,0.00168440940535812,-0.005976919465789322,0.002336071445060531,0.00436699417707134,-0.005247880329196343,-0.0008161230833134467,0.005757615681360099,-0.003051124871582776,-0.0036703518896386025,0.005491129188702045,-0.00003841464759629526,-0.005426712741594785,0.0036778730471761206,0.002921979790357042,-0.005612092537049578,0.000862504886225179,0.004994756869438384,-0.004206777101008821,-0.0021387276583954965,0.005612555974717905,-0.001640603793679084,-0.00447391034918115,0.0046305252678440646,0.0013375643846813207,-0.005496598259191423,0.002358580514084293,0.003877671165064496,-0.004944102324323375,-0.0005352527185069069,0.005270443255972866,-0.003003941903847979,-0.003220575689940079,0.005144814658170978,-0.00025196324112337605,-0.004942276221088671,0.0035660207544181725,0.002517890234124859,-0.005232271548429072,0.0010086524055568644,0.0045220286015450195,-0.004036124920485116,-0.0017852973554887096,0.0052083240203809455,-0.001720467938676326,-0.004021136032862963,0.004407645528211705,0.00103858281312451,-0.005076963386680254,0.002374390930557525,0.003452274611672536,-0.004676123221830755,-0.000293328920583648,0.004844182283096554,-0.0029589426438823055,-0.0028290808203536187,0.004839272196996332,-0.0004353801754854635,-0.0045178016410455345,0.00346436212758138,0.0021658606757821207,-0.004896962550898842,0.0011332360936159342,0.0041072675988673485,-0.0038827466936394977,-0.0014772937632670537,0.004851162237974012,-0.0017869619136926833,-0.003623422830336836,0.004208153488994983,0.0007781377996418393,-0.004705840642293678,0.0023845416920389327,0.0030782571544993855,-0.004436661150818149,-0.00008293924808134595,0.004466836450525034,-0.0029154200873884777,-0.0024846425797872,0.00456639129577918,-0.000594244714662356,-0.004141693120882942,0.003370669019868411,0.001856058123530432,-0.004597490347915285,0.0012401078946157153,0.0037394657832780214,-0.003743118961844232,-0.0012063098334202998,0.004532072941424919,-0.0018423358607942096,-0.0032705038648665596,0.004027453169436672,0.0005492514201438184,-0.004374128830803134,0.0023898217124098888,0.0027462141060571542,-0.0042202638929199066,0.0001014892078418608,0.004129395888683835,-0.0028728532875289745,-0.0021788089090985915,0.004320070339086555,-0.0007327724318554683,-0.0038052023601414537,0.0032832688759818953,0.0015810451408781274,-0.004327298885133179,0.0013321936644063676,0.0034102820608713055,-0.003614579152420938,-0.0009659585916019596,0.0042442267481438865,-0.0018883099676065612,-0.0029545666469105447,0.003862053730280365,0.0003465992716145695,-0.004074890983889265,0.002390842639114913,0.002448959438274671,-0.004022771440620501,0.00026422738837701204,0.0038249653113078845,-0.0028308523893977476,-0.001905095542674953,0.004095634147866093,-0.0008542085792722223,-0.003501607823646661,0.0032008843221029396,0.0013350931947516316,-0.004081344613809632,0.0014117568426467166,0.0031132831440029004,-0.003495080560118109,-0.000751301299248045,0.0039823495988200956,-0.0019262233125530552,-0.0026695630035545965,0.0037092590208348468,0.00016604814335501283,-0.003802750032448531,0.00238808774933818,0.0021809095582688387,-0.0038409575222055825,0.0004086038740077174,0.003548180682849912,-0.00278912216160145,-0.0016584460091960713,0.0038894430832158615,-0.0009610928562487279,-0.003225662294979352,0.0031225253816182913,0.0011137192491960006,-0.003855686955326962,0.0014805770200375756,0.0028434296419308706,-0.003383026569449437,-0.0005584593235005616,0.0037423065725655123,-0.0019571353282153824,-0.002410739334022185,0.0035669562592685992,0.000004340463089199634,-0.003553476225131052,0.002381945611343005,0.0019376615497718379,-0.003672284215497602,0.0005372516695656682,0.0032948088333592442,-0.0027474371465572647,-0.0014348600868823633,0.0036986240233832955,-0.0010554420895805701,-0.0029732117153399543,0.003047415214307232,0.0009133652765595503,-0.0036472049859943957,0.0015400738095075364,0.002596719693376865,-0.003277155743961312,-0.0003843443595345254,0.003520812524978191,-0.001981896589820398,-0.0021743092640833387,0.0034334687762567285,-0.0001411261126639814,-0.003323698874081737,0.0023727337708766235,0.0017156978580311923,-0.003514730101806216,0.0006522814102675338,0.0030614664015164317,-0.002705624325836564,-0.0012311324328946071,0.003520881067978818,-0.0011388790574619577,-0.002740926389843438,0.0029749378100310947,0.0007311717760163106,-0.0034533971691657716,0.0015913946155659104,0.0023699365314837134,-0.0031764604545482227,-0.00022646693702463983,0.0033152266358330964,-0.0020011992261728833,-0.001957220756854529,0.0033074512487201294,-0.00027245583099065574,-0.0031107008045504225,0.002360715744923774,0.0015121752946147878,-0.0033666674657802775,0.0007554053700443383,0.00284541857387878,-0.002663550773165199,-0.001044665065235685,0.0033543596961918744,-0.001212725111614123,-0.002526107720106278,0.002904600416141118,0.0005648146273983649,-0.0032722370521445954,0.0016354780062711222,0.002160466254018691,-0.003080128151737152,-0.000082797930510248,0.0031234037829790946,-0.002015613480508536,-0.00175698733817825,0.0031878137718127416,-0.0003913689234629894,-0.002912269083932181,0.0023461134262495863,0.0013247715479915683,-0.003226772947196665,0.0008480278373982253,0.0026444323795080907,-0.002621114694188058,-0.0008733304451363718,0.0031975475558126023,-0.0012780679337996753,-0.0023265468088722987,0.0028360060700229743,0.0004123855362323381,-0.003102067489642725,0.0016731002473195156,0.001966164025988275,-0.002987498252220287,0.00004833328785673103,0.002943585209223255,-0.002025614663560462,-0.0015715637451245235,0.003073665910135281,-0.0004992857952449686,-0.002726584833597506,0.0023291162790907956,0.0011515717076079155,-0.0030939614708402024,0.0009313120391705081,0.0024566680294338806,-0.002578238813341514,-0.000715369914541897,0.0030492008505353272,-0.0013358118795590603,-0.002140419386636313,0.0027688331984681023,0.00027230306044425507,-0.0029415219008097995,0.0017049099941755753,0.0017852543316613596,-0.0028980299980183146,0.00016831488624009116,0.0027743168705652277,-0.0020316033182352874,-0.0013992529276129046,0.002964274848589291,-0.0005973900770956857,-0.0025521406810003954,0.0023098882513615314,0.0009909831370976026,-0.0029673366695994975,0.0010062304166468866,0.002280597264378061,-0.002534865417417635,-0.0005693172763382291,0.0029082889338595324,-0.0013867159137674443,-0.0019662066190262472,0.0027028202465121734,0.00014324546521498255,-0.0027894648250310636,0.001731454512834913,0.0016162555759663638,-0.0028112781592852815,0.0002783101226767328,0.002614387616968737,-0.002033920507690205,-0.001238635550763712,0.002859033660935118,-0.0006866764820938022,-0.002387678084620776,0.0022885730357688917,0.000841670763073588,-0.0028461531856580177,0.0010736028917752718,0.002114941187700384,-0.002490952588011033,-0.0004339405427495209,0.0027739520605998113,-0.0014314225634394463,-0.0018026346487828543,0.0026377539430179966,0.000024099403604626595,-0.0026449464716313343,0.0017531997460879121,0.0014579223699989954,-0.002726874431534224,0.00037930144622244015,0.002462781801289147,-0.0020328595469610695,-0.0010885158914870888,0.0027574369494554997,-0.0007679875735691736,-0.0022321391627136557,0.0022652981196188125,0.000702507285968018,-0.002729787653816416,0.0011341263410876764,0.0019586223638290937,-0.00244647130004073,-0.0003081970043560719,0.002645468786255706,-0.0014704802733878732,-0.0016486278957671848,0.0025734602342109597,-0.00008607976421486678,-0.0025071675622243285,0.0017705458451201643,0.0013092008421668711,-0.002644513025712797,0.0004721246781596627,0.0023186425320669743,-0.002028675104990842,-0.0009478798462329672,0.002659061929424631,-0.0008420423294057347,-0.0020846292530919777,0.0022401779340787444,0.0005725344463660855,-0.002617716117379471,0.0011883975459047247,0.00181072750167585,-0.002401403159898697,-0.0001911981961946872,0.00252223053520494,-0.00150436085260325,-0.0015032725941173384,0.0025097972004579777,-0.00018809898018486252,-0.0023754518425589425,0.0017838393165831475,0.0011691936682461637,-0.0025639393856203506,0.0005574957818355751,0.002181242879348386,-0.002021590337661687,-0.0008158619997894686,0.0025635535866886197,-0.0009094585606012332,-0.0019443875126433023,0.0022133163256927288,0.00045093258457585547,-0.002509496269414901,0.0012369312421345489,0.0016704780892682278,-0.0023557386219282845,-0.00008218230752615857,0.0024037215609318827,-0.001533473223012741,-0.001365788039216979,0.0024466494652647408,-0.0002826519588731703,-0.0022492243779544466,0.0017933826134725838,0.0010371324395297126,-0.002484941265751537,0.0006360320298354078,0.002049963093101947,-0.0020118025292847827,-0.0006917195525119262,0.0024706129178784933,-0.0009707706722735125,-0.0018107636100686472,0.002184808512062205,0.00033699649284626125,-0.002404753355323932,0.0012801744470596899,0.001537207069170819,-0.0023094755667628676,0.000019507746753487322,0.002289503007619787,-0.0015581743520317768,-0.0012355037060267395,0.0023839237396364385,-0.00037033867283502197,-0.0021279942584771353,0.0017994417741892838,0.0009123556323570743,-0.002407341610307096,0.0007082688896385101,0.001924272416723798,-0.001999487592035099,-0.0005748114948746359,0.002379987528811685,-0.0010264438571449548,-0.001683199086011227,0.0021547426407978825,0.00023011609295240612,-0.0023031688829249506,0.0013185179278607563,0.001410340151546865,-0.00226261815632344,0.00011444190350763413,0.0021792001238734966,-0.0015787780180434162,-0.0011118408849488351,0.002321545239227773,-0.00045168099825255704,-0.0020113407007838497,0.0018022525561288292,0.0007942908968153683,-0.0023309928205821405,0.0007746736043426581,0.001803714447662988,-0.0019848036822188407,-0.0004645818368192538,0.0022914640549012346,-0.0010768855293036537,-0.0015612123237860743,0.0021232010403929814,0.0001297608503656892,-0.002204471506490353,0.0013523054543425155,0.0012893807223029292,-0.0022151759024297097,0.0002031171523614491,0.002072491922429874,-0.0015955618922985336,-0.0009942978268588042,0.002259454778879646,-0.0005271353749706217,-0.0018989017911572215,0.0018020253971051474,0.0006824407072985435,-0.0022557721026356748,0.0008356561984161872,0.0016878952618040433,-0.0019678941272325413,-0.00036054599946802374,0.0022048620023513398,-0.001122454603471095,-0.0014443863389041823,0.0020902612296847677,0.0000354671083238826,-0.0021084296094975655,0.0013818413183534276,0.0011738975633771888,-0.002167162901846324,0.0002859690931723308,0.0019691027549326263,-0.0016087733011967177,-0.000882437638330581,0.0021976063975728925,-0.0005971031245060763,-0.0017903653004237641,0.001798949456116054,0.0005763706527763578,-0.0021815776628847307,0.0008915784597268142,0.0015764737099661576,-0.0019488898098829778,-0.0002622796945123937,0.002120028706833092,-0.0011634690778397434,-0.00133235878806569,0.002055996736555064,-0.00005317227695481571,-0.0020148452260280994,0.0014073964858683516,0.0010635147912839954,-0.002118597202116705,0.0003633814063964488,0.0018687953986439004,-0.001618633945617953,-0.0007758783501296758,0.0021359654021759706,-0.0006619389156958006,-0.001685461137567241,0.0017931959250680322,0.0004756998166979747,-0.002108325574690938,0.0009427613181347118,0.0014691534354072185,-0.0019279111220849552,-0.00016940977630202798,0.0020368351781634214,-0.0012002122704387638,-0.0012248137397222571,0.0020204777647040138,-0.0001365164731501839,-0.0019235490254383598,0.001429213661905231,0.0009579035592634622,-0.0020695002709836996,0.00043569366276668194,0.001771365346153946,-0.0016253437895462407,-0.0006742847164405341,0.002074506744423042,-0.0007219577539746244,-0.001583955109401834,0.0017849207587636168,0.0003800928237751474,-0.0020359471799921113,0.0009894909439983504,0.001365676265258973,-0.0019050695742462466,-0.00008160667009977071,0.0019551726527607546,-0.0012329379787893553,-0.0011214748532388037,0.0019837717385284585,-0.00021488374589178938,-0.0018343961478594086,0.0014475114846589161,0.0008567751719113934,-0.0020198965484687923,0.0005032078018533034,0.0016766360593018427,-0.0016290842822227678,-0.0005773614024287887,0.0020132136649767046,-0.0007774407854154982,-0.001485643728726439,0.0017742669373665958,0.00028925322595191566,-0.0019643869206406876,0.001032023817418387,0.0012658167066469663,-0.0018804691274104883,0.0000014219314192059985,0.0018749497155054894,-0.0012618747724836893,-0.0010220996923464246,0.0019459437495293614,-0.0002885573539851103,-0.0017472627252814671,0.0014624880173070333,0.000759875338937036,-0.001969813065372363,0.0005661935363351936,0.0015844550012379893,-0.0016300210419186326,-0.00048484729311842076,0.0019520765530275522,-0.0008286401427992488,-0.0013903498698962624,0.001761366350587126,0.0002029179715772622,-0.0018936005171811343,0.001070590964359338,0.0011693773369627605,-0.0018542073006706367,0.00007993634436630187,0.001796089882737794,-0.001287229582897214,-0.0009264749580346582,0.00190705692264887,-0.000357790488405239,-0.0016620429587037447,0.001474323669667731,0.000666979353589724,-0.001919279115500805,0.0006248928836065682,0.001494690300540488,-0.0016283061020082176,-0.00039651071375081354,0.0018910919809583453,-0.0008757830124216558,-0.0012979191136915354,0.001746341373859158,0.00012085275628620108,-0.001823553430342144,0.0011054015141281398,0.0010761849224576528,-0.0018263760952866859,0.00015416933249647887,0.0017185295610630813,-0.0013091907195737172,-0.0008344124713796399,0.001867172717108242,-0.00042281043082654894,-0.0015786466491034894,0.0014831836541463507,0.000577888026299939,-0.0018683259716293663,0.0006795239841810711,0.0014072279318751814,-0.0016240797990220387,-0.0003121453955687333,0.0018302618820712844,-0.0009190750631916303,-0.0012082166562672975,0.0017293061922154344,0.000042848095910588676,-0.001754219553962642,0.0011366457007577196,0.0009860871336272348,-0.0017970627684170263,0.00022432985947940388,0.001642216314245644,-0.00132793041619937,-0.000745745771673329,0.0018263511733560237,-0.00048382207139291455,-0.001496997100948329,0.0014892200590753374,0.0004924242387303761,-0.0018169866372816674,0.000730284333815972,0.0013219693212437487,-0.0016174723661781761,-0.00023156705474265918,0.0017695928459084888,-0.0009587033508575022,-0.0011211246823503444,0.0017103679163289168,-0.000031284005997565645,-0.0016855800984575933,0.0011644974061324103,0.000898949752385515,-0.0017663504827774893,0.00029060627506083647,0.0015671073840996523,-0.001343606988452282,-0.0006603272222014626,0.0017846511154448806,-0.0005410108975245877,-0.0014170293332391715,0.001492573605985117,0.00041043001032005426,-0.0017652956280132586,0.0007773535310730766,0.0012388293021558306,-0.0016086052833111516,-0.0001546104783725948,0.001709095510765675,-0.0009948387879098184,-0.001036540122601161,0.0016896275264316656,-0.00010171289829495539,-0.0016176226320130786,0.0011891163234524363,0.0008146542866641094,-0.0017343188534058138,0.0003531690319383539,0.0014931684219100807,-0.0013563666699270584,-0.0005780255370831861,0.001742130316358363,-0.0005945455437270626,-0.001338688545766597,0.0014933751444066359,0.0003317639903807079,-0.0017132887771369898,0.0008208956222786434,0.0011577343633633864,-0.001597592424277112,-0.00008112703202977462,0.0016487840369650121,-0.0010276382522176027,-0.0009543727305231596,0.0016671806729632347,-0.0001685917126398524,-0.0015503402530239307,0.0012106498045694487,0.0007330959242867455,-0.0017010444086675823,0.00041217301165898763,0.0014203723952454072,-0.0013663451796973138,-0.0004987236591255881,0.0016988456323976096,-0.000644579975265785,-0.001261928798224407,0.0014917469276472496,0.00025629930533804004,-0.001661003061809122,0.0008610611103393504,0.001078621140041301,-0.0015845410351623059,-0.000010982519468670268,0.001588675647577043,-0.0010572463937182544,-0.0008745434264680063,0.0016431183573983941,-0.00023205945121231676,-0.0014837308722831706,0.0012292344428094005,0.0006541817707338698,-0.0016666009794538096,0.00046775952319143125,0.0013486986416117019,-0.0013736690651118403,-0.00042231693169361435,0.0016548531116204845,-0.0006912553649986834,-0.0011867118677229454,0.0014878037049223778,0.00018392170375762485,-0.0016084764461720084,0.0008979886815637,0.0010014351092189444,-0.0015695525704905507,0.00005594466207552277,0.0015287902257490346,-0.001083797187546618,-0.0007969828659632944,0.0016175275124054767,-0.0002922427865284056,-0.0014177965873931977,0.0012449974334534334,0.0005778293255745284,-0.0016310600279888488,0.0005200580262196091,0.0012781320456142983,-0.0013784568554704394,-0.0003487115180043474,0.0016102080804333118,-0.0007347017119004154,-0.0011130062565073524,0.0014816536588215525,0.00011452795221224462,-0.0015557477388619453,0.0009318066948683035,0.00092612945734861,-0.001552723409721847,0.00011976511736049848,0.001469149959770467,-0.0011074152733014948,-0.0007216301972786769,0.0015904914970633767,-0.0003492576182697266,-0.0013525431350203407,0.001258057746515065,0.0005039651604261612,-0.0015944909256388486,0.0005691876218907034,0.0012086623204786548,-0.0013808200558933436,-0.0002778230295433546,0.0015649652117235575,-0.0007750392411754451,-0.0010407863267157488,0.0014733992119670871,0.000048024443351710324,-0.0015028564626857373,0.0009626344698868147,0.000852664093594242,-0.0015341454724189692,0.0001805798375757076,0.0014097790285858799,-0.0011282171131553429,-0.0006484319793394448,0.0015620905201192293,-0.00040321042418424126,-0.0012879794091582,0.0012685271403792076,0.00043252376782482155,-0.0015569611874856634,0.0006152583463028969,0.001140283378138452,-0.001380864005588963,-0.00020957533199357617,0.0015191785773452852,-0.0008123796189423287,-0.0009700315430348592,0.0014631377225859693,-0.00001567401574594861,-0.001449842734661874,0.0009905834041994542,0.0007810047870022233,-0.0015139067472927914,0.00023848140533292832,0.0013507033217300011,-0.0011463119959027066,-0.0005773412360600683,0.0015324020020463702,-0.0004541994357349061,-0.0012241170356022742,0.0012765110399913272,0.00036344655563969773,-0.0015185366701156824,0.000658372295973902,0.0010729927747985181,-0.0013786886206157503,-0.0001438995024424062,0.0014729016873054363,-0.0008468270088493829,-0.0009007258073856401,0.001450962085384556,-0.00007664526144318761,-0.0013967471549453294,0.0010157579447764558,0.0007111224094082552,-0.0014920917477833327,0.00029355504647752005,0.001291950188696457,-0.0011618029094674707,-0.0005083166272211274,0.0015015008848669618,-0.0005023156640160524,-0.0011609699945040115,0.0012821092993090522,0.00029668096591077206,-0.0014792817380055517,0.000698624609657607,0.0010067912210918668,-0.0013743890378763429,-0.00008073291603006744,0.001426187517618761,-0.0008784789934285954,-0.0008328568724236371,0.0014369612513953334,-0.00013496069974191892,-0.0013436107034079628,0.0010382564345878728,0.0006429922689646879,-0.001468781904744373,0.0003458795506288721,0.0012335482135821156,-0.0011747873006891063,-0.0004413217192995347,0.0014694598972368577,-0.0005476437972705667,-0.0010985542842111163,0.0012854168645082713,0.00023217970047962564,-0.0014392594030160633,0.0007361043268706108,0.0009416821477331841,-0.0013680561743604513,-0.00002001844377637972,0.0013790885284927176,-0.0009074273792894457,-0.0007664158227911079,0.0014212206782551482,-0.00019068611930432298,-0.0012904746428634454,0.0010581718519219556,0.0005765935216221548,-0.0014440559051002789,0.00039552807880841544,0.0011755270115402297,-0.0011853577381613707,-0.0003763243423359188,0.0014363497810923871,-0.0005902629878833201,-0.001036887620716606,0.001286524351779206,0.00016990003861119102,-0.0013985314407912817,0.0007708951402235772,0.0008776713190505759,-0.0013597772134087674,0.0000382962537624602,0.0013316566742453079,-0.0009337589021888669, -0.0007013966148476759,0.0014038227205496864,-0.0002438824068503528,-0.0012373804280933014,0.0010755924571681343,0.0005119086499337978,-0.0014179899839424565,0.00044256887361214276,0.0011179170441275007,-0.0011936024914151245,-0.00031329602114924806,0.001402239485171366,-0.000630247543915065,-0.0009759891679376904,0.001285518551373567,0.00010980323415663845],"x":[100.0,100.60925648702595,101.21851297405189,101.82776946107785,102.4370259481038,103.04628243512974,103.65553892215569,104.26479540918163,104.87405189620759,105.48330838323353,106.09256487025948,106.70182135728543,107.31107784431137,107.92033433133733,108.52959081836327,109.13884730538922,109.74810379241517,110.35736027944112,110.96661676646707,111.57587325349301,112.18512974051896,112.7943862275449,113.40364271457086,114.01289920159681,114.62215568862275,115.2314121756487,115.84066866267464,116.4499251497006,117.05918163672655,117.6684381237525,118.27769461077844,118.88695109780438,119.49620758483034,120.10546407185629,120.71472055888223,121.32397704590818,121.93323353293412,122.54249001996008,123.15174650698603,123.76100299401197,124.37025948103792,124.97951596806388,125.58877245508982,126.19802894211577,126.80728542914171,127.41654191616766,128.02579840319362,128.63505489021955,129.2443113772455,129.85356786427147,130.4628243512974,131.07208083832336,131.6813373253493,132.29059381237525,132.8998502994012,133.50910678642714,134.1183632734531,134.72761976047903,135.336876247505,135.94613273453095,136.55538922155688,137.16464570858284,137.77390219560877,138.38315868263473,138.9924151696607,139.60167165668662,140.21092814371258,140.8201846307385,141.42944111776447,142.03869760479043,142.64795409181636,143.25721057884232,143.86646706586825,144.4757235528942,145.08498003992017,145.6942365269461,146.30349301397206,146.91274950099802,147.52200598802395,148.1312624750499,148.74051896207584,149.3497754491018,149.95903193612776,150.5682884231537,151.17754491017965,151.78680139720558,152.39605788423154,153.0053143712575,153.61457085828343,154.2238273453094,154.83308383233532,155.44234031936128,156.05159680638724,156.66085329341317,157.27010978043913,157.87936626746506,158.48862275449102,159.09787924151698,159.7071357285429,160.31639221556887,160.9256487025948,161.53490518962076,162.14416167664672,162.75341816367265,163.3626746506986,163.97193113772454,164.5811876247505,165.19044411177646,165.7997005988024,166.40895708582835,167.01821357285428,167.62747005988024,168.2367265469062,168.84598303393213,169.4552395209581,170.06449600798402,170.67375249500998,171.28300898203594,171.89226546906187,172.50152195608783,173.11077844311376,173.72003493013972,174.32929141716568,174.9385479041916,175.54780439121757,176.1570608782435,176.76631736526946,177.37557385229542,177.98483033932135,178.5940868263473,179.20334331337327,179.8125998003992,180.42185628742516,181.0311127744511,181.64036926147705,182.249625748503,182.85888223552894,183.4681387225549,184.07739520958083,184.6866516966068,185.29590818363275,185.90516467065868,186.51442115768464,187.12367764471057,187.73293413173653,188.3421906187625,188.95144710578842,189.56070359281438,190.1699600798403,190.77921656686627,191.38847305389223,191.99772954091816,192.60698602794412,193.21624251497005,193.825499001996,194.43475548902197,195.0440119760479,195.65326846307386,196.2625249500998,196.87178143712575,197.4810379241517,198.09029441117764,198.6995508982036,199.30880738522953,199.9180638722555,200.52732035928145,201.13657684630738,201.74583333333334,202.35508982035927,202.96434630738523,203.5736027944112,204.18285928143712,204.79211576846308,205.401372255489,206.01062874251497,206.61988522954093,207.22914171656686,207.83839820359282,208.44765469061878,209.0569111776447,209.66616766467067,210.2754241516966,210.88468063872256,211.49393712574852,212.10319361277445,212.7124500998004,213.32170658682634,213.9309630738523,214.54021956087826,215.1494760479042,215.75873253493015,216.36798902195608,216.97724550898204,217.586501996008,218.19575848303393,218.8050149700599,219.41427145708582,220.02352794411178,220.63278443113774,221.24204091816367,221.85129740518963,222.46055389221556,223.06981037924152,223.67906686626748,224.2883233532934,224.89757984031937,225.5068363273453,226.11609281437126,226.72534930139722,227.33460578842315,227.9438622754491,228.55311876247504,229.162375249501,229.77163173652696,230.3808882235529,230.99014471057885,231.59940119760478,232.20865768463074,232.8179141716567,233.42717065868263,234.0364271457086,234.64568363273452,235.25494011976048,235.86419660678644,236.47345309381237,237.08270958083833,237.69196606786429,238.30122255489022,238.91047904191618,239.5197355289421,240.12899201596807,240.73824850299403,241.34750499001996,241.95676147704592,242.56601796407185,243.1752744510978,243.78453093812377,244.3937874251497,245.00304391217566,245.6123003992016,246.22155688622755,246.8308133732535,247.44006986027944,248.0493263473054,248.65858283433133,249.2678393213573,249.87709580838325,250.48635229540918,251.09560878243514,251.70486526946107,252.31412175648703,252.92337824351299,253.53263473053892,254.14189121756488,254.7511477045908,255.36040419161677,255.96966067864273,256.57891716566866,257.1881736526946,257.7974301397206,258.40668662674653,259.01594311377244,259.6251996007984,260.23445608782436,260.8437125748503,261.4529690618763,262.0622255489022,262.67148203592814,263.2807385229541,263.88999500998005,264.499251497006,265.1085079840319,265.7177644710579,266.32702095808384,266.9362774451098,267.54553393213575,268.15479041916166,268.7640469061876,269.3733033932136,269.98255988023953,270.5918163672655,271.2010728542914,271.81032934131736,272.4195858283433,273.0288423153693,273.63809880239523,274.24735528942114,274.8566117764471,275.46586826347306,276.075124750499,276.684381237525,277.2936377245509,277.90289421157684,278.5121506986028,279.12140718562875,279.7306636726547,280.3399201596806,280.9491766467066,281.55843313373254,282.1676896207585,282.77694610778445,283.38620259481036,283.9954590818363,284.6047155688623,285.21397205588823,285.8232285429142,286.4324850299401,287.04174151696606,287.650998003992,288.260254491018,288.86951097804393,289.47876746506984,290.0880239520958,290.69728043912176,291.3065369261477,291.9157934131737,292.5250499001996,293.13430638722554,293.7435628742515,294.35281936127745,294.9620758483034,295.5713323353293,296.1805888223553,296.78984530938123,297.3991017964072,298.00835828343315,298.61761477045906,299.226871257485,299.836127744511,300.44538423153693,301.0546407185629,301.6638972055888,302.27315369261476,302.8824101796407,303.4916666666667,304.10092315369263,304.71017964071854,305.3194361277445,305.92869261477045,306.5379491017964,307.1472055888224,307.7564620758483,308.36571856287424,308.9749750499002,309.58423153692615,310.1934880239521,310.802744510978,311.412000998004,312.02125748502993,312.6305139720559,313.23977045908185,313.8490269461078,314.4582834331337,315.0675399201597,315.67679640718563,316.2860528942116,316.89530938123755,317.50456586826346,318.1138223552894,318.7230788423154,319.33233532934133,319.9415918163673,320.5508483033932,321.16010479041915,321.7693612774451,322.3786177644711,322.98787425149703,323.59713073852294,324.2063872255489,324.81564371257485,325.4249001996008,326.0341566866268,326.6434131736527,327.25266966067863,327.8619261477046,328.47118263473055,329.0804391217565,329.6896956087824,330.2989520958084,330.90820858283433,331.5174650698603,332.12672155688625,332.73597804391216,333.3452345309381,333.9544910179641,334.56374750499003,335.173003992016,335.7822604790419,336.39151696606785,337.0007734530938,337.6100299401198,338.21928642714573,338.82854291417163,339.4377994011976,340.04705588822355,340.6563123752495,341.2655688622755,341.8748253493014,342.48408183632733,343.0933383233533,343.70259481037925,344.3118512974052,344.9211077844311,345.5303642714571,346.13962075848303,346.748877245509,347.35813373253495,347.96739021956085,348.5766467065868,349.1859031936128,349.79515968063873,350.4044161676647,351.0136726546906,351.62292914171655,352.2321856287425,352.8414421157685,353.45069860279443,354.05995508982033,354.6692115768463,355.27846806387225,355.8877245508982,356.4969810379242,357.1062375249501,357.71549401197603,358.324750499002,358.93400698602795,359.5432634730539,360.1525199600798,360.7617764471058,361.37103293413173,361.9802894211577,362.58954590818365,363.19880239520955,363.8080588822355,364.4173153692615,365.02657185628743,365.6358283433134,366.2450848303393,366.85434131736525,367.4635978043912,368.0728542914172,368.68211077844313,369.29136726546903,369.900623752495,370.50988023952095,371.1191367265469,371.7283932135729,372.3376497005988,372.94690618762473,373.5561626746507,374.16541916167665,374.7746756487026,375.38393213572857,375.9931886227545,376.60244510978043,377.2117015968064,377.82095808383235,378.4302145708583,379.0394710578842,379.6487275449102,380.25798403193613,380.8672405189621,381.47649700598805,382.08575349301395,382.6950099800399,383.3042664670659,383.91352295409183,384.5227794411178,385.1320359281437,385.74129241516965,386.3505489021956,386.9598053892216,387.56906187624753,388.17831836327343,388.7875748502994,389.39683133732535,390.0060878243513,390.61534431137727,391.2246007984032,391.83385728542913,392.4431137724551,393.05237025948105,393.661626746507,394.2708832335329,394.8801397205589,395.48939620758483,396.0986526946108,396.70790918163675,397.31716566866265,397.9264221556886,398.5356786427146,399.14493512974053,399.7541916167665,400.3634481037924,400.97270459081835,401.5819610778443,402.19121756487027,402.80047405189623,403.40973053892213,404.0189870259481,404.62824351297405,405.2375,405.84675648702597,406.4560129740519,407.06526946107783,407.6745259481038,408.28378243512975,408.8930389221557,409.5022954091816,410.1115518962076,410.72080838323353,411.3300648702595,411.93932135728545,412.54857784431135,413.1578343313373,413.7670908183633,414.37634730538923,414.9856037924152,415.5948602794411,416.20411676646705,416.813373253493,417.42262974051897,418.03188622754493,418.64114271457083,419.2503992015968,419.85965568862275,420.4689121756487,421.07816866267467,421.6874251497006,422.29668163672653,422.9059381237525,423.51519461077845,424.1244510978044,424.7337075848303,425.3429640718563,425.95222055888223,426.5614770459082,427.17073353293415,427.77999001996005,428.389246506986,428.998502994012,429.60775948103793,430.2170159680639,430.8262724550898,431.43552894211575,432.0447854291417,432.65404191616767,433.26329840319363,433.87255489021953,434.4818113772455,435.09106786427145,435.7003243512974,436.30958083832337,436.91883732534933,437.52809381237523,438.1373502994012,438.74660678642715,439.3558632734531,439.96511976047907,440.574376247505,441.18363273453093,441.7928892215569,442.40214570858285,443.0114021956088,443.6206586826347,444.22991516966067,444.83917165668663,445.4484281437126,446.05768463073855,446.66694111776445,447.2761976047904,447.88545409181637,448.49471057884233,449.1039670658683,449.7132235528942,450.32248003992015,450.9317365269461,451.54099301397207,452.15024950099803,452.75950598802393,453.3687624750499,453.97801896207585,454.5872754491018,455.19653193612777,455.8057884231537,456.41504491017963,457.0243013972056,457.63355788423155,458.2428143712575,458.8520708582834,459.46132734530937,460.07058383233533,460.6798403193613,461.28909680638725,461.89835329341315,462.5076097804391,463.11686626746507,463.72612275449103,464.335379241517,464.9446357285429,465.55389221556885,466.1631487025948,466.77240518962077,467.38166167664673,467.99091816367263,468.6001746506986,469.20943113772455,469.8186876247505,470.42794411177647,471.0372005988024,471.64645708582833,472.2557135728543,472.86497005988025,473.4742265469062,474.0834830339321,474.69273952095807,475.30199600798403,475.91125249501,476.52050898203595,477.12976546906185,477.7390219560878,478.34827844311377,478.95753493013973,479.5667914171657,480.1760479041916,480.78530439121755,481.3945608782435,482.00381736526947,482.61307385229543,483.22233033932133,483.8315868263473,484.44084331337325,485.0500998003992,485.65935628742517,486.26861277445107,486.87786926147703,487.487125748503,488.09638223552895,488.7056387225549,489.3148952095808,489.92415169660677,490.53340818363273,491.1426646706587,491.75192115768465,492.36117764471055,492.9704341317365,493.57969061876247,494.18894710578843,494.7982035928144,495.4074600798403,496.01671656686625,496.6259730538922,497.23522954091817,497.84448602794413,498.4537425149701,499.062999001996,499.67225548902195,500.2815119760479,500.89076846307387,501.5000249500998,502.10928143712573,502.7185379241517,503.32779441117765,503.9370508982036,504.54630738522957,505.15556387225547,505.76482035928143,506.3740768463074,506.98333333333335,507.5925898203593,508.2018463073852,508.81110279441117,509.42035928143713,510.0296157684631,510.63887225548905,511.24812874251495,511.8573852295409,512.4666417165669,513.0758982035928,513.6851546906188,514.2944111776447,514.9036676646707,515.5129241516966,516.1221806387225,516.7314371257485,517.3406936127744,517.9499500998004,518.5592065868263,519.1684630738523,519.7777195608783,520.3869760479042,520.9962325349302,521.605489021956,522.214745508982,522.824001996008,523.4332584830339,524.0425149700599,524.6517714570858,525.2610279441118,525.8702844311377,526.4795409181637,527.0887974051897,527.6980538922156,528.3073103792415,528.9165668662674,529.5258233532934,530.1350798403193,530.7443363273453,531.3535928143713,531.9628493013972,532.5721057884232,533.1813622754491,533.7906187624751,534.399875249501,535.0091317365269,535.6183882235529,536.2276447105788,536.8369011976048,537.4461576846307,538.0554141716567,538.6646706586827,539.2739271457086,539.8831836327346,540.4924401197604,541.1016966067864,541.7109530938123,542.3202095808383,542.9294660678643,543.5387225548902,544.1479790419162,544.7572355289421,545.3664920159681,545.9757485029941,546.5850049900199,547.1942614770459,547.8035179640718,548.4127744510978,549.0220309381237,549.6312874251497,550.2405439121757,550.8498003992016,551.4590568862276,552.0683133732535,552.6775698602794,553.2868263473054,553.8960828343313,554.5053393213573,555.1145958083832,555.7238522954092,556.3331087824351,556.9423652694611,557.5516217564871,558.160878243513,558.7701347305389,559.3793912175648,559.9886477045908,560.5979041916167,561.2071606786427,561.8164171656687,562.4256736526946,563.0349301397206,563.6441866267465,564.2534431137725,564.8626996007984,565.4719560878243,566.0812125748503,566.6904690618762,567.2997255489022,567.9089820359281,568.5182385229541,569.1274950099801,569.736751497006,570.346007984032,570.9552644710578,571.5645209580838,572.1737774451097,572.7830339321357,573.3922904191617,574.0015469061876,574.6108033932136,575.2200598802395,575.8293163672655,576.4385728542915,577.0478293413173,577.6570858283433,578.2663423153692,578.8755988023952,579.4848552894211,580.0941117764471,580.7033682634731,581.312624750499,581.921881237525,582.531137724551,583.1403942115768,583.7496506986027,584.3589071856287,584.9681636726547,585.5774201596806,586.1866766467066,586.7959331337325,587.4051896207585,588.0144461077845,588.6237025948104,589.2329590818364,589.8422155688622,590.4514720558882,591.0607285429141,591.6699850299401,592.2792415169661,592.888498003992,593.497754491018,594.107010978044,594.7162674650699,595.3255239520959,595.9347804391217,596.5440369261477,597.1532934131736,597.7625499001996,598.3718063872255,598.9810628742515,599.5903193612775,600.1995758483034,600.8088323353294,601.4180888223553,602.0273453093812,602.6366017964071,603.2458582834331,603.8551147704591,604.464371257485,605.073627744511,605.682884231537,606.2921407185629,606.9013972055889,607.5106536926148,608.1199101796407,608.7291666666666,609.3384231536926,609.9476796407185,610.5569361277445,611.1661926147705,611.7754491017964,612.3847055888224,612.9939620758483,613.6032185628743,614.2124750499001,614.8217315369261,615.4309880239521,616.040244510978,616.649500998004,617.25875748503,617.8680139720559,618.4772704590819,619.0865269461078,619.6957834331338,620.3050399201596,620.9142964071856,621.5235528942115,622.1328093812375,622.7420658682635,623.3513223552894,623.9605788423154,624.5698353293413,625.1790918163673,625.7883483033933,626.3976047904191,627.0068612774451,627.616117764471,628.225374251497,628.834630738523,629.4438872255489,630.0531437125749,630.6624001996008,631.2716566866268,631.8809131736527,632.4901696606786,633.0994261477045,633.7086826347305,634.3179391217565,634.9271956087824,635.5364520958084,636.1457085828343,636.7549650698603,637.3642215568863,637.9734780439122,638.5827345309381,639.191991017964,639.80124750499,640.410503992016,641.0197604790419,641.6290169660679,642.2382734530938,642.8475299401198,643.4567864271457,644.0660429141717,644.6752994011975,645.2845558882235,645.8938123752495,646.5030688622754,647.1123253493014,647.7215818363273,648.3308383233533,648.9400948103793,649.5493512974052,650.1586077844312,650.7678642714571,651.377120758483,651.986377245509,652.5956337325349,653.2048902195609,653.8141467065868,654.4234031936128,655.0326596806387,655.6419161676647,656.2511726546907,656.8604291417166,657.4696856287425,658.0789421157684,658.6881986027944,659.2974550898203,659.9067115768463,660.5159680638723,661.1252245508982,661.7344810379242,662.3437375249501,662.9529940119761,663.562250499002,664.1715069860279,664.7807634730539,665.3900199600798,665.9992764471058,666.6085329341317,667.2177894211577,667.8270459081837,668.4363023952096,669.0455588822356,669.6548153692614,670.2640718562874,670.8733283433133,671.4825848303393,672.0918413173653,672.7010978043912,673.3103542914172,673.9196107784431,674.5288672654691,675.1381237524951,675.7473802395209,676.3566367265469,676.9658932135728,677.5751497005988,678.1844061876247,678.7936626746507,679.4029191616767,680.0121756487026,680.6214321357286,681.2306886227545,681.8399451097804,682.4492015968063,683.0584580838323,683.6677145708583,684.2769710578842,684.8862275449102,685.4954840319361,686.1047405189621,686.7139970059881,687.323253493014,687.9325099800399,688.5417664670658,689.1510229540918,689.7602794411177,690.3695359281437,690.9787924151697,691.5880489021956,692.1973053892216,692.8065618762475,693.4158183632735,694.0250748502993,694.6343313373253,695.2435878243513,695.8528443113772,696.4621007984032,697.0713572854291,697.6806137724551,698.2898702594811,698.899126746507,699.508383233533,700.1176397205588,700.7268962075848,701.3361526946107,701.9454091816367,702.5546656686627,703.1639221556886,703.7731786427146,704.3824351297405,704.9916916167665,705.6009481037925,706.2102045908183,706.8194610778443,707.4287175648702,708.0379740518962,708.6472305389221,709.2564870259481,709.8657435129741,710.475]} From e1d2d50852a870713bb333b09fbd3cefba5e9a1f Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Wed, 11 Dec 2024 18:26:15 +0600 Subject: [PATCH 61/63] "added changes" --- .../math/base/special/cosc/test/fixtures/julia/data.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/data.json b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/data.json index 50a70c49b713..acee91d9d4fc 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/data.json +++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/data.json @@ -1 +1 @@ -{"expected":[-0.01,-0.00988692665446217,-0.009530417260232635,-0.008939001927057518,-0.00812700023963896,-0.007114174661777941,-0.005925249651897664,-0.004589308189120179,-0.003139080437401436,-0.001610141944230643,-0.000040041013955833456,0.0015326233416345881,0.0030691502352163075,0.004531689196248325,0.005884172493081779,0.007093204522074692,0.008128886334342557,0.008965554944794535,0.009582419144642727,0.009964076066946442,0.01010089567328384,0.009989263566841785,0.009631676013797021,0.009036684685486062,0.008218692329369866,0.007197604246304405,0.005998344004833064,0.004650245172536397,0.0031863339073372196,0.001642519952343532,0.000056715849575066915,-0.00153209402566305,-0.0030848117512741317,-0.0045631879117862895,-0.005930763748120867,-0.007153770198919874,-0.008201961665838864,-0.009049363918998405,-0.00967491765064457,-0.010063001734130994,-0.010203823189262884,-0.010093664121865643,-0.009734979415048518,-0.009136342615950489,-0.008312241194704922,-0.00728272606016411,-0.0060729238083116685,-0.004712423565792373,-0.0032345533890227388,-0.001675563912446815,-0.0000737392399667339,0.001531543115552564,0.00310078016369045,0.004595315448258029,0.0059782912241642,0.007215557347592569,0.008276514468868288,0.009134870711019328,0.009769293124595185,0.010163937779373152,0.010308845323473495,0.010200192137384127,0.009840390753724568,0.009238036916283918,0.008407704423026918,0.0073695926446301525,0.006149035240488571,0.004775882018532973,0.003283769019197351,0.0017092946699876987,0.00009112218696606803,-0.001530969764797153,-0.0031170648437149825,-0.004628091205258873,-0.006026783911534547,-0.007278603873109481,-0.008352590664382306,-0.009222128157529003,-0.00986560404352474,-0.010266946900304674,-0.010416027464426008,-0.010308914090387096,-0.009947975959452496,-0.009341831339686926,-0.008505142009038258,-0.007458258740058715,-0.006226726414999595,-0.004840660803149927,-0.00333401220293789,-0.0017437339512144095,-0.0001088761619285668,0.001530373082350148,0.0031336755463287234,0.004661535387110025,0.0060762720085808086,0.007342949264059696,0.008430238095294144,0.009311191309838516,0.00996391133861546,0.010372094428864201,0.010525437750984275,0.010419899256959096,0.010057803740838872,0.009447792329506606,0.008604616481879815,0.007548781402151541,0.006306047483438199,0.0049068019008445575,0.0033853156810923096,0.0017789044101855964,0.00012701313104154568,-0.00152975212978499,-0.0031506224300722734,-0.004695669045019289,-0.006126786985255266,-0.007408634676172836,-0.008509506628087186,-0.009402117551157869,-0.010064278525306006,-0.01047944847111701,-0.010637147218504657,-0.010533219861166827,-0.010169945733445008,-0.009555989162640333,-0.008706193040386213,-0.00764122012567864,-0.006387050744406665,-0.004974349093233294,-0.0034377136020542084,-0.0018148296788304194,-0.00014554558228247226,0.0015291059182347367,0.0031679160781232906,0.004730514121913109,0.006178361650754986,0.0074757030212299624,0.008590448260943039,0.009494966721381806,0.01016677184176389,0.010589080056074333,0.01075122995439325,0.010648951233553383,0.010284476657319522,0.009666494102209426,0.008809939697100646,0.007735636976214574,0.006469790759651679,0.0050433480599028115,0.003491241598222934,0.0018515344202770054,0.00016448655416644695,-0.0015284334051064155,-0.0031855675207004695,-0.004766093500153822,-0.0062310302255206415,-0.007544199061731474,-0.008673117238872902,-0.009589801249979152,-0.010271460396355445,-0.01070106329419811,-0.010867763263796957,-0.01076717197996795,-0.010401474484817446,-0.0097793825602118,-0.00891592743171094,-0.007832096730511445,-0.006554324477814246,-0.00511384648238484,-0.0035459368674946967,-0.0018890443857169051,-0.00018384966640662659,0.0015277334905348747,0.003203588258907899,0.004802431052346535,0.006284828417937068,0.007614169511750057,0.008757570176396957,0.009686686297598708,0.01037841632480821,0.010815475546331858,0.01098682784620731,0.01088796416152825,0.01052102061949433,0.009894733270925042,0.009024230354636906,0.007930667026167472,0.006640711366395806,0.00518589415503449,0.0036018382601906906,0.0019273864750659596,0.00020364915265412223,-0.0015270050135687122,-0.0032219902901132642,-0.0048395516954862485,-0.00633979350608419,-0.007685663144457024,-0.008843866188345628,-0.009785689907073791,-0.010487714957811752,-0.010932397603869465,-0.011108507983824576,-0.011011413486579361,-0.010643200086942263,-0.010012628475892515,-0.009134925881564053,-0.00803141852132107,-0.006729013552570935,-0.005259543103367455,-0.0036589863718344637,-0.001966588801736915,-0.00022389989546712193,0.0015262467480482893,0.003240786134992019,0.004877481448689318,0.006395964424944249,0.0077587309068310635,0.008932067029426978,0.009886883164553559,0.010599434999880308,0.01105191388104099,0.011232891742606404,0.011137609515594709,0.010768101738503401,0.010133154121412417,0.009248094919780498,0.00813442506516627,0.006819295973559219,0.0053348477104333165,0.0037174236422587853,0.002006680761836088,0.0002446174637050831,-0.0015254573981639328,-0.0032599888663503917,-0.004916247494804226,-0.00645338185948109,-0.007833426042127466,-0.009022237243243287,-0.009990340371570247,-0.010713658720364531,-0.011174112620279932,-0.0113600711870085,-0.011266645880046446,-0.010895818468891231,-0.010256400069519504,-0.009363822067268227,-0.00823976388014558,-0.006911626537311458,-0.005411864851883404,-0.0037771944615355283,-0.0020476931081573504,-0.00026581815252941317,0.0015246355936486423,0.0032796121398813776,0.004955878246193867,0.006512088344072049,0.007909804220715057,0.009114444321521939,0.010096139228910174,0.01083047215759177,0.011299086111719097,0.011490142609518077,0.011398620516371472,0.011026447448835167,0.010382460323554851,0.00948219582556923,0.008347515756775607,0.00700607629434954,0.00549065404042726,0.003838345283298632,0.0020896580293490383,0.00028751902624220564,-0.0015237798845877746,-0.003299670226990114,-0.004996403415038089,-0.0065721283687898355,-0.007987923679968019,-0.009208758874376458,-0.010204361033252212,-0.010949965337194096,-0.011426930927965387,-0.01162320677618236,-0.011533635916259543,-0.01116009037397745,-0.010511433269506563,-0.009603308827561241,-0.008457765262127215,-0.007102719621677949,-0.005571277580452986,-0.0039009247460562724,-0.002132609234697734,-0.0003097379641832494,0.0015228887357929956,0.00332017804986942,0.0050378540885072905,0.006633548493105717,0.00806784537393949,0.009305254812510079,0.01031509088761188,0.011072232505793696,0.011557748175405612,0.011759369189448235,0.011671799394609888,0.011296853731357609,0.010643421934430644,0.009727258081365882,0.00857060096310209,0.007201634419757122,0.00565380073366025,0.003964983803162525,0.0021765820449820453,0.00033249370996061596,-0.0015219605207158697,-0.003341151218990552,-0.00508026280922129,-0.006696397467611093,-0.008149633133637214,-0.009404009542339973,-0.010428417926743648,-0.011197372381315067,-0.01169164376342075,-0.011898740369753472,-0.01181322337662648,-0.011436849084956653,-0.010778534263371465,-0.009854145231748162,-0.008686115665733228,-0.007302902323647602,-0.005738291896619945,-0.004030575862183344,-0.002221613489926448,-0.0003558059242827915,0.0015209935148396514,0.003362606073222352,0.005123663661415923,0.006760726364439712,0.008233353838774774,0.009505104175134735,0.010544435558748188,0.011325488421326635,0.011828728693012117,0.01204143615744952,0.01195802570566827,0.011580193381905555,0.010916883416353232,0.00998407684047834,0.008804406671879646,0.007406608929514508,0.005824822791289849,0.004097756934445488,0.0022677424128073795,0.0003796952417209309,-0.0015199858885156523,-0.0033845597227788226,-0.0051680923633116785,-0.006826588717109863,-0.008319077601981749,-0.009608623751342376,-0.010663241724268918,-0.011456689110939219,-0.011969119366495626,-0.012187578036788896,-0.012106329973623976,-0.011727009281129073,-0.01105858808715264,-0.010117164687290837,-0.008925576054795938,-0.007512844037826396,-0.005913468669586753,-0.004166585795663758,-0.002315009582837331,-0.0004041833317320204,0.00151893569917239,0.0034070300952478713,0.005213586366194846,0.00689404067060509,0.008406877966526699,0.009714657481423113,0.010784939174781327,0.011591088271950845,0.012112937920077005,0.012337293483882128,0.012258265875760156,0.011877425506361262,0.01120377284574724,0.01025352609321708,0.009049730955228595,0.0076217019146873,0.006004308533256249,0.00423712415859844,0.0023634578160154794,0.00042929296432670666,-0.0015178408828486465,-0.0034300359849442144,-0.005260184960803945,-0.006963141142563334,-0.008496832118737259,-0.009823299004609742,-0.010909635771645183,-0.011728805395083586,-0.0122603125813083,-0.012490716340718397,-0.012413969592181787,-0.012031577225672833,-0.011352568506508866,-0.010393284268267678,-0.009176983899832552,-0.007733281572913899,-0.006097425370375175,-0.0043094368588250075,-0.0024131321051841085,-0.00045504808080494644,0.0015166992449763606,0.0034535971058876984,0.005307929391640506,0.00703395199656127,0.008589021116394065,0.009934646667183755,0.011037444807740571,0.011869965997356654,0.012411378053621193,0.01264798721755697,0.012573584198265635,0.012189606459857474,0.011505112524436771,0.010536568685619762,0.0093074531439088,0.007847687074605545,0.006192906409989943,0.004383592054774834,0.0024640797601373898,0.00048147387000675127,-0.0015155084503307484,-0.0034777341487035773,-0.005356862979918629,-0.007106538228550186,-0.008683530134531634,-0.01004880382199437,-0.011168485353712086,-0.012014702006836162,-0.012566275930364277,-0.012809253926231617,-0.012737260106664346,-0.012351662522275424,-0.011661549421945758,-0.010683515484707942,-0.009441263040645211,-0.007965027857164334,-0.006290843396517416,-0.004459661443360502,-0.002516350558681798,-0.0005085968506047051,0.0015142660120755424,0.003502468841801931,0.0054070312559075595,0.007180968167638807,0.008780448730199682,0.010165879151148737,0.011302882631036643,0.012163152177246664,0.012725155141015774,0.01297467194717528,0.012905155543753462,0.012517902493012715,0.011822031249002064,0.010834267905846674,0.009578544439296014,0.008085419084898076,0.006391332885738158,0.004537720492602471,0.002569996909679064,0.0005364449599844065,-0.0015129692797900048,-0.0035278240172099684,-0.005458482101529113,-0.007257313692511953,-0.008879871127927713,-0.010285987013979746,-0.01144076841438057,-0.012315462535176964,-0.012888172432530941,-0.013144404933265979,-0.013077437063691641,-0.012688491730525973,-0.011986718079678929,-0.01098897675931067,-0.009719435114967555,-0.008208982028594632,-0.006494476564373363,-0.004617848692860326,-0.002625074029175856,-0.0005650476503559502,0.0015116154263880575,0.0035538236814692103,0.005511265904143077,0.007335650464937203,0.008981896527792336,0.010409247822644397,0.011582281465954499,0.012471786862916317,0.013055492889090718,0.013318625253926769,0.013254280103606731,0.012863604424271008,0.012155778548548051,0.011147800932092089,0.00986408023299002,0.008335844475682933,0.0066003815954845954,0.00470012982840901,0.0026816401308817728,0.0005944359927717659,-0.0015102014337905801,-0.003580493092072516,-0.00556543572255255,-0.007416058181949052,-0.009086629438214764,-0.010535788447934154,-0.011727568004884567,-0.01263228722027037,-0.013227290493877985,-0.013497514583281578,-0.013435869583795883,-0.013043424192202443,-0.012329390430677602,-0.011310907935924272,-0.010012632851152684,-0.008466141173911168,-0.0067091609921461235,-0.004784652271327459,-0.0027397566323579653,-0.0006246427898401269,0.0015087240772337124,0.003607858839933144,0.005621047466391402,0.00749862084847184,0.009194180035830985,0.010665742658183706,0.01187678221492805,0.012797134509085466,0.013403748736896341,0.013681264536586484,0.013622400557258236,0.013228144727447802,0.012507741269437883,0.011478474500535086,0.010165254463467898,0.008600014311765478,0.006820934022144984,0.004871509299848556,0.002799488378469224,0.0006557026979732587,-0.0015071799080418947,-0.0036359489384678225,-0.005678160090151053,-0.007583427072353721,-0.009304664555034639,-0.010799251594458353,-0.01203008679424868,-0.012966509084608432,-0.01358506127329902,-0.013870077359622441,-0.01381407891335426,-0.013417970498948804,-0.012691029056767581,-0.01165068721655711,-0.01032211558951199,-0.008737614039244647,-0.006935826646738437,-0.0049607994435985295,-0.00286090388378893,-0.0006876523601449177,0.001505565234712698,0.00366479291990011,0.005736835803278369,0.007670570383973723,0.00941820571009868,0.010936464285577633,0.012187653551363304,0.013140601418286135,0.013771432637189442,0.014064166676264553,0.014011122140930357,0.013613117511392785,0.01287946297109578,0.011827743233000787,0.010483396413877239,0.008879099032985255,0.0070539719968784826,0.005052626858393404,0.002924075595879741,0.0007205305502049192,-0.0015038761021002299,-0.0036944219394958186,-0.005797140297899653,-0.007760149582860876,-0.009534933153084136,-0.01107753820692213,-0.012349664051856333,-0.013319612817118734,-0.013963079016428607,-0.014263758300036197,-0.014213760156853028,-0.01381381413037713,-0.013073264178693695,-0.012009851014782252,-0.010649287480762942,-0.00902463711022394,-0.007175510890671145,-0.005147101733607314,-0.0029890801815565184,-0.0007543783299625474,0.0015021082684972948,0.0037248688884814903,0.005859142995939682,0.007852269114008591,0.009654983971142277,0.011222639887424142,0.012516310320976625,0.013503756205283617,0.014160229094615801,0.014469091116130787,0.01442223620659061,0.014020301979428757,0.01327266670491837,0.012197231166414461,0.010819990449348012,0.009174405896575442,0.007300592396315815,0.0052443407354430495,0.00305599883852761,0.0007892392203539142,-0.0015002571803482342,-0.0037561685165216764,-0.005922917317570183,-0.007947039476913437,-0.009778503227204973,-0.011371945569670666,-0.012687795607829424,-0.01369325697440835,-0.014363124967141193,-0.014680418041143398,-0.014636807844256994,-0.014232836916291836,-0.013477918382556037,-0.01239011732871508,-0.01099571891622731,-0.009328593553228418,-0.007429374445238039,-0.005344467489871771,-0.0031249176350564944,-0.0008251593882101772,0.001498317944330809,0.0037883575646898123,0.005988540973186719,0.008044577670688067,0.009905644548561236,0.011525641928607123,0.012864335217565165,0.013888353909628899,0.014572023139021235,0.014898007068620149,0.014857748000421564,0.014451690096772446,0.01368928188535334,0.012588757156183593,0.011176699311977477,0.009487399569802346,0.007562024500735143,0.0054476131094249956,0.0031959278806493285,0.0008621878502874215,-0.0014962852964667261,-0.0038214749100170414,-0.006056096281334168,-0.00814500767903409,-0.010036570768324824,-0.01168392685501652,-0.013046157418718991,-0.014089300199438874,-0.014787195613167586,-0.015122142409512167,-0.015085346146991647,-0.014677149135446097,-0.013907035855790523,-0.012793413383655425,-0.0113631718797509,-0.00965103562990568,-0.007698720288068272,-0.0055539167685768045,-0.0032691265311028126,-0.0009003766964703528,0.0014941535679170478,0.003855561722788522,0.006125670515331982,0.008248460999282507,0.010171454625439188,0.011847010310674214,0.013233504433751023,0.014296364538302181,0.015008931078796509,0.015353125737739847,0.015319909569623626,0.014909519373670103,0.01413147613728624,0.0130043649918816,0.011555391744804534,0.009819726557275166,0.007839650592711016,0.005663526333004577,0.0033446166317085586,0.0009397813342606426,-0.0014919166470259346,-0.00389066163793881,-0.006197356281645716,-0.008355077220264368,-0.010310479529530386,-0.012015115262961428,-0.013426633521814398,-0.014509832332133389,-0.015237536210895197,-0.01559127755234534,-0.015561764759421884,-0.01514912526666108,-0.014362917122283454,-0.013221908482918276,-0.01175363008496115,-0.009993711351404286,-0.007985016134274239,-0.005776599048728849,-0.0034225078028503587,-0.0009804607569779006,0.001489567937158992,0.0039268209420180444,0.006271251933469948,0.008465004654331396,0.010453840397743728,0.012188478707671256,0.013625818163939131,0.014730007018010421,0.01547333709304844,0.0158369386691664,0.01581125893718057,0.015396311902883136,0.014601693229142412,0.013446359277576559,0.011958175413308776,0.010173244322677057,0.008135030524631656,0.005893302297866349,0.0035029167728239732,0.0010224778383769964,-0.0014871003097710904,-0.003964088777422741,-0.006347462023384735,-0.00857840102955967,-0.010601744571577303,-0.012367352789886227,-0.013831349362103413,-0.014957211510959738,-0.0157166807775033,-0.01609047185663239,-0.016068761725133097,-0.01565144667071293,-0.014848160522422897,-0.01367805324879071,-0.012169334985884152,-0.010358596338355043,-0.008289921319845869,-0.0060138144286458195,-0.0035859679633027165,-0.001065899656782016,0.0014845060520989296,0.0040025173657611225,0.0064260977994751774,0.008695434248910875,0.010754412822790367,0.012552006034062167,0.014043537065175988,0.015191789792313391,0.015967936998171076,0.016352263632192436,0.016334666983135498,0.015914921089308,0.01510269849307102,0.013917348406577077,0.01238743634879343,0.010550056192249302,0.008449931176799973,0.006138325668332858,0.0036717941336340152,0.0011107978522340363,-0.0014817768087461913,-0.004042162252482353,-0.006507277749850236,-0.008816283224044635,-0.010912080458641957,-0.01274272469594658,-0.014262711736419728,-0.015434108656074051,-0.016227500054346724,-0.016622726238085854,-0.01660939482846842,-0.016187152822868107,-0.015365712017225888,-0.014164626752362209,-0.012612829041148344,-0.010747932112644135,-0.00861531912689057,-0.006267039128891068,-0.003760537090971077,-0.0011572490206432794,0.0014789035163416356,0.004083082575162079,0.006591128201166568,0.008941138792478176,0.011074998538095987,0.012939814250640157,0.014489226079229364,0.01568455963193187,0.01649579088533091,0.016902299817695803,0.016893393861042556,0.01646858790008491,0.015637633514912264,0.014420296322880392,0.012845886472440166,0.010952553425031049,0.00878636198084347,0.006400171916557612,0.003852348474225018,0.001205335149493303,-0.0014758763303122046,-0.004125341358151963,-0.006677783977501164,-0.00907020472798412,-0.01124343521221113,-0.013143601033070898,-0.014723456940057058,-0.015943561106138794,-0.01677325935891348,-0.017191454816652803,-0.017187143618797848,-0.016759703163586936,-0.015918925332827495,-0.014684793446642131,-0.013087007995559244,-0.011164272388517736,-0.008963355880674225,-0.0065379563580783735,-0.003947390620945601,-0.0012551441002949801,0.0014726845426650819,0.004169005836659759,0.006767389126796341,0.009203698855466397,0.011417677203762454,0.013354434049408948,0.014965807410119642,0.016211560664404667,0.017060386799887944,0.01749069463624016,0.017491157291565685,0.01706100897767458,0.016210082378840997,0.014958585239220964,0.01333662119966703,0.0113834662274503,0.009146618017093154,0.006680641358166121,0.0040458375275462,0.0013067701437440014,-0.0014693164894945697,-0.004214147813740005,-0.006860097723097219,-0.009341854283142888,-0.01159803144326871,-0.013572686980568186,-0.015216709150542095,-0.01648903768441214,-0.017357688788491536,-0.01780055857058245,-0.01780598472570211,-0.017373052226689063,-0.016511635039784277,-0.015242172367376374,-0.013595184450611883,-0.011610539382894846,-0.009336488533302297,-0.006828493904860343,-0.004147875914810678,-0.0013603145544175315,0.0014657594467195533,0.004260844054152656,0.006956074753967206,0.009484920766687369,0.011784826881051801,0.013798760401989628,0.015476624969149652,0.016776506209538723,0.01766571826299745,0.018121625063668836,0.018132215756499145,0.01769641964107276,0.016824152418719495,0.015536092116421414,0.013863189710639153,0.011845926012245675,0.009533332639218631,0.0069818007419346585,0.004253706412396606,0.0014158862728771305,-0.0014619995123083566,-0.00430917671959886,-0.00705549710381825,-0.009633166222115746,-0.011978416497832857,-0.014033084247438328,-0.015746051681265503,-0.01707451814002669,-0.01798506896573736,-0.01845451532759405,-0.018470483910864078,-0.018031741493678068,-0.017148245933255975,-0.01584092180037047,-0.01414116567388682,-0.012090092769458544,-0.009737542963765855,-0.0071408702303832885,-0.004363544878129201,-0.001473602644254898,0.0014580214729518557,0.004359233850482814,0.007158554645466938,0.0097868784066856,0.012179179539710703,0.01427612054869527,0.016025523291719142,0.017383666783279565,0.01831637927773816,0.01879989736963453,0.01882147052916997,0.018379695715318146,0.01748457332278261,0.016157282560405096,0.014429681259710532,0.012343541903364506,0.009949542177106122,0.007306034424402164,0.004477623870321846,0.0015335902438228164,-0.0014538086527928896,-0.004411109900092095,-0.007265451454066335,-0.009946366789984437,-0.012387524007289036,-0.01452836648787009,-0.016315614540938817,-0.017704590811336143,-0.018660336494081123,-0.019158490483088687,-0.019185909362704312,-0.018741012486104755,-0.017833843119877,-0.01648584360424345,-0.01472934951240313,-0.012606814717344234,-0.010169785919654237,-0.007477651391260596,-0.004596194294233417,-0.0015959858017241364,0.0014493427413980271,0.004464906327954762,0.0073764071597169295,0.010111964640790455,0.012603889433317896,0.014790357804757985,0.01661694486467684,0.018037978681067334,0.019017681600231897,0.01953107026540971,0.019564591711993963,0.01911647936800561,0.018196819649855207,0.016827326947297685,0.015040831963555533,0.012880495440505985,0.010398766080577401,0.00765610780915488,0.004719527247166793,0.0016609372410323162,-0.0014446035976513863,-0.004520732260142814,-0.007491658457589216,-0.01028403135929919,-0.012828749988629842,-0.015062672608372978,-0.016930182824770386,-0.01838457358146651,-0.019389214619192453,-0.019918474237303377,-0.019958372181729127,-0.0195069470545439,-0.018574328632701375,-0.01718251272630553,-0.015364843522382056,-0.01316521556862294,-0.010637014475414253,-0.007841821882691563,-0.004847916090733413,-0.0017286048456615758,0.0014395690256405519,0.004578705225475791,0.0076114607973693975,0.0104629550890398,0.013062617962545108,0.015345935649716385,0.017256051077630397,0.018745178982852072,0.019775800610678917,0.020321608148466477,0.02036817514037183,0.01991333582598348,0.018967263473787403,0.01755224516773573,0.015702157970090905,0.013461658742705098,0.010885106980669185,0.008035246622244304,0.004981678783586611,0.0017991625774623876,-0.0014342145178680122,-0.004638951977968503,-0.00773609027735929,-0.010649155648402716,-0.013306047671493584,-0.01564082312223433,-0.0175953319581651,-0.019120664875185333,-0.020178376417009432,-0.020741453069891686,-0.020795001987215626,-0.02033664281309794,-0.019376592344255338,-0.017937439307072388,-0.01605361414717347,-0.01377056624452489,-0.01114366819302468,-0.008236873541285012,-0.0051211605136237655,-0.00187279956519293,0.0014285129602282405,0.004701609417503863,0.00786584577273261,0.010843087828347095,0.01355963985860181,0.015948068067589742,0.017948873769948425,0.019511974797451554,0.02059795826643023,0.02117907338963555,0.02123993934715474,0.020777950190207572,0.01980336616917874,0.018339088571549058,0.01642012293775027,0.014092743202077183,0.011413376692503821,0.008447236835180876,0.005266736675474448,0.0019497217920851394,-0.001422434292103143,-0.004766825622644666,-0.008001051332409439,-0.011045245110773818,-0.01382404665772478,-0.016268466477704344,-0.018317597888086602,-0.019920133777660724,-0.021035650363780307,-0.021635625849232957,-0.021704168334336447,-0.021238434439203365,-0.020248727662251685,-0.018758273358612965,-0.016802675173390316,-0.014429065614320767,-0.011694971002926942,-0.008666918116213984,-0.005418816247279273,-0.0020301540135732573,0.00141594511359963,0.004834761011787389,0.008142058884927753,0.011256163871514341,0.014099977208244078,0.016602884199987043,0.01870250679997739,0.020346257324130104,0.02149265462138347,0.022112369782274294,0.022188975050966963,0.021719376851525408,0.02071392157053247,0.019196170766077877,0.017202350600789295,0.014780488324228756,0.011989256359865178,0.008896551793144617,0.005577845630634443,0.0021143419426140086,-0.00140900823032221,-0.004905589651580713,-0.008289251300775069,-0.011476428143240118,-0.014388204022376175,-0.016952264771848306,-0.019104693231692664,-0.02079156163410272,-0.021970281710725268,-0.022610678745961104,-0.0226957625177727,-0.02222217546549378,-0.021200306322634314,-0.019654065658479634,-0.017620328084198004,-0.01514805409293201,-0.012297112416656496,-0.009136831200036187,-0.005744313029523571,-0.0022025547471407753,0.0014015821240635268,0.00497950073477281,0.008443045867156036,0.011706675027270718,0.014689570225327374,0.017317638333743286,0.0195253505349204,0.021257375216423152,0.02246996364890464,0.023132053771873592,0.02322606426917705,0.022748358673196818,0.02170936730991113,0.02013336328872522,0.018057897245600772,0.015532903956532736,0.012619502043745446,0.009388515598962269,0.005918753458577819,0.0022950879128633586,-0.001393620335307468,-0.005056700253527264,-0.008603898241440104,-0.01194760085978936,-0.015004997811135755,-0.01770013179802034,-0.01996578454237594,-0.021745152162181716,-0.022993268174411528,-0.02367813850517202,-0.02378155989064526,-0.023299600775860938,-0.022242732074113963,-0.020635603736159934,-0.018516471784701678,-0.015936289082210144,-0.01295748140668488,-0.009652438205476687,-0.006101754488728146,-0.0023922665352372995,0.0013850707403445341,0.005137412898897979,0.00877230696196879,0.01219996825804101,0.015335497084391398,0.018100980484951536,0.0204274271397272,0.022256487342528438,0.0235419152162024,0.024250736553856247,0.024364092829787156,0.02387773982118252,0.022802187728621838,0.021162478473522154,0.018997604768499352,0.016359584383080977,0.01331221154493205,0.009929515415432962,0.006293962860044494,0.002494449117478005,-0.0013758747019309342,-0.005221884222752981,-0.008948818610024157,-0.012464614196551519,-0.015682177491412368,-0.018521541478982,-0.020911851851144154,-0.02279313386825834,-0.024117795820529107,-0.024851831433870486,-0.024975690879125184,-0.02448479812296558,-0.02338970100610141,-0.021715849438222776,-0.019503006238796274,-0.016804304203895056,-0.013684971718791142,-0.010220757448281943,-0.0064960921183283725,-0.0026020319676233737,0.0013659660675632635,0.0053103831052041615,0.009134033735229384,0.012742459293362908,0.01604626008539258,0.018963309009365437,0.021420791795844343,0.023357023213850973,0.024722993974344194,0.025483609574772016,0.025618589810057612,0.025123005945741614,0.02400744140645317,0.02229777106101563,0.02003456355823526,0.017272120454566015,0.014077174847699055,0.010527280667149724,0.00670893146517092,0.0027154543076810126,-0.001355269983302946,-0.005403204578808768,-0.0093286136793114,-0.01303451852313505,-0.016429091920474804,-0.01942793222240646,-0.02195616044737445,-0.023950288492718744,-0.0253598118559921,-0.026148486948258647,-0.0262952607385001,-0.025794828938931827,-0.02465780801919247,-0.02291051580128179,-0.02059436500497909,-0.01776488364908231,-0.014490385432373245,-0.010850321892127642,-0.006933356052438982,-0.0028352042329100402,0.001343701483289065,0.0055006730708051866,0.009533288461087112,0.01334191361952857,0.016832162732151684,0.019917235790678996,0.02252007571961153,0.02457529147476555,0.026030799158008922,0.026849140003096225,0.027008441928198852,0.026503000031845518,0.02534346071923232,0.02355660385789394,0.021184727237718838,0.0182846474077417,0.014926340439833742,0.011191255093330483,0.007170339003769659,0.0029618256906964097,-0.0013311638051185619,-0.005603146136868212,-0.0097488659201358,-0.013665887485905364,-0.01725712433912373,-0.02043324390195747,-0.023114888018489495,-0.025234654067561823,-0.026738787269332275,-0.027588541741460533,-0.027761175894596028,-0.02725055665931306,-0.026067356591233187,-0.024238837874562352,-0.02180822739247584,-0.01883369710656195,-0.015386973738882462,-0.011551610938363124,-0.007420965510615344,-0.003095926688151766,0.001317546368469427,0.005711018774875616,0.009976242359706584,0.014007821004124073,0.01770581329901362,0.02097820829258311,0.023743213042684282,0.025931295145825223,0.027486929283124854,0.028370003962019105,0.028556852869357708,0.02804088438713199,0.026832792634280456,0.024960343647394165,0.022467740748822865,0.01941458351650481,0.0158744448106398,0.01193309978019285,0.007686449432636469,0.003238188987982796,-0.0013027223377760275,-0.005824728425680911,-0.010216414983354617,-0.014369252720089926,-0.018180277472766522,-0.021554641143706487,-0.024407970298402207,-0.026668473820125462,-0.02827874702238794,-0.02919722693561687,-0.02939926193511275,-0.02887776825881658,-0.027643456047594384,-0.025724618081665002,-0.023166485126521485,-0.020030162476652846,-0.016391172632809436,-0.012337638813005081,-0.007968152937031342,-0.0033893796166696746,0.0012865456681828138,0.0059447607908016,0.010470496487726263,0.014751901997059997,0.018682807307600694,0.022165353853743627,0.02511242852427696,0.027449840497666037,0.029118186562759708,0.030074358085368777,0.030292651457416858,0.02976545350647459,0.02850348371523104,0.02653558594993448,0.023908073458644534,0.02068364190285547,0.01693987585888799,0.012767384304911854,0.008267609845855855,0.0035503645920629645,-0.001268847505680996,-0.006071656625437231,-0.01073973225996102,-0.015157696370589111,-0.019215972845949572,-0.022813502949086663,-0.02586025951727711,-0.028279497422870004,-0.030009684099374156,-0.031006061634676344,-0.031241800847709906,-0.03070871768062537,-0.02941753291477632,-0.02739766739541358,-0.0246965763535603,-0.02137863776437286,-0.017523620700057814,-0.013224770050090028,-0.008586553534054013,-0.003722125385264724,0.0012494317748765991,0.006206019700854233,0.011025520737871936,0.015588804021938352,0.019782667721332903,0.023502644714648777,0.026655602229819216,0.029162070816599675,0.030958244478119557,0.03199760169175224,0.032252106215877936,0.03171295678576024,0.03039086580102231,0.028315858631141024,0.02553659693226033,0.0221192410898684,0.01814587828909568,0.01371255348646907,0.008926950447013294,0.0039057787725803998,-0.0012280697379313018,-0.006348526174896356,-0.01132943763183667,-0.01604767252262053,-0.020386161729657393,-0.0242368005393391,-0.02750313949968943,-0.030102797291907922,-0.03196953532616538,-0.03305494189531506,-0.03332968315332751,-0.03278428870056085,-0.0314294509004591,-0.029295828945729185,-0.02643336084585184,-0.022910098623931986,-0.018810593791330175,-0.014233871322447118,-0.009291040603097322,-0.004102600919038977,0.0012044932410635945,0.006499935665802777,0.011653264889269998,0.016537075309099168,0.02103016399093473,0.025020535510810935,0.028408190415965918,0.031107627954894093,0.03305000052052317,0.034184865605097155,0.03448149078152378,0.033929678069340836,0.03254008575127564,0.030344037993709997,0.0273928251910677,0.023756510492187057,0.019522270167744694,0.014792307040607383,0.009681386839109296,0.004314056781926476,-0.0011783862739623283,-0.006661104396002062,-0.011999025519415231,-0.017060167747650977,-0.021718899276122607,-0.02585905350273503,-0.029376822168700217,-0.03218335456211163,-0.03420699779380387,-0.0353951217548951,-0.03571548238235808,-0.03515708805171256,-0.03373054601342297,-0.0314678784976093,-0.02842181111994807,-0.024664549211409818,-0.02028607034632479,-0.015391973344937648,-0.010100935080726955,-0.004541836254177863,0.0011493743426729977,0.006833000863593102,0.012369025707057247,0.017620555178721076,0.022457200814681267,0.026758312937909638,0.03041598635157967,0.03333776338604042,0.035448966687508125,0.036694602996596624,0.03704078950193059,0.03647566591954357,0.035009767962734924,0.032675851025373584,0.02952816638319736,0.025641205692228355,0.02110794269974495,0.016037613557147102,0.010553088626439402,0.004787898916586367,-0.0011170109838317837,-0.0070167246156316605,-0.012765906055097183,-0.01822237603496026,-0.023250623888004602,-0.02772516866856241,-0.03153368618986343,-0.03457982415788251,-0.03678563495898251,-0.03809356479522823,-0.03846794853982126,-0.037895971649023794,-0.03638807342699901,-0.03397777958142162,-0.0307209659977887,-0.026694569656549757,-0.021994776275473887,-0.016734727243078618,-0.011041800395747425,-0.005054529882909653,0.001080760506428053,0.007213528846832697,0.013192704345085515,0.01887040407466855,0.024105585848465175,0.028767547115414495,0.032739183200458495,0.03591992378523228,0.038228274120851884,0.03960389689510679,0.040009181719785805,0.03943026159467964,0.03787744914379117,0.03538507958029798,0.032010761894675124,0.027834054319310995,0.02295459434521494,0.017489727101159612,0.01157168841745989,0.005344410073992874,-0.0010399757050143568, -0.0074248477399438025,-0.013652932944865866,-0.019570175058984295, -0.02502954002236904,-0.02989466412910682,-0.034043254574452377,-0.03737015773200255,-0.039790018320897146,-0.04123946236788187,-0.041678748303125665, -0.04109284337790695, -0.03949189654672641,-0.036911093677711566,-0.03340989608476297,-0.02907067854267498,-0.023996797779897168,-0.018310136576819257,-0.012148181680284408,-0.005660705451633268,0.0009938687974208394,0.007652329712972285, 0.014150674999827556,0.020328144967100583,0.02603119346075172,0.031117298244761855,0.03545851642402368,0.038944696368763757,0.041486265668145623,0.04301652472076526,0.04349338742293708,0.04290052375832257,0.04124787360313014,0.038571516388311224,0.03493289703084617,0.030417424374802812,0.02513247388076009,0.019204841087239532,0.012777706073684902,0.006007181439886584,-0.0009414731264106246,-0.00789787806051382,-0.014690704930136092,-0.021151889295771664,-0.027120781995569207,-0.032448136484148495,-0.03699983343109193,-0.04066024980477274,-0.043335187993639154,-0.04495429095576272,-0.04547288169133723,-0.04487317920795829,-0.04316485826111046,-0.04038493613666262,-0.03659698620961514,-0.0318896945615375,-0.026374792162006874,-0.020184410616968,-0.013467923875374994,-0.006388351206328235,0.0008815921118185961,0.008163700892720166,0.015278640684767369,0.022050356436424112,0.028310420992857598,0.03390221621062065,0.03868484309385729,0.04253666353426036,0.045358384837867714,0.04707560904475849,0.047640781837326326,0.047034490284135574,0.04526607443227943,0.042373534460643014,0.0384227323338282,0.03350590423117361,0.027739517042131512,0.021261518498919243,0.01422804565659487,0.006809670052392734,-0.0008127303613872672,-0.008452372811072403,-0.01592113791948644,-0.023034193034414358,-0.029614557259915124,-0.035497495665123634,-0.040534633795878044,-0.04459768995718312,-0.04758173162654765,-0.04940787359363371,-0.05002534873600844,-0.049412897417360026,-0.04757943797181527,-0.0445639982183359,-0.04043490600837773,-0.03528825500760325,-0.029245679802397066,-0.022451491563595213,-0.015069241468690781,-0.00727779348202511,0.0007329994411377716,0.008766911441869722,0.01662614014208101,0.02411616633427197,0.0310505578343443,0.03725559911993982,0.04257463205223558,0.04687199948997537,0.050036492805309106,0.05198421598969846,0.05266079292072407,0.052042860117698514,0.050138804568472875,0.04698872454599378,0.04266361030663365,0.03726376071077053,0.030916470660572168,0.023773042346222416,0.016005190181961185,0.007800924576506711,-0.000639987064316204,-0.009110872797361436,-0.01740320447709376,-0.025311718939246018,-0.032639486558844924,-0.03920280232746915,-0.04483577828208104,-0.04939452279944773,-0.05276080179806229,-0.05484508904517152,-0.05558892726589368,-0.05496653825142696,-0.05298563827005522,-0.04968743436259676,-0.045145797086595246,-0.03946562547460371,-0.03278043989705011,-0.02524925767918015,-0.017052824240289834,-0.008389288755623357,0.000530572520549295,0.009488470446348795,0.018263930940601143,0.02663970698412353,0.03440714217315382,0.041371353762835156,0.04735610682044409,0.05220825796080843,0.05580165700999143,0.05804040761274113,0.05886140296968819,0.05823607020403734,0.056171275902273596,0.052709365692153586,0.04792733182312625,0.041935124086485594,0.03487314053260381,0.026908954791322676,0.018233355875649906,0.00905579367337897,-0.00040066152880565103,-0.009904724572618465,-0.01922253541079696,-0.02812339641494256,-0.0363854666690031,-0.043801273122293774,-0.05018290212743681,-0.05536674190906972,-0.05921765674667074,-0.061632486877791125,-0.0625427840302011,-0.06191671069946391,-0.05976005136997111,-0.056116305351812536,-0.05106585325530414,-0.04472421180730702,-0.037239414174937674,-0.028788574651262014,-0.019573716937970543,-0.00981696382451355,0.000244797654257922,0.010365647912284521,0.02029662514555336,0.02979182887031954,0.03861448753029594,0.04654284096710592,0.053375692135346146,0.05893748962269074,0.06308281315348804,0.06570014807312907,0.06671485151208935,0.06609123212243802,0.06383368651178466,0.059986858263336794,0.054634809178529885,0.04789921653551977,0.039936634133969785,0.030934878105860486,0.021108620340358097,0.010694292353985396,-0.00005557996607238711,-0.010878475554157246,-0.021508264552086598,-0.031681727113893395,-0.04114504555836772,-0.04966011036966606,-0.05701048402120923,-0.06300687391799153,-0.06749197676406793,-0.07034457112098592,-0.07148275249891736,-0.07086622560648373,-0.068497590900056,-0.0644225867831778,-0.05872927413119469,-0.05154617564343897,-0.043039408227217024,-0.03340887156492647,-0.0228835795925152,-0.011716243238079502,-0.00017723189123445188,0.011451942788159733,0.022885464374922768,0.033840205146845985,0.04404270514452145,0.05323596556231735,0.06118588850582777,0.06768720258065183,0.07256872518894625,0.07569782755373398,0.0769839870235062,0.07638133270302289,0.07389011440687411,0.0695570507731415,0.06347453948797586,0.05577874030510001,0.046646569224260345,0.03629166914295988,0.02495944785266162,0.012921297779449632,0.0004681327799632659,-0.0120966049341197,-0.024464300513265442,-0.036328707421703035,-0.04739349029666969,-0.0573795849039418,-0.0660321933991325,-0.07312724059145556,-0.07847712871210756,-0.0819356440585774,-0.08340188846345704,-0.08282313137306244,-0.08019650388575841,-0.07556948379014226,-0.06903914980047911,-0.06075021311142139,-0.05089186436229889,-0.0396935033825819,-0.02741944696490204,-0.014362735689161897,-0.0008381838553122669,0.012825163710599954,0.02629198834006269,0.03922887643880289,0.0513125223315238,0.062237754461780564,0.07172518698177673,0.07952830622706637,0.08543981374265507,0.08929706415282981,0.0909864568796878,0.09044666504488007,0.08767061227369254,0.08270613791944995,0.07565532273444199,0.06667247947873134,0.055960845598262615,0.04376804712570167,0.03038043357670634,0.016116412073490075,0.001318934515252238,-0.01365268631650838,-0.02843143784849361,-0.042651538712108625,-0.055957423863408566,-0.06801256472957097,-0.07850790727602923,-0.0871697181843753,-0.09376664180269134,-0.0981157879210721,-0.10008769235809131,-0.09961001832756423,-0.09666989599527905,-0.09131482984925766,-0.08365213773798948,-0.07384692086654425,-0.06211859983148435,-0.0487360870565604,-0.03401169990116054,-0.018293950416486213,-0.0019593764301506747,0.014596396376675138,0.03096815111613618,0.046750909068111225,0.061549855407493845,0.07499012016988563,0.0867261744098874,0.0964506084144615,0.1039020714719725,0.10887217081613709,0.111211150578966,0.11083219938661018,0.10771426698985462,0.1019033053079909,0.09351188666693157,0.08271719094928044,0.0697573929193596,0.05492652018971198,0.03856789020578361,0.02106627031240195,0.002838937543563369,-0.015674156573929662,-0.03402088692568697,-0.051747873450736386,-0.06841155664804159,-0.08358916235281315,-0.09688928786169744,-0.10796184763762298,-0.11650712937536487,-0.12228372992451296,-0.12511516506351938,-0.12489497686974772,-0.12159019677681537,-0.11524306057542304,-0.10597091272051502,-0.09396428039908976,-0.07948314187429106,-0.06285145760316106,-0.04445007546866469,-0.02470816212795454,-0.0040933499557582525,0.016899177583090532,0.037758410913658495,0.057969775791158314,0.07702764095646673,0.09444777219727384,0.10977943053792952,0.12261681705438879,0.13260957879629862,0.1394721092951341,0.14299140277451738,0.14303325292255478,0.139546624250383,0.13256606582283764,0.1222120825636204,0.10868942736762614,0.09228332678160646,0.0733537028765328,0.05232750294437881,0.029689295628156025,0.005970335890561541,-0.01826365924112258,-0.042425747944643835,-0.06592170955057823,-0.08816437359800977,-0.10858799268135634,-0.12666231393687521,-0.14190600633619366,-0.1538991114784016,-0.16229420415986737,-0.16682597531758303,-0.16731898346602686,-0.16369336078079016,-0.15596830566349987,-0.14426324394643283,-0.12879659473383145,-0.1098821330050303,-0.08792299822707564,-0.06340345500629471,-0.03687856690458388,-0.008961996634484394,0.019687806341973174,0.048382727437663975,0.07642107860306183,0.10310429250053196,0.1277538315634778,0.14972791304434163,0.16843764910725595,0.18336220837419137,0.19406262205081445,0.2001938835840536,0.20151502526600837,0.19789689761916696,0.18932742690240606,0.17591418161586236,0.15788413925089936,0.13558060839594346,0.1094573272374418,0.08006982598769283,0.04806420629408894,0.01416355370502847,-0.020847741709477344,-0.056141427884018213,-0.09086422087330824,-0.12415760806428999,-0.1551781799973049,-0.18311802607983016,-0.20722471962616415,-0.22682041856876872,-0.24131962000459461,-0.2502451293581236,-0.25324183800952077,-0.250087946155664,-0.24070331961559538,-0.22515472921520674,-0.20365778804800422,-0.17657547389889783,-0.14441319988521548,-0.10781047425583663,-0.06752926856705795,-0.024439290361676958,0.02049956973833415,0.06625727766290923,0.11175578088768122,0.15589276288422155,0.19756652586968265,0.23570146589357976,0.26927358087283626,0.29733544082962843,0.3190400507314687,0.33366305013827313,0.3406227202063703,0.3394973070841716,0.3300392206839183,0.31218572829157243,0.28606583230094695,0.25200309912586005,0.21051429046014697,0.1623037367650311,0.1082534842894091,0.049409339111457055,-0.013036977370172714,-0.07776925936671261,-0.14337144941015117,-0.20835501273819287,-0.2711885265546741,-0.33032890100276513,-0.3842536040003885,-0.4314932301851665,-0.47066373594440675,-0.5004976584229822,-0.5198736467664834,-0.5278436586178057,-0.5236572136806413,-0.5067821483258685,-0.47692137978539223,-0.43402526421586857,-0.37829921833413116,-0.31020636771813986,-0.23046508433710503,-0.14004137938069164,-0.0401362228547858,0.0678320335033543,0.182249850879551,0.3013349386437645,0.42316646220493953,0.5457184731667526,0.6668959397772898,0.784572696102819,0.8966305822835551,1.0009990167107312,1.0956942247623747,1.1788573482944704,1.2487906755200475,1.3039912620028706,1.3431812596962447,1.365334331401982,1.3696976015376463,1.3558086792299628,1.3235073847970373,1.2729419137252573,1.2045692811970832,1.119150002860804,1.0177370815456632,0.9016594826725575,0.7725003908622943,0.6320706444335235,0.482377840955056,0.3255916937732503,0.16400629467421043, 0, -0.16400629467421043, -0.3255916937732503, -0.482377840955056, -0.6320706444335235, -0.7725003908622943,-0.9016594826725575,-1.0177370815456632,-1.119150002860804,-1.2045692811970832,-1.2729419137252573,-1.3235073847970373,-1.3558086792299628,-1.3696976015376463,-1.365334331401982,-1.3431812596962447,-1.3039912620028706,-1.2487906755200475, -1.1788573482944704, -1.0956942247623747, -1.0009990167107312, -0.8966305822835551,-0.784572696102819,-0.6668959397772898, -0.5457184731667526, -0.42316646220493953,-0.3013349386437645,-0.182249850879551,-0.0678320335033543,0.0401362228547858,0.14004137938069164,0.23046508433710503, 0.31020636771813986,0.37829921833413116, 0.43402526421586857,0.47692137978539223,0.5067821483258685,0.5236572136806413,0.5278436586178057,0.5198736467664834,0.5004976584229822,0.47066373594440675,0.4314932301851665,0.3842536040003885,0.33032890100276513,0.2711885265546741,0.20835501273819287,0.14337144941015117,0.07776925936671261,0.013036977370172714,-0.049409339111457055,-0.1082534842894091,-0.1623037367650311,-0.21051429046014697,-0.25200309912586005,-0.28606583230094695,-0.31218572829157243,-0.3300392206839183,-0.3394973070841716,-0.3406227202063703,-0.33366305013827313,-0.3190400507314687,-0.29733544082962843,-0.26927358087283626,-0.23570146589357976,-0.19756652586968265,-0.15589276288422155,-0.11175578088768122,-0.06625727766290923,-0.02049956973833415,0.024439290361676958,0.06752926856705795,0.10781047425583663,0.14441319988521548,0.17657547389889783,0.20365778804800422,0.22515472921520674,0.24070331961559538,0.250087946155664,0.25324183800952077,0.2502451293581236,0.24131962000459461,0.22682041856876872,0.20722471962616415,0.18311802607983016,0.1551781799973049,0.12415760806428999,0.09086422087330824,0.056141427884018213,0.020847741709477344,-0.01416355370502847,-0.04806420629408894,-0.08006982598769283,-0.1094573272374418,-0.13558060839594346,-0.15788413925089936,-0.17591418161586236,-0.18932742690240606,-0.19789689761916696,-0.20151502526600837,-0.2001938835840536,-0.19406262205081445,-0.18336220837419137,-0.16843764910725595,-0.14972791304434163,-0.1277538315634778,-0.10310429250053196,-0.07642107860306183,-0.048382727437663975,-0.019687806341973174,0.008961996634484394,0.03687856690458388,0.06340345500629471,0.08792299822707564,0.1098821330050303,0.12879659473383145,0.14426324394643283,0.15596830566349987,0.16369336078079016,0.16731898346602686,0.16682597531758303,0.16229420415986737,0.1538991114784016,0.14190600633619366,0.12666231393687521,0.10858799268135634,0.08816437359800977,0.06592170955057823,0.042425747944643835,0.01826365924112258,-0.005970335890561541,-0.029689295628156025,-0.05232750294437881,-0.0733537028765328,-0.09228332678160646,-0.10868942736762614,-0.1222120825636204,-0.13256606582283764,-0.139546624250383,-0.14303325292255478,-0.14299140277451738,-0.1394721092951341,-0.13260957879629862,-0.12261681705438879,-0.10977943053792952,-0.09444777219727384,-0.07702764095646673,-0.057969775791158314,-0.037758410913658495,-0.016899177583090532,0.0040933499557582525,0.02470816212795454,0.04445007546866469,0.06285145760316106,0.07948314187429106,0.09396428039908976,0.10597091272051502,0.11524306057542304,0.12159019677681537,0.12489497686974772,0.12511516506351938,0.12228372992451296,0.11650712937536487,0.10796184763762298,0.09688928786169744,0.08358916235281315,0.06841155664804159,0.051747873450736386,0.03402088692568697,0.015674156573929662,-0.002838937543563369,-0.02106627031240195,-0.03856789020578361,-0.05492652018971198,-0.0697573929193596,-0.08271719094928044,-0.09351188666693157,-0.1019033053079909,-0.10771426698985462,-0.11083219938661018,-0.111211150578966,-0.10887217081613709,-0.1039020714719725,-0.0964506084144615,-0.0867261744098874,-0.07499012016988563,-0.061549855407493845,-0.046750909068111225,-0.03096815111613618,-0.014596396376675138,0.0019593764301506747,0.018293950416486213,0.03401169990116054,0.0487360870565604,0.06211859983148435,0.07384692086654425,0.08365213773798948,0.09131482984925766,0.09666989599527905,0.09961001832756423,0.10008769235809131,0.0981157879210721,0.09376664180269134,0.0871697181843753,0.07850790727602923,0.06801256472957097,0.055957423863408566,0.042651538712108625,0.02843143784849361,0.01365268631650838,-0.001318934515252238,-0.016116412073490075,-0.03038043357670634,-0.04376804712570167,-0.055960845598262615,-0.06667247947873134,-0.07565532273444199,-0.08270613791944995,-0.08767061227369254,-0.09044666504488007,-0.0909864568796878,-0.08929706415282981,-0.08543981374265507,-0.07952830622706637,-0.07172518698177673,-0.062237754461780564,-0.0513125223315238,-0.03922887643880289,-0.02629198834006269,-0.012825163710599954,0.0008381838553122669,0.014362735689161897,0.02741944696490204,0.0396935033825819,0.05089186436229889,0.06075021311142139,0.06903914980047911,0.07556948379014226,0.08019650388575841,0.08282313137306244,0.08340188846345704,0.0819356440585774,0.07847712871210756,0.07312724059145556,0.0660321933991325,0.0573795849039418,0.04739349029666969,0.036328707421703035,0.024464300513265442,0.0120966049341197,-0.0004681327799632659,-0.012921297779449632,-0.02495944785266162,-0.03629166914295988,-0.046646569224260345,-0.05577874030510001,-0.06347453948797586,-0.0695570507731415,-0.07389011440687411,-0.07638133270302289,-0.0769839870235062,-0.07569782755373398,-0.07256872518894625,-0.06768720258065183,-0.06118588850582777,-0.05323596556231735,-0.04404270514452145,-0.033840205146845985,-0.022885464374922768,-0.011451942788159733,0.00017723189123445188,0.011716243238079502,0.0228835795925152,0.03340887156492647,0.043039408227217024,0.05154617564343897,0.05872927413119469,0.0644225867831778,0.068497590900056,0.07086622560648373,0.07148275249891736,0.07034457112098592,0.06749197676406793,0.06300687391799153,0.05701048402120923,0.04966011036966606,0.04114504555836772,0.031681727113893395,0.021508264552086598,0.010878475554157246,0.00005557996607238711,-0.010694292353985396,-0.021108620340358097,-0.030934878105860486,-0.039936634133969785,-0.04789921653551977,-0.054634809178529885,-0.059986858263336794,-0.06383368651178466,-0.06609123212243802,-0.06671485151208935,-0.06570014807312907,-0.06308281315348804,-0.05893748962269074,-0.053375692135346146,-0.04654284096710592,-0.03861448753029594,-0.02979182887031954,-0.02029662514555336,-0.010365647912284521,-0.000244797654257922,0.00981696382451355,0.019573716937970543,0.028788574651262014,0.037239414174937674,0.04472421180730702,0.05106585325530414,0.056116305351812536,0.05976005136997111,0.06191671069946391,0.0625427840302011,0.061632486877791125,0.05921765674667074,0.05536674190906972,0.05018290212743681,0.043801273122293774,0.0363854666690031,0.02812339641494256,0.01922253541079696,0.009904724572618465,0.00040066152880565103,-0.00905579367337897,-0.018233355875649906,-0.026908954791322676,-0.03487314053260381,-0.041935124086485594,-0.04792733182312625,-0.052709365692153586,-0.056171275902273596,-0.05823607020403734,-0.05886140296968819,-0.05804040761274113,-0.05580165700999143,-0.05220825796080843,-0.04735610682044409,-0.041371353762835156,-0.03440714217315382,-0.02663970698412353,-0.018263930940601143,-0.009488470446348795,-0.000530572520549295,0.008389288755623357,0.017052824240289834,0.02524925767918015,0.03278043989705011,0.03946562547460371,0.045145797086595246,0.04968743436259676,0.05298563827005522,0.05496653825142696,0.05558892726589368,0.05484508904517152,0.05276080179806229,0.04939452279944773,0.04483577828208104,0.03920280232746915,0.032639486558844924,0.025311718939246018,0.01740320447709376,0.009110872797361436,0.000639987064316204,-0.007800924576506711,-0.016005190181961185,-0.023773042346222416,-0.030916470660572168,-0.03726376071077053,-0.04266361030663365,-0.04698872454599378,-0.050138804568472875,-0.052042860117698514,-0.05266079292072407,-0.05198421598969846,-0.050036492805309106,-0.04687199948997537,-0.04257463205223558,-0.03725559911993982,-0.0310505578343443,-0.02411616633427197,-0.01662614014208101,-0.008766911441869722,-0.0007329994411377716,0.00727779348202511,0.015069241468690781,0.022451491563595213,0.029245679802397066,0.03528825500760325,0.04043490600837773,0.0445639982183359,0.04757943797181527,0.049412897417360026,0.05002534873600844,0.04940787359363371,0.04758173162654765,0.04459768995718312,0.040534633795878044,0.035497495665123634,0.029614557259915124,0.023034193034414358,0.01592113791948644,0.008452372811072403,0.0008127303613872672,-0.006809670052392734,-0.01422804565659487,-0.021261518498919243,-0.027739517042131512,-0.03350590423117361,-0.0384227323338282,-0.042373534460643014,-0.04526607443227943,-0.047034490284135574,-0.047640781837326326,-0.04707560904475849,-0.045358384837867714,-0.04253666353426036,-0.03868484309385729,-0.03390221621062065,-0.028310420992857598,-0.022050356436424112,-0.015278640684767369,-0.008163700892720166,-0.0008815921118185961,0.006388351206328235,0.013467923875374994,0.020184410616968,0.026374792162006874,0.0318896945615375,0.03659698620961514,0.04038493613666262,0.04316485826111046,0.04487317920795829,0.04547288169133723,0.04495429095576272,0.043335187993639154,0.04066024980477274,0.03699983343109193,0.032448136484148495,0.027120781995569207,0.021151889295771664,0.014690704930136092,0.00789787806051382,0.0009414731264106246,-0.006007181439886584,-0.012777706073684902,-0.019204841087239532,-0.02513247388076009,-0.030417424374802812,-0.03493289703084617,-0.038571516388311224,-0.0412478736031301,-0.04290052375832257,-0.04349338742293708,-0.04301652472076526,-0.041486265668145623,-0.038944696368763757,-0.03545851642402368,-0.031117298244761855,-0.02603119346075172,-0.020328144967100583,-0.014150674999827556,-0.007652329712972285,-0.0009938687974208394,0.005660705451633268,0.012148181680284408,0.018310136576819257,0.023996797779897168,0.02907067854267498,0.03340989608476297,0.036911093677711566,0.03949189654672641,0.04109284337790695,0.041678748303125665,0.04123946236788187,0.039790018320897146,0.03737015773200255,0.034043254574452377, 0.02989466412910682,0.02502954002236904,0.019570175058984295,0.013652932944865866,0.0074248477399438025,0.0010399757050143568,-0.005344410073992874,-0.01157168841745989,-0.017489727101159612,-0.02295459434521494,-0.027834054319310995,-0.032010761894675124,-0.03538507958029798,-0.03787744914379117,-0.03943026159467964,-0.040009181719785805,-0.03960389689510679,-0.038228274120851884,-0.03591992378523228,-0.032739183200458495,-0.028767547115414495,-0.024105585848465175,-0.01887040407466855,-0.013192704345085515,-0.007213528846832697,-0.001080760506428053,0.005054529882909653,0.011041800395747425,0.016734727243078618,0.021994776275473887,0.026694569656549757,0.0307209659977887,0.03397777958142162,0.03638807342699901,0.037895971649023794,0.03846794853982126,0.03809356479522823,0.03678563495898251,0.03457982415788251,0.03153368618986343,0.02772516866856241,0.023250623888004602,0.01822237603496026,0.012765906055097183,0.0070167246156316605,0.0011170109838317837,-0.004787898916586367,-0.010553088626439402,-0.016037613557147102,-0.02110794269974495,-0.025641205692228355,-0.02952816638319736,-0.032675851025373584,-0.035009767962734924,-0.03647566591954357,-0.03704078950193059,-0.036694602996596624,-0.035448966687508125,-0.03333776338604042,-0.03041598635157967,-0.026758312937909638,-0.022457200814681267,-0.017620555178721076,-0.012369025707057247,-0.006833000863593102,-0.0011493743426729977,0.004541836254177863,0.010100935080726955,0.015391973344937648,0.02028607034632479,0.024664549211409818,0.02842181111994807,0.0314678784976093,0.03373054601342297,0.03515708805171256,0.03571548238235808,0.0353951217548951,0.03420699779380387,0.03218335456211163,0.029376822168700217,0.02585905350273503,0.021718899276122607,0.017060167747650977,0.011999025519415231,0.006661104396002062,0.0011783862739623283,-0.004314056781926476,-0.009681386839109296,-0.014792307040607383,-0.019522270167744694,-0.023756510492187057,-0.0273928251910677,-0.030344037993709997,-0.03254008575127564,-0.033929678069340836,-0.03448149078152378,-0.034184865605097155,-0.03305000052052317,-0.031107627954894093,-0.028408190415965918,-0.025020535510810935,-0.02103016399093473,-0.016537075309099168,-0.011653264889269998,-0.006499935665802777,-0.0012044932410635945,0.004102600919038977,0.009291040603097322,0.014233871322447118,0.018810593791330175,0.022910098623931986,0.02643336084585184,0.029295828945729185,0.0314294509004591,0.03278428870056085,0.03332968315332751,0.03305494189531506,0.03196953532616538,0.030102797291907922,0.02750313949968943,0.0242368005393391,0.020386161729657393,0.01604767252262053,0.01132943763183667,0.006348526174896356,0.0012280697379313018,-0.0039057787725803998,-0.008926950447013294,-0.01371255348646907,-0.01814587828909568,-0.0221192410898684,-0.02553659693226033,-0.028315858631141024,-0.03039086580102231,-0.03171295678576024,-0.032252106215877936,-0.03199760169175224,-0.030958244478119557,-0.029162070816599675,-0.026655602229819216,-0.023502644714648777,-0.019782667721332903,-0.015588804021938352,-0.011025520737871936,-0.006206019700854233,-0.0012494317748765991,0.003722125385264724,0.008586553534054013,0.013224770050090028,0.017523620700057814,0.02137863776437286,0.0246965763535603,0.02739766739541358,0.02941753291477632,0.03070871768062537,0.031241800847709906,0.031006061634676344,0.030009684099374156,0.028279497422870004,0.02586025951727711,0.022813502949086663,0.019215972845949572,0.015157696370589111,0.01073973225996102,0.006071656625437231,0.001268847505680996,-0.0035503645920629645,-0.008267609845855855,-0.012767384304911854,-0.01693987585888799,-0.02068364190285547,-0.023908073458644534,-0.02653558594993448,-0.02850348371523104,-0.02976545350647459,-0.030292651457416858,-0.030074358085368777,-0.029118186562759708,-0.027449840497666037,-0.02511242852427696,-0.022165353853743627,-0.018682807307600694,-0.014751901997059997,-0.010470496487726263,-0.0059447607908016,-0.0012865456681828138,0.0033893796166696746,0.007968152937031342,0.012337638813005081,0.016391172632809436,0.020030162476652846,0.023166485126521485,0.025724618081665002,0.027643456047594384,0.02887776825881658,0.02939926193511275,0.02919722693561687,0.02827874702238794,0.026668473820125462,0.024407970298402207,0.021554641143706487,0.018180277472766522,0.014369252720089926,0.010216414983354617,0.005824728425680911,0.0013027223377760275,-0.003238188987982796,-0.007686449432636469,-0.01193309978019285,-0.0158744448106398,-0.01941458351650481,-0.022467740748822865,-0.024960343647394165,-0.026832792634280456,-0.02804088438713199,-0.028556852869357708,-0.028370003962019105,-0.027486929283124854,-0.025931295145825223,-0.023743213042684282,-0.02097820829258311,-0.01770581329901362,-0.014007821004124073,-0.009976242359706584,-0.005711018774875616,-0.001317546368469427,0.003095926688151766,0.007420965510615344,0.011551610938363124,0.015386973738882462,0.01883369710656195,0.02180822739247584,0.024238837874562352,0.026067356591233187,0.02725055665931306,0.027761175894596028,0.027588541741460533,0.026738787269332275,0.025234654067561823,0.023114888018489495,0.02043324390195747,0.01725712433912373,0.013665887485905364,0.0097488659201358,0.005603146136868212,0.0013311638051185619,-0.0029618256906964097,-0.007170339003769659,-0.011191255093330483,-0.014926340439833742,-0.0182846474077417,-0.021184727237718838,-0.02355660385789394,-0.02534346071923232,-0.026503000031845518,-0.027008441928198852,-0.026849140003096225,-0.026030799158008922,-0.02457529147476555,-0.02252007571961153,-0.019917235790678996,-0.016832162732151684,-0.01334191361952857,-0.009533288461087112,-0.0055006730708051866,-0.001343701483289065,0.0028352042329100402,0.006933356052438982,0.010850321892127642,0.014490385432373245,0.01776488364908231,0.02059436500497909,0.02291051580128179,0.02465780801919247,0.025794828938931827,0.0262952607385001,0.026148486948258647,0.0253598118559921,0.023950288492718744,0.02195616044737445,0.01942793222240646,0.016429091920474804,0.01303451852313505,0.0093286136793114,0.005403204578808768,0.001355269983302946,-0.0027154543076810126,-0.00670893146517092,-0.010527280667149724,-0.014077174847699055,-0.017272120454566015,-0.02003456355823526,-0.02229777106101563,-0.02400744140645317,-0.025123005945741614,-0.025618589810057612,-0.025483609574772016,-0.024722993974344194,-0.023357023213850973,-0.021420791795844343,-0.018963309009365437,-0.01604626008539258,-0.012742459293362908,-0.009134033735229384,-0.0053103831052041615,-0.0013659660675632635,0.0026020319676233737,0.0064960921183283725,0.010220757448281943,0.013684971718791142,0.016804304203895056,0.019503006238796274,0.021715849438222776,0.02338970100610141,0.02448479812296558,0.024975690879125184,0.024851831433870486,0.024117795820529107,0.02279313386825834,0.020911851851144154,0.018521541478982,0.015682177491412368,0.012464614196551519,0.008948818610024157,0.005221884222752981,0.0013758747019309342,-0.002494449117478005,-0.006293962860044494,-0.009929515415432962,-0.01331221154493205,-0.016359584383080977,-0.018997604768499352,-0.021162478473522154,-0.022802187728621838,-0.02387773982118252,-0.024364092829787156,-0.024250736553856247,-0.0235419152162024,-0.022256487342528438,-0.0204274271397272,-0.018100980484951536,-0.015335497084391398,-0.01219996825804101,-0.00877230696196879,-0.005137412898897979,-0.0013850707403445341,0.0023922665352372995,0.006101754488728146,0.009652438205476687,0.01295748140668488,0.015936289082210144,0.018516471784701678,0.020635603736159934,0.022242732074113963,0.023299600775860938,0.02378155989064526,0.02367813850517202,0.022993268174411528, 0.021745152162181716,0.01996578454237594,0.01770013179802034,0.015004997811135755,0.01194760085978936,0.008603898241440104,0.005056700253527264,0.001393620335307468,-0.0022950879128633586,-0.005918753458577819, -0.009388515598962269,-0.012619502043745446,-0.015532903956532736,-0.018057897245600772,-0.02013336328872522,-0.02170936730991113, -0.022748358673196818,-0.02322606426917705,-0.023132053771873592,-0.02246996364890464,-0.021257375216423152,-0.0195253505349204,-0.017317638333743286,-0.014689570225327374,-0.011706675027270718,-0.008443045867156036,-0.00497950073477281,-0.0014015821240635268,0.0022025547471407753,0.005744313029523571,0.009136831200036187,0.012297112416656496, 0.01514805409293201,0.017620328084198004, 0.019654065658479634, 0.021200306322634314, 0.02222217546549378, 0.0226957625177727, 0.022610678745961104, 0.021970281710725268, 0.02079156163410272, 0.019104693231692664, 0.016952264771848306, 0.014388204022376175, 0.011476428143240118, 0.008289251300775069, 0.004905589651580713, 0.00140900823032221, -0.0021143419426140086, -0.005577845630634443, -0.008896551793144617, -0.011989256359865178, -0.014780488324228756, -0.017202350600789295, -0.019196170766077877, -0.02071392157053247, -0.021719376851525408, -0.022188975050966963, -0.022112369782274294, -0.02149265462138347, -0.020346257324130104, -0.01870250679997739, -0.016602884199987043, -0.014099977208244078, -0.011256163871514341, -0.008142058884927753, -0.004834761011787389, -0.00141594511359963, 0.0020301540135732573, 0.005418816247279273, 0.008666918116213984, 0.011694971002926942, 0.014429065614320767, 0.016802675173390316, 0.018758273358612965, 0.020248727662251685, 0.021238434439203365, 0.021704168334336447, 0.021635625849232957, 0.021035650363780307, 0.019920133777660724, 0.018317597888086602, 0.016268466477704344, 0.01382404665772478, 0.011045245110773818, 0.008001051332409439, 0.004766825622644666, 0.001422434292103143, -0.0019497217920851394, -0.005266736675474448, -0.008447236835180876, -0.011413376692503821, -0.014092743202077183, -0.01642012293775027, -0.018339088571549058, -0.01980336616917874, -0.020777950190207572, -0.02123993934715474, -0.02117907338963555, -0.02059795826643023, -0.019511974797451554, -0.017948873769948425, -0.015948068067589742, -0.01355963985860181, -0.010843087828347095, -0.00786584577273261, -0.004701609417503863, -0.0014285129602282405, 0.00187279956519293, 0.0051211605136237655, 0.008236873541285012, 0.01114366819302468, 0.01377056624452489, 0.01605361414717347, 0.017937439307072388, 0.019376592344255338, 0.02033664281309794, 0.020795001987215626, 0.020741453069891686, 0.020178376417009432, 0.019120664875185333, 0.0175953319581651, 0.01564082312223433, 0.013306047671493584, 0.010649155648402716, 0.00773609027735929, 0.004638951977968503, 0.0014342145178680122, -0.0017991625774623876, -0.004981678783586611, -0.008035246622244304, -0.010885106980669185, -0.013461658742705098, -0.015702157970090905, -0.01755224516773573, -0.018967263473787403, -0.01991333582598348, -0.02036817514037183, -0.020321608148466477, -0.019775800610678917, -0.018745178982852072, -0.017256051077630397, -0.015345935649716385, -0.013062617962545108, -0.0104629550890398, -0.0076114607973693975, -0.004578705225475791, -0.0014395690256405519, 0.0017286048456615758, 0.004847916090733413, 0.007841821882691563, 0.010637014475414253, 0.01316521556862294, 0.015364843522382056, 0.01718251272630553, 0.018574328632701375, 0.0195069470545439, 0.019958372181729127, 0.019918474237303377, 0.019389214619192453, 0.01838457358146651, 0.016930182824770386, 0.015062672608372978, 0.012828749988629842, 0.01028403135929919, 0.007491658457589216, 0.004520732260142814, 0.0014446035976513863, -0.0016609372410323162, -0.004719527247166793, -0.00765610780915488, -0.010398766080577401, -0.012880495440505985, -0.015040831963555533, -0.016827326947297685, -0.018196819649855207, -0.01911647936800561, -0.019564591711993963, -0.01953107026540971, -0.019017681600231897, -0.018037978681067334, -0.01661694486467684, -0.014790357804757985, -0.012603889433317896, -0.010111964640790455, -0.0073764071597169295, -0.004464906327954762, -0.0014493427413980271, 0.0015959858017241364, 0.004596194294233417, 0.007477651391260596, 0.010169785919654237, 0.012606814717344234, 0.01472934951240313, 0.01648584360424345, 0.017833843119877, 0.018741012486104755, 0.019185909362704312, 0.019158490483088687, 0.018660336494081123, 0.017704590811336143, 0.016315614540938817, 0.01452836648787009, 0.012387524007289036, 0.009946366789984437, 0.007265451454066335, 0.004411109900092095, 0.0014538086527928896, -0.0015335902438228164, -0.004477623870321846, -0.007306034424402164, -0.009949542177106122, -0.012343541903364506, -0.014429681259710532, -0.016157282560405096, -0.01748457332278261, -0.018379695715318146, -0.01882147052916997, -0.01879989736963453, -0.01831637927773816, -0.017383666783279565, -0.016025523291719142, -0.01427612054869527, -0.012179179539710703, -0.0097868784066856, -0.007158554645466938, -0.004359233850482814, -0.0014580214729518557, 0.001473602644254898, 0.004363544878129201, 0.0071408702303832885, 0.009737542963765855, 0.012090092769458544, 0.01414116567388682, 0.01584092180037047, 0.017148245933255975, 0.018031741493678068, 0.018470483910864078, 0.01845451532759405, 0.01798506896573736, 0.01707451814002669, 0.015746051681265503, 0.014033084247438328, 0.011978416497832857, 0.009633166222115746, 0.00705549710381825, 0.00430917671959886, 0.0014619995123083566, -0.0014158862728771305, -0.004253706412396606, -0.0069818007419346585, -0.009533332639218631, -0.011845926012245675, -0.013863189710639153, -0.015536092116421414, -0.016824152418719495, -0.01769641964107276, -0.018132215756499145, -0.018121625063668836, -0.01766571826299745, -0.016776506209538723, -0.015476624969149652, -0.013798760401989628, -0.011784826881051801, -0.009484920766687369, -0.006956074753967206, -0.004260844054152656, -0.0014657594467195533, 0.0013603145544175315, 0.004147875914810678, 0.006828493904860343, 0.009336488533302297, 0.011610539382894846, 0.013595184450611883, 0.015242172367376374, 0.016511635039784277, 0.017373052226689063, 0.01780598472570211, 0.01780055857058245, 0.017357688788491536, 0.01648903768441214, 0.015216709150542095, 0.013572686980568186, 0.01159803144326871, 0.009341854283142888, 0.006860097723097219, 0.004214147813740005, 0.0014693164894945697, -0.0013067701437440014, -0.0040458375275462, -0.006680641358166121, -0.009146618017093154, -0.0113834662274503, -0.01333662119966703, -0.014958585239220964, -0.016210082378840997, -0.01706100897767458, -0.017491157291565685, -0.01749069463624016, -0.017060386799887944, -0.016211560664404667, -0.014965807410119642, -0.013354434049408948, -0.011417677203762454, -0.009203698855466397, -0.006767389126796341, -0.004169005836659759, -0.0014726845426650819, 0.0012551441002949801, 0.003947390620945601, 0.0065379563580783735, 0.008963355880674225, 0.011164272388517736, 0.013087007995559244, 0.014684793446642131, 0.015918925332827495, 0.016759703163586936, 0.017187143618797848, 0.017191454816652803, 0.01677325935891348, 0.015943561106138794, 0.014723456940057058, 0.013143601033070898, 0.01124343521221113, 0.00907020472798412, 0.006677783977501164, 0.004125341358151963, 0.0014758763303122046, -0.001205335149493303, -0.003852348474225018, -0.006400171916557612, -0.00878636198084347, -0.010952553425031049, -0.012845886472440166, -0.014420296322880392, -0.015637633514912264, -0.01646858790008491, -0.016893393861042556, -0.016902299817695803, -0.01649579088533091, -0.01568455963193187, -0.014489226079229364, -0.012939814250640157, -0.011074998538095987, -0.008941138792478176, -0.006591128201166568, -0.004083082575162079, -0.0014789035163416356, 0.0011572490206432794, 0.003760537090971077, 0.006267039128891068, 0.00861531912689057, 0.010747932112644135, 0.012612829041148344, 0.014164626752362209, 0.015365712017225888, 0.016187152822868107, 0.01660939482846842, 0.016622726238085854, 0.016227500054346724, 0.015434108656074051, 0.014262711736419728, 0.01274272469594658, 0.010912080458641957, 0.008816283224044635, 0.006507277749850236, 0.004042162252482353, 0.0014817768087461913, -0.0011107978522340363, -0.0036717941336340152, -0.006138325668332858, -0.008449931176799973, -0.010550056192249302, -0.01238743634879343, -0.013917348406577077, -0.01510269849307102, -0.015914921089308, -0.016334666983135498, -0.016352263632192436, -0.015967936998171076, -0.015191789792313391, -0.014043537065175988, -0.012552006034062167, -0.010754412822790367, -0.008695434248910875, -0.0064260977994751774, -0.0040025173657611225, -0.0014845060520989296, 0.001065899656782016, 0.0035859679633027165, 0.0060138144286458195, 0.008289921319845869, 0.010358596338355043, 0.012169334985884152, 0.01367805324879071, 0.014848160522422897, 0.01565144667071293, 0.016068761725133097, 0.01609047185663239, 0.0157166807775033, 0.014957211510959738, 0.013831349362103413, 0.012367352789886227, 0.010601744571577303, 0.00857840102955967, 0.006347462023384735, 0.003964088777422741, 0.0014871003097710904, -0.0010224778383769964, -0.0035029167728239732, -0.005893302297866349, -0.008135030524631656, -0.010173244322677057, -0.011958175413308776, -0.013446359277576559, -0.014601693229142412, -0.015396311902883136, -0.01581125893718057, -0.0158369386691664, -0.01547333709304844, -0.014730007018010421, -0.013625818163939131, -0.012188478707671256, -0.010453840397743728, -0.008465004654331396, -0.006271251933469948, -0.0039268209420180444, -0.001489567937158992, 0.0009804607569779006, 0.0034225078028503587, 0.005776599048728849, 0.007985016134274239, 0.009993711351404286, 0.01175363008496115, 0.013221908482918276, 0.014362917122283454, 0.01514912526666108, 0.015561764759421884, 0.01559127755234534, 0.015237536210895197, 0.014509832332133389, 0.013426633521814398, 0.012015115262961428, 0.010310479529530386, 0.008355077220264368, 0.006197356281645716, 0.00389066163793881, 0.0014919166470259346, -0.0009397813342606426, -0.0033446166317085586, -0.005663526333004577, -0.007839650592711016, -0.009819726557275166, -0.011555391744804534, -0.0130043649918816, -0.01413147613728624, -0.014909519373670103, -0.015319909569623626, -0.015353125737739847, -0.015008931078796509, -0.014296364538302181, -0.013233504433751023, -0.011847010310674214, -0.010171454625439188, -0.008248460999282507, -0.006125670515331982, -0.003855561722788522, -0.0014941535679170478, 0.0009003766964703528, 0.0032691265311028126, 0.0055539167685768045, 0.007698720288068272, 0.00965103562990568, 0.0113631718797509, 0.012793413383655425, 0.013907035855790523, 0.014677149135446097, 0.015085346146991647, 0.015122142409512167, 0.014787195613167586, 0.014089300199438874, 0.013046157418718991, 0.01168392685501652, 0.010036570768324824, 0.00814500767903409, 0.006056096281334168, 0.0038214749100170414, 0.0014962852964667261, -0.0008621878502874215, -0.0031959278806493285, -0.0054476131094249956, -0.007562024500735143, -0.009487399569802346, -0.011176699311977477, -0.012588757156183593, -0.01368928188535334, -0.014451690096772446, -0.014857748000421564, -0.014898007068620149, -0.014572023139021235, -0.013888353909628899, -0.012864335217565165, -0.011525641928607123, -0.009905644548561236, -0.008044577670688067, -0.005988540973186719, -0.0037883575646898123, -0.001498317944330809, 0.0008251593882101772, 0.0031249176350564944, 0.005344467489871771, 0.007429374445238039, 0.009328593553228418, 0.01099571891622731, 0.01239011732871508, 0.013477918382556037, 0.014232836916291836, 0.014636807844256994, 0.014680418041143398, 0.014363124967141193, 0.01369325697440835, 0.012687795607829424, 0.011371945569670666, 0.009778503227204973, 0.007947039476913437, 0.005922917317570183, 0.0037561685165216764, 0.0015002571803482342, -0.0007892392203539142, -0.00305599883852761, -0.0052443407354430495, -0.007300592396315815, -0.009174405896575442, -0.010819990449348012, -0.012197231166414461, -0.01327266670491837, -0.014020301979428757, -0.01442223620659061, -0.014469091116130787, -0.014160229094615801, -0.013503756205283617, -0.012516310320976625, -0.011222639887424142, -0.009654983971142277, -0.007852269114008591, -0.005859142995939682, -0.0037248688884814903, -0.0015021082684972948, 0.0007543783299625474, 0.0029890801815565184, 0.005147101733607314, 0.007175510890671145, 0.00902463711022394, 0.010649287480762942, 0.012009851014782252, 0.013073264178693695, 0.01381381413037713, 0.014213760156853028, 0.014263758300036197, 0.013963079016428607, 0.013319612817118734, 0.012349664051856333, 0.01107753820692213, 0.009534933153084136, 0.007760149582860876, 0.005797140297899653, 0.0036944219394958186, 0.0015038761021002299, -0.0007205305502049192, -0.002924075595879741, -0.005052626858393404, -0.0070539719968784826, -0.008879099032985255, -0.010483396413877239, -0.011827743233000787, -0.01287946297109578, -0.013613117511392785, -0.014011122140930357, -0.014064166676264553, -0.013771432637189442, -0.013140601418286135, -0.012187653551363304, -0.010936464285577633, -0.00941820571009868, -0.007670570383973723, -0.005736835803278369, -0.00366479291990011, -0.001505565234712698, 0.0006876523601449177, 0.00286090388378893, 0.0049607994435985295, 0.006935826646738437, 0.008737614039244647, 0.01032211558951199, 0.01165068721655711, 0.012691029056767581, 0.013417970498948804, 0.01381407891335426, 0.013870077359622441, 0.01358506127329902, 0.012966509084608432, 0.01203008679424868, 0.010799251594458353, 0.009304664555034639, 0.007583427072353721, 0.005678160090151053, 0.0036359489384678225, 0.0015071799080418947, -0.0006557026979732587, -0.002799488378469224, -0.004871509299848556, -0.006820934022144984, -0.008600014311765478, -0.010165254463467898, -0.011478474500535086, -0.012507741269437883, -0.013228144727447802, -0.013622400557258236, -0.013681264536586484, -0.013403748736896341, -0.012797134509085466, -0.01187678221492805, -0.010665742658183706, -0.009194180035830985, -0.00749862084847184, -0.005621047466391402, -0.003607858839933144, -0.0015087240772337124, 0.0006246427898401269, 0.0027397566323579653, 0.004784652271327459, 0.0067091609921461235, 0.008466141173911168, 0.010012632851152684, 0.011310907935924272, 0.012329390430677602, 0.013043424192202443, 0.013435869583795883, 0.013497514583281578, 0.013227290493877985, 0.01263228722027037, 0.011727568004884567, 0.010535788447934154, 0.009086629438214764, 0.007416058181949052, 0.00556543572255255, 0.003580493092072516, 0.0015102014337905801, -0.0005944359927717659, -0.0026816401308817728, -0.00470012982840901, -0.0066003815954845954, -0.008335844475682933, -0.00986408023299002, -0.011147800932092089, -0.012155778548548051, -0.012863604424271008, -0.013254280103606731, -0.013318625253926769, -0.013055492889090718, -0.012471786862916317, -0.011582281465954499, -0.010409247822644397, -0.008981896527792336, -0.007335650464937203, -0.005511265904143077, -0.0035538236814692103, -0.0015116154263880575, 0.0005650476503559502, 0.002625074029175856, 0.004617848692860326, 0.006494476564373363, 0.008208982028594632, 0.009719435114967555, 0.01098897675931067, 0.011986718079678929, 0.012688491730525973, 0.013077437063691641, 0.013144404933265979, 0.012888172432530941, 0.012315462535176964, 0.01144076841438057, 0.010285987013979746, 0.008879871127927713, 0.007257313692511953, 0.005458482101529113, 0.0035278240172099684, 0.0015129692797900048, -0.0005364449599844065, -0.002569996909679064, -0.004537720492602471, -0.006391332885738158, -0.008085419084898076, -0.009578544439296014, -0.010834267905846674, -0.011822031249002064, -0.012517902493012715, -0.012905155543753462, -0.01297467194717528, -0.012725155141015774, -0.012163152177246664, -0.011302882631036643, -0.010165879151148737, -0.008780448730199682, -0.007180968167638807, -0.0054070312559075595, -0.003502468841801931, -0.0015142660120755424, 0.0005085968506047051, 0.002516350558681798, 0.004459661443360502, 0.006290843396517416, 0.007965027857164334, 0.009441263040645211, 0.010683515484707942, 0.011661549421945758, 0.012351662522275424, 0.012737260106664346, 0.012809253926231617, 0.012566275930364277, 0.012014702006836162, 0.011168485353712086, 0.01004880382199437, 0.008683530134531634, 0.007106538228550186, 0.005356862979918629, 0.0034777341487035773, 0.0015155084503307484, -0.00048147387000675127, -0.0024640797601373898, -0.004383592054774834, -0.006192906409989943, -0.007847687074605545, -0.0093074531439088, -0.010536568685619762, -0.011505112524436771, -0.012189606459857474, -0.012573584198265635, -0.01264798721755697, -0.012411378053621193, -0.011869965997356654, -0.011037444807740571, -0.009934646667183755, -0.008589021116394065, -0.00703395199656127, -0.005307929391640506, -0.0034535971058876984, -0.0015166992449763606, 0.00045504808080494644, 0.0024131321051841085, 0.0043094368588250075, 0.006097425370375175, 0.007733281572913899, 0.009176983899832552, 0.010393284268267678, 0.011352568506508866, 0.012031577225672833, 0.012413969592181787, 0.012490716340718397, 0.0122603125813083, 0.011728805395083586, 0.010909635771645183, 0.009823299004609742, 0.008496832118737259, 0.006963141142563334, 0.005260184960803945, 0.0034300359849442144, 0.0015178408828486465, -0.00042929296432670666, -0.0023634578160154794, -0.00423712415859844, -0.006004308533256249, -0.0076217019146873, -0.009049730955228595, -0.01025352609321708, -0.01120377284574724, -0.011877425506361262, -0.012258265875760156, -0.012337293483882128, -0.012112937920077005, -0.011591088271950845, -0.010784939174781327, -0.009714657481423113, -0.008406877966526699, -0.00689404067060509, -0.005213586366194846, -0.0034070300952478713, -0.00151893569917239, 0.0004041833317320204, 0.002315009582837331, 0.004166585795663758, 0.005913468669586753, 0.007512844037826396, 0.008925576054795938, 0.010117164687290837, 0.01105858808715264, 0.011727009281129073, 0.012106329973623976, 0.012187578036788896, 0.011969119366495626, 0.011456689110939219, 0.010663241724268918, 0.009608623751342376, 0.008319077601981749, 0.006826588717109863, 0.0051680923633116785, 0.0033845597227788226, 0.0015199858885156523, -0.0003796952417209309, -0.0022677424128073795, -0.004097756934445488, -0.005824822791289849, -0.007406608929514508, -0.008804406671879646, -0.00998407684047834, -0.010916883416353232, -0.011580193381905555, -0.01195802570566827, -0.01204143615744952, -0.011828728693012117, -0.011325488421326635, -0.010544435558748188, -0.009505104175134735, -0.008233353838774774, -0.006760726364439712, -0.005123663661415923, -0.003362606073222352, -0.0015209935148396514, 0.0003558059242827915, 0.002221613489926448, 0.004030575862183344, 0.005738291896619945, 0.007302902323647602, 0.008686115665733228, 0.009854145231748162, 0.010778534263371465, 0.011436849084956653, 0.01181322337662648, 0.011898740369753472, 0.01169164376342075, 0.011197372381315067, 0.010428417926743648, 0.009404009542339973, 0.008149633133637214, 0.006696397467611093, 0.00508026280922129, 0.003341151218990552, 0.0015219605207158697, -0.00033249370996061596, -0.0021765820449820453, -0.003964983803162525, -0.00565380073366025, -0.007201634419757122, -0.00857060096310209, -0.009727258081365882, -0.010643421934430644, -0.011296853731357609, -0.011671799394609888, -0.011759369189448235, -0.011557748175405612, -0.011072232505793696, -0.01031509088761188, -0.009305254812510079, -0.00806784537393949, -0.006633548493105717, -0.0050378540885072905, -0.00332017804986942, -0.0015228887357929956, 0.0003097379641832494, 0.002132609234697734, 0.0039009247460562724, 0.005571277580452986, 0.007102719621677949, 0.008457765262127215, 0.009603308827561241, 0.010511433269506563, 0.01116009037397745, 0.011533635916259543, 0.01162320677618236, 0.011426930927965387, 0.010949965337194096, 0.010204361033252212, 0.009208758874376458, 0.007987923679968019, 0.0065721283687898355, 0.004996403415038089, 0.003299670226990114, 0.0015237798845877746, -0.00028751902624220564, -0.0020896580293490383, -0.003838345283298632, -0.00549065404042726, -0.00700607629434954, -0.008347515756775607, -0.00948219582556923, -0.010382460323554851, -0.011026447448835167, -0.011398620516371472, -0.011490142609518077, -0.011299086111719097, -0.01083047215759177, -0.010096139228910174, -0.009114444321521939, -0.007909804220715057, -0.006512088344072049, -0.004955878246193867, -0.0032796121398813776, -0.0015246355936486423, 0.00026581815252941317, 0.0020476931081573504, 0.0037771944615355283, 0.005411864851883404, 0.006911626537311458, 0.00823976388014558, 0.009363822067268227, 0.010256400069519504, 0.010895818468891231, 0.011266645880046446, 0.0113600711870085, 0.011174112620279932, 0.010713658720364531, 0.009990340371570247, 0.009022237243243287, 0.007833426042127466, 0.00645338185948109, 0.004916247494804226, 0.0032599888663503917, 0.0015254573981639328, -0.0002446174637050831, -0.002006680761836088, -0.0037174236422587853, -0.0053348477104333165, -0.006819295973559219, -0.00813442506516627, -0.009248094919780498, -0.010133154121412417, -0.010768101738503401, -0.011137609515594709, -0.011232891742606404, -0.01105191388104099, -0.010599434999880308, -0.009886883164553559, -0.008932067029426978, -0.0077587309068310635, -0.006395964424944249, -0.004877481448689318, -0.003240786134992019, -0.0015262467480482893, 0.00022389989546712193, 0.001966588801736915, 0.0036589863718344637, 0.005259543103367455, 0.006729013552570935, 0.00803141852132107, 0.009134925881564053, 0.010012628475892515, 0.010643200086942263, 0.011011413486579361, 0.011108507983824576, 0.010932397603869465, 0.010487714957811752, 0.009785689907073791, 0.008843866188345628, 0.007685663144457024, 0.00633979350608419, 0.0048395516954862485, 0.0032219902901132642, 0.0015270050135687122, -0.00020364915265412223, -0.0019273864750659596, -0.0036018382601906906, -0.00518589415503449, -0.006640711366395806, -0.007930667026167472, -0.009024230354636906, -0.009894733270925042, -0.01052102061949433, -0.01088796416152825, -0.01098682784620731, -0.010815475546331858, -0.01037841632480821, -0.009686686297598708, -0.008757570176396957, -0.007614169511750057, -0.006284828417937068, -0.004802431052346535, -0.003203588258907899, -0.0015277334905348747, 0.00018384966640662659, 0.0018890443857169051, 0.0035459368674946967, 0.00511384648238484, 0.006554324477814246, 0.007832096730511445, 0.00891592743171094, 0.0097793825602118, 0.010401474484817446, 0.01076717197996795, 0.010867763263796957, 0.01070106329419811, 0.010271460396355445, 0.009589801249979152, 0.008673117238872902, 0.007544199061731474, 0.0062310302255206415, 0.004766093500153822, 0.0031855675207004695, 0.0015284334051064155, -0.00016448655416644695, -0.0018515344202770054, -0.003491241598222934, -0.0050433480599028115, -0.006469790759651679, -0.007735636976214574, -0.008809939697100646, -0.009666494102209426, -0.010284476657319522, -0.010648951233553383, -0.01075122995439325, -0.010589080056074333, -0.01016677184176389, -0.009494966721381806, -0.008590448260943039, -0.0074757030212299624, -0.006178361650754986, -0.004730514121913109, -0.0031679160781232906, -0.0015291059182347367, 0.00014554558228247226, 0.0018148296788304194, 0.0034377136020542084, 0.004974349093233294, 0.006387050744406665, 0.00764122012567864, 0.008706193040386213, 0.009555989162640333, 0.010169945733445008, 0.010533219861166827, 0.010637147218504657, 0.01047944847111701, 0.010064278525306006, 0.009402117551157869, 0.008509506628087186, 0.007408634676172836, 0.006126786985255266, 0.004695669045019289, 0.0031506224300722734, 0.00152975212978499, -0.00012701313104154568, -0.0017789044101855964, -0.0033853156810923096, -0.0049068019008445575, -0.006306047483438199, -0.007548781402151541, -0.008604616481879815, -0.009447792329506606, -0.010057803740838872, -0.010419899256959096, -0.010525437750984275, -0.010372094428864201, -0.00996391133861546, -0.009311191309838516, -0.008430238095294144, -0.007342949264059696, -0.0060762720085808086, -0.004661535387110025, -0.0031336755463287234, -0.001530373082350148, 0.0001088761619285668, 0.0017437339512144095, 0.00333401220293789, 0.004840660803149927, 0.006226726414999595, 0.007458258740058715, 0.008505142009038258, 0.009341831339686926, 0.009947975959452496, 0.010308914090387096, 0.010416027464426008, 0.010266946900304674, 0.00986560404352474, 0.009222128157529003, 0.008352590664382306, 0.007278603873109481, 0.006026783911534547, 0.004628091205258873, 0.0031170648437149825, 0.001530969764797153, -0.00009112218696606803, -0.0017092946699876987, -0.003283769019197351, -0.004775882018532973, -0.006149035240488571, -0.0073695926446301525, -0.008407704423026918, -0.009238036916283918, -0.009840390753724568, -0.010200192137384127, -0.010308845323473495, -0.010163937779373152, -0.009769293124595185, -0.009134870711019328, -0.008276514468868288, -0.007215557347592569, -0.0059782912241642, -0.004595315448258029, -0.00310078016369045, -0.001531543115552564, 0.0000737392399667339, 0.001675563912446815, 0.0032345533890227388, 0.004712423565792373, 0.0060729238083116685, 0.00728272606016411, 0.008312241194704922, 0.009136342615950489, 0.009734979415048518, 0.010093664121865643, 0.010203823189262884, 0.010063001734130994, 0.00967491765064457, 0.009049363918998405, 0.008201961665838864, 0.007153770198919874, 0.005930763748120867, 0.0045631879117862895, 0.0030848117512741317, 0.00153209402566305, -0.000056715849575066915, -0.001642519952343532, -0.0031863339073372196, -0.004650245172536397, -0.005998344004833064, -0.007197604246304405, -0.008218692329369866, -0.009036684685486062, -0.009631676013797021, -0.009989263566841785, -0.01010089567328384, -0.009964076066946442, -0.009582419144642727, -0.008965554944794535, -0.008128886334342557, -0.007093204522074692, -0.005884172493081779, -0.004531689196248325, -0.0030691502352163075, -0.0015326233416345881, 0.000040041013955833456, 0.001610141944230643, 0.003139080437401436, 0.004589308189120179, 0.005925249651897664, 0.007114174661777941, 0.00812700023963896, 0.008939001927057518, 0.009530417260232635, 0.00988692665446217, 0.01],"x":[-100.0,-99.95002498750625,-99.9000499750125,-99.85007496251875,-99.80009995002499,-99.75012493753124,-99.70014992503748,-99.65017491254373,-99.60019990004997,-99.55022488755623,-99.50024987506247,-99.45027486256872,-99.40029985007496,-99.35032483758121,-99.30034982508745,-99.2503748125937,-99.20039980009994,-99.1504247876062,-99.10044977511244,-99.05047476261869,-99.00049975012493,-98.95052473763118,-98.90054972513744,-98.85057471264368,-98.80059970014993,-98.75062468765617,-98.70064967516242,-98.65067466266866,-98.60069965017492,-98.55072463768116,-98.50074962518741,-98.45077461269365,-98.4007996001999,-98.35082458770614,-98.3008495752124,-98.25087456271864,-98.20089955022489,-98.15092453773113,-98.10094952523738,-98.05097451274362,-98.00099950024988,-97.95102448775611,-97.90104947526237,-97.85107446276862,-97.80109945027486,-97.75112443778112,-97.70114942528735,-97.65117441279361,-97.60119940029985,-97.5512243878061,-97.50124937531234,-97.4512743628186,-97.40129935032483,-97.35132433783109,-97.30134932533733,-97.25137431284358,-97.20139930034982,-97.15142428785607,-97.10144927536231,-97.05147426286857,-97.0014992503748,-96.95152423788106,-96.90154922538731,-96.85157421289355,-96.8015992003998,-96.75162418790605,-96.7016491754123,-96.65167416291854,-96.60169915042479,-96.55172413793103,-96.50174912543729,-96.45177411294353,-96.40179910044978,-96.35182408795602,-96.30184907546227,-96.25187406296851,-96.20189905047476,-96.151924037981,-96.10194902548726,-96.0519740129935,-96.00199900049975,-95.95202398800599,-95.90204897551224,-95.8520739630185,-95.80209895052474,-95.75212393803099,-95.70214892553723,-95.65217391304348,-95.60219890054972,-95.55222388805598,-95.50224887556222,-95.45227386306847,-95.40229885057471,-95.35232383808096,-95.3023488255872,-95.25237381309346,-95.2023988005997,-95.15242378810595,-95.10244877561219,-95.05247376311844,-95.00249875062468,-94.95252373813094,-94.90254872563717,-94.85257371314343,-94.80259870064968,-94.75262368815592,-94.70264867566218,-94.65267366316841,-94.60269865067467,-94.55272363818091,-94.50274862568716,-94.4527736131934,-94.40279860069965,-94.3528235882059,-94.30284857571215,-94.25287356321839,-94.20289855072464,-94.15292353823088,-94.10294852573713,-94.05297351324337,-94.00299850074963,-93.95302348825587,-93.90304847576212,-93.85307346326836,-93.80309845077461,-93.75312343828087,-93.7031484257871,-93.65317341329336,-93.6031984007996,-93.55322338830585,-93.50324837581209,-93.45327336331835,-93.40329835082458,-93.35332333833084,-93.30334832583708,-93.25337331334333,-93.20339830084957,-93.15342328835582,-93.10344827586206,-93.05347326336832,-93.00349825087456,-92.95352323838081,-92.90354822588705,-92.8535732133933,-92.80359820089954,-92.7536231884058,-92.70364817591205,-92.65367316341829,-92.60369815092454,-92.55372313843078,-92.50374812593704,-92.45377311344328,-92.40379810094953,-92.35382308845577,-92.30384807596202,-92.25387306346826,-92.20389805097452,-92.15392303848076,-92.10394802598701,-92.05397301349325,-92.0039980009995,-91.95402298850574,-91.904047976012,-91.85407296351823,-91.80409795102449,-91.75412293853073,-91.70414792603698,-91.65417291354323,-91.60419790104947,-91.55422288855573,-91.50424787606197,-91.45427286356822,-91.40429785107446,-91.35432283858071,-91.30434782608695,-91.2543728135932,-91.20439780109945,-91.1544227886057,-91.10444777611194,-91.0544727636182,-91.00449775112443,-90.95452273863069,-90.90454772613693,-90.85457271364318,-90.80459770114942,-90.75462268865567,-90.70464767616193,-90.65467266366817,-90.60469765117442,-90.55472263868066,-90.50474762618691,-90.45477261369315,-90.4047976011994,-90.35482258870564,-90.3048475762119,-90.25487256371814,-90.20489755122439,-90.15492253873063,-90.10494752623688,-90.05497251374312,-90.00499750124938,-89.95502248875562,-89.90504747626187,-89.85507246376811,-89.80509745127436,-89.7551224387806,-89.70514742628686,-89.65517241379311,-89.60519740129935,-89.5552223888056,-89.50524737631184,-89.4552723638181,-89.40529735132434,-89.35532233883059,-89.30534732633683,-89.25537231384308,-89.20539730134932,-89.15542228885558,-89.10544727636182,-89.05547226386807,-89.00549725137431,-88.95552223888056,-88.9055472263868,-88.85557221389305,-88.8055972013993,-88.75562218890555,-88.70564717641179,-88.65567216391804,-88.6056971514243,-88.55572213893053,-88.50574712643679,-88.45577211394303,-88.40579710144928,-88.35582208895552,-88.30584707646177,-88.25587206396801,-88.20589705147427,-88.1559220389805,-88.10594702648676,-88.055972013993,-88.00599700149925,-87.95602198900549,-87.90604697651175,-87.85607196401799,-87.80609695152424,-87.75612193903048,-87.70614692653673,-87.65617191404297,-87.60619690154923,-87.55622188905548,-87.50624687656172,-87.45627186406797,-87.40629685157421,-87.35632183908046,-87.3063468265867,-87.25637181409296,-87.2063968015992,-87.15642178910545,-87.10644677661169,-87.05647176411794,-87.00649675162418,-86.95652173913044,-86.90654672663668,-86.85657171414293,-86.80659670164917,-86.75662168915542,-86.70664667666166,-86.65667166416792,-86.60669665167416,-86.55672163918041,-86.50674662668666,-86.4567716141929,-86.40679660169916,-86.3568215892054,-86.30684657671165,-86.25687156421789,-86.20689655172414,-86.15692153923038,-86.10694652673664,-86.05697151424287,-86.00699650174913,-85.95702148925537,-85.90704647676162,-85.85707146426786,-85.80709645177411,-85.75712143928035,-85.70714642678661,-85.65717141429285,-85.6071964017991,-85.55722138930535,-85.5072463768116,-85.45727136431785,-85.40729635182409,-85.35732133933034,-85.30734632683658,-85.25737131434283,-85.20739630184907,-85.15742128935533,-85.10744627686157,-85.05747126436782,-85.00749625187406,-84.95752123938031,-84.90754622688655,-84.8575712143928,-84.80759620189905,-84.7576211894053,-84.70764617691154,-84.65767116441779,-84.60769615192403,-84.55772113943029,-84.50774612693654,-84.45777111444278,-84.40779610194903,-84.35782108945527,-84.30784607696152,-84.25787106446776,-84.20789605197402,-84.15792103948026,-84.10794602698651,-84.05797101449275,-84.007996001999,-83.95802098950524,-83.9080459770115,-83.85807096451774,-83.80809595202399,-83.75812093953023,-83.70814592703648,-83.65817091454272,-83.60819590204898,-83.55822088955522,-83.50824587706147,-83.45827086456772,-83.40829585207396,-83.35832083958022,-83.30834582708646,-83.25837081459271,-83.20839580209895,-83.1584207896052,-83.10844577711144,-83.0584707646177,-83.00849575212393,-82.95852073963019,-82.90854572713643,-82.85857071464268,-82.80859570214892,-82.75862068965517,-82.70864567716141,-82.65867066466767,-82.6086956521739,-82.55872063968016,-82.5087456271864,-82.45877061469265,-82.40879560219891,-82.35882058970515,-82.3088455772114,-82.25887056471764,-82.2088955522239,-82.15892053973013,-82.10894552723639,-82.05897051474263,-82.00899550224888,-81.95902048975512,-81.90904547726137,-81.85907046476761,-81.80909545227387,-81.7591204397801,-81.70914542728636,-81.6591704147926,-81.60919540229885,-81.55922038980509,-81.50924537731134,-81.45927036481758,-81.40929535232384,-81.35932033983009,-81.30934532733633,-81.25937031484258,-81.20939530234882,-81.15942028985508,-81.10944527736132,-81.05947026486757,-81.00949525237381,-80.95952023988006,-80.9095452273863,-80.85957021489256,-80.8095952023988,-80.75962018990505,-80.70964517741129,-80.65967016491754,-80.60969515242378,-80.55972013993004,-80.50974512743628,-80.45977011494253,-80.40979510244878,-80.35982008995502,-80.30984507746128,-80.25987006496752,-80.20989505247377,-80.15992003998001,-80.10994502748626,-80.0599700149925,-80.00999500249875,-79.960019990005,-79.91004497751125,-79.86006996501749,-79.81009495252374,-79.76011994002998,-79.71014492753623,-79.66016991504247,-79.61019490254873,-79.56021989005497,-79.51024487756122,-79.46026986506746,-79.41029485257371,-79.36031984007997,-79.3103448275862,-79.26036981509246,-79.2103948025987,-79.16041979010495,-79.11044477761119,-79.06046976511745,-79.01049475262369,-78.96051974012994,-78.91054472763618,-78.86056971514243,-78.81059470264867,-78.76061969015493,-78.71064467766116,-78.66066966516742,-78.61069465267366,-78.56071964017991,-78.51074462768615,-78.4607696151924,-78.41079460269864,-78.3608195902049,-78.31084457771115,-78.26086956521739,-78.21089455272364,-78.16091954022988,-78.11094452773614,-78.06096951524238,-78.01099450274863,-77.96101949025487,-77.91104447776112,-77.86106946526736,-77.81109445277362,-77.76111944027986,-77.71114442778611,-77.66116941529235,-77.6111944027986,-77.56121939030484,-77.5112443778111,-77.46126936531734,-77.41129435282359,-77.36131934032983,-77.31134432783608,-77.26136931534234,-77.21139430284857,-77.16141929035483,-77.11144427786107,-77.06146926536732,-77.01149425287356,-76.96151924037981,-76.91154422788605,-76.86156921539231,-76.81159420289855,-76.7616191904048,-76.71164417791104,-76.6616691654173,-76.61169415292353,-76.56171914042979,-76.51174412793603,-76.46176911544228,-76.41179410294852,-76.36181909045477,-76.31184407796101,-76.26186906546727,-76.21189405297352,-76.16191904047976,-76.11194402798601,-76.06196901549225,-76.0119940029985,-75.96201899050475,-75.912043978011,-75.86206896551724,-75.81209395302349,-75.76211894052973,-75.71214392803599,-75.66216891554222,-75.61219390304848,-75.56221889055472,-75.51224387806097,-75.46226886556721,-75.41229385307346,-75.3623188405797,-75.31234382808596,-75.2623688155922,-75.21239380309845,-75.1624187906047,-75.11244377811094,-75.0624687656172,-75.01249375312344,-74.96251874062969,-74.91254372813593,-74.86256871564218,-74.81259370314842,-74.76261869065468,-74.71264367816092,-74.66266866566717,-74.61269365317341,-74.56271864067966,-74.5127436281859,-74.46276861569216,-74.4127936031984,-74.36281859070465,-74.31284357821089,-74.26286856571714,-74.2128935532234,-74.16291854072963,-74.11294352823589,-74.06296851574213,-74.01299350324838,-73.96301849075462,-73.91304347826087,-73.86306846576711,-73.81309345327337,-73.7631184407796,-73.71314342828586,-73.6631684157921,-73.61319340329835,-73.5632183908046,-73.51324337831085,-73.46326836581709,-73.41329335332334,-73.36331834082958,-73.31334332833583,-73.26336831584207,-73.21339330334833,-73.16341829085458,-73.11344327836082,-73.06346826586707,-73.01349325337331,-72.96351824087957,-72.9135432283858,-72.86356821589206,-72.8135932033983,-72.76361819090455,-72.71364317841079,-72.66366816591704,-72.61369315342328,-72.56371814092954,-72.51374312843578,-72.46376811594203,-72.41379310344827,-72.36381809095452,-72.31384307846076,-72.26386806596702,-72.21389305347326,-72.16391804097951,-72.11394302848576,-72.063968015992,-72.01399300349826,-71.9640179910045,-71.91404297851075,-71.86406796601699,-71.81409295352324,-71.76411794102948,-71.71414292853574,-71.66416791604198,-71.61419290354823,-71.56421789105447,-71.51424287856072,-71.46426786606696,-71.41429285357322,-71.36431784107945,-71.31434282858571,-71.26436781609195,-71.2143928035982,-71.16441779110444,-71.1144427786107,-71.06446776611695,-71.01449275362319,-70.96451774112944,-70.91454272863568,-70.86456771614193,-70.81459270364817,-70.76461769115443,-70.71464267866067,-70.66466766616692,-70.61469265367316,-70.56471764117941,-70.51474262868565,-70.4647676161919,-70.41479260369815,-70.3648175912044,-70.31484257871064,-70.26486756621689,-70.21489255372313,-70.16491754122939,-70.11494252873563,-70.06496751624188,-70.01499250374813,-69.96501749125437,-69.91504247876063,-69.86506746626686,-69.81509245377312,-69.76511744127936,-69.71514242878561,-69.66516741629185,-69.6151924037981,-69.56521739130434,-69.5152423788106,-69.46526736631684,-69.41529235382309,-69.36531734132933,-69.31534232883558,-69.26536731634182,-69.21539230384808,-69.16541729135432,-69.11544227886057,-69.06546726636682,-69.01549225387306,-68.96551724137932,-68.91554222888556,-68.86556721639181,-68.81559220389805,-68.7656171914043,-68.71564217891054,-68.6656671664168,-68.61569215392304,-68.56571714142929,-68.51574212893553,-68.46576711644178,-68.41579210394802,-68.36581709145428,-68.31584207896051,-68.26586706646677,-68.21589205397301,-68.16591704147926,-68.1159420289855,-68.06596701649175,-68.01599200399801,-67.96601699150425,-67.9160419790105,-67.86606696651674,-67.816091954023,-67.76611694152923,-67.71614192903549,-67.66616691654173,-67.61619190404798,-67.56621689155422,-67.51624187906047,-67.46626686656671,-67.41629185407297,-67.3663168415792,-67.31634182908546,-67.2663668165917,-67.21639180409795,-67.16641679160419,-67.11644177911045,-67.06646676661668,-67.01649175412294,-66.96651674162919,-66.91654172913543,-66.86656671664169,-66.81659170414792,-66.76661669165418,-66.71664167916042,-66.66666666666667,-66.61669165417291,-66.56671664167916,-66.5167416291854,-66.46676661669166,-66.4167916041979,-66.36681659170415,-66.31684157921039,-66.26686656671664,-66.21689155422288,-66.16691654172914,-66.11694152923538,-66.06696651674163,-66.01699150424787,-65.96701649175412,-65.91704147926038,-65.86706646676662,-65.81709145427287,-65.76711644177911,-65.71714142928536,-65.6671664167916,-65.61719140429786,-65.5672163918041,-65.51724137931035,-65.46726636681659,-65.41729135432284,-65.36731634182908,-65.31734132933533,-65.26736631684157,-65.21739130434783,-65.16741629185407,-65.11744127936032,-65.06746626686656,-65.01749125437281,-64.96751624187905,-64.91754122938531,-64.86756621689156,-64.8175912043978,-64.76761619190405,-64.7176411794103,-64.66766616691655,-64.61769115442279,-64.56771614192904,-64.51774112943528,-64.46776611694153,-64.41779110444777,-64.36781609195403,-64.31784107946027,-64.26786606696652,-64.21789105447276,-64.16791604197901,-64.11794102948525,-64.0679660169915,-64.01799100449774,-63.968015992004,-63.918040979510245,-63.86806596701649,-63.81809095452274,-63.768115942028984,-63.71814092953523,-63.66816591704148,-63.618190904547724,-63.56821589205397,-63.51824087956022,-63.468265867066464,-63.41829085457271,-63.368315842078964,-63.31834082958521,-63.26836581709146,-63.2183908045977,-63.16841579210395,-63.1184407796102,-63.06846576711644,-63.01849075462269,-62.968515742128936,-62.91854072963518,-62.86856571714143,-62.818590704647676,-62.76861569215392,-62.71864067966017,-62.668665667166415,-62.61869065467266,-62.56871564217891,-62.518740629685155,-62.4687656171914,-62.41879060469765,-62.3688155922039,-62.31884057971015,-62.268865567216395,-62.21889055472264,-62.16891554222889,-62.118940529735134,-62.06896551724138,-62.01899050474763,-61.969015492253874,-61.91904047976012,-61.86906546726637,-61.81909045477261,-61.76911544227886,-61.71914042978511,-61.66916541729135,-61.6191904047976,-61.569215392303846,-61.51924037981009,-61.46926536731634,-61.419290354822586,-61.36931534232883,-61.319340329835086,-61.26936531734133,-61.21939030484758,-61.169415292353825,-61.11944027986007,-61.06946526736632,-61.019490254872565,-60.96951524237881,-60.91954022988506,-60.869565217391305,-60.81959020489755,-60.7696151924038,-60.719640179910044,-60.66966516741629,-60.61969015492254,-60.569715142428784,-60.51974012993503,-60.46976511744128,-60.41979010494752,-60.36981509245377,-60.31984007996002,-60.26986506746627,-60.21989005497252,-60.16991504247876,-60.11994002998501,-60.069965017491256,-60.0199900049975,-59.97001499250375,-59.920039980009996,-59.87006496751624,-59.82008995502249,-59.770114942528735,-59.72013993003498,-59.67016491754123,-59.620189905047475,-59.57021489255372,-59.52023988005997,-59.470264867566215,-59.42028985507246,-59.37031484257871,-59.320339830084954,-59.27036481759121,-59.220389805097454,-59.1704147926037,-59.12043978010995,-59.070464767616194,-59.02048975512244,-58.97051474262869,-58.920539730134934,-58.87056471764118,-58.82058970514743,-58.77061469265367,-58.72063968015992,-58.670664667666166,-58.62068965517241,-58.57071464267866,-58.520739630184906,-58.47076461769115,-58.4207896051974,-58.370814592703645,-58.32083958020989,-58.27086456771614,-58.22088955522239,-58.17091454272864,-58.120939530234885,-58.07096451774113,-58.02098950524738,-57.971014492753625,-57.92103948025987,-57.87106446776612,-57.821089455272364,-57.77111444277861,-57.72113943028486,-57.671164417791104,-57.62118940529735,-57.5712143928036,-57.521239380309844,-57.47126436781609,-57.42128935532234,-57.37131434282858,-57.32133933033483,-57.271364317841076,-57.22138930534732,-57.17141429285358,-57.12143928035982,-57.07146426786607,-57.021489255372316,-56.97151424287856,-56.92153923038481,-56.871564217891056,-56.8215892053973,-56.77161419290355,-56.721639180409795,-56.67166416791604,-56.62168915542229,-56.571714142928535,-56.52173913043478,-56.47176411794103,-56.421789105447274,-56.37181409295352,-56.32183908045977,-56.271864067966014,-56.22188905547226,-56.171914042978514,-56.12193903048476,-56.07196401799101,-56.021989005497254,-55.9720139930035,-55.92203898050975,-55.87206396801599,-55.82208895552224,-55.77211394302849,-55.72213893053473,-55.67216391804098,-55.622188905547226,-55.57221389305347,-55.52223888055972,-55.472263868065966,-55.42228885557221,-55.37231384307846,-55.322338830584705,-55.27236381809095,-55.2223888055972,-55.172413793103445,-55.1224387806097,-55.072463768115945,-55.02248875562219,-54.97251374312844,-54.922538730634685,-54.87256371814093,-54.82258870564718,-54.772613693153424,-54.72263868065967,-54.67266366816592,-54.622688655672164,-54.57271364317841,-54.52273863068466,-54.4727636181909,-54.42278860569715,-54.3728135932034,-54.32283858070964,-54.27286356821589,-54.222888555722136,-54.17291354322838,-54.122938530734636,-54.07296351824088,-54.02298850574713,-53.973013493253376,-53.92303848075962,-53.87306346826587,-53.823088455772115,-53.77311344327836,-53.72313843078461,-53.673163418290855,-53.6231884057971,-53.57321339330335,-53.523238380809595,-53.47326336831584,-53.42328835582209,-53.373313343328334,-53.32333833083458,-53.27336331834083,-53.223388305847074,-53.17341329335332,-53.12343828085957,-53.07346326836582,-53.02348825587207,-52.973513243378314,-52.92353823088456,-52.87356321839081,-52.82358820589705,-52.7736131934033,-52.723638180909546,-52.67366316841579,-52.62368815592204,-52.573713143428286,-52.52373813093453,-52.47376311844078,-52.423788105947025,-52.37381309345327,-52.32383808095952,-52.273863068465765,-52.22388805597201,-52.17391304347826,-52.123938030984505,-52.07396301849075,-52.023988005997005,-51.97401299350325,-51.9240379810095,-51.874062968515744,-51.82408795602199,-51.77411294352824,-51.724137931034484,-51.67416291854073,-51.62418790604698,-51.574212893553224,-51.52423788105947,-51.47426286856572,-51.42428785607196,-51.37431284357821,-51.324337831084456,-51.2743628185907,-51.22438780609695,-51.174412793603196,-51.12443778110944,-51.07446276861569,-51.02448775612194,-50.97451274362819,-50.924537731134436,-50.87456271864068,-50.82458770614693,-50.774612693653175,-50.72463768115942,-50.67466266866567,-50.624687656171915,-50.57471264367816,-50.52473763118441,-50.474762618690654,-50.4247876061969,-50.37481259370315,-50.324837581209394,-50.27486256871564,-50.22488755622189,-50.174912543728134,-50.12493753123438,-50.07496251874063,-50.02498750624687,-49.97501249375313,-49.92503748125937,-49.87506246876562,-49.825087456271866,-49.77511244377811,-49.72513743128436,-49.675162418790606,-49.62518740629685,-49.5752123938031,-49.525237381309346,-49.47526236881559,-49.42528735632184,-49.375312343828085,-49.32533733133433,-49.27536231884058,-49.225387306346825,-49.17541229385307,-49.12543728135932,-49.075462268865564,-49.02548725637181,-48.97551224387806,-48.92553723138431,-48.87556221889056,-48.825587206396804,-48.77561219390305,-48.7256371814093,-48.675662168915544,-48.62568715642179,-48.57571214392804,-48.52573713143428,-48.47576211894053,-48.425787106446776,-48.37581209395302,-48.32583708145927,-48.275862068965516,-48.22588705647176,-48.17591204397801,-48.125937031484256,-48.0759620189905,-48.02598700649675,-47.976011994002995,-47.92603698150925,-47.876061969015495,-47.82608695652174,-47.77611194402799,-47.726136931534235,-47.67616191904048,-47.62618690654673,-47.576211894052975,-47.52623688155922,-47.47626186906547,-47.426286856571714,-47.37631184407796,-47.32633683158421,-47.276361819090454,-47.2263868065967,-47.17641179410295,-47.12643678160919,-47.07646176911544,-47.026486756621686,-46.97651174412793,-46.92653673163418,-46.87656171914043,-46.82658670664668,-46.776611694152926,-46.72663668165917,-46.67666166916542,-46.626686656671666,-46.57671164417791,-46.52673663168416,-46.476761619190405,-46.42678660669665,-46.3768115942029,-46.326836581709145,-46.27686156921539,-46.22688655672164,-46.176911544227885,-46.12693653173413,-46.07696151924038,-46.026986506746624,-45.97701149425287,-45.92703648175912,-45.877061469265364,-45.82708645677162,-45.777111444277864,-45.72713643178411,-45.67716141929036,-45.6271864067966,-45.57721139430285,-45.5272363818091,-45.47726136931534,-45.42728635682159,-45.377311344327836,-45.32733633183408,-45.27736131934033,-45.227386306846576,-45.17741129435282,-45.12743628185907,-45.077461269365315,-45.02748625687156,-44.97751124437781,-44.927536231884055,-44.8775612193903,-44.827586206896555,-44.7776111944028,-44.72763618190905,-44.677661169415295,-44.62768615692154,-44.57771114442779,-44.527736131934034,-44.47776111944028,-44.42778610694653,-44.377811094452774,-44.32783608195902,-44.27786106946527,-44.22788605697151,-44.17791104447776,-44.12793603198401,-44.07796101949025,-44.0279860069965,-43.978010994502746,-43.92803598200899,-43.87806096951524,-43.828085957021486,-43.77811094452774,-43.728135932033986,-43.67816091954023,-43.62818590704648,-43.578210894552726,-43.52823588205897,-43.47826086956522,-43.428285857071465,-43.37831084457771,-43.32833583208396,-43.278360819590205,-43.22838580709645,-43.1784107946027,-43.128435782108944,-43.07846076961519,-43.02848575712144,-42.978510744627684,-42.92853573213393,-42.87856071964018,-42.82858570714642,-42.77861069465268,-42.728635682158924,-42.67866066966517,-42.62868565717142,-42.57871064467766,-42.52873563218391,-42.478760619690156,-42.4287856071964,-42.37881059470265,-42.328835582208896,-42.27886056971514,-42.22888555722139,-42.178910544727636,-42.12893553223388,-42.07896051974013,-42.028985507246375,-41.97901049475262,-41.92903548225887,-41.879060469765115,-41.82908545727136,-41.77911044477761,-41.72913543228386,-41.67916041979011,-41.629185407296355,-41.5792103948026,-41.52923538230885,-41.479260369815094,-41.42928535732134,-41.37931034482759,-41.329335332333834,-41.27936031984008,-41.22938530734633,-41.17941029485257,-41.12943528235882,-41.079460269865066,-41.02948525737131,-40.97951024487756,-40.929535232383806,-40.87956021989005,-40.8295852073963,-40.779610194902546,-40.72963518240879,-40.679660169915046,-40.62968515742129,-40.57971014492754,-40.529735132433785,-40.47976011994003,-40.42978510744628,-40.379810094952525,-40.32983508245877,-40.27986006996502,-40.229885057471265,-40.17991004497751,-40.12993503248376,-40.079960019990004,-40.02998500749625,-39.9800099950025,-39.930034982508744,-39.88005997001499,-39.83008495752124,-39.78010994502748,-39.73013493253373,-39.68015992003998,-39.63018490754623,-39.58020989505248,-39.53023488255872,-39.48025987006497,-39.430284857571216,-39.38030984507746,-39.33033483258371,-39.280359820089956,-39.2303848075962,-39.18040979510245,-39.130434782608695,-39.08045977011494,-39.03048475762119,-38.980509745127435,-38.93053473263368,-38.88055972013993,-38.830584707646175,-38.78060969515242,-38.73063468265867,-38.680659670164914,-38.63068465767117,-38.580709645177414,-38.53073463268366,-38.48075962018991,-38.430784607696154,-38.3808095952024,-38.33083458270865,-38.28085957021489,-38.23088455772114,-38.18090954522739,-38.13093453273363,-38.08095952023988,-38.030984507746126,-37.98100949525237,-37.93103448275862,-37.881059470264866,-37.83108445777111,-37.78110944527736,-37.731134432783605,-37.68115942028985,-37.6311844077961,-37.58120939530235,-37.5312343828086,-37.481259370314845,-37.43128435782109,-37.38130934532734,-37.331334332833585,-37.28135932033983,-37.23138430784608,-37.181409295352324,-37.13143428285857,-37.08145927036482,-37.031484257871064,-36.98150924537731,-36.93153423288356,-36.8815592203898,-36.83158420789605,-36.7816091954023,-36.73163418290854,-36.68165917041479,-36.631684157921036,-36.58170914542729,-36.531734132933536,-36.48175912043978,-36.43178410794603,-36.381809095452276,-36.33183408295852,-36.28185907046477,-36.231884057971016,-36.18190904547726,-36.13193403298351,-36.081959020489755,-36.031984007996,-35.98200899550225,-35.932033983008495,-35.88205897051474,-35.83208395802099,-35.782108945527234,-35.73213393303348,-35.68215892053973,-35.632183908045974,-35.58220889555222,-35.532233883058474,-35.48225887056472,-35.43228385807097,-35.382308845577214,-35.33233383308346,-35.28235882058971,-35.23238380809595,-35.1824087956022,-35.132433783108446,-35.08245877061469,-35.03248375812094,-34.982508745627186,-34.93253373313343,-34.88255872063968,-34.832583708145926,-34.78260869565217,-34.73263368315842,-34.682658670664665,-34.63268365817091,-34.58270864567716,-34.53273363318341,-34.48275862068966,-34.432783608195905,-34.38280859570215,-34.3328335832084,-34.282858570714644,-34.23288355822089,-34.18290854572714,-34.132933533233384,-34.08295852073963,-34.03298350824588,-33.983008495752124,-33.93303348325837,-33.88305847076462,-33.83308345827086,-33.78310844577711,-33.733133433283356,-33.6831584207896,-33.63318340829585,-33.583208395802096,-33.53323338330834,-33.483258370814596,-33.43328335832084,-33.38330834582709,-33.333333333333336,-33.28335832083958,-33.23338330834583,-33.183408295852075,-33.13343328335832,-33.08345827086457,-33.033483258370815,-32.98350824587706,-32.93353323338331,-32.883558220889554,-32.8335832083958,-32.78360819590205,-32.733633183408294,-32.68365817091454,-32.63368315842079,-32.583708145927034,-32.53373313343328,-32.48375812093953,-32.43378310844578,-32.38380809595203,-32.33383308345827,-32.28385807096452,-32.23388305847077,-32.18390804597701,-32.13393303348326,-32.083958020989506,-32.03398300849575,-31.984007996002,-31.934032983508246,-31.884057971014492,-31.83408295852074,-31.784107946026985,-31.734132933533232,-31.684157921039482,-31.63418290854573,-31.584207896051975,-31.53423288355822,-31.484257871064468,-31.434282858570715,-31.38430784607696,-31.334332833583208,-31.284357821089454,-31.2343828085957,-31.18440779610195,-31.134432783608197,-31.084457771114444,-31.03448275862069,-30.984507746126937,-30.934532733633183,-30.88455772113943,-30.834582708645677,-30.784607696151923,-30.73463268365817,-30.684657671164416,-30.634682658670666,-30.584707646176913,-30.53473263368316,-30.484757621189406,-30.434782608695652,-30.3848075962019,-30.334832583708145,-30.284857571214392,-30.23488255872064,-30.184907546226885,-30.134932533733135,-30.08495752123938,-30.034982508745628,-29.985007496251875,-29.93503248375812,-29.885057471264368,-29.835082458770614,-29.78510744627686,-29.735132433783107,-29.685157421289354,-29.635182408795604,-29.58520739630185,-29.535232383808097,-29.485257371314344,-29.43528235882059,-29.385307346326837,-29.335332333833083,-29.28535732133933,-29.235382308845576,-29.185407296351823,-29.13543228385807,-29.08545727136432,-29.035482258870566,-28.985507246376812,-28.93553223388306,-28.885557221389305,-28.835582208895552,-28.7856071964018,-28.735632183908045,-28.68565717141429,-28.635682158920538,-28.58570714642679,-28.535732133933035,-28.48575712143928,-28.435782108945528,-28.385807096451774,-28.33583208395802,-28.285857071464267,-28.235882058970514,-28.18590704647676,-28.135932033983007,-28.085957021489257,-28.035982008995504,-27.98600699650175,-27.936031984007997,-27.886056971514243,-27.83608195902049,-27.786106946526736,-27.736131934032983,-27.68615692153923,-27.636181909045476,-27.586206896551722,-27.536231884057973,-27.48625687156422,-27.436281859070466,-27.386306846576712,-27.33633183408296,-27.286356821589205,-27.23638180909545,-27.1864067966017,-27.136431784107945,-27.08645677161419,-27.03648175912044,-26.986506746626688,-26.936531734132934,-26.88655672163918,-26.836581709145428,-26.786606696651674,-26.73663168415792,-26.686656671664167,-26.636681659170414,-26.58670664667666,-26.53673163418291,-26.486756621689157,-26.436781609195403,-26.38680659670165,-26.336831584207896,-26.286856571714143,-26.23688155922039,-26.186906546726636,-26.136931534232883,-26.08695652173913,-26.036981509245376,-25.987006496751626,-25.937031484257872,-25.88705647176412,-25.837081459270365,-25.787106446776612,-25.73713143428286,-25.687156421789105,-25.63718140929535,-25.587206396801598,-25.537231384307844,-25.487256371814095,-25.43728135932034,-25.387306346826588,-25.337331334332834,-25.28735632183908,-25.237381309345327,-25.187406296851574,-25.13743128435782,-25.087456271864067,-25.037481259370313,-24.987506246876563,-24.93753123438281,-24.887556221889056,-24.837581209395303,-24.78760619690155,-24.737631184407796,-24.687656171914043,-24.63768115942029,-24.587706146926536,-24.537731134432782,-24.48775612193903,-24.43778110944528,-24.387806096951525,-24.337831084457772,-24.28785607196402,-24.237881059470265,-24.18790604697651,-24.137931034482758,-24.087956021989005,-24.03798100949525,-23.988005997001498,-23.938030984507748,-23.888055972013994,-23.83808095952024,-23.788105947026487,-23.738130934532734,-23.68815592203898,-23.638180909545227,-23.588205897051473,-23.53823088455772,-23.488255872063966,-23.438280859570217,-23.388305847076463,-23.33833083458271,-23.288355822088956,-23.238380809595203,-23.18840579710145,-23.138430784607696,-23.088455772113942,-23.03848075962019,-22.988505747126435,-22.938530734632682,-22.888555722138932,-22.83858070964518,-22.788605697151425,-22.73863068465767,-22.688655672163918,-22.638680659670165,-22.58870564717641,-22.538730634682658,-22.488755622188904,-22.43878060969515,-22.3888055972014,-22.338830584707647,-22.288855572213894,-22.23888055972014,-22.188905547226387,-22.138930534732634,-22.08895552223888,-22.038980509745127,-21.989005497251373,-21.93903048475762,-21.88905547226387,-21.839080459770116,-21.789105447276363,-21.73913043478261,-21.689155422288856,-21.639180409795102,-21.58920539730135,-21.539230384807595,-21.489255372313842,-21.43928035982009,-21.38930534732634,-21.339330334832585,-21.28935532233883,-21.239380309845078,-21.189405297351325,-21.13943028485757,-21.089455272363818,-21.039480259870064,-20.98950524737631,-20.939530234882557,-20.889555222388804,-20.839580209895054,-20.7896051974013,-20.739630184907547,-20.689655172413794,-20.63968015992004,-20.589705147426287,-20.539730134932533,-20.48975512243878,-20.439780109945026,-20.389805097451273,-20.339830084957523,-20.28985507246377,-20.239880059970016,-20.189905047476262,-20.13993003498251,-20.089955022488756,-20.039980009995002,-19.99000499750125,-19.940029985007495,-19.89005497251374,-19.84007996001999,-19.79010494752624,-19.740129935032485,-19.69015492253873,-19.640179910044978,-19.590204897551224,-19.54022988505747,-19.490254872563717,-19.440279860069964,-19.39030484757621,-19.340329835082457,-19.290354822588707,-19.240379810094954,-19.1904047976012,-19.140429785107447,-19.090454772613693,-19.04047976011994,-18.990504747626186,-18.940529735132433,-18.89055472263868,-18.840579710144926,-18.790604697651176,-18.740629685157423,-18.69065467266367,-18.640679660169916,-18.590704647676162,-18.54072963518241,-18.490754622688655,-18.4407796101949,-18.39080459770115,-18.340829585207395,-18.290854572713645,-18.24087956021989,-18.190904547726138,-18.140929535232384,-18.09095452273863,-18.040979510244878,-17.991004497751124,-17.94102948525737,-17.891054472763617,-17.841079460269864,-17.79110444777611,-17.74112943528236,-17.691154422788607,-17.641179410294853,-17.5912043978011,-17.541229385307346,-17.491254372813593,-17.44127936031984,-17.391304347826086,-17.341329335332333,-17.29135432283858,-17.24137931034483,-17.191404297851076,-17.141429285357322,-17.09145427286357,-17.041479260369815,-16.991504247876062,-16.94152923538231,-16.891554222888555,-16.8415792103948,-16.791604197901048,-16.741629185407298,-16.691654172913545,-16.64167916041979,-16.591704147926038,-16.541729135432284,-16.49175412293853,-16.441779110444777,-16.391804097951024,-16.34182908545727,-16.291854072963517,-16.241879060469763,-16.191904047976013,-16.14192903548226,-16.091954022988507,-16.041979010494753,-15.992003998001,-15.942028985507246,-15.892053973013493,-15.842078960519741,-15.792103948025987,-15.742128935532234,-15.69215392303848,-15.642178910544727,-15.592203898050975,-15.542228885557222,-15.492253873063468,-15.442278860569715,-15.392303848075962,-15.342328835582208,-15.292353823088456,-15.242378810594703,-15.19240379810095,-15.142428785607196,-15.092453773113442,-15.04247876061969,-14.992503748125937,-14.942528735632184,-14.89255372313843,-14.842578710644677,-14.792603698150925,-14.742628685657172,-14.692653673163418,-14.642678660669665,-14.592703648175911,-14.54272863568216,-14.492753623188406,-14.442778610694653,-14.3928035982009,-14.342828585707146,-14.292853573213394,-14.24287856071964,-14.192903548225887,-14.142928535732134,-14.09295352323838,-14.042978510744629,-13.993003498250875,-13.943028485757122,-13.893053473263368,-13.843078460769615,-13.793103448275861,-13.74312843578211,-13.693153423288356,-13.643178410794603,-13.59320339830085,-13.543228385807096,-13.493253373313344,-13.44327836081959,-13.393303348325837,-13.343328335832084,-13.29335332333833,-13.243378310844578,-13.193403298350825,-13.143428285857071,-13.093453273363318,-13.043478260869565,-12.993503248375813,-12.94352823588206,-12.893553223388306,-12.843578210894552,-12.793603198400799,-12.743628185907047,-12.693653173413294,-12.64367816091954,-12.593703148425787,-12.543728135932033,-12.493753123438282,-12.443778110944528,-12.393803098450775,-12.343828085957021,-12.293853073463268,-12.243878060969514,-12.193903048475763,-12.14392803598201,-12.093953023488256,-12.043978010994502,-11.994002998500749,-11.944027986006997,-11.894052973513244,-11.84407796101949,-11.794102948525737,-11.744127936031983,-11.694152923538232,-11.644177911044478,-11.594202898550725,-11.544227886056971,-11.494252873563218,-11.444277861069466,-11.394302848575713,-11.344327836081959,-11.294352823588206,-11.244377811094452,-11.1944027986007,-11.144427786106947,-11.094452773613193,-11.04447776111944,-10.994502748625687,-10.944527736131935,-10.894552723638181,-10.844577711144428,-10.794602698650674,-10.744627686156921,-10.69465267366317,-10.644677661169416,-10.594702648675662,-10.544727636181909,-10.494752623688155,-10.444777611194402,-10.39480259870065,-10.344827586206897,-10.294852573713143,-10.24487756121939,-10.194902548725636,-10.144927536231885,-10.094952523738131,-10.044977511244378,-9.995002498750624,-9.94502748625687,-9.89505247376312,-9.845077461269366,-9.795102448775612,-9.745127436281859,-9.695152423788105,-9.645177411294354,-9.5952023988006,-9.545227386306847,-9.495252373813093,-9.44527736131934,-9.395302348825588,-9.345327336331835,-9.295352323838081,-9.245377311344328,-9.195402298850574,-9.145427286356822,-9.095452273863069,-9.045477261369316,-8.995502248875562,-8.945527236381809,-8.895552223888055,-8.845577211394303,-8.79560219890055,-8.745627186406796,-8.695652173913043,-8.64567716141929,-8.595702148925538,-8.545727136431784,-8.495752123938031,-8.445777111444277,-8.395802098950524,-8.345827086456772,-8.295852073963019,-8.245877061469265,-8.195902048975512,-8.145927036481758,-8.095952023988007,-8.045977011494253,-7.9960019990005,-7.946026986506746,-7.896051974012994,-7.84607696151924,-7.796101949025488,-7.746126936531734,-7.696151924037981,-7.646176911544228,-7.596201899050475,-7.546226886556721,-7.496251874062969,-7.446276861569215,-7.396301849075463,-7.346326836581709,-7.296351824087956,-7.246376811594203,-7.19640179910045,-7.146426786606697,-7.096451774112944,-7.04647676161919,-6.9965017491254375,-6.946526736631684,-6.896551724137931,-6.846576711644178,-6.796601699150425,-6.746626686656672,-6.6966516741629185,-6.646676661669165,-6.5967016491754125,-6.546726636681659,-6.496751624187906,-6.446776611694153,-6.3968015992003995,-6.346826586706647,-6.296851574212893,-6.246876561719141,-6.196901549225387,-6.146926536731634,-6.096951524237881,-6.046976511744128,-5.997001499250374,-5.947026486756622,-5.897051474262868,-5.847076461769116,-5.797101449275362,-5.747126436781609,-5.697151424287856,-5.647176411794103,-5.59720139930035,-5.547226386806597,-5.497251374312843,-5.447276361819091,-5.397301349325337,-5.347326336831585,-5.297351324337831,-5.247376311844078,-5.197401299350325,-5.147426286856572,-5.097451274362818,-5.047476261869066,-4.997501249375312,-4.94752623688156,-4.897551224387806,-4.847576211894053,-4.7976011994003,-4.747626186906547,-4.697651174412794,-4.6476761619190405,-4.597701149425287,-4.5477261369315345,-4.497751124437781,-4.4477761119440276,-4.397801099450275,-4.3478260869565215,-4.297851074462769,-4.2478760619690155,-4.197901049475262,-4.147926036981509,-4.097951024487756,-4.047976011994003,-3.99800099950025,-3.948025987006497,-3.898050974512744,-3.8480759620189904,-3.7981009495252374,-3.7481259370314843,-3.6981509245377313,-3.648175912043978,-3.598200899550225,-3.548225887056472,-3.4982508745627188,-3.4482758620689653,-3.3983008495752123,-3.3483258370814593,-3.2983508245877062,-3.248375812093953,-3.1984007996001997,-3.1484257871064467,-3.0984507746126937,-3.0484757621189407,-2.998500749625187,-2.948525737131434,-2.898550724637681,-2.848575712143928,-2.798600699650175,-2.7486256871564216,-2.6986506746626686,-2.6486756621689156,-2.5987006496751626,-2.548725637181409,-2.498750624687656,-2.448775612193903,-2.39880059970015,-2.348825587206397,-2.2988505747126435,-2.2488755622188905,-2.1989005497251375,-2.1489255372313845,-2.098950524737631,-2.048975512243878,-1.999000499750125,-1.949025487256372,-1.8990504747626187,-1.8490754622688657,-1.7991004497751124,-1.7491254372813594,-1.6991504247876061,-1.6491754122938531,-1.5992003998000999,-1.5492253873063468,-1.4992503748125936,-1.4492753623188406,-1.3993003498250876,-1.3493253373313343,-1.2993503248375813,-1.249375312343828,-1.199400299850075,-1.1494252873563218,-1.0994502748625687,-1.0494752623688155,-0.9995002498750625,-0.9495252373813093,-0.8995502248875562,-0.8495752123938031,-0.7996001999000499,-0.7496251874062968,-0.6996501749125438,-0.6496751624187906,-0.5997001499250375,-0.5497251374312844,-0.49975012493753124,-0.4497751124437781,-0.39980009995002497,-0.3498250874562719,-0.29985007496251875,-0.24987506246876562,-0.19990004997501248,-0.14992503748125938,-0.09995002498750624,-0.04997501249375312,0.0,0.04997501249375312,0.09995002498750624,0.14992503748125938,0.19990004997501248,0.24987506246876562,0.29985007496251875,0.3498250874562719,0.39980009995002497,0.4497751124437781,0.49975012493753124,0.5497251374312844,0.5997001499250375,0.6496751624187906,0.6996501749125438,0.7496251874062968,0.7996001999000499,0.8495752123938031,0.8995502248875562,0.9495252373813093,0.9995002498750625,1.0494752623688155,1.0994502748625687,1.1494252873563218,1.199400299850075,1.249375312343828,1.2993503248375813,1.3493253373313343,1.3993003498250876,1.4492753623188406,1.4992503748125936,1.5492253873063468,1.5992003998000999,1.6491754122938531,1.6991504247876061,1.7491254372813594,1.7991004497751124,1.8490754622688657,1.8990504747626187,1.949025487256372,1.999000499750125,2.048975512243878,2.098950524737631,2.1489255372313845,2.1989005497251375,2.2488755622188905,2.2988505747126435,2.348825587206397,2.39880059970015,2.448775612193903,2.498750624687656,2.548725637181409,2.5987006496751626,2.6486756621689156,2.6986506746626686,2.7486256871564216,2.798600699650175,2.848575712143928,2.898550724637681,2.948525737131434,2.998500749625187,3.0484757621189407,3.0984507746126937,3.1484257871064467,3.1984007996001997,3.248375812093953,3.2983508245877062,3.3483258370814593,3.3983008495752123,3.4482758620689653,3.4982508745627188,3.548225887056472,3.598200899550225,3.648175912043978,3.6981509245377313,3.7481259370314843,3.7981009495252374,3.8480759620189904,3.898050974512744,3.948025987006497,3.99800099950025,4.047976011994003,4.097951024487756,4.147926036981509,4.197901049475262,4.2478760619690155,4.297851074462769,4.3478260869565215,4.397801099450275,4.4477761119440276,4.497751124437781,4.5477261369315345,4.597701149425287,4.6476761619190405,4.697651174412794,4.747626186906547,4.7976011994003,4.847576211894053,4.897551224387806,4.94752623688156,4.997501249375312,5.047476261869066,5.097451274362818,5.147426286856572,5.197401299350325,5.247376311844078,5.297351324337831,5.347326336831585,5.397301349325337,5.447276361819091,5.497251374312843,5.547226386806597,5.59720139930035,5.647176411794103,5.697151424287856,5.747126436781609,5.797101449275362,5.847076461769116,5.897051474262868,5.947026486756622,5.997001499250374,6.046976511744128,6.096951524237881,6.146926536731634,6.196901549225387,6.246876561719141,6.296851574212893,6.346826586706647,6.3968015992003995,6.446776611694153,6.496751624187906,6.546726636681659,6.5967016491754125,6.646676661669165,6.6966516741629185,6.746626686656672,6.796601699150425,6.846576711644178,6.896551724137931,6.946526736631684,6.9965017491254375,7.04647676161919,7.096451774112944,7.146426786606697,7.19640179910045,7.246376811594203,7.296351824087956,7.346326836581709,7.396301849075463,7.446276861569215,7.496251874062969,7.546226886556721,7.596201899050475,7.646176911544228,7.696151924037981,7.746126936531734,7.796101949025488,7.84607696151924,7.896051974012994,7.946026986506746,7.9960019990005,8.045977011494253,8.095952023988007,8.145927036481758,8.195902048975512,8.245877061469265,8.295852073963019,8.345827086456772,8.395802098950524,8.445777111444277,8.495752123938031,8.545727136431784,8.595702148925538,8.64567716141929,8.695652173913043,8.745627186406796,8.79560219890055,8.845577211394303,8.895552223888055,8.945527236381809,8.995502248875562,9.045477261369316,9.095452273863069,9.145427286356822,9.195402298850574,9.245377311344328,9.295352323838081,9.345327336331835,9.395302348825588,9.44527736131934,9.495252373813093,9.545227386306847,9.5952023988006,9.645177411294354,9.695152423788105,9.745127436281859,9.795102448775612,9.845077461269366,9.89505247376312,9.94502748625687,9.995002498750624,10.044977511244378,10.094952523738131,10.144927536231885,10.194902548725636,10.24487756121939,10.294852573713143,10.344827586206897,10.39480259870065,10.444777611194402,10.494752623688155,10.544727636181909,10.594702648675662,10.644677661169416,10.69465267366317,10.744627686156921,10.794602698650674,10.844577711144428,10.894552723638181,10.944527736131935,10.994502748625687,11.04447776111944,11.094452773613193,11.144427786106947,11.1944027986007,11.244377811094452,11.294352823588206,11.344327836081959,11.394302848575713,11.444277861069466,11.494252873563218,11.544227886056971,11.594202898550725,11.644177911044478,11.694152923538232,11.744127936031983,11.794102948525737,11.84407796101949,11.894052973513244,11.944027986006997,11.994002998500749,12.043978010994502,12.093953023488256,12.14392803598201,12.193903048475763,12.243878060969514,12.293853073463268,12.343828085957021,12.393803098450775,12.443778110944528,12.493753123438282,12.543728135932033,12.593703148425787,12.64367816091954,12.693653173413294,12.743628185907047,12.793603198400799,12.843578210894552,12.893553223388306,12.94352823588206,12.993503248375813,13.043478260869565,13.093453273363318,13.143428285857071,13.193403298350825,13.243378310844578,13.29335332333833,13.343328335832084,13.393303348325837,13.44327836081959,13.493253373313344,13.543228385807096,13.59320339830085,13.643178410794603,13.693153423288356,13.74312843578211,13.793103448275861,13.843078460769615,13.893053473263368,13.943028485757122,13.993003498250875,14.042978510744629,14.09295352323838,14.142928535732134,14.192903548225887,14.24287856071964,14.292853573213394,14.342828585707146,14.3928035982009,14.442778610694653,14.492753623188406,14.54272863568216,14.592703648175911,14.642678660669665,14.692653673163418,14.742628685657172,14.792603698150925,14.842578710644677,14.89255372313843,14.942528735632184,14.992503748125937,15.04247876061969,15.092453773113442,15.142428785607196,15.19240379810095,15.242378810594703,15.292353823088456,15.342328835582208,15.392303848075962,15.442278860569715,15.492253873063468,15.542228885557222,15.592203898050975,15.642178910544727,15.69215392303848,15.742128935532234,15.792103948025987,15.842078960519741,15.892053973013493,15.942028985507246,15.992003998001,16.041979010494753,16.091954022988507,16.14192903548226,16.191904047976013,16.241879060469763,16.291854072963517,16.34182908545727,16.391804097951024,16.441779110444777,16.49175412293853,16.541729135432284,16.591704147926038,16.64167916041979,16.691654172913545,16.741629185407298,16.791604197901048,16.8415792103948,16.891554222888555,16.94152923538231,16.991504247876062,17.041479260369815,17.09145427286357,17.141429285357322,17.191404297851076,17.24137931034483,17.29135432283858,17.341329335332333,17.391304347826086,17.44127936031984,17.491254372813593,17.541229385307346,17.5912043978011,17.641179410294853,17.691154422788607,17.74112943528236,17.79110444777611,17.841079460269864,17.891054472763617,17.94102948525737,17.991004497751124,18.040979510244878,18.09095452273863,18.140929535232384,18.190904547726138,18.24087956021989,18.290854572713645,18.340829585207395,18.39080459770115,18.4407796101949,18.490754622688655,18.54072963518241,18.590704647676162,18.640679660169916,18.69065467266367,18.740629685157423,18.790604697651176,18.840579710144926,18.89055472263868,18.940529735132433,18.990504747626186,19.04047976011994,19.090454772613693,19.140429785107447,19.1904047976012,19.240379810094954,19.290354822588707,19.340329835082457,19.39030484757621,19.440279860069964,19.490254872563717,19.54022988505747,19.590204897551224,19.640179910044978,19.69015492253873,19.740129935032485,19.79010494752624,19.84007996001999,19.89005497251374,19.940029985007495,19.99000499750125,20.039980009995002,20.089955022488756,20.13993003498251,20.189905047476262,20.239880059970016,20.28985507246377,20.339830084957523,20.389805097451273,20.439780109945026,20.48975512243878,20.539730134932533,20.589705147426287,20.63968015992004,20.689655172413794,20.739630184907547,20.7896051974013,20.839580209895054,20.889555222388804,20.939530234882557,20.98950524737631,21.039480259870064,21.089455272363818,21.13943028485757,21.189405297351325,21.239380309845078,21.28935532233883,21.339330334832585,21.38930534732634,21.43928035982009,21.489255372313842,21.539230384807595,21.58920539730135,21.639180409795102,21.689155422288856,21.73913043478261,21.789105447276363,21.839080459770116,21.88905547226387,21.93903048475762,21.989005497251373,22.038980509745127,22.08895552223888,22.138930534732634,22.188905547226387,22.23888055972014,22.288855572213894,22.338830584707647,22.3888055972014,22.43878060969515,22.488755622188904,22.538730634682658,22.58870564717641,22.638680659670165,22.688655672163918,22.73863068465767,22.788605697151425,22.83858070964518,22.888555722138932,22.938530734632682,22.988505747126435,23.03848075962019,23.088455772113942,23.138430784607696,23.18840579710145,23.238380809595203,23.288355822088956,23.33833083458271,23.388305847076463,23.438280859570217,23.488255872063966,23.53823088455772,23.588205897051473,23.638180909545227,23.68815592203898,23.738130934532734,23.788105947026487,23.83808095952024,23.888055972013994,23.938030984507748,23.988005997001498,24.03798100949525,24.087956021989005,24.137931034482758,24.18790604697651,24.237881059470265,24.28785607196402,24.337831084457772,24.387806096951525,24.43778110944528,24.48775612193903,24.537731134432782,24.587706146926536,24.63768115942029,24.687656171914043,24.737631184407796,24.78760619690155,24.837581209395303,24.887556221889056,24.93753123438281,24.987506246876563,25.037481259370313,25.087456271864067,25.13743128435782,25.187406296851574,25.237381309345327,25.28735632183908,25.337331334332834,25.387306346826588,25.43728135932034,25.487256371814095,25.537231384307844,25.587206396801598,25.63718140929535,25.687156421789105,25.73713143428286,25.787106446776612,25.837081459270365,25.88705647176412,25.937031484257872,25.987006496751626,26.036981509245376,26.08695652173913,26.136931534232883,26.186906546726636,26.23688155922039,26.286856571714143,26.336831584207896,26.38680659670165,26.436781609195403,26.486756621689157,26.53673163418291,26.58670664667666,26.636681659170414,26.686656671664167,26.73663168415792,26.786606696651674,26.836581709145428,26.88655672163918,26.936531734132934,26.986506746626688,27.03648175912044,27.08645677161419,27.136431784107945,27.1864067966017,27.23638180909545,27.286356821589205,27.33633183408296,27.386306846576712,27.436281859070466,27.48625687156422,27.536231884057973,27.586206896551722,27.636181909045476,27.68615692153923,27.736131934032983,27.786106946526736,27.83608195902049,27.886056971514243,27.936031984007997,27.98600699650175,28.035982008995504,28.085957021489257,28.135932033983007,28.18590704647676,28.235882058970514,28.285857071464267,28.33583208395802,28.385807096451774,28.435782108945528,28.48575712143928,28.535732133933035,28.58570714642679,28.635682158920538,28.68565717141429,28.735632183908045,28.7856071964018,28.835582208895552,28.885557221389305,28.93553223388306,28.985507246376812,29.035482258870566,29.08545727136432,29.13543228385807,29.185407296351823,29.235382308845576,29.28535732133933,29.335332333833083,29.385307346326837,29.43528235882059,29.485257371314344,29.535232383808097,29.58520739630185,29.635182408795604,29.685157421289354,29.735132433783107,29.78510744627686,29.835082458770614,29.885057471264368,29.93503248375812,29.985007496251875,30.034982508745628,30.08495752123938,30.134932533733135,30.184907546226885,30.23488255872064,30.284857571214392,30.334832583708145,30.3848075962019,30.434782608695652,30.484757621189406,30.53473263368316,30.584707646176913,30.634682658670666,30.684657671164416,30.73463268365817,30.784607696151923,30.834582708645677,30.88455772113943,30.934532733633183,30.984507746126937,31.03448275862069,31.084457771114444,31.134432783608197,31.18440779610195,31.2343828085957,31.284357821089454,31.334332833583208,31.38430784607696,31.434282858570715,31.484257871064468,31.53423288355822,31.584207896051975,31.63418290854573,31.684157921039482,31.734132933533232,31.784107946026985,31.83408295852074,31.884057971014492,31.934032983508246,31.984007996002,32.03398300849575,32.083958020989506,32.13393303348326,32.18390804597701,32.23388305847077,32.28385807096452,32.33383308345827,32.38380809595203,32.43378310844578,32.48375812093953,32.53373313343328,32.583708145927034,32.63368315842079,32.68365817091454,32.733633183408294,32.78360819590205,32.8335832083958,32.883558220889554,32.93353323338331,32.98350824587706,33.033483258370815,33.08345827086457,33.13343328335832,33.183408295852075,33.23338330834583,33.28335832083958,33.333333333333336,33.38330834582709,33.43328335832084,33.483258370814596,33.53323338330834,33.583208395802096,33.63318340829585,33.6831584207896,33.733133433283356,33.78310844577711,33.83308345827086,33.88305847076462,33.93303348325837,33.983008495752124,34.03298350824588,34.08295852073963,34.132933533233384,34.18290854572714,34.23288355822089,34.282858570714644,34.3328335832084,34.38280859570215,34.432783608195905,34.48275862068966,34.53273363318341,34.58270864567716,34.63268365817091,34.682658670664665,34.73263368315842,34.78260869565217,34.832583708145926,34.88255872063968,34.93253373313343,34.982508745627186,35.03248375812094,35.08245877061469,35.132433783108446,35.1824087956022,35.23238380809595,35.28235882058971,35.33233383308346,35.382308845577214,35.43228385807097,35.48225887056472,35.532233883058474,35.58220889555222,35.632183908045974,35.68215892053973,35.73213393303348,35.782108945527234,35.83208395802099,35.88205897051474,35.932033983008495,35.98200899550225,36.031984007996,36.081959020489755,36.13193403298351,36.18190904547726,36.231884057971016,36.28185907046477,36.33183408295852,36.381809095452276,36.43178410794603,36.48175912043978,36.531734132933536,36.58170914542729,36.631684157921036,36.68165917041479,36.73163418290854,36.7816091954023,36.83158420789605,36.8815592203898,36.93153423288356,36.98150924537731,37.031484257871064,37.08145927036482,37.13143428285857,37.181409295352324,37.23138430784608,37.28135932033983,37.331334332833585,37.38130934532734,37.43128435782109,37.481259370314845,37.5312343828086,37.58120939530235,37.6311844077961,37.68115942028985,37.731134432783605,37.78110944527736,37.83108445777111,37.881059470264866,37.93103448275862,37.98100949525237,38.030984507746126,38.08095952023988,38.13093453273363,38.18090954522739,38.23088455772114,38.28085957021489,38.33083458270865,38.3808095952024,38.430784607696154,38.48075962018991,38.53073463268366,38.580709645177414,38.63068465767117,38.680659670164914,38.73063468265867,38.78060969515242,38.830584707646175,38.88055972013993,38.93053473263368,38.980509745127435,39.03048475762119,39.08045977011494,39.130434782608695,39.18040979510245,39.2303848075962,39.280359820089956,39.33033483258371,39.38030984507746,39.430284857571216,39.48025987006497,39.53023488255872,39.58020989505248,39.63018490754623,39.68015992003998,39.73013493253373,39.78010994502748,39.83008495752124,39.88005997001499,39.930034982508744,39.9800099950025,40.02998500749625,40.079960019990004,40.12993503248376,40.17991004497751,40.229885057471265,40.27986006996502,40.32983508245877,40.379810094952525,40.42978510744628,40.47976011994003,40.529735132433785,40.57971014492754,40.62968515742129,40.679660169915046,40.72963518240879,40.779610194902546,40.8295852073963,40.87956021989005,40.929535232383806,40.97951024487756,41.02948525737131,41.079460269865066,41.12943528235882,41.17941029485257,41.22938530734633,41.27936031984008,41.329335332333834,41.37931034482759,41.42928535732134,41.479260369815094,41.52923538230885,41.5792103948026,41.629185407296355,41.67916041979011,41.72913543228386,41.77911044477761,41.82908545727136,41.879060469765115,41.92903548225887,41.97901049475262,42.028985507246375,42.07896051974013,42.12893553223388,42.178910544727636,42.22888555722139,42.27886056971514,42.328835582208896,42.37881059470265,42.4287856071964,42.478760619690156,42.52873563218391,42.57871064467766,42.62868565717142,42.67866066966517,42.728635682158924,42.77861069465268,42.82858570714642,42.87856071964018,42.92853573213393,42.978510744627684,43.02848575712144,43.07846076961519,43.128435782108944,43.1784107946027,43.22838580709645,43.278360819590205,43.32833583208396,43.37831084457771,43.428285857071465,43.47826086956522,43.52823588205897,43.578210894552726,43.62818590704648,43.67816091954023,43.728135932033986,43.77811094452774,43.828085957021486,43.87806096951524,43.92803598200899,43.978010994502746,44.0279860069965,44.07796101949025,44.12793603198401,44.17791104447776,44.22788605697151,44.27786106946527,44.32783608195902,44.377811094452774,44.42778610694653,44.47776111944028,44.527736131934034,44.57771114442779,44.62768615692154,44.677661169415295,44.72763618190905,44.7776111944028,44.827586206896555,44.8775612193903,44.927536231884055,44.97751124437781,45.02748625687156,45.077461269365315,45.12743628185907,45.17741129435282,45.227386306846576,45.27736131934033,45.32733633183408,45.377311344327836,45.42728635682159,45.47726136931534,45.5272363818091,45.57721139430285,45.6271864067966,45.67716141929036,45.72713643178411,45.777111444277864,45.82708645677162,45.877061469265364,45.92703648175912,45.97701149425287,46.026986506746624,46.07696151924038,46.12693653173413,46.176911544227885,46.22688655672164,46.27686156921539,46.326836581709145,46.3768115942029,46.42678660669665,46.476761619190405,46.52673663168416,46.57671164417791,46.626686656671666,46.67666166916542,46.72663668165917,46.776611694152926,46.82658670664668,46.87656171914043,46.92653673163418,46.97651174412793,47.026486756621686,47.07646176911544,47.12643678160919,47.17641179410295,47.2263868065967,47.276361819090454,47.32633683158421,47.37631184407796,47.426286856571714,47.47626186906547,47.52623688155922,47.576211894052975,47.62618690654673,47.67616191904048,47.726136931534235,47.77611194402799,47.82608695652174,47.876061969015495,47.92603698150925,47.976011994002995,48.02598700649675,48.0759620189905,48.125937031484256,48.17591204397801,48.22588705647176,48.275862068965516,48.32583708145927,48.37581209395302,48.425787106446776,48.47576211894053,48.52573713143428,48.57571214392804,48.62568715642179,48.675662168915544,48.7256371814093,48.77561219390305,48.825587206396804,48.87556221889056,48.92553723138431,48.97551224387806,49.02548725637181,49.075462268865564,49.12543728135932,49.17541229385307,49.225387306346825,49.27536231884058,49.32533733133433,49.375312343828085,49.42528735632184,49.47526236881559,49.525237381309346,49.5752123938031,49.62518740629685,49.675162418790606,49.72513743128436,49.77511244377811,49.825087456271866,49.87506246876562,49.92503748125937,49.97501249375313,50.02498750624687,50.07496251874063,50.12493753123438,50.174912543728134,50.22488755622189,50.27486256871564,50.324837581209394,50.37481259370315,50.4247876061969,50.474762618690654,50.52473763118441,50.57471264367816,50.624687656171915,50.67466266866567,50.72463768115942,50.774612693653175,50.82458770614693,50.87456271864068,50.924537731134436,50.97451274362819,51.02448775612194,51.07446276861569,51.12443778110944,51.174412793603196,51.22438780609695,51.2743628185907,51.324337831084456,51.37431284357821,51.42428785607196,51.47426286856572,51.52423788105947,51.574212893553224,51.62418790604698,51.67416291854073,51.724137931034484,51.77411294352824,51.82408795602199,51.874062968515744,51.9240379810095,51.97401299350325,52.023988005997005,52.07396301849075,52.123938030984505,52.17391304347826,52.22388805597201,52.273863068465765,52.32383808095952,52.37381309345327,52.423788105947025,52.47376311844078,52.52373813093453,52.573713143428286,52.62368815592204,52.67366316841579,52.723638180909546,52.7736131934033,52.82358820589705,52.87356321839081,52.92353823088456,52.973513243378314,53.02348825587207,53.07346326836582,53.12343828085957,53.17341329335332,53.223388305847074,53.27336331834083,53.32333833083458,53.373313343328334,53.42328835582209,53.47326336831584,53.523238380809595,53.57321339330335,53.6231884057971,53.673163418290855,53.72313843078461,53.77311344327836,53.823088455772115,53.87306346826587,53.92303848075962,53.973013493253376,54.02298850574713,54.07296351824088,54.122938530734636,54.17291354322838,54.222888555722136,54.27286356821589,54.32283858070964,54.3728135932034,54.42278860569715,54.4727636181909,54.52273863068466,54.57271364317841,54.622688655672164,54.67266366816592,54.72263868065967,54.772613693153424,54.82258870564718,54.87256371814093,54.922538730634685,54.97251374312844,55.02248875562219,55.072463768115945,55.1224387806097,55.172413793103445,55.2223888055972,55.27236381809095,55.322338830584705,55.37231384307846,55.42228885557221,55.472263868065966,55.52223888055972,55.57221389305347,55.622188905547226,55.67216391804098,55.72213893053473,55.77211394302849,55.82208895552224,55.87206396801599,55.92203898050975,55.9720139930035,56.021989005497254,56.07196401799101,56.12193903048476,56.171914042978514,56.22188905547226,56.271864067966014,56.32183908045977,56.37181409295352,56.421789105447274,56.47176411794103,56.52173913043478,56.571714142928535,56.62168915542229,56.67166416791604,56.721639180409795,56.77161419290355,56.8215892053973,56.871564217891056,56.92153923038481,56.97151424287856,57.021489255372316,57.07146426786607,57.12143928035982,57.17141429285358,57.22138930534732,57.271364317841076,57.32133933033483,57.37131434282858,57.42128935532234,57.47126436781609,57.521239380309844,57.5712143928036,57.62118940529735,57.671164417791104,57.72113943028486,57.77111444277861,57.821089455272364,57.87106446776612,57.92103948025987,57.971014492753625,58.02098950524738,58.07096451774113,58.120939530234885,58.17091454272864,58.22088955522239,58.27086456771614,58.32083958020989,58.370814592703645,58.4207896051974,58.47076461769115,58.520739630184906,58.57071464267866,58.62068965517241,58.670664667666166,58.72063968015992,58.77061469265367,58.82058970514743,58.87056471764118,58.920539730134934,58.97051474262869,59.02048975512244,59.070464767616194,59.12043978010995,59.1704147926037,59.220389805097454,59.27036481759121,59.320339830084954,59.37031484257871,59.42028985507246,59.470264867566215,59.52023988005997,59.57021489255372,59.620189905047475,59.67016491754123,59.72013993003498,59.770114942528735,59.82008995502249,59.87006496751624,59.920039980009996,59.97001499250375,60.0199900049975,60.069965017491256,60.11994002998501,60.16991504247876,60.21989005497252,60.26986506746627,60.31984007996002,60.36981509245377,60.41979010494752,60.46976511744128,60.51974012993503,60.569715142428784,60.61969015492254,60.66966516741629,60.719640179910044,60.7696151924038,60.81959020489755,60.869565217391305,60.91954022988506,60.96951524237881,61.019490254872565,61.06946526736632,61.11944027986007,61.169415292353825,61.21939030484758,61.26936531734133,61.319340329835086,61.36931534232883,61.419290354822586,61.46926536731634,61.51924037981009,61.569215392303846,61.6191904047976,61.66916541729135,61.71914042978511,61.76911544227886,61.81909045477261,61.86906546726637,61.91904047976012,61.969015492253874,62.01899050474763,62.06896551724138,62.118940529735134,62.16891554222889,62.21889055472264,62.268865567216395,62.31884057971015,62.3688155922039,62.41879060469765,62.4687656171914,62.518740629685155,62.56871564217891,62.61869065467266,62.668665667166415,62.71864067966017,62.76861569215392,62.818590704647676,62.86856571714143,62.91854072963518,62.968515742128936,63.01849075462269,63.06846576711644,63.1184407796102,63.16841579210395,63.2183908045977,63.26836581709146,63.31834082958521,63.368315842078964,63.41829085457271,63.468265867066464,63.51824087956022,63.56821589205397,63.618190904547724,63.66816591704148,63.71814092953523,63.768115942028984,63.81809095452274,63.86806596701649,63.918040979510245,63.968015992004,64.01799100449774,64.0679660169915,64.11794102948525,64.16791604197901,64.21789105447276,64.26786606696652,64.31784107946027,64.36781609195403,64.41779110444777,64.46776611694153,64.51774112943528,64.56771614192904,64.61769115442279,64.66766616691655,64.7176411794103,64.76761619190405,64.8175912043978,64.86756621689156,64.91754122938531,64.96751624187905,65.01749125437281,65.06746626686656,65.11744127936032,65.16741629185407,65.21739130434783,65.26736631684157,65.31734132933533,65.36731634182908,65.41729135432284,65.46726636681659,65.51724137931035,65.5672163918041,65.61719140429786,65.6671664167916,65.71714142928536,65.76711644177911,65.81709145427287,65.86706646676662,65.91704147926038,65.96701649175412,66.01699150424787,66.06696651674163,66.11694152923538,66.16691654172914,66.21689155422288,66.26686656671664,66.31684157921039,66.36681659170415,66.4167916041979,66.46676661669166,66.5167416291854,66.56671664167916,66.61669165417291,66.66666666666667,66.71664167916042,66.76661669165418,66.81659170414792,66.86656671664169,66.91654172913543,66.96651674162919,67.01649175412294,67.06646676661668,67.11644177911045,67.16641679160419,67.21639180409795,67.2663668165917,67.31634182908546,67.3663168415792,67.41629185407297,67.46626686656671,67.51624187906047,67.56621689155422,67.61619190404798,67.66616691654173,67.71614192903549,67.76611694152923,67.816091954023,67.86606696651674,67.9160419790105,67.96601699150425,68.01599200399801,68.06596701649175,68.1159420289855,68.16591704147926,68.21589205397301,68.26586706646677,68.31584207896051,68.36581709145428,68.41579210394802,68.46576711644178,68.51574212893553,68.56571714142929,68.61569215392304,68.6656671664168,68.71564217891054,68.7656171914043,68.81559220389805,68.86556721639181,68.91554222888556,68.96551724137932,69.01549225387306,69.06546726636682,69.11544227886057,69.16541729135432,69.21539230384808,69.26536731634182,69.31534232883558,69.36531734132933,69.41529235382309,69.46526736631684,69.5152423788106,69.56521739130434,69.6151924037981,69.66516741629185,69.71514242878561,69.76511744127936,69.81509245377312,69.86506746626686,69.91504247876063,69.96501749125437,70.01499250374813,70.06496751624188,70.11494252873563,70.16491754122939,70.21489255372313,70.26486756621689,70.31484257871064,70.3648175912044,70.41479260369815,70.4647676161919,70.51474262868565,70.56471764117941,70.61469265367316,70.66466766616692,70.71464267866067,70.76461769115443,70.81459270364817,70.86456771614193,70.91454272863568,70.96451774112944,71.01449275362319,71.06446776611695,71.1144427786107,71.16441779110444,71.2143928035982,71.26436781609195,71.31434282858571,71.36431784107945,71.41429285357322,71.46426786606696,71.51424287856072,71.56421789105447,71.61419290354823,71.66416791604198,71.71414292853574,71.76411794102948,71.81409295352324,71.86406796601699,71.91404297851075,71.9640179910045,72.01399300349826,72.063968015992,72.11394302848576,72.16391804097951,72.21389305347326,72.26386806596702,72.31384307846076,72.36381809095452,72.41379310344827,72.46376811594203,72.51374312843578,72.56371814092954,72.61369315342328,72.66366816591704,72.71364317841079,72.76361819090455,72.8135932033983,72.86356821589206,72.9135432283858,72.96351824087957,73.01349325337331,73.06346826586707,73.11344327836082,73.16341829085458,73.21339330334833,73.26336831584207,73.31334332833583,73.36331834082958,73.41329335332334,73.46326836581709,73.51324337831085,73.5632183908046,73.61319340329835,73.6631684157921,73.71314342828586,73.7631184407796,73.81309345327337,73.86306846576711,73.91304347826087,73.96301849075462,74.01299350324838,74.06296851574213,74.11294352823589,74.16291854072963,74.2128935532234,74.26286856571714,74.31284357821089,74.36281859070465,74.4127936031984,74.46276861569216,74.5127436281859,74.56271864067966,74.61269365317341,74.66266866566717,74.71264367816092,74.76261869065468,74.81259370314842,74.86256871564218,74.91254372813593,74.96251874062969,75.01249375312344,75.0624687656172,75.11244377811094,75.1624187906047,75.21239380309845,75.2623688155922,75.31234382808596,75.3623188405797,75.41229385307346,75.46226886556721,75.51224387806097,75.56221889055472,75.61219390304848,75.66216891554222,75.71214392803599,75.76211894052973,75.81209395302349,75.86206896551724,75.912043978011,75.96201899050475,76.0119940029985,76.06196901549225,76.11194402798601,76.16191904047976,76.21189405297352,76.26186906546727,76.31184407796101,76.36181909045477,76.41179410294852,76.46176911544228,76.51174412793603,76.56171914042979,76.61169415292353,76.6616691654173,76.71164417791104,76.7616191904048,76.81159420289855,76.86156921539231,76.91154422788605,76.96151924037981,77.01149425287356,77.06146926536732,77.11144427786107,77.16141929035483,77.21139430284857,77.26136931534234,77.31134432783608,77.36131934032983,77.41129435282359,77.46126936531734,77.5112443778111,77.56121939030484,77.6111944027986,77.66116941529235,77.71114442778611,77.76111944027986,77.81109445277362,77.86106946526736,77.91104447776112,77.96101949025487,78.01099450274863,78.06096951524238,78.11094452773614,78.16091954022988,78.21089455272364,78.26086956521739,78.31084457771115,78.3608195902049,78.41079460269864,78.4607696151924,78.51074462768615,78.56071964017991,78.61069465267366,78.66066966516742,78.71064467766116,78.76061969015493,78.81059470264867,78.86056971514243,78.91054472763618,78.96051974012994,79.01049475262369,79.06046976511745,79.11044477761119,79.16041979010495,79.2103948025987,79.26036981509246,79.3103448275862,79.36031984007997,79.41029485257371,79.46026986506746,79.51024487756122,79.56021989005497,79.61019490254873,79.66016991504247,79.71014492753623,79.76011994002998,79.81009495252374,79.86006996501749,79.91004497751125,79.960019990005,80.00999500249875,80.0599700149925,80.10994502748626,80.15992003998001,80.20989505247377,80.25987006496752,80.30984507746128,80.35982008995502,80.40979510244878,80.45977011494253,80.50974512743628,80.55972013993004,80.60969515242378,80.65967016491754,80.70964517741129,80.75962018990505,80.8095952023988,80.85957021489256,80.9095452273863,80.95952023988006,81.00949525237381,81.05947026486757,81.10944527736132,81.15942028985508,81.20939530234882,81.25937031484258,81.30934532733633,81.35932033983009,81.40929535232384,81.45927036481758,81.50924537731134,81.55922038980509,81.60919540229885,81.6591704147926,81.70914542728636,81.7591204397801,81.80909545227387,81.85907046476761,81.90904547726137,81.95902048975512,82.00899550224888,82.05897051474263,82.10894552723639,82.15892053973013,82.2088955522239,82.25887056471764,82.3088455772114,82.35882058970515,82.40879560219891,82.45877061469265,82.5087456271864,82.55872063968016,82.6086956521739,82.65867066466767,82.70864567716141,82.75862068965517,82.80859570214892,82.85857071464268,82.90854572713643,82.95852073963019,83.00849575212393,83.0584707646177,83.10844577711144,83.1584207896052,83.20839580209895,83.25837081459271,83.30834582708646,83.35832083958022,83.40829585207396,83.45827086456772,83.50824587706147,83.55822088955522,83.60819590204898,83.65817091454272,83.70814592703648,83.75812093953023,83.80809595202399,83.85807096451774,83.9080459770115,83.95802098950524,84.007996001999,84.05797101449275,84.10794602698651,84.15792103948026,84.20789605197402,84.25787106446776,84.30784607696152,84.35782108945527,84.40779610194903,84.45777111444278,84.50774612693654,84.55772113943029,84.60769615192403,84.65767116441779,84.70764617691154,84.7576211894053,84.80759620189905,84.8575712143928,84.90754622688655,84.95752123938031,85.00749625187406,85.05747126436782,85.10744627686157,85.15742128935533,85.20739630184907,85.25737131434283,85.30734632683658,85.35732133933034,85.40729635182409,85.45727136431785,85.5072463768116,85.55722138930535,85.6071964017991,85.65717141429285,85.70714642678661,85.75712143928035,85.80709645177411,85.85707146426786,85.90704647676162,85.95702148925537,86.00699650174913,86.05697151424287,86.10694652673664,86.15692153923038,86.20689655172414,86.25687156421789,86.30684657671165,86.3568215892054,86.40679660169916,86.4567716141929,86.50674662668666,86.55672163918041,86.60669665167416,86.65667166416792,86.70664667666166,86.75662168915542,86.80659670164917,86.85657171414293,86.90654672663668,86.95652173913044,87.00649675162418,87.05647176411794,87.10644677661169,87.15642178910545,87.2063968015992,87.25637181409296,87.3063468265867,87.35632183908046,87.40629685157421,87.45627186406797,87.50624687656172,87.55622188905548,87.60619690154923,87.65617191404297,87.70614692653673,87.75612193903048,87.80609695152424,87.85607196401799,87.90604697651175,87.95602198900549,88.00599700149925,88.055972013993,88.10594702648676,88.1559220389805,88.20589705147427,88.25587206396801,88.30584707646177,88.35582208895552,88.40579710144928,88.45577211394303,88.50574712643679,88.55572213893053,88.6056971514243,88.65567216391804,88.70564717641179,88.75562218890555,88.8055972013993,88.85557221389305,88.9055472263868,88.95552223888056,89.00549725137431,89.05547226386807,89.10544727636182,89.15542228885558,89.20539730134932,89.25537231384308,89.30534732633683,89.35532233883059,89.40529735132434,89.4552723638181,89.50524737631184,89.5552223888056,89.60519740129935,89.65517241379311,89.70514742628686,89.7551224387806,89.80509745127436,89.85507246376811,89.90504747626187,89.95502248875562,90.00499750124938,90.05497251374312,90.10494752623688,90.15492253873063,90.20489755122439,90.25487256371814,90.3048475762119,90.35482258870564,90.4047976011994,90.45477261369315,90.50474762618691,90.55472263868066,90.60469765117442,90.65467266366817,90.70464767616193,90.75462268865567,90.80459770114942,90.85457271364318,90.90454772613693,90.95452273863069,91.00449775112443,91.0544727636182,91.10444777611194,91.1544227886057,91.20439780109945,91.2543728135932,91.30434782608695,91.35432283858071,91.40429785107446,91.45427286356822,91.50424787606197,91.55422288855573,91.60419790104947,91.65417291354323,91.70414792603698,91.75412293853073,91.80409795102449,91.85407296351823,91.904047976012,91.95402298850574,92.0039980009995,92.05397301349325,92.10394802598701,92.15392303848076,92.20389805097452,92.25387306346826,92.30384807596202,92.35382308845577,92.40379810094953,92.45377311344328,92.50374812593704,92.55372313843078,92.60369815092454,92.65367316341829,92.70364817591205,92.7536231884058,92.80359820089954,92.8535732133933,92.90354822588705,92.95352323838081,93.00349825087456,93.05347326336832,93.10344827586206,93.15342328835582,93.20339830084957,93.25337331334333,93.30334832583708,93.35332333833084,93.40329835082458,93.45327336331835,93.50324837581209,93.55322338830585,93.6031984007996,93.65317341329336,93.7031484257871,93.75312343828087,93.80309845077461,93.85307346326836,93.90304847576212,93.95302348825587,94.00299850074963,94.05297351324337,94.10294852573713,94.15292353823088,94.20289855072464,94.25287356321839,94.30284857571215,94.3528235882059,94.40279860069965,94.4527736131934,94.50274862568716,94.55272363818091,94.60269865067467,94.65267366316841,94.70264867566218,94.75262368815592,94.80259870064968,94.85257371314343,94.90254872563717,94.95252373813094,95.00249875062468,95.05247376311844,95.10244877561219,95.15242378810595,95.2023988005997,95.25237381309346,95.3023488255872,95.35232383808096,95.40229885057471,95.45227386306847,95.50224887556222,95.55222388805598,95.60219890054972,95.65217391304348,95.70214892553723,95.75212393803099,95.80209895052474,95.8520739630185,95.90204897551224,95.95202398800599,96.00199900049975,96.0519740129935,96.10194902548726,96.151924037981,96.20189905047476,96.25187406296851,96.30184907546227,96.35182408795602,96.40179910044978,96.45177411294353,96.50174912543729,96.55172413793103,96.60169915042479,96.65167416291854,96.7016491754123,96.75162418790605,96.8015992003998,96.85157421289355,96.90154922538731,96.95152423788106,97.0014992503748,97.05147426286857,97.10144927536231,97.15142428785607,97.20139930034982,97.25137431284358,97.30134932533733,97.35132433783109,97.40129935032483,97.4512743628186,97.50124937531234,97.5512243878061,97.60119940029985,97.65117441279361,97.70114942528735,97.75112443778112,97.80109945027486,97.85107446276862,97.90104947526237,97.95102448775611,98.00099950024988,98.05097451274362,98.10094952523738,98.15092453773113,98.20089955022489,98.25087456271864,98.3008495752124,98.35082458770614,98.4007996001999,98.45077461269365,98.50074962518741,98.55072463768116,98.60069965017492,98.65067466266866,98.70064967516242,98.75062468765617,98.80059970014993,98.85057471264368,98.90054972513744,98.95052473763118,99.00049975012493,99.05047476261869,99.10044977511244,99.1504247876062,99.20039980009994,99.2503748125937,99.30034982508745,99.35032483758121,99.40029985007496,99.45027486256872,99.50024987506247,99.55022488755623,99.60019990004997,99.65017491254373,99.70014992503748,99.75012493753124,99.80009995002499,99.85007496251875,99.9000499750125,99.95002498750625,100.0]} +{"expected":[-0.01,-0.00988692665446217,-0.009530417260232635,-0.008939001927057518,-0.00812700023963896,-0.007114174661777941,-0.005925249651897664,-0.004589308189120179,-0.003139080437401436,-0.001610141944230643,-0.000040041013955833456,0.0015326233416345881,0.0030691502352163075,0.004531689196248325,0.005884172493081779,0.007093204522074692,0.008128886334342557,0.008965554944794535,0.009582419144642727,0.009964076066946442,0.01010089567328384,0.009989263566841785,0.009631676013797021,0.009036684685486062,0.008218692329369866,0.007197604246304405,0.005998344004833064,0.004650245172536397,0.0031863339073372196,0.001642519952343532,0.000056715849575066915,-0.00153209402566305,-0.0030848117512741317,-0.0045631879117862895,-0.005930763748120867,-0.007153770198919874,-0.008201961665838864,-0.009049363918998405,-0.00967491765064457,-0.010063001734130994,-0.010203823189262884,-0.010093664121865643,-0.009734979415048518,-0.009136342615950489,-0.008312241194704922,-0.00728272606016411,-0.0060729238083116685,-0.004712423565792373,-0.0032345533890227388,-0.001675563912446815,-0.0000737392399667339,0.001531543115552564,0.00310078016369045,0.004595315448258029,0.0059782912241642,0.007215557347592569,0.008276514468868288,0.009134870711019328,0.009769293124595185,0.010163937779373152,0.010308845323473495,0.010200192137384127,0.009840390753724568,0.009238036916283918,0.008407704423026918,0.0073695926446301525,0.006149035240488571,0.004775882018532973,0.003283769019197351,0.0017092946699876987,0.00009112218696606803,-0.001530969764797153,-0.0031170648437149825,-0.004628091205258873,-0.006026783911534547,-0.007278603873109481,-0.008352590664382306,-0.009222128157529003,-0.00986560404352474,-0.010266946900304674,-0.010416027464426008,-0.010308914090387096,-0.009947975959452496,-0.009341831339686926,-0.008505142009038258,-0.007458258740058715,-0.006226726414999595,-0.004840660803149927,-0.00333401220293789,-0.0017437339512144095,-0.0001088761619285668,0.001530373082350148,0.0031336755463287234,0.004661535387110025,0.0060762720085808086,0.007342949264059696,0.008430238095294144,0.009311191309838516,0.00996391133861546,0.010372094428864201,0.010525437750984275,0.010419899256959096,0.010057803740838872,0.009447792329506606,0.008604616481879815,0.007548781402151541,0.006306047483438199,0.0049068019008445575,0.0033853156810923096,0.0017789044101855964,0.00012701313104154568,-0.00152975212978499,-0.0031506224300722734,-0.004695669045019289,-0.006126786985255266,-0.007408634676172836,-0.008509506628087186,-0.009402117551157869,-0.010064278525306006,-0.01047944847111701,-0.010637147218504657,-0.010533219861166827,-0.010169945733445008,-0.009555989162640333,-0.008706193040386213,-0.00764122012567864,-0.006387050744406665,-0.004974349093233294,-0.0034377136020542084,-0.0018148296788304194,-0.00014554558228247226,0.0015291059182347367,0.0031679160781232906,0.004730514121913109,0.006178361650754986,0.0074757030212299624,0.008590448260943039,0.009494966721381806,0.01016677184176389,0.010589080056074333,0.01075122995439325,0.010648951233553383,0.010284476657319522,0.009666494102209426,0.008809939697100646,0.007735636976214574,0.006469790759651679,0.0050433480599028115,0.003491241598222934,0.0018515344202770054,0.00016448655416644695,-0.0015284334051064155,-0.0031855675207004695,-0.004766093500153822,-0.0062310302255206415,-0.007544199061731474,-0.008673117238872902,-0.009589801249979152,-0.010271460396355445,-0.01070106329419811,-0.010867763263796957,-0.01076717197996795,-0.010401474484817446,-0.0097793825602118,-0.00891592743171094,-0.007832096730511445,-0.006554324477814246,-0.00511384648238484,-0.0035459368674946967,-0.0018890443857169051,-0.00018384966640662659,0.0015277334905348747,0.003203588258907899,0.004802431052346535,0.006284828417937068,0.007614169511750057,0.008757570176396957,0.009686686297598708,0.01037841632480821,0.010815475546331858,0.01098682784620731,0.01088796416152825,0.01052102061949433,0.009894733270925042,0.009024230354636906,0.007930667026167472,0.006640711366395806,0.00518589415503449,0.0036018382601906906,0.0019273864750659596,0.00020364915265412223,-0.0015270050135687122,-0.0032219902901132642,-0.0048395516954862485,-0.00633979350608419,-0.007685663144457024,-0.008843866188345628,-0.009785689907073791,-0.010487714957811752,-0.010932397603869465,-0.011108507983824576,-0.011011413486579361,-0.010643200086942263,-0.010012628475892515,-0.009134925881564053,-0.00803141852132107,-0.006729013552570935,-0.005259543103367455,-0.0036589863718344637,-0.001966588801736915,-0.00022389989546712193,0.0015262467480482893,0.003240786134992019,0.004877481448689318,0.006395964424944249,0.0077587309068310635,0.008932067029426978,0.009886883164553559,0.010599434999880308,0.01105191388104099,0.011232891742606404,0.011137609515594709,0.010768101738503401,0.010133154121412417,0.009248094919780498,0.00813442506516627,0.006819295973559219,0.0053348477104333165,0.0037174236422587853,0.002006680761836088,0.0002446174637050831,-0.0015254573981639328,-0.0032599888663503917,-0.004916247494804226,-0.00645338185948109,-0.007833426042127466,-0.009022237243243287,-0.009990340371570247,-0.010713658720364531,-0.011174112620279932,-0.0113600711870085,-0.011266645880046446,-0.010895818468891231,-0.010256400069519504,-0.009363822067268227,-0.00823976388014558,-0.006911626537311458,-0.005411864851883404,-0.0037771944615355283,-0.0020476931081573504,-0.00026581815252941317,0.0015246355936486423,0.0032796121398813776,0.004955878246193867,0.006512088344072049,0.007909804220715057,0.009114444321521939,0.010096139228910174,0.01083047215759177,0.011299086111719097,0.011490142609518077,0.011398620516371472,0.011026447448835167,0.010382460323554851,0.00948219582556923,0.008347515756775607,0.00700607629434954,0.00549065404042726,0.003838345283298632,0.0020896580293490383,0.00028751902624220564,-0.0015237798845877746,-0.003299670226990114,-0.004996403415038089,-0.0065721283687898355,-0.007987923679968019,-0.009208758874376458,-0.010204361033252212,-0.010949965337194096,-0.011426930927965387,-0.01162320677618236,-0.011533635916259543,-0.01116009037397745,-0.010511433269506563,-0.009603308827561241,-0.008457765262127215,-0.007102719621677949,-0.005571277580452986,-0.0039009247460562724,-0.002132609234697734,-0.0003097379641832494,0.0015228887357929956,0.00332017804986942,0.0050378540885072905,0.006633548493105717,0.00806784537393949,0.009305254812510079,0.01031509088761188,0.011072232505793696,0.011557748175405612,0.011759369189448235,0.011671799394609888,0.011296853731357609,0.010643421934430644,0.009727258081365882,0.00857060096310209,0.007201634419757122,0.00565380073366025,0.003964983803162525,0.0021765820449820453,0.00033249370996061596,-0.0015219605207158697,-0.003341151218990552,-0.00508026280922129,-0.006696397467611093,-0.008149633133637214,-0.009404009542339973,-0.010428417926743648,-0.011197372381315067,-0.01169164376342075,-0.011898740369753472,-0.01181322337662648,-0.011436849084956653,-0.010778534263371465,-0.009854145231748162,-0.008686115665733228,-0.007302902323647602,-0.005738291896619945,-0.004030575862183344,-0.002221613489926448,-0.0003558059242827915,0.0015209935148396514,0.003362606073222352,0.005123663661415923,0.006760726364439712,0.008233353838774774,0.009505104175134735,0.010544435558748188,0.011325488421326635,0.011828728693012117,0.01204143615744952,0.01195802570566827,0.011580193381905555,0.010916883416353232,0.00998407684047834,0.008804406671879646,0.007406608929514508,0.005824822791289849,0.004097756934445488,0.0022677424128073795,0.0003796952417209309,-0.0015199858885156523,-0.0033845597227788226,-0.0051680923633116785,-0.006826588717109863,-0.008319077601981749,-0.009608623751342376,-0.010663241724268918,-0.011456689110939219,-0.011969119366495626,-0.012187578036788896,-0.012106329973623976,-0.011727009281129073,-0.01105858808715264,-0.010117164687290837,-0.008925576054795938,-0.007512844037826396,-0.005913468669586753,-0.004166585795663758,-0.002315009582837331,-0.0004041833317320204,0.00151893569917239,0.0034070300952478713,0.005213586366194846,0.00689404067060509,0.008406877966526699,0.009714657481423113,0.010784939174781327,0.011591088271950845,0.012112937920077005,0.012337293483882128,0.012258265875760156,0.011877425506361262,0.01120377284574724,0.01025352609321708,0.009049730955228595,0.0076217019146873,0.006004308533256249,0.00423712415859844,0.0023634578160154794,0.00042929296432670666,-0.0015178408828486465,-0.0034300359849442144,-0.005260184960803945,-0.006963141142563334,-0.008496832118737259,-0.009823299004609742,-0.010909635771645183,-0.011728805395083586,-0.0122603125813083,-0.012490716340718397,-0.012413969592181787,-0.012031577225672833,-0.011352568506508866,-0.010393284268267678,-0.009176983899832552,-0.007733281572913899,-0.006097425370375175,-0.0043094368588250075,-0.0024131321051841085,-0.00045504808080494644,0.0015166992449763606,0.0034535971058876984,0.005307929391640506,0.00703395199656127,0.008589021116394065,0.009934646667183755,0.011037444807740571,0.011869965997356654,0.012411378053621193,0.01264798721755697,0.012573584198265635,0.012189606459857474,0.011505112524436771,0.010536568685619762,0.0093074531439088,0.007847687074605545,0.006192906409989943,0.004383592054774834,0.0024640797601373898,0.00048147387000675127,-0.0015155084503307484,-0.0034777341487035773,-0.005356862979918629,-0.007106538228550186,-0.008683530134531634,-0.01004880382199437,-0.011168485353712086,-0.012014702006836162,-0.012566275930364277,-0.012809253926231617,-0.012737260106664346,-0.012351662522275424,-0.011661549421945758,-0.010683515484707942,-0.009441263040645211,-0.007965027857164334,-0.006290843396517416,-0.004459661443360502,-0.002516350558681798,-0.0005085968506047051,0.0015142660120755424,0.003502468841801931,0.0054070312559075595,0.007180968167638807,0.008780448730199682,0.010165879151148737,0.011302882631036643,0.012163152177246664,0.012725155141015774,0.01297467194717528,0.012905155543753462,0.012517902493012715,0.011822031249002064,0.010834267905846674,0.009578544439296014,0.008085419084898076,0.006391332885738158,0.004537720492602471,0.002569996909679064,0.0005364449599844065,-0.0015129692797900048,-0.0035278240172099684,-0.005458482101529113,-0.007257313692511953,-0.008879871127927713,-0.010285987013979746,-0.01144076841438057,-0.012315462535176964,-0.012888172432530941,-0.013144404933265979,-0.013077437063691641,-0.012688491730525973,-0.011986718079678929,-0.01098897675931067,-0.009719435114967555,-0.008208982028594632,-0.006494476564373363,-0.004617848692860326,-0.002625074029175856,-0.0005650476503559502,0.0015116154263880575,0.0035538236814692103,0.005511265904143077,0.007335650464937203,0.008981896527792336,0.010409247822644397,0.011582281465954499,0.012471786862916317,0.013055492889090718,0.013318625253926769,0.013254280103606731,0.012863604424271008,0.012155778548548051,0.011147800932092089,0.00986408023299002,0.008335844475682933,0.0066003815954845954,0.00470012982840901,0.0026816401308817728,0.0005944359927717659,-0.0015102014337905801,-0.003580493092072516,-0.00556543572255255,-0.007416058181949052,-0.009086629438214764,-0.010535788447934154,-0.011727568004884567,-0.01263228722027037,-0.013227290493877985,-0.013497514583281578,-0.013435869583795883,-0.013043424192202443,-0.012329390430677602,-0.011310907935924272,-0.010012632851152684,-0.008466141173911168,-0.0067091609921461235,-0.004784652271327459,-0.0027397566323579653,-0.0006246427898401269,0.0015087240772337124,0.003607858839933144,0.005621047466391402,0.00749862084847184,0.009194180035830985,0.010665742658183706,0.01187678221492805,0.012797134509085466,0.013403748736896341,0.013681264536586484,0.013622400557258236,0.013228144727447802,0.012507741269437883,0.011478474500535086,0.010165254463467898,0.008600014311765478,0.006820934022144984,0.004871509299848556,0.002799488378469224,0.0006557026979732587,-0.0015071799080418947,-0.0036359489384678225,-0.005678160090151053,-0.007583427072353721,-0.009304664555034639,-0.010799251594458353,-0.01203008679424868,-0.012966509084608432,-0.01358506127329902,-0.013870077359622441,-0.01381407891335426,-0.013417970498948804,-0.012691029056767581,-0.01165068721655711,-0.01032211558951199,-0.008737614039244647,-0.006935826646738437,-0.0049607994435985295,-0.00286090388378893,-0.0006876523601449177,0.001505565234712698,0.00366479291990011,0.005736835803278369,0.007670570383973723,0.00941820571009868,0.010936464285577633,0.012187653551363304,0.013140601418286135,0.013771432637189442,0.014064166676264553,0.014011122140930357,0.013613117511392785,0.01287946297109578,0.011827743233000787,0.010483396413877239,0.008879099032985255,0.0070539719968784826,0.005052626858393404,0.002924075595879741,0.0007205305502049192,-0.0015038761021002299,-0.0036944219394958186,-0.005797140297899653,-0.007760149582860876,-0.009534933153084136,-0.01107753820692213,-0.012349664051856333,-0.013319612817118734,-0.013963079016428607,-0.014263758300036197,-0.014213760156853028,-0.01381381413037713,-0.013073264178693695,-0.012009851014782252,-0.010649287480762942,-0.00902463711022394,-0.007175510890671145,-0.005147101733607314,-0.0029890801815565184,-0.0007543783299625474,0.0015021082684972948,0.0037248688884814903,0.005859142995939682,0.007852269114008591,0.009654983971142277,0.011222639887424142,0.012516310320976625,0.013503756205283617,0.014160229094615801,0.014469091116130787,0.01442223620659061,0.014020301979428757,0.01327266670491837,0.012197231166414461,0.010819990449348012,0.009174405896575442,0.007300592396315815,0.0052443407354430495,0.00305599883852761,0.0007892392203539142,-0.0015002571803482342,-0.0037561685165216764,-0.005922917317570183,-0.007947039476913437,-0.009778503227204973,-0.011371945569670666,-0.012687795607829424,-0.01369325697440835,-0.014363124967141193,-0.014680418041143398,-0.014636807844256994,-0.014232836916291836,-0.013477918382556037,-0.01239011732871508,-0.01099571891622731,-0.009328593553228418,-0.007429374445238039,-0.005344467489871771,-0.0031249176350564944,-0.0008251593882101772,0.001498317944330809,0.0037883575646898123,0.005988540973186719,0.008044577670688067,0.009905644548561236,0.011525641928607123,0.012864335217565165,0.013888353909628899,0.014572023139021235,0.014898007068620149,0.014857748000421564,0.014451690096772446,0.01368928188535334,0.012588757156183593,0.011176699311977477,0.009487399569802346,0.007562024500735143,0.0054476131094249956,0.0031959278806493285,0.0008621878502874215,-0.0014962852964667261,-0.0038214749100170414,-0.006056096281334168,-0.00814500767903409,-0.010036570768324824,-0.01168392685501652,-0.013046157418718991,-0.014089300199438874,-0.014787195613167586,-0.015122142409512167,-0.015085346146991647,-0.014677149135446097,-0.013907035855790523,-0.012793413383655425,-0.0113631718797509,-0.00965103562990568,-0.007698720288068272,-0.0055539167685768045,-0.0032691265311028126,-0.0009003766964703528,0.0014941535679170478,0.003855561722788522,0.006125670515331982,0.008248460999282507,0.010171454625439188,0.011847010310674214,0.013233504433751023,0.014296364538302181,0.015008931078796509,0.015353125737739847,0.015319909569623626,0.014909519373670103,0.01413147613728624,0.0130043649918816,0.011555391744804534,0.009819726557275166,0.007839650592711016,0.005663526333004577,0.0033446166317085586,0.0009397813342606426,-0.0014919166470259346,-0.00389066163793881,-0.006197356281645716,-0.008355077220264368,-0.010310479529530386,-0.012015115262961428,-0.013426633521814398,-0.014509832332133389,-0.015237536210895197,-0.01559127755234534,-0.015561764759421884,-0.01514912526666108,-0.014362917122283454,-0.013221908482918276,-0.01175363008496115,-0.009993711351404286,-0.007985016134274239,-0.005776599048728849,-0.0034225078028503587,-0.0009804607569779006,0.001489567937158992,0.0039268209420180444,0.006271251933469948,0.008465004654331396,0.010453840397743728,0.012188478707671256,0.013625818163939131,0.014730007018010421,0.01547333709304844,0.0158369386691664,0.01581125893718057,0.015396311902883136,0.014601693229142412,0.013446359277576559,0.011958175413308776,0.010173244322677057,0.008135030524631656,0.005893302297866349,0.0035029167728239732,0.0010224778383769964,-0.0014871003097710904,-0.003964088777422741,-0.006347462023384735,-0.00857840102955967,-0.010601744571577303,-0.012367352789886227,-0.013831349362103413,-0.014957211510959738,-0.0157166807775033,-0.01609047185663239,-0.016068761725133097,-0.01565144667071293,-0.014848160522422897,-0.01367805324879071,-0.012169334985884152,-0.010358596338355043,-0.008289921319845869,-0.0060138144286458195,-0.0035859679633027165,-0.001065899656782016,0.0014845060520989296,0.0040025173657611225,0.0064260977994751774,0.008695434248910875,0.010754412822790367,0.012552006034062167,0.014043537065175988,0.015191789792313391,0.015967936998171076,0.016352263632192436,0.016334666983135498,0.015914921089308,0.01510269849307102,0.013917348406577077,0.01238743634879343,0.010550056192249302,0.008449931176799973,0.006138325668332858,0.0036717941336340152,0.0011107978522340363,-0.0014817768087461913,-0.004042162252482353,-0.006507277749850236,-0.008816283224044635,-0.010912080458641957,-0.01274272469594658,-0.014262711736419728,-0.015434108656074051,-0.016227500054346724,-0.016622726238085854,-0.01660939482846842,-0.016187152822868107,-0.015365712017225888,-0.014164626752362209,-0.012612829041148344,-0.010747932112644135,-0.00861531912689057,-0.006267039128891068,-0.003760537090971077,-0.0011572490206432794,0.0014789035163416356,0.004083082575162079,0.006591128201166568,0.008941138792478176,0.011074998538095987,0.012939814250640157,0.014489226079229364,0.01568455963193187,0.01649579088533091,0.016902299817695803,0.016893393861042556,0.01646858790008491,0.015637633514912264,0.014420296322880392,0.012845886472440166,0.010952553425031049,0.00878636198084347,0.006400171916557612,0.003852348474225018,0.001205335149493303,-0.0014758763303122046,-0.004125341358151963,-0.006677783977501164,-0.00907020472798412,-0.01124343521221113,-0.013143601033070898,-0.014723456940057058,-0.015943561106138794,-0.01677325935891348,-0.017191454816652803,-0.017187143618797848,-0.016759703163586936,-0.015918925332827495,-0.014684793446642131,-0.013087007995559244,-0.011164272388517736,-0.008963355880674225,-0.0065379563580783735,-0.003947390620945601,-0.0012551441002949801,0.0014726845426650819,0.004169005836659759,0.006767389126796341,0.009203698855466397,0.011417677203762454,0.013354434049408948,0.014965807410119642,0.016211560664404667,0.017060386799887944,0.01749069463624016,0.017491157291565685,0.01706100897767458,0.016210082378840997,0.014958585239220964,0.01333662119966703,0.0113834662274503,0.009146618017093154,0.006680641358166121,0.0040458375275462,0.0013067701437440014,-0.0014693164894945697,-0.004214147813740005,-0.006860097723097219,-0.009341854283142888,-0.01159803144326871,-0.013572686980568186,-0.015216709150542095,-0.01648903768441214,-0.017357688788491536,-0.01780055857058245,-0.01780598472570211,-0.017373052226689063,-0.016511635039784277,-0.015242172367376374,-0.013595184450611883,-0.011610539382894846,-0.009336488533302297,-0.006828493904860343,-0.004147875914810678,-0.0013603145544175315,0.0014657594467195533,0.004260844054152656,0.006956074753967206,0.009484920766687369,0.011784826881051801,0.013798760401989628,0.015476624969149652,0.016776506209538723,0.01766571826299745,0.018121625063668836,0.018132215756499145,0.01769641964107276,0.016824152418719495,0.015536092116421414,0.013863189710639153,0.011845926012245675,0.009533332639218631,0.0069818007419346585,0.004253706412396606,0.0014158862728771305,-0.0014619995123083566,-0.00430917671959886,-0.00705549710381825,-0.009633166222115746,-0.011978416497832857,-0.014033084247438328,-0.015746051681265503,-0.01707451814002669,-0.01798506896573736,-0.01845451532759405,-0.018470483910864078,-0.018031741493678068,-0.017148245933255975,-0.01584092180037047,-0.01414116567388682,-0.012090092769458544,-0.009737542963765855,-0.0071408702303832885,-0.004363544878129201,-0.001473602644254898,0.0014580214729518557,0.004359233850482814,0.007158554645466938,0.0097868784066856,0.012179179539710703,0.01427612054869527,0.016025523291719142,0.017383666783279565,0.01831637927773816,0.01879989736963453,0.01882147052916997,0.018379695715318146,0.01748457332278261,0.016157282560405096,0.014429681259710532,0.012343541903364506,0.009949542177106122,0.007306034424402164,0.004477623870321846,0.0015335902438228164,-0.0014538086527928896,-0.004411109900092095,-0.007265451454066335,-0.009946366789984437,-0.012387524007289036,-0.01452836648787009,-0.016315614540938817,-0.017704590811336143,-0.018660336494081123,-0.019158490483088687,-0.019185909362704312,-0.018741012486104755,-0.017833843119877,-0.01648584360424345,-0.01472934951240313,-0.012606814717344234,-0.010169785919654237,-0.007477651391260596,-0.004596194294233417,-0.0015959858017241364,0.0014493427413980271,0.004464906327954762,0.0073764071597169295,0.010111964640790455,0.012603889433317896,0.014790357804757985,0.01661694486467684,0.018037978681067334,0.019017681600231897,0.01953107026540971,0.019564591711993963,0.01911647936800561,0.018196819649855207,0.016827326947297685,0.015040831963555533,0.012880495440505985,0.010398766080577401,0.00765610780915488,0.004719527247166793,0.0016609372410323162,-0.0014446035976513863,-0.004520732260142814,-0.007491658457589216,-0.01028403135929919,-0.012828749988629842,-0.015062672608372978,-0.016930182824770386,-0.01838457358146651,-0.019389214619192453,-0.019918474237303377,-0.019958372181729127,-0.0195069470545439,-0.018574328632701375,-0.01718251272630553,-0.015364843522382056,-0.01316521556862294,-0.010637014475414253,-0.007841821882691563,-0.004847916090733413,-0.0017286048456615758,0.0014395690256405519,0.004578705225475791,0.0076114607973693975,0.0104629550890398,0.013062617962545108,0.015345935649716385,0.017256051077630397,0.018745178982852072,0.019775800610678917,0.020321608148466477,0.02036817514037183,0.01991333582598348,0.018967263473787403,0.01755224516773573,0.015702157970090905,0.013461658742705098,0.010885106980669185,0.008035246622244304,0.004981678783586611,0.0017991625774623876,-0.0014342145178680122,-0.004638951977968503,-0.00773609027735929,-0.010649155648402716,-0.013306047671493584,-0.01564082312223433,-0.0175953319581651,-0.019120664875185333,-0.020178376417009432,-0.020741453069891686,-0.020795001987215626,-0.02033664281309794,-0.019376592344255338,-0.017937439307072388,-0.01605361414717347,-0.01377056624452489,-0.01114366819302468,-0.008236873541285012,-0.0051211605136237655,-0.00187279956519293,0.0014285129602282405,0.004701609417503863,0.00786584577273261,0.010843087828347095,0.01355963985860181,0.015948068067589742,0.017948873769948425,0.019511974797451554,0.02059795826643023,0.02117907338963555,0.02123993934715474,0.020777950190207572,0.01980336616917874,0.018339088571549058,0.01642012293775027,0.014092743202077183,0.011413376692503821,0.008447236835180876,0.005266736675474448,0.0019497217920851394,-0.001422434292103143,-0.004766825622644666,-0.008001051332409439,-0.011045245110773818,-0.01382404665772478,-0.016268466477704344,-0.018317597888086602,-0.019920133777660724,-0.021035650363780307,-0.021635625849232957,-0.021704168334336447,-0.021238434439203365,-0.020248727662251685,-0.018758273358612965,-0.016802675173390316,-0.014429065614320767,-0.011694971002926942,-0.008666918116213984,-0.005418816247279273,-0.0020301540135732573,0.00141594511359963,0.004834761011787389,0.008142058884927753,0.011256163871514341,0.014099977208244078,0.016602884199987043,0.01870250679997739,0.020346257324130104,0.02149265462138347,0.022112369782274294,0.022188975050966963,0.021719376851525408,0.02071392157053247,0.019196170766077877,0.017202350600789295,0.014780488324228756,0.011989256359865178,0.008896551793144617,0.005577845630634443,0.0021143419426140086,-0.00140900823032221,-0.004905589651580713,-0.008289251300775069,-0.011476428143240118,-0.014388204022376175,-0.016952264771848306,-0.019104693231692664,-0.02079156163410272,-0.021970281710725268,-0.022610678745961104,-0.0226957625177727,-0.02222217546549378,-0.021200306322634314,-0.019654065658479634,-0.017620328084198004,-0.01514805409293201,-0.012297112416656496,-0.009136831200036187,-0.005744313029523571,-0.0022025547471407753,0.0014015821240635268,0.00497950073477281,0.008443045867156036,0.011706675027270718,0.014689570225327374,0.017317638333743286,0.0195253505349204,0.021257375216423152,0.02246996364890464,0.023132053771873592,0.02322606426917705,0.022748358673196818,0.02170936730991113,0.02013336328872522,0.018057897245600772,0.015532903956532736,0.012619502043745446,0.009388515598962269,0.005918753458577819,0.0022950879128633586,-0.001393620335307468,-0.005056700253527264,-0.008603898241440104,-0.01194760085978936,-0.015004997811135755,-0.01770013179802034,-0.01996578454237594,-0.021745152162181716,-0.022993268174411528,-0.02367813850517202,-0.02378155989064526,-0.023299600775860938,-0.022242732074113963,-0.020635603736159934,-0.018516471784701678,-0.015936289082210144,-0.01295748140668488,-0.009652438205476687,-0.006101754488728146,-0.0023922665352372995,0.0013850707403445341,0.005137412898897979,0.00877230696196879,0.01219996825804101,0.015335497084391398,0.018100980484951536,0.0204274271397272,0.022256487342528438,0.0235419152162024,0.024250736553856247,0.024364092829787156,0.02387773982118252,0.022802187728621838,0.021162478473522154,0.018997604768499352,0.016359584383080977,0.01331221154493205,0.009929515415432962,0.006293962860044494,0.002494449117478005,-0.0013758747019309342,-0.005221884222752981,-0.008948818610024157,-0.012464614196551519,-0.015682177491412368,-0.018521541478982,-0.020911851851144154,-0.02279313386825834,-0.024117795820529107,-0.024851831433870486,-0.024975690879125184,-0.02448479812296558,-0.02338970100610141,-0.021715849438222776,-0.019503006238796274,-0.016804304203895056,-0.013684971718791142,-0.010220757448281943,-0.0064960921183283725,-0.0026020319676233737,0.0013659660675632635,0.0053103831052041615,0.009134033735229384,0.012742459293362908,0.01604626008539258,0.018963309009365437,0.021420791795844343,0.023357023213850973,0.024722993974344194,0.025483609574772016,0.025618589810057612,0.025123005945741614,0.02400744140645317,0.02229777106101563,0.02003456355823526,0.017272120454566015,0.014077174847699055,0.010527280667149724,0.00670893146517092,0.0027154543076810126,-0.001355269983302946,-0.005403204578808768,-0.0093286136793114,-0.01303451852313505,-0.016429091920474804,-0.01942793222240646,-0.02195616044737445,-0.023950288492718744,-0.0253598118559921,-0.026148486948258647,-0.0262952607385001,-0.025794828938931827,-0.02465780801919247,-0.02291051580128179,-0.02059436500497909,-0.01776488364908231,-0.014490385432373245,-0.010850321892127642,-0.006933356052438982,-0.0028352042329100402,0.001343701483289065,0.0055006730708051866,0.009533288461087112,0.01334191361952857,0.016832162732151684,0.019917235790678996,0.02252007571961153,0.02457529147476555,0.026030799158008922,0.026849140003096225,0.027008441928198852,0.026503000031845518,0.02534346071923232,0.02355660385789394,0.021184727237718838,0.0182846474077417,0.014926340439833742,0.011191255093330483,0.007170339003769659,0.0029618256906964097,-0.0013311638051185619,-0.005603146136868212,-0.0097488659201358,-0.013665887485905364,-0.01725712433912373,-0.02043324390195747,-0.023114888018489495,-0.025234654067561823,-0.026738787269332275,-0.027588541741460533,-0.027761175894596028,-0.02725055665931306,-0.026067356591233187,-0.024238837874562352,-0.02180822739247584,-0.01883369710656195,-0.015386973738882462,-0.011551610938363124,-0.007420965510615344,-0.003095926688151766,0.001317546368469427,0.005711018774875616,0.009976242359706584,0.014007821004124073,0.01770581329901362,0.02097820829258311,0.023743213042684282,0.025931295145825223,0.027486929283124854,0.028370003962019105,0.028556852869357708,0.02804088438713199,0.026832792634280456,0.024960343647394165,0.022467740748822865,0.01941458351650481,0.0158744448106398,0.01193309978019285,0.007686449432636469,0.003238188987982796,-0.0013027223377760275,-0.005824728425680911,-0.010216414983354617,-0.014369252720089926,-0.018180277472766522,-0.021554641143706487,-0.024407970298402207,-0.026668473820125462,-0.02827874702238794,-0.02919722693561687,-0.02939926193511275,-0.02887776825881658,-0.027643456047594384,-0.025724618081665002,-0.023166485126521485,-0.020030162476652846,-0.016391172632809436,-0.012337638813005081,-0.007968152937031342,-0.0033893796166696746,0.0012865456681828138,0.0059447607908016,0.010470496487726263,0.014751901997059997,0.018682807307600694,0.022165353853743627,0.02511242852427696,0.027449840497666037,0.029118186562759708,0.030074358085368777,0.030292651457416858,0.02976545350647459,0.02850348371523104,0.02653558594993448,0.023908073458644534,0.02068364190285547,0.01693987585888799,0.012767384304911854,0.008267609845855855,0.0035503645920629645,-0.001268847505680996,-0.006071656625437231,-0.01073973225996102,-0.015157696370589111,-0.019215972845949572,-0.022813502949086663,-0.02586025951727711,-0.028279497422870004,-0.030009684099374156,-0.031006061634676344,-0.031241800847709906,-0.03070871768062537,-0.02941753291477632,-0.02739766739541358,-0.0246965763535603,-0.02137863776437286,-0.017523620700057814,-0.013224770050090028,-0.008586553534054013,-0.003722125385264724,0.0012494317748765991,0.006206019700854233,0.011025520737871936,0.015588804021938352,0.019782667721332903,0.023502644714648777,0.026655602229819216,0.029162070816599675,0.030958244478119557,0.03199760169175224,0.032252106215877936,0.03171295678576024,0.03039086580102231,0.028315858631141024,0.02553659693226033,0.0221192410898684,0.01814587828909568,0.01371255348646907,0.008926950447013294,0.0039057787725803998,-0.0012280697379313018,-0.006348526174896356,-0.01132943763183667,-0.01604767252262053,-0.020386161729657393,-0.0242368005393391,-0.02750313949968943,-0.030102797291907922,-0.03196953532616538,-0.03305494189531506,-0.03332968315332751,-0.03278428870056085,-0.0314294509004591,-0.029295828945729185,-0.02643336084585184,-0.022910098623931986,-0.018810593791330175,-0.014233871322447118,-0.009291040603097322,-0.004102600919038977,0.0012044932410635945,0.006499935665802777,0.011653264889269998,0.016537075309099168,0.02103016399093473,0.025020535510810935,0.028408190415965918,0.031107627954894093,0.03305000052052317,0.034184865605097155,0.03448149078152378,0.033929678069340836,0.03254008575127564,0.030344037993709997,0.0273928251910677,0.023756510492187057,0.019522270167744694,0.014792307040607383,0.009681386839109296,0.004314056781926476,-0.0011783862739623283,-0.006661104396002062,-0.011999025519415231,-0.017060167747650977,-0.021718899276122607,-0.02585905350273503,-0.029376822168700217,-0.03218335456211163,-0.03420699779380387,-0.0353951217548951,-0.03571548238235808,-0.03515708805171256,-0.03373054601342297,-0.0314678784976093,-0.02842181111994807,-0.024664549211409818,-0.02028607034632479,-0.015391973344937648,-0.010100935080726955,-0.004541836254177863,0.0011493743426729977,0.006833000863593102,0.012369025707057247,0.017620555178721076,0.022457200814681267,0.026758312937909638,0.03041598635157967,0.03333776338604042,0.035448966687508125,0.036694602996596624,0.03704078950193059,0.03647566591954357,0.035009767962734924,0.032675851025373584,0.02952816638319736,0.025641205692228355,0.02110794269974495,0.016037613557147102,0.010553088626439402,0.004787898916586367,-0.0011170109838317837,-0.0070167246156316605,-0.012765906055097183,-0.01822237603496026,-0.023250623888004602,-0.02772516866856241,-0.03153368618986343,-0.03457982415788251,-0.03678563495898251,-0.03809356479522823,-0.03846794853982126,-0.037895971649023794,-0.03638807342699901,-0.03397777958142162,-0.0307209659977887,-0.026694569656549757,-0.021994776275473887,-0.016734727243078618,-0.011041800395747425,-0.005054529882909653,0.001080760506428053,0.007213528846832697,0.013192704345085515,0.01887040407466855,0.024105585848465175,0.028767547115414495,0.032739183200458495,0.03591992378523228,0.038228274120851884,0.03960389689510679,0.040009181719785805,0.03943026159467964,0.03787744914379117,0.03538507958029798,0.032010761894675124,0.027834054319310995,0.02295459434521494,0.017489727101159612,0.01157168841745989,0.005344410073992874,-0.0010399757050143568, -0.0074248477399438025,-0.013652932944865866,-0.019570175058984295, -0.02502954002236904,-0.02989466412910682,-0.034043254574452377,-0.03737015773200255,-0.039790018320897146,-0.04123946236788187,-0.041678748303125665, -0.04109284337790695, -0.03949189654672641,-0.036911093677711566,-0.03340989608476297,-0.02907067854267498,-0.023996797779897168,-0.018310136576819257,-0.012148181680284408,-0.005660705451633268,0.0009938687974208394,0.007652329712972285, 0.014150674999827556,0.020328144967100583,0.02603119346075172,0.031117298244761855,0.03545851642402368,0.038944696368763757,0.041486265668145623,0.04301652472076526,0.04349338742293708,0.04290052375832257,0.04124787360313014,0.038571516388311224,0.03493289703084617,0.030417424374802812,0.02513247388076009,0.019204841087239532,0.012777706073684902,0.006007181439886584,-0.0009414731264106246,-0.00789787806051382,-0.014690704930136092,-0.021151889295771664,-0.027120781995569207,-0.032448136484148495,-0.03699983343109193,-0.04066024980477274,-0.043335187993639154,-0.04495429095576272,-0.04547288169133723,-0.04487317920795829,-0.04316485826111046,-0.04038493613666262,-0.03659698620961514,-0.0318896945615375,-0.026374792162006874,-0.020184410616968,-0.013467923875374994,-0.006388351206328235,0.0008815921118185961,0.008163700892720166,0.015278640684767369,0.022050356436424112,0.028310420992857598,0.03390221621062065,0.03868484309385729,0.04253666353426036,0.045358384837867714,0.04707560904475849,0.047640781837326326,0.047034490284135574,0.04526607443227943,0.042373534460643014,0.0384227323338282,0.03350590423117361,0.027739517042131512,0.021261518498919243,0.01422804565659487,0.006809670052392734,-0.0008127303613872672,-0.008452372811072403,-0.01592113791948644,-0.023034193034414358,-0.029614557259915124,-0.035497495665123634,-0.040534633795878044,-0.04459768995718312,-0.04758173162654765,-0.04940787359363371,-0.05002534873600844,-0.049412897417360026,-0.04757943797181527,-0.0445639982183359,-0.04043490600837773,-0.03528825500760325,-0.029245679802397066,-0.022451491563595213,-0.015069241468690781,-0.00727779348202511,0.0007329994411377716,0.008766911441869722,0.01662614014208101,0.02411616633427197,0.0310505578343443,0.03725559911993982,0.04257463205223558,0.04687199948997537,0.050036492805309106,0.05198421598969846,0.05266079292072407,0.052042860117698514,0.050138804568472875,0.04698872454599378,0.04266361030663365,0.03726376071077053,0.030916470660572168,0.023773042346222416,0.016005190181961185,0.007800924576506711,-0.000639987064316204,-0.009110872797361436,-0.01740320447709376,-0.025311718939246018,-0.032639486558844924,-0.03920280232746915,-0.04483577828208104,-0.04939452279944773,-0.05276080179806229,-0.05484508904517152,-0.05558892726589368,-0.05496653825142696,-0.05298563827005522,-0.04968743436259676,-0.045145797086595246,-0.03946562547460371,-0.03278043989705011,-0.02524925767918015,-0.017052824240289834,-0.008389288755623357,0.000530572520549295,0.009488470446348795,0.018263930940601143,0.02663970698412353,0.03440714217315382,0.041371353762835156,0.04735610682044409,0.05220825796080843,0.05580165700999143,0.05804040761274113,0.05886140296968819,0.05823607020403734,0.056171275902273596,0.052709365692153586,0.04792733182312625,0.041935124086485594,0.03487314053260381,0.026908954791322676,0.018233355875649906,0.00905579367337897,-0.00040066152880565103,-0.009904724572618465,-0.01922253541079696,-0.02812339641494256,-0.0363854666690031,-0.043801273122293774,-0.05018290212743681,-0.05536674190906972,-0.05921765674667074,-0.061632486877791125,-0.0625427840302011,-0.06191671069946391,-0.05976005136997111,-0.056116305351812536,-0.05106585325530414,-0.04472421180730702,-0.037239414174937674,-0.028788574651262014,-0.019573716937970543,-0.00981696382451355,0.000244797654257922,0.010365647912284521,0.02029662514555336,0.02979182887031954,0.03861448753029594,0.04654284096710592,0.053375692135346146,0.05893748962269074,0.06308281315348804,0.06570014807312907,0.06671485151208935,0.06609123212243802,0.06383368651178466,0.059986858263336794,0.054634809178529885,0.04789921653551977,0.039936634133969785,0.030934878105860486,0.021108620340358097,0.010694292353985396,-0.00005557996607238711,-0.010878475554157246,-0.021508264552086598,-0.031681727113893395,-0.04114504555836772,-0.04966011036966606,-0.05701048402120923,-0.06300687391799153,-0.06749197676406793,-0.07034457112098592,-0.07148275249891736,-0.07086622560648373,-0.068497590900056,-0.0644225867831778,-0.05872927413119469,-0.05154617564343897,-0.043039408227217024,-0.03340887156492647,-0.0228835795925152,-0.011716243238079502,-0.00017723189123445188,0.011451942788159733,0.022885464374922768,0.033840205146845985,0.04404270514452145,0.05323596556231735,0.06118588850582777,0.06768720258065183,0.07256872518894625,0.07569782755373398,0.0769839870235062,0.07638133270302289,0.07389011440687411,0.0695570507731415,0.06347453948797586,0.05577874030510001,0.046646569224260345,0.03629166914295988,0.02495944785266162,0.012921297779449632,0.0004681327799632659,-0.0120966049341197,-0.024464300513265442,-0.036328707421703035,-0.04739349029666969,-0.0573795849039418,-0.0660321933991325,-0.07312724059145556,-0.07847712871210756,-0.0819356440585774,-0.08340188846345704,-0.08282313137306244,-0.08019650388575841,-0.07556948379014226,-0.06903914980047911,-0.06075021311142139,-0.05089186436229889,-0.0396935033825819,-0.02741944696490204,-0.014362735689161897,-0.0008381838553122669,0.012825163710599954,0.02629198834006269,0.03922887643880289,0.0513125223315238,0.062237754461780564,0.07172518698177673,0.07952830622706637,0.08543981374265507,0.08929706415282981,0.0909864568796878,0.09044666504488007,0.08767061227369254,0.08270613791944995,0.07565532273444199,0.06667247947873134,0.055960845598262615,0.04376804712570167,0.03038043357670634,0.016116412073490075,0.001318934515252238,-0.01365268631650838,-0.02843143784849361,-0.042651538712108625,-0.055957423863408566,-0.06801256472957097,-0.07850790727602923,-0.0871697181843753,-0.09376664180269134,-0.0981157879210721,-0.10008769235809131,-0.09961001832756423,-0.09666989599527905,-0.09131482984925766,-0.08365213773798948,-0.07384692086654425,-0.06211859983148435,-0.0487360870565604,-0.03401169990116054,-0.018293950416486213,-0.0019593764301506747,0.014596396376675138,0.03096815111613618,0.046750909068111225,0.061549855407493845,0.07499012016988563,0.0867261744098874,0.0964506084144615,0.1039020714719725,0.10887217081613709,0.111211150578966,0.11083219938661018,0.10771426698985462,0.1019033053079909,0.09351188666693157,0.08271719094928044,0.0697573929193596,0.05492652018971198,0.03856789020578361,0.02106627031240195,0.002838937543563369,-0.015674156573929662,-0.03402088692568697,-0.051747873450736386,-0.06841155664804159,-0.08358916235281315,-0.09688928786169744,-0.10796184763762298,-0.11650712937536487,-0.12228372992451296,-0.12511516506351938,-0.12489497686974772,-0.12159019677681537,-0.11524306057542304,-0.10597091272051502,-0.09396428039908976,-0.07948314187429106,-0.06285145760316106,-0.04445007546866469,-0.02470816212795454,-0.0040933499557582525,0.016899177583090532,0.037758410913658495,0.057969775791158314,0.07702764095646673,0.09444777219727384,0.10977943053792952,0.12261681705438879,0.13260957879629862,0.1394721092951341,0.14299140277451738,0.14303325292255478,0.139546624250383,0.13256606582283764,0.1222120825636204,0.10868942736762614,0.09228332678160646,0.0733537028765328,0.05232750294437881,0.029689295628156025,0.005970335890561541,-0.01826365924112258,-0.042425747944643835,-0.06592170955057823,-0.08816437359800977,-0.10858799268135634,-0.12666231393687521,-0.14190600633619366,-0.1538991114784016,-0.16229420415986737,-0.16682597531758303,-0.16731898346602686,-0.16369336078079016,-0.15596830566349987,-0.14426324394643283,-0.12879659473383145,-0.1098821330050303,-0.08792299822707564,-0.06340345500629471,-0.03687856690458388,-0.008961996634484394,0.019687806341973174,0.048382727437663975,0.07642107860306183,0.10310429250053196,0.1277538315634778,0.14972791304434163,0.16843764910725595,0.18336220837419137,0.19406262205081445,0.2001938835840536,0.20151502526600837,0.19789689761916696,0.18932742690240606,0.17591418161586236,0.15788413925089936,0.13558060839594346,0.1094573272374418,0.08006982598769283,0.04806420629408894,0.01416355370502847,-0.020847741709477344,-0.056141427884018213,-0.09086422087330824,-0.12415760806428999,-0.1551781799973049,-0.18311802607983016,-0.20722471962616415,-0.22682041856876872,-0.24131962000459461,-0.2502451293581236,-0.25324183800952077,-0.250087946155664,-0.24070331961559538,-0.22515472921520674,-0.20365778804800422,-0.17657547389889783,-0.14441319988521548,-0.10781047425583663,-0.06752926856705795,-0.024439290361676958,0.02049956973833415,0.06625727766290923,0.11175578088768122,0.15589276288422155,0.19756652586968265,0.23570146589357976,0.26927358087283626,0.29733544082962843,0.3190400507314687,0.33366305013827313,0.3406227202063703,0.3394973070841716,0.3300392206839183,0.31218572829157243,0.28606583230094695,0.25200309912586005,0.21051429046014697,0.1623037367650311,0.1082534842894091,0.049409339111457055,-0.013036977370172714,-0.07776925936671261,-0.14337144941015117,-0.20835501273819287,-0.2711885265546741,-0.33032890100276513,-0.3842536040003885,-0.4314932301851665,-0.47066373594440675,-0.5004976584229822,-0.5198736467664834,-0.5278436586178057,-0.5236572136806413,-0.5067821483258685,-0.47692137978539223,-0.43402526421586857,-0.37829921833413116,-0.31020636771813986,-0.23046508433710503,-0.14004137938069164,-0.0401362228547858,0.0678320335033543,0.182249850879551,0.3013349386437645,0.42316646220493953,0.5457184731667526,0.6668959397772898,0.784572696102819,0.8966305822835551,1.0009990167107312,1.0956942247623747,1.1788573482944704,1.2487906755200475,1.3039912620028706,1.3431812596962447,1.365334331401982,1.3696976015376463,1.3558086792299628,1.3235073847970373,1.2729419137252573,1.2045692811970832,1.119150002860804,1.0177370815456632,0.9016594826725575,0.7725003908622943,0.6320706444335235,0.482377840955056,0.3255916937732503,0.16400629467421043, 0, -0.16400629467421043, -0.3255916937732503, -0.482377840955056, -0.6320706444335235, -0.7725003908622943,-0.9016594826725575,-1.0177370815456632,-1.119150002860804,-1.2045692811970832,-1.2729419137252573,-1.3235073847970373,-1.3558086792299628,-1.3696976015376463,-1.365334331401982,-1.3431812596962447,-1.3039912620028706,-1.2487906755200475, -1.1788573482944704, -1.0956942247623747, -1.0009990167107312, -0.8966305822835551,-0.784572696102819,-0.6668959397772898, -0.5457184731667526, -0.42316646220493953,-0.3013349386437645,-0.182249850879551,-0.0678320335033543,0.0401362228547858,0.14004137938069164,0.23046508433710503, 0.31020636771813986,0.37829921833413116, 0.43402526421586857,0.47692137978539223,0.5067821483258685,0.5236572136806413,0.5278436586178057,0.5198736467664834,0.5004976584229822,0.47066373594440675,0.4314932301851665,0.3842536040003885,0.33032890100276513,0.2711885265546741,0.20835501273819287,0.14337144941015117,0.07776925936671261,0.013036977370172714,-0.049409339111457055,-0.1082534842894091,-0.1623037367650311,-0.21051429046014697,-0.25200309912586005,-0.28606583230094695,-0.31218572829157243,-0.3300392206839183,-0.3394973070841716,-0.3406227202063703,-0.33366305013827313,-0.3190400507314687,-0.29733544082962843,-0.26927358087283626,-0.23570146589357976,-0.19756652586968265,-0.15589276288422155,-0.11175578088768122,-0.06625727766290923,-0.02049956973833415,0.024439290361676958,0.06752926856705795,0.10781047425583663,0.14441319988521548,0.17657547389889783,0.20365778804800422,0.22515472921520674,0.24070331961559538,0.250087946155664,0.25324183800952077,0.2502451293581236,0.24131962000459461,0.22682041856876872,0.20722471962616415,0.18311802607983016,0.1551781799973049,0.12415760806428999,0.09086422087330824,0.056141427884018213,0.020847741709477344,-0.01416355370502847,-0.04806420629408894,-0.08006982598769283,-0.1094573272374418,-0.13558060839594346,-0.15788413925089936,-0.17591418161586236,-0.18932742690240606,-0.19789689761916696,-0.20151502526600837,-0.2001938835840536,-0.19406262205081445,-0.18336220837419137,-0.16843764910725595,-0.14972791304434163,-0.1277538315634778,-0.10310429250053196,-0.07642107860306183,-0.048382727437663975,-0.019687806341973174,0.008961996634484394,0.03687856690458388,0.06340345500629471,0.08792299822707564,0.1098821330050303,0.12879659473383145,0.14426324394643283,0.15596830566349987,0.16369336078079016,0.16731898346602686,0.16682597531758303,0.16229420415986737,0.1538991114784016,0.14190600633619366,0.12666231393687521,0.10858799268135634,0.08816437359800977,0.06592170955057823,0.042425747944643835,0.01826365924112258,-0.005970335890561541,-0.029689295628156025,-0.05232750294437881,-0.0733537028765328,-0.09228332678160646,-0.10868942736762614,-0.1222120825636204,-0.13256606582283764,-0.139546624250383,-0.14303325292255478,-0.14299140277451738,-0.1394721092951341,-0.13260957879629862,-0.12261681705438879,-0.10977943053792952,-0.09444777219727384,-0.07702764095646673,-0.057969775791158314,-0.037758410913658495,-0.016899177583090532,0.0040933499557582525,0.02470816212795454,0.04445007546866469,0.06285145760316106,0.07948314187429106,0.09396428039908976,0.10597091272051502,0.11524306057542304,0.12159019677681537,0.12489497686974772,0.12511516506351938,0.12228372992451296,0.11650712937536487,0.10796184763762298,0.09688928786169744,0.08358916235281315,0.06841155664804159,0.051747873450736386,0.03402088692568697,0.015674156573929662,-0.002838937543563369,-0.02106627031240195,-0.03856789020578361,-0.05492652018971198,-0.0697573929193596,-0.08271719094928044,-0.09351188666693157,-0.1019033053079909,-0.10771426698985462,-0.11083219938661018,-0.111211150578966,-0.10887217081613709,-0.1039020714719725,-0.0964506084144615,-0.0867261744098874,-0.07499012016988563,-0.061549855407493845,-0.046750909068111225,-0.03096815111613618,-0.014596396376675138,0.0019593764301506747,0.018293950416486213,0.03401169990116054,0.0487360870565604,0.06211859983148435,0.07384692086654425,0.08365213773798948,0.09131482984925766,0.09666989599527905,0.09961001832756423,0.10008769235809131,0.0981157879210721,0.09376664180269134,0.0871697181843753,0.07850790727602923,0.06801256472957097,0.055957423863408566,0.042651538712108625,0.02843143784849361,0.01365268631650838,-0.001318934515252238,-0.016116412073490075,-0.03038043357670634,-0.04376804712570167,-0.055960845598262615,-0.06667247947873134,-0.07565532273444199,-0.08270613791944995,-0.08767061227369254,-0.09044666504488007,-0.0909864568796878,-0.08929706415282981,-0.08543981374265507,-0.07952830622706637,-0.07172518698177673,-0.062237754461780564,-0.0513125223315238,-0.03922887643880289,-0.02629198834006269,-0.012825163710599954,0.0008381838553122669,0.014362735689161897,0.02741944696490204,0.0396935033825819,0.05089186436229889,0.06075021311142139,0.06903914980047911,0.07556948379014226,0.08019650388575841,0.08282313137306244,0.08340188846345704,0.0819356440585774,0.07847712871210756,0.07312724059145556,0.0660321933991325,0.0573795849039418,0.04739349029666969,0.036328707421703035,0.024464300513265442,0.0120966049341197,-0.0004681327799632659,-0.012921297779449632,-0.02495944785266162,-0.03629166914295988,-0.046646569224260345,-0.05577874030510001,-0.06347453948797586,-0.0695570507731415,-0.07389011440687411,-0.07638133270302289,-0.0769839870235062,-0.07569782755373398,-0.07256872518894625,-0.06768720258065183,-0.06118588850582777,-0.05323596556231735,-0.04404270514452145,-0.033840205146845985,-0.022885464374922768,-0.011451942788159733,0.00017723189123445188,0.011716243238079502,0.0228835795925152,0.03340887156492647,0.043039408227217024,0.05154617564343897,0.05872927413119469,0.0644225867831778,0.068497590900056,0.07086622560648373,0.07148275249891736,0.07034457112098592,0.06749197676406793,0.06300687391799153,0.05701048402120923,0.04966011036966606,0.04114504555836772,0.031681727113893395,0.021508264552086598,0.010878475554157246,0.00005557996607238711,-0.010694292353985396,-0.021108620340358097,-0.030934878105860486,-0.039936634133969785,-0.04789921653551977,-0.054634809178529885,-0.059986858263336794,-0.06383368651178466,-0.06609123212243802,-0.06671485151208935,-0.06570014807312907,-0.06308281315348804,-0.05893748962269074,-0.053375692135346146,-0.04654284096710592,-0.03861448753029594,-0.02979182887031954,-0.02029662514555336,-0.010365647912284521,-0.000244797654257922,0.00981696382451355,0.019573716937970543,0.028788574651262014,0.037239414174937674,0.04472421180730702,0.05106585325530414,0.056116305351812536,0.05976005136997111,0.06191671069946391,0.0625427840302011,0.061632486877791125,0.05921765674667074,0.05536674190906972,0.05018290212743681,0.043801273122293774,0.0363854666690031,0.02812339641494256,0.01922253541079696,0.009904724572618465,0.00040066152880565103,-0.00905579367337897,-0.018233355875649906,-0.026908954791322676,-0.03487314053260381,-0.041935124086485594,-0.04792733182312625,-0.052709365692153586,-0.056171275902273596,-0.05823607020403734,-0.05886140296968819,-0.05804040761274113,-0.05580165700999143,-0.05220825796080843,-0.04735610682044409,-0.041371353762835156,-0.03440714217315382,-0.02663970698412353,-0.018263930940601143,-0.009488470446348795,-0.000530572520549295,0.008389288755623357,0.017052824240289834,0.02524925767918015,0.03278043989705011,0.03946562547460371,0.045145797086595246,0.04968743436259676,0.05298563827005522,0.05496653825142696,0.05558892726589368,0.05484508904517152,0.05276080179806229,0.04939452279944773,0.04483577828208104,0.03920280232746915,0.032639486558844924,0.025311718939246018,0.01740320447709376,0.009110872797361436,0.000639987064316204,-0.007800924576506711,-0.016005190181961185,-0.023773042346222416,-0.030916470660572168,-0.03726376071077053,-0.04266361030663365,-0.04698872454599378,-0.050138804568472875,-0.052042860117698514,-0.05266079292072407,-0.05198421598969846,-0.050036492805309106,-0.04687199948997537,-0.04257463205223558,-0.03725559911993982,-0.0310505578343443,-0.02411616633427197,-0.01662614014208101,-0.008766911441869722,-0.0007329994411377716,0.00727779348202511,0.015069241468690781,0.022451491563595213,0.029245679802397066,0.03528825500760325,0.04043490600837773,0.0445639982183359,0.04757943797181527,0.049412897417360026,0.05002534873600844,0.04940787359363371,0.04758173162654765,0.04459768995718312,0.040534633795878044,0.035497495665123634,0.029614557259915124,0.023034193034414358,0.01592113791948644,0.008452372811072403,0.0008127303613872672,-0.006809670052392734,-0.01422804565659487,-0.021261518498919243,-0.027739517042131512,-0.03350590423117361,-0.0384227323338282,-0.042373534460643014,-0.04526607443227943,-0.047034490284135574,-0.047640781837326326,-0.04707560904475849,-0.045358384837867714,-0.04253666353426036,-0.03868484309385729,-0.03390221621062065,-0.028310420992857598,-0.022050356436424112,-0.015278640684767369,-0.008163700892720166,-0.0008815921118185961,0.006388351206328235,0.013467923875374994,0.020184410616968,0.026374792162006874,0.0318896945615375,0.03659698620961514,0.04038493613666262,0.04316485826111046,0.04487317920795829,0.04547288169133723,0.04495429095576272,0.043335187993639154,0.04066024980477274,0.03699983343109193,0.032448136484148495,0.027120781995569207,0.021151889295771664,0.014690704930136092,0.00789787806051382,0.0009414731264106246,-0.006007181439886584,-0.012777706073684902,-0.019204841087239532,-0.02513247388076009,-0.030417424374802812,-0.03493289703084617,-0.038571516388311224,-0.04124787360313014,-0.04290052375832257,-0.04349338742293708,-0.04301652472076526,-0.041486265668145623,-0.038944696368763757,-0.03545851642402368,-0.031117298244761855,-0.02603119346075172,-0.020328144967100583,-0.014150674999827556,-0.007652329712972285,-0.0009938687974208394,0.005660705451633268,0.012148181680284408,0.018310136576819257,0.023996797779897168,0.02907067854267498,0.03340989608476297,0.036911093677711566,0.03949189654672641,0.04109284337790695,0.041678748303125665,0.04123946236788187,0.039790018320897146,0.03737015773200255,0.034043254574452377, 0.02989466412910682,0.02502954002236904,0.019570175058984295,0.013652932944865866,0.0074248477399438025,0.0010399757050143568,-0.005344410073992874,-0.01157168841745989,-0.017489727101159612,-0.02295459434521494,-0.027834054319310995,-0.032010761894675124,-0.03538507958029798,-0.03787744914379117,-0.03943026159467964,-0.040009181719785805,-0.03960389689510679,-0.038228274120851884,-0.03591992378523228,-0.032739183200458495,-0.028767547115414495,-0.024105585848465175,-0.01887040407466855,-0.013192704345085515,-0.007213528846832697,-0.001080760506428053,0.005054529882909653,0.011041800395747425,0.016734727243078618,0.021994776275473887,0.026694569656549757,0.0307209659977887,0.03397777958142162,0.03638807342699901,0.037895971649023794,0.03846794853982126,0.03809356479522823,0.03678563495898251,0.03457982415788251,0.03153368618986343,0.02772516866856241,0.023250623888004602,0.01822237603496026,0.012765906055097183,0.0070167246156316605,0.0011170109838317837,-0.004787898916586367,-0.010553088626439402,-0.016037613557147102,-0.02110794269974495,-0.025641205692228355,-0.02952816638319736,-0.032675851025373584,-0.035009767962734924,-0.03647566591954357,-0.03704078950193059,-0.036694602996596624,-0.035448966687508125,-0.03333776338604042,-0.03041598635157967,-0.026758312937909638,-0.022457200814681267,-0.017620555178721076,-0.012369025707057247,-0.006833000863593102,-0.0011493743426729977,0.004541836254177863,0.010100935080726955,0.015391973344937648,0.02028607034632479,0.024664549211409818,0.02842181111994807,0.0314678784976093,0.03373054601342297,0.03515708805171256,0.03571548238235808,0.0353951217548951,0.03420699779380387,0.03218335456211163,0.029376822168700217,0.02585905350273503,0.021718899276122607,0.017060167747650977,0.011999025519415231,0.006661104396002062,0.0011783862739623283,-0.004314056781926476,-0.009681386839109296,-0.014792307040607383,-0.019522270167744694,-0.023756510492187057,-0.0273928251910677,-0.030344037993709997,-0.03254008575127564,-0.033929678069340836,-0.03448149078152378,-0.034184865605097155,-0.03305000052052317,-0.031107627954894093,-0.028408190415965918,-0.025020535510810935,-0.02103016399093473,-0.016537075309099168,-0.011653264889269998,-0.006499935665802777,-0.0012044932410635945,0.004102600919038977,0.009291040603097322,0.014233871322447118,0.018810593791330175,0.022910098623931986,0.02643336084585184,0.029295828945729185,0.0314294509004591,0.03278428870056085,0.03332968315332751,0.03305494189531506,0.03196953532616538,0.030102797291907922,0.02750313949968943,0.0242368005393391,0.020386161729657393,0.01604767252262053,0.01132943763183667,0.006348526174896356,0.0012280697379313018,-0.0039057787725803998,-0.008926950447013294,-0.01371255348646907,-0.01814587828909568,-0.0221192410898684,-0.02553659693226033,-0.028315858631141024,-0.03039086580102231,-0.03171295678576024,-0.032252106215877936,-0.03199760169175224,-0.030958244478119557,-0.029162070816599675,-0.026655602229819216,-0.023502644714648777,-0.019782667721332903,-0.015588804021938352,-0.011025520737871936,-0.006206019700854233,-0.0012494317748765991,0.003722125385264724,0.008586553534054013,0.013224770050090028,0.017523620700057814,0.02137863776437286,0.0246965763535603,0.02739766739541358,0.02941753291477632,0.03070871768062537,0.031241800847709906,0.031006061634676344,0.030009684099374156,0.028279497422870004,0.02586025951727711,0.022813502949086663,0.019215972845949572,0.015157696370589111,0.01073973225996102,0.006071656625437231,0.001268847505680996,-0.0035503645920629645,-0.008267609845855855,-0.012767384304911854,-0.01693987585888799,-0.02068364190285547,-0.023908073458644534,-0.02653558594993448,-0.02850348371523104,-0.02976545350647459,-0.030292651457416858,-0.030074358085368777,-0.029118186562759708,-0.027449840497666037,-0.02511242852427696,-0.022165353853743627,-0.018682807307600694,-0.014751901997059997,-0.010470496487726263,-0.0059447607908016,-0.0012865456681828138,0.0033893796166696746,0.007968152937031342,0.012337638813005081,0.016391172632809436,0.020030162476652846,0.023166485126521485,0.025724618081665002,0.027643456047594384,0.02887776825881658,0.02939926193511275,0.02919722693561687,0.02827874702238794,0.026668473820125462,0.024407970298402207,0.021554641143706487,0.018180277472766522,0.014369252720089926,0.010216414983354617,0.005824728425680911,0.0013027223377760275,-0.003238188987982796,-0.007686449432636469,-0.01193309978019285,-0.0158744448106398,-0.01941458351650481,-0.022467740748822865,-0.024960343647394165,-0.026832792634280456,-0.02804088438713199,-0.028556852869357708,-0.028370003962019105,-0.027486929283124854,-0.025931295145825223,-0.023743213042684282,-0.02097820829258311,-0.01770581329901362,-0.014007821004124073,-0.009976242359706584,-0.005711018774875616,-0.001317546368469427,0.003095926688151766,0.007420965510615344,0.011551610938363124,0.015386973738882462,0.01883369710656195,0.02180822739247584,0.024238837874562352,0.026067356591233187,0.02725055665931306,0.027761175894596028,0.027588541741460533,0.026738787269332275,0.025234654067561823,0.023114888018489495,0.02043324390195747,0.01725712433912373,0.013665887485905364,0.0097488659201358,0.005603146136868212,0.0013311638051185619,-0.0029618256906964097,-0.007170339003769659,-0.011191255093330483,-0.014926340439833742,-0.0182846474077417,-0.021184727237718838,-0.02355660385789394,-0.02534346071923232,-0.026503000031845518,-0.027008441928198852,-0.026849140003096225,-0.026030799158008922,-0.02457529147476555,-0.02252007571961153,-0.019917235790678996,-0.016832162732151684,-0.01334191361952857,-0.009533288461087112,-0.0055006730708051866,-0.001343701483289065,0.0028352042329100402,0.006933356052438982,0.010850321892127642,0.014490385432373245,0.01776488364908231,0.02059436500497909,0.02291051580128179,0.02465780801919247,0.025794828938931827,0.0262952607385001,0.026148486948258647,0.0253598118559921,0.023950288492718744,0.02195616044737445,0.01942793222240646,0.016429091920474804,0.01303451852313505,0.0093286136793114,0.005403204578808768,0.001355269983302946,-0.0027154543076810126,-0.00670893146517092,-0.010527280667149724,-0.014077174847699055,-0.017272120454566015,-0.02003456355823526,-0.02229777106101563,-0.02400744140645317,-0.025123005945741614,-0.025618589810057612,-0.025483609574772016,-0.024722993974344194,-0.023357023213850973,-0.021420791795844343,-0.018963309009365437,-0.01604626008539258,-0.012742459293362908,-0.009134033735229384,-0.0053103831052041615,-0.0013659660675632635,0.0026020319676233737,0.0064960921183283725,0.010220757448281943,0.013684971718791142,0.016804304203895056,0.019503006238796274,0.021715849438222776,0.02338970100610141,0.02448479812296558,0.024975690879125184,0.024851831433870486,0.024117795820529107,0.02279313386825834,0.020911851851144154,0.018521541478982,0.015682177491412368,0.012464614196551519,0.008948818610024157,0.005221884222752981,0.0013758747019309342,-0.002494449117478005,-0.006293962860044494,-0.009929515415432962,-0.01331221154493205,-0.016359584383080977,-0.018997604768499352,-0.021162478473522154,-0.022802187728621838,-0.02387773982118252,-0.024364092829787156,-0.024250736553856247,-0.0235419152162024,-0.022256487342528438,-0.0204274271397272,-0.018100980484951536,-0.015335497084391398,-0.01219996825804101,-0.00877230696196879,-0.005137412898897979,-0.0013850707403445341,0.0023922665352372995,0.006101754488728146,0.009652438205476687,0.01295748140668488,0.015936289082210144,0.018516471784701678,0.020635603736159934,0.022242732074113963,0.023299600775860938,0.02378155989064526,0.02367813850517202,0.022993268174411528, 0.021745152162181716,0.01996578454237594,0.01770013179802034,0.015004997811135755,0.01194760085978936,0.008603898241440104,0.005056700253527264,0.001393620335307468,-0.0022950879128633586,-0.005918753458577819, -0.009388515598962269,-0.012619502043745446,-0.015532903956532736,-0.018057897245600772,-0.02013336328872522,-0.02170936730991113, -0.022748358673196818,-0.02322606426917705,-0.023132053771873592,-0.02246996364890464,-0.021257375216423152,-0.0195253505349204,-0.017317638333743286,-0.014689570225327374,-0.011706675027270718,-0.008443045867156036,-0.00497950073477281,-0.0014015821240635268,0.0022025547471407753,0.005744313029523571,0.009136831200036187,0.012297112416656496, 0.01514805409293201,0.017620328084198004, 0.019654065658479634, 0.021200306322634314, 0.02222217546549378, 0.0226957625177727, 0.022610678745961104, 0.021970281710725268, 0.02079156163410272, 0.019104693231692664, 0.016952264771848306, 0.014388204022376175, 0.011476428143240118, 0.008289251300775069, 0.004905589651580713, 0.00140900823032221, -0.0021143419426140086, -0.005577845630634443, -0.008896551793144617, -0.011989256359865178, -0.014780488324228756, -0.017202350600789295, -0.019196170766077877, -0.02071392157053247, -0.021719376851525408, -0.022188975050966963, -0.022112369782274294, -0.02149265462138347, -0.020346257324130104, -0.01870250679997739, -0.016602884199987043, -0.014099977208244078, -0.011256163871514341, -0.008142058884927753, -0.004834761011787389, -0.00141594511359963, 0.0020301540135732573, 0.005418816247279273, 0.008666918116213984, 0.011694971002926942, 0.014429065614320767, 0.016802675173390316, 0.018758273358612965, 0.020248727662251685, 0.021238434439203365, 0.021704168334336447, 0.021635625849232957, 0.021035650363780307, 0.019920133777660724, 0.018317597888086602, 0.016268466477704344, 0.01382404665772478, 0.011045245110773818, 0.008001051332409439, 0.004766825622644666, 0.001422434292103143, -0.0019497217920851394, -0.005266736675474448, -0.008447236835180876, -0.011413376692503821, -0.014092743202077183, -0.01642012293775027, -0.018339088571549058, -0.01980336616917874, -0.020777950190207572, -0.02123993934715474, -0.02117907338963555, -0.02059795826643023, -0.019511974797451554, -0.017948873769948425, -0.015948068067589742, -0.01355963985860181, -0.010843087828347095, -0.00786584577273261, -0.004701609417503863, -0.0014285129602282405, 0.00187279956519293, 0.0051211605136237655, 0.008236873541285012, 0.01114366819302468, 0.01377056624452489, 0.01605361414717347, 0.017937439307072388, 0.019376592344255338, 0.02033664281309794, 0.020795001987215626, 0.020741453069891686, 0.020178376417009432, 0.019120664875185333, 0.0175953319581651, 0.01564082312223433, 0.013306047671493584, 0.010649155648402716, 0.00773609027735929, 0.004638951977968503, 0.0014342145178680122, -0.0017991625774623876, -0.004981678783586611, -0.008035246622244304, -0.010885106980669185, -0.013461658742705098, -0.015702157970090905, -0.01755224516773573, -0.018967263473787403, -0.01991333582598348, -0.02036817514037183, -0.020321608148466477, -0.019775800610678917, -0.018745178982852072, -0.017256051077630397, -0.015345935649716385, -0.013062617962545108, -0.0104629550890398, -0.0076114607973693975, -0.004578705225475791, -0.0014395690256405519, 0.0017286048456615758, 0.004847916090733413, 0.007841821882691563, 0.010637014475414253, 0.01316521556862294, 0.015364843522382056, 0.01718251272630553, 0.018574328632701375, 0.0195069470545439, 0.019958372181729127, 0.019918474237303377, 0.019389214619192453, 0.01838457358146651, 0.016930182824770386, 0.015062672608372978, 0.012828749988629842, 0.01028403135929919, 0.007491658457589216, 0.004520732260142814, 0.0014446035976513863, -0.0016609372410323162, -0.004719527247166793, -0.00765610780915488, -0.010398766080577401, -0.012880495440505985, -0.015040831963555533, -0.016827326947297685, -0.018196819649855207, -0.01911647936800561, -0.019564591711993963, -0.01953107026540971, -0.019017681600231897, -0.018037978681067334, -0.01661694486467684, -0.014790357804757985, -0.012603889433317896, -0.010111964640790455, -0.0073764071597169295, -0.004464906327954762, -0.0014493427413980271, 0.0015959858017241364, 0.004596194294233417, 0.007477651391260596, 0.010169785919654237, 0.012606814717344234, 0.01472934951240313, 0.01648584360424345, 0.017833843119877, 0.018741012486104755, 0.019185909362704312, 0.019158490483088687, 0.018660336494081123, 0.017704590811336143, 0.016315614540938817, 0.01452836648787009, 0.012387524007289036, 0.009946366789984437, 0.007265451454066335, 0.004411109900092095, 0.0014538086527928896, -0.0015335902438228164, -0.004477623870321846, -0.007306034424402164, -0.009949542177106122, -0.012343541903364506, -0.014429681259710532, -0.016157282560405096, -0.01748457332278261, -0.018379695715318146, -0.01882147052916997, -0.01879989736963453, -0.01831637927773816, -0.017383666783279565, -0.016025523291719142, -0.01427612054869527, -0.012179179539710703, -0.0097868784066856, -0.007158554645466938, -0.004359233850482814, -0.0014580214729518557, 0.001473602644254898, 0.004363544878129201, 0.0071408702303832885, 0.009737542963765855, 0.012090092769458544, 0.01414116567388682, 0.01584092180037047, 0.017148245933255975, 0.018031741493678068, 0.018470483910864078, 0.01845451532759405, 0.01798506896573736, 0.01707451814002669, 0.015746051681265503, 0.014033084247438328, 0.011978416497832857, 0.009633166222115746, 0.00705549710381825, 0.00430917671959886, 0.0014619995123083566, -0.0014158862728771305, -0.004253706412396606, -0.0069818007419346585, -0.009533332639218631, -0.011845926012245675, -0.013863189710639153, -0.015536092116421414, -0.016824152418719495, -0.01769641964107276, -0.018132215756499145, -0.018121625063668836, -0.01766571826299745, -0.016776506209538723, -0.015476624969149652, -0.013798760401989628, -0.011784826881051801, -0.009484920766687369, -0.006956074753967206, -0.004260844054152656, -0.0014657594467195533, 0.0013603145544175315, 0.004147875914810678, 0.006828493904860343, 0.009336488533302297, 0.011610539382894846, 0.013595184450611883, 0.015242172367376374, 0.016511635039784277, 0.017373052226689063, 0.01780598472570211, 0.01780055857058245, 0.017357688788491536, 0.01648903768441214, 0.015216709150542095, 0.013572686980568186, 0.01159803144326871, 0.009341854283142888, 0.006860097723097219, 0.004214147813740005, 0.0014693164894945697, -0.0013067701437440014, -0.0040458375275462, -0.006680641358166121, -0.009146618017093154, -0.0113834662274503, -0.01333662119966703, -0.014958585239220964, -0.016210082378840997, -0.01706100897767458, -0.017491157291565685, -0.01749069463624016, -0.017060386799887944, -0.016211560664404667, -0.014965807410119642, -0.013354434049408948, -0.011417677203762454, -0.009203698855466397, -0.006767389126796341, -0.004169005836659759, -0.0014726845426650819, 0.0012551441002949801, 0.003947390620945601, 0.0065379563580783735, 0.008963355880674225, 0.011164272388517736, 0.013087007995559244, 0.014684793446642131, 0.015918925332827495, 0.016759703163586936, 0.017187143618797848, 0.017191454816652803, 0.01677325935891348, 0.015943561106138794, 0.014723456940057058, 0.013143601033070898, 0.01124343521221113, 0.00907020472798412, 0.006677783977501164, 0.004125341358151963, 0.0014758763303122046, -0.001205335149493303, -0.003852348474225018, -0.006400171916557612, -0.00878636198084347, -0.010952553425031049, -0.012845886472440166, -0.014420296322880392, -0.015637633514912264, -0.01646858790008491, -0.016893393861042556, -0.016902299817695803, -0.01649579088533091, -0.01568455963193187, -0.014489226079229364, -0.012939814250640157, -0.011074998538095987, -0.008941138792478176, -0.006591128201166568, -0.004083082575162079, -0.0014789035163416356, 0.0011572490206432794, 0.003760537090971077, 0.006267039128891068, 0.00861531912689057, 0.010747932112644135, 0.012612829041148344, 0.014164626752362209, 0.015365712017225888, 0.016187152822868107, 0.01660939482846842, 0.016622726238085854, 0.016227500054346724, 0.015434108656074051, 0.014262711736419728, 0.01274272469594658, 0.010912080458641957, 0.008816283224044635, 0.006507277749850236, 0.004042162252482353, 0.0014817768087461913, -0.0011107978522340363, -0.0036717941336340152, -0.006138325668332858, -0.008449931176799973, -0.010550056192249302, -0.01238743634879343, -0.013917348406577077, -0.01510269849307102, -0.015914921089308, -0.016334666983135498, -0.016352263632192436, -0.015967936998171076, -0.015191789792313391, -0.014043537065175988, -0.012552006034062167, -0.010754412822790367, -0.008695434248910875, -0.0064260977994751774, -0.0040025173657611225, -0.0014845060520989296, 0.001065899656782016, 0.0035859679633027165, 0.0060138144286458195, 0.008289921319845869, 0.010358596338355043, 0.012169334985884152, 0.01367805324879071, 0.014848160522422897, 0.01565144667071293, 0.016068761725133097, 0.01609047185663239, 0.0157166807775033, 0.014957211510959738, 0.013831349362103413, 0.012367352789886227, 0.010601744571577303, 0.00857840102955967, 0.006347462023384735, 0.003964088777422741, 0.0014871003097710904, -0.0010224778383769964, -0.0035029167728239732, -0.005893302297866349, -0.008135030524631656, -0.010173244322677057, -0.011958175413308776, -0.013446359277576559, -0.014601693229142412, -0.015396311902883136, -0.01581125893718057, -0.0158369386691664, -0.01547333709304844, -0.014730007018010421, -0.013625818163939131, -0.012188478707671256, -0.010453840397743728, -0.008465004654331396, -0.006271251933469948, -0.0039268209420180444, -0.001489567937158992, 0.0009804607569779006, 0.0034225078028503587, 0.005776599048728849, 0.007985016134274239, 0.009993711351404286, 0.01175363008496115, 0.013221908482918276, 0.014362917122283454, 0.01514912526666108, 0.015561764759421884, 0.01559127755234534, 0.015237536210895197, 0.014509832332133389, 0.013426633521814398, 0.012015115262961428, 0.010310479529530386, 0.008355077220264368, 0.006197356281645716, 0.00389066163793881, 0.0014919166470259346, -0.0009397813342606426, -0.0033446166317085586, -0.005663526333004577, -0.007839650592711016, -0.009819726557275166, -0.011555391744804534, -0.0130043649918816, -0.01413147613728624, -0.014909519373670103, -0.015319909569623626, -0.015353125737739847, -0.015008931078796509, -0.014296364538302181, -0.013233504433751023, -0.011847010310674214, -0.010171454625439188, -0.008248460999282507, -0.006125670515331982, -0.003855561722788522, -0.0014941535679170478, 0.0009003766964703528, 0.0032691265311028126, 0.0055539167685768045, 0.007698720288068272, 0.00965103562990568, 0.0113631718797509, 0.012793413383655425, 0.013907035855790523, 0.014677149135446097, 0.015085346146991647, 0.015122142409512167, 0.014787195613167586, 0.014089300199438874, 0.013046157418718991, 0.01168392685501652, 0.010036570768324824, 0.00814500767903409, 0.006056096281334168, 0.0038214749100170414, 0.0014962852964667261, -0.0008621878502874215, -0.0031959278806493285, -0.0054476131094249956, -0.007562024500735143, -0.009487399569802346, -0.011176699311977477, -0.012588757156183593, -0.01368928188535334, -0.014451690096772446, -0.014857748000421564, -0.014898007068620149, -0.014572023139021235, -0.013888353909628899, -0.012864335217565165, -0.011525641928607123, -0.009905644548561236, -0.008044577670688067, -0.005988540973186719, -0.0037883575646898123, -0.001498317944330809, 0.0008251593882101772, 0.0031249176350564944, 0.005344467489871771, 0.007429374445238039, 0.009328593553228418, 0.01099571891622731, 0.01239011732871508, 0.013477918382556037, 0.014232836916291836, 0.014636807844256994, 0.014680418041143398, 0.014363124967141193, 0.01369325697440835, 0.012687795607829424, 0.011371945569670666, 0.009778503227204973, 0.007947039476913437, 0.005922917317570183, 0.0037561685165216764, 0.0015002571803482342, -0.0007892392203539142, -0.00305599883852761, -0.0052443407354430495, -0.007300592396315815, -0.009174405896575442, -0.010819990449348012, -0.012197231166414461, -0.01327266670491837, -0.014020301979428757, -0.01442223620659061, -0.014469091116130787, -0.014160229094615801, -0.013503756205283617, -0.012516310320976625, -0.011222639887424142, -0.009654983971142277, -0.007852269114008591, -0.005859142995939682, -0.0037248688884814903, -0.0015021082684972948, 0.0007543783299625474, 0.0029890801815565184, 0.005147101733607314, 0.007175510890671145, 0.00902463711022394, 0.010649287480762942, 0.012009851014782252, 0.013073264178693695, 0.01381381413037713, 0.014213760156853028, 0.014263758300036197, 0.013963079016428607, 0.013319612817118734, 0.012349664051856333, 0.01107753820692213, 0.009534933153084136, 0.007760149582860876, 0.005797140297899653, 0.0036944219394958186, 0.0015038761021002299, -0.0007205305502049192, -0.002924075595879741, -0.005052626858393404, -0.0070539719968784826, -0.008879099032985255, -0.010483396413877239, -0.011827743233000787, -0.01287946297109578, -0.013613117511392785, -0.014011122140930357, -0.014064166676264553, -0.013771432637189442, -0.013140601418286135, -0.012187653551363304, -0.010936464285577633, -0.00941820571009868, -0.007670570383973723, -0.005736835803278369, -0.00366479291990011, -0.001505565234712698, 0.0006876523601449177, 0.00286090388378893, 0.0049607994435985295, 0.006935826646738437, 0.008737614039244647, 0.01032211558951199, 0.01165068721655711, 0.012691029056767581, 0.013417970498948804, 0.01381407891335426, 0.013870077359622441, 0.01358506127329902, 0.012966509084608432, 0.01203008679424868, 0.010799251594458353, 0.009304664555034639, 0.007583427072353721, 0.005678160090151053, 0.0036359489384678225, 0.0015071799080418947, -0.0006557026979732587, -0.002799488378469224, -0.004871509299848556, -0.006820934022144984, -0.008600014311765478, -0.010165254463467898, -0.011478474500535086, -0.012507741269437883, -0.013228144727447802, -0.013622400557258236, -0.013681264536586484, -0.013403748736896341, -0.012797134509085466, -0.01187678221492805, -0.010665742658183706, -0.009194180035830985, -0.00749862084847184, -0.005621047466391402, -0.003607858839933144, -0.0015087240772337124, 0.0006246427898401269, 0.0027397566323579653, 0.004784652271327459, 0.0067091609921461235, 0.008466141173911168, 0.010012632851152684, 0.011310907935924272, 0.012329390430677602, 0.013043424192202443, 0.013435869583795883, 0.013497514583281578, 0.013227290493877985, 0.01263228722027037, 0.011727568004884567, 0.010535788447934154, 0.009086629438214764, 0.007416058181949052, 0.00556543572255255, 0.003580493092072516, 0.0015102014337905801, -0.0005944359927717659, -0.0026816401308817728, -0.00470012982840901, -0.0066003815954845954, -0.008335844475682933, -0.00986408023299002, -0.011147800932092089, -0.012155778548548051, -0.012863604424271008, -0.013254280103606731, -0.013318625253926769, -0.013055492889090718, -0.012471786862916317, -0.011582281465954499, -0.010409247822644397, -0.008981896527792336, -0.007335650464937203, -0.005511265904143077, -0.0035538236814692103, -0.0015116154263880575, 0.0005650476503559502, 0.002625074029175856, 0.004617848692860326, 0.006494476564373363, 0.008208982028594632, 0.009719435114967555, 0.01098897675931067, 0.011986718079678929, 0.012688491730525973, 0.013077437063691641, 0.013144404933265979, 0.012888172432530941, 0.012315462535176964, 0.01144076841438057, 0.010285987013979746, 0.008879871127927713, 0.007257313692511953, 0.005458482101529113, 0.0035278240172099684, 0.0015129692797900048, -0.0005364449599844065, -0.002569996909679064, -0.004537720492602471, -0.006391332885738158, -0.008085419084898076, -0.009578544439296014, -0.010834267905846674, -0.011822031249002064, -0.012517902493012715, -0.012905155543753462, -0.01297467194717528, -0.012725155141015774, -0.012163152177246664, -0.011302882631036643, -0.010165879151148737, -0.008780448730199682, -0.007180968167638807, -0.0054070312559075595, -0.003502468841801931, -0.0015142660120755424, 0.0005085968506047051, 0.002516350558681798, 0.004459661443360502, 0.006290843396517416, 0.007965027857164334, 0.009441263040645211, 0.010683515484707942, 0.011661549421945758, 0.012351662522275424, 0.012737260106664346, 0.012809253926231617, 0.012566275930364277, 0.012014702006836162, 0.011168485353712086, 0.01004880382199437, 0.008683530134531634, 0.007106538228550186, 0.005356862979918629, 0.0034777341487035773, 0.0015155084503307484, -0.00048147387000675127, -0.0024640797601373898, -0.004383592054774834, -0.006192906409989943, -0.007847687074605545, -0.0093074531439088, -0.010536568685619762, -0.011505112524436771, -0.012189606459857474, -0.012573584198265635, -0.01264798721755697, -0.012411378053621193, -0.011869965997356654, -0.011037444807740571, -0.009934646667183755, -0.008589021116394065, -0.00703395199656127, -0.005307929391640506, -0.0034535971058876984, -0.0015166992449763606, 0.00045504808080494644, 0.0024131321051841085, 0.0043094368588250075, 0.006097425370375175, 0.007733281572913899, 0.009176983899832552, 0.010393284268267678, 0.011352568506508866, 0.012031577225672833, 0.012413969592181787, 0.012490716340718397, 0.0122603125813083, 0.011728805395083586, 0.010909635771645183, 0.009823299004609742, 0.008496832118737259, 0.006963141142563334, 0.005260184960803945, 0.0034300359849442144, 0.0015178408828486465, -0.00042929296432670666, -0.0023634578160154794, -0.00423712415859844, -0.006004308533256249, -0.0076217019146873, -0.009049730955228595, -0.01025352609321708, -0.01120377284574724, -0.011877425506361262, -0.012258265875760156, -0.012337293483882128, -0.012112937920077005, -0.011591088271950845, -0.010784939174781327, -0.009714657481423113, -0.008406877966526699, -0.00689404067060509, -0.005213586366194846, -0.0034070300952478713, -0.00151893569917239, 0.0004041833317320204, 0.002315009582837331, 0.004166585795663758, 0.005913468669586753, 0.007512844037826396, 0.008925576054795938, 0.010117164687290837, 0.01105858808715264, 0.011727009281129073, 0.012106329973623976, 0.012187578036788896, 0.011969119366495626, 0.011456689110939219, 0.010663241724268918, 0.009608623751342376, 0.008319077601981749, 0.006826588717109863, 0.0051680923633116785, 0.0033845597227788226, 0.0015199858885156523, -0.0003796952417209309, -0.0022677424128073795, -0.004097756934445488, -0.005824822791289849, -0.007406608929514508, -0.008804406671879646, -0.00998407684047834, -0.010916883416353232, -0.011580193381905555, -0.01195802570566827, -0.01204143615744952, -0.011828728693012117, -0.011325488421326635, -0.010544435558748188, -0.009505104175134735, -0.008233353838774774, -0.006760726364439712, -0.005123663661415923, -0.003362606073222352, -0.0015209935148396514, 0.0003558059242827915, 0.002221613489926448, 0.004030575862183344, 0.005738291896619945, 0.007302902323647602, 0.008686115665733228, 0.009854145231748162, 0.010778534263371465, 0.011436849084956653, 0.01181322337662648, 0.011898740369753472, 0.01169164376342075, 0.011197372381315067, 0.010428417926743648, 0.009404009542339973, 0.008149633133637214, 0.006696397467611093, 0.00508026280922129, 0.003341151218990552, 0.0015219605207158697, -0.00033249370996061596, -0.0021765820449820453, -0.003964983803162525, -0.00565380073366025, -0.007201634419757122, -0.00857060096310209, -0.009727258081365882, -0.010643421934430644, -0.011296853731357609, -0.011671799394609888, -0.011759369189448235, -0.011557748175405612, -0.011072232505793696, -0.01031509088761188, -0.009305254812510079, -0.00806784537393949, -0.006633548493105717, -0.0050378540885072905, -0.00332017804986942, -0.0015228887357929956, 0.0003097379641832494, 0.002132609234697734, 0.0039009247460562724, 0.005571277580452986, 0.007102719621677949, 0.008457765262127215, 0.009603308827561241, 0.010511433269506563, 0.01116009037397745, 0.011533635916259543, 0.01162320677618236, 0.011426930927965387, 0.010949965337194096, 0.010204361033252212, 0.009208758874376458, 0.007987923679968019, 0.0065721283687898355, 0.004996403415038089, 0.003299670226990114, 0.0015237798845877746, -0.00028751902624220564, -0.0020896580293490383, -0.003838345283298632, -0.00549065404042726, -0.00700607629434954, -0.008347515756775607, -0.00948219582556923, -0.010382460323554851, -0.011026447448835167, -0.011398620516371472, -0.011490142609518077, -0.011299086111719097, -0.01083047215759177, -0.010096139228910174, -0.009114444321521939, -0.007909804220715057, -0.006512088344072049, -0.004955878246193867, -0.0032796121398813776, -0.0015246355936486423, 0.00026581815252941317, 0.0020476931081573504, 0.0037771944615355283, 0.005411864851883404, 0.006911626537311458, 0.00823976388014558, 0.009363822067268227, 0.010256400069519504, 0.010895818468891231, 0.011266645880046446, 0.0113600711870085, 0.011174112620279932, 0.010713658720364531, 0.009990340371570247, 0.009022237243243287, 0.007833426042127466, 0.00645338185948109, 0.004916247494804226, 0.0032599888663503917, 0.0015254573981639328, -0.0002446174637050831, -0.002006680761836088, -0.0037174236422587853, -0.0053348477104333165, -0.006819295973559219, -0.00813442506516627, -0.009248094919780498, -0.010133154121412417, -0.010768101738503401, -0.011137609515594709, -0.011232891742606404, -0.01105191388104099, -0.010599434999880308, -0.009886883164553559, -0.008932067029426978, -0.0077587309068310635, -0.006395964424944249, -0.004877481448689318, -0.003240786134992019, -0.0015262467480482893, 0.00022389989546712193, 0.001966588801736915, 0.0036589863718344637, 0.005259543103367455, 0.006729013552570935, 0.00803141852132107, 0.009134925881564053, 0.010012628475892515, 0.010643200086942263, 0.011011413486579361, 0.011108507983824576, 0.010932397603869465, 0.010487714957811752, 0.009785689907073791, 0.008843866188345628, 0.007685663144457024, 0.00633979350608419, 0.0048395516954862485, 0.0032219902901132642, 0.0015270050135687122, -0.00020364915265412223, -0.0019273864750659596, -0.0036018382601906906, -0.00518589415503449, -0.006640711366395806, -0.007930667026167472, -0.009024230354636906, -0.009894733270925042, -0.01052102061949433, -0.01088796416152825, -0.01098682784620731, -0.010815475546331858, -0.01037841632480821, -0.009686686297598708, -0.008757570176396957, -0.007614169511750057, -0.006284828417937068, -0.004802431052346535, -0.003203588258907899, -0.0015277334905348747, 0.00018384966640662659, 0.0018890443857169051, 0.0035459368674946967, 0.00511384648238484, 0.006554324477814246, 0.007832096730511445, 0.00891592743171094, 0.0097793825602118, 0.010401474484817446, 0.01076717197996795, 0.010867763263796957, 0.01070106329419811, 0.010271460396355445, 0.009589801249979152, 0.008673117238872902, 0.007544199061731474, 0.0062310302255206415, 0.004766093500153822, 0.0031855675207004695, 0.0015284334051064155, -0.00016448655416644695, -0.0018515344202770054, -0.003491241598222934, -0.0050433480599028115, -0.006469790759651679, -0.007735636976214574, -0.008809939697100646, -0.009666494102209426, -0.010284476657319522, -0.010648951233553383, -0.01075122995439325, -0.010589080056074333, -0.01016677184176389, -0.009494966721381806, -0.008590448260943039, -0.0074757030212299624, -0.006178361650754986, -0.004730514121913109, -0.0031679160781232906, -0.0015291059182347367, 0.00014554558228247226, 0.0018148296788304194, 0.0034377136020542084, 0.004974349093233294, 0.006387050744406665, 0.00764122012567864, 0.008706193040386213, 0.009555989162640333, 0.010169945733445008, 0.010533219861166827, 0.010637147218504657, 0.01047944847111701, 0.010064278525306006, 0.009402117551157869, 0.008509506628087186, 0.007408634676172836, 0.006126786985255266, 0.004695669045019289, 0.0031506224300722734, 0.00152975212978499, -0.00012701313104154568, -0.0017789044101855964, -0.0033853156810923096, -0.0049068019008445575, -0.006306047483438199, -0.007548781402151541, -0.008604616481879815, -0.009447792329506606, -0.010057803740838872, -0.010419899256959096, -0.010525437750984275, -0.010372094428864201, -0.00996391133861546, -0.009311191309838516, -0.008430238095294144, -0.007342949264059696, -0.0060762720085808086, -0.004661535387110025, -0.0031336755463287234, -0.001530373082350148, 0.0001088761619285668, 0.0017437339512144095, 0.00333401220293789, 0.004840660803149927, 0.006226726414999595, 0.007458258740058715, 0.008505142009038258, 0.009341831339686926, 0.009947975959452496, 0.010308914090387096, 0.010416027464426008, 0.010266946900304674, 0.00986560404352474, 0.009222128157529003, 0.008352590664382306, 0.007278603873109481, 0.006026783911534547, 0.004628091205258873, 0.0031170648437149825, 0.001530969764797153, -0.00009112218696606803, -0.0017092946699876987, -0.003283769019197351, -0.004775882018532973, -0.006149035240488571, -0.0073695926446301525, -0.008407704423026918, -0.009238036916283918, -0.009840390753724568, -0.010200192137384127, -0.010308845323473495, -0.010163937779373152, -0.009769293124595185, -0.009134870711019328, -0.008276514468868288, -0.007215557347592569, -0.0059782912241642, -0.004595315448258029, -0.00310078016369045, -0.001531543115552564, 0.0000737392399667339, 0.001675563912446815, 0.0032345533890227388, 0.004712423565792373, 0.0060729238083116685, 0.00728272606016411, 0.008312241194704922, 0.009136342615950489, 0.009734979415048518, 0.010093664121865643, 0.010203823189262884, 0.010063001734130994, 0.00967491765064457, 0.009049363918998405, 0.008201961665838864, 0.007153770198919874, 0.005930763748120867, 0.0045631879117862895, 0.0030848117512741317, 0.00153209402566305, -0.000056715849575066915, -0.001642519952343532, -0.0031863339073372196, -0.004650245172536397, -0.005998344004833064, -0.007197604246304405, -0.008218692329369866, -0.009036684685486062, -0.009631676013797021, -0.009989263566841785, -0.01010089567328384, -0.009964076066946442, -0.009582419144642727, -0.008965554944794535, -0.008128886334342557, -0.007093204522074692, -0.005884172493081779, -0.004531689196248325, -0.0030691502352163075, -0.0015326233416345881, 0.000040041013955833456, 0.001610141944230643, 0.003139080437401436, 0.004589308189120179, 0.005925249651897664, 0.007114174661777941, 0.00812700023963896, 0.008939001927057518, 0.009530417260232635, 0.00988692665446217, 0.01],"x":[-100.0,-99.95002498750625,-99.9000499750125,-99.85007496251875,-99.80009995002499,-99.75012493753124,-99.70014992503748,-99.65017491254373,-99.60019990004997,-99.55022488755623,-99.50024987506247,-99.45027486256872,-99.40029985007496,-99.35032483758121,-99.30034982508745,-99.2503748125937,-99.20039980009994,-99.1504247876062,-99.10044977511244,-99.05047476261869,-99.00049975012493,-98.95052473763118,-98.90054972513744,-98.85057471264368,-98.80059970014993,-98.75062468765617,-98.70064967516242,-98.65067466266866,-98.60069965017492,-98.55072463768116,-98.50074962518741,-98.45077461269365,-98.4007996001999,-98.35082458770614,-98.3008495752124,-98.25087456271864,-98.20089955022489,-98.15092453773113,-98.10094952523738,-98.05097451274362,-98.00099950024988,-97.95102448775611,-97.90104947526237,-97.85107446276862,-97.80109945027486,-97.75112443778112,-97.70114942528735,-97.65117441279361,-97.60119940029985,-97.5512243878061,-97.50124937531234,-97.4512743628186,-97.40129935032483,-97.35132433783109,-97.30134932533733,-97.25137431284358,-97.20139930034982,-97.15142428785607,-97.10144927536231,-97.05147426286857,-97.0014992503748,-96.95152423788106,-96.90154922538731,-96.85157421289355,-96.8015992003998,-96.75162418790605,-96.7016491754123,-96.65167416291854,-96.60169915042479,-96.55172413793103,-96.50174912543729,-96.45177411294353,-96.40179910044978,-96.35182408795602,-96.30184907546227,-96.25187406296851,-96.20189905047476,-96.151924037981,-96.10194902548726,-96.0519740129935,-96.00199900049975,-95.95202398800599,-95.90204897551224,-95.8520739630185,-95.80209895052474,-95.75212393803099,-95.70214892553723,-95.65217391304348,-95.60219890054972,-95.55222388805598,-95.50224887556222,-95.45227386306847,-95.40229885057471,-95.35232383808096,-95.3023488255872,-95.25237381309346,-95.2023988005997,-95.15242378810595,-95.10244877561219,-95.05247376311844,-95.00249875062468,-94.95252373813094,-94.90254872563717,-94.85257371314343,-94.80259870064968,-94.75262368815592,-94.70264867566218,-94.65267366316841,-94.60269865067467,-94.55272363818091,-94.50274862568716,-94.4527736131934,-94.40279860069965,-94.3528235882059,-94.30284857571215,-94.25287356321839,-94.20289855072464,-94.15292353823088,-94.10294852573713,-94.05297351324337,-94.00299850074963,-93.95302348825587,-93.90304847576212,-93.85307346326836,-93.80309845077461,-93.75312343828087,-93.7031484257871,-93.65317341329336,-93.6031984007996,-93.55322338830585,-93.50324837581209,-93.45327336331835,-93.40329835082458,-93.35332333833084,-93.30334832583708,-93.25337331334333,-93.20339830084957,-93.15342328835582,-93.10344827586206,-93.05347326336832,-93.00349825087456,-92.95352323838081,-92.90354822588705,-92.8535732133933,-92.80359820089954,-92.7536231884058,-92.70364817591205,-92.65367316341829,-92.60369815092454,-92.55372313843078,-92.50374812593704,-92.45377311344328,-92.40379810094953,-92.35382308845577,-92.30384807596202,-92.25387306346826,-92.20389805097452,-92.15392303848076,-92.10394802598701,-92.05397301349325,-92.0039980009995,-91.95402298850574,-91.904047976012,-91.85407296351823,-91.80409795102449,-91.75412293853073,-91.70414792603698,-91.65417291354323,-91.60419790104947,-91.55422288855573,-91.50424787606197,-91.45427286356822,-91.40429785107446,-91.35432283858071,-91.30434782608695,-91.2543728135932,-91.20439780109945,-91.1544227886057,-91.10444777611194,-91.0544727636182,-91.00449775112443,-90.95452273863069,-90.90454772613693,-90.85457271364318,-90.80459770114942,-90.75462268865567,-90.70464767616193,-90.65467266366817,-90.60469765117442,-90.55472263868066,-90.50474762618691,-90.45477261369315,-90.4047976011994,-90.35482258870564,-90.3048475762119,-90.25487256371814,-90.20489755122439,-90.15492253873063,-90.10494752623688,-90.05497251374312,-90.00499750124938,-89.95502248875562,-89.90504747626187,-89.85507246376811,-89.80509745127436,-89.7551224387806,-89.70514742628686,-89.65517241379311,-89.60519740129935,-89.5552223888056,-89.50524737631184,-89.4552723638181,-89.40529735132434,-89.35532233883059,-89.30534732633683,-89.25537231384308,-89.20539730134932,-89.15542228885558,-89.10544727636182,-89.05547226386807,-89.00549725137431,-88.95552223888056,-88.9055472263868,-88.85557221389305,-88.8055972013993,-88.75562218890555,-88.70564717641179,-88.65567216391804,-88.6056971514243,-88.55572213893053,-88.50574712643679,-88.45577211394303,-88.40579710144928,-88.35582208895552,-88.30584707646177,-88.25587206396801,-88.20589705147427,-88.1559220389805,-88.10594702648676,-88.055972013993,-88.00599700149925,-87.95602198900549,-87.90604697651175,-87.85607196401799,-87.80609695152424,-87.75612193903048,-87.70614692653673,-87.65617191404297,-87.60619690154923,-87.55622188905548,-87.50624687656172,-87.45627186406797,-87.40629685157421,-87.35632183908046,-87.3063468265867,-87.25637181409296,-87.2063968015992,-87.15642178910545,-87.10644677661169,-87.05647176411794,-87.00649675162418,-86.95652173913044,-86.90654672663668,-86.85657171414293,-86.80659670164917,-86.75662168915542,-86.70664667666166,-86.65667166416792,-86.60669665167416,-86.55672163918041,-86.50674662668666,-86.4567716141929,-86.40679660169916,-86.3568215892054,-86.30684657671165,-86.25687156421789,-86.20689655172414,-86.15692153923038,-86.10694652673664,-86.05697151424287,-86.00699650174913,-85.95702148925537,-85.90704647676162,-85.85707146426786,-85.80709645177411,-85.75712143928035,-85.70714642678661,-85.65717141429285,-85.6071964017991,-85.55722138930535,-85.5072463768116,-85.45727136431785,-85.40729635182409,-85.35732133933034,-85.30734632683658,-85.25737131434283,-85.20739630184907,-85.15742128935533,-85.10744627686157,-85.05747126436782,-85.00749625187406,-84.95752123938031,-84.90754622688655,-84.8575712143928,-84.80759620189905,-84.7576211894053,-84.70764617691154,-84.65767116441779,-84.60769615192403,-84.55772113943029,-84.50774612693654,-84.45777111444278,-84.40779610194903,-84.35782108945527,-84.30784607696152,-84.25787106446776,-84.20789605197402,-84.15792103948026,-84.10794602698651,-84.05797101449275,-84.007996001999,-83.95802098950524,-83.9080459770115,-83.85807096451774,-83.80809595202399,-83.75812093953023,-83.70814592703648,-83.65817091454272,-83.60819590204898,-83.55822088955522,-83.50824587706147,-83.45827086456772,-83.40829585207396,-83.35832083958022,-83.30834582708646,-83.25837081459271,-83.20839580209895,-83.1584207896052,-83.10844577711144,-83.0584707646177,-83.00849575212393,-82.95852073963019,-82.90854572713643,-82.85857071464268,-82.80859570214892,-82.75862068965517,-82.70864567716141,-82.65867066466767,-82.6086956521739,-82.55872063968016,-82.5087456271864,-82.45877061469265,-82.40879560219891,-82.35882058970515,-82.3088455772114,-82.25887056471764,-82.2088955522239,-82.15892053973013,-82.10894552723639,-82.05897051474263,-82.00899550224888,-81.95902048975512,-81.90904547726137,-81.85907046476761,-81.80909545227387,-81.7591204397801,-81.70914542728636,-81.6591704147926,-81.60919540229885,-81.55922038980509,-81.50924537731134,-81.45927036481758,-81.40929535232384,-81.35932033983009,-81.30934532733633,-81.25937031484258,-81.20939530234882,-81.15942028985508,-81.10944527736132,-81.05947026486757,-81.00949525237381,-80.95952023988006,-80.9095452273863,-80.85957021489256,-80.8095952023988,-80.75962018990505,-80.70964517741129,-80.65967016491754,-80.60969515242378,-80.55972013993004,-80.50974512743628,-80.45977011494253,-80.40979510244878,-80.35982008995502,-80.30984507746128,-80.25987006496752,-80.20989505247377,-80.15992003998001,-80.10994502748626,-80.0599700149925,-80.00999500249875,-79.960019990005,-79.91004497751125,-79.86006996501749,-79.81009495252374,-79.76011994002998,-79.71014492753623,-79.66016991504247,-79.61019490254873,-79.56021989005497,-79.51024487756122,-79.46026986506746,-79.41029485257371,-79.36031984007997,-79.3103448275862,-79.26036981509246,-79.2103948025987,-79.16041979010495,-79.11044477761119,-79.06046976511745,-79.01049475262369,-78.96051974012994,-78.91054472763618,-78.86056971514243,-78.81059470264867,-78.76061969015493,-78.71064467766116,-78.66066966516742,-78.61069465267366,-78.56071964017991,-78.51074462768615,-78.4607696151924,-78.41079460269864,-78.3608195902049,-78.31084457771115,-78.26086956521739,-78.21089455272364,-78.16091954022988,-78.11094452773614,-78.06096951524238,-78.01099450274863,-77.96101949025487,-77.91104447776112,-77.86106946526736,-77.81109445277362,-77.76111944027986,-77.71114442778611,-77.66116941529235,-77.6111944027986,-77.56121939030484,-77.5112443778111,-77.46126936531734,-77.41129435282359,-77.36131934032983,-77.31134432783608,-77.26136931534234,-77.21139430284857,-77.16141929035483,-77.11144427786107,-77.06146926536732,-77.01149425287356,-76.96151924037981,-76.91154422788605,-76.86156921539231,-76.81159420289855,-76.7616191904048,-76.71164417791104,-76.6616691654173,-76.61169415292353,-76.56171914042979,-76.51174412793603,-76.46176911544228,-76.41179410294852,-76.36181909045477,-76.31184407796101,-76.26186906546727,-76.21189405297352,-76.16191904047976,-76.11194402798601,-76.06196901549225,-76.0119940029985,-75.96201899050475,-75.912043978011,-75.86206896551724,-75.81209395302349,-75.76211894052973,-75.71214392803599,-75.66216891554222,-75.61219390304848,-75.56221889055472,-75.51224387806097,-75.46226886556721,-75.41229385307346,-75.3623188405797,-75.31234382808596,-75.2623688155922,-75.21239380309845,-75.1624187906047,-75.11244377811094,-75.0624687656172,-75.01249375312344,-74.96251874062969,-74.91254372813593,-74.86256871564218,-74.81259370314842,-74.76261869065468,-74.71264367816092,-74.66266866566717,-74.61269365317341,-74.56271864067966,-74.5127436281859,-74.46276861569216,-74.4127936031984,-74.36281859070465,-74.31284357821089,-74.26286856571714,-74.2128935532234,-74.16291854072963,-74.11294352823589,-74.06296851574213,-74.01299350324838,-73.96301849075462,-73.91304347826087,-73.86306846576711,-73.81309345327337,-73.7631184407796,-73.71314342828586,-73.6631684157921,-73.61319340329835,-73.5632183908046,-73.51324337831085,-73.46326836581709,-73.41329335332334,-73.36331834082958,-73.31334332833583,-73.26336831584207,-73.21339330334833,-73.16341829085458,-73.11344327836082,-73.06346826586707,-73.01349325337331,-72.96351824087957,-72.9135432283858,-72.86356821589206,-72.8135932033983,-72.76361819090455,-72.71364317841079,-72.66366816591704,-72.61369315342328,-72.56371814092954,-72.51374312843578,-72.46376811594203,-72.41379310344827,-72.36381809095452,-72.31384307846076,-72.26386806596702,-72.21389305347326,-72.16391804097951,-72.11394302848576,-72.063968015992,-72.01399300349826,-71.9640179910045,-71.91404297851075,-71.86406796601699,-71.81409295352324,-71.76411794102948,-71.71414292853574,-71.66416791604198,-71.61419290354823,-71.56421789105447,-71.51424287856072,-71.46426786606696,-71.41429285357322,-71.36431784107945,-71.31434282858571,-71.26436781609195,-71.2143928035982,-71.16441779110444,-71.1144427786107,-71.06446776611695,-71.01449275362319,-70.96451774112944,-70.91454272863568,-70.86456771614193,-70.81459270364817,-70.76461769115443,-70.71464267866067,-70.66466766616692,-70.61469265367316,-70.56471764117941,-70.51474262868565,-70.4647676161919,-70.41479260369815,-70.3648175912044,-70.31484257871064,-70.26486756621689,-70.21489255372313,-70.16491754122939,-70.11494252873563,-70.06496751624188,-70.01499250374813,-69.96501749125437,-69.91504247876063,-69.86506746626686,-69.81509245377312,-69.76511744127936,-69.71514242878561,-69.66516741629185,-69.6151924037981,-69.56521739130434,-69.5152423788106,-69.46526736631684,-69.41529235382309,-69.36531734132933,-69.31534232883558,-69.26536731634182,-69.21539230384808,-69.16541729135432,-69.11544227886057,-69.06546726636682,-69.01549225387306,-68.96551724137932,-68.91554222888556,-68.86556721639181,-68.81559220389805,-68.7656171914043,-68.71564217891054,-68.6656671664168,-68.61569215392304,-68.56571714142929,-68.51574212893553,-68.46576711644178,-68.41579210394802,-68.36581709145428,-68.31584207896051,-68.26586706646677,-68.21589205397301,-68.16591704147926,-68.1159420289855,-68.06596701649175,-68.01599200399801,-67.96601699150425,-67.9160419790105,-67.86606696651674,-67.816091954023,-67.76611694152923,-67.71614192903549,-67.66616691654173,-67.61619190404798,-67.56621689155422,-67.51624187906047,-67.46626686656671,-67.41629185407297,-67.3663168415792,-67.31634182908546,-67.2663668165917,-67.21639180409795,-67.16641679160419,-67.11644177911045,-67.06646676661668,-67.01649175412294,-66.96651674162919,-66.91654172913543,-66.86656671664169,-66.81659170414792,-66.76661669165418,-66.71664167916042,-66.66666666666667,-66.61669165417291,-66.56671664167916,-66.5167416291854,-66.46676661669166,-66.4167916041979,-66.36681659170415,-66.31684157921039,-66.26686656671664,-66.21689155422288,-66.16691654172914,-66.11694152923538,-66.06696651674163,-66.01699150424787,-65.96701649175412,-65.91704147926038,-65.86706646676662,-65.81709145427287,-65.76711644177911,-65.71714142928536,-65.6671664167916,-65.61719140429786,-65.5672163918041,-65.51724137931035,-65.46726636681659,-65.41729135432284,-65.36731634182908,-65.31734132933533,-65.26736631684157,-65.21739130434783,-65.16741629185407,-65.11744127936032,-65.06746626686656,-65.01749125437281,-64.96751624187905,-64.91754122938531,-64.86756621689156,-64.8175912043978,-64.76761619190405,-64.7176411794103,-64.66766616691655,-64.61769115442279,-64.56771614192904,-64.51774112943528,-64.46776611694153,-64.41779110444777,-64.36781609195403,-64.31784107946027,-64.26786606696652,-64.21789105447276,-64.16791604197901,-64.11794102948525,-64.0679660169915,-64.01799100449774,-63.968015992004,-63.918040979510245,-63.86806596701649,-63.81809095452274,-63.768115942028984,-63.71814092953523,-63.66816591704148,-63.618190904547724,-63.56821589205397,-63.51824087956022,-63.468265867066464,-63.41829085457271,-63.368315842078964,-63.31834082958521,-63.26836581709146,-63.2183908045977,-63.16841579210395,-63.1184407796102,-63.06846576711644,-63.01849075462269,-62.968515742128936,-62.91854072963518,-62.86856571714143,-62.818590704647676,-62.76861569215392,-62.71864067966017,-62.668665667166415,-62.61869065467266,-62.56871564217891,-62.518740629685155,-62.4687656171914,-62.41879060469765,-62.3688155922039,-62.31884057971015,-62.268865567216395,-62.21889055472264,-62.16891554222889,-62.118940529735134,-62.06896551724138,-62.01899050474763,-61.969015492253874,-61.91904047976012,-61.86906546726637,-61.81909045477261,-61.76911544227886,-61.71914042978511,-61.66916541729135,-61.6191904047976,-61.569215392303846,-61.51924037981009,-61.46926536731634,-61.419290354822586,-61.36931534232883,-61.319340329835086,-61.26936531734133,-61.21939030484758,-61.169415292353825,-61.11944027986007,-61.06946526736632,-61.019490254872565,-60.96951524237881,-60.91954022988506,-60.869565217391305,-60.81959020489755,-60.7696151924038,-60.719640179910044,-60.66966516741629,-60.61969015492254,-60.569715142428784,-60.51974012993503,-60.46976511744128,-60.41979010494752,-60.36981509245377,-60.31984007996002,-60.26986506746627,-60.21989005497252,-60.16991504247876,-60.11994002998501,-60.069965017491256,-60.0199900049975,-59.97001499250375,-59.920039980009996,-59.87006496751624,-59.82008995502249,-59.770114942528735,-59.72013993003498,-59.67016491754123,-59.620189905047475,-59.57021489255372,-59.52023988005997,-59.470264867566215,-59.42028985507246,-59.37031484257871,-59.320339830084954,-59.27036481759121,-59.220389805097454,-59.1704147926037,-59.12043978010995,-59.070464767616194,-59.02048975512244,-58.97051474262869,-58.920539730134934,-58.87056471764118,-58.82058970514743,-58.77061469265367,-58.72063968015992,-58.670664667666166,-58.62068965517241,-58.57071464267866,-58.520739630184906,-58.47076461769115,-58.4207896051974,-58.370814592703645,-58.32083958020989,-58.27086456771614,-58.22088955522239,-58.17091454272864,-58.120939530234885,-58.07096451774113,-58.02098950524738,-57.971014492753625,-57.92103948025987,-57.87106446776612,-57.821089455272364,-57.77111444277861,-57.72113943028486,-57.671164417791104,-57.62118940529735,-57.5712143928036,-57.521239380309844,-57.47126436781609,-57.42128935532234,-57.37131434282858,-57.32133933033483,-57.271364317841076,-57.22138930534732,-57.17141429285358,-57.12143928035982,-57.07146426786607,-57.021489255372316,-56.97151424287856,-56.92153923038481,-56.871564217891056,-56.8215892053973,-56.77161419290355,-56.721639180409795,-56.67166416791604,-56.62168915542229,-56.571714142928535,-56.52173913043478,-56.47176411794103,-56.421789105447274,-56.37181409295352,-56.32183908045977,-56.271864067966014,-56.22188905547226,-56.171914042978514,-56.12193903048476,-56.07196401799101,-56.021989005497254,-55.9720139930035,-55.92203898050975,-55.87206396801599,-55.82208895552224,-55.77211394302849,-55.72213893053473,-55.67216391804098,-55.622188905547226,-55.57221389305347,-55.52223888055972,-55.472263868065966,-55.42228885557221,-55.37231384307846,-55.322338830584705,-55.27236381809095,-55.2223888055972,-55.172413793103445,-55.1224387806097,-55.072463768115945,-55.02248875562219,-54.97251374312844,-54.922538730634685,-54.87256371814093,-54.82258870564718,-54.772613693153424,-54.72263868065967,-54.67266366816592,-54.622688655672164,-54.57271364317841,-54.52273863068466,-54.4727636181909,-54.42278860569715,-54.3728135932034,-54.32283858070964,-54.27286356821589,-54.222888555722136,-54.17291354322838,-54.122938530734636,-54.07296351824088,-54.02298850574713,-53.973013493253376,-53.92303848075962,-53.87306346826587,-53.823088455772115,-53.77311344327836,-53.72313843078461,-53.673163418290855,-53.6231884057971,-53.57321339330335,-53.523238380809595,-53.47326336831584,-53.42328835582209,-53.373313343328334,-53.32333833083458,-53.27336331834083,-53.223388305847074,-53.17341329335332,-53.12343828085957,-53.07346326836582,-53.02348825587207,-52.973513243378314,-52.92353823088456,-52.87356321839081,-52.82358820589705,-52.7736131934033,-52.723638180909546,-52.67366316841579,-52.62368815592204,-52.573713143428286,-52.52373813093453,-52.47376311844078,-52.423788105947025,-52.37381309345327,-52.32383808095952,-52.273863068465765,-52.22388805597201,-52.17391304347826,-52.123938030984505,-52.07396301849075,-52.023988005997005,-51.97401299350325,-51.9240379810095,-51.874062968515744,-51.82408795602199,-51.77411294352824,-51.724137931034484,-51.67416291854073,-51.62418790604698,-51.574212893553224,-51.52423788105947,-51.47426286856572,-51.42428785607196,-51.37431284357821,-51.324337831084456,-51.2743628185907,-51.22438780609695,-51.174412793603196,-51.12443778110944,-51.07446276861569,-51.02448775612194,-50.97451274362819,-50.924537731134436,-50.87456271864068,-50.82458770614693,-50.774612693653175,-50.72463768115942,-50.67466266866567,-50.624687656171915,-50.57471264367816,-50.52473763118441,-50.474762618690654,-50.4247876061969,-50.37481259370315,-50.324837581209394,-50.27486256871564,-50.22488755622189,-50.174912543728134,-50.12493753123438,-50.07496251874063,-50.02498750624687,-49.97501249375313,-49.92503748125937,-49.87506246876562,-49.825087456271866,-49.77511244377811,-49.72513743128436,-49.675162418790606,-49.62518740629685,-49.5752123938031,-49.525237381309346,-49.47526236881559,-49.42528735632184,-49.375312343828085,-49.32533733133433,-49.27536231884058,-49.225387306346825,-49.17541229385307,-49.12543728135932,-49.075462268865564,-49.02548725637181,-48.97551224387806,-48.92553723138431,-48.87556221889056,-48.825587206396804,-48.77561219390305,-48.7256371814093,-48.675662168915544,-48.62568715642179,-48.57571214392804,-48.52573713143428,-48.47576211894053,-48.425787106446776,-48.37581209395302,-48.32583708145927,-48.275862068965516,-48.22588705647176,-48.17591204397801,-48.125937031484256,-48.0759620189905,-48.02598700649675,-47.976011994002995,-47.92603698150925,-47.876061969015495,-47.82608695652174,-47.77611194402799,-47.726136931534235,-47.67616191904048,-47.62618690654673,-47.576211894052975,-47.52623688155922,-47.47626186906547,-47.426286856571714,-47.37631184407796,-47.32633683158421,-47.276361819090454,-47.2263868065967,-47.17641179410295,-47.12643678160919,-47.07646176911544,-47.026486756621686,-46.97651174412793,-46.92653673163418,-46.87656171914043,-46.82658670664668,-46.776611694152926,-46.72663668165917,-46.67666166916542,-46.626686656671666,-46.57671164417791,-46.52673663168416,-46.476761619190405,-46.42678660669665,-46.3768115942029,-46.326836581709145,-46.27686156921539,-46.22688655672164,-46.176911544227885,-46.12693653173413,-46.07696151924038,-46.026986506746624,-45.97701149425287,-45.92703648175912,-45.877061469265364,-45.82708645677162,-45.777111444277864,-45.72713643178411,-45.67716141929036,-45.6271864067966,-45.57721139430285,-45.5272363818091,-45.47726136931534,-45.42728635682159,-45.377311344327836,-45.32733633183408,-45.27736131934033,-45.227386306846576,-45.17741129435282,-45.12743628185907,-45.077461269365315,-45.02748625687156,-44.97751124437781,-44.927536231884055,-44.8775612193903,-44.827586206896555,-44.7776111944028,-44.72763618190905,-44.677661169415295,-44.62768615692154,-44.57771114442779,-44.527736131934034,-44.47776111944028,-44.42778610694653,-44.377811094452774,-44.32783608195902,-44.27786106946527,-44.22788605697151,-44.17791104447776,-44.12793603198401,-44.07796101949025,-44.0279860069965,-43.978010994502746,-43.92803598200899,-43.87806096951524,-43.828085957021486,-43.77811094452774,-43.728135932033986,-43.67816091954023,-43.62818590704648,-43.578210894552726,-43.52823588205897,-43.47826086956522,-43.428285857071465,-43.37831084457771,-43.32833583208396,-43.278360819590205,-43.22838580709645,-43.1784107946027,-43.128435782108944,-43.07846076961519,-43.02848575712144,-42.978510744627684,-42.92853573213393,-42.87856071964018,-42.82858570714642,-42.77861069465268,-42.728635682158924,-42.67866066966517,-42.62868565717142,-42.57871064467766,-42.52873563218391,-42.478760619690156,-42.4287856071964,-42.37881059470265,-42.328835582208896,-42.27886056971514,-42.22888555722139,-42.178910544727636,-42.12893553223388,-42.07896051974013,-42.028985507246375,-41.97901049475262,-41.92903548225887,-41.879060469765115,-41.82908545727136,-41.77911044477761,-41.72913543228386,-41.67916041979011,-41.629185407296355,-41.5792103948026,-41.52923538230885,-41.479260369815094,-41.42928535732134,-41.37931034482759,-41.329335332333834,-41.27936031984008,-41.22938530734633,-41.17941029485257,-41.12943528235882,-41.079460269865066,-41.02948525737131,-40.97951024487756,-40.929535232383806,-40.87956021989005,-40.8295852073963,-40.779610194902546,-40.72963518240879,-40.679660169915046,-40.62968515742129,-40.57971014492754,-40.529735132433785,-40.47976011994003,-40.42978510744628,-40.379810094952525,-40.32983508245877,-40.27986006996502,-40.229885057471265,-40.17991004497751,-40.12993503248376,-40.079960019990004,-40.02998500749625,-39.9800099950025,-39.930034982508744,-39.88005997001499,-39.83008495752124,-39.78010994502748,-39.73013493253373,-39.68015992003998,-39.63018490754623,-39.58020989505248,-39.53023488255872,-39.48025987006497,-39.430284857571216,-39.38030984507746,-39.33033483258371,-39.280359820089956,-39.2303848075962,-39.18040979510245,-39.130434782608695,-39.08045977011494,-39.03048475762119,-38.980509745127435,-38.93053473263368,-38.88055972013993,-38.830584707646175,-38.78060969515242,-38.73063468265867,-38.680659670164914,-38.63068465767117,-38.580709645177414,-38.53073463268366,-38.48075962018991,-38.430784607696154,-38.3808095952024,-38.33083458270865,-38.28085957021489,-38.23088455772114,-38.18090954522739,-38.13093453273363,-38.08095952023988,-38.030984507746126,-37.98100949525237,-37.93103448275862,-37.881059470264866,-37.83108445777111,-37.78110944527736,-37.731134432783605,-37.68115942028985,-37.6311844077961,-37.58120939530235,-37.5312343828086,-37.481259370314845,-37.43128435782109,-37.38130934532734,-37.331334332833585,-37.28135932033983,-37.23138430784608,-37.181409295352324,-37.13143428285857,-37.08145927036482,-37.031484257871064,-36.98150924537731,-36.93153423288356,-36.8815592203898,-36.83158420789605,-36.7816091954023,-36.73163418290854,-36.68165917041479,-36.631684157921036,-36.58170914542729,-36.531734132933536,-36.48175912043978,-36.43178410794603,-36.381809095452276,-36.33183408295852,-36.28185907046477,-36.231884057971016,-36.18190904547726,-36.13193403298351,-36.081959020489755,-36.031984007996,-35.98200899550225,-35.932033983008495,-35.88205897051474,-35.83208395802099,-35.782108945527234,-35.73213393303348,-35.68215892053973,-35.632183908045974,-35.58220889555222,-35.532233883058474,-35.48225887056472,-35.43228385807097,-35.382308845577214,-35.33233383308346,-35.28235882058971,-35.23238380809595,-35.1824087956022,-35.132433783108446,-35.08245877061469,-35.03248375812094,-34.982508745627186,-34.93253373313343,-34.88255872063968,-34.832583708145926,-34.78260869565217,-34.73263368315842,-34.682658670664665,-34.63268365817091,-34.58270864567716,-34.53273363318341,-34.48275862068966,-34.432783608195905,-34.38280859570215,-34.3328335832084,-34.282858570714644,-34.23288355822089,-34.18290854572714,-34.132933533233384,-34.08295852073963,-34.03298350824588,-33.983008495752124,-33.93303348325837,-33.88305847076462,-33.83308345827086,-33.78310844577711,-33.733133433283356,-33.6831584207896,-33.63318340829585,-33.583208395802096,-33.53323338330834,-33.483258370814596,-33.43328335832084,-33.38330834582709,-33.333333333333336,-33.28335832083958,-33.23338330834583,-33.183408295852075,-33.13343328335832,-33.08345827086457,-33.033483258370815,-32.98350824587706,-32.93353323338331,-32.883558220889554,-32.8335832083958,-32.78360819590205,-32.733633183408294,-32.68365817091454,-32.63368315842079,-32.583708145927034,-32.53373313343328,-32.48375812093953,-32.43378310844578,-32.38380809595203,-32.33383308345827,-32.28385807096452,-32.23388305847077,-32.18390804597701,-32.13393303348326,-32.083958020989506,-32.03398300849575,-31.984007996002,-31.934032983508246,-31.884057971014492,-31.83408295852074,-31.784107946026985,-31.734132933533232,-31.684157921039482,-31.63418290854573,-31.584207896051975,-31.53423288355822,-31.484257871064468,-31.434282858570715,-31.38430784607696,-31.334332833583208,-31.284357821089454,-31.2343828085957,-31.18440779610195,-31.134432783608197,-31.084457771114444,-31.03448275862069,-30.984507746126937,-30.934532733633183,-30.88455772113943,-30.834582708645677,-30.784607696151923,-30.73463268365817,-30.684657671164416,-30.634682658670666,-30.584707646176913,-30.53473263368316,-30.484757621189406,-30.434782608695652,-30.3848075962019,-30.334832583708145,-30.284857571214392,-30.23488255872064,-30.184907546226885,-30.134932533733135,-30.08495752123938,-30.034982508745628,-29.985007496251875,-29.93503248375812,-29.885057471264368,-29.835082458770614,-29.78510744627686,-29.735132433783107,-29.685157421289354,-29.635182408795604,-29.58520739630185,-29.535232383808097,-29.485257371314344,-29.43528235882059,-29.385307346326837,-29.335332333833083,-29.28535732133933,-29.235382308845576,-29.185407296351823,-29.13543228385807,-29.08545727136432,-29.035482258870566,-28.985507246376812,-28.93553223388306,-28.885557221389305,-28.835582208895552,-28.7856071964018,-28.735632183908045,-28.68565717141429,-28.635682158920538,-28.58570714642679,-28.535732133933035,-28.48575712143928,-28.435782108945528,-28.385807096451774,-28.33583208395802,-28.285857071464267,-28.235882058970514,-28.18590704647676,-28.135932033983007,-28.085957021489257,-28.035982008995504,-27.98600699650175,-27.936031984007997,-27.886056971514243,-27.83608195902049,-27.786106946526736,-27.736131934032983,-27.68615692153923,-27.636181909045476,-27.586206896551722,-27.536231884057973,-27.48625687156422,-27.436281859070466,-27.386306846576712,-27.33633183408296,-27.286356821589205,-27.23638180909545,-27.1864067966017,-27.136431784107945,-27.08645677161419,-27.03648175912044,-26.986506746626688,-26.936531734132934,-26.88655672163918,-26.836581709145428,-26.786606696651674,-26.73663168415792,-26.686656671664167,-26.636681659170414,-26.58670664667666,-26.53673163418291,-26.486756621689157,-26.436781609195403,-26.38680659670165,-26.336831584207896,-26.286856571714143,-26.23688155922039,-26.186906546726636,-26.136931534232883,-26.08695652173913,-26.036981509245376,-25.987006496751626,-25.937031484257872,-25.88705647176412,-25.837081459270365,-25.787106446776612,-25.73713143428286,-25.687156421789105,-25.63718140929535,-25.587206396801598,-25.537231384307844,-25.487256371814095,-25.43728135932034,-25.387306346826588,-25.337331334332834,-25.28735632183908,-25.237381309345327,-25.187406296851574,-25.13743128435782,-25.087456271864067,-25.037481259370313,-24.987506246876563,-24.93753123438281,-24.887556221889056,-24.837581209395303,-24.78760619690155,-24.737631184407796,-24.687656171914043,-24.63768115942029,-24.587706146926536,-24.537731134432782,-24.48775612193903,-24.43778110944528,-24.387806096951525,-24.337831084457772,-24.28785607196402,-24.237881059470265,-24.18790604697651,-24.137931034482758,-24.087956021989005,-24.03798100949525,-23.988005997001498,-23.938030984507748,-23.888055972013994,-23.83808095952024,-23.788105947026487,-23.738130934532734,-23.68815592203898,-23.638180909545227,-23.588205897051473,-23.53823088455772,-23.488255872063966,-23.438280859570217,-23.388305847076463,-23.33833083458271,-23.288355822088956,-23.238380809595203,-23.18840579710145,-23.138430784607696,-23.088455772113942,-23.03848075962019,-22.988505747126435,-22.938530734632682,-22.888555722138932,-22.83858070964518,-22.788605697151425,-22.73863068465767,-22.688655672163918,-22.638680659670165,-22.58870564717641,-22.538730634682658,-22.488755622188904,-22.43878060969515,-22.3888055972014,-22.338830584707647,-22.288855572213894,-22.23888055972014,-22.188905547226387,-22.138930534732634,-22.08895552223888,-22.038980509745127,-21.989005497251373,-21.93903048475762,-21.88905547226387,-21.839080459770116,-21.789105447276363,-21.73913043478261,-21.689155422288856,-21.639180409795102,-21.58920539730135,-21.539230384807595,-21.489255372313842,-21.43928035982009,-21.38930534732634,-21.339330334832585,-21.28935532233883,-21.239380309845078,-21.189405297351325,-21.13943028485757,-21.089455272363818,-21.039480259870064,-20.98950524737631,-20.939530234882557,-20.889555222388804,-20.839580209895054,-20.7896051974013,-20.739630184907547,-20.689655172413794,-20.63968015992004,-20.589705147426287,-20.539730134932533,-20.48975512243878,-20.439780109945026,-20.389805097451273,-20.339830084957523,-20.28985507246377,-20.239880059970016,-20.189905047476262,-20.13993003498251,-20.089955022488756,-20.039980009995002,-19.99000499750125,-19.940029985007495,-19.89005497251374,-19.84007996001999,-19.79010494752624,-19.740129935032485,-19.69015492253873,-19.640179910044978,-19.590204897551224,-19.54022988505747,-19.490254872563717,-19.440279860069964,-19.39030484757621,-19.340329835082457,-19.290354822588707,-19.240379810094954,-19.1904047976012,-19.140429785107447,-19.090454772613693,-19.04047976011994,-18.990504747626186,-18.940529735132433,-18.89055472263868,-18.840579710144926,-18.790604697651176,-18.740629685157423,-18.69065467266367,-18.640679660169916,-18.590704647676162,-18.54072963518241,-18.490754622688655,-18.4407796101949,-18.39080459770115,-18.340829585207395,-18.290854572713645,-18.24087956021989,-18.190904547726138,-18.140929535232384,-18.09095452273863,-18.040979510244878,-17.991004497751124,-17.94102948525737,-17.891054472763617,-17.841079460269864,-17.79110444777611,-17.74112943528236,-17.691154422788607,-17.641179410294853,-17.5912043978011,-17.541229385307346,-17.491254372813593,-17.44127936031984,-17.391304347826086,-17.341329335332333,-17.29135432283858,-17.24137931034483,-17.191404297851076,-17.141429285357322,-17.09145427286357,-17.041479260369815,-16.991504247876062,-16.94152923538231,-16.891554222888555,-16.8415792103948,-16.791604197901048,-16.741629185407298,-16.691654172913545,-16.64167916041979,-16.591704147926038,-16.541729135432284,-16.49175412293853,-16.441779110444777,-16.391804097951024,-16.34182908545727,-16.291854072963517,-16.241879060469763,-16.191904047976013,-16.14192903548226,-16.091954022988507,-16.041979010494753,-15.992003998001,-15.942028985507246,-15.892053973013493,-15.842078960519741,-15.792103948025987,-15.742128935532234,-15.69215392303848,-15.642178910544727,-15.592203898050975,-15.542228885557222,-15.492253873063468,-15.442278860569715,-15.392303848075962,-15.342328835582208,-15.292353823088456,-15.242378810594703,-15.19240379810095,-15.142428785607196,-15.092453773113442,-15.04247876061969,-14.992503748125937,-14.942528735632184,-14.89255372313843,-14.842578710644677,-14.792603698150925,-14.742628685657172,-14.692653673163418,-14.642678660669665,-14.592703648175911,-14.54272863568216,-14.492753623188406,-14.442778610694653,-14.3928035982009,-14.342828585707146,-14.292853573213394,-14.24287856071964,-14.192903548225887,-14.142928535732134,-14.09295352323838,-14.042978510744629,-13.993003498250875,-13.943028485757122,-13.893053473263368,-13.843078460769615,-13.793103448275861,-13.74312843578211,-13.693153423288356,-13.643178410794603,-13.59320339830085,-13.543228385807096,-13.493253373313344,-13.44327836081959,-13.393303348325837,-13.343328335832084,-13.29335332333833,-13.243378310844578,-13.193403298350825,-13.143428285857071,-13.093453273363318,-13.043478260869565,-12.993503248375813,-12.94352823588206,-12.893553223388306,-12.843578210894552,-12.793603198400799,-12.743628185907047,-12.693653173413294,-12.64367816091954,-12.593703148425787,-12.543728135932033,-12.493753123438282,-12.443778110944528,-12.393803098450775,-12.343828085957021,-12.293853073463268,-12.243878060969514,-12.193903048475763,-12.14392803598201,-12.093953023488256,-12.043978010994502,-11.994002998500749,-11.944027986006997,-11.894052973513244,-11.84407796101949,-11.794102948525737,-11.744127936031983,-11.694152923538232,-11.644177911044478,-11.594202898550725,-11.544227886056971,-11.494252873563218,-11.444277861069466,-11.394302848575713,-11.344327836081959,-11.294352823588206,-11.244377811094452,-11.1944027986007,-11.144427786106947,-11.094452773613193,-11.04447776111944,-10.994502748625687,-10.944527736131935,-10.894552723638181,-10.844577711144428,-10.794602698650674,-10.744627686156921,-10.69465267366317,-10.644677661169416,-10.594702648675662,-10.544727636181909,-10.494752623688155,-10.444777611194402,-10.39480259870065,-10.344827586206897,-10.294852573713143,-10.24487756121939,-10.194902548725636,-10.144927536231885,-10.094952523738131,-10.044977511244378,-9.995002498750624,-9.94502748625687,-9.89505247376312,-9.845077461269366,-9.795102448775612,-9.745127436281859,-9.695152423788105,-9.645177411294354,-9.5952023988006,-9.545227386306847,-9.495252373813093,-9.44527736131934,-9.395302348825588,-9.345327336331835,-9.295352323838081,-9.245377311344328,-9.195402298850574,-9.145427286356822,-9.095452273863069,-9.045477261369316,-8.995502248875562,-8.945527236381809,-8.895552223888055,-8.845577211394303,-8.79560219890055,-8.745627186406796,-8.695652173913043,-8.64567716141929,-8.595702148925538,-8.545727136431784,-8.495752123938031,-8.445777111444277,-8.395802098950524,-8.345827086456772,-8.295852073963019,-8.245877061469265,-8.195902048975512,-8.145927036481758,-8.095952023988007,-8.045977011494253,-7.9960019990005,-7.946026986506746,-7.896051974012994,-7.84607696151924,-7.796101949025488,-7.746126936531734,-7.696151924037981,-7.646176911544228,-7.596201899050475,-7.546226886556721,-7.496251874062969,-7.446276861569215,-7.396301849075463,-7.346326836581709,-7.296351824087956,-7.246376811594203,-7.19640179910045,-7.146426786606697,-7.096451774112944,-7.04647676161919,-6.9965017491254375,-6.946526736631684,-6.896551724137931,-6.846576711644178,-6.796601699150425,-6.746626686656672,-6.6966516741629185,-6.646676661669165,-6.5967016491754125,-6.546726636681659,-6.496751624187906,-6.446776611694153,-6.3968015992003995,-6.346826586706647,-6.296851574212893,-6.246876561719141,-6.196901549225387,-6.146926536731634,-6.096951524237881,-6.046976511744128,-5.997001499250374,-5.947026486756622,-5.897051474262868,-5.847076461769116,-5.797101449275362,-5.747126436781609,-5.697151424287856,-5.647176411794103,-5.59720139930035,-5.547226386806597,-5.497251374312843,-5.447276361819091,-5.397301349325337,-5.347326336831585,-5.297351324337831,-5.247376311844078,-5.197401299350325,-5.147426286856572,-5.097451274362818,-5.047476261869066,-4.997501249375312,-4.94752623688156,-4.897551224387806,-4.847576211894053,-4.7976011994003,-4.747626186906547,-4.697651174412794,-4.6476761619190405,-4.597701149425287,-4.5477261369315345,-4.497751124437781,-4.4477761119440276,-4.397801099450275,-4.3478260869565215,-4.297851074462769,-4.2478760619690155,-4.197901049475262,-4.147926036981509,-4.097951024487756,-4.047976011994003,-3.99800099950025,-3.948025987006497,-3.898050974512744,-3.8480759620189904,-3.7981009495252374,-3.7481259370314843,-3.6981509245377313,-3.648175912043978,-3.598200899550225,-3.548225887056472,-3.4982508745627188,-3.4482758620689653,-3.3983008495752123,-3.3483258370814593,-3.2983508245877062,-3.248375812093953,-3.1984007996001997,-3.1484257871064467,-3.0984507746126937,-3.0484757621189407,-2.998500749625187,-2.948525737131434,-2.898550724637681,-2.848575712143928,-2.798600699650175,-2.7486256871564216,-2.6986506746626686,-2.6486756621689156,-2.5987006496751626,-2.548725637181409,-2.498750624687656,-2.448775612193903,-2.39880059970015,-2.348825587206397,-2.2988505747126435,-2.2488755622188905,-2.1989005497251375,-2.1489255372313845,-2.098950524737631,-2.048975512243878,-1.999000499750125,-1.949025487256372,-1.8990504747626187,-1.8490754622688657,-1.7991004497751124,-1.7491254372813594,-1.6991504247876061,-1.6491754122938531,-1.5992003998000999,-1.5492253873063468,-1.4992503748125936,-1.4492753623188406,-1.3993003498250876,-1.3493253373313343,-1.2993503248375813,-1.249375312343828,-1.199400299850075,-1.1494252873563218,-1.0994502748625687,-1.0494752623688155,-0.9995002498750625,-0.9495252373813093,-0.8995502248875562,-0.8495752123938031,-0.7996001999000499,-0.7496251874062968,-0.6996501749125438,-0.6496751624187906,-0.5997001499250375,-0.5497251374312844,-0.49975012493753124,-0.4497751124437781,-0.39980009995002497,-0.3498250874562719,-0.29985007496251875,-0.24987506246876562,-0.19990004997501248,-0.14992503748125938,-0.09995002498750624,-0.04997501249375312,0.0,0.04997501249375312,0.09995002498750624,0.14992503748125938,0.19990004997501248,0.24987506246876562,0.29985007496251875,0.3498250874562719,0.39980009995002497,0.4497751124437781,0.49975012493753124,0.5497251374312844,0.5997001499250375,0.6496751624187906,0.6996501749125438,0.7496251874062968,0.7996001999000499,0.8495752123938031,0.8995502248875562,0.9495252373813093,0.9995002498750625,1.0494752623688155,1.0994502748625687,1.1494252873563218,1.199400299850075,1.249375312343828,1.2993503248375813,1.3493253373313343,1.3993003498250876,1.4492753623188406,1.4992503748125936,1.5492253873063468,1.5992003998000999,1.6491754122938531,1.6991504247876061,1.7491254372813594,1.7991004497751124,1.8490754622688657,1.8990504747626187,1.949025487256372,1.999000499750125,2.048975512243878,2.098950524737631,2.1489255372313845,2.1989005497251375,2.2488755622188905,2.2988505747126435,2.348825587206397,2.39880059970015,2.448775612193903,2.498750624687656,2.548725637181409,2.5987006496751626,2.6486756621689156,2.6986506746626686,2.7486256871564216,2.798600699650175,2.848575712143928,2.898550724637681,2.948525737131434,2.998500749625187,3.0484757621189407,3.0984507746126937,3.1484257871064467,3.1984007996001997,3.248375812093953,3.2983508245877062,3.3483258370814593,3.3983008495752123,3.4482758620689653,3.4982508745627188,3.548225887056472,3.598200899550225,3.648175912043978,3.6981509245377313,3.7481259370314843,3.7981009495252374,3.8480759620189904,3.898050974512744,3.948025987006497,3.99800099950025,4.047976011994003,4.097951024487756,4.147926036981509,4.197901049475262,4.2478760619690155,4.297851074462769,4.3478260869565215,4.397801099450275,4.4477761119440276,4.497751124437781,4.5477261369315345,4.597701149425287,4.6476761619190405,4.697651174412794,4.747626186906547,4.7976011994003,4.847576211894053,4.897551224387806,4.94752623688156,4.997501249375312,5.047476261869066,5.097451274362818,5.147426286856572,5.197401299350325,5.247376311844078,5.297351324337831,5.347326336831585,5.397301349325337,5.447276361819091,5.497251374312843,5.547226386806597,5.59720139930035,5.647176411794103,5.697151424287856,5.747126436781609,5.797101449275362,5.847076461769116,5.897051474262868,5.947026486756622,5.997001499250374,6.046976511744128,6.096951524237881,6.146926536731634,6.196901549225387,6.246876561719141,6.296851574212893,6.346826586706647,6.3968015992003995,6.446776611694153,6.496751624187906,6.546726636681659,6.5967016491754125,6.646676661669165,6.6966516741629185,6.746626686656672,6.796601699150425,6.846576711644178,6.896551724137931,6.946526736631684,6.9965017491254375,7.04647676161919,7.096451774112944,7.146426786606697,7.19640179910045,7.246376811594203,7.296351824087956,7.346326836581709,7.396301849075463,7.446276861569215,7.496251874062969,7.546226886556721,7.596201899050475,7.646176911544228,7.696151924037981,7.746126936531734,7.796101949025488,7.84607696151924,7.896051974012994,7.946026986506746,7.9960019990005,8.045977011494253,8.095952023988007,8.145927036481758,8.195902048975512,8.245877061469265,8.295852073963019,8.345827086456772,8.395802098950524,8.445777111444277,8.495752123938031,8.545727136431784,8.595702148925538,8.64567716141929,8.695652173913043,8.745627186406796,8.79560219890055,8.845577211394303,8.895552223888055,8.945527236381809,8.995502248875562,9.045477261369316,9.095452273863069,9.145427286356822,9.195402298850574,9.245377311344328,9.295352323838081,9.345327336331835,9.395302348825588,9.44527736131934,9.495252373813093,9.545227386306847,9.5952023988006,9.645177411294354,9.695152423788105,9.745127436281859,9.795102448775612,9.845077461269366,9.89505247376312,9.94502748625687,9.995002498750624,10.044977511244378,10.094952523738131,10.144927536231885,10.194902548725636,10.24487756121939,10.294852573713143,10.344827586206897,10.39480259870065,10.444777611194402,10.494752623688155,10.544727636181909,10.594702648675662,10.644677661169416,10.69465267366317,10.744627686156921,10.794602698650674,10.844577711144428,10.894552723638181,10.944527736131935,10.994502748625687,11.04447776111944,11.094452773613193,11.144427786106947,11.1944027986007,11.244377811094452,11.294352823588206,11.344327836081959,11.394302848575713,11.444277861069466,11.494252873563218,11.544227886056971,11.594202898550725,11.644177911044478,11.694152923538232,11.744127936031983,11.794102948525737,11.84407796101949,11.894052973513244,11.944027986006997,11.994002998500749,12.043978010994502,12.093953023488256,12.14392803598201,12.193903048475763,12.243878060969514,12.293853073463268,12.343828085957021,12.393803098450775,12.443778110944528,12.493753123438282,12.543728135932033,12.593703148425787,12.64367816091954,12.693653173413294,12.743628185907047,12.793603198400799,12.843578210894552,12.893553223388306,12.94352823588206,12.993503248375813,13.043478260869565,13.093453273363318,13.143428285857071,13.193403298350825,13.243378310844578,13.29335332333833,13.343328335832084,13.393303348325837,13.44327836081959,13.493253373313344,13.543228385807096,13.59320339830085,13.643178410794603,13.693153423288356,13.74312843578211,13.793103448275861,13.843078460769615,13.893053473263368,13.943028485757122,13.993003498250875,14.042978510744629,14.09295352323838,14.142928535732134,14.192903548225887,14.24287856071964,14.292853573213394,14.342828585707146,14.3928035982009,14.442778610694653,14.492753623188406,14.54272863568216,14.592703648175911,14.642678660669665,14.692653673163418,14.742628685657172,14.792603698150925,14.842578710644677,14.89255372313843,14.942528735632184,14.992503748125937,15.04247876061969,15.092453773113442,15.142428785607196,15.19240379810095,15.242378810594703,15.292353823088456,15.342328835582208,15.392303848075962,15.442278860569715,15.492253873063468,15.542228885557222,15.592203898050975,15.642178910544727,15.69215392303848,15.742128935532234,15.792103948025987,15.842078960519741,15.892053973013493,15.942028985507246,15.992003998001,16.041979010494753,16.091954022988507,16.14192903548226,16.191904047976013,16.241879060469763,16.291854072963517,16.34182908545727,16.391804097951024,16.441779110444777,16.49175412293853,16.541729135432284,16.591704147926038,16.64167916041979,16.691654172913545,16.741629185407298,16.791604197901048,16.8415792103948,16.891554222888555,16.94152923538231,16.991504247876062,17.041479260369815,17.09145427286357,17.141429285357322,17.191404297851076,17.24137931034483,17.29135432283858,17.341329335332333,17.391304347826086,17.44127936031984,17.491254372813593,17.541229385307346,17.5912043978011,17.641179410294853,17.691154422788607,17.74112943528236,17.79110444777611,17.841079460269864,17.891054472763617,17.94102948525737,17.991004497751124,18.040979510244878,18.09095452273863,18.140929535232384,18.190904547726138,18.24087956021989,18.290854572713645,18.340829585207395,18.39080459770115,18.4407796101949,18.490754622688655,18.54072963518241,18.590704647676162,18.640679660169916,18.69065467266367,18.740629685157423,18.790604697651176,18.840579710144926,18.89055472263868,18.940529735132433,18.990504747626186,19.04047976011994,19.090454772613693,19.140429785107447,19.1904047976012,19.240379810094954,19.290354822588707,19.340329835082457,19.39030484757621,19.440279860069964,19.490254872563717,19.54022988505747,19.590204897551224,19.640179910044978,19.69015492253873,19.740129935032485,19.79010494752624,19.84007996001999,19.89005497251374,19.940029985007495,19.99000499750125,20.039980009995002,20.089955022488756,20.13993003498251,20.189905047476262,20.239880059970016,20.28985507246377,20.339830084957523,20.389805097451273,20.439780109945026,20.48975512243878,20.539730134932533,20.589705147426287,20.63968015992004,20.689655172413794,20.739630184907547,20.7896051974013,20.839580209895054,20.889555222388804,20.939530234882557,20.98950524737631,21.039480259870064,21.089455272363818,21.13943028485757,21.189405297351325,21.239380309845078,21.28935532233883,21.339330334832585,21.38930534732634,21.43928035982009,21.489255372313842,21.539230384807595,21.58920539730135,21.639180409795102,21.689155422288856,21.73913043478261,21.789105447276363,21.839080459770116,21.88905547226387,21.93903048475762,21.989005497251373,22.038980509745127,22.08895552223888,22.138930534732634,22.188905547226387,22.23888055972014,22.288855572213894,22.338830584707647,22.3888055972014,22.43878060969515,22.488755622188904,22.538730634682658,22.58870564717641,22.638680659670165,22.688655672163918,22.73863068465767,22.788605697151425,22.83858070964518,22.888555722138932,22.938530734632682,22.988505747126435,23.03848075962019,23.088455772113942,23.138430784607696,23.18840579710145,23.238380809595203,23.288355822088956,23.33833083458271,23.388305847076463,23.438280859570217,23.488255872063966,23.53823088455772,23.588205897051473,23.638180909545227,23.68815592203898,23.738130934532734,23.788105947026487,23.83808095952024,23.888055972013994,23.938030984507748,23.988005997001498,24.03798100949525,24.087956021989005,24.137931034482758,24.18790604697651,24.237881059470265,24.28785607196402,24.337831084457772,24.387806096951525,24.43778110944528,24.48775612193903,24.537731134432782,24.587706146926536,24.63768115942029,24.687656171914043,24.737631184407796,24.78760619690155,24.837581209395303,24.887556221889056,24.93753123438281,24.987506246876563,25.037481259370313,25.087456271864067,25.13743128435782,25.187406296851574,25.237381309345327,25.28735632183908,25.337331334332834,25.387306346826588,25.43728135932034,25.487256371814095,25.537231384307844,25.587206396801598,25.63718140929535,25.687156421789105,25.73713143428286,25.787106446776612,25.837081459270365,25.88705647176412,25.937031484257872,25.987006496751626,26.036981509245376,26.08695652173913,26.136931534232883,26.186906546726636,26.23688155922039,26.286856571714143,26.336831584207896,26.38680659670165,26.436781609195403,26.486756621689157,26.53673163418291,26.58670664667666,26.636681659170414,26.686656671664167,26.73663168415792,26.786606696651674,26.836581709145428,26.88655672163918,26.936531734132934,26.986506746626688,27.03648175912044,27.08645677161419,27.136431784107945,27.1864067966017,27.23638180909545,27.286356821589205,27.33633183408296,27.386306846576712,27.436281859070466,27.48625687156422,27.536231884057973,27.586206896551722,27.636181909045476,27.68615692153923,27.736131934032983,27.786106946526736,27.83608195902049,27.886056971514243,27.936031984007997,27.98600699650175,28.035982008995504,28.085957021489257,28.135932033983007,28.18590704647676,28.235882058970514,28.285857071464267,28.33583208395802,28.385807096451774,28.435782108945528,28.48575712143928,28.535732133933035,28.58570714642679,28.635682158920538,28.68565717141429,28.735632183908045,28.7856071964018,28.835582208895552,28.885557221389305,28.93553223388306,28.985507246376812,29.035482258870566,29.08545727136432,29.13543228385807,29.185407296351823,29.235382308845576,29.28535732133933,29.335332333833083,29.385307346326837,29.43528235882059,29.485257371314344,29.535232383808097,29.58520739630185,29.635182408795604,29.685157421289354,29.735132433783107,29.78510744627686,29.835082458770614,29.885057471264368,29.93503248375812,29.985007496251875,30.034982508745628,30.08495752123938,30.134932533733135,30.184907546226885,30.23488255872064,30.284857571214392,30.334832583708145,30.3848075962019,30.434782608695652,30.484757621189406,30.53473263368316,30.584707646176913,30.634682658670666,30.684657671164416,30.73463268365817,30.784607696151923,30.834582708645677,30.88455772113943,30.934532733633183,30.984507746126937,31.03448275862069,31.084457771114444,31.134432783608197,31.18440779610195,31.2343828085957,31.284357821089454,31.334332833583208,31.38430784607696,31.434282858570715,31.484257871064468,31.53423288355822,31.584207896051975,31.63418290854573,31.684157921039482,31.734132933533232,31.784107946026985,31.83408295852074,31.884057971014492,31.934032983508246,31.984007996002,32.03398300849575,32.083958020989506,32.13393303348326,32.18390804597701,32.23388305847077,32.28385807096452,32.33383308345827,32.38380809595203,32.43378310844578,32.48375812093953,32.53373313343328,32.583708145927034,32.63368315842079,32.68365817091454,32.733633183408294,32.78360819590205,32.8335832083958,32.883558220889554,32.93353323338331,32.98350824587706,33.033483258370815,33.08345827086457,33.13343328335832,33.183408295852075,33.23338330834583,33.28335832083958,33.333333333333336,33.38330834582709,33.43328335832084,33.483258370814596,33.53323338330834,33.583208395802096,33.63318340829585,33.6831584207896,33.733133433283356,33.78310844577711,33.83308345827086,33.88305847076462,33.93303348325837,33.983008495752124,34.03298350824588,34.08295852073963,34.132933533233384,34.18290854572714,34.23288355822089,34.282858570714644,34.3328335832084,34.38280859570215,34.432783608195905,34.48275862068966,34.53273363318341,34.58270864567716,34.63268365817091,34.682658670664665,34.73263368315842,34.78260869565217,34.832583708145926,34.88255872063968,34.93253373313343,34.982508745627186,35.03248375812094,35.08245877061469,35.132433783108446,35.1824087956022,35.23238380809595,35.28235882058971,35.33233383308346,35.382308845577214,35.43228385807097,35.48225887056472,35.532233883058474,35.58220889555222,35.632183908045974,35.68215892053973,35.73213393303348,35.782108945527234,35.83208395802099,35.88205897051474,35.932033983008495,35.98200899550225,36.031984007996,36.081959020489755,36.13193403298351,36.18190904547726,36.231884057971016,36.28185907046477,36.33183408295852,36.381809095452276,36.43178410794603,36.48175912043978,36.531734132933536,36.58170914542729,36.631684157921036,36.68165917041479,36.73163418290854,36.7816091954023,36.83158420789605,36.8815592203898,36.93153423288356,36.98150924537731,37.031484257871064,37.08145927036482,37.13143428285857,37.181409295352324,37.23138430784608,37.28135932033983,37.331334332833585,37.38130934532734,37.43128435782109,37.481259370314845,37.5312343828086,37.58120939530235,37.6311844077961,37.68115942028985,37.731134432783605,37.78110944527736,37.83108445777111,37.881059470264866,37.93103448275862,37.98100949525237,38.030984507746126,38.08095952023988,38.13093453273363,38.18090954522739,38.23088455772114,38.28085957021489,38.33083458270865,38.3808095952024,38.430784607696154,38.48075962018991,38.53073463268366,38.580709645177414,38.63068465767117,38.680659670164914,38.73063468265867,38.78060969515242,38.830584707646175,38.88055972013993,38.93053473263368,38.980509745127435,39.03048475762119,39.08045977011494,39.130434782608695,39.18040979510245,39.2303848075962,39.280359820089956,39.33033483258371,39.38030984507746,39.430284857571216,39.48025987006497,39.53023488255872,39.58020989505248,39.63018490754623,39.68015992003998,39.73013493253373,39.78010994502748,39.83008495752124,39.88005997001499,39.930034982508744,39.9800099950025,40.02998500749625,40.079960019990004,40.12993503248376,40.17991004497751,40.229885057471265,40.27986006996502,40.32983508245877,40.379810094952525,40.42978510744628,40.47976011994003,40.529735132433785,40.57971014492754,40.62968515742129,40.679660169915046,40.72963518240879,40.779610194902546,40.8295852073963,40.87956021989005,40.929535232383806,40.97951024487756,41.02948525737131,41.079460269865066,41.12943528235882,41.17941029485257,41.22938530734633,41.27936031984008,41.329335332333834,41.37931034482759,41.42928535732134,41.479260369815094,41.52923538230885,41.5792103948026,41.629185407296355,41.67916041979011,41.72913543228386,41.77911044477761,41.82908545727136,41.879060469765115,41.92903548225887,41.97901049475262,42.028985507246375,42.07896051974013,42.12893553223388,42.178910544727636,42.22888555722139,42.27886056971514,42.328835582208896,42.37881059470265,42.4287856071964,42.478760619690156,42.52873563218391,42.57871064467766,42.62868565717142,42.67866066966517,42.728635682158924,42.77861069465268,42.82858570714642,42.87856071964018,42.92853573213393,42.978510744627684,43.02848575712144,43.07846076961519,43.128435782108944,43.1784107946027,43.22838580709645,43.278360819590205,43.32833583208396,43.37831084457771,43.428285857071465,43.47826086956522,43.52823588205897,43.578210894552726,43.62818590704648,43.67816091954023,43.728135932033986,43.77811094452774,43.828085957021486,43.87806096951524,43.92803598200899,43.978010994502746,44.0279860069965,44.07796101949025,44.12793603198401,44.17791104447776,44.22788605697151,44.27786106946527,44.32783608195902,44.377811094452774,44.42778610694653,44.47776111944028,44.527736131934034,44.57771114442779,44.62768615692154,44.677661169415295,44.72763618190905,44.7776111944028,44.827586206896555,44.8775612193903,44.927536231884055,44.97751124437781,45.02748625687156,45.077461269365315,45.12743628185907,45.17741129435282,45.227386306846576,45.27736131934033,45.32733633183408,45.377311344327836,45.42728635682159,45.47726136931534,45.5272363818091,45.57721139430285,45.6271864067966,45.67716141929036,45.72713643178411,45.777111444277864,45.82708645677162,45.877061469265364,45.92703648175912,45.97701149425287,46.026986506746624,46.07696151924038,46.12693653173413,46.176911544227885,46.22688655672164,46.27686156921539,46.326836581709145,46.3768115942029,46.42678660669665,46.476761619190405,46.52673663168416,46.57671164417791,46.626686656671666,46.67666166916542,46.72663668165917,46.776611694152926,46.82658670664668,46.87656171914043,46.92653673163418,46.97651174412793,47.026486756621686,47.07646176911544,47.12643678160919,47.17641179410295,47.2263868065967,47.276361819090454,47.32633683158421,47.37631184407796,47.426286856571714,47.47626186906547,47.52623688155922,47.576211894052975,47.62618690654673,47.67616191904048,47.726136931534235,47.77611194402799,47.82608695652174,47.876061969015495,47.92603698150925,47.976011994002995,48.02598700649675,48.0759620189905,48.125937031484256,48.17591204397801,48.22588705647176,48.275862068965516,48.32583708145927,48.37581209395302,48.425787106446776,48.47576211894053,48.52573713143428,48.57571214392804,48.62568715642179,48.675662168915544,48.7256371814093,48.77561219390305,48.825587206396804,48.87556221889056,48.92553723138431,48.97551224387806,49.02548725637181,49.075462268865564,49.12543728135932,49.17541229385307,49.225387306346825,49.27536231884058,49.32533733133433,49.375312343828085,49.42528735632184,49.47526236881559,49.525237381309346,49.5752123938031,49.62518740629685,49.675162418790606,49.72513743128436,49.77511244377811,49.825087456271866,49.87506246876562,49.92503748125937,49.97501249375313,50.02498750624687,50.07496251874063,50.12493753123438,50.174912543728134,50.22488755622189,50.27486256871564,50.324837581209394,50.37481259370315,50.4247876061969,50.474762618690654,50.52473763118441,50.57471264367816,50.624687656171915,50.67466266866567,50.72463768115942,50.774612693653175,50.82458770614693,50.87456271864068,50.924537731134436,50.97451274362819,51.02448775612194,51.07446276861569,51.12443778110944,51.174412793603196,51.22438780609695,51.2743628185907,51.324337831084456,51.37431284357821,51.42428785607196,51.47426286856572,51.52423788105947,51.574212893553224,51.62418790604698,51.67416291854073,51.724137931034484,51.77411294352824,51.82408795602199,51.874062968515744,51.9240379810095,51.97401299350325,52.023988005997005,52.07396301849075,52.123938030984505,52.17391304347826,52.22388805597201,52.273863068465765,52.32383808095952,52.37381309345327,52.423788105947025,52.47376311844078,52.52373813093453,52.573713143428286,52.62368815592204,52.67366316841579,52.723638180909546,52.7736131934033,52.82358820589705,52.87356321839081,52.92353823088456,52.973513243378314,53.02348825587207,53.07346326836582,53.12343828085957,53.17341329335332,53.223388305847074,53.27336331834083,53.32333833083458,53.373313343328334,53.42328835582209,53.47326336831584,53.523238380809595,53.57321339330335,53.6231884057971,53.673163418290855,53.72313843078461,53.77311344327836,53.823088455772115,53.87306346826587,53.92303848075962,53.973013493253376,54.02298850574713,54.07296351824088,54.122938530734636,54.17291354322838,54.222888555722136,54.27286356821589,54.32283858070964,54.3728135932034,54.42278860569715,54.4727636181909,54.52273863068466,54.57271364317841,54.622688655672164,54.67266366816592,54.72263868065967,54.772613693153424,54.82258870564718,54.87256371814093,54.922538730634685,54.97251374312844,55.02248875562219,55.072463768115945,55.1224387806097,55.172413793103445,55.2223888055972,55.27236381809095,55.322338830584705,55.37231384307846,55.42228885557221,55.472263868065966,55.52223888055972,55.57221389305347,55.622188905547226,55.67216391804098,55.72213893053473,55.77211394302849,55.82208895552224,55.87206396801599,55.92203898050975,55.9720139930035,56.021989005497254,56.07196401799101,56.12193903048476,56.171914042978514,56.22188905547226,56.271864067966014,56.32183908045977,56.37181409295352,56.421789105447274,56.47176411794103,56.52173913043478,56.571714142928535,56.62168915542229,56.67166416791604,56.721639180409795,56.77161419290355,56.8215892053973,56.871564217891056,56.92153923038481,56.97151424287856,57.021489255372316,57.07146426786607,57.12143928035982,57.17141429285358,57.22138930534732,57.271364317841076,57.32133933033483,57.37131434282858,57.42128935532234,57.47126436781609,57.521239380309844,57.5712143928036,57.62118940529735,57.671164417791104,57.72113943028486,57.77111444277861,57.821089455272364,57.87106446776612,57.92103948025987,57.971014492753625,58.02098950524738,58.07096451774113,58.120939530234885,58.17091454272864,58.22088955522239,58.27086456771614,58.32083958020989,58.370814592703645,58.4207896051974,58.47076461769115,58.520739630184906,58.57071464267866,58.62068965517241,58.670664667666166,58.72063968015992,58.77061469265367,58.82058970514743,58.87056471764118,58.920539730134934,58.97051474262869,59.02048975512244,59.070464767616194,59.12043978010995,59.1704147926037,59.220389805097454,59.27036481759121,59.320339830084954,59.37031484257871,59.42028985507246,59.470264867566215,59.52023988005997,59.57021489255372,59.620189905047475,59.67016491754123,59.72013993003498,59.770114942528735,59.82008995502249,59.87006496751624,59.920039980009996,59.97001499250375,60.0199900049975,60.069965017491256,60.11994002998501,60.16991504247876,60.21989005497252,60.26986506746627,60.31984007996002,60.36981509245377,60.41979010494752,60.46976511744128,60.51974012993503,60.569715142428784,60.61969015492254,60.66966516741629,60.719640179910044,60.7696151924038,60.81959020489755,60.869565217391305,60.91954022988506,60.96951524237881,61.019490254872565,61.06946526736632,61.11944027986007,61.169415292353825,61.21939030484758,61.26936531734133,61.319340329835086,61.36931534232883,61.419290354822586,61.46926536731634,61.51924037981009,61.569215392303846,61.6191904047976,61.66916541729135,61.71914042978511,61.76911544227886,61.81909045477261,61.86906546726637,61.91904047976012,61.969015492253874,62.01899050474763,62.06896551724138,62.118940529735134,62.16891554222889,62.21889055472264,62.268865567216395,62.31884057971015,62.3688155922039,62.41879060469765,62.4687656171914,62.518740629685155,62.56871564217891,62.61869065467266,62.668665667166415,62.71864067966017,62.76861569215392,62.818590704647676,62.86856571714143,62.91854072963518,62.968515742128936,63.01849075462269,63.06846576711644,63.1184407796102,63.16841579210395,63.2183908045977,63.26836581709146,63.31834082958521,63.368315842078964,63.41829085457271,63.468265867066464,63.51824087956022,63.56821589205397,63.618190904547724,63.66816591704148,63.71814092953523,63.768115942028984,63.81809095452274,63.86806596701649,63.918040979510245,63.968015992004,64.01799100449774,64.0679660169915,64.11794102948525,64.16791604197901,64.21789105447276,64.26786606696652,64.31784107946027,64.36781609195403,64.41779110444777,64.46776611694153,64.51774112943528,64.56771614192904,64.61769115442279,64.66766616691655,64.7176411794103,64.76761619190405,64.8175912043978,64.86756621689156,64.91754122938531,64.96751624187905,65.01749125437281,65.06746626686656,65.11744127936032,65.16741629185407,65.21739130434783,65.26736631684157,65.31734132933533,65.36731634182908,65.41729135432284,65.46726636681659,65.51724137931035,65.5672163918041,65.61719140429786,65.6671664167916,65.71714142928536,65.76711644177911,65.81709145427287,65.86706646676662,65.91704147926038,65.96701649175412,66.01699150424787,66.06696651674163,66.11694152923538,66.16691654172914,66.21689155422288,66.26686656671664,66.31684157921039,66.36681659170415,66.4167916041979,66.46676661669166,66.5167416291854,66.56671664167916,66.61669165417291,66.66666666666667,66.71664167916042,66.76661669165418,66.81659170414792,66.86656671664169,66.91654172913543,66.96651674162919,67.01649175412294,67.06646676661668,67.11644177911045,67.16641679160419,67.21639180409795,67.2663668165917,67.31634182908546,67.3663168415792,67.41629185407297,67.46626686656671,67.51624187906047,67.56621689155422,67.61619190404798,67.66616691654173,67.71614192903549,67.76611694152923,67.816091954023,67.86606696651674,67.9160419790105,67.96601699150425,68.01599200399801,68.06596701649175,68.1159420289855,68.16591704147926,68.21589205397301,68.26586706646677,68.31584207896051,68.36581709145428,68.41579210394802,68.46576711644178,68.51574212893553,68.56571714142929,68.61569215392304,68.6656671664168,68.71564217891054,68.7656171914043,68.81559220389805,68.86556721639181,68.91554222888556,68.96551724137932,69.01549225387306,69.06546726636682,69.11544227886057,69.16541729135432,69.21539230384808,69.26536731634182,69.31534232883558,69.36531734132933,69.41529235382309,69.46526736631684,69.5152423788106,69.56521739130434,69.6151924037981,69.66516741629185,69.71514242878561,69.76511744127936,69.81509245377312,69.86506746626686,69.91504247876063,69.96501749125437,70.01499250374813,70.06496751624188,70.11494252873563,70.16491754122939,70.21489255372313,70.26486756621689,70.31484257871064,70.3648175912044,70.41479260369815,70.4647676161919,70.51474262868565,70.56471764117941,70.61469265367316,70.66466766616692,70.71464267866067,70.76461769115443,70.81459270364817,70.86456771614193,70.91454272863568,70.96451774112944,71.01449275362319,71.06446776611695,71.1144427786107,71.16441779110444,71.2143928035982,71.26436781609195,71.31434282858571,71.36431784107945,71.41429285357322,71.46426786606696,71.51424287856072,71.56421789105447,71.61419290354823,71.66416791604198,71.71414292853574,71.76411794102948,71.81409295352324,71.86406796601699,71.91404297851075,71.9640179910045,72.01399300349826,72.063968015992,72.11394302848576,72.16391804097951,72.21389305347326,72.26386806596702,72.31384307846076,72.36381809095452,72.41379310344827,72.46376811594203,72.51374312843578,72.56371814092954,72.61369315342328,72.66366816591704,72.71364317841079,72.76361819090455,72.8135932033983,72.86356821589206,72.9135432283858,72.96351824087957,73.01349325337331,73.06346826586707,73.11344327836082,73.16341829085458,73.21339330334833,73.26336831584207,73.31334332833583,73.36331834082958,73.41329335332334,73.46326836581709,73.51324337831085,73.5632183908046,73.61319340329835,73.6631684157921,73.71314342828586,73.7631184407796,73.81309345327337,73.86306846576711,73.91304347826087,73.96301849075462,74.01299350324838,74.06296851574213,74.11294352823589,74.16291854072963,74.2128935532234,74.26286856571714,74.31284357821089,74.36281859070465,74.4127936031984,74.46276861569216,74.5127436281859,74.56271864067966,74.61269365317341,74.66266866566717,74.71264367816092,74.76261869065468,74.81259370314842,74.86256871564218,74.91254372813593,74.96251874062969,75.01249375312344,75.0624687656172,75.11244377811094,75.1624187906047,75.21239380309845,75.2623688155922,75.31234382808596,75.3623188405797,75.41229385307346,75.46226886556721,75.51224387806097,75.56221889055472,75.61219390304848,75.66216891554222,75.71214392803599,75.76211894052973,75.81209395302349,75.86206896551724,75.912043978011,75.96201899050475,76.0119940029985,76.06196901549225,76.11194402798601,76.16191904047976,76.21189405297352,76.26186906546727,76.31184407796101,76.36181909045477,76.41179410294852,76.46176911544228,76.51174412793603,76.56171914042979,76.61169415292353,76.6616691654173,76.71164417791104,76.7616191904048,76.81159420289855,76.86156921539231,76.91154422788605,76.96151924037981,77.01149425287356,77.06146926536732,77.11144427786107,77.16141929035483,77.21139430284857,77.26136931534234,77.31134432783608,77.36131934032983,77.41129435282359,77.46126936531734,77.5112443778111,77.56121939030484,77.6111944027986,77.66116941529235,77.71114442778611,77.76111944027986,77.81109445277362,77.86106946526736,77.91104447776112,77.96101949025487,78.01099450274863,78.06096951524238,78.11094452773614,78.16091954022988,78.21089455272364,78.26086956521739,78.31084457771115,78.3608195902049,78.41079460269864,78.4607696151924,78.51074462768615,78.56071964017991,78.61069465267366,78.66066966516742,78.71064467766116,78.76061969015493,78.81059470264867,78.86056971514243,78.91054472763618,78.96051974012994,79.01049475262369,79.06046976511745,79.11044477761119,79.16041979010495,79.2103948025987,79.26036981509246,79.3103448275862,79.36031984007997,79.41029485257371,79.46026986506746,79.51024487756122,79.56021989005497,79.61019490254873,79.66016991504247,79.71014492753623,79.76011994002998,79.81009495252374,79.86006996501749,79.91004497751125,79.960019990005,80.00999500249875,80.0599700149925,80.10994502748626,80.15992003998001,80.20989505247377,80.25987006496752,80.30984507746128,80.35982008995502,80.40979510244878,80.45977011494253,80.50974512743628,80.55972013993004,80.60969515242378,80.65967016491754,80.70964517741129,80.75962018990505,80.8095952023988,80.85957021489256,80.9095452273863,80.95952023988006,81.00949525237381,81.05947026486757,81.10944527736132,81.15942028985508,81.20939530234882,81.25937031484258,81.30934532733633,81.35932033983009,81.40929535232384,81.45927036481758,81.50924537731134,81.55922038980509,81.60919540229885,81.6591704147926,81.70914542728636,81.7591204397801,81.80909545227387,81.85907046476761,81.90904547726137,81.95902048975512,82.00899550224888,82.05897051474263,82.10894552723639,82.15892053973013,82.2088955522239,82.25887056471764,82.3088455772114,82.35882058970515,82.40879560219891,82.45877061469265,82.5087456271864,82.55872063968016,82.6086956521739,82.65867066466767,82.70864567716141,82.75862068965517,82.80859570214892,82.85857071464268,82.90854572713643,82.95852073963019,83.00849575212393,83.0584707646177,83.10844577711144,83.1584207896052,83.20839580209895,83.25837081459271,83.30834582708646,83.35832083958022,83.40829585207396,83.45827086456772,83.50824587706147,83.55822088955522,83.60819590204898,83.65817091454272,83.70814592703648,83.75812093953023,83.80809595202399,83.85807096451774,83.9080459770115,83.95802098950524,84.007996001999,84.05797101449275,84.10794602698651,84.15792103948026,84.20789605197402,84.25787106446776,84.30784607696152,84.35782108945527,84.40779610194903,84.45777111444278,84.50774612693654,84.55772113943029,84.60769615192403,84.65767116441779,84.70764617691154,84.7576211894053,84.80759620189905,84.8575712143928,84.90754622688655,84.95752123938031,85.00749625187406,85.05747126436782,85.10744627686157,85.15742128935533,85.20739630184907,85.25737131434283,85.30734632683658,85.35732133933034,85.40729635182409,85.45727136431785,85.5072463768116,85.55722138930535,85.6071964017991,85.65717141429285,85.70714642678661,85.75712143928035,85.80709645177411,85.85707146426786,85.90704647676162,85.95702148925537,86.00699650174913,86.05697151424287,86.10694652673664,86.15692153923038,86.20689655172414,86.25687156421789,86.30684657671165,86.3568215892054,86.40679660169916,86.4567716141929,86.50674662668666,86.55672163918041,86.60669665167416,86.65667166416792,86.70664667666166,86.75662168915542,86.80659670164917,86.85657171414293,86.90654672663668,86.95652173913044,87.00649675162418,87.05647176411794,87.10644677661169,87.15642178910545,87.2063968015992,87.25637181409296,87.3063468265867,87.35632183908046,87.40629685157421,87.45627186406797,87.50624687656172,87.55622188905548,87.60619690154923,87.65617191404297,87.70614692653673,87.75612193903048,87.80609695152424,87.85607196401799,87.90604697651175,87.95602198900549,88.00599700149925,88.055972013993,88.10594702648676,88.1559220389805,88.20589705147427,88.25587206396801,88.30584707646177,88.35582208895552,88.40579710144928,88.45577211394303,88.50574712643679,88.55572213893053,88.6056971514243,88.65567216391804,88.70564717641179,88.75562218890555,88.8055972013993,88.85557221389305,88.9055472263868,88.95552223888056,89.00549725137431,89.05547226386807,89.10544727636182,89.15542228885558,89.20539730134932,89.25537231384308,89.30534732633683,89.35532233883059,89.40529735132434,89.4552723638181,89.50524737631184,89.5552223888056,89.60519740129935,89.65517241379311,89.70514742628686,89.7551224387806,89.80509745127436,89.85507246376811,89.90504747626187,89.95502248875562,90.00499750124938,90.05497251374312,90.10494752623688,90.15492253873063,90.20489755122439,90.25487256371814,90.3048475762119,90.35482258870564,90.4047976011994,90.45477261369315,90.50474762618691,90.55472263868066,90.60469765117442,90.65467266366817,90.70464767616193,90.75462268865567,90.80459770114942,90.85457271364318,90.90454772613693,90.95452273863069,91.00449775112443,91.0544727636182,91.10444777611194,91.1544227886057,91.20439780109945,91.2543728135932,91.30434782608695,91.35432283858071,91.40429785107446,91.45427286356822,91.50424787606197,91.55422288855573,91.60419790104947,91.65417291354323,91.70414792603698,91.75412293853073,91.80409795102449,91.85407296351823,91.904047976012,91.95402298850574,92.0039980009995,92.05397301349325,92.10394802598701,92.15392303848076,92.20389805097452,92.25387306346826,92.30384807596202,92.35382308845577,92.40379810094953,92.45377311344328,92.50374812593704,92.55372313843078,92.60369815092454,92.65367316341829,92.70364817591205,92.7536231884058,92.80359820089954,92.8535732133933,92.90354822588705,92.95352323838081,93.00349825087456,93.05347326336832,93.10344827586206,93.15342328835582,93.20339830084957,93.25337331334333,93.30334832583708,93.35332333833084,93.40329835082458,93.45327336331835,93.50324837581209,93.55322338830585,93.6031984007996,93.65317341329336,93.7031484257871,93.75312343828087,93.80309845077461,93.85307346326836,93.90304847576212,93.95302348825587,94.00299850074963,94.05297351324337,94.10294852573713,94.15292353823088,94.20289855072464,94.25287356321839,94.30284857571215,94.3528235882059,94.40279860069965,94.4527736131934,94.50274862568716,94.55272363818091,94.60269865067467,94.65267366316841,94.70264867566218,94.75262368815592,94.80259870064968,94.85257371314343,94.90254872563717,94.95252373813094,95.00249875062468,95.05247376311844,95.10244877561219,95.15242378810595,95.2023988005997,95.25237381309346,95.3023488255872,95.35232383808096,95.40229885057471,95.45227386306847,95.50224887556222,95.55222388805598,95.60219890054972,95.65217391304348,95.70214892553723,95.75212393803099,95.80209895052474,95.8520739630185,95.90204897551224,95.95202398800599,96.00199900049975,96.0519740129935,96.10194902548726,96.151924037981,96.20189905047476,96.25187406296851,96.30184907546227,96.35182408795602,96.40179910044978,96.45177411294353,96.50174912543729,96.55172413793103,96.60169915042479,96.65167416291854,96.7016491754123,96.75162418790605,96.8015992003998,96.85157421289355,96.90154922538731,96.95152423788106,97.0014992503748,97.05147426286857,97.10144927536231,97.15142428785607,97.20139930034982,97.25137431284358,97.30134932533733,97.35132433783109,97.40129935032483,97.4512743628186,97.50124937531234,97.5512243878061,97.60119940029985,97.65117441279361,97.70114942528735,97.75112443778112,97.80109945027486,97.85107446276862,97.90104947526237,97.95102448775611,98.00099950024988,98.05097451274362,98.10094952523738,98.15092453773113,98.20089955022489,98.25087456271864,98.3008495752124,98.35082458770614,98.4007996001999,98.45077461269365,98.50074962518741,98.55072463768116,98.60069965017492,98.65067466266866,98.70064967516242,98.75062468765617,98.80059970014993,98.85057471264368,98.90054972513744,98.95052473763118,99.00049975012493,99.05047476261869,99.10044977511244,99.1504247876062,99.20039980009994,99.2503748125937,99.30034982508745,99.35032483758121,99.40029985007496,99.45027486256872,99.50024987506247,99.55022488755623,99.60019990004997,99.65017491254373,99.70014992503748,99.75012493753124,99.80009995002499,99.85007496251875,99.9000499750125,99.95002498750625,100.0]} From 98258a0cdd34054986de4cefcbc8a81408db2b86 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Fri, 27 Dec 2024 22:36:06 +0600 Subject: [PATCH 62/63] "fixed issues" --- lib/node_modules/@stdlib/math/base/special/cosc/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/README.md b/lib/node_modules/@stdlib/math/base/special/cosc/README.md index 37864b6f6499..bd2f36cf63c7 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/README.md +++ b/lib/node_modules/@stdlib/math/base/special/cosc/README.md @@ -65,7 +65,7 @@ v = cosc( -1.2 ); // returns ~0.544 v = cosc( 0.0 ); -// returns 1.0 +// returns 0.0 v = cosc( NaN ); // returns NaN From f80893233a75793bfc6cbc9e2c72c14de22e9d75 Mon Sep 17 00:00:00 2001 From: Riya Chowdhury Date: Fri, 27 Dec 2024 22:51:37 +0600 Subject: [PATCH 63/63] "fixed benchmark" --- .../math/base/special/cosc/benchmark/c/native/benchmark.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c index 23219d9798f7..2fda30176c77 100644 --- a/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c +++ b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c @@ -101,7 +101,7 @@ static double benchmark( void ) { t = tic(); for ( i = 0; i < ITERATIONS; i++ ) { x = ( 2.0 * rand_double() ) - 2.0; - y = cosc( x ); + y = stdlib_base_cosc( x ); if ( y != y ) { printf( "should not return NaN\n" ); break;