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..bd2f36cf63c7
--- /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 [derivative of cardinal sine][cosc] of a `number`.
+
+```javascript
+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
+```
+
+
+
+
+
+
+
+## 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 );
+ }
+}
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+[cosc]: https://en.wikipedia.org/wiki/cosc_function
+
+
+
+[@stdlib/math/base/special/cos]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/cos
+
+
+
+
+
+
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..82f1b60e961c
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/benchmark.js
@@ -0,0 +1,51 @@
+/**
+* @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 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();
+});
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..2fda30176c77
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/cosc/benchmark/c/native/benchmark.c
@@ -0,0 +1,135 @@
+/**
+* @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 );
+}
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..35f8f1c05286
--- /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) 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.
+
+"""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()
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..ec3992233442
--- /dev/null
+++ 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
+}
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/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..efa87d70f225
--- /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) 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.
+*/
+
+// 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;
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..3d5b4100c582
--- /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) 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.
+*/
+
+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
+}
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..6aed70daf167
--- /dev/null
+++ 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
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..489a7b6be4de
--- /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/examples/index.js b/lib/node_modules/@stdlib/math/base/special/cosc/examples/index.js
new file mode 100644
index 000000000000..e8aca529d76b
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/cosc/examples/index.js
@@ -0,0 +1,29 @@
+/**
+* @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';
+
+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 ] ) );
+}
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..575cb043c0bf
--- /dev/null
+++ 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': [
+ '=0.10.0",
+ "npm": ">2.7.0"
+ },
+ "os": [
+ "aix",
+ "darwin",
+ "freebsd",
+ "linux",
+ "macos",
+ "openbsd",
+ "sunos",
+ "win32",
+ "windows"
+ ],
+ "keywords": [
+ "stdlib",
+ "stdmath",
+ "mathematics",
+ "math",
+ "cos",
+ "cosc",
+ "cos",
+ "cardinal",
+ "trig",
+ "trigonometry",
+ "normalized"
+ ]
+ }
+
\ No newline at end of file
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..bcf18aa46655
--- /dev/null
+++ 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/addon.c b/lib/node_modules/@stdlib/math/base/special/cosc/src/addon.c
new file mode 100644
index 000000000000..9137a9500f37
--- /dev/null
+++ 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 )
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..344efcfdb64d
--- /dev/null
+++ 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;
+}
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..308c3be89c85
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/REQUIRE
@@ -0,0 +1,2 @@
+julia 1.5
+JSON 0.21
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..acee91d9d4fc
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/data.json
@@ -0,0 +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.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]}
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..95b3fdda78ac
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_negative.json
@@ -0,0 +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]}
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..f43f0e637a94
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/large_positive.json
@@ -0,0 +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.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]}
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..3e5725c0d4b4
--- /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) 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.
+
+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" );
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..019997e30ba7
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/tiny_negative.json
@@ -0,0 +1 @@
+{"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
new file mode 100644
index 000000000000..644e9b177d0f
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/fixtures/julia/tiny_positive.json
@@ -0,0 +1 @@
+{"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]}
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..3205bbf7c6ca
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/cosc/test/test.js
@@ -0,0 +1,188 @@
+/**
+* @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 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 cosc, '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();
+});
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..5c15299a3c21
--- /dev/null
+++ 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();
+});