diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/README.md b/lib/node_modules/@stdlib/complex/float32/base/div/README.md
new file mode 100644
index 000000000000..1d83be912a38
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/README.md
@@ -0,0 +1,249 @@
+
+
+# div
+
+> Divide two single-precision complex floating-point numbers.
+
+
+
+
+
+
+
+## Usage
+
+```javascript
+var div = require( '@stdlib/complex/float32/base/div' );
+```
+
+#### div( z1, z2 )
+
+Divides two single-precision complex floating-point numbers.
+
+```javascript
+var Complex64 = require( '@stdlib/complex/float32/ctor' );
+
+var z1 = new Complex64( -13.0, -1.0 );
+var z2 = new Complex64( -2.0, 1.0 );
+
+var v = div( z1, z2 );
+// returns [ 5.0, 3.0 ]
+```
+
+
+
+
+
+
+
+## Examples
+
+
+
+```javascript
+var Complex64Array = require( '@stdlib/array/complex64' );
+var discreteUniform = require( '@stdlib/random/array/discrete-uniform' );
+var logEachMap = require( '@stdlib/console/log-each-map' );
+var div = require( '@stdlib/complex/float32/base/div' );
+
+// Generate arrays of random values:
+var z1 = new Complex64Array( discreteUniform( 200, -50, 50 ) );
+var z2 = new Complex64Array( discreteUniform( 200, -50, 50 ) );
+
+// Perform element-wise division:
+logEachMap( '(%s) / (%s) = %s', z1, z2, div );
+```
+
+
+
+
+
+
+
+* * *
+
+
+
+## C APIs
+
+
+
+
+
+
+
+
+
+
+
+### Usage
+
+```c
+#include "stdlib/complex/float32/base/div.h"
+```
+
+#### stdlib_base_complex64_div( z1, z2 )
+
+Divides two single-precision complex floating-point numbers.
+
+```c
+#include "stdlib/complex/float32/ctor.h"
+#include "stdlib/complex/float32/real.h"
+#include "stdlib/complex/float32/imag.h"
+
+stdlib_complex64_t z1 = stdlib_complex64( -13.0, -1.0 );
+stdlib_complex64_t z2 = stdlib_complex64( -2.0, 1.0 );
+
+stdlib_complex64_t out = stdlib_base_complex64_div( z1, z2 );
+
+float re = stdlib_complex64_real( out );
+// returns 5.0
+
+float im = stdlib_complex64_imag( out );
+// returns 3.0
+```
+
+The function accepts the following arguments:
+
+- **z1**: `[in] stdlib_complex64_t` input value.
+- **z2**: `[in] stdlib_complex64_t` input value.
+
+```c
+stdlib_complex64_t stdlib_base_complex64_div( const stdlib_complex64_t z1, const stdlib_complex64_t z2 );
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+### Examples
+
+```c
+#include "stdlib/complex/float32/base/div.h"
+#include "stdlib/complex/float32/ctor.h"
+#include "stdlib/complex/float32/reim.h"
+#include
+
+int main( void ) {
+ const stdlib_complex64_t x[] = {
+ stdlib_complex64( 3.14, 1.5 ),
+ stdlib_complex64( -3.14, 1.5 ),
+ stdlib_complex64( 0.0, -0.0 ),
+ stdlib_complex64( 0.0/0.0, 0.0/0.0 )
+ };
+
+ stdlib_complex64_t v;
+ stdlib_complex64_t y;
+ float re;
+ float im;
+ int i;
+ for ( i = 0; i < 4; i++ ) {
+ v = x[ i ];
+ stdlib_complex64_reim( v, &re, &im );
+ printf( "z = %lf + %lfi\n", re, im );
+
+ y = stdlib_base_complex64_div( v, v );
+ stdlib_complex64_reim( y, &re, &im );
+ printf( "div(z, z) = %lf + %lfi\n", re, im );
+ }
+}
+```
+
+
+
+
+
+
+
+
+
+* * *
+
+
+
+## References
+
+- Smith, Robert L. 1962. "Algorithm 116: Complex Division." _Commun. ACM_ 5 (8). New York, NY, USA: ACM: 435. doi:[10.1145/368637.368661][@smith:1962a].
+- Stewart, G. W. 1985. "A Note on Complex Division." _ACM Trans. Math. Softw._ 11 (3). New York, NY, USA: ACM: 238–41. doi:[10.1145/214408.214414][@stewart:1985a].
+- Priest, Douglas M. 2004. "Efficient Scaling for Complex Division." _ACM Trans. Math. Softw._ 30 (4). New York, NY, USA: ACM: 389–401. doi:[10.1145/1039813.1039814][@priest:2004a].
+- Baudin, Michael, and Robert L. Smith. 2012. "A Robust Complex Division in Scilab." _arXiv_ abs/1210.4539 \[cs.MS] (October): 1–25. [<https://arxiv.org/abs/1210.4539>][@baudin:2012a].
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+[@smith:1962a]: https://doi.org/10.1145/368637.368661
+
+[@stewart:1985a]: https://doi.org/10.1145/214408.214414
+
+[@priest:2004a]: https://doi.org/10.1145/1039813.1039814
+
+[@baudin:2012a]: https://arxiv.org/abs/1210.4539
+
+
+
+[@stdlib/complex/float32/base/add]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32/base/add
+
+[@stdlib/complex/float32/base/mul]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32/base/mul
+
+[@stdlib/complex/float32/base/sub]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32/base/sub
+
+
+
+
+
+
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/benchmark.js b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/benchmark.js
new file mode 100644
index 000000000000..9b18053d4c19
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/benchmark.js
@@ -0,0 +1,111 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var bench = require( '@stdlib/bench' );
+var Complex64 = require( '@stdlib/complex/float32/ctor' );
+var isComplex64 = require( '@stdlib/assert/is-complex64' );
+var uniform = require( '@stdlib/random/base/uniform' );
+var realf = require( '@stdlib/complex/float32/real' );
+var imagf = require( '@stdlib/complex/float32/imag' );
+var absf = require( '@stdlib/math/base/special/absf' );
+var pkg = require( './../package.json' ).name;
+var div = require( './../lib' );
+
+
+// MAIN //
+
+bench( pkg, function benchmark( b ) {
+ var values;
+ var y;
+ var i;
+ var z;
+
+ values = [
+ new Complex64( uniform( -500.0, 500.0 ), uniform( -500.0, 500.0 ) ),
+ new Complex64( uniform( -500.0, 500.0 ), uniform( -500.0, 500.0 ) )
+ ];
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ z = values[ i % values.length ];
+ y = div( z, z );
+ if ( typeof y !== 'object' ) {
+ b.fail( 'should return an object' );
+ }
+ }
+ b.toc();
+ if ( !isComplex64( y ) ) {
+ b.fail( 'should return a Complex64' );
+ }
+ b.pass( 'benchmark finished' );
+ b.end();
+});
+
+bench( pkg+'::smiths_algorithm', function benchmark( b ) {
+ var values;
+ var y;
+ var i;
+ var z;
+
+ values = [
+ new Complex64( uniform( -500.0, 500.0 ), uniform( -500.0, 500.0 ) ),
+ new Complex64( uniform( -500.0, 500.0 ), uniform( -500.0, 500.0 ) )
+ ];
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ z = values[ i % values.length ];
+ y = div( z, z );
+ if ( typeof y !== 'object' ) {
+ b.fail( 'should return an object' );
+ }
+ }
+ b.toc();
+ if ( !isComplex64( y ) ) {
+ b.fail( 'should return a Complex64' );
+ }
+ b.pass( 'benchmark finished' );
+ b.end();
+
+ function div( z1, z2 ) {
+ var re1;
+ var re2;
+ var im1;
+ var im2;
+ var a;
+ var b;
+
+ re1 = realf( z1 );
+ re2 = realf( z2 );
+ im1 = imagf( z1 );
+ im2 = imagf( z2 );
+
+ if ( absf( re2 ) >= absf( im2 ) ) {
+ a = im2 / re2;
+ b = re2 + ( im2 * a );
+ return new Complex64( ( re1 + (im1 * a) )/b, (im1 - (re1*a) )/b );
+ }
+ a = re2 / im2;
+ b = ( re2 * a ) + im2;
+ return new Complex64( ( (re1*a) + im1 )/b, ( (im1*a) - re1 )/b );
+ }
+});
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/benchmark.native.js
new file mode 100644
index 000000000000..7269f2d21af8
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/benchmark.native.js
@@ -0,0 +1,69 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var resolve = require( 'path' ).resolve;
+var bench = require( '@stdlib/bench' );
+var uniform = require( '@stdlib/random/base/uniform' );
+var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
+var Complex64 = require( '@stdlib/complex/float32/ctor' );
+var realf = require( '@stdlib/complex/float32/realf' );
+var imagf = require( '@stdlib/complex/float32/imagf' );
+var tryRequire = require( '@stdlib/utils/try-require' );
+var pkg = require( './../package.json' ).name;
+
+
+// VARIABLES //
+
+var div = tryRequire( resolve( __dirname, './../lib/native.js' ) );
+var opts = {
+ 'skip': ( div instanceof Error )
+};
+
+
+// MAIN //
+
+bench( pkg+'::native', opts, function benchmark( b ) {
+ var values;
+ var out;
+ var z;
+ var i;
+
+ values = [
+ new Complex64( uniform( -500.0, 500.0 ), uniform( -500.0, 500.0 ) ),
+ new Complex64( uniform( -500.0, 500.0 ), uniform( -500.0, 500.0 ) )
+ ];
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ z = values[ i%values.length ];
+ out = div( z, z );
+ if ( typeof out !== 'object' ) {
+ b.fail( 'should return an object' );
+ }
+ }
+ b.toc();
+ if ( isnanf( realf( out ) ) || isnanf( imagf( out ) ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ b.pass( 'benchmark finished' );
+ b.end();
+});
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/c/Makefile b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/c/Makefile
new file mode 100644
index 000000000000..d564e8b2d6f9
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/c/Makefile
@@ -0,0 +1,127 @@
+#/
+# @license Apache-2.0
+#
+# Copyright (c) 2025 The Stdlib Authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#/
+
+
+# VARIABLES #
+
+ifndef VERBOSE
+ QUIET := @
+else
+ QUIET :=
+endif
+
+# Determine the OS ([1][1], [2][2]).
+#
+# [1]: https://en.wikipedia.org/wiki/Uname#Examples
+# [2]: http://stackoverflow.com/a/27776822/2225624
+OS ?= $(shell uname)
+ifneq (, $(findstring MINGW,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring MSYS,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring CYGWIN,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring Windows_NT,$(OS)))
+ OS := WINNT
+endif
+endif
+endif
+endif
+
+# Define the program used for compiling C source files:
+ifdef C_COMPILER
+ CC := $(C_COMPILER)
+else
+ CC := gcc
+endif
+
+# Define the command-line options when compiling C files:
+CFLAGS ?= \
+ -std=c99 \
+ -O3 \
+ -Wall \
+ -pedantic
+
+# Determine whether to generate position independent code ([1][1], [2][2]).
+#
+# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options
+# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option
+ifeq ($(OS), WINNT)
+ fPIC ?=
+else
+ fPIC ?= -fPIC
+endif
+
+# List of C targets:
+c_targets := benchmark.out
+
+
+# RULES #
+
+#/
+# Compiles C source files.
+#
+# @param {string} [C_COMPILER] - C compiler
+# @param {string} [CFLAGS] - C compiler flags
+# @param {(string|void)} [fPIC] - compiler flag indicating whether to generate position independent code
+#
+# @example
+# make
+#
+# @example
+# make all
+#/
+all: $(c_targets)
+
+.PHONY: all
+
+#/
+# Compiles C source files.
+#
+# @private
+# @param {string} CC - C compiler
+# @param {string} CFLAGS - C compiler flags
+# @param {(string|void)} fPIC - compiler flag indicating whether to generate position independent code
+#/
+$(c_targets): %.out: %.c
+ $(QUIET) $(CC) $(CFLAGS) $(fPIC) -o $@ $< -lm
+
+#/
+# Runs compiled benchmarks.
+#
+# @example
+# make run
+#/
+run: $(c_targets)
+ $(QUIET) ./$<
+
+.PHONY: run
+
+#/
+# Removes generated files.
+#
+# @example
+# make clean
+#/
+clean:
+ $(QUIET) -rm -f *.o *.out
+
+.PHONY: clean
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/c/benchmark.c b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/c/benchmark.c
new file mode 100644
index 000000000000..89cb503f416d
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/c/benchmark.c
@@ -0,0 +1,143 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+#include
+#include
+#include
+#include
+#include
+
+#define NAME "div"
+#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 float rand_float( void ) {
+ int r = rand();
+ return (float)r / ( (float)RAND_MAX + 1.0f );
+}
+
+/**
+* Runs a benchmark.
+*
+* @return elapsed time in seconds
+*/
+static double benchmark( void ) {
+ double elapsed;
+ float re;
+ float im;
+ double t;
+ int i;
+
+ float complex z1;
+ float complex z2;
+ float complex z3;
+
+ t = tic();
+ for ( i = 0; i < ITERATIONS; i++ ) {
+ re = ( 1000.0f*rand_float() ) - 500.0f;
+ im = ( 1000.0f*rand_float() ) - 500.0f;
+ z1 = re + im*I;
+
+ re = ( 1000.0f*rand_float() ) - 500.0f;
+ im = ( 1000.0f*rand_float() ) - 500.0f;
+ z2 = re + im*I;
+
+ z3 = z1 / z2;
+ if ( z3 != z3 ) {
+ printf( "should not return NaN\n" );
+ break;
+ }
+ }
+ elapsed = tic() - t;
+ if ( z3 != z3 ) {
+ printf( "should not return NaN\n" );
+ }
+ return elapsed;
+}
+
+/**
+* Main execution sequence.
+*/
+int main( void ) {
+ double elapsed;
+ int i;
+
+ // Use the current time to seed the random number generator:
+ srand( time( NULL ) );
+
+ print_version();
+ for ( i = 0; i < REPEATS; i++ ) {
+ printf( "# c::%s\n", NAME );
+ elapsed = benchmark();
+ print_results( elapsed );
+ printf( "ok %d benchmark finished\n", i+1 );
+ }
+ print_summary( REPEATS, REPEATS );
+}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/c/native/Makefile b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/c/native/Makefile
new file mode 100644
index 000000000000..a4bd7b38fd74
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/c/native/Makefile
@@ -0,0 +1,146 @@
+#/
+# @license Apache-2.0
+#
+# Copyright (c) 2025 The Stdlib Authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#/
+
+# VARIABLES #
+
+ifndef VERBOSE
+ QUIET := @
+else
+ QUIET :=
+endif
+
+# Determine the OS ([1][1], [2][2]).
+#
+# [1]: https://en.wikipedia.org/wiki/Uname#Examples
+# [2]: http://stackoverflow.com/a/27776822/2225624
+OS ?= $(shell uname)
+ifneq (, $(findstring MINGW,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring MSYS,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring CYGWIN,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring Windows_NT,$(OS)))
+ OS := WINNT
+endif
+endif
+endif
+endif
+
+# Define the program used for compiling C source files:
+ifdef C_COMPILER
+ CC := $(C_COMPILER)
+else
+ CC := gcc
+endif
+
+# Define the command-line options when compiling C files:
+CFLAGS ?= \
+ -std=c99 \
+ -O3 \
+ -Wall \
+ -pedantic
+
+# Determine whether to generate position independent code ([1][1], [2][2]).
+#
+# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options
+# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option
+ifeq ($(OS), WINNT)
+ fPIC ?=
+else
+ fPIC ?= -fPIC
+endif
+
+# List of includes (e.g., `-I /foo/bar -I /beep/boop/include`):
+INCLUDE ?=
+
+# List of source files:
+SOURCE_FILES ?=
+
+# List of libraries (e.g., `-lopenblas -lpthread`):
+LIBRARIES ?=
+
+# List of library paths (e.g., `-L /foo/bar -L /beep/boop`):
+LIBPATH ?=
+
+# List of C targets:
+c_targets := benchmark.out
+
+
+# RULES #
+
+#/
+# Compiles source files.
+#
+# @param {string} [C_COMPILER] - C compiler (e.g., `gcc`)
+# @param {string} [CFLAGS] - C compiler options
+# @param {(string|void)} [fPIC] - compiler flag determining whether to generate position independent code (e.g., `-fPIC`)
+# @param {string} [INCLUDE] - list of includes (e.g., `-I /foo/bar -I /beep/boop/include`)
+# @param {string} [SOURCE_FILES] - list of source files
+# @param {string} [LIBPATH] - list of library paths (e.g., `-L /foo/bar -L /beep/boop`)
+# @param {string} [LIBRARIES] - list of libraries (e.g., `-lopenblas -lpthread`)
+#
+# @example
+# make
+#
+# @example
+# make all
+#/
+all: $(c_targets)
+
+.PHONY: all
+
+#/
+# Compiles C source files.
+#
+# @private
+# @param {string} CC - C compiler (e.g., `gcc`)
+# @param {string} CFLAGS - C compiler options
+# @param {(string|void)} fPIC - compiler flag determining whether to generate position independent code (e.g., `-fPIC`)
+# @param {string} INCLUDE - list of includes (e.g., `-I /foo/bar`)
+# @param {string} SOURCE_FILES - list of source files
+# @param {string} LIBPATH - list of library paths (e.g., `-L /foo/bar`)
+# @param {string} LIBRARIES - list of libraries (e.g., `-lopenblas`)
+#/
+$(c_targets): %.out: %.c
+ $(QUIET) $(CC) $(CFLAGS) $(fPIC) $(INCLUDE) -o $@ $(SOURCE_FILES) $< $(LIBPATH) -lm $(LIBRARIES)
+
+#/
+# Runs compiled benchmarks.
+#
+# @example
+# make run
+#/
+run: $(c_targets)
+ $(QUIET) ./$<
+
+.PHONY: run
+
+#/
+# Removes generated files.
+#
+# @example
+# make clean
+#/
+clean:
+ $(QUIET) -rm -f *.o *.out
+
+.PHONY: clean
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/c/native/benchmark.c
new file mode 100644
index 000000000000..cd188c2e4966
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/c/native/benchmark.c
@@ -0,0 +1,147 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+#include "stdlib/complex/float32/base/div.h"
+#include "stdlib/complex/float32/ctor.h"
+#include "stdlib/complex/float32/reim.h"
+#include
+#include
+#include
+#include
+#include
+
+#define NAME "div"
+#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 float rand_float( void ) {
+ int r = rand();
+ return (float)r / ( (float)RAND_MAX + 1.0f );
+}
+
+/**
+* Runs a benchmark.
+*
+* @return elapsed time in seconds
+*/
+static double benchmark( void ) {
+ double elapsed;
+ float re;
+ float im;
+ double t;
+ int i;
+
+ stdlib_complex64_t z1;
+ stdlib_complex64_t z2;
+ stdlib_complex64_t z3;
+
+ t = tic();
+ for ( i = 0; i < ITERATIONS; i++ ) {
+ re = ( 1000.0f*rand_float() ) - 500.0f;
+ im = ( 1000.0f*rand_float() ) - 500.0f;
+ z1 = stdlib_complex64( re, im );
+
+ re = ( 1000.0f*rand_float() ) - 500.0f;
+ im = ( 1000.0f*rand_float() ) - 500.0f;
+ z2 = stdlib_complex64( re, im );
+
+ z3 = stdlib_base_complex64_div( z1, z2 );
+ stdlib_complex64_reim( z3, &re, &im );
+ if ( re != re ) {
+ printf( "should not return NaN\n" );
+ break;
+ }
+ }
+ elapsed = tic() - t;
+ if ( im != im ) {
+ 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/complex/float32/base/div/benchmark/julia/REQUIRE b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/julia/REQUIRE
new file mode 100644
index 000000000000..98645e192e41
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/julia/REQUIRE
@@ -0,0 +1,2 @@
+julia 1.5
+BenchmarkTools 0.5.0
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/julia/benchmark.jl b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/julia/benchmark.jl
new file mode 100644
index 000000000000..d985f01c1cac
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/benchmark/julia/benchmark.jl
@@ -0,0 +1,144 @@
+#!/usr/bin/env julia
+#
+# @license Apache-2.0
+#
+# Copyright (c) 2025 The Stdlib Authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+import BenchmarkTools
+using Printf
+
+# Benchmark variables:
+name = "divide";
+repeats = 3;
+
+"""
+ print_version()
+
+Prints the TAP version.
+
+# Examples
+
+``` julia
+julia> print_version()
+```
+"""
+function print_version()
+ @printf( "TAP version 13\n" );
+end
+
+"""
+ print_summary( total, passing )
+
+Print the benchmark summary.
+
+# Arguments
+
+* `total`: total number of tests
+* `passing`: number of passing tests
+
+# Examples
+
+``` julia
+julia> print_summary( 3, 3 )
+```
+"""
+function print_summary( total, passing )
+ @printf( "#\n" );
+ @printf( "1..%d\n", total ); # TAP plan
+ @printf( "# total %d\n", total );
+ @printf( "# pass %d\n", passing );
+ @printf( "#\n" );
+ @printf( "# ok\n" );
+end
+
+"""
+ print_results( iterations, elapsed )
+
+Print benchmark results.
+
+# Arguments
+
+* `iterations`: number of iterations
+* `elapsed`: elapsed time (in seconds)
+
+# Examples
+
+``` julia
+julia> print_results( 1000000, 0.131009101868 )
+```
+"""
+function print_results( iterations, elapsed )
+ rate = iterations / elapsed
+
+ @printf( " ---\n" );
+ @printf( " iterations: %d\n", iterations );
+ @printf( " elapsed: %0.9f\n", elapsed );
+ @printf( " rate: %0.9f\n", rate );
+ @printf( " ...\n" );
+end
+
+"""
+ benchmark()
+
+Run a benchmark.
+
+# Notes
+
+* Benchmark results are returned as a two-element array: [ iterations, elapsed ].
+* The number of iterations is not the true number of iterations. Instead, an 'iteration' is defined as a 'sample', which is a computed estimate for a single evaluation.
+* The elapsed time is in seconds.
+
+# Examples
+
+``` julia
+julia> out = benchmark();
+```
+"""
+function benchmark()
+ t = BenchmarkTools.@benchmark ComplexF32( (rand()*1000.0)-500.0, (rand()*1000.0)-500.0 ) / ComplexF32( (rand()*1000.0)-500.0, (rand()*1000.0)-500.0 ) samples=1e6
+
+ # Compute the total "elapsed" time and convert from nanoseconds to seconds:
+ s = sum( t.times ) / 1.0e9;
+
+ # Determine the number of "iterations":
+ iter = length( t.times );
+
+ # Return the results:
+ [ iter, s ];
+end
+
+"""
+ main()
+
+Run benchmarks.
+
+# Examples
+
+``` julia
+julia> main();
+```
+"""
+function main()
+ print_version();
+ for i in 1:repeats
+ @printf( "# julia::%s\n", name );
+ results = benchmark();
+ print_results( results[ 1 ], results[ 2 ] );
+ @printf( "ok %d benchmark finished\n", i );
+ end
+ print_summary( repeats, repeats );
+end
+
+main();
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/binding.gyp b/lib/node_modules/@stdlib/complex/float32/base/div/binding.gyp
new file mode 100644
index 000000000000..68a1ca11d160
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/binding.gyp
@@ -0,0 +1,170 @@
+# @license Apache-2.0
+#
+# Copyright (c) 2025 The Stdlib Authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# A `.gyp` file for building a Node.js native add-on.
+#
+# [1]: https://gyp.gsrc.io/docs/InputFormatReference.md
+# [2]: https://gyp.gsrc.io/docs/UserDocumentation.md
+{
+ # List of files to include in this file:
+ 'includes': [
+ './include.gypi',
+ ],
+
+ # Define variables to be used throughout the configuration for all targets:
+ 'variables': {
+ # Target name should match the add-on export name:
+ 'addon_target_name%': 'addon',
+
+ # Set variables based on the host OS:
+ 'conditions': [
+ [
+ 'OS=="win"',
+ {
+ # Define the object file suffix:
+ 'obj': 'obj',
+ },
+ {
+ # Define the object file suffix:
+ 'obj': 'o',
+ }
+ ], # end condition (OS=="win")
+ ], # end conditions
+ }, # end variables
+
+ # Define compile targets:
+ 'targets': [
+
+ # Target to generate an add-on:
+ {
+ # The target name should match the add-on export name:
+ 'target_name': '<(addon_target_name)',
+
+ # Define dependencies:
+ 'dependencies': [],
+
+ # Define directories which contain relevant include headers:
+ 'include_dirs': [
+ # Local include directory:
+ '<@(include_dirs)',
+ ],
+
+ # List of source files:
+ 'sources': [
+ '<@(src_files)',
+ ],
+
+ # Settings which should be applied when a target's object files are used as linker input:
+ 'link_settings': {
+ # Define libraries:
+ 'libraries': [
+ '<@(libraries)',
+ ],
+
+ # Define library directories:
+ 'library_dirs': [
+ '<@(library_dirs)',
+ ],
+ },
+
+ # C/C++ compiler flags:
+ 'cflags': [
+ # Enable commonly used warning options:
+ '-Wall',
+
+ # Aggressive optimization:
+ '-O3',
+ ],
+
+ # C specific compiler flags:
+ 'cflags_c': [
+ # Specify the C standard to which a program is expected to conform:
+ '-std=c99',
+ ],
+
+ # C++ specific compiler flags:
+ 'cflags_cpp': [
+ # Specify the C++ standard to which a program is expected to conform:
+ '-std=c++11',
+ ],
+
+ # Linker flags:
+ 'ldflags': [],
+
+ # Apply conditions based on the host OS:
+ 'conditions': [
+ [
+ 'OS=="mac"',
+ {
+ # Linker flags:
+ 'ldflags': [
+ '-undefined dynamic_lookup',
+ '-Wl,-no-pie',
+ '-Wl,-search_paths_first',
+ ],
+ },
+ ], # end condition (OS=="mac")
+ [
+ 'OS!="win"',
+ {
+ # C/C++ flags:
+ 'cflags': [
+ # Generate platform-independent code:
+ '-fPIC',
+ ],
+ },
+ ], # end condition (OS!="win")
+ ], # end conditions
+ }, # end target <(addon_target_name)
+
+ # Target to copy a generated add-on to a standard location:
+ {
+ 'target_name': 'copy_addon',
+
+ # Declare that the output of this target is not linked:
+ 'type': 'none',
+
+ # Define dependencies:
+ 'dependencies': [
+ # Require that the add-on be generated before building this target:
+ '<(addon_target_name)',
+ ],
+
+ # Define a list of actions:
+ 'actions': [
+ {
+ 'action_name': 'copy_addon',
+ 'message': 'Copying addon...',
+
+ # Explicitly list the inputs in the command-line invocation below:
+ 'inputs': [],
+
+ # Declare the expected outputs:
+ 'outputs': [
+ '<(addon_output_dir)/<(addon_target_name).node',
+ ],
+
+ # Define the command-line invocation:
+ 'action': [
+ 'cp',
+ '<(PRODUCT_DIR)/<(addon_target_name).node',
+ '<(addon_output_dir)/<(addon_target_name).node',
+ ],
+ },
+ ], # end actions
+ }, # end target copy_addon
+ ], # end targets
+}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/docs/repl.txt b/lib/node_modules/@stdlib/complex/float32/base/div/docs/repl.txt
new file mode 100644
index 000000000000..e0779ce3a027
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/docs/repl.txt
@@ -0,0 +1,33 @@
+
+{{alias}}( z1, z2 )
+ Divides two single-precision complex floating-point numbers.
+
+ Parameters
+ ----------
+ z1: Complex64
+ Complex number.
+
+ z2: Complex64
+ Complex number.
+
+ Returns
+ -------
+ out: Complex64
+ Result.
+
+ Examples
+ --------
+ > var z1 = new {{alias:@stdlib/complex/float32/ctor}}( -13.0, -1.0 )
+
+ > var z2 = new {{alias:@stdlib/complex/float32/ctor}}( -2.0, 1.0 )
+
+ > var y = {{alias}}( z1, z2 )
+
+ > var re = {{alias:@stdlib/complex/float32/real}}( y )
+ 5.0
+ > var im = {{alias:@stdlib/complex/float32/imag}}( y )
+ 3.0
+
+ See Also
+ --------
+
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/docs/types/index.d.ts b/lib/node_modules/@stdlib/complex/float32/base/div/docs/types/index.d.ts
new file mode 100644
index 000000000000..de015bd3c823
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/docs/types/index.d.ts
@@ -0,0 +1,46 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+// TypeScript Version: 4.1
+
+///
+
+import { Complex64 } from '@stdlib/types/complex';
+
+/**
+* Divides two single-precision complex floating-point numbers.
+*
+* @param z1 - complex number
+* @param z2 - complex number
+* @returns result
+*
+* @example
+* var Complex64 = require( '@stdlib/complex/float32/ctor' );
+*
+* var z1 = new Complex64( -13.0, -1.0 );
+* var z2 = new Complex64( -2.0, 1.0 );
+*
+* var out = div( z1, z2 );
+* // returns [ 5.0, 3.0 ]
+*/
+declare function div( z1: Complex64, z2: Complex64 ): Complex64;
+
+
+// EXPORTS //
+
+export = div;
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/docs/types/test.ts b/lib/node_modules/@stdlib/complex/float32/base/div/docs/types/test.ts
new file mode 100644
index 000000000000..91c05384653c
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/docs/types/test.ts
@@ -0,0 +1,67 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+import Complex64 = require( '@stdlib/complex/float32/ctor' );
+import div = require( './index' );
+
+
+// TESTS //
+
+// The function returns an array of numbers...
+{
+ const z = new Complex64( 1.0, 1.0 );
+
+ div( z, z ); // $ExpectType Complex64
+}
+
+// The compiler throws an error if the function is provided a first argument which is not a complex number...
+{
+ const z = new Complex64( 1.0, 1.0 );
+
+ div( true, z ); // $ExpectError
+ div( false, z ); // $ExpectError
+ div( null, z ); // $ExpectError
+ div( undefined, z ); // $ExpectError
+ div( '5', z ); // $ExpectError
+ div( [], z ); // $ExpectError
+ div( {}, z ); // $ExpectError
+ div( ( x: number ): number => x, z ); // $ExpectError
+}
+
+// The compiler throws an error if the function is provided a second argument which is not a complex number...
+{
+ const z = new Complex64( 1.0, 1.0 );
+
+ div( z, true ); // $ExpectError
+ div( z, false ); // $ExpectError
+ div( z, null ); // $ExpectError
+ div( z, undefined ); // $ExpectError
+ div( z, '5' ); // $ExpectError
+ div( z, [] ); // $ExpectError
+ div( z, {} ); // $ExpectError
+ div( z, ( x: number ): number => x ); // $ExpectError
+}
+
+// The compiler throws an error if the function is provided an unsupported number of arguments...
+{
+ const z = new Complex64( 1.0, 1.0 );
+
+ div(); // $ExpectError
+ div( z ); // $ExpectError
+ div( z, z, z ); // $ExpectError
+}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/examples/c/Makefile b/lib/node_modules/@stdlib/complex/float32/base/div/examples/c/Makefile
new file mode 100644
index 000000000000..25ced822f96a
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/examples/c/Makefile
@@ -0,0 +1,146 @@
+#/
+# @license Apache-2.0
+#
+# Copyright (c) 2025 The Stdlib Authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#/
+
+# VARIABLES #
+
+ifndef VERBOSE
+ QUIET := @
+else
+ QUIET :=
+endif
+
+# Determine the OS ([1][1], [2][2]).
+#
+# [1]: https://en.wikipedia.org/wiki/Uname#Examples
+# [2]: http://stackoverflow.com/a/27776822/2225624
+OS ?= $(shell uname)
+ifneq (, $(findstring MINGW,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring MSYS,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring CYGWIN,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring Windows_NT,$(OS)))
+ OS := WINNT
+endif
+endif
+endif
+endif
+
+# Define the program used for compiling C source files:
+ifdef C_COMPILER
+ CC := $(C_COMPILER)
+else
+ CC := gcc
+endif
+
+# Define the command-line options when compiling C files:
+CFLAGS ?= \
+ -std=c99 \
+ -O3 \
+ -Wall \
+ -pedantic
+
+# Determine whether to generate position independent code ([1][1], [2][2]).
+#
+# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options
+# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option
+ifeq ($(OS), WINNT)
+ fPIC ?=
+else
+ fPIC ?= -fPIC
+endif
+
+# List of includes (e.g., `-I /foo/bar -I /beep/boop/include`):
+INCLUDE ?=
+
+# List of source files:
+SOURCE_FILES ?=
+
+# List of libraries (e.g., `-lopenblas -lpthread`):
+LIBRARIES ?=
+
+# List of library paths (e.g., `-L /foo/bar -L /beep/boop`):
+LIBPATH ?=
+
+# List of C targets:
+c_targets := example.out
+
+
+# RULES #
+
+#/
+# Compiles source files.
+#
+# @param {string} [C_COMPILER] - C compiler (e.g., `gcc`)
+# @param {string} [CFLAGS] - C compiler options
+# @param {(string|void)} [fPIC] - compiler flag determining whether to generate position independent code (e.g., `-fPIC`)
+# @param {string} [INCLUDE] - list of includes (e.g., `-I /foo/bar -I /beep/boop/include`)
+# @param {string} [SOURCE_FILES] - list of source files
+# @param {string} [LIBPATH] - list of library paths (e.g., `-L /foo/bar -L /beep/boop`)
+# @param {string} [LIBRARIES] - list of libraries (e.g., `-lopenblas -lpthread`)
+#
+# @example
+# make
+#
+# @example
+# make all
+#/
+all: $(c_targets)
+
+.PHONY: all
+
+#/
+# Compiles C source files.
+#
+# @private
+# @param {string} CC - C compiler (e.g., `gcc`)
+# @param {string} CFLAGS - C compiler options
+# @param {(string|void)} fPIC - compiler flag determining whether to generate position independent code (e.g., `-fPIC`)
+# @param {string} INCLUDE - list of includes (e.g., `-I /foo/bar`)
+# @param {string} SOURCE_FILES - list of source files
+# @param {string} LIBPATH - list of library paths (e.g., `-L /foo/bar`)
+# @param {string} LIBRARIES - list of libraries (e.g., `-lopenblas`)
+#/
+$(c_targets): %.out: %.c
+ $(QUIET) $(CC) $(CFLAGS) $(fPIC) $(INCLUDE) -o $@ $(SOURCE_FILES) $< $(LIBPATH) -lm $(LIBRARIES)
+
+#/
+# Runs compiled examples.
+#
+# @example
+# make run
+#/
+run: $(c_targets)
+ $(QUIET) ./$<
+
+.PHONY: run
+
+#/
+# Removes generated files.
+#
+# @example
+# make clean
+#/
+clean:
+ $(QUIET) -rm -f *.o *.out
+
+.PHONY: clean
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/examples/c/example.c b/lib/node_modules/@stdlib/complex/float32/base/div/examples/c/example.c
new file mode 100644
index 000000000000..261aee5559b0
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/examples/c/example.c
@@ -0,0 +1,46 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+#include "stdlib/complex/float32/base/div.h"
+#include "stdlib/complex/float32/ctor.h"
+#include "stdlib/complex/float32/reim.h"
+#include
+
+int main( void ) {
+ const stdlib_complex64_t x[] = {
+ stdlib_complex64( 3.14f, 1.5f ),
+ stdlib_complex64( -3.14f, 1.5f ),
+ stdlib_complex64( 0.0f, -0.0f ),
+ stdlib_complex64( 0.0f/0.0f, 0.0f/0.0f )
+ };
+
+ stdlib_complex64_t v;
+ stdlib_complex64_t y;
+ float re;
+ float im;
+ int i;
+ for ( i = 0; i < 4; i++ ) {
+ v = x[ i ];
+ stdlib_complex64_reim( v, &re, &im );
+ printf( "z = %f + %fi\n", re, im );
+
+ y = stdlib_base_complex64_div( v, v );
+ stdlib_complex64_reim( y, &re, &im );
+ printf( "div(z, z) = %f + %fi\n", re, im );
+ }
+}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/examples/index.js b/lib/node_modules/@stdlib/complex/float32/base/div/examples/index.js
new file mode 100644
index 000000000000..e732c46a517a
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/examples/index.js
@@ -0,0 +1,31 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+var Complex64Array = require( '@stdlib/array/complex64' );
+var discreteUniform = require( '@stdlib/random/array/discrete-uniform' );
+var logEachMap = require( '@stdlib/console/log-each-map' );
+var div = require( './../lib' );
+
+// Generate arrays of random values:
+var z1 = new Complex64Array( discreteUniform( 200, -50, 50 ) );
+var z2 = new Complex64Array( discreteUniform( 200, -50, 50 ) );
+
+// Perform element-wise division:
+logEachMap( '(%s) / (%s) = %s', z1, z2, div );
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/include.gypi b/lib/node_modules/@stdlib/complex/float32/base/div/include.gypi
new file mode 100644
index 000000000000..ecfaf82a3279
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/include.gypi
@@ -0,0 +1,53 @@
+# @license Apache-2.0
+#
+# Copyright (c) 2025 The Stdlib Authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# A GYP include file for building a Node.js native add-on.
+#
+# Main documentation:
+#
+# [1]: https://gyp.gsrc.io/docs/InputFormatReference.md
+# [2]: https://gyp.gsrc.io/docs/UserDocumentation.md
+{
+ # Define variables to be used throughout the configuration for all targets:
+ 'variables': {
+ # Source directory:
+ 'src_dir': './src',
+
+ # Include directories:
+ 'include_dirs': [
+ '[ 5.0, 3.0 ]
+*/
+
+// MODULES //
+
+var main = require( './main.js' );
+
+
+// EXPORTS //
+
+module.exports = main;
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/lib/internal_compreal.js b/lib/node_modules/@stdlib/complex/float32/base/div/lib/internal_compreal.js
new file mode 100644
index 000000000000..6c6bc8b82ae3
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/lib/internal_compreal.js
@@ -0,0 +1,61 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var f32 = require( '@stdlib/number/float64/base/to-float32' );
+
+
+// MAIN //
+
+/**
+* Computes the real part of the quotient.
+*
+* ## Notes
+*
+* - See figure 10 of [Baudin (2012)][@baudin:2012].
+*
+* [@baudin:2012]: https://arxiv.org/abs/1210.4539
+*
+* @private
+* @param {number} re1 - real component
+* @param {number} im1 - imaginary component
+* @param {number} re2 - real component
+* @param {number} im2 - imaginary component
+* @param {number} r - partial result
+* @param {number} t - partial result
+* @returns {number} real part of the quotient
+*/
+function internalCompreal( re1, im1, re2, im2, r, t ) {
+ var br;
+ if ( r === 0.0 ) {
+ return f32( f32( re1 + f32(im2 * f32(im1/re2)) ) * t );
+ }
+ br = f32( im1 * r );
+ if ( br === 0.0 ) {
+ return f32( f32( re1*t ) + f32( f32(im1*t) * r ) );
+ }
+ return f32( f32( re1+br ) * t );
+}
+
+
+// EXPORTS //
+
+module.exports = internalCompreal;
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/lib/main.js b/lib/node_modules/@stdlib/complex/float32/base/div/lib/main.js
new file mode 100644
index 000000000000..c0faf98ad41d
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/lib/main.js
@@ -0,0 +1,118 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var absf = require( '@stdlib/math/base/special/absf' );
+var maxf = require( '@stdlib/math/base/special/maxf' );
+var FLOAT32_BIGGEST = require( '@stdlib/constants/float32/max' );
+var FLOAT32_SMALLEST = require( '@stdlib/constants/float32/smallest-normal' );
+var EPS = require( '@stdlib/constants/float32/eps' );
+var realf = require( '@stdlib/complex/float32/real' );
+var imagf = require( '@stdlib/complex/float32/imag' );
+var Complex64 = require( '@stdlib/complex/float32/ctor' );
+var f32 = require( '@stdlib/number/float64/base/to-float32' );
+var robustInternal = require( './robust_internal.js' );
+
+
+// VARIABLES //
+
+var LARGE_THRESHOLD = f32( FLOAT32_BIGGEST * 0.5 );
+var SMALL_THRESHOLD = f32( FLOAT32_SMALLEST * f32( 2.0 / EPS ) );
+var RECIP_EPS_SQR = f32( 2.0 / ( EPS * EPS ) );
+
+
+// MAIN //
+
+/**
+* Divides two single-precision complex floating-point numbers.
+*
+* ## References
+*
+* - Baudin, Michael, and Robert L. Smith. 2012. "A Robust Complex Division in Scilab." _arXiv_ absf/1210.4539 \[cs.MS\] (October): 1–25. .
+*
+* @param {Complex64} z1 - complex number
+* @param {Complex64} z2 - complex number
+* @returns {Complex64} result
+*
+* @example
+* var Complex64 = require( '@stdlib/complex/float32/ctor' );
+*
+* var z1 = new Complex64( -13.0, -1.0 );
+* var z2 = new Complex64( -2.0, 1.0 );
+*
+* var out = div( z1, z2 );
+* // returns [ 5.0, 3.0 ]
+*/
+function div( z1, z2 ) {
+ var re1;
+ var re2;
+ var im1;
+ var im2;
+ var out;
+ var ab;
+ var cd;
+ var s;
+
+ re1 = realf( z1 );
+ re2 = realf( z2 );
+ im1 = imagf( z1 );
+ im2 = imagf( z2 );
+
+ ab = maxf( absf(re1), absf(im1) );
+ cd = maxf( absf(re2), absf(im2) );
+ s = 1.0;
+
+ if ( ab >= LARGE_THRESHOLD ) {
+ re1 = f32( re1 * 0.5 );
+ im1 = f32( im1 * 0.5 );
+ s = f32( s * 2.0 );
+ } else if ( ab <= SMALL_THRESHOLD ) {
+ re1 = f32( re1 * RECIP_EPS_SQR );
+ im1 = f32( im1 * RECIP_EPS_SQR );
+ s = f32( s / RECIP_EPS_SQR );
+ }
+ if ( cd >= LARGE_THRESHOLD ) {
+ re2 = f32( re2 * 0.5 );
+ im2 = f32( im2 * 0.5 );
+ s = f32( s * 0.5 );
+ } else if ( cd <= SMALL_THRESHOLD ) {
+ re2 = f32( re2 * RECIP_EPS_SQR );
+ im2 = f32( im2 * RECIP_EPS_SQR );
+ s = f32( s * RECIP_EPS_SQR );
+ }
+ if ( absf( im2 ) <= absf( re2 ) ) {
+ out = robustInternal( re1, im1, re2, im2 );
+ } else {
+ out = robustInternal( im1, re1, im2, re2 );
+ out[ 1 ] = f32( out[ 1 ] * -1.0 );
+ }
+ out[ 0 ] = f32( out[ 0 ] * s );
+ out[ 1 ] = f32( out[ 1 ] * s );
+ return new Complex64( out[ 0 ], out[ 1 ] );
+}
+var z1 = new Complex64( 1.0e-34, 2.0e-34 );
+var z2 = new Complex64( 1.0, 2.0 );
+var v = div( z1, z2 );
+console.log(v);
+
+// EXPORTS //
+
+module.exports = div;
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/lib/native.js b/lib/node_modules/@stdlib/complex/float32/base/div/lib/native.js
new file mode 100644
index 000000000000..bea4de5e935b
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/lib/native.js
@@ -0,0 +1,54 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var Complex64 = require( '@stdlib/complex/float32/ctor' );
+var addon = require( './../src/addon.node' );
+
+
+// MAIN //
+
+/**
+* Divides two single-precision complex floating-point numbers.
+*
+* @private
+* @param {Complex64} z1 - complex number
+* @param {Complex64} z2 - complex number
+* @returns {Complex64} result
+*
+* @example
+* var Complex64 = require( '@stdlib/complex/float32/ctor' );
+*
+* var z1 = new Complex64( -13.0, -1.0 );
+* var z2 = new Complex64( -2.0, 1.0 );
+*
+* var out = div( z1, z2 );
+* // returns [ 5.0, 3.0 ]
+*/
+function div( z1, z2 ) {
+ var v = addon( z1, z2 );
+ return new Complex64( v.re, v.im );
+}
+
+
+// EXPORTS //
+
+module.exports = div;
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/lib/robust_internal.js b/lib/node_modules/@stdlib/complex/float32/base/div/lib/robust_internal.js
new file mode 100644
index 000000000000..5f8a3e45d448
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/lib/robust_internal.js
@@ -0,0 +1,62 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var internalCompreal = require( './internal_compreal.js' );
+var f32 = require( '@stdlib/number/float64/base/to-float32' );
+
+
+// MAIN //
+
+/**
+* Computes the complex division.
+*
+* ## Notes
+*
+* - See figure 10 of [reference][@baudin:2012].
+*
+* [@baudin:2012]: https://arxiv.org/abs/1210.4539
+*
+* @private
+* @param {number} re1 - real component
+* @param {number} im1 - imaginary component
+* @param {number} re2 - real component
+* @param {number} im2 - imaginary component
+* @returns {Array} result
+*/
+function robustInternal( re1, im1, re2, im2 ) {
+ var out;
+ var r;
+ var t;
+
+ out = [ 0.0, 0.0 ];
+ r = f32( im2 / re2 );
+ t = f32( 1.0 / f32( re2 + f32(im2*r) ) );
+
+ out[ 0 ] = internalCompreal( re1, im1, re2, im2, r, t );
+ out[ 1 ] = internalCompreal( im1, -re1, re2, im2, r, t );
+ return out;
+}
+
+
+// EXPORTS //
+
+module.exports = robustInternal;
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/src/Makefile b/lib/node_modules/@stdlib/complex/float32/base/div/src/Makefile
new file mode 100644
index 000000000000..7733b6180cb4
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/src/Makefile
@@ -0,0 +1,70 @@
+#/
+# @license Apache-2.0
+#
+# Copyright (c) 2025 The Stdlib Authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#/
+
+# VARIABLES #
+
+ifndef VERBOSE
+ QUIET := @
+else
+ QUIET :=
+endif
+
+# Determine the OS ([1][1], [2][2]).
+#
+# [1]: https://en.wikipedia.org/wiki/Uname#Examples
+# [2]: http://stackoverflow.com/a/27776822/2225624
+OS ?= $(shell uname)
+ifneq (, $(findstring MINGW,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring MSYS,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring CYGWIN,$(OS)))
+ OS := WINNT
+else
+ifneq (, $(findstring Windows_NT,$(OS)))
+ OS := WINNT
+endif
+endif
+endif
+endif
+
+
+# RULES #
+
+#/
+# Removes generated files for building an add-on.
+#
+# @example
+# make clean-addon
+#/
+clean-addon:
+ $(QUIET) -rm -f *.o *.node
+
+.PHONY: clean-addon
+
+#/
+# Removes generated files.
+#
+# @example
+# make clean
+#/
+clean: clean-addon
+
+.PHONY: clean
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/src/addon.c b/lib/node_modules/@stdlib/complex/float32/base/div/src/addon.c
new file mode 100644
index 000000000000..8d8d1fdbe1a7
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/src/addon.c
@@ -0,0 +1,22 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+#include "stdlib/complex/float32/base/div.h"
+#include "stdlib/math/base/napi/binary.h"
+
+STDLIB_MATH_BASE_NAPI_MODULE_CC_C( stdlib_base_complex64_div )
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/src/main.c b/lib/node_modules/@stdlib/complex/float32/base/div/src/main.c
new file mode 100644
index 000000000000..fc1c7f4260af
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/src/main.c
@@ -0,0 +1,173 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+#include "stdlib/complex/float32/base/div.h"
+#include "stdlib/math/base/special/absf.h"
+#include "stdlib/complex/float32/ctor.h"
+#include "stdlib/complex/float32/reim.h"
+#include "stdlib/constants/float32/max.h"
+#include "stdlib/constants/float32/eps.h"
+#include "stdlib/constants/float32/smallest_normal.h"
+
+static const float LARGE_THRESHOLD = STDLIB_CONSTANT_FLOAT32_MAX * 0.5f;
+static const float SMALL_THRESHOLD = STDLIB_CONSTANT_FLOAT32_SMALLEST_NORMAL * ( 2.0f / STDLIB_CONSTANT_FLOAT32_EPS );
+static const float RECIP_EPS_SQR = 2.0f / ( STDLIB_CONSTANT_FLOAT32_EPS * STDLIB_CONSTANT_FLOAT32_EPS );
+
+/**
+* Computes the real part of the quotient.
+*
+* ## Notes
+*
+* - See figure 10 of [Baudin (2012)][@baudin:2012].
+*
+* [@baudin:2012]: https://arxiv.org/absf/1210.4539
+*
+* @param re1 real component
+* @param im1 imaginary component
+* @param re2 real component
+* @param im2 imaginary component
+* @param r partial result
+* @param t partial result
+* @return real part of the quotient
+*/
+static float internalCompreal( const float re1, const float im1, const float re2, const float im2, const float r, const float t ) {
+ float br;
+ if ( r == 0.0f ) {
+ return ( re1 + (im2 * ( im1 / re2 )) ) * t;
+ }
+ br = im1 * r;
+ if ( br == 0.0f ) {
+ return ( re1 * t ) + ( ( im1 * t ) * r );
+ }
+ return ( re1 + br ) * t;
+}
+
+/**
+* Computes the complex division.
+*
+* ## Notes
+*
+* - See figure 10 of [reference][@baudin:2012].
+*
+* [@baudin:2012]: https://arxiv.org/absf/1210.4539
+*
+* @param re1 real component
+* @param im1 imaginary component
+* @param re2 real component
+* @param im2 imaginary component
+* @param re real result
+* @param im imaginary result
+*/
+static void robustInternal( const float re1, const float im1, const float re2, const float im2, float* re, float* im ) {
+ float r;
+ float t;
+
+ r = im2 / re2;
+ t = 1.0f / ( re2 + ( im2 * r ) );
+
+ *re = internalCompreal( re1, im1, re2, im2, r, t );
+ *im = internalCompreal( im1, -re1, re2, im2, r, t );
+}
+
+/**
+* Divides two single-precision complex floating-point numbers.
+*
+* @param z1 input value
+* @param z2 input value
+* @return result
+*
+* @example
+* #include "stdlib/complex/float32/ctor.h"
+* #include "stdlib/complex/float32/real.h"
+* #include "stdlib/complex/float32/imag.h"
+*
+* stdlib_complex64_t z1 = stdlib_complex64( -13.0f, -1.0f );
+* stdlib_complex64_t z2 = stdlib_complex64( -2.0f, 1.0f );
+*
+* stdlib_complex64_t out = stdlib_base_complex64_div( z1, z2 );
+*
+* float re = stdlib_complex64_real( out );
+* // returns 5.0f
+*
+* float im = stdlib_complex64_imag( out );
+* // returns 3.0f
+*/
+stdlib_complex64_t stdlib_base_complex64_div( const stdlib_complex64_t z1, const stdlib_complex64_t z2 ) {
+ float re1;
+ float re2;
+ float im1;
+ float im2;
+ float t1;
+ float t2;
+ float ab;
+ float cd;
+ float re;
+ float im;
+ float s;
+
+ stdlib_complex64_reim( z1, &re1, &im1 );
+ stdlib_complex64_reim( z2, &re2, &im2 );
+
+ t1 = stdlib_base_absf( re1 );
+ t2 = stdlib_base_absf( im1 );
+ if ( t1 > t2 ) {
+ ab = t1;
+ } else {
+ ab = t2;
+ }
+ t1 = stdlib_base_absf( re2 );
+ t2 = stdlib_base_absf( im2 );
+ if ( t1 > t2 ) {
+ cd = t1;
+ } else {
+ cd = t2;
+ }
+
+ s = 1.0f;
+
+ if ( ab >= LARGE_THRESHOLD ) {
+ re1 *= 0.5f;
+ im1 *= 0.5f;
+ s *= 2.0f;
+ } else if ( ab <= SMALL_THRESHOLD ) {
+ re1 *= RECIP_EPS_SQR;
+ im1 *= RECIP_EPS_SQR;
+ s /= RECIP_EPS_SQR;
+ }
+ if ( cd >= LARGE_THRESHOLD ) {
+ re2 *= 0.5f;
+ im2 *= 0.5f;
+ s *= 0.5f;
+ } else if ( cd <= SMALL_THRESHOLD ) {
+ re2 *= RECIP_EPS_SQR;
+ im2 *= RECIP_EPS_SQR;
+ s *= RECIP_EPS_SQR;
+ }
+ re = 0.0f;
+ im = 0.0f;
+ if ( stdlib_base_absf( im2 ) <= stdlib_base_absf( re2 ) ) {
+ robustInternal( re1, im1, re2, im2, &re, &im );
+ } else {
+ robustInternal( im1, re1, im2, re2, &re, &im );
+ im *= -1.0f;
+ }
+ re *= s;
+ im *= s;
+
+ return stdlib_complex64( re, im );
+}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/src/manifest.json b/lib/node_modules/@stdlib/complex/float32/base/div/src/manifest.json
new file mode 100644
index 000000000000..a62ea25acee5
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/src/manifest.json
@@ -0,0 +1,87 @@
+{
+ "options": {
+ "task": "build"
+ },
+ "fields": [
+ {
+ "field": "src",
+ "resolve": true,
+ "relative": true
+ },
+ {
+ "field": "include",
+ "resolve": true,
+ "relative": true
+ },
+ {
+ "field": "libraries",
+ "resolve": false,
+ "relative": false
+ },
+ {
+ "field": "libpath",
+ "resolve": true,
+ "relative": false
+ }
+ ],
+ "confs": [
+ {
+ "task": "build",
+ "src": [
+ "./src/main.c"
+ ],
+ "include": [
+ "./include"
+ ],
+ "libraries": [],
+ "libpath": [],
+ "dependencies": [
+ "@stdlib/math/base/napi/binary",
+ "@stdlib/complex/float32/ctor",
+ "@stdlib/complex/float32/reim",
+ "@stdlib/math/base/special/absf",
+ "@stdlib/constants/float32/max",
+ "@stdlib/constants/float32/eps",
+ "@stdlib/constants/float32/smallest-normal"
+ ]
+ },
+ {
+ "task": "benchmark",
+ "src": [
+ "./src/main.c"
+ ],
+ "include": [
+ "./include"
+ ],
+ "libraries": [],
+ "libpath": [],
+ "dependencies": [
+ "@stdlib/complex/float32/ctor",
+ "@stdlib/complex/float32/reim",
+ "@stdlib/math/base/special/absf",
+ "@stdlib/constants/float32/max",
+ "@stdlib/constants/float32/eps",
+ "@stdlib/constants/float32/smallest-normal"
+ ]
+ },
+ {
+ "task": "examples",
+ "src": [
+ "./src/main.c"
+ ],
+ "include": [
+ "./include"
+ ],
+ "libraries": [],
+ "libpath": [],
+ "dependencies": [
+ "@stdlib/complex/float32/ctor",
+ "@stdlib/complex/float32/reim",
+ "@stdlib/math/base/special/absf",
+ "@stdlib/constants/float32/max",
+ "@stdlib/constants/float32/eps",
+ "@stdlib/constants/float32/smallest-normal"
+ ]
+ }
+ ]
+}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/src/package.json b/lib/node_modules/@stdlib/complex/float32/base/div/src/package.json
new file mode 100644
index 000000000000..50e053ba0e87
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/src/package.json
@@ -0,0 +1,67 @@
+{
+ "name": "@stdlib/complex/float32/base/div",
+ "version": "0.0.0",
+ "description": "Divide two complex numbers.",
+ "license": "Apache-2.0",
+ "author": {
+ "name": "The Stdlib Authors",
+ "url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
+ },
+ "contributors": [
+ {
+ "name": "The Stdlib Authors",
+ "url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
+ }
+ ],
+ "main": "./lib",
+ "gypfile": true,
+ "directories": {
+ "benchmark": "./benchmark",
+ "doc": "./docs",
+ "example": "./examples",
+ "include": "./include",
+ "lib": "./lib",
+ "src": "./src",
+ "test": "./test"
+ },
+ "types": "./docs/types",
+ "scripts": {},
+ "homepage": "https://github.com/stdlib-js/stdlib",
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/stdlib-js/stdlib.git"
+ },
+ "bugs": {
+ "url": "https://github.com/stdlib-js/stdlib/issues"
+ },
+ "dependencies": {},
+ "devDependencies": {},
+ "engines": {
+ "node": ">=0.10.0",
+ "npm": ">2.7.0"
+ },
+ "os": [
+ "aix",
+ "darwin",
+ "freebsd",
+ "linux",
+ "macos",
+ "openbsd",
+ "sunos",
+ "win32",
+ "windows"
+ ],
+ "keywords": [
+ "stdlib",
+ "stdmath",
+ "mathematics",
+ "math",
+ "div",
+ "divide",
+ "division",
+ "arithmetic",
+ "complex",
+ "cmplx",
+ "number"
+ ]
+}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/REQUIRE
new file mode 100644
index 000000000000..308c3be89c85
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/REQUIRE
@@ -0,0 +1,2 @@
+julia 1.5
+JSON 0.21
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/component_scales1.json b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/component_scales1.json
new file mode 100644
index 000000000000..e9ef5904fe04
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/component_scales1.json
@@ -0,0 +1 @@
+{"re1":[2.7880230498094572e14,8.53215407239564e14,1.2343475964816663e12,7.92376468264611e14,2.1849813649381e14,2.6665373212247844e14,8.691252703760252e14,8.262967322945536e13,2.221213509626998e14,7.867224997367834e14,8.134594113918769e13,1.7772241626716434e14,2.617863034116069e14,5.736102899179062e14,1.5460195387311803e13,9.71516554529907e14,4.4323980484247525e14,4.9322034364137044e14,2.559596184012607e14,8.220834519422261e14,2.9576347157808438e13,5.168047938396542e14,1.0697209092953919e14,1.8187920464815288e14,6.975182944990575e14,5.4869223271274025e14,1.962054625810572e14,5.76051467758863e14,8.02166294248673e14,9.318120549638039e14,4.365246860102017e14,9.974093800721492e14,6.544653176927622e14,7.673663332349556e13,7.644677045845514e14,4.2168236895985456e14,1.2407149200261725e14,7.641730393222919e14,9.396586988461768e14,7.412200099767519e13,7.827147181841384e14,6.962939214534535e14,5.091841495814555e14,1.8975624897084288e14,1.9276175580352006e14,6.891882279908852e14,8.575560739386215e14,1.509899375179009e14,3.0640693165949506e14,9.22803557915039e14,3.4249609477371944e14,9.366810717296529e14,7.485869790775549e14,1.497593281927837e14,6.509920411201045e14,6.555991332947385e14,4.305560960088877e14,5.609846069675062e14,8.06718122876884e14,6.165033597896842e14,2.170741967429951e14,1.939635191397726e12,8.255102524805551e14,3.1096887438202525e14,6.997255809021698e14,1.5636273847610738e14,7.645825048435476e14,2.0140942370783822e14,3.843589734019177e14,2.6760378769199866e14,8.408708761933252e14,2.3065164016287996e13,9.028830557471645e14,7.70902651380917e13,6.912087897723569e14,1.943124814068563e14,3.065761864978701e14,7.576862307077959e14,5.358296116309702e14,8.111216126744665e14,6.001058326135496e14,6.801678955812226e14,4.5801744341419094e14,3.324905002788353e14,1.1731240160241518e13,9.911403419875974e14,7.89962975383337e13,7.377326467247432e14,5.4505696679488994e14,3.4972413280322523e13,7.981409690856025e14,8.013869116848286e14,5.5457429532241806e14,1.2560129507269302e14,3.8133794376925425e14,6.028539932599905e14,4.0666130484407656e14,3.1705420301134725e14,8.434027561587866e14,6.459912215870395e14,8.552658560890441e14,5.592024973485928e14,6.954937501711635e14,9.661268269835359e14,6.41055000379124e14,5.083577754946955e14,7.627775343866479e14,9.11906957664239e13,3.999598340650893e14,6.901824703656814e14,8.550672900695902e14,4.1359100761005194e14,2.680290062298707e13,5.85884260151811e14,6.028172889021876e14,6.369920475771365e14,2.2191025205243053e14,7.952950538676984e14,2.3660124998299316e14,5.5590298565216444e14,8.536350261784651e14,3.784410940325925e14,8.24200821774207e14,6.695579048202149e14,9.043509421856002e14,2.6275193304933797e14,2.042920236525214e14,7.544545958663356e14,7.335985719946732e14,9.553136158085338e14,2.4704558895709272e14,3.984002893974813e14,7.289313481653181e11,5.070174867201105e14,5.2557088283212075e14,3.271166769081434e14,3.447717589507176e14,3.503275555787935e14,6.98342524014916e14,3.2739203205734535e13,9.22076198161335e14,3.2438616819851006e14,3.202888088569187e14,7.039410443629119e14,2.1511966894011125e14,1.6340087772933197e14,8.652550523046404e14,6.656399992473446e14,5.737872622829632e13,2.2755631167398094e14,9.912131102950209e14,1.8420085135231812e14,9.734414490468472e14,6.777687084734271e14,5.09443237232709e14,6.874357483283788e14,2.3240183877810016e14,9.276860573208992e14,8.269649754018425e14,7.425571774372498e14,7.241420504068726e14,4.726195493436787e14,7.959410282417854e14,3.304514265225261e14,7.040084670854229e14,8.007319226227395e14,3.252469850900852e13,6.199626963094121e14,4.1578487174967125e14,9.46887734833182e14,8.374077326570719e14,4.506387349500843e14,8.995333032114105e14,2.44819373105157e14,4.3531620049832856e14,2.5197062878843824e13,9.226399589999131e14,7.336208018582018e14,9.058915928994469e14,5.1383684789118644e14,6.52852714779677e14,3.401678813170699e14,8.898568684712762e14,6.753144441771885e14,6.884642739781729e14,6.860570729513005e14,1.1991220704303795e14,3.631131272523836e14,3.450241932250594e14,7.986291797200114e14,1.8499988534042555e13,6.563974826748786e13,7.387884001275504e14,4.964142334812074e14,3.895927449020387e14,9.334797249105154e14,6.024879829733012e14,2.1765608122300562e14,7.542043836580254e14,5.973503091666439e14,8.371462655776161e14,9.48143187996802e14,7.12180788345595e14,1.8792216466297697e14,1.894320327048562e14,8.737776543292756e14,2.952855980905492e14,2.3481656604570234e14,2.4713362347421797e14,4.5308332019034394e14,9.796312391452056e14,6.352372726982998e14,2.2471243598671788e14,2.1781210575610453e14,2.495109887780861e14,1.1652279544789734e14,6.215002360298594e13,6.949971345955554e14,9.441257852277454e14,7.487935428462704e14,5.083764379326865e14,2.6533985208499367e13,5.8959045633142914e13,3.823205851260256e14,7.155721998821573e13,7.288174011041779e14,7.716406501780281e14,8.090910898693788e14,8.139627798282676e14,3.903534918435022e14,4.3882476963538306e14,3.301078192946594e14,2.6567625336713862e14,8.473473602471239e14,2.0115713640892553e14,8.145232917916811e13,1.2287200502339458e14,9.874122175049099e14,9.923840288140049e14,6.93758344528782e13,6.082668887760996e14,8.62697912176974e13,8.661465586949836e14,7.581915990792788e14,6.822068031505738e14,5.375117905942092e14,6.918647542028477e13,7.139829964419322e14,1.3390991292870014e14,5.369385148981045e14,7.669825511378772e14,2.168326671608477e14,9.602671435932749e14,9.349287498731444e14,1.3272590487225755e14,8.125402051876735e14,9.280666461842371e14,1.2341202476029445e14,5.302495957554049e14,7.474985243937344e14,3.766449545613452e14,6.632099913854414e14,6.3180163688714e14,7.947029534344231e14,5.722606907043675e14,7.361891401111431e12,6.008665046076096e14,4.1071116391474006e14,3.3963944687423944e14,9.795997474895465e14,6.373291751813805e14,4.2552767251299594e14,4.3546953557855606e14,7.974202611224744e14,6.174385423385774e14,6.940564503815331e14,8.750517810980114e14,3.8914632143044594e14,6.501936549533606e14,8.905170943125759e14,2.7329029740022492e13,5.5957499005142075e14,4.4218608040275206e14,3.2137374859732956e14,1.3930575777372123e14,5.368418130788675e14,8.836258616816411e14,9.13660890093332e14,7.174907981845723e13,5.973056990325576e12,9.201115100549038e14,9.385635477161904e14,4.727508526813118e14,5.470149442420503e14,6.190750367408795e14,3.963906796975558e12,9.244984633280604e14,1.7955557790341438e14,8.163049247846541e14,4.134119281470674e14,8.694348152725034e14,9.469607017288341e14,8.938309160035431e14,1.0139937932728483e14,9.964121037552984e14,5.0857359360894006e14,4.643040772976363e14,4.579034962024142e13,3.609606720257662e14,6.445353391795182e14,3.4457520226170325e14,8.489153731728111e14,5.63089682448855e14,5.249329649108767e14,5.867628960759801e14,1.6102282015027312e14,8.875609012443612e14,7.268150313271695e14,8.339089667641585e14,8.305044176722022e14,3.76445743445352e14,4.481290862956179e14,4.667097280113867e14,4.873408843029536e14,2.067846256882294e14,5.13111750939406e14,9.058256939878085e14,4.975461303281399e14,3.5889865936231494e14,7.779879457444048e14,3.7207843666607956e14,3.991400950712143e13,4.7413916225114806e14,8.656053946808546e14,1.409057990981053e14,7.033550951814426e14,4.0354589936835775e14,3.751805332581004e13,9.894794989483296e14,1.7183102377435422e14,7.619931416138984e14,8.581867321554971e14,9.962171338048379e14,6.761184952442669e14,8.881532468139885e14,6.206953697157396e14,3.7132966985388594e14,8.874035371788075e14,1.3375393133821434e14,4.1686033995880144e14,5.068297761424704e14,3.908966898503522e14,3.377842623020525e14,8.475865494925195e14,4.1171715890184144e14,9.306546555884166e14,6.89856478754098e14,5.051302410919348e14,7.057609530001579e14,9.134686667379934e14,2.3551167019410934e14,7.629442393486516e14,4.4505198436701e14,4.7022156669283875e14,2.3086985070194666e14,1.2792552619271258e13,6.372979685103632e14,9.981373401943562e14,1.7474586605005116e14,5.347785368061908e12,5.947725454875039e14,2.722292046367162e14,5.878092245979976e14,8.792401263351472e14,7.833375161680179e14,6.279177615967858e14,6.295282494106719e14,3.903089394481544e14,8.283920041255016e14,8.716507776225761e14,8.488305410387989e14,3.652129585708663e14,4.07288898465228e14,5.2942210395383694e14,6.504429923161118e14,1.6519890623844334e14,3.1606797202285875e13,6.548433380937845e14,1.808132965465854e14,8.216869825499404e14,9.852423085065928e14,6.214282860954395e14,4.9539533848881025e14,1.2461312014663162e13,8.422988726282119e14,8.692981487274678e14,3.795556744899489e14,8.404406539257139e14,1.2343232933761339e14,4.249244836207482e14,2.2127803998972784e14,5.60519908718936e14,3.2919072761061006e14,8.765167657745396e14,7.977745237640324e14,6.857286629463038e14,4.471009969856361e14,8.498435129198038e14,8.350497972232952e13,8.412985294908806e14,1.3871546848336103e14,1.3526727880622525e14,2.4340386321146434e14,1.2848605772324928e14,5.821174824694951e14,8.489621028900534e14,5.712145552904255e14,6.426068629159072e14,3.3322407833239444e14,2.5364016584397953e14,8.618535538583271e12,2.8001913155750503e14,2.5818966288860834e14,4.4457845261687144e14,7.227835617842916e14,2.1378833434771694e14,9.286036501399719e13,1.7529499858037645e13,4.21968734684647e14,3.998308848346115e14,1.5734945994216875e14,2.6035760870336856e14,7.867350183377656e14,2.87729710437868e14,2.5097354033011544e14,5.208410194369457e14,5.83026893923577e14,2.4414820154616547e14,1.792037322276876e14,9.000896931964108e13,9.173809653281034e14,1.3590473696107586e14,5.713265439821714e14,5.376489471717112e14,3.486312688330805e14,6.992702033352768e14,3.3240428998433525e14,2.7288101615380888e14,1.524210520419099e14,1.9816219899710397e14,2.8205139239336506e14,3.588925367137158e14,9.720998207454944e14,1.2835751995676714e14,9.011598065511066e14,9.6148317431977e14,7.522439252441685e14,3.172438917251929e14,4.222444286445574e14,2.541055469927045e13,3.834611034743395e14,1.6354495069082154e13,9.121586875202135e14,7.094364989515478e13,5.2131699928764766e13,6.295482751496242e14,1.444650483117601e14,3.489602443473182e14,4.263488437322537e14,4.452198685623884e14,6.045943551747388e14,8.177786443297268e14,1.2031760404531744e14,5.633995248070466e14,3.729102282376226e14,9.735978421648629e14,4.396135923910281e14,6.838766440791152e14,4.8047817965974125e14,5.395780327426949e14,5.627117271229541e14,5.922184209489515e14,1.9809276733052738e14,2.231506751551341e14,7.184450041011181e13,3.546362513738345e14,6.191379108636148e14,3.691022984813327e14,5.3618187786881644e14,6.300131448610825e14,3.602776178102861e14,7.111520804538295e14,8.682220811927106e14,2.3072853494446888e14,3.1583293301314484e13,3.033008298945964e14,7.89937978087981e14,8.410303032009089e14,8.822555117075765e14,1.4946514197443972e14],"im1":[-3.668055863767196e-16,1.756532462203341e-16,-3.4635248957358276e-17,-1.1006572441801655e-16,2.1792035616488618e-17,-3.4721891332760783e-16,-4.995640901894114e-16,-1.525806793798883e-16,7.112056352367389e-17,-4.789263684089614e-16,1.2770785880036744e-16,1.2864880088587073e-16,-3.6805605792736464e-16,1.440115039288439e-16,2.893760199797593e-16,-3.660298024432586e-16,-1.9671157841134113e-16,-1.6882226215124355e-16,-4.67471312178646e-16,-4.0995191043308043e-17,-1.3858550199126298e-16,-5.2495525187822735e-17,-2.4929435114064126e-16,-2.4665020247130177e-16,3.3362654456075514e-16,3.303688100531565e-16,1.8081466014728252e-16,-1.2877924761679306e-17,4.897757496091719e-16,1.497581327789242e-16,4.741948820584838e-16,-1.9260985511308983e-16,5.69686969374024e-17,1.5808742481784338e-16,3.031266308072011e-16,-1.0025119784445915e-16,-3.061659742974192e-16,1.0677954672412376e-16,-3.4110210412179545e-16,4.813400350566789e-16,1.1674119002922787e-16,4.395519609898787e-16,7.989976440215163e-17,1.7805736002968697e-16,2.209227608121425e-16,-6.570507504546865e-17,-4.2933313308002935e-16,-5.64978175236912e-17,2.379881302390841e-16,-4.969160350106708e-16,-2.608491119348986e-16,-2.277803399280606e-16,-3.8110840956292317e-16,-2.1440988197829506e-16,2.0726181611086378e-16,-2.9603680789995125e-16,-3.152178325549409e-16,2.8546051739488923e-16,-3.206272614650483e-16,-1.6540078225521838e-16,3.9051206770616636e-16,-4.3137955621216776e-16,2.6515458234405003e-16,1.091302801369438e-16,1.0647913397594669e-16,2.1361887843988913e-16,1.7411917895670454e-16,1.5007509198559146e-16,-4.754591269777956e-17,-2.339455884330397e-16,-2.383155924683882e-16,4.835283276798231e-16,3.781483488915991e-16,1.3591984634653791e-17,-3.1332386606584686e-16,-8.790519801636775e-17,4.925463580772079e-16,2.7426031739093326e-16,2.758029174306271e-16,-4.3034174650321147e-16,-3.701198992483745e-17,1.4120961389573826e-16,-1.498072924144477e-16,3.9554990983109926e-17,-1.5106486032962084e-17,-3.154619558501032e-16,2.1447350422647087e-17,-3.9883400417039653e-16,-3.2439857232882977e-16,3.8260790166191497e-16,4.861759378686583e-16,2.9628838597851995e-16,-2.1264109415580523e-16,-3.995933432660236e-16,-8.193188279424471e-17,9.061884607574032e-17,4.1208356451058353e-16,-4.3679208307294885e-16,-1.0345970147895067e-16,-1.0004073116283695e-16,-3.09076742421507e-16,-2.380056766781636e-18,1.5739277564666269e-16,-4.036324336846372e-16,-4.0639040872994785e-16,1.2083980830754531e-16,1.279799718434612e-16,2.3764670151960685e-16,5.281922214159217e-18,-3.9683154440943116e-16,3.0556065132312707e-16,-1.634050401562295e-16,3.675175075331823e-16,-2.332351686319213e-16,9.574850145117284e-17,-4.053773813413273e-16,2.483324712543978e-16,1.4730667412250488e-17,-4.925200889590663e-16,-4.4145863443145486e-16,4.475005277666158e-18,-2.5065008092696296e-16,3.470376821378395e-16,-1.1115657323924766e-16,-3.930416210580913e-16,-4.041056413406028e-17,3.807568568473867e-17,-3.9304392506363554e-16,3.19993190939911e-16,1.6592507833990555e-16,-4.851767547906804e-16,4.0810484292850035e-16,3.4067067240191673e-16,3.0266141569587404e-16,4.003972528409903e-16,-3.160752718167341e-17,1.4885609201635602e-16,8.258175146047355e-17,3.1805464015785715e-16,-1.191207929287359e-16,-4.813800041181383e-16,-2.1104410947587995e-16,-4.2076284963698843e-16,-2.386805056040974e-16,-2.9129228897673177e-16,4.3232187706598564e-16,2.8198006704118606e-16,-1.606787612765001e-17,-9.685203226503947e-17,-3.861595753757883e-16,-4.266415606844281e-16,-2.0121984564628216e-16,-2.4124750889295277e-16,-3.95220136198368e-16,4.2006101769930096e-16,-2.979283619546645e-16,-2.345435118052494e-16,-6.807182002266309e-17,-3.5904823234157307e-16,2.701684773577678e-16,7.43973077414354e-17,3.4930677694865835e-16,-1.919484796486364e-16,-3.101132727765689e-16,4.712268871668904e-16,-2.966144420671475e-16,-4.398396978051193e-18,-3.7828654597701943e-16,4.467979947017144e-16,-4.001776095578711e-16,-1.562391721896146e-16,3.9417518079315084e-16,3.094734479961841e-16,-4.6594168189229245e-16,-3.6117388526046107e-16,2.3066021214335347e-16,2.1583954951881383e-16,-4.13214404474519e-16,3.6456431346033626e-16,-2.078459112704e-16,1.1591300259025061e-16,-4.479643567893163e-16,-4.583031965741594e-16,3.8011671208975984e-16,9.142487466443408e-17,-3.2377577198022914e-16,-4.3042659226221553e-16,-1.393782213519437e-16,-2.9097072855994003e-16,-2.710245733522823e-16,-1.2457003520462176e-16,-2.609678101548888e-16,3.105232673705393e-16,3.053414022202848e-16,2.568013726847095e-16,-4.875444497530938e-16,1.9006236736281536e-16,3.1823427081748607e-16,-2.492171055068088e-16,-1.4231179674438235e-16,5.051699137801283e-17,3.077013804916902e-16,-4.811980034197722e-16,-2.996391153360192e-16,2.611269878066701e-16,-1.3476937489946592e-17,3.7117684869999906e-16,-2.518654486001688e-17,-2.6383462015718773e-16,2.0998750896869546e-16,-2.8948526496789253e-16,3.493369945571755e-16,-2.7109893093581253e-16,-3.3627728459429713e-16,9.817704479135111e-18,7.531232197464813e-17,-1.6349691447123803e-16,-3.186666423562137e-16,-4.08983880333485e-16,-1.1411285549061279e-17,1.9121496690679287e-16,5.830267980627202e-18,3.6168047263774005e-16,2.7346112265674647e-16,-4.23958072896845e-16,-4.768045054684259e-16,4.1346675295451363e-16,-2.1206660535731305e-16,2.916635713229379e-16,-6.724017720499541e-17,1.6039069735761544e-16,-2.8088440789160987e-16,3.040831537715388e-16,-2.6049477598227135e-16,3.3730780178929485e-16,1.9983405812042973e-16,3.412341833527457e-16,9.102047776395233e-17,-3.3626416136781273e-18,1.1835838358918923e-17,4.279071724989887e-16,-3.202452538875731e-17,7.738837148335458e-17,-2.0520874300361513e-16,-2.4141817961852434e-16,3.569347738928503e-16,1.291955306005689e-16,1.7315539627122724e-16,-3.147450494383019e-16,2.921539282944691e-16,4.900897875077739e-17,-4.702411519756512e-16,-1.7865411645084118e-16,-4.237656089455715e-16,1.625091425155102e-16,1.3300332280043224e-16,-2.2222567281638002e-17,-1.7171890919266797e-16,4.327139652610161e-16,2.96125987973643e-16,2.1740345304295927e-16,-4.621990644103914e-16,-4.354818442178243e-17,1.8131316295505294e-16,-4.583572619593517e-17,4.510938169473441e-16,-3.9569099796417364e-16,7.676099973658357e-17,4.0732503511925976e-16,-2.7654572030457136e-16,3.365166563090477e-16,1.9437059337476917e-16,8.49162274927481e-17,-3.1301240761484434e-16,2.592684925274316e-16,-4.224670798606153e-16,-1.9106735837885549e-16,5.681196221357838e-17,-3.201913351932604e-16,5.960209290056408e-17,1.937024992639004e-16,-2.458287544139163e-16,-1.628455750326213e-16,-4.999108600915324e-16,4.589324998774381e-16,-3.776389939986207e-17,-1.7596071311563698e-16,4.060910174388939e-16,-2.019641076039157e-16,3.099014056180336e-16,-3.7902628864043244e-16,-5.398695945473616e-17,1.1017667593691428e-16,3.0297897917015543e-17,4.3167073938213617e-16,-2.0092996892937553e-16,-2.137586698723544e-16,-2.133659022613758e-16,-2.487971455550686e-16,-1.8658874239024625e-16,-4.81774697448376e-16,-3.8832124620424206e-16,2.176335028133899e-16,7.736285312896079e-17,-4.434137161382581e-16,-4.865619166553294e-16,4.889140798253945e-16,-1.4256364515713974e-16,3.865439593681756e-16,2.8154518560466345e-16,9.198956690356034e-17,7.239971174501555e-17,-1.390833786777518e-16,-4.872105320806779e-16,-9.558895124104528e-17,-4.0622660226653264e-16,-1.9864580781721477e-16,-2.7108129304464004e-16,-3.1863132704972014e-17,7.040143189564701e-17,3.011667863843571e-16,-2.0589684118486408e-16,3.8013297203923747e-16,6.9267226386782906e-18,1.938464391071156e-17,-3.1973462735081583e-16,-1.6860316796236507e-16,-3.254801308744181e-16,-1.6519643373723328e-16,-3.0290234639042456e-16,1.5067822663803382e-16,3.30531322608256e-16,1.970250684129985e-16,-2.0606828737137108e-16,2.8025555382779525e-16,3.55803463938207e-16,-2.4122573164085007e-16,-1.8347606939917385e-16,-4.726651528653957e-16,-4.31151911530128e-16,4.186381364366482e-16,-2.451557548962259e-16,-3.53653125374604e-16,-2.822427613952261e-16,-1.9916490145345026e-16,-2.9121965692338093e-16,3.0081848122409904e-16,-4.887785339001334e-16,2.511859638287628e-18,3.3730220194606875e-17,-5.706968240232681e-17,1.460603044281285e-16,-4.172346613839263e-17,3.493940970751005e-16,-1.8365212872774894e-16,3.401651779978607e-16,-4.9823221857576775e-16,-1.5376820751602217e-16,4.931282924405509e-16,2.991432608857877e-16,3.150806458158538e-16,1.5759035022788486e-16,3.4285881636444827e-16,1.4144327840660193e-17,4.095876836207375e-16,3.9700637699454366e-16,2.9744078604774495e-16,3.2740381039620604e-16,3.2810386033079407e-16,-3.492639657985728e-16,4.690864499178281e-16,-2.7772340724112325e-16,-1.4399167375566357e-16,5.2755519236257325e-17,-4.383989409799413e-16,-3.9460563088281287e-16,-4.545473183484882e-16,-4.914764370855719e-16,2.372952936191317e-16,-1.3734967785314301e-16,3.662302494830058e-16,-3.8637575040210504e-16,3.3548892598197904e-16,-1.7377692866308572e-16,2.9997453781783126e-16,-7.892648803158597e-17,-1.4904816506001472e-16,1.5371914799088893e-16,-4.631499682123858e-16,3.2699924326445446e-16,2.934469216131707e-16,4.855860428471116e-16,3.7679282711420554e-16,-4.162160575850774e-16,-4.592954837734318e-16,-4.1965641819581703e-16,-4.807537172028862e-16,3.990661254206361e-16,-3.0004885984776446e-16,-1.0434590499656782e-16,-2.4319187054758097e-16,-3.749667698552198e-16,4.974333302773022e-16,1.516358159967782e-16,-2.62430342303571e-16,-3.317603634085196e-16,1.640876431080818e-16,-3.996059613230163e-16,6.593549499989978e-17,4.8088487062240016e-17,3.810860143312316e-16,3.5726140137947777e-16,2.4280056478397056e-16,-4.154575019345377e-18,-4.907646257497996e-16,2.2339574625661965e-16,-1.868152734250932e-16,-1.2793716594079387e-16,2.0989866544625562e-16,-5.368501557450156e-18,-4.839169794930106e-16,-4.1755546882743286e-17,1.6605024849230859e-16,2.617855188452932e-16,1.607768232052318e-17,-3.559121948527735e-16,4.082214256714211e-16,-3.085240714130395e-16,-1.2530503792428737e-16,1.5162452863915564e-16,2.466214128954458e-16,3.045136785657389e-17,2.9902160341143656e-16,4.0240174798393547e-16,4.2316921743583314e-16,6.679894343061912e-17,1.0499951259904022e-16,-2.654818673619538e-16,-4.521408883580806e-16,4.1662172397255594e-16,-3.638961517991404e-16,2.6482754616690726e-16,-2.271165426805679e-16,-8.202158699929441e-17,-1.899744291801875e-16,-2.7274222264566727e-16,-4.9837912822269715e-17,4.512302023215683e-16,4.430004245930466e-16,3.05000410830274e-16,-4.55248483828461e-16,-1.1181314476534934e-16,-4.722395489618203e-16,-4.150198740001685e-16,-1.190815445244552e-16,-3.8825609695332633e-16,1.1697149512126915e-16,9.815755421795017e-17,-2.595423336599642e-16,-3.165638079711485e-16,-1.9491092925249146e-16,4.01484540710171e-16,1.366437660095485e-16,-4.3431242275764326e-16,-2.6098179980329065e-17,4.563184375430244e-16,1.169315028663349e-16,-3.4276653277660784e-16,3.595873533280279e-17,2.3093934587392938e-17,-3.8052156429720365e-17,-3.966069076254301e-16,5.813770550774964e-17,-2.6099981881597124e-16,-4.898306400710523e-16,-1.5995781443607483e-16,1.3380373921371447e-16,-3.3796948264472185e-16,1.7761297418258736e-16,2.7429048261307885e-16,3.4995121208815986e-16,-2.5823577624404395e-16,-3.8059034162046493e-16,-4.879830101145747e-17,-2.3246669732601457e-16,-1.2050029633351757e-16,-7.904515967676874e-17,9.464293594698044e-17,-2.3371987172541344e-16,-2.9073411889735867e-16,2.289630369277675e-16,-7.785054105151113e-17,-4.6858943668918055e-16,-1.8301607416464884e-16,3.0733086620460436e-16,3.082548181984648e-16,-3.840886865995366e-16,7.676092277921763e-17,1.987454283260534e-16,-3.1804790998913393e-16],"qim":[-5.0918752e-31,3.475281e-31,-9.525357e-32,7.1647434e-31,2.3750598e-31,-4.5129664e-31,-2.5811398e-30,-3.391866e-30,1.5877408e-33,-3.9617634e-31,1.6630994e-31,-7.5097237e-31,-9.56625e-31,2.1505916e-31,4.4050866e-31,2.074525e-30,1.1449269e-29,1.3821954e-30,-4.4446607e-31,2.319111e-30,-1.5076418e-31,-2.629501e-31,-2.2856397e-31,-3.0765348e-31,4.5912275e-31,3.1767328e-31,1.4466238e-26,-1.4507835e-31,8.6979375e-30,-5.100853e-29,7.515888e-31,1.3359196e-32,8.757457e-32,2.0199994e-31,3.6924523e-31,-2.4610129e-31,-3.312563e-31,-1.7895026e-30,4.3892616e-31,5.4827605e-31,-6.480305e-31,2.1799554e-31,-1.3232938e-30,7.551236e-31,-1.7891727e-30,-2.8837956e-31,3.7742399e-31,-3.84469e-31,2.7069083e-30,-4.4384297e-31,-1.4090767e-30,1.1964534e-31,6.8613417e-31,-1.9977933e-30,-2.8479891e-31,1.8752416e-29,-6.141833e-31,4.928482e-31,2.2517915e-30,-6.889521e-31,4.931497e-31,-8.334788e-31,9.254872e-32,5.2262344e-32,2.284622e-31,-2.2490022e-30,8.2956347e-32,1.5682014e-29,7.621308e-32,-2.6084114e-31,1.0212916e-28,1.7684192e-30,6.312397e-31,1.1293728e-32,-4.306775e-30,-6.732581e-30,1.1244355e-30,5.43973e-31,2.4086308e-30,6.1472058e-30,-3.7330228e-31,-1.7801011e-30,-9.6366615e-32,-9.60199e-31,-2.662435e-32,-3.6920992e-31,3.2068607e-31,5.199477e-30,1.3145144e-31,1.0498741e-30,3.8266107e-31,5.126374e-31,2.4314824e-30,-1.3073733e-29,-1.8242365e-32,-4.9150033e-30,3.634832e-31,-9.455078e-31,-1.0085429e-30,-1.9930377e-31,1.4246272e-30,8.836356e-30,4.301995e-31,-6.925118e-30,3.1223352e-32,-4.5433745e-31,-1.3099344e-30,2.6938889e-31,-1.8677796e-29,-1.1028306e-30,2.1018702e-30,-5.1507206e-32,3.7828443e-30,-2.3737293e-30,-2.649321e-31,2.568133e-30,2.4368014e-31,5.7969405e-31,-1.5286532e-30,-1.0174611e-31,1.5299988e-31,-3.6279816e-31,4.9363556e-30,-8.187396e-31,-3.7080962e-31,-6.3357523e-32,-2.5551514e-31,-6.511627e-31,1.10190216e-29,-4.66724e-30,-1.483638e-29,1.2859316e-30,8.404153e-31,7.4935243e-32,7.3697816e-31,9.555587e-31,7.011306e-32,1.1423251e-30,-1.6225362e-30,-1.2454822e-31,1.344001e-29,-1.6840422e-31,-3.8997415e-31,1.2089551e-30,-2.9992045e-31,6.984004e-31,-7.7232445e-29,-1.1741836e-30,-1.5156309e-31,-4.2588654e-31,6.5703845e-32,-6.5371484e-31,-4.7737687e-32,-5.876021e-31,2.4067728e-29,-9.370517e-31,-3.126039e-30,-5.0638942e-31,-5.2694864e-28,-3.2066843e-30,1.6046506e-30,1.0257963e-29,-1.1074562e-30,-6.0106524e-31,1.3099299e-30,-4.2502354e-31,6.138337e-32,-1.7369899e-31,5.961372e-30,4.6738253e-31,-8.41275e-31,-8.86964e-31,-6.647808e-32,-5.3259708e-30,-5.709155e-31,4.194345e-31,9.141326e-31,-4.6572744e-30,-4.9375566e-30,-3.7009168e-31,2.83198e-29,-7.691446e-31,-7.737857e-31,3.6498557e-31,-8.9224994e-32,-8.079988e-31,-8.1298205e-31,-3.692459e-32,-5.533548e-31,-9.477177e-30,-1.6341606e-31,-9.344738e-31,-2.2473964e-30,2.3842265e-31,-4.8183057e-31,-1.1063402e-30,3.765323e-31,3.2218803e-31,3.8663693e-31,-1.0300892e-31,4.1448218e-31,5.2299164e-31,-3.1726042e-27,-3.1230635e-31,1.1593264e-30,-8.456972e-31,3.7243324e-31,-3.4207882e-30,-5.1798685e-31,2.9172523e-31,-1.4493127e-30,3.3118775e-31,-1.3238549e-30,-2.2904317e-31,-9.6005125e-31,-7.98629e-30,-5.107552e-31,6.76226e-31,-4.9921566e-31,4.296137e-31,-5.3513675e-30,-9.8236025e-31,5.7698994e-31,4.8050593e-31,-4.9328153e-31,1.3467273e-30,8.281795e-31,-1.4642575e-30,8.3126047e-32,2.6603215e-30,-1.0286544e-30,-4.1862e-31,1.9145278e-31,6.741943e-31,3.5120096e-30,3.9446144e-31,9.150167e-31,2.1970848e-31,-1.7175718e-30,3.9843872e-32,8.376686e-31,-9.431423e-33,3.6795557e-29,9.339754e-31,1.5632641e-28,6.8553627e-31,3.1130687e-31,1.203554e-31,-4.335384e-31,1.5525944e-28,2.1504578e-31,-6.156501e-31,-3.2272154e-30,-8.21138e-29,1.3403241e-28,3.9171162e-30,1.775375e-30,-4.8434318e-29,4.9841337e-31,3.7134284e-30,2.7517396e-31,-5.9234733e-30,-2.1361004e-30,-1.1036494e-31,9.772815e-29,9.526728e-31,-8.811615e-31,-1.0825819e-30,-4.456541e-31,2.9561102e-31,-4.658325e-30,-5.6196264e-29,-2.0350981e-29,-1.7284844e-31,6.5959546e-31,-1.8614945e-32,2.0203505e-30,8.6562584e-30,-2.1205423e-30,2.0143295e-33,4.391695e-31,-2.9868397e-31,-4.6975858e-31,-4.215423e-31,6.406674e-31,-6.776132e-32,-4.472245e-29,8.886996e-31,-1.7338677e-30,7.0605464e-30,-2.1466709e-31,-5.460751e-31,2.0119343e-31,-5.371676e-31,7.386657e-32,-3.2278593e-31,-4.021039e-29,-5.004769e-31,1.4289702e-28,-1.4540843e-30,-3.333842e-30,5.3432357e-30,1.6117055e-31,1.874954e-32,-1.47207675e-30,-3.7350068e-31,4.1491513e-31,-1.7895972e-31,6.9238175e-30,1.9831337e-31,1.4968499e-31,5.279311e-31,-5.2550936e-31,-9.056885e-31,5.3487096e-30,-4.9902618e-31,-1.5644144e-30,-7.109819e-31,3.1235478e-31,4.4144338e-30,5.0331645e-31,-6.204159e-30,1.2091436e-30,1.6371247e-31,2.252443e-31,-1.2012892e-30,1.6639777e-31,-1.991212e-31,1.5902392e-30,-8.432916e-31,5.6202957e-31,3.1964367e-31,2.7086025e-31,1.0127125e-31,1.5457666e-30,-1.4140402e-31,-5.5868753e-30,-3.1432508e-30,9.35766e-32,-8.837736e-31,1.0279005e-30,-5.797206e-31,-8.158391e-30,-6.3281807e-31,-4.5940995e-31,-3.3506129e-31,1.8566997e-30,-1.4246269e-31,3.925641e-32,-1.1908634e-30,-9.237366e-31,5.500161e-31,7.613845e-32,3.532241e-30,-1.99041e-31,1.3892669e-30,-4.789695e-30,-4.1977637e-31,9.679456e-32,-2.2127047e-31,1.2839373e-30,-2.9602051e-30,1.4861258e-31,-8.5259234e-32,3.7203002e-31,1.4113592e-30,-2.8605247e-30,3.9077133e-31,1.0119157e-30,-9.3172e-31,2.7878236e-31,-5.766705e-29,1.7510047e-30,-2.3265083e-32,-4.3403265e-30,-2.1209488e-30,-1.4997117e-30,-3.2249062e-31,-9.483626e-31,-8.148006e-31,3.9374152e-31,-2.9550963e-30,8.115323e-31,7.236187e-32,1.6942847e-31,-9.336286e-31,-2.2138117e-30,1.13752374e-29,-9.818861e-30,-7.293177e-30,6.6247965e-31,7.0845314e-31,-1.2973682e-30,-1.285837e-30,-3.161908e-31,-1.17696635e-30,-6.2313976e-31,9.857208e-31,-8.484341e-31,-2.3175264e-31,5.269695e-31,8.430579e-31,5.5667e-31,1.7409752e-30,-4.165926e-31,-2.7339112e-31,-1.06647886e-32,3.345003e-31,7.6828524e-32,-4.5919113e-30,6.3030007e-31,4.8977235e-31,7.073939e-31,2.3632981e-30,1.6096776e-32,-1.1839336e-31,1.5296888e-31,-9.219463e-30,-2.9098058e-32,1.2666247e-31,-8.964775e-31,1.2336813e-31,8.841498e-31,-3.137002e-31,4.136944e-30,-2.3474674e-28,4.427062e-31,-5.673938e-31,-4.506139e-31,-1.1207639e-31,7.731276e-30,6.972119e-31,2.6162566e-32,5.9058214e-31,6.067279e-31,3.6578234e-31,-1.354589e-31,-3.4374276e-31,-1.0157107e-30,3.9263303e-31,-9.262261e-30,2.7901362e-31,1.3998397e-30,-8.49999e-31,-4.5533093e-31,-9.7287457e-32,-1.4977832e-31,6.3542537e-31,6.831617e-31,1.0803416e-30,-4.3747123e-31,-8.319278e-32,5.9152987e-31,-1.1960435e-30,6.3842283e-31,7.8840086e-31,-6.059069e-32,6.8487376e-31,-9.222852e-31,-3.5094894e-30,-5.947603e-32,4.6730532e-29,-1.1248973e-29,-2.2212897e-30,-5.8783916e-32,-3.2211961e-31,2.406743e-31,-1.2454464e-31,-2.119892e-31,3.8104522e-31,-1.8135124e-31,-1.23136635e-30,8.577443e-32,-2.0698364e-30,-6.44928e-31,8.543304e-33,7.1180626e-31,-1.585344e-30,2.1196639e-31,6.793706e-32,3.3560578e-31,-4.595465e-31,-3.4790504e-31,-5.4514293e-33,-1.7250897e-30,-4.2096686e-31,-1.3057945e-30,2.8634725e-31,-9.052391e-31,-3.1887223e-30,1.511547e-31,6.45723e-31,-8.421575e-31,-1.744245e-31,9.607631e-31,2.373718e-31,-4.3291776e-30,7.6731767e-31,7.01993e-31,2.8979843e-31],"qre":[0.28873008,1.0035919,0.0035495667,1.4807837,0.42595598,0.66827244,1.8193645,0.7603869,0.25347987,0.91799414,0.12952268,0.830518,0.9537711,0.8135715,0.024112519,2.7653265,10.698191,1.4184357,0.4022977,2.3917172,0.031476814,0.90283823,0.12421974,0.281132,2.5413811,0.72904956,180.39201,0.7293402,4.174587,9.916702,0.61933464,1.6769667,1.2049159,0.09575365,1.7365868,0.42601553,0.15602583,3.8561246,1.5421851,0.09100937,2.1113632,1.0500761,1.2710345,0.63520974,1.5295316,3.3773863,1.3471336,0.51920885,1.0973021,2.7223282,1.5868784,1.0496079,1.5408715,0.6488729,0.86659884,8.32964,0.5137148,0.8868755,7.2463217,1.0027089,0.22529699,0.0037543112,0.8482776,0.44265178,1.3270612,1.4374539,0.98768556,3.8604395,0.63705486,0.46033993,20.866117,0.08405661,2.0033798,0.082688905,2.47053,3.0125318,0.69917476,1.2853698,1.3766369,3.7849874,1.1619548,2.2628908,0.46584085,0.9206211,0.024543552,1.2360842,1.0370302,4.4499016,1.0335966,0.09950695,0.9341616,1.293751,2.131617,1.9730935,1.7610084,3.9968166,0.40744677,0.76647323,1.5272567,1.574699,2.0079668,5.8444963,0.8857478,4.5994377,0.9704597,0.860959,1.9923981,0.14937033,3.8886614,1.1769347,1.8288223,0.46031713,0.30261022,1.4770405,2.132748,5.6448245,0.2256391,2.3780627,0.66020745,1.0152241,1.1959743,0.6499,3.6507573,0.9562091,1.6463894,0.53313607,0.46135926,0.98456556,4.389148,3.645246,2.7115097,0.70922726,0.0018025769,0.5600622,0.5758059,1.1387311,0.46779707,2.0718293,3.1572738,0.033716753,7.3936167,0.5097805,0.53756356,1.5968617,0.61375743,0.21726945,12.174686,1.6241175,0.069868766,0.33754072,2.1459625,0.3406403,1.715982,0.7341405,5.9485173,0.8924599,1.021646,1.0375193,38.217854,2.798614,1.5812259,6.297026,1.3559829,0.49407905,0.97779024,1.0234985,0.11417863,0.69159186,2.254735,1.4758513,1.7544041,3.8106499,1.2320623,2.1310756,0.79133856,0.0515243,1.2200526,2.3093297,3.832358,0.64229184,8.964385,0.55771905,1.3142997,0.9260238,0.8219562,1.1615655,0.22474006,0.4335839,0.9401372,3.8968954,0.022771202,0.26307106,2.5484445,0.5831111,1.0160824,1.031961,0.82330996,0.27481824,1.262141,0.81286764,1.280477,1.1240584,76.7586,0.3155226,0.696629,1.5629339,0.60757065,4.364005,0.36474115,0.47178203,2.4624481,1.727492,0.89379495,1.4941664,1.6287844,1.9237033,0.14279628,1.389112,1.5794225,1.0474775,2.7441094,0.27593663,0.08895945,0.8549083,0.088487215,3.7645462,0.8320844,1.4789343,1.4536223,2.2544305,1.3011853,0.97376007,0.32436836,2.1135876,1.1165985,0.14747111,0.2678375,1.4672382,4.065624,0.20796253,1.0201817,0.09270234,8.045686,1.4767958,17.432058,0.6141986,0.25105911,1.4464073,0.1621825,12.63595,0.8051315,0.35829303,2.3258216,21.328629,6.9161577,3.8556707,1.8782628,4.401876,0.5688418,4.0549445,0.9035264,2.4949832,1.9610204,1.0140506,10.759651,0.015690563,1.71814,1.5831163,1.4398067,1.3327181,5.1593213,10.589572,4.48447,1.2696352,0.7056426,0.8531395,2.1671057,9.645664,1.8675935,1.0750206,0.06199758,0.65989006,0.6728447,0.66035104,0.2298733,0.5817839,10.616838,0.98130107,0.33625695,0.18593119,1.0870984,1.0139688,0.62149173,1.9908146,1.0051605,0.006366443,18.512482,0.31803814,16.149137,0.98190963,3.783336,5.337893,1.1893935,0.23069462,19.584717,0.7698368,0.49045932,0.07810218,1.9765139,0.7674947,0.53921187,1.2843909,1.0636644,0.6951668,2.8645055,0.18621422,1.5727798,3.9159153,0.8948269,2.7283568,0.45097512,2.7795146,0.8491661,0.76117253,0.30181143,2.0338833,0.94121945,0.5351531,1.289635,0.95104843,0.53800553,0.04058177,0.82057303,0.9532594,0.864527,0.9884303,2.3174672,0.56449485,2.2162123,0.36050114,2.2941945,1.1910918,3.8629823,0.94927174,1.6716697,0.6849378,3.3478234,2.0543156,0.1825783,1.0531535,1.0503322,0.5952818,0.38067263,2.543701,0.4411764,1.6924187,3.317202,0.5393722,0.97542447,4.31557,0.77503586,2.37061,0.9895508,0.561913,0.24854401,0.045082778,2.8069508,1.2127824,1.1240693,0.014323969,0.6762491,5.6070604,1.8685911,0.89170253,2.2732518,1.3457032,2.076754,0.43288356,1.814626,1.8108118,1.0088775,1.3409152,0.6091033,0.6507354,1.114696,0.512796,0.3403272,7.3309417,1.6860802,4.0019355,2.1360266,0.8529255,1.716726,0.038804516,0.9505836,1.4387822,0.5180758,1.0753251,0.41861483,0.67394453,2.1089056,2.0417194,0.48981336,2.3144977,1.1118498,0.8495932,0.57819587,1.3360415,0.12351081,2.9092596,0.2603535,0.3040743,0.45960256,1.2108946,1.6618533,1.215718,0.6750243,3.9646938,0.4894864,0.42273298,0.015760295,0.54790586,1.4126757,2.03261,2.563453,55.54247,0.10111719,0.033079553,0.56287646,0.7831882,7.3671675,0.90672386,1.3531054,0.49767777,0.27648842,1.6659603,0.8546764,0.24736445,0.34347516,0.092521906,4.428026,0.14062577,1.7437226,1.5165021,0.5059769,0.98471135,0.3486463,0.41528648,0.24289724,0.6021426,0.4667961,0.36175227,1.846507,0.285482,4.878841,2.191379,1.0850031,0.6651503,1.0568683,0.36993915,0.52099514,1.7903519,4.857003,0.4127993,0.08997,1.4060082,0.26821858,0.7307356,0.539356,0.80540496,0.70219713,1.676508,0.13116996,1.661866,0.38999274,1.457667,2.5126338,1.5989919,1.1231478,0.6190996,0.57668823,0.62547,0.22291705,0.36768493,0.36047518,0.4487091,1.5512563,0.73507607,1.632239,2.2836103,0.6991197,1.1826807,1.0471423,0.25543737,0.1025218,0.33938166,2.7384648,1.7592313,0.94417614,1.8604519],"re2":[9.656156941070759e14,8.501617366098609e14,3.4774599189431756e14,5.351061421542756e14,5.129594653326008e14,3.9901950877184944e14,4.777081779160857e14,1.086679410866216e14,8.762879151453664e14,8.570016513983406e14,6.280440169596104e14,2.1398983103446256e14,2.744749868802352e14,7.050520023997576e14,6.41168852948126e14,3.513207435559993e14,4.143128806256169e13,3.477213161629619e14,6.362442953214524e14,3.437209882747443e14,9.39623234314453e14,5.724223629644036e14,8.611521444646748e14,6.469530296009604e14,2.744642831215398e14,7.526130755479771e14,1.0876615816419744e12,7.898254663775254e14,1.921546612825671e14,9.39639078968908e13,7.048284262796004e14,5.947699294362582e14,5.4316263958467625e14,8.013964643020869e14,4.402127830378232e14,9.898286260948952e14,7.951983985218472e14,1.9817125049098394e14,6.093034256177819e14,8.144435883341209e14,3.707153462970243e14,6.630889630311994e14,4.006060800741533e14,2.9873008771938006e14,1.2602665591372553e14,2.0405963964163066e14,6.36578328723567e14,2.908077445869301e14,2.7923660611039747e14,3.389758542658934e14,2.1583008260227422e14,8.924105133266079e14,4.8582050118051144e14,2.3079918604516038e14,7.512033880729738e14,7.87067659285673e13,8.381229025752218e14,6.325404113359234e14,1.1132795554987517e14,6.148377645972239e14,9.635024381917902e14,5.166421010028896e14,9.731604362922722e14,7.025136068929596e14,5.272745503836088e14,1.0877756577099452e14,7.741153335020965e14,5.217266719785718e13,6.033373332456316e14,5.813178104410496e14,4.0298384552413305e13,2.7440036738719862e14,4.5067991334523725e14,9.322927870247506e14,2.7978158153768397e14,6.450138637591318e13,4.3848291131725194e14,5.894694775685586e14,3.8923091189091594e14,2.1429969152373872e14,5.1646233274106556e14,3.00574778624199e14,9.832058653761044e14,3.611589141668762e14,4.779764296036113e14,8.018388291973176e14,7.617551049858384e13,1.657862856836918e14,5.2734008763151506e14,3.51456979815161e14,8.543927803906449e14,6.194290280504499e14,2.6016602039810988e14,6.365703833370317e13,2.1654519777085612e14,1.508335517293694e14,9.98072207639995e14,4.136533422013109e14,5.5223375357679325e14,4.1023150552230494e14,4.2593626098201175e14,9.568018238699783e13,7.85205120047961e14,2.1005326777970312e14,6.605684178104624e14,5.904552619925629e14,3.8284392862081606e14,6.105007445568262e14,1.0285283086266672e14,5.864237944956328e14,4.6755082081283675e14,8.984914851924172e14,8.857235917946394e13,3.9666092407915975e14,2.8264816284531925e14,1.1284532163204197e14,9.834742730889204e14,3.344298135508943e14,3.583741001300682e14,5.4756676739482194e14,7.137569891190508e14,5.823066507763306e14,2.2576159549978147e14,7.002211944947354e14,5.492934723163838e14,4.928421512288892e14,4.428046652087453e14,7.66281776403578e14,1.6713916921570525e14,2.620710836589011e14,9.11099760366757e13,5.617385808228602e14,4.043829541562631e14,9.052878463956876e14,9.127569574381544e14,2.8726419862942544e14,7.370113762554394e14,1.6909094029188044e14,2.211853004114276e14,9.710069889047158e14,1.2471246896583477e14,6.36325110510662e14,5.958156334812066e14,4.408277782900144e14,3.5049620781483494e14,7.520655827799252e14,7.107000663803275e13,4.0984718542253606e14,8.212357611885676e14,6.741595894018966e14,4.618967381773862e14,5.407488225764896e14,5.672795274097035e14,9.232139084354351e14,8.564205634771361e13,7.702707257152611e14,2.274778366933472e14,8.94138473854294e14,2.1638183026676527e13,2.653303057690519e14,4.579624177939599e14,7.505440461621594e13,5.869845915950426e14,6.688229528051236e14,7.19999503755611e14,7.823478973868348e14,2.848580518195395e14,8.964285520318701e14,1.8440521560269775e14,6.415875070155495e14,4.773174949523843e14,1.1825771363080228e14,7.301036754397769e14,1.1488066011996623e14,5.5010108968398844e14,4.890326113712779e14,7.562296427181052e14,3.176769693712407e14,2.363796931945098e14,8.00005206532686e14,7.282738561076173e13,6.099269796148794e14,6.770578117230761e14,7.292624677969451e14,8.375924052574055e14,5.906314478354364e14,5.3355955825917875e14,8.374691128735299e14,3.669934442123287e14,2.0493984530284447e14,8.124291433842845e14,2.495133702846699e14,2.898977689506569e14,8.513201903945131e14,3.834263340474083e14,9.045688227083886e14,7.317875993679428e14,7.920001120374204e14,5.975595560242954e14,7.348677972185882e14,6.537768146058126e14,8.434999186625024e14,9.278189115679902e12,5.955901901227362e14,2.719267155743399e14,5.590624432812769e14,4.8601031580935625e14,5.3807580556512914e13,6.77558964000881e14,9.603657583968474e14,3.9782819385117806e14,3.677222970002666e14,2.5141385646777338e14,1.4577500329750094e14,1.531884579990269e14,6.057212404205081e13,4.35235568041212e14,5.0031754073408144e14,5.977665122661141e14,7.1485404068844e14,1.8526098156338988e14,9.615970536882102e13,6.627632108967614e14,4.472065221754167e14,8.086729606721316e14,1.936003434775311e14,9.273586865804548e14,5.4707714143855925e14,5.5995481153686644e14,1.731494916841263e14,3.372500221785005e14,3.390032583608695e14,8.190572310226748e14,4.0090475580406806e14,1.8015173685709662e14,5.523273096030834e14,4.58755794331269e14,6.729733803856809e14,2.4409140601650038e14,3.3359775090950825e14,5.962339526166331e14,9.306108564081219e14,1.0765352994927423e14,5.134031477879681e14,3.913518336692434e13,8.751433062612895e14,2.7557841015593244e14,4.9362514193972894e14,8.256743426569369e14,4.24929285180955e13,9.526177469431676e14,6.051824738637339e14,4.1287219749622106e14,4.3834451166125055e13,1.9190700316124355e13,2.1073901068472644e14,4.941090886796695e14,2.8036234962580008e13,9.321564645366632e14,1.8434247638469603e14,4.168609987722361e14,2.6581741737575603e14,3.2218006708500044e14,7.836915857758864e14,5.318580293967801e13,4.691923011662978e14,3.497191963578615e14,2.594321053711873e14,2.358923851392095e14,7.350389385157874e14,1.2352965052781584e14,4.01836511402337e13,9.710613121868705e13,6.280703968757695e14,8.750018250659598e14,8.135321487791785e14,4.037882257826797e14,4.034417136174129e13,3.4814513572853744e14,8.283721280568521e14,4.4080800129105556e14,8.479820787832564e14,6.571889024235875e14,4.866710727816304e14,6.060110094135035e14,9.227512676291224e14,8.322871702060097e13,9.310709308319255e14,2.1337574846470975e14,3.212509575507827e13,8.46392169488769e14,9.256335072773919e14,7.606712013940885e14,2.7476941425748312e14,6.158967532236095e14,6.226250049903236e14,4.993920092376447e13,5.645724478448292e14,5.0547893818921555e13,4.21028504125453e14,2.2980640064495484e14,1.77403457525807e14,7.515014191314016e14,4.395393876595901e14,5.087702671256223e13,6.606251942567201e14,9.466719490048715e14,5.862877483484931e14,1.8262491766325784e14,8.397912643514619e14,6.390348740961324e14,6.60947791845279e14,5.293865691287584e14,7.551179448442412e14,2.0483914044867912e14,8.647181866847844e14,5.643261957828609e14,1.856054058360843e14,9.319221398060324e14,3.043972813539424e14,8.347372185811398e14,1.612256762761426e14,5.496094717110187e14,6.402502108039576e14,6.851451588250906e14,2.5228181342291444e14,9.623958402508612e14,9.29726726441763e14,2.7829479081659503e14,8.180318680073888e14,6.915885462119796e14,9.835452550736996e14,5.778146915345605e14,9.0804817325593e14,1.6298600329729384e14,7.115879959752844e14,1.741323008928951e14,6.6463057982692805e13,4.4647327119868594e14,4.766448567492614e14,3.321397588377274e14,7.205043373468489e14,2.578880848090831e14,7.122497452396072e14,5.3129709150424806e14,9.06206963097312e14,1.1091674700997167e14,4.319703927755254e14,7.325839977834666e14,3.958210668304432e14,4.82542328717927e14,6.566581959803272e14,8.873352783049625e14,3.33209993197749e14,9.332257576225594e14,5.4989623648329875e14,2.0796336457460053e14,9.365151126924945e14,7.235423723093726e14,2.1166815505156022e14,3.0387194650508206e14,3.2183454767861906e14,4.497515192060977e14,8.368227225933935e14,9.288892477617324e14,2.837569689833077e14,2.2704280949423784e14,8.230144107991194e14,1.554582556476809e14,3.733451874834993e14,8.795170499601228e14,4.855114459776821e13,3.1457350748931544e14,9.860240050071578e14,3.4458897109690956e14,4.6660936703884656e14,3.031308896708769e14,9.016487626374625e14,4.565084100105489e14,4.813591260627105e14,8.413613166129561e14,2.7236094730461934e14,6.686696332705562e14,8.13575137140214e14,5.835159830435851e14,3.2215329023007325e14,9.28717851600117e13,8.93259496544241e13,1.0723883664817147e14,2.053223921259867e14,4.612499919723315e14,7.285844930278969e14,2.885698658982156e14,3.2113043351112094e14,8.860860460812458e14,6.041902203996061e14,7.326257741599902e14,7.81568864848507e14,2.9485893948386356e14,6.305036024405598e14,1.0492553967859219e14,2.745332748203252e14,6.720737873320769e14,3.7870713575539894e14,7.175200234784449e14,8.07125804705627e14,7.732690430684511e14,6.360906694249774e14,6.760944714630031e14,2.8917960282904344e14,5.3279664476008606e14,4.448494534000945e14,5.2959640334498606e14,1.0610838259089661e14,3.5028210365789256e14,6.983215711032904e14,8.462132896547452e14,1.6208232999994653e14,6.807626504807054e14,6.000009127056758e14,5.468511523342756e14,5.1107162158049944e14,1.8276638651520703e14,2.187229348274905e14,2.8195701588474906e14,3.8490968659522505e12,9.183439538840391e14,5.2991947850019125e14,7.496649607286436e14,5.105169899052852e14,2.1358202685601625e13,2.8714102168351144e14,5.814291835496221e14,5.781446367849585e14,9.077180560583095e14,3.126371237870453e14,6.821609821783191e14,9.869979986190385e14,5.217370794543522e14,9.728395591286496e14,2.071760442613576e14,9.664283293085914e14,3.2764760484953494e14,3.5453225517446475e14,6.890260358389636e14,7.101270640361725e14,9.534139916659666e14,6.570910265313056e14,6.27512483033406e14,3.290951313152707e14,6.042282586325666e14,9.920947757263346e14,5.264533758438101e14,4.496168885311231e14,1.8470777402705975e14,4.3875714760381425e14,6.933103815239641e14,4.769507212289261e14,3.995241674576503e14,6.868847351109686e13,7.360166265753895e14,9.134793635604543e12,1.878027832375353e14,1.71859907073574e14,5.794342276256586e14,4.477557567346445e14,5.3860938612275775e14,4.775465290113173e14,7.904776468195635e14,5.5279006411749144e14,8.61003777176602e14,4.877868934891577e14,9.172649406834976e14,3.3901623738000944e14,9.561979019273092e14,6.679151206849124e14,1.749612673548381e14,4.2769238979239656e14,4.277960309850577e14,8.715527926966396e14,9.757642217595545e14,9.468374162876052e14,8.886389604641079e14,6.069073454679329e14,1.9930498326026103e14,7.903477844056501e14,3.9912034936885356e14,5.0212805438163156e14,3.284947043373262e14,2.758846848077512e14,5.1533040103943594e14,6.013051892485759e14,8.291347468160586e14,9.032684580071214e14,3.080641742031521e14,8.936865058682352e14,2.8846013554580994e14,4.780669047731002e14,9.34418401010877e14,8.033808130884467e13],"im2":[4.324935223171754e-16,-1.1937308473248656e-16,-4.257433627955132e-16,-3.3323945552103333e-16,-2.3485737332680227e-16,-2.5011170830908594e-16,4.0314485909959554e-16,2.8407431127051247e-16,2.750878912920801e-16,-1.518555975554813e-16,1.7956623933437806e-16,3.4839613391216486e-16,-1.105993210111864e-16,-9.361674309542504e-18,2.876354808690657e-16,-3.9592193096548393e-16,-6.272739024939301e-17,-4.578572789344324e-16,-4.590687050467917e-16,-3.504270049983495e-16,9.772343923765252e-17,1.0857203976849184e-16,-4.223642864915807e-16,-1.6936118932929137e-16,8.169326745226884e-17,1.252092464522344e-16,-8.622087660570546e-17,1.3945296346645547e-16,-2.830396248655909e-16,4.984236677153366e-16,-8.968702879140033e-17,-1.195942051915063e-16,7.802587192536212e-18,-3.962881003308979e-17,8.095198970006621e-17,3.3648276722771666e-16,-2.740025306555867e-16,1.1965575644969297e-16,-3.9459681686289663e-16,3.823796096165072e-16,1.690737308320208e-16,2.8093344914272383e-16,4.799392466285383e-16,-7.48111515793841e-17,2.918581172509033e-16,-2.0306964806969762e-18,-4.970502174844434e-16,1.0652504574147096e-16,-4.719573217347281e-16,-1.272675374868202e-16,2.7268645745377605e-17,-3.187410521822225e-16,-4.636638617103518e-16,3.801655700490869e-16,4.860423374876994e-16,-2.1273173482398925e-16,3.8843190637835707e-16,-2.9638788081669986e-17,-7.884201021784921e-17,2.574954570204808e-16,-3.756768003550618e-16,-2.0492438036170868e-16,2.0640628230134955e-16,1.635942209387487e-16,-1.0536941423270959e-17,3.1879970539415674e-16,1.112716528487725e-16,-1.730625287621729e-16,-1.468132850146282e-16,-1.7881129413132624e-16,-2.0866154769225688e-16,-2.054020520371534e-17,4.675164321586881e-17,3.7041529346916874e-17,3.60907375157406e-16,1.1497161330742554e-16,-7.142042564003816e-19,-3.6094803602729415e-17,-4.80671881358969e-16,-4.617415734417956e-16,1.3407112562662468e-16,2.988491886076305e-16,-1.1819287419729486e-16,4.196508282734918e-16,-9.699793708637338e-17,-1.5706938349296498e-17,-2.874625310513639e-18,-2.8334022151059157e-16,-3.809205269811592e-16,1.3689843858221323e-16,1.7045559533199045e-16,-1.6428278927191242e-17,-3.965206716300681e-16,2.192708015714032e-16,-4.4282345022871615e-17,2.0815722272590464e-16,1.210000946645996e-16,-5.95971001092668e-17,2.9693222780019063e-16,-1.1608596002427997e-17,-4.561217040159625e-16,-1.4506712579420813e-16,-2.0367205487058928e-16,2.285086673840691e-16,-4.400137088581072e-16,4.519445888137863e-16,3.1594107773679363e-16,4.899540468510389e-16,4.953751628201585e-16,2.123265721664187e-16,-3.702767875607759e-16,-2.544468624152585e-16,1.0727352091082306e-16,4.795606660045512e-16,8.000526421700088e-17,-1.2315337168396113e-16,3.8465563336550626e-17,-7.532867358735973e-17,8.37761138761896e-17,-3.799612655488565e-16,-8.756854421091878e-17,-6.060979608829885e-17,-2.102034751538906e-16,4.833067034655708e-16,-1.1501430312439941e-16,-1.7228822247982706e-17,3.277683703865644e-16,1.0759076662846972e-16,-3.46699828143464e-16,3.8106445920940755e-16,3.1958782106508936e-16,-4.4309145428165804e-16,4.555016665658172e-16,4.192810275287305e-16,-4.728758339722347e-16,-2.68812634684226e-16,2.0774385858874223e-16,-5.3370739661900904e-17,2.144051528578038e-16,5.387227428824464e-17,-2.9180806670755624e-16,-2.037823302707347e-16,-3.5048904159642953e-16,-4.832112304599831e-16,-3.0333044703766323e-16,-4.2767630524940716e-16,4.740073338722706e-16,2.864127467114398e-16,3.9526960224954266e-16,-2.9342854115654975e-16,-2.129533803957251e-16,4.470278222688043e-16,-1.248071885443166e-16,2.005914131387968e-16,-2.7589207229809046e-16,4.749290018806533e-16,4.664640274522348e-16,3.7079832688026075e-16,2.889529943432978e-16,4.0055501615310683e-16,-4.176963923057876e-16,-6.679319793716464e-17,3.378444232747588e-16,1.8598841264185039e-16,-4.826414111609118e-16,3.507753327127751e-17,-1.9166408148467907e-16,-3.2183407123741806e-16,-2.893954563432883e-16,-4.743326284454288e-16,1.398287225827933e-16,1.3096598463758406e-16,2.9057726268087336e-16,6.846745846469146e-17,-5.953539756278634e-17,4.957477717014917e-16,-3.897001011153063e-16,4.617332562623229e-16,3.9967625394469078e-16,1.3736646805581428e-16,-2.171419528824551e-16,3.7936163566557675e-17,4.990830004662155e-17,1.2304912156678638e-16,2.0215072607675363e-16,1.3210936697452526e-16,1.489609224854952e-17,-2.5013618465009326e-16,-9.348970266306713e-17,4.2886106066162064e-16,3.598374664845409e-16,-1.0569046626809643e-16,3.7750026680582397e-16,1.7555385196361044e-16,4.345591272191942e-16,4.973215609856869e-16,-1.0382397845996681e-16,2.29465608131307e-16,-3.8050875721493877e-16,-8.194919036804274e-17,-1.7217164383292382e-16,-1.1871450597948997e-16,3.7721932763771773e-16,-3.601406644888736e-16,-7.769534118024824e-17,2.938835644776032e-16,3.1300138392476445e-16,3.6406420023397306e-17,2.388872682748632e-16,-1.4874540856339184e-16,1.1658811809166661e-16,1.317238510348364e-16,6.9072396158446e-17,-2.0271405892811804e-16,9.632120695938616e-17,2.906159432264079e-16,4.1178892902489113e-16,-4.729599649957843e-16,-7.000627149099825e-17,-3.0408513640592296e-16,4.309647771931798e-16,3.634665479748406e-16,-2.3299616270012306e-16,6.851696539783363e-17,-2.831442190437954e-16,-1.9591507614287174e-16,-4.2610181898909056e-16,3.9825646905541453e-16,1.6862478442068865e-16,-2.3414936155368737e-16,3.8987869353408815e-16,-1.4271570477006747e-16,4.540281759159343e-16,-2.5112868368268984e-16,-2.6454168078350296e-16,-1.2231386344866914e-16,-2.932189522616504e-16,-3.873773491408913e-17,1.0229225244000685e-16,-7.001201730114055e-18,-7.012403780911969e-17,-2.5077623218946066e-16,-4.827162561423078e-16,-4.636488661163633e-16,-3.6480377453630997e-16,-3.956499507863174e-16,1.728918426443783e-16,7.863963792293308e-17,2.664681190766397e-16,-4.989949304903025e-16,-1.9356769854096367e-16,-2.7257149980854413e-16,4.960712628181872e-16,1.4889133456625883e-16,-3.484111921876476e-16,-1.7960190975368173e-16,-4.788741307479401e-16,2.6947535823715545e-16,-5.605298701907213e-17,-9.578837883270331e-17,1.1365925577552895e-16,4.458400356672012e-16,3.287374408349911e-16,2.640945583830143e-16,-4.873378951545256e-16,2.6175233316047393e-16,-5.094573582347558e-17,2.258946239547439e-16,3.5591683354554436e-16,-3.7054445507704527e-16,1.767592727833175e-16,2.315996932580568e-16,4.596131298719967e-16,-1.6103161726759855e-16,-4.504812129183002e-16,-4.774403250970157e-16,-4.646109691068427e-16,-3.031596284165369e-17,2.238523247893886e-16,5.3890578451044365e-17,1.823743952603062e-18,1.1289618468084386e-17,2.1680271567928556e-16,-4.463662659114077e-16,3.0747800218101067e-16,4.2563818943482384e-17,3.3401951576711757e-16,-4.293802995208266e-16,4.996215875232333e-16,4.468356653086412e-16,-1.815233606418254e-16,4.452587108558112e-16,-6.89717494187837e-17,8.93579548305238e-17,3.8419394799950556e-16,7.011487351184268e-18,9.69246623747031e-17,2.175511494009945e-16,-4.626835448632473e-16,4.334636788408944e-16,7.516210339701131e-17,-2.5032905736106004e-16,8.114522461242654e-17,2.9962418727432678e-16,-1.8816655235710346e-17,-3.1151792790885015e-16,1.9599088038997812e-16,-4.819551896523168e-16,-4.441748347161555e-16,1.4984252506214451e-16,-6.795790726371585e-18,-2.1530454149615486e-16,1.3078768448616364e-16,2.8294083344690196e-16,-4.15853260817879e-16,1.3581348488323468e-16,4.3502228881915204e-16,-3.5526615165847677e-17,-3.609116870107223e-16,-4.667058899249739e-16,-2.638065147273926e-16,2.857955484990359e-16,-3.3494482012974316e-16,-1.2860451832250408e-16,-4.471016925142447e-16,-8.19674040887352e-18,-3.492742256796363e-16,-2.62264833024476e-16,-4.712587370563802e-16,4.0685311907746654e-16,-4.424024656156295e-16,3.978953963677626e-16,4.9377727553464003e-17,-3.126404817498546e-16,3.275457021506385e-17,4.617673851808985e-16,3.1570229573450737e-16,4.5056210136863895e-17,-2.321278542357782e-16,-2.747772055496919e-17,3.366389346756978e-17,1.4485487020943783e-16,4.53095219940887e-16,1.7748525231819046e-16,2.687030317412052e-17,1.812604059614779e-17,2.8340618575382947e-17,-2.0797137405731058e-16,-1.4375618611531639e-16,4.796062822203778e-16,3.700469905646701e-16,-3.6136209656203623e-16,-2.8708080843019705e-16,-3.253464163508968e-16,4.755590617720892e-18,-2.504034415696294e-16,1.5008092327980754e-16,4.437728251549236e-16,4.337530181927775e-16,8.016998798598238e-17,-9.686247144437667e-17,4.683547717046923e-16,2.7893471613024945e-16,1.5214310129324947e-16,2.575519930782836e-16,-7.711693761876362e-17,3.3734200014932625e-16,4.7769369049673566e-18,1.519418800889648e-16,-9.849158751663778e-17,3.310801724338364e-16,4.498039394050198e-16,-3.7183704927783007e-16,8.488867422836222e-17,4.650737439860301e-16,4.421843548260402e-16,2.9666554685971213e-20,-4.636423221672106e-16,3.693493120256469e-16,1.407446343149352e-16,3.4643810558114467e-17,3.1208319476314594e-16,-3.4010335618500825e-16,-3.5751667992935844e-16,1.8041718603378752e-16,4.3261853135096294e-16,1.6617090387471835e-16,-1.176362856643373e-16,3.4981330781697097e-16,4.558923441902153e-16,-5.674940883043649e-18,-3.585535274661025e-17,4.3756211871891254e-16,-8.490398619202556e-17,-1.8843497965609212e-16,2.0257071894803152e-16,-4.6760478502380316e-17,-3.453304910624384e-16,-1.191560126835396e-16,6.198577782116935e-17,-1.4153523458641314e-16,-2.970115122276295e-16,2.517489394572273e-16,-2.1934949674102878e-16,3.2813063535262176e-17,-1.3076766620983937e-16,2.980553850903085e-16,-4.583529330209364e-16,1.1328684161839616e-16,4.729641814870828e-16,1.7385692119236295e-16,4.58395944910814e-16,-2.8684063112788416e-16,-2.105223038775269e-16,-2.987044946474519e-16,2.517626493674132e-16,-4.685158338734574e-16,3.4463564569641194e-16,4.692827725599608e-16,-1.9247633879900729e-16,4.011831936780653e-16,-1.912837684282319e-16,3.1552764303094426e-18,1.6254910700145323e-16,-4.487551988089985e-16,9.860035459240129e-18,1.6464457941414674e-17,-2.373377819721172e-16,3.7753297071129793e-16,2.6665547725070497e-16,1.1061952207662515e-17,-1.8720887544020938e-16,2.0974708970208455e-16,1.2248861408070558e-16,-4.613886210481752e-16,-2.8547013151684685e-17,2.3096963817299987e-16,2.9831106561646247e-16,2.2648813907391664e-16,3.745361833587443e-16,3.511773752427732e-16,-3.426907456004747e-17,-3.932797099992717e-16,1.4462919211350213e-16,2.4459699017433365e-16,-2.068177283740058e-16,2.6663935888084407e-16,8.1143792052627e-17,5.890522327052115e-17,-8.39248668788173e-17,-4.0899231566070196e-16,-8.0933900797016e-17,-4.2439721872861325e-16,4.299445722287415e-16,-4.857776628105134e-17,-3.3502769545417943e-16,1.4652460473092805e-16,-3.435215847039005e-16,1.030713642847173e-16,-2.0409398962814408e-16,-2.9009017515804346e-16,-1.4181133013961476e-17,4.630905365050343e-16,-1.2733007008189902e-16,8.850988019115929e-17,4.271307728767483e-16,-4.734177465354715e-17,-3.876787489296204e-16,3.7736016895840813e-16,-2.3285688465157076e-16,1.681749121603397e-16,1.2170384361842785e-16,-1.5659204370203915e-16,2.6518886014562193e-16,3.252578156685582e-16,-1.1365011686346026e-16,3.687453625659874e-18,2.126778021419477e-16,7.740262944004854e-17,3.4740730241358024e-16,3.897964015951454e-17,2.827953618220204e-16,-3.204258138835341e-16,-1.2371948631199605e-16,3.089040747564532e-16,4.729343446306437e-16,2.8501028934070025e-16,-6.685029408939112e-17,3.899328428765285e-17,2.5791861954630983e-16,2.1608378318658071e-16,-3.941276156462307e-16,2.1933280622066142e-16,-9.968758096934951e-17,1.1074891543504434e-16,2.832175478743464e-16,3.1576319342471463e-16,-1.6488350634763306e-16,-4.84241993931388e-16,-1.8346604018528013e-16]}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/component_scales2.json b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/component_scales2.json
new file mode 100644
index 000000000000..9deed0da173d
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/component_scales2.json
@@ -0,0 +1 @@
+{"re1":[2.1404711707230597e-16,-1.0669215598161998e-16,-2.5279142235521183e-16,1.4020596833264762e-16,-4.479158858996162e-16,1.507523925495522e-16,-2.7274008748991397e-16,4.706266165492267e-16,5.4595436974093525e-17,-3.753292243681986e-16,1.8961027951072568e-17,-1.6603088641221963e-16,-1.8494254217202954e-16,-1.0619670268568517e-16,-4.129549947963552e-17,1.0921586143299826e-16,-4.664278550966164e-16,2.063680702657053e-16,-2.920880806411364e-16,8.508600674096208e-18,2.818988167186182e-16,2.698191914132768e-16,3.559916477703297e-16,-3.5644810387786375e-16,-1.7472140960282268e-16,3.2501641226785683e-16,2.8521376363838907e-16,-2.1271463158022444e-16,2.5350784390160215e-16,4.870692937006232e-16,-2.0497929139882587e-16,4.70788081404188e-16,1.3793535995290745e-16,-2.5872460326134475e-16,3.5813494374240718e-16,1.8046567946036297e-16,1.4140170644274098e-16,-3.4728355733360275e-17,1.5311351626488284e-16,6.588055502780803e-17,-1.2407106280465154e-16,-8.602609705550474e-18,3.0451062172905765e-16,3.4534512372721994e-17,-2.82363093368305e-16,-3.989307336308442e-16,-2.9410086633697904e-17,-2.527917368042562e-16,1.425829149649803e-16,2.936131181975802e-16,3.1133312076482077e-16,-2.7384646199596255e-16,3.0736700741194947e-16,2.4815344405294307e-16,8.771067394017925e-17,-1.7625464491605717e-16,-1.937654524405199e-16,-3.29756503806557e-16,-2.687360698331899e-16,1.7007523650737294e-16,7.199110388850269e-17,2.3305720587257275e-16,3.3413528289475734e-16,-3.0674327013015873e-16,2.7170682801841593e-16,-2.999430405624595e-16,4.754524734033296e-16,4.900426223799341e-16,9.035277346504231e-17,3.638374246316263e-16,-3.624696988235172e-16,-2.1214503683610956e-16,2.4069115927056207e-16,-4.704568234641109e-16,-2.665849561825693e-16,-1.7393997094441405e-16,1.8437675546884858e-16,-1.4534134114947927e-16,2.6449014839977885e-16,1.1110643990585743e-16,3.884796608465428e-16,4.3462104363870884e-16,3.9389363089603566e-16,-1.811138694816248e-16,-2.439649159900954e-16,4.758122819375123e-16,-4.462545296378281e-16,1.8111259233008126e-16,3.879101228885477e-16,3.885776765258565e-16,2.3516807666691317e-16,2.1929444740230672e-16,5.680270840974946e-17,3.126683958832336e-16,3.068996310905153e-16,7.364515346032121e-17,-2.3174405742480953e-16,-3.2953401106649475e-16,-2.3449709810633826e-16,4.471782168020757e-16,9.113667769600111e-17,3.215912668715258e-16,4.879028477753258e-16,6.564294781153486e-17,3.867586489211107e-16,2.8820186208963317e-16,-1.4741633667762435e-16,-4.658453726387756e-16,-4.73844647551456e-16,2.0156215800006472e-16,7.82072596070633e-17,4.2063046581324756e-16,-3.549696429004954e-16,-3.45816054701685e-16,4.165293288646225e-16,3.364231278235439e-17,-1.370930773289618e-16,1.490424466763173e-16,-1.4995440864826938e-16,-3.410437846089756e-16,-2.2765626481919665e-16,6.996001234670348e-17,4.013024363884443e-16,-2.9451350754038355e-16,-2.4809690787353426e-16,-4.597827697964702e-16,2.1766026126350996e-16,4.269168552854314e-16,1.444114429952484e-16,-4.776357229523239e-16,-2.2967755296200764e-16,-1.3905272154495964e-16,-2.1653898633695668e-16,4.277309754455222e-16,1.8517368005251727e-16,-3.449570963638359e-17,2.8199622065172586e-16,2.8464010363262697e-18,-2.7960907144696214e-16,-2.974631204893229e-16,-1.0638684505182083e-16,-1.702853606280098e-16,-4.215299807980363e-16,2.1629284739020751e-16,-3.692898110101698e-16,4.0553203291296014e-16,3.6374442446616033e-17,4.142893214358578e-16,2.5490991695373537e-16,-6.316696175807267e-17,-4.3260120130475725e-16,2.0493894700694214e-16,-2.622177030462425e-16,-2.696808469915405e-16,3.753289295275125e-17,4.574647061283565e-16,-4.871028023589032e-16,-2.189436856892534e-16,-6.286366440322823e-17,1.389019800135676e-16,-4.9118219316440905e-17,4.854387350768387e-16,2.4673020399239736e-16,3.930286664786141e-16,4.0196119307340673e-16,3.212235158421379e-16,1.3975569045941505e-16,-1.3727707626156674e-16,3.9566534235266507e-16,-4.172699193123394e-16,5.62886973461183e-17,-6.42463429667952e-17,-5.3355172931662937e-17,3.028903311862781e-16,2.078385843365378e-16,3.905822235340942e-16,4.667249527981258e-16,6.871311940951446e-17,3.853973505992203e-16,3.6425144944330834e-16,-3.943874798127021e-16,4.599918115720145e-16,-3.5455922144555643e-16,-2.623261119357835e-16,-2.1590158703714935e-16,-4.929076902683541e-16,3.813055692396763e-16,-3.941419060516747e-16,3.9742200336655354e-16,-4.912033949613321e-16,1.8649626568786172e-16,4.102099474053787e-16,4.600555193258401e-16,-2.9802450415099327e-16,1.0533032096109628e-16,-1.840330908168484e-16,-3.2304843631379235e-16,4.977303467213561e-16,3.2213911192678153e-16,-2.588541065193294e-16,5.426864672351508e-17,3.4188171991702084e-16,2.0554168641343154e-16,2.3724989353421802e-17,1.4397759440770456e-16,4.169610966837023e-16,7.217517494476988e-17,3.118706136503213e-16,3.0472798050996297e-16,-3.1394163928858234e-16,3.536875087514363e-16,4.836949769354342e-16,-3.9209390732526496e-16,3.488173919668365e-16,3.557699001351346e-16,1.4810859906333142e-16,4.200880920287211e-16,-4.1808785710389055e-16,1.9495648933010815e-17,-4.2266011020972176e-16,-4.514008806048518e-16,9.306231699369522e-19,2.997287600214685e-17,2.942474389390354e-18,1.96369478986278e-17,-1.7284345833189241e-16,1.8186390222121996e-17,6.367058880191839e-17,-3.804927549762739e-16,-3.636634490033454e-16,7.064395354407425e-17,-4.246440861618207e-16,4.9416527379882967e-17,1.0583010228652504e-16,-3.3989232458281916e-16,-2.9393641805745053e-16,3.764750848943644e-16,-8.59419251484239e-17,-2.718386306016409e-17,-2.5454457210033536e-16,-2.8495730425899e-16,2.714499302841543e-16,-1.7255171175131889e-16,2.0535718551846666e-16,3.35290419446122e-16,-1.274717934539865e-16,2.098702141501885e-16,4.747883397024133e-16,-1.3291763470105734e-16,2.532096557065118e-16,-2.47365126201917e-16,1.7252523540151702e-16,-2.9869981821027126e-16,7.183460403394278e-17,1.3984950890115126e-17,4.348926897619732e-16,-4.0528707082359905e-17,-2.88070412558074e-16,-7.839432136483703e-17,-2.42343719851027e-17,-6.538815466346937e-17,1.6641668204832088e-16,1.716844269452498e-16,4.630203507687652e-16,3.619422321291984e-16,1.6542054685717138e-16,2.641649276579564e-16,-3.4429480138769157e-16,3.8306648343208134e-16,-4.829924954709548e-16,4.497005728637728e-16,-1.6106839553239297e-16,-1.404476583560057e-16,2.6029283674940163e-16,3.4385608221428735e-17,-3.5348025630067675e-16,3.262291589883778e-16,3.7158249079281316e-16,2.392817021678941e-16,-1.821671102962493e-17,-3.3286132649896333e-16,-4.665527096394258e-16,-8.98003440567591e-17,3.436714936688385e-16,3.486287168547848e-16,-2.6828826342482827e-16,-4.598525327834578e-16,-4.1385462228896533e-16,-2.568009589528836e-16,4.878517972530766e-16,-8.1360205090235e-17,4.994285477341002e-16,1.188303604413893e-16,2.3188614977226612e-17,3.0038948955441323e-16,1.863748317425351e-16,-1.1057700932115143e-16,-4.0221292520420463e-16,-2.747957503722094e-16,-4.21225060299149e-16,3.5755672608415573e-16,-9.189367260053039e-18,4.463477733560776e-16,1.0866507861413798e-16,-2.0011619447071928e-16,2.2624256794653416e-17,-3.437400711068073e-16,-2.5375137921075677e-16,4.630451017585311e-16,4.2240325892384613e-16,3.7172248175650116e-16,-4.640652397450857e-16,4.445247932775529e-16,-4.747557845828756e-17,1.393042791630982e-16,-2.373694477383152e-16,-2.1215104213590743e-16,4.76997450251797e-16,-4.812771437125733e-16,3.0151513763988526e-16,-3.0701454732691406e-16,1.8032737089791096e-16,1.6026303642776784e-16,-2.752206569910929e-16,-7.17144329091807e-17,4.0118862170874014e-16,-2.163387571088026e-16,6.367048208161945e-17,-1.8693719300283917e-16,2.1906372567799358e-16,-4.3944448176603206e-16,1.1378330159933023e-16,4.51668292575822e-16,3.5966647611364187e-16,-4.697789853510729e-16,4.606716646828532e-16,1.4041885698923784e-16,3.2912585464726247e-16,-1.349510828403995e-16,3.3672740402392665e-16,1.7793991462804942e-16,-3.312134493702394e-17,-3.105771938055594e-16,2.7471663001757175e-16,2.6593323608354036e-16,4.958346207016107e-16,-3.9389271022242094e-16,-1.6824062758877e-16,4.583651091178197e-16,3.0370186509162377e-16,-2.8533745578553466e-16,-4.714262112262032e-16,3.136293963326691e-16,-6.211204795494177e-17,3.4185714975410645e-16,-2.237376363953182e-16,-3.0814586521039477e-16,-3.1618835267257685e-16,-4.474530723345312e-16,3.7319053388379e-16,-3.126526266336108e-16,4.66176250759555e-16,2.996420194675453e-16,-2.291330472810517e-16,-2.8370185555260877e-16,2.448201028451426e-16,-4.28740289074149e-16,2.749649225937808e-16,1.4896285589971848e-16,1.775723868882713e-16,-2.5699461875607365e-16,1.7291750804075637e-16,-1.0672064351940271e-17,1.9312350164468262e-16,-4.761636241148902e-16,-2.1032049894157126e-16,4.511247549074568e-16,-2.8772755918524167e-16,-4.7523761942783055e-16,-5.881795224218099e-17,-3.8808846941553457e-16,6.955691895035297e-17,-2.2712557397381563e-16,-8.413809121608586e-17,1.3432186506228534e-17,-4.862523246083977e-16,3.0391694179891207e-16,2.462601611010131e-16,-4.585058129910909e-16,3.222364318896326e-16,-1.683847551102309e-16,-4.038265874856239e-17,-2.7645977945876667e-16,1.157614664340916e-16,3.492332972018623e-16,6.825246930269451e-17,-6.810992001855179e-17,4.809907110218058e-16,-3.6066738686458317e-16,2.2212060318503275e-16,9.296398369086887e-17,-5.6888778398691e-17,-1.3537624152838278e-16,-1.1599989060393833e-16,-4.1470645704196777e-16,-3.0350098654332296e-16,2.840249534129748e-16,2.372928203759898e-16,-2.0797825492866853e-16,-1.2754245512974504e-16,5.485834612839065e-17,-2.263006786367161e-16,4.232105191342819e-16,-3.717163647938394e-16,-4.798654834173806e-16,-1.5211350472772548e-16,-1.16006142692039e-16,9.939248956233491e-17,-6.7291985094338685e-18,1.1735947319783227e-16,-3.6060249394861213e-16,1.721526134115678e-16,4.61923102731982e-16,-2.6626081096018465e-16,-9.979225646113919e-17,-3.060628236444294e-16,4.141544201509121e-16,1.4640065275765593e-16,2.116280711896694e-16,3.42165766796975e-16,3.671087278081965e-16,3.922429434073262e-16,-4.1370986679713085e-17,4.050986254144303e-16,5.639053685590948e-17,-3.107581131190504e-17,-9.045908665068894e-17,1.6237725538755404e-16,-3.702503786371414e-16,1.6688650851562733e-16,2.0062842013570247e-16,2.5475344989286275e-16,2.364055000824385e-16,-1.8272813276157233e-16,3.4222316171011495e-16,-2.4244172626795826e-16,-6.786399787479235e-17,1.8635400996361954e-16,-1.2329871392802282e-16,2.521374350908936e-17,-2.1959142872828086e-16,1.9311955646738803e-16,2.8572996088930283e-16,1.4358994285396923e-16,9.089366928945564e-17,3.9282247408120906e-16,-4.304881675215236e-17,4.102979439395001e-16,7.901357714784867e-17,4.755631322766133e-16,1.190670433995321e-17,-3.702081901352832e-16,3.1659889868228897e-16,-1.9926859720387492e-16,-3.2467191355728114e-16,1.8879069270882778e-17,2.7089669844077552e-16,1.483772765246269e-16,-2.1901493248174688e-16,-4.0427330297332523e-16,2.6353589977257523e-16,-2.9785345156612247e-17,-1.3360837347005995e-16,-1.7316262612015133e-16,2.3029039857083575e-16,-3.048753136800718e-16,-2.675502923647428e-16,-1.3175843710628576e-16,2.843965345308563e-16,-1.7303070349702823e-16,-1.9686548854366205e-16,-3.50167839185817e-16,4.756978815762859e-16,1.0132678135245193e-16,-1.6159536744964642e-16,-3.397997769664448e-16,-3.4985225274593714e-16,-4.52177107635599e-16,6.524710742474302e-17,-4.468326440857702e-16,4.695062587167666e-16,1.514360243494972e-16,-2.2457708320576267e-16,6.44547557989905e-17,2.914611539695097e-16,-2.566759651233903e-16,-1.191295817907393e-16,-2.180154371456755e-16,-2.8870442975929115e-16,2.607247010204231e-16],"im1":[6.563195242693354e14,5.920820822023431e13,1.7080567385975588e14,4.564271605120437e14,5.318677409934639e14,7.092152796315985e14,2.5670490582289006e14,7.691120324542365e14,7.317729166093324e14,8.285411282741464e14,4.455004964285684e14,4.4429016685162525e14,3.892237253966875e14,3.416612037575757e14,6.551531326056461e14,2.3209049762701838e14,2.3611941713408325e14,7.589957335589019e14,8.10278391938466e14,4.2820650604463075e14,3.675047733041226e13,2.1973455343284766e13,7.764408245032594e14,7.59377855203196e14,7.784358269767171e14,1.2067870572348261e14,1.7701355829557753e14,2.731761375780217e13,5.436445898378849e14,2.1882385507401712e14,9.316329214698244e14,1.9079680748728778e14,9.714837490986799e14,2.0512188867202906e14,5.863634592627486e14,2.160711680509262e14,2.769050971158854e14,3.553604203552929e13,4.002480845333714e14,8.947098975892442e13,5.811721013814681e14,2.2284053023000625e12,3.1099707873373406e14,1.1100303422151303e14,4.784270068244079e14,9.637120617093515e14,7.788246217572402e14,1.1575249257424292e14,2.3047138378006038e14,9.274181890355248e14,2.37873731607384e14,4.390693658820364e14,9.062328378674526e14,4.895494462905918e14,1.3890189708674372e14,8.94683636842637e13,4.1054502118758206e14,4.156176744244832e14,8.86100197146178e12,6.911466593705931e14,8.988811766534179e14,8.183989132548608e14,9.863200714568308e14,3.077825706150472e14,5.604697186644556e14,6.935660950117188e14,7.930808833040715e14,3.323456969815306e14,9.78124777971051e14,5.963766835849155e14,7.097408215464191e14,9.259546569241722e14,5.6368521714979e14,6.803434350998438e14,9.588152873398566e14,7.360645170423055e14,2.0231407800099644e14,8.790554980669828e14,4.7640193451252756e14,1.357551141529726e14,5.92497231328004e14,4.8027927549129844e14,1.7077428202652122e14,3.3609371203993075e14,2.4264705414615994e14,7.449265781458706e14,9.071898272081752e14,6.923217106475851e14,2.7968090131392097e14,5.0895444767097706e14,3.248137222415517e14,2.112876943330211e13,4.3710625162319325e14,3.090375565867366e14,4.847088997812018e14,8.689864250569466e14,8.556367901280291e14,7.351029647409591e14,2.5428915579099788e14,5.900867312127089e14,3.12920638908633e14,1.0054131528204823e14,3.2407710757485506e14,6.113021606737272e14,1.598696802891586e14,7.578683341040502e14,1.5063312429286212e14,4.402471806621193e14,2.6553272703122853e14,4.023028733014269e14,9.796907562083248e14,5.05161132593901e12,2.5903439037833453e14,1.8717683661507944e14,6.627713588601615e14,5.1319553767337856e14,7.956524485720069e14,2.403302526313037e14,4.076175946441207e13,1.512224715790337e14,2.7047378812706725e14,4.1277963832611706e14,6.45415930837671e14,8.294378280170884e14,2.0257326739044656e14,8.918770572936359e14,6.946340307844476e14,1.0610216452672905e14,3.9184844474671256e14,4.7027932220545375e14,7.002124277827585e14,5.965410878996314e14,2.1676292780191275e14,9.987218598939535e14,4.757883759489866e14,1.2960704732311967e14,1.767428069513318e14,9.144584950206908e14,1.4902958389095766e14,8.184985045049482e14,9.375069949952084e14,5.062945791879578e14,3.9506968108125694e14,8.429811149223384e14,5.702554465910732e14,9.584490348508645e14,2.929368606052464e14,4.910677111684684e14,2.8965383848449325e14,2.945099818428801e14,6.493097603934924e14,1.2183812429932228e14,7.777802158180701e14,8.576023386909845e14,8.658086521597659e14,8.443101384798019e14,4.010412012257296e14,7.260553421077772e14,3.846769689724212e14,9.635150066837905e11,6.651367608063318e14,9.953351045005096e14,4.7630997245092656e14,9.150511444282618e14,1.4595080774116197e14,8.147079881992009e14,3.0745517582086756e14,3.7289786086727594e14,1.2619817749646833e14,4.411064150413991e13,2.3331144563553928e14,3.241696033724115e14,2.683783502616549e14,4.0524484384102044e14,2.4711752027555456e14,9.507384545185006e14,9.556858837341652e14,5.538865822431983e14,1.3418468363100555e14,6.510308934511981e14,2.8521455378263994e14,6.719594009534344e14,9.836863967279652e14,6.543409016082992e14,3.989461466079388e14,4.801397383847443e14,7.974107386933121e14,1.3028655393666e14,6.80741318287757e14,9.300429097001284e13,3.111071551726748e14,8.761827552191482e14,7.709083248766111e14,8.77405792812421e14,4.823030231959432e14,3.6614146924241444e14,2.8957818741807394e14,3.729624406845725e14,5.329423285247287e14,8.91799722264056e14,1.3745995473644112e14,8.370641527653878e14,1.034294057006615e14,4.704690535278329e14,1.553237094989881e14,6.923350954142419e14,1.3567169960057369e14,2.65330554750693e14,9.428531987617792e14,3.5682552095901675e14,3.616791156141945e14,8.408666048977492e14,4.4017916431504775e14,3.8428730396282975e14,6.748944891336038e14,3.058326852642208e14,1.3031421818709698e14,9.105455368852996e14,7.816822635958721e14,7.287356609568326e14,4.00125344445286e14,2.1698529722097425e14,3.4644597684984356e14,9.688058013277504e14,4.481943224548022e14,6.269329727241566e14,2.6962729052134316e14,8.131652689212114e14,6.572684274154979e14,9.194310741765759e14,9.094442805343884e14,7.899725464042361e14,7.203085112251912e14,4.274843917990199e14,8.12926042596725e14,9.939932189092999e14,1.98907266403892e14,6.148078647449888e14,7.054513238778698e14,5.078624508025571e14,4.828552451071657e14,3.855998224019271e14,4.8643675926411e14,1.6664557944139525e14,6.939965636349921e14,6.38604241023468e14,2.365820660902447e14,8.266109395301389e14,5.071812153586686e13,1.5836899213613022e14,7.153272448855841e14,5.136711887126468e14,7.36652225659235e14,9.073190223071055e14,4.1249868664946644e14,1.599486684445469e14,1.6523585021694197e14,6.574987476180452e14,3.341444638545566e14,1.2535800589479306e14,7.140725148940718e14,9.07072636303335e14,1.7904586398875344e14,7.712186280493885e14,1.2939310673396986e14,5.091917478901609e14,7.911700151717228e14,2.917694264751889e14,5.1159080346784925e14,5.927251914581676e14,3.7290888695671275e14,7.581070595286036e14,9.296159016147179e14,6.510690704399592e14,9.310175060429379e14,8.883288959093236e14,2.4091689715157416e14,2.2928083487146312e14,5.734427576458766e14,2.7668988382380166e14,8.003018784074171e14,9.360020149999512e14,9.434046904548016e14,6.39522981951222e14,1.7974565934053944e14,8.811285585492534e13,1.495291228784872e14,8.767219570006949e14,1.1344587264459416e14,5.838108728932342e14,9.298921259163899e14,2.468889496090302e14,8.720999382926645e14,6.246554840943654e14,6.801325314174049e14,3.578892923999621e14,8.354433944014359e14,8.271089137075261e13,4.847201780691641e14,9.029132916470115e14,1.4921747415357434e14,2.093547088855865e14,8.80708770555074e14,7.784339249179826e14,6.38278155093721e14,3.222291705641234e14,1.4499660941426184e14,9.454608703766371e14,4.6316400312183025e14,2.017761251863781e14,3.928832708371747e14,9.746187193641022e14,3.4404368698120394e14,4.7513892980848894e14,8.786800775285166e14,3.0529634530587256e14,8.028463498942238e14,7.168539783561312e13,7.237961690281122e14,8.539589974614375e14,3.167716812100656e14,3.2990260168882244e14,7.072308170435038e13,5.833685105996228e14,5.4061223159094475e14,7.16414794945001e14,5.3403308095186794e14,8.10787494824171e14,8.720643586594241e14,7.932762004143874e14,1.106329368447202e14,2.0487805038870388e14,4.831909916570144e14,1.1060488003948744e14,2.3325772767697394e14,4.1448726313569206e14,6.120220711661826e14,6.020104170719536e14,6.264296502252906e14,8.866855167076078e14,2.851511768213477e14,1.6021036723803729e13,2.2502853598377403e14,2.1004795291350888e14,7.402103742580904e14,6.268522742899984e13,6.154501217839404e14,8.740787419678382e14,6.269731281403486e14,3.44088205007149e14,2.816502859768263e14,1.2354423832381367e14,5.87083311949747e14,2.2653296745387284e14,4.4345398777666825e14,1.282854326990207e14,9.322941736026764e14,9.211611809693805e14,9.431709149104546e14,2.0397728594568785e13,5.860430151357632e13,3.2848681313676444e14,6.944506297565374e14,2.5440389090417603e14,6.865793081916435e14,4.311799009331302e14,1.6503312531214166e14,6.634888297588882e14,6.37339101694604e14,3.577822966710512e14,4.974784514086472e13,1.1385549909135406e14,6.159551942022452e14,8.190911571636889e14,4.4223372754516375e14,1.7982258770827197e14,3.894868669332978e14,3.93199760700942e14,4.491339296410717e14,5.63625783710516e14,5.5696609359741356e14,3.3330710351642056e14,7.52635355801132e14,4.682201117226038e14,3.9215404931110575e14,2.9579698323916494e14,1.6776342926032938e14,1.7352276971368462e14,6.356901851030182e14,9.428935706434676e14,3.623934633413761e14,3.153970893651792e14,8.935105275527321e14,8.188684882553644e14,1.7371010852571422e14,4.4997645517044094e14,5.534796232478034e13,1.7932932626440456e14,9.68065439602864e14,7.052059397673212e14,3.839640026614284e14,5.3286436213556475e14,6.74356440041536e14,5.468863810546005e14,2.0424905365263825e14,2.4298225684111806e14,4.2185383418276744e14,7.910259167820518e14,8.353789854425566e14,1.0254971505295695e14,7.9925289652111e14,9.939318492073912e14,9.766201113857685e14,6.700708613842555e14,5.077228921102068e14,6.484440972733904e14,6.937059040691009e14,5.67604420167731e14,9.717848291147916e14,8.813936842008129e14,5.4742593640293125e14,9.147846131651424e14,6.663456391329858e14,9.646027506107529e14,8.339893494585206e14,5.0639224502938975e14,7.944049334828273e13,1.2560337958478008e14,8.639557907241104e14,1.858601897099942e14,1.8015520184317856e14,7.497680772127816e14,9.082723596712305e14,6.088537846265079e14,5.798653862492268e14,2.2109902470325503e14,2.797628023883053e14,4.734207998740255e14,5.509903632241646e14,7.201541214040034e14,8.138563700224022e13,5.0701613393773294e14,6.911121167750918e14,1.965290156936317e14,7.008077381428532e14,1.1356562325789998e14,7.189065579732642e14,1.7112786188712925e14,9.240101285257135e14,1.513792114478545e14,8.677155824838954e14,1.1588393075921588e14,6.858875514542476e14,6.282826911793502e14,9.537336102270681e14,7.709324473571748e14,4.626180433168812e14,3.5468423525134306e14,3.18324696937325e14,5.838482701812748e14,7.684412115901946e14,1.618492704084463e14,8.000628475359901e14,2.246785549323349e14,3.447747476676344e14,4.809694168821108e14,3.1116997882040456e14,3.804206185977084e14,1.5563014277858656e14,8.110260374275965e14,5.846015772735405e14,3.461256982527339e14,6.217409260394894e14,3.405347662451186e13,6.801205245762945e14,4.1326770063888006e14,4.876602671866803e13,6.919385724641484e14,3.518912522850417e14,4.417324813791776e14,8.723125779259568e14,7.74423301625237e14,1.2613714382606567e14,8.178691527279764e14,8.313710474015698e14,5.096982876585572e14,2.266844230602938e13,2.2011703296873984e14,5.8498388375659125e13,3.6717484303194425e14,9.368184569050329e14,6.967843417927277e13,9.35528802532285e13,3.5839821303092025e14,9.7704270524681e13,4.540551931085564e14,8.950139874764175e14,3.67498343964074e14,6.782949255989169e14,1.1232168321006397e14],"qim":[2.6185456e-31,1.0901367e-31,1.0240115e-30,-2.7215647e-31,1.5292449e-30,-1.5909396e-30,5.7675597e-31,1.542795e-31,7.3857594e-31,9.31337e-31,5.426497e-31,-9.640524e-30,-4.254673e-29,-6.705394e-30,8.82356e-31,2.9957224e-32,5.8721355e-31,-1.475784e-31,-4.0116462e-31,1.956253e-32,-3.6796982e-31,-3.720078e-31,-3.5582266e-31,6.5962894e-31,3.541057e-31,-8.465185e-31,-2.8398227e-31,5.3801483e-31,2.8965737e-31,-8.140705e-31,1.85439e-29,-6.2773135e-29,1.6563139e-31,1.7886719e-31,1.8909957e-32,-2.5293474e-31,-2.2627258e-30,9.074356e-31,-9.753534e-31,-1.5036355e-31,-4.79722e-30,9.195743e-33,-6.9035476e-31,-2.156579e-32,-2.6307897e-31,4.108491e-31,-1.2446798e-31,2.355674e-30,-2.7018484e-31,4.3953377e-32,-3.976215e-31,-3.552888e-30,2.2498565e-30,2.212224e-31,-6.3637814e-32,1.4427921e-31,1.348765e-31,-6.047875e-31,3.417703e-31,-1.8001293e-30,7.0995547e-31,-6.0948456e-31,-1.3456286e-30,2.33632e-31,3.9259528e-33,3.1636289e-31,-2.015149e-30,-4.1606726e-28,8.56077e-31,-5.3057084e-32,4.5752215e-31,4.6170413e-30,-6.129726e-31,6.1082105e-31,7.443386e-31,-6.541614e-29,-5.877583e-31,-5.6408393e-30,-5.364543e-31,-1.2893853e-31,-4.5428047e-31,-1.6973391e-31,-4.7048536e-31,7.310752e-29,9.7267526e-32,-1.2055298e-30,5.2004566e-31,8.730506e-32,-6.622934e-31,-1.5854334e-30,-8.127426e-31,-4.050457e-31,3.482468e-29,-7.2313497e-31,-2.1274313e-31,-1.0419428e-31,-6.65948e-30,8.7614555e-30,4.805121e-31,-6.2513704e-30,-6.952066e-30,-5.449803e-31,-8.628904e-31,-9.274603e-31,-2.8940989e-30,6.854921e-28,6.135814e-30,5.24022e-30,5.619734e-30,-2.8526055e-31,1.0040447e-31,-9.269995e-31,2.4422548e-30,-1.1230531e-30,-4.2746777e-31,-3.0856292e-31,-9.3140974e-30,-1.7353306e-31,1.5315137e-31,2.9732091e-31,-1.1237748e-30,-2.1475095e-30,-2.2040927e-30,1.4917372e-30,1.47296655e-30,2.95852e-28,-5.162347e-32,-6.0955394e-28,-1.8610747e-31,-1.22726335e-29,-8.052506e-31,2.606719e-31,4.8071367e-31,-4.0174772e-29,-3.0564055e-30,-6.33401e-31,-3.4792463e-31,7.7234455e-29,7.380272e-31,-2.5939884e-30,4.175411e-31,1.005659e-31,5.0415794e-30,-8.4494534e-32,1.0256583e-30,-3.0933674e-30,4.132006e-31,-1.5538324e-30,-3.5568806e-31,5.1297055e-31,6.8981276e-31,-1.2504982e-31,1.826903e-30,8.444292e-31,4.2243275e-31,-2.2122106e-29,6.048126e-31,-1.3993998e-31,3.746426e-29,-2.2604686e-31,-4.7986305e-29,-2.2925553e-32,4.82228e-30,1.1146292e-30,-3.8758386e-31,3.2388537e-30,-3.3840982e-31,4.42933e-31,-3.977157e-31,9.981528e-31,-1.1299712e-31,2.456659e-31,3.0019182e-31,-7.1330713e-31,-2.1678392e-31,-1.0337659e-31,-4.7869694e-31,-2.8057206e-29,-1.422587e-29,-1.0388589e-30,4.908166e-31,-6.374132e-31,-9.282026e-32,-2.662802e-31,-3.4776817e-31,5.368959e-31,-1.8050821e-31,1.10298e-29,-1.1837328e-30,9.804703e-31,-2.4272769e-31,1.1180791e-30,-3.9481564e-31,1.8206923e-29,-3.3232156e-31,-9.148613e-31,5.150118e-31,-1.5757341e-30,-1.1517715e-30,9.631362e-31,-1.1104413e-33,1.1398617e-30,-4.0645745e-31,-3.83763e-31,-1.9989942e-31,-8.896387e-31,-9.966023e-32,-3.5581817e-31,1.5850118e-30,6.2615123e-31,-5.7823404e-31,-5.412711e-31,5.780011e-31,-1.2918601e-29,-9.793159e-31,-2.0344015e-31,-4.0757196e-31,2.5606513e-31,-4.8379727e-31,4.537278e-31,1.5043574e-30,6.3823964e-31,5.5568793e-30,3.5460976e-31,1.4584018e-31,4.50759e-31,-1.1276178e-31,1.4096827e-31,2.2850602e-31,-5.4147845e-31,-4.2562756e-31,-1.1356087e-28,1.0759692e-29,-4.049688e-30,-1.3436858e-31,1.0449637e-30,-3.7232288e-31,3.7322223e-29,5.431894e-31,-1.0201483e-31,-1.0296126e-31,-7.935324e-31,2.571047e-31,-2.473839e-31,2.9486896e-29,-1.8110187e-29,-1.5551278e-30,-1.1105089e-30,9.762415e-31,-5.5106315e-31,2.0411035e-31,5.082427e-30,-1.1766458e-30,-7.442784e-30,-8.655732e-32,-1.9232451e-30,-1.588128e-31,6.1631613e-30,8.247322e-32,5.6944983e-34,1.0411987e-30,3.6956387e-29,-2.250554e-31,-6.753585e-31,-1.2848924e-29,-8.2225615e-30,-2.6038026e-30,2.9918024e-31,-5.724174e-31,4.283876e-31,-1.0216285e-30,9.252714e-31,1.3212691e-30,-8.606982e-31,-2.39843e-28,2.4632764e-31,-2.2713678e-31,-1.444096e-30,-1.3761822e-31,-2.5302431e-31,-2.006239e-28,1.9819373e-30,3.9763537e-31,-6.0996806e-31,-2.3313764e-30,3.600963e-31,4.0719974e-30,7.3244174e-31,6.1959846e-31,-1.9250151e-30,-3.4173128e-31,-6.766511e-31,-5.2124128e-30,-7.2025275e-31,-6.192171e-32,3.4309588e-30,-6.444663e-30,4.713453e-31,-4.4868416e-30,2.419123e-30,-1.8732633e-30,1.9414484e-31,2.257159e-28,-7.618917e-31,3.369492e-31,3.622444e-30,3.81531e-31,1.8479452e-30,-6.0958363e-31,-6.4604426e-27,-1.2123108e-30,9.242388e-32,-8.34153e-31,3.2217176e-31,-2.541705e-31,4.2123506e-28,3.2619011e-31,-5.6223937e-31,4.7701425e-30,-5.8180256e-31,-8.28077e-28,-5.2197436e-31,-2.2786422e-31,-2.1973563e-30,2.6411912e-31,-6.3521406e-31,-9.226021e-30,3.1861067e-31,-9.828884e-28,1.9328926e-31,9.408427e-31,-1.4661338e-31,-1.0731472e-31,-4.3739124e-31,5.510056e-31,-3.3608272e-31,-2.7367098e-31,-4.064145e-31,-1.0905045e-30,-3.8529051e-31,-2.5936782e-31,5.3108835e-32,2.8998695e-30,-9.337491e-31,-3.0644806e-31,-2.3375206e-29,7.574968e-31,-1.6498747e-31,-5.913823e-31,2.7667717e-29,2.0379228e-31,7.259644e-31,-3.5400362e-29,-5.157858e-32,-7.5004904e-31,-3.0662215e-30,1.3823682e-30,6.2535506e-32,-3.285662e-30,-2.9643316e-30,6.305555e-30,-8.672624e-31,-6.621178e-30,1.3597329e-31,-7.615312e-30,1.8280685e-31,1.5605804e-30,-5.2162925e-30,6.700019e-31,-2.2914812e-31,5.080462e-31,-1.4006358e-31,-1.0816852e-28,-1.0862785e-25,6.919362e-30,3.0933517e-31,-1.235431e-30,2.2025339e-31,4.566281e-31,-7.849086e-31,-2.0852056e-28,-4.436012e-31,2.082092e-31,1.9878543e-32,2.7424806e-32,1.5752049e-30,-1.2177637e-30,-9.9881595e-31,8.9174685e-31,-6.943287e-29,-2.2421228e-29,2.326961e-31,-1.6993124e-31,-1.5221053e-29,-6.46429e-30,-4.520127e-31,-1.6761823e-30,-1.5588368e-30,-2.1570252e-30,-6.499677e-29,-2.938169e-29,1.1680511e-31,7.2181575e-30,-3.7386149e-31,6.199557e-31,5.5916456e-31,6.895381e-31,-1.907341e-31,-5.241591e-31,2.452088e-31,-2.4556843e-31,6.2976043e-30,-7.413152e-31,1.5390163e-31,5.1690372e-30,-4.66424e-31,4.0782013e-31,-2.6330692e-30,1.1398865e-31,5.7711743e-30,3.0257949e-31,-5.4195725e-31,-1.0102706e-30,1.29007855e-26,-1.7249062e-31,4.3855823e-31,-4.3912232e-31,-9.533976e-31,3.3653714e-31,-2.7116097e-31,-4.0693776e-31,-4.299846e-30,-8.675321e-30,3.202847e-32,-6.8843414e-32,2.1204017e-33,1.1655953e-30,-2.288749e-31,2.8503998e-31,-1.688109e-29,3.1518737e-29,-4.641037e-31,4.322748e-32,1.2508643e-31,-1.7653871e-30,2.5619585e-30,3.988099e-31,-3.2751882e-31,1.7619944e-30,-6.090399e-31,5.3670237e-31,-3.0241813e-29,-1.6682889e-31,-2.759212e-29,-3.1638863e-31,-5.9855364e-31,3.0768739e-31,-1.2762375e-30,-5.5584083e-31,-1.1021933e-30,5.4432267e-31,1.07292965e-30,-5.5972345e-32,1.1973725e-30,4.111962e-31,-2.3502677e-31,7.9094896e-30,-1.4426552e-31,1.7109313e-26,7.2180126e-31,-8.324167e-31,-9.93542e-30,1.5226804e-31,1.7616831e-30,-9.806535e-31,7.2269026e-31,6.779984e-31,1.8016604e-30,-5.966409e-31,5.0768054e-31,-4.1256053e-31,9.726414e-31,-1.0086009e-30,-5.7285598e-30,-2.5226828e-31,-1.0347176e-29,1.1293788e-30,1.1512377e-30,2.8485705e-31,7.900396e-31,-1.0027308e-30,-1.0264243e-29,3.9662153e-31,4.293789e-30,-7.159135e-30,4.154544e-30,-2.4665071e-31,4.0655388e-30,8.2395355e-31,-6.0653605e-30],"qre":[0.84078735,0.06902174,1.6591425,0.629038,1.3169949,1.3693506,0.3521934,2.6706142,1.4277385,1.0896368,0.7261182,5.9177074,10.998173,2.7533731,1.5717527,0.41737595,0.23734275,1.5367529,1.2652825,0.4296169,0.047581974,0.032211337,0.92177236,2.3092809,1.8620685,0.33020106,0.20900276,0.060895454,0.9857014,0.38726997,7.0815268,10.486154,1.1117803,0.32441604,1.0525287,0.2426033,3.2623088,0.22180192,1.5689145,0.12727326,2.9321537,0.0022423463,0.5432543,0.21856244,1.3270708,1.1351657,0.86784565,0.64803344,0.2556909,1.1045089,0.3093976,2.3098075,2.9700677,1.1339455,0.16523951,0.09726707,0.9513481,2.3006618,0.0113560045,1.75118,1.8534691,1.3331021,1.5057188,0.324869,0.76904047,0.71988785,3.335954,16.720478,1.7050513,1.0433794,1.7741957,5.0594335,0.7642718,0.8347464,1.0667813,15.884267,0.34047824,4.705218,2.2167184,0.29415017,0.88230926,0.6645336,0.2207412,21.192776,0.54305655,0.9621552,1.0817058,1.7319971,0.33505225,2.0426836,0.6388528,0.038119365,6.883304,0.5846877,0.7270388,0.9808492,3.7988236,3.5559492,0.76247674,3.943949,2.1971433,0.1658459,0.42568657,1.2803526,0.886784,52.896957,1.3195829,3.4838057,1.5688727,0.8654146,1.0471314,0.011266992,1.0506678,1.3853047,1.0204209,0.97729117,4.520718,0.25272837,0.044738717,0.1757696,1.3023973,1.2679242,3.731745,2.3791983,0.7176961,32.20448,1.0606523,16.308634,1.0153041,4.658178,1.4381825,0.6887929,0.32970595,10.904515,1.8176457,0.5346433,0.21087292,12.390799,0.38622892,2.5867028,1.5859127,0.52772903,1.8647336,1.1002641,1.7485355,4.2877364,0.6035118,2.3911955,0.30056214,0.83277524,1.2343884,0.37960184,1.5760485,1.223322,0.9858119,24.05127,0.4591983,0.73073685,5.478956,0.001570239,8.395207,1.2456076,2.7536664,2.1379998,0.16767184,3.7107706,0.3687867,0.9049764,0.14443347,0.114394985,0.23738766,0.5834201,0.44538352,1.343389,0.28734326,1.1730171,1.7584662,6.435717,3.1149404,1.1566962,0.5430983,0.8562709,2.4504707,1.0713643,3.0673077,0.49866664,1.0322613,1.5912566,1.2367727,0.17354915,0.6594305,3.9495995,1.1506859,11.937089,0.49204367,1.0248678,0.61081773,0.740812,0.9452911,1.6965674,0.38960987,1.8231528,0.18976973,0.73305154,0.29705015,0.8043561,0.15414724,0.2685672,3.2997994,0.6380976,0.46519774,1.2576325,0.65665156,4.651512,0.85581493,0.53988045,0.13472994,2.8699603,0.92242044,0.7822769,1.0840665,0.6739016,2.9324324,1.1555367,0.732363,0.65435284,0.31423986,1.5331887,0.76665324,2.2543156,0.9231963,29.34106,5.1907525,2.7761726,2.5220945,1.188692,0.27381763,7.3463335,1.0926521,0.8944812,1.0335985,0.75049096,0.5245072,0.17372295,11.6571865,11.440669,1.1379353,1.5220463,0.21916641,1.4774593,0.98494786,3.9797509,1.7568048,5.4532027,0.41339746,0.48773462,0.5070171,2.8056602,0.36593965,0.13791364,1.6985897,8.835738,0.19712579,1.6853915,1.8187407,2.7851324,4.289443,0.74067396,0.61254877,0.8558881,1.766235,1.2044489,2.612022,1.1806642,24.960878,5.8328824,0.2577841,0.58576256,0.59384036,0.6817997,24.126316,2.1292272,1.4084412,0.66082555,0.7822171,0.10542125,0.7666177,0.91534734,0.23210381,1.0949512,1.2005854,0.28957778,5.169817,1.1701261,1.2003139,2.0424733,7.4870243,0.09769483,2.5782373,1.811753,0.5261008,0.3239423,30.024961,5.2619877,1.1300161,2.3619876,0.22678164,1.7753408,2.1150014,66.374,0.81792265,1.2966022,0.6797277,0.6174064,0.8793998,16.362467,1.1851983,0.09270786,3.2156644,0.958079,31.41987,0.73083735,0.14562069,2.5101135,0.6495214,1.791902,3.663296,1.5829127,49.192574,1.2525848,0.20073195,0.2344849,1.0358112,0.15293497,0.4051084,0.47444704,0.8652879,0.6246831,1.997182,0.9552885,0.30933666,0.029801989,2.1513994,0.74822694,0.7587746,1.5797857,0.66820955,0.94886416,0.7032438,5.366727,0.28349695,0.2029784,6.575107,0.4062939,0.58334804,1.3489461,1.3460191,1.1094426,3.5378456,0.14853068,0.86488754,0.47967467,3.8251019,0.3421145,6.6325707,0.83153915,0.6850894,5.0791726,1.1113278,1.4128641,0.09375865,0.15743087,26.326803,680.47437,2.7711365,0.22533885,0.7395614,0.4853288,0.5828655,1.0029205,15.876009,0.54931074,0.8047791,0.62876385,1.0171719,0.65928674,0.75407803,0.94850177,1.0477443,32.995285,8.820317,0.5456264,1.3034328,5.283474,2.2045083,1.5704684,0.60464275,0.43157768,3.211349,16.229256,4.9479227,1.4030246,3.3205884,1.1623253,0.39665052,0.5780291,2.2279296,1.9000882,3.2749214,0.13541532,3.9215786,3.7038949,0.9857224,0.6867133,2.3285663,0.97882104,1.3672925,3.5980802,1.0908632,10.43111,0.5792425,1.1557705,1.0128781,772.6512,1.1039001,0.9514012,0.08834445,0.3655892,1.4136038,0.21266976,0.22056152,3.3807247,4.8704247,1.0205504,1.018404,0.41317776,0.8777112,0.48576024,0.60868776,6.256911,3.7487876,0.8030473,1.1081845,0.31498837,1.332065,0.6537936,1.0880741,0.21739027,2.125112,0.41316962,0.9498918,2.8345642,1.4709873,7.61603,1.93534,0.81036305,0.55926573,0.6342615,0.61059654,0.7740827,0.98105115,0.37295958,0.8424823,0.7107919,0.354322,0.62213236,3.3500438,0.4272593,90.00021,0.84807765,2.287217,3.5215402,0.669308,0.21622187,1.7550296,0.566742,0.124192044,1.5032666,0.51174563,0.902354,1.0949821,1.2334498,0.4333226,8.1936035,0.866756,7.214555,0.06763441,0.55433345,0.36782676,0.7075301,1.1250222,1.9303926,0.2571189,2.1846313,0.9694249,1.7351843,1.3655751,1.7877046,0.90348214,1.2981843],"re2":[4.976895562046051e-16,-1.909265762083483e-16,-8.88237859494746e-17,-9.104307871192951e-17,1.2883032785904019e-16,-4.916407424935952e-16,4.1920958425238906e-16,1.9286111536660608e-16,3.0337840206044966e-16,3.0546273158849424e-16,4.846274222509107e-16,-1.5036617652628494e-16,-1.5372236782413464e-16,-3.4076643227714055e-16,2.0772770856938176e-16,3.0158468905204755e-16,4.961562376612844e-16,8.68582919800113e-17,-4.338882260015412e-16,6.51904291013692e-17,-4.84815505351426e-17,4.982214849553013e-16,6.10453039406828e-17,-6.042464039135267e-17,-1.4332382497246228e-17,4.736197391428313e-17,2.1385737548119763e-16,4.702823388332623e-16,4.1925760177302826e-16,6.993881554144624e-17,3.155566452451795e-16,-6.402506447377552e-17,2.5424591527801173e-16,-4.489001132167421e-16,3.5027040423578843e-16,-1.8469256498564582e-16,-1.5528474022649317e-17,4.988983571473338e-16,-6.100415017770344e-17,-3.128899352505841e-16,-3.66594500414726e-16,2.390186985545558e-16,-1.6695146319881762e-16,1.0789467651574477e-16,-2.842399988669301e-16,-4.4165929467234435e-17,-1.6259863344628502e-16,2.592172791890862e-16,-3.94823687905915e-16,2.9924543101926836e-16,1.8197807875823472e-17,-4.109485242037284e-16,3.3462121382646387e-16,3.0306577035864416e-16,2.0706988898418278e-16,-4.476693312121437e-16,-1.4249338713429272e-16,-1.908199502964283e-16,-1.8099438035062787e-16,-3.0858644469647403e-16,2.246057416581996e-16,-1.058499738358918e-16,-3.634927079464492e-16,-2.628725313112722e-16,3.570267581033434e-16,6.740566311160666e-18,-1.0862765159036763e-18,-4.652945099128714e-16,3.410175246736752e-16,3.1964493685609377e-16,-1.0114144254709134e-16,1.2508219076164092e-16,-2.76608391549237e-16,3.2801188461582734e-17,3.772293323566803e-16,-2.0178917034180635e-16,-4.842381684690763e-16,-2.5486491312393067e-16,6.730627509353828e-17,1.7541786069806468e-16,9.454356179692496e-17,4.694254944247441e-16,1.354855600134248e-16,4.616146902292406e-17,-3.6921403646544674e-16,-4.755381848847669e-16,-9.346333737810732e-18,1.247176249831317e-16,-4.922560218523162e-16,-3.1568571408356825e-18,-2.787135623032434e-16,-1.3677918516965082e-16,3.295296979846943e-16,-1.1894499474863564e-16,2.270388895925461e-16,-1.9030553959251207e-17,-4.558535912546569e-16,4.1667536110318524e-16,-9.737258675497306e-17,-1.2376957485772387e-16,-4.0916202637346147e-16,-5.302486584892185e-17,-3.970516564598261e-16,-2.945840009039479e-16,-1.5222460206237246e-16,1.9111538901708945e-16,4.1907141267056737e-16,5.636343511194268e-17,3.04230581869611e-16,7.96772872871846e-17,1.6439689668704525e-16,4.44281455574733e-16,2.3523159801000004e-16,-3.5916900220169102e-16,1.3610624710979552e-16,-1.313737313996245e-16,-3.929434508727845e-16,-6.322034842609648e-17,-2.3284348940348e-16,-4.849829182712062e-16,-3.539894226553306e-16,-4.962232472908638e-16,5.3857705701751995e-18,9.479536844811933e-17,2.3360191292651534e-16,2.401404824427227e-16,1.7333808130378061e-16,-2.1698772261901812e-16,7.149066113245517e-17,-3.6852471454530946e-16,-4.3230427929998156e-16,1.2588212577378991e-16,3.0179288530677863e-16,-2.9820605582927996e-16,-3.3828018041972924e-16,-3.517174849770245e-16,-4.5602163583109964e-17,4.602494239575762e-16,1.3372248342609399e-17,-4.3231364281164956e-16,8.855543896500151e-17,-1.398522311429906e-16,3.4675119964035796e-16,1.3774538377137592e-16,-1.9895860238488867e-17,-6.668706371116575e-17,3.9259662553674424e-16,3.980713197683659e-17,-2.923494302609192e-16,1.4198846962232184e-16,-5.650383941041426e-17,4.3414591499433865e-16,4.056722877443133e-16,2.6346374317701183e-16,4.1442258884244786e-16,-1.3268442317051719e-17,8.952720818207636e-17,-4.898988116650993e-16,4.686108188051268e-16,1.2562964688848498e-16,-4.58712271395473e-16,3.7501333398474237e-16,3.9251470704609326e-16,4.069613556411952e-16,3.8519816861377917e-16,2.781958877394411e-16,-3.860618474987434e-16,4.9984264509746906e-17,3.3346042638660273e-16,-2.830787872346101e-16,-2.3071183268445054e-16,1.2384668007732576e-16,2.8634609970371027e-16,6.529390330235793e-17,7.448467582917271e-17,2.6154332430526706e-16,1.174683929568697e-16,-3.6453053656605375e-16,-7.300987149512083e-17,-1.9059134309579643e-16,-2.515737713930322e-16,-4.696969034889011e-17,-1.5989575168902138e-16,-3.9665130020699593e-16,-8.513449355170546e-17,4.821048962505161e-17,2.343059020166036e-16,3.198351465714815e-16,-2.0547447462062698e-16,1.972164149298211e-16,1.0915752605412597e-16,1.666613557919342e-16,1.6993919250456702e-16,8.714266441904574e-17,-4.47953096024348e-16,-4.984778964538993e-16,-1.291550512433657e-16,-3.9898702567957334e-16,-3.461516305892446e-16,1.45834400500007e-16,1.3828413763795224e-16,4.745770381606764e-16,-8.425014167115929e-17,-3.036243414831075e-16,1.3281509444905723e-16,-4.336133197591967e-16,-1.0081358296591491e-16,-1.4767026824714815e-16,2.2959400130373693e-16,5.673656525972362e-17,-2.0609390211942761e-16,9.684490436196202e-17,-7.061888225359787e-18,-1.5445734103548992e-16,-4.866908911136923e-16,6.087156349312624e-17,1.9204442898882404e-16,-1.1736980504590101e-16,-4.233278934692758e-16,1.6983081915473366e-20,9.579897428239846e-17,3.063256840154998e-16,2.340986764037e-16,2.5983465820744314e-16,1.486814272683167e-16,3.958523013776595e-16,-2.5002114593010227e-16,9.029329850878274e-17,-2.40773237525599e-16,-2.5928376713347704e-16,-3.7764822073543713e-16,-1.1867781601871322e-16,2.9716572305453997e-16,-1.8649939773701433e-16,-1.5193810141943431e-16,4.87822045411026e-16,3.871606255254178e-16,4.134743346353603e-16,2.960838793166696e-16,-3.4932636163748223e-16,-3.2223017065747763e-16,-1.8156708553233615e-16,1.2562547528780314e-16,-1.8390453235761018e-16,1.793535011114364e-16,-9.950122073515931e-17,-9.969647812985195e-17,-8.430753751419627e-17,4.243261942118692e-16,1.3140202556770933e-16,-1.0064302583993634e-16,2.0818392700615448e-16,-4.508659327584978e-16,-2.139139992544499e-16,-1.7509583902656367e-16,-4.0148926644293327e-16,-1.8201652057116456e-16,4.121130992535537e-16,-8.435557550525364e-18,-1.7196823342814528e-16,2.1919530456429087e-16,4.4821853898922215e-16,-1.6603311500979138e-16,9.136328711514156e-17,-3.036089478078029e-16,-4.803610754683239e-16,-5.037849370897304e-17,-3.057221691938479e-16,-1.5510150852508966e-16,-2.1769515020349875e-16,1.3248634045042486e-16,3.4980147674787715e-16,1.2625875064096963e-16,-1.8153609195481305e-16,-3.5702007209695787e-16,-5.416967818583509e-17,4.420531707451067e-16,-3.3062820569115746e-16,1.7915669471086526e-16,-1.7732442351266053e-16,-2.8963484824193566e-16,1.9006944154200372e-16,1.2534744486709836e-16,-3.7322023215377357e-16,-2.3918965202020204e-16,3.100540986569814e-16,4.3619173847332003e-16,3.1428490772358473e-16,1.9836602463413542e-16,-4.918359483667019e-16,-2.8822780375894396e-16,-2.6753537581162925e-16,-1.470951651633088e-16,-3.087772180539543e-16,2.2102790398603847e-16,3.8559104406705457e-16,-1.1081946110909016e-16,-3.234727724487826e-17,-4.337623231151021e-16,4.3293970345625023e-16,-3.3026981142831395e-16,3.5895565472278463e-16,2.353765371613511e-16,-7.688394220117935e-19,-8.66700286074683e-18,2.1880239943637218e-16,-4.4007925459814635e-16,4.113999767118289e-16,1.558166491298354e-16,-2.895299633222568e-16,-2.5748446190110585e-16,-3.043283986286765e-16,3.2834933434397343e-17,3.2467899651916177e-16,-1.303823414402293e-16,4.658328040939712e-16,7.431850322229728e-18,4.557505646588008e-16,1.8422563790607605e-16,-2.2655708939937857e-16,-2.754815849220216e-16,-7.565807763664967e-17,3.4059057354631845e-16,-3.1309425456706865e-16,2.2804212128870286e-16,8.216167211441172e-17,-4.262015446717228e-16,1.4332237978992456e-16,-3.5800428335195436e-16,2.7261708755131847e-16,3.9405170934842757e-16,-6.106224955103322e-17,3.8772270407537004e-16,2.833786867180526e-16,-3.7647941351591077e-16,3.521204249432741e-16,-6.142450921368317e-17,-1.0011149886175653e-16,-2.3883412176201325e-16,-2.187182182074734e-17,-1.9767855351796175e-16,-1.533772374319891e-16,-3.375201486258954e-18,1.682305540285794e-17,-4.3513919044193324e-17,-2.7325454702140063e-16,4.546400046489676e-16,-3.374819185257964e-16,-9.794411758508138e-17,3.871298361088769e-16,-2.92322829910865e-16,-1.4564527074858312e-16,-4.3303107359763907e-16,-2.2365625056536444e-16,-3.9139736888336876e-16,-3.8202917569526144e-16,4.824038538797522e-16,-2.3819675496384655e-16,-3.740675287691474e-16,-2.282446830164173e-16,1.325123622900807e-16,-2.6629548258801107e-16,-2.3592538642079175e-16,-3.7420310297834275e-16,-1.6162826607971584e-16,4.084129514128851e-16,-7.708138610276671e-17,-8.002007025631886e-17,4.79790480482982e-16,8.461164863797377e-17,1.340894935541259e-16,4.549438282125419e-16,-9.653423423378782e-17,-1.9187039534613706e-16,2.2664619137313817e-16,1.6212013596290772e-16,-2.6976764247945784e-16,-2.2517612915872446e-16,-2.1167389447176388e-16,-4.984686797968905e-16,-4.852264098425138e-16,-3.633798048222408e-16,-4.026794787148548e-17,-1.1027221667475309e-16,2.3600116901150845e-17,3.344257012546454e-16,4.375552757558487e-17,6.698217430881039e-17,7.877611192702447e-17,-5.0368403153798215e-17,-1.2353164629656933e-16,1.725106354403532e-16,-3.01472037692016e-16,-4.245880591711543e-16,-7.264095864230304e-17,-3.900740055242104e-17,-3.664061320052422e-16,-3.8634475911066613e-16,-3.147915662302452e-16,-1.60338130202805e-16,-4.4202103915137094e-16,-8.92825145260556e-18,4.0068555600150114e-16,-2.5113941072522387e-16,-2.4069008127403147e-16,-1.1841734733760504e-16,1.8608648682942068e-16,8.309523690489041e-17,-1.0433309904061808e-16,4.2944645301433667e-16,1.2263679837092782e-18,3.9516440227906165e-16,-3.157676913332478e-16,-3.2261575141179535e-16,2.779377061922314e-16,-4.710846033003944e-16,6.648495438718084e-17,-8.781890741044665e-17,8.691875097909734e-17,5.799998266687954e-17,-1.2886325338168158e-16,-2.2219197056701903e-16,-2.0012987672698867e-16,2.050019032486949e-17,-2.0844984699985468e-16,-7.634643024273871e-17,2.1834787650857823e-16,-4.955088077083476e-16,2.9521027977360675e-16,4.946066244032165e-16,1.5742074166997443e-16,-1.6604884733862614e-16,-3.4067011180631423e-16,4.1566455884645195e-16,1.6881347553337986e-17,-7.246553638118169e-17,3.202241055451694e-16,-1.249251841136505e-16,-1.8437909843938263e-16,-2.838594256602234e-16,2.360484874578854e-16,-4.7650357702288026e-17,2.376535968790896e-16,-3.3234122397742507e-16,-4.4033743168760623e-16,3.0984867497986614e-16,1.797998898779149e-16,-3.2874584555663123e-16,3.0249035476761277e-16,-4.790512165911705e-16,2.8495901956590244e-16,-3.6804243162500097e-16,1.4136185142701107e-16,-2.8001676995945635e-16,-3.35973630669053e-17,-2.1793543029783082e-16,3.781146275649558e-16,-4.783272952882566e-16,-3.4517896628504713e-16,-4.59590451051856e-16,4.46730724382002e-16,2.5579068766407e-16,3.1270066780162246e-16,2.5213593887706146e-16,2.1292657846595359e-16,-2.6171232793459653e-16,3.0016692327333293e-16,4.663912107426562e-17,3.2629641026486257e-16,3.37225348224544e-16,2.219913027674454e-17,-2.857611710554872e-16,1.1710793844095232e-17,4.823310644855017e-16,-8.531985701226752e-17,3.919061857638883e-16,-1.0654271796359053e-17,4.640081143982985e-16,-2.4596439651038894e-16,8.36655122775961e-17,-4.799439158677684e-16,2.1120153663962824e-16,4.202442206583426e-16,-5.74212138951742e-17,-4.656038191684604e-16,-1.4842405187418418e-16,4.239248650640083e-16,8.94972448342176e-18,3.0054958080721395e-16,-5.206740933997985e-17,-3.2486368600663276e-16,-1.1347777439360408e-16,-3.121749758201813e-16,3.5194466257187963e-16,-4.4364256219084766e-16,4.786040650432761e-16,-2.0561841593687603e-16,3.4554768861848968e-16,3.6512495648296966e-16,-2.0340971167199418e-16],"im2":[7.806011388632601e14,8.578197335152048e14,1.029481696082798e14,7.255955375142544e14,4.038495123461189e14,5.179209222071619e14,7.288749060690792e14,2.879906610846403e14,5.125398622363193e14,7.603828388859968e14,6.135371248480518e14,7.507809580526403e13,3.5389854029619586e13,1.2408823536410606e14,4.168296449378044e14,5.560706258540203e14,9.948457850470519e14,4.9389578309074575e14,6.403932680116691e14,9.967170770105382e14,7.723613810085634e14,6.821652883324939e14,8.423347223977771e14,3.288373849313253e14,4.1804897352458406e14,3.6547037160850856e14,8.469435749590829e14,4.485985491135581e14,5.51530701520103e14,5.650421256099668e14,1.3155819406496183e14,1.8195120139394395e13,8.738091416752208e14,6.322803164238772e14,5.570996674555717e14,8.906356804410175e14,8.488009656118789e13,1.602152098120748e14,2.5511145977644478e14,7.029833881724945e14,1.982065576549641e14,9.937829142533534e14,5.72470507189341e14,5.0787790574844406e14,3.605135493130074e14,8.489615460842515e14,8.974229443614348e14,1.7862117120796194e14,9.013671677808564e14,8.396656101174895e14,7.688286100273366e14,1.900891685763204e14,3.051219442709336e14,4.317221956491055e14,8.406094791810205e14,9.19821758494265e14,4.3154027801377956e14,1.8065136126008684e14,7.80292189026538e14,3.946748108613584e14,4.849722695442582e14,6.139056619698132e14,6.55049292572614e14,9.474051059541482e14,7.287909154237924e14,9.634362979511866e14,2.377373602950157e14,1.987656741570276e13,5.73662936108777e14,5.715817533485186e14,4.0003523280054444e14,1.8301548443522175e14,7.37545447412504e14,8.15030050120464e14,8.987927547985762e14,4.633921846968248e13,5.942056218201568e14,1.8682567312573928e14,2.1491314721655975e14,4.615163542075008e14,6.715301431638208e14,7.227313255242052e14,7.736402298173422e14,1.5858881395544256e13,4.468172740271432e14,7.742270133110088e14,8.386659137169582e14,3.997244923447989e14,8.3473814073776e14,2.4915972249396544e14,5.0843282921743625e14,5.5427914454317194e14,6.350238841667844e13,5.285514773684379e14,6.666891535626159e14,8.859531489376722e14,2.252373154379509e14,2.0672483596577994e14,3.3350416007433694e14,1.496182587929257e14,1.4242158358279388e14,6.06233383403274e14,7.6130451035635e14,4.774482886705846e14,1.802802938008865e14,1.4327256615717654e13,1.1415206551848844e14,1.2636961178831252e14,1.692506526591564e14,4.648671945394899e14,9.355948247409436e14,4.483549284870368e14,2.4654263680730494e14,1.3511600446800564e14,6.495078288289395e14,5.2512041454844506e14,1.760013308290108e14,9.50942867402114e14,9.111070391081639e14,8.603448854059335e14,2.0767380004498316e14,3.255554779124715e14,1.729528475214308e14,3.486207003500197e14,2.822549525390848e14,2.7694192752405812e13,6.549122005771431e14,6.505889433786716e12,3.859419775039712e14,1.0095778296499169e14,4.868731329817855e14,8.660675047273186e14,6.574431232056361e14,9.158791531597433e13,2.6176081395645834e14,2.42417809015106e14,8.381484514538966e14,7.380140982260508e13,3.8585816726585056e14,3.164253977559867e14,5.911467038487194e14,9.593835578680796e14,2.118638666674999e14,7.661624967142334e14,3.261331765855362e14,2.2353264395710416e14,4.853871301171425e14,2.0536493801895928e14,9.637069604433969e14,3.5364881206662556e14,5.26017391371822e14,3.209629314444824e14,4.935001806673601e14,7.010438209431084e14,8.782696324652412e14,3.5104595896186754e13,8.733507784067425e14,9.935934281264889e14,7.020989787193266e13,6.136104336901205e14,7.92281533657424e13,7.990759908540092e14,1.7297301516652953e14,4.279940184341212e14,8.704550661151122e14,2.1955223765535016e14,8.33693724677477e14,4.120525674098037e14,8.737460451224438e14,3.855994253937076e14,9.828288913538658e14,5.556366778270961e14,6.025780997745636e14,3.0165858556792656e14,8.60008056264924e14,8.105069032083288e14,5.43476941760472e14,8.606446923202638e13,4.307777018879277e13,5.6283651838483175e14,5.2516196123024306e14,7.847509422186856e14,4.0142753559131325e14,6.107548271882246e14,1.3006394798513377e14,9.628471113717072e14,7.724892737070145e14,8.187652494995423e13,5.504174776842439e14,5.358959860673185e14,4.7178158953717475e14,2.218409045871913e14,6.699554609415198e14,7.350249309322677e13,9.802036774508326e14,3.572572487566852e14,4.740827689126461e14,5.034508591288454e14,5.637864752278391e14,5.256494304128618e14,3.5281433741761656e14,4.591300142947878e14,5.450258380180105e14,6.417952682048041e14,5.228871695027322e14,8.607321252602925e14,8.801435348572781e14,9.879484541065165e14,2.857304641900055e14,5.5920213141948206e14,7.774739785549439e14,6.686107787420778e14,6.703390083485191e14,8.26155669061045e13,7.885986576335511e14,5.66482245282943e14,9.672253320964905e14,3.172676619029433e14,8.474250726313892e14,9.31557183194263e14,3.6909669572087956e14,3.219836493161704e14,1.181428698199094e14,8.384033139571651e14,6.119838646334079e14,9.580961725418601e14,8.58030201918552e14,5.303752189227998e14,8.573216886636574e14,4.078537362104163e14,9.851038781296052e14,2.692378814138696e13,1.387676477622417e14,1.539833615106564e14,3.223218092617581e14,8.362076153877122e14,7.264224522959559e14,8.368907477799958e13,6.45632185201602e14,5.677731849046195e14,4.6715940030285006e14,5.137967335913374e14,9.274167492999138e14,9.592606226921689e14,5.953379377123136e13,5.5818787367639234e13,2.079046889382894e14,5.430918478052441e14,2.3141374347779166e14,1.0719009286071134e14,7.262590718840689e14,1.2907119162381631e14,4.193136602160676e14,1.663827654991864e14,9.978258528989571e14,3.279420326759156e14,3.2589797584732394e14,2.3434723734894325e14,9.131135725715494e14,9.089601635787971e14,4.203914379218857e14,1.0265952880039486e14,9.082823055268488e14,4.575901839846354e14,7.114433757959792e13,1.8282498734349672e14,1.844458555493911e14,3.939242652470691e14,8.351837599893705e14,6.925264973706274e14,2.111320890766184e14,6.294222699038264e14,3.5589894985024206e14,5.514430278959026e14,3.729906749319478e13,1.5229672989889988e14,9.345685235113449e14,3.914228283258847e14,9.656513702690324e14,4.0582278756553894e14,3.3171324026220918e13,4.395970609991877e14,6.698218311625181e14,9.677637349974056e14,2.2978999662278422e14,8.358167786567112e14,1.9505044265407456e14,9.578024453905116e14,4.8877215863315994e14,5.331844314078128e14,7.745322305077614e14,8.525824785056628e14,1.6869068490810178e14,5.338360383174606e14,5.666288853467778e14,1.752234893997251e14,1.1158551024336327e14,8.466251102577761e14,1.8800448564796256e14,4.9836444325665694e14,2.8362907963809725e14,6.462715733568925e14,2.9332553584034305e13,1.4793532701826584e14,5.648398866593099e14,1.364228958399013e14,6.393666063425255e14,5.325517798497866e14,2.1898991220244834e14,3.039987466710303e12,4.803428277617139e14,7.516713636924462e14,5.0614930127942456e14,7.695723922647651e14,9.991815967821068e14,1.865833266324135e13,6.773941266091525e14,7.732396457943164e14,2.2508446687114438e14,8.913242027259236e14,1.0081890790810898e13,4.514036180966572e14,4.856664568584487e14,2.3240722693003456e14,8.323240226842519e14,3.9980690118632775e14,1.457794005016141e14,5.1221239683100594e14,1.7727561907965094e13,6.333113703271129e14,5.511476200315406e14,8.737365973900159e14,4.664856045823408e14,7.232151127481099e14,5.757909139850406e14,8.736217735586129e14,7.073046411646312e14,9.637052784351529e14,3.1365676582082656e14,9.281860891776835e14,9.218149417277632e14,5.37582813120736e14,1.0459636578851572e14,2.807276258281971e14,9.755339431402975e14,3.967957523335686e13,9.210435416093238e14,9.211842636799125e14,8.91544566969753e14,6.4115093885580234e13,9.93486223304406e14,6.086570801923415e14,8.928878102176373e13,5.575593730731173e14,7.601876843377181e14,9.510047995296067e13,6.926307416215581e14,8.302918980167869e14,2.665947133257208e14,1.3733007785855156e14,6.7759444752616086e13,6.848116445093885e14,1.8155088062614234e14,7.436220806451185e14,1.0351631760823188e14,5.1853228788112794e14,2.4089283615343816e14,1.3062930948630103e14,5.734933879992154e14,2.5323190678773988e14,5.3059474842696906e14,7.232094499939995e14,2.3396506220634715e13,1.2037061664169624e12,1.595856804330761e14,7.980097177653728e14,5.26645747738994e14,8.101718691187619e14,7.705619132491771e14,5.619845148621289e14,3.5082249198635117e13,6.067733450469158e14,9.35207383036272e14,7.446676455912554e14,3.8553372326202506e14,4.486621286935581e14,2.2247489029877178e14,1.829440586883485e14,6.067226817259528e14,2.857661569437253e13,4.108621819439484e13,5.780458593050782e14,6.855055938605204e14,1.5498674885306697e14,7.879766028605528e13,2.8652372023717256e14,9.153829073716512e13,4.1552039460417856e14,3.0145134482152125e14,4.345275863060871e13,7.760105158448605e13,3.797969092652667e14,2.030834220836485e14,4.7051059983669575e14,5.1493453060457106e14,4.203633814848289e14,1.893479338870542e14,4.163101120527963e14,2.550836724038955e14,7.572977495436425e14,2.038089726093869e14,2.683477582287902e14,9.907658789214451e14,9.757651863145216e14,2.1804097628926112e14,6.624746420368369e14,5.073573173222028e14,1.5775201195629197e14,8.908401842882998e14,8.44966298478953e13,9.450720321693836e14,7.91493257206189e14,6.578734957809314e14,1.248432321343418e12,7.55493526754823e14,5.3225942677476625e14,8.992131900511551e14,3.435642705914251e14,6.111725817641219e14,8.739380513990334e14,8.168025012095501e14,2.21777328638313e14,1.8648729484620353e14,5.965935559871958e14,5.693864335177494e14,5.351184216738585e14,3.187413116552962e14,9.745976743922798e14,9.052101267693144e14,1.1509739437876853e14,2.1709856023027883e13,6.31365206469785e14,6.236435694730789e14,6.239246330382358e14,5.2610628642145044e14,1.7370256648019534e14,6.607147435996629e14,7.871918595752665e14,4.348053745133479e14,3.6638513901073244e14,9.134888621327358e14,4.0882452773505664e13,4.662770012517502e14,8.249477539294847e13,4.9279897326606956e14,9.513420986100728e14,8.271882374210531e14,5.592082366703504e14,5.2133389838445444e14,7.542453385358252e14,7.832835305677404e14,4.339592694332737e14,9.496493231209214e14,3.1609609874166556e14,9.730548756076614e14,7.730982227224294e14,9.288534546319838e13,8.903741323891134e14,1.7292195960473267e12,9.563111082946722e14,2.5559515530469056e14,9.828816610862402e13,9.289309550855348e14,1.5749321463363675e14,3.875265563354153e14,7.291990011882444e14,3.926662745217087e14,4.602899899026145e14,6.876292145241221e14,4.895334570632943e14,7.96645495413877e14,6.278514846560705e14,2.9109292383158844e14,9.981800815382958e13,9.591753555234109e14,7.064861134070833e13,3.351613939606859e14,3.9708414737810994e14,1.5903789825506497e14,5.189529688262031e14,8.327110626409161e14,3.6095470038840945e13,3.6385063878294656e14,1.640543154336971e14,1.0078581233026095e14,2.6167547823079297e14,6.554118115907618e14,2.055699535193727e14,7.507563169057006e14,8.652214539405578e13]}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/data.json b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/data.json
new file mode 100644
index 000000000000..57af2b1905f8
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/data.json
@@ -0,0 +1 @@
+{"re1":[-40.55393847333648,-48.84069461702107,-45.11450565143631,-48.18120154949448,-49.87397032815441,-47.2091588203078,-47.87146966455696,-40.312317927951725,-45.03513794452277,-46.444400689982245,-40.278939809637855,-43.03514635144039,-40.77650519275591,-47.2470087638241,-41.117932096401454,-42.55665402543124,-44.528954291235166,-45.96425076315253,-40.824049229038735,-48.07669312507409,-48.30017381795949,-43.71917445487506,-49.15863962268969,-47.97925307962411,-41.21313663214161,-45.084136642935235,-44.12945781587128,-40.89589929706147,-42.02207093315426,-45.884199793472874,-40.110922617367166,-49.51420822811689,-40.02194494244003,-49.863432733215625,-46.39559100603983,-45.37261091514439,-44.088622690937704,-43.359223264756196,-47.28599524166585,-44.97296628793783,-40.24911792469718,-47.49085216863547,-46.76667203737999,-49.20535803018773,-46.3349662268169,-42.32736087273693,-43.90885871968999,-46.93106444807145,-46.68651692517637,-49.528046422386275,-46.554338283134655,-46.25458597988778,-40.2535435139546,-48.713663614562584,-41.74215885224017,-49.62546736643815,-45.1979469566879,-45.70945594837021,-40.65187565171852,-43.97318557224234,-43.9989231028506,-44.49271359241597,-45.813390134500025,-40.29822632080797,-46.749083217460424,-45.33037745547852,-48.27158823732272,-46.28241091998951,-42.79430668730132,-45.18515938595731,-41.55363851585801,-47.34945032346376,-47.45925097918044,-44.817784034196755,-48.4900480027904,-47.279967322344895,-45.49437720266367,-46.37792001042766,-43.26714463588762,-46.352445705131124,-40.44838898853641,-48.32550967384418,-43.47528963565003,-44.63397732595481,-49.47428393606819,-40.854795285700675,-44.252082400856665,-40.47163178636849,-49.1982843646493,-44.738596180972,-45.99425559522904,-44.992954147241875,-45.321196165357954,-42.43692377150514,-48.83135359865825,-45.84495609508967,-42.29196308857751,-44.538812465748606,-43.766868482919506,-42.895270705109475,-41.53663750679085,-49.620792858564386,-45.27582098004889,-47.99537782082902,-47.46338260973143,-41.2800913301724,-42.28250717592189,-49.83686500917675,-40.03243062339561,-44.59506325848548,-47.05241622898099,-49.58177484974169,-46.84423986414549,-45.449356099742886,-45.423721142776216,-41.35335569994968,-43.9240448801499,-47.96790226378849,-44.42785179097742,-41.94200496417795,-43.6615118719686,-45.55992067455652,-42.19423406989155,-47.56517278129911,-40.28394713450173,-44.660917214429034,-49.452716100552365,-42.06575353834106,-48.79259758336742,-47.26833076593214,-46.00589723505739,-47.26143060538929,-49.394377872355356,-44.72740585256923,-44.09038108804731,-43.07914022185391,-49.465530280849975,-41.00651764163804,-47.97589791448313,-44.051147411290046,-44.876790101219555,-46.88963388092783,-46.361179414671874,-46.43214506204625,-45.806295506671795,-44.49621271364587,-49.812106714439125,-44.90544009531575,-40.88118206655975,-47.28283854523074,-42.359888359782474,-43.02395123566524,-44.71985607066345,-48.738382893182134,-42.72071804839749,-44.81308660661796,-49.93678041208627,-46.49293630363326,-49.96003030434431,-43.28520736720318,-46.99979021613982,-41.75907289582082,-45.15238071463652,-44.93959430437889,-40.289943310504,-41.25098928330286,-47.720590454823466,-43.016648027835984,-49.52406146183998,-49.49021290059514,-48.900400676287866,-45.34451610873445,-44.56036417355199,-42.92195369491956,-43.90225617781872,-49.14890681791828,-42.26657013258534,-47.328499552688506,-41.24000295669204,-45.119095361822225,-44.478038377570186,-41.38492931572338,-41.19395369179737,-40.933780096689986,-42.843971405473894,-42.47074963166183,-42.79427438299821,-48.62716655780207,-41.93164054142285,-41.66637511216342,-48.052391173268994,-43.2620147733011,-48.95369688974716,-47.85814987359756,-45.78968253751978,-49.198663962980255,-44.27731730767296,-49.336417785749774,-43.81826147678415,-40.03843902416473,-42.0524884148297,-43.18043670175637,-42.159776024995246,-45.66930643929443,-42.81689168759239,-46.02635587149081,-49.44566864973771,-46.58334677060653,-41.42548533700144,-42.16824287067136,-45.86489307950537,-48.152729073416126,-43.63895332929373,-40.558527537762544,-41.80339547174702,-45.98706548972547,-48.78097946211296,-47.08552364504707,-45.643711530758395,-42.10373581362119,-42.14247807629433,-42.37850050961821,-41.975181891461006,-48.33370669051389,-48.33591330450258,-47.373254371506384,-47.68661009541524,-45.26265615061733,-48.07317712911132,-49.61397576974918,-44.50007914102146,-42.42355679380183,-49.452250441209365,-48.47775768215971,-42.878452133964224,-41.86290367319353,-49.86541827211328,-45.60157766916822,-44.45167688129182,-46.8628203698877,-42.149197097109024,-40.7989927523828,-49.092939466341996,-42.338876276873016,-43.44061427618227,-45.682404771455325,-42.392391915016546,-48.29975114403272,-45.99364707936013,-48.6430949039718,-45.279929530803386,-44.36691525913541,-42.596847057326556,-45.11653182542018,-41.956715951298946,-48.43161466332179,-47.65942034677879,-49.604103950063106,-45.50154635899456,-49.46927290752597,-42.141550021303615,-49.77296567018866,-48.53436837376214,-45.24352956065255,-40.404871461357445,-41.08391126158876,-49.03386848256584,-41.82194403411499,-49.255744306178954,-43.36386097115509,-47.180080542343724,-48.67275569149778,-43.25459579268484,-44.72243031989453,-41.061688822692375,-46.27265383109511,-49.682482895273935,-44.61027551207469,-48.52992255270245,-47.16420082387923,-40.261070197480436,-44.792244332139525,-40.887130930451505,-47.017367610359074,-47.557709343546065,-44.46748128588042,-42.10529382813966,-46.4623046171524,-44.37021276507691,-43.19846303794938,-45.73627111660453,-43.942650847374225,-45.48506803393086,-45.86610340489947,-49.99175643232694,-47.33984242248731,-43.066206843229764,-49.88365612952649,-44.00137829558274,-42.70229020559388,-48.220404196416254,-49.428674054275675,-48.28478810514188,-40.665949935745346,-41.734860981564665,-41.24080498375828,-43.27064328550714,-45.73805641212175,-42.280029636565075,-48.10163605021518,-44.18217104398102,-41.74462527043729,-45.81965514157817,-47.94539900215661,-41.90206979852671,-46.5792924756168,-41.135046087823994,-48.16828393669473,-40.678759535140706,-47.193871230060246,-46.19410080533692,-48.34266201818026,-41.71964310742121,-46.19905004841527,-42.131801616949495,-41.266290301998986,-45.31396938239357,-44.76912123486623,-45.29500944998346,-48.69819922579675,-49.78721755511884,-43.6945762657284,-49.827685107220226,-45.88122620165372,-44.96034163226158,-46.742795836475196,-42.88965044604857,-49.10020829888405,-45.75819998368597,-46.08206020216127,-41.43412533142466,-45.56334835862197,-40.1914229585707,-46.54042032117902,-42.69771630643824,-42.687327295884394,-47.387267256243035,-48.98811423376549,-42.9432889770922,-47.450019865037845,-44.865085192141066,-40.64421201137057,-44.63381431481734,-44.508119013529225,-49.39129979315875,-46.649857701699986,-45.74738487902821,-42.38863874066742,-45.3554195429217,-46.047928731251766,-46.636395136233546,-45.02963225710117,-45.91072036956184,-46.74866453477244,-41.08522259918405,-44.48341445219627,-48.45920805115357,-44.172216719667006,-43.54754505656478,-46.59538492541047,-46.10222790060905,-48.265168069626206,-42.52560929668733,-41.39636296929157,-45.34896427689084,-47.65965214645801,-40.43241062407805,-44.226687788319104,-49.75534337449319,-48.24615726633365,-47.82138937289399,-42.23202135530602,-41.043404122917046,-43.55360799338211,-47.21499579569025,-43.411804068314986,-44.57594255782312,-48.47721422009215,-44.8456161000487,-46.87570069515594,-47.932311313886466,-40.64356115933661,-45.81748108096688,-42.21845254702286,-49.57700698670605,-48.135188745476405,-47.1180486637082,-47.19694222376227,-43.751247839443415,-48.40613760505659,-40.14404211374438,-48.87858997008348,-41.12246978321507,-44.00639196928881,-40.046693032610804,-44.46282975760628,-46.93024850153671,-43.63139376283562,-48.60911828157244,-44.958083079920925,-41.577850555002556,-40.68311411553161,-43.51121224174013,-47.90317129381232,-48.92513694178733,-42.42162906662993,-46.92885762201203,-47.1621640664825,-49.79831182658883,-43.314140795116195,-48.58084870230457,-44.74769387441998,-42.25332418579883,-40.463156080737534,-45.6044283781674,-49.52407002441599,-43.94221943069272,-42.649313343611745,-43.55243503884559,-46.28727990602281,-45.15688859668744,-44.434155472331994,-45.96603666771767,-40.88815681988607,-44.238717355672264,-40.82465587500527,-41.06896986060871,-46.33203596850985,-44.34384582477434,-48.25261433391038,-44.56787600473284,-47.261321056553484,-45.70187898436241,-43.37615024758046,-43.86018512813925,-49.55127441987569,-44.47619071266746,-47.86865908924682,-47.0765490823763,-45.42679107012508,-43.884732931058046,-46.226249007214584,-40.03575287661338,-41.31021455038606,-48.95349195257816,-44.8889865172315,-47.00146090037126,-44.20330807241006,-46.098824022773776,-43.63390031862745,-49.07891196475066,-41.3554612119644,-45.646712335803564,-42.73683588979192,-45.998735594798795,-47.507790571875155,-45.32663403088556,-44.659949094567544,-48.287874216909614,-47.51506622151549,-43.85942492044243,-43.13114544839236,-42.8240374355344,-46.23503609188825,-47.75028453634493,-45.041782584226254,-43.584094033464446,-47.73393632014904,-42.4392876396188,-47.94840101928722,-42.52221203149012,-44.406703011786,-43.521390416103536,-42.99308773366759,-40.58467816198875,-43.14880368288432,-40.2363554558021,-46.46687038447125,-43.26545507194453,-46.11874991672578,-42.49283711340802,-47.01315678784873,-41.111193401510455,-44.86278038528721,-48.388548161619696,-40.18812152170358,-46.293593298322065,-48.09582178243058,-47.181981939109704,-46.05021431750935],"im1":[-44.85266691836924,-44.27802138310009,-47.263321349455126,-46.731675991789565,-48.57477344078941,-42.96616125496563,-48.86940871956509,-44.25732304060343,-45.25722558800871,-49.91770612342259,-48.25239226392531,-45.55017818925428,-41.49268686551811,-46.005963190158425,-41.595083646310655,-41.34300015986882,-40.31491780080054,-43.32577735917897,-46.645268287947815,-42.435863784510055,-41.324653860162385,-42.443122419908,-41.586350376967786,-43.6192138688158,-43.921663021542585,-49.54900217348895,-46.109369631268606,-47.726134226768835,-47.00003009929947,-40.93762000960803,-40.30008120717085,-44.32174540555764,-47.50679626785117,-48.467617230572486,-41.25040678230512,-40.27938172641726,-45.91371074877862,-42.2168332221342,-48.740563473596644,-43.45797159469311,-47.79071036486718,-46.37375932796132,-40.58221919411488,-47.25834076033696,-48.28766618835075,-41.38152315206529,-44.0970813020411,-47.10778361113638,-44.08807563201904,-42.433757634352595,-40.65897865407459,-45.755237943378646,-46.24393598212072,-42.17479951088483,-46.23098474209695,-45.11175140196629,-40.060622222296296,-41.48705292948913,-44.23286484999535,-41.48830868344699,-46.51691828729746,-45.41073384863152,-43.95638223134264,-46.474743001366676,-47.06490838005011,-45.32996846205566,-47.163697965168936,-49.110883610190136,-47.20420377992789,-40.994378643878356,-47.96139263736478,-45.15130861026861,-43.20323908875039,-44.105904578799084,-43.91369739760404,-41.32169514052303,-46.05875298963823,-46.61294133528446,-43.162683446057116,-41.06011618469735,-44.20854177296535,-43.391038087137844,-47.61838215696734,-40.95010634352484,-42.9032414746494,-40.163034313766794,-45.110147659306556,-46.73343864789655,-41.221771195854856,-49.104873363503756,-42.9116367546523,-42.647062081867475,-43.67165014497326,-41.61466855851323,-49.11795893585406,-41.51738640879621,-40.04359618469783,-48.456072333614706,-41.859354236621336,-46.104375876979,-42.81795668044826,-45.6213532759065,-49.35481699100728,-47.82913737969925,-46.86656177206417,-41.322881704582144,-47.031585452762464,-47.71765098799819,-49.80952658382374,-48.277845497666604,-48.97433584045613,-42.374954031562716,-41.308612214682476,-49.55522800633368,-46.141770919232236,-40.55508461064376,-48.31705433309997,-48.15459724006344,-42.88385577003741,-44.11162049223145,-41.63323695091426,-44.642129566303716,-41.92621787413036,-42.63251647123935,-44.70963774106784,-41.7190224693731,-49.465175330435514,-42.464514904659104,-45.52937357045038,-49.20523555120609,-48.07120407429719,-48.063962659874996,-40.70502017343697,-46.90385878011814,-47.258424293242804,-49.67612123083503,-41.783504200466155,-44.50601231470246,-48.78962505815791,-43.176467009082785,-45.382793444370165,-45.45174250756945,-41.38174137524165,-47.10682305324394,-48.87936987611431,-44.58083933285702,-45.71309993747271,-49.448208809772396,-42.923755221057704,-44.90811488810703,-49.87618805301392,-48.531621220890244,-41.589477550007395,-45.457949455265684,-44.45644457964762,-49.92584624234476,-40.36580836090564,-44.25642910755518,-46.008079616376975,-45.874123778953475,-45.42160883966989,-45.34782043149451,-43.139499111294015,-41.527394693153596,-49.12419192238529,-46.88906528094415,-46.96580861936165,-47.94503646490114,-40.38093455767512,-43.347485566312166,-44.16652362591678,-49.56671538017233,-48.4367575957099,-48.84614668138364,-49.788863494203994,-49.535493349925254,-49.07893275081851,-43.32891124849419,-40.03297867021332,-46.23390843291442,-41.95053084586294,-49.56791430236111,-41.44349050808883,-44.849299114922125,-42.97312416855379,-40.53496135136827,-44.31491204414247,-49.208670769582845,-46.949050831835116,-44.87210137633489,-45.78077846203386,-49.95227640435493,-44.88280202069654,-46.73158435231237,-45.131130918024304,-47.842297034137445,-40.042099829073564,-45.10642386752218,-44.92158967695089,-42.42776428637563,-40.60626378774546,-46.11188502017048,-44.80914213578662,-46.73839077392714,-43.85516548254292,-42.85315478232535,-46.69185505649359,-40.08717654054408,-49.8098271556797,-49.55238119919579,-48.76044420667615,-42.527273434847935,-48.24470894458523,-44.51396905506787,-41.42214796694556,-45.01321749483377,-49.4902581975698,-43.55834663690765,-48.896559202492575,-44.543067059992616,-43.326555568434,-46.07899091871318,-44.344907374278634,-40.25935799229059,-45.17607044023377,-47.98215855272479,-48.89118830626482,-48.5921296282055,-41.56511809565851,-45.26056769226269,-40.25098872656814,-40.25091271710595,-42.36209268605363,-45.943335936619185,-49.33717260106481,-41.53476624691173,-42.47519482379517,-42.67224216873482,-49.118412522097245,-48.158067464450866,-49.5743175144044,-44.369588382468606,-45.67369297801437,-45.90969950530075,-46.022304784031355,-44.031676392883966,-44.301441919399295,-45.982701339988076,-49.085911274574514,-47.20355253494236,-47.462087774024354,-42.976576367524274,-41.5600368095873,-40.83812771293289,-44.230177432121295,-49.6003995065222,-45.09976215731058,-49.1220530624952,-40.66035230060415,-43.438664548258124,-49.356069346550505,-43.34987774905626,-47.804267915783655,-49.29705864799304,-49.97220743037645,-43.4252029844791,-41.04359608309594,-40.63910967930906,-46.085544744562036,-41.14243332102637,-49.7866673370042,-45.58209888912995,-47.269672497684255,-44.30780341100542,-40.92003697279946,-44.145251190712344,-46.07100242749179,-42.34547867158818,-42.377810603933504,-40.50907587859591,-49.63508254721401,-44.46678541563435,-41.36383658867018,-42.60364110211502,-46.336092633062414,-43.95676600842177,-45.08258240131695,-43.63725410863136,-42.07296073152689,-43.085583090455984,-43.2644516715279,-47.43697513537948,-47.1063568856684,-49.198226511021105,-43.92407619906169,-40.36288275382882,-44.97940993165382,-47.75304734655174,-44.068023487987446,-41.01372857529601,-47.944901021555324,-41.46440644437334,-46.33953130219259,-49.001116436958895,-43.23766815583178,-44.49316087859666,-45.855885800588446,-44.6193599853986,-44.329067607290206,-47.11217801763752,-49.37878872580094,-42.97815675631132,-46.36649080373634,-41.731140937798926,-42.961367889599956,-40.80670089243252,-43.882895953703326,-48.25978278368701,-46.02965180983935,-47.96283457282124,-41.74433474823802,-44.45035580204428,-43.78642211434155,-40.77987934386916,-43.74991788218204,-47.18691937138895,-49.441314205096965,-42.17515182300083,-47.489970316032895,-46.30685469198477,-42.84378354098506,-46.45815704929432,-44.01472539975784,-46.55630797591288,-43.41876328513737,-46.99838068613738,-48.381563346625036,-40.87069002652474,-40.72600726333048,-49.35763392064743,-41.58839554800025,-46.45485458030737,-47.5400601601733,-45.88842557185807,-45.2074420878734,-43.29202960077176,-44.417842280980025,-49.070661865739,-42.51327728401895,-40.11832360401106,-48.31738952731966,-47.090607645162564,-46.49651830763817,-49.15499115788462,-43.801643828407215,-49.750280036507036,-49.629851130603775,-41.428559595477374,-49.78348127208258,-44.40065004719344,-49.26914360164606,-40.37184254646936,-43.306490879237145,-41.92258124465245,-41.131585001537445,-47.62829130594274,-41.398444328781466,-40.331552519263404,-44.92344240213337,-42.462310974822884,-42.11144366823551,-49.12770396846716,-43.12830763275843,-43.152427448893725,-47.89880941718312,-43.45269621215793,-47.399085339139,-45.16542952264157,-45.72663767467102,-46.82467399595799,-47.00869001855194,-44.94993061994637,-41.78563538447146,-41.29029297450499,-44.29519993792945,-43.40506803151631,-43.502202219398605,-48.82045353871511,-47.189274691559525,-46.28266482821914,-42.318683467801115,-43.88055317637617,-47.207307286036055,-43.090426928507775,-48.25658667941247,-46.50553055012167,-46.4150272716846,-49.23815204932789,-48.20479214057727,-40.58743727140979,-46.065424285904555,-45.22668806489348,-46.022310644080115,-46.936355058926615,-42.15792183502012,-48.661660562965025,-42.242213210692,-46.93072685037661,-44.15512146918256,-45.17730606137212,-45.09933197254193,-40.553885320404405,-44.97485713078255,-47.53378451724935,-45.94014780661061,-49.1778779004268,-49.70223618357429,-48.32387518167414,-46.56983119866202,-47.22073613233406,-47.54694388069343,-43.23800928672006,-47.927865637449564,-43.90978477565369,-46.282246808644494,-44.57843459547261,-45.133634483888045,-41.09746894508264,-40.85924071375024,-40.71673528993274,-47.15086810697201,-48.66953213287714,-45.30543374429999,-43.2495648990804,-45.99621221181585,-45.63955829496464,-43.20093482324981,-45.08398270784182,-47.725963292927695,-46.13263259565208,-47.80200586599238,-48.35584107673191,-43.12180043257359,-43.647949689856425,-45.22347767410189,-45.40742414126346,-45.90733737828644,-43.123831102991076,-40.50114560026424,-40.09627624012401,-49.67817455728761,-42.593382885247976,-47.71995279756967,-44.909687216916396,-42.87683060709112,-49.43280198758895,-45.69935856197048,-45.33672937706606,-47.65534941367345,-47.936330790816385,-45.56112530704599,-49.06178270479612,-49.290027512661084,-44.36287950700924,-48.467659365966824,-47.30215529957427,-44.89771004802059,-47.993964486892104,-47.067052396096585,-43.53482808137536,-41.33870721401273,-44.99312457919649,-49.083896278593414,-47.51947197608439,-42.6817959737301,-47.05049113608474,-40.81908936010143,-41.63970876036777,-47.31072394537078,-48.83622911194644,-40.16985608714897,-43.98560583442969,-46.95238133479217,-43.39792007119692,-41.67280057559213,-48.02582994785162,-40.92866382752935,-45.770928361095734,-44.334363292367655,-44.54831233740319,-45.23662809845099,-45.137467221955674,-42.74846045258566,-45.040134996184634,-43.24314101157126,-44.044181055322355,-44.88834899868072,-42.9660212065964,-47.19247434161088,-48.23654533263613],"qim":[0.09385296,-0.004209185,0.013493041,-0.032015417,-0.11366777,-0.13145962,-0.043982003,0.06691628,-0.023949053,0.107037045,0.081459634,0.014648755,-0.057635102,-0.030386658,0.013784383,-0.034638353,-0.063801214,-0.081339546,0.06862428,-0.06103919,-0.07589564,-0.06404275,-0.032795727,-0.12148255,0.0040128226,0.0599865,-0.04207079,0.04733496,0.038067874,0.022361184,-0.03863436,-0.0731371,0.12027979,-0.03647473,-0.07375884,0.036688294,0.05941518,0.048010044,0.0010867148,-0.040002704,0.10504699,-0.06825765,-0.08216198,-0.079413675,0.067970216,0.033461854,-0.007772981,0.06144817,0.020033736,-0.06423874,0.016209705,-0.036736835,0.07352193,-0.022453835,0.07775008,-0.08972396,-0.071218506,-0.110121734,0.071744226,-0.018740524,0.04448332,0.10027663,-0.0075910753,0.034642093,-0.008296593,-0.047513243,-0.036018945,0.043950513,0.05002323,-0.13151881,0.1276293,0.0092549445,-0.045226436,0.03749606,-0.04441648,-0.018250419,-0.03137169,0.07883122,0.02803069,-0.024564,-0.002545299,-0.11490186,-0.002698803,-0.09956071,-0.029154558,-0.029947108,0.09387392,0.086980715,-0.1316458,-0.022919616,-0.04860373,-0.025411554,-0.0056497245,0.027289014,0.0869781,0.004301311,-0.07687285,0.0659568,-0.03799588,0.02426244,-0.026955748,-0.028442092,0.059313938,0.0103873005,-0.05037369,0.00523126,0.06295107,-0.09708631,0.07353244,0.019807473,0.03695465,-0.05668322,-0.028329158,0.0032811312,-0.047244977,-0.035419177,0.031336576,0.025964877,0.02294826,0.030990398,0.00685727,0.038045898,0.04412519,-0.08923398,0.026163654,-0.08747713,-0.02208586,0.033998568,-0.021525225,0.059611257,0.06987588,0.0136906365,-0.014093176,-0.04562088,-0.043961033,0.13451838,-0.08455128,0.06932154,0.007662136,0.022702895,0.020865595,-0.02368643,-0.0068450673,-0.05267539,-0.007863837,0.020563837,0.012489312,0.069231175,-0.019785367,-0.036661543,0.06912987,0.057913534,-0.016096205,-0.11352257,0.09764594,0.09656804,-0.13496292,0.06795522,-0.0023273346,0.11210024,0.04724201,0.07410023,-0.07231395,-0.03525967,0.030473083,0.0061769616,0.011744086,-0.014937617,-0.17603622,-0.062359504,-0.09173263,-0.004687043,0.0566943,0.001564693,0.046817075,-0.06531168,0.071863525,-0.008593597,-0.045370206,-0.007007441,-0.019948915,0.09887932,-0.018541036,0.08052938,0.010116812,-0.021836422,0.015114615,0.109412596,0.05841356,0.10135939,-0.061436202,0.08255678,-0.009567087,-0.019638842,-0.06077724,-0.10654376,0.022355782,-0.13525063,0.006787069,0.11752756,-0.040236093,0.11122211,0.0010215876,0.11025352,-0.05291198,-0.042340107,-0.018469974,-0.16915144,0.06898085,0.16660489,0.08928212,-0.056811612,0.08168484,0.108411975,0.060107093,-0.05354054,-0.009020853,-0.12444884,0.048685692,0.01751337,-0.01608771,-0.01739151,0.06850101,-0.027032798,-0.06854112,-0.021543937,0.013328308,0.12938975,-0.08121484,-0.07292243,0.03371529,-0.01390004,0.009858085,-0.0189957,0.11553967,-0.010808839,-0.075904,-0.05481329,0.051108427,0.03895763,0.100796565,0.041861687,-0.04880637,0.06946982,0.041206446,-0.03849962,0.112990856,-0.07410339,0.0940485,0.006398629,0.048062786,-0.009685511,-0.027167823,-0.012703043,0.031231558,0.041097745,-0.119817235,-0.0018229901,-0.044451486,-0.026579237,0.14650607,-0.11220275,0.09600486,0.047946483,0.085765235,0.01937151,-0.13055888,-0.038994953,0.039640054,-0.10468668,-1.0773145e-5,-0.082890555,0.045893706,0.005639259,0.011812797,-0.08009218,-0.050317626,-0.050415043,-0.022467323,-0.09827182,0.07286978,0.032487005,-0.07177689,-0.095654234,-0.037048712,0.07802662,0.06793435,0.062552385,0.0013928117,0.057506964,-0.0114008775,0.048894335,-0.00024892256,0.09968607,-0.1664044,-0.026481867,0.009476988,0.0018463524,0.010526062,0.03995355,0.036022004,-0.11299605,0.018690236,0.027924808,-0.005003611,0.028639086,0.10833522,0.037786398,-0.00089643325,-0.078796715,0.06135886,0.044604298,0.025370494,-0.057291314,0.03714131,-0.07550153,0.025158253,0.034178473,0.047884002,-0.072453745,-0.024192257,-0.023115,0.061503217,-0.062901415,0.109749645,0.03811694,0.046802714,0.00062441104,0.041748833,-0.08072208,0.0031185774,-0.028764334,-0.024019718,0.07217882,-0.054838683,-0.029659549,0.05864581,-0.12752886,0.0024190496,0.057728183,0.053827368,-0.03190681,0.0032829859,-0.030416053,0.027931783,0.029473504,0.017502883,0.071162,0.060818844,-0.12010077,-0.06515701,0.095781915,0.031938482,0.0037544274,-0.03120594,0.031025149,0.004541125,-0.023128884,0.05020719,-0.10911286,0.07204131,-0.11307501,0.053374447,0.023204822,0.08147651,-0.026884535,-0.045544315,-0.027034156,-0.058317374,-0.04759074,-0.050168447,0.0364348,0.057683382,-0.0009545442,0.0440515,-0.026375135,0.07177943,0.0981319,-0.036925327,0.047418945,-0.015051517,0.014231649,-0.013774914,0.053766314,-0.09827878,0.009548136,0.08101913,-0.004000935,0.10466913,-0.007414077,-0.08962539,0.038049553,0.083615966,0.0042715236,0.00386863,-0.015156671,0.008624556,0.12890415,0.10255866,-0.0748331,0.03627008,-0.07043374,0.059921246,0.009717816,-0.05778371,0.0898403,-0.085204266,0.009884848,-0.12118675,0.025292024,-0.019698361,0.026020436,0.034796514,-0.00739642,0.0019408105,0.14973,0.063484155,0.026387254,-0.08866556,0.027695559,0.028193075,-0.033314858,-0.028054528,0.02504405,-0.04927889,-0.045133807,0.01914332,0.030001206,-0.029285263,-0.09170362,0.08684733,-0.02889094,-0.019779397,0.036224388,0.06779034,0.06950886,0.020036016,0.059745423,0.04520725,-0.034155305,0.020131797,0.03348306,-0.02923625,0.06632241,0.049904376,-0.037799902,-0.007904569,-0.13463055,-0.12494109,-0.058008276,0.11750263,-0.011531612,0.051371295,-0.03555562,-0.058982413,0.08493314,-0.053383246,0.012808844,0.049976777,0.11704373,0.017598044,0.112490125,0.03969387,0.049158443,0.0559612,-0.00013210239,-0.013525462,-0.031375952,-0.008267071,-0.025375003,-0.04179338,-0.038946863,0.08179367,0.095579416,-0.092413306,-0.04294455,-0.011113153,-0.035098393,-0.03742375,-0.0044234353,-0.029399453,0.011729877,-0.029163186,0.076624624,0.009326075,-0.013077599,-0.0067440453,0.028902775,-0.010217224,-0.06602873,0.0319337,-0.0041451957,-0.05352838,-0.07827135,-0.12792294,0.00776579,0.004616289,-0.03958652,0.011703285,-0.028580345],"qre":[0.9113921,1.0963459,1.0936835,1.0751181,1.0704709,0.9712767,1.0476696,0.94106,1.0451397,1.0651345,0.95389146,1.0480077,0.89658374,1.0014764,1.0146624,0.91250014,0.90940523,1.0008482,1.0142915,1.0402287,0.934961,1.0140965,0.9796096,1.040982,0.9298578,1.1426779,0.96878767,0.92500424,0.9389178,0.95132756,0.85655564,1.0582503,1.0166442,1.063897,0.9310931,0.94996387,0.9796219,0.9777629,1.0897489,0.99558973,1.0741528,0.99993646,0.93716604,1.0837302,1.0209768,0.9068547,0.89596504,1.0939059,1.0682248,0.95143086,0.9530901,1.0688728,0.9387093,1.0479813,0.9453406,1.1431699,1.0508,0.9927188,0.88747275,0.9276546,1.0908284,1.0134877,0.9718034,0.96258414,1.0446452,1.0605865,1.0906482,0.9684832,1.0674764,0.95382065,0.9683715,0.9826275,0.93365186,0.94185394,0.9305586,1.0353148,0.96236324,1.0266742,0.9482227,1.0459305,0.9358321,0.9928288,1.0499163,0.93029785,1.0615774,0.9020964,1.010372,1.0081693,1.0083374,1.0238807,1.0238065,0.95535386,1.0935383,0.96873856,1.0874788,0.93523395,0.90475386,1.0272195,0.97406954,0.9201924,0.88855004,1.1436454,0.97293085,1.0574198,1.098593,0.87727255,1.0171785,1.0609553,1.0548995,1.0913419,1.0164448,0.98451716,0.99186414,1.0551894,1.0057579,0.8736486,1.0904746,1.1281117,0.96559995,1.0334898,0.9433674,0.96358854,0.9104265,0.9650398,1.0179248,0.9159509,1.1958662,0.886229,1.1133951,1.0158013,1.1079433,1.0597153,0.9937764,0.98814744,0.9950709,1.0502481,1.0785729,0.9002622,1.1011266,1.0512965,1.04373,1.0734214,0.9406539,1.1007351,1.0909142,0.92868644,1.0605811,0.99392956,0.98919505,1.1195718,0.9331282,1.0611329,0.95775473,1.0279,0.95114404,1.0864506,0.9976616,1.0235289,0.9978342,0.97609186,1.0034864,0.9933329,0.9628435,0.8689161,1.0382026,0.9641637,1.1383685,1.0130296,0.96731365,0.9889771,1.093265,0.99626863,1.0732453,1.0680262,1.0344108,1.1350046,0.9443931,1.0431644,0.8477179,0.9631091,0.878451,0.94565964,0.9200011,0.97632754,0.877083,0.8507463,1.000246,1.0928956,0.9102649,0.95686156,1.0273302,0.9616012,0.9782373,0.9805464,1.0171844,1.0759284,0.96627486,1.0737983,1.0016402,0.9036133,0.8598115,1.0074617,0.96011776,1.0126166,1.005165,1.1051341,1.0800399,0.94258577,0.9321924,1.0347637,1.0231564,1.0275211,1.0811328,0.98688793,0.91560173,1.0043861,1.067962,1.0071162,1.116928,1.0364997,0.9661236,0.97267777,0.91395617,0.9918253,1.0287756,1.0769848,1.0055115,1.0144614,0.9100607,1.1087775,0.944636,0.8630451,1.0154095,1.164244,1.0743611,0.9051497,0.992017,1.0270138,1.0467646,0.98811,1.0277046,0.980912,1.1668028,0.96330035,0.96843874,1.0268024,0.94328785,1.0973308,1.1026089,1.013616,1.0544434,0.9243917,0.9245389,1.0120201,0.91053677,1.1210276,1.0092105,1.0222775,0.9003202,1.0217137,1.0145615,1.0449086,1.0776544,0.97142154,1.026443,0.9953464,1.0762408,0.89793044,1.0951451,0.937037,1.1616931,1.0495431,1.016549,0.93336576,0.93176514,0.9817186,1.0018016,0.90304214,1.0466998,0.9428981,1.0772977,1.0480855,0.91780835,0.94797504,1.1105473,0.982703,0.95334196,1.009427,0.9956189,0.9717853,0.967027,0.93028134,1.0615317,1.0220981,1.0486232,1.0046592,1.0157745,1.0767524,1.069923,0.9129569,1.0511544,1.0226493,1.0137125,1.0172093,1.0139865,0.92437184,1.000192,1.0357692,1.0314057,1.0147451,1.1427206,1.025469,1.1215804,1.011832,1.0035456,0.9926534,0.8826596,1.1431623,0.94546074,1.0658721,0.9630385,1.0787024,0.9641768,1.0187141,0.94200486,0.9517645,1.1442016,0.96491635,1.1216503,1.023769,1.064767,0.96552086,1.073938,1.0667418,0.9436961,1.0787101,1.0098482,0.99776316,0.9736099,1.0102643,0.9383689,0.986908,0.96676207,1.0746833,0.90741765,1.0348986,0.99616086,1.0633799,0.96211964,0.9439018,1.0364294,0.9925733,0.96487015,1.0908905,0.9753671,1.0865105,1.0074829,0.9249705,1.0421722,1.0124098,1.022909,0.9452022,1.0071713,0.9672657,0.9241249,0.9923367,0.9810613,0.98137236,0.99230194,0.9346099,1.0563405,1.000429,0.9979343,0.9015428,1.1309639,1.0793959,1.0187308,0.9942303,1.0527939,1.0335956,1.0137719,1.0216831,0.95954496,0.96775365,1.0095496,0.96623456,0.9643934,1.1110607,1.0411091,1.0237374,0.93346745,0.96096396,1.0183822,0.87545705,1.0220073,1.0164865,1.0345705,1.0571951,0.9742325,1.0327227,0.8911863,1.0032053,0.88526887,0.9333366,0.8925699,1.031983,0.9240904,0.9696055,1.044207,1.046416,0.99079317,0.9675588,0.97598517,0.9604645,1.0306302,1.0397375,1.0804458,1.0917271,1.0198219,0.9435591,1.0307691,1.0591749,0.98360634,0.87781537,1.0830439,1.1272207,0.9317506,0.9468872,1.0179265,1.03246,1.0322169,1.0595284,1.076363,0.9520429,1.0144234,0.97534424,1.0382725,1.0508801,0.9408385,1.0392395,0.96222705,1.0243591,0.9964153,0.99848527,0.97874796,0.9732284,1.0833999,1.0177015,0.9402617,0.94590443,1.1112504,0.9212983,0.9245327,0.94758147,1.0095755,0.9768866,1.0692865,0.94760656,1.0220891,1.0120547,1.0417341,1.0397471,0.997798,1.0162274,1.1397346,0.9886042,1.0196747,1.0457118,1.0131915,1.0354933,0.9789783,1.0012603,0.99087226,1.0485915,1.0909743,1.0421493,0.9217242,1.0646044,1.00978,1.0552367,0.9108695,0.90448105,0.9663524,0.98438746,0.9604747,0.97807723,0.96116877,0.9821823,0.9181512,1.0786968,0.979914,1.0239676,0.96359706,0.9931925,1.0539855,0.9192926,0.94733,0.9345052,0.97072566,1.0516278],"re2":[-49.04448888332852,-44.39290430944039,-41.77685226497551,-43.48187155837135,-41.30659128497741,-41.85126955502748,-43.65811979339075,-45.94893294205434,-42.0757070772109,-47.830792692332054,-46.20872552029775,-41.66314522415556,-42.33001060847029,-45.74139909643472,-41.07308413690397,-44.85293014489983,-45.63018667138676,-42.12891443767052,-43.16268541295321,-43.67327097459136,-47.75751184719716,-40.307564446012705,-48.70605463807544,-40.64685022564732,-44.524989488564806,-41.61647863564241,-43.402500634798834,-46.72949824163362,-46.7086332826788,-49.21604402431339,-44.61527832472804,-43.68556574074232,-44.27551242473247,-45.25360598621167,-46.03071725594851,-49.32644083635498,-47.673036147284755,-46.35364919052534,-43.43620161531714,-43.34833322573071,-41.425438741623815,-44.122503798983985,-45.75414032509451,-41.98281573715953,-48.31746867710578,-48.29292236092464,-48.57669238334385,-45.17876129668759,-44.463159397151784,-48.822512588673774,-49.556893176218175,-41.753584794216124,-46.45524405510398,-45.600146709181026,-47.85412041370929,-40.06633728400579,-40.244162258254946,-40.90547258154592,-49.51198969170916,-46.48005629372998,-42.004458560214985,-47.865257493253395,-46.78647687580836,-43.545801329669686,-44.39054424456903,-40.74435404135045,-42.784741854659615,-49.986825644135614,-42.06907022039463,-40.67326238593927,-48.59439517614168,-48.61503677953393,-48.47659906385614,-49.370693768067646,-49.74275098051806,-44.94970136857261,-45.66490550101395,-48.373867582755125,-46.934328365374604,-43.371063470546176,-43.09303942823619,-43.04009476730307,-41.29148206256639,-42.777368345412754,-45.460285598435796,-43.76249119466197,-47.53564161384532,-43.816829179381266,-42.725912753456214,-42.60020475263136,-42.83840982494211,-45.87574593696849,-41.23711803718283,-44.980780194110594,-48.20739014948663,-49.22289868411112,-42.67558580517297,-46.19702460411044,-43.18996991115054,-47.90329321754518,-45.24301310796643,-42.36997872833298,-49.44432227788358,-45.82904591701802,-41.16113927902002,-47.33423614536808,-44.26042926169117,-42.50198280577609,-41.040945119882196,-41.65176541239225,-47.97948718787015,-47.72522402102654,-46.001443795091085,-43.217842390929846,-42.91390058765229,-45.37754196643322,-41.5187326148676,-43.47996519649938,-47.03952847580056,-41.82515935789333,-46.60094792194367,-49.03430022985273,-48.463663755172576,-44.820192601844205,-40.676641444235074,-44.00772382314155,-40.575289812363316,-49.2317612376914,-43.01660761092699,-49.20622880862319,-44.08472871025712,-45.17664620914055,-49.112967055238975,-42.98084865480956,-42.12840073105601,-46.316458078842324,-42.56358867855491,-49.06531145057666,-43.876026534266984,-42.76869813688194,-43.848276478648785,-42.727255493753866,-48.96339486524102,-40.043167713016494,-41.663760076758905,-48.952015324247235,-47.46778994718832,-48.4101320786452,-40.44362958663247,-40.8756301928474,-49.08600031140678,-42.91359160923435,-45.94962095261674,-42.01881230425135,-49.19499877957449,-44.97641004708887,-43.779188443316094,-48.082976631234985,-49.96065360641462,-49.09537959050431,-48.85913491766537,-45.1934025527426,-43.285662210532344,-49.69795361735579,-40.16162643329874,-43.0940098987465,-42.34128539102868,-41.75640684369465,-42.2028027947155,-47.09086830527365,-41.050025852947215,-45.27928340449176,-43.78115910793663,-40.25502594420233,-44.529049527446695,-40.65682390820095,-48.4294065881312,-45.024900312753104,-45.989059968165414,-46.495596959468344,-49.52233124096464,-48.71117150015217,-43.850327044739004,-45.40631701388276,-49.40682163754058,-48.66673710872092,-43.44330311701413,-48.51529544037554,-49.17264605140146,-47.974064868498715,-43.951924726652564,-49.087575771082015,-49.58930567688464,-47.833916490784524,-42.21435288360031,-40.922177369617394,-46.756416685506004,-40.01986628626388,-44.04836863548325,-49.577528118535774,-46.596869747580314,-47.33666714993864,-43.96065541535865,-49.53848997498504,-40.18884084718427,-40.10328104147189,-45.0288551191351,-40.48500707251311,-48.129186880125495,-47.23728788392093,-48.6152920857126,-44.43880483171958,-43.48742940676281,-45.50322378548058,-48.41800372363891,-43.27424675971234,-45.282035067871824,-40.785597783327354,-42.69251292822196,-41.33540481820826,-42.86152470190433,-42.70820864579869,-49.28659479074304,-47.59038548777202,-43.86360218916116,-43.078469650081296,-48.06129428314763,-49.91476860632504,-48.36307742359784,-41.88072049507363,-48.56711880895882,-48.39196965823436,-49.102185523791434,-40.98405895281262,-44.336493296752415,-45.69522416397377,-46.71705589924902,-42.06470930940672,-44.65040845625928,-49.27167784863378,-45.308247329201635,-43.44416941710139,-40.36675163194245,-47.14369210153034,-46.793655014101944,-42.82190846532156,-49.85146743514076,-40.99889112537343,-45.181974216427115,-48.28171991440273,-44.90041331987326,-47.503457603503314,-44.714069550884794,-44.06720652461067,-47.6891554649359,-44.76478123717027,-41.33626599441129,-48.43728682389784,-48.19202812065982,-47.27992616326121,-47.56966083020222,-42.686726244005136,-48.60316093422479,-48.96002461546974,-43.130748094157305,-42.1091390038801,-40.34036543788242,-44.52648076059958,-46.43880782285389,-40.862290112813575,-40.61280655295106,-42.67893952934708,-44.55893098781462,-48.200279394783834,-44.61830728962053,-43.178350329782404,-47.164298797708135,-46.636749678844474,-45.47469536610049,-45.05340404859476,-40.304354077951196,-44.01000121442732,-40.77474967032071,-44.60871173688008,-41.3856747896756,-48.49603773290728,-47.29560445274983,-48.5209414582139,-44.624487339691925,-46.91208662379493,-46.76179273681987,-49.77843668550431,-42.8381208805386,-49.101996590313725,-40.01891042397645,-46.02932735237575,-42.80681717574854,-46.40378967101238,-41.526934855064376,-48.6464454028095,-47.38118900313859,-43.32492436077021,-48.4579882085735,-41.269294399041215,-40.947771567535476,-46.06201983053919,-47.66898223863053,-45.66932434356438,-40.95524326381099,-43.534986018159366,-40.866459449963706,-42.45049341842759,-41.76652207506798,-44.905533521083115,-43.2791303436438,-43.54536623829848,-47.98160637180334,-43.35942479941953,-45.37465052964298,-41.02882388013755,-46.848572345805806,-43.912392000834814,-45.97945134356764,-42.71576978352002,-49.4652011899508,-45.27060846951378,-41.30151487985324,-46.425160900011356,-41.90032773270173,-43.729271897035574,-46.87623977465736,-43.78258640275942,-45.457776506106676,-45.754185442347264,-44.8178565980613,-42.10233958533237,-45.10158155294124,-43.26784337844968,-47.10213403893891,-48.24805631262623,-46.544627696049844,-44.59934465821902,-41.73973839326584,-42.06398368782728,-48.5416362322481,-42.40480371211483,-48.33841698429301,-48.93726462473299,-47.23850005301711,-44.14737139549905,-40.198457813008986,-45.106466724219146,-47.80164002158153,-40.95439366782423,-49.1515806788151,-44.20693903674039,-45.628713770173164,-44.6791287717602,-45.71527515217899,-40.28886900267693,-48.74236940923696,-41.93042465166432,-47.72844586173852,-49.34210250526773,-48.00948794834674,-43.49469219967942,-47.33371009493558,-43.84527714271107,-41.082859535739075,-47.419008570434805,-41.65606703514379,-49.96662113781368,-44.96150849742111,-45.8665173182317,-41.6840165849651,-43.1445730746687,-42.75506393394407,-48.49467132768986,-45.68072002212915,-48.65396007687289,-46.473042444585786,-41.94044254535621,-42.13998581178929,-47.22950914436019,-42.09810750471698,-45.368326089697476,-49.66082441434279,-43.472677998567875,-47.15512878160601,-45.45899530327151,-46.56663069846324,-44.03357836991158,-48.469769918738564,-48.463475730798905,-48.68747525044657,-46.66191364148432,-45.91439729933663,-49.58519266317722,-49.567909416560425,-43.7945415001446,-47.07136933079022,-45.333795136828826,-49.742892456104755,-47.66797528300283,-41.6344972578186,-46.834893119969415,-46.17794389101723,-45.487834936445395,-41.09025277010958,-43.98167999363145,-41.04301595538943,-43.143149939245944,-46.16608517419839,-49.490952637818644,-47.55485955183053,-46.64433120930933,-45.9789128776176,-44.243601648950275,-44.523662709626926,-47.33322627568059,-48.35616168813691,-40.9231953652356,-41.53397636721458,-47.483761249671545,-40.08027694468563,-42.283411220955635,-48.13582251221529,-46.370225699071575,-41.59621716875216,-41.00575647423652,-47.25625345114781,-40.65490115201587,-41.91733149067826,-44.6117243389354,-46.43241917873847,-44.9630739680924,-40.343012207705044,-46.37794291605531,-49.45551019201296,-44.92323793372547,-47.33607917342278,-47.629580399167445,-44.55812473940225,-46.14200400563137,-47.04615408424425,-49.02824682291499,-40.74109525210895,-40.717898893799415,-43.574431284315125,-45.254961231957196,-43.729420598392096,-49.588675764294024,-46.02963726839817,-41.75828756166379,-45.85144786348643,-49.97283358290454,-41.71826171210959,-47.28538651169489,-47.269360619132094,-47.950622504656174,-47.83788247819444,-44.36037392436172,-47.637213140543665,-44.06301320070533,-42.345085622911924,-48.04902495743549,-43.860283939505834,-41.293447549379536,-47.27699309439029,-44.82922353099628,-42.920321542334726,-41.2664884616131,-46.98740629742806,-47.82585376907774,-40.16630657350581,-41.28954713860266,-46.74465539267445,-43.50048059439209,-40.23656970312205,-45.243731391279105,-45.212600490816875,-49.71864842715791,-43.53082551579537,-46.82293042091782,-42.67207674411243,-43.45164458252009,-41.56108087242036,-48.63904320027188,-46.57925820388703,-40.076045563038136,-44.82064560807537,-45.733541150703665,-40.07621821849163,-41.33968805143842,-40.33626195993343,-44.117936672785184,-49.097174596502775,-49.43027560085576,-49.183826515202085,-42.511485408608],"im2":[-44.16287817929287,-40.55734592389947,-42.69939616081297,-44.76137726069937,-49.763145288476814,-49.90123944376732,-48.47862364815662,-43.76192056052244,-44.266710418280326,-42.05857423162649,-46.63868748110658,-42.881231812420616,-48.99975077266234,-47.326018957705244,-40.43602934982538,-47.00999642137425,-47.53236397810097,-46.712906569333484,-43.067758173450635,-43.35742887594765,-48.07605760981293,-44.39866106152409,-44.082562084140065,-46.64546891276175,-47.04266782646295,-41.177463429554635,-49.479726733911434,-49.20431293104095,-48.163888114499315,-41.87525912322595,-49.06133105450596,-44.90127205888556,-41.490766490573186,-47.108159924502345,-47.949640558297226,-40.49593607324215,-43.97738720664508,-40.90091377782932,-44.683102791837854,-45.39221598718034,-40.44032523270791,-49.3885951379324,-47.31442313998284,-46.683523461493046,-44.078885970242716,-43.84997126809192,-49.63884032019975,-40.52599977304734,-40.43840728670812,-47.89634062073043,-41.81732085627937,-44.24205934296803,-45.6248339369362,-41.22087266633347,-44.96826061854453,-42.60666919790347,-40.851499255735455,-46.32896265639489,-45.83877472876694,-45.662862929321,-40.93074410592093,-40.07050817584843,-45.597230437364836,-46.71407237476543,-45.40603804635617,-44.56578140840653,-44.65670793926858,-48.44062821733202,-42.248966962098486,-48.58741009698698,-43.12324383492805,-45.49168282200602,-48.62161697915406,-44.863324654154205,-49.56495213358323,-40.70457177201277,-49.348663022870205,-41.68758745363373,-44.13212300669561,-40.27560515361244,-47.35703029848285,-48.68556015822743,-45.46059489216821,-48.596320860161875,-41.66310561964253,-45.97467858914501,-40.230521170715825,-42.57441826758128,-46.45911023461305,-48.91317431016403,-43.94750722004734,-45.86032156745792,-40.14914720203457,-41.690495423258206,-41.311123809355664,-44.166128366895684,-47.885055511783705,-44.20580503546079,-44.658408283694584,-48.83992554840106,-49.5610974928276,-40.94489805300613,-47.713647086870864,-44.78173732960056,-44.5478895521406,-46.821557383175126,-43.498107024687926,-48.86540958649308,-44.35653828312951,-43.481178608481514,-46.4376087233598,-45.789118450740055,-42.961320907137406,-46.8289660986573,-47.89346993483102,-48.26004585252138,-43.11517123946916,-41.685277883342444,-43.29368137711835,-41.42802853702278,-43.79383733782221,-44.39298551796699,-43.70231491140731,-48.32132398009008,-42.87682849461107,-49.7501438334611,-42.11283357920095,-46.02727653783735,-41.72401760390982,-45.55220423174104,-40.60744522143201,-44.771896598225446,-41.65643139550954,-49.450799949163454,-49.35370258390011,-41.36708812960859,-42.07625936457716,-45.65861989018126,-44.003515090256656,-40.146141486522176,-42.604765126111246,-43.285705004026646,-44.34882737159961,-44.71203987555696,-45.10621374435651,-46.92025070699735,-42.5429601522837,-46.37825560704195,-44.201540130403046,-41.45038205038862,-49.8140347048944,-43.39356424594989,-44.196171510804916,-48.86471115738884,-41.689533075626734,-41.95548751490884,-46.38283645938814,-40.04668515756715,-46.224469205917146,-41.35934334011601,-42.96361530600302,-42.28086875747354,-48.05522100876143,-49.808868427058684,-46.13775842962045,-48.35576691013012,-40.82030375655721,-47.94408881754918,-49.42570341573605,-46.79991921695256,-43.84312071761249,-49.96538134386556,-42.8183709682762,-45.675993835798934,-46.1172156263356,-45.98294575511062,-48.283522506621935,-41.906950790351985,-49.68576598821073,-48.34314675568889,-48.87972853397119,-47.322928454940204,-45.93094622776587,-42.19153745107759,-48.42561602663615,-48.89550532359544,-43.64754443710105,-40.168963023109995,-48.42183961263364,-41.81323590773926,-47.19126823626674,-47.73264259873529,-46.36628229457347,-48.616756722856685,-46.89101056702229,-48.51837172419822,-40.35789713008844,-47.047137435846594,-44.54955822854204,-40.505198262237,-49.40749942461076,-40.54447094809064,-46.62369173460984,-40.7623159395408,-45.745365786714444,-40.312871985191734,-44.001653415029686,-49.79417109351424,-49.87150131276052,-40.28206083104668,-43.41464293170779,-43.845245113375775,-41.33853471458388,-40.10675951123598,-42.06182886391131,-47.12345890897995,-46.72332756550278,-48.290421853432086,-41.91680190720369,-42.2760794367655,-45.55949557975902,-48.136960634623776,-44.82569793053655,-41.888281411680694,-46.834830037931056,-45.41404808187567,-47.98613708133599,-41.53304481087267,-49.9888810141859,-43.57466630198175,-40.876630381197266,-47.4176422508792,-41.24251044009615,-40.130639634692145,-41.154274820406926,-46.43284992639866,-46.39154656964775,-43.794879680851494,-44.74396347338376,-46.79494926173588,-43.794105450188496,-43.37895715966062,-40.8328214876839,-44.25892161110584,-45.531123959710385,-44.487923455347754,-40.993509953675776,-44.672816622059834,-40.66411072524099,-46.26467545978403,-42.96489856126509,-46.989465960531724,-46.26611083816596,-40.90621809904784,-46.94019281294468,-42.6043629470036,-49.59575710744645,-48.13795854382885,-47.54148395715688,-43.745448126426446,-41.7784667467277,-46.07047848614324,-40.02965258441628,-48.330816605703355,-45.08100774821229,-42.80869544306954,-43.02976346547441,-47.192319838225664,-40.40077091169765,-48.47212245514686,-42.857364627797246,-46.80110759380863,-44.4884577201651,-47.17978027375884,-43.35102008969881,-48.48996524770831,-48.35707679565,-49.49566540353329,-41.463183747950175,-47.65791393266569,-43.34745433728304,-41.06252431166074,-48.256831267447026,-49.44292177781503,-43.104314747701984,-40.879881530626754,-43.9187453300008,-40.22297437848598,-42.195669916174246,-41.560423555503355,-45.290953997305635,-48.37578670765116,-44.3858823188082,-43.34558716155914,-48.23791933665639,-41.38898687919514,-43.88151934055429,-44.26957353348126,-40.77948315873812,-42.795153217454,-43.98795894774331,-45.33318825917267,-44.819256336346044,-47.039168733532016,-42.843328463468275,-46.70629731394641,-40.683842339150154,-41.41239023720284,-43.01487096114889,-49.80816268785505,-41.01726261590672,-40.06428516060671,-40.39554629777632,-43.78576159785547,-41.20781649457385,-44.4207846727239,-48.349059811358494,-40.91967084533378,-46.38683863880735,-47.78765494579926,-44.52335928107482,-42.14822016993578,-42.48031897134196,-42.668267841868726,-40.680391511951335,-47.76532763702561,-41.52090806017074,-43.67856441928967,-40.77980275881991,-48.67970140560767,-40.100415839897394,-49.42154825999941,-42.001129552308115,-40.54760274421895,-48.613655717219714,-44.72667622693787,-45.290514385257815,-46.49258374348157,-41.71286913715686,-46.09919160196294,-41.649952484053486,-48.513007576181046,-49.032779778916705,-43.88999709715784,-48.32569410771068,-40.62447230926114,-43.73970270291933,-42.871027846428916,-41.20099805554017,-48.11990131929946,-49.14623764193863,-43.09023869267891,-46.60710666967386,-44.918560934194204,-46.48041096435053,-44.52672117804459,-49.05557040136228,-45.9062619321363,-45.566602447899506,-48.19854803900691,-44.73288931214072,-47.7285450716015,-40.46880105251931,-42.15760234535263,-40.27587467544912,-49.17446576790378,-44.39501359403978,-42.304917181833346,-47.68638020235175,-47.847789742033925,-41.84376664590536,-47.28689707411713,-40.61868397296142,-47.91365344901128,-40.72858923524542,-41.31073653254415,-43.515078170250064,-40.64104058026991,-45.035801288024786,-43.070572338166755,-47.06007266122922,-43.411747816139396,-44.15229562551701,-40.042151169602455,-47.97441005944512,-44.473552460081116,-40.936329340624944,-44.096947619109464,-40.585169175592625,-45.538731757616105,-49.80595219450365,-43.91954196832303,-42.37550304444706,-48.98403335376133,-47.033158904755325,-46.44702240183245,-44.481296363999704,-40.52839441642532,-44.261689267755386,-42.47482799888782,-49.77426526400552,-48.26501165563362,-48.61987040865335,-49.792460756185676,-49.92742581702239,-43.07628466833992,-49.9699732945632,-47.93814030697929,-47.05457317351722,-42.11032603565853,-46.3344045521406,-40.75337154100828,-44.435549796527035,-49.87153544070936,-44.485260660224455,-40.58122963521005,-43.30000248619007,-43.19431531920949,-49.53565471985561,-48.65600395610331,-44.80502464314288,-42.10953654859866,-49.91130900499795,-48.66695318296437,-44.55715713302345,-41.240230686768946,-47.45062861787698,-41.933513256584334,-41.33638309200961,-43.07877919514846,-41.70323951679348,-47.04365753898815,-42.86150329847336,-43.73073048880619,-42.2393065413103,-43.58894305828581,-40.82995872252985,-40.26445588705333,-48.35071561523079,-45.867192503618654,-48.68813942379738,-45.649091388183756,-44.58433001379576,-40.649273474167714,-43.80664848534193,-48.560738768798956,-42.67064982167712,-47.76027541546089,-48.864460208928854,-45.16464610541736,-40.08084075976358,-46.85259903618759,-49.05759505848016,-48.960887673323505,-45.148935960589334,-46.25762250914812,-44.82093125628559,-47.20425451598619,-44.314116017079286,-41.81988301507015,-42.92772271563114,-42.38692147362816,-47.50372382850783,-41.523003803403114,-40.44624083139746,-47.853834839914654,-44.61318806683312,-47.134963979809484,-46.84000739031256,-43.14114709224853,-44.05868324335503,-46.54167325929807,-45.65737340707377,-40.95808741627902,-42.52501239659136,-46.84899914363787,-44.84917287782581,-40.54699296907373,-48.34371762614853,-46.469534449129725,-45.55985753568168,-47.985985996376066,-49.90092580887692,-40.44152609205649,-42.973372028774136,-49.683264481284134,-42.873798400141624,-45.1699486842606,-48.80489241981439,-43.75138790327844,-44.70325093295061,-44.26608550833929,-46.58967610401487,-48.60673880628325,-45.92385212902635,-47.538257010721495,-47.144818234968575,-48.071209936857514,-48.02269477395458,-47.023808723460625]}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/imaginary_component_scales.json b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/imaginary_component_scales.json
new file mode 100644
index 000000000000..38cc9824a83c
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/imaginary_component_scales.json
@@ -0,0 +1 @@
+{"re1":[-8.623645488741175,-9.4518571951083,-9.799142338285046,-8.229523036876696,-8.029941954975211,-8.06764090018632,-9.274025404643945,-8.587807496815746,-9.55388582320566,-9.123955757454576,-8.226192795769496,-9.428382724013513,-8.433635141312505,-9.770233335877444,-9.42803658354067,-9.828001345063747,-8.426954309206348,-9.768606252260454,-8.972424339522341,-9.342327754986794,-8.67850971589082,-8.320788980237623,-9.024774928746393,-9.469302061529971,-8.497950338646554,-9.547675237157433,-8.416678676540068,-9.858149826064597,-8.863680143753625,-8.08384432983255,-9.531073979122679,-9.691087755452736,-9.511870196653309,-8.158033738241192,-9.237438425499123,-8.907245205300258,-8.021463716219381,-8.981450270821819,-8.846499416016346,-8.601666346636527,-8.517859363825881,-9.889967493715526,-8.396859293827449,-8.823776179625927,-9.127327063816779,-8.343026581995634,-8.50414400200244,-8.90838273130729,-9.406059052432564,-9.981653999502445,-8.957896953588131,-8.177663141900995,-9.937401260275385,-9.219695493367896,-8.304783588980634,-8.858819577581173,-9.921870733431954,-8.332697368568324,-8.901339586723,-8.709801217792325,-9.349711950524798,-9.514292300472608,-9.121707730107635,-8.502268271715776,-9.228104201142257,-8.554555230843773,-9.359863746639688,-9.867436393534026,-8.13599570140087,-9.588389536937353,-8.517356307740304,-9.441946141849483,-8.264820189031887,-9.604048902724255,-8.794939457845029,-8.101303781475997,-9.562413572561105,-8.545860883493678,-9.408526448623956,-9.74302883359109,-9.44952610223432,-8.740812006008905,-9.298241631176984,-8.474942382397034,-8.12566294600932,-8.94134951339635,-8.143053383896476,-9.233295788520426,-8.099867741076322,-8.37764199710028,-9.035412909225597,-8.209271400375634,-9.563645445053783,-8.24291922679362,-9.441413601492266,-9.476578433614476,-9.718664136249634,-8.275452883462844,-8.077270282113297,-9.797617685804454,-9.424021668130093,-9.999497654203441,-8.591829575456352,-8.63494404144406,-8.647665118848728,-9.376436704311075,-8.850834981706102,-8.464959302635787,-9.709858199942502,-8.288734930133062,-9.750178603477304,-9.506259346002217,-9.427563725438306,-9.844785820963754,-8.333347359667496,-9.774626726108902,-9.162925970689347,-8.163542700902575,-8.952953304148723,-8.83130061933108,-9.970975732218593,-8.6863266781078,-9.67535926326409,-8.685240823878507,-8.820104241410528,-8.324423325689924,-8.259620393511065,-8.160016286879088,-9.466433048540907,-9.10646961887499,-8.58821899446243,-9.449976170472333,-8.341283311254003,-8.206754695876963,-9.796402231692772,-8.88854653752237,-9.801132359851131,-8.34788729099564,-9.254565936447724,-9.789475041157297,-9.042159442258756,-9.979196708458712,-9.195495413823876,-8.823586240264493,-8.14656834161986,-9.499190149342136,-9.2994251573794,-8.706060613582727,-9.36297673392397,-8.030070332527428,-9.391126384124426,-8.623599077093102,-8.44796623087565,-8.070985950383736,-9.167488867364023,-8.071597521458813,-9.098328970067845,-8.747504343535761,-9.62595940230474,-8.90368219685157,-9.660856931180192,-9.488207721297623,-8.142649433625486,-9.112750601752815,-8.447806634423616,-9.027376774264534,-8.04300946282782,-8.911215362573124,-8.365054660500617,-9.727702864049721,-8.079582594261183,-9.803689142930457,-9.392187985236546,-8.17885054064459,-8.696576092413544,-9.985921801012635,-9.592855684295165,-8.738317519789824,-9.139698503759256,-9.648191480327334,-9.439843833517873,-9.8671518082832,-9.889208613914825,-8.661656765845873,-8.78500344305181,-8.287458563950704,-8.393200782106724,-8.87429650857712,-9.881783387486983,-9.838816483900718,-8.273359813573121,-9.883514154889411,-9.130660904723548,-8.900153276475686,-9.557467006606498,-9.374548085188913,-9.3503848843502,-8.84952409922877,-9.004791490225527,-9.657689117994467,-8.74315166429354,-9.476006529868362,-8.785823971074828,-8.311062013826184,-9.033052249539596,-9.698160669071486,-8.915266480098154,-8.558742503994898,-9.3763902355772,-9.235686401673062,-8.203703875739787,-9.164329565391986,-9.818969821922714,-8.228495916660174,-9.392896613953784,-8.889698743728744,-9.16934357594009,-8.427524234691209,-9.997255723936082,-8.931942239672145,-9.48883464640139,-9.88120005551469,-8.89144047926353,-8.355401184794674,-9.15244015681169,-9.751954287598847,-8.330647183812774,-8.20705674675586,-8.623858235234486,-8.676628677968925,-9.781353083871995,-8.646050752627024,-9.364235389740777,-9.252926979033719,-9.189119983290649,-8.161384842568468,-8.687973938970867,-8.03544571495896,-9.140810238415305,-9.244815127010991,-8.443888088549057,-9.658104879327189,-8.911420304509452,-8.964060080543488,-9.161451201433852,-9.002060456799809,-9.525037513116862,-9.95469153544216,-8.918474820288377,-8.853049791222322,-8.340490221622787,-8.486152710384575,-8.342630046596348,-8.272719397792592,-9.910095268346739,-9.201582664318847,-9.596354748887764,-9.670829565310552,-8.337252549854407,-8.002966726541034,-8.693850323628658,-8.299301498415533,-8.754171188148169,-9.565443050768419,-9.756823094421607,-9.65578615118631,-9.40044732824024,-8.550668519308593,-9.874199813334451,-9.828434949499204,-8.537597470897623,-8.61402472355213,-8.690384536561474,-9.175608427289617,-8.700880636271098,-8.516771895950983,-9.970337947322824,-8.612934273594984,-8.32844733158638,-9.819734650018956,-9.13589252321642,-8.87695908214626,-9.566396367000063,-9.377085660113696,-9.960270397942978,-8.927653825102901,-8.92818546840174,-8.590404909425837,-8.384815537432932,-8.227605413829243,-8.333308504749956,-8.297828338056396,-9.800574557886826,-9.96913816222688,-8.444079320957472,-8.866684550224875,-8.974342203419027,-9.660971474938405,-9.546594106789174,-8.334907404491243,-9.642890389756037,-9.686501171526386,-9.554264360398511,-8.725992816594589,-9.648438611753125,-9.51544978468292,-9.275452574638882,-9.751409277693496,-8.251661315711413,-9.9500770878493,-8.057322026184423,-9.997700404760375,-8.18507560552397,-8.446492903601637,-9.153534187667606,-8.138674495184492,-8.315257661330433,-9.759425102866386,-8.306447101481522,-9.422240809901568,-8.779494447068533,-9.03041725050762,-8.355612981301103,-9.228299139915588,-8.330642057495234,-8.099373494532452,-8.004075148599911,-8.687209826153921,-8.989929866283196,-9.9685986337688,-9.301248465488092,-8.933259187427511,-8.501099683747706,-9.381961417094773,-9.306430672233136,-8.656638607643117,-8.47148578334277,-9.011312928837677,-9.142375963059862,-8.101949213839632,-9.0347482740338,-9.973753981585514,-9.225218506174471,-9.906265103738294,-9.955086365019683,-8.154648950924548,-8.024604877536321,-9.056023385721387,-9.865177755225229,-9.183492178041714,-9.904403441307444,-8.621340033871947,-8.832240764204844,-9.987717047211389,-8.344242428852274,-9.635846244193191,-8.740538260237832,-9.049266336408438,-9.944203565841265,-8.407519389147634,-9.466059946097426,-9.381829330587806,-8.525410699339819,-9.63755477640025,-9.69435512222565,-8.86495503519701,-8.658847024912287,-8.064320443677081,-8.515223368871428,-9.330086368167803,-9.959222577315437,-8.426476184269085,-9.752323194410105,-8.03180703446225,-9.076763962665147,-8.269879700566175,-8.733493771004305,-8.131874310566259,-8.373906237357275,-9.945139699474069,-8.611802055223562,-9.708254058379538,-9.852135433005987,-8.724744130159804,-9.14611688958257,-9.895014189704124,-9.927684831344369,-8.362133113182352,-8.625956382211283,-8.434587787356762,-8.89257183099891,-8.197178901589103,-8.926387308868474,-8.68362811642147,-8.368422327200818,-9.353102842377094,-9.686748698768259,-8.906295144690091,-8.264199725605973,-8.786913296717636,-8.202708448226645,-9.813671470801376,-9.696861164234738,-8.571250055587369,-8.956134672579768,-8.371323022867724,-8.97123964109036,-8.627038997202483,-8.599809302313039,-8.494347031058668,-9.837916952654275,-9.247260790666235,-8.177177758298955,-8.781356362014575,-8.27014854145224,-9.16072873056923,-9.890074064343969,-8.732631784063802,-9.330107238411852,-8.531123294517405,-8.909424937576317,-9.255225279289608,-9.029957326030818,-9.215410186414115,-9.566763752572596,-8.38123350259206,-8.02277944850786,-8.960975110118952,-9.409360200697968,-9.088858610876377,-8.585978932515905,-8.24202109297106,-9.662591807210742,-9.13523099912176,-8.826775123388746,-8.741148349673331,-9.195730846348473,-8.60408273798142,-8.449488024040885,-8.837592524326586,-9.971875433519722,-9.037054862072074,-9.704198126845167,-8.878698322342109,-9.103342857451562,-8.27307915747422,-8.05893737892747,-9.452516530331991,-8.711351975105368,-9.632112892384102,-9.282650984687715,-9.76944170635871,-9.87529960405722,-9.652188714450116,-8.609483095992013,-8.873450194274952,-9.858481124032776,-8.601665945390321,-8.909172702217631,-8.211390932903067,-9.547769916243745,-8.950591092260233,-8.836421572456079,-8.752085263516983,-8.709816638297873,-9.30386935898963,-9.49340525701181,-9.445106407589163,-8.22372498465051,-9.871111560877313,-8.249049546802912,-9.87753907434167,-8.955741187489783,-8.832428926695117,-8.631246009356168,-9.755066318808801,-9.534450751364405,-8.54924648532169,-8.928101770048094,-9.237055672303573,-8.17353287416539,-8.87152075916784,-9.762505592954245,-9.736744614034052,-9.60278678903983,-8.237195186411972,-9.316890650490668,-8.085264826809954,-9.47516571806626,-9.958839891160759,-8.526190393731536,-9.131679415611424,-8.253700125445748,-8.848710619623144,-8.43626666056173,-9.769692285201133,-9.643845863860225,-9.785773240177882,-8.709943253006825,-8.0561819019482],"im1":[6.079769431546503e19,7.920739377328131e19,5.0900364586208846e19,1.3017297173497532e19,3.2490300973824147e19,3.666164376806592e19,9.766701928851633e19,9.67650188380564e19,7.0020387540392346e19,3.80303416203602e19,7.940700556758612e19,8.592023166962318e19,3.734067983968107e19,1.6842904533741222e19,6.657554961323758e19,5.902485984030005e19,2.315022461579159e19,5.790895718930403e19,3.2726846612862624e19,1.10411833012087e19,7.584111642474154e19,9.492456497408297e19,3.130674232388865e19,6.523550508684296e19,6.6897567298144264e19,3.179163832125278e19,2.198264139406846e19,9.49795150110291e19,1.0507079812898068e19,1.5840242490460955e19,8.00757043748427e19,3.351670503536215e19,5.604609575913444e19,2.8700829819915473e19,6.261935075068768e19,6.766287684238221e19,8.260568689440177e19,9.170905684703584e19,4.563204610138265e19,7.751240296332442e19,9.893675273244343e19,6.4854926381674725e19,2.2986985273667846e19,2.645413868670653e19,1.1990911881495448e19,6.949096576438729e19,1.9047824924589085e19,3.355993305395154e19,8.090761124706904e19,2.494885813835923e19,3.3798519168994345e18,1.714906930580229e19,8.66902880811879e19,9.627200660279573e19,2.7248292648418316e19,3.6864936338918743e18,1.1240424038450991e19,8.105974354153542e19,5.722451194583998e19,1.5540110531675478e19,1.9773228453602152e19,3.69102810773608e19,7.1664979602517e19,7.806379605644773e19,1.2372059609634922e19,3.616793642452676e18,6.0672194111963505e19,1.59829989062231e19,3.049761955658825e18,6.834775690174831e19,9.648848163886503e19,5.932629458593382e19,4.940534905036851e19,9.683414589123153e19,1.0373458476029485e19,1.4933802427601228e19,7.3051232043122024e19,4.20289321075669e19,1.6537780792643498e19,6.4851844288585515e19,3.755392749371091e19,2.35704515495196e19,8.876451022889879e19,4.291788723503727e19,4.8356265399453794e19,6.062465050383548e19,2.873359938418797e19,4.607511615548509e19,1.0766851800694977e19,4.333077718469091e19,1.6103193392021043e18,7.221235354163859e19,7.889788829521412e19,9.314006709757146e19,1.2106642494703989e19,3.3958476193404196e18,3.6934768182835495e19,2.558288512049269e19,8.869325848003106e19,6.33027959843857e17,7.93314373574091e19,4.8744982366381924e19,5.590054405446871e19,4.66597042448178e19,9.330123662201761e19,5.916971418919744e19,8.173196618320798e19,4.867347089293464e19,8.865273800541851e19,3.872678477641016e19,6.68167332008176e18,1.6944272506439363e19,8.726308938638228e19,8.265217472933008e19,4.993704490487783e19,9.746062613869981e19,6.1005455646855225e19,2.7575036174128464e19,3.7498525689112486e19,4.845430933928091e19,8.522502814999817e19,2.853949749059519e19,9.622861519591453e19,7.635348593077095e18,5.417026601263636e19,5.163648587373685e19,5.8635756698452435e19,9.5366393137692e19,1.8032034404219965e18,4.155595495378006e19,9.304394802251234e19,5.578932926731438e19,2.3060196397357703e19,7.339382452125497e19,8.982738206807024e19,1.597811576378061e19,3.3413882670352302e19,3.4405447312549695e19,6.3132970800961675e19,6.498024852620274e19,4.176552595914624e19,1.8212970580621234e19,6.9464668034529665e19,5.559798536047378e19,4.464916869021792e19,5.160614852031768e19,3.886351215414174e18,7.772538311014312e19,3.0176337570120937e19,1.4342789958936031e19,9.933276403532566e19,1.7871269646342846e19,6.245803971440911e19,1.5719875794155213e19,6.7954370573327204e19,2.3765073078734442e19,2.816848899712988e19,9.425299480847262e19,3.966901193933139e19,5.413393981589809e19,2.186461564232657e19,7.0221848832638665e19,3.2092963539714703e19,4.6464045368487985e19,1.496861256558294e19,6.862463023766361e19,7.842681331304448e19,5.876923472962989e19,5.307854716948523e19,6.047740306643432e19,5.1325070801621746e19,9.640555691876414e19,6.184219732577325e19,4.3878824993598406e17,1.4386219497595353e19,5.254916591961034e19,7.446840938617917e19,7.565249838995158e18,5.148174333099605e19,3.4711995034722832e19,7.090693741499495e19,2.3865136569875845e19,5.411183678240457e19,3.414116528528671e19,3.2159281520343864e18,9.774195657779539e19,7.642240477817342e19,9.360285573587724e19,4.003076053833515e19,8.13653749308435e19,4.6488687939553165e19,2.905404264386431e19,9.917788132525579e19,7.384194836117683e19,5.187860909409242e19,8.313593441793904e19,3.6369117980743737e19,2.364280545971039e19,9.74104697260771e19,9.044351371937787e19,9.598968871283227e19,5.502861949573102e19,1.923681041189107e19,4.876228042927836e19,3.798289129666182e19,8.683431881753192e19,9.431877080449765e19,4.472576971961598e19,9.634327326715201e19,4.721436478864748e19,7.586947483703973e19,3.2118171911442485e19,3.8390668405225955e19,5.637351519041084e19,8.1725332902546e19,1.892137745159819e19,5.644694284112289e19,3.910470071599767e19,1.5025752532369641e19,2.093025039847901e19,7.20960290509214e19,4.807822753058019e19,6.635762545453772e18,5.550057157578006e19,7.608872462259783e19,5.241544241343821e19,9.296519261479752e19,8.10086946064833e18,5.980745051125213e18,5.219905609813236e18,4.786733310326075e19,8.105203941954082e19,1.8041138519093047e19,8.871698742818013e19,7.185508603793256e19,5.179795213245488e19,4.9373034991847375e19,7.104933393720186e19,4.2612945973820735e19,3.1679526521046917e19,9.934032670563969e19,3.089523646124045e19,4.705316773849795e19,9.090378995403155e19,4.586980385713103e19,6.856716502961486e19,3.0497818754924245e19,6.82474382803373e19,5.9257640288825745e19,6.5722632828022645e19,4.8780691593881575e19,2.2361107900009337e19,2.106111453564077e19,3.101471795029992e19,8.493983896579208e19,3.3744310183800218e19,8.106652142123327e19,7.633697583057406e19,9.000903211345515e19,4.4733915265383286e18,5.841069167432384e19,2.199634789138668e19,4.772035386939959e19,1.8087629384022264e19,7.722121297051124e19,2.1215153666276585e19,9.40898412422959e19,9.912487923189924e19,7.758238720986851e19,6.222649109326101e19,6.940848504749029e19,5.147505187789934e19,3.685147242399101e17,1.3485434721853174e19,2.562807912360456e19,7.1681917947817755e19,1.4502833694397565e19,8.010775350676603e19,9.069014984076932e19,1.8534919857351483e19,4.134147461959697e19,3.6619799351206162e19,2.7219038505083494e19,1.7858510419343055e18,3.2280094073935884e19,9.503004923792128e19,4.166495714957801e19,7.246708975630521e19,7.3283702339975455e19,9.640026445250173e19,5.27805632502536e18,2.259533441719981e19,8.711271746719597e19,1.626906821078561e19,5.278436434864931e19,4.7965667699701555e19,2.9254751524929077e19,9.057590651737594e19,1.3085674076074893e19,5.469319052645717e19,3.4529704956052165e19,9.349958589374798e19,2.5227170701463118e19,5.971564632463705e19,1.7686772148953788e19,6.064446771284599e19,1.1558532852672965e19,8.028973320929547e19,2.5149465538640794e19,7.471116683747797e19,8.290327150675996e19,6.203177689617147e19,7.713230413785938e19,4.327970091187343e19,8.289962164716791e19,5.67416830408876e19,3.706754282951834e19,8.208148816118619e19,3.687985806287546e19,9.364543896741904e19,2.6058762204571673e19,6.3285130472060944e19,2.0809492327759925e19,4.7539298606474764e19,5.2845615933108445e19,9.221502880792843e19,8.153248737683368e19,6.273503436741379e19,9.62925148999914e19,5.635899783869061e19,6.011292305277242e19,4.371620493060978e19,2.8207344069886886e19,6.049204600295999e19,8.0069931324511e19,9.823945915247193e19,8.286580452295093e19,8.776325538639826e19,2.1347532969790108e19,9.408508703183235e19,2.026240078135305e19,9.023808212111394e19,4.011565660898593e19,4.7729362038907855e19,6.0937820533469086e19,3.807525413840241e19,2.5217683273702306e19,9.708679835161762e19,9.504956439884795e19,8.888053785700814e19,3.0935266381789086e19,6.695647811068772e18,2.3886095544902685e19,3.0826305051044336e19,8.916221530771744e19,7.526088408060482e19,7.947495277965242e19,6.906172336488737e19,5.753273838035959e19,9.36870519032764e19,9.09540012364577e19,3.1013765900650725e19,2.183499770687103e17,9.28802459642668e19,3.348267771940614e19,9.932203647259057e19,4.743358376021034e19,3.3850275981428703e19,6.51915193735666e18,7.028754155461315e18,7.019019965056589e19,6.939327007645757e19,5.353482813205668e19,3.1683581897641832e19,2.1911910549124624e19,2.7000061274539065e19,7.922643588175703e19,9.64566394266395e18,3.187594555449056e19,4.364138283642523e19,4.678580545637212e19,8.267195308791783e19,9.407430604394617e18,7.11323554612156e19,5.088229581542443e19,2.4367800905539437e19,3.4791736740960367e19,9.474517569542267e19,3.921373044606975e19,5.366967226934988e19,8.294240459436851e19,1.552854337159939e19,3.1680623207853388e19,6.061979489771185e18,3.5017842336937832e19,5.736694981195818e19,8.009795786990592e18,5.50406592658799e19,5.921063317044367e19,4.172194691533196e19,4.2090290952644603e18,4.048011530352692e19,2.0900512735676514e19,3.956481996689258e19,6.825149316650486e19,9.380906383315422e19,5.834382420023292e19,1.6188397965179847e19,3.574697951554412e19,5.986850466668438e19,7.78686865868265e19,5.1727680477750395e19,2.9379168690564227e19,3.676633483713786e19,2.7268925962037215e19,8.797210191340995e19,5.0027409242719625e19,7.968762076886512e19,7.65130901065867e19,9.0499210597113e19,7.1878001227762115e19,5.063052602594674e19,9.321512759901605e19,5.440267751748531e19,3.818847290784904e19,8.812041482091913e19,6.411935920928562e19,1.906602678222625e19,6.050950013102692e19,6.637602124687609e19,6.123974989123065e19,5.197973399838058e19,5.771096909095516e19,6.734374532890878e19,6.506971826669705e19,1.7142504308058094e19,4.61744331469503e19,3.4101387939607155e19,6.08488690502486e19,3.3586232910669824e19,5.933487995534793e19,9.511261667339115e19,2.7964371502456673e18,7.321806643747393e19,1.993877209524375e18,3.2320754677936937e18,6.185835417055147e19,8.606840413597717e19,1.4944174734617698e19,4.30299849993093e19,8.645811558564277e19,1.8695899003297268e19,3.0873499029545325e19,7.857590379353588e19,2.3467160863249535e19,4.784308875003738e19,9.849057505756696e19,7.429749664755199e19,8.399014537898689e19,7.04153337864074e18,7.549171020258474e19,7.038268873622105e19,7.16222986280679e18,7.452128402420879e19,8.563142084848829e18,2.0154239986519806e19,3.5189122533994942e19,3.919641209691292e19,5.8330588732898255e19,1.063436571062758e19,8.50739293215709e19,1.5360699486830131e19,4.417106640239997e19,8.548285177533098e19,2.5341364349988938e19,1.5610148552485847e19,7.49205973374333e19,4.385940232338991e19,9.204346902782507e19,2.370152335750907e19,4.8816339183248966e19,6.969476802236765e19,7.896945344242835e19,3.81015022858142e19,2.5311633707081236e19,8.623448807716033e19,3.362950454218331e19,5.60621889023072e19,8.599729865610825e19,9.632056628312002e19,3.9934282752471474e19,8.10686790150488e19,2.2422598182188515e19,4.972814470671678e19,2.2348983265806934e19,3.635354313769351e19,2.8475103327429063e19,9.062478433597664e19,7.495240894347672e19,7.617625654850001e19],"qim":[-7.2532176e18,-9.279701e18,-5.3635227e18,-1.3442628e18,-3.7612608e18,-3.975507e18,-1.0614336e19,-1.1904312e19,-7.369034e18,-4.7148274e18,-9.045501e18,-1.0534502e19,-3.7845814e18,-1.7267936e18,-7.54988e18,-6.216038e18,-2.454609e18,-5.9471254e18,-4.0779152e18,-1.1543899e18,-9.291431e18,-1.0023467e19,-3.4983302e18,-6.6151215e18,-6.7213817e18,-3.819583e18,-2.2550887e18,-1.0583727e19,-1.0521674e18,-1.7567573e18,-9.31994e18,-3.5415742e18,-6.470364e18,-3.057181e18,-7.1363384e18,-7.309362e18,-1.0065898e19,-9.405597e18,-5.4608004e18,-8.9753497e18,-1.2309975e19,-7.6729815e18,-2.8059902e18,-2.9664483e18,-1.4951593e18,-7.628837e18,-2.0389657e18,-3.6211643e18,-9.782153e18,-2.5040008e18,-3.443599e17,-1.8352159e18,-9.486156e18,-1.0583853e19,-3.2529244e18,-3.7959962e17,-1.1384817e18,-8.543637e18,-6.4724005e18,-1.6822812e18,-2.2977693e18,-3.9479617e18,-8.064063e18,-8.104887e18,-1.4123084e18,-3.740574e17,-6.648254e18,-1.9059631e18,-3.4899262e17,-7.718823e18,-1.1023211e19,-7.168219e18,-5.489577e18,-1.0174442e19,-1.2365777e18,-1.6068712e18,-8.979366e18,-5.233066e18,-1.6984105e18,-7.126785e18,-4.624867e18,-2.8939622e18,-1.0750357e19,-5.118976e18,-4.8582394e18,-6.828736e18,-3.4250686e18,-5.218676e18,-1.2918625e18,-4.6961434e18,-1.9005009e17,-7.353079e18,-8.275036e18,-1.1343833e19,-1.3009977e18,-3.44076e17,-4.358142e18,-2.811338e18,-8.911941e18,-7.245665e16,-8.847122e18,-5.5054944e18,-6.317153e18,-4.723542e18,-9.534085e18,-6.980699e18,-9.745176e18,-5.8791513e18,-1.0151836e19,-3.8881147e18,-6.8467386e17,-1.7172849e18,-1.0382697e19,-8.99808e18,-5.330679e18,-1.0469155e19,-6.87858e18,-3.2225086e18,-4.370467e18,-5.301044e18,-1.0202888e19,-2.9738862e18,-1.0788298e19,-8.854463e17,-5.83262e18,-5.8403067e18,-6.2197306e18,-1.0186248e19,-2.0875221e17,-4.8386566e18,-1.1575369e19,-5.8717703e18,-2.482022e18,-8.128172e18,-1.0912961e19,-1.6358173e18,-3.3717931e18,-4.1281574e18,-7.3743305e18,-6.614909e18,-5.0449513e18,-1.8463332e18,-7.475444e18,-5.868696e18,-4.9529425e18,-6.3973055e18,-4.4851213e17,-9.507901e18,-3.4170567e18,-1.5078773e18,-1.0146922e19,-2.1977852e18,-6.984646e18,-1.6496795e18,-8.392748e18,-2.581873e18,-2.90037e18,-9.803209e18,-4.2020948e18,-5.847242e18,-2.2079715e18,-8.401783e18,-3.3573258e18,-4.9621037e18,-1.6350787e18,-8.314521e18,-8.595183e18,-6.366356e18,-5.733838e18,-6.601083e18,-6.235895e18,-9.736569e18,-6.369445e18,-5.0524995e16,-1.692183e18,-5.9393073e18,-8.64061e18,-8.03614e17,-6.384435e18,-3.8287298e18,-8.1417346e18,-2.7778713e18,-6.074193e18,-3.487723e18,-3.5384315e17,-1.069181e19,-8.265959e18,-1.1012517e19,-4.5755245e18,-9.364052e18,-5.222125e18,-3.3272393e18,-1.2388701e19,-8.744606e18,-5.560462e18,-8.8571753e18,-3.6406787e18,-2.7451281e18,-1.1488641e19,-9.898671e18,-1.1589873e19,-5.8761777e18,-2.2061897e18,-5.663647e18,-4.1639542e18,-9.241965e18,-1.1400374e19,-4.5654793e18,-9.91986e18,-5.191565e18,-7.722112e18,-3.7285245e18,-4.4172778e18,-5.682957e18,-8.450132e18,-2.2874824e18,-5.7307013e18,-4.430314e18,-1.5050178e18,-2.172247e18,-8.036423e18,-5.017978e18,-7.188054e17,-5.8261137e18,-9.214795e18,-5.4127726e18,-1.10981e19,-8.546623e17,-6.8166326e17,-6.066933e17,-4.891831e18,-8.150696e18,-2.1021321e18,-9.560699e18,-7.8384536e18,-6.020031e18,-5.5662424e18,-7.4831816e18,-4.780925e18,-3.1987484e18,-1.0178572e19,-3.0991275e18,-5.2906125e18,-1.0220791e19,-5.613241e18,-8.522595e18,-3.243245e18,-8.4143025e18,-6.1732416e18,-7.941717e18,-5.0831874e18,-2.2729855e18,-2.1789558e18,-3.3768985e18,-1.048066e19,-3.4302712e18,-8.640078e18,-7.8913203e18,-9.904461e18,-5.3368848e17,-6.673943e18,-2.346512e18,-5.325739e18,-2.2246072e18,-8.327268e18,-2.2487584e18,-1.0389988e19,-1.1200104e19,-9.034648e18,-7.145184e18,-7.459811e18,-5.8886847e18,-4.1320437e16,-1.6786344e18,-2.6382776e18,-8.3488084e18,-1.7357686e18,-8.8712155e18,-1.105514e19,-1.9653233e18,-4.8274795e18,-4.3855069e18,-3.1926365e18,-1.9403094e17,-3.4432457e18,-1.1428215e19,-4.400156e18,-8.2167257e18,-7.399465e18,-9.849389e18,-5.820088e17,-2.2656542e18,-9.506017e18,-1.9209682e18,-5.5930986e18,-5.682411e18,-3.319811e18,-1.0302299e19,-1.5949058e18,-6.786072e18,-3.7300907e18,-9.379263e18,-2.713168e18,-6.2728705e18,-1.7913228e18,-6.456871e18,-1.1736564e18,-8.3600663e18,-2.5848969e18,-9.145648e18,-1.0068047e19,-6.243565e18,-9.00607e18,-4.4840443e18,-8.3458375e18,-7.0663474e18,-3.8767417e18,-9.326203e18,-4.5098534e18,-1.0995585e19,-2.7496232e18,-7.2696636e18,-2.0812117e18,-5.9175936e18,-5.951089e18,-9.718742e18,-8.954634e18,-7.551004e18,-1.1851534e19,-5.729728e18,-7.017793e18,-5.2238067e18,-3.2097488e18,-7.372257e18,-9.419362e18,-1.1060169e19,-8.5129506e18,-1.0895444e19,-2.3662147e18,-9.512547e18,-2.4405846e18,-1.0264143e19,-4.5601483e18,-5.4441444e18,-6.571974e18,-4.2749328e18,-2.6074149e18,-1.0468118e19,-1.0423492e19,-1.1059576e19,-3.5642662e18,-7.5098754e17,-2.396634e18,-3.823286e18,-9.230043e18,-9.0694575e18,-8.670597e18,-7.925997e18,-5.8907396e18,-9.756379e18,-9.631879e18,-3.1308107e18,-2.7144228e16,-1.1360785e19,-4.1547469e18,-1.033229e19,-5.6280135e18,-3.8216825e18,-6.969324e17,-8.2823304e17,-8.1134134e18,-7.3375667e18,-5.903445e18,-3.3772566e18,-2.4960555e18,-3.153826e18,-8.1905705e18,-1.0565963e18,-3.9212994e18,-4.487842e18,-4.71408e18,-9.335463e18,-1.01694476e18,-7.372718e18,-6.215558e18,-2.4790854e18,-3.6565243e18,-1.0212997e19,-4.0774468e18,-6.044203e18,-8.4646606e18,-1.5656343e18,-3.259821e18,-7.36347e17,-3.8987525e18,-6.16636e18,-9.623201e17,-6.7620207e18,-7.400652e18,-4.87239e18,-4.831292e17,-5.0092573e18,-2.2574095e18,-4.786949e18,-8.0715215e18,-1.0088692e19,-5.92439e18,-1.8973577e18,-3.8582718e18,-6.614115e18,-8.9557723e18,-5.4276237e18,-3.0523595e18,-3.7974435e18,-2.9840487e18,-9.582387e18,-5.864211e18,-8.709302e18,-8.230135e18,-1.1273879e19,-8.592792e18,-5.238333e18,-1.0378352e19,-6.1674713e18,-4.096681e18,-1.0873221e19,-6.717937e18,-2.1969148e18,-6.3936326e18,-7.8469055e18,-7.129969e18,-6.119783e18,-5.785291e18,-7.8470303e18,-6.947405e18,-1.7745694e18,-5.61188e18,-4.1260078e18,-6.389125e18,-3.5681544e18,-6.2910614e18,-1.0656348e19,-3.140293e17,-7.4648395e18,-2.1764819e17,-3.915887e17,-7.616575e18,-9.496207e18,-1.5721638e18,-4.7103633e18,-8.8184824e18,-1.9061855e18,-3.2369927e18,-8.001526e18,-2.9290935e18,-5.250879e18,-1.180678e19,-8.4000957e18,-1.0305335e19,-7.924843e17,-8.406697e18,-7.884779e18,-7.644251e17,-7.743496e18,-9.5365206e17,-2.3382066e18,-4.0164544e18,-4.2629608e18,-6.6730856e18,-1.1201888e18,-1.0432983e19,-1.6852224e18,-4.68522e18,-8.676787e18,-2.6275832e18,-1.6690673e18,-7.6611386e18,-5.189312e18,-9.258162e18,-2.5507746e18,-5.1442125e18,-7.064837e18,-8.616049e18,-4.0316062e18,-2.6498282e18,-9.055769e18,-3.3908177e18,-5.893573e18,-1.0388893e19,-1.0693031e19,-4.9754226e18,-8.354494e18,-2.3926681e18,-5.2782237e18,-2.3738475e18,-4.050971e18,-3.177437e18,-1.1127968e19,-8.7056054e18,-8.588793e18],"qre":[3.1219542e7,6.7262375e6,1.9583776e7,1.3757128e7,7.0122635e6,3.0492718e7,8.333281e7,2.7786786e7,9.609142e6,1.8155016e7,8.249207e7,3.824492e6,151927.42,9.599209e6,2.2745828e7,292486.06,1.5543646e7,2.1317154e7,6.5335905e6,1.1601291e6,2.3871712e7,4.9636188e7,2.5285454e7,4.7013144e7,1.5213949e7,2.2227818e7,1.2414885e7,4.5027148e7,9.834171e6,1.5559499e7,3.5154856e7,4.9899305e6,5.1709924e7,2.3319992e7,2.8533516e7,7.249853e7,4.780064e7,6.3560396e7,3.2760656e7,9.350148e7,2.7534324e7,2.2906102e7,5.022802e6,1.4982519e7,1.4849764e7,5.2302916e7,1.2684491e7,2.5748792e7,8.829237e7,2.0696882e7,978061.5,8.579137e6,9.973937e6,1.0997843e8,2.3599072e7,1.8088758e6,8.509938e6,8.733641e6,5.0818696e7,1.7963142e7,4.429695e6,9.48175e6,4.798072e7,4.4875936e7,2.38683e6,405025.16,3.9040692e7,3.587718e6,2.4000755e6,3.6548776e7,2.1487128e7,6.6048696e7,7.0169915e6,4.303829e6,9.553019e6,441614.53,1.0311974e8,5.6549524e7,1.0119997e7,5.5280084e7,3.3747612e6,6.9336355e6,1.1460814e8,1.7087694e7,1.6457359e7,3.6538304e7,1.8585456e6,1.7083376e7,1.4405562e6,4.424107e7,472953.0,4.4212676e7,1.182739e6,4.95197e7,1.0390754e7,1.4942968e6,9.627769e6,2.552808e7,5.1668972e7,36335.17,8.2954184e7,1.3642658e7,5.5106816e7,3.9222005e6,8.519736e7,4.9724616e7,9.833288e7,5.800563e7,3.973918e7,2.7098172e7,2.0778718e6,5.0593725e6,4.7945804e7,9.02897e7,3.6630285e6,9.1844664e7,5.699553e7,2.6042722e7,2.6284016e7,3.8405356e7,8.3106e7,1.4083795e7,9.945597e7,2.4240652e6,3.9085384e7,2.9058206e7,2.5888154e7,8.607178e7,869905.44,5.9345915e6,7.645206e7,2.8890598e7,8.0600805e6,7.467961e7,2.0756516e7,1.0651745e6,1.3044536e7,4.322929e6,4.06532e7,3.2123858e7,4.021216e7,952336.6,7.770667e7,6.613566e6,1.3582747e7,2.9825668e7,1.4607584e6,7.375453e7,7.859125e6,5.711226e6,5.3367844e7,596322.4,9.974741e6,1.2678977e7,5.5147816e7,2.3401454e7,2.6787056e7,9.136318e7,3.7858184e7,6.4583355e6,2.1100694e7,4.194275e7,2.7444028e6,3.0114984e7,8.3656655e6,7.4070216e7,8.037898e7,4.3505892e7,5.021324e6,6.764956e7,2.9771782e7,9.086348e6,3.3157096e7,346457.72,972551.3,5.799207e7,1.224627e7,6.440419e6,6.894139e7,2.3331072e7,1.7082958e7,2.0889792e7,1.8163312e7,3.3413922e7,141406.73,3.1944374e7,5.35966e6,9.312227e7,3.866173e7,2.9769848e7,2.3643086e7,3.6703092e7,1.1072653e8,3.984202e7,5.381782e7,8.199408e7,2.2319592e7,2.3815052e7,7.1776744e7,4.9847445e6,1.0991076e8,5.4488955e6,6.435733e6,4.07595e7,1.4800194e7,5.1771655e6,1.10291624e8,3.7538896e7,9.745312e7,4.7866656e7,1.0405036e7,3.813825e7,2.060115e7,2.9131902e7,3.1304948e7,6.5458115e6,3.267311e6,2.0140396e7,2.169481e6,5.7170435e6,2.4478584e7,2.474351e6,4.0969868e6,1.9687144e7,3.7256228e7,3.8495036e7,1.02760616e8,1.4737715e6,2.4012612e6,3.6634748e6,1.706164e7,5.576334e7,1.4949405e7,1.0131522e8,7.435516e6,4.068299e7,6.037071e6,2.5120066e7,3.1074258e7,1.5032491e7,6.457341e7,1.629956e7,4.3608224e7,5.752802e7,1.115591e7,6.79686e7,2.230286e7,8.3803096e7,4.860305e7,7.118614e7,4.3669996e7,3.8553778e6,5.967507e6,3.653775e7,1.1760779e8,2.71195e7,8.171806e7,6.8012456e7,1.0626644e8,2.8762545e6,5.6333576e7,1.7507458e7,5.8818145e6,2.181804e7,7.7308136e7,2.1349366e7,7.2871896e7,9.815282e7,2.7113714e7,7.73019e7,2.1979914e7,6.51993e7,101689.31,9.040662e6,2.5408194e7,8.006672e7,4.5074395e6,2.3691632e7,1.1887039e6,1.1001855e7,1.9201526e7,3.680801e7,2.5933462e7,1.5872221e6,1.1262133e7,4.767415e7,4.6095068e7,5.057571e6,2.7690002e6,2.747293e7,1.1895289e6,2.9458532e6,5.3218616e7,6.0039825e6,1.0866419e7,2.4597516e7,2.7610118e7,8.754354e6,1.7334164e7,8.085634e7,5.798149e6,3.1557048e7,1.9440316e7,5.6767548e7,3.3128982e6,5.746439e7,5.2905775e6,5.6984692e7,1.3361352e7,5.4591164e7,8.838286e7,7.4999235e6,1.0102545e8,3.889496e7,2.5988536e7,7.895931e7,3.9608144e7,8.989445e7,3.387542e7,8.168693e7,1.8797654e7,4.11421e7,1.3921874e7,1.8157318e7,1.6667956e7,2.379393e7,9.159911e7,4.677331e7,9.767638e6,4.28191e7,6.671434e7,5.656009e7,1.7269402e7,6.533079e7,4.1553124e7,7.499435e7,6.0716396e7,1.0097152e8,1.1169079e7,7.6262936e7,2.4099062e7,5.0633212e7,1.6729946e7,5.721698e7,3.5923892e7,4.2592304e7,3.4348692e6,2.6661802e7,4.554545e6,1.00232376e8,8.685411e6,8.330261e6,779274.6,1.3419899e7,9.050535e7,5.6647624e7,1.6564581e7,8.238377e7,5.896404e7,1.9243246e7,5.467463e7,1.2676968e7,138292.66,3.7375856e7,1.4175911e7,9.567596e7,1.0966459e7,3.0210158e7,1.6790135e6,4.764037e6,1.6567848e6,5.582715e7,5.5913348e7,2.02528e7,1.5259593e7,6.737245e6,3.9095828e7,3.689335e6,2.3620356e7,1.2614965e7,4.05218e7,8.6067864e7,3.008393e6,1.6414996e7,4.7502588e7,1.3395087e7,1.0896402e7,4.2343376e7,8.024264e6,9.043048e6,5.4282548e7,7.1105135e6,2.853472e7,4.3605275e6,1.3207781e7,1.2614364e7,4.6657055e6,8.3451475e6,3.1893334e7,1.0965481e7,5.4574875e6,4.9370124e7,1.9393236e7,3.2818584e7,6.0675536e7,6.0316708e7,1.3972893e7,8.838229e6,9.688058e6,7.020029e7,2.3333166e7,6.4108085e6,1.2421416e7,1.1279261e7,2.7235852e7,4.3894084e7,3.3292346e7,4.435456e7,1.713933e7,8.2207976e7,3.6000892e7,1.3424281e7,3.9300668e7,5.0900444e7,1.3762685e7,6.955261e7,5.565086e7,7.200936e6,2.4534538e7,8.271437e7,6.7190984e7,2.5561032e7,2.1058845e6,2.9800658e7,4.312218e7,1.6012331e7,2.7581452e7,4.9227136e7,3.8446892e7,2.2561525e6,4.4058332e7,1.0819962e8,172458.88,5.5431544e7,1.3073748e6,3.6411072e6,1.1847029e7,1.3768857e7,8.81032e6,1.6848228e7,1.7494152e7,3.8409338e6,1.7803284e7,2.1220424e7,1.9954008e7,6.6875415e6,3.4245024e7,6.901033e6,1.2424551e8,6.97191e6,2.7477286e7,1.1638548e7,7.930554e6,3.9183816e7,9.006612e6,1.9489134e7,4.21094e7,2.346376e7,4.157901e7,3.6127282e6,4.6681412e7,6.9733715e6,1.0499723e7,9.865063e6,2.3823872e7,4.686157e6,1.6238098e7,4.3108908e7,2.4680364e7,7.578414e6,2.2666404e7,1.8534502e7,7.71114e7,2.6741184e7,837507.0,8.218274e7,2.4176652e7,2.9141754e7,1.02025704e8,8.834845e7,5.508623e7,7.669532e7,1.5441253e7,4.4289924e7,4.0310358e6,2.714493e7,1.2701944e7,8.714549e7,5.3424332e7,1.8012042e7],"re2":[-8.3821689305667,-8.535553530181987,-9.49010030797454,-9.683595568753814,-8.63814113996162,-9.221878961450448,-9.201425484053182,-8.128568257069952,-9.501975612126742,-8.066115318767103,-8.778618753969921,-8.156078591265851,-9.866528725166603,-9.753860701299086,-8.818093159748521,-9.495576030958885,-9.431327466555494,-9.737301543994041,-8.025387229369287,-9.564518696388124,-8.162480170395723,-9.47023328852589,-8.949052459553796,-9.861572847297184,-9.952948518563966,-8.323326782054695,-9.748016667769193,-8.974109108261912,-9.986128379111818,-9.016750661085533,-8.591868985290937,-9.463787384063572,-8.661968827687973,-9.38800424978823,-8.774716934184926,-9.25701507004646,-8.206489106117811,-9.750476409981644,-8.356292512669038,-8.636142759054406,-8.0371207263004,-8.452375966183594,-8.192112143512942,-8.917781825998304,-8.019822584145308,-9.108984652844999,-9.341905704181787,-9.267718904942415,-8.270940676191131,-9.963598625760085,-9.814883376124554,-9.344442276098121,-9.138610621068995,-9.096120483527844,-8.37655265700727,-9.711531571100068,-9.873170849592375,-9.487732790988037,-8.841311955746537,-9.23752213647273,-8.60540225137143,-9.349199247098438,-8.886956710212715,-9.63169353590428,-8.760169257696706,-9.669087181552126,-9.126033343901076,-8.38578635523991,-8.738757193409876,-8.854686681555185,-8.753209935143406,-8.276295931189562,-8.999846068591264,-9.517390964115311,-8.388845564239812,-9.29371495982333,-8.13545531157294,-8.031415588453555,-9.7372103135805,-9.099733710759324,-8.120002240114314,-8.144698714721612,-8.256889294496647,-8.384077393770283,-9.953454543887151,-8.877873163708081,-8.389203909067538,-8.828890929038874,-8.334364318826957,-9.22688576158847,-8.47313104754289,-9.820696202016112,-9.534446113863376,-8.210635023636446,-9.305660239436307,-9.869469578843521,-8.474888377054429,-9.099896399110374,-9.95218165507046,-8.73664406481982,-8.96692026517411,-8.853879367938054,-8.849009600409545,-9.878117913870245,-9.786071737578716,-8.476187064172196,-8.386915598298149,-8.278996344014816,-8.732680251193106,-9.960298212003522,-9.758914383570186,-9.866896167224393,-8.404664518912671,-9.185534251869505,-9.3678565800463,-9.30931085678828,-8.868903444027056,-8.557010040955259,-8.5799817817639,-9.14052244810224,-8.353029637391996,-9.596701549780452,-8.919721363551105,-8.623163730169288,-9.28746695361994,-8.84139976534923,-9.42738001221988,-9.36226859370823,-8.638009123806661,-8.588324532255546,-8.038097542685758,-9.50127874756964,-9.29089143149655,-9.02956064597333,-8.231256333300458,-9.76766586452917,-9.909826286116315,-8.334335664042847,-8.561180417239752,-9.82330250203727,-8.27867784384724,-9.864401047088888,-9.29238056517442,-9.473651430349022,-9.014676410780682,-8.066857412095352,-8.664985343202236,-8.174820401973593,-8.83109087900243,-9.511907198722039,-9.789447583945188,-8.131490359893327,-8.942190796200151,-9.529049343897077,-8.096795587758626,-9.204586966867316,-9.71203237973993,-9.614503984057936,-9.440293814615686,-9.258029934163925,-9.90258064082263,-8.357970379788078,-9.55908479136874,-9.363779989003717,-9.154674616756456,-8.253587862675657,-9.124507287423544,-9.231220116901005,-9.257070651145773,-9.161739033051948,-8.230585645124428,-9.90138951765179,-9.709196646566506,-8.684577827686802,-8.501573382848747,-8.847692288347627,-8.618420383437048,-9.414034091784835,-8.063632686990617,-9.066190895385398,-8.709070167374374,-8.59115981168141,-8.908481752426903,-9.788955501630765,-9.088569272491844,-9.141759355520263,-9.24543777821637,-8.499678658340882,-8.748889485100888,-8.689120097848782,-8.902255280728205,-8.732176473258749,-8.005511571939866,-8.444285454080521,-9.32990981311179,-9.386280431239001,-9.989653509552504,-8.612641372221109,-8.478850217207055,-9.136934536243858,-8.282203776419177,-9.3646953224529,-8.71947299756987,-8.609696529469465,-9.12183259032301,-9.395655482502514,-8.273304973580437,-9.796511399972637,-9.712160813633849,-9.094437651884968,-9.82496477849358,-8.614177779384026,-8.691023552369275,-9.919749779870765,-9.671485883191723,-8.271703718389942,-9.849919266196896,-8.826620695513046,-9.983769915358224,-9.63529972429192,-8.971159401386101,-9.581195183532419,-9.231654111853704,-9.526173955218585,-8.257234988722795,-9.683658787861935,-8.376676378959118,-9.478445433275345,-8.773752858429864,-8.603863037630598,-9.785156459041414,-9.944185960675927,-8.582304488586415,-9.279341982985837,-9.166998133210717,-8.60426656499489,-8.870082817742345,-9.494535154239752,-8.913117615350492,-9.903725297366408,-9.75975085432498,-9.969011307158416,-8.893709562961671,-8.894007650827392,-8.171715025868256,-8.045338512122449,-9.403487963647082,-8.110884455550234,-9.599112315508828,-8.275620111854524,-9.596476277176537,-9.837770900905719,-9.66569153256509,-9.184379536041227,-8.10443616857602,-9.837213570897642,-9.382614416723797,-9.67353599656458,-9.087726060945164,-8.382027788805132,-8.752051009848927,-9.374061234157695,-8.960325550074934,-8.13070711944336,-9.273295157299962,-9.434163114172271,-9.055818150518585,-8.850353221194847,-8.58720549345233,-8.708872094292918,-9.304321788273352,-8.741349923267242,-8.918461801811196,-8.03357454288503,-9.713943150464322,-8.585885781009495,-8.355279599341472,-9.030075787396877,-8.203437598187934,-9.43097767100979,-8.563780864246413,-8.350186598026125,-8.52556778030485,-9.20395030008088,-9.37490269223815,-8.315388510885251,-9.468972152208808,-8.819460500292347,-9.90391957606842,-9.787435287131174,-9.068688596260516,-9.97298405765257,-9.163956003698209,-8.469202388985334,-9.437410781143718,-8.44107701641201,-8.812173656413231,-8.791815262658355,-8.204668948016671,-8.059624608285283,-9.257068488846333,-9.968755484843816,-9.298048746062507,-9.519669037717902,-9.873582182087418,-9.392237626919389,-9.848310684723627,-9.603958846929622,-9.72938862507836,-8.16903955913647,-8.234296191559775,-9.935313659074176,-8.564480042484538,-9.651935040101147,-9.933050286326036,-8.029846079310865,-9.561519799620754,-8.801169866658851,-8.177618206260178,-8.51664053883222,-9.477212344015781,-8.705373129724943,-9.99873912387941,-8.033552627636244,-8.879990343536887,-9.488371028221973,-9.105061927757049,-8.308170870867157,-8.124899804789857,-9.83624280152086,-8.56578740516255,-8.368648850906748,-8.78802187249222,-8.205362989444353,-8.500568690600568,-8.882274733764485,-9.734086804665989,-8.055041644646565,-9.021807152473675,-9.890630437483255,-8.302273890605477,-8.791583631454408,-8.797006558242533,-8.767100626145696,-9.272377355972937,-8.906631239707753,-9.671526638453576,-9.274522561185435,-9.118782983872192,-8.036523023965696,-8.679280334474011,-8.91579024859285,-9.966517285225615,-8.062778442864099,-9.65999942158155,-8.298279089880943,-9.166029774659869,-8.713316640429804,-9.76664037021599,-9.602645943296093,-9.44301758672692,-9.905986147759272,-8.04406621542324,-8.175512292321557,-8.058897493146317,-9.61278100648249,-8.428121433482788,-8.857427464004289,-9.354066142772812,-8.486444845324415,-8.651130468674415,-9.457259152700066,-9.06840541516348,-9.381455588465577,-8.778614589730205,-8.561049368551336,-9.672883622215055,-9.128995734317577,-8.128924577760785,-9.724358373165666,-9.924695378412846,-8.855688986109104,-9.250679533466768,-9.648050381151814,-8.186280715122615,-9.829350987101618,-9.51497429726615,-9.276921301196497,-9.617226320839508,-8.879529373832355,-9.798668705603337,-9.91837215101842,-9.718515321816168,-8.23250417509741,-8.981806818645989,-9.303210939125304,-8.323421248298114,-8.139676540286107,-8.000731129252781,-8.562932459893172,-8.712016558940705,-8.08106161833554,-9.258626483800372,-8.265143391930518,-8.455839666850803,-9.29843723031312,-9.848072964163702,-8.532075363445706,-9.26502276601074,-9.051626744372568,-8.694804150053985,-9.530447323262049,-9.625069036140115,-9.681864584471795,-9.138231219369844,-9.180603599828261,-8.530969746260752,-9.149714158834914,-9.296699851393194,-8.027336137894535,-8.364918118416742,-9.665388968043391,-8.981688676208808,-8.820904660678323,-9.321806949823275,-8.104351766005792,-9.544501473106072,-8.678545691128289,-9.464024332249938,-8.45887888042147,-8.5890624130782,-8.493721878692607,-9.975464441125833,-8.582067054792493,-9.366046550099265,-9.660092750508062,-8.227979690855227,-8.264984148774056,-9.523819398427174,-9.412773999885244,-9.4316163121592,-8.925442654252526,-8.905019637966157,-9.808391718964499,-9.161009589190288,-8.253750691124925,-8.121544645166361,-9.063450483136,-9.505482562600767,-9.13517308696821,-9.804194791538979,-9.808016913013656,-9.53770978402865,-9.82011554592789,-8.011747861298797,-9.111443997276703,-8.34186586440429,-8.844838967678385,-8.150160808918445,-8.885392219400197,-8.979949189147021,-8.926400214993876,-9.369433083231153,-9.623725848842914,-8.979314548104384,-8.619528993576576,-8.761239923757246,-9.194645304460865,-8.741171971229587,-9.493369376454798,-8.154324856771245,-9.114938380592946,-9.427747086314678,-9.851901479094952,-9.644362492532396,-9.352616920406412,-9.779303555118481,-8.451872048365976,-9.941873372099336,-9.291891917994171,-9.48956526833977,-9.865021667975922,-9.165389671761558,-9.450700371837282,-9.552178029005823,-9.522602133308961,-9.917815113996527,-9.512427989472384,-8.277811678947133,-9.007789408867911,-8.026309661914778,-9.703602295940023,-9.371377766435149,-9.42137890129915,-9.414667111154573,-8.974031032523168,-8.961658329649715,-8.143874897181808,-8.60967168150805,-8.869263168575152],"im2":[3.607881164131189e-11,6.186853482371324e-12,3.4651103884967264e-11,9.910149969673776e-11,1.6104416218889407e-11,7.073315406979375e-11,7.22400956131202e-11,1.897352765304188e-11,1.2390473103751266e-11,3.105955387893221e-11,8.00581941781038e-11,2.9610174974234572e-12,3.960775395447258e-13,5.422149974669196e-11,2.6566624522378226e-11,4.467980908399616e-13,5.97232374543617e-11,3.4902837923998465e-11,1.2858183613807462e-11,9.612062893849872e-12,2.097119174868848e-11,4.689657170438845e-11,6.468253000877011e-11,7.008541787026081e-11,2.2528646926122864e-11,4.843706670468441e-11,5.366551362262966e-11,3.817922826349999e-11,9.333617862117065e-11,7.98608351075563e-11,3.24085683956192e-11,1.3334078212583879e-11,6.92248164623632e-11,7.161112627165573e-11,3.508431429881335e-11,9.181649250009562e-11,3.897073761324588e-11,6.589099362077067e-11,5.013140797073904e-11,8.996776530041297e-11,1.7977020620703867e-11,2.5232822007838874e-11,1.4664110049606007e-11,4.504067611834462e-11,7.96520174020683e-11,6.245073536843693e-11,5.81163828140168e-11,6.589940686064252e-11,7.465237477827562e-11,8.235436792809865e-11,2.7876506948586846e-11,4.3682732340738905e-11,9.608519589894316e-12,9.451917458454003e-11,6.076958357384898e-11,4.6277561761489975e-11,7.38001011879836e-11,9.698732565457147e-12,6.941844362548183e-11,9.8636838855056e-11,1.6589698124226683e-11,2.2453805257332337e-11,5.287689314587083e-11,5.3329704785702806e-11,1.480485898546071e-11,1.0469556579883644e-11,5.3591007265322245e-11,1.5785104978399344e-11,6.009774193843237e-11,4.192710966306378e-11,1.7062300835102586e-11,7.625863228397321e-11,1.150395336271447e-11,4.025892903218587e-12,6.480692122199314e-11,2.5541755241307198e-12,9.342820306050994e-11,8.678902863141158e-11,5.8019261380196634e-11,7.05835788785139e-11,5.925155753157607e-12,1.95138576396396e-11,8.802561446657575e-11,2.7986951905821335e-11,3.3717475737227336e-11,4.750256134958172e-11,4.5522330964999586e-12,2.8901442381830235e-11,9.293645645451144e-12,8.692394892307977e-11,2.1085935686373338e-11,5.90499852689107e-11,1.3627433304476467e-12,3.584222506852323e-11,7.432205447338397e-11,4.286235305528864e-11,1.8722260186246985e-11,8.263071424114554e-11,5.7699998354717546e-11,4.38107021630455e-12,8.407745112283445e-11,2.1939977151920964e-11,7.71931203505726e-11,8.202308465860997e-12,8.74491304664181e-11,6.037720403002853e-11,8.462745988782656e-11,8.168328961370564e-11,3.4183920486710817e-11,6.941818776489142e-11,2.961667484925952e-11,2.906931571644692e-11,3.881153355050835e-11,9.217068237427521e-11,6.437212793919223e-12,8.166948665900316e-11,7.348723832595213e-11,6.915352197210315e-11,5.160006124263641e-11,6.622186345900825e-11,6.803826127049419e-11,4.544826613602031e-11,8.222979166864131e-11,2.3607422462315443e-11,6.223690369010978e-11,4.399002503440241e-11,3.923923268890399e-11,7.910929978512227e-11,3.599598878926952e-11,1.0533541348686804e-11,5.30893757644904e-11,4.674869618957582e-11,3.017109957176244e-11,8.296133622121639e-11,1.565589627232471e-11,6.36028251758668e-12,3.833837620264463e-11,8.727557394953989e-12,4.719605800421537e-11,4.770471764709946e-11,6.598745905091803e-11,5.088042044723063e-12,9.659358412255451e-11,1.0676070694751916e-11,2.4721479168751825e-11,3.760949345689654e-11,2.8220956027948675e-11,6.341357176845294e-11,2.0311233767453952e-11,3.602723227674878e-11,5.1487703964901487e-11,2.206303555748457e-12,1.2770301136512596e-11,7.323761055901652e-11,5.320314686959581e-11,8.34280825123309e-11,8.969776963913248e-11,8.960449544489649e-11,8.505100035063859e-11,1.022558245212445e-11,9.46349677315411e-11,4.172403511597356e-11,7.813948007211758e-12,5.6828735981404656e-11,4.683868665625163e-11,7.352738821352035e-11,8.532901635870486e-11,6.308356672763732e-11,8.106740540400048e-12,9.389181405626707e-11,3.92949515324171e-11,9.240161094077404e-12,5.054266962566297e-11,5.955133832187072e-11,4.886118977467679e-12,8.638987326266783e-11,1.2214820505539048e-11,7.544706076234592e-11,8.707396849520852e-11,5.5246505511829095e-11,1.8273337875903983e-11,6.460613024335081e-11,2.663852370885175e-11,9.378250801183673e-11,3.632050622837113e-12,2.7313218211311188e-11,5.994754202853325e-12,7.187361317392493e-11,7.392533958542507e-11,2.7624128353531186e-11,4.030481420310701e-11,9.632545805985464e-11,7.155088389294146e-11,3.8473704736049274e-11,9.03010312823622e-11,8.689219473605839e-11,6.124270136083905e-11,7.471800382350723e-11,5.297269160586088e-11,4.601150308034752e-12,7.854299163125245e-11,8.683746435069894e-12,2.5435795800599927e-11,6.196129457195319e-11,3.242228173461512e-11,5.263259001323217e-12,8.003914701575558e-11,8.055019346993422e-11,9.541268095313196e-11,8.385145291737433e-11,1.3238490508677236e-11,8.811250653169992e-11,4.0532899257344704e-11,5.085049727390396e-11,3.582966020394508e-11,2.3670128094108778e-11,5.615847172884614e-12,4.0126192532331e-11,1.439158469069809e-11,2.5358727740470667e-11,2.7325747047596207e-11,4.724458645842278e-12,5.261779968351057e-11,3.2190089396757595e-11,3.338472968414439e-11,6.88690963470156e-11,7.756214569148611e-11,1.6344530270129167e-11,3.0906851330305585e-11,5.19538107108667e-11,3.41284895911995e-11,6.803358160181369e-11,6.103343618329053e-11,9.83336636432621e-11,8.695765647698439e-12,5.81470877816517e-11,9.620369508753146e-12,3.187191785782597e-11,5.793199383756109e-11,4.654247089887818e-11,6.19163916109947e-11,5.243104494690506e-11,7.330698353561923e-11,5.0060183929129365e-11,1.62406897608275e-11,6.416242813991889e-11,6.466506193807685e-11,8.078117095138165e-11,7.557555502705125e-11,7.417911225850572e-11,8.244395723422115e-11,1.6686561392527976e-11,2.6471427734589847e-11,9.937418805098133e-11,9.094320019396595e-11,7.777236655424504e-11,8.874098508805612e-11,8.337273111166403e-11,9.75035508582047e-11,4.5173987528841276e-11,7.387451837804735e-11,6.994040246635609e-11,9.895896475147259e-12,7.974264735419879e-11,8.609079830313063e-11,8.95664847173035e-11,6.351447573300244e-11,7.756062623098597e-11,2.577090066546306e-11,9.421903200738718e-11,2.741466288746479e-11,9.678390824642478e-11,2.1948064429337288e-11,4.326660974624554e-11,9.355109769566513e-11,8.23403388938509e-11,2.169696333798198e-11,2.4115886646002584e-11,8.820739301624636e-13,5.279448697297282e-11,3.406284020167024e-11,7.008396567821534e-11,6.925231606437682e-11,7.529059162803135e-11,3.0663332989521785e-11,3.4688627466070956e-11,9.919486954658082e-11,5.428566398175406e-12,3.706206602354311e-12,2.7300122665555348e-11,1.8534871937956466e-11,1.2967089638707353e-11,5.1303616336203896e-11,2.6470470414540737e-11,1.833524852605386e-11,3.6538987782794496e-11,7.328885202823323e-11,7.470822995590742e-12,8.9172081968464e-11,9.603077107727766e-11,1.4389422404199526e-11,3.3540428417741754e-11,6.662211878618696e-11,8.615007144211746e-11,1.8260339188210184e-11,8.358835298686824e-11,4.4393946096769254e-11,6.54634340606579e-11,5.0291279032333815e-11,4.876170312655509e-11,7.228519516180714e-11,1.1934539980899162e-11,9.607191667818236e-11,8.372165517940594e-11,3.09310394270456e-11,8.972543826397294e-11,9.768874701547441e-11,8.483369819224001e-11,6.142555469848516e-11,6.327068893953052e-11,6.479045540666275e-11,4.926738655762961e-11,6.688467549340387e-11,2.4649840643616295e-11,2.4871292444079586e-11,2.3229922765923106e-11,9.313787457002492e-11,5.146344708036532e-11,6.6962704359657015e-12,7.350768320034445e-11,8.143027898300022e-11,9.061045099822378e-11,4.728216301796703e-11,7.271353737541404e-11,3.749990603448378e-11,6.022696837172658e-11,6.942583408515217e-11,7.464860409395936e-11,4.258500095141812e-11,7.929407201443394e-11,8.197913166138996e-11,4.336904945632822e-11,3.2273824841074707e-11,9.214064680673241e-11,5.068489939095481e-11,8.873915688929132e-11,1.2740750214548824e-11,2.3621771022101102e-11,3.984451647551335e-12,7.283460187092126e-11,2.1149684038858752e-11,9.889758740210808e-11,3.240646880225462e-12,2.8300699551040044e-11,9.472130005654653e-11,5.183085861483501e-11,1.751107028144422e-11,9.056727173106372e-11,9.776032345810448e-11,1.894002412596051e-11,5.360257849236625e-11,4.01103312374114e-11,4.0982074964262876e-11,2.6896624505647216e-11,2.7496787178228812e-11,8.901337153826665e-11,1.642260417972722e-11,7.001740368327165e-11,2.2535319249832853e-11,4.88144320141853e-11,1.766587112358009e-12,7.195462200248515e-11,8.588966259763016e-11,5.6258896910014735e-11,5.3667911171114294e-11,1.8288225534887727e-11,4.617131370057945e-11,3.187585868240863e-11,4.8965423446561875e-11,2.7334392424626453e-11,8.531176365693435e-11,8.164461716126129e-11,2.736596202448014e-11,2.1480910032635792e-11,6.256388846986761e-11,5.311031744534818e-11,2.8354517434902606e-11,3.846237964573238e-11,1.8926342738024415e-11,1.3285126302239381e-11,6.283732935022884e-11,4.504545572562628e-11,8.507065408461599e-11,4.875154453659472e-11,3.0427611529250075e-11,1.9031338504630226e-11,4.0355203234240347e-11,1.0045338551779659e-11,3.447939317923146e-11,1.9271169333737293e-11,9.841200795212242e-11,7.964513648380119e-11,7.954016816412067e-11,5.666454599755896e-11,6.356454909441797e-11,5.559205526523985e-11,2.32270442164387e-11,3.9743917286596475e-11,2.3264318858928558e-11,9.607132615160636e-11,2.26532439969821e-11,1.1256834319305508e-11,3.9168711284419124e-11,2.875731485849905e-11,8.340598620470613e-11,4.2053631183743925e-11,4.84320840384935e-11,4.6597485589029177e-11,1.936045871152943e-11,5.853451749232603e-11,3.5046175153897295e-11,2.4769499939809848e-11,3.4011789283559614e-11,7.279935810042495e-11,3.1316346856343814e-11,5.184101387802077e-11,7.906588985494695e-11,2.844609482278181e-11,3.631667311543244e-11,8.91651828934913e-11,8.094110199839524e-11,3.547646855243005e-11,3.631133996158076e-12,3.259210681334215e-11,5.813456737635835e-11,8.716513742708883e-11,4.043914294165913e-11,9.860899373277386e-11,5.7310071832299273e-11,5.951716598335733e-12,6.605265141463253e-11,9.06248030777694e-11,4.890435303084162e-12,7.283402141681663e-11,5.502854840794527e-11,7.674579112230578e-11,1.2632472038980624e-11,1.314138827627962e-11,5.3268200750355414e-11,3.267507067512489e-11,1.944961110084057e-11,1.9762993199582536e-11,5.2456882095635684e-11,2.604340668077181e-11,5.457882300155327e-11,1.1604373189687512e-11,2.4195197168474203e-11,7.266407705317912e-12,9.82618003514596e-11,7.816955930531511e-11,2.935095921376184e-11,1.3176061790691395e-11,9.720349455041044e-11,4.869819662681348e-11,8.480367229248948e-11,7.184443962199681e-11,9.185477908593147e-11,5.060823715155554e-11,5.446494558831817e-11,3.061711931321901e-11,3.648576634525912e-11,3.7717182162065144e-11,2.1127870349425903e-11,1.1201106072440526e-11,8.744387718511102e-11,2.6258869591297697e-11,2.0727634146655294e-11,7.021179531914945e-11,2.650299917815665e-11,2.760643467873425e-11,4.1812872525038547e-11,2.5880746313550407e-11,8.202785714449328e-11,6.268541788988114e-11,3.0190661373934227e-12,8.641933302908077e-11,7.071437419333055e-11,4.703578772609429e-11,8.129351357776728e-11,7.442457345038977e-11,8.88646453190876e-11,8.908029877857113e-11,6.047884746150019e-11,7.90554154951431e-11,1.5987064184042332e-11,6.013358911853306e-11,3.582462030832634e-11,6.37764224993646e-11,5.2835602819512296e-11,1.86002312116333e-11]}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/large_negative_imaginary_components.json b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/large_negative_imaginary_components.json
new file mode 100644
index 000000000000..38150d4ad5bb
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/large_negative_imaginary_components.json
@@ -0,0 +1 @@
+{"re1":[-9.08808506116109,-8.138769097855144,-9.256959823852343,-9.098149018384966,-8.614742812182609,-8.767557003611046,-8.485910033030002,-8.332276977089206,-9.160129473489157,-8.347804181466712,-8.670717216487768,-9.830121767001248,-8.480940616515888,-9.752983064106266,-8.737529086406333,-8.52505521941983,-9.175563737274683,-9.09955358823857,-8.110079457562742,-8.068066994104942,-8.680866723523215,-9.668343208561424,-8.343898657456831,-8.322346828876361,-8.229707043612258,-8.57137107095486,-8.752223987418255,-9.807754833878848,-9.233317383200703,-8.994775047873796,-8.915080158765345,-8.16833827326543,-9.474092340105855,-9.779996810975671,-9.738016175320434,-8.93993746129265,-8.73844925566523,-8.59270395302809,-9.985336364195101,-8.110601902480994,-9.069973690691905,-8.145078273540063,-9.87211158697459,-9.759567111340644,-9.269562251785336,-8.924679838773816,-9.788001919876653,-8.181396995789015,-9.587161143422417,-8.69781480769254,-9.759891109613271,-9.945189287657417,-9.801510473565497,-8.555893969201279,-8.47361125595718,-9.089219558173237,-9.925963295005925,-9.368721559540608,-8.617276898529681,-8.560413059163123,-9.69181479217496,-8.646707925664526,-8.7358377204248,-8.603350542464039,-8.125374015926504,-9.949814615702302,-9.776629611227573,-8.1635314952293,-9.259082402979876,-9.690294473230864,-8.958537405750691,-8.556622366971325,-8.01561950364241,-8.002294630161591,-9.66078732793001,-9.70839820987077,-8.213551754237875,-9.754892371522022,-8.310004077922056,-9.652458332285375,-8.030294075444186,-9.863795213818422,-8.010195803336206,-8.894899686223422,-9.533272284825866,-9.57325181278875,-9.856902133847157,-8.749636993300317,-8.6329355444644,-8.782025866159772,-9.927425655951232,-9.58074980896,-9.043996063122638,-9.624594573004389,-8.439555521095919,-9.598692369077563,-8.82113693033651,-9.088545593375557,-8.245619302339788,-8.141488953123911,-8.267244559891104,-9.166139480930315,-8.980115741724898,-9.043372744573313,-8.192757437474324,-8.194007920955553,-8.4297458559694,-8.789304404274475,-8.512986969617515,-8.48056456901593,-9.158754024459341,-9.013860393077536,-8.772396924300038,-8.966212627313686,-8.90552649902571,-9.936073834777545,-9.438208418660352,-9.169489027519463,-8.587143713257495,-8.555158535168191,-8.645540195461916,-9.668088802604702,-8.004163712069278,-8.91953233313803,-8.075867943385918,-8.848667714628206,-8.084450148503674,-8.031324459108937,-9.18208888074369,-9.912960244461562,-8.499732092303592,-9.043897028533788,-8.064203411494281,-9.550365240230663,-9.930510077461971,-9.47505481300458,-9.86665604408507,-8.11547178501683,-9.126602305211346,-9.598515353829423,-9.337077184308274,-8.537114812696506,-9.893321467460622,-8.886381595593004,-8.879487160799968,-8.22930259564324,-9.34190801255704,-9.837837812660005,-9.371391316479302,-9.931222101778387,-8.943248536631394,-8.383552824470343,-9.166360957253774,-9.260196980702553,-8.39817776141636,-8.93944892062324,-9.70332869200299,-9.085410417719931,-9.72412362108773,-9.491109791755592,-8.308961585585228,-9.415218662214675,-9.70533857307161,-8.134376875505541,-9.472069495341977,-9.996160961497925,-8.132618810860897,-8.648024860483051,-8.27089739746279,-9.002014295914849,-9.876990015862491,-9.907101967110762,-9.372933494300614,-9.47897826376511,-9.144526529564375,-9.443315337349764,-8.45142032816509,-9.690270906606543,-9.770199557286862,-9.122975926949941,-9.288964425019854,-9.244770002700118,-8.968925736595835,-8.690871280189612,-9.998972247602097,-9.117343451985654,-8.623296109393346,-9.903925903207167,-9.709265760864863,-9.313325129091202,-9.356984697102373,-9.870665699528509,-8.662386186293329,-8.775857939225691,-9.107806858437685,-9.050591961913618,-8.162660777032837,-9.830532478637044,-9.136927716842594,-8.37205916896292,-9.183650069902534,-9.407352877289732,-8.483986897747723,-8.214817291561722,-8.79155621220674,-9.756448870053383,-8.210427693208922,-8.164336909105632,-9.143375063091742,-9.854583802102932,-9.78521478738921,-9.406174462862271,-8.620793803092834,-9.626049451569616,-8.081857181708632,-8.378041469016281,-8.844855698031926,-9.396182713511907,-9.033925398372965,-8.17068382099307,-9.609194645215508,-8.589033141713568,-9.099182556255954,-9.934825611149249,-9.325572505239826,-8.450070551029961,-9.199305441669699,-8.722126383996478,-9.371522765042052,-9.103001130973713,-9.203925216319623,-9.021994707199918,-9.332685060799705,-9.375407192618873,-8.843744395270221,-8.478439286546289,-9.085418192106083,-9.420215264407974,-8.933793764703541,-8.716492261889854,-9.29963545337854,-9.131364019508116,-9.758173792692645,-9.804385293518997,-9.5456529673025,-8.896912657005839,-9.22921395721069,-9.576227553029344,-8.141938492895976,-9.408908379245633,-8.254541940250173,-9.1426885888167,-9.428239268215854,-8.207417899894423,-9.356595836275481,-9.199456336827481,-9.430765335032278,-8.83150850570176,-9.66473301032699,-8.188871394089396,-8.087451751167821,-8.29434124360122,-8.805498597954607,-9.327309032392066,-9.245622290506056,-8.711123471681253,-9.493840843294617,-8.62571815082197,-8.691882920401325,-9.851673324759586,-8.015124154582047,-9.462285342357571,-8.714149994326146,-9.942148778799265,-9.287055614504538,-8.125802567555786,-9.51270900880537,-9.865354557888843,-8.807898898799214,-8.975304261180675,-8.693686828158219,-8.736724079554772,-8.072070831518895,-8.965890966200522,-9.611446225689223,-8.972791132127085,-8.731598867814068,-9.11333687770443,-8.624006021725302,-8.584346011553514,-8.235342017681763,-8.3149192650787,-8.528008183108305,-8.119492198390365,-9.987262713683869,-9.642575079760984,-8.311728203075015,-8.355151918642006,-8.351973117013628,-9.680178187544495,-8.617041111955126,-8.90357531226902,-8.662639275940702,-8.330475607274801,-8.090847987212106,-9.855482484480092,-8.023977363486381,-8.283954622110365,-9.464191593279882,-9.371818791827131,-8.982063791078629,-9.98327877982604,-9.506685937159713,-9.250805130104883,-8.03954985486725,-8.936066835680084,-8.895013160948622,-8.479454177210776,-8.77003912575669,-9.80941043036967,-9.971547692528913,-8.003579230483844,-8.353369332655705,-9.156553971526774,-9.168861559123428,-9.202049459961305,-9.37141061615321,-8.244610172609729,-8.429251928458337,-9.582682464960515,-8.044932256922603,-8.290020413887639,-8.40258884392192,-8.754255486906539,-9.573896732603933,-9.980181337172809,-8.74910462002688,-8.771854578548325,-9.273572503975448,-9.420314947839302,-9.545509071608562,-9.097823326363823,-9.15144089662277,-9.962547272198044,-8.203115291313363,-8.68119023006645,-8.369312403292035,-8.129038621562518,-9.881216976209393,-9.10836943562639,-8.380286090601656,-9.575288556525038,-9.450911074421391,-8.694478387503473,-8.3858893231848,-9.11758217395627,-8.871098288858052,-9.438366222897177,-8.168040129551837,-8.437287164351561,-9.348835506965395,-9.572743445956611,-9.205110133375436,-9.211966909291975,-9.295746896307799,-9.409709550600839,-8.996993594741827,-9.911886910581305,-9.294388824901914,-9.349104871204908,-8.703141530877621,-9.15375466278813,-8.743536939579196,-9.229046712338587,-9.84016517633061,-8.063389325655962,-8.999216950655086,-8.505371445692145,-8.131784834258713,-8.136938118696634,-8.15385081640962,-9.071614755117718,-8.346235884114135,-9.002794185593533,-9.365069414143381,-8.8217682974304,-9.59345089878282,-8.411025880133746,-8.5149004947694,-8.116314013503034,-9.340662649369264,-8.496784411013417,-9.828921945671814,-8.404139279370842,-8.45105745786187,-9.975257315667738,-8.357224420583785,-9.024836591456241,-8.601547304456123,-9.089690603644879,-9.297526636957699,-8.007708010928955,-8.14246545164464,-8.277038952142231,-8.271617400781242,-8.505843777100647,-9.49786713853113,-9.564391414585995,-9.15385227840963,-8.504521362723306,-8.389978716372703,-9.483774397062188,-8.467398395883023,-8.340047688837224,-9.410262234823792,-9.873566253096765,-9.027267586580402,-9.287575147136751,-9.26509060823491,-9.998968281446796,-8.743288034841076,-9.818166240583334,-8.035409545455666,-8.932980064341475,-9.001965904889053,-8.565409162992951,-9.535666288669422,-9.130108137108213,-8.84884714738903,-9.909837770797166,-9.015165539842439,-9.498027247437735,-8.972680782794543,-9.307498284530975,-8.328184765177726,-8.251515420170135,-8.772751391751164,-9.395437345424662,-8.396679687779997,-8.301191117001563,-9.889508123194263,-8.847447863591494,-8.779262257184076,-8.610560332268683,-8.816075000827865,-8.856558448081428,-9.187050599238544,-8.74755159632379,-8.927547585051688,-8.328314328371784,-8.8806986365508,-8.94084003075024,-8.571973409374863,-9.05608834417264,-8.389439206004221,-8.789920528068174,-9.742247753828464,-9.086889746675823,-9.019846203141787,-9.68653175790861,-9.45244480086854,-8.059632216616826,-8.447714125034517,-9.134384602548053,-9.918540697247774,-9.045300538824893,-9.357192584751564,-9.884345071827655,-8.022802688362509,-8.958907976769392,-8.85201794468778,-9.55691756935739,-9.879920237252442,-9.316177377955604,-8.948544749233914,-8.729422411084276,-8.620677276349529,-8.255498571806896,-9.603494284064151,-9.451860496384072,-8.217519232800344,-8.417253180075631,-9.726611007623852,-8.69514394467738,-8.564559904505291,-9.913480884943558,-9.305143730708044,-9.134277905759362,-9.406188763103385,-8.979919623883983,-9.254865932333043,-8.360655664749833,-9.197564515045833,-8.242209445862459,-9.492502470355383,-9.004507900585107,-9.377956682095503,-9.434784675357303,-9.49854429641315,-9.100937774609267],"im1":[-1.2978299742448042e31,-1.6573578459001427e31,-9.60511287306734e31,-4.9001047222461885e31,-2.8956539057975306e31,-7.879926906881452e30,-2.53322114309526e31,-8.012129645830398e31,-2.4767138266411327e31,-7.819785633799741e31,-7.095765632581035e31,-4.05703667571961e31,-5.488934269524992e31,-1.2045878375850995e31,-1.5409419971905415e31,-2.228382390313125e31,-6.711116944670451e31,-9.852190846260568e31,-7.768712886184638e31,-5.770225793216784e31,-3.822778032857055e31,-8.27129723548419e31,-4.463587296360969e31,-6.900885676668345e30,-5.191323893039035e31,-2.1168742611652447e31,-8.377155508082618e31,-8.129352793279443e31,-7.985848503061626e31,-7.843774592633868e31,-3.0415854352594974e31,-5.551639446345898e31,-5.776150294177276e31,-6.5085949773773015e31,-5.745120587279617e30,-7.276730897456955e31,-6.656221769450868e31,-5.546283753736939e31,-3.702758151398672e31,-4.760432933597835e31,-2.211011584010124e31,-8.633003716356446e31,-8.74655024699357e31,-2.1686799435350726e31,-7.118760750217252e31,-2.528057061499676e31,-9.492747052579984e31,-6.770687837335723e31,-6.541846476934108e31,-1.7502189095159228e31,-5.756177105726327e31,-6.925668005265342e31,-9.150400743908032e31,-2.207344920905615e31,-5.628554309512954e31,-5.688449045156028e31,-3.748851845727558e31,-3.7461312040892874e29,-5.63039640675177e30,-1.569545213202791e31,-7.181210450208705e31,-9.881793744536166e31,-9.219030621197031e31,-7.157712448446596e31,-6.288272686921596e31,-2.1845959232595446e31,-8.518341891497124e31,-2.161304533577464e31,-4.656743804879844e31,-8.39314704274674e31,-2.1402877799981034e31,-2.9169022582669705e31,-6.57956056000939e30,-7.334815306618884e31,-9.709296447596878e31,-2.7822095153860095e31,-9.458745817690972e31,-6.478615470430847e31,-6.890593266534517e31,-7.285757619539423e29,-9.51667317287603e31,-1.2951329059367978e31,-7.896406550963203e31,-3.2463938713879696e31,-4.428482931870137e31,-3.549301474451472e31,-9.642589377830693e31,-1.5827038178708298e31,-5.150886459972995e31,-1.853357374544068e31,-3.7573963822179426e31,-6.252093710361014e31,-6.279034171324734e31,-1.587876608057991e31,-5.355859070444418e31,-6.2021816762884045e31,-7.058576336743236e31,-3.1811666365634117e31,-8.61776412526737e31,-1.9153607277028586e31,-2.430475276236819e31,-9.486032622891068e31,-6.469811031854105e31,-5.934680327525055e31,-4.1610960942311935e31,-4.255233852551825e31,-3.0785792359258513e31,-2.4210658663691245e31,-1.3687010519872956e31,-6.590297890753724e31,-3.610964242282362e31,-9.459316382407487e31,-7.439091205935815e31,-2.64150106723851e31,-7.397652244970834e31,-4.135339628048859e31,-1.027447899829902e31,-2.973337937010219e31,-4.856391623508344e31,-3.3728644876715354e31,-5.0588194208646045e31,-4.17114548190863e31,-7.094128986204741e31,-7.702064962273907e31,-8.231893937135256e31,-5.822054422195026e31,-5.155044247463995e31,-7.376449840094269e31,-8.046588243068949e31,-8.724021466218783e31,-4.372045036531894e31,-3.9515881158984493e31,-9.337278680794146e31,-1.5809594625347036e31,-3.0857849387000016e31,-1.9286797400018041e31,-2.4067024142286764e31,-9.765686099648967e31,-5.319061134038048e31,-5.828827660696195e31,-7.603455900631988e31,-5.370059489733007e31,-8.882067353728135e31,-5.3591105096764125e29,-8.99624244387436e31,-8.237669149862698e31,-4.725867071193744e31,-9.886908720021177e31,-5.6776499539782855e31,-7.308277476851393e31,-6.48962164976332e31,-3.908495732523301e31,-1.5151830152980273e31,-7.170884557062464e31,-2.024213281058931e31,-5.375274631744428e31,-1.3647509065316576e31,-9.770494094806911e31,-1.0041134915855965e31,-9.032342664558944e31,-2.1838906925976123e30,-7.816574992463954e31,-1.750123500796741e30,-2.9943294141946063e31,-9.81636527630716e30,-5.831901300832733e31,-3.69886485532156e30,-4.95601536535282e31,-6.687847364423512e31,-2.857576372138817e31,-4.840454681593224e31,-8.627717771963708e31,-9.478879085323996e31,-5.053253716710159e31,-8.483075529762535e31,-1.0404557937707438e31,-2.259837022964293e31,-8.87960791811659e31,-8.117803645126043e29,-3.702658799230355e31,-1.6233593557083937e31,-4.450222454895294e31,-5.754036106882979e31,-3.6178142320898114e31,-4.864981370674845e31,-4.011099704176782e31,-2.577879439654115e31,-3.0780234172759216e29,-2.422250252102969e31,-2.941020063509391e31,-2.9928656834067094e30,-9.699389816687312e31,-1.1851150887266082e31,-9.92131794283496e31,-4.934714749959458e31,-6.515740041846061e31,-5.392017017783436e31,-3.034221385004844e31,-9.825915115612835e31,-8.511725747237698e31,-8.767192025226926e31,-3.4346496045754063e31,-3.656097554196888e31,-7.542252402603505e31,-3.1839435731170586e31,-2.7992269802765745e31,-8.696473679022764e31,-5.188549956763265e31,-6.128897194021681e31,-2.3644050984982533e31,-7.537680972753612e31,-9.328116041404203e31,-2.215536110750929e31,-9.355545234251802e31,-8.011057721235483e31,-9.74978770975747e31,-8.837129725612881e30,-8.769378521110792e31,-6.984468593542939e31,-2.8835763301571707e31,-4.936976353313351e31,-2.1174518300006095e31,-2.5352324424288807e31,-8.851477351473928e31,-7.4303538238851005e31,-8.094685897510075e31,-4.711921157774634e31,-1.9664011073992717e31,-5.982547330790552e31,-5.628816958804756e31,-2.367310406989206e31,-6.404132270293075e31,-6.76200367330034e31,-6.8309243496046745e31,-8.824993966457306e31,-1.7050349890457428e31,-3.181705885014885e30,-4.502931986925729e31,-4.254193613835526e31,-4.699158787539699e31,-5.116820519519788e31,-4.5888371276409434e30,-3.657294898343051e31,-3.848315611932065e31,-4.276522282195399e31,-8.268413877591026e31,-9.560108148492219e31,-3.417082750400069e30,-9.886170251404503e31,-4.691401452270152e31,-9.814999919883495e30,-5.855964675458614e31,-6.746216041008546e31,-7.221402678512627e31,-6.655199393423606e30,-4.556642300100733e31,-1.2213978924155966e31,-8.634216141738849e30,-6.21587291898488e31,-1.390763040500447e31,-7.619537345152094e31,-9.283772650770434e31,-3.0461069060243817e31,-1.4443012210332986e31,-9.366085272311231e31,-9.38629157475555e31,-8.237892120262345e31,-1.5385713935975766e30,-4.870004604190419e31,-6.139522547424097e31,-2.7317243484296896e31,-8.011293021721955e31,-4.205491776939103e31,-7.060623327213015e31,-8.078765353559279e31,-4.975215524673689e31,-1.060837781773849e31,-8.419310278905536e31,-2.39393999815415e31,-8.960202956116982e31,-5.864748565829924e31,-4.471420126422222e31,-3.107061311481736e31,-2.361937034691042e31,-3.8297982319184623e31,-5.053974074287336e31,-1.7289350739818856e30,-5.282887271075582e31,-5.950240350328427e31,-7.592201798243037e30,-9.154782902523758e31,-5.443608376548772e31,-7.969564305343432e31,-7.399658282625343e31,-2.4024723762222168e31,-8.62625686652928e31,-1.5464169136504114e31,-6.087792474164237e31,-9.083450125354318e31,-3.723238162814906e31,-9.493678713228094e30,-6.381081848192654e31,-8.115794876534566e30,-4.801019417451608e31,-4.363415749850148e31,-3.911638187217481e30,-6.467140058280521e31,-2.6298890698203347e31,-9.495163793620713e31,-3.7117667380044275e31,-5.127898892810517e31,-3.017387031650951e31,-5.111108849912861e31,-5.24603286562948e31,-2.9640652622495156e31,-4.2569783940656415e31,-7.630431715278444e31,-1.876674090157018e31,-4.196186843315582e31,-1.6320641002826388e31,-3.0570104703624714e31,-7.843682692050578e31,-3.2335233138479235e31,-6.25480871826184e30,-4.946309431510296e31,-8.007542962790993e30,-6.800244995085476e31,-6.412449014712428e31,-9.805027209922372e31,-3.9975544286648047e31,-8.510437445446965e31,-6.919003302081161e31,-3.191815100873908e31,-9.405072880274484e31,-7.199760382679337e31,-7.171575741621415e31,-6.48425701567164e31,-6.583798071517861e31,-7.4591910886975155e31,-9.368896943870536e31,-6.541063181446232e31,-2.8558015090141154e31,-6.959225779723738e31,-5.286514504865169e31,-7.4421790310328955e31,-9.55685896097183e31,-3.9726114555414885e31,-8.54564514075467e31,-1.2830006360213266e31,-8.938853186395565e31,-5.410272823242828e31,-8.80370049877933e31,-8.581004135408587e31,-8.811495359750725e31,-2.8071700182864324e31,-1.6560860131577095e31,-8.74847600014225e31,-4.286592577830686e31,-7.284127110688133e30,-3.895019625672309e31,-6.674377673497122e31,-9.244628658091893e31,-2.329061766193863e30,-6.23204448440776e31,-5.2205662996687995e31,-6.2422791435e31,-6.388715860239718e31,-8.793009791139484e31,-9.78130270364495e31,-3.002269072484608e31,-2.4296574860097242e31,-1.9368922405952605e31,-2.964671868510427e31,-9.70081059646494e31,-1.475232091343034e31,-2.5853244186955175e31,-7.116145295189652e31,-7.952898312300836e31,-2.0278799704818996e31,-9.724140774244689e31,-1.5202022016265638e31,-5.088172299956227e31,-6.187115852951302e31,-6.12613449180271e31,-8.105854914710899e31,-3.9021671032853514e31,-6.139713226250892e31,-2.551160805207805e31,-3.249550551804037e30,-2.0386865189886805e31,-6.3091559431193925e31,-9.154908645118213e31,-9.482173389889278e31,-2.909245887269627e31,-2.4044778021774296e30,-4.633635736472194e31,-9.012672188406587e31,-7.076503892922914e31,-2.166019337836673e31,-7.265292744391417e31,-4.834957364162703e31,-5.754223698152418e31,-6.334326616046531e31,-8.731026394365826e31,-1.7358084573659317e31,-8.808657444159962e31,-3.639601339667065e31,-4.834729135827913e31,-4.971015454373043e31,-5.721713202737966e30,-1.7458718569361732e31,-8.840552063182449e31,-3.9091057552974162e31,-4.678102191927033e31,-1.5580871565874888e31,-8.505904203375159e29,-2.6002995183338976e31,-9.84155587629066e31,-8.691376352498814e31,-4.304598411501581e31,-9.658189122643641e31,-8.8442495071519e31,-8.819890723219611e31,-7.332257999016549e31,-4.090004975377908e31,-4.482817648741239e31,-6.673483140943487e31,-6.49045884405508e30,-6.794351268756771e30,-5.119418787610294e31,-7.811786295625951e31,-3.1604822276844624e31,-5.129301371415495e31,-3.012980661949254e31,-7.945306157766243e31,-9.48093430918715e31,-1.275894438840708e30,-2.034884957102271e31,-9.279446032334728e31,-7.655424720640202e31,-5.082256430000577e31,-7.337058525454932e31,-2.0255872207195992e31,-3.8131191191448104e31,-5.900057052392272e29,-2.831751198053255e31,-8.646040122621613e30,-8.053580266243609e31,-2.1228648085948654e31,-3.934234785495682e31,-5.036873747339381e31,-6.625350129594854e31,-6.819198243348391e31,-1.8982605862428482e31,-4.7037592085560785e31,-7.083865846740901e31,-3.91618422421951e30,-1.2600604032164476e31,-7.585801000756693e31,-4.410227935085644e31,-4.569550647350961e31,-3.805321565998654e31,-1.5604165695499395e31,-1.300757908515292e31,-8.15449030687172e31,-3.9342514769645846e31,-1.5847061722495982e31,-4.205003568410528e31,-5.307432179114073e31,-3.403059557269619e31,-6.767489424580437e31,-9.315491002295452e29,-4.480834737694961e30,-5.6787920063015195e31,-7.415735630842091e31,-1.8709973561654926e31,-2.8832997432733446e31,-5.24998482016971e31,-6.74844065313095e30,-9.006954925723482e31,-1.558990773762371e31,-9.81583952820993e31,-7.444603555443739e31,-8.678051015430732e29,-2.182843588439496e31,-9.104972646764693e31,-2.6228463557695606e31,-5.601807222777589e31,-5.9829599248394055e31,-4.601138567313135e31,-2.287473776663391e31,-7.596098090025971e31,-4.017744427137019e31,-6.042082475297722e31,-6.561419011569817e31,-4.082897779913137e31,-5.578219584260972e31,-4.892266748122396e31,-8.261770379954068e31,-5.343088255156673e31],"qim":[-1.1425839e-31,-2.8264062e-32,1.1445016e-30,-2.1874544e-32,-6.751285e-32,-2.8069362e-31,9.62928e-31,2.2026136e-31,-7.964039e-32,9.147836e-29,-1.3306714e-32,1.4025544e-31,3.638766e-31,-1.3328252e-31,-1.2493628e-31,-1.538523e-32,-1.719043e-32,4.6592444e-32,1.4925665e-30,-2.7646895e-32,-5.537412e-32,-1.0955567e-33,9.4461004e-32,-1.3523947e-31,5.2654995e-31,-1.0435457e-31,5.1173806e-30,7.7712835e-33,3.9787967e-30,-1.7341285e-32,-7.867158e-32,9.4595616e-32,-4.7854346e-32,3.68791e-31,-2.0882533e-31,3.214594e-33,6.0108503e-30,2.2955634e-31,7.699056e-30,-3.6659537e-32,2.6751516e-29,1.00540994e-32,1.7215372e-31,-1.3463365e-31,1.0192185e-30,6.203479e-31,1.0871879e-31,2.2605417e-30,-2.79983e-32,-1.0866083e-31,4.0841502e-32,8.437034e-31,5.0393433e-31,-8.28533e-32,-2.616978e-32,6.8602325e-31,-8.025077e-32,-3.5306137e-31,-1.9331924e-31,-1.2901347e-31,9.988772e-30,4.330374e-31,2.730794e-33,-1.6906614e-33,4.5170294e-31,1.8026448e-30,7.1816653e-31,-7.5715096e-32,-4.8257558e-32,4.952414e-32,-9.5613223e-32,-7.2397316e-32,-1.1435951e-31,5.409737e-32,1.7150232e-32,-8.330402e-32,5.352061e-32,1.9335279e-32,6.629152e-33,-2.331101e-30,9.5374044e-30,-1.0650857e-31,8.098184e-33,1.9810474e-29,-5.464948e-32,-7.185715e-32,2.1963902e-29,-1.239237e-31,1.2890234e-31,-8.1467054e-32,-7.217192e-32,-1.5746138e-32,-2.0090062e-32,-1.1560985e-31,-2.219381e-32,1.1994143e-30,3.2172845e-32,4.8864943e-31,-7.734911e-33,-7.652485e-32,-6.714641e-32,8.5081135e-32,7.103709e-30,-3.8379514e-32,-4.6167955e-32,-1.4650405e-32,-5.4932967e-32,-7.2823203e-32,9.848837e-31,3.295314e-29,-5.733575e-32,2.0049553e-30,6.0389706e-32,-8.8882554e-32,2.7330164e-31,-6.718448e-32,-1.2878141e-31,-7.5988986e-32,2.0810726e-32,1.5148519e-33,-4.4801628e-32,-6.6024655e-32,2.0321378e-30,-1.2898852e-32,1.5807712e-29,-8.904655e-33,2.1188368e-32,1.6924666e-32,1.2779808e-31,7.8669955e-31,3.35225e-31,-5.8927355e-32,4.254949e-32,-9.890236e-32,7.3735465e-31,-1.0258127e-31,-3.162012e-32,4.0770635e-30,2.0709615e-30,1.7902192e-30,-1.8688504e-32,-3.2494296e-32,9.172403e-31,-1.8153091e-31,9.869037e-31,9.6242507e-32,-4.822145e-32,6.61332e-30,-3.8390958e-32,-2.715106e-32,3.2944254e-33,7.6840345e-31,-1.5330858e-31,4.8217582e-30,-6.797809e-32,6.40354e-31,2.892135e-30,7.6484626e-31,-2.5458342e-31,5.1065054e-33,-4.987393e-31,1.6582118e-30,-1.7760255e-31,-5.952654e-32,-1.4952865e-31,-4.1961416e-32,-1.6412108e-31,-4.4270305e-32,-1.2642086e-32,3.7504988e-29,-4.749102e-32,-3.369686e-33,3.492021e-32,-5.164979e-32,9.79864e-32,-8.772507e-32,6.2679823e-31,8.5238086e-33,-2.3067325e-31,-5.850243e-32,-1.1502948e-31,-5.4903973e-32,7.653856e-33,-5.3014513e-32,3.2892434e-31,1.19196015e-29,-4.5590505e-32,-5.240629e-31,-9.2716905e-32,-6.164951e-32,-2.4678888e-31,4.1726537e-31,-9.278221e-32,1.1917374e-31,-1.0794028e-32,-1.147054e-32,2.7377352e-32,-7.688902e-32,5.927353e-31,6.369715e-31,8.678549e-32,-7.237879e-32,2.0158995e-31,1.0496569e-27,-6.127863e-32,-1.0161e-31,2.3790326e-30,1.5491239e-31,-3.2652236e-32,-1.0298707e-31,-2.6731244e-32,5.7142003e-30,-7.8765956e-32,3.4217688e-32,-1.1938127e-32,3.522962e-30,-8.266517e-32,4.1725192e-32,-2.5555759e-32,-1.6530319e-32,1.0515446e-28,-8.6828184e-32,-7.1558895e-32,-1.1187928e-32,1.7436994e-32,3.1521267e-33,2.7446567e-30,-1.0553599e-31,1.8501653e-30,1.2756595e-32,3.64842e-31,8.5001795e-32,-1.11680875e-32,-1.6037336e-32,-1.144482e-32,-1.2070014e-31,-1.696956e-31,-1.8325306e-32,-5.3321435e-32,1.51759e-30,-4.736029e-32,-1.0874709e-31,4.6397717e-31,-6.594859e-32,-6.1546786e-32,1.5580765e-31,1.1890835e-31,-2.9556207e-31,6.91904e-32,-5.0327233e-32,-1.4020676e-31,2.8280812e-31,1.2897637e-32,-1.6407111e-32,-1.9982266e-31,7.8104356e-27,-1.5972307e-31,-1.3762627e-31,1.491081e-31,-1.3914593e-31,1.3224858e-29,7.7458307e-32,-7.369699e-32,-1.8023851e-31,6.848354e-31,3.5275377e-31,1.2491737e-30,-8.532201e-32,2.0292918e-32,2.0446105e-32,-7.2379895e-32,-1.7811221e-32,3.880958e-31,5.286076e-31,2.6302895e-31,5.043914e-31,-1.5149745e-31,3.589612e-33,-8.245047e-32,6.8591407e-31,-2.781946e-32,8.9172016e-30,8.520963e-31,-7.601688e-32,-5.9653135e-32,6.182918e-32,-6.2953638e-31,4.110646e-32,4.233432e-31,-1.5391007e-31,7.79228e-30,1.227021e-31,-8.274422e-33,1.3520877e-31,-5.891406e-32,1.4771339e-30,-1.1831769e-31,1.2448077e-32,1.527029e-31,6.9265593e-32,-1.7252118e-31,1.0526959e-30,-2.368393e-31,9.274963e-31,-4.2885966e-32,-1.1611056e-31,6.1006064e-32,-7.072629e-32,1.057389e-31,3.318323e-31,4.4115895e-33,-1.0132637e-31,-4.6089876e-32,1.3685308e-30,1.43517375e-30,3.872379e-30,1.9399527e-29,-9.849427e-32,-3.5097058e-32,-1.4965548e-31,-4.0485195e-32,3.6157366e-32,1.8498321e-32,-9.6341924e-32,2.6001318e-30,-1.7114815e-31,3.2946462e-32,1.2721334e-32,3.756131e-32,-4.584465e-32,2.7265949e-30,-1.22758594e-32,2.9819092e-30,2.2759536e-31,6.8860024e-32,2.4051613e-30,1.2808981e-31,-5.8284228e-33,-2.7211054e-32,-3.9230533e-33,1.3077176e-31,-7.3885515e-32,-3.5532715e-33,1.9220062e-30,-1.1977835e-32,4.6387916e-32,3.240806e-32,1.9953737e-31,-1.0454009e-31,2.4259474e-31,-3.0561204e-32,6.0158133e-32,5.8249834e-33,-1.3605627e-33,-6.45745e-32,2.6471152e-29,1.8545413e-30,-4.8043092e-32,-1.5034978e-31,5.3202848e-30,1.6687675e-30,1.6678438e-32,-1.4459986e-31,2.2401485e-32,-2.985141e-32,3.280434e-32,1.0210591e-31,2.2058995e-31,7.165043e-32,2.1658579e-32,-6.9683246e-32,-8.080532e-32,8.212721e-29,7.930975e-30,-9.148642e-32,-6.7834864e-32,2.8242493e-31,6.750517e-32,-7.9432635e-33,3.5309773e-32,8.00969e-31,-1.5640934e-32,2.1836202e-31,-3.1589116e-32,8.410687e-33,5.5503183e-30,6.536113e-33,-6.559397e-32,-1.9708971e-31,-7.0380597e-32,9.897047e-31,1.8026428e-32,2.1937247e-31,-6.2955945e-32,-1.211774e-31,-5.705166e-32,3.242037e-31,4.764334e-32,-9.0930436e-32,4.64175e-32,-5.2507775e-32,-2.7713005e-32,1.8965513e-32,8.4976304e-32,-8.565079e-32,4.019578e-31,2.6594896e-32,1.389438e-29,3.0920116e-31,-8.5715455e-32,-7.103855e-32,4.2425218e-29,1.4564437e-30,9.675933e-33,-1.0350785e-31,-5.778203e-31,-7.586618e-32,2.2245784e-31,8.902191e-33,9.206433e-31,8.439813e-30,6.149669e-33,1.4223364e-31,-2.1353778e-32,7.922258e-31,2.3212754e-30,-3.2362215e-32,-1.5057768e-31,-9.1560307e-32,-3.1413923e-32,3.981638e-31,1.7054338e-32,1.7838636e-30,-8.111298e-32,4.5222417e-33,5.188824e-32,-8.7057055e-31,-9.7164135e-32,2.2995084e-31,5.8531326e-32,-3.5311765e-32,2.7978661e-30,-4.6643278e-32,1.9873e-30,-1.4974184e-31,-6.9539407e-32,-1.1888623e-31,3.2500635e-32,-9.891465e-32,1.2581147e-29,1.5205926e-31,1.9453544e-32,1.7465262e-30,-7.521898e-32,-4.5383145e-32,2.8647505e-31,-1.6819747e-31,4.7420524e-31,1.0835837e-29,7.13657e-30,6.8595465e-31,5.50824e-32,-6.960822e-32,1.3841367e-29,3.9295359e-31,-6.263523e-32,-1.4156858e-31,1.0931631e-31,-2.252047e-32,1.3697736e-29,-2.9708404e-32,-6.189156e-31,-1.3190602e-31,-1.8284524e-32,-2.7216268e-32,-9.5092585e-32,-6.799809e-32,-3.2885842e-32,4.998176e-30,2.2446514e-31,-7.006924e-32,3.5770697e-29,4.9047314e-31,-1.0009407e-31,1.1171138e-30,3.2995242e-30,-3.463628e-32,1.2562478e-30,2.366849e-31,-1.7524329e-32,-1.1244438e-31,2.239592e-30,1.0389242e-31,2.1455628e-31,3.1110934e-31,-5.282291e-32,-4.5659395e-32,-4.965972e-32,8.378666e-33,3.7729013e-32],"qre":[0.20015642,0.82071376,4.010369,0.7972764,0.34340194,0.4008624,2.137348,1.8319103,0.3257432,27.25861,0.7458703,1.4703141,2.0054445,0.20865934,0.47522858,0.8616996,0.83667254,1.3952421,3.959841,0.5914373,0.38904613,0.96450025,1.2680224,0.13284115,2.2427363,0.4545902,7.010887,1.2353824,6.598191,0.87313336,0.5211792,1.4142575,0.6319413,2.4351907,1.0002741,1.0357056,7.39673,1.7000774,6.4044247,0.663974,8.56974,0.9977516,1.9118681,0.6458855,3.2610853,1.9549844,1.829291,4.3571725,0.7904946,0.54489535,1.2229795,3.3229403,2.7605104,0.33976454,0.7021406,2.6437316,0.6509278,0.01430331,0.14957401,0.41867846,10.038246,2.7665393,1.0182111,0.9334656,2.2285256,2.6770408,3.2517595,0.293521,0.52326196,1.45349,0.42811286,0.4172468,0.1082573,1.2599896,1.1910534,0.37558317,1.3375773,1.2303318,1.0281368,0.7509582,10.348676,0.16818099,0.93231267,9.052529,0.5493808,0.7599547,15.478503,0.40084544,1.452311,0.22831626,0.42292228,0.8971904,0.8063684,0.24777268,0.6700202,3.611968,1.2559767,1.8370827,0.88577515,0.250852,0.3099958,1.4879364,7.655577,0.6072744,0.5266269,0.9346034,0.54154044,0.7139738,1.9210744,16.395658,0.60503906,5.28466,1.4195554,0.5607698,2.1735806,0.46001753,0.16770375,0.37734833,1.0736854,1.057335,0.54894185,0.47990772,4.7606273,0.9403616,12.75992,0.93834805,0.9493496,1.081669,1.5777272,3.292597,1.8099891,0.52918154,1.3190715,0.20613936,2.2031772,0.27491125,0.97167337,7.4610486,3.9981463,3.9155507,0.8765098,0.6938037,3.6225922,0.011066422,3.6828232,1.4176576,0.74403167,8.691662,0.66535705,0.8586154,1.0739961,2.5302162,0.4230988,6.846753,0.2033013,2.6344855,2.630393,3.259041,0.43634897,1.040052,0.15754361,4.414558,0.033086322,0.4192397,0.18354514,0.7627455,0.082037985,0.49765614,0.7641623,10.933079,0.7717717,1.0379413,1.4441454,0.6325504,1.5558963,0.10731189,1.9017161,1.0674558,0.019495757,0.43111622,0.29391065,0.5270543,0.9583249,0.4788946,2.1573462,7.9241457,0.85751253,0.016508164,0.5908959,0.6573673,0.08698483,2.602677,0.14888547,1.6320736,0.92043304,0.8682471,1.1523179,0.33460972,3.0801837,2.9975553,1.4493195,0.44369677,1.5212315,95.52899,0.5947588,0.56883806,5.1280136,1.4452274,0.75361097,0.35057738,0.7947134,8.431952,0.28038576,1.4065672,0.83605886,6.8620133,0.09201736,1.4571887,0.7895041,0.7552843,25.070356,0.37280777,0.2649121,0.9626749,1.1443144,0.9950504,4.3525705,0.42340636,4.2458696,1.0622329,1.5212489,1.3518798,0.8517903,0.9586111,0.9743465,0.41595966,0.063231565,0.8655594,0.7142725,3.5439022,0.5159618,0.058199532,2.088394,0.5627407,0.49135664,1.7371372,1.6361455,0.119738065,1.5472039,0.4800591,0.22952972,1.9246222,1.0285453,0.8297363,0.17359693,193.71121,0.27530837,0.16521266,1.6867079,0.4975929,10.776171,1.4393702,0.48831812,0.50245243,3.4556985,2.3896854,4.1559343,0.015472157,1.0880885,1.1761643,0.51189524,0.8465087,1.8934786,2.6869295,2.181326,2.1034482,0.21041538,1.0487274,0.7275686,3.0628376,0.7187786,7.174234,2.0851648,0.64727515,0.5421639,1.2133765,0.8715409,1.1284186,2.258285,0.7586576,9.14316,1.379406,0.88130045,1.6858097,0.83832127,4.6030965,0.40744305,1.0238357,1.887026,1.4341878,0.28028885,3.21308,0.37313455,2.6342955,0.51208925,0.04816724,1.327583,0.35580915,1.808932,1.8693196,0.9437457,0.58346707,0.54194653,3.3819382,2.5175803,4.8735437,13.30954,0.39505267,0.69471633,0.4951647,0.92761624,1.1687815,1.1082742,0.07061291,4.1708426,0.1771325,1.2560229,0.9945525,1.2895055,0.92509675,5.4884152,0.7671821,3.609733,2.084292,1.5533578,4.8875523,1.6647773,0.84289277,0.83561313,0.9375248,1.7166804,0.58592397,0.9396104,3.7358768,0.7493169,1.2340899,1.0270779,2.006717,1.0789727,2.0153,0.73294234,1.4976071,1.0360887,0.97402894,0.479244,7.2647533,4.913791,0.69065166,0.16786818,5.004606,4.2858067,1.1308305,0.038091756,1.1060588,0.8425543,1.2319175,1.378779,2.2210162,1.5011328,1.1988585,0.27774602,0.22179034,17.861052,9.848489,0.1608496,0.67003673,2.1932542,1.5064962,0.8208093,1.1554439,1.6283615,0.8323671,1.8657322,0.8285901,1.0579058,5.7407064,1.1926596,0.71983814,0.08321896,0.23630822,3.029828,1.2089009,2.2984521,0.32102272,0.03571002,0.5468487,2.2357469,1.3390559,0.36322328,1.2687904,0.5801855,0.5809522,0.9958812,1.4401033,0.2527583,2.4739928,1.2776233,9.106565,1.915624,0.061283343,0.1915562,21.498783,2.885698,0.9010429,0.21171491,0.05247019,0.30526853,2.0463798,1.1038721,2.8712204,9.5820265,1.0909228,1.7209909,0.85799766,2.5471861,3.7524054,0.6821266,0.121644124,0.07592063,0.9845623,2.4666436,1.0714047,3.7565997,0.5847624,0.88445604,1.3955904,0.14740607,0.29523474,2.040867,1.3005669,0.7576376,5.2120814,0.7537646,3.4200995,0.010132913,0.30918676,0.13000141,1.132608,0.4801672,7.7971797,1.6511176,1.2135365,4.2236295,0.19564348,0.5627633,2.0712795,0.072643764,1.5973936,9.704111,6.376789,2.5005052,1.2173591,0.1578384,5.0148697,2.4547222,0.58586556,0.47550094,1.5852855,0.6323809,7.706791,0.70086825,0.06391172,0.063137576,0.93120307,0.7515861,0.3062474,0.33413145,0.6223777,2.45329,2.229049,0.15817265,21.36385,2.4812424,0.010102764,2.2760665,6.7108984,0.9055034,3.513625,1.8509952,0.9327845,0.5101859,4.904943,1.282837,1.7411431,1.9956214,0.4672014,0.68402404,0.60336965,1.0534894,1.1667377],"re2":[-8.390844715849266,-9.221243659942282,-9.143440845575599,-9.72526970715148,-8.508644912872557,-8.107121581519696,-9.30999391081693,-9.807103077087225,-9.531602773720007,-9.933574309067804,-9.9277260692869,-9.317865815816303,-9.195119577374246,-9.865838899298668,-9.861433624201922,-9.431579808002656,-9.31868174030737,-8.879875163851072,-9.44289730437329,-9.080860279518852,-8.327524285570398,-9.926790589407016,-9.202547959345313,-9.762579094235878,-9.10401457968778,-8.165438770833045,-9.97001939709857,-8.352991305377266,-8.697693470625834,-8.517511862170831,-8.296246174740611,-8.401348547612741,-8.07044682945342,-8.06374855017282,-8.53627880040894,-8.849803945986068,-8.494201739183378,-9.459383414730791,-8.509415479296052,-8.25673463354281,-9.112231923904108,-9.035320523631698,-9.283026543481881,-8.111334587180044,-9.665036753689463,-8.668412655151492,-8.434826129931025,-9.9395546356657,-9.196929961645887,-9.557063514892155,-9.552221574870604,-8.284724425311571,-9.601728336360225,-9.339325054734077,-9.080471751168375,-9.021416230342854,-8.14856276090141,-8.5163059629634,-8.960012362022255,-8.894524307351237,-8.084080745815598,-8.716434775407551,-8.822421648678906,-9.077691117106516,-9.365456262901386,-9.21176701136327,-8.792098775171723,-8.818266645097614,-9.487457023594594,-8.634427848863657,-9.760261471139412,-8.377411340989282,-9.839378216406118,-8.850454674529411,-9.284932076699832,-9.41863646921243,-8.970163864338788,-8.756206434523344,-8.514713975009386,-9.841873815033335,-9.251090906963743,-9.880744806316828,-9.327435976404548,-8.830537079932798,-9.334242477825729,-8.18104888579661,-9.476669812030066,-9.621204282994922,-9.092193131463898,-9.499706836049292,-8.312184731746363,-9.455602363141683,-9.275688588147101,-8.94214710463168,-9.948170627202064,-8.359451883848436,-8.46293346715469,-9.5532967247164,-8.459353428846619,-9.162748387077631,-9.686360893001819,-9.805736520129852,-9.014909225489479,-8.71546252024374,-8.630090136399957,-8.053659888905464,-9.799611047754833,-8.851710013823139,-8.083994271705434,-8.59599471672703,-9.481817925070176,-8.496612808128322,-8.409028261217463,-8.522941012214975,-8.376585870996516,-8.47034663052014,-9.23253807712413,-8.43224311330234,-8.874512403880843,-8.136949750748535,-8.228210697533342,-8.18806897671599,-8.04230321801661,-8.361727497641258,-8.625229341671359,-8.841252587622837,-9.72770813246377,-8.491972974143675,-9.950983340957695,-9.341333327715908,-9.169736196926412,-8.775022585807204,-8.396923825224688,-9.533240066222755,-9.194880215217145,-8.28746332978009,-9.348274145038355,-8.240089949876843,-9.173826051749042,-9.257536861435439,-8.80298926793574,-8.679756980350872,-8.939099538679415,-8.622997639423257,-8.957027323637767,-9.749691451424153,-8.439191865339774,-9.787016962134436,-9.161096010890047,-8.874992353642115,-8.512427940356202,-8.00457137334791,-8.688609846148156,-8.728289492345416,-8.016634819092534,-8.352642960749357,-9.393599984418103,-9.823514958153167,-8.859251462172894,-9.552007261998554,-8.857044944856371,-8.783690422495745,-9.397576564980673,-9.261578767217241,-8.036032393551064,-8.89919230818333,-8.933126464443387,-8.518474573058032,-9.37559905963762,-9.789441221411339,-8.938411694224971,-9.275093028724632,-8.077425024538051,-8.462301924368093,-9.311001686486168,-8.739218099461336,-8.360740973668126,-9.742157562951254,-8.475537425132288,-9.506650872962165,-9.987833978520845,-8.74466281972329,-9.838503447705047,-9.784792701822358,-8.073098414450435,-8.764707683388359,-8.457882941750379,-8.028210717456687,-9.999285094761893,-9.971844624625243,-9.95323675767841,-9.767206262875343,-8.577094304211279,-9.815971130467247,-9.266407194004294,-9.432555236537414,-8.19541523870459,-8.542131589668621,-9.105117175303574,-8.82693399531447,-9.958783737562939,-8.574599436331882,-8.76195291726478,-8.761163558789663,-9.266117721678297,-8.361370423305623,-9.46874680165263,-9.497390397650948,-8.609037671270679,-8.297195203179411,-9.122552704259835,-8.612635155199662,-8.548615144706574,-8.46172201615191,-8.298403927569444,-8.515505060897391,-9.844745732641817,-8.171357229455953,-8.57892450312354,-9.98243667607685,-8.643054576747963,-9.810462019535606,-8.496899681792119,-9.251444006656563,-9.1389268023541,-8.749802958882336,-8.93997548372715,-9.02390832249731,-8.347138244861831,-9.20605950441694,-9.782395294212808,-9.652266228256929,-9.915700717506015,-8.588060387005497,-8.01270124073448,-8.488547636450008,-8.644744162575769,-9.781964528840025,-8.061320576977057,-8.137781040361762,-8.92099049394291,-9.570908150717816,-8.563310023362492,-9.408374502175857,-8.525231177867445,-9.390757890475118,-9.887329301489148,-9.533165465912292,-8.119807668354907,-9.354379319655031,-9.842353611413406,-9.221325730800508,-9.989052901118624,-8.170626173760825,-9.76963482974201,-9.531907025999116,-8.516615250078402,-9.920493031962652,-8.987732987227584,-8.641136016593698,-9.42791491575163,-9.233423223702294,-8.617973790612458,-8.252216786093674,-8.046686707451565,-9.443381745905059,-8.2424199711408,-9.125196778034569,-8.822942089411992,-9.283524485333805,-8.112163224591379,-9.18672766923965,-9.154533638478952,-8.869872929484865,-8.723411444723759,-9.534822951219915,-8.909798395092736,-9.68176545452161,-8.37722606572926,-9.48187165313973,-8.937114133924702,-8.964603120519445,-9.960356735088325,-9.56625582344709,-9.955663511145003,-9.517333294352971,-8.585649335383476,-9.781660343871831,-8.758177734713431,-9.284957666357188,-9.434068753217005,-9.538282181042332,-8.827586035720728,-8.336836194565317,-9.899422082204467,-8.108505795463914,-9.378185856501206,-8.883576462895714,-8.321310563711776,-8.003384010139717,-9.895388423075852,-9.277642666305702,-9.410304574282774,-9.57908929632863,-8.663755324117313,-8.848335798555027,-8.282575037949213,-8.589909203950484,-8.300186997835219,-8.53827357269619,-9.771457203131474,-8.12935181763363,-9.521124876472054,-9.012386486911993,-9.904955462741338,-8.77406703315626,-9.024621415795986,-9.620343697879246,-9.572434024608693,-9.848766835215525,-9.31132474854864,-8.923906049413446,-8.024259913923009,-8.818495939316279,-9.591464659783727,-8.270861600660089,-8.88134081721037,-9.114478136927799,-8.751653985961603,-8.217119418036042,-9.169133020090813,-9.362697811274089,-9.632115429605209,-9.127403860331636,-8.218026577968894,-9.262603951807485,-8.252253620534773,-9.86673449119692,-8.191049708462048,-9.62990609039768,-8.463021100129085,-9.381136567026337,-9.45952391141992,-9.946852858798978,-9.359835593667276,-9.945383027553389,-9.369121030537363,-8.285363111339539,-8.005890171936914,-9.858903360416996,-8.355891565319963,-8.755094291530359,-9.58734786976713,-8.799939581172518,-9.605628774240209,-9.56146568806536,-8.524823907890635,-9.348456924252382,-9.793818870134967,-9.9597003120076,-8.24509995129696,-9.670961736704294,-9.54995598982738,-9.46981230564398,-8.83755325012715,-8.987571343776578,-9.956762905006377,-8.394828536949673,-9.301703066028583,-8.25076071161299,-9.387761026486025,-9.455038045968706,-8.121728740904285,-8.869335259090944,-9.011449123506619,-8.127904101823669,-8.281149371299655,-8.011315307726727,-9.667944850168631,-9.614127664369054,-9.599538497674196,-9.74990689064677,-8.354643955621336,-8.046524668048152,-9.461627402367803,-8.108635911347772,-8.325865356219435,-8.455131251561394,-9.840331984509097,-8.651473984294972,-9.8849698766491,-8.157749216753807,-8.213808921446578,-8.40688506380183,-8.17052294241932,-9.401274251542386,-9.5835637836482,-8.619985180091799,-8.752378001182013,-9.258920308877856,-8.48316333292028,-9.058896030784371,-9.387436815285383,-9.324999422304511,-9.454010728843379,-9.222969095958364,-8.027000948264224,-9.150591693879463,-8.967091934450824,-8.186678076401698,-9.999252613305218,-8.555891762153966,-9.771322273286625,-9.813528872186394,-8.467718433225446,-9.654323577757427,-8.40221086740941,-9.76657968152156,-9.02822798428788,-8.289667442570543,-9.790439607253527,-9.456880165748768,-8.904595969402651,-8.284561339280348,-8.528115853120278,-9.67288059312632,-9.33779462122052,-9.008798473735949,-8.625545722055177,-8.406183548519223,-8.766931657766767,-9.334572278139918,-8.872318194271584,-8.76965115528967,-9.875482997374506,-8.438392201475672,-8.394519696832951,-9.140072306184077,-9.23730965598265,-9.031810575954726,-9.926623983945507,-9.254089238552204,-9.984311476243002,-8.996013016538415,-9.583384104007852,-8.04577770033422,-9.847978858226867,-9.76380060962199,-9.485105976474962,-9.209637829313483,-8.188026220096022,-8.242779573703862,-8.705842463647627,-8.984979134518657,-8.167142755756595,-8.973916947998541,-9.289398057353228,-8.030286517833309,-9.658243700423775,-9.259128794500777,-8.79339542520577,-8.03497000969897,-9.92236671165039,-8.980522227053825,-9.358414024846283,-8.25986283283285,-9.756288790882383,-8.064151623195045,-9.697809144820065,-9.010690003561944,-8.537146654319187,-8.384617612540536,-8.214310235123694,-8.807020852601045,-8.333276998626626,-9.53414445789189,-8.239151847822386,-8.807284558937042,-9.51878225026076,-8.30931102809924,-8.290388324351664,-8.086997348917167,-9.850927737967734,-9.629361376344926,-8.469942022817161,-8.147879114134028,-9.168251208051318,-8.299907788512815,-9.214794548328847,-8.700292904238962,-8.258362221129326,-8.77571173193559,-9.706137406889765,-9.010000915267755,-9.882380197243066,-9.392706467034154,-8.26642022355321,-8.963417798743686,-9.639986930687463,-9.281214617552166],"im2":[-6.484078535485265e31,-2.0194103294193212e31,-2.395069726402048e31,-6.146055124273621e31,-8.432258245860686e31,-1.9657436377995898e31,-1.1852169918833068e31,-4.373647417409607e31,-7.603271186550358e31,-2.868740007811288e30,-9.51340426666234e31,-2.7592990800882978e31,-2.7370162229693796e31,-5.772987984120417e31,-3.2425278233827684e31,-2.586031732449645e31,-8.021199079284924e31,-7.061277434999407e31,-1.9618750950969133e31,-9.756277367605973e31,-9.826027070459271e31,-8.57573383673022e31,-3.5201171443651503e31,-5.1948403033052795e31,-2.3147277210001626e31,-4.656665136678872e31,-1.1948780513484948e31,-6.580434145241072e31,-1.2103088787516638e31,-8.983478491306174e31,-5.835969071213467e31,-3.925479748823816e31,-9.14032754090372e31,-2.6727247813880985e31,-5.743546945548639e30,-7.025868809582458e31,-8.998870751014488e30,-3.262371092595433e31,-5.781562513085825e30,-7.169607443402266e31,-2.5800217629420865e30,-8.652458366135204e31,-4.574871285008099e31,-3.3576846996132094e31,-2.1829420013800196e31,-1.2931341255104157e31,-5.189304008394599e31,-1.553917701122386e31,-8.27563709038287e31,-3.2120276919955818e31,-4.706682979329219e31,-2.0841987043360367e31,-3.314749491227269e31,-6.496690570400531e31,-8.0162777882811125e31,-2.1516741617107972e31,-5.759243930526702e31,-2.619065924164097e31,-3.764287629312352e31,-3.74880807666105e31,-7.153850236055504e30,-3.5718971196049765e31,-9.054144872843264e31,-7.6678903307918015e31,-2.821718632869235e31,-8.160488076191785e30,-2.6196099236086656e31,-7.363372968350291e31,-8.899449054478255e31,-5.774478702852354e31,-4.999354046927284e31,-6.990832100992573e31,-6.077706279713384e31,-5.821329748892465e31,-8.151856536549092e31,-7.407705759604258e31,-7.07155076293666e31,-5.265746865222824e31,-6.702019613112865e31,-9.701948928504068e29,-9.196029238747206e30,-7.700828037911902e31,-8.469697676689122e31,-3.5861731265194096e30,-8.060862656691983e31,-4.670412122649124e31,-6.229665420880315e30,-3.9484141479484505e31,-3.546683095009936e31,-8.117500418368306e31,-8.884366339765638e31,-6.968524898172869e31,-7.786805869883909e31,-6.408602307332515e31,-7.993578007158365e31,-1.7171197722634636e31,-5.619989877654903e31,-1.7316403839229157e31,-9.729064756803018e31,-7.635421507584083e31,-7.840348499272707e31,-6.375294275648422e31,-8.451108075778746e30,-9.772649327836999e31,-7.90141245833599e31,-4.552983333201346e31,-5.684855058514354e31,-3.390972789719187e31,-7.12466476695236e30,-4.019538661400579e30,-5.968150462121998e31,-1.789957409027717e31,-5.24043717226815e31,-4.710490893850316e31,-3.4034404627968717e31,-8.98952641954141e31,-6.1265652690221525e31,-7.87955733033902e31,-4.523104399349128e31,-3.189967685212564e31,-9.21558368862468e31,-8.69155797526389e31,-1.4901668093289556e31,-8.19053543815506e31,-6.451367728727464e30,-6.204578757876882e31,-5.430080499176502e31,-6.819508214522106e31,-5.100113610844017e31,-2.6495867888526814e31,-2.415508972301044e31,-7.467358454217625e31,-7.078675160556045e31,-7.669372165076945e31,-1.4006068614890022e31,-7.015644919828112e31,-2.4768637390181636e31,-1.3088891756998179e31,-1.3303819400473594e31,-1.48863542287486e31,-8.67469515745583e31,-7.740027209286061e31,-2.4518538576440075e31,-4.842676850162122e31,-2.442757161756004e31,-5.810760318002738e31,-6.351701728711702e31,-1.1375164830723562e31,-8.53323784284258e31,-8.511701888716239e31,-6.042500558169995e31,-1.5447279547334536e31,-3.581156433472217e31,-1.0473409627696484e31,-9.956715967284195e31,-2.0403508184779384e31,-5.188391703932705e30,-2.9979658786289677e31,-2.301170693759106e31,-8.684510052499424e31,-1.3862133777110464e31,-1.7706358775668308e31,-5.289568097730461e31,-7.142284748552981e31,-5.348202064486748e31,-7.645932928208939e31,-4.508722213148729e31,-9.958714653811377e31,-8.75186767160473e31,-2.613698056807667e30,-6.271873812088844e31,-8.312337305997286e31,-6.563659237292309e31,-7.9886971489406085e31,-5.452211836945127e31,-9.695624324203465e31,-1.188314546644438e31,-8.318478746989532e31,-4.163882585179752e31,-8.588539331496208e31,-5.523308773872164e31,-8.443574512785323e31,-6.004264732040563e31,-7.554510511930256e31,-2.255076729015182e31,-5.061870282229853e30,-3.0062293984557098e31,-1.8645462009060422e31,-4.099284357911931e31,-4.473937672515051e31,-3.44067541211706e31,-3.7266972463825434e31,-7.959910955207806e31,-6.078964636525861e31,-5.361296870186556e31,-7.50447692206683e31,-4.679279554997693e31,-9.067941512582673e31,-3.190041881303143e31,-2.839555808393667e31,-6.049178618297719e31,-7.740983938574054e31,-2.403380013625536e31,-7.895249629835677e29,-5.353335934245159e31,-4.920955552554391e31,-1.6958756983411506e31,-3.590127147228174e31,-8.132706710930163e31,-6.744317046910747e31,-9.484779131124523e31,-1.106281813303277e31,-7.901742726666769e31,-6.651331682575175e31,-9.581930398790331e31,-1.420834821709729e31,-9.60376405467472e31,-6.018011337752445e31,-8.846653615943966e31,-3.8178687604945796e31,-1.96924855322278e30,-5.679742114518281e31,-9.570090115273738e31,-9.194668727602937e31,-6.4932796486371235e31,-8.134950526067541e31,-1.0825605623708723e31,-4.644240993206049e31,-1.4090275645244765e31,-5.29904235508776e31,-1.5561622764640093e31,-4.737205482906839e31,-7.938577586676046e31,-7.1258555621074985e31,-9.057346745487163e31,-4.099039375342132e31,-5.031831664002057e31,-5.202336976574914e31,-5.955980890526393e31,-1.3259844362892292e31,-9.917052260074509e31,-7.884662938404588e31,-1.751247656325541e31,-6.838523243132237e31,-8.703499491627171e31,-4.759793606912677e31,-5.843067438623002e31,-2.853797977485432e31,-6.389700657964157e31,-9.772549930655542e31,-4.276134323960664e31,-3.0426566780416745e31,-6.558987630334419e31,-8.703249929789642e31,-3.8337081021461773e31,-2.3522860489864075e29,-4.436472522034158e31,-5.22612234294563e31,-3.685210102416504e31,-2.7949817066727247e31,-7.07072776440999e30,-6.449885894349342e31,-6.237956310090277e31,-2.874503484613663e31,-2.7103305088345156e31,-3.9278354996504184e31,-1.9821997452575336e31,-9.944129533282616e31,-4.475742640524019e31,-5.219953011037141e31,-5.336491058811292e31,-9.463923434331924e31,-2.2210399963364648e31,-2.627766500636599e31,-3.703602886893216e31,-2.365266648584108e31,-5.041635937078308e31,-8.028121026399943e31,-3.290328832677988e31,-2.925458008491626e31,-8.159325832085835e31,-6.232609900640662e30,-1.4900794915077444e31,-3.6490463570943403e31,-7.063912139389608e31,-4.165214453763694e31,-1.9837681681562414e30,-4.681673618633564e31,-2.634849328842678e31,-1.0007415214869887e31,-1.0012712212732312e31,-3.946342283397957e31,-9.04295937550904e31,-4.389379422939462e31,-2.865813551225505e31,-1.8740118244042172e31,-3.795418818389629e31,-5.946063877395488e31,-4.813632441655495e31,-2.5960604602179285e31,-3.3871055526086494e31,-1.985970449008031e31,-2.175031516321637e31,-1.8225059039802405e31,-8.520811073660225e31,-8.120951383073477e31,-4.871364092462536e31,-7.391291149622621e31,-5.249044094753929e31,-1.9856245249458494e31,-5.433560136411008e31,-5.1714774237283545e31,-9.43102004596735e31,-1.5511911862572659e31,-1.177346827705531e31,-8.734872154195917e30,-5.733054449483943e30,-4.750440051439841e31,-6.040143976948335e31,-3.296002655517083e31,-3.2955551986753263e31,-6.710991382911e31,-2.9176200643869756e31,-8.857882713441548e31,-1.1859256188049995e31,-4.520651345430353e31,-5.414108898408385e31,-6.447572142859478e31,-7.603711555740838e31,-4.321228250989269e31,-1.5506182808739522e31,-9.018722728615693e31,-8.842246876969484e30,-4.5123588263355835e31,-4.634966079561554e31,-1.467314366237319e31,-3.894969560678462e31,-7.810955867919348e31,-8.926608863123058e31,-9.993225685142208e31,-3.8102976775512912e31,-4.874013483515803e31,-7.406501492430464e31,-1.4150666962980064e31,-9.931952043227024e31,-7.74405484662737e31,-3.867877622783046e31,-4.258520525448036e31,-1.1890947025914567e31,-4.435495347123538e31,-7.381580718263675e31,-5.878511397252712e31,-8.282112932894741e31,-9.04644092224593e31,-5.857496708854548e31,-2.279617559507241e30,-1.7803922047858734e31,-6.2065920328487625e31,-4.339194735145237e31,-7.782870180971591e30,-1.557321176521326e31,-8.175078711773331e31,-6.114345763941817e31,-5.634460413824073e31,-6.1961188256898965e31,-5.067124624637223e31,-4.633603699296013e31,-3.959003026536783e31,-6.515947304130017e31,-2.504273185620082e31,-8.747767181702744e31,-8.732986947977038e31,-1.6598529040783185e30,-9.850050173403091e30,-9.171499985918111e31,-3.8584815362202964e31,-3.244560372895259e31,-5.279069678236714e31,-2.470585920823706e31,-8.415935072290363e31,-9.335778293195918e30,-6.112894738351388e31,-3.316186495352411e31,-7.39344431345151e31,-7.662170255422839e31,-6.797363916898659e30,-5.147916991300027e31,-3.5440759224184683e31,-3.9048196587021257e31,-8.627234617347442e31,-2.0823479543467372e31,-7.572918981660252e31,-4.125460249570136e31,-9.062430052754048e31,-6.733341608048694e31,-8.473340839501213e31,-4.031168696927693e31,-5.284696464080839e31,-5.963327174812742e31,-5.726157144268131e31,-8.33346841221607e31,-9.904813993051712e31,-6.360524410235444e31,-6.062778124080314e31,-6.867464312122954e31,-3.5605021439758624e31,-2.848728061621253e31,-5.309058911720998e30,-2.59498495671046e31,-9.336489339654763e31,-9.114149966932849e31,-4.1121177820504397e30,-1.3546481782472675e31,-5.1918756970535e31,-7.359364289021686e31,-1.621092671916551e31,-8.518073068654291e31,-4.809251272684371e31,-7.873536550067872e31,-1.4992226106844042e31,-1.0079484057935673e31,-8.107126656028369e31,-5.124890768364884e31,-8.545778658012485e31,-1.6056954431552473e31,-1.1946517361214693e31,-9.783350088691517e31,-5.335612086336321e31,-8.94928188871208e31,-5.19968994533557e31,-3.166969951734675e31,-2.9498491159301634e31,-1.3654107970538987e31,-5.152486798244547e31,-8.983268278052914e31,-6.793493543149747e31,-8.655643405435465e30,-6.892430456142472e31,-4.546815643626827e31,-5.886221345855147e31,-6.708030399811549e31,-1.4077021226829913e31,-2.687294145270517e31,-1.1149146377584395e31,-5.82266653060007e31,-9.15870768707348e31,-6.650727919124224e31,-7.110650975361837e31,-4.421094947906148e31,-5.045715191515732e30,-3.0505844809860952e31,-5.459539693924089e31,-1.6145350030758443e31,-9.702651910935156e31,-8.358326169354124e31,-3.4200431430942024e31,-5.3909436852900245e31,-7.888226911884866e30,-7.817100411279788e30,-6.916064056365123e30,-1.8274508970200632e31,-3.125882688246511e31,-9.886165157744197e31,-2.593802127780964e30,-3.3219605435192305e31,-6.715280591164081e31,-3.3327087468080497e31,-2.6525212615731486e31,-8.392777696641272e31,-4.415663472759168e30,-9.65586520896138e31,-1.4575560125632114e31,-7.096937958690644e31,-6.098339138966454e31,-9.866781137230328e31,-6.109430447492761e31,-8.629237945515466e31,-8.435367658956522e31,-2.750771634293903e30,-4.0407166813749663e31,-9.856260241881333e31,-4.5946024816485137e30,-3.0003531881403246e31,-8.589779749675873e31,-9.590420574177239e30,-1.3567441607732324e31,-2.8965616761754123e31,-1.5943099208951106e31,-3.232293557015521e31,-4.932691871982017e31,-4.483608339800468e31,-1.5486618689008292e31,-3.1319210572218993e31,-3.4701814996540005e31,-3.2879075392073013e31,-8.739053029529596e31,-8.155005850287281e31,-8.108241867417952e31,-7.8422905352523555e31,-4.579511764644929e31]}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/large_negative_real_components.json b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/large_negative_real_components.json
new file mode 100644
index 000000000000..1cba69e0f1cc
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/large_negative_real_components.json
@@ -0,0 +1 @@
+{"re1":[-4.9818897155817965e31,-9.284650251581353e31,-7.971324358453329e31,-7.383211660972281e31,-3.772159856101555e31,-2.8250792083068147e31,-5.6346637216269775e31,-7.104493275552048e31,-6.707762209344246e31,-1.0529215240215884e31,-2.9124340622311484e31,-9.97582742321532e31,-8.372096151574764e31,-2.0279022089711962e31,-3.056730671332726e31,-8.399851580978956e31,-5.009389080127891e30,-4.487989144460078e31,-8.274073938762236e31,-2.8700683086265855e31,-6.672971928311253e31,-6.442118453207019e31,-9.451364976611533e31,-9.991112017156896e31,-8.949241961907269e31,-5.1682112354349255e31,-2.218963469382207e30,-8.210403076996129e31,-7.9486964391129115e31,-9.39216155991596e31,-6.306298419913277e31,-2.823865811244386e30,-3.740040681330492e29,-5.903258589645331e31,-5.620380448376685e31,-2.6117187656323316e31,-8.003103940562442e31,-6.594951519351489e31,-9.420422240232164e31,-9.01252834516243e30,-7.171805902907124e31,-8.273037743320533e31,-7.867887237262688e31,-2.4440452460551e31,-7.544370943388236e31,-5.018621593580977e31,-4.476790286023605e31,-8.505598026087238e31,-4.030767952948834e31,-4.90352447770263e31,-3.918240131783969e31,-1.3410547432468646e31,-8.374812738306833e31,-8.425137695877235e31,-4.323352388683482e31,-9.967764079503513e31,-2.112184811575968e31,-7.710543142048403e31,-2.0022730171664438e31,-4.48509934246447e31,-1.1445427181539192e31,-5.167167180488996e31,-4.574898912682613e31,-3.5602478490602977e31,-7.6617357008991815e31,-5.120587536217698e31,-2.1932829746602524e31,-3.1238964020557582e31,-2.387022997765249e31,-4.7932866949880197e30,-3.8751840289497656e31,-3.7979585558116527e31,-3.179204579699887e31,-9.755562189485532e31,-1.1221793385383971e31,-1.0106844793504678e31,-3.157394434277581e31,-5.977906167033194e31,-7.895663444689195e30,-2.5586002272827616e31,-8.793168205031804e31,-3.384005026985343e31,-3.132197473884646e31,-2.848076019985979e31,-4.814796258282601e31,-2.8928089639055022e31,-6.594642684735488e31,-5.816511595497964e30,-1.1798846784413797e31,-9.468318270633673e31,-5.893291440555358e31,-3.2088432477948518e31,-7.507826131052141e31,-3.4211289234079615e31,-4.374741508535299e31,-9.893526839487668e31,-4.0663901374519275e31,-8.612445768858868e30,-8.134828424463604e30,-4.584723071551832e31,-5.893807493582802e31,-5.307117630196528e31,-9.41666374915031e31,-7.768012589393059e31,-7.990241830652046e31,-5.100465991634545e31,-3.4716694955883644e31,-7.505398694681261e31,-7.091875778700558e31,-6.9974132028581965e31,-5.191508208033457e31,-3.021364025537786e31,-1.8943810110181315e31,-5.947526327019914e31,-3.28484992198029e31,-1.3028781797654488e31,-1.6071613051478118e31,-9.231292532916587e31,-4.0640547077731975e31,-9.410823702600191e30,-6.352395403335722e31,-6.759727836606523e31,-7.743033561085242e31,-6.726526015102911e31,-3.2828424679614788e31,-2.0306266949017828e30,-1.250391706189934e31,-4.456978447004754e31,-7.427608590839423e31,-5.857926972342821e31,-7.200875906937637e31,-1.302403756422237e31,-7.160771397951127e30,-2.967589676568806e31,-3.3063595307372406e31,-3.822587681536477e31,-9.18799388988973e31,-1.9997527498946822e31,-7.28592433006225e31,-7.1713720629749225e31,-9.57447760264116e31,-9.901984875902923e31,-3.60069240095672e31,-9.71171210894406e29,-4.396105120622096e30,-2.034021647327925e31,-2.4601200960263128e31,-2.56847984630848e30,-6.041140474678715e31,-8.0375736421110145e31,-1.2406492425148553e31,-5.432490039099986e31,-3.9352841444042097e31,-7.068205601165311e31,-4.37006888215804e30,-1.968361222990328e31,-9.38514399312596e31,-6.616069378906404e31,-9.033586319233345e30,-7.646720668977987e31,-1.3829674935108805e31,-7.4947994114018015e31,-1.991979440040862e31,-1.3344059954870503e31,-3.8769710828830507e31,-6.460182654788881e31,-4.49639870806619e31,-8.50067255427871e31,-7.071836815067631e31,-9.17193882244476e31,-4.611126283636998e31,-3.7667197146957844e31,-3.3655989534410816e31,-6.4058339918208875e31,-9.387146999658306e31,-2.964087842256129e31,-1.9220559214111145e31,-5.241273024057877e31,-2.335471996554198e31,-5.739185903794645e31,-2.0071357199975327e31,-8.808702986594945e31,-2.3302764662258625e31,-5.892145514931197e31,-9.340633069816174e31,-8.892304621315635e31,-2.6280833292348074e31,-2.82630805811269e31,-6.539790703618535e31,-2.8736483289256254e31,-6.867754896244581e31,-3.0248327537132602e31,-7.63121049486011e31,-8.093153417402792e31,-8.278882405910039e31,-2.0333607579949267e31,-5.977056637506554e31,-8.471968706472286e31,-7.977516080580485e31,-2.4213161884155267e31,-2.469725216737695e30,-4.397904284347707e31,-3.0299472469840327e31,-2.8249253249547993e31,-6.2349279158922505e31,-4.3821400811094785e31,-4.83317986534623e31,-9.71369976437935e31,-1.898252874265214e31,-9.371489787794709e31,-6.113807511130248e31,-9.634601464942721e31,-2.2263040701427042e30,-1.3741116782654407e31,-7.405514900045466e31,-5.518541758366597e31,-2.050820594139746e31,-3.6851748595074086e31,-5.366395538592845e31,-6.738100714287821e30,-8.182252880698144e31,-7.6712430755399775e31,-4.1992401609256615e31,-2.4993456662200465e31,-5.537951305631951e31,-5.484653968842646e30,-5.731761395951447e31,-3.2765443015072784e31,-9.486636150365413e31,-6.7237423296923975e31,-2.5615098779891047e31,-7.063324103207212e31,-5.0354096617607263e30,-2.7785343574685464e31,-6.501670764117516e31,-4.150639319823302e30,-3.340412047288256e31,-9.15822782792525e31,-1.258088913151292e31,-3.3981023378267316e31,-5.083697639999207e31,-2.6359908956487643e31,-9.030447892015963e31,-5.765984272828739e31,-6.44366324700999e31,-2.785014207702462e31,-7.219027709044301e31,-7.638744235919843e31,-4.54125575554159e31,-6.1685915374924765e31,-2.8985571942382984e31,-5.6231994260490225e31,-8.404840112893228e31,-7.719811936093079e31,-9.426777800908018e31,-1.2014817248686162e31,-2.5396193293555914e30,-1.1933175921010398e31,-4.8373139776810975e31,-5.142993813018012e31,-9.766454347091363e31,-6.598985186940203e31,-9.757109444614373e31,-6.165912387126596e31,-1.4238756708915569e31,-1.8256316222240199e31,-1.0263190234955533e31,-4.8555175302973265e31,-6.900993460374672e30,-7.185251992700762e31,-3.7201566136560516e31,-8.697553480107339e31,-7.12381022540445e31,-8.157616958137867e31,-1.7054152529765522e31,-1.8649708473541871e31,-5.355730842027671e31,-8.110475940196893e31,-9.375628779291119e31,-2.913076723473679e31,-5.726796360957658e31,-7.274235876844981e30,-6.704604941790862e31,-2.1682736830432914e31,-5.404303101215e31,-1.456377505652955e31,-8.684370017797634e31,-1.072925407010663e31,-3.0870209166418253e31,-5.4456970162683105e31,-3.6116486984677123e31,-2.691719315598801e31,-5.563505303149702e31,-9.980561323961958e31,-2.575673022424441e31,-7.17349689076369e31,-6.987634659336701e31,-3.174038067218107e31,-2.0014685493979558e31,-8.684250645576797e31,-5.310654700792761e30,-9.209177274543912e31,-1.2922914749600223e31,-2.920885799046986e31,-2.062830792548822e31,-3.9054013869114313e31,-8.228428017699305e31,-5.675196678860411e31,-8.538443774035198e31,-2.2411310002662225e31,-7.877670276365653e31,-5.551101420688221e31,-6.741257411502972e31,-9.789765024605031e31,-9.009625790948644e31,-3.187572093098321e31,-9.420570123312996e31,-3.167534432857352e31,-9.001560191058785e31,-5.420275577869437e31,-3.746215272291187e30,-5.725123443973356e31,-6.2475199973660635e31,-9.47478378817032e31,-2.6639823738447236e31,-9.707845843014325e31,-9.171344254949654e31,-3.093421142501962e30,-5.822495941162243e30,-1.0522542345086618e31,-7.782523710918943e31,-1.9403224906029338e31,-1.0113929500371055e31,-6.17774919685318e31,-1.400856666226774e31,-2.3882850893267527e31,-8.450505846802992e31,-4.656157268630814e31,-3.796398875219628e31,-2.8350997203845376e30,-9.133033102297893e31,-2.436263277970926e31,-2.6194452409496294e31,-3.915834985369008e31,-4.955920510859382e31,-2.5373060371502898e31,-3.574881279038401e31,-5.286228966451578e30,-1.4771912430504697e31,-1.5471038065627773e31,-9.80660293951319e31,-8.751026046231517e31,-2.720409442037426e31,-8.878983403087756e31,-6.458980661530775e31,-6.887425789574737e31,-7.708631447744744e31,-8.771797623843408e31,-3.3602061674353545e31,-4.84120193438298e31,-2.3137435793503694e31,-6.711621233090042e31,-5.258289663229959e31,-4.722430622870787e31,-5.169658837018544e31,-1.621501195524412e31,-3.1635640675317703e31,-1.774434809135891e31,-4.006969441598196e30,-9.321505804950955e31,-3.4255255772900363e31,-9.158661040164264e31,-6.792138028254731e31,-1.3802871248356276e31,-4.971842697165461e31,-8.545223754693366e30,-8.134756657010863e31,-7.865355086174066e31,-5.290999503604314e31,-5.742044412503784e31,-3.9438616872589827e31,-8.915534431228657e31,-3.250586117141952e30,-9.498231835929857e31,-9.666010937819793e31,-1.442155438679671e31,-1.7412519393885408e31,-4.818398038170052e31,-2.837527278562484e31,-5.604058103841587e31,-7.109594730899016e31,-6.672644745813239e31,-5.21889733013149e31,-6.866350698784823e31,-7.986739616183381e30,-4.066945631701837e31,-8.533228944877136e30,-1.257930131969486e31,-4.66583307400391e31,-8.170599718420017e31,-5.548242216685906e31,-7.3714230292302285e31,-9.575055028865438e31,-5.526033522804041e31,-7.268776588685966e31,-2.8971344430448877e31,-6.121291271318119e31,-4.983882045781451e31,-9.004824605235884e31,-3.575732659630807e31,-7.491347099256293e31,-8.476934330296e31,-6.089462405212116e31,-9.664869190242482e31,-8.013591179435804e31,-6.458441985142031e31,-5.200386718371151e31,-7.649297105996582e31,-6.556047260234682e31,-4.231023640266255e31,-7.520101698743168e31,-5.696116029547949e31,-8.034559801537912e31,-9.87823652232456e31,-2.1426660912776096e31,-3.199256002056742e31,-5.118631839626559e31,-8.59209808407619e31,-3.3267564021100615e31,-7.823448635191948e31,-6.269091411226185e31,-3.752996521110711e31,-4.213294819431906e31,-9.189157967835826e31,-1.6984188386001798e30,-8.326942067509063e31,-4.884398321791672e31,-5.171772301696462e31,-2.9762166835169757e31,-3.8517573598203184e30,-6.428032733478448e31,-1.0995995672966485e31,-3.0151583157497286e31,-3.560404654285988e31,-8.854160356471582e31,-5.254353949680957e30,-1.7714266876215447e31,-7.216801492667116e31,-9.605597846172158e31,-7.530210889413536e31,-1.0419718026053092e31,-2.1234547347114244e31,-5.972951695605369e31,-8.683092180587756e31,-3.568716859914031e31,-9.964420809970066e30,-5.139837494784302e31,-9.234559356137133e31,-8.816222284619135e31,-4.6921801809767925e31,-6.2035730075937e30,-3.6586174956241093e31,-2.9586030067352165e31,-4.686664148542808e31,-4.132731964665383e31,-7.235874847311633e31,-5.757361560009904e31,-1.554628799261726e30,-6.103721614990389e31,-3.56628686989404e31,-9.904401366056826e31,-6.467649461988973e31,-9.938730439494892e28,-2.4204795936190073e30,-5.508186606360991e31,-1.0119645391362165e31,-9.45858241073008e31,-1.7444019496544973e31,-2.599812933784388e31,-2.1632826658774284e31,-1.8731529326553087e31,-9.933400411521096e31,-7.826771600429226e31,-2.0851314944271795e31,-9.384292522252835e31,-1.251432547739162e30,-3.3641025024649185e31,-9.577155124210062e31,-5.659763039580105e31,-8.26969842246638e31,-5.8417884956736005e31,-2.5065510363869883e31,-8.43435048164311e31,-9.301876202418886e31,-6.275503262670038e31,-2.9718066299206903e31,-8.69267957268189e31,-2.951443399509046e30,-7.085412813971576e31,-9.609637065255574e31],"im1":[-9.79999559886444,-8.123020436476914,-8.649290078469953,-8.486197569375209,-9.888294455988135,-8.627577707695853,-8.349428622246439,-9.59042650160733,-9.472799019413264,-9.98773377437123,-8.604907425316517,-8.391196791371772,-8.342209056322144,-9.399518554029932,-9.745305340961103,-8.703112534318928,-9.645715157741918,-8.24531287513769,-9.238751516214943,-8.497674845167333,-8.900044596195686,-8.484997277635134,-9.052716826529505,-9.352056889422403,-8.933174705275276,-9.081185445978072,-9.962358388844413,-9.549764529355745,-8.860019580650938,-9.638233734385162,-8.3441176376188,-9.118967123228435,-8.641365219833007,-9.893772691575084,-9.786110896906738,-8.450115107750062,-8.237313775328497,-9.881007561502129,-8.1048975752331,-9.794585955944944,-9.925823423665229,-9.217789656047954,-9.725345636636291,-9.786926644863936,-9.464816125713996,-8.222751104402338,-8.828945743527969,-8.77527976995187,-9.15596780964055,-8.826295572209698,-8.704172614341353,-8.449909462479752,-9.416630564733085,-8.912726339218818,-8.230580632270218,-9.3492587550851,-8.381095805265886,-8.424216666596426,-9.006655416257303,-8.125882918854487,-9.878833098892517,-9.90637973508639,-8.528402289208078,-9.279273580397923,-9.194232613463052,-8.326577439174239,-9.615725043676754,-8.788181721293691,-9.302546944732173,-8.297074203091334,-8.775525844204566,-8.397245933922116,-8.31438710517213,-8.912104738169454,-8.191564862022963,-8.276690431687491,-8.262948161583234,-9.61440852728722,-9.938574358774801,-8.248061644104578,-8.582289509152904,-8.725142365025322,-9.698960447434,-9.481534989837407,-9.61638490006253,-8.884355286188612,-8.816382599245319,-9.224028421295971,-9.712751309609072,-9.647603630730023,-9.407366908883574,-8.686499901900264,-9.11921313700037,-8.101012054557371,-8.689007095813018,-8.905274042275096,-9.69215652645388,-8.152616087293426,-9.851780665048505,-9.654419148740418,-8.371359312761067,-9.117315645663977,-9.04703838463821,-8.338782258094996,-8.684572468652439,-9.78620106321161,-8.883281970976507,-9.430429400801009,-8.075062101218432,-8.949014165840346,-8.56845158825061,-8.135455306710861,-8.793175609421867,-8.349302639121674,-9.737060578276605,-9.465567409148816,-8.097418447456995,-8.711893575487917,-9.956703345738159,-9.522979261081566,-8.59392875076654,-9.26445487080436,-9.674371277213279,-9.271545018145195,-9.783841121772449,-9.515072033750654,-9.811455770942693,-8.627441098354325,-8.573088203075347,-8.397273586372568,-8.86793678654081,-9.053545413653525,-8.477740756967911,-9.681379498789862,-8.403468065523546,-9.562349061819859,-8.076262187604787,-9.101915483661202,-9.836567281716574,-8.772088055262182,-9.48424620751929,-9.956260236767863,-8.407974182322938,-8.928397982710763,-9.29971197414877,-9.088158089433785,-8.222509644400574,-9.714879923509056,-9.00865725711249,-9.324568720824521,-9.047981800490543,-8.74441824557996,-9.368889319300555,-9.837774850732487,-8.951727804023864,-9.843876262214444,-9.790699300108356,-9.894117858553516,-8.77242853594124,-8.350571449942537,-8.557976880568505,-8.475607432748806,-9.879273684582873,-9.647594217641247,-9.87570454185915,-9.673858643840054,-8.6965439483619,-9.47046350554903,-8.571695597844714,-9.713906897545707,-8.478807072667568,-8.675658810674221,-8.65140146964307,-8.924293899041672,-9.254450996358168,-9.604165539862592,-8.904218316775266,-8.60896822651366,-8.750942243903161,-8.561175309195338,-9.116125500360083,-9.04796124667233,-9.563885918546543,-9.299239673430495,-9.261910088017604,-9.15422262038622,-8.600257513730993,-8.172272577519307,-8.900767088235247,-9.751626373741027,-9.843900929506193,-8.94742176976402,-9.710096887461791,-8.44378748763013,-9.55659423226682,-9.313245775772549,-8.284696351340429,-9.919218986412437,-9.32368047860301,-8.106684988239126,-9.639380519638692,-9.011239084218554,-8.821280618214745,-8.791157053505446,-8.389478637919701,-8.18430356643105,-8.21806652901306,-8.798264057336295,-8.259930754919177,-8.463569432325707,-9.67804044931083,-9.622725937142844,-8.877177890313089,-9.651319149507682,-8.88542166240231,-8.013860514678962,-9.527349448959018,-9.607509038755655,-8.214932913599329,-9.887231874794487,-9.52824958729332,-9.771538424130508,-9.645685877541137,-8.63609770363254,-8.926538995631203,-8.801814559697378,-8.84180211615595,-8.50377364894476,-8.46387993528156,-8.398455679457884,-9.213273276097553,-9.190452416513544,-8.277357109678952,-9.155971531710936,-8.835775587057823,-9.350639745241537,-8.2068075123047,-9.746170159360956,-8.679568068700673,-8.800438665778389,-8.647214846592112,-8.17937853702936,-9.953189391599842,-9.060255489776193,-9.940528568625687,-8.506118074061698,-9.810834976249422,-9.233995462159013,-9.582590237788706,-8.684562684328677,-8.1499542868973,-8.635355321813332,-8.892837246564701,-9.34135665117673,-8.513213896972987,-8.866103270530258,-9.047966769628227,-8.950618563615183,-8.898587539165307,-8.885272463548318,-9.480198323328517,-9.16697477628344,-9.670297847616188,-8.833738080697135,-8.483928774511806,-9.204649061400774,-9.636051804633297,-9.347469125164066,-9.179805625708184,-9.517776568578116,-9.486094227575375,-9.51293253449359,-8.902463580883573,-8.092021063465323,-9.401312881716015,-9.318196719231471,-9.967220606819767,-8.00955310583379,-9.045079655840949,-8.428545628588038,-9.591495658753715,-8.825077879630843,-9.706374770225358,-9.18274178996578,-9.324437945173944,-9.206403248417637,-8.391328259126297,-9.936576436452503,-9.455298720075712,-8.235050910611966,-8.959749522412157,-9.390095927797216,-8.730736044282533,-8.430417665049124,-9.356949933201564,-9.92654214856731,-9.347870764599065,-9.339905970875964,-8.263633624203834,-8.124351846888619,-9.062693791854544,-9.055905976220814,-8.607468579691307,-9.745893842835109,-9.58574881873788,-8.140904420590033,-8.193717213232501,-8.465664314288077,-8.021907838191687,-9.549641976618904,-8.49370602382532,-8.916525460260306,-8.936222442330392,-9.113671403006665,-8.358157504608762,-8.37629106932934,-8.950683159065655,-8.960327649020561,-8.087191186967116,-8.03950273246246,-9.073114123912752,-9.832653514193275,-9.935014545058728,-8.818545516185543,-8.128375939534108,-8.12045769877373,-9.314766441316237,-9.450718218632215,-9.597891158530011,-8.476946312070337,-8.6667806498538,-8.938094610676124,-8.699126016397589,-9.216116026608821,-8.934308773737264,-9.15544814428083,-8.752773432745848,-8.261785669244242,-9.753463339213079,-8.58616182139922,-8.370317035521607,-9.485010295455572,-8.22733297577321,-9.635332030739718,-8.459233229707763,-8.827864985451713,-9.553933558426396,-9.987752043479272,-8.586057535526109,-9.435645065508094,-8.936143257541271,-8.471740432101338,-8.771290514663152,-9.76393382598364,-9.478698104310267,-9.250535475794312,-8.576220489420521,-9.240524217586733,-9.720963019091622,-8.114612916240635,-9.559785512031732,-9.277488182488012,-8.733224196818028,-8.144017571721005,-9.732358942596054,-9.22440402228131,-8.981328311049179,-9.681601877733792,-9.916311971266472,-9.80422670203309,-8.684411166017169,-8.597158223531714,-8.573494215222082,-8.717028257357967,-9.020252177190088,-8.08024149823483,-8.291427663719096,-8.162884184000298,-8.787438295722264,-8.004329040294445,-8.91812769426203,-8.61784172224155,-9.521876035695115,-9.728764190823593,-9.091782072240392,-9.978837224958587,-8.244664800217816,-8.928723797817437,-8.363794319945253,-9.495984479392353,-8.620561165389582,-8.316485940781249,-9.703582159506796,-9.739348354751563,-9.588765958698446,-8.149841755933666,-9.779728343192453,-9.311048223530683,-9.748655031811337,-8.457346110570198,-8.836558060874271,-9.760899913980392,-9.91967188169008,-9.326590245073263,-8.363752802017205,-9.780085914781033,-9.21759236972721,-9.026023592257877,-8.128127117693328,-9.808870522235669,-8.020201446568343,-9.768215738210248,-9.957995370255492,-9.938192169321287,-8.987924870264745,-8.64632076048814,-9.084381767056957,-9.6008397929821,-8.346405172620099,-8.8357479758406,-9.69114858544289,-8.502255307296421,-9.10839948796524,-9.05836250519647,-9.572298513083028,-9.423976316974363,-9.518471097455794,-9.50495436746271,-9.662400600651143,-9.435996182016803,-8.627337615590967,-9.634798044738462,-9.352977208732367,-8.877035635982734,-9.84381819263329,-9.812018916732063,-9.646833644589773,-9.844673280344988,-8.079854853640452,-9.060181587170694,-9.091597870394944,-9.108569976781236,-8.598300580576117,-9.705233783695627,-9.877755679595113,-9.747107502330257,-8.451720301004691,-8.50649139250126,-8.075845691462362,-8.460675345991252,-8.223129978089604,-9.592143462566433,-8.346597398316833,-8.354522143228062,-9.389568517507294,-9.18879692840501,-9.466908326536604,-9.903106292063818,-9.599141595738255,-9.776690078927412,-9.435159123250203,-9.090958100396728,-9.912897661043731,-9.968799398180181,-9.297484841365657,-8.405927759375377,-8.610597029501463,-9.273110169368437,-9.815990018256771,-9.16847648263144,-8.79303298759018,-9.069545995581572,-8.929853627178204,-8.036067682926557,-9.648743367720034,-9.630798922487099,-9.075498103166938,-9.545568472477514,-9.211258434814464,-9.7869171556519,-9.86628499762976,-8.165107838372553,-9.716066637870655,-8.85544989136823,-8.00558776557912,-8.843560191527011,-9.336507404050375,-8.465069073856657,-8.406799456095179,-8.255927305584672,-8.533422854341215,-9.769395852458413,-8.655501104509659,-8.612373928421466,-8.14211794728477,-8.996538375517675,-9.201535696447085,-9.14809356506083,-8.07554427844317,-8.871057805194653],"qim":[-6.249569e-32,-2.75596e-32,-1.6532605e-31,-4.1435314e-30,3.921855e-32,5.985189e-32,-1.3730053e-31,3.4229417e-32,3.8218428e-32,1.9456785e-31,5.666527e-32,-1.2349651e-31,6.81415e-33,9.017259e-32,-4.2954153e-31,-5.159318e-32,2.1466666e-31,8.153282e-33,-2.1945915e-31,6.7186455e-32,1.645316e-32,-8.8042335e-32,-1.7268957e-32,-7.0703946e-32,-7.511545e-30,-6.778901e-33,2.7948293e-31,1.4862501e-32,-1.6808154e-31,-1.1615901e-31,2.69444e-32,1.1123287e-31,2.0932952e-31,3.883819e-33,5.139492e-32,5.512013e-32,-4.7801325e-30,-6.6253255e-31,-8.518868e-32,3.3160458e-31,-3.9983177e-32,1.148636e-33,-3.5680196e-31,9.1124163e-32,-7.023171e-33,-7.813074e-32,5.1879056e-32,-7.060231e-33,-8.08968e-30,3.1691363e-32,-1.36984685e-27,1.133326e-31,-3.3046686e-30,-1.50594e-31,2.0767215e-32,-2.0253816e-28,1.0084672e-31,1.1767103e-32,1.0007191e-31,2.4437171e-32,1.0991903e-31,5.7767954e-32,4.8328957e-32,6.219476e-32,-4.5388475e-31,-2.1969095e-29,9.1217556e-32,-2.7973445e-32,8.9413014e-32,8.0413147e-32,5.9167127e-32,-2.1971778e-29,-1.8308486e-30,-1.9027153e-29,9.457201e-32,-2.3214534e-29,5.967769e-32,4.365974e-32,1.4953836e-31,6.9537144e-32,-1.6731473e-31,6.38067e-32,7.2356726e-32,-3.41284e-31,-5.8488847e-31,6.622364e-32,-9.332926e-32,1.8519581e-31,9.4836586e-32,-3.8859013e-31,-1.5725332e-31,6.4210403e-32,-5.2978114e-32,1.8241002e-32,-1.2425918e-31,-1.7796529e-28,6.422513e-32,9.954513e-32,2.245452e-31,-4.2707138e-29,-2.6617053e-27,4.6124426e-32,-2.078717e-31,-3.577355e-30,-5.1380222e-30,-1.9813325e-32,5.0209466e-32,-4.9811126e-31,9.1796874e-33,-3.574742e-33,4.0093935e-32,6.393509e-32,1.1593794e-31,-6.1817843e-32,-1.3108914e-28,9.052608e-32,1.0582561e-31,-9.570161e-30,3.6279356e-32,1.294834e-31,-3.6423967e-33,1.7977909e-32,-4.9350627e-32,-2.3371012e-31,-2.4117338e-31,5.6869476e-31,3.2457785e-32,-6.127583e-30,1.4538222e-32,-1.2843194e-32,-9.293545e-31,1.0025174e-31,2.4344794e-31,9.3917514e-32,-2.1608108e-29,2.857637e-32,-1.044673e-30,7.12455e-32,-2.1273606e-30,-3.6836027e-31,-9.99053e-32,-5.879975e-31,-1.4022073e-30,9.3929234e-32,1.1449904e-31,1.0998769e-31,6.869446e-32,1.4720931e-31,-1.4124326e-31,-1.5045638e-31,9.699538e-32,-2.7899343e-31,-1.1216028e-31,-1.3634443e-34,9.814392e-32,1.3348064e-31,-3.1017833e-31,2.9923922e-32,9.955029e-32,-3.447875e-32,1.0294529e-31,-1.083396e-31,1.2551375e-31,9.471232e-32,-5.180461e-32,3.7111885e-32,-9.7177586e-29,-1.106871e-30,-1.54388e-31,-7.66878e-32,4.3041046e-32,-4.7367356e-28,-1.3028076e-32,-8.5966327e-29,-3.4979192e-31,7.093917e-32,1.0007885e-31,-2.3845369e-32,-1.8035167e-27,1.833293e-32,1.1870426e-31,-2.4472283e-29,1.0465224e-31,-4.9577243e-29,5.6270474e-33,5.1631892e-33,-2.4940513e-30,6.3299025e-32,-2.9155374e-30,6.949477e-32,4.182738e-32,6.2340015e-32,-2.9619362e-30,-1.5807269e-29,-2.4789467e-31,9.640862e-32,-3.3575028e-33,-2.5424647e-31,-4.3610837e-32,7.6662756e-32,1.2715945e-31,5.092688e-32,-2.4103128e-30,6.569805e-32,6.742208e-33,4.5954706e-32,-2.746362e-32,-6.206062e-30,9.698357e-32,-2.1840637e-32,3.8918455e-32,-7.237521e-34,1.781696e-31,1.4504633e-31,-4.254895e-32,-5.1932104e-31,1.0609872e-31,-2.6436301e-31,3.8175213e-32,9.538306e-32,-4.7506847e-33,-2.3405663e-30,6.266334e-32,-2.6423392e-30,3.6021026e-32,3.6895657e-31,-1.2042955e-31,5.6867554e-32,5.5434587e-33,2.9237712e-32,-5.417082e-32,3.1059115e-32,-3.2952477e-30,8.2502494e-32,-1.1047658e-31,1.1419743e-31,-2.1523153e-31,-1.5718623e-31,9.1441515e-33,-4.9083957e-30,-2.8759622e-30,4.3446697e-32,-3.9886945e-31,5.758992e-33,3.0997983e-32,-7.419284e-30,-1.799632e-31,2.928197e-32,-2.4432457e-31,7.362713e-33,6.36632e-32,-5.3537726e-32,-3.1365735e-30,-3.3887727e-32,-1.2936646e-32,1.4761469e-31,4.1180953e-31,1.3976942e-31,2.381632e-32,-1.680834e-31,-1.7854157e-30,2.1076377e-32,-2.9302303e-32,2.2423263e-32,7.427868e-32,1.0655143e-31,2.264055e-31,2.3481696e-32,2.8293216e-31,-3.291033e-28,5.597372e-32,-1.0366927e-31,-2.2872538e-30,-9.377864e-31,1.0216709e-31,8.928208e-32,5.4492556e-32,-3.6292686e-28,-3.9158064e-30,-2.668147e-30,-1.9837215e-29,1.1087846e-31,2.1588656e-32,5.9418995e-33,-2.5426871e-31,9.185462e-32,-1.837448e-30,1.169758e-31,8.2516324e-32,2.0063462e-32,-1.01167285e-30,-2.2798802e-31,-3.7831167e-28,-4.7381723e-32,-2.1556434e-30,-8.925128e-31,-1.1266088e-29,-6.715163e-32,9.794182e-32,-2.3195807e-34,-2.029337e-28,-2.5433766e-32,1.4747139e-31,7.5293587e-32,-1.602547e-30,2.3067922e-32,-3.2558843e-32,7.315159e-33,-9.678434e-31,1.2033779e-31,1.8509945e-32,-1.12681816e-32,-4.0670675e-31,-1.1900341e-32,-1.9802814e-30,-1.3085662e-29,-1.2915662e-31,-2.8407437e-32,-4.372017e-32,1.5621828e-32,1.6145362e-31,5.1469044e-32,4.7659663e-32,-2.6155666e-32,-1.3275956e-31,-3.7524362e-33,5.7674238e-33,3.3054565e-31,-1.1782684e-28,1.2051885e-31,-5.0865822e-28,8.1386885e-32,7.8191856e-32,-4.285583e-31,7.7017e-32,8.062874e-32,-2.1550038e-32,-2.3960642e-31,-8.354269e-31,1.0970725e-31,8.36067e-34,1.0982697e-31,-1.7768485e-30,6.0898906e-32,-1.255601e-31,7.5327547e-32,4.728486e-32,1.6253244e-31,9.5421083e-32,-4.9093008e-31,-3.3135394e-28,-1.937719e-32,6.920238e-32,-3.5153643e-31,-7.21176e-32,-7.541981e-33,-2.7560638e-31,-5.359539e-32,-2.2803385e-30,3.9755638e-33,-3.0854808e-32,1.3874633e-32,2.965275e-32,-5.7888383e-32,3.4070405e-32,8.433065e-32,4.0656747e-32,8.990724e-32,5.2473546e-31,-3.140513e-31,-8.204644e-32,-3.2896668e-32,-2.637442e-31,1.1833965e-31,3.309903e-32,-1.7780532e-27,-7.635481e-30,1.3648699e-32,-1.2379258e-31,2.2341888e-32,5.654484e-32,-4.1398687e-31,2.2607284e-31,-1.6952625e-32,-2.3469424e-32,1.9051491e-31,7.169946e-32,-3.0036594e-31,-8.590081e-31,-8.367662e-31,1.1892049e-32,-3.0041148e-31,5.3111486e-32,4.891079e-33,1.6169523e-31,-3.535305e-30,1.0349735e-31,9.0109876e-32,5.118499e-32,-3.1782057e-31,-2.1299776e-28,-7.2791835e-32,-2.9945028e-30,8.036151e-33,-4.265235e-31,7.338972e-32,4.2548023e-32,4.3268107e-32,-6.739262e-31,2.6203374e-32,-1.843701e-31,2.3040825e-32,-3.7167942e-31,-6.1163985e-31,-4.128763e-32,4.2722343e-33,4.937233e-32,-7.989458e-32,1.7947564e-32,-2.2589628e-32,-6.759981e-32,-4.3091027e-30,-7.644156e-32,-1.1185516e-32,1.0011983e-31,6.840235e-32,4.4737164e-32,-1.5048221e-31,8.2273526e-32,-9.867866e-33,-1.1638015e-31,4.8988795e-32,-1.1925266e-31,-1.5789628e-31,-1.9611273e-28,-9.1947574e-32,5.033571e-32,-5.717943e-32,-2.945908e-31,1.1677855e-31,-3.1059512e-30,8.241168e-32,7.050878e-32,7.0128694e-32,-2.409387e-32,1.9235034e-31,7.348281e-32,-1.3257832e-31,-2.2553947e-31,-4.3435483e-30,-2.2249224e-28,1.2987207e-31,-8.72318e-32,9.3721126e-35,6.0566847e-32,1.1804494e-31,4.847535e-32,-9.089167e-32,-2.679731e-30,5.939417e-32,1.1376517e-31,-1.1920229e-30,-5.5592786e-31,5.3092166e-32,5.4586866e-32,-1.3059747e-32,6.926783e-33,4.310537e-31,-2.3682421e-30,6.094352e-32,-4.0815785e-32,2.263663e-32,1.6479135e-31,5.0592186e-31,4.7562609e-32,1.8836283e-31,-2.3953551e-31,4.191049e-32,-1.715088e-30,8.284286e-32,1.1082762e-31,-4.1522325e-31,-2.0756396e-30,9.050928e-32,-5.9609105e-33,2.1748618e-31,-3.2576153e-31,-4.380439e-33,-2.7267432e-31,-1.7775754e-31,-2.577918e-33,9.4661825e-32,-1.5844412e-29,-1.3858343e-31,-5.550792e-33,7.0444884e-32,-2.2288441e-30,-1.16120335e-29,-7.86319e-33,-3.7351218e-29],"qre":[1.325549,1.1883173,1.8949008,6.393049,1.0260476,0.5718077,1.5217729,0.7558832,0.70036215,0.26097223,0.64207476,1.8387676,0.89595926,0.24729457,1.9766932,1.4547201,0.12597708,0.92387515,2.027859,0.3875291,0.9671814,1.4144862,1.283341,1.48488,9.431153,0.9659076,0.06667966,1.0033151,1.73494,1.7899511,0.72461194,0.035661425,0.009154628,1.0143017,0.6005775,0.7598244,6.830893,2.7462282,1.5942572,0.5965175,1.3623585,0.9390067,2.2922542,0.7554466,1.0458742,1.1919347,0.4480967,0.97476953,6.4953194,0.87397134,82.1176,0.2551327,6.014668,1.9326755,0.7462796,48.739235,0.43467686,0.8110273,0.3120999,0.77795744,0.14989029,0.696299,0.60814315,0.51040757,2.6334622,11.873369,0.279414,1.0092126,0.36430347,0.04920453,0.49989647,10.43523,2.9851518,14.182188,0.15726925,5.625681,0.5760776,0.7355097,0.13434435,0.395875,1.864636,0.56975764,0.37220395,1.6277851,2.5589945,0.31093705,1.4395256,0.13510881,0.12973891,2.551407,1.6361121,0.49951047,1.2431884,0.7257771,1.3862095,43.78864,0.522512,0.11956424,0.23436293,14.6456175,129.48508,0.6267826,1.9717643,5.8440433,7.1339526,1.0741283,0.61641914,2.6219802,0.7298846,0.9356021,0.61861867,0.47689676,0.389022,1.2541564,23.168577,0.1433223,0.34826326,10.919332,0.8934025,0.14670263,0.8955297,0.9745265,1.4761745,1.8587521,1.6172622,0.13764828,1.1369244,6.1797166,0.8526558,0.9811711,3.1448953,0.17057873,0.33328256,0.6636403,9.076225,0.9708834,3.6714046,0.7713124,4.5943174,2.2154481,1.6309391,3.1312473,2.9931583,0.0103316745,0.057695862,0.7535945,0.35315776,0.04039283,1.6812716,1.700606,0.15918905,1.7558532,1.4017067,0.99743295,0.050526667,0.5758772,2.4198718,0.9520204,0.1168071,1.0827842,0.20754264,1.5699459,0.35928962,0.15021692,1.1890658,0.72911036,23.53852,3.9715846,1.6537304,1.4889063,0.46704525,45.006844,0.9154134,24.022278,2.4349039,0.3345719,0.29395378,0.98877233,69.103966,0.77419513,0.448702,15.496048,0.49841675,17.628624,1.0476508,1.0693271,3.0527523,0.66832936,5.224879,0.9366895,0.7142076,0.3109145,5.2727633,12.832856,2.2339969,0.31567064,0.9919265,2.064228,1.2713432,0.37245676,0.033601854,0.48548186,3.300035,0.3419771,0.8944015,0.48609468,1.1317443,8.745513,0.50861084,1.1078285,0.6180664,1.1207995,0.047029853,0.2731605,1.352591,2.3999465,0.69333965,1.8198565,0.54904246,0.069682725,0.9925116,5.095936,0.43076438,3.3068616,0.6816518,0.33013514,1.543877,0.44443458,0.9610205,0.6868017,1.0777212,0.80166423,1.9056174,0.42685032,1.5132412,0.05335329,1.3758657,1.8305166,0.9166595,4.663881,4.677585,0.7452527,2.5008368,0.98155373,0.71935177,5.6375713,1.8792969,0.773907,1.7566739,0.9213427,0.40523556,1.292807,5.7172494,1.1988072,0.99134606,0.2703607,0.13260007,0.2399626,0.9061625,1.6686488,4.958505,0.7797256,1.3447326,0.77683526,0.145745,0.2910574,0.35907745,0.8742209,0.28720877,49.19138,0.6520069,1.7949786,4.5846157,3.3255546,0.24754868,0.23200034,0.70003855,58.80392,6.988816,3.351759,11.623689,0.10186281,1.0299015,1.0033693,1.8228776,0.17821626,4.447703,0.14325039,0.6729648,0.7899386,2.6185513,1.398729,49.766155,1.258005,3.2692897,3.1390958,9.54477,1.2971139,0.40324527,0.9294352,11.191039,1.2444677,0.34511912,0.64155006,2.6958694,0.74782944,1.1030462,0.93385816,3.4328191,0.5108285,0.8070134,1.0600083,2.17385,1.1008921,5.0163183,7.048536,1.7606845,1.1126683,1.2100396,0.7346594,0.07232687,0.6298693,0.63748854,1.1404074,1.2218893,0.99054265,0.9437509,0.1215936,9.192974,0.18531407,69.38645,0.6666568,0.10130794,2.325955,0.76343364,0.32722494,1.111217,1.5673343,2.5242574,0.037738807,0.93615323,0.5717431,2.6333,0.4681135,1.3607111,0.34746933,0.8178606,0.09346405,0.21151294,1.4643289,62.22217,1.1833358,0.37289944,2.6145957,1.5554436,1.0776366,1.9932162,1.5241117,3.6717243,0.7878873,1.110762,0.96358067,0.80192983,1.1270908,0.8434998,0.17603391,0.82555383,0.19960251,0.3018894,2.5559392,1.1557547,1.2414812,2.0296996,0.24999341,0.74827075,43.254467,8.71788,0.8238166,1.4119108,0.589113,0.42776167,2.5647733,0.08312712,1.2528226,1.1286873,0.7150608,0.18596457,1.7322835,2.0788643,2.8302352,0.8263048,1.9720976,0.5653226,0.9889924,0.1595372,4.46933,0.09901095,0.14286126,0.555325,2.3873184,35.56507,1.3825784,6.12206,0.9267519,2.5202432,0.322249,0.6136518,0.52771515,2.9600651,0.93235075,1.7459701,0.90326,2.3541555,3.0062394,1.3345329,0.9718527,0.58477503,1.5120023,0.85796314,1.0632107,1.383569,5.5715814,1.5516329,1.0726103,0.30567008,0.55765337,0.675591,1.8053344,0.5136616,1.228118,1.3956773,0.803524,1.4860188,1.9893539,6.852048,1.6018362,0.49550864,1.2418827,1.5768948,0.0520683,5.286,0.11069365,0.61996055,0.38164648,1.3465943,0.11583199,0.1991847,1.5270187,2.168028,6.6330853,15.798257,0.699548,1.254548,0.9192308,0.7585973,0.15300977,0.662606,1.7385812,5.5401106,0.67239195,0.08077686,2.728531,1.8762026,0.4829924,0.48240048,1.0559489,0.88210374,0.07807337,4.742842,0.5065113,1.4423519,0.8109396,0.0018375936,0.19160494,0.73899823,0.26904404,2.059502,1.0909032,2.8850183,0.23891488,0.29176638,2.4910207,5.112672,0.31310168,1.0246096,0.031906337,1.831054,1.0552144,1.7512842,1.72906,0.980988,0.3809387,13.048934,1.8171991,0.9323047,0.58588535,5.4997125,2.4716358,0.93533593,20.494423],"re2":[-3.7583594089611994e31,-7.81327519244831e31,-4.206723771247591e31,-1.1548811838366104e31,-3.6763988948808593e31,-4.940610753440389e31,-3.7026968999920964e31,-9.398930481287948e31,-9.577561568104888e31,-4.034611571003929e31,-4.53597335665429e31,-5.425279019068468e31,-9.344283088836102e31,-8.2003507257334e31,-1.5463860423498188e31,-5.774204593148644e31,-3.976428702676509e31,-4.857787627309245e31,-4.080201813791509e31,-7.4060714381194395e31,-6.899401117280125e31,-4.554387804448696e31,-7.364655481143602e31,-6.728565825429406e31,-9.489021724537072e30,-5.350626698240628e31,-3.327796808248258e31,-8.183274635677819e31,-4.581539725776966e31,-5.247160736145338e31,-8.703001075491146e31,-7.9185444168487125e31,-4.085409638972761e31,-5.820022917782485e31,-9.358293716174763e31,-3.43726649747787e31,-1.1716043824701607e31,-2.401457882567172e31,-5.908972319936694e31,-1.5108572525569731e31,-5.264258012455661e31,-8.810414687983828e31,-3.4323797579028836e31,-3.2352322171870387e31,-7.213458983228542e31,-4.210483483065653e31,-9.990679273457604e31,-8.725753078246924e31,-6.205650005910424e30,-5.610623697210992e31,-4.7714983658421196e29,-5.256302681847424e31,-1.3923981058404534e31,-4.35931279951978e31,-5.793207524468961e31,-2.0451210027606083e30,-4.859207235012517e31,-9.507131195329474e31,-6.415487475202729e31,-5.76522462891138e31,-7.635869625017978e31,-7.4209028565184855e31,-7.522733400626508e31,-6.97530403646921e31,-2.9093774291182252e31,-4.3126660264397825e30,-7.849581913696171e31,-3.0953800258264554e31,-6.552292965502973e31,-9.741555743420065e31,-7.751972595317104e31,-3.6395540854222364e30,-1.065005939703273e31,-6.878742768253832e30,-7.135402291498407e31,-1.796554947030682e30,-5.480849645682527e31,-8.127569138069627e31,-5.8771828472275735e31,-6.463151882865617e31,-4.715756129862831e31,-5.939376013439907e31,-8.415271935809452e31,-1.7496633639530248e31,-1.8815186959112974e31,-9.30352000128941e31,-4.581121655874895e31,-4.305057129262145e31,-9.094300261660742e31,-3.7110183297442826e31,-3.6020094058852983e31,-6.423975998692094e31,-6.03917051682862e31,-4.713746399140747e31,-3.155902172861479e31,-2.2593822125585583e30,-7.78238648678466e31,-7.203195004506014e31,-3.471039086266483e31,-3.130440260908607e30,-4.55172716152863e29,-8.467238173952574e31,-4.775754908451205e31,-1.3292188695973106e31,-1.1200300660965412e31,-4.748470095479663e31,-5.631994683572825e31,-2.8624925018457306e31,-9.716434140676776e31,-7.47904774680169e31,-8.392097091795723e31,-6.335467794265193e31,-4.869598736291951e31,-4.742252654605751e31,-1.4178038266024374e30,-9.090547538265615e31,-4.614788591629793e31,-8.454082202997893e30,-4.548962627187223e31,-6.414897612362018e31,-7.093450478058576e31,-6.9364227234589795e31,-5.245337786103614e31,-3.6188395838052826e31,-2.0298764528841585e31,-1.4752284632016067e31,-1.0998019495033197e31,-7.212269406583938e30,-8.71114488940803e31,-5.970342096674031e31,-2.289702845256916e31,-7.635205608746883e31,-2.148558840247289e31,-4.4716838622957495e31,-3.6428796964675495e30,-3.9372261436595548e31,-2.5025827797300748e31,-2.5926626074869598e31,-1.5858555878245973e31,-3.2369847854195422e31,-5.870530051989352e31,-3.1623132031748314e31,-1.2029742248141951e31,-9.399939541508186e31,-7.6194465873258715e31,-2.699092785713485e31,-6.966065546902099e31,-6.358751996700518e31,-3.5931974252545974e31,-4.726299821033519e31,-7.793559096907082e31,-3.093931760834041e31,-2.807494672510509e31,-7.086396686357172e31,-8.64903473005203e31,-3.418022456461627e31,-3.878364004746944e31,-6.949503853710226e31,-7.733764522605079e31,-7.062090991395262e31,-6.663534226810556e31,-4.77392206939091e31,-5.544216580176406e31,-8.883193499387378e31,-3.2605187459697385e31,-8.860363470286552e31,-1.910230004741842e30,-2.140372960275294e31,-4.276293452910133e31,-6.160185145043306e31,-9.872975876568572e31,-8.369216151658532e29,-3.6765892077907116e31,-2.66662221463293e30,-3.855243594715243e31,-8.859344817062625e31,-6.538633381470668e31,-5.300788513423006e31,-3.379650018628055e29,-7.413099572551939e31,-4.473204442459718e31,-5.684483338701474e30,-4.67535754799735e31,-3.3423738933102575e30,-8.915788117428662e31,-8.315794631991596e31,-8.60889878971014e30,-4.2289149454260635e31,-1.251663675551541e31,-3.0678772990837546e31,-9.615907704414412e31,-9.728825821112143e31,-1.447288615841479e31,-6.306587492121696e30,-3.705861413299523e31,-6.441399771095211e31,-6.025705002586558e31,-4.104182436635329e31,-6.2748723566172895e31,-6.500932268616864e31,-7.349967571579045e31,-9.058843571371673e31,-9.181560736649552e30,-8.26056865662973e31,-6.971061700617543e31,-9.014992816617282e31,-4.270558302344586e31,-1.11070658465128e31,-3.732230673139728e31,-8.459332359809253e31,-9.89183028541384e31,-8.596185571397864e31,-4.733810431893597e31,-5.030418705767416e31,-5.475058284247677e31,-2.299443615475276e31,-2.9578873532652083e31,-2.024980953158836e31,-9.77409978560526e31,-9.669686354839921e31,-8.243987292598073e31,-1.5053649758256806e31,-9.748345068600341e31,-7.558059080923307e30,-8.124311244674421e31,-1.661336141700368e31,-3.7125766039418144e31,-7.372388475594405e31,-9.871418860311666e31,-9.789932782646476e31,-2.3767835828133413e31,-8.810825970634965e31,-2.6424032390838685e30,-6.50938827802075e31,-4.296519953313221e31,-7.779537743441487e31,-2.4278620035659904e31,-5.0030839911951415e31,-1.3724714403283624e31,-7.285997560313429e30,-1.0868208728048456e31,-3.537042983604255e31,-3.6109703686262264e31,-5.874344113387983e31,-8.95759704877827e31,-4.940095952539825e30,-3.8413449509101485e31,-9.870364685543744e31,-2.5851444371410573e31,-6.695219376637921e31,-7.152771594258027e31,-4.3496047117232485e31,-1.4700846553966807e31,-6.439577640607847e31,-9.509068672867168e31,-4.443995501188136e31,-1.9152472992469118e31,-4.972931783669491e31,-5.338241051261333e31,-3.0821307553686274e31,-1.9696368892979312e31,-8.463215206375988e31,-7.255798760879652e31,-7.937220034487668e31,-9.769635865834013e31,-6.27241118549625e31,-2.8582105594753028e31,-5.5541081757827785e31,-2.4027794401695746e31,-1.4606729704975454e30,-5.705701032826983e31,-4.845491786743775e31,-1.5538510423900366e31,-2.453009318434447e31,-6.889211092587325e31,-8.038655405548409e31,-7.650622652340874e31,-1.3792406092011822e30,-1.341519013604271e31,-8.691187882066909e30,-4.9268321561399377e30,-7.141208734314204e31,-6.509948165119333e31,-2.160992668637368e31,-2.9647098250537477e31,-8.171967095564512e31,-1.9525516410371837e31,-7.489860442238976e31,-4.587194920064772e31,-6.893822411135233e31,-1.3792544844409983e31,-1.9244038086044024e31,-1.1179294253873873e30,-7.933641922197809e31,-7.878387050124358e30,-2.285211163426546e31,-7.32090403590896e30,-2.4470002302865314e31,-4.963402834921475e31,-9.343578296095784e31,-4.745452348139834e29,-7.400093032646167e31,-3.744479648679735e31,-4.552857393671158e31,-7.651819802196581e30,-5.222315982021217e31,-7.459730711013332e31,-6.0771504845500075e31,-2.4872979183947963e31,-4.387247492380377e31,-9.761511096837013e31,-5.236847637932785e31,-3.1010682353147956e31,-8.892574520145267e31,-1.7960634417072175e31,-4.5223180157425994e30,-5.350515546168112e31,-2.8467913476968545e31,-7.43906211373991e31,-7.37794360135813e31,-5.179562323631733e31,-9.089383209751983e31,-9.800207798744376e31,-8.308245020489283e31,-2.180215975259866e31,-9.800532412333561e31,-9.717971776824153e31,-2.5440656860246624e31,-6.3336371159470334e29,-5.67822049282437e31,-1.1216201625273925e30,-2.910526897125272e31,-9.98335277375528e31,-2.656005700307831e31,-1.8349422942444417e31,-7.298603673703861e31,-7.604730064374177e31,-2.9707494642386722e31,-1.50396668791448e31,-7.5124249115587945e31,-9.755916856822271e31,-4.26111575545818e31,-9.94738606843385e30,-8.365139851897391e31,-3.642154656847766e31,-7.302244802367325e31,-4.371015486036039e31,-5.6558956014637325e31,-6.983928448757725e31,-1.0565275044643707e31,-1.5760625608650438e30,-7.395217795169659e31,-7.295290114536798e31,-3.395929897610793e31,-4.152500757411201e31,-6.391232572588457e31,-3.8674337472497436e31,-5.755350456380282e31,-9.151575126659728e30,-6.144535996307024e31,-2.083023703220244e31,-6.9652922769879415e31,-6.557044585338864e31,-4.189929375307872e31,-6.128820658702587e31,-9.211300343535642e31,-3.832050525435765e31,-8.889841551010676e31,-1.3272972197377198e31,-3.6469982578139383e31,-2.9638863639179713e31,-7.3772052105939e31,-3.3463757465551537e31,-5.521293719717253e31,-6.6444433549298125e31,-1.9755702702168866e29,-9.331117212188933e30,-9.547459249907685e31,-3.747403930432565e31,-9.746932350886099e31,-9.219764677198172e31,-3.4761491565546344e31,-3.9103798656001944e31,-7.58146597829644e31,-8.563940125609487e31,-2.0168291725480038e31,-9.36335263491939e31,-2.7815299908890156e31,-1.3649410568451638e31,-1.9800680664051852e31,-8.60408278914784e31,-3.3835264983908646e31,-9.23171646890503e31,-6.942774095302608e31,-5.00619293808172e31,-9.099676423059644e30,-8.618469444931491e31,-8.805257065540473e31,-8.401986870159492e31,-3.4225009475034866e31,-1.5600256487486088e30,-5.331649770844143e31,-1.564025043413383e31,-5.962796813238626e31,-2.884156796963702e31,-8.99035934154883e31,-9.975186590890932e31,-9.444266305366936e31,-3.0421033577067126e31,-3.8351798477041436e31,-4.290650435148023e31,-9.384822265445642e31,-2.586686640474266e31,-3.2149367706682565e31,-6.004791282953552e31,-6.645494616085187e31,-8.89297011564899e31,-5.05905154894467e31,-7.6414085625005985e31,-3.9794778539875132e31,-5.435292407680413e31,-1.0223518514311747e31,-5.178131960261077e31,-9.20953049118758e31,-7.009733756017098e31,-5.7369976689104e31,-7.576524609213829e31,-4.759283419029469e31,-6.476552898474513e31,-6.370275056479017e31,-4.491791604579977e31,-4.670671474333425e31,-2.835290368823961e31,-4.619167047641247e31,-2.478702583258663e29,-5.198372757027067e31,-9.857342619094574e31,-4.164461455982949e31,-1.887390770713402e31,-7.397509585870452e31,-1.2160485498270846e31,-9.933718120210837e31,-4.863468522463403e31,-9.329065112265168e31,-6.575224635226766e31,-4.536184932531278e31,-8.893387500518923e31,-4.7260732482205885e31,-4.430568670232187e31,-1.1352501501446023e31,-6.595486117301986e29,-3.035466766648443e31,-4.76103894393462e31,-9.446041365588694e31,-4.704362885722517e31,-6.512277465022744e31,-7.757004144843249e31,-5.311549737862776e31,-1.5913441597991475e31,-6.978340404538788e31,-7.679889000683182e31,-1.3408744907376914e31,-1.576910151901222e31,-9.703390674425356e31,-8.567013819278417e31,-6.852485633197078e31,-6.526853090494078e31,-1.9912406633575432e31,-1.286933250980945e31,-7.040883412278944e31,-6.866840779075873e31,-7.975501152285873e31,-5.408557053035117e31,-1.2632656452159298e31,-7.453585932059968e31,-3.761334160995212e31,-4.592655461825663e31,-1.599043870490028e31,-9.011425799073137e30,-9.05461660207521e31,-6.420044326287849e31,-3.9876826486969533e31,-1.5308572832290634e31,-6.659598896055401e31,-9.1588960730112e31,-3.922206675741974e31,-1.837249336978305e31,-9.07602716923881e31,-3.231778880471097e31,-4.7827712271244965e31,-5.9550046691728345e31,-6.579932853414214e31,-6.463632107164663e30,-5.118799015852008e31,-6.731172307609275e31,-5.0723344281173005e31,-1.5805697829793365e31,-1.1941254324053686e30,-7.575259642230279e31,-4.6889036555523905e30],"im2":[-9.165114638313476,-8.647797195154139,-8.234785109306317,-8.812549680478673,-8.232039164433283,-9.916845840728872,-8.82736908273133,-8.431497244079807,-8.299143081608483,-8.191205250472686,-9.398570896122928,-8.207250754987449,-8.600252436232468,-8.107942941141912,-8.29045030147472,-8.030553911535392,-8.808330984855136,-8.496000486586503,-8.971594666659433,-9.087828212329685,-8.028354433532389,-8.833445793099942,-8.045030063442658,-9.502059631211509,-8.504834236114066,-9.777227915717742,-9.924089220940633,-8.305990012398638,-9.545426389969352,-8.789784010138305,-8.279115545862524,-8.719304068725167,-9.76523308820302,-9.53141848269373,-8.2860629378465,-8.62763764221548,-9.4045621121573,-9.391589394946909,-8.24125039194283,-8.020744382383938,-8.830745269662662,-9.708759498593965,-9.585387177948022,-9.052722257818044,-9.534062637981965,-9.658610713730766,-8.136359868573805,-9.634419536618816,-9.138532770625245,-8.064580673206217,-8.065582913225825,-9.770621237253675,-9.215931925000222,-8.008375382337073,-9.416701998953188,-8.69041840642904,-8.007660489026353,-9.007714312827368,-8.287585957134594,-8.634181188125194,-9.910976855072251,-8.070492945236262,-8.045381116637381,-9.680500251756383,-8.505704625904553,-8.680935038441666,-8.788137656077673,-9.565938821709933,-9.453502399220833,-9.421541492443637,-8.379547832901887,-8.467922170188492,-9.317125568907077,-9.857080992069417,-9.178342897536336,-8.884768361611457,-8.665680353967335,-8.24725020796075,-8.559583658997614,-9.48221008239161,-8.834133767914654,-8.662318939426273,-9.69883623509754,-9.493179599297116,-8.058309217655518,-8.758127628060583,-9.094599988378997,-9.26100837321035,-8.386286787943174,-9.433326062647598,-9.211866848638577,-9.132218463036098,-9.908918407431178,-9.977137969612437,-9.097113422916216,-9.385925402934008,-8.983351409749417,-8.214722708340052,-8.78009367042422,-9.787677069949936,-9.421215545294462,-8.31524391443265,-9.623097370400497,-9.563526092799734,-9.284049431935552,-9.986732023138133,-9.823651857784334,-9.034709087964483,-9.841450425788391,-9.850736322869682,-8.411854173577714,-8.565518096331116,-8.090708787340738,-8.994780280939544,-8.442285538374875,-8.625674204412782,-9.228050557401758,-8.207354953059395,-9.297453480515202,-8.294005705118622,-9.884987689602946,-8.227001619133357,-8.307268720655841,-9.538194964858715,-9.07667435087771,-8.176819285779679,-8.31584241538703,-8.54751453386632,-8.569276148364004,-9.33991685473411,-9.586135444233932,-8.202185615093988,-9.742838702123372,-8.260024406077854,-9.598617075685802,-8.690263726832322,-9.320702804239517,-9.405735234680638,-9.484201247669828,-9.341609887814311,-9.411274775410448,-9.117958770951109,-8.444648163925459,-9.592497257381563,-9.975052899882863,-8.120398464597582,-9.732784631569157,-8.769008934513284,-8.376877620439139,-9.664548081504025,-9.351083102792618,-9.896205575623881,-8.930386506667261,-9.87278052229341,-9.167952958898448,-9.171187549105415,-9.017231755743058,-8.208389624302926,-9.189887449715386,-9.960888340495998,-8.182327291559027,-8.693072889457538,-8.128594110494028,-8.215556493489023,-9.725957666230148,-8.758085652602201,-8.255747934863805,-8.34972285568831,-9.17548518877735,-9.697062560978578,-9.055600809152354,-9.000927140025441,-9.974062942591498,-9.914298297598341,-9.3390883801532,-9.92139300736434,-8.029934760437307,-9.985069625601826,-8.947048130380441,-9.302741031090335,-8.482780043824839,-9.561163791139144,-9.371713818207766,-9.927316557334395,-8.361769455672352,-8.15920818390255,-9.850551907694022,-8.222608092905649,-8.687951394209765,-8.134618373620729,-8.151436657784421,-9.270943364030774,-9.971595504155987,-8.426316555532024,-8.38999709148147,-9.830438328261895,-8.556087195710226,-9.860323704646726,-9.486191288953895,-8.384573130403538,-8.72575338397805,-9.058736766736956,-9.379207897751039,-9.837279246109373,-8.854496564105961,-8.314202959659493,-8.297737077410371,-8.887918197886407,-9.123439553486408,-9.307525757944305,-9.429881577137602,-8.64109992476823,-9.4188474769597,-8.62087311388108,-8.291494189255323,-8.314917086257509,-9.214918995300225,-8.220873010119393,-8.166306581615096,-9.528745570720812,-9.994740612167089,-8.831665602537939,-8.211094412384865,-8.650816601555405,-8.80226426870435,-8.094280679236645,-8.622993532952242,-9.700588059023186,-8.237764864336253,-8.060701707980513,-9.74351834352497,-8.050612439024592,-8.912980361953464,-8.868597734067631,-8.975716174227008,-8.745619250599695,-9.762821850878947,-9.620414656561485,-9.331782971617367,-9.554918307854718,-8.530849259110997,-8.91328532007024,-9.739238924154089,-8.88586299718199,-9.958764403050031,-8.010203392827133,-8.898988273393247,-8.197054501111088,-9.050475217381297,-8.890951626879028,-8.874519459824294,-8.480797565173964,-9.620556926583708,-9.61254019335717,-9.828423072382275,-8.529765595232762,-8.75411561378936,-8.334553986717104,-8.417048946962971,-8.42946769713954,-9.004004807435969,-9.469018123894358,-8.772310882408972,-9.080373909282233,-8.419992425473156,-8.662570544039419,-8.813992684917029,-9.20050122533781,-8.292122357670445,-9.965771696785382,-9.65081942077038,-8.098268515155784,-9.69393807484327,-9.350623467612358,-9.54481356089153,-9.228941189260334,-8.282687315382432,-8.648624278624531,-8.810701570883536,-9.433229601672448,-9.233396853088841,-8.904290407958046,-8.059960243002214,-9.023932938389361,-9.250630697047711,-9.539384055716319,-9.9531040879484,-8.204180274248086,-8.425572177278,-8.673980139322534,-8.750369639393822,-9.850018549303922,-8.673695975867732,-9.68955855644592,-8.056778190884083,-9.659579628580802,-9.620537914739561,-8.467341641379043,-8.437511984043734,-8.764488831064389,-9.41502448442835,-8.78932245556581,-8.940195829014215,-9.847842075418804,-8.10430506825191,-9.275143039662286,-9.630167173820192,-8.58921677898478,-9.34947458330688,-8.359213504319165,-8.285928619866118,-8.968442787734938,-9.912586239920438,-9.239704637185064,-8.756475444336107,-9.58409214786964,-9.008558077222828,-8.779821332542406,-9.371232436845137,-9.374322094680291,-9.823784862626853,-8.183339219354966,-8.25782482366893,-9.638329475904516,-9.021129142374795,-8.569259128203257,-9.276060340662127,-8.564754550888438,-9.161903262725906,-8.815411975548937,-8.347279822415219,-9.854106706603385,-8.814286945758614,-8.855997029706055,-9.85166383164111,-9.99519073672649,-9.351544777508858,-9.812770439042033,-8.841415756054344,-9.128167675873886,-8.854054185304163,-8.404397540938735,-9.836452865378519,-9.700752487965229,-9.577585520018026,-9.575703120413975,-9.15450028576161,-8.506873537112382,-9.086522696530785,-9.985772979272129,-8.536678259559812,-8.370173382613745,-9.98332594840966,-8.300275638996307,-8.019179046003195,-9.03139415612071,-9.650290827848558,-8.086760520855286,-8.331140344654745,-9.989160241034135,-9.18513499493329,-8.625203479113395,-8.465678341517654,-9.37768235727634,-9.062533064084274,-8.273717702322172,-8.99195322309003,-8.46176741343206,-9.776803610691514,-8.316970607712536,-9.618108827594305,-8.879726652463528,-8.572385137001215,-8.732825986539373,-9.115692021725604,-8.307747282129714,-9.123662848579665,-8.326828528753547,-9.509415791127354,-9.890598306601866,-8.660961054443158,-8.97102402127654,-8.199129511589287,-8.79136541769741,-9.83592992134443,-8.581755662963273,-8.23378176249326,-9.977288462011256,-9.66332787468054,-9.209313029861772,-9.194379481086571,-9.371234117533032,-8.491577177537986,-9.504392458935389,-9.364531601882824,-9.021481231224602,-8.684293718358164,-9.636219301478725,-9.810649845449335,-8.098943932699505,-9.59139235373038,-9.867003093698132,-9.270482118978649,-9.546688008576115,-8.199748226222066,-9.874617913575976,-8.104510367678703,-9.36048360051396,-9.67196898242016,-9.44271653772992,-9.12437090562692,-8.42047202298265,-8.313884590639134,-9.8468624871228,-8.592640307491337,-8.604605687766753,-8.026531720272429,-9.022967460390724,-8.129671148511186,-9.155942647511013,-9.660086701079615,-9.432950071215734,-8.421221480381405,-9.40555705157119,-8.35594991644438,-9.862282023085667,-9.071980309385792,-9.23199011871829,-8.43728974771895,-8.195146273398358,-9.927002344047947,-9.143090257946954,-8.569297306982783,-8.12853366037141,-8.530928392851617,-9.109419341087621,-9.455073464161305,-9.844640325227951,-8.649869819527323,-8.094704813468933,-8.86520462316727,-8.32952734319127,-8.33783493530854,-8.287465680751112,-8.511830143709881,-8.820881463338743,-9.622272119981904,-9.673909618082762,-8.334082385436583,-8.70949374328337,-9.809156889570522,-8.076528325880957,-9.963539396489214,-9.078970307907934,-8.621550025980222,-9.812332435678465,-8.61246866882512,-8.47292268686903,-9.429935396659065,-8.3760116082581,-8.64257358847055,-9.189739903380396,-9.955950827037668,-9.973364595472198,-9.579219259251909,-8.808044413657825,-9.248906664037362,-8.835201505933375,-8.495682744947965,-9.629625304098948,-8.039499697225942,-8.957709596464218,-9.261435799836555,-8.585012073182686,-8.259321485764243,-9.4625557774703,-9.748250087337455,-8.135829222717087,-8.549909164011376,-9.567482246564927,-9.429130262398088,-9.924804262893256,-8.115354834440987,-9.031872766432212,-8.346146458673603,-9.819449406596855,-8.367617846827752,-8.398898433175857,-9.83223063309368,-9.691775990922343,-8.855294637438906,-9.29470191706989,-8.511649008515752,-8.643070815135196,-9.134085843822358,-9.25665359031244,-8.078599013505489,-9.311370692946818,-9.270681477577586,-8.978409615983491]}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/large_positive_imaginary_components.json b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/large_positive_imaginary_components.json
new file mode 100644
index 000000000000..c9241f3f6a74
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/large_positive_imaginary_components.json
@@ -0,0 +1 @@
+{"re1":[-9.423866542343148,-8.361801495748104,-8.269207263327734,-9.663238630999281,-8.601181527075703,-9.455652237535668,-8.61480066075888,-9.031282939081603,-9.851465226370236,-9.721947001862407,-9.881836205603053,-8.989317016977855,-9.606372026938526,-8.485939730708921,-9.388956198069025,-8.29814568886339,-8.361637239918505,-8.20737658173807,-8.439918327291737,-8.083192230751383,-9.402835300007059,-9.899930424043696,-9.371738092045812,-8.522951413968338,-8.659261892481071,-9.171316031174259,-9.626387761471317,-8.486473914665531,-8.503235043142416,-9.99512524512025,-9.726164797010487,-9.339867026347907,-9.28810176206636,-9.729364483381534,-9.692522472225614,-8.65651103946675,-9.533656928875853,-8.179470389778414,-8.398537152993981,-9.432235537098148,-9.425331960500227,-9.783406838930151,-8.045558187217956,-8.393419796271473,-9.40503895253363,-9.68193718388596,-9.720995383611129,-9.36424003149472,-9.402159528121214,-9.343799494317807,-8.051258853408397,-8.357833689804895,-9.029968624058531,-9.053355209780324,-8.318180278092889,-8.114663028500878,-9.144339001326477,-8.878971994799059,-9.525410405461432,-8.475643978563111,-8.485945616286095,-8.482178413617863,-9.463988138923918,-9.909427585939298,-8.600434080613795,-9.51054651270374,-8.778706345720975,-8.91497863038505,-9.705981144075018,-9.060727996265761,-9.96582093525367,-8.430403969416268,-8.18206574720842,-8.086353624039905,-9.18983258876724,-8.969445208112958,-8.577213911738324,-9.751998659655424,-8.240874483606033,-9.087171963530562,-8.909234249893942,-8.490867428908803,-8.988756344287193,-8.32035454682476,-9.773283604777594,-9.486271022509925,-9.207146258282279,-9.843076920743782,-8.00937319377198,-8.685870490242294,-9.583639806507051,-9.932449130620363,-9.037451121643157,-9.456702270449693,-9.442527898160622,-9.506193424290784,-8.061070008139424,-8.725424920231784,-9.40181692726997,-9.95489299242485,-9.214849507465418,-9.035541494186678,-9.704932730381163,-8.51241243994912,-9.143908140647856,-9.306080709221563,-9.49769291980216,-8.666634672750147,-9.71791175301546,-9.30234172576205,-9.646550883355886,-9.043777979041423,-9.267335051350837,-8.511283246734695,-8.324896092356328,-9.674425696169752,-9.08588568865158,-9.73924686451834,-9.315715841972056,-8.665663080965334,-9.428329950000016,-8.224078783412757,-9.243130364785085,-8.005617161623514,-9.183305770970266,-8.50441719164262,-8.633569164222893,-9.330384235680981,-9.157255710974331,-9.171277479264194,-9.221961134435535,-9.848369902811458,-8.604076848313555,-9.922801004060526,-8.93365891131513,-9.20448833881585,-9.428666828695889,-8.017816918140674,-9.42412415059827,-9.01831557480198,-8.188399352740397,-8.270097207838779,-8.001944596424705,-9.676342211759266,-9.082227265875904,-9.074148347914978,-8.34673418073679,-8.7152325471247,-8.585604869620296,-9.553955269614072,-9.402608877409902,-9.534819518819264,-9.850062164804896,-9.938036685501016,-9.8657711412925,-8.863530706730444,-8.119475647141918,-8.118455139871859,-9.227047827311265,-9.541233185837742,-8.06450386355187,-9.943696812310387,-8.040587753033098,-8.397326755585356,-8.78616099889357,-8.320163551274094,-8.064858798961374,-9.712603393881777,-8.081261295395322,-8.747150708835697,-8.841152561612391,-8.218962612071593,-8.010924877099178,-9.601244738217524,-9.075157798692562,-8.264663047089018,-9.465469407458126,-9.421294596072517,-9.19836175577746,-9.547097429503552,-9.952679362199211,-9.321038326582809,-9.465479196407808,-9.911098022628009,-9.695056673165743,-9.240253907661815,-9.294816258412718,-8.513307297593846,-8.079580858023483,-8.9053253189336,-8.463435359472058,-8.57760104462965,-8.602845866563891,-9.38992376494273,-8.519828218955958,-9.4560424908311,-8.56030060047733,-8.103501866806798,-9.642758549895559,-9.012952504981504,-9.506445096682436,-9.376984104352497,-9.532722948425807,-8.981238477402995,-8.484459749779695,-8.85833949025658,-8.203221123274693,-8.468832504643922,-8.889411591031571,-8.995408758479925,-8.69845008570505,-8.873627021987286,-8.228049455996993,-8.816542800286593,-8.871632439281672,-8.56376881084511,-8.137884042959836,-8.943779019507108,-9.80159591636463,-9.802810584125792,-8.403904613307617,-9.089513480943367,-9.011710503167818,-9.617691118624542,-9.893708526773436,-8.038562558951844,-9.818896197870233,-8.157497832210096,-9.027517997796302,-8.394335264013032,-9.496965505310518,-8.202914344989265,-9.247900445252068,-8.756490471095058,-8.279451019957907,-9.303350887394854,-9.210901936604884,-8.341896550775981,-9.391487720865925,-8.828292560102508,-9.96730361382668,-9.718541274478172,-9.749433141026078,-9.061354137019292,-9.265560821507288,-9.729502020562059,-9.629979602427543,-8.076057755403738,-8.849885539198844,-8.354405239473245,-8.046443321347397,-8.014254502108013,-8.247788817997632,-8.834018293808622,-9.035503015586766,-9.990427587425284,-9.691434123449993,-9.27784934527562,-9.27665031122491,-8.96197996582923,-8.105582588589389,-9.598930666718099,-8.754701940499318,-8.508657369825425,-8.319101047100045,-9.5514710555445,-8.111673430651955,-9.316891222673762,-8.650312681025415,-8.16979917491379,-9.702349489489258,-8.656815976837306,-8.342993725225208,-9.546365402423055,-8.784149914721276,-9.814748679253729,-8.779663948120412,-9.861125143282244,-8.506634418447224,-9.45815753339412,-8.060160987724538,-9.046839412330607,-9.786407811718712,-8.55838546018266,-8.516937855786653,-9.51808405152111,-8.404815568204524,-8.274122528914026,-8.034199742219316,-9.82943917941034,-9.216585724775355,-8.302260837019345,-9.504661331478317,-9.004234194987738,-8.490941891922295,-8.928080792169897,-9.869678267867098,-8.637207842416215,-8.319431514086535,-8.777393346590621,-9.056035318057997,-9.409840726539167,-8.33144023331709,-8.780843316667553,-8.918809097937126,-9.681575605998734,-8.579166350567117,-9.968169723678635,-9.147951764313124,-9.875788005644296,-8.770081870837583,-9.721395682739486,-8.377924615399685,-9.40736898381081,-8.883963315512023,-9.404099123037264,-8.286470647166905,-8.773518245074833,-8.45925604763079,-8.762231355525158,-8.576579263753061,-8.60482440732588,-8.60638988949907,-9.420250604127945,-8.943140250438134,-9.400335825771872,-9.623272749720323,-9.45027331825631,-8.837278302017387,-9.372831968118716,-9.397684764933382,-9.89798932869406,-8.526315928728915,-9.11510397241098,-8.912738473663712,-9.544460592990411,-8.054094259831821,-8.15943350124946,-9.84866686758135,-9.445404935903984,-8.379773566968396,-8.002017578496288,-9.5826702025051,-8.888565469676172,-8.385118453365848,-8.517436797188513,-8.224350053553529,-8.528808630579611,-9.19291506545111,-8.200655260637268,-9.310573129499803,-9.318011510275785,-8.385396332658512,-8.342988081953289,-9.848942796732427,-9.771825807360111,-8.188763104404817,-9.915111903354084,-9.608543832525623,-9.315462354353311,-8.703582338684662,-9.271668221908424,-9.00336297574971,-8.935820737150824,-9.715452579071057,-8.811980224860642,-8.965355497811824,-8.23584838966818,-9.371726654597703,-8.427423398958297,-9.220548911702945,-8.295860167484374,-9.068393247467313,-8.141665616188288,-8.910176933207472,-8.124234270430007,-8.73773424064649,-8.91822226024454,-8.745455762537304,-8.878308401818927,-8.258265460368111,-8.200816802170694,-9.094103138715317,-9.443583831423133,-8.03405455448295,-9.734384063746447,-9.856762856476212,-8.234372604423667,-8.158257842565932,-8.064569039521297,-9.389598834792213,-9.947683986976648,-9.110355092174638,-9.612670774487027,-8.680715720196744,-9.376493207779646,-9.012494420251201,-9.906785537928357,-8.181360504484044,-8.982940765719679,-9.051742087677338,-9.129194675891963,-8.7635774935991,-9.55829506626378,-8.192066945433593,-8.07801730963854,-8.082134606471982,-8.513199013663975,-9.021707378679139,-8.219759756841865,-8.857942439265411,-9.569934843579047,-9.596036530921022,-8.442085263777475,-8.887552903174097,-9.987297691566805,-9.939043052429218,-8.28518168113671,-9.378557558584342,-9.186696267953979,-8.309363886323254,-8.797119101794392,-8.298108648772464,-9.792132036417879,-8.421262980188176,-8.10126079096747,-9.979853919466468,-8.674692040350752,-8.258125098689316,-8.926292912457315,-8.241159925329237,-9.785333295961049,-9.153948001889923,-8.45304509845843,-8.212166183365682,-9.989234357558386,-8.516386578941644,-9.531265963216184,-8.239320855601699,-8.74669406738592,-9.545548065609593,-9.358475119249972,-8.48452792015895,-8.586493066236084,-9.766285580490212,-8.231964935741889,-8.844429009489726,-8.181379001618902,-8.277333385614527,-9.673689696380526,-8.946076112961919,-9.652124154230176,-9.295115121378819,-8.352156163931308,-9.414791062606731,-8.788699814649371,-9.38825391299571,-8.081510673223661,-8.658657972758903,-8.59939607420528,-8.545703150335562,-8.287259412401175,-9.45741034611013,-9.566540758251481,-9.917499723396535,-9.464075765163201,-9.602451649372956,-8.316205270006831,-8.425730960388808,-8.995192855057548,-9.434628627058576,-8.92643158262192,-8.266172609982938,-9.813354846444234,-8.631765600757886,-8.686179494073432,-8.72204130390644,-9.600183972990735,-8.018531052648022,-8.709422208949018,-9.449089496319754,-8.87886688144164,-9.770172126733973,-9.227769608987511,-8.160016832308662,-9.626609457222944,-9.423755266370932,-9.158093769821855,-9.604001080500968,-9.92973642614691,-9.953241797950097,-8.838941542838167,-8.169689935780653,-9.86588208538349,-9.748386008475135,-9.42191697233331,-9.026411550075663,-9.97677619172245,-9.345218202106683,-9.24170709655645],"im1":[1.4413844826652555e31,5.0335081769492275e31,4.998327418595915e31,6.455848698092294e31,7.789333477827232e30,2.1282775768829645e31,6.264275299967758e31,4.0547437161440537e31,9.530889045389164e31,7.904194504162718e31,3.1268989424462825e31,3.598989341272998e31,2.0891472082015793e31,4.95610443571637e31,6.723440095688435e31,2.1799568170843056e30,2.156275485992819e31,8.234976185874788e30,5.820518802340265e31,8.966463593795441e31,1.8993108439202779e31,5.693330610473258e31,3.9605901937748236e31,3.59760666102253e31,1.5568597816084919e31,2.4238660854263064e31,5.683358100064739e31,5.8684321305972405e31,5.361988537598176e31,1.4303409876780982e31,9.013809234696064e31,6.423450907480745e31,3.9702794541293996e31,6.32908606037079e31,8.563083133454008e31,7.511567188777577e31,1.6669100614400024e31,5.421173719763536e31,4.206154077336634e31,7.320995526442656e31,3.171925376855668e31,2.9476682874718953e31,5.929792453180347e31,9.782369368894974e31,7.103229628394306e31,4.593045604163503e31,6.5271310142971655e31,5.63413468595076e31,1.0920495210069892e31,3.640655420250446e31,3.400227958300485e31,3.541051500511855e31,9.794188977473932e31,8.390924708627202e30,8.118385697911037e31,2.695230873435072e31,2.5818352301890614e31,7.042900307488511e31,3.52691507815451e31,2.205874904511498e31,1.9999959804860802e31,3.9333732331977368e31,2.6607515779358827e29,3.7882138655314545e31,5.772567874788826e30,8.160777808945355e31,7.90168784569005e31,1.9427440088328198e30,4.0415399111943132e31,1.872238015320943e31,3.148380645528499e31,8.370125752137532e31,3.5848361244749872e31,7.1439636107864715e31,3.444449941198573e31,5.799953967080793e31,9.012419555992191e29,6.050980625647462e29,1.9458046958600628e31,4.229869214198364e31,3.649860759997521e31,3.287265554404779e31,1.2092376109698122e31,4.391449310855455e31,2.7602658034663887e31,3.0535353693441304e31,3.0992398203231596e31,8.107256610509384e30,6.479810256225259e31,5.993421282126791e31,6.776239339224785e31,7.521406756659103e31,1.9352067718345824e31,6.647976394134884e31,2.8480090427440375e31,8.656794438162452e31,1.3747357065775234e30,1.8483637231855467e31,6.574394428001367e31,1.0763043625145897e31,9.387293491537763e30,9.815794404023747e31,3.6295595344952017e31,1.2212676200196028e31,8.492454040770924e31,6.743701630598061e31,3.8208619140754576e31,8.914556880963278e31,6.242150424710755e31,1.6725721527578598e31,6.006934196946485e31,8.275441273227068e31,9.84755046814388e31,7.66258663586174e31,5.5224668348992425e31,5.449090431313844e31,6.584894509905204e30,1.533006277916027e31,9.690844441782387e31,4.0223442589376003e31,4.41733817778336e31,7.163558326802082e31,8.660754529685784e31,8.841174274339546e31,3.319768723208796e31,8.0246365375557065e31,4.466588660200543e31,7.109560948306112e31,4.0463406677698635e31,3.509144233553089e31,8.821806632485957e31,3.1730695279444235e31,7.4473262682747915e31,9.347972595422418e31,7.164577595207648e31,1.5130082793445977e31,7.1696480076412905e31,4.403701064229944e31,6.180334904340035e30,8.408677661745709e31,5.141651128542526e31,9.870280336665145e31,3.831418275423736e31,3.370950170060676e31,1.1324214552984636e31,6.267090201383082e31,2.316903318492206e31,4.309675554269371e31,9.130611875085044e31,4.324361624098897e31,6.860233416281957e31,8.887008517783128e31,2.8517771787113788e31,4.320686795578407e31,7.79616503196966e30,5.890416726798371e31,2.422736684366742e31,6.794178519402774e31,3.706012582354158e31,4.84469742040334e31,9.359320471924046e31,8.836063948051613e31,4.597439835429503e31,9.116002295902496e31,8.635543872543794e31,7.611210014213253e31,9.215644187205907e31,6.90937604931001e31,7.116811176790622e31,9.004852452395973e31,1.8108514113021323e31,8.615540776646508e31,5.928907426336676e31,2.9672496616870094e31,2.061078478107762e31,5.369417271686688e31,3.284886870431706e31,8.919812535095333e31,6.491568187167933e31,5.208420202127991e31,7.046546161418721e30,6.76438770989447e31,5.82241822803888e31,8.473556179669997e31,3.901719380694907e31,5.566532066810434e31,7.023531831603126e31,2.057352022864449e31,5.849664668719923e30,5.751739032620953e31,2.6839293503174435e31,2.2535969060927088e31,2.6647403056181153e31,5.332889769877808e31,8.557237292422173e31,1.2448871033667164e31,4.439184609955651e31,1.137382638252511e31,3.2617894961706896e31,5.36642720164849e31,6.075563230423037e31,8.22215901047456e31,6.351717311558816e31,9.76005655000662e31,2.729956753637283e31,9.242767964517433e31,8.573265512315163e31,1.3510373072955119e31,3.468222310200614e31,9.679183860343293e31,9.899047877728765e31,3.257844586549175e31,9.170565222262248e31,5.178593025223695e31,1.5348069010079714e31,6.2741191848953e30,3.5295463352763147e31,3.5893884929671994e31,6.847794297604144e31,6.044840899186046e31,5.892992026211088e31,2.2980235742076196e30,7.337442044951803e31,7.431702709374836e31,7.842765907541196e31,2.23456497145503e31,5.963094693322835e31,1.7202319445075e31,3.63938007265326e31,2.510186030399213e31,6.400686383940712e31,6.097607419312335e31,6.6065522259600155e31,5.951695897144805e30,8.0439358533762545e31,3.231395161961155e31,8.690410152738826e31,1.3375629823649815e29,9.685641478255403e31,8.974556186057058e31,4.903657131026593e31,9.175598093621985e31,3.4689927350115446e30,5.76992152575405e31,1.1573874359544123e31,2.899829387813171e31,9.09186010521878e31,2.0642005734943505e31,3.177693300806017e30,3.6129223791516065e30,3.6676185094576874e31,4.3000426311811385e31,6.026918147567342e31,5.86622728361092e31,8.536449707357368e31,2.043618628702131e31,6.802021605494033e31,8.84443184980698e31,7.789672939410973e31,8.934606327021394e31,8.140528637582895e31,6.767288004439084e31,9.742495892058101e30,3.599069521909777e31,3.505155735328025e31,1.839898192393056e31,5.420468022661589e31,4.501783715116687e31,6.485288603577964e31,8.849908415563432e31,2.0024949743898348e31,9.955405564268728e31,6.360722951021249e31,5.951499061021359e31,8.765100671761934e31,1.4162597013170731e31,2.7807111157611777e31,6.411947757160535e31,5.383695251224499e31,8.394972443728344e31,8.867544180322498e31,2.107146562455594e31,3.545840191102575e31,5.446113517685887e31,1.7200328190382498e31,6.70241221343498e31,6.361839218233269e31,5.540902337816604e31,6.225641733664582e31,6.074558251001101e31,6.374896991275403e31,5.364552238895763e31,9.426066006659157e31,9.085082955880685e31,8.159970196202893e30,6.389405681728452e31,7.807666404258834e31,9.688432000888363e31,9.278065006858682e31,4.0219900355472507e31,7.37446398953946e31,4.371161328282079e31,2.8190986535537256e31,1.0929708259276916e31,5.727062694797573e31,9.563804004647608e31,5.69317130486711e31,3.2003294863598344e31,5.628003081369095e31,3.7789628601452785e31,9.997059078243372e31,2.514656817493388e31,5.757880746853284e31,3.0735353321713834e31,1.2293562515447666e31,6.614910540008331e31,2.7786564852242046e31,3.526287099771064e31,6.557639204883634e31,9.047052666788254e31,5.388576603666042e31,7.040687700748455e31,8.276825082412957e31,4.851440265670926e31,5.1640739630874205e31,7.972816864049247e31,3.086426129111355e31,6.393379046824176e31,2.1548803566644016e31,4.454526290184791e30,3.6487085032943426e31,2.085332601315807e31,4.2172332050301265e31,5.719034568790397e31,1.790091368942738e31,8.557770446668924e31,6.251391565290798e31,6.180597240195314e31,4.284396395677951e31,5.013162475168382e31,5.427554394129e31,4.88732259014324e31,4.150051178534973e31,5.9029595295033975e31,3.679968158042083e31,1.3581738471252403e31,1.8940033567453042e31,8.193060960844107e31,9.048077262865953e31,9.141583492610673e31,4.135594926447683e31,6.319756503072462e31,4.495288986013487e31,8.804801550247752e31,5.287416099560813e31,3.319659728052016e30,1.711493270920287e31,9.255615620993543e31,2.859446403536814e31,9.968298508910856e30,2.9049019521041144e31,8.215013880035144e31,4.166581296621896e30,2.1004844114361e31,1.5801095355362338e31,3.5278102858841543e31,8.56791955138553e31,4.590317162194877e31,3.3495405396171354e31,5.379698169336212e31,8.73082435285494e31,9.026381513559872e31,1.7889431500379484e31,6.99833771087048e31,9.783084487006464e31,6.713192306277006e30,6.744448344445073e31,3.606072772129162e31,9.450314644713947e31,7.2557218481824045e31,1.1845472740685947e31,1.308470548620393e31,9.069719840740872e31,2.2866977702428894e31,4.29453080121953e31,2.709119632282684e31,6.547007192251964e30,1.9784043069287384e31,2.213665412768462e29,3.7080014670947516e31,6.7837089961593635e31,8.97152778538096e31,6.966081443193355e31,4.7674929490671985e30,5.470980067559421e31,3.4145570551871818e31,2.1281748383839805e31,4.226721963816696e31,4.652220906000744e31,4.754135829745823e31,6.990848882256093e31,1.5496316256576338e31,7.651879369857795e31,6.267220666733073e31,4.4047887070685345e31,2.1570771967093983e31,3.3640623183247445e31,5.411954851373984e31,9.964695772553801e31,1.2486004731565849e31,3.880888277465433e31,2.173335837134595e31,5.084314885847096e31,6.510252157663438e31,8.46698178529535e31,1.54994906926629e31,9.166771891828596e30,7.0073484869091215e31,3.2653972606329517e30,9.81135758156526e31,5.5360910654802935e31,1.9236303570045278e31,1.0376222065593622e31,4.5659389498853065e31,1.676605520544139e31,4.135973071408561e28,3.253685366129067e31,1.447340531801914e31,3.2958006478909297e31,7.213870787825997e31,7.33707062750459e31,5.953830202863284e31,8.473784785529087e31,7.045367373160874e31,5.44789266290489e31,9.181327002368524e31,1.039033173576638e31,1.4939001004026055e31,5.064888160464258e31,9.380556379906061e31,9.36618486601144e30,9.604550072000287e31,3.8452450844403853e31,2.0908058092609094e29,9.149505305903662e31,9.316866979350977e31,7.410599845644956e31,5.959211626167113e31,1.210572847722824e31,4.85134022785485e31,3.2159567253229583e31,5.856022787379173e31,3.4559042964097233e31,2.8710582169822387e31,5.6516084235852985e31,5.182904114620131e31,6.459228295406103e31,4.771197778858413e31,9.381896898515298e31,2.3481418739687646e31,1.5768689261939663e31,8.130310920735478e31,7.795672874800321e31,9.228739145985981e31,1.6086968317674379e31,8.869991770007173e31,9.511756971709555e31,1.8598738739481048e31,9.596764533037139e31,7.739361357323246e31,9.94724133963414e31,6.406555948889693e31,9.838894150245219e31,5.911108184000502e31,8.50012284031944e31,2.0638491965358e31,9.277535775274347e31,3.4306573156276767e31,8.72353285958269e31,6.282827817718138e31,7.904351655306909e31,1.3855898536149703e31,9.392484315521899e30,7.92173866985524e31,4.372455528549866e31,9.834012145124471e29,5.83272637654867e31,1.4471405004534845e31,8.609926677048614e31,5.556090575231976e30,9.894000213054368e31,2.5576371315708013e31,2.2702571195838406e29,3.3430158833260197e31,5.555203905349584e31,8.414651296286003e30,4.9808951726667955e31,9.554305005654464e31,7.582531034843704e31,5.800251775101046e31],"qim":[1.1219676e-31,3.1585336e-32,-2.1658216e-30,-4.2133587e-31,1.4389491e-31,4.3970395e-32,1.8812766e-32,-1.1886625e-30,-1.6785405e-32,-1.531534e-31,8.3792235e-32,4.943376e-32,1.2316139e-31,-7.099403e-32,-1.4369082e-29,2.705409e-31,9.570324e-32,9.6721403e-32,-8.031524e-32,-4.302937e-31,-1.4608879e-30,-1.890859e-29,5.589609e-32,4.9266658e-32,-1.1883675e-30,9.803661e-32,3.8928135e-32,-3.1418018e-31,-4.3507463e-31,-3.9106036e-31,-7.486882e-30,3.8229357e-32,-5.9168047e-31,-5.993696e-30,-5.458167e-32,-4.174765e-32,9.212192e-32,3.432085e-32,-2.4358833e-30,-3.0106482e-32,7.881251e-32,-1.3190469e-30,-4.059394e-31,-5.71703e-31,-2.9047133e-32,5.2865437e-32,-6.1391692e-31,-4.13005e-30,1.1391817e-31,-3.9509674e-30,5.215129e-32,5.642739e-32,-5.985435e-31,2.8624195e-31,-5.258358e-31,5.7522305e-32,7.03446e-32,-1.0042168e-30,7.2970887e-32,7.315048e-32,1.0487362e-31,-1.5067685e-31,1.3346569e-31,5.6469426e-32,1.1327942e-31,-2.2687615e-30,9.986627e-33,1.8856031e-31,-6.3671366e-31,8.7914717e-32,-1.6382577e-30,-8.2915304e-29,4.7185563e-32,-1.3844847e-31,-7.234636e-32,1.8497567e-32,4.6871347e-31,1.0466831e-31,1.04e-31,5.703698e-32,5.324452e-32,6.041635e-32,9.581954e-32,4.730254e-32,2.1452596e-32,4.020615e-32,7.157583e-33,3.140371e-31,-4.5245962e-32,3.8617108e-32,-1.8031801e-30,1.825569e-32,1.0475685e-31,3.1584704e-32,7.815846e-32,-4.231417e-32,1.7087999e-31,8.957954e-32,3.594238e-32,2.587267e-31,1.3962336e-31,-7.2691127e-31,-1.0183609e-29,1.6177187e-31,-1.3989319e-30,-9.699537e-33,6.672976e-32,-3.0439412e-31,9.432705e-33,1.311676e-31,-5.6487297e-33,-2.7669047e-29,-1.233613e-32,4.388245e-34,3.4230663e-32,5.2879537e-32,1.4649032e-31,8.673157e-32,-4.3993265e-30,2.899228e-32,4.8001168e-32,-1.3530156e-31,2.9658736e-33,-2.209871e-32,-3.6079168e-31,-5.404534e-32,4.8927228e-32,-2.8310433e-33,5.9795435e-32,6.977605e-32,-3.9464886e-31,7.115903e-32,-1.7886704e-30,-4.9523183e-32,-1.6236774e-30,8.331937e-32,-3.1278318e-32,4.192313e-32,-5.2483603e-30,-8.146149e-32,-5.4719427e-32,-1.5914803e-32,4.2061166e-32,8.087376e-32,-1.1537933e-30,2.7379996e-32,8.0002594e-32,-1.761514e-30,-1.4343299e-30,-4.1241984e-32,3.1208338e-32,-9.4104265e-32,6.466446e-32,-6.057959e-32,3.1846653e-31,-3.8741014e-31,-3.0636772e-33,-1.091536e-28,-1.0265495e-32,-6.8059186e-31,-2.766449e-30,-3.7904453e-30,-1.9858437e-31,-1.6574327e-30,2.0206691e-33,-1.8304287e-35,-3.5250717e-30,-1.7191437e-30,-8.7113336e-32,-7.9922225e-32,-3.1503914e-31,-1.022097e-31,-6.800355e-32,8.8696885e-32,9.706042e-32,-3.1141924e-30,7.5564615e-32,1.3326221e-32,1.4634715e-32,4.0238485e-32,-6.641e-30,-8.6823494e-32,-7.476459e-31,-1.6985013e-28,6.816956e-32,-9.527338e-31,-1.1780304e-30,6.994097e-32,9.136276e-32,-1.6161605e-31,-4.9505926e-31,7.757384e-32,7.352005e-32,-1.3119585e-32,-5.0965997e-32,1.9544806e-31,4.4229553e-32,7.967954e-32,5.7940205e-32,-5.057575e-31,-2.56384e-29,3.006519e-33,-8.704956e-31,-8.226908e-31,-1.6411035e-30,-4.6110285e-31,-1.5724186e-28,7.3009596e-32,-4.9904862e-30,-3.4856772e-31,-3.227192e-30,-4.909297e-30,-1.6853563e-30,-4.5845073e-30,9.677475e-32,2.7554787e-31,-5.8556038e-30,5.698912e-32,-2.2731833e-33,-1.3468903e-28,-7.792631e-33,1.1089052e-31,-8.304708e-31,-2.5107798e-32,-1.2998735e-31,4.230552e-32,4.348072e-32,1.1146696e-31,6.81857e-32,5.45141e-32,-5.425586e-32,-2.2132795e-31,-6.6610116e-32,1.2079093e-31,-1.868426e-30,7.0939856e-32,-2.723576e-30,1.1665498e-31,-6.9074664e-32,-2.7396493e-30,-5.000579e-30,-9.6526054e-32,1.8509447e-31,3.939132e-32,1.249302e-31,8.285328e-32,-3.5217687e-32,9.5912545e-32,1.5635657e-31,2.2040315e-31,-3.7227676e-31,-1.1269175e-31,-1.177587e-30,4.6417704e-33,-2.2312195e-32,1.2179034e-31,-1.0531657e-31,-7.210722e-32,-3.1782483e-31,-9.395444e-31,-2.863974e-32,-2.0595272e-30,-3.1357948e-30,-1.19381186e-32,-1.4192064e-31,7.9185443e-32,1.0884775e-32,5.6703526e-32,-1.3205378e-31,-1.8439885e-31,1.3331855e-31,-3.3911484e-31,-1.0095579e-30,4.5785526e-32,-2.5150835e-31,1.3339077e-31,-5.468537e-29,-2.090434e-31,-5.7827986e-32,1.0022886e-32,-2.0556083e-32,9.0019187e-32,6.7127575e-32,-1.5300082e-32,7.969457e-32,-1.3224703e-30,1.02861016e-32,3.5163538e-32,-9.283993e-31,2.633396e-32,-2.0896086e-31,-1.8106489e-29,-1.9991364e-31,8.79229e-33,-2.2127259e-29,-2.4231483e-31,-6.9861016e-31,-2.2448493e-31,-4.0400723e-29,-1.2887487e-30,-8.125792e-30,-6.392709e-31,5.899517e-32,1.3291313e-31,-1.7359214e-31,-1.2817746e-31,-1.06086405e-29,8.8678336e-32,-6.1547274e-32,6.901137e-32,-3.6209123e-30,9.603848e-32,2.710118e-32,6.9451686e-32,1.6090959e-31,1.553312e-32,7.209374e-32,5.912801e-32,-5.010788e-31,-1.7759544e-31,1.1017132e-32,-1.290082e-30,-2.233044e-31,4.1305017e-32,-5.3009793e-32,-1.5970718e-31,7.982552e-32,3.0568228e-32,-3.803459e-30,1.7100275e-31,6.401482e-32,1.0573105e-31,4.6115308e-32,-3.8020603e-31,8.51845e-32,4.6136713e-33,2.9351544e-32,-9.431428e-34,-2.9006997e-31,-6.564611e-30,3.292178e-32,2.835115e-32,-4.3607916e-31,-2.440338e-32,4.756449e-32,1.6046829e-31,6.992428e-32,-2.9844463e-33,-9.49369e-31,-3.9704802e-32,4.6696537e-32,8.7373386e-33,3.8386914e-32,-1.2779787e-31,5.405595e-32,5.715078e-31,8.971628e-32,-1.54506705e-30,9.623851e-32,2.607683e-31,-4.0739192e-30,-1.8608194e-31,8.725676e-32,8.2651094e-32,1.3915379e-31,4.2825372e-32,-2.6822943e-31,-6.09606e-32,-2.1902048e-30,-9.77522e-33,-4.36993e-31,-6.266269e-32,1.10512e-31,-5.5591494e-30,-1.9856192e-31,2.9635513e-31,1.2882263e-32,6.1520014e-32,-3.8643512e-31,1.14315386e-32,1.590979e-31,1.0081954e-31,-8.097027e-31,1.0522032e-31,4.0806228e-32,9.072842e-32,1.2697043e-31,5.6154566e-33,9.551721e-32,5.2031177e-32,-8.7133783e-29,-2.7683524e-32,-9.886848e-32,2.0994315e-31,-3.5249702e-32,-7.4440324e-31,9.412223e-32,7.2153606e-32,-5.420288e-32,4.303706e-32,-2.8954004e-32,1.0755894e-31,-9.956514e-32,-1.8281141e-32,2.3074432e-32,6.3638243e-32,-2.2345174e-31,-1.1128494e-30,-7.276394e-31,8.009781e-32,4.553233e-32,8.554395e-32,4.1508057e-32,2.7796268e-32,-1.0271648e-30,1.1986053e-31,1.1548662e-31,2.1189649e-33,3.1721634e-31,-7.511866e-31,3.0712714e-32,1.0798109e-31,1.4124728e-31,5.1888196e-32,7.119615e-32,5.333637e-31,8.0524813e-32,7.897538e-32,-2.0405702e-30,1.5410487e-32,1.3549753e-32,-2.2721693e-30,-2.1372702e-31,9.938272e-33,3.051773e-33,1.8653766e-32,1.8579404e-31,8.346999e-32,3.550119e-32,-1.8263562e-31,1.1420383e-31,-2.3041877e-32,4.8327403e-32,6.6560647e-31,-2.8369665e-31,-1.7732224e-31,-2.4777458e-31,-6.9703745e-31,3.057695e-32,-1.595646e-31,6.180145e-32,4.4320034e-32,6.42157e-32,6.890214e-32,3.484185e-32,-3.0858732e-30,3.6843337e-32,3.6920094e-32,-2.595855e-32,8.7119924e-32,1.175821e-31,-8.827575e-32,1.17672575e-32,-2.113726e-31,1.465707e-31,-5.1803824e-32,-3.8105912e-30,9.289128e-32,-1.7651804e-30,2.303823e-32,-5.088801e-31,-7.45665e-32,-6.813462e-32,3.2788605e-32,-6.470818e-31,8.3755365e-32,-1.5104605e-30,-3.4946966e-30,-1.4647299e-30,2.7833887e-32,-8.20853e-31,9.903572e-32,-2.5988085e-31,-1.4648237e-31,-7.60692e-32,2.4781403e-31,2.6614412e-32,1.5992087e-31,-6.544943e-32,1.2912148e-31,2.680246e-33,7.133939e-32,1.4489065e-30,-1.7938155e-29,4.4558774e-32,2.0379155e-31,1.6518906e-32,-4.7323287e-32,-1.6242983e-31,3.6872542e-32],"qre":[0.21333954,0.6174126,3.791832,2.5128741,0.15343703,1.0627009,0.74672,2.8432064,1.3317378,1.9339062,0.54347795,0.6051788,0.5193827,1.2492218,10.9233675,0.07788377,0.41755584,0.11212035,1.3131893,2.6272411,2.4667325,10.938174,0.40005523,0.5145828,1.9167396,0.4564332,0.78972435,1.9969695,2.1584613,1.4022577,8.86053,0.68543017,2.0703554,6.9721284,1.3445879,1.1480197,0.19217063,0.59292066,3.9596024,1.3073411,0.4253855,2.7054434,2.0519369,2.9373198,1.318571,0.7382189,2.8098302,5.4998817,0.15759718,4.704822,0.3432936,0.573064,3.3237514,0.44281343,2.850375,0.30528477,0.28596827,3.301686,0.7163743,0.2697418,0.6168053,1.4363158,0.0037659933,0.77771723,0.08241011,5.251367,0.7952096,0.042734765,2.4926867,0.23337199,2.841693,27.9459,0.61831874,1.5128173,1.1791956,0.76596135,0.052215677,0.006533083,0.61263114,0.5446248,0.6451051,0.511496,0.1491787,0.56758815,1.0383288,0.88709366,0.9255503,0.37771505,1.0863094,0.6034537,4.5054135,0.96812844,0.34999374,0.83092064,0.3878935,1.4547235,0.0301368,0.25603074,0.6792993,0.7029906,0.16673994,3.2877762,6.999932,0.4117933,4.192511,1.0601501,0.46126333,2.3489866,0.9099463,0.829997,1.0167558,15.968053,1.1687452,0.86414945,0.6868918,0.5874102,0.122488454,0.16161059,7.205389,0.8678079,0.63813007,1.4929069,1.0235072,1.0898463,1.6839631,1.3202652,0.583056,0.9637158,0.43659216,0.54733837,2.7280931,0.32239863,4.267762,1.5065426,3.9546568,0.1647533,1.1512295,0.45922345,2.3453488,1.6464007,1.1842808,1.1709299,0.40120602,0.50067556,1.8548183,0.8010741,0.36063066,3.4478047,4.195712,1.2584717,0.8126721,1.613275,0.93596,1.268463,0.76756996,2.0429773,0.99639523,30.844732,1.0124639,2.465052,5.7163405,6.6758366,1.5151628,4.555714,1.015597,0.834946,6.6929507,4.371415,1.4411136,1.435226,1.5302742,1.5330496,1.2960199,0.55251294,0.3558226,4.9092793,0.585158,1.0247347,0.8951122,0.7953991,3.0194318,1.4327414,2.8938525,42.881622,0.5455297,3.1443279,3.6869178,0.21440986,0.07266356,1.6984718,1.6591115,0.33118793,0.4452897,1.152378,1.2490633,0.40407202,0.5044047,0.13308953,0.92415434,2.1967916,14.443063,0.9986158,2.9491997,3.4563286,2.6618197,2.8588924,40.597588,0.13579999,4.6395173,2.3700147,6.847204,4.488908,4.6033797,5.808221,0.21803714,0.27311143,5.2218585,0.3766033,1.0228494,32.274006,0.95370275,0.028881377,3.2384346,1.2907375,1.6232604,0.69001895,0.6826572,0.48012388,0.49886045,0.6714126,1.3539857,1.6836437,1.3398448,0.089645036,4.5950837,0.46664196,5.622453,0.0018739541,1.5156932,5.458299,5.494443,1.5668987,0.07017094,0.6122561,0.19196264,0.4387808,1.3516687,0.53135335,0.06020373,0.108976506,1.6522744,1.2592407,3.1725988,0.8800071,1.1533288,0.6025514,1.6813046,1.5071917,2.3231947,3.8145812,1.0497262,4.772617,2.3444455,0.9060545,1.4485049,0.18427913,0.75042135,0.5240392,1.5841568,1.8895085,0.45577627,2.6433785,3.219063,0.598057,2.0813801,0.23981486,12.96892,1.9515018,1.13886,1.0586717,1.0527813,0.2854544,0.3638761,0.9443198,0.6623842,3.8892827,0.89581573,0.56933826,2.8454368,0.98982227,1.8478208,11.280531,2.097179,0.9476529,5.2164774,2.042394,2.9221735,1.9860042,21.28372,3.1136942,8.748151,2.3609817,0.30429503,0.21793813,1.6850387,1.794444,9.117376,0.5692367,1.2597281,0.39231968,6.596327,0.35776287,0.6416476,0.5625072,0.36206266,0.8186641,0.43161905,0.4776395,2.5487816,2.0638735,0.91364574,3.4871566,2.0682738,0.62262046,1.3289919,1.8445481,0.42493355,0.7193547,3.5150635,0.088166706,0.36924523,0.30699077,0.46408722,2.2590177,0.22802037,0.97831535,0.6526336,0.8704596,1.8873537,6.5836244,0.5463281,0.5605773,2.0939283,1.1954645,0.47457495,0.44923073,0.20372939,0.993587,3.5753376,1.2063316,0.83936703,0.9075518,0.49330914,1.7216425,0.6195727,0.8251293,0.2743527,4.643656,0.69913757,0.5702709,3.9676642,1.9008079,0.04218638,0.27351028,0.35353413,0.77626044,2.233224,1.1016483,3.4243238,0.95589757,2.6157296,1.4091985,0.29656473,7.0913134,2.1103163,0.56154394,0.90240043,0.40942577,2.5068345,0.8489366,0.4892656,0.20410435,3.4459343,0.37721366,0.5562009,0.62495637,0.092063256,0.8802936,0.00259947,0.5284208,27.703857,1.2238344,1.5775745,0.115489945,1.1012882,2.2942166,0.8116899,0.6509909,1.0887619,0.57089674,1.3074517,0.23451167,1.4794433,1.0670935,0.7422261,0.23740868,1.5192281,3.2943141,3.6214533,0.7847896,0.7978043,0.73216474,0.6342493,0.6836733,3.4616866,0.2347962,0.11823885,0.9597637,0.12490205,3.2487168,0.7328491,0.3565575,0.23931819,0.64228034,0.17996733,0.0027304539,0.50896126,0.16119432,3.3355212,0.8269259,0.75787187,4.4568977,2.0402038,0.78206867,0.95560735,1.0061,0.3754859,0.15443002,0.56177443,1.9006331,0.12813354,1.1645876,0.44856027,0.016488703,2.4282458,1.9152042,1.9334911,2.65511,0.8692502,1.5752193,0.33692876,0.66662854,0.38844895,0.4539385,0.793189,4.989214,0.6856534,0.5834582,1.1262416,0.5935489,0.32030943,1.3972133,1.0230957,2.045679,0.32575217,1.5476607,6.5765357,0.31460842,4.992485,0.7863811,3.0519369,1.3039638,1.3875306,0.8184743,2.9943213,0.27572173,4.5953665,4.028523,4.118681,0.64059025,3.11731,0.18685798,1.2832347,1.8015631,1.2146626,0.025938813,0.7382379,0.618811,1.4592872,0.07824607,1.0107493,0.3092721,0.04211994,8.264446,0.6621607,0.23550734,0.87170804,1.3601627,1.8928404,0.58419114],"re2":[-8.641265392768075,-9.372629820684502,-9.71000096324929,-8.153141882394774,-8.448163289025466,-8.069113544556274,-9.423327451835583,-9.138624693454101,-8.299495707085915,-8.263885685841366,-9.311972609165638,-9.996217357110654,-8.957500016701948,-9.047652405192883,-8.956218266110357,-9.318243296299972,-8.18928199786343,-9.841362031732881,-9.137885633639872,-8.666356809728235,-8.371900722143675,-9.902872337137174,-9.593587594526907,-9.869291750326894,-9.553568923064663,-8.687208609176775,-8.642093236998914,-8.87303972553869,-8.946760409100262,-9.972522631319201,-9.693568663663918,-8.399447829288546,-9.966714698777368,-9.199244264223442,-9.793770731627344,-9.919766052778973,-8.028786143131793,-8.502751199141962,-8.655948526211436,-8.504415901885213,-8.342094038170863,-8.928241833173495,-9.638017703138237,-9.339555294930605,-8.319482160120913,-8.659706321196762,-8.535055290976771,-9.39527295120266,-9.57089390289504,-8.484258710423642,-8.406269346746681,-8.500093650910303,-8.023286521509728,-8.196053892576263,-8.17258719319107,-9.94566657593251,-9.768037945436104,-9.177173394894918,-8.281768306509761,-9.24438681166539,-8.244757875435813,-8.778353608378879,-9.124610059904972,-9.20493406978458,-8.076311142329475,-8.52497248774601,-9.791600332498058,-8.024672603014201,-8.035262731808803,-8.603120949310624,-9.89426990752299,-9.188163905313385,-8.808371810815045,-9.666926687452527,-9.585416978539945,-9.881421362673894,-9.331020943384994,-8.810284711967844,-8.059800255981594,-8.551487083990637,-9.140801224967818,-9.008965090900706,-8.189212922328503,-8.211130930299987,-8.863275238527072,-9.133537674293388,-9.688800875042363,-8.214130848441304,-9.857490447098915,-8.037850478917331,-8.146612581485751,-8.794454236025823,-9.272084657298851,-8.33977837202047,-9.548864364837593,-8.265648237808666,-8.83042615199784,-8.820838707377348,-8.71963484947634,-8.525992764432306,-8.121585436079261,-9.34911085850436,-8.929847758184684,-9.020776806916844,-8.939993928029894,-9.360067234997677,-8.607128459472666,-8.60736654907206,-9.968540539761415,-8.023054918023913,-9.815802799979481,-9.546472102863703,-8.818642215924802,-9.80428957462804,-8.11309964130512,-8.118813693447883,-9.883935440218426,-9.356198051918692,-9.504578506181357,-8.437180255442591,-9.56785815849593,-9.85753606702269,-8.785636696041566,-8.990565581707845,-9.677148971238326,-8.929508822065085,-8.3789969160812,-9.898392777981117,-8.280975390580384,-8.582868244592218,-8.05825907620063,-8.824010221766311,-9.329646910440543,-8.626157416942474,-9.697306234273084,-9.425444879407921,-9.882151210941545,-8.70517037589456,-9.915077329518583,-8.004615540822817,-8.92025602485664,-8.208540150758918,-9.933068803277582,-8.451123027931716,-8.6943699408491,-8.653522634821133,-8.892467987749779,-8.914005008295673,-9.48567408627874,-8.717805910936589,-8.32824650957523,-9.12350133346259,-8.418950378659886,-9.46146779549672,-8.639114476783497,-9.806050303889757,-8.223612745533124,-8.058147103149242,-9.484589266241892,-9.296869026855923,-9.334531418590364,-9.004656948336232,-9.283628820353329,-9.123184350503475,-8.48205128929369,-9.966911208710208,-8.456988704938215,-8.43778471005523,-8.592852994238624,-9.588460339694143,-8.213673025727648,-9.10799982756801,-8.581570748190353,-8.756016933796523,-9.704269168805025,-8.621523138245824,-8.92667847129074,-8.061903007433193,-9.090498917889704,-8.690237236633116,-8.429067584257666,-9.366817850579169,-8.469016530433171,-8.058015972602119,-8.834453003203752,-8.302852630199002,-8.607772013224547,-8.405302162873127,-9.971541203757766,-8.465447065596921,-9.928183993301385,-9.961179577641587,-9.439241684301756,-8.675159270216623,-9.61638203412896,-8.499899992223089,-9.253936105051976,-9.723462132317293,-8.221318422151803,-9.72683707886104,-8.125419975847228,-9.142094939848414,-9.589266907278544,-9.31987831959244,-9.510630374918625,-8.312919329907228,-8.381321806126433,-8.875595230192296,-9.956911603081508,-9.80204133325153,-8.084201610457832,-9.914007331711316,-9.080863769857324,-8.55543927659206,-9.44547891201422,-8.17863018547788,-9.137922856987071,-9.325920890116494,-9.731423402182209,-8.12022049819531,-9.31675705322246,-9.217528530994961,-8.593039510384871,-8.571322091714727,-9.963918396955165,-9.664280170729654,-8.819656458996132,-8.672255119247053,-8.124731953809302,-9.466959748357208,-8.908365725614212,-9.633089169628777,-9.353572128586494,-8.220899168456167,-8.91980070227531,-9.409608587496567,-9.12558416638218,-8.256223715251883,-9.108390258107313,-9.870054192183819,-9.936631489006636,-9.809828629527415,-8.536943417552518,-8.736707861719932,-9.028991184534053,-9.694741380975175,-8.8770721480033,-8.18673390771535,-9.916693119201176,-9.610614357276486,-9.871252244190474,-9.420311542161155,-9.650812983211551,-9.686959263483287,-9.266184804660767,-9.724939553792064,-8.298441360053083,-8.963168275328371,-8.580132328016001,-8.118380501625829,-9.837390689172679,-8.130089495913957,-9.292475423025786,-9.914269890307748,-8.114130844687018,-8.928618200101797,-9.761770409491996,-8.483618144610777,-8.873103053342799,-8.89464334800973,-8.435886104455452,-8.10646281233901,-8.788706578768867,-8.34380189106075,-9.309045340571636,-8.077784164316668,-9.71803986940775,-8.572656989081871,-9.869798130339356,-8.183246084883546,-9.300690187206595,-8.41419456557379,-8.918063479041212,-9.997436091901207,-9.73375499953933,-8.30699559428682,-8.566856249591421,-8.522075289419869,-9.962270120043083,-8.297771779061371,-8.889195286641462,-8.369216740663262,-8.816635655229328,-8.612144171326598,-8.263029669602997,-8.082981867626582,-9.76520832430047,-9.863210987904186,-8.665566470330907,-8.165313749144197,-8.865228432700325,-8.998549416095587,-9.418210732325786,-9.705423801734335,-8.79434420723628,-9.202303587277955,-8.206614191379895,-8.753033733014814,-9.444624379514291,-8.228919367427594,-9.648823607788458,-8.304402916621763,-9.266733375640904,-9.97771021704142,-9.44698505631648,-9.954026472645667,-8.445536060558691,-9.229246555000117,-8.37705234775656,-8.017536411596295,-8.67601181454533,-9.93704148358501,-8.4817565676391,-9.960764509930916,-8.27916734883484,-8.838733254260514,-9.002100386951927,-9.360436176764924,-9.147505488331696,-8.314991967948824,-8.31978279029244,-8.846752285083364,-9.342523006790236,-8.295896461517614,-9.759058722639807,-9.343491823887135,-8.032980866629355,-9.450639418881934,-8.70711947053586,-9.027285331291418,-9.35175060539978,-9.865292391340084,-8.703984661905078,-8.443206687323409,-9.89696907454288,-8.16049996315006,-8.460857279025507,-8.831540942911984,-9.291015583536263,-9.29220964733681,-8.351312689750094,-9.596789908105134,-9.907338739232994,-8.642217544901726,-8.450700595957041,-9.056199601939639,-9.447677980722514,-8.767012303644318,-8.113459769630964,-8.34208541825726,-9.711139794553096,-9.108683800480044,-9.134679542535011,-9.463782358703435,-9.888769842078766,-8.844620857930401,-8.62258636860077,-9.781649350692255,-8.993151096127498,-9.391762730824086,-9.101311446286692,-8.735186642202786,-8.099645025160699,-8.88471350859425,-8.58410936387433,-8.158476699649992,-8.615827746963088,-8.547982507044024,-9.29992091649829,-9.30725938724684,-9.006133199103106,-8.512733834520988,-8.82359384881552,-8.12549664518373,-8.77979498025472,-9.282894598978778,-8.98685188802451,-9.210754616105886,-9.298660211911347,-8.352187967470318,-8.040391209422,-9.786514190112014,-8.5422792603721,-8.192001351046827,-9.472406884381511,-8.91619708691455,-8.063051273349247,-8.021666346195776,-9.64161206555868,-9.457112468238572,-8.10729123012604,-8.621309024126573,-9.404361944202488,-9.963492841819459,-9.192212492590734,-9.67064364971162,-8.576775576028568,-8.133794670905793,-8.019775617733126,-8.850018987565862,-8.326653621533426,-9.60258502360544,-9.883555626668642,-8.47655754185421,-9.825009820324025,-8.837457861143166,-8.336047917735991,-8.471328936927225,-8.689687045210215,-9.81097259098663,-8.172573789600486,-8.333948424012714,-9.084096571949692,-9.502745738955952,-9.937978507109651,-8.093490337011579,-9.49397758679775,-9.82420864385357,-8.520655730802888,-9.16880924465531,-9.14321943185708,-9.005935461921585,-8.837787741467354,-9.663783844798902,-8.411598152718357,-8.236710633265808,-8.988755453914134,-9.432632286106658,-8.969040532576894,-9.344600511853109,-9.346380563420606,-9.667608251350943,-9.679193438310461,-8.88179985191827,-8.424118507250123,-8.802264724447443,-9.48596197917843,-8.973604603936304,-9.032496000134994,-9.260894990002818,-9.043988593728066,-8.638716777455674,-9.22142529980542,-8.79910431262926,-8.739718972094185,-8.186746093488381,-8.630324237675119,-8.676525150265913,-9.608130097720714,-8.681408305176697,-8.607892413021043,-9.607680375996937,-8.367528104749825,-9.337859225395,-8.224786848082088,-8.033459671504804,-9.840392569003589,-8.978596083341015,-8.484104852685476,-8.555430349216682,-8.525950069160086,-9.655166807834027,-9.439471748702786,-9.096591835839732,-9.01733034954108,-8.765617238377512,-8.533936053846855,-9.770512524539006,-9.479272850067336,-9.334375558982263,-9.708018292404656,-8.215689546984294,-9.096028428082967,-8.697344920787135,-8.972288139813969,-8.920951204883137,-9.9168355403281,-8.755842747590883,-9.2275032865989,-9.726848563432558,-9.587815265650766,-9.50384465842506,-8.549639506934565,-9.973657286939295,-9.07653289224007,-9.088749248465835,-9.27206130608712,-9.778937630712377,-8.374714299133043,-9.552946751024928],"im2":[6.756293358453985e31,8.152584180065641e31,1.3181826922171637e31,2.5691094280752017e31,5.076566705105734e31,2.0027061724730102e31,8.38905581106843e31,1.4261166346313548e31,7.156731263953332e31,4.087165263651431e31,5.7534975268480465e31,5.946985833764826e31,4.0223654452393643e31,3.9673536818004433e31,6.155098284604543e30,2.7989872913247918e31,5.16404095377082e31,7.344764507973e31,4.432353310937687e31,3.4128820522210414e31,7.699703499964572e30,5.205010348156792e30,9.90010859831055e31,6.991307323040859e31,8.122437713162934e30,5.3104507637450275e31,7.196635145361013e31,2.9386690900230495e31,2.4841715106954843e31,1.0200271868444122e31,1.0172991374035568e31,9.37141454235089e31,1.9176801811095702e31,9.077696035068261e30,6.3685555519540305e31,6.543064884323442e31,8.67411461652358e31,9.143168456497134e31,1.062266822064063e31,5.599912218324283e31,7.456589918758872e31,1.0895324374876803e31,2.8898513124339412e31,3.3303727126075825e31,5.387066561032243e31,6.221793903114776e31,2.322962782374448e31,1.024410152418719e31,6.9293722283606475e31,7.738136557263609e30,9.904722042384137e31,6.179155317146826e31,2.9467272424565073e31,1.8949118674403553e31,2.848181560527491e31,8.828579946190137e31,9.028397263552256e31,2.1331223341964413e31,4.923285763133385e31,8.177727621347741e31,3.2425074677724156e31,2.7385156281874024e31,7.065205574416182e31,4.870939755621078e31,7.004683304995946e31,1.55402915599421e31,9.936609762463969e31,4.546050478316365e31,1.6213587939390263e31,8.02254817348612e31,1.1079242825792646e31,2.9951176013956027e30,5.797715685186469e31,4.7222911099678805e31,2.921016445087368e31,7.572123959783268e31,1.725998688838737e31,9.262059213175917e31,3.1761438899446206e31,7.766574495711737e31,5.657776823032197e31,6.426767392471819e31,8.105966535967893e31,7.7370342799215245e31,2.658373611142482e31,3.4421790260262944e31,3.348537261554049e31,2.146394729608504e31,5.964976627639036e31,9.931865853908068e31,1.504021634795859e31,7.769017602909171e31,5.529261195611384e31,8.000735700696947e31,7.342244808145196e31,5.950818118910256e31,4.561651630120937e31,7.219303872344735e31,9.67820023063247e31,1.531036593225359e31,5.629901031624949e31,2.9855420590482155e31,5.185135472943692e30,2.965729797355007e31,2.0256248039586334e31,6.3610817700438485e31,8.283471916096645e31,3.7950649718324584e31,6.859910747842688e31,2.0151544368060527e31,5.907941596610917e31,5.182498989565943e30,8.425747155790737e31,8.867201196063526e31,8.03979150981183e31,9.276465002719055e31,5.375930879346687e31,9.485803212088403e31,1.3449438356782318e31,4.635062528173545e31,6.922315980892287e31,4.798395777065275e31,8.461839906093185e31,8.112313456367154e31,1.9714023904056566e31,6.078048949616301e31,7.6606514519349705e31,7.377238164202867e31,9.26800987027718e31,6.411288488310584e31,3.233689784329672e31,9.842069450586108e31,1.745019018546301e31,6.20491751804596e31,1.8116812105419068e31,9.183477335512848e31,6.227818706639671e31,9.589451296118303e31,2.6351452656558916e30,5.1073092600081155e31,4.341580915155308e31,8.429436950741288e31,9.549752556848197e31,6.732803639636277e31,6.10529628725609e30,7.823358938217193e31,6.424588367979999e31,1.2499766722616335e31,2.176176795236641e31,3.436200676887075e31,8.441575821115507e31,5.508674946413831e31,3.0469006695969247e31,3.4062378497321765e31,1.0156943566706578e31,2.883251055499727e31,2.431501600285624e31,2.2027030121203995e30,3.6603896390528836e31,1.9653529911414925e31,1.6372923260397789e31,1.3235890183388143e31,3.0342877026831464e31,2.0010038516010866e31,8.502923808245277e31,9.115811356143418e31,1.3769180023232564e31,1.5805810273751798e31,4.938411368596169e31,6.274170481898776e31,1.1833509944837585e31,5.619870710983561e31,4.574703827705771e31,5.3704620016964795e31,5.792433375829204e31,1.0937283025664325e31,5.6136748856104775e31,8.704508700535924e31,7.252239215773499e31,6.548184955759877e31,2.3337324490248947e30,4.721289900826644e31,2.0119956495880032e31,1.976034441136021e30,7.152166289768415e31,1.7703409030881423e31,1.9049873441012812e31,9.595417297634327e31,8.050340768049136e31,3.3864201654561343e31,1.6176908094516607e31,6.804586099290272e31,5.984284714487349e31,4.62772635342101e31,6.850923470002273e31,3.0808545626610984e31,8.800838742714902e31,8.545997090994202e31,3.5294854139569854e31,2.442847302933321e31,4.206561360799577e30,8.233555207701168e31,2.153708878921017e31,2.823821951255359e31,1.0255979296744178e31,3.2329889699938386e31,2.111767289662403e30,9.948729310993618e31,7.475394674549929e30,4.084018737816808e31,1.4457065881726117e31,7.257543747716011e30,1.9921374995765206e31,8.915971104796106e30,7.039199126109166e31,2.2972745791889606e31,6.759176061827843e30,9.53095389668485e31,6.694821226261151e31,1.872975212165018e30,6.179066029841552e31,7.956765884678193e31,2.2657373210175913e31,5.757718110051113e31,4.831489978485411e31,3.238411037004028e31,8.73512341152416e31,3.582891834108647e31,7.295387228937195e31,3.7386640809333627e31,4.727292603856553e31,3.6216733865837295e31,4.93083399561182e31,6.639180777974997e31,1.750552536420319e31,6.924784877254174e31,1.5456616107218702e31,7.137650974241613e31,6.390239324795488e31,1.6442038011121464e31,8.92475699368911e30,5.855897508123807e31,4.943631522816373e31,9.42403199695839e31,6.029232253898255e31,6.608833362367096e31,6.726397081828739e31,3.884798058155457e31,5.278232981926076e31,3.3153220263099595e31,2.2197393414973543e31,3.4147899647904656e31,1.8996787073807354e31,6.666113487686363e31,7.401575412132109e31,3.3916090959175973e31,4.0456809419787457e31,5.868153394335384e31,3.3530004250640656e31,2.3422246872771803e31,7.754905913069634e31,1.4179407540273294e31,4.155565267412709e30,3.9722439676923384e31,2.419843734484831e31,9.984300871830007e31,7.223232785244812e31,8.590547941144086e31,4.093842704628921e31,4.683709355939714e31,4.393591852200042e31,3.766167244683062e31,1.9759547750338813e31,9.951392253221816e31,4.2111967853799515e31,5.905637929811366e31,2.1441347562354163e30,3.2856478284769897e31,4.727267149598595e31,7.929721951582834e31,8.42296935630061e31,7.381727688131061e31,9.744635348128827e31,5.767234309011314e31,2.5967298277787854e31,1.7233030102282678e31,7.101727377374188e31,9.732180077093933e31,2.187938816934572e31,6.137018921497474e31,3.4499542602804745e31,4.7555851121320106e30,4.494641173204087e31,9.586931987849467e31,1.5642682541246457e30,3.1283903750569866e31,2.67186970501247e31,4.878354066417049e31,4.3592306113999114e30,1.29171006158451e31,8.429740852169932e30,1.8514169407669423e31,9.26436032921558e31,5.015051209199817e31,3.3987722104365216e31,5.329675590705619e31,6.244308498195251e30,5.622141786825457e31,4.467633153091886e31,9.632355942572488e31,1.5155494640364366e31,7.028836957302891e31,8.9735870462909e31,5.463992857105261e31,3.3954241707747536e31,8.080127952057877e31,6.437752538868693e31,7.382738069735775e31,2.5728526999877813e31,4.383530007411898e31,5.897883860744425e31,2.0190339735821484e31,4.001803645590371e31,7.791969759125799e31,3.8857078207826947e31,4.322368844055717e31,7.263314202197399e31,8.887658670357959e31,6.130416043834631e30,5.0523908970190595e31,9.881532013807703e31,6.792817584838279e31,9.0871571768762e31,2.531646617474276e31,7.8505766020272695e31,8.74745521344138e31,9.578716035928742e31,7.100384167742178e31,2.2700547866696042e31,7.614594093581906e30,9.934605180568623e31,8.718374404389312e31,1.9819451490200248e31,4.937795655050069e31,7.75424044937821e31,3.0233323996791373e31,9.296663173623993e31,8.245941828736277e31,2.5306918527578306e31,7.578002660960393e31,4.927040135566191e31,6.963520861207402e31,9.11251965455998e31,5.1141864167787975e31,8.533971744732687e31,4.0231996749653055e30,6.238295488887855e31,1.9931743125603541e31,4.089962310196275e31,1.7479936180235446e31,7.321440909276145e30,4.3218537078460885e31,9.87660245990696e31,7.679727428348348e31,4.469468555825161e31,4.5446217858352305e31,3.836569959520758e31,4.16677166451008e31,9.781611428052328e30,5.627902421212607e31,3.3378162526353195e31,6.405329829031364e31,6.032218127695306e31,9.868887482466371e30,4.635838081840046e31,1.1954883878239465e31,7.473897218539675e31,8.807635138175177e31,3.7698197146302404e31,8.546836017612441e31,2.4210719525547797e31,6.410792438290978e31,2.6320060160647895e31,6.0620753769737475e31,7.7211865974632415e31,4.3348939858562325e31,7.11142253996403e31,2.247436976022772e31,8.515832651227478e31,7.017137651649467e31,2.4486512310551324e30,7.330671242281413e31,4.415691074255323e31,4.1280591550751345e31,4.967800781091009e31,1.488332371227079e31,2.621906308657628e31,6.49275071589383e31,4.272946011623042e31,8.32748721303564e31,5.346927247533872e31,6.607908450286606e31,5.172134111588143e31,5.873169442462191e31,5.934564821877577e31,9.08592403121281e31,2.214323481973972e31,1.6428167587927334e31,2.7515737169766907e31,1.5910001278228503e31,4.864461681193789e31,2.9683698403642412e31,8.016272049947299e31,9.522459652343866e31,2.445912350198959e31,6.601252835321225e31,7.752758217315232e31,7.301118268513007e31,2.6143664643883594e31,3.0200718703176123e31,7.554203206775584e31,5.395007511690537e31,4.335743515531594e31,7.108949815267026e31,9.316165647923376e31,1.514756695468933e31,6.392795495084218e31,8.978855682463223e31,9.880916471512957e30,8.723720709590644e31,9.681148366131134e31,1.335868714402162e31,4.153400925057975e31,9.008629907231241e31,5.700973951476655e31,9.125661160204956e31,2.7671696467459495e31,9.673637344112183e31,9.015874860522812e31,4.935490422640272e31,7.309706193455363e31,8.247167826117051e31,8.572415973292296e31,1.2680232385401658e31,3.7679485530256697e31,4.864685896700941e31,3.83275589370346e31,2.24443125748212e31,1.3926632786706817e31,3.0797870799651273e31,9.544916055605602e31,8.784537122104664e31,8.896675655295845e31,6.324773094763735e31,7.125172312004206e31,1.038821820027176e31,9.42054525610018e31,8.177445726007156e31,8.330270549046683e31,3.9561052200465066e31,4.922954900404267e31,5.818947542743485e31,7.619690660144285e31,4.5113329944393755e31,4.938406978668332e31,5.731225257452042e31,1.4463172514447665e31,5.911710254912839e31,1.9222419224549748e31,9.841742930166898e31,3.259320519848962e31,4.913139151571964e31,7.09093864104387e31,7.22210609959739e31,2.838747614621291e31,7.485261028873292e31,2.0188891798465314e31,8.515918170485471e30,2.1180405066127805e31,9.80787321912869e31,2.535632092949215e31,7.4152033332288505e31,7.319381739583709e30,4.3971476979046855e31,3.5997287422751125e31,3.791234731873121e31,7.900876237280226e31,2.3385824177995807e31,5.9000910703604355e31,7.100791925129291e31,9.788776864238667e31,8.269860335898295e31,5.389982119783709e30,4.045057604067759e30,8.389510363642326e31,3.5729888724966675e31,5.713949426839266e31,7.024384246465519e31,4.005901033249084e31,9.928689014487616e31]}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/large_positive_real_components.json b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/large_positive_real_components.json
new file mode 100644
index 000000000000..3a2d59184ffc
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/large_positive_real_components.json
@@ -0,0 +1 @@
+{"re1":[8.625174727363978e31,3.4540462010127484e31,5.242055754272174e31,5.210726287402049e31,5.08417937629129e31,9.211061029690347e31,1.4490488491029019e31,4.675517608898772e30,5.226565981948197e31,7.531285848656613e31,1.0105623774918394e31,3.9726727320519973e31,1.8467159936568446e30,3.602372280616427e31,1.0845073799628813e31,7.852690599511625e31,6.76330453471209e31,8.747037005437207e31,2.5147147462547616e31,7.357858079425445e31,1.3023016355934836e31,8.31683406905359e31,6.545405551392302e30,5.814662759720012e31,5.272571827791817e30,3.191086228743541e31,6.2427877072618955e31,9.888380735279947e31,3.5285241404967062e31,6.436670295592306e31,8.279028603579564e31,3.206758319232458e31,1.3732635995652532e31,8.401916638184779e31,6.442181204281991e31,1.1689773840614603e31,7.723138462163615e31,5.385486637864443e31,6.249387396736608e31,8.716430927247454e31,6.824090102080955e31,7.185670566252195e31,2.0542676034842335e31,3.4011754232275415e31,1.9235168917577317e31,3.3663307657140096e31,6.1833353395993925e31,7.113669271330081e30,9.203935141201276e31,8.722158575231603e31,9.649332002618217e31,8.115769488503014e31,4.92069918290791e31,7.783870488719199e31,1.2244100913135882e31,1.8094405297598138e31,4.780699254713035e31,6.576587975111851e31,5.306250387835255e30,3.379223747247001e31,3.8016303931476505e31,2.379899238225937e31,8.836919714763998e31,8.891917282512824e31,2.581353878714733e31,5.144033239947491e31,3.9873850171337603e31,9.738074445199174e31,6.521107582290237e31,4.44984930503479e31,5.775604840652089e31,3.6864271844712207e31,3.4780703049694654e31,7.364651660558938e31,3.71498870971535e30,1.7272586927218548e31,6.642475651499092e31,7.769566635907523e31,5.619138528220735e31,1.0054329617745395e31,5.081980106530755e31,6.21424610198401e31,8.098547653015564e31,5.633950273545507e31,7.298070550793802e31,2.9175306237247834e31,7.135179501661432e31,3.9056676060584475e31,3.4293812316315333e31,2.680103535459644e30,7.204460593483459e31,5.074290807470149e31,7.840327590361943e31,8.135088815676889e31,3.3450587286752555e31,2.7450496631859224e31,3.303668619959648e31,2.2622864675205478e31,6.306529248483427e31,2.4933374350296966e31,4.868862109797499e31,7.072711503847947e31,2.6961767464733203e31,5.08838652626447e31,3.87138203805381e31,2.6754409461198105e31,4.236204731261722e31,4.974267682773065e31,3.842003625662418e31,3.4754039816768293e31,5.769826273450668e31,8.680964931691645e31,4.1000721544373035e31,7.078465116918723e31,1.2248078882175717e30,3.29953901032525e31,4.285875986202517e31,3.422608311446737e31,1.1448247728332029e31,2.194874628580145e31,4.117086796947407e31,7.069089023441318e31,6.766502991568486e31,1.7540902370288382e31,9.016791011448871e31,4.717441699552744e31,4.537089980515476e31,7.768979365378213e31,7.245270065710737e31,3.1893631884456707e30,9.915369567049688e31,3.537831353768085e31,1.6924052705577974e31,1.835467749316796e31,4.207120431280119e31,2.5025387051360183e31,2.4786045887310928e31,5.381857129633293e31,5.923493498127905e31,8.314441787780498e31,3.233165460854882e31,8.802209028373119e31,2.6045965564270967e31,5.602994924182235e31,2.7866108529205705e31,1.1152570966013442e31,2.3520080918084e31,8.8781782012311e31,3.5222464695142245e31,6.288367049076157e31,3.154811675443361e31,1.4418535623642483e31,9.480961219755317e31,9.218158923899715e31,8.653411908203272e31,9.426786434795886e30,6.765643122423901e31,6.040975618725333e31,3.7458289594820563e31,2.0750989943724143e31,6.170543181271466e31,8.119241804647014e31,9.318507876363557e31,8.033795679836543e31,2.8696903396923935e31,2.1669830242327314e31,6.40519239377904e31,9.913462092948033e31,7.814639788877687e31,6.287376268359626e31,8.064028425019263e31,3.2560109954629057e31,3.919459268759027e31,9.63406994596711e31,5.6479728365358885e31,5.310630677894098e31,1.1624587637557848e31,3.918377619126029e31,6.870579908624469e31,8.283065962843634e31,6.285690871559012e31,8.047506707024896e31,6.0796231695497605e31,4.481023972387511e31,9.649783813148102e31,7.41066295460856e30,1.5186951785047155e31,4.22820706147718e31,2.6151169797721e31,7.707232294995092e31,4.591706392766247e31,1.8730291510676512e31,7.791973106542382e31,1.870593527544383e31,5.777532385722273e31,9.398065733561013e31,4.974328993469652e31,6.381974223121473e31,7.918371392080455e31,6.27648253616444e31,4.6039222528517945e31,6.748293132074536e31,2.333288991684932e31,3.6159775035305533e31,8.694730768401006e31,6.011656163622487e31,2.095170134454436e31,6.041229976001128e31,1.7246217558952826e31,9.580187176931596e31,3.1012298559972343e30,3.3410386907224857e31,4.473310206913465e31,7.062217860442212e31,7.236733040711956e31,9.89630322235199e31,3.253818405672651e31,8.841315215083388e31,3.496738244986185e31,1.6478467566488198e31,5.609659537245743e31,8.833091562196351e31,3.965611428712822e31,7.263431560444739e31,4.2836380490044185e31,8.342896871984315e31,7.711923143850256e31,9.568434612522825e31,9.187134554898102e30,9.43417265195935e31,6.2700797703051375e29,1.4006487640175248e31,9.082775540777442e31,7.69891477766485e31,1.1334684277042984e31,4.942431247109831e31,3.1298390836190816e31,5.674381277234355e31,3.626701826354e31,3.8148427613442784e31,4.0139818406555898e31,6.0498896044572455e31,8.483519604466738e31,5.100969981973355e31,5.664049588732677e31,1.2302901604089545e31,6.7964426332441935e31,6.525311740453486e31,1.1911809180366552e31,8.552050501259651e31,8.347229447707691e31,5.988726445383998e31,7.5604024695661265e31,9.737242596246272e31,6.157447943483538e31,1.4871602853876675e31,4.665618010537582e31,6.55643787474264e31,1.199652871964918e31,9.918183503625013e31,8.193639135944087e30,8.083663275626375e29,1.0401978110283428e31,7.82335937396527e31,6.383484267026335e31,7.821191445913915e31,9.855566160161193e31,2.1453798485086175e31,6.19749095939356e31,5.746398457058653e31,9.286564751580925e31,7.407103765590919e31,9.23966474035507e31,2.9105204105707207e31,7.256583700445177e31,1.4082934145917293e31,3.3575019004217302e31,7.757444971922192e31,3.2098310635457706e31,2.4838648050957036e31,1.2940989644010804e31,7.909160324722964e31,8.846941167296693e31,4.53395788289054e31,2.330440144355871e31,8.036091728449161e31,2.0197995185221941e31,7.444102326878606e31,8.684971048808321e30,5.274176756336461e31,8.203382957645245e30,8.968169560423056e31,6.310826317395471e31,9.506843516014698e31,4.4315869829380465e31,4.820579157199705e31,1.475554737759255e31,4.66153240565488e31,4.616869658241123e31,9.777721517086675e31,7.024499256391823e31,3.354168361607391e30,8.977008592830884e31,9.678484692526159e31,8.321029982201745e30,3.627335786523406e31,1.4749084671665293e31,5.261263507748032e31,7.397348033831591e31,3.1003431536218264e31,8.492524404542155e31,4.0188460625648785e31,9.708632617690925e31,2.4790460834960914e31,5.949173805656567e31,9.40809901689975e31,5.037148284384298e31,4.75566283380359e31,3.7601706798353596e31,9.037637454203083e31,2.813974737831477e31,5.8996691173720635e31,4.863547193781745e31,1.1313638415953908e31,9.759795364130944e31,4.490876849221983e31,1.1986996389490035e31,7.8899921517953755e31,9.380617392781966e31,8.62634262063362e31,2.2981681753665065e31,7.073398868915308e31,2.453962969823428e31,6.660847546140329e31,7.97236017524833e31,6.813778258717044e31,9.37516498660306e31,2.1553572641306773e31,7.780692464429067e31,5.55770910310846e31,2.0264853388673843e31,5.222194167944223e31,2.9317812216499374e31,6.345408511643725e30,7.399375493467741e31,9.795578224485383e31,1.8414903816470985e31,9.431202601221205e31,5.161033215669598e30,3.171435913785825e31,8.479657345539916e31,6.926194887805916e31,4.7542081754023025e31,8.267003035965976e31,4.436513869096962e31,5.833207620649362e31,9.811610761153456e31,8.805326150976367e30,6.311652059603976e31,9.553375552131211e31,3.780511017178824e31,2.3333750494569862e31,5.085014931662556e31,3.6886620762117353e30,8.872196687310284e31,2.651715821065558e31,5.199584580484956e31,5.469589944252994e31,6.947879869850548e31,1.0794097348578147e31,8.787549802864205e31,6.896001915707565e31,3.963660122362894e31,3.4539668549866387e31,6.457818635972803e31,8.668841232313522e31,6.382936476692409e31,3.8429871068662115e31,1.80979652758673e31,9.897392943119234e31,9.552917562312758e31,6.467278461295203e31,5.368757541710775e31,3.0688348135771974e31,7.164006850354619e31,2.8795219551641626e31,9.640667337709962e31,8.474942622333386e31,6.487694090154289e31,5.8509424055291e31,2.8596596147947987e31,5.349979747981645e31,9.609819280275064e31,4.6160459267241405e31,6.782006170293843e31,7.945759679420662e31,8.34647696763227e31,4.0443709950441e30,3.436206799656143e31,4.853462185264061e31,7.211465486386696e31,4.949213378725079e31,7.366792341728071e31,1.4622763854342803e29,3.9940337732428756e31,7.185687962880324e31,5.746486892424703e31,5.676095680844552e31,1.798270564543083e31,3.801741144149831e31,1.171243555020901e31,5.448301425114146e31,6.988072708295156e29,6.3162635462916445e31,9.942265874278027e31,7.43792772844108e31,1.2555561855924415e31,1.5172652477495598e31,4.056894386875663e31,7.004700657814054e31,1.1735533847143398e31,7.506406147064205e30,3.279316351397921e31,8.647806268968561e31,2.352357810547342e31,3.7409053623194546e31,9.460566617369871e30,1.72052405437647e31,1.5941888622132873e31,7.123610349799269e31,1.8497588899964192e31,4.553158382263609e31,1.9874425422506838e30,1.8743275275866657e31,7.702109372864231e30,7.200071228372361e31,9.259225416124538e31,1.784783205692462e31,4.327407152945615e31,2.0222504641898454e31,7.396820526930576e31,4.4483321130423863e30,8.316529981942278e31,6.01857338718123e31,9.891986926866436e31,2.367843151448179e31,7.878011015735816e31,6.757378152842083e31,3.134369454288777e31,7.033330480886265e31,8.881060861718248e31,7.849051116061967e31,8.667877344095905e31,6.800829566779576e31,3.7548138126900587e31,1.7806195200601105e31,7.990388798456094e31,9.41293101523881e31,4.183278560763637e31,8.1051210529584555e31,2.8459735038239943e31,4.621999584017947e31,5.150095741328781e31,3.8369890309016387e31,4.656069674728589e31,3.5641660035913994e31,5.963664705736073e31,7.596680146936935e31,7.573595271728451e30,4.768627834344625e31,8.759009030424966e31,7.341817881984291e31,6.495306429232607e31,9.216533559643629e31,8.092744927880918e31,1.2838889902819784e31,8.569581228315723e31,4.55475915698913e31,5.360629300125801e31,4.135351159080813e31,1.9043398882562525e31,4.387402572524615e31,5.656589011471736e30,4.0759298882151455e31,2.0029863863552878e30,1.6949696594022458e31,1.1889669453208852e31,3.241401240648103e31,2.2477494165023227e31,7.462628855744704e31,7.409680751513725e30,5.821206942375198e31,4.123541357444855e31,1.1666417027579313e29,6.458405341224697e31,5.245415107212215e31,2.0018256558617132e31,4.728450925759273e31,7.626945278965914e31,8.466124316114173e31],"im1":[7.926327180121591e31,6.999872188250594e31,4.547875169738602e31,5.491468467206506e31,9.639675219982419e31,4.592302760541116e31,1.0925606406311128e31,9.918902006812334e31,2.582024836574324e31,8.19640202129146e31,5.286325450149324e31,8.983458281291418e31,4.538182432706385e31,3.2314433641248977e30,1.1928238983865893e31,7.722215104772512e30,8.117029161103733e31,6.790361253982839e31,9.253608444221465e31,2.5394745362209295e31,7.533246394064897e31,7.297688212304433e30,2.781608745834825e31,3.778662556072581e31,8.147055141644772e31,8.79571190762016e31,4.203862996187218e31,6.485205705454777e30,8.810830360961073e31,1.0762635732646309e31,1.6587717276649317e30,5.681096303502272e31,5.528666887965257e31,6.956579821683167e31,9.872672816775756e31,8.79137310671893e31,4.664083483216692e31,4.144462974955843e31,5.204744371606579e31,8.447678753129037e31,2.509909977834132e31,3.7354506159907067e31,4.416988255886278e30,9.027294826026243e31,8.059177717722977e31,5.616411941669367e31,4.206015419602285e31,5.802971042330441e31,6.008199820124748e31,8.231517577014167e31,4.780499842645218e31,5.83782835207449e31,2.5945931002235423e31,8.813235259493949e31,3.756553359078242e31,1.532760719699885e31,6.079574138659311e31,8.019508815075406e29,5.706748800996282e31,5.839546174635432e31,6.66539990593017e30,4.188962674401224e31,9.837687505604068e31,7.533999343032853e31,4.373707943223643e31,9.8095671560924e31,5.270062145245432e31,3.6654239692732194e31,7.988100654430688e31,7.0740703421845e31,1.6806624388057402e31,7.155506936422978e31,5.42167408000973e31,4.71908461034375e31,9.838517456888008e30,6.9759043818126625e31,6.518311238689282e31,5.348315898746482e31,8.393496962450154e31,2.2674496203320127e31,7.388612719727005e31,6.673999840153706e31,8.196354934563305e31,8.270761777014521e31,5.6965684324568655e31,9.7878126369977e31,6.464532205096836e31,3.740745831738851e31,8.110162567499492e31,5.988318953696271e30,5.10421563532616e31,2.6407292165042097e31,1.2664674295545488e31,6.898512343257815e31,9.096287057133465e31,7.934980375208375e31,5.307469744211362e31,1.3957740281896304e31,6.99550745378883e30,5.351340329318868e31,2.954653547450037e31,4.839446243320396e31,7.871543458758091e30,7.649714776062142e31,9.450065374616733e31,1.321958993540705e31,8.549854354969704e31,1.211058931925222e31,6.299607758112622e31,6.172468989329552e31,4.416316326080291e31,9.751947260722782e30,9.415823447293491e31,5.420169160158871e31,1.2614654594601315e31,3.1644521146121196e31,3.6521783893524544e31,4.995926238917248e30,4.018731493636807e30,5.297825559941035e31,7.056747872382494e31,9.52513353462978e31,8.556157511366086e31,1.8547092478647487e31,7.153630409865097e30,9.518859508362162e31,3.128184996537289e31,2.0277623565079007e31,9.055133527819356e31,8.617749345305454e31,5.348200933920651e31,5.675247189506203e31,4.30082351137508e31,3.144475714988481e31,2.777516111369295e31,7.259597927562254e31,4.120369355145971e31,1.5066732939534556e31,6.482833011691745e31,4.099444098228811e31,2.025200219144503e31,5.108058388129591e31,8.515204236194408e31,9.385273622952241e31,9.787039414818778e31,8.57905702264035e31,6.8819597821776085e31,7.655691684615799e31,1.1160662879863038e31,4.343649960617286e31,1.2345122165047685e30,9.338643160982163e30,4.583900421649328e31,5.266752784688246e31,6.41809229845165e30,2.6395168641398017e31,8.538841507896101e31,5.051449356241768e31,1.232974252429916e31,7.493582225395374e31,8.671566419318089e30,2.2210362946132823e31,8.157247113798142e31,3.645538858261016e31,5.994458763096878e31,7.4229054939494095e31,7.4589516383728875e31,5.738519640686222e31,8.049105510688699e31,8.558539534125182e31,1.925004398046043e31,8.818316106393216e31,4.578856047400624e31,6.2933688754402965e31,3.9178572530074763e31,6.046499001318928e30,4.880497533060002e30,9.558793374329633e29,3.9267349239159037e31,1.219210034208379e31,2.5841445140003817e31,9.845182108095442e31,8.140617412500905e31,8.066142158022087e31,7.166428120819494e31,9.672714758184956e31,9.417327617214323e30,1.0768144128035507e31,9.624407334158978e31,1.1844342237983097e31,2.7379779211794077e31,2.9721587302676868e31,6.896321561912189e30,2.2618937888295976e31,9.884002482602866e31,4.982246269107619e31,5.541617299249831e31,7.02140182425163e31,7.023066275316936e30,4.896689946680558e31,3.221070631705827e31,3.349373185984239e30,9.860184964045632e31,2.1056581107014284e31,4.428428324533213e31,9.344713988759337e31,1.5836733170040786e31,7.913550693588723e30,4.768865778888425e31,4.903706220673882e31,9.821355529056732e31,5.739121941694254e31,7.5217304359169505e31,2.887989333982433e31,2.831798489025814e31,6.109292363783752e31,4.277828899909546e31,5.623291411649331e31,3.9785754935587896e30,1.1119035640716123e31,9.255396817675457e31,1.9737272300271557e30,7.446463610927431e31,7.467353020773742e31,9.825393878040535e30,3.785341012354282e30,7.811891849720933e31,3.5919062785153966e31,2.875540771962233e31,5.499969053498393e31,6.970350024060355e31,8.506614909735542e31,8.202037319064173e31,9.179073772491047e31,5.600213705859721e31,5.843920260833998e31,4.863451986864875e30,2.1513852576778703e31,2.1632462088081475e31,7.459073540124081e31,3.123395963515022e31,5.230178030293498e30,8.852138117972311e31,3.7768479854622176e31,9.681471054416848e31,8.529018377773966e31,6.800989880797897e31,2.5061894006670004e31,5.259228627842013e31,3.4655306987859836e31,4.09009684170553e31,9.598616187532843e31,8.472420757714523e31,3.9310438967555376e31,4.978891587014051e31,7.441007271728667e31,3.438592043476152e31,3.0167825786502935e31,3.4471572289968215e31,7.532911484485708e31,2.926804417123994e31,9.24881189808149e31,8.72053365148274e31,8.881224685823552e31,2.255216885413176e31,5.344991330758676e31,3.8327067805609365e31,6.841362941637089e31,9.361596139525526e31,2.1211686400911978e30,7.437443282698025e31,7.281747042932899e31,6.789035421102352e31,6.284546178013321e31,2.745401062596181e31,4.892638517368677e31,5.868166371723571e30,7.6791090403191645e31,6.842798395747849e31,5.077474204557608e31,7.393668944416431e31,6.160444484969264e31,8.015710393701229e31,7.419775966251112e31,4.5392568557190865e31,5.655664613700361e31,8.116841345612742e31,1.6383458258703576e31,7.319181270750136e31,7.885110606824058e31,6.372957083635812e31,2.470160185535594e31,1.370817091679022e31,1.494222341994368e31,5.0534040493610295e31,7.036458757498556e31,3.8130831694897598e31,8.282894202345894e31,8.553558095465838e31,6.053095956255166e31,9.608915501232822e31,2.906862742959138e31,1.2583338913138198e31,3.57438594886358e31,2.2450588022111473e31,5.747342681783532e31,7.647278865690962e31,4.4872257927431994e30,3.743554645521503e31,5.6523724614561005e31,2.691676923363261e31,1.7737115977958219e31,1.8816274372790432e28,9.749697407233373e31,4.26936730433627e31,9.646115009346655e31,2.7149579458371287e31,4.097659216144211e31,2.408729311500552e31,6.841537549413153e31,1.2747138273663306e31,8.381219778807176e31,9.993085936261959e31,7.375861055617042e31,7.857828957319124e29,7.034684839415913e31,5.168432301755141e31,3.79685472177683e31,6.126175442179885e31,7.049211641955066e31,6.39166432368413e31,9.891985576831922e31,7.408783210199561e31,4.537080854490927e30,8.781541844856199e31,1.2504949800481503e31,7.123126794764657e30,4.607810259607779e31,7.090031118179307e30,1.9872635156004936e31,9.854006228408974e30,4.665853334868986e31,1.2797880215720726e31,8.391729328896875e31,3.4841642907284554e31,5.547739218970423e31,9.821209968064936e31,3.871243059838827e31,4.804810921280667e31,6.659126441103628e31,4.1573511794890985e31,7.467772539604064e31,5.012979784017925e31,4.586515576122964e31,6.596941574280231e31,8.085909922677061e31,7.758364028913373e31,5.333988355916323e31,9.181376220410764e31,7.643625893399139e31,5.898758065949954e31,4.399085939465447e31,4.204418500305465e31,1.187820674300165e31,9.212497274073011e31,6.765396593425777e30,4.555752077461387e31,4.834851391450452e31,4.371795615209506e30,5.1427919431085425e31,6.162045601879601e31,6.278781174509456e31,6.1087691872102105e31,7.801264855707576e31,2.8411700780019434e31,6.581160741520114e31,1.900547487932023e31,5.04635733465608e31,6.394117686226265e30,8.50903791361771e31,3.283516004040146e31,3.411928544728632e31,2.7065495763630766e31,9.34402711710905e31,5.276711190939018e31,1.7227695932046318e30,6.691754840603891e31,9.323421420661238e31,4.2159878100630044e30,6.811447216917359e31,9.11818519477014e31,1.480633705642469e31,8.793709528233579e31,9.557991458127003e30,7.6071695830963295e31,6.333338455617531e31,4.576397020872042e31,1.996084991920587e31,4.469508129161707e31,8.204921679094295e31,7.437554204205589e31,7.396328940881506e31,2.9908627080175754e31,2.9515409634917735e31,9.592938845255403e31,7.784854594935326e31,5.9604988643851005e31,2.9711269140895902e31,7.436601424894337e31,5.780506658842999e29,4.328324640312077e31,4.692711794034684e31,5.087228186918538e31,1.6691961700767146e31,8.21133703719992e31,5.227950474352933e31,6.612855417557047e31,7.6394548563898535e31,8.892561386042665e31,2.0061478298052429e31,6.1633819660671165e31,3.1130134897980703e31,7.42198213411252e31,9.729506053622637e31,7.9573559291501e30,2.0361945920818858e30,3.244112925858106e31,7.495431883894305e31,7.300845125833013e31,4.295396443357758e31,7.573570953357511e31,9.270265042513603e31,3.47083594403123e31,1.6239502910110006e31,1.6736011943474316e31,5.489020678674073e31,5.787415650145468e31,7.8274459658492805e31,4.3035477395857645e31,3.4438713797442925e31,5.529337094549461e31,2.15554820244123e31,2.2616562138092867e31,6.549219855999744e31,8.911338006278494e31,7.520805505342234e31,2.5433977632067485e31,1.3651541121630884e31,5.229363633881241e31,6.240748382943132e31,5.233335725924879e31,4.808477870732424e31,5.012133506408823e31,5.657370452862608e31,2.0757377923809973e31,8.419399110546388e31,5.712611661712463e30,3.4467493509723334e29,4.917748354824165e31,9.467813177558779e31,1.9255253349301539e31,1.2671133355373843e30,8.898645895128123e31,5.007549663164296e31,2.8676877687151115e31,4.132617965802722e31,9.97434391781839e31,7.988819775570035e31,9.38346140583611e31,5.06939030584064e31,4.175307921648375e30,7.811639147605644e31,3.9549227608251706e31,7.162987776923305e31,5.485828562072362e31,4.610745131201777e30,8.795119630171551e31,8.84008546002566e30,2.98805536138004e31,9.330767216243591e31,9.95230384161082e31,9.64322958998497e31,9.178445518288205e31,8.890812551358449e31,1.4937661713799621e31,9.167675653491498e31,6.469548837396816e31,8.946502004262068e31,7.4391726983840145e31,4.55371336100455e31,9.283972675461077e31,3.600510126308825e31,1.6740026512460262e31,2.9089293471887724e31,2.6300896016055764e31,6.237650131221535e31,2.579633587655139e30,5.144024870625397e31,8.965097951156137e31,1.695083305580022e31],"qim":[2.441909e28,-2.3660815e30,2.8381449e29,5.646712e28,-2.889687e30,1.9600134e30,1.0867451e29,-5.212032e30,1.7197363e30,-1.1143152e29,-2.2732213e30,-3.1204222e30,-2.5543445e30,1.9627674e30,-1.1995057e29,4.2313854e30,-8.553197e29,7.7192165e29,-4.1437335e30,2.509581e30,-3.272374e30,3.762297e30,-1.1233176e30,1.0800805e30,-4.118271e30,-2.5942415e30,1.10491846e30,4.8867907e30,-2.6593328e30,3.3083322e30,4.8262244e30,-1.5925848e30,-1.982122e30,4.3050725e29,-1.8920179e30,-4.230962e30,1.2853032e30,8.653076e29,8.129181e29,1.6784824e29,2.2988654e30,1.9332554e30,9.965508e29,-2.8418295e30,-3.493263e30,-1.24916016e30,8.3226186e29,-3.1753924e30,2.41974e30,6.7680654e29,2.1022256e30,1.6110697e30,1.378449e30,-3.916772e29,-1.451912e30,1.0803499e29,-9.7491465e29,3.5027287e30,-2.5994423e30,-8.977265e29,1.6587978e30,-9.490475e29,-1.2468419e30,2.1505776e29,-1.0647381e30,-2.60493e30,-6.1223124e29,3.0300257e30,-7.309963e29,-1.5001477e30,2.2877924e30,-1.9812126e30,-1.2922317e30,1.7883933e30,-3.9185933e29,-2.9121844e30,-2.1742775e29,1.1523644e30,-1.441965e30,-6.8290066e29,-1.2203831e30,-5.30798e29,8.975558e29,-2.0097963e30,5.2150532e29,-3.650919e30,1.11873686e30,3.0784892e29,-2.8803858e30,-1.650985e29,1.1644934e30,1.2785272e30,3.921712e30,6.759195e29,-2.9710667e30,-2.6026964e30,-8.900798e29,5.199772e29,3.3217286e30,-1.6342512e30,8.902454e29,1.696523e30,9.170144e29,-2.0874359e30,-2.8193846e30,7.2909946e29,-2.4327353e30,1.7871795e30,-1.1999155e30,-1.9249874e30,7.558388e29,3.7353985e30,-2.7794586e30,1.1584237e30,-7.115609e29,-6.8379564e28,7.1798596e29,1.4568056e30,3.942297e29,-1.9614876e30,-1.5842391e30,-1.6568342e30,-3.6418955e29,-1.1404924e29,4.5440022e30,-2.7928323e30,7.192938e29,3.496125e30,-6.877333e29,-4.4796356e30,2.1123077e30,-1.1943188e30,-1.6595247e30,-8.814581e29,8.946893e29,-2.667829e30,-7.199661e29,2.1906907e30,9.221509e28,2.1146204e30,8.7288524e29,2.1695629e30,-3.2310138e30,-1.838697e30,-3.8909438e30,-4.643929e30,-2.8234396e30,2.9599512e29,1.3344427e30,1.2779245e30,1.7888457e30,2.3311154e29,2.4247188e30,1.6126452e30,4.272262e30,-1.0207057e30,-7.634755e29,3.1738353e29,1.2834014e30,-2.7228957e30,2.6601098e30,3.628486e30,2.1799046e29,2.2032236e30,-1.6095292e30,-3.0338383e30,-8.981592e29,2.0197359e30,-2.9658135e29,-2.0200002e30,3.1400787e30,-2.6603833e30,1.9080403e28,2.1859973e30,1.0055285e30,2.4135187e30,4.018755e29,2.2559258e30,1.6727168e30,4.1528594e30,2.1354159e30,-1.4809346e30,-1.1516259e30,-1.77732e30,2.1708506e30,-5.478384e30,2.2203984e29,1.7121755e30,-4.2808344e30,3.4195718e30,1.09457965e30,-6.2748917e29,3.888535e30,-1.8833599e28,-2.7463177e30,2.0835493e30,-5.9591607e29,-8.799599e29,3.5389405e30,7.17421e29,9.8072936e29,3.9878096e30,-4.8680735e30,8.873759e29,2.145566e30,-1.498858e30,1.5829672e29,2.8193036e30,-1.8773639e30,2.68124e30,-5.78036e30,-1.3757963e30,-2.1377568e30,2.0757684e30,2.7291328e30,2.389729e30,-2.6970963e29,1.301623e30,1.8978627e30,2.6671888e29,-2.0482325e30,4.8214896e30,-2.1250824e30,-3.7838947e29,1.5762242e30,4.0488863e30,1.8501686e29,3.0903402e30,-1.08229084e30,2.2019618e30,-3.7146144e30,-4.1775523e30,5.2669033e29,7.3773706e28,-2.598918e30,-2.5243402e29,1.6727621e30,1.6605668e30,7.779666e29,-1.5893739e30,3.5813245e29,3.331972e30,8.263299e28,6.688902e29,-2.2837209e30,-4.5113542e30,3.680109e29,2.1345456e30,-2.2824973e30,2.7311106e30,2.9580453e30,-2.7590918e30,-1.0234871e30,3.3387572e30,8.175857e29,-3.6057455e30,5.5629266e29,1.657097e30,-1.20747685e30,9.484696e29,-1.11426466e30,-4.5121597e30,-3.7225897e30,-8.5601045e29,2.1409012e30,1.7152989e30,3.3490334e30,-3.0966124e30,-1.6694891e30,3.0905206e30,8.094468e29,-2.3145463e29,8.387914e29,-1.86324e30,2.4144574e30,-2.2138465e30,1.3504879e30,3.0606373e29,-2.0245613e30,-1.5758118e30,-3.4000833e30,9.460323e29,8.578157e29,-2.0137067e30,-1.0409841e30,1.388147e30,-3.457273e30,3.1520015e30,-3.4723756e30,-1.3603828e30,-3.2192338e30,3.8907978e30,2.6348874e30,4.0729687e30,-3.7700355e29,-1.0474297e30,-1.4117045e30,-1.9488461e30,-2.4803519e30,2.4353734e30,-1.6159152e30,-1.41741e30,3.7392218e30,3.4336827e30,-9.353263e29,-8.018832e29,-3.831992e30,2.900985e30,1.8025076e30,-1.3317655e30,2.6603174e30,1.5003286e30,5.9573023e30,-4.0836317e30,7.737016e29,-5.306911e29,8.871336e29,1.2557904e29,9.6151046e29,5.671106e29,8.543498e29,-1.6634148e30,-2.3834044e30,-3.3481557e30,5.5256935e30,-1.7653462e30,-2.457515e30,2.1606182e30,1.7058581e30,8.0492684e29,-2.1598277e30,-1.566167e30,-3.0380557e30,3.1436194e30,-1.22775756e30,3.1545583e30,5.15243e30,-1.1998915e30,3.617212e30,1.6202929e30,6.577007e29,2.8145708e29,7.068572e29,-4.6169288e30,1.9579247e30,1.9104076e30,-5.0057883e30,3.730075e30,-2.1851895e30,-2.1106536e30,1.9084033e30,-1.6717223e29,1.2376638e29,2.643929e30,-1.1869615e30,-7.6813e29,1.6671089e30,-2.3790022e30,-1.2068897e30,8.971901e29,-9.3231075e29,-1.0134753e30,6.0324084e29,-4.095971e29,5.5631428e28,1.15678e30,5.1884743e29,7.3262756e28,3.238276e30,-2.5139703e30,1.0378676e30,1.0443958e29,-1.1697912e30,-2.134573e30,2.2174769e30,1.3360344e30,2.5075802e30,-1.5056187e29,6.601073e29,1.09731174e30,3.2062312e30,2.0574897e30,1.6018113e30,-3.2965267e30,1.0155296e30,1.6868651e30,1.3881305e30,-2.9672326e28,3.0572353e30,-5.4990783e29,-3.0404327e30,2.2943361e30,3.392745e29,2.0819463e30,-6.203784e29,7.9674876e29,2.2205333e30,-8.9809384e29,-7.3951624e29,-1.8646901e30,-3.7290496e29,-7.4255095e29,2.3221102e30,-1.609315e30,-2.9783858e30,-6.5493962e28,3.7325018e29,1.6123566e30,-2.7857622e30,2.042396e30,-1.5012104e30,6.254158e29,-2.5497787e30,2.603823e30,2.171369e29,8.97273e29,-2.9443237e30,-3.151664e30,-1.983604e30,3.0363514e30,-2.7278873e30,-1.3686917e30,-2.1138536e30,-9.088427e29,7.137001e29,2.1855132e30,-1.16083256e30,-2.8734193e30,-3.1612262e30,1.4443968e30,-3.2865443e30,-3.173198e30,-1.9002847e30,1.0684705e29,-4.3583007e29,7.373569e29,2.0748587e30,-2.901468e30,-3.1200536e29,-8.718185e29,1.00188934e30,-9.244403e29,3.327775e30,-2.749368e29,9.93597e29,-2.3484756e30,3.41688e30,2.7091562e30,-1.2651761e30,2.8398434e29,1.4647613e30,1.7510496e30,2.2463185e30,5.224939e29,9.831196e29,-3.520609e30,4.2800462e30,5.087412e30,-4.27314e29,-6.4534115e29,3.147969e29,2.351155e30,-2.3272667e30,-5.6980652e29,1.039256e30,3.431757e28,-1.5534753e30,-2.3001208e29,-4.382008e30,-1.7467176e29,4.5559663e30,-4.1967403e29,1.2501381e30,5.974965e29,2.1343197e30,5.0059215e29,4.2036906e28,2.1158778e30,1.4976447e30,-2.3631338e30,-4.3587633e30,-3.1301486e30,-4.940443e30,-2.7346754e30,-7.949371e29,-3.799545e30,-2.5602752e30,-3.4416876e30,-3.0051765e30,1.5044127e30,-5.1925534e30,1.2397343e30,1.3613587e30,-1.4541327e30,1.9168761e30,-3.7388823e29,9.956789e29,-7.5326256e29,-9.276366e29,3.5443487e30],"qre":[-9.652228e30,-5.949347e30,-5.2822454e30,-6.000069e30,-8.4454784e30,-7.706396e30,-1.3861407e30,-6.2772935e30,-4.1992362e30,-8.2643553e30,-3.313372e30,-7.615263e30,-2.867545e30,-2.1075743e30,-1.3101894e30,-4.363216e30,-8.9096854e30,-9.134197e30,-6.9785195e30,-5.0595e30,-5.170995e30,-4.9010218e30,-1.89698e30,-5.2794576e30,-5.0404473e30,-6.841048e30,-5.5789636e30,-6.424531e30,-6.9583685e30,-3.8403868e30,-4.711239e30,-4.7045336e30,-3.8243504e30,-8.955477e30,-9.406253e30,-5.794918e30,-7.1023195e30,-5.7461145e30,-5.985658e30,-1.0325191e31,-4.8672575e30,-5.61285e30,-1.416759e30,-7.3432614e30,-6.0037396e30,-4.7088304e30,-5.5108497e30,-3.968951e30,-8.65769e30,-9.988827e30,-7.943627e30,-7.5542136e30,-4.5010793e30,-9.1370366e30,-2.7234324e30,-2.0105739e30,-6.088338e30,-3.4704062e30,-3.7467008e30,-5.1493555e30,-2.6625116e30,-3.942343e30,-1.0399147e31,-9.65264e30,-4.1205176e30,-8.4736403e30,-5.5842284e30,-7.356206e30,-8.606727e30,-6.7254574e30,-4.1297852e30,-5.9979186e30,-4.8937792e30,-6.893688e30,-7.709779e29,-4.9210135e30,-7.103235e30,-6.900783e30,-7.1250455e30,-1.8293032e30,-6.987541e30,-7.563429e30,-8.9675784e30,-7.807029e30,-7.480861e30,-7.477159e30,-7.451784e30,-4.1972626e30,-6.052965e30,-5.1545752e29,-6.244618e30,-4.1545585e30,-4.7675773e30,-8.642896e30,-6.490678e30,-6.12933e30,-5.11616e30,-2.0705038e30,-3.9102116e30,-4.1444764e30,-4.6575723e30,-6.9033406e30,-2.0467276e30,-6.8563255e30,-7.836675e30,-2.0619137e30,-6.9067854e30,-3.3990986e30,-5.8516694e30,-5.2403755e30,-5.954429e30,-5.489901e30,-7.1836095e30,-6.5055816e30,-7.470758e29,-3.423454e30,-4.2848172e30,-2.206311e30,-8.27354e29,-4.2526293e30,-5.793336e30,-9.7858707e30,-8.8069515e30,-1.9959775e30,-5.7679005e30,-8.371542e30,-4.1186942e30,-5.336616e30,-9.058696e30,-4.9029087e30,-8.119865e30,-5.484494e30,-3.648986e30,-2.987782e30,-4.1645143e30,-5.922568e30,-3.7148658e30,-4.1120835e30,-7.2018195e30,-6.7657243e30,-2.9194075e30,-7.77898e30,-6.5001245e30,-7.860265e30,-6.5063294e30,-4.9380065e30,-5.408967e30,-9.461961e30,-2.4276323e30,-6.542512e30,-1.7121175e30,-1.4102055e30,-7.909678e30,-8.214827e30,-4.700352e30,-2.1587136e30,-8.129629e30,-5.973471e30,-2.645195e30,-5.420044e30,-4.1609507e30,-5.7680934e30,-9.2141e30,-6.850067e30,-4.7856012e30,-5.056331e30,-7.324516e30,-7.9599345e30,-9.700434e30,-8.0971095e30,-5.731304e30,-6.426427e30,-4.6821878e30,-9.588543e30,-5.350671e30,-3.053248e30,-8.5500735e29,-2.19676e30,-5.661186e30,-5.806431e30,-4.734826e30,-1.0235316e31,-7.2778096e30,-6.345566e30,-9.399852e30,-5.876022e30,-1.4057681e30,-3.0162258e30,-6.321032e30,-4.5662392e30,-3.7930912e30,-2.8641402e30,-5.1866514e30,-2.3301237e30,-8.790181e30,-7.8169004e30,-6.186144e30,-7.7663057e30,-5.0047048e30,-5.9099753e30,-4.4384463e30,-3.9636108e30,-6.421545e30,-2.9796945e30,-7.265554e30,-8.227822e30,-2.1217833e30,-3.7482455e30,-3.4923618e30,-7.479638e30,-5.425923e30,-5.4444e30,-6.986092e30,-5.9259053e30,-5.5304046e30,-9.7780054e30,-4.2025145e30,-8.2718464e30,-2.0984784e30,-1.4248061e30,-8.3345564e30,-5.044007e30,-6.049724e30,-7.791197e30,-3.0451968e30,-4.9629563e30,-8.029019e30,-7.7165415e30,-2.2234484e30,-8.3282247e30,-4.004742e30,-5.222684e30,-8.8652737e30,-9.437378e30,-4.1154253e30,-6.4426734e30,-1.9772275e30,-4.587732e30,-2.975614e30,-6.408691e30,-4.005895e30,-3.7733237e30,-1.0320707e31,-4.7397378e30,-8.35981e30,-5.529573e30,-7.495801e30,-4.8986242e30,-3.636223e30,-6.361879e30,-6.5960637e30,-8.438303e30,-8.8023974e30,-7.9724765e30,-6.052682e30,-5.3837184e30,-4.4165116e30,-5.2383203e30,-2.5284779e30,-9.043101e30,-1.9609576e30,-5.499944e30,-5.7791943e30,-9.366859e30,-4.4810138e30,-7.389069e30,-7.1447425e30,-4.887433e30,-9.130908e30,-3.401506e30,-8.868281e30,-8.6656425e30,-9.1705516e30,-5.212928e30,-5.342474e30,-3.373747e30,-2.1387705e30,-9.2702136e30,-6.0736004e30,-4.05489e30,-4.6435394e30,-7.1845156e30,-9.349025e30,-6.8766735e30,-3.9902945e30,-8.3409885e30,-5.286635e30,-4.7330144e30,-4.4611838e30,-7.289221e30,-4.2120203e30,-5.932989e30,-4.008609e30,-5.693171e30,-5.8351265e30,-7.02832e30,-3.0992878e30,-6.914846e30,-7.494471e30,-8.6069963e30,-9.472445e30,-1.9767015e30,-5.9285136e30,-7.4770285e30,-1.6785133e30,-5.2078125e30,-5.227695e30,-2.882344e30,-6.2040544e30,-4.9189992e30,-6.3495885e30,-3.237153e30,-5.538782e30,-6.309458e30,-5.52243e30,-9.901248e30,-4.400248e30,-4.860146e30,-3.4548458e30,-8.856749e30,-2.4713303e30,-8.675819e30,-7.9805086e30,-4.921046e30,-6.003159e30,-6.056252e30,-3.881522e30,-6.4691277e30,-9.240694e30,-8.910569e30,-5.08302e30,-9.96113e30,-5.742204e30,-3.9699205e30,-9.4515785e30,-4.296193e30,-5.221971e30,-3.514941e30,-4.546019e30,-4.427268e30,-1.5763073e30,-5.235926e30,-2.441996e30,-5.296635e30,-6.1380785e30,-8.891041e30,-6.3410505e30,-7.383604e30,-2.9656313e30,-5.2230014e30,-7.146924e30,-8.45877e30,-5.7036074e30,-7.009113e30,-6.096535e30,-7.594352e30,-9.339703e30,-3.4936333e30,-8.925262e30,-9.508151e30,-5.357127e30,-3.5636244e30,-5.062454e30,-8.969846e29,-1.0996286e31,-1.9308425e30,-5.8084135e30,-5.864135e30,-4.2868014e30,-3.2253914e30,-8.06238e30,-7.009374e30,-5.194307e30,-5.7690327e30,-5.324368e30,-8.531829e30,-4.8205884e30,-4.9763264e30,-1.4932838e30,-1.0906543e31,-6.4600964e30,-5.412076e30,-4.3287363e30,-6.2778714e30,-7.3487246e30,-1.844952e30,-9.351912e30,-1.01109164e31,-3.6410645e30,-6.854285e30,-6.39962e30,-4.184259e30,-9.3916007e30,-2.9028648e30,-8.468804e30,-7.180762e30,-6.675131e30,-1.3542006e30,-4.2268955e30,-7.425005e30,-7.91521e30,-6.888825e30,-5.9471335e30,-1.7563456e30,-7.690577e30,-7.946542e30,-6.701738e30,-4.4642962e30,-5.2598966e30,-2.1190433e30,-3.1505175e30,-6.104298e30,-2.5951597e30,-4.6812095e30,-9.941117e30,-7.04216e30,-4.676189e30,-5.1169943e30,-7.2432875e30,-4.6564803e30,-4.364901e30,-2.1252307e30,-5.9365e30,-1.0075632e31,-1.7826204e30,-2.0332644e30,-2.1677873e30,-4.8368457e30,-5.336064e30,-6.886344e30,-5.730737e30,-7.992781e30,-2.171593e30,-2.041636e30,-1.3119068e30,-7.330962e30,-7.947426e30,-5.523015e30,-4.6032414e30,-2.8821136e30,-7.506652e30,-1.43593e30,-5.866705e30,-6.5907565e30,-1.0268454e31,-5.593551e30,-5.5322573e30,-4.421875e30,-5.179085e30,-7.452768e30,-7.8429897e30,-6.538579e30,-8.3706495e30,-7.250642e30,-3.4849795e30,-5.448578e30,-4.7981864e30,-5.0374044e30,-5.441433e30,-1.0393157e31,-2.6786674e30,-2.3909979e30,-8.23401e30,-5.060367e30,-3.9445466e30,-4.1794908e30,-9.276827e30,-9.641095e30,-6.153578e30,-5.589774e30,-4.7015965e30,-8.7372255e30,-5.9309695e30,-9.360603e30,-7.350187e30,-9.734115e29,-9.324474e30,-2.8303332e30,-4.3604368e30,-7.219298e30,-6.2131733e30,-7.7244394e30,-5.367932e30,-7.228448e30,-1.0295664e30,-6.189625e30,-4.5199844e30,-6.872552e30,-5.6785893e30,-6.6813975e30,-6.1411927e30,-5.281498e30,-3.0553206e30,-1.6280861e30,-5.442657e30,-6.407506e30,-1.16161625e30,-5.3751e30,-9.8804105e30,-5.257259e30],"re2":[-8.91510975226971,-9.053136905878798,-9.434079877400299,-8.59754880133244,-8.885188196897918,-9.80277102043587,-9.775789757669695,-8.20682750405891,-8.50231539922026,-9.245018492243265,-9.516527952011318,-8.605604907513829,-8.219455524423498,-8.38888027426308,-9.035263802361623,-8.390230470612298,-8.38823599682322,-8.884451704955847,-8.485387622974182,-9.673171357676196,-8.38125095365128,-9.958215199592798,-8.983421648093515,-9.165873749203477,-8.546752303882732,-8.340845851559974,-9.331496243255677,-9.26386742530806,-8.647122894100924,-8.234984190620505,-8.398641128339856,-9.783115774155432,-8.736621903076964,-8.987684481768076,-8.611596931420513,-8.540848886249837,-9.378536299085074,-8.102501633106442,-9.091978059263408,-8.306709879729404,-9.47184807483559,-9.395302208723406,-8.23321213844267,-8.166157332360635,-8.228590650879426,-9.635027938184152,-9.84315425763473,-8.22509190429175,-8.061618389830214,-8.136200760071548,-9.863810729425236,-8.699570725523785,-8.38090194288717,-8.916126529854512,-9.22694139421921,-8.565255376120485,-9.21492107317449,-9.271867248776845,-8.08971590113359,-8.287579100368223,-9.162297038940158,-8.123882485102989,-9.495481153149832,-9.03352228597506,-8.443620773407398,-8.797998640978301,-8.078019664216685,-9.56301828596208,-8.305129771518404,-8.537811387686478,-8.976128946479301,-9.094550968849006,-9.378596485399255,-8.34561542562109,-8.9837467599868,-8.812678573994793,-9.623212823174043,-9.694402187359508,-9.866442851323356,-8.88525570570692,-8.84973261174467,-8.792140218026644,-8.03560845905253,-9.325728795257962,-9.180195739589985,-8.311922053610676,-8.090378660952268,-8.605303607962785,-9.81825047179462,-8.090492856539457,-9.676337208968418,-9.370311435274788,-8.505108968967246,-8.734823669661907,-9.564573333859792,-8.451818917309094,-8.01939359301828,-8.685511963414726,-8.485205309060524,-9.61282278662112,-8.91538777541668,-8.037135990029421,-9.535783143556488,-9.900584467428661,-8.21513298511072,-9.518331705896195,-9.335383526695319,-9.997127984524905,-8.419167948256208,-9.655802986460904,-8.60976902393843,-9.982463898412776,-9.375449883158087,-9.108233392987959,-9.292311921666418,-9.818749954961454,-8.340051752774924,-9.761716969142457,-9.390585806899882,-8.993865584955662,-9.711329000386185,-8.624522122262299,-8.07108617913983,-9.288753171760957,-9.043098435240799,-8.484156556996709,-9.402653064673517,-8.44441186526259,-8.706851543938596,-9.10724432487715,-9.832424439960596,-8.309912876347372,-8.284762964462676,-8.507690984201547,-8.286977114423708,-8.10274499631578,-8.50238594284337,-8.674075041367956,-8.108404925362805,-9.470174925618547,-8.26200151722086,-8.799504227141632,-8.434625946161223,-9.406597869115647,-9.780703257186381,-9.868920831118537,-8.63653683163784,-9.120986975284737,-9.201547358339647,-8.009184666812756,-8.44936620914151,-8.886916062162909,-9.332928818511736,-9.593084128144888,-9.401811102448267,-8.294000664995075,-9.227222644092889,-9.636492587571157,-9.631973068673657,-8.603009712479894,-9.581339028547827,-8.349742763128136,-9.898325165903266,-9.07730194209843,-9.171871162467447,-9.627910462707572,-9.845567915551728,-9.982254835342372,-8.301902052924246,-9.792405761318573,-9.406385764559392,-9.17481021801296,-8.331009527148021,-8.128662985158808,-8.86647988969472,-9.741171409187029,-8.938246736121332,-8.46407777891825,-9.27692746546302,-8.444092902403062,-8.986177436559156,-9.064463860120295,-9.876325089725793,-9.849320606387195,-8.074508850576969,-8.885199519925349,-9.507996117796807,-9.069235498625623,-9.905585344964136,-9.569443939633143,-9.251991507826522,-8.40942163036401,-8.979234910817606,-8.105802562011492,-9.188843319736772,-9.639067809790294,-8.822156657850565,-9.124744151936538,-9.886220504360773,-9.47474558312934,-8.361033323759449,-8.038488757898449,-9.699549445161454,-9.213721837025547,-9.351617699111255,-9.074340674345153,-9.26614999950909,-9.279531183647986,-9.52599539881476,-9.267317394943447,-9.300032035566458,-8.272201501897163,-8.867476909868664,-9.094504705313916,-8.490849306586684,-8.109593667604898,-8.361395964990598,-9.386307378996255,-8.222790390779291,-9.762446764759469,-8.920872933174389,-8.955360127966902,-9.683831504652202,-9.765056901947318,-9.777262467402727,-9.719282833937342,-9.375879802332802,-9.079501889272288,-8.429794202756838,-8.955802936334706,-8.762227806544596,-9.580490845433125,-9.661582052178161,-8.081370227602275,-8.112414739095223,-8.01449626594422,-8.013141996077465,-9.435094151216035,-9.629177762198479,-8.326960027449646,-9.249199811647529,-8.321034807771898,-8.150706563327116,-9.449399743352155,-9.248799342569203,-8.890975736108008,-8.600820493986639,-9.32149183759742,-8.862658523426857,-9.376183118355543,-8.220768991504773,-9.77170180540107,-9.578676119651108,-8.63433812806577,-8.89956400915205,-8.297284087516681,-9.433691204969564,-9.72160893248141,-9.165041693967975,-9.984169621149475,-9.569548527560185,-8.333841355944983,-8.141580321842456,-9.142307407392227,-9.640489791731481,-8.450220529719497,-9.247752638058445,-9.4606410129826,-8.381759974899504,-8.943873148684405,-9.625990310365866,-8.765854976816188,-9.320262200183956,-8.771684532037053,-9.350575730236724,-9.569799774780027,-9.984808966246197,-8.08583532237038,-8.136363349119781,-9.549612227514112,-9.403818571121906,-9.711165390580074,-8.603832256135593,-8.982571032212588,-8.246711252684474,-8.276762167537138,-9.708988820868194,-9.298761331065803,-9.164542817240704,-8.942957961197047,-8.529328008548273,-8.660769713784935,-9.423815901592699,-9.803453680189213,-8.120312038461222,-8.169376494678412,-8.5839715379235,-9.372789019789272,-8.956597430000198,-8.67566845813678,-8.88756755999362,-8.084706552021368,-9.875037971142788,-8.876874242866098,-9.470014440838169,-8.46380403383526,-8.810302249934436,-8.289493920108182,-9.378628422902244,-8.7709229503464,-9.866810343723175,-8.129105501400073,-8.12524968038078,-9.8177047418738,-9.50309499645468,-9.995389890527067,-9.804947025919338,-9.560789496213973,-8.300472315814131,-9.669969333514837,-8.57814480814489,-8.345539439887183,-9.02867586648469,-8.542400779522357,-8.735819486785227,-9.955246344529563,-8.222596978869282,-9.208890563808612,-8.633375516586778,-8.893808958357187,-8.355704907000796,-8.45339178864203,-8.672303508826273,-9.75592857669819,-9.48186362221798,-8.91583003317357,-8.41501898204853,-9.500002886316423,-9.720315128302312,-9.621824910994828,-8.728111086697043,-9.467393722218784,-9.677825850781065,-8.528383108698984,-9.29817047678275,-9.249600217372038,-9.321714071478038,-8.065961762764076,-8.865125029225323,-9.648624136662706,-9.625192905458363,-8.359395409828853,-8.140886585666227,-8.164566622551963,-9.041144874573893,-8.669210005411065,-8.743929125059324,-8.824918320677337,-8.310730990798659,-9.207023593159533,-8.70946394172829,-9.305787605310016,-8.928159383619201,-8.406378295709512,-8.025767406859725,-8.561364726359818,-8.1858752555236,-9.222744555063134,-9.828630755370416,-9.812923824056096,-9.75393786901861,-9.702632731310743,-9.783139697171105,-9.667076330812524,-8.442100098278994,-8.738395282258267,-8.807053476888914,-8.022009120620481,-8.55502355000387,-8.206717535557809,-9.840864249780761,-8.346717210441156,-8.873812062184044,-9.958198666033143,-8.592279636996583,-8.035975526180394,-9.047322331602441,-8.408960911016353,-9.880175654415776,-9.273760111905752,-9.168237135570537,-8.338585591821682,-9.881204564933558,-8.94108837332599,-8.619979507542904,-9.964055980548363,-9.20458641534621,-8.863551996749145,-9.682966963010914,-8.759354492239927,-9.532431973684401,-8.245917625740516,-9.0445664890892,-8.415754567666312,-8.716789670619919,-9.122655871343365,-8.054293696933215,-9.120989813712626,-8.51760890377954,-9.16444792633589,-8.364743320444147,-8.053190597886397,-9.93686407018866,-8.789921029432115,-9.816056025395806,-9.462481901161015,-8.298985610882552,-8.816116716208281,-8.337705209325684,-8.583805136975444,-8.279489349013566,-9.164493818129847,-8.853257053125347,-9.377625337304186,-9.832772456036608,-8.036732755756205,-9.619449295874993,-9.433776685055658,-8.211291477241485,-8.655441900484695,-8.132252001181168,-8.898642252378165,-8.439118303438065,-8.740306246141355,-9.104173719645,-8.977536324521884,-9.127320195516745,-8.36757816612445,-9.98856144776644,-9.739859844633648,-8.715331743346468,-9.022590767884155,-9.070618289739167,-9.529781827025284,-8.71206815142914,-8.397943538992967,-8.252583195663753,-9.735747241735488,-8.038827174823702,-9.104908874654768,-9.737735015287965,-9.363272855992571,-8.160547781046708,-8.771805434150023,-8.423643635779971,-9.34925878297306,-8.682425060445077,-9.216537290584863,-8.346074672132506,-8.332037062276171,-9.646581812191034,-9.562884416537436,-8.620553176188418,-8.587811797901125,-9.246564033825909,-8.445993271588318,-8.004582030278462,-8.072572020689964,-8.021739093721354,-8.805780614151892,-9.164111653355175,-8.812031221713347,-9.139890129683373,-9.31966498675289,-8.155379112149435,-8.50449003993075,-9.147709322027312,-8.825491789569,-8.89129243204385,-8.995110233212749,-9.584979672209311,-9.224092818567335,-9.090487260078174,-9.003367639326996,-8.237157186291398,-8.592594691991648,-8.129597724482636,-8.982784582296109,-8.50829337257679,-9.169755472525829,-8.157160439243349,-8.929656403205003,-9.223778950037198,-8.916716049610692,-9.042674350140187,-8.724700476542624,-8.837010545425457,-9.942834004928121,-8.496256880311588,-9.576993235060062],"im2":[-8.23446875546416,-8.165310069113456,-9.11663084354533,-9.233254856868287,-8.373870630935443,-8.452275878402162,-8.648462580060563,-8.987116399148979,-9.63079661974982,-9.793121492473663,-9.425467229260772,-8.270424706645729,-8.504312382442514,-9.345750649317498,-8.277012415898147,-9.90657114519145,-8.305081251226229,-8.18481588081832,-8.221643531809038,-9.817245466780246,-9.26434310276619,-9.133493758101704,-9.343720161333776,-9.032462989998695,-9.180279930163065,-9.694267211591564,-9.383314804667119,-8.055963071603703,-9.357470580547671,-9.896580557259876,-8.955712728182881,-8.763997646141748,-9.928383624010586,-8.200017166438533,-8.7636843695105,-8.935022918471711,-8.26421504020004,-8.432791684323156,-9.930148085438583,-8.316655328885794,-9.630393008913657,-9.891236627123691,-8.908927349250403,-9.133015565690366,-8.635807523173252,-9.371420343774224,-9.118781601539235,-8.0403660298391,-9.192870121481501,-8.792004248825792,-8.628421144795857,-9.583247116647948,-8.331019467347032,-9.26340985282417,-8.874400303705059,-8.083739573301369,-8.510037380824446,-9.5893050947897,-9.618792217996765,-9.895506256137224,-8.211719947392599,-8.669889639591737,-8.321595832378875,-8.006381848498695,-8.432637700747115,-8.871925682412007,-8.551764589050943,-8.92177657800876,-8.575848983687223,-8.613945646558676,-9.042151635437207,-8.925901344297483,-8.60223116295879,-9.010574711701404,-8.194985109555093,-8.96053240240889,-8.881974763376094,-9.369174604825762,-9.783503046232799,-9.078183246580647,-9.028364107801465,-8.207011359032265,-9.944262194003763,-8.193232105313813,-8.25482524678577,-9.031768970862224,-9.889755345841104,-9.543503823470225,-8.726512133274602,-9.026138735059348,-9.978222438265211,-9.23984818034881,-9.652547307221948,-8.664822398279323,-9.636263045593232,-9.357022914059419,-8.97876469636434,-8.92246974156092,-8.997225893568851,-9.121450388300834,-8.047844454040257,-8.985453859598636,-8.118322828254437,-8.14289084924699,-9.103228976829648,-9.777035065391345,-9.090773940770491,-8.819176344369962,-9.039093660192137,-8.231736695885125,-8.509760209725146,-8.568538959409715,-9.479851879254547,-9.953435155610501,-8.034806723083006,-9.047330244393168,-9.921035364762444,-8.709946216916075,-9.33189295737907,-8.309423817359589,-9.525154235812801,-8.273349737245635,-9.381473041533972,-8.76148050767767,-8.364479702094403,-8.540095069874946,-9.237179397177892,-9.331820803756756,-9.335046875417556,-9.255803390393678,-9.144377835194089,-8.538214912147167,-8.01852019996076,-8.014502327353803,-8.449828229429238,-8.607624635525205,-9.443749534576103,-8.285082327301879,-9.105483105196658,-9.019029370013218,-9.407314082991991,-9.020676386091372,-8.907467509269068,-9.739728295931018,-9.193237755270069,-8.092335111864639,-8.215036180472348,-8.37634858081706,-9.65533400341257,-8.203521157227529,-9.549067089187686,-8.091221346330748,-8.656323273203787,-8.294486444584487,-9.910979338555498,-8.305611931155822,-9.636805098274376,-8.968479979578342,-9.334446254753711,-9.503746061516656,-8.209417123499312,-9.103058119791338,-9.08718336945519,-8.24148335912523,-9.441278382020593,-8.903597232836766,-8.976241916063097,-9.742129649134606,-8.043853013406022,-8.126940374844173,-8.51234464519742,-9.923810918426975,-9.813258415523304,-8.416599598947965,-8.98841874964985,-9.680510491598946,-9.909341837100818,-9.12717439938126,-9.677304310677268,-8.139118907181754,-9.510522462055754,-8.30731018727764,-9.62272250127731,-9.952780375962359,-9.48874865380843,-8.177405278666988,-8.200842207698264,-8.718269601280028,-8.51758088137105,-9.76027341182158,-9.888192683731575,-8.534764831489948,-8.061538360889807,-9.64166674821318,-8.37349469584959,-8.94292290008425,-8.108266816700578,-8.006974527678679,-8.394065302829466,-9.435619243508633,-9.10467591527259,-8.932595757519836,-8.001770109529726,-9.810609335649506,-8.856694858435548,-9.70438977952379,-8.155184862595037,-9.09101743693741,-8.534309056554537,-9.878147549594496,-8.19326619888175,-8.450950843058484,-8.05325680858873,-8.059187321784897,-9.310464990034136,-8.229966332316218,-9.642594186475984,-8.275099025397013,-9.332620983321583,-9.631390843577632,-8.91252475390473,-8.951593890439291,-8.907133217518249,-9.110094409850664,-8.287331045775348,-8.691918336672538,-9.945625185658733,-8.290995146157432,-8.829491631877877,-8.971903083848865,-9.277801538831135,-8.624521645475049,-9.825871670479847,-9.789470816143284,-8.484819632466028,-8.756624615004418,-9.238962955217211,-8.10453941795097,-9.787439499321893,-9.57388687150216,-8.623890190281989,-8.733847985849188,-8.642323072062926,-9.302010858292972,-9.05439586755512,-8.170584013934961,-9.495328259959072,-9.177891695401959,-8.900249670467002,-9.472468931995673,-9.887468829835587,-8.179979706165167,-8.511381125602146,-8.54670460708787,-9.428063714667502,-8.264209731653139,-8.97400820585328,-8.83441085140776,-9.256555296377723,-9.377181152503633,-9.487728460479751,-9.979100579515078,-9.845242092976841,-8.646050822470217,-9.638779791184945,-9.195281446359107,-9.69917384536703,-8.003729621040515,-8.72013126572902,-8.749770472881142,-9.265173403182878,-8.168877921502299,-8.255567775003398,-8.920458497320931,-9.364683036757322,-8.222406287454744,-9.04843610908093,-8.550598528026503,-8.554302103812198,-8.810682947822748,-9.036840844232694,-9.853346691723802,-9.363287919376898,-8.159395183102614,-9.224349514910967,-8.158026822725802,-9.00417440128319,-9.654136509368112,-9.27311588617038,-9.148475396807381,-8.611465186489111,-9.84308333979575,-9.614024189198915,-9.638105328117952,-8.135668953444725,-8.794098828315535,-8.393153321533818,-9.336841352388596,-8.448905437744044,-9.487566644732745,-8.627930662955404,-8.908418300095349,-8.350879015959034,-8.85702500919422,-8.098259296355558,-9.732770640766226,-8.17029025571387,-9.899901731606795,-8.758884284319219,-9.116266834576253,-8.373081235646316,-9.246842320686424,-8.742604762754505,-9.098259364337197,-9.062356973704153,-9.20658476655326,-8.146786056652553,-8.678181362200228,-9.28211713042059,-8.343842641494513,-8.123509393632663,-8.060346085644536,-9.825422808509652,-9.176367267710472,-8.171905722263787,-8.713704801574236,-8.109490868616364,-8.94486022196316,-8.223307711496206,-8.714480870484921,-9.024115775957295,-8.601476950772222,-8.314036324526008,-8.868190055338571,-8.059393328393545,-9.457316737877912,-9.667024610410424,-9.866205592144974,-9.293950528823569,-8.010089311019517,-9.893051854607155,-9.420148630123808,-8.042077146190634,-8.409557552063472,-8.64224222111194,-8.227147306756292,-8.129500749323311,-9.317817618840674,-9.66948578300245,-8.850536247003923,-8.387141253953695,-8.663230396219454,-8.965793598279921,-9.62342743078018,-9.060544275321439,-9.770422358702424,-9.867628802047482,-9.258379416105214,-9.163163530712952,-8.907800295695756,-9.495323804631992,-9.697901084081177,-9.368977876086948,-9.403704630979178,-8.41842956719772,-8.63302535541616,-8.574585565508528,-8.360004449597259,-8.444435448007741,-8.296208654454128,-8.898582341948295,-9.102260910898403,-9.557283542079883,-9.945787639854945,-8.85210530144592,-9.082039213828672,-8.52382809685102,-9.898016591194995,-8.063672186529374,-8.627454452159343,-9.966917465315076,-9.477429482546166,-9.536193918655929,-9.654993219927817,-8.36782260872117,-8.281178413926492,-8.49841303640753,-9.196466303218772,-9.45383066528285,-9.193484254814944,-9.89222082831046,-8.110839535696098,-9.720339055353213,-9.705190453691626,-8.3511261650807,-9.925441735036998,-9.917867046613562,-8.861721257932272,-8.879890241523961,-8.85059797961115,-8.9474380312274,-9.847874016999356,-8.560612975013031,-9.093774080748199,-9.097812805558164,-9.721343911938519,-9.342540278994063,-9.94950971628085,-9.627180680526289,-9.105751522319515,-9.752686566460008,-8.512643554407225,-9.839655081195728,-8.45494249635433,-8.474380746851608,-8.629445487406308,-8.916160516443322,-9.499542960163948,-9.993653965505272,-9.905534298832627,-8.945977260402138,-8.745765236781542,-9.349841462414192,-8.81059115758358,-8.400558170073964,-9.639956477498776,-9.813951490660768,-9.892215580290152,-8.817492153113053,-8.053019724115982,-8.551902598156111,-8.065464900264953,-8.598125970812044,-8.411577092970067,-9.732504877592875,-8.39042102509871,-9.665023723059218,-9.776579678556779,-8.671931257464665,-9.002879627322375,-8.529124348439428,-9.202841052073232,-9.000203743548369,-9.539437577221666,-9.52136262709953,-9.919581518493061,-9.694427779326388,-9.052088222912033,-8.133311675711308,-8.720670425213411,-8.49125423230089,-9.861521185508355,-8.177683987852669,-8.434690084374163,-8.332566985862181,-9.411429957610574,-8.935416499510644,-9.376455173623972,-8.382183230482603,-8.592299527061659,-8.322035581111395,-9.933483035533854,-8.370663322834552,-8.92862236604328,-9.706166643676168,-9.95719974396803,-9.411463406371691,-8.093625156717817,-9.536449945184833,-8.793877010480688,-9.768319476827836,-8.517372699097876,-8.594775079134825,-8.247154856845643,-9.831651415995847,-9.110254251885872,-9.473536372855028,-9.721028401769793,-9.906473609420232,-9.980336392518538,-9.293862153967739,-8.746203051848662,-8.732117576532517,-8.893587906803937,-8.148712347253795,-9.536732262694715,-9.708324925484364,-8.519262954937497,-8.597699725319174,-8.880212353597537,-8.22042887940265,-8.913285602776748,-9.588812627779594,-9.90316548042449,-8.017147297870942,-9.22581144902487,-9.79536786694863,-8.176720087458184,-8.275925943614599,-9.680907110014777]}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/real_component_scales.json b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/real_component_scales.json
new file mode 100644
index 000000000000..d02ae9cbbeb0
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/real_component_scales.json
@@ -0,0 +1 @@
+{"re1":[3.3749720506582127e19,8.989427901742491e19,8.246249366902271e19,9.471379967081733e19,6.091802438187358e19,3.4256891395371258e19,8.10822870878593e19,5.998468380385333e19,3.3902017266148065e19,9.906144147413914e19,7.72960351824704e19,4.949154947544432e19,1.0538899660098744e19,5.722916245724023e19,8.562848369845064e19,7.319083671033121e19,8.774540101729929e19,6.998617868551194e18,9.12265971287804e19,5.30319300660722e19,9.010812850338657e19,8.69862146425659e19,1.7506212865582338e19,1.7266231086012051e19,4.58120978900031e19,7.809036559102332e19,3.299339286217807e19,5.715121494343851e19,5.987521014273725e19,4.70734404336981e16,5.787691025482003e19,7.360124846235054e19,7.776638709182956e19,6.4445585888798106e19,6.575720287490383e19,4.735980195155663e19,6.391441036082048e19,8.500914972339752e19,6.3861469739536654e19,8.64934146967238e19,4.6068040570923617e18,7.226121059716683e19,5.445826573685931e19,8.403192374343113e19,9.980276777554559e19,5.161870204702971e19,6.372254974879704e19,5.567539857651384e19,5.914111109387553e19,5.058777102467616e18,2.3282797296728797e19,9.047961229046609e19,3.34933969376646e19,6.86412895184213e18,9.804247903447116e18,1.3559702577410716e19,1.419221491175715e18,4.14285565426875e19,7.538320306924423e19,3.067490372884074e19,8.982028257390644e19,9.812720449354836e19,2.5505234800942424e19,6.7174917775712215e19,6.894746551725809e19,3.5130020396526875e19,4.347770277384613e19,5.818694725373328e19,4.1294433923895394e19,5.988955905943844e19,1.5300552274028722e19,3.4404965430104584e19,7.497548033216704e19,9.07099469208603e19,6.3036477688946246e19,9.234683291202462e18,4.777367934655362e19,4.048641746309009e19,2.1149195793412124e18,4.6730564715004764e19,3.810764287803767e19,3.0431188115642495e19,9.472347668370578e19,9.848490425533646e19,6.9138800611723895e19,7.872891653274e19,7.889841503691884e19,2.5422496409531027e19,1.1786201997971958e19,8.738497575319192e19,6.660261932879704e19,6.467029979740403e19,5.953782724874659e19,2.403951038950436e18,2.0994632561405213e17,5.803312989309428e18,1.889559400517028e19,2.7736556874235142e19,1.2341956418995626e19,8.113669780410982e19,4.455562043418838e19,4.257946195197033e19,9.99691977435385e19,8.818087337277235e19,4.2681242658226135e19,3.817202941416702e19,8.283778436822707e19,3.838926222861518e19,4.682706435880828e19,6.27103703248592e19,2.3971543833403007e19,8.804989193584332e19,7.908147021176553e19,4.988009731140243e19,3.3548258297906885e19,5.883748411968605e19,9.798767384242197e19,2.4157522137663754e18,2.6053929620206772e19,8.714872905533927e19,3.365250009611196e19,3.607057874736419e18,2.190232505365052e19,5.082027344698419e19,9.94806816845406e19,3.237244455520233e19,1.5673731594207052e19,8.003137219871323e19,3.0400545248236655e19,2.7120010628132295e19,2.245301490643069e19,5.3074830267603214e19,4.255087801749049e19,7.1434514900596425e19,3.228031710245298e19,9.362228587441126e19,9.452007045798237e19,9.752369659955972e19,9.221698941171101e19,2.7129883470649553e19,4.689813897017153e19,8.08534584359683e19,5.132956976859731e19,8.174031200083359e19,6.278935150816706e19,6.514005631275189e19,3.792973567500389e19,7.752774388368237e19,7.72948097811245e19,8.24617168558091e19,1.7159662741825966e19,6.9834292928458965e19,9.613447339444678e19,3.940765941901572e19,4.461260245420246e19,7.561954304044315e19,6.741004512091202e19,4.342836456053719e19,8.390720215788608e19,3.383820497664047e18,2.3979608407882015e19,3.243670116563333e19,3.349919905625446e19,1.639345252251594e19,6.09090832230206e19,2.2797899345145446e19,4.544404374319788e19,4.959627407346818e19,4.0210302812680225e19,7.216936241808178e19,9.766358679312805e19,9.251943613614288e19,2.2551109936056857e19,4.590632536841694e19,4.118656173756701e19,9.150618589052084e19,7.818755418466982e19,6.638405860478603e19,5.496029695646915e19,7.998481235120991e19,5.20015476998263e19,8.949881848048042e19,9.9639795017887e19,9.757232692827262e19,9.425051523504964e19,1.1210093645080854e18,7.133776224587592e19,5.799353350965528e19,2.8534926444397814e18,9.115817286434166e19,6.950784403273208e19,8.004383428077825e19,8.082484450836957e18,6.720073098718885e19,4.9690844526163165e19,2.4033371259002778e19,4.374279863378396e19,4.649048859871357e19,8.00893292180528e19,5.792851954288296e19,3.74914061191918e19,3.0597282819851525e18,8.641189441444415e19,3.855782585044135e19,9.044852124454419e19,2.540134183264442e19,5.73084280330683e19,4.897178104717733e19,5.131397023973813e19,3.2803697374593544e19,2.2084475575507976e19,5.143366190821185e19,1.3108652993620851e17,6.047094870902731e19,2.553686871116161e19,5.735171991000031e19,6.107307354599081e19,3.738779554881685e19,3.6034845619515687e19,8.772714661536419e19,9.14170697189034e19,3.0760467201902408e19,6.856401015638053e19,2.1097173067970974e19,1.5258035505498501e19,8.001899658398114e19,5.485862791026001e19,9.616365470670209e19,8.35220616062707e19,4.4641849148845744e19,1.798468713292881e19,4.305001572463142e19,9.92516034602713e19,5.105957810435746e18,2.3215087270956368e19,3.276079370040059e19,3.421576568262594e19,1.6357468361304773e19,9.131768611877189e18,7.223367696760089e19,5.1216840903770145e19,8.66507797165572e19,5.126147226417125e19,2.9976376201292145e19,8.767564591054045e19,4.163294265199608e19,6.21277747217801e19,1.9762153526590476e19,7.702226557053549e19,9.476151632994132e19,5.363024619305953e19,8.486744229403858e19,9.234883737119777e19,7.191784729865726e19,8.8618336254036e19,7.966717455442164e19,8.618129888903622e19,6.485291919482139e19,5.097696114642626e19,8.198206713339753e19,4.301442704001391e19,7.067331332586868e18,5.941398693339489e19,3.956820866413823e19,1.049082923096909e19,2.5724316073095512e19,6.623250275256435e19,7.9604534608465e19,9.330669015986432e19,3.878687673638329e19,5.246227912559148e19,5.060799580904599e19,1.2700916621125046e19,7.409765014838708e19,1.2557181864081357e19,3.880130228174806e19,4.384932628345706e19,3.7622929578893025e19,7.980009741569963e19,4.476834745660907e18,4.964234064544509e19,2.495821828901871e19,4.900437147262453e19,4.975388438324189e19,9.17170930116917e19,5.561138801692965e19,9.536850428776304e19,5.715436781155883e19,8.773474131594104e19,2.898662441515365e18,9.628034345207126e19,8.203180576564883e19,9.089709884600948e19,3.1626077434411327e19,5.754082305306851e18,2.793892403022842e19,8.021986118476947e19,9.417966530002346e19,1.367387946847265e19,1.0309198348770843e19,1.1818008731883622e19,1.4778611949957466e19,1.84483048598901e19,7.0338502804439106e19,2.678878372451334e19,6.930131966039314e19,6.143016335794868e19,6.362809643230648e19,2.719294456075263e19,9.086616515341939e18,4.809779800747471e18,2.185846784762121e19,7.87179685573063e19,2.8301819765946035e18,7.49513259427807e19,7.0600160848302965e19,8.730490774042444e19,5.814731717998944e18,2.229449631918383e19,1.4372225564779639e19,1.473712985250183e19,7.517620113852912e19,6.6709195438393156e19,7.030343112697468e19,6.62886947904945e19,2.183496245344878e19,6.441060719032236e19,4.298717759193144e19,6.324633317146554e19,3.4001897823673246e19,9.651791258526651e19,2.3287582790809e19,4.50069789333009e19,8.900887963098979e19,4.770967781022362e18,6.9145449028675944e19,4.490237858759182e19,9.632295020481015e19,1.3539021320659827e19,4.408198215676679e19,5.137972368472744e19,1.4740779154938755e19,8.962210987884103e19,7.43655029659564e19,9.304897845286547e19,3.874901453952013e19,7.12997238040323e19,9.016235400102266e19,9.073403431122223e19,2.9537819436350652e19,2.656843943478836e19,1.7440089151288519e19,8.428012669804821e19,5.193700127760977e19,2.5620680257564664e19,7.651851654749202e19,8.408315802598138e19,9.904184750876633e18,5.237438362464511e19,9.477105220264732e19,9.549347729638338e19,3.5800617396138988e19,4.008386416395741e19,8.881314161316468e19,3.078950800687934e19,6.210201089808779e19,6.685718078625398e19,5.790723068801013e19,6.09622147706168e19,1.1822964574761318e19,9.201206092253925e19,1.74363453084715e19,1.2202280269995137e19,7.475461563800758e19,2.9840099908125573e19,5.510551437528743e19,7.636580276071685e19,3.606902067602965e19,8.047623106489026e19,7.786004867223501e19,1.3795736209648046e19,2.1165678073368134e19,8.598560436089463e19,8.005173819336404e19,4.07178980714869e19,8.645767225831999e19,6.312380884832544e19,9.212426993559993e19,1.9320624614479487e19,4.3291088700275474e19,9.206310740929335e18,1.0299296131703351e19,8.47936551739554e19,4.775913581802371e18,4.448954120998572e19,6.2739344781559005e19,3.7212187159122447e18,1.5603660659135498e19,2.0317879170322784e19,2.927363081979726e19,6.7945963929965404e19,1.8041003260001987e19,1.4649362991860615e19,1.5225498545678006e18,1.0992971369116156e19,1.6127260829712276e18,3.0840587480037487e19,8.832318114936398e19,7.370540163826033e19,2.731160325747828e19,2.6268311352750805e19,2.4067636887221465e19,1.683702028567845e19,4.645983120066193e19,3.1671056779769213e19,4.322676392887299e19,9.885733226133665e19,7.266227663188689e19,9.755017742846054e19,6.431579941258414e19,4.5880381548025864e19,7.680129698320094e19,3.716607614045356e19,2.6344818379480996e18,2.826147598107409e19,8.248917610464377e19,7.927021596910207e19,7.312219130272477e19,3.0380891061765624e19,5.183915736542285e19,6.514870281808403e19,8.2117296924358e19,6.350492563008855e19,1.4317125646169815e19,5.504687861700722e19,3.579646861953161e19,6.3910408820403765e19,5.507573507185194e19,6.329881891474246e19,8.219050652437743e19,4.865887460771009e19,3.4621445439758316e19,2.486436585441909e18,2.1120720498163614e19,6.736643081612905e19,3.1009617694597767e19,2.861755582358357e19,5.0735073772808946e19,8.98261947839137e19,7.103882328126987e18,3.911510057610899e19,3.732719642918564e19,3.5869083057741713e19,7.605442601007689e19,8.84714479906121e19,3.2187944614132146e19,3.1416508697735946e19,7.352827370477919e19,4.773862080219585e19,1.3304754883747293e19,4.713987568022145e19,4.57511660928117e19,8.580456577912784e19,3.729354727308858e19,2.956666220336317e19,8.246587571953713e19,6.983185819514015e19,3.978691368551723e19,5.179349075878602e19,6.1387812352045605e19,7.365907439825591e19,6.808392191510451e19,3.50513450450881e19,1.4709117692884066e19,1.4505394038826303e19,4.654188454615117e19,5.067992202320762e19,4.6477954274109415e19,6.404854180899895e19,4.959857179648224e19,2.6993913983961625e19,2.5859318902221597e17,1.8202126390466222e19,4.161109563195486e19,3.723723333793085e19,6.436186884453002e19,4.662713201196789e19,8.869753310777883e19,3.1382053796952027e19,6.270584292240308e19,5.488540796507226e19,2.7254149899383615e19,4.428947680278962e19,6.276137997455655e18,2.1366347153140064e19,4.558236921733168e19,6.1371020627550724e19,4.56778106637381e19,2.299616154941021e19,7.675022952006379e19],"im1":[-8.07894158084508,-9.732080808917917,-8.12485658477671,-9.860548250372664,-8.178234797219432,-9.997007209333265,-9.672390078771755,-8.762889220806361,-9.246505473469892,-9.90251650270158,-8.65411659298042,-9.23894889957664,-9.607493576723655,-9.402687506747007,-8.592931414879892,-8.776923763929814,-8.996515800420028,-8.23637605349852,-8.07775760720313,-9.964604823197416,-9.175154299444063,-9.485880407989098,-9.825690151638138,-8.77616348835063,-8.621260250571575,-8.845148031864326,-9.847050765361637,-8.764341287561017,-9.992183527729896,-8.53172250172199,-8.390006727509832,-9.02785041293994,-8.370868111566026,-9.395334222919917,-8.110414326063367,-8.783296371436432,-8.768263763858679,-9.744309535846863,-9.06918637939294,-9.609268404924924,-9.52141361807664,-9.511577167941592,-8.756762103411159,-9.272156798526302,-9.550364624465304,-9.517157370077626,-8.271524164252959,-9.43920635301441,-8.336152947169944,-8.547185868448599,-9.508522987549828,-8.495470793258354,-8.335719666605765,-9.778176090124015,-9.267953821866543,-9.7411999124405,-9.96513750409111,-8.871015153595549,-8.32480741176625,-9.566620928358166,-9.698940335375188,-8.34223802046502,-8.71391406928138,-9.342551756784014,-9.674792349931904,-9.213802129977234,-8.833689837014212,-9.717293320524167,-9.486306510835046,-8.280305900603414,-9.329908334869996,-8.65929909379174,-8.671137543961484,-8.486376998629783,-8.155375183872728,-8.520928119994416,-9.328704136828442,-9.813015246350487,-8.52432586406451,-9.340081488512306,-9.952948420741645,-8.665421860819242,-8.219441370164747,-8.894626950337855,-8.30801153160776,-9.735811330252488,-9.770654262897008,-9.8072422303664,-8.381217366452084,-8.731277288200845,-8.19510645380277,-9.574171049303255,-8.876749948735732,-8.677918631780328,-9.360767386831983,-8.542831302943357,-9.217495687623718,-8.337168688464732,-9.990413416641648,-8.405342784022796,-8.592814539847465,-9.022956815131508,-9.308794199272352,-8.911797263971877,-8.449997674902479,-9.20029066970869,-9.767840111966443,-9.90849221708076,-8.31850254199312,-9.719253636624755,-9.218177136684258,-9.836340938333773,-9.805463285595277,-9.404282823173311,-8.011216091746421,-8.459000197860982,-9.716927262185923,-9.161371131340584,-8.90798030423204,-9.67414164544743,-8.210160998107764,-8.947336225491656,-8.62969344879353,-8.80353793120353,-8.393261860835212,-8.981708092344338,-8.239583025352497,-8.796060234682374,-9.285854747215836,-9.447569760079134,-8.620104763685966,-9.790239760216581,-8.621040323312611,-9.4925289358904,-8.782394544736233,-8.43980884312108,-9.469570635161393,-9.195211917922606,-9.606495010495452,-8.271949932564928,-8.639510003792997,-9.75350773832788,-9.5310221541857,-8.74240022090925,-9.205487409135149,-8.534033000421989,-9.844698683751464,-8.854791363566731,-8.876319685509975,-8.958762629405319,-9.85043004422757,-8.072096464111905,-9.140623676474739,-8.190368891018604,-9.087312979551387,-9.716819485379737,-8.279894328449098,-9.815658950943524,-9.849051090064236,-9.778827588295277,-9.673326815837608,-9.198001898998093,-8.05693818127276,-9.359123217043964,-9.891982166980203,-8.831601037827895,-8.324560520452529,-8.484638955142694,-8.610602938583739,-9.968955937014684,-8.258614980724639,-8.670975829067611,-9.140096115557844,-8.222869197240923,-8.302556443448415,-8.69116272089218,-9.078919355207757,-9.89070151608415,-9.12195548896922,-9.409907187066349,-8.833927699954565,-8.801435072713527,-9.567331399064662,-8.358386754255028,-8.349024305593732,-9.005759969078017,-9.222162488504221,-8.09033833650805,-9.756531159586999,-8.590891680593767,-8.636356758493646,-9.370166225610996,-8.183500354258335,-9.885020523636014,-9.453192612114714,-9.00310967118087,-8.691626944730233,-9.819315305319927,-8.244105602045071,-8.01391053197258,-8.239465100795446,-9.833887464675257,-8.41209337030199,-9.527498015303385,-8.348838561086064,-8.818831314620734,-8.005443872228803,-8.68354621919869,-9.263326170677692,-8.070868882011668,-8.167202485687937,-9.70926714728277,-8.04421029760577,-9.627786769323727,-9.525608038432665,-9.278059738455344,-9.546744209776868,-9.205417083012268,-8.973070669358789,-9.725597257994657,-8.723358258000816,-8.415266410066778,-8.39791140829675,-8.74496814058127,-9.57866167042015,-9.846970791823074,-8.889904499360748,-9.522779580394651,-9.810953384921458,-8.33343526659851,-9.382772084421998,-8.664189242325516,-8.87872010691733,-8.458910689782922,-9.468150386770391,-8.26066064435656,-8.583015144133851,-9.250316083582094,-8.55411934647975,-9.319503663954773,-9.723609597300607,-9.384876372482834,-9.990693143462172,-9.2068314800302,-9.33414837610509,-8.354428063812337,-9.877982381340711,-9.543870153906008,-8.802894966390557,-8.319883157438294,-8.040768096142024,-9.167740482165074,-9.933392149294509,-9.081997186095816,-8.208521690979083,-9.803996459062056,-8.261059566885997,-9.727243403854038,-8.67165593129676,-9.29811840842014,-9.84688193651669,-9.70667536780571,-8.984808423888426,-8.851020271098358,-9.709652367006818,-9.962075789325434,-8.014650588465043,-8.074220569028391,-9.636123550998171,-9.487240544459434,-8.482144180936105,-9.881169951977215,-8.192843127289265,-9.196308434737155,-8.191142942191195,-8.880739915597513,-8.611204124226548,-9.448249978484604,-8.163154996169814,-9.515297511532447,-8.199148599694748,-9.888374679035188,-9.687221479956753,-9.080033947569362,-8.33416677951925,-8.129897010932238,-8.411665615102862,-8.107089730135291,-9.25007738607797,-9.79542866621491,-8.48268178102821,-8.30709167181512,-8.226598909931297,-9.219684345970466,-8.92415242842683,-8.216719469156372,-8.720831306896047,-9.475867391566727,-9.657310511669001,-9.622808517549323,-8.09069371223106,-8.499006021624217,-9.3866127495,-8.852845991313972,-8.598608911265545,-9.54187101862484,-9.945555431488842,-8.032917337872906,-9.843845611693228,-8.50575398030922,-9.684683401252144,-9.723507077176425,-8.383862249158879,-9.410420380947356,-9.173697815861384,-9.906115825576777,-9.994281393892871,-8.846735290789796,-9.908267459634809,-8.945601348094351,-8.09561485878752,-9.300796246063044,-9.595675909030058,-9.379668399369562,-9.013999312234562,-9.476580128541634,-9.74780826147568,-9.173906167924365,-8.985013023049843,-9.788997340651221,-8.350980796766171,-8.776061150238249,-9.452582423650703,-8.944898032759834,-8.48648509342403,-8.174988065664666,-8.034513431825726,-8.565235826346862,-8.439218875577307,-9.564481641034305,-8.341084009610183,-8.57978857145637,-8.11952780557773,-9.06285448021875,-8.281712083592966,-8.581517129273717,-9.201955904935144,-8.384700280665427,-9.653654057397752,-9.038844216730517,-9.759370712714828,-9.204211501784084,-9.974333785403026,-9.162408026024309,-9.926324212758562,-9.449676463196656,-8.499279691219028,-9.971880577987365,-9.77925346572642,-9.199245359781393,-9.074586510601804,-8.032101823890631,-8.304606345606985,-8.708640402724782,-9.055473254046593,-9.56164184926865,-8.981586856727834,-8.53259578143774,-9.59499467652695,-9.97115997764101,-9.193686627130669,-9.612090303990046,-8.993548771035423,-8.808378995991625,-8.362586852207968,-8.790225013214751,-8.65542904466129,-9.034843282438864,-8.989765037855976,-9.073890404782558,-9.796342565025546,-9.775608403693242,-9.520369048289403,-8.623359741491724,-9.035771590061348,-8.43681578551756,-8.005029965604674,-9.322543634927552,-9.332692155319096,-9.829746613240214,-9.844151239160631,-8.739120564614147,-8.445975571970553,-9.74866188547319,-8.379677577966063,-9.027798735661118,-9.057738240232297,-8.521163007380329,-8.675881458650016,-8.062156867897174,-9.349046725403596,-9.664429946667294,-8.561805349260558,-9.565295263968363,-8.240831241122855,-9.687438844094503,-9.66377928022072,-9.770807484911476,-9.310074840563509,-8.7264296200657,-9.005395045652405,-9.840024317840268,-9.472692036330097,-8.405170707261233,-9.62429658290279,-9.28520144217827,-9.054244684030142,-8.372706278320805,-9.855950054340697,-8.547319530537667,-9.096265439839355,-9.04894214545571,-8.735682422443038,-8.797743579098206,-8.496798466308114,-9.84877026601554,-8.697141667362517,-8.25757374347885,-9.531122130430019,-9.086119270668762,-8.202016323172082,-8.529854681027974,-9.571148546852823,-9.09300085375072,-8.351126240870162,-8.630143118786924,-8.580075410229531,-9.143151663185254,-9.988111978278555,-9.645676845751908,-9.359282622866814,-9.485183846859425,-8.79512115050439,-9.559230170729542,-8.095690405564456,-8.226030080325586,-8.723134516160759,-9.70979113163748,-8.5382077078917,-9.129346488415687,-8.057298814549133,-9.163551884815105,-9.797198296030224,-8.218141216609189,-9.176632926963764,-8.004665384880788,-8.446012543063349,-9.7743787061036,-9.908061219339663,-9.17262462621532,-8.555283555246735,-8.889132074676771,-9.767482052289328,-9.985525163636906,-9.729611472013394,-9.07764925302242,-8.565915771281068,-8.404401321177861,-8.817011013195739,-9.497043688993129,-8.390000134597045,-8.099709250498604,-9.29869152290053,-8.796794336896568,-9.325161739031735,-9.76982689473313,-9.222040157380883,-8.242529173871526,-8.065547372513707,-8.288258326960143,-8.85846411417566,-9.570660177701681,-9.908833995226223,-8.829584808572347,-9.603011658870575,-9.642137635837328,-8.62336321694701,-8.92465016290402,-8.4486543271959,-8.22055752449345,-9.891354529955716,-8.19913458902441,-9.09504695374478,-8.487148759311413,-8.303643258658932,-8.423384589603693,-8.671031351264393,-8.252536872357746,-8.410082576531538,-9.776920630912084],"qim":[3.39156e18,9.97369e18,8.7945883e18,1.1627886e19,6.450476e18,3.8942184e18,9.730614e18,6.836633e18,3.565392e18,1.13106e19,8.406707e18,4.969372e18,1.07464624e18,6.214897e18,9.467665e18,8.415347e18,9.596448e18,7.234502e17,1.0397663e19,5.664978e18,1.1255396e19,1.0336099e19,1.752838e18,2.0398913e18,4.96848e18,9.370449e18,3.431909e18,6.3748145e18,7.3081234e18,4.7377494e15,6.6656326e18,7.499764e18,8.053015e18,7.4345947e18,7.1124285e18,5.02915e18,6.949746e18,8.8618306e18,7.442994e18,9.591729e18,5.190875e17,7.843784e18,5.729961e18,8.852923e18,9.986077e18,5.1642186e18,6.450675e18,6.2928e18,6.313938e18,5.169156e17,2.3658566e18,9.556498e18,3.77351e18,8.041482e17,1.080322e18,1.3820381e18,1.6056407e17,4.594246e18,9.38575e18,3.681911e18,9.615628e18,1.1261753e19,2.7237058e18,7.184767e18,6.9250755e18,4.0008773e18,5.347526e18,7.0291646e18,4.677903e18,5.996866e18,1.7084896e18,3.4830585e18,8.846022e18,1.0495504e19,7.109747e18,9.50763e17,5.232524e18,4.2928546e18,2.312915e17,5.2783573e18,4.712094e18,3.4263806e18,1.1212314e19,9.870414e18,8.2047564e18,9.213032e18,8.7693925e18,2.8929723e18,1.4231305e18,1.0196605e19,7.3064296e18,6.836572e18,6.127579e18,2.6464647e17,2.5713842e16,5.934539e17,1.9203889e18,3.032313e18,1.3154285e18,9.811561e18,4.7539155e18,4.49045e18,1.0320155e19,1.0595851e19,5.320516e18,4.7680734e18,8.500651e18,4.19784e18,4.847482e18,7.505101e18,2.9224807e18,9.877017e18,8.241e18,6.078327e18,3.8602196e18,6.652779e18,1.101262e19,2.5164729e17,2.727167e18,9.441395e18,3.718081e18,4.3072753e17,2.5839615e18,5.180939e18,1.2323867e19,3.5204202e18,1.5982895e18,8.147004e18,3.7486813e18,3.1914532e18,2.6659427e18,6.4214123e18,4.6179835e18,8.1085387e18,3.4430748e18,9.434802e18,9.641615e18,9.764924e18,1.0473979e19,3.228589e18,5.2300134e18,9.527874e18,5.3802177e18,8.7490955e18,6.551763e18,6.779834e18,4.262858e18,9.481233e18,8.887565e18,8.9927456e18,1.9766396e18,8.5417864e18,9.733423e18,4.4001983e18,4.9053057e18,9.294928e18,8.1140016e18,4.4707803e18,8.630607e18,3.568091e17,2.4335925e18,3.994216e18,3.6422983e18,1.9521847e18,6.2208576e18,2.7390363e18,5.0162827e18,5.775033e18,4.8580486e18,8.8254967e18,1.0087519e19,1.075208e19,2.3528642e18,4.7241644e18,4.612817e18,9.550693e18,9.529615e18,7.0067505e18,6.3046514e18,8.827426e18,5.7453936e18,9.873835e18,1.1051771e19,1.0451992e19,1.0695786e19,1.2037294e17,7.960013e18,6.5415455e18,3.3106762e17,1.1379703e19,8.653725e18,9.245537e18,9.439637e17,7.8922213e18,5.2397177e18,2.567951e18,4.4769293e18,4.808821e18,8.0736386e18,6.511681e18,4.5736962e18,3.3783766e17,9.248143e18,4.530157e18,9.412658e18,2.9647166e18,5.8286513e18,5.082875e18,5.471707e18,3.7710703e18,2.32353e18,5.191103e18,1.4483027e16,6.4536517e18,2.7168377e18,6.5341546e18,7.2471236e18,4.1615504e18,3.975165e18,1.0238318e19,1.0390168e19,3.8280108e18,7.0801375e18,2.165331e18,1.6249597e18,8.058325e18,5.9341874e18,1.1263504e19,8.673428e18,5.2151387e18,2.1459676e18,4.333396e18,1.0808785e19,5.826003e17,2.3876065e18,3.5861218e18,3.839138e18,1.6891023e18,1.07247855e18,7.5565536e18,6.0532903e18,9.464096e18,5.582111e18,3.5341726e18,9.0991316e18,5.088563e18,6.902464e18,2.2366619e18,8.246263e18,1.1438736e19,5.874655e18,1.0468924e19,1.046513e19,7.9105073e18,1.0897199e19,9.888325e18,8.8862134e18,7.142469e18,5.2529146e18,8.8416364e18,5.3523484e18,8.1456206e17,6.3462734e18,4.2525797e18,1.161157e18,2.9442557e18,7.281195e18,8.51541e18,9.517495e18,3.8911098e18,5.8582947e18,5.7823503e18,1.3143787e18,7.51531e18,1.4837749e18,4.82349e18,4.4353167e18,4.0923812e18,9.850779e18,4.6348793e17,5.7043653e18,2.9524136e18,5.7480434e18,5.8956055e18,1.1220139e19,5.919985e18,1.1082237e19,5.960221e18,9.1849655e18,3.4289407e17,1.1670833e19,9.238303e18,1.0148736e19,3.3476306e18,6.114558e17,2.9447714e18,9.881926e18,1.1204546e19,1.4222124e18,1.0684752e18,1.3629066e18,1.7144095e18,2.0730188e18,8.369688e18,2.885868e18,8.5530344e18,6.5869015e18,7.274515e18,2.9148974e18,9.5111364e17,5.2689003e17,2.6815445e18,9.262501e18,3.3305527e17,8.4068093e18,8.231587e18,9.937362e18,7.0810205e17,2.5837913e18,1.6223863e18,1.7490445e18,8.017508e18,7.4473837e18,7.743747e18,6.869888e18,2.5351492e18,7.239617e18,4.3213787e18,6.754281e18,3.9484004e18,9.73827e18,2.4563565e18,4.614504e18,1.0087513e19,5.6359595e17,7.0551664e18,5.555298e18,1.059429e19,1.4744825e18,4.451076e18,6.027544e18,1.6753602e18,9.1193203e18,9.0297277e18,1.0711099e19,3.8858354e18,8.7563303e18,9.436482e18,1.1239028e19,3.4125812e18,3.2212892e18,2.049804e18,9.498136e18,5.270399e18,2.972762e18,8.162622e18,1.0401802e19,1.1914067e18,5.529194e18,9.82145e18,1.0710044e19,4.0450912e18,4.4869822e18,9.123584e18,3.1255897e18,6.9005113e18,7.491935e18,6.8152404e18,6.1028613e18,1.207493e18,1.1399505e19,1.9648326e18,1.4645396e18,8.759291e18,3.6494896e18,5.688039e18,7.983959e18,3.7685145e18,8.829053e18,9.447561e18,1.5450278e18,2.3570786e18,9.403098e18,8.0437494e18,4.8301997e18,1.0686035e19,6.362992e18,1.114765e19,2.0005826e18,4.5638545e18,9.663599e17,1.2265312e18,1.016387e19,5.3835752e17,4.714386e18,6.531957e18,4.3012252e17,1.6433906e18,2.180702e18,3.3143497e18,7.3321554e18,2.0584536e18,1.7253115e18,1.5781486e17,1.1911643e18,1.9127161e17,3.3378996e18,9.778913e18,7.6073896e18,3.22039e18,3.1405975e18,2.4493854e18,2.0900553e18,5.389298e18,3.388442e18,4.6140494e18,1.0124321e19,8.026075e18,9.959515e18,7.369625e18,4.681955e18,8.7650406e18,3.971143e18,3.1569903e17,3.466101e18,9.416396e18,8.422991e18,8.7329173e18,3.516552e18,6.414187e18,7.902764e18,9.1903284e18,7.765908e18,1.5628071e18,6.146711e18,4.336171e18,7.444275e18,5.789925e18,6.446165e18,9.706326e18,5.4175467e18,3.954178e18,3.0048725e17,2.1260153e18,8.339589e18,3.481692e18,3.081986e18,5.779928e18,1.0970903e19,8.306611e17,4.0693582e18,4.6284475e18,4.073031e18,7.7345937e18,9.97921e18,3.8082638e18,3.1668348e18,7.979368e18,4.904346e18,1.4161821e18,5.233672e18,5.597926e18,1.0127373e19,4.0496272e18,3.4070122e18,8.4340986e18,8.20082e18,4.6070007e18,5.308457e18,6.3085766e18,7.64649e18,7.734951e18,3.9711279e18,1.5545793e18,1.5427556e18,5.1981694e18,5.5447475e18,5.654526e18,7.9705033e18,5.7371186e18,2.8118344e18,2.7605357e16,2.1368269e18,4.43259e18,4.008897e18,6.914995e18,5.524397e18,8.8921986e18,3.3794268e18,7.439738e18,5.6465936e18,2.8855998e18,4.8801015e18,7.832348e17,2.4983884e18,5.3911243e18,7.6018057e18,4.74659e18,2.364161e18,8.03483e18],"qre":[1.7288086e6,6.011368e7,2.0104426e7,1.0436374e8,1.6906814e7,1.8930738e7,7.910273e7,7.738414e6,1.2003452e7,1.1415241e8,8.599821e7,2.118471e7,8.434923e6,5.383899e7,3.7790676e7,1.3037131e7,263338.66,4.908826e6,5.6981452e7,3.5658856e7,8.125997e7,4.887544e7,4.451511e6,1.8992418e7,8.87872e6,4.4925588e7,8.3208515e6,4.355174e7,7.270916e7,28683.055,3.3563596e7,5.7138464e7,3.727412e7,5.855337e7,1.96647e7,3.0203262e7,1.0801806e6,1.2173211e7,7.261636e7,5.279428e7,289449.47,1.5056503e7,5.1642916e7,2.2115676e7,8.23709e7,3.6426044e7,2.1632034e7,4.0106004e7,7.702111e6,3.7660358e6,3.9295265e6,8.608649e7,1.1007634e7,3.579324e6,4.0033812e6,2.1614345e6,1.5285182e6,9.052182e6,3.9259156e7,2.714449e7,6.5232196e7,1.2379504e8,1.6245409e7,2.9670648e7,3.865133e7,5.7574015e6,5.4031052e7,5.539177e7,4.9945932e7,2.6807126e7,1.7914096e7,2.8528376e7,2.137667e7,2.4478586e7,4.847294e7,5.7163575e6,2.477315e7,2.8779366e7,1.3999092e6,2.5847538e7,6.3600095e6,2.2914846e7,7.659803e7,2.4659452e7,4.886721e7,1.0643376e8,7.226426e7,2.2395825e6,3.6024192e6,1.1163636e8,2.656184e7,3.1260424e7,1.3463422e7,357419.06,164018.8,169652.73,1.332767e7,2.5293372e7,1.1281155e7,7.4124e7,2.2117986e7,1.117054e7,3.6507748e7,1.1450518e8,4.6301972e7,2.5083768e7,4.1317035e6,4.0926316e7,8.0685365e6,3.4526404e7,1.5379029e7,4.0374748e7,3.1730948e7,7.8461685e6,3.992594e7,1.9258356e7,9.599181e7,1.7968996e6,1.9435788e7,6.351812e7,3.7094184e7,393755.78,2.765114e7,2.7314466e7,1.6187676e7,2.250771e7,1.3875731e7,5.8362172e7,3.8829476e7,6.375034e6,1.726423e6,5.6884036e7,3.3295722e6,3.1868426e7,105359.836,5.8110356e7,2.4139626e7,1.3467804e7,6.941266e7,2.9353746e7,5.4405668e7,6.676752e7,4.0815416e7,7.5427945e6,5.894845e7,5.0687484e7,2.3735364e7,1.0822957e8,7.614258e7,2.8458166e7,1.8393974e7,2.2903804e7,3.534621e7,3.7997416e7,3.5380096e7,1.2012057e7,6.7688915e6,2.5179818e7,5.919605e7,2.8768155e6,1.8449576e7,3.593927e7,2.5740655e6,5.457284e6,1.5916518e7,2.9956888e7,4.445697e7,2.545258e7,3.3937468e7,4.6625185e6,2.187724e7,5.5244572e7,4.15129e6,6.6898575e6,685233.4,3.903428e7,3.6943468e7,2.8644704e7,6.407011e7,5.635249e7,3.337912e7,7.424498e7,2.1226438e7,4.0360096e7,3.838634e7,394139.47,5.934041e7,8.3770655e6,519795.53,1.2575782e8,1.0496721e8,3.1522992e7,325774.72,7.9118104e7,1.0598518e7,8.2790175e6,3.3181496e7,3.7589948e7,4.106885e6,6.158276e7,4.541287e7,900296.6,3.871696e7,5.2075356e7,3.0719886e7,1.2036172e7,2.6010122e7,2.586712e7,2.7001508e7,8.632874e6,1.0778055e7,1.2610202e7,30128.201,6.751435e7,1.8754665e6,3.5084884e7,2.1464314e7,885720.7,1.5316102e6,3.1884032e7,2.0638244e7,2.0252206e7,4.051167e7,1.6621362e7,1.7249856e7,5.3471944e7,1.9788398e7,7.882536e7,3.769301e7,1.5189348e7,1.0969797e7,1.196496e7,2.9672794e7,5.06077e6,1.920646e7,2.3689124e7,2.4053584e7,6.516306e6,2.9383625e6,5.9051356e7,1.7215532e7,1.4070681e7,3.4374724e7,1.8245726e7,3.8862724e7,5.485166e7,5.8883468e7,1.9173924e7,3.4310132e7,2.003978e7,2.4051426e7,1.2209922e8,1.131479e8,3.6947344e7,4.134458e7,1.1382766e8,7.647064e7,5.232013e7,1.745826e7,6.4331464e7,5.0916684e7,8.895472e6,2.2615524e7,3.1552832e7,1.0849763e7,2.2549822e7,6.006803e7,1.1570865e7,3.737282e6,1.4824675e7,4.0577932e7,1.3189096e7,4.62673e6,5.6206636e7,6.194342e6,2.7670198e7,4.4762964e7,5.88996e6,7.316336e7,2.9172368e6,6.0422096e7,1.1273009e7,4.8140456e7,6.5515956e7,5.3845788e7,1.8293016e7,319054.0,4.7140684e7,9.16948e7,932450.56,3.5617162e6,5.1991444e7,7.4691864e7,7.3062935e6,5.960901e6,7.471145e6,5.7223172e7,5.7947852e7,1.0937872e7,7.734029e6,461528.16,8.591651e6,1.623552e7,3.2011116e7,1.1061632e7,4.898815e7,1.7270446e6,2.968244e7,1.5461727e7,4.5988265e6,2.2946575e6,1.2129352e6,4.233562e7,212984.81,1.703114e7,5.244161e6,5.8865856e7,3.411439e6,8.0072345e6,6.3859295e6,1.3710497e7,6.7628824e7,1.0306722e7,5.8043636e7,4.4491252e7,8.594192e6,3.842786e7,2.6402642e7,5.5697544e7,1.9826936e7,7.117719e7,6.801628e6,4.5836412e7,6.7002764e7,1.0514315e6,5.688722e7,1.8563834e7,6.959386e7,1.6120236e6,3.1849926e7,4.297888e7,1.8601998e7,1.4050507e7,9.348496e7,2.8306972e7,2.4231368e7,1.022599e8,515436.38,3.2890176e7,2.804949e7,2.7537876e7,1.5068805e7,5.911285e7,2.8238304e7,5.05033e6,4.522884e7,9.985455e6,5.342282e6,5.151669e7,8.3616744e7,959063.5,4.605595e6,4.493284e7,8.8715864e7,2.9795282e7,3.6318748e7,2.149995e7,5.3002956e7,3.089025e7,43454.188,1.212228e8,1.5554722e7,1.1750533e7,9.786418e7,6.6225315e6,5.5341096e7,7.108609e7,1.2173028e7,4.3541896e7,9.287326e7,1.6312248e7,1.726472e7,7.4930824e7,2.6009392e7,8.983124e6,2.5180642e7,5.1695296e7,1.2434532e8,1.0223926e7,2.393123e7,9.817741e6,8.2025175e6,2.868391e7,900425.7,1.3290381e6,6.2961356e7,1.623218e6,6.2980925e6,286511.3,3.1528606e7,2.7576072e7,6.874331e6,8.868295e6,1.6122299e6,1.7977795e6,266813.1,2.560018e6,3.2348798e7,1.229319e7,1.9817558e7,1.4830905e7,1.3744183e7,7.7845065e6,3.4517644e7,1.269357e7,4.1216272e6,1.5429189e7,1.5467226e7,1.00218984e8,5.3489216e7,1.5611916e7,9.956939e7,1.7053074e6,1.7518855e6,8.575773e6,9.2222856e7,3.263246e7,1.03264024e8,1.5501244e7,3.8209644e7,4.8669684e7,6.043766e7,3.2348834e7,6.3902305e6,6.097268e7,4.5960056e7,5.0261252e7,209420.72,3.1098208e7,9.208314e7,4.356769e6,721458.75,2.9517012e6,1.4070905e7,9.157834e7,1.2180922e6,2.2614006e7,5.789027e7,5.9951595e6,79268.85,4.2288064e7,2.0951046e7,1.5492766e7,7.299951e7,1.1514922e6,3.8166556e7,1.3725489e7,4.9434884e7,1.4003865e7,3.4124245e6,5.7223932e7,4.982276e7,5.6930924e7,3.582791e7,3.8414016e7,2.8350842e7,3.029185e6,4.1130424e7,5.123305e7,3.4693388e7,1.958926e7,7.752377e7,2.4074024e7,8.210598e6,8.810287e6,5.3688224e7,4.230663e7,5.6587588e7,7.768892e7,2.572543e7,2.403747e7,234469.27,2.3982798e7,1.3779412e7,2.885295e7,3.405796e7,7.1265825e6,3.2545446e7,1.6797834e7,7.5799304e7,7.33928e6,3.3060315e6,1.973344e6,1.413641e6,2.1502648e7,4.631055e6,6.522201e7,2.450447e7,2.3761084e7,2.275198e7],"re2":[5.07245178004212e-12,5.432423999551568e-11,2.1434684682273966e-11,7.31074043461214e-11,2.4752784891865154e-11,4.2763665186245394e-11,6.773871066280152e-11,9.931338138918877e-12,3.201231202470835e-11,8.839311461570577e-11,9.405779554089397e-11,4.245712315010016e-11,7.697421202159583e-11,7.977125453337609e-11,3.610082337048565e-11,1.3473941780956256e-11,2.5090898166892917e-13,6.564059849055667e-11,4.808211007500817e-11,5.892618686666063e-11,5.7798833802765584e-11,3.9794933917342017e-11,2.5363896952681153e-11,7.880680474501462e-11,1.6477203495942862e-11,3.9954934358352555e-11,2.330897480166876e-11,6.124856114246317e-11,8.151253694479899e-11,6.015117308512203e-11,4.372109871819462e-11,7.476847677109199e-11,4.4697401771771994e-11,6.827008503719954e-11,2.556199750682037e-11,5.6555450474598457e-11,1.4294104730884328e-12,1.317722249872747e-11,8.371013867263301e-11,4.9633636809497985e-11,4.948684412741145e-12,1.7683899174198336e-11,8.565866090544968e-11,2.371216000090547e-11,8.243783440370256e-11,7.05033645938748e-11,3.3126851061934215e-11,5.6387760602897463e-11,1.1426114878860328e-11,7.130018157550638e-11,1.6345510695481326e-11,8.528805556801934e-11,2.5891795591927415e-11,3.799392854647865e-11,3.363060955337403e-11,1.5344473601425878e-11,8.414411429878244e-11,1.7767425936024818e-11,3.359522025603152e-11,6.142120304031925e-11,6.33696203660048e-11,9.578127595854174e-11,5.585210280138363e-11,3.8610794983262036e-11,5.5569143103663145e-11,1.263555690785877e-11,8.214936522646159e-11,6.523239992287341e-11,9.425168810586129e-11,4.464292217067671e-11,9.390252929744548e-11,8.090523725941406e-11,2.048157079148816e-11,2.01574042227467e-11,6.04481513713698e-11,5.839783500840186e-11,4.322623989957094e-11,6.322636157161966e-11,5.534445325385934e-11,4.335334575604807e-11,1.0915455262565154e-11,5.939701776324409e-11,5.771447301910462e-11,2.4927709084562377e-11,5.018893171169814e-11,9.872076231271935e-11,7.414003161914042e-11,6.802938574060036e-12,2.0964212903602365e-11,9.38277411134398e-11,3.313897466225901e-11,4.325366654750364e-11,2.1348657576340247e-11,1.2267891182268609e-11,5.207927331662013e-11,2.7955071496696517e-12,6.828674525655554e-11,7.629767296403755e-11,8.046425870828105e-11,6.247409293763461e-11,4.360588180969466e-11,2.3588189509267468e-11,3.426721545820002e-11,8.993482779451297e-11,6.981183168586106e-11,4.211648307597531e-11,4.736452445488848e-12,8.915808013265693e-11,1.6079010423104536e-11,3.8439489906623246e-11,4.3163987979540745e-11,3.644072835570832e-11,3.6948592264381096e-11,1.0592945987729508e-11,8.988787404321687e-11,2.5601595812121448e-11,7.75575893100881e-11,6.854747525616863e-11,6.808506588981722e-11,6.209923504098086e-11,9.029951889430719e-11,7.655501531334308e-12,9.070499505994767e-11,5.171454630305739e-11,1.0603011949618225e-11,5.879194289010347e-11,8.513680767436322e-11,7.037134906872547e-11,8.400127991824895e-11,1.6974434982601618e-11,5.454060995860222e-12,7.321801137218211e-11,6.643425755514887e-12,3.4624499397871715e-11,2.8689044688083864e-13,6.111772603548638e-11,2.4544541519558816e-11,1.3774288077285446e-11,5.834803771100397e-11,7.639869838596216e-11,9.328120191445417e-11,5.946642349089082e-11,7.237559113900528e-11,8.054567113325728e-12,8.622676359485135e-11,7.183080639675797e-11,4.95420484631534e-11,9.334120971265343e-11,7.450959713655505e-11,2.9018480643047806e-11,8.078473203495409e-11,2.1921938015734033e-11,3.586664078580274e-11,7.73375029918658e-11,6.559705937231901e-11,1.0513789980053024e-11,6.930617424890196e-12,5.470908200476991e-11,6.668209564968846e-11,7.646228919233159e-11,7.470207586448844e-11,7.307062988804458e-11,6.499842313824278e-12,2.347497261963102e-11,2.505126161609368e-11,9.103237684296469e-11,8.028838661410598e-11,3.7850519781015623e-11,5.78219895779735e-11,4.320111807722937e-12,2.0996962622961312e-11,4.421173510667228e-11,1.6910528870624233e-11,1.3760663551814966e-11,1.3263587182857585e-12,3.9158572809028606e-11,3.180713745024216e-11,3.8732437442011505e-11,8.858953307704489e-11,5.784321785524088e-11,5.258375709818589e-11,6.815733267793527e-11,1.7315943585454432e-11,3.604796162537937e-11,3.162532583465646e-11,3.049301206879963e-11,6.681015132484541e-11,1.1353001139317509e-11,1.3532404147127054e-11,8.852556242072067e-11,9.742744368440015e-11,2.9518277613967125e-11,2.954951955975205e-12,8.535939860009366e-11,1.9182521590816137e-11,3.0173106119951755e-11,7.241725281509576e-11,7.557160432430372e-11,5.046014664404008e-12,8.413279004710391e-11,8.139093741932976e-11,2.4135253019582948e-11,3.911701431029826e-11,9.784041361207146e-11,3.13614712050318e-11,3.478393301150981e-11,4.3875763080822685e-11,4.9031489995616594e-11,4.627836394387657e-11,1.9913558809136202e-11,4.408906977411944e-11,2.4068566656531355e-11,1.8827808517904634e-11,9.802387211807958e-11,6.488575303252953e-12,4.7128934865335405e-11,2.4959474087988488e-11,1.9121231222605227e-12,3.4926922060622425e-12,2.6683945717749992e-11,1.7476516858848213e-11,4.251272552885394e-11,5.541061841023445e-11,7.478977913175327e-11,9.967788951302574e-11,6.589151818918811e-11,3.082712904984017e-11,5.974890737940802e-11,4.1848550586852474e-11,2.493156578485375e-11,4.284055960550099e-11,2.7430123508232553e-11,2.520822313933153e-11,7.612938881286922e-11,7.821537068179898e-11,6.034667006434562e-11,5.583912506270127e-11,3.7359888533085684e-11,2.3328289525702905e-11,7.4700249636729e-11,2.406302491617637e-11,1.3612231117392404e-11,5.655008964759132e-11,4.378897460221115e-11,4.115402462662416e-11,8.819350547745184e-11,7.678401812150854e-11,7.574336100065845e-11,3.886192474631649e-11,1.4513389336842998e-11,3.737540182248884e-11,9.454745584532863e-11,9.540886666403935e-11,4.2463052103180634e-11,3.085406289154266e-11,9.27431257709531e-11,8.345920783078067e-11,6.651224541625471e-11,3.225330583786088e-11,6.746475980327595e-11,7.64514031581161e-11,9.474930232742207e-11,3.336244221145501e-11,6.903665907491933e-11,8.4420543576904e-11,6.691691666872884e-11,7.504284266582056e-11,1.2702595480225321e-11,3.849667965609971e-12,3.797720441168735e-11,6.202897994604935e-11,1.996297828057222e-11,3.401481190871244e-11,7.373917531407964e-11,3.533061974507883e-11,4.6146192109824204e-11,9.977746368020271e-11,1.3231610765703806e-11,6.016666805120456e-11,6.079470784435977e-11,9.217929344598303e-11,3.2277434806573517e-11,7.140110346879641e-11,9.378151854595003e-11,3.9228847615664833e-11,2.9027380732127074e-11,2.4774963059441824e-13,7.584389531378852e-11,9.535890444449222e-11,2.2988093873725423e-11,2.5176368721244516e-12,4.997234186206278e-11,6.591729365234606e-11,2.0618986098332073e-11,9.173979434736514e-11,2.4070971081503323e-11,4.700788188873493e-11,4.3471635700692993e-11,7.394276200509092e-11,6.983958991474168e-11,2.9363608351497096e-12,4.31997373505473e-11,6.969733040138827e-11,3.2142180074641725e-11,3.558108234851194e-11,4.640792054588192e-11,2.4452463047373807e-12,3.568949277775479e-11,4.9484329788254266e-11,4.619386670021181e-11,3.9756018526169e-11,3.687116363075349e-12,3.884393452619305e-11,5.434106890001833e-12,1.8061781109866026e-11,5.46404752798324e-12,5.204270819177222e-11,3.956174175156206e-11,2.674024112449923e-11,3.4869002672760064e-11,6.604870759729381e-11,7.90921468285941e-11,1.2396491279142219e-11,6.805010211390499e-11,6.249061338585059e-11,2.919781646763543e-11,4.722504669784358e-11,6.077733240759356e-11,7.721702900529172e-11,4.3243055645269356e-11,7.244111275973558e-11,2.6251522479767175e-11,9.68814058156277e-11,5.860812413648985e-11,1.579251509408016e-11,7.902486931710205e-11,2.700985433557025e-11,5.972510383254861e-11,1.0038740478055309e-11,7.086625406586747e-11,6.078074946102731e-11,9.769304678512324e-11,1.5141962694380918e-11,8.526365990584293e-11,2.2958151426471043e-11,6.218272616438711e-11,9.509308334938974e-11,5.218904610976293e-13,2.3625386825946484e-11,7.114385517629562e-11,7.050777150659486e-11,6.254646547581254e-11,5.5224318512288633e-11,5.2799332670207844e-11,1.4641649889703214e-11,5.1942471183521834e-11,7.759962787862096e-12,3.7275665112982614e-11,8.825578291436649e-11,8.215192095455612e-11,7.984322795128729e-13,1.0076728049639662e-11,8.945914508106188e-11,9.465585634533565e-11,9.390447289041284e-11,4.7366790705632647e-11,2.5609289166663096e-11,6.608007015498556e-11,5.056094294959193e-11,3.5235352423058645e-13,8.583355070434128e-11,7.025327416947119e-11,6.684920370487391e-11,9.535069153809308e-11,1.483747282223986e-11,9.42578642896339e-11,8.51622092650881e-11,3.09166566816509e-11,4.495175830032339e-11,8.101509367988947e-11,9.427271894491299e-11,6.57723737569677e-11,7.286924414810111e-11,3.217983920553226e-11,1.567770719095115e-11,1.9065013962394772e-11,8.059747545561566e-11,9.21800229883691e-11,4.935439867809285e-11,4.973932867697475e-11,9.678752873213506e-11,5.615617033728622e-11,2.354417855668466e-11,1.4837551923030646e-11,2.6603870067975154e-12,9.258216453003587e-11,3.2649568767643934e-11,3.6387639293001775e-11,1.2241259841687113e-12,8.402039210516751e-11,3.485240601528053e-11,2.926906866064386e-11,4.364392921107526e-11,9.8560381356328e-11,1.3928615815144685e-11,1.1761559537626732e-11,7.086290473435508e-12,2.9878005618090256e-11,1.565642428605456e-11,5.2189162128519863e-11,3.949801357372657e-11,5.51363565196085e-11,3.0004107781155946e-11,5.5214664242341405e-11,3.501436000131966e-11,8.368678250062734e-12,1.48805914488381e-11,1.744676982423431e-11,9.856021658427048e-11,6.334219945554141e-11,3.267598421210813e-11,9.953746372528966e-11,4.019000858904254e-12,4.6307797900832116e-11,2.0173700746163716e-11,8.579582583846717e-11,3.646088234893332e-11,9.90101093552722e-11,3.8083154157658884e-11,4.8144608340994266e-11,5.076989202546654e-11,5.875978992330637e-11,3.406289434924873e-11,3.74594659514058e-11,8.883465273144404e-11,8.749997736674499e-11,5.796423995062611e-11,3.440582971617423e-13,4.737269555058789e-11,8.033263150458296e-11,7.223058141234562e-12,1.5975101166424755e-12,8.128260176233319e-11,6.575034543316196e-11,8.870476764582816e-11,3.115986169246998e-12,6.813161992238291e-11,8.791621274878939e-11,4.474236194389625e-12,8.16102628687021e-13,9.988732754254415e-11,3.650567427103013e-11,3.34976073791836e-11,9.280458068572053e-11,1.022989986767786e-12,8.47075596431892e-11,4.299667930582869e-11,5.708879030131952e-11,2.779429122604169e-11,2.2637662833869944e-11,9.848116260177952e-11,7.274039791076431e-11,4.762829766410114e-11,8.147513696139724e-11,9.784633892655309e-11,3.28672162425995e-11,3.145318746288883e-12,7.710221068760029e-11,9.416484599032946e-11,5.3513839747971837e-11,2.4678570217914975e-11,8.821944671983458e-11,5.350885215752679e-11,4.997301712309375e-11,5.3693945982948946e-11,9.247452730956818e-11,6.973981509663077e-11,8.225753933654322e-11,7.832435465947436e-11,3.8765390127456913e-11,8.206824401770894e-11,7.956359432769167e-11,9.560558727140469e-11,2.918265071377041e-11,6.685253316266971e-11,4.5841992550403634e-11,1.0888051914777186e-11,3.6507614484232174e-11,4.6158162366115895e-11,8.587324899805968e-11,1.2633894147437553e-11,1.0820996690431772e-11,3.669825126392967e-12,1.4462634584809043e-11,7.360415590362258e-11,7.263034158634241e-12,6.92666186408159e-11,4.968063728069827e-11,9.776140462733412e-11,2.7048642626310826e-11],"im2":[-9.95109069542894,-9.013141327896006,-9.3765040548189,-8.145401182337167,-9.443958276297973,-8.796860175946907,-8.332700143227232,-8.774010125197474,-9.50863694930684,-8.75828317700984,-9.194567645497886,-9.959317339560956,-9.806853884798885,-9.208384076409821,-9.044308387098008,-8.69730427593648,-9.143527517126898,-9.673945838575293,-8.77376005878078,-9.361365107686531,-8.00577172856903,-8.415768399300166,-9.98735358644183,-8.464289598840425,-9.22054713851682,-8.333684859000732,-9.613714248700173,-8.965157073104882,-8.192966281720253,-9.935822024593811,-8.682883655981009,-9.81380845023853,-9.656804276962909,-8.668338663494866,-9.24539351417467,-9.417057899590237,-9.19665392831849,-9.592729918246745,-8.580078156572661,-9.017499637934018,-8.874811910070255,-9.212544344735115,-9.50412545952433,-9.491997862607494,-9.99419168296489,-9.995453259928059,-9.878431497274763,-8.847476254931479,-9.366755680082886,-9.786466857553377,-9.841170336860051,-9.467863493747997,-8.875927229542114,-8.53590112125433,-9.075302307205709,-9.811381636493156,-8.838973371455264,-9.017487967708819,-8.031665090873872,-8.33124515087187,-9.34107306730582,-8.713314903688083,-9.364166158575188,-9.349630363168677,-9.956204836907666,-8.780579426844206,-8.130433227049991,-8.27793226262697,-8.827551470083455,-9.986808450493461,-8.955601550761752,-9.877802635988285,-8.475615491938886,-8.642743363126833,-8.866205694423364,-9.712918192088786,-9.130140153864756,-9.431117653217001,-9.143957184521344,-8.853239947695474,-8.087199251288393,-8.881437974436842,-8.448165389428762,-9.977788915308421,-8.426673094135115,-8.545386430991702,-8.997021501613416,-8.787673671408383,-8.281884481575904,-8.5700077072419,-9.115617691203989,-9.459462874217076,-9.71637046508619,-9.083631480744726,-8.164720626877369,-9.77887737418114,-9.8394620748372,-9.14699779335831,-9.382460954777306,-8.269500243449235,-9.372403895334434,-9.482225970784208,-9.686792627069709,-8.322208065719,-8.022012219820452,-8.005755643173616,-9.744875917154154,-9.145004551326991,-9.660080771389199,-8.35569992169837,-8.202463916381886,-8.914624560643409,-9.596100712270117,-8.206221909021858,-8.690764735480858,-8.844045844365507,-8.897762319644675,-9.599754291112209,-9.553477212090632,-9.230491837901795,-9.051039941992187,-8.374338556489253,-8.476258247526575,-9.809085073442857,-8.072197109875269,-9.19561971674285,-9.806566343419732,-9.82341228305518,-8.10966354706484,-8.497699608785043,-8.422167266978718,-8.265289543843823,-9.214168790630783,-8.809788756889697,-9.375433414909336,-9.92307961046417,-9.803343626514714,-9.987143122395784,-8.804390075801043,-8.403016313306518,-8.96711662666896,-8.485991692978784,-9.540426257133053,-9.342715887318748,-9.583582141862323,-9.60791323839239,-8.897723743035504,-8.176968989610513,-8.69696034312733,-9.16980480117639,-8.681229804731538,-8.175607605675175,-9.876737859448363,-8.955882504841435,-9.09476462820368,-8.135570506661312,-8.307867213762544,-9.71382263836693,-9.722050886406432,-9.483559165669844,-9.85358329448575,-8.120917998201545,-9.197269361418929,-8.39749025560897,-9.791107134229652,-8.323327871231974,-9.059306028105603,-8.588050249561745,-8.277047698212728,-8.177371247845471,-9.68162621050088,-8.604793605206392,-9.584536025486532,-9.71734333312127,-8.928722628721648,-9.581103926402111,-8.204692080942202,-9.474299919312486,-8.717420519048616,-9.06094318738097,-9.050998548131131,-9.064240862518533,-9.015730761050095,-9.335285015403436,-8.811930126639725,-9.312801221889533,-8.962015932100668,-8.8654175455883,-8.619063710841521,-8.01059238730679,-8.03213007867941,-8.657563687639296,-8.562283973197305,-8.514805960285921,-9.483496803506542,-9.358968564165027,-9.770715026584725,-9.66775254269172,-9.91985639337768,-8.896092671164254,-8.197178778788782,-9.056801271732077,-9.343702349746653,-8.511366825370681,-9.609242750390617,-8.567882788492069,-9.832193160987185,-9.634661960363664,-9.378055106098417,-8.698776409371925,-9.504708949098609,-9.9080422639419,-9.051045605852819,-9.370035961557441,-9.39948309504879,-8.777220345117051,-8.42721579015636,-8.984102265317592,-9.064993474162577,-8.568512024488705,-8.798420868442342,-8.0356275453765,-9.683994484834159,-9.743163272022379,-9.389792431781414,-9.929979712537436,-9.244505971104232,-8.537632939617307,-9.629647873265085,-8.560049798957966,-8.380689330435912,-9.934474565731643,-9.182494146854642,-8.7640837793013,-9.723162183850963,-9.13543798193535,-8.912356369250034,-9.684119421034369,-8.514639962102253,-9.559076871200645,-8.460991933298848,-9.15573784787477,-9.18316953231277,-8.481865736816141,-9.635605593211176,-8.181670310148064,-9.000810514471304,-8.83555712768413,-9.340262942324689,-8.284264975163524,-9.129088170234066,-8.106605906398721,-8.82443322600213,-9.091432435692862,-8.132211982305996,-8.056690292768945,-9.69831470084378,-9.079902802243303,-9.704510155989308,-9.272273259704493,-8.036551441614396,-8.676234483474973,-9.362028056525613,-9.304518225033544,-9.034807246999025,-8.737120720769411,-9.096378545136284,-9.348291225673549,-9.803703417858276,-9.968076015719715,-8.955213320580022,-8.752149955251275,-9.66305600150819,-9.859560728235323,-8.46299673807152,-8.044238754346123,-9.88640187134743,-9.193407865505284,-8.100893440129546,-9.65901073578579,-8.702517578669383,-8.453496774982506,-8.525400383012256,-8.439148368664267,-8.174327953838919,-9.39383967954072,-8.605529263043195,-9.5893037136317,-9.551994308124803,-8.453521753044647,-8.249654695437295,-8.879531518595844,-8.956494281204316,-9.447301845621487,-9.41046361154864,-9.487637570899821,-8.11783682697615,-8.405486941849965,-9.614513503260698,-9.648513789148833,-8.671180198679226,-8.62023429513301,-8.899246393377165,-8.403957141826961,-9.28274641232838,-8.1025418541369,-9.32610850412162,-8.746712452169135,-9.328954816833521,-9.55366031055297,-9.12862079366099,-8.151446746675797,-8.498564571885838,-8.497634756349422,-8.915549313446563,-8.576737201340537,-8.785521112591676,-8.211714116240083,-8.628598349621505,-8.858694907285887,-8.425817579493918,-9.376505254139897,-8.957400170189828,-9.07873521767721,-9.64916661294671,-8.61289056814468,-8.896963492771182,-9.94756086961329,-9.363887583696902,-8.61156318761325,-9.91119647423559,-9.480539516358492,-9.753373485653565,-8.823669393268238,-8.465227176882433,-9.80068284879999,-8.082802823152083,-9.091968140822727,-9.182219348854893,-9.903668330715671,-8.524155538298462,-8.798573841985238,-9.827718251721466,-8.235631146831027,-8.687155185939234,-9.971861896582556,-8.142649103837874,-9.55465806802821,-8.073121415421605,-8.655565394720051,-8.247765797466801,-8.50817423542363,-8.873333543364803,-9.854472036654418,-8.618477133255062,-9.374256700899485,-8.083517590167578,-8.313017473876378,-9.472335349498007,-9.649395125381387,-8.916253942564968,-8.850385247887399,-8.933368639076358,-9.734457271355199,-9.85078302946391,-8.999624226814396,-8.92388720811853,-8.496726228424112,-9.989120659274201,-9.791332175425104,-8.071584113987075,-8.874213872118926,-8.331819652835444,-8.534322285350441,-8.176512397352704,-9.687962632520057,-9.564904145040648,-9.571150538079657,-9.114933050682406,-8.241285451958687,-8.929118002752391,-8.979623201732563,-9.14438967194998,-9.952042917376705,-8.429858132415305,-8.090715003532903,-9.920460008128714,-8.26400736144477,-9.657499326305409,-9.485641137326107,-9.52679337270553,-8.397092865194947,-8.34265526700999,-8.87126747045085,-9.436975645306118,-9.604983023401402,-8.651532138575245,-9.494798149031524,-9.31712858209521,-8.83239073459519,-9.266847588852395,-8.76434842439679,-8.490851812932672,-9.647695700236575,-9.228761878699869,-8.431602180717283,-9.239519031156876,-9.03200370278628,-9.688658977548286,-8.480837138184125,-8.364113197609255,-9.82598938714323,-8.055777823320254,-8.62075800726822,-9.34679061505734,-9.368509285659815,-9.764342096363144,-9.053276815531415,-9.794671391405302,-8.727147211161386,-9.799406139887472,-8.762229589590994,-9.359037503564934,-8.344915129419554,-8.153679193889744,-8.760165132957175,-9.41117205518668,-8.373168884983226,-8.63939734737728,-8.081953338846889,-8.24378725988875,-8.935186498931902,-8.177398555806066,-9.161160482246467,-8.955501720176255,-8.255317782656402,-8.585176711036063,-9.512339997850193,-9.819608992969776,-8.467725450181675,-8.98171757741272,-8.755661648056225,-8.274683124750899,-9.934416467807068,-8.077907509058418,-8.906479052465489,-9.285426977294426,-8.777803353268293,-8.187675547188771,-8.552083291950284,-9.612105176799906,-8.064733654395067,-8.806484328478936,-9.833021361051035,-8.865575679079926,-8.45213124678228,-9.920476412634708,-9.214799032299505,-9.733942584372706,-9.394805175359377,-9.007036745395105,-8.172878454531695,-8.472540052830507,-9.209130812481174,-8.678179239302095,-9.777675179582683,-8.515228032031684,-8.636185242527272,-9.75678832487905,-9.73084983872502,-9.633056506684794,-8.80211468894026,-8.826546845151368,-9.461799614308578,-9.402264008321618,-8.95351373890169,-9.140167266182866,-8.219601277446383,-8.035696395613167,-8.645206668127809,-9.600108537479956,-9.367499845342794,-8.518296804631433,-9.387535701534357,-9.288648501799685,-9.307579930626304,-8.440221086918655,-9.974758450278376,-9.286206458215883,-8.428501357371236,-9.72009161477631,-9.444881515448538,-9.075523265412789,-8.013099197362273,-8.552052245834892,-8.455077072369097,-8.073216404236925,-9.623289952072906,-9.726985573395343,-9.552190338926366]}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/runner.jl
new file mode 100755
index 000000000000..a7989e447c47
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/runner.jl
@@ -0,0 +1,168 @@
+#!/usr/bin/env julia
+#
+# @license Apache-2.0
+#
+# Copyright (c) 2025 The Stdlib Authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+import JSON
+
+"""
+ gen( re1, im1, re2, im2, name )
+
+Generate fixture data and write to file.
+
+# Arguments
+
+* `re1`: real components for first complex number
+* `im1`: imaginary components for first complex number
+* `re2`: real components for second complex number
+* `im2`: imaginary components for second complex number
+* `name::AbstractString`: output filename
+
+# Examples
+
+``` julia
+julia> re1 = rand( 1000 );
+julia> im1 = rand( 1000 );
+julia> re2 = rand( 1000 );
+julia> im2 = rand( 1000 );
+julia> gen( re1, im1, re2, im2, \"data.json\" );
+```
+"""
+function gen( re1, im1, re2, im2, name )
+ zre = Array{Float32}( undef, length(re1) );
+ zim = Array{Float32}( undef, length(re1) );
+ for i in eachindex(re1)
+ z = Complex{Float32}( re1[i], im1[i] ) / Complex{Float32}( re2[i], im2[i] );
+ zre[ i ] = real( z );
+ zim[ i ] = imag( z );
+ end
+
+ # Store data to be written to file as a collection:
+ data = Dict([
+ ("re1", re1),
+ ("im1", im1),
+ ("re2", re2),
+ ("im2", im2),
+ ("qre", zre),
+ ("qim", zim),
+ ]);
+
+ # 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 );
+
+# Large positive real components:
+re1 = rand( 500 ) .* 1.0e32;
+re2 = rand( 500 ) .* 1.0e32;
+im1 = ( rand( 500 ) .* 2.0 ) .- 10.0;
+im2 = ( rand( 500 ) .* 2.0 ) .- 10.0;
+gen( re1, re2, im1, im2, "large_positive_real_components.json" );
+
+# Large negative real components:
+re1 = -rand( 500 ) .* 1.0e32;
+re2 = -rand( 500 ) .* 1.0e32;
+im1 = ( rand( 500 ) .* 2.0 ) .- 10.0;
+im2 = ( rand( 500 ) .* 2.0 ) .- 10.0;
+gen( re1, im1, re2, im2, "large_negative_real_components.json" );
+
+# Large positive imaginary components:
+re1 = ( rand( 500 ) .* 2.0 ) .- 10.0;
+re2 = ( rand( 500 ) .* 2.0 ) .- 10.0;
+im1 = rand( 500 ) .* 1.0e32;
+im2 = rand( 500 ) .* 1.0e32;
+gen( re1, im1, re2, im2, "large_positive_imaginary_components.json" );
+
+# Large negative imaginary components:
+re1 = ( rand( 500 ) .* 2.0 ) .- 10.0;
+re2 = ( rand( 500 ) .* 2.0 ) .- 10.0;
+im1 = -rand( 500 ) .* 1.0e32;
+im2 = -rand( 500 ) .* 1.0e32;
+gen( re1, im1, re2, im2, "large_negative_imaginary_components.json" );
+
+# Tiny positive real components:
+re1 = rand( 500 ) .* 1.0e-34;
+re2 = rand( 500 ) .* 1.0e-34;
+im1 = ( rand( 500 ) .* 2.0 ) .- 10.0;
+im2 = ( rand( 500 ) .* 2.0 ) .- 10.0;
+gen( re1, im1, re2, im2, "tiny_positive_real_components.json" );
+
+# Tiny negative real components:
+re1 = -rand( 500 ) .* 1.0e-32;
+re2 = -rand( 500 ) .* 1.0e-32;
+im1 = ( rand( 500 ) .* 2.0 ) .- 10.0;
+im2 = ( rand( 500 ) .* 2.0 ) .- 10.0;
+gen( re1, im1, re2, im2, "tiny_negative_real_components.json" );
+
+# Tiny positive imaginary components:
+re1 = ( rand( 500 ) .* 2.0 ) .- 10.0;
+re2 = ( rand( 500 ) .* 2.0 ) .- 10.0;
+im1 = rand( 500 ) .* 1.0e-32;
+im2 = rand( 500 ) .* 1.0e-32;
+gen( re1, im1, re2, im2, "tiny_positive_imaginary_components.json" );
+
+# Tiny negative imaginary components:
+re1 = ( rand( 500 ) .* 2.0 ) .- 10.0;
+re2 = ( rand( 500 ) .* 2.0 ) .- 10.0;
+im1 = -rand( 500 ) .* 1.0e-34;
+im2 = -rand( 500 ) .* 1.0e-34;
+gen( re1, im1, re2, im2, "tiny_negative_imaginary_components.json" );
+
+# Real components different scales:
+re1 = rand( 500 ) .* 1.0e20;
+re2 = rand( 500 ) .* 1.0e-10;
+im1 = ( rand( 500 ) .* 2.0 ) .- 10.0;
+im2 = ( rand( 500 ) .* 2.0 ) .- 10.0;
+gen( re1, im1, re2, im2, "real_component_scales.json" );
+
+# Imaginary components different scales:
+re1 = ( rand( 500 ) .* 2.0 ) .- 10.0;
+re2 = ( rand( 500 ) .* 2.0 ) .- 10.0;
+im1 = rand( 500 ) .* 1.0e20;
+im2 = rand( 500 ) .* 1.0e-10;
+gen( re1, im1, re2, im2, "imaginary_component_scales.json" );
+
+# Components different scales:
+re1 = rand( 500 ) .* 1.0e15;
+re2 = rand( 500 ) .* 1.0e15;
+im1 = ( rand( 500 ) .* 1.0e-15 ) .- 0.5e-15;
+im2 = ( rand( 500 ) .* 1.0e-15 ) .- 0.5e-15;
+gen( re1, im1, re2, im2, "component_scales1.json" );
+
+# Components different scales:
+re1 = ( rand( 500 ) .* 1.0e-15 ) .- 0.5e-15;
+re2 = ( rand( 500 ) .* 1.0e-15 ) .- 0.5e-15;
+im1 = rand( 500 ) .* 1.0e15;
+im2 = rand( 500 ) .* 1.0e15;
+gen( re1, im1, re2, im2, "component_scales2.json" );
+
+# Normal:
+re1 = ( rand( 500 ) .* 10.0 ) .- 50.0;
+re2 = ( rand( 500 ) .* 10.0 ) .- 50.0;
+im1 = ( rand( 500 ) .* 10.0 ) .- 50.0;
+im2 = ( rand( 500 ) .* 10.0 ) .- 50.0;
+gen( re1, im1, re2, im2, "data.json" );
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/tiny_negative_imaginary_components.json b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/tiny_negative_imaginary_components.json
new file mode 100644
index 000000000000..6f8370236ea4
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/tiny_negative_imaginary_components.json
@@ -0,0 +1 @@
+{"re1":[-9.736009652284737,-9.152453140938526,-9.62914833031894,-8.521101547785296,-8.52658065261613,-8.670256616794312,-9.324233540049853,-9.482652451789102,-8.518519016148018,-9.58320184568093,-9.565470679270572,-9.556754277037275,-8.185094445799127,-9.091800650293964,-8.442932360069896,-8.562843528537728,-9.956767090476939,-9.399023249204046,-9.247950110308317,-9.067111098187404,-8.885553523263898,-8.103714395344007,-9.354299404800628,-8.530148027269062,-9.074183138175869,-8.56148378835259,-8.121731314591559,-8.027082558702526,-8.95177492034135,-9.800055550378929,-8.812060834522272,-9.997901871645599,-9.018922699395777,-8.757925317050761,-9.739002774552484,-8.543280367986696,-8.92909085837361,-8.218820635447694,-9.834414667337358,-8.149314028161951,-9.837968218349307,-8.289801652016187,-8.211869457119327,-8.179096704555604,-8.501496592885328,-8.42074190313548,-8.981841809250119,-9.150963732151391,-9.251510695403422,-8.536980620231562,-8.784327805831154,-9.39036836790873,-8.030191766637172,-9.217817005162184,-9.169699475164267,-9.544967876009359,-8.517148794625193,-8.623641293232009,-9.850626037278646,-8.330100779483615,-8.99123388948884,-9.098281003985052,-8.20589353996977,-9.544836200980901,-8.684767923857484,-8.599320352346119,-8.835682142706725,-9.437593663078076,-9.423530475664291,-8.486015572758014,-9.183371724113407,-9.386664630825162,-8.840442954751694,-8.773200645543719,-8.297031220674203,-8.865449909411673,-8.810364610691186,-9.572524610596496,-9.739700715844387,-9.577598942282043,-8.500176460263715,-9.48338774284579,-9.847340316703377,-8.532968406506619,-8.750908028029372,-8.581059316442664,-9.511156289718981,-8.618525456591222,-9.797043420354845,-9.62275411095883,-9.195745576281913,-8.798736082626178,-9.421785293353997,-8.528872230118955,-8.097163662526322,-9.687273135961616,-9.781130113659739,-9.465088946297593,-8.380494428031442,-9.47857455035766,-8.085019416797152,-8.50008178803462,-9.30925163713663,-9.370024127549753,-9.41418884911151,-8.02531001405559,-8.82427475758438,-9.369779036322964,-9.59575774017365,-9.179166956435623,-9.209900825806887,-9.479608852671138,-8.789369899492423,-8.931855545790146,-8.734931611770053,-9.619910405815007,-8.473415492840632,-8.197629147250826,-8.570690909963059,-9.909479463903955,-9.663595024310675,-9.867983418578202,-8.731759830463552,-8.707387118209663,-8.364774475363587,-9.810944977959174,-8.717532594727343,-9.335054660761024,-8.347423979430186,-9.368097033564137,-8.516495681830607,-8.283873406513788,-8.133542355302014,-8.978686553838866,-9.883683042092503,-8.26670002116343,-9.333848836091608,-8.905982950222441,-9.02222552591476,-8.085516269181994,-9.309532827767496,-9.903618683008933,-9.638244475052042,-8.953579143270685,-9.85378975083837,-9.177004026661624,-9.775295727363636,-8.388738583099551,-8.582784371752751,-8.842928869950335,-9.805253706066228,-8.319859784944594,-9.803680027287376,-9.866585491629364,-8.780043818333464,-9.404592428668884,-8.47155027582944,-8.02677260437143,-8.721899759901275,-8.248311092427024,-8.56979855702201,-9.07346859562551,-9.471102158086037,-9.429619056017335,-9.398931466870362,-8.137739537576534,-9.599611238981646,-8.237616523342627,-9.825886279462594,-8.926665480324196,-9.573614494290002,-9.845793936031061,-9.562359612352386,-8.775925635324597,-9.17207098378936,-8.3509018494718,-8.608562575393904,-8.128607716880543,-9.48440488499503,-8.902699735273474,-9.789805502013646,-8.807141678089856,-9.277335075484968,-8.818003044418655,-8.421263163833459,-8.47502635148612,-9.520445867047789,-8.910167352622075,-8.586267072733891,-9.427102043189214,-8.651590574258353,-8.324683030187384,-9.781254915878367,-8.815398226048645,-8.235091938483599,-9.516219876416258,-9.472245345309396,-9.16161915715599,-9.606614573613946,-8.99723056491026,-9.333720768989735,-9.42546583831799,-9.436575538567693,-9.205913300042662,-9.9710095317831,-8.38920911744209,-8.128458385782928,-8.843922145188,-8.170776743284689,-8.910473864947472,-8.563421715604493,-8.783223751409471,-9.119502136617138,-8.310332798533702,-8.367621654063859,-9.146207055076614,-9.377438915949178,-8.383715034775223,-9.35111368640102,-8.724947236535343,-8.18885477985304,-8.642952124234794,-8.35014700875678,-8.088449121276861,-8.737546816576867,-8.660388860964185,-9.435314510580284,-8.448193900431978,-8.310915153208096,-9.81167983642622,-9.419277053566793,-9.600752102381538,-8.201262009437261,-9.038280321675241,-9.652433798635208,-8.340957096799876,-8.91122477839025,-8.636797299731997,-8.018477992495779,-9.259757821038624,-8.989022160823659,-9.519470776250243,-8.49965890106031,-9.250941743113941,-8.649588669652783,-9.61262356357639,-9.943007496419716,-9.338787617038262,-9.293784122960265,-8.16717979379425,-9.243838920609216,-9.245068761993691,-9.052067671997442,-9.149816833451277,-8.79133184313218,-8.67754330376065,-8.340196285830288,-9.34463472878588,-8.909036579670206,-9.425131287654693,-9.502322753976934,-9.101331559197222,-8.118813928588168,-9.539653567336543,-9.098447639873676,-9.104569132419563,-8.21458874374806,-9.523462344789598,-8.989218321927982,-9.4889500814339,-8.368397869536638,-8.037616606919777,-9.275612147842033,-8.710195020729671,-9.432783660604532,-8.385404703102484,-8.339184870677297,-9.441764425421246,-9.563988485062373,-9.549771642805114,-8.533254164550861,-8.100979093277662,-9.192146362081537,-9.257076386410473,-8.524485329527195,-9.804723397218073,-9.268772470212683,-9.959520658402782,-9.46085189500556,-8.566871121954321,-8.176320038029946,-9.922924798042622,-9.979855613341085,-9.573468983032079,-8.498002508722788,-8.78843442780978,-8.182417377021762,-8.566132857348501,-9.819612751483803,-9.274756277771777,-8.18956099052537,-9.320515553894383,-8.25700974655684,-8.535862346708763,-8.370948502517866,-9.064222348419241,-9.664662533470713,-8.725658793766101,-9.681371234794042,-8.206810231779562,-8.797519297257058,-9.780605768985668,-9.350970900613039,-9.503569931924204,-9.925913468656319,-9.957019218294617,-8.84505677969196,-9.125257563605826,-8.008394198700739,-8.021540743837503,-8.509099163103564,-8.944320016682557,-8.407727486106022,-9.607370262316417,-9.238694790146226,-8.782978700506114,-8.87727646294332,-8.985572044035871,-9.297019485380119,-9.642802521546983,-9.52645164623183,-8.241837655147352,-8.018812440057303,-9.698514741207052,-8.757992291489556,-9.824632188030996,-8.054862444324083,-9.217680465625104,-9.152452183879426,-9.661419486588565,-8.748468039838254,-8.294384271990108,-8.120288283251705,-8.519282343616394,-8.790995106785665,-9.552215992435936,-9.63967839847532,-8.656246677031405,-8.616817648266498,-9.8292459835691,-9.031162196406118,-9.157492585813728,-8.502584336499094,-9.980841311920644,-9.131502808595501,-8.005497924325978,-8.42270403331375,-8.599314008169854,-9.720903778520647,-9.003794622145278,-9.462347032250822,-9.000348411828236,-8.907265730769325,-8.874199044467257,-8.656676468987849,-8.88015046648821,-8.745257793263546,-9.559270026863276,-8.223036979979828,-9.824833441790494,-8.230955669197288,-8.464697253236316,-8.560296930543576,-9.910367213161658,-8.573569897455513,-9.800000995226226,-8.548574712267614,-9.523649739293827,-9.320237355061227,-9.457282270721343,-9.770105901135178,-8.440683832168185,-9.374121601183854,-9.095774157117074,-8.133811189967641,-8.797463177806875,-8.883405988223807,-8.264627161990136,-8.729606367422615,-9.084708282181571,-9.94514794187355,-9.419706616711329,-8.992306574502859,-9.385391348529605,-8.04539561180563,-9.05420755000222,-9.278522811122098,-9.33028519867213,-8.028874198742827,-9.02189610369499,-8.816038097334255,-9.580690174299942,-8.548096304402783,-9.862178722277173,-8.699435418330827,-8.062514799169378,-9.846523812897011,-9.073853320390722,-8.367277112203373,-8.442634492690084,-9.731685765925384,-9.198471545678045,-8.2117622547323,-8.657777399520219,-9.723061178238897,-9.19369714919851,-9.636180623540886,-8.335953303008667,-8.966799377204643,-8.2742220157552,-9.244688820658508,-9.033999081798186,-8.292957830951682,-8.817840101700774,-8.159001045548814,-8.60035127993465,-9.671567600040996,-9.446440225624208,-8.6618850999514,-9.60320450565706,-8.951533098705093,-8.410018386212869,-9.92685257999549,-9.385791052261233,-9.133086418229672,-8.80452962979211,-8.910224388420774,-8.196423171006252,-9.732159655598375,-8.166337279028017,-9.48649249121525,-8.382976199316701,-8.462259722618414,-8.588727388249836,-8.712016156826898,-9.224854435044291,-8.142290948892066,-8.497097420633494,-8.105723216806311,-9.853010200150825,-9.431676055282157,-9.719712130272232,-9.223057248347109,-9.298577579004181,-8.363240651603611,-9.725651854994387,-8.18931330295928,-8.686696469358411,-9.621419486981944,-9.237580245020713,-9.24064394339141,-9.88418969944727,-9.631413561427841,-9.277494836649419,-8.641078974765126,-9.679784413331644,-9.76188664905814,-8.800575026303804,-9.867733494643348,-9.323320735061555,-9.475034530019329,-8.705337532380206,-8.936532845744836,-8.556405379309414,-8.29238381215264,-8.882336532704405,-9.202767485589824,-9.824219760781054,-9.589266405786764,-8.328998568409368,-9.14035997363379,-9.73646713411281,-8.759082027501407,-8.496723441310953,-9.112162883021579,-9.458878077744679,-9.586550749783584,-9.265252818584935,-8.61155124816982,-9.15504318391138,-8.2260613391175,-9.311645585086373,-9.74890440814433,-9.80446336618996,-9.948202564889558,-8.900114703760773,-9.944182965660662,-8.959573310407178,-9.227671770978716,-8.912570212262848],"im1":[-1.0453495482521623e-35,-9.226051847606615e-35,-6.899602327599816e-35,-7.417630011622364e-35,-4.846669676383164e-36,-9.045847953564258e-35,-3.3429094692155556e-35,-4.715261428000352e-35,-3.729401094909243e-35,-7.826752866226343e-35,-5.558441589668823e-35,-4.854694802306285e-35,-9.139857010005117e-35,-7.731694335050676e-35,-6.804276696995688e-35,-1.241980444049965e-35,-6.66485755007807e-35,-6.099588755488418e-35,-6.329666010329325e-35,-1.7157113320765303e-35,-9.537618646017369e-35,-5.00313810344517e-36,-7.610845125110626e-35,-7.27394626900056e-35,-9.304569913494312e-35,-3.4193896294394677e-35,-3.1361730165802867e-35,-5.680190658425643e-35,-3.300686214516809e-35,-7.792175877591811e-35,-1.102274281444614e-35,-9.363570057955435e-35,-1.307486945861944e-35,-2.9081049557903237e-35,-9.044175749878644e-35,-3.6980256422963106e-35,-7.967150459931661e-35,-8.054891610688851e-35,-8.950021974641941e-35,-4.49630232622773e-36,-5.59182059094166e-35,-1.2371013977450606e-35,-7.25296240558801e-35,-8.69060522467188e-35,-7.903610722936677e-35,-8.447235030524013e-35,-1.73244183481149e-35,-3.067814963244579e-35,-4.978360542589113e-35,-8.769002648023317e-35,-8.484816611396956e-35,-7.425824794231218e-35,-3.3105373121405264e-36,-4.968148027640092e-35,-2.6292279632040404e-35,-1.2035128377889613e-35,-9.719114392984008e-35,-3.396998865302739e-35,-6.796044540581503e-35,-1.7980154510923918e-35,-5.752003703627837e-35,-3.061224344201818e-35,-2.4423937506390314e-35,-3.2825812870039436e-35,-1.9425016410536364e-35,-6.28842034848338e-36,-3.1791667480547e-35,-5.196512157428002e-35,-4.5277894735208596e-35,-6.864939793053584e-35,-5.15322010123086e-36,-4.667022752640881e-35,-9.59471631670585e-35,-8.085552748226432e-36,-6.562570317636063e-36,-4.0329112594152715e-35,-6.529616119116229e-35,-3.5859342381031554e-35,-7.494201450840486e-35,-8.548123585594769e-35,-2.483241042514814e-35,-5.211534289375334e-35,-9.083298823256141e-35,-2.812713832263217e-35,-8.508154508643879e-35,-5.860971056285982e-35,-9.542471388762183e-35,-5.5458470787998035e-36,-8.076988063197172e-35,-7.458976845964793e-35,-5.350850344127442e-35,-7.474848195456451e-35,-6.395133411988809e-35,-1.501838326330457e-35,-7.4176152378567e-36,-7.605765256277596e-36,-4.4326914907981803e-35,-9.488817194995026e-35,-8.955969859617641e-35,-2.1843573605218924e-35,-9.686088023450332e-35,-3.2745792391854465e-35,-7.554607742931438e-35,-5.183408361754531e-35,-8.331552347189437e-35,-7.294889286060318e-35,-1.4292347601386533e-36,-8.574078550428437e-35,-4.6800530810498106e-35,-7.606889549333193e-35,-1.1191763807251041e-35,-1.831321394014631e-35,-7.322369560617747e-35,-8.623824763238047e-35,-9.251063149569879e-35,-8.145125612543059e-35,-8.18260643199098e-37,-7.593414153600623e-35,-3.324267764346753e-35,-6.302892359667846e-35,-2.6220996697535236e-35,-1.473930225204042e-35,-5.973321368224506e-35,-9.578294802305386e-36,-2.1596627583487957e-35,-4.1266083557098816e-36,-2.997901632665536e-35,-7.74665379818284e-35,-5.899934771170506e-35,-2.2703966467839376e-35,-1.3449351434038025e-36,-5.056520036377103e-35,-7.207964118973375e-36,-7.040143175333424e-35,-8.202174787858411e-35,-5.456607807426831e-35,-9.75208814086581e-35,-5.676857618016854e-35,-3.194969171857732e-35,-6.740843581211364e-35,-1.1891744415777671e-36,-7.361844014856418e-35,-4.463498431569156e-35,-7.957510873651618e-35,-7.990500881711651e-35,-6.512670836064416e-35,-5.541103699015653e-35,-1.51025018471708e-35,-8.152065306910742e-35,-2.2523819434055812e-35,-6.827795793512083e-35,-5.580753501472901e-35,-6.046988274354465e-35,-4.649387002110486e-35,-2.5473966252407976e-35,-4.867467334793254e-35,-5.644448709123337e-35,-9.588728362018659e-35,-7.122183453478255e-35,-3.8003151610887026e-35,-2.567371677142305e-36,-5.780327818217032e-35,-7.711031633144727e-36,-1.7360304796273972e-35,-2.445118859099838e-35,-6.9876053668236e-36,-8.256829568019274e-35,-1.4823809602149674e-35,-6.328376207194949e-35,-1.802938733064141e-35,-6.623411876372377e-35,-9.715104630344961e-36,-5.22960443969344e-35,-2.862130069955674e-35,-3.657983223795532e-35,-6.883709901010745e-35,-7.87236017661954e-35,-3.514466680741047e-35,-4.534927564365236e-35,-6.684041277234546e-35,-1.174231393667966e-35,-4.253324032549035e-35,-7.81436090009968e-37,-4.6667536479431465e-35,-9.977204649465487e-35,-7.421233502128416e-35,-8.390258590144206e-35,-8.448356084453392e-35,-3.7074103161892854e-36,-2.813060420918276e-35,-2.482781095252846e-35,-6.214580162910925e-35,-7.083113921612958e-35,-2.6475799109684005e-35,-4.970670980822878e-35,-1.366998903009312e-35,-3.88199582924842e-35,-2.530908778295601e-35,-9.98517851498329e-35,-6.045594398538234e-35,-3.8333241709913443e-35,-4.1351993524507187e-35,-3.417263063508636e-35,-4.631403027380999e-35,-2.03862658380767e-35,-9.404607891834327e-35,-8.117485615020371e-35,-2.502058701286591e-35,-6.67787387146982e-35,-7.162055545291981e-35,-8.912688691478897e-35,-3.382148170529049e-35,-3.909877766615717e-35,-2.915877773437244e-35,-8.187118146549936e-35,-9.68910097136977e-35,-3.136269108734756e-35,-4.577791397906853e-35,-7.133933371281183e-35,-3.945935256883648e-36,-3.388112845392694e-35,-9.791924857430688e-35,-3.4923739211528035e-35,-6.819812787237957e-35,-7.849337328304764e-35,-4.1262917403078545e-35,-5.020285987114338e-35,-7.994851289590506e-35,-4.1522957770706257e-35,-6.679829770911999e-35,-5.095530095501984e-35,-3.7871390767670606e-35,-9.727985674778896e-35,-8.345012700454806e-35,-4.6660045360373275e-35,-3.3625397542572953e-35,-1.3726907986594427e-35,-3.280027049697158e-35,-4.355004450316312e-35,-4.725925069451967e-35,-7.512564093277733e-35,-5.234206045255933e-35,-6.167986884432364e-35,-6.112276550355877e-35,-5.503683523531337e-35,-3.1881949045307366e-35,-3.5886674296829455e-35,-4.4596132574458097e-35,-8.215149495853964e-35,-4.5690262468739293e-35,-8.277158768875435e-35,-9.988700500793194e-35,-6.852061614834244e-35,-3.272524287062828e-36,-7.670201674542758e-35,-3.8202966492199306e-35,-8.425147665692249e-35,-5.704002749354771e-35,-5.251271199184159e-35,-5.178899594664388e-35,-1.53831006666726e-35,-5.565029969020985e-35,-2.88947062430231e-35,-4.842246823507514e-35,-1.6712167104851758e-35,-5.1234402230875273e-36,-8.002533938745664e-35,-5.282383700728274e-35,-6.875073232692781e-35,-1.2350859820997262e-36,-4.623452632466449e-35,-7.790195331728455e-35,-9.507426743691236e-35,-4.2991037389577075e-35,-4.4505679547314135e-35,-2.2143445457664622e-35,-5.692406388145999e-35,-4.0679199035517684e-35,-5.568643210975769e-35,-7.873597836190203e-35,-5.786535812389466e-35,-5.377343966536919e-35,-1.4858054974257227e-35,-3.3756160053837867e-35,-4.064589951380206e-35,-6.328792278279214e-35,-2.159345071867772e-35,-4.4895907032338587e-35,-8.950166798551285e-35,-4.950343412187252e-36,-2.3254157815056906e-36,-7.057352070109774e-35,-1.7353136598673634e-35,-9.325865281770625e-35,-4.179370572089826e-35,-8.718567834762857e-35,-6.52998565258097e-35,-2.1881107868394721e-35,-1.304328127574511e-35,-9.467879595737758e-35,-9.887558462296987e-35,-4.953454792485318e-35,-2.3063137802533284e-35,-2.251084327962309e-35,-2.913543610549198e-35,-4.256135836453678e-37,-2.044253045926203e-36,-9.838508019477948e-35,-7.20902364541248e-35,-7.14240806148802e-35,-1.0815240904446498e-35,-1.4900670303541173e-35,-9.497101973596406e-35,-2.5082606039989483e-35,-6.007333059930025e-35,-7.382130012249937e-35,-2.3065620047762945e-35,-7.897377245768136e-35,-1.5069491083153107e-35,-7.733128215189839e-35,-6.387731720337006e-35,-6.020503567035183e-35,-2.6801547304397543e-36,-1.1740826183677788e-35,-7.210850558338978e-35,-7.280214247058318e-35,-8.062588942484451e-35,-7.287372556423821e-35,-7.645568350949769e-35,-9.631490774493392e-35,-3.942389137444034e-35,-8.320079148313608e-35,-4.817427475567158e-35,-2.3492138917602112e-35,-1.592095264770642e-35,-7.03168000758412e-35,-6.55737395168272e-36,-6.365256141147691e-35,-1.7900963669106494e-35,-4.2900269570305224e-35,-8.880740883508523e-35,-8.372659635651267e-35,-7.65850293978289e-35,-8.011871162115457e-35,-9.909824830350766e-35,-6.284809868384719e-35,-7.292764138428245e-35,-6.3134841273125e-35,-2.5195587729866473e-35,-4.019844539251436e-35,-4.5591040458498673e-35,-2.0172615131508807e-36,-9.358690025083188e-35,-9.363008894910053e-35,-5.843834196579263e-35,-9.161555785387361e-35,-8.762431069462348e-35,-8.120720715423178e-35,-1.4983294529706524e-35,-3.390391642537668e-35,-9.75727519617606e-35,-7.655829179817201e-35,-9.239147182415964e-35,-5.9115699123159e-35,-6.892586675292511e-36,-8.521792191731161e-35,-1.8517338615255906e-35,-7.053294926966975e-35,-7.464845961359996e-35,-1.823701249792491e-35,-8.923788792807259e-35,-7.000358594657265e-35,-3.792208006519656e-35,-7.698730208414503e-35,-1.2382006586952875e-37,-7.853136442412793e-35,-4.982303214072439e-35,-6.636172783137188e-35,-6.82098094925818e-35,-3.718493524141679e-35,-7.417990888489713e-35,-9.84144179689239e-37,-9.633909060192192e-36,-2.157758464385919e-35,-1.338670932742676e-35,-1.8386120614175627e-35,-3.640256233907815e-35,-7.084036574144991e-35,-2.637828371003635e-35,-5.397421909373124e-35,-2.532792329851098e-35,-5.6283052339942e-35,-7.850287350208954e-35,-5.351114641722411e-35,-4.7154786999876947e-35,-6.317813782131497e-36,-8.199317860545206e-35,-8.987107740904426e-35,-8.023437912869263e-35,-3.0910916035590837e-35,-4.573057033708232e-35,-3.1402348084605854e-35,-2.1073495236759085e-35,-3.693382326229802e-35,-6.33643565409179e-35,-9.591213645790461e-35,-5.535370921256799e-35,-4.812535078706525e-36,-6.870747715289896e-35,-7.705686819528927e-35,-5.322873707893464e-35,-5.688524989888467e-35,-3.187074241779685e-35,-1.9125551440769683e-35,-8.129146679144969e-35,-4.941397058057678e-35,-4.347653657089342e-35,-4.114336805169182e-35,-4.055922930006761e-36,-7.830709199036682e-35,-5.518097959224162e-35,-8.519667440902524e-35,-7.624056288366271e-35,-5.69339828009112e-35,-5.223071978085366e-35,-1.4071356769990405e-35,-5.479251191123425e-35,-6.525454180495056e-35,-5.455265621752888e-35,-3.2462496196228374e-35,-3.111530531497619e-36,-5.324419961487799e-35,-4.0954438142669377e-35,-3.2409114459967303e-36,-2.0689203130535127e-35,-6.129966073249836e-36,-3.6919379850211903e-35,-3.874666620880972e-35,-4.413317493040919e-35,-7.766750758814839e-35,-1.6565558059508343e-35,-4.9331583722851064e-36,-5.328515328807115e-35,-3.9182837020536283e-35,-9.145897128978797e-35,-8.999856708937405e-35,-2.0101537300571302e-35,-9.975864374270588e-35,-2.8788073752273655e-36,-8.620457531971816e-35,-5.122175583942154e-35,-6.203284463145962e-35,-5.576188388780165e-35,-3.4937063999464663e-35,-9.582635637141304e-35,-2.624022156915029e-36,-7.580254437330286e-35,-3.4934936527396706e-35,-4.462976351434283e-35,-7.66805419342468e-35,-4.994401397863725e-35,-6.925331824826463e-35,-9.745331378150868e-35,-5.07643375789938e-35,-9.406294841005736e-35,-6.316617556418557e-36,-8.961325994533364e-36,-5.606272436070099e-35,-4.8035257586278286e-35,-8.924310492887443e-37,-4.853157588230075e-35,-6.702842842157992e-35,-3.2616475173092615e-35,-9.461707166761087e-35,-7.557708887223724e-36,-7.280776402635906e-35,-5.863946058080959e-35,-6.733309029461591e-35,-8.213069225119648e-35,-4.1187879117703515e-35,-4.004602338763897e-35,-1.6696564775219646e-35,-9.032880359850174e-35,-3.962764853785194e-35,-7.428389030131092e-35,-1.722032807390358e-35,-5.036062443108033e-35,-4.254436758585302e-35,-6.459163455987225e-35,-8.233164641320554e-35,-3.9316236432636504e-35,-9.835108024984807e-36,-8.772850503667614e-35,-3.0016412212985295e-35,-6.363095899242167e-35,-1.343148201322205e-35,-3.6674128759370946e-35,-7.994532326764818e-35,-3.66603482883554e-37,-2.785385976143869e-35],"qim":[-1.0867754e-35,7.618307e-36,2.5508586e-36,-1.1105587e-36,-4.177144e-36,8.224223e-36,-4.3879434e-36,5.5890478e-37,-3.2406196e-36,2.0929306e-36,1.9301066e-36,-4.0149392e-36,2.6410409e-36,1.276682e-36,2.1377096e-36,-4.1172838e-36,1.4534909e-36,2.538702e-36,4.5354972e-36,-8.8243236e-36,9.850465e-37,-1.7370553e-36,5.8317692e-37,-3.8132963e-37,3.9053536e-36,-1.2322203e-36,-3.2708213e-36,-3.6598253e-36,-2.612144e-36,5.9667348e-36,5.0401827e-37,3.8565222e-36,-3.1267637e-36,3.3801178e-37,8.078238e-36,2.1508038e-36,7.4926766e-36,3.9271036e-36,2.7053652e-36,-1.3848453e-36,3.8346704e-36,-5.9171207e-36,2.5866705e-36,-1.2337204e-36,2.593351e-36,3.9670204e-36,1.0348251e-36,-8.160213e-36,4.4943657e-36,1.2239829e-36,6.960139e-36,3.9213215e-36,-3.1819244e-37,5.0842272e-36,-5.911897e-36,1.3407259e-36,1.3669652e-36,-1.5100112e-36,5.03855e-36,-9.435586e-36,4.109204e-36,2.5252486e-37,3.1846895e-37,-4.4766583e-36,7.759111e-37,-4.5669118e-36,1.8847773e-38,-2.4835615e-36,2.7044562e-36,8.45776e-37,-1.1338519e-35,-1.0991671e-36,1.009105e-35,-1.4546308e-37,-3.52168e-37,-1.425556e-36,-7.00039e-37,-3.8771257e-36,-4.7012445e-38,2.7721958e-36,1.3002506e-37,5.4277024e-36,-2.0416776e-36,-5.7503617e-36,5.704282e-36,-4.262542e-37,7.177433e-37,-9.066157e-36,8.379826e-36,7.3594735e-36,-1.817586e-36,5.9038267e-36,-3.5526052e-38,-1.066647e-36,-5.8505453e-36,-5.7192693e-36,-1.4761812e-36,6.264071e-36,5.1798083e-36,-2.5447047e-36,8.821057e-36,-2.988213e-37,-9.80777e-38,1.2704963e-36,7.4278006e-38,3.6695147e-36,-1.4848008e-36,-8.455499e-37,2.6860566e-36,6.395246e-36,-9.018251e-36,-6.62008e-36,7.807872e-36,5.129425e-36,4.3033977e-36,6.4629546e-36,-7.8685284e-36,7.593117e-36,2.9478862e-36,6.655948e-36,-2.7301247e-36,1.4165777e-36,6.570111e-36,-2.361258e-36,1.2777192e-36,-7.24596e-36,-5.100455e-36,-8.952685e-37,-2.7813849e-36,-6.049627e-36,-1.09087404e-35,2.3751326e-36,-3.5892576e-36,5.0254762e-36,1.0009403e-36,-1.0528863e-36,2.9382797e-36,-4.462453e-39,3.1747154e-36,2.2664548e-37,-9.3333285e-37,6.44235e-36,-6.1345114e-36,-2.7395502e-36,2.3108013e-36,4.2115995e-36,6.2647944e-36,-2.7763323e-37,4.5048708e-36,-2.5099068e-36,6.80842e-36,-1.851852e-36,2.585146e-36,-3.290452e-36,5.0329354e-37,2.8599107e-36,6.244241e-36,4.7726706e-36,4.2618483e-36,1.7694872e-36,-6.00733e-36,4.1596013e-36,-8.0477404e-36,4.759907e-37,-1.2983583e-36,-1.8594854e-37,8.337637e-36,-6.625625e-37,1.7542784e-36,2.2035662e-36,5.0398495e-36,-3.6233964e-36,2.2417837e-36,1.6210454e-36,-2.2383044e-37,6.413831e-36,2.3322218e-36,-2.4892011e-36,8.446524e-37,3.539137e-36,-3.1237066e-36,2.956309e-36,-4.55638e-36,4.820512e-36,8.0203404e-36,5.3175084e-36,3.946368e-36,-1.0208989e-36,-2.0685644e-36,-1.8885921e-36,-1.4115873e-36,3.2440674e-36,2.780299e-36,-5.584704e-36,3.633934e-36,-4.8521575e-36,3.7420956e-36,1.0368474e-36,-5.3716833e-37,5.9029687e-36,-1.9733728e-36,2.5345259e-36,-3.5103394e-36,-5.552268e-36,-4.6293603e-36,9.4195934e-36,8.009848e-36,-2.377441e-36,4.465902e-36,6.6390205e-36,9.4994336e-36,1.13278e-36,1.3577442e-36,2.2206178e-36,3.668466e-36,8.6636925e-36,2.8370777e-36,-3.8395327e-36,-6.2431147e-37,-8.7424436e-36,2.7908328e-36,3.730544e-36,-4.2815506e-36,4.2650026e-36,4.245036e-36,-5.847187e-36,-1.0597867e-36,1.1737927e-36,4.540423e-36,1.1389715e-37,3.1568443e-37,-1.3021529e-36,1.5207277e-36,3.5609232e-37,5.085441e-37,-6.6922444e-38,-6.0017467e-36,-4.0149216e-36,-9.477854e-37,4.717176e-36,2.8335525e-36,-4.6913526e-37,8.717126e-37,3.040392e-36,2.8579027e-36,-4.7992147e-36,-5.9715325e-36,5.4343417e-37,7.377349e-36,4.786097e-36,-1.3553462e-36,1.09932054e-35,6.2361374e-36,-5.374945e-36,2.6491924e-36,2.6062618e-36,-1.1397087e-36,5.5144044e-36,1.8620653e-36,-4.9023756e-37,-1.573235e-36,1.7984212e-36,-2.4099953e-36,-4.2623175e-36,-2.1418743e-36,-6.543854e-36,9.506149e-38,-7.0737274e-36,2.7416318e-36,-1.2447815e-35,3.3984102e-36,4.8489314e-36,4.2491172e-36,1.532334e-36,3.1046188e-36,-9.138742e-36,-2.2286782e-37,-4.061184e-36,-5.4450442e-36,7.971013e-36,3.1580616e-36,5.42469e-37,-5.5473734e-36,-7.0943445e-36,-2.0156573e-36,8.1746865e-37,2.0486935e-36,-2.8186864e-36,5.923019e-36,-7.0217456e-36,-6.4301e-36,4.890801e-36,-6.7622946e-36,1.1029575e-36,-7.141396e-36,4.289839e-36,-2.2123953e-36,-5.0960783e-36,-2.0828816e-36,1.5157888e-36,3.2939814e-36,-2.4062026e-36,-3.265506e-37,-1.7689916e-36,1.02488225e-36,-4.9885285e-36,-4.932933e-36,1.0489052e-36,8.626576e-36,6.1293077e-37,-4.9753702e-36,-1.429474e-36,2.4014018e-37,-7.064495e-36,1.2118612e-36,-1.8330998e-36,-4.8101022e-36,-2.611416e-37,-4.1662156e-36,3.0845495e-36,6.761149e-36,6.852002e-36,-7.44892e-36,-5.726179e-36,-9.70165e-37,1.4049074e-36,6.441155e-37,7.5797575e-36,6.745247e-36,3.4538408e-36,-1.7943203e-36,5.919593e-36,-6.011457e-37,-2.0570383e-36,-3.3715892e-36,-1.6433797e-36,-6.120211e-37,7.0265123e-37,1.6332249e-36,-5.4187346e-37,1.02082494e-35,3.6288043e-36,8.114366e-36,-2.0289685e-37,4.507626e-36,5.1213234e-36,2.6889641e-36,-5.6082068e-37,-5.2650406e-36,3.2688734e-36,-3.912278e-36,-7.834513e-36,4.5412534e-36,7.092766e-36,-3.235115e-36,4.0787365e-36,7.850381e-36,9.7383644e-36,-3.62374e-36,-7.795925e-37,8.814248e-37,-2.5861941e-36,4.485642e-36,6.0264e-36,-4.270746e-36,-2.0646875e-37,1.0212401e-36,2.5414027e-37,3.1804376e-36,-5.9644654e-36,2.717537e-36,7.340432e-36,-2.573633e-36,6.772305e-36,-7.820816e-36,8.950713e-36,4.685988e-36,1.1024139e-36,-3.7676154e-37,2.3647626e-36,7.4686e-36,-8.3618135e-36,-5.2013804e-37,-4.9573784e-36,-6.398103e-36,-6.903125e-36,3.523288e-36,3.4003466e-36,-2.1480064e-36,-4.5731652e-36,-4.055471e-39,-2.5284447e-36,-4.9516036e-37,3.6978757e-36,5.883617e-37,-8.1603996e-36,4.273554e-36,5.6816225e-36,4.4952335e-36,2.6174872e-36,-6.196636e-36,-6.163601e-36,-4.9331495e-37,1.0996691e-36,8.9353705e-37,1.746123e-36,-4.0150465e-36,-1.18462294e-35,5.261919e-36,6.304335e-36,-3.105345e-36,-3.326058e-36,-8.462319e-37,-2.1547714e-36,2.6696308e-36,4.7367594e-36,4.6215503e-36,-1.2188059e-36,-4.501504e-36,5.013239e-36,2.11817e-36,3.414825e-36,6.08338e-36,8.6548615e-37,-1.1074484e-36,1.0610606e-36,4.949857e-36,6.0419455e-36,-5.077233e-36,-7.000423e-36,-1.0727693e-35,-1.3409544e-36,-1.9111655e-38,-1.03829714e-35,-6.296224e-36,-2.34283e-36,-8.851225e-36,-1.9187228e-36,-1.4583478e-36,3.95364e-36,-1.5451281e-36,-1.05799464e-35,2.3548994e-36,1.7755346e-36,1.4903722e-36,3.4780545e-36,-6.2260623e-37,6.310417e-36,-3.4631915e-36,4.5913605e-36,3.5645747e-36,-3.837905e-36,-2.807002e-36,-7.9763555e-36,5.2621223e-36,-8.576828e-36,3.2002156e-36,-1.4157985e-36,-2.7203645e-38,-1.197124e-36,-4.9235338e-36,-7.8835105e-37,6.0195114e-37,5.3008725e-36,4.7982454e-36,-9.751761e-36,-6.2794694e-36,-2.9848518e-36,-2.1546893e-36,-5.108865e-36,3.066283e-37,1.45572875e-36,-6.279813e-36,1.9049742e-36,-6.373294e-36,6.566556e-36,-2.7427482e-36,4.8000226e-36,8.1543284e-36,-8.805708e-37,3.6748318e-36,-3.575134e-36,8.147474e-36,-2.2062095e-36,1.2486278e-36,9.250957e-37,-5.245955e-36,3.799669e-36,3.4221404e-36,5.508874e-36,-2.3713175e-36,2.7426655e-37,1.0646837e-35,-4.1575967e-36,3.1402226e-36,-4.2875608e-36,-5.362319e-36,2.2980147e-36,-7.999415e-36,-4.8515035e-36],"qre":[1.1853025,1.0177113,1.0679018,0.95145375,1.0606282,0.8898872,0.97731805,1.1501082,0.8988792,1.0636331,1.1234162,1.1188754,0.9193907,0.93683916,0.8462834,1.0226191,1.0953077,0.96321696,0.93041897,1.0863721,1.0904857,0.8580656,1.0880021,1.0425876,1.0480618,0.8922864,0.851262,0.9429859,1.0358106,1.0300725,0.9582941,1.0134785,0.94785345,0.93435585,1.030748,0.9279725,0.90007764,0.9429484,1.1340241,0.95131904,1.0754111,0.93275666,0.9199541,0.9994511,0.87054616,0.911722,1.0659876,1.0527009,1.1537374,0.9571041,1.0171307,0.9693075,0.9375154,1.0657969,1.1153449,1.1132584,0.9614952,0.98307085,1.1452186,1.0066658,1.0844694,1.0421277,0.9896403,0.97645366,0.950494,0.88222295,0.99963933,1.1299937,1.1424328,0.91856813,1.1419908,1.0147316,0.9591752,0.8972728,0.9109243,1.0093795,1.0036702,1.1339177,1.042607,0.96879303,0.9876565,1.0983976,1.1233777,0.8816739,0.9033344,0.8972493,0.96809703,1.0661412,1.0261286,0.99707335,0.9331515,0.9639933,1.004613,1.0132427,0.9167602,1.1825675,1.2018381,1.1451709,0.9425949,1.0165569,0.9455091,0.95709,0.93494046,1.1509215,1.0213053,0.9770907,1.0646046,0.98514557,1.1585666,1.0056615,1.0377314,0.9599179,1.029641,0.9158131,1.0541124,1.0380725,0.9788644,0.9052299,0.88819706,1.0886858,0.97259045,1.0053835,0.97787386,0.8955529,0.9881812,1.2146049,0.99461097,1.0862304,0.89713305,1.0644966,0.99824643,1.035263,0.82348263,1.0213249,1.0618249,1.0038743,0.96279633,0.92162025,1.0525365,0.99774617,1.016986,1.0269556,1.0352995,1.0985442,1.0711501,1.1273029,1.1684415,0.97797525,0.9552221,0.9969716,1.0938281,0.9410423,1.0216848,0.9956068,0.94521177,1.0308015,1.0559533,0.931414,1.0052067,0.88115615,0.94184786,1.0909861,0.9870605,1.0273848,0.96155506,0.98233235,1.1299937,0.89748144,1.0471189,1.1111945,1.0497172,1.1468643,1.1719459,1.0004878,1.1113316,0.83887726,0.88377094,0.88265365,1.1535636,0.90814465,1.0267651,0.95696694,1.1491569,1.0828917,0.9689871,0.9993207,1.0215051,1.0699539,0.9380724,1.0468867,0.9596931,0.85766315,1.0409058,1.008334,0.87562245,1.1097233,1.1589249,1.0146123,1.1586801,0.91058284,1.1500468,0.9741438,1.1476737,1.1317095,1.0304129,1.0066402,0.925301,0.95007056,0.8888822,0.99540144,0.99550664,0.9908139,0.92800146,0.8503658,0.8819747,1.012136,1.1548291,1.0205542,0.94091815,0.9726573,1.0024172,0.9453534,0.91532916,0.841539,1.0033376,1.0217932,1.1329608,0.9194758,1.0330168,0.9965604,1.0324047,1.1558158,0.8671812,0.95094067,1.0202702,0.9713222,0.92415506,0.87921685,0.8444058,1.1428996,0.9510506,1.023974,0.9510345,1.0284202,0.982251,0.9828414,1.1656699,1.0348265,1.0100082,0.90930825,1.108477,1.0450999,0.9673542,0.9436311,0.8946847,0.96671647,0.9514588,1.005724,1.0889858,1.0549673,0.96646583,0.91844577,0.84926385,0.97938734,1.0269346,0.93082404,1.0084087,1.1607921,1.0000043,1.1042377,0.8886987,0.8817472,1.1487901,0.89096665,1.0164969,1.0140597,0.97111577,0.99182665,1.1388569,0.9697224,0.87239045,0.8425199,1.0686747,1.0093335,0.91080385,1.0263642,0.9356436,1.0589701,0.98197955,0.8614287,0.8827951,1.1157241,1.0550039,0.9693516,1.0586313,1.023245,0.8813731,0.8958207,0.9981528,1.0220857,0.88115907,1.0463842,0.9441886,0.8750091,0.84344274,0.9069875,1.1056505,0.89237946,1.1716722,0.8263213,1.0957623,1.052748,1.0904288,1.1146038,1.2325965,1.1971955,1.0216359,0.9993694,0.8148457,0.885682,1.0140601,1.1156652,0.86974615,0.9786823,0.9303768,0.9890243,0.89318943,1.0296127,0.9524961,1.052464,1.1441785,0.916286,0.9513263,1.1790984,0.8972571,0.98738086,0.98265624,1.0445194,1.0431348,1.1162101,1.0347865,0.9017516,0.87586343,0.9826432,1.0510435,1.076044,1.0906459,0.9980206,0.95718145,0.9871031,0.96266896,0.9162194,0.90196896,0.9981387,1.0603596,0.94051164,0.94887024,1.0519257,1.0748297,0.9979088,0.9700804,0.9995257,0.9473067,1.0412107,0.93292373,0.94550014,0.90501326,1.0936209,0.8883231,1.1458195,1.0092793,1.054303,1.0026333,1.0606447,0.9263549,1.2000755,0.89119196,1.179126,1.0781025,0.98257935,1.043844,0.9039915,0.9632701,1.0731126,0.8487701,0.9484006,1.0151124,0.8304611,0.9686504,1.0746303,1.0559533,1.004026,1.1157268,1.0971998,0.9930403,0.99467856,1.0903851,1.1036955,0.989601,0.9154425,1.017468,1.1646919,0.93913454,1.1682229,0.89758205,0.9564658,1.082708,1.1193236,0.9452123,0.85539097,1.1201807,1.0565444,0.84326714,0.88487846,1.1529708,0.9631187,1.0889574,1.026763,0.9153813,0.87911415,1.0259356,1.0863438,0.9713936,0.98742956,0.85358685,0.87687707,1.1202232,0.9863191,1.0685829,1.1372225,1.0543045,0.9872614,1.0435203,1.1131381,0.97122204,0.88895464,1.1008347,0.98132825,0.996623,0.92513424,1.115774,0.986075,1.0490549,1.0619636,1.0396802,1.0615131,0.84641576,0.8762082,0.8917364,1.0644563,1.006411,1.033323,1.0297109,1.1235645,0.9153919,1.0682539,0.82609326,1.0450654,1.1051624,0.9632725,0.99284726,1.2058797,1.017572,1.1443245,1.028627,1.1748837,0.99309033,1.0716767,1.165005,0.94317156,0.9965974,0.9147881,1.1113874,0.9719076,1.0020331,0.90128535,1.0703366,1.0698441,0.9665202,0.9269816,1.014775,1.0265087,0.9337738,0.86730945,1.0430604,1.1113116,1.1228435,0.96129936,0.8807785,1.0752252,0.8626618,0.9429892,1.2060854,0.99495935,1.0925685,0.9098264,0.9989707,0.8959819,1.0817078,1.1130056],"re2":[-8.213945557895629,-8.993173052862689,-9.016885556461492,-8.955876534586968,-8.039179585572295,-9.743096285743254,-9.54063415812857,-8.24500982566272,-9.476823915269815,-9.009875324491246,-8.51462772286908,-8.541392473813127,-8.902738428063756,-9.704761745745259,-9.976483603129115,-8.373443966789997,-9.090383541281659,-9.757950026208684,-9.939554784609788,-8.346229278807904,-8.14825333458319,-9.444166172724945,-8.597684427010398,-8.181708455676786,-8.658060886162234,-9.594994677119399,-9.540813117505106,-8.512410170141491,-8.642288854844667,-9.513947114096334,-9.19557074111217,-9.864936608962145,-9.515102441489002,-9.373222284080335,-9.448481817757829,-9.206394247517448,-9.92035555951843,-8.716087128277906,-8.67213783125404,-8.566331221966905,-9.14809945434483,-8.887421702099966,-8.926389965318075,-8.183588893139575,-9.7657045008955,-9.236085356310118,-8.425841588390313,-8.692843619146748,-8.018731536436393,-8.919594838241986,-8.636380343481097,-9.687709145008302,-8.56539734474383,-8.648756335731795,-8.221402717844326,-8.573901386772421,-8.858233756969735,-8.77214631057571,-8.60152403279179,-8.274941443714463,-8.29090628965302,-8.730485416392941,-8.291794083574743,-9.775001824087555,-9.137109546134877,-9.7473323518591,-8.83886975458089,-8.351898740085655,-8.24865110499854,-9.238307742950406,-8.041545991404012,-9.250390781269319,-9.216712640954139,-9.777628742921484,-9.108365297579583,-8.783068934512773,-8.778146350990282,-8.441992380161224,-9.341679553133096,-9.886114543078833,-8.60640980206388,-8.633838647796699,-8.765832734024894,-9.678146332829964,-9.687340475380607,-9.563740714053624,-9.824589628635003,-8.083850308884047,-9.547579077394097,-9.650999491124495,-9.854504700671892,-9.127381820976732,-9.378521823738966,-8.417402750477368,-8.83236766083516,-8.191729948978857,-8.138475114994161,-8.265220145488492,-8.890875762918144,-9.324196337128585,-8.550969596385293,-8.88117312459009,-9.957052734997406,-8.141323114261507,-9.217799833651208,-8.213474575849164,-8.288781344848328,-9.511060017194943,-8.282439093626103,-9.127492220335103,-8.875033747477492,-9.875436743010715,-8.53634401008842,-9.752923937471609,-8.28652736862231,-9.267088966569268,-8.656372577022017,-9.055853067620784,-9.649537829078152,-9.102240450093932,-9.935935422037511,-9.815144983173091,-8.929331632510427,-9.72291731616717,-8.464819158229465,-8.077478189568325,-8.764765313828867,-8.59399170863807,-9.304555267749802,-8.800495281321062,-8.531455964691103,-8.001709718319159,-9.877004932503436,-8.79121457502422,-9.308204727616108,-8.234795640063675,-9.694521091922285,-9.663397610707335,-8.571888507246939,-8.103781139286191,-9.15404194487837,-9.643668280163734,-9.309618917744139,-8.150403782543728,-9.19926141845684,-8.140672715482443,-8.36609760618249,-8.577659997101655,-8.985119549551328,-8.86978965520721,-8.96416369719373,-8.841110782146998,-9.595602146552915,-9.910122803438698,-9.288969804495684,-9.12357273405904,-8.022656008739311,-8.617834694241814,-8.676722784386692,-9.360782766308745,-9.098919907750615,-8.316757756641426,-9.59525938697497,-9.178273704747957,-9.774720517693755,-8.284099187614755,-8.49527802336805,-9.178592718924715,-9.38373605243268,-8.033396125096633,-9.120183789261295,-8.584968306355497,-8.159386481593586,-8.771646887956871,-8.253226636639253,-9.954854960635693,-9.740717173379643,-9.209283717990349,-8.221830682944832,-9.80317269245983,-9.534610715848451,-9.20318209706192,-8.073166865227359,-8.14301377871774,-8.690789532100657,-8.480787495201168,-9.320018027437083,-8.327618943864163,-9.153096872598992,-9.004892642094775,-9.0149550553507,-9.706238600976235,-9.396867286402948,-8.742537883347936,-9.404843182671799,-8.575309226297568,-8.173303461512702,-9.029674910552867,-8.2909977589475,-9.88073803622209,-8.115948800525686,-9.675641280680573,-8.22235146278241,-8.134520396720992,-9.676711991136106,-8.33386993823245,-8.784663352665184,-9.308700720438432,-9.192192052733823,-8.951638094625423,-8.60207394509734,-8.86465518958163,-9.827033542548659,-9.77265608209441,-9.487371508782552,-9.036538806848494,-8.12019560337007,-8.214864635564403,-9.938285510780588,-8.970216284691212,-8.169108188816004,-9.142562065704242,-9.122562041333087,-9.611497312638742,-8.708482065718481,-8.47567667052209,-8.32801401353503,-9.188054233783248,-8.045285009913934,-9.845544952056258,-9.123629866627489,-8.30647183871384,-9.457380096454893,-9.504568338485793,-9.46066331952282,-8.58721923471666,-9.642563513405932,-9.823284604441934,-9.496001048532953,-8.101986575069889,-9.451676642487364,-9.296595062160062,-8.937276541766519,-8.995293664298448,-8.805884398721567,-9.780441863250541,-8.529865509265278,-9.024496083385346,-9.20169133669957,-8.981750823866236,-8.339224402230915,-8.846109872778081,-9.357552695342182,-9.696391280607525,-9.826179752447297,-8.976306804790175,-8.765694117697397,-9.291451560041876,-8.181039831979296,-8.934051011529656,-9.832032297528603,-9.909492340094893,-9.55982465947318,-9.740429946233654,-8.85981189941923,-9.781192318385006,-8.146091331534347,-8.204279386892598,-8.989179439532206,-8.593213290484982,-9.41646220029621,-9.115556329447996,-8.07424441592311,-9.776117323167377,-9.279698162174197,-8.269142912272716,-8.587219884793779,-9.519570999454746,-8.397884358313883,-9.847943606880776,-9.78146235949595,-9.61517826773164,-8.601444974608029,-9.171474656332963,-9.359298329568084,-9.552869498224783,-9.90630643846647,-9.404911594462451,-9.634469167450732,-9.944956749611467,-9.261855035672676,-8.89370790739602,-9.459544016130927,-9.876157932539753,-8.027348216513824,-8.588788075683727,-9.283715042592252,-9.562329011726991,-9.837784832279322,-9.074343971808936,-9.294078333829491,-8.907355612230326,-8.745084756172936,-9.755168951269964,-9.924738993623484,-9.993767437423832,-8.741154700076736,-9.777968625741401,-8.262866667551693,-9.931741880752572,-8.028675732943489,-9.29054800666744,-8.575498187860996,-8.52641123434052,-8.052848717018817,-8.31695227472084,-8.657738897417156,-9.131016211710488,-9.828111364212523,-9.05690898786855,-8.391118924194345,-8.017028523095302,-9.66687474764387,-9.816639314717099,-9.930057847503697,-8.880448683225854,-9.938850272145274,-8.727138502534299,-9.760691090070877,-9.16212091912569,-8.326018978280416,-8.994831316775832,-8.429086221956767,-8.225365896538388,-9.760851348064424,-9.950195558628641,-8.197028991337193,-8.824804783249748,-8.773987615622106,-8.655556345828202,-8.454370351322382,-9.198081219510872,-9.271180244182236,-8.6697614823936,-8.364062843761227,-8.877161366997239,-8.838504279328745,-8.67341482322201,-9.002282000585508,-9.95766867277765,-9.381378941031091,-9.994868289888087,-9.426693301960878,-9.999453991937944,-8.61170393176192,-8.511854306878497,-8.876559954329839,-8.174830854849677,-9.044133056013564,-9.022663562301076,-9.754188782608828,-9.004618815819704,-9.402726571551266,-8.522962373347923,-9.279082606736228,-9.39201415387518,-9.66312599157811,-8.740935575439622,-9.256808718158279,-8.574503673853402,-8.155281045804315,-8.028713365154067,-8.537813908054725,-9.343719376225332,-9.255168042866748,-8.166154140288775,-9.592292378534957,-8.076872318299278,-8.64503858460887,-9.624954807604691,-9.359738677322218,-9.337126273219994,-9.731561030481084,-8.476066834365374,-9.583055596331754,-9.276104461986158,-8.751155158751494,-9.951854002100747,-9.012133407986244,-8.453798775268922,-9.418169844013663,-9.381934457921126,-8.059594790001942,-8.55394932305444,-8.101781386630348,-9.102646764921401,-8.509399202900804,-8.453676972965779,-8.113244314464637,-9.855229799221895,-8.664683106214557,-8.225943480512084,-9.102100126654012,-8.44203439309642,-9.692077170926748,-8.429486119578389,-9.094348929456103,-8.106550396983742,-8.852273045708655,-9.86991277019153,-8.687602686416977,-8.706184143617275,-9.738031924299626,-9.784143453993648,-8.43305133789977,-9.545757667360155,-8.848996904090463,-8.118674289862287,-9.795699505373308,-9.411999869981763,-9.01098336348039,-8.315967622859375,-8.537175788193114,-8.93009527131697,-9.558489428188246,-9.807932679361915,-8.633608060199306,-9.577468636229064,-8.105954710193782,-8.444437514426449,-8.490463042853309,-8.518532012743371,-9.512849623926773,-8.431829752840187,-9.403705959373978,-9.904362339749786,-8.094062205080633,-8.3523767496349,-9.765136943891628,-8.827190963087874,-8.50216252248429,-8.501357560386307,-8.0665563785235,-8.087591603817447,-8.379514936051434,-8.690288885139232,-9.619730089798207,-9.69757788692481,-9.089819847862842,-9.25637777017845,-9.371594953488,-9.406267115182807,-8.956937371830398,-8.275962041063238,-9.136239868229778,-9.104251065711976,-9.913303698864832,-8.312108428755288,-8.70588798458824,-9.589789549051215,-9.307215447998814,-8.196663029539264,-9.46509219282843,-8.107398002581352,-8.40059470025199,-8.238929786980165,-9.829807444548235,-8.21196884136561,-8.470121141026306,-9.885073402672306,-9.507384019103636,-9.516233001371733,-8.040880530438821,-8.803722481267572,-8.275559402998603,-9.855188604761048,-8.598013084498644,-9.182851863492719,-9.921433943498434,-8.985074398750879,-9.007276715370946,-9.485032455160777,-9.380303098365845,-9.796644843570716,-8.735987612841669,-8.51145576839385,-8.537744747603718,-9.638259451786803,-9.777204543523801,-8.514535780339827,-9.53567270914397,-9.874605219293032,-8.083095188335355,-9.854134110813044,-9.10533562776949,-9.78221267347788,-9.954430085332696,-9.99972606232412,-8.530651537918022,-8.00765896473306],"im2":[-8.413095581859759e-35,-2.333448063894392e-35,-4.3070649890913003e-35,-8.841451855860639e-35,-3.6230868825374805e-35,-1.1607184078872378e-35,-7.704028071038326e-35,-3.6991686131850264e-35,-7.565509922866397e-35,-5.585618596298636e-35,-3.4849306576903747e-35,-7.40387289063838e-35,-7.383811770297177e-35,-6.930437135974604e-35,-5.520130137036703e-35,-4.585837494843271e-35,-4.878609704756164e-35,-3.7606644939204547e-35,-1.957810233111381e-35,-8.358733265818846e-35,-8.010171841814581e-35,-2.494934927436146e-35,-6.534405916221252e-35,-7.276068681280035e-35,-5.651661649924036e-35,-5.157205428194066e-35,-7.350031397456617e-35,-9.327376561010609e-35,-5.366016482733872e-35,-2.0536960708760986e-35,-6.666019659293231e-36,-5.485202876986605e-35,-4.518245588913776e-35,-2.773332123651801e-35,-1.3693627107720516e-35,-1.8512520380317665e-35,-5.934470645431433e-36,-4.912245211529503e-35,-5.823413128916583e-35,-1.7196485923025705e-35,-1.9377013976515566e-35,-6.964191469432945e-35,-5.374180793675579e-35,-9.70555899800202e-35,-6.169714322716907e-35,-5.246402649396641e-35,-8.072463374340254e-36,-9.652656347663653e-35,-1.1913017848886952e-35,-8.021341853368549e-35,-2.4321118607200087e-35,-3.741807954497472e-35,-6.438275514590407e-36,-5.356782270355564e-36,-6.715086003407191e-35,-4.849522144707796e-37,-8.848951964667839e-35,-4.8029119845395047e-35,-2.149916002529778e-35,-9.542299639412196e-35,-2.1624414314811202e-35,-2.7259209845398934e-35,-2.2011287508277364e-35,-7.843194062229116e-35,-1.297791662804809e-35,-5.758593125410802e-35,-3.1636485046530014e-35,-6.4343347927576e-35,-2.0106021823452623e-35,-6.622900870020439e-35,-8.435483038763206e-35,-5.601279082962203e-35,-3.066020488752452e-36,-1.0596372128227326e-35,-1.072563842055385e-35,-5.235876989002275e-35,-7.117995842513225e-35,-6.048940527910398e-35,-7.230067381328751e-35,-5.994571893171045e-35,-2.400972631351782e-35,-4.782816434912084e-36,-9.678845686643467e-35,-9.50237771537544e-35,-3.301349466059743e-35,-6.986497399652508e-35,-9.128545608215478e-35,-7.394452131799485e-35,-7.434072893136911e-37,-3.573951888228099e-36,-7.653625016917659e-35,-2.164122571211193e-35,-6.39893333111245e-35,-2.3683151339630556e-35,-6.445718922107074e-35,-4.6049356509445045e-35,-4.687884299857172e-35,-3.7648744577443856e-35,-4.615627110360828e-35,-4.4828680284793317e-35,-2.2667465155411514e-35,-3.698677757781099e-35,-8.184761128349754e-35,-3.604986469694283e-35,-8.090709186831085e-35,-4.381315563633625e-35,-1.290283941029705e-35,-9.519695713273703e-35,-2.1192938067807285e-35,-1.7596717205611476e-35,-8.791199587921169e-35,-8.718391006444042e-35,-6.383797622311848e-36,-3.954011716526251e-35,-5.393201618738151e-35,-2.0767795059040849e-35,-7.041954135880944e-35,-7.922837613921752e-36,-5.400760323680964e-36,-2.2457148360863207e-36,-5.485077894731335e-35,-8.309133262320411e-37,-1.0906451611805034e-36,-3.633131017534259e-35,-1.0909908724929428e-35,-5.158525047385919e-35,-7.508796364329101e-35,-7.840000330770993e-35,-9.461126848865587e-35,-7.134233438642303e-35,-9.457822267527585e-35,-3.04850830123518e-35,-5.180324782490399e-35,-2.567389536854583e-35,-6.847154933170136e-35,-6.299233161109974e-35,-7.170329534766997e-35,-6.164328313160504e-35,-4.499971450739481e-36,-6.571987179729803e-35,-9.570380040202974e-36,-1.1188949559339589e-35,-9.827584653719666e-35,-9.276236021202289e-35,-5.475175201847149e-35,-2.7358623438015326e-35,-2.5668020087493023e-36,-1.7877697892994292e-35,-4.29678640849103e-35,-4.492220709232631e-35,-6.624595023090151e-36,-7.670215045273717e-35,-3.4906897722092896e-35,-7.945169865857981e-35,-2.2004474515799618e-35,-2.1907291562352636e-35,-6.012661571002786e-36,-5.878931831921484e-35,-3.4065590449064916e-35,-2.433095216291303e-35,-6.07609669027567e-35,-2.1273301472033243e-35,-8.604456266905135e-35,-1.2645246091555018e-35,-3.862730256713529e-35,-8.681401059350835e-36,-1.0387447297874874e-35,-2.329318485512981e-35,-4.471514896045488e-35,-2.9451925562605784e-37,-1.9309737768862865e-35,-3.5594317027011176e-35,-2.9015388490687643e-35,-1.4395042211352637e-35,-3.457757545264248e-35,-5.9464488829386927e-36,-6.337172654312559e-35,-6.578846419746918e-35,-3.329221237548853e-35,-3.5397044641567994e-35,-4.044317668995134e-35,-1.601496308129645e-35,-3.268992657392114e-35,-6.846520580228299e-36,-3.1031331931661705e-35,-2.913546698569157e-35,-4.613032947704317e-35,-8.690581822175419e-35,-2.4135858320255e-35,-4.311562399411347e-35,-3.913043396615705e-35,-3.5746099782397486e-35,-4.2948203283560666e-35,-7.467791855682467e-35,-1.7736100586234826e-35,-4.981308041748641e-35,-7.105442247503191e-36,-1.571703168320533e-35,-9.002091002182828e-35,-2.33944200998315e-36,-4.725810385655081e-35,-1.7275510822176885e-35,-5.492491130372746e-35,-8.083264238755979e-35,-6.325934847072376e-35,-1.5441873302412733e-35,-1.1683811235400898e-35,-4.962944109324304e-35,-2.894343631389896e-35,-1.2246766775544104e-35,-7.445515003880509e-36,-2.4000244295649085e-35,-2.7754460311984717e-35,-8.769686956442923e-36,-5.336556989317871e-35,-1.8378172406468505e-35,-7.208915127441328e-36,-7.576192913463812e-35,-8.241303752579865e-35,-8.468300908415669e-35,-1.1055786945515833e-35,-6.750123903678866e-35,-8.082605927898809e-35,-3.232775959675239e-35,-4.138741866474391e-35,-8.888469444716614e-35,-5.210134059768035e-35,-7.522072612173027e-35,-4.83434531158553e-36,-6.590360449621673e-35,-4.656615278745096e-35,-4.2124087558827993e-35,-9.55945067814461e-35,-8.419623379009169e-35,-4.1017448393272125e-35,-3.52098150266098e-35,-7.747523797059313e-35,-8.216401206475816e-35,-6.223336880698648e-35,-7.910362194460596e-36,-5.083202213887289e-35,-5.537584164249974e-35,-5.666370126622896e-35,-3.284022552776823e-35,-3.0410225315408697e-35,-8.019645747167712e-35,-7.448338433301243e-35,-3.835610260032459e-35,-1.412602750876334e-35,-2.9722967944788456e-36,-8.486790332551169e-35,-2.5259711649941006e-36,-1.0508700380758916e-35,-5.869888330408969e-35,-5.663511983306001e-35,-1.531820581577614e-35,-9.904980927692527e-35,-5.770176022782058e-36,-3.4232842929946545e-35,-5.324222565767763e-35,-3.192166626837567e-35,-4.1187907706453993e-35,-6.11515969903472e-35,-9.183217860697962e-35,-3.475271880017325e-35,-7.426767337184976e-35,-7.859011896484556e-35,-9.550260418407869e-35,-4.4105521349312414e-35,-9.798779318854818e-35,-1.6016143069617938e-35,-3.8220976594658703e-35,-5.289552767553127e-35,-3.143861544699308e-35,-1.5441025792441432e-35,-9.635824549919664e-35,-6.058791491499217e-35,-7.999374577982476e-35,-8.904831333524282e-35,-2.453175195182955e-37,-3.0920665800781075e-35,-5.763366427481729e-35,-5.855241595268633e-35,-9.790793998965976e-35,-6.533902822052383e-35,-5.405366878311231e-35,-1.3877782201912268e-36,-6.742910261655117e-35,-3.303177257114873e-35,-8.681078446270348e-35,-7.009562121425135e-35,-2.4267792486835514e-35,-7.708158040782708e-35,-8.496986075405827e-35,-9.363050924591366e-35,-4.919756377208223e-35,-9.73924713845681e-35,-7.882323870859439e-35,-3.359627879524235e-35,-7.917537145710059e-35,-7.746735713527481e-35,-6.782160121648513e-35,-2.7450925181146556e-35,-4.5448272961719766e-35,-2.2483741047596538e-35,-5.543605431285089e-35,-4.084815246207983e-35,-9.875722039107038e-35,-6.913128265899071e-37,-7.906925332420039e-35,-4.632472101808408e-35,-2.6769247073959397e-35,-8.520656580711127e-35,-7.654504420189211e-35,-4.0819838170260614e-35,-7.439645032886931e-35,-6.333981679830751e-35,-8.14096004589321e-35,-6.874372112639512e-35,-5.577035704369348e-35,-7.044662466829532e-36,-4.725735058874647e-36,-8.587325007497414e-35,-6.943280839647501e-35,-8.785934958287041e-35,-6.099540328770306e-35,-8.310008719688084e-35,-6.530741548543595e-36,-1.1146941226772021e-35,-6.144666839836637e-35,-4.751307285619158e-35,-3.26918123110415e-35,-5.596542199404141e-35,-3.4273673331781783e-35,-5.442200496012281e-35,-8.777640870707105e-35,-1.1778410217461887e-35,-5.500309236297995e-35,-3.4234014220902326e-36,-4.263577782897423e-35,-2.4189421969820768e-36,-5.583417730393781e-35,-1.547361896953547e-36,-8.33240142519998e-35,-5.841450113922295e-35,-1.615666900936985e-35,-4.5075326877334316e-35,-6.813393525095561e-35,-7.584034261113037e-35,-7.748014025514404e-36,-8.548484307622358e-35,-8.766696733958879e-35,-5.629672508141608e-35,-2.2748646993441766e-35,-8.138577443297939e-35,-6.049680172703355e-35,-1.8906624360751577e-35,-1.5188614977760138e-36,-4.443204088523873e-35,-4.1023706904889745e-35,-9.171936801811341e-35,-9.98933601464892e-35,-5.300733878043179e-35,-7.446058703592139e-36,-4.986601343316333e-35,-9.218092762428576e-35,-9.556729254231365e-36,-6.246362295225612e-35,-5.089112147653397e-35,-6.054997579950604e-35,-6.645892280914087e-35,-1.0499222276985786e-35,-5.973796836534365e-35,-1.2924951914509974e-35,-7.82710641512805e-35,-4.531769690218012e-36,-5.468698530977389e-36,-4.872903463502648e-35,-6.628955474439983e-35,-1.4679935455077264e-35,-4.096178256774174e-36,-8.745597198225598e-35,-1.525601561052462e-35,-5.926372850806347e-35,-8.800980071816002e-35,-8.690445054993937e-35,-5.486805936747363e-36,-4.4554298527112534e-35,-4.7216627462958543e-35,-8.620159343372661e-35,-2.4022008149172578e-35,-7.968394630769313e-35,-7.393715244311657e-35,-1.9941408239104205e-35,-4.2685084390277134e-35,-8.103024448056597e-35,-4.184558084136477e-35,-3.7909436458624066e-35,-4.422332870457377e-35,-5.58743747615189e-36,-9.771555934490798e-35,-7.049399136015142e-35,-2.722048718341816e-35,-2.366875039493167e-35,-6.094609991813335e-35,-8.488878130271016e-35,-8.485015655772858e-35,-9.009421574806511e-35,-2.3410122730386682e-35,-1.7341340375038748e-35,-7.160160716355214e-35,-8.124837327999106e-35,-4.756663236251763e-35,-4.543917043833685e-35,-5.097989783239487e-35,-4.358774006220289e-36,-2.3696544454368528e-36,-4.970812061096415e-35,-5.260245454080588e-35,-3.5402101625134416e-35,-3.518172671001841e-35,-5.228464605602601e-35,-2.502144812757678e-35,-4.983151500335694e-35,-7.359093649895002e-35,-4.179086551139022e-36,-1.0763380596552596e-35,-7.490476871899553e-36,-8.956579361566568e-35,-8.052701780441611e-35,-8.934289494489824e-35,-6.550155879669367e-35,-3.942064455709828e-35,-8.156072649720145e-35,-8.226443849798849e-35,-3.299854033759649e-35,-9.861766411624049e-35,-5.581472340336094e-35,-5.857193805326409e-35,-4.622893130301092e-35,-2.662052445568574e-35,-9.621689184349836e-35,-3.268582842124944e-35,-2.3374661466114896e-35,-7.595640639090373e-35,-5.630950175749595e-35,-3.0825088911544574e-35,-4.401108783562262e-35,-3.852999032893991e-35,-4.1058711272646807e-35,-1.7702511236269835e-35,-9.496856603901982e-35,-7.856964843042023e-35,-8.984715275982597e-35,-5.216382213579929e-35,-7.555283514446108e-35,-5.335697286665705e-35,-4.46892694791378e-35,-4.0597286597578537e-35,-9.152209249764486e-35,-9.645834733263854e-35,-6.278832740345445e-35,-9.01713003447627e-35,-6.805808748187992e-36,-5.225881583016051e-35,-7.376107880616359e-35,-7.117912232039088e-35,-7.518520378644909e-35,-5.689737962525444e-35,-5.449055202531441e-35,-4.577208573530584e-35,-5.812862025607332e-35,-7.478194007625163e-35,-8.009630089286855e-35,-6.017793793472768e-35,-8.979532642785769e-36,-7.681849839827595e-35,-2.1736994795701134e-35,-1.2705963981153978e-36,-5.296747395175289e-35,-6.844668337086489e-36,-4.92999537612469e-35,-1.4889073965770215e-35,-7.061043619449295e-35,-6.075956605770476e-35,-8.41025788905667e-36,-8.473954735605552e-35,-6.160589074385736e-36,-3.534676487648688e-35,-3.294764929598792e-35,-7.178751455073497e-35,-7.557705517147994e-36,-1.3838989449642346e-36,-7.134555439240286e-35,-3.206955298910958e-35,-6.086140288453434e-35,-9.014574814926394e-35,-6.357919750079261e-35,-6.342454621676573e-35,-5.993055418938655e-35]}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/tiny_negative_real_components.json b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/tiny_negative_real_components.json
new file mode 100644
index 000000000000..8d358b76b817
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/tiny_negative_real_components.json
@@ -0,0 +1 @@
+{"re1":[-3.6653680308656644e-33,-1.3510765365407995e-33,-9.643833137417554e-33,-5.577796263240892e-33,-4.3328284503270115e-33,-2.60860847101164e-33,-1.3822733980694513e-33,-5.1559396968802844e-33,-4.078947506478942e-33,-7.148468732775392e-33,-3.539879652927541e-33,-9.686502072807058e-33,-1.050796088313516e-33,-3.776709212859186e-33,-7.364982841446205e-33,-8.367248594330671e-33,-2.0931795858711688e-33,-6.1335117786035166e-33,-2.5230657593901776e-33,-9.358248219004974e-33,-8.792537043022698e-33,-6.821674644632508e-33,-7.324244202854771e-33,-1.565872241532602e-33,-8.822551637583884e-33,-2.4387323981671427e-33,-1.8858961095349625e-33,-5.033612674405553e-33,-6.376393247870476e-33,-7.224475629388412e-33,-8.725138299999488e-33,-7.342571614294328e-33,-2.257038890029438e-33,-5.661876427373569e-33,-1.8187131639594612e-33,-1.925557063069826e-33,-3.483752825569708e-33,-1.0296280755910137e-33,-1.8904098585349374e-33,-7.295249071630273e-33,-6.994744931883928e-33,-8.662297462171397e-34,-8.712880789173705e-33,-3.378021208374345e-33,-2.959643186567258e-33,-5.2391490050949e-33,-8.453678570054725e-33,-6.1004692514942985e-33,-8.90861593134792e-33,-5.542323544241582e-33,-2.212152180201347e-33,-4.7407829516979495e-33,-2.789789918577309e-33,-9.438724669535846e-33,-1.618431276742488e-33,-8.686037560771425e-33,-1.1747478402251489e-33,-7.097096803031656e-33,-5.7871877073030666e-33,-3.886950627012618e-33,-3.4939952738681584e-33,-6.115539979393703e-34,-9.224829719287345e-33,-1.57009368839256e-34,-1.9533044909832656e-33,-7.726114505625586e-33,-6.430220665698121e-33,-3.0680856646015344e-33,-8.251553218619212e-33,-4.965645261752192e-33,-5.46764093893633e-33,-4.981410114537677e-35,-2.045656192145563e-33,-7.851559110308226e-34,-4.345304951525697e-33,-7.819589290863997e-33,-6.808136534122698e-33,-6.01896721668587e-33,-5.908898267015109e-33,-1.2714003316724877e-33,-5.34353498787099e-33,-4.3707126997949913e-33,-8.23400458436633e-33,-3.110360618278296e-34,-2.2604497523733325e-33,-7.477515321282414e-33,-8.602039517205062e-33,-3.700183651983851e-33,-5.71339871716149e-33,-5.131464548254615e-33,-1.0293977517460362e-33,-7.70645951493921e-33,-3.0738094967181097e-33,-2.0746282701102493e-33,-2.0153421532157445e-33,-9.320305192068849e-33,-6.65650942104219e-34,-2.7530572581235825e-33,-1.714459581465706e-33,-4.851615138101295e-34,-1.580027431888995e-33,-1.6160608600096695e-33,-8.959066303099836e-33,-2.371382402643979e-33,-5.3691521863717706e-33,-9.453770428383196e-33,-7.646091604473744e-33,-5.8405183843281596e-33,-1.6626752132938628e-34,-2.0755353477826646e-34,-5.563725842901126e-33,-9.215875828813422e-33,-3.235120115531139e-33,-8.581904501254385e-33,-3.273057761122421e-33,-9.811351599450337e-34,-6.609584819061374e-33,-9.447460313202373e-34,-4.6272675311879385e-33,-7.234909832303405e-34,-1.434033708120034e-33,-4.340220841954586e-33,-6.261894597159838e-33,-6.538079537471456e-33,-8.239892726001432e-33,-5.1715742472907624e-33,-8.543576569664285e-33,-2.254854354148205e-33,-8.183603903296222e-33,-2.1248482916656644e-33,-2.525377624162003e-33,-3.365206813356423e-33,-3.654102858507044e-33,-2.7366838408417693e-33,-3.494083454325056e-33,-3.820628816960113e-33,-7.719666159226947e-33,-5.8922546321375374e-33,-5.907706494413953e-33,-2.9142389257526958e-33,-6.876723403610335e-33,-7.562842218842886e-33,-2.1530248369681472e-33,-1.970978261730716e-34,-3.785643796984645e-33,-1.2631055633600653e-33,-3.791235934484323e-33,-1.2743889858708324e-33,-4.578961981198237e-33,-9.187960228068969e-33,-7.562653482723523e-33,-4.466016829906106e-33,-4.563765379980861e-33,-7.65231310576933e-33,-6.3535517907056695e-34,-8.889307424860969e-33,-5.73378385272908e-33,-1.9391837742288035e-34,-4.674537260272826e-33,-9.317887537177668e-33,-8.727604274478016e-33,-9.841679248875271e-33,-2.090525279770663e-33,-8.19504596509157e-33,-6.829128725634204e-34,-4.542433226851398e-33,-1.5775551487261796e-33,-5.5535737195832715e-33,-6.361030840026163e-33,-2.598349520266521e-33,-4.859462493863396e-33,-6.90587558011055e-33,-6.894050090666147e-33,-8.395445281338783e-33,-3.231400087027914e-33,-6.265032847549844e-33,-6.291761699160278e-33,-6.298242474511642e-33,-5.464742476616308e-33,-9.662645210500165e-33,-9.363703952570346e-34,-8.501759813895738e-33,-2.5436233628648666e-33,-8.140361792698972e-33,-5.808993508393268e-33,-7.267843552288457e-33,-6.069150318215533e-33,-5.1757216760061964e-33,-2.4482117928122017e-33,-6.193555735043022e-34,-8.283029587196176e-33,-1.6077737029330064e-33,-7.537974353654565e-33,-1.5049231250369944e-33,-7.078781836293604e-33,-6.485840953753468e-33,-9.874291885596151e-33,-2.572570062997205e-33,-2.5057499383296767e-33,-2.300580939542185e-33,-9.768422782824269e-33,-1.946622775332696e-34,-8.66004548312462e-33,-8.200141020252994e-33,-8.885893612271807e-33,-3.83305029486808e-33,-5.562563504350037e-33,-3.985986274713169e-33,-4.6832913629147644e-33,-4.4716637101680683e-33,-2.4886569247062452e-33,-7.401864534297515e-33,-7.977891397857126e-33,-4.551485401377769e-33,-4.069595030227874e-33,-2.0392471870739503e-33,-8.542178775696398e-33,-9.452920057034397e-33,-6.12842037539919e-33,-2.7318436915254264e-34,-4.172941335572933e-34,-1.0946183403726662e-33,-9.228759884536212e-33,-5.766079817547304e-33,-6.779974397617441e-33,-5.651571569309551e-33,-1.9382405262081404e-33,-7.602590186366124e-33,-6.291287948367299e-33,-6.421107587023434e-33,-9.737004443715974e-33,-2.3774937184461487e-33,-5.210298515107959e-33,-5.173663536592533e-33,-1.9164342903060096e-33,-4.380932535047506e-33,-7.787443887331874e-33,-9.933012820427449e-33,-3.0921453912697055e-33,-2.909757087472564e-34,-1.351359126092422e-34,-6.53545212902377e-33,-8.63747658195454e-33,-5.1618673037931035e-33,-3.887496325543859e-33,-8.077348854449573e-33,-9.95475822553656e-33,-1.169647272144183e-33,-2.5796810446616383e-33,-5.343423981189695e-33,-5.030579604016727e-33,-3.5971581977515268e-34,-4.991138492451177e-33,-3.7611228848414504e-34,-8.715439723455179e-33,-3.3400288376289035e-33,-2.578369526777269e-33,-7.011373190486011e-33,-3.7205393419287225e-33,-2.006232005893779e-33,-6.915064444379892e-33,-2.917986784631983e-33,-8.437056503986922e-33,-3.770894854963193e-33,-1.2252115138585318e-33,-2.6332425864092035e-33,-7.4190907892713764e-34,-5.54390702005821e-33,-2.4773493724856812e-33,-3.170319080983726e-33,-7.433657881074151e-33,-4.727371258439248e-33,-6.577966413126357e-34,-4.1146428699690377e-33,-7.71139702615056e-33,-2.6262019718289365e-33,-7.467852249664429e-33,-6.656406537534277e-33,-6.720052946078989e-33,-7.861001363482578e-33,-2.9446564418881685e-33,-9.566913284471568e-34,-2.212507588201036e-33,-1.8491767476060785e-33,-3.1772451660201153e-34,-3.703792226617269e-33,-5.8536537209880025e-33,-5.592404303178165e-33,-4.644643500958383e-33,-5.864230031178153e-33,-2.882396637032704e-33,-4.772119455725506e-33,-3.022160149170672e-33,-6.468500752226217e-33,-7.710397867690056e-34,-8.94601912092939e-33,-7.563774525063647e-33,-6.467188742480812e-33,-8.041613372935358e-33,-4.578451999263311e-34,-8.102311741836078e-33,-9.412934350601166e-33,-9.39585101146517e-33,-6.925905836443087e-33,-2.0004624916067806e-34,-9.182922493901033e-33,-8.16857223455914e-33,-4.1375173426768885e-33,-8.502080516084929e-33,-8.474683117182622e-33,-6.314403408217204e-33,-6.551982483559055e-33,-3.816226028693404e-33,-1.3114343723913402e-34,-5.4258237758101485e-33,-5.8259832464781325e-33,-8.245929667584428e-33,-4.431043868967618e-33,-9.569324738870404e-33,-2.4249734003539325e-33,-9.888783192000667e-33,-1.1309217937118123e-33,-4.254891893740268e-33,-9.340534583376798e-33,-2.9434555049799838e-33,-1.0378289844008438e-33,-9.851025067775269e-33,-5.354785328826813e-33,-4.1167623294074554e-33,-4.6607056950995375e-33,-7.957020574836837e-34,-4.826961507781823e-33,-3.5054347181038337e-33,-8.391258703610369e-33,-3.389531079790812e-33,-7.641826455261947e-33,-6.03833710247008e-33,-3.6475858723728164e-33,-5.436488364815988e-33,-8.26649915088609e-33,-6.319352398399247e-33,-2.5114853482375666e-33,-9.785995302427384e-33,-5.627537659534382e-33,-4.140255198465052e-33,-8.025307527721753e-33,-3.347463872028925e-33,-9.015937561972445e-33,-8.811098370606803e-33,-1.2747403357679089e-33,-1.3412313364380258e-33,-8.593177856187949e-33,-4.9524848775865184e-33,-5.402393337992833e-33,-1.706355447521191e-33,-8.976801941079272e-33,-7.200137145710083e-33,-5.698540456665057e-33,-7.463733182417217e-33,-7.096882003376855e-33,-6.924448895798148e-33,-5.7007851771351396e-33,-6.076915418432545e-33,-8.783081475387859e-33,-8.298559193470757e-33,-8.945318526493022e-33,-7.5091427075416836e-34,-3.433389666012914e-33,-7.328266689097969e-33,-1.160833508667183e-33,-8.972244035425433e-33,-4.9159075806070157e-33,-3.7474037756795336e-33,-1.4472484780238016e-33,-3.919758034849974e-34,-8.464308521262331e-33,-5.439561277743133e-33,-7.863994974308728e-33,-6.164508495690644e-33,-3.301252410928137e-33,-1.6126291119822556e-34,-3.841230561775908e-33,-4.4989166317876197e-33,-3.2649281696526904e-33,-9.606639096059078e-34,-8.459686888833388e-33,-6.328193179718456e-34,-2.572637025625816e-33,-7.640136693200627e-33,-7.950104046054822e-33,-9.837895293131594e-33,-6.42254304990242e-33,-5.1581610566446526e-33,-6.554791878872118e-33,-9.323853424545658e-33,-2.040171094766329e-33,-5.115823122158227e-33,-3.0451375587475993e-33,-2.3050973074491446e-33,-9.089601687871518e-34,-6.445691904062847e-33,-2.98956148909468e-33,-8.48901418501331e-33,-2.3310745000095126e-33,-4.0449908510160504e-33,-5.058258504780431e-33,-1.4325412697619722e-33,-7.619597609561753e-33,-8.049380794574953e-33,-2.789563200860026e-33,-7.213664007954715e-33,-8.831599757556837e-33,-5.414979033631642e-33,-1.818288315173896e-33,-1.571231809502649e-33,-9.380927866321122e-33,-8.252807596897619e-33,-7.10745344124172e-33,-3.449586155253105e-33,-4.1243353637803906e-33,-7.466618340306119e-33,-5.085725571544011e-33,-5.6430364667389454e-33,-1.4081740699655676e-33,-2.075080772215302e-33,-8.885387990582867e-33,-1.0364421224880695e-33,-9.688606754697611e-33,-6.629034859392939e-33,-9.490511904609078e-33,-3.9153864395614934e-33,-7.143275122560993e-33,-1.9660782972083845e-34,-6.807441505057728e-33,-6.206244171328491e-33,-7.431142860769638e-33,-2.03683039419319e-33,-2.9528265831393144e-33,-3.103159764758947e-33,-2.2620808924164283e-33,-1.7912565035748564e-34,-7.99953257239341e-34,-4.994593780036063e-33,-3.503590039190812e-33,-8.2585678349279e-33,-5.41310222286837e-33,-1.677258568839213e-33,-3.6249125853165246e-33,-4.145106068004794e-33,-1.6407486547078623e-33,-5.374430424886382e-33,-2.3961336827282366e-33,-7.401630993388923e-33,-2.3091459091925515e-33,-1.1295013298105572e-33,-4.538901518618538e-33,-8.548351007360909e-33,-6.546649593602073e-33,-6.327851003603756e-33,-1.976768867844656e-33,-9.843786059390571e-33,-5.4473663776217546e-33,-8.136445590094869e-33,-2.60754454525182e-33,-4.7457270511510334e-33,-1.7124533280122735e-33,-7.22153699042129e-33,-8.763676774909702e-33,-1.7335901671276554e-33,-1.2984290509162933e-33,-5.2016587190128874e-33,-3.0882664409227416e-33,-6.290164857781511e-33,-1.3505780193999817e-33,-9.749548788998556e-33,-8.792961121750608e-33,-8.153376935206626e-34,-3.6230533494200384e-33,-5.922745025484846e-33,-4.1736553552569e-34,-4.0505624997268635e-33,-6.19065428794719e-33,-2.686401975973163e-34,-6.483710580142976e-33,-7.49855742841098e-33,-6.044340705242092e-33,-3.985622167962917e-33,-2.020680184763466e-33,-7.84290148576493e-33,-7.687105064622779e-33,-4.992663643518558e-33,-8.59422084835124e-33,-6.797870561966568e-33,-5.17038497719081e-33,-4.7698936037653794e-33,-8.766974292723359e-33,-8.951242567443021e-33,-6.447440324068998e-33,-6.076279300744681e-34,-3.256881372697835e-33],"im1":[-9.368220470249206,-8.898253254090239,-8.65157246686931,-8.24274382120856,-9.848329606882876,-9.240149734885833,-9.062756629816272,-9.351802413507823,-8.654426477996973,-9.468489981246824,-8.788804724603672,-8.888479271360824,-8.899847970981229,-8.493964073635063,-8.148724849316302,-8.415739191264905,-8.206969145452042,-9.086172363119093,-8.953873243185079,-9.916929690256797,-8.639575277115657,-8.824095508700154,-8.780699318817737,-8.126061387685555,-8.625117882531924,-9.458304275983217,-9.322089046597844,-9.01869960509329,-9.716464385391774,-8.429075653178149,-8.833860797469585,-9.34578005156892,-9.149023275547828,-9.495691333381682,-8.488262963502613,-9.758532408760928,-9.466072754562028,-9.1205989280186,-8.068263793331875,-9.57179497038841,-8.664425147713525,-8.757394780682853,-9.492250601432215,-9.896407928762224,-9.2928962163961,-9.087817726889298,-9.747533353436477,-8.850805206251339,-9.866636193524275,-8.138135632817923,-8.941949901989657,-8.671534877190345,-9.493110077208932,-8.045002785670016,-8.69870693351363,-9.938193281938343,-8.30890527457665,-9.14255403703332,-9.362991465304445,-8.937821870487243,-8.703612468698182,-9.610127360022835,-9.137492929418679,-9.197546583755914,-9.128049003079509,-9.988022791583786,-8.510742999246778,-8.498015092456386,-8.616499558008986,-8.63968644753827,-9.843187112663902,-9.858260028431149,-9.556917085736,-8.667499383561184,-8.840706457168674,-8.838764355343528,-9.749177313150637,-9.647507466890724,-9.068451211739317,-9.12221509251426,-9.068004618876873,-9.613773449333204,-8.599309206701799,-9.898603147961817,-8.975202215922254,-9.782058617214599,-8.467338102576434,-9.227760775237549,-9.155169183329189,-8.62109647823468,-9.011612916974618,-8.196365791613097,-8.45906414763863,-9.486023895624644,-9.713180979983806,-9.608758680769897,-9.644731480220472,-9.453983570088498,-8.0643336863957,-8.095908158777686,-9.920489428641568,-8.565337611440517,-9.382557765950683,-9.648560300274362,-9.34307480221443,-8.519042424210125,-8.645218024951886,-8.208437354468673,-8.215301654497997,-8.888890824581694,-9.395201099297644,-9.569777378000277,-9.637764612066277,-8.468303003322704,-9.401925278514089,-9.171289006601743,-8.255396666224515,-8.556882025873104,-8.347033935161576,-9.932536478794184,-9.129921260648292,-8.094498309442374,-8.59482515603954,-9.211893218658895,-9.485700749055185,-9.863182470693335,-8.39968854392743,-9.620596657853879,-8.610021210704534,-9.593442221121066,-8.307889113260421,-8.742753797199601,-8.271178516017772,-9.696538862130442,-8.123529935063413,-9.410645905271807,-8.020808268226435,-8.15255015403415,-8.89305147860415,-8.469460727169054,-9.516828200980749,-8.240356614500802,-8.966072010594068,-9.350423295662663,-9.648880905813835,-8.057488008172045,-9.441990478621605,-8.074585395013624,-8.486216653592567,-9.548965894362423,-8.841389546041375,-8.563507207081386,-8.815059663507553,-8.04942896181573,-8.459837054154992,-9.084037196890186,-9.555421921638848,-9.809971578437766,-9.704981194177487,-9.718812106889052,-9.318364860110874,-9.223478529622945,-9.226454648902836,-8.5343132924719,-9.25029753595389,-9.582090884702094,-8.303172201579187,-9.615017435656876,-9.751774644744737,-9.077934355657723,-9.692163092539662,-9.813746250825185,-8.174045549299635,-8.166235311344602,-8.332548952633324,-9.108941218424231,-8.914058201779934,-9.983917518873689,-8.56734999607366,-9.322300597110551,-8.31424677370699,-8.315801053956628,-8.920851909548208,-9.896175507091574,-8.001567438707388,-8.965516260547945,-9.614362056835173,-9.166820426985026,-8.920061287845607,-8.7422284383215,-9.872238249709746,-9.494175203231014,-8.764894002413447,-8.195645651691963,-8.109300670046023,-8.563417830210673,-9.23013229310571,-9.4853835726406,-9.565307743468228,-9.909177672714236,-8.239151747662453,-8.080118156379356,-9.399108783335341,-8.855513620228978,-8.969656450322676,-9.284331750340376,-9.097408588773064,-8.550527962555908,-8.603877676565594,-9.311426528089767,-8.698076020144605,-9.590942840704248,-8.126375661519262,-8.176941749750052,-8.194267452754975,-9.090128348139512,-8.856651633353943,-9.586797479600095,-9.97653962162682,-9.478308979022128,-8.36569043296388,-8.343284408120999,-9.57397429567792,-9.820709221846181,-9.324972247019534,-9.244796040792925,-8.400036666102478,-9.19304339526011,-9.754615539991743,-9.110595057987272,-9.910818514982994,-8.395099478743639,-9.51073726392014,-8.299780240856679,-9.125450575884075,-8.883679471764225,-9.469239841906811,-8.575166052216616,-8.5596476651457,-8.026021261785935,-9.223798103928647,-8.344064067481161,-9.99575706814882,-9.09559638807208,-8.000213551624395,-8.340016084930054,-9.354419370720676,-9.421509716725968,-9.173076399429878,-9.833067410800522,-9.13421535500867,-8.564711976886697,-9.099008375079226,-8.778119393647595,-8.028554950416943,-9.448890923716231,-9.877434608322842,-8.247312122515673,-8.525350633227454,-8.058705312104617,-9.366757175617822,-9.529894341798585,-8.86925786894683,-8.352753038971938,-8.687532432148744,-8.075284466459772,-9.629372355505426,-8.95225852381655,-8.974472706156476,-8.778418978526396,-8.800132782458483,-8.53053873366574,-8.069427869597117,-8.678595503306862,-9.967921868469087,-9.392559268360838,-9.266490454404371,-8.90004626382567,-8.658537578572496,-9.396874669982322,-9.370755455022088,-9.216536116459183,-8.58206648730335,-9.297446870030114,-9.603117431945298,-9.258941313412652,-8.826702245358304,-9.16577639539107,-8.429883309384335,-8.101097411379966,-8.813537483881193,-9.13968387354739,-8.869982992095713,-8.394618984231581,-9.379623419160495,-9.358897180547325,-8.956564243558896,-8.831234108322501,-8.97065697957521,-8.947050805146636,-9.879471676039952,-8.806519175315596,-9.670495093572105,-9.735280712472838,-8.636183903497553,-8.703023790414726,-8.3303966062754,-9.75181023520175,-8.064162861926022,-8.772038154539295,-8.531250477380196,-9.145988359522534,-9.55252298352319,-8.826848705783766,-8.752108328910486,-9.484327261930982,-8.452297403759456,-8.763328181154295,-8.683939148101071,-8.508393634808165,-8.15969164710926,-8.682465470959542,-9.063008212825192,-9.009654440618796,-9.820930498237322,-8.394653576476143,-9.55499185744634,-8.074069879164734,-8.121663655446323,-9.203115640363782,-9.794589542124466,-9.543598421528236,-9.21776646090052,-8.257619691058583,-8.534891065370616,-9.97696949628235,-8.435183429273518,-9.691126618049248,-9.936059322841333,-8.009067923966896,-9.238757980603722,-8.458521477177161,-9.675406441847889,-9.242871023403698,-9.96467006531095,-8.00992071182063,-8.37222382771163,-8.811663134656913,-9.879707658074903,-9.706373749095357,-9.764717349645858,-9.950170013607515,-9.03684372956666,-8.748446531166193,-9.976131992490505,-8.379722028868088,-9.847775604357544,-8.543632527926322,-8.13695736388041,-8.114588985019074,-8.172549009288376,-9.36540490473415,-8.842888568558472,-8.379838421581404,-9.580532689451683,-8.802031542168237,-8.153473882640654,-9.63176945593126,-9.637814389305948,-8.289245650675651,-9.182065820986299,-9.501475520358072,-9.758346409837829,-9.08042959272835,-9.549336836977922,-8.117339306690464,-8.011181569101755,-9.87189955049226,-8.115264370113044,-9.651841554334236,-9.719389122737091,-9.975134482669741,-9.783737938684725,-9.133900146191646,-8.41793694409482,-8.526682676417206,-9.200055716624062,-9.281436814339836,-8.661773459290039,-9.994838934720368,-8.348269674854585,-9.61799872534089,-9.331748532827211,-8.932083934428816,-9.829032458281308,-8.903564650721636,-8.46335773429094,-8.409602731954914,-8.662056267754952,-9.353645543967819,-9.514922350510604,-9.569375012649287,-8.80302666781589,-8.092393777367773,-9.611439322167005,-8.877330214986161,-9.254125973401601,-9.813993170094694,-8.67469643826813,-9.868765264093003,-8.622113331202891,-8.669354277002713,-9.0838581533811,-8.219169146670367,-8.010534221148788,-8.839121782301431,-9.803219881623562,-8.751173222328624,-9.28401048150425,-9.876065276410246,-9.813370238288634,-8.891329806670324,-8.739227493396681,-9.416356131515466,-8.858435416793924,-8.955741989420911,-8.1356172040949,-8.808277514011166,-9.642767290827239,-8.87689439227434,-9.112403696887501,-8.298866512862102,-9.70551486371639,-8.753015979661406,-9.05511280971882,-8.205874241360299,-9.825662860766668,-8.568780540455215,-9.194292147920743,-9.59094925327768,-8.604832805724394,-9.932206243111231,-9.173463945842954,-8.162219772171603,-9.534973672015196,-8.567063738268699,-9.73114421850832,-9.65269241088444,-8.749396999500355,-9.256139189539478,-8.613478062091593,-8.363458613065847,-8.986975206285011,-9.494037151413615,-9.095531737388571,-9.860477146455716,-8.122735635902563,-9.583301185595285,-8.768014792070876,-9.834139760572825,-9.142955090655102,-8.498348850994416,-9.372430128479774,-8.794593808252264,-9.256620291740077,-8.616481056346792,-8.514579026973777,-9.694672714262097,-9.80627730491525,-8.719077716601113,-8.936610079137555,-8.864544511697492,-9.033784605304817,-8.41107117935278,-8.81003315296338,-8.620650359582097,-8.071876152377735,-9.367997389959113,-8.641895831158092,-8.453630639003624,-9.742755108313474,-9.112289067137997,-9.158226468025099,-8.464545040816695,-9.805473184854925,-8.593263496857839,-8.435271230455765,-8.567163443232548,-9.286500579614735,-9.265123952937428,-8.055024302296221,-8.026194011691953,-8.886393168203622,-8.819804495883764,-9.490846646382984,-9.905268535930993,-9.74951819680399,-9.454025746551928,-9.184117941111147,-9.615277192863577],"qim":[4.7968145e-34,1.1412332e-34,-8.710277e-34,-2.114978e-34,4.8481754e-34,9.608026e-34,1.4847068e-34,-4.5177136e-34,-1.5232764e-35,2.9737932e-34,3.0841983e-34,-5.513868e-34,3.1617012e-34,-3.849701e-34,-5.1746377e-34,-3.6863608e-34,1.901976e-35,3.4436472e-34,-9.466516e-35,-3.689525e-34,6.315179e-35,2.1547415e-34,-5.748704e-34,1.974605e-34,2.6095585e-36,1.4205728e-34,7.703927e-35,7.6531576e-35,-1.8831664e-34,-4.2806237e-34,-1.0684946e-33,1.0700748e-34,8.8212345e-35,5.7401553e-35,4.286545e-34,7.3985895e-34,-3.100315e-34,2.0478565e-34,2.9298712e-34,1.4708559e-34,2.6807505e-34,3.2470276e-34,1.3422233e-34,5.097982e-34,6.620509e-34,-1.4095988e-34,-2.4116761e-34,9.98562e-35,-9.626272e-34,2.2230355e-34,3.9719495e-34,1.1210781e-34,6.304345e-34,-5.0794943e-34,2.7513605e-34,-4.100214e-34,-1.3464003e-34,-3.4867164e-34,9.417804e-35,5.3626847e-34,-1.4219371e-34,6.7159636e-36,-5.9848408e-34,8.033231e-34,1.2564503e-34,-4.404121e-34,7.6203694e-35,3.5229972e-34,-7.749827e-34,3.4391227e-34,-2.1426881e-34,7.418126e-34,6.6589006e-35,1.4492979e-34,-2.087773e-34,1.1265723e-34,-6.4094123e-34,5.3113913e-34,2.393963e-34,7.3537554e-34,-4.253803e-34,5.8648274e-34,-1.8281054e-34,5.9932896e-34,-2.03978e-34,-9.360533e-35,-4.4517284e-34,-3.501006e-34,-1.6947172e-34,-4.494537e-34,8.46696e-34,-2.5623435e-34,4.5058e-35,2.4170145e-34,4.224296e-34,-9.746901e-34,-5.3209963e-35,1.3188967e-34,1.7204554e-34,7.198655e-34,4.303146e-34,8.398176e-34,-9.903489e-34,2.4921773e-34,-3.1954062e-34,-1.775656e-34,-7.642671e-34,-7.895665e-35,6.05895e-35,1.019274e-33,-5.254231e-34,-8.685542e-34,4.1605892e-34,-1.7145914e-34,-6.364548e-35,4.1118825e-34,-2.8116966e-34,5.826213e-34,4.655375e-35,7.6212148e-34,4.0211026e-34,-2.6432926e-34,1.5186567e-34,-3.5940712e-34,-7.497061e-34,5.9565917e-34,-7.2557696e-34,3.6807508e-34,-5.794921e-34,6.7524872e-34,9.523488e-34,-3.150205e-34,3.6019408e-34,3.8373471e-34,-3.315539e-34,1.9957164e-34,-2.8290877e-34,2.6038789e-36,7.419656e-35,3.7370446e-35,-5.8482557e-34,-7.6301715e-34,5.7293237e-34,5.831153e-34,4.0603595e-34,3.2883536e-34,3.4314368e-35,-1.4390962e-35,-2.7565884e-34,-8.51304e-34,-2.9889265e-34,2.1920235e-35,2.8838704e-34,-7.827612e-34,4.362295e-34,-3.3047772e-34,-3.854031e-34,7.096125e-34,7.402474e-34,-9.774275e-34,-6.846757e-34,-9.388353e-34,-8.6415715e-35,-3.5370868e-34,8.178356e-34,1.172798e-34,5.8023067e-34,1.6824123e-34,-4.8387765e-34,9.1382357e-35,-7.553295e-36,-2.2429385e-34,-4.8339083e-34,-5.82379e-34,5.113725e-34,-2.376529e-34,-4.397743e-34,-5.158997e-34,2.495993e-34,-2.6536195e-34,8.577331e-34,-7.446488e-34,-2.1964179e-34,-9.187197e-34,-4.296236e-34,1.5930307e-34,-3.031705e-34,4.9133483e-34,-4.864757e-35,1.8780347e-35,1.758967e-35,1.17635375e-33,-1.3021167e-35,7.3178225e-36,-1.0989231e-34,-1.4956238e-34,-1.1004196e-34,4.8853077e-34,3.9361226e-34,3.9086106e-34,-2.546058e-34,5.0723105e-34,-6.2268847e-34,-6.8189693e-34,-1.5497416e-35,-3.520867e-34,-2.3951554e-34,-4.3203747e-34,-3.2840725e-34,6.2255264e-34,6.1790894e-34,-3.4293677e-34,1.2314938e-34,-1.3296417e-34,-3.4962258e-34,-1.1091399e-34,-7.864861e-34,-3.930178e-34,-3.9222633e-34,5.900251e-34,8.1728265e-34,-5.533064e-35,-8.288373e-34,3.8319865e-34,2.539481e-34,-4.701284e-34,9.073428e-34,-2.038831e-34,-1.6069725e-34,-5.3141257e-34,-4.7026878e-34,1.7874777e-34,6.4672356e-34,-3.371963e-34,-1.6890413e-34,2.3948824e-34,-4.0100534e-34,-3.145027e-34,-1.8998629e-34,6.0782554e-34,8.946216e-34,-2.1637584e-34,1.3590502e-34,-5.4863852e-34,-3.54587e-34,-5.538884e-34,-2.5158277e-34,1.0889068e-34,6.567296e-34,2.830202e-34,1.5414221e-34,5.716025e-34,2.8947363e-34,2.5724773e-34,-3.0170036e-34,-2.6342516e-35,1.8932734e-34,-5.2398923e-34,-1.3549659e-34,2.7706514e-34,-4.2862266e-35,5.4651033e-34,-2.6798163e-34,1.1567847e-34,-1.1215901e-34,-1.3479502e-34,-2.3748784e-35,-1.0394882e-34,-8.78554e-35,-2.2803913e-34,1.0425862e-34,-1.5979935e-34,-5.6676965e-35,1.7080298e-34,3.3726687e-34,3.2542236e-34,-7.200997e-34,1.9968578e-35,-2.5383836e-34,-2.918501e-35,5.4332795e-34,5.2990744e-34,1.8611516e-34,8.5701445e-34,3.9962216e-34,-9.435716e-35,2.6297076e-34,-5.230363e-34,5.887548e-36,-5.5392366e-34,6.042059e-35,6.84048e-35,5.633754e-34,1.6169042e-34,1.3207545e-34,-6.6519402e-34,-1.234102e-34,-2.5912237e-34,-2.0186234e-34,1.0616254e-33,4.6996622e-34,-1.0111726e-33,-8.570178e-34,-2.0103665e-34,2.6593516e-35,-5.9696663e-34,-1.1385752e-34,-4.2268316e-34,-3.4257857e-34,-8.1459665e-34,-3.6507799e-34,-5.3150055e-34,-1.5727279e-34,4.8042826e-34,3.7009953e-34,-9.867659e-35,-1.5304841e-34,1.3281282e-34,-3.7569745e-34,7.5806414e-35,-3.8356424e-34,6.793023e-35,-3.5791121e-34,-7.723686e-34,8.915914e-34,6.4423294e-34,-1.03686215e-33,3.1404073e-34,2.6883896e-34,-4.4473832e-34,1.0936215e-33,3.0723712e-34,4.7780005e-35,-7.0806935e-34,5.84728e-34,-7.070578e-34,3.1058788e-34,3.9351404e-34,3.0940756e-34,8.841972e-35,-3.4426336e-34,-1.619458e-34,-8.401527e-34,4.519785e-34,2.0954681e-34,-2.4672506e-34,-1.8553257e-34,-9.0664355e-34,-8.801982e-34,5.14802e-34,2.8866126e-34,-8.363272e-34,-1.1217552e-35,1.6884213e-34,4.0402994e-34,-1.8968348e-37,1.3507981e-34,-1.2969942e-34,-4.498458e-34,-8.527e-35,-1.1305383e-34,3.4868792e-34,-3.9941503e-34,-7.823333e-34,-8.270542e-34,-5.1873477e-34,1.409458e-34,5.0485512e-34,-4.023727e-34,7.5994635e-34,-4.892934e-34,1.5822144e-34,2.5856585e-34,8.29869e-34,2.4248065e-34,-3.3684555e-34,1.01033915e-36,9.4298386e-35,-1.6744175e-34,-2.4143263e-34,4.0186038e-34,-2.2517875e-34,-8.870115e-36,1.9378862e-34,4.6538933e-34,-5.4546864e-35,8.1121663e-35,6.9247302e-34,1.8065332e-35,-4.105032e-34,-3.8042333e-34,-3.4748288e-34,-3.7770587e-34,8.526839e-35,-5.5807747e-34,6.285323e-34,2.0206319e-34,4.414279e-36,4.078952e-34,2.2680144e-34,-4.76223e-34,6.46456e-34,-5.227087e-34,6.0151355e-34,5.6864645e-34,-1.2661694e-34,7.874859e-34,2.2398905e-34,-1.1901248e-34,1.9719336e-34,-5.4258758e-34,-8.747059e-34,-6.2537884e-34,5.85773e-34,-1.0745287e-34,-9.953602e-34,-6.84546e-34,1.5423931e-34,2.1550524e-34,-7.3142943e-35,-1.8557192e-34,-1.1769979e-34,-4.188106e-34,5.3008073e-34,8.581384e-35,-5.330546e-34,4.6070893e-34,-7.036923e-34,-5.7501092e-34,-6.5258827e-34,6.7480387e-34,6.894242e-35,6.7205363e-34,-7.1198274e-34,7.583346e-35,2.3023308e-34,-2.695333e-35,6.6308773e-34,-1.5111649e-34,-4.596109e-35,8.4887085e-34,3.0057682e-34,-4.721165e-34,-3.8621413e-34,-7.3773553e-34,4.790059e-35,5.8394027e-34,2.8019095e-34,5.1426243e-34,4.1404213e-34,-4.933427e-34,4.7716838e-34,-7.789873e-34,-8.9279697e-35,7.834843e-36,3.8630138e-34,-4.607849e-34,1.2662034e-34,-4.6891787e-34,4.068467e-34,-8.714152e-34,-2.014995e-34,-9.588064e-34,4.7820805e-34,-2.5937926e-34,-1.1749548e-34,-3.5406631e-34,1.0213595e-34,8.013656e-34,9.64797e-34,2.385719e-34,5.6369955e-34,2.2090328e-34,3.6240303e-34,-6.584292e-34,-2.8299455e-34,8.532857e-34,-3.3121595e-36,-1.3687414e-34,1.7873086e-34,4.194375e-34,2.7140812e-34,1.1358474e-33,-2.2791795e-34,-4.6811216e-34,-5.044487e-34,-3.9733045e-34,-2.1405673e-35,-4.3337515e-34,-1.6185614e-34,-5.4040465e-34,-6.935901e-34,1.8262533e-35,-3.1641753e-34,-4.289969e-34,-6.076176e-34,8.1773764e-35,-5.8807664e-34,5.0842808e-34,5.256191e-34],"qre":[1.0751542,0.96365947,0.94080013,0.96079385,1.0418911,1.125267,0.9764529,0.9596969,0.94306695,1.0857103,1.0942056,0.9450583,0.95945394,0.9959317,1.0084772,0.8800808,0.949328,0.99117637,0.9882954,1.102974,0.9504373,0.8999432,0.886017,0.88235784,0.96445376,1.0219909,1.1416483,1.0156819,1.0038044,0.9547213,1.0894139,1.1278228,0.9915775,0.95162433,0.92108804,1.182067,1.099004,1.0314063,0.89866626,1.0876782,1.0822564,0.9660385,1.0636649,1.1092917,0.9562236,0.91698265,0.9751315,0.9805532,1.0777897,0.87458074,0.9699221,0.88941485,0.9885753,1.0017629,1.043382,1.0076021,0.9905034,1.1257207,0.9529011,0.94138676,0.9879939,0.97789806,1.0863723,0.9544303,1.082926,1.0030766,0.9159859,0.92424035,0.9377045,0.9031066,1.1951061,1.070285,0.9689978,0.9565834,1.0130082,1.0041271,1.0052773,1.106982,0.9901769,0.9365809,0.9893235,1.0539306,0.9009714,1.1807956,0.9253351,1.2133168,1.0441506,1.0592368,0.9730705,0.9653669,1.022811,0.9465828,0.9326936,0.9622084,0.9740763,1.0657616,0.97909945,1.1508791,0.9413148,0.93248737,1.0093267,0.9920557,1.055249,0.9811505,1.0980017,0.9241417,1.0199602,0.8923192,0.9869239,1.0163301,0.94617033,0.99294573,1.050196,0.9082231,0.9746086,0.91970307,0.8863175,0.91250867,0.99567646,1.0146874,1.0820097,0.82310176,0.94657,1.0547527,1.0652524,1.1180778,1.041644,1.0327721,0.9484647,1.0504687,1.0318419,1.0622584,0.8550203,1.0950353,0.8767807,1.0140773,0.89833194,0.9105971,1.0592743,0.85627615,0.9638076,0.928997,0.9183716,0.946526,1.112878,0.85483384,1.0125153,0.97166467,1.0429679,1.1618795,0.89143145,0.87722754,1.1018035,0.8474657,0.9893203,0.90845925,1.0652481,1.0576398,1.1520241,1.0390525,1.0500607,0.9879784,0.93672025,0.9881337,1.1155571,1.0130205,0.93531895,0.9938744,1.0291573,1.0705082,1.1695297,1.1717229,0.9255106,0.890602,1.0298508,0.9737854,0.98404807,0.99877805,0.90307134,1.0900543,0.9380928,0.95165104,0.9164459,1.1424643,0.91537946,0.99661255,1.0930191,0.98775476,1.0658942,0.9510134,1.1158565,1.154893,0.96222687,0.91420853,0.8380468,0.9349817,0.97550666,1.0165194,1.1937681,1.0743186,0.9804428,0.8635729,1.0568821,0.92591506,1.0709559,0.9685548,0.9983531,0.990634,0.9070283,1.0852534,0.9128204,1.1728635,0.92087245,0.867025,0.9843619,0.96061325,0.91716874,0.9702225,1.062822,0.948072,0.9763115,0.97636825,0.98376775,0.9849568,1.076036,1.1043824,0.9776116,1.0920508,1.0803422,1.0357847,1.1329765,0.87367976,1.1141053,0.8719445,0.9155664,0.9464623,1.167829,1.049362,0.8933551,0.9045042,0.97313046,0.94393677,1.1242976,1.0859354,0.8875373,1.0239542,1.0462223,1.0341955,0.9515239,1.1142651,1.0912591,0.89054775,0.9617987,1.069612,0.977197,0.95639515,1.185371,0.92874175,0.9185268,0.8362413,0.9822885,1.1834869,1.0345578,0.916042,0.9590349,0.96136194,1.1340427,1.019773,0.98027915,1.0316486,0.98728025,0.9486887,0.91166586,0.90233094,1.1431482,1.1015075,0.9358266,1.0865817,0.9365705,1.1310726,1.1256255,0.95665824,1.0515362,1.0084724,1.031457,1.0172406,1.0428948,1.144646,0.8704351,0.8535275,0.9182369,0.9866493,0.88817626,0.8461136,0.96842986,0.95688844,0.9822008,0.8850385,0.96916,1.1085443,1.2290343,1.0478956,0.9914456,1.0721716,0.96452206,1.0404555,0.98453295,1.041992,0.8800289,0.9229401,0.8533047,0.9296141,1.0614246,0.98188174,0.9376072,1.1113765,1.0265129,1.045827,0.905495,0.85750735,0.9001682,0.93739444,0.9882054,0.93507856,1.2221361,0.94899493,1.1125977,0.8734622,0.9437765,1.1485914,1.081684,0.9956979,0.98995,0.8724627,1.0551057,1.1023666,0.9421649,1.1488148,1.009324,0.91122633,1.0330278,0.99458873,1.1125785,1.0816264,1.1221973,0.8908791,0.97940356,1.0491562,1.18579,1.1929,1.10989,1.0310826,0.92511827,0.9633827,1.1154248,0.9977296,1.008251,0.94540906,0.84520656,0.98303026,0.9710263,1.0660346,0.9238511,1.0317123,1.0828184,1.0214983,0.983604,1.1171527,1.0450695,1.0229288,0.9730723,0.98720706,1.2123616,1.07849,1.1058786,0.8342289,0.93810916,1.1210018,0.8468572,1.098251,1.0995618,1.1532192,1.1032408,1.1181538,0.92827487,0.97302026,1.1179755,0.9889011,0.9440581,1.033993,0.86745876,0.99925935,1.1079265,1.1084262,1.1633346,1.011876,0.86533195,0.8451645,0.95484996,0.9441511,1.0787234,0.96743774,0.9263557,0.91743267,1.0092019,1.0535783,1.1127038,1.0681757,0.87740314,1.0837194,1.065718,0.9053914,1.0741551,0.96002,0.9558242,1.0712216,1.0114921,1.0382158,1.1568197,1.0686315,1.1355176,0.98838156,1.0682685,0.9696005,1.073468,1.0931939,0.83431506,1.0137974,0.9645277,0.96290445,1.0984896,0.8756963,1.0290402,0.9391099,1.0374354,0.95407987,1.1969696,1.0253367,0.995056,1.026747,0.9751741,1.1087898,1.039378,0.94835675,1.1237034,1.0535477,1.0687807,1.1632669,0.9177906,1.0618752,1.0330994,0.87570345,1.0388107,0.9506829,1.041097,1.0149632,0.8720353,1.0393248,0.95195746,1.0225031,0.92154604,0.9782842,1.162461,0.89435536,1.0238589,0.8728256,0.87302125,0.98543,1.0253335,1.0091887,0.96660703,1.0183563,0.911827,0.91960955,1.095204,0.8870306,0.9426764,0.9391093,1.0394481,0.93263066,1.102443,1.0100286,1.0634127,0.9912426,1.0869296,0.963098,1.0513569,0.8936066,0.9850163,0.94017035,0.939329,0.88872993,0.91424894,1.0669739,1.1179472,1.0183018,1.1203978,0.97783345,1.0324328,0.9745268],"re2":[-7.296639187095484e-33,-2.495560271467162e-33,-1.7366981646303384e-33,-3.916902811184079e-33,-8.557035415938365e-33,-9.32956868323632e-33,-2.8268387998702172e-33,-7.852860554797804e-34,-4.176965147994778e-33,-8.972850281961237e-33,-5.4991026598891185e-33,-4.7622339851165174e-33,-4.1519188441655696e-33,-4.954449715165843e-34,-3.1569954089906066e-33,-5.501972581404384e-33,-2.378109506448367e-33,-9.373027437379303e-33,-1.685131288724394e-33,-5.4769792366683894e-33,-9.855034982273962e-33,-9.927777034118078e-33,-1.836423857445837e-33,-3.8356114065348495e-33,-9.171915822947804e-33,-3.672676237268111e-33,-2.2029180573902884e-33,-5.624961504616303e-33,-4.536298429178404e-33,-3.608576177985242e-33,-5.59101136812179e-35,-7.296622293715875e-33,-3.097035634647044e-33,-6.551590045913857e-33,-6.263209621433965e-33,-6.796103269135101e-33,-7.400813690235975e-34,-2.7540287076180783e-33,-5.030633320049375e-33,-7.897218532614281e-33,-8.446171618440691e-33,-3.943679509963144e-33,-9.317497456327372e-33,-7.145210466387611e-33,-9.823718997478447e-33,-4.189999208383302e-33,-6.197049130489237e-33,-7.140668347081301e-33,-8.929060160103975e-35,-8.702340069344404e-33,-6.056145348770682e-33,-6.559145512647079e-33,-8.945943832977749e-33,-5.350029601184919e-33,-3.749583984658264e-33,-4.606888056037762e-33,-4.5745089082707137e-35,-3.789000285313392e-33,-7.044339822595016e-33,-9.537474740944668e-33,-2.268594099856197e-33,-6.928677140068629e-34,-3.857767548433869e-33,-8.275495445501817e-33,-2.7816985759521574e-33,-3.330513951185282e-33,-7.79297546696262e-33,-6.824348671261722e-33,-1.2053824689751137e-33,-9.141476080009628e-33,-3.0983611668817024e-33,-6.430583561087094e-33,-2.788863478545384e-33,-2.193587436822726e-33,-2.490865733260207e-33,-8.77503050377625e-33,-5.891801716599321e-34,-9.618875165021323e-33,-8.181759043804153e-33,-9.004981844132017e-33,-1.4601461964893181e-33,-9.223098834477784e-33,-7.202416749737868e-33,-4.5183167500563195e-33,-3.047370126197946e-34,-5.540882605760142e-33,-4.780915598698971e-33,-6.138474596447608e-34,-4.232907999553688e-33,-1.1577673649428678e-33,-8.299993022439415e-33,-5.797434524771034e-33,-3.7337697204698374e-33,-4.632536243048749e-33,-6.393417346485241e-33,-4.997688317675308e-34,-1.445206738251137e-34,-3.333516435003285e-33,-3.387166700717954e-33,-7.222697011635583e-33,-5.7558292004341144e-33,-8.937991200010977e-33,-1.4551622541217446e-34,-4.914812794232717e-33,-2.4135930547020978e-33,-8.458564954196033e-33,-1.1452769455351953e-33,-5.7313535562916796e-33,-6.795089367363938e-34,-8.975618996782715e-33,-3.661334079177581e-34,-8.50956762483024e-34,-6.716211824703346e-33,-7.688874405220428e-33,-2.7283546677863358e-33,-5.525162752268848e-33,-4.5025582146730236e-33,-7.022584914398637e-33,-5.0393282334049384e-33,-8.065260231622646e-33,-4.4611539723024287e-33,-2.1148900358048164e-33,-8.072123238285331e-33,-3.2226758303539404e-33,-1.4682172567139207e-33,-9.325124059878537e-33,-2.5849648956480598e-33,-5.503237837087142e-33,-3.081886401931837e-33,-7.893220666957928e-33,-9.878671942775189e-33,-7.272045109187464e-34,-8.348923768640922e-33,-5.6022445956752356e-33,-4.815082793313208e-34,-5.593908462690188e-33,-5.7814919408155746e-33,-6.496360489155141e-33,-6.165180544670454e-33,-3.835061261869839e-33,-1.14342201217566e-33,-8.554970808465768e-34,-8.43511429457968e-33,-6.294074516125564e-33,-6.565013665353651e-33,-5.103494677688448e-33,-4.060409697061186e-33,-1.188475090383221e-33,-2.239795689889389e-33,-1.8861464931779106e-33,-5.15819659534495e-33,-5.334992623838523e-33,-6.236163716275979e-33,-2.5660298546339668e-34,-4.41275079030956e-33,-6.147476800731851e-33,-2.1372160076436233e-33,-6.406545344094571e-33,-9.47080224406022e-33,-1.688908902315578e-34,-2.5252921189479317e-33,-1.0900910939654041e-33,-1.323076429177439e-33,-5.201861890956831e-33,-6.691256366705164e-33,-5.579131291729636e-33,-7.193778849514145e-33,-7.225447314715941e-33,-1.7257330513546756e-33,-3.1510954409420523e-33,-4.101534475575529e-33,-4.290524849779117e-33,-2.836030122725424e-33,-3.430727669566843e-33,-7.155335671888544e-33,-4.1508021552815814e-33,-2.3454542355682164e-33,-1.142636554709986e-33,-8.673364373158623e-33,-6.782443697174361e-33,-9.101865107432332e-33,-2.0961510310862187e-33,-4.425686933176065e-34,-1.5955923476223988e-34,-2.2433787448219334e-33,-8.730506870342178e-33,-3.11286097640878e-33,-9.856228347802543e-33,-1.9149169355784546e-33,-8.327902983410163e-34,-7.562486284436323e-33,-9.765730427098385e-33,-7.710619255651687e-33,-1.71790724800445e-33,-7.177901554007722e-33,-5.471777547253392e-33,-9.054872004780564e-33,-7.015278690773802e-33,-4.740993706340918e-33,-5.49721497664348e-33,-7.781017270666215e-33,-5.72114701278919e-33,-2.9542804797016864e-33,-1.8127293420848345e-33,-8.175964678065932e-33,-4.729028937600466e-34,-3.3855738127501466e-33,-2.593408219276383e-34,-1.7288216703725145e-33,-9.042255008923859e-33,-9.176594379684192e-33,-3.919929844137649e-33,-9.84353573025924e-33,-3.8032303697813566e-33,-1.1775960230627404e-33,-1.0302648395934656e-33,-1.0330331953620997e-33,-5.740434741004793e-33,-2.302036356160304e-33,-6.509985566321197e-33,-7.600359773674938e-33,-6.368556694020489e-34,-1.1817425315326502e-33,-9.733257791910842e-33,-8.346096085266011e-33,-1.55391987814833e-33,-9.957430432055766e-33,-5.390109368007137e-33,-4.4803596908321054e-33,-1.686536276192101e-33,-4.963284190409994e-33,-4.6871441021660445e-33,-9.632085480157058e-33,-2.2524285361669395e-33,-2.544510852640791e-34,-7.003782655662366e-33,-3.884067515605928e-33,-7.016608671823526e-33,-1.4236207640279287e-33,-6.284603890088486e-33,-8.852655817307054e-33,-4.8973266183110456e-33,-8.757256573246354e-33,-5.217355690450432e-34,-7.7886100109686e-34,-3.482555390286126e-33,-7.36489908799644e-33,-2.0901656583506612e-33,-9.364788540509711e-33,-7.036921701395522e-33,-5.792211110630892e-33,-6.576871538221877e-33,-8.036688476494265e-33,-2.3254220650463466e-33,-6.382233650707163e-33,-3.22018864941795e-33,-3.5060686806587495e-33,-2.5392426031914453e-33,-2.6813816997561303e-33,-5.5919963545152266e-33,-6.623660480057647e-33,-6.184013434667649e-33,-5.934566014994375e-33,-5.267975810695922e-33,-2.1814187801632135e-34,-1.5613123336905487e-33,-4.763961791497284e-34,-4.541573129670932e-33,-1.7066891136200203e-33,-1.1921765210848524e-33,-8.470713421338932e-33,-3.4684373313160326e-33,-1.7125994393014433e-34,-6.380610125883094e-33,-9.31836062878775e-33,-4.903352729057303e-33,-3.606169263479209e-34,-6.276533902327137e-33,-4.669517500020927e-33,-6.735671994641171e-33,-6.634377101790007e-33,-6.33650513066091e-33,-3.548596878477469e-33,-9.668365878937119e-33,-3.91514682425279e-33,-2.7967341378252343e-33,-7.74703915693388e-33,-1.2267381477431695e-33,-5.401508076870439e-33,-7.108933995190659e-34,-3.77063187788954e-33,-5.478925326397401e-33,-9.737304161431815e-33,-9.540909483990599e-33,-2.1170786890427397e-33,-2.5499883268206116e-33,-6.555087660584918e-33,-4.385766228535695e-33,-6.369590098972463e-33,-8.142401783151939e-33,-9.66619759643894e-33,-8.732115281203724e-34,-1.0455005105554227e-33,-4.757167911584805e-33,-4.5427736676624925e-34,-4.026619023654312e-33,-7.318387039549558e-33,-1.743814644728181e-34,-6.0939524750060696e-33,-7.935396507821624e-34,-3.122439553653564e-33,-1.4229837620609165e-33,-2.2618799289574356e-33,-4.532177130806929e-33,-9.471474769203171e-33,-4.4844310568173586e-33,-6.805302962993254e-33,-5.3009973156903084e-33,-6.588977223511044e-33,-3.705091021528168e-33,-7.123019010553106e-33,-1.877667168361026e-33,-9.840302551235104e-34,-2.0304407849875862e-33,-8.270903998442767e-33,-7.098676272384213e-33,-8.506675229434236e-34,-9.453987688241887e-33,-6.813323790323338e-33,-9.552825746431194e-34,-9.890491287241486e-33,-7.805357180663793e-33,-3.990434810194753e-33,-1.936559907579132e-33,-7.695413420432598e-33,-1.127210390214527e-33,-9.360382943733871e-33,-6.0646640627599694e-33,-8.404021674027094e-33,-9.924701926849737e-33,-3.1368711463778156e-33,-1.1403814361565102e-33,-2.22879361982298e-33,-8.773685647876487e-33,-5.347498697962778e-33,-6.518275599222199e-33,-1.7985209969248807e-33,-1.335559880418048e-33,-1.2460096466287663e-33,-4.580078561826069e-33,-3.496606328907823e-33,-5.066912611015906e-34,-5.234907320648801e-33,-7.199260568408617e-33,-4.7694097146813476e-33,-8.995633187200153e-33,-8.44976891985926e-33,-4.787822802658467e-33,-3.706769383414218e-33,-6.503366470823358e-33,-6.1511639522733165e-33,-8.221219098430139e-33,-2.4395784427372016e-33,-2.35411102251353e-33,-9.05941152970624e-34,-4.381302259803669e-33,-1.9512615054939897e-33,-6.969598589598569e-33,-3.461506930288268e-33,-7.154960926095495e-33,-4.475713833810259e-33,-6.522163783688625e-33,-4.807650482285236e-33,-7.820559664091354e-33,-2.2478171051684092e-33,-6.21733908651787e-33,-5.807628364797397e-33,-7.755934414298298e-33,-5.384552726511627e-33,-1.0739368037816855e-33,-3.37719942143532e-33,-1.6419042918984374e-33,-4.006608926757126e-33,-4.3356606297588884e-33,-5.581304786365715e-33,-8.203001117305125e-33,-1.163161932540896e-33,-9.173734682890282e-33,-8.268438747451918e-33,-3.851163410548037e-33,-7.120532447294542e-33,-3.080257461639544e-33,-1.7842808260147938e-33,-6.533510068726727e-33,-3.9615843415297736e-33,-7.48181467395654e-33,-8.19581124338891e-33,-3.6549817736211026e-33,-6.28934033408056e-33,-3.342544890706029e-33,-2.0813008934620858e-33,-9.699804423284245e-33,-3.801766379243035e-33,-8.324143973984658e-33,-9.374405130467054e-33,-3.788421488416717e-33,-7.173424919914688e-33,-9.059861846169632e-33,-7.833035464022643e-33,-4.231060105810244e-33,-2.6497622760804365e-33,-5.0372345827579105e-34,-1.1758799646875984e-34,-7.117933431769313e-33,-7.0169291409146965e-34,-1.090130961283098e-33,-1.5999110698802288e-33,-8.098070200427927e-33,-4.477028605348174e-33,-3.226896840197937e-33,-5.1631683126699594e-33,-4.074252690043672e-33,-2.075185687171388e-33,-6.76164755539116e-33,-2.5927468628778816e-33,-4.133264600270277e-33,-6.626910762918016e-33,-3.525997191893691e-33,-9.128012983123314e-34,-3.608232566195324e-33,-8.660210145674531e-33,-8.9033538333131e-33,-6.350734754465422e-33,-1.8248629497434776e-34,-6.620312272804946e-33,-9.864307866755421e-33,-1.516810661772814e-33,-8.28437817060211e-33,-1.7153276960150254e-33,-1.785010035180984e-33,-7.864720290705995e-33,-3.149767490319221e-33,-7.963737397139882e-34,-1.8933946784526424e-34,-1.7786288869769443e-33,-5.507688133363381e-33,-6.543884291097035e-33,-5.114831152387248e-33,-9.858050329145073e-33,-4.943956181137521e-33,-1.2207731660058463e-33,-7.940312074190994e-33,-6.376943367255694e-34,-1.491086212695233e-33,-1.1506615184471536e-33,-8.169617973716223e-33,-4.8808614278042356e-33,-7.42229802295419e-33,-2.110259482822622e-33,-5.7600828414783416e-33,-1.3002009802378245e-33,-3.779005691192783e-33,-3.4925627949970897e-34,-8.173458923394565e-33,-2.3447581490994862e-33,-6.330533023153984e-34,-4.316421046103929e-33,-9.912923111632188e-33,-9.165643128800907e-33,-9.54626018112421e-33,-7.663234784586866e-33,-7.851018726951026e-33,-9.298616617874457e-33,-5.073069370198539e-33,-4.065924917984394e-33,-6.81223846260016e-33,-8.615666186143922e-33,-3.822785119313481e-33,-4.603196103589591e-33,-2.1846085910186963e-33,-7.036472292833643e-33,-8.553468756946657e-33,-9.451347239420909e-33,-4.577532060303704e-33,-3.013623131296761e-33,-1.6025217676076786e-33,-7.587827611779685e-34,-2.0316099421394763e-33,-3.8142949963625676e-33,-6.479736850369878e-33,-3.816916561005346e-34,-2.6221133257768726e-33,-7.629628763792198e-33,-2.3944531658725945e-33,-1.0089128417794347e-33,-2.8051904276285435e-33,-8.62445890071188e-33,-7.789829315060581e-34,-4.9692390427937176e-33,-8.663651541154865e-33],"im2":[-8.713373743087324,-9.23381534365497,-9.195972795168267,-8.579096871973617,-9.452359709918422,-8.211517297893057,-9.28130420243799,-9.744538778416052,-9.176894939268932,-8.721008890597421,-8.032132982157052,-9.405218352740551,-9.275950916587451,-8.528661623720744,-8.080227268701478,-9.56246151969351,-8.64502990808324,-9.167059080722744,-9.059916605846304,-8.991081231124372,-9.090104611969867,-9.805170306673325,-9.910305597004273,-9.209485253111158,-8.943008342660498,-9.254783841074284,-8.165465508775348,-8.879453972186736,-9.67963882283616,-8.828833233690057,-8.108819257403216,-8.286568414237433,-9.22673548035117,-9.978402790082832,-9.215473764993012,-8.25548209239355,-8.613319524801952,-8.842877673626093,-8.978042727500783,-8.800208252637063,-8.005888719324325,-9.065264906731125,-8.924099194965777,-8.921376522513997,-9.718329327501744,-9.910566831140155,-9.996122099979015,-9.026338849102233,-9.154509525536799,-9.305184961489205,-9.219244551410181,-9.749707684422495,-9.602819776104056,-8.030846086860318,-8.337029284085105,-9.863212630642677,-8.388568833571501,-8.121511212634363,-9.825774241708658,-9.494315006684472,-8.809378923589188,-9.827330423672231,-8.411014886069674,-9.636687931496905,-8.42905977980246,-9.957388694231868,-9.291347286906875,-9.194594417708586,-9.188928879971307,-9.566630068638457,-8.236245035285709,-9.210874975475065,-9.862682032854263,-9.060892818693686,-8.727181059789459,-8.802434561594259,-9.697997737563188,-8.715144451445772,-9.158414485296621,-9.739912049635537,-9.165863552294345,-9.121827010055235,-9.544486284128691,-8.3829954659171,-9.699407386206047,-8.062245955372465,-8.109308294022872,-8.711707528865057,-9.408536831864678,-8.930383605946757,-8.810632938542657,-8.65889943412961,-9.069499759534118,-9.858595737845013,-9.971683525317822,-9.015861289105915,-9.850614628663221,-8.214575088032198,-8.567095950052535,-8.682056896872613,-9.828819368820382,-8.633927686444348,-8.891320855601684,-9.83392514076547,-8.509161704175474,-9.218328215308317,-8.4760353241179,-9.198991632165288,-8.324148709915423,-8.746066944156972,-9.92971396836322,-9.637764992439742,-9.177110715633628,-9.324033698197704,-9.646872182528508,-9.972011427760082,-9.314265824360653,-9.377315469371954,-8.383279212944247,-9.788763936919818,-8.437928698970726,-9.834141195004564,-9.079967599830821,-8.73369986281078,-8.904650385944695,-8.821552875744821,-8.063877103355926,-9.31531548784462,-9.077850961863497,-9.132535124617466,-8.051513459254998,-8.230345612486893,-9.673663242467157,-8.855001349785812,-9.26517929416814,-9.280008595312669,-8.928557321420461,-8.952971483180972,-8.395418409263545,-9.891038582708143,-9.874199714470398,-8.8701651429753,-9.763010759181148,-9.878675603565542,-8.670206489114216,-9.425794750527466,-9.325281623823466,-8.310053069981468,-8.136603160122055,-8.218550966714428,-9.918194277788643,-9.76201335309487,-8.000573341127946,-9.498235274312169,-8.551160363262564,-9.999388591123845,-8.970136943123867,-9.275343253801083,-8.424285495067926,-9.353533678992987,-8.874119507998106,-9.335708976227608,-9.849743546326202,-8.63680006112481,-8.292088775272664,-9.458930862835587,-8.877369668126459,-9.674279666733256,-9.475495529170509,-8.48002257679683,-8.28723144267182,-8.375484553660774,-8.831931519500792,-9.169342736971346,-8.09102538584661,-9.354156068988722,-9.05855968838592,-9.996131567732562,-9.48690333913865,-8.552144002224239,-8.862925821393741,-8.738287981520278,-9.734181942002444,-8.6621311796572,-8.741257290242496,-8.995990072766668,-8.79615120993056,-9.280462342358005,-8.36861679749532,-9.192539868167003,-8.847229188296716,-8.22082609521737,-9.108967460862987,-8.964743541506571,-9.676429604337672,-9.158914807033812,-9.461885470366521,-9.331237490210265,-8.012700840373435,-9.22368623427893,-8.4035008956232,-9.356614187615417,-8.893241719233822,-9.56406642479037,-8.375373850940218,-9.585757121310598,-9.112415194618196,-8.631368917199403,-9.48578774394293,-8.579956408586881,-9.528792006005956,-8.177373312080565,-8.824648029215274,-9.431033523577694,-8.324445263896914,-9.462838562836899,-9.656512575679152,-9.881030030085658,-9.386839609851355,-9.997457007516655,-8.568669328589653,-8.54522292493724,-9.73194620550949,-9.970700392748288,-8.666041536722762,-8.371010238512843,-8.592407355478551,-8.41814723076873,-9.02919097380408,-8.795838733076147,-8.747593406739096,-9.608898423474518,-8.536658774773155,-9.518702164198707,-9.967000389960926,-9.386195209108648,-8.108412315995288,-8.171790582272425,-9.581461850712621,-8.87339296461125,-9.478480786884212,-8.839642944420477,-8.890668234220819,-8.375817607600538,-9.013946661646626,-8.144911463696365,-8.941139061986586,-9.109988327732196,-9.640405837847425,-8.8247110250949,-8.370344726690199,-9.617352143653259,-9.460407997683804,-8.20682490230621,-8.215902613442093,-9.879692811378503,-8.332778672254108,-8.88009285622406,-9.281547217775554,-9.636817535280517,-9.5356480426285,-8.052386514209307,-8.572994005790148,-9.118307789853207,-9.058619759416231,-8.399837782115021,-8.491189514630276,-8.778676607519454,-9.155017810125152,-8.509115836893608,-8.913510765210724,-8.991926641063705,-8.851298899111375,-9.61797453401174,-8.719710883037084,-8.527004249682065,-9.90193034761492,-8.190867868434863,-9.244940138318043,-8.307931463158845,-8.324931516052954,-9.634094837735196,-8.161455947474343,-9.219336371326511,-9.310245425208379,-9.10201716212773,-8.463654789356275,-8.007519455466797,-9.684676658287575,-9.491313818090475,-9.598327158688377,-9.2633558848451,-9.98673770370984,-9.921384523814034,-9.685392130910369,-9.780552278435858,-9.118873091706307,-9.978361388604824,-9.25611565432473,-8.070990997317654,-8.038401977095324,-8.404005022116632,-9.753933444132835,-9.079965873212908,-8.953848334780869,-8.364628909027381,-8.461267717425162,-9.358815268724952,-9.163521097620787,-9.50445088918136,-9.99789541623534,-9.838478470976085,-8.999718564956936,-8.989727201833638,-9.334514828346212,-8.533856657648343,-8.233990854741918,-8.37932885804587,-9.590267322105692,-9.922239364250212,-9.064630085913674,-9.262339257550652,-9.171178990126823,-9.635184348857862,-8.03587271644923,-8.845835564237774,-8.588002481765407,-9.243754700835398,-8.605495373593994,-8.01252336601509,-9.054945964885178,-9.5848326898843,-9.311346038321641,-9.464725146987972,-8.08913439564587,-9.050501199196923,-8.952980435270652,-8.435760356526572,-9.84427210122981,-8.789328274016611,-8.943378870010937,-8.504542634759495,-8.696380982295146,-8.545345445645683,-8.879606268309848,-8.991030319455863,-8.548288176025222,-8.398809656709261,-8.331751607440538,-8.136788312244253,-8.79791461934348,-9.65021523826681,-9.768311284516777,-9.080966668342253,-8.943796884464309,-8.398789886058005,-9.767187257037987,-9.036969388805232,-9.627181586641287,-8.254668204291892,-8.416404148985102,-8.785273881137357,-9.571768788943489,-8.12226172949318,-8.847774203939398,-8.616784607911006,-8.289386593071429,-8.621713061717925,-9.222176142391392,-8.103442993081387,-9.43616042390334,-9.624602739197595,-8.04903944980339,-8.419577478334405,-8.63506810373436,-9.73035083840616,-8.539711951418615,-8.806319334499035,-9.582800947788956,-8.78837520042911,-8.839330187057408,-8.649816106121564,-8.868179782073794,-8.16873253636793,-9.06836685450769,-8.76310903381799,-8.22921048397293,-9.385606994454239,-9.175043276692147,-9.666253887878332,-9.623823214121508,-9.625128140303046,-8.422715639623693,-8.058347571317423,-8.449016805778788,-8.799066186919076,-9.780476080215738,-9.950256596671755,-9.071641151904917,-9.90693694677543,-8.820539864799876,-9.8914635731561,-9.502856911319016,-8.820695321182578,-9.52380312533028,-8.425885083962978,-8.316791631671723,-9.187621447397538,-9.886784449415252,-9.106384550213093,-8.090426137600218,-9.575256485486221,-8.45674785213162,-8.561456214923288,-8.380761404482337,-8.251440877739673,-9.691839917318848,-8.429050648841878,-8.025460501759557,-9.241787387502768,-8.642200859954874,-8.99584812192646,-8.180740357358008,-9.711583526974389,-8.252165635746655,-8.192272012323961,-9.751252720727543,-8.688399682062164,-9.997397176151246,-9.218872979551007,-8.29539383723019,-9.476877143808968,-9.431619050230644,-9.320543818310046,-8.72836337584854,-8.60082538314662,-8.208781747044503,-8.357040382795711,-9.23997499290497,-9.341102935873465,-8.823893542471849,-8.95770003601007,-8.825916748440461,-8.606697826402296,-8.485312019388218,-8.131633227665338,-9.104902292086113,-8.297917689098854,-9.533108258093336,-8.716785599556081,-8.337510651599532,-9.550559708549281,-8.651215711702019,-9.986545753352232,-8.736487109401004,-9.715108940783802,-9.31468697834608,-9.220700149608039,-9.210511053323799,-9.617711351313746,-9.921321466062503,-8.686994456321234,-8.062575605075995,-9.83344422603545,-9.040913861391353,-9.87193858675123,-9.753002838520484,-9.83801236094169,-9.563987661021184,-8.63969133590472,-9.245339383772668,-8.704757500759971,-9.90734435789026,-9.146349554788515,-8.04419330795941,-9.718548532395559,-8.562722197394795,-9.975406426225165,-8.313928107119711,-9.06428539598375,-8.837423615078118,-9.021813323994316,-8.612109008583774,-8.539327977519783,-9.021259264169206,-8.922522857968758,-8.023223349882354,-9.58717551769727,-9.427764271697551,-9.854729394347011,-8.575295051168716,-9.031083228165707,-9.719883857179902,-8.266185943252973,-8.489530430483352,-9.727242859287884,-8.701836342342846,-9.668339804426818,-8.895609204991041,-9.866611609649647]}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/tiny_positive_imaginary_components.json b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/tiny_positive_imaginary_components.json
new file mode 100644
index 000000000000..e99bca8c5f33
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/tiny_positive_imaginary_components.json
@@ -0,0 +1 @@
+{"re1":[-8.237202914518512,-8.943472902979934,-9.808816706020018,-9.975786231986394,-9.585461587399916,-9.503871871858443,-9.413138237936426,-8.030909267809914,-9.019110563876248,-9.154185403130645,-8.763301576929747,-8.582310938377152,-8.659771617778176,-9.858286031766044,-8.743747244851987,-9.450340139034587,-9.980172807178162,-9.08896780767419,-8.247482943270432,-8.302446558575932,-8.863819925686126,-9.9907388410724,-9.30571031324933,-9.557437939828127,-8.8000103269908,-8.89927283221256,-8.02532618656896,-8.36696458094174,-8.307281696657709,-9.43860862188582,-8.389660704082697,-9.98699696084022,-8.685943083113104,-9.649872774930262,-8.410060588857371,-8.550261077295172,-8.50237681222267,-8.507503978827327,-8.84420363997001,-8.738830019968178,-9.769758961174698,-8.530100188636451,-9.544423434518835,-9.59104356183217,-9.842921981286299,-9.695769845638829,-8.017352545431145,-9.928329164311014,-9.1899404292007,-9.86529414060453,-9.40590602806669,-9.961220063805179,-8.986328192125926,-8.487225278654208,-8.37537431455089,-9.421155879168882,-8.75476074058543,-8.722505795250912,-9.900392331278335,-9.826735004437559,-9.596288158245429,-9.90302663715137,-9.875003058834231,-8.652808030263868,-9.481935167186627,-9.183878236858968,-8.162637272449738,-9.637186771625784,-8.843811360832827,-9.319756201806717,-8.217103698695782,-9.98195286398917,-9.428748786518218,-8.266744994204597,-9.192505092504422,-8.654174569296995,-9.78444950131375,-9.210227553531627,-8.666750692317798,-8.589456932680584,-8.899805782970093,-9.166820882328942,-8.1891251459001,-9.547882167225348,-9.739852604666092,-8.850972896225812,-9.973134509677973,-9.85518026212058,-9.554780433554367,-8.383248912448531,-8.064357936168554,-8.72747764522987,-9.328832776551124,-8.691561141265353,-9.88652261854182,-8.043595514387215,-8.104584735145709,-9.955061492733904,-9.088120866799633,-9.759737517894518,-8.637447593281099,-9.659966751553426,-8.498324695958704,-8.381130532895465,-9.820842059447092,-9.302375314820251,-9.881443291667713,-9.26453848549886,-8.853608546654417,-8.809594532581164,-9.381585847096535,-9.092789900329398,-9.237037445263693,-8.024232346528441,-9.234683978598209,-8.19853775529674,-8.332518043203837,-9.381636635060074,-9.878134221640163,-8.253645518512046,-9.376851364141983,-8.9930986872683,-9.621756863168308,-9.703906843272412,-9.855860111671946,-9.610389102836162,-8.794702381332492,-8.114996794939092,-8.506721085023202,-9.550889214500327,-8.773902623061842,-8.57765462725385,-8.585845490138745,-8.488837107751493,-9.604303249953736,-8.735842473601258,-8.451565757608911,-9.509777129512823,-9.175673477882592,-9.797993527204632,-9.560880078162592,-9.547429686948673,-8.808188608376863,-8.977920340425536,-8.623057644692464,-8.550347143419822,-9.948193747670045,-9.774575925459146,-9.371159530912466,-9.41201168538148,-9.971977409018278,-8.202478385852398,-8.818844182500765,-8.214106772440264,-9.407235388655899,-9.908657271271846,-8.542157181573886,-9.048145570905902,-9.771398842572077,-8.413988213480478,-8.993345388959906,-9.664872452704413,-8.09755048521985,-8.647605403578485,-8.259088675497974,-8.321754503576063,-9.75633586590178,-8.458495044716297,-8.491784026893178,-8.96121455966536,-8.572533364824842,-8.0585648879277,-9.843263384857934,-9.746650900219468,-8.653516828710629,-8.115254008458445,-9.685656421448451,-8.627233035555783,-8.534176526603344,-8.512408284459312,-8.139110328053839,-8.405292602919681,-9.01773017433512,-8.28063665121709,-8.588854128921245,-8.386358459649268,-8.301239508161842,-8.680964177033848,-9.773147912977969,-8.930246924178443,-8.073086080330762,-9.008315088673834,-9.877180357274266,-9.608079650109588,-9.320432498050367,-8.541255663988826,-9.046257787438352,-8.109654039204893,-9.996456742310318,-8.925533038006487,-9.759564747316126,-8.15778543012812,-8.566830604626588,-9.413443175676546,-9.412848918297172,-9.008027105538309,-8.74433288307084,-9.204876894690297,-9.231957112006317,-8.341501416849141,-9.133274406201624,-8.704093054279435,-8.17693270521882,-9.15110325099707,-9.18496696688631,-8.47612508866896,-8.114271954454107,-9.194794624396732,-9.427212128788216,-8.545967197669937,-8.202483436130846,-9.560400882288965,-8.013627113039933,-9.273715766925985,-9.189699428944596,-9.379147614230892,-8.92540547656617,-8.359401335886691,-8.665362640671562,-9.844093653193084,-9.587648073536311,-9.832755508658568,-8.240695808474044,-8.158650461529524,-8.04515578637031,-8.631441748106534,-8.609840015689159,-8.739895730875086,-8.812487742792342,-9.974938859859577,-9.052213967946107,-9.906346006115774,-9.19619652957527,-9.224881369035506,-8.938309123576934,-8.252613129860123,-8.010446157997725,-9.740055000410832,-8.351365707281477,-9.448150550902309,-8.029611846333694,-8.746375473533925,-9.94049059457414,-9.394161397139024,-9.615860386632725,-9.324554001022943,-8.698637154856645,-8.273742762654225,-9.49739306749408,-9.850024806474327,-9.528717780362202,-9.945755477344685,-9.15944541379177,-9.465138732111603,-8.376782207792909,-9.873868931427895,-8.291293778392268,-8.306662225744539,-8.993277125637922,-9.814074917836402,-8.268068589798823,-8.765438339228439,-8.573817991779222,-9.321863672414977,-9.627778068438909,-9.098447263947767,-8.954854504083501,-9.695268756754608,-8.221207691830456,-9.677938917080336,-8.436388911092445,-9.408360332543802,-8.710136141627315,-8.779421902357068,-9.371496015639503,-9.901527887935211,-9.392331058113937,-8.827336574608486,-8.506632123360449,-9.903476329019972,-9.130293100095153,-9.367648245029354,-9.278275336794469,-9.079940076191672,-8.687427242601334,-9.281572094766572,-8.474658146358964,-9.390773220990052,-9.140282535408565,-9.20318677650182,-8.921100913743347,-8.580467231551522,-9.03672840557102,-9.6070275312432,-8.8571172044437,-9.350080723219824,-8.305208008665826,-9.535646786365646,-8.98604181652025,-9.590454472370258,-8.50696867816647,-9.236707793588085,-8.360084855182299,-9.904748643564428,-9.822290181227228,-8.573235635433354,-9.712060416914301,-9.463240663253096,-9.397632946694712,-9.460033436556804,-8.413688863062035,-9.994555062890926,-9.17285495601722,-9.666906789468571,-9.853951069240768,-8.320431879583642,-8.911002957950984,-9.357923988310578,-8.987915992197154,-9.743812514836081,-9.69563738785766,-9.788970075425997,-9.403637008101867,-8.743656577699358,-8.826543977533326,-8.647971033063477,-9.011229175070074,-8.257623133441175,-8.56764827166522,-9.958796385736687,-9.333533327720936,-9.850478517226156,-8.988546954459597,-8.627124284195848,-8.827561217365082,-9.226010733920088,-8.77680303692862,-9.276491345339645,-9.27451579996259,-9.727208650403496,-9.741729656339983,-9.93049978887186,-9.917895307593028,-9.377073983466138,-9.240864406095941,-8.099490228431437,-9.044985822720626,-9.362371279121167,-8.243282986975428,-9.166880951907336,-8.166284832158576,-9.374877539263714,-8.300478906616698,-8.781428749234662,-8.35592841724476,-8.41189731216929,-9.95926199635332,-8.02371666773881,-9.579475866218694,-9.51261461715476,-8.655394436271216,-8.660400659915702,-9.266511350777682,-9.018714308238785,-9.941392875893474,-9.751552020170264,-8.485629652874689,-8.176779212566112,-9.938223153552704,-9.941698266786513,-9.646732836721496,-8.531148355892668,-8.881208215547547,-9.094481223111337,-9.695104669624115,-8.67663603797607,-9.098592131136979,-9.825659656035295,-8.007392291607603,-8.536740189324735,-9.617429959724623,-9.318841625543396,-9.44069534532987,-9.30776689572016,-8.077516846066134,-8.450768292100923,-8.975222079476746,-9.246367319380454,-9.903617421035136,-8.47651873328608,-9.09222774373574,-9.301199762374598,-8.829185860198468,-8.42439087370776,-9.073667217712273,-8.993485652899468,-8.633101703185616,-9.2805343728359,-8.170577232497333,-9.655597551704513,-8.259365729494345,-9.157945644958492,-9.456476153185083,-9.155691754713601,-9.073130806347145,-9.925375970188785,-8.004420791089448,-9.445170245988415,-9.893418128729339,-8.575584288900737,-8.056365661090272,-8.925533033608083,-9.945789539478756,-9.130787722856809,-8.989603269175232,-9.590071447640332,-8.617383734282448,-8.94586825634136,-9.75409457417788,-9.706001580588293,-8.638247102336699,-9.355494324835774,-8.181723222036442,-9.411606359423871,-9.404715215728732,-9.548246059449234,-9.629006435154901,-8.955098569312891,-8.052916374107973,-9.571827915656433,-8.193524050432103,-9.674564905968507,-8.82446148844915,-9.948090590794347,-8.095034964158595,-9.426639646263498,-9.181594479293123,-9.109850386272706,-8.742335951640552,-8.987168642063079,-9.099012046851916,-8.453270708052965,-9.820383801925754,-9.204223281724214,-9.312495638736253,-8.90638365741433,-8.444326367841356,-8.534466916254495,-8.476632159132627,-8.83392421860972,-8.822714773978689,-8.3447684960868,-8.449177655498518,-8.653853307224894,-8.201817439363623,-9.003201440837927,-8.902708866605844,-9.911684564871237,-9.256411553844929,-8.755003040676353,-8.006156895631785,-9.03897963870203,-9.574500115791306,-9.328803504761568,-9.05555963631921,-8.541177778932381,-8.96902892562263,-8.94120937873344,-9.614582192792584,-9.485541834370064,-9.27547676607713,-9.713081429166278,-8.851270707907942,-9.36812875835942,-9.52973319513521,-9.097255659822054,-8.541059452450838,-9.054649909964555,-8.806937620314166,-8.29075125717794,-9.230343718954007,-9.40763958012593,-9.162112152418004,-9.533582808147862,-9.65865701091286,-9.245231923644013,-8.334900191498173,-8.744855683378336,-8.114015310996363,-9.992856590335231],"im1":[8.382852142568776e-33,6.741617905503428e-33,1.8390829838923284e-33,7.6972665496656604e-34,1.1803424287315401e-33,3.632124537326628e-33,9.898295639894978e-33,2.460519012239737e-34,6.87770485027587e-33,8.729934008179815e-33,8.804030681438445e-33,4.597684382686939e-33,3.527987443941297e-33,5.405563364467231e-33,5.2225622293312614e-33,6.1437363031020975e-33,5.6581158900590667e-33,5.429731782148415e-33,1.9399441811002206e-33,5.619463867608721e-34,8.228698198003912e-33,6.669275298825031e-33,7.59684145755704e-33,2.027559998974862e-33,2.1999716523789237e-33,9.787758747889512e-33,9.985121742915245e-33,7.885616853654535e-33,8.306872857033916e-33,6.54573400501064e-33,7.97712193791999e-33,6.608355310832038e-33,6.45878548153693e-33,5.9577984987617644e-33,4.336620998365134e-33,5.26676551567776e-33,4.123678435961913e-33,8.010447360398442e-33,1.0969725979730195e-33,8.226058788599018e-33,1.6786625488131247e-33,5.3916286772257576e-33,4.708981433974835e-34,3.219334459810661e-33,6.260941185900164e-33,9.991803135907613e-33,5.460941122344515e-33,8.817839925388255e-33,6.72892034137939e-33,2.6343850883135824e-33,1.8371364382735414e-33,3.804392149853176e-33,9.996562615134863e-34,1.3784879766524684e-33,4.4759456778960874e-34,5.2688157506969296e-33,4.039367270543061e-33,7.284066746838554e-33,5.645812446205856e-34,1.9866714878474134e-34,1.331133937218174e-33,4.126703203482257e-33,5.010441248499507e-33,5.682420228733776e-33,8.999950121305047e-33,3.4549705847467054e-33,6.47438979966513e-33,1.4237016707277384e-33,2.1593510988021203e-34,1.7823792787278705e-33,9.08751918536304e-33,8.905835512451928e-33,4.0765987668209396e-33,8.038335208024029e-33,7.457058230832303e-34,4.065969316312598e-33,4.544831043005799e-33,4.8684689133289855e-33,4.079013959075413e-33,8.68154607795522e-33,4.4952462850761965e-33,2.4059705744976978e-33,2.5909210686726847e-33,3.6722839296492526e-33,2.2035577439571252e-33,7.10342918408651e-33,8.884449400541184e-33,4.135752751657922e-33,6.417560479090417e-33,1.9303515618101275e-33,5.6669603285902384e-33,7.237219494898079e-33,4.6517154299525e-33,7.967362716472446e-33,6.489163790931007e-33,2.9942080841775676e-33,5.72433081658858e-33,8.555160256524241e-33,2.124601180613517e-34,5.5009686187642884e-33,2.083503865604518e-33,5.974052230809708e-33,7.44450855226418e-33,8.122957332498611e-33,5.82861025063646e-33,3.429105425615474e-33,3.976086320364774e-33,1.6823019717082235e-33,7.951147301128263e-33,5.557806390553319e-33,5.0405872741902286e-33,7.19712782331065e-33,8.689108467897722e-33,5.970164704367176e-35,5.837591201995061e-33,1.8034698430898357e-33,6.760988149748942e-33,7.912697823084325e-33,5.994184475986076e-33,5.59116684357831e-33,7.118224702328036e-33,6.631278185677057e-33,1.3866139478072416e-33,3.886502746787959e-33,9.864525715567567e-33,1.469323714248685e-33,7.871353942667193e-34,6.153821423744538e-33,6.148215190239954e-33,8.966864079602098e-33,5.90274022579679e-33,2.7027917059746378e-33,4.770095168909382e-33,9.964448602088358e-33,5.0627201541438055e-33,3.869438639731106e-33,4.8089426103295364e-34,9.201195807159459e-33,9.797988820302393e-33,4.93764426153743e-33,1.8559972973851924e-33,9.00304266657636e-33,9.704271121705036e-33,2.2677624587327207e-33,8.718772234254903e-33,4.479229143720547e-33,3.692140916378091e-33,1.434475643235178e-33,3.497914641053067e-33,5.3144358524639105e-33,9.409133304716626e-33,3.907149328653404e-34,2.421517574636616e-33,1.740480603188476e-33,2.5385235946696207e-33,1.5616504622189977e-33,3.740403658739297e-33,9.396592204559508e-33,8.255785759638292e-33,2.3423072955054813e-33,1.7150753340095873e-33,7.646564248769274e-33,5.697018303802237e-33,9.588674287396365e-33,7.459925670700523e-33,7.182632830670857e-33,7.774288297160519e-33,1.7895568221057524e-33,2.9496422953692615e-33,1.7131509579840754e-33,5.9209355492346665e-33,6.508717061181725e-33,5.564954007000926e-33,4.999772927728431e-33,4.286504874217839e-33,9.06710542111551e-33,6.293676184800993e-33,2.4523418501084573e-33,4.027306964206182e-33,9.263005240526945e-34,9.9754653907306e-33,7.658571404242209e-34,8.147776392151395e-33,9.481204827181855e-33,7.99566079340428e-34,3.296240904929342e-33,1.0958156845761259e-33,8.980834779131304e-33,5.786683629495909e-33,9.255332310512706e-33,1.7521630221622387e-33,8.855967942375441e-33,2.8828307148827914e-33,6.700952161845488e-33,6.563451973072369e-33,8.453792244489803e-33,5.281376797871367e-33,8.303998521201602e-33,2.9505813789556392e-33,3.8353136376672786e-33,9.296668961086714e-33,8.362706867481619e-33,1.3873227654889353e-33,1.8561982035825254e-33,5.995196677849353e-33,7.065536484713234e-33,6.166957873679665e-33,5.4787259766006075e-33,4.7723499894106095e-33,5.9344527381396565e-33,2.7896212212308283e-33,1.1259569109870982e-33,3.689779684276476e-33,7.101632240757394e-33,6.897253898183939e-33,9.699882162986533e-33,8.064739834170515e-33,6.877292839603021e-33,8.666519758124925e-33,6.371845672480194e-33,4.025947004805748e-33,4.6349058369644174e-33,3.0177225404836562e-33,3.620007580345816e-33,1.777471836981479e-33,4.48872130972441e-33,2.3495269602867497e-33,9.186849635377487e-33,6.396106765256495e-33,6.365150605055115e-33,5.385238483117645e-33,1.747841973014418e-33,4.153783850883001e-33,9.696654994991556e-33,7.738983642157872e-33,1.9704797145903453e-33,4.3201142987528844e-33,5.457196923028462e-33,9.117306489638512e-33,8.572951389921979e-33,7.166196793520575e-34,7.711097581331527e-33,4.273601285243196e-33,1.6196202291590245e-34,4.819641265614014e-33,8.398824642142586e-33,2.711544070737582e-34,9.634641586326642e-34,3.9690988644596425e-33,9.673929364145591e-33,8.476377127660693e-33,6.132579087299541e-33,8.606505969927989e-33,6.973185986257336e-34,5.196304387506972e-33,3.923642721234716e-33,5.4310792409554954e-33,1.551798115057157e-33,4.099446218718212e-33,2.2394652688732287e-33,2.77004830781179e-34,1.9496050148914712e-33,4.708261541073442e-33,1.9330061932421706e-33,7.187777374593141e-33,5.733104387763373e-33,3.829293002130277e-33,6.043715825243975e-33,2.987522817524865e-33,2.9135590418731196e-33,6.166538339965505e-33,1.230802511411604e-33,9.598927152979e-33,1.9557003041067535e-33,2.872487355626661e-33,3.4791222795168366e-33,3.14288804728074e-33,7.382632604546159e-33,8.217067496103708e-33,9.192091893445018e-33,2.047844166053846e-33,8.82117864474973e-33,1.3770779062432515e-33,4.9294596029542315e-33,3.6448829461773527e-34,8.734506643189981e-33,2.2476311572714624e-33,4.517634454640957e-33,4.8791700600927595e-33,4.637844497987903e-33,4.5912019934121154e-33,2.4904542660112773e-34,8.679052532232127e-33,9.630824245353046e-33,8.79653858379182e-33,5.136492521029146e-33,1.8720106253200088e-34,4.7088775890335e-33,8.292974061499225e-33,7.741819369038925e-33,1.7889814374822478e-33,7.409140262224009e-33,7.072644705559108e-33,4.738045154884697e-33,6.801870425582702e-33,4.614119617661749e-34,1.815406239480122e-33,6.280689710165542e-33,8.498005174733687e-33,2.489077603916441e-33,5.305874086805163e-34,9.980653259098415e-33,5.654398409020394e-33,6.1437247251187647e-33,5.548696502811317e-33,5.3682018747974603e-33,2.1640370602368786e-34,1.9550584779036973e-33,3.7485899738915555e-33,7.44752321286901e-33,3.118813539078007e-33,2.2940713518215807e-33,3.409710206060239e-33,1.660669297304338e-33,2.497855518738721e-33,7.457762894540564e-33,4.5318226447053105e-33,9.265452261512132e-33,2.9145990072315575e-33,5.9308248040851334e-33,2.9972912240700912e-33,4.0025079905437126e-33,8.532150568276353e-33,2.9734251624706466e-33,9.607304453020993e-33,6.867463435909398e-33,2.188358415447319e-33,4.2920172584612705e-33,6.928097965684476e-33,9.688983384650513e-33,7.83214402297452e-34,7.695319599307097e-33,7.712265688478856e-33,7.14623392294363e-33,7.723661208365318e-34,9.8860700902302e-33,2.426097879943584e-33,9.837813161680992e-33,8.143878220997275e-33,5.3958377895682025e-33,8.633304797142401e-33,2.0467951170214416e-33,7.350058723557018e-33,5.293566901882997e-33,7.146320583179904e-33,8.813597487703597e-33,9.192112638880103e-33,2.5143498775364172e-33,2.8035745974389938e-33,3.771928198737556e-33,1.3495778401944626e-33,4.470962975719996e-33,6.172839585752721e-33,1.3072155923790897e-33,9.796425902714133e-33,6.68094694356529e-33,4.48868512417727e-33,3.7268143878034125e-33,1.8716994680940136e-33,7.499120168278795e-34,6.021306769466613e-33,1.5749458683646434e-33,8.677577392197772e-33,4.113101697967522e-33,4.88795732591853e-33,6.821078700669776e-33,1.369192304391167e-33,4.820155937332231e-33,3.877093471115836e-33,2.8865092971138706e-34,7.247415957487023e-33,9.719141403072128e-33,1.0792975573904219e-33,2.8063966244788186e-33,2.8031583700478515e-33,4.4683778137929966e-33,2.314816305393146e-33,9.785273592671826e-33,4.731481470336592e-33,3.33089386738773e-34,1.1431959254336577e-33,5.0257934745543404e-33,4.2660687425997104e-33,8.292645892874305e-33,9.62702288691692e-33,1.377803228953949e-33,5.9506124105415395e-33,2.8716404820154507e-33,6.626713527221528e-33,1.1878115700167592e-33,2.6518146162120305e-33,7.698598438482022e-33,2.921402174853395e-33,3.671581852208079e-33,5.406000678578345e-33,3.740677189717146e-33,3.476109891897116e-33,5.3607643774276104e-33,6.466589095619767e-33,8.29529888100486e-33,8.697330763709107e-33,7.886163809660523e-33,9.057485914663385e-33,6.002321378360494e-33,9.207901585736392e-33,5.650042487794801e-33,9.541536115581753e-33,3.675683292055787e-34,9.829853673029136e-33,5.655483443448388e-33,4.976589256278571e-33,2.3135225145975705e-33,3.409164249687728e-33,1.7930058137490356e-33,3.206367158191772e-33,3.917209748870676e-33,7.751604691034886e-33,3.2339116718460324e-33,2.8382861116702463e-33,1.3587041647046117e-33,6.0371551728760436e-33,1.3010837244924123e-33,6.541861550054519e-33,6.642905048677049e-33,2.5284777697331398e-33,3.737931673131152e-33,6.1561487179798564e-33,4.0617734354795426e-33,4.854298287732875e-33,3.7302450445592454e-33,2.3428562492845118e-33,3.789469539920425e-33,2.6025329288073064e-33,6.613085366086769e-33,8.904275850223216e-33,1.1616385501777017e-35,7.084688785014746e-33,7.647103285958926e-33,9.500730672901183e-33,7.916550445457622e-33,6.215781064530827e-33,3.42740798728542e-33,8.899455737680699e-33,9.153590365685405e-33,8.648419665259843e-33,6.035241841100326e-33,9.055300642472787e-33,2.329555169864599e-33,6.387610429015747e-33,6.683120171345408e-33,4.049298961637584e-33,4.917646631938084e-33,7.352999863768665e-33,8.069246234116962e-33,2.6084130279673956e-33,7.383392528208131e-33,1.2683972932836764e-33,9.791247626550616e-33,4.416208890978983e-33,7.496729763525932e-33,6.200327719457086e-33,4.453525445038015e-33,5.221373928306621e-33,5.111999137658362e-33,4.2894442890024655e-33,1.7115150241984157e-33,9.206086575591256e-33,1.210075465895123e-33,6.852989337867795e-33,1.7118687265579304e-33,8.691736636951235e-33,2.6643530092028035e-33,3.345882368123805e-33,8.434417924300936e-33,2.074794005138645e-33,4.897758019902602e-33,3.8262319832452584e-33,2.0253596033348067e-33,7.06766263908152e-33,7.91357213663925e-33,3.118491309522496e-33,3.802682587881279e-33,9.665737097592083e-33,7.236804381917872e-34,5.276998272685013e-33,4.5762615203226726e-33,6.675911341441598e-33,3.616890875865512e-33,4.198582723014058e-33,2.5156156825944133e-33],"qim":[-9.999712e-35,-6.2600717e-34,6.427044e-36,4.5685087e-34,1.9322216e-34,5.823269e-34,-1.2411387e-34,8.523818e-34,-4.972409e-34,-3.8078108e-34,-6.3004844e-34,-4.349801e-34,7.6243353e-34,6.707199e-34,-6.1126785e-35,1.5957392e-35,-2.1547466e-34,5.1924754e-34,4.0541487e-34,2.686741e-34,-7.5083163e-34,-5.70053e-34,-7.876513e-34,4.340149e-35,1.5097765e-34,-5.185588e-34,-3.0690973e-34,-1.8287455e-34,-5.8540225e-34,-1.9813313e-34,-1.5404953e-34,1.6215898e-34,-1.2915814e-34,-3.0677661e-34,8.1817145e-35,-2.233958e-34,2.8230835e-34,-6.860463e-34,2.5032301e-34,-9.184341e-34,1.8020088e-34,4.686535e-34,7.544541e-34,-1.7910397e-34,-8.639904e-35,-1.37236e-34,2.8540746e-34,-1.5864798e-34,1.2306674e-34,-2.6598843e-34,-7.716249e-35,2.8059622e-34,-2.8453943e-35,3.441502e-34,1.6960453e-34,-5.166559e-34,4.6658925e-34,-2.4817177e-34,1.6102623e-34,3.570207e-34,6.175925e-34,-3.1861448e-34,3.4540985e-34,-2.535353e-34,-4.341439e-34,3.2226736e-34,-1.282081e-34,-1.1785825e-34,7.6248446e-34,4.211959e-34,-9.820023e-34,-1.5705827e-34,-1.215978e-34,-8.905223e-34,7.848626e-34,-2.4967447e-34,-3.1304534e-35,3.4491447e-34,-2.403932e-34,2.2212844e-35,-2.3634717e-34,1.849458e-34,3.7560906e-34,4.510406e-34,2.2839763e-34,-5.610069e-35,-4.7524355e-34,4.379842e-34,3.5726545e-34,-1.4124028e-34,-1.2216878e-34,-5.9759e-34,4.674465e-34,-8.912547e-35,-5.5842305e-34,3.7908664e-34,-4.7127557e-34,-6.627423e-34,3.7093535e-34,-5.5685316e-34,2.4212289e-34,-6.1552025e-34,-3.880707e-34,-2.7130449e-34,3.3635357e-34,1.4250637e-34,-3.7447749e-34,6.635237e-34,-4.6656514e-34,-1.2102017e-34,2.0241352e-34,-3.8754574e-35,2.7933075e-34,3.8537494e-34,3.5789562e-34,5.944501e-34,-4.985922e-34,-7.988437e-34,-4.2636213e-34,-5.4392516e-34,3.6733903e-35,-4.4514323e-34,-4.9395145e-35,5.947634e-34,-3.1602128e-34,3.674326e-35,7.0796374e-34,2.8641003e-34,-4.057486e-34,-6.095072e-35,-3.5496575e-34,-1.967345e-34,-4.3190982e-34,-8.377366e-34,-3.4907246e-35,9.3935074e-35,5.810984e-34,-5.9114353e-34,-3.3086155e-34,-3.3388404e-34,2.122201e-34,9.029452e-35,-7.907554e-34,3.8110438e-34,-9.50488e-34,5.374368e-34,-1.2979594e-34,-2.4452997e-35,-2.104723e-34,7.346202e-35,-9.057446e-34,1.0103882e-33,5.6327664e-34,4.0008262e-34,2.6414258e-34,4.428884e-34,2.025339e-34,-1.0446087e-34,2.0702228e-34,8.28406e-35,2.3027512e-34,-2.997678e-35,-2.1194374e-34,-1.7277062e-34,-3.2220408e-34,1.7762044e-35,4.471602e-34,-3.9499004e-35,6.9022618e-34,-8.5326586e-35,2.0277443e-34,1.0732025e-34,-4.520496e-34,4.8574476e-34,2.1107317e-35,2.4935009e-36,2.4065512e-34,-2.2638259e-35,-1.4452634e-35,4.352264e-34,-4.8762545e-34,4.6216553e-34,4.1459956e-35,-5.2755617e-34,3.9579326e-34,3.4973055e-34,-5.8889776e-35,-4.9481195e-34,-8.037053e-35,-6.6210913e-34,3.8200997e-34,-4.3445275e-35,-1.0944512e-34,1.1222454e-34,8.942319e-35,-5.763061e-34,-3.7252679e-34,-8.996539e-34,6.776996e-34,-2.316152e-34,-9.111027e-34,-3.6340068e-34,-5.562893e-35,3.3410963e-34,-4.0131497e-34,-2.0869284e-34,1.955335e-34,-4.4260163e-34,-5.7417773e-35,-5.3356497e-34,4.9716836e-34,4.8740027e-34,-1.7839197e-34,2.6382655e-34,-7.455749e-34,-5.042648e-34,9.991686e-35,2.0654623e-34,-1.3646635e-34,-2.9034926e-34,4.365449e-34,1.9320134e-34,-1.3853503e-34,6.013705e-35,7.1031896e-34,-3.1344667e-34,-8.796373e-35,-2.4154026e-34,-1.2704188e-34,-7.255814e-34,-1.5057775e-34,8.832732e-34,5.949774e-34,-1.483308e-34,-3.660488e-37,-1.3365694e-34,1.613645e-34,-2.8383973e-35,-3.6732506e-34,-4.098336e-34,4.4403785e-34,-3.9190077e-34,-3.112643e-34,1.5820075e-35,-2.211774e-34,-8.292479e-34,2.72743e-34,1.8627392e-34,2.4845301e-34,-6.4798956e-34,-5.879368e-34,1.9578832e-34,9.960108e-35,1.1537005e-33,-3.9068914e-34,-3.861559e-34,-4.1571892e-35,6.6923575e-34,3.575859e-34,1.0928814e-33,2.9532881e-34,4.069538e-35,6.1905353e-34,-9.76833e-35,-5.5491686e-34,-3.3555393e-34,3.3805656e-34,7.011391e-36,-8.188812e-35,2.8622342e-34,-4.268087e-34,4.6042833e-34,-1.0621895e-33,-1.2112957e-34,1.9572376e-34,-1.0759985e-34,-2.9646183e-34,-1.5204672e-34,-3.547816e-35,-1.9675741e-34,-6.0974247e-35,-2.5261865e-34,-4.6378068e-35,-5.5526198e-34,4.717978e-34,-2.1317999e-34,2.7147587e-34,-3.5897641e-34,-6.385253e-36,2.0243588e-34,5.785789e-34,1.0990003e-33,-3.4179803e-34,-9.906593e-34,-4.9022936e-34,-1.4536889e-34,4.782461e-34,2.432569e-35,-8.359381e-34,-8.060559e-34,7.8179815e-34,-6.8726705e-34,-3.275519e-34,4.2158503e-34,3.6961124e-34,1.4738644e-34,1.8994643e-34,-3.7878965e-34,-1.5436001e-34,5.90296e-34,5.7929266e-34,-2.6660508e-34,-5.7311443e-34,9.748367e-35,4.2283427e-34,-5.3262815e-34,9.464043e-34,1.1299118e-34,5.408674e-34,-8.767971e-34,-2.0776493e-34,9.4262185e-34,1.3956995e-35,4.3193976e-34,3.4768329e-34,-4.976259e-34,-1.8734908e-34,-3.6965516e-34,-2.3227256e-34,6.6517387e-34,4.8097627e-35,1.6405143e-34,-8.565867e-34,7.400081e-34,-4.8586166e-34,2.1550116e-35,7.1123093e-34,1.5566344e-34,-5.409365e-34,-2.3612185e-34,7.4136404e-34,-8.060306e-34,-4.5787746e-35,9.5802244e-35,3.4745698e-34,-4.2388473e-34,2.8815915e-34,-9.595399e-34,-5.7556175e-34,-4.8979153e-35,4.0154967e-36,9.680853e-34,3.6689873e-36,-3.0878696e-34,4.9310004e-34,-6.378478e-34,-1.3697148e-34,1.4105945e-34,4.502101e-34,1.2054808e-34,5.7754425e-34,-3.3358091e-34,3.163884e-37,7.0620266e-34,-1.5933519e-34,-6.653273e-34,5.173797e-34,6.347714e-34,8.6760804e-35,9.602573e-34,-5.504634e-34,1.3575335e-35,-8.261068e-34,5.2563304e-34,3.5718886e-34,-9.5604167e-35,2.4691091e-34,-4.1445786e-34,5.6219478e-34,8.550824e-34,2.3934034e-34,-8.591944e-34,2.4477728e-34,8.164585e-34,4.3765198e-34,-2.82235e-34,4.2620946e-34,-3.0635915e-34,-1.4216192e-34,2.6497587e-34,2.8046524e-34,-5.50998e-34,-1.168986e-35,3.6523654e-35,-2.4662358e-34,7.780724e-35,1.6157337e-34,1.0737436e-34,-5.078403e-35,3.4457174e-34,1.2110827e-34,-4.8096173e-34,2.7611024e-34,-2.1284738e-34,-1.6223793e-34,-9.849495e-35,-3.2127158e-34,1.6030105e-34,-1.0106509e-34,-2.4649526e-34,-3.355193e-34,-4.4864872e-34,-5.057935e-35,-6.784676e-34,-4.0139004e-34,-3.013527e-35,-2.4478386e-34,-2.7234273e-35,-3.1930555e-34,-5.83157e-35,-3.9381375e-34,7.547998e-34,4.5918666e-34,-1.4842855e-34,3.3692768e-34,4.1635036e-34,-1.8842172e-34,8.980586e-35,5.3137566e-34,7.92721e-34,-1.7304986e-34,4.94408e-34,-4.3075614e-34,1.4981806e-34,7.170724e-34,6.301609e-34,-2.835635e-34,1.7899651e-34,3.506728e-34,3.8662968e-35,1.3382694e-34,-3.7512688e-35,3.0171067e-34,-1.6792457e-34,-8.492748e-34,7.2036388e-34,-6.2517087e-34,8.569016e-36,-7.4366516e-34,-1.3288442e-34,-3.2388798e-34,3.9155437e-34,-5.027618e-34,-1.7550009e-34,-4.8094226e-34,-2.405937e-34,-8.304933e-34,-9.938621e-35,-1.1351952e-34,-4.2228115e-34,4.6218863e-34,-3.1967578e-34,1.1438183e-34,-5.950442e-34,5.4354253e-34,-6.0835166e-34,-6.7458045e-35,-1.38633e-34,-2.6685986e-34,1.0672558e-34,-3.496479e-34,-4.501503e-34,2.5264815e-35,-3.9684946e-34,4.2746976e-34,7.2775856e-34,-7.2061826e-34,6.2185373e-34,-1.6876208e-34,5.628002e-34,-8.475717e-34,-2.2553202e-34,2.7891753e-34,-7.949992e-34,9.17677e-34,2.4269514e-34,1.4693985e-34,3.8806145e-35,-2.652149e-34,1.3819295e-34,3.0923868e-34,2.7270252e-34,-8.158414e-34,8.208726e-34,6.451181e-34,-1.3300696e-34,-4.9505113e-34,1.7541046e-34,4.799459e-34,4.59736e-34],"qre":[0.8366881,1.078834,1.1643549,1.1422651,1.1699828,1.0419774,0.9827958,0.87030214,0.9534457,0.9263026,1.079331,0.9129514,1.0329573,1.2221384,0.9050217,1.1207172,1.1108431,1.0754349,0.92724293,0.87772894,0.9780287,1.1944994,1.1322273,1.1096687,0.959421,0.96901137,0.8565444,0.92169535,0.9509772,0.99315125,0.93184626,1.1650318,0.9616464,1.0632877,0.99906385,0.97233546,0.9672985,0.8814578,1.0304838,1.0460882,1.129537,0.9808035,1.0858543,1.0552089,1.0240067,1.1601703,0.87638384,0.996529,1.0828818,1.0880075,0.9667094,1.0071973,0.98335326,1.0151731,0.9038097,0.9895206,0.89295197,1.0252076,1.0620431,0.98684436,1.1943597,1.0975903,1.0133913,0.9051243,0.97737974,0.92289597,1.004261,1.1497673,0.93062145,1.01311,0.9043704,1.0745499,1.110261,0.9408383,1.009174,0.91359305,1.160909,1.0694402,1.0246931,0.90760946,0.9056571,0.94730717,0.8482899,1.0566874,1.0513182,1.0703977,1.1480803,1.0981832,1.0405151,0.96676487,0.84364873,0.91443974,1.0254014,1.0135168,1.0574678,0.80457115,0.82517856,1.0192397,0.934851,1.1906734,1.0231736,1.0032358,1.0160486,0.92072684,0.9965492,0.9416588,1.0604031,1.096505,0.91533107,0.9594159,1.128526,0.9256427,1.1329745,0.895676,1.0178152,0.8283315,0.8769198,1.1010476,1.0509259,0.91513014,1.0652622,1.0236938,1.0785706,1.1280278,1.0338867,1.0134418,0.90179807,0.998643,0.85656565,1.0600208,0.90088135,1.0029567,0.90880775,0.91371715,1.0073289,0.93564224,0.86889464,0.96141756,1.102584,1.0979398,0.98584855,1.058355,0.89143485,0.96662295,1.0093509,1.0670881,1.0225646,1.0323609,0.94277996,1.1197395,1.0877202,1.0069273,0.8921658,0.8608513,0.96436274,1.0242786,1.0316902,1.0594321,1.048898,0.95866126,0.9276585,1.0756488,0.9048147,0.89926875,1.0275611,0.8643008,1.1578866,0.9448067,0.977882,1.0876501,0.8886858,0.8756615,1.150796,1.0399472,0.8785273,0.99014115,1.1073136,0.8688219,1.047246,0.9858874,0.9824144,0.8791715,1.007597,0.9987886,1.0366764,0.8588542,0.8763107,0.9129353,1.1970116,1.0486096,0.83892065,1.0069817,1.1939043,1.0078739,1.1162996,1.0620496,0.94096076,0.93950933,1.136132,0.9110033,1.0235239,0.8382212,0.9268615,1.1401657,0.99582946,1.0008593,0.91763204,0.9857386,1.0402924,0.9318768,0.98848224,0.948658,0.9119232,1.0895308,1.0224215,0.9733634,0.9469956,0.9788584,1.1386622,0.91426957,0.83735025,1.0093436,0.9730009,1.0117309,0.9418677,1.036298,0.97640216,0.90110785,0.87717515,1.1880685,1.0954996,1.0406002,0.94742227,0.96378964,0.8719435,0.88008785,0.8879928,1.0374622,1.0108166,1.0287005,0.91447085,1.0399607,1.0815225,0.96084446,1.0516711,0.9016888,0.8656689,1.0753208,0.9788657,1.1662612,0.84004974,0.9805443,1.1019989,1.1246969,1.0856405,0.96774673,0.87859786,0.8858576,0.9835662,1.1782082,1.0848076,1.0362929,1.0501064,0.9999431,0.9377717,1.2229016,0.95975,0.86934686,1.0270472,1.1639841,0.85542035,0.9522919,1.0282974,0.9487631,1.1923422,1.0155346,0.9223234,0.9940206,0.98527545,1.1080537,0.94971466,1.0601912,1.0263644,0.99695796,1.1338632,1.1200095,0.94062847,0.8984446,0.90599823,1.2014171,1.1007862,1.0461122,1.0961089,1.1207848,0.9895603,0.95757765,0.9349848,0.9650698,1.115502,1.0098709,0.9974942,1.0679853,0.9255192,1.0286307,1.0531167,0.9818667,0.84980756,1.0905597,0.8992015,1.0981798,0.92481977,0.92372483,0.8667918,1.0222052,1.1068488,1.0192329,1.0564994,0.98121536,1.0629697,1.1394507,0.9673636,1.2210512,0.95558804,1.0647622,1.1180006,1.0019469,0.9907984,1.1130569,0.9231178,1.1791787,1.0717021,1.0242084,1.0977328,0.9980143,1.0733377,0.87371796,0.9832096,0.9031004,0.98626167,1.1691127,0.99436456,1.1576606,0.9924949,0.9484366,0.8930628,0.9664867,1.028194,1.0580428,1.0378327,1.0358329,1.023905,1.0955725,0.9980801,0.9885472,1.1375371,0.9955154,0.9085949,0.9914007,0.8258086,0.9473284,0.8807277,1.128276,1.0322411,0.9695526,0.9318298,0.95978224,1.1620722,0.938955,1.0372912,1.0109856,0.98583806,0.9144235,0.9618552,0.94744664,1.2010801,1.2093897,0.8608021,0.9386575,1.0274923,1.0886351,1.0706562,0.91334426,0.8952872,1.104277,1.0434878,0.9995422,1.01614,0.9886946,0.889609,0.99700546,1.0532322,1.1034654,0.94418716,0.9549702,0.9058502,0.9257826,0.9304933,0.9313701,1.0991272,0.94321334,1.012394,0.9843606,1.0032945,1.0190696,0.96598756,0.9028254,0.9173179,0.96171576,0.8958135,1.1979692,0.8420479,0.9420452,1.0009283,1.0505459,0.95465887,1.0119156,0.8045426,1.0677313,1.0469267,0.9624367,0.96389776,0.9973207,1.1261979,0.94905895,0.98273367,0.9725018,0.9131157,0.91239166,1.0059911,1.0679036,0.97820854,1.0183393,0.89790726,1.1695623,0.9588708,1.1049906,1.1431658,1.0825275,0.83970565,0.9930407,1.0100741,1.0249919,1.0566317,1.1501966,0.9364872,1.1675615,0.9778197,1.0134826,1.0078303,1.0591054,0.92859876,0.88934106,1.0628754,0.9222033,0.93503493,1.013038,0.9455709,0.8672022,0.98416173,0.9775301,0.96589416,0.92403775,1.0424749,1.056313,0.8456817,1.0788436,1.0986407,0.99954057,0.9827458,0.98795956,0.8015468,1.0594442,1.1194112,1.0994533,0.95788383,1.0187277,0.92907953,0.9020318,1.117262,1.1360556,1.0443141,1.1471857,0.8854448,1.0500818,1.1409271,1.0940363,0.95663023,0.9299549,1.0685025,1.0321552,1.1438916,1.0071834,0.9926511,1.0449606,1.14591,0.9968597,1.0306768,0.8806416,0.9373278,1.0224779],"re2":[-9.845009770169671,-8.289943151685886,-8.424249601865274,-8.733337838527536,-8.192822002529567,-9.120996049090996,-9.577919446925202,-9.227726046501962,-9.459490448202498,-9.882499473046035,-8.11919818558042,-9.400621479386386,-8.383475112601484,-8.066423396915697,-9.661367477649629,-8.432404748658765,-8.984323289590726,-8.451434923328978,-8.894630652561553,-9.45900907673498,-9.062944704586895,-8.363954507721045,-8.21894143616647,-8.612874954819008,-9.172209414148842,-9.183868824704106,-9.369421673837643,-9.077797691978807,-8.735521457753407,-9.503696006518528,-9.003267245372584,-8.572294942842873,-9.032366862548619,-9.075504155988414,-8.417941020280239,-8.793530513869463,-8.789816426092813,-9.651628106096714,-8.582574333625242,-8.353817324108006,-8.649348377524335,-8.69705342128721,-8.789782188887939,-9.089236626869527,-9.612165388070673,-8.35719582213393,-9.148220270762831,-9.962910611536019,-8.48655878475048,-9.067305078760773,-9.729817736628595,-9.890038028247478,-9.138453399685567,-8.36037284110251,-9.266744499603984,-9.520928934918688,-9.804291205384635,-8.508037654939411,-9.322024883568957,-9.957735283870393,-8.034671542489935,-9.02251659942653,-9.744512079327865,-9.55980135564819,-9.701383921323735,-9.95115202547941,-8.128004547709239,-8.381859276513644,-9.503123926426499,-9.199154994978098,-9.085994243149491,-9.289427186294457,-8.492371785057585,-8.786573415185174,-9.108939589476426,-9.472679704256478,-8.428265727713912,-8.612195101295997,-8.457898813162894,-9.46382385047866,-9.826904424379649,-9.676713626279414,-9.653686729812257,-9.035673979780434,-9.264419309450522,-8.268863686751803,-8.68679157314239,-8.974076268062563,-9.182740918491625,-8.6714454607848,-9.558904697637708,-9.54407082025988,-9.09773799592652,-8.575645034198637,-9.349241302267295,-9.99736947460935,-9.821613279900669,-9.76714488356336,-9.721464476498369,-8.196822356776202,-8.441820024421155,-9.628808605970049,-8.3640923836458,-9.102732490336047,-9.854849178565113,-9.878710855850459,-9.318572248987667,-8.449152965388707,-9.6725753330441,-9.182246945387226,-8.313131922709381,-9.823217403487138,-8.152908225682149,-8.958855217044903,-9.073045379406604,-9.897654037681676,-9.502029476741269,-8.520645007017373,-9.399457638895361,-9.019095011292382,-8.802388075870315,-8.784949177808944,-8.920839809992941,-8.602542726420541,-9.532823729418077,-9.482922060033875,-9.752407619244737,-8.126023988143697,-9.93119586376459,-9.010095173808871,-9.739243503109815,-8.552367140021552,-9.447373450952513,-9.290443400349625,-9.534427029301265,-9.33673343072127,-9.72680178888123,-9.8914120472026,-8.321971750867279,-8.923980690144607,-9.698121653839596,-9.021009127865455,-9.880910535964864,-9.287923355976595,-8.543170671693655,-8.012785195133803,-9.728668729014482,-9.46817710635234,-9.939922439996984,-8.405536779021146,-9.167777955292754,-8.146048447027237,-9.884758642068425,-9.541841225046927,-9.754872056847198,-9.6737907994354,-8.279768912920417,-8.540561592599175,-9.315871174982853,-8.776810207782859,-9.694672182258088,-8.985155736241333,-8.94940146962068,-9.616263213321751,-8.037564569743097,-9.628307873577217,-8.425985484365013,-8.952619975716665,-8.683853163398764,-8.239060341439611,-9.646304463770763,-9.202831083022302,-8.553438932355649,-9.372255288316405,-9.850026126197335,-8.196058173419377,-8.74698562954475,-9.929806548848475,-8.149161488380193,-8.634260005981126,-8.284803175100263,-9.560469281214223,-8.949738349694917,-8.29068035227895,-8.284989979225903,-9.764589342440626,-9.472941635182483,-9.508849028370623,-8.16462185330752,-8.516274018944877,-9.62318095063106,-8.945856754582383,-8.27300831977804,-9.533018302725417,-8.349400634702986,-8.042237964824421,-9.613852067276413,-8.631797433843488,-8.79867574630748,-9.797476808671576,-9.53525780827784,-9.73225900662047,-9.24283744511916,-8.256206376819458,-9.452269620626053,-9.00029332166074,-9.529237033999118,-9.338050688634313,-8.874386406765638,-8.9512923907467,-9.239694869451908,-9.175164209970767,-8.966689380771525,-8.399122653314146,-8.983542268720603,-8.708078453674208,-8.568437067762686,-9.393385462134265,-8.27919989443674,-9.347317152554492,-9.795761235680704,-9.47189929215286,-8.235991798601159,-9.166187899468603,-9.756889249607267,-9.050627306349034,-9.141116054406108,-9.27680493473422,-9.878714081298755,-8.285796429872946,-8.751850240194658,-9.449119506717217,-8.698018073985278,-8.465177267488784,-9.226694468769193,-9.807477964596682,-9.695845104584304,-8.424303034523275,-8.718185937647188,-9.696639955032865,-9.898854268750009,-9.525692937105507,-8.50300991960585,-9.600806158316322,-8.4991488293917,-9.152396436063263,-9.253476232840368,-9.057812396007947,-8.531677096874708,-8.10123047306901,-9.558495288083078,-8.919918322476224,-9.02041800117341,-8.352616175885137,-8.857314945778304,-9.635325664930901,-9.90059017728614,-9.339811174259959,-9.65607826337487,-8.36017293646999,-8.783785916779626,-9.597436354321871,-8.72239785219051,-9.465677067020911,-8.932645366115265,-8.074131575257182,-8.639013835848147,-9.55506105705704,-8.75644115630616,-8.431451260096074,-9.665503113788075,-9.20457058173254,-8.337877257356023,-9.825280992405508,-8.074677313405875,-8.959267512485189,-9.709018511380872,-9.753589207878234,-8.344070523867067,-8.734178845715672,-8.883077534897165,-8.874211344279619,-8.486396551441832,-8.80621018069161,-8.265102877785518,-8.84057557804901,-9.98516567879238,-9.82513160597262,-9.389236381233532,-8.24316317299017,-8.294337774130915,-8.954726086204325,-8.464739101256935,-8.101413000917574,-8.77907895125906,-9.69276248179498,-9.063952905461981,-9.730666954767374,-8.19387368514677,-9.113231740392143,-8.943510950326052,-8.034255929774824,-9.763956180504552,-9.339627075008604,-8.410386200691695,-9.522759645910686,-9.7730451503032,-8.743809665053858,-9.993357981826508,-8.733045541086064,-9.198515387753622,-9.999414235135308,-9.644859418412976,-9.68958981308115,-8.87410235741035,-8.411459009735463,-9.192679614021378,-9.644406931200624,-8.840922433181545,-8.30227574233464,-8.697545238281013,-8.18520588005481,-9.5991737431157,-9.078934894126547,-8.813904747262347,-8.30426421385889,-8.993760453273255,-8.407408638215799,-9.736477727974663,-8.263219416837492,-9.046952119458613,-9.557595503129836,-8.566416827208654,-8.761052623090748,-8.223454106795119,-9.897897686690929,-9.165115500995359,-9.143637620475271,-8.686992274175871,-8.518252800703728,-9.38642977626943,-8.508951860811216,-9.056517341215157,-9.096152669831064,-9.884591751676481,-9.545925659101927,-8.536135351455036,-8.767594855964003,-8.936426393239408,-9.390713046512987,-9.514289850004568,-9.064210757560119,-9.936974000051817,-9.485712055585445,-8.123572197340943,-8.135976398441944,-9.95491610844314,-9.44357932415768,-9.982074848114355,-9.676560129364223,-9.272201271011884,-8.309028801091719,-8.041220464200727,-9.057196839309915,-8.96722573666435,-8.764380989106789,-8.570260549584376,-8.545368940024524,-9.235088181566388,-9.409248329229484,-8.779732854614855,-9.470885011817074,-9.633997606702422,-9.518967222581027,-8.277044431313563,-8.06320124653378,-9.857817226038739,-8.711141173467453,-9.672308541126533,-9.132259544072483,-9.010113167155746,-9.34056120347127,-9.919954245728327,-8.23568790142794,-9.291057068323441,-8.68060999506844,-8.954072901649027,-9.938013151734829,-9.001024441269394,-8.562380541596433,-9.131347319115797,-8.445069711624637,-9.998754584759366,-9.74665753016114,-8.91705617364779,-9.128242043235739,-9.64565985397131,-9.92770517195919,-9.010438990678997,-8.98685131836301,-8.980918668373546,-9.448976230138566,-8.800193531484984,-8.266747159734312,-9.393151746022967,-9.961488757003751,-9.411242609117968,-9.649976705238366,-9.120846230572191,-8.059971361759066,-9.808664992436498,-9.721343790068197,-9.44770667692437,-8.71517517437598,-9.504055224764626,-9.80850194365725,-9.949033559972149,-8.846019035186208,-9.449962865310422,-8.9102837588824,-8.35811213137871,-8.949511921357692,-8.831297610525164,-9.620885923269354,-9.147547343003968,-9.861237289895426,-9.437340511497638,-9.804855710906155,-9.696004643418224,-9.08883698518197,-8.830680537323564,-9.187012124743621,-9.111991409641726,-8.047118624816523,-9.808114676618944,-8.641020874260304,-8.423105696796396,-8.272398094151887,-9.590165902539248,-9.638908608873578,-8.111805090553922,-9.438674650835242,-8.351502354802811,-8.64903563069609,-8.644041891132376,-8.073784199351449,-9.38986516019417,-8.988660014786078,-8.674413919138855,-8.485622225399378,-9.798647791959914,-9.505094364374454,-9.23945045589501,-9.98068829560279,-9.959515293174283,-8.791756852907248,-8.930399705898601,-9.841380484044429,-8.613048047882458,-9.036984068488493,-9.134245739129351,-9.030765213943415,-8.104921908789905,-8.192508243827337,-9.698468367501428,-8.34523333926908,-8.103386133840575,-9.91624034340587,-9.418926731477702,-8.8617021318348,-9.988383023432862,-8.531812754494826,-8.553156663981099,-8.484947153402885,-9.453714528515533,-8.384161726003027,-9.653670819708186,-9.912299986728637,-8.605485720863847,-8.349541090733801,-8.88188386256687,-8.46687821352068,-9.996411131090554,-8.9213320840086,-8.352623036340939,-8.315314125001485,-8.928276793357261,-9.736655007720374,-8.242317217540627,-8.032465963637165,-8.069247640171291,-9.340542635056622,-9.229942441817709,-9.1233894853988,-8.428809291186043,-9.274355989574815,-8.086821619581016,-9.930096987346463,-8.65653985513141,-9.773177339195847],"im2":[8.842457567351434e-33,1.438640535571314e-33,1.6259868748969952e-33,4.1667733390959196e-33,2.3618956008873306e-33,8.583224927661965e-33,8.86200696338851e-33,9.320438935666718e-33,2.280213162185124e-33,5.36203247585043e-33,3.417434690619021e-33,5.570950276437559e-34,9.603330693384269e-33,8.84995815600614e-33,5.1181023721481216e-33,5.6020339778564255e-33,3.3508085016709815e-33,9.129440253629997e-33,5.9811292075100645e-33,3.535644249322859e-33,1.4559419756932036e-33,1.5917778036744393e-33,9.920107119802857e-34,2.1640438123351124e-33,3.7363894204831895e-33,5.1860925258529025e-33,8.300275630940701e-33,6.75442062103836e-33,3.357681578221173e-33,4.6948906056051636e-33,7.07216746818917e-33,6.865417537543989e-33,5.503251386021595e-33,2.9847477961729664e-33,5.030061722194639e-33,3.396284241555197e-33,6.828416428650026e-33,1.5757801943194284e-33,3.1493831572298936e-33,5.292364856798304e-34,2.866026183268854e-33,9.652833241895803e-33,6.540827668817532e-33,1.5081526268986301e-33,5.3031482523022414e-33,7.623790623011584e-33,9.21047517807149e-33,7.262452522952236e-33,7.17837650252163e-33,2.045823146184234e-34,1.1237704781316549e-33,6.532483860662326e-33,7.5215214359100725e-34,4.1921045282587045e-33,2.234183209404015e-33,3.534758397593907e-34,9.646592898180034e-33,5.045428716573602e-33,1.9449981983456868e-33,3.803826591191108e-33,5.26917237873306e-33,1.140679696869097e-33,8.265604609615595e-33,3.600249420999983e-33,4.8989694207104475e-33,7.218476036117371e-33,5.409264994299923e-33,3.790596346650055e-34,8.018211564680268e-33,5.583821229247078e-33,1.8250560442164888e-34,6.930207891401456e-33,2.741648047235915e-33,2.271332400691406e-34,7.823201730030418e-33,1.8617511123173594e-33,3.687617388178611e-33,7.329946358835136e-33,1.99649276922661e-33,9.796906000006037e-33,2.399015161739102e-33,4.429015601162934e-33,7.328783463848446e-33,7.332102478533534e-33,4.1086794833574216e-33,6.202871915377317e-33,4.1426614391284354e-33,7.345091859706541e-33,9.320612544753672e-33,7.298508830930528e-34,5.332978337893112e-33,1.6772873112730713e-33,8.683840473169271e-33,7.106990413664478e-33,1.1994045248184283e-33,8.431917550610014e-33,1.3277667816805717e-33,2.042758442925058e-33,4.084602751533152e-33,7.865651383962525e-34,4.033979814835764e-33,4.717282279253943e-35,4.132331496987468e-33,6.140089759088607e-33,9.174984354871529e-33,5.136557829503744e-33,4.58779299896891e-34,6.647042104762558e-33,3.756303410017766e-33,4.634662782615818e-33,5.957574167311755e-33,7.364000077299472e-33,9.679358467886262e-33,3.9213065174609156e-33,8.925779720842266e-33,9.280259559376041e-33,2.307337467693933e-33,1.0045284331473192e-33,1.89034411506434e-33,7.490236823071906e-34,6.985670249588924e-33,2.6577451323158144e-33,8.770567800125595e-34,7.981169810750025e-33,6.627371126527735e-33,1.7936474251710823e-33,8.529056761213151e-33,8.492721075676918e-33,2.47341954770979e-33,7.941063022290445e-33,2.7147216997239666e-33,1.0172383216700466e-33,7.588863630211463e-34,2.3875052251488782e-33,4.695487007607451e-33,5.0729704539942156e-33,7.058534753988788e-33,3.488548871405591e-33,6.389143733154732e-33,1.7834033228189974e-33,3.970319371449819e-33,9.276273905361975e-33,2.121171943952446e-33,6.00795843313831e-33,5.930452537597897e-34,8.23324225925504e-33,2.3757904330577418e-33,1.1652420460590153e-33,1.4911603191180257e-33,5.297591975477391e-33,1.0163168989476002e-33,8.562074517190904e-33,8.955029491582936e-33,6.45640640367128e-33,5.304229175692785e-33,5.7074900928168785e-33,5.2509338328232496e-33,8.027355461862791e-33,9.709599003413936e-33,3.201739484512373e-33,4.255356116436441e-33,6.858389647208366e-33,4.200029647546207e-33,8.815236727650074e-33,4.73956223239419e-33,8.508208396725231e-33,9.9682067751177e-33,1.5198211517670402e-33,9.14575029965229e-33,9.287362535847787e-34,8.863604652989309e-33,8.560804688544491e-33,1.4758263174533261e-33,9.185367251437559e-33,5.1158483968664914e-33,9.178026696795741e-33,7.584737044078155e-33,2.563872170671423e-33,3.733153378125094e-33,4.751210956687005e-33,6.041833301508969e-33,5.896888807896282e-33,8.454602664700179e-33,5.113599950797261e-33,3.9344095948935255e-33,7.814151085359496e-33,6.13887617138561e-34,4.683510824309576e-33,4.2860808835190736e-33,3.448976031259469e-33,6.470593295203277e-33,8.408605350210915e-33,1.6562384135621056e-33,7.710082354266884e-33,6.548494795246381e-33,3.595878609092914e-33,1.8066207480414423e-33,5.730314107124524e-34,7.845426277841203e-33,1.7190598697008863e-33,5.950719563118468e-34,5.757427366900235e-33,9.420539097306835e-34,4.047373356761479e-33,2.2110808511980564e-33,5.182786535976479e-33,8.751048442750098e-33,1.3651584058213074e-33,4.0976959865679866e-33,1.2430365332865025e-33,7.469335038441456e-33,5.9008983773335455e-33,2.2920727007273513e-33,8.551885662629601e-33,1.949788399816965e-34,5.453979541847467e-33,9.420181509387588e-33,9.007902935914317e-33,6.618896345643368e-33,4.000854015838566e-33,9.914891061488922e-33,6.405042924025336e-33,1.9288256124611994e-33,4.122869977823932e-33,9.245433701039915e-33,1.593974267858621e-33,1.582790828132087e-33,7.70843132207031e-33,5.860968516156031e-33,2.9723088284827285e-34,3.7128307307323444e-33,9.700167627513749e-33,9.846621182141427e-33,8.758143723854616e-33,8.87168337040973e-33,7.495185299615304e-34,6.626944744693167e-33,5.0296597691189e-33,5.851604002615479e-33,4.470633359804802e-33,5.590211722099911e-33,3.8251166302273555e-33,1.5042848302359847e-33,3.266371593384998e-34,2.7953815383762838e-33,8.974487578821178e-34,3.2286885076674865e-33,2.4650301167785205e-33,6.220280854261012e-33,3.7936756300742745e-33,3.400496307979797e-33,8.0353273918737e-33,8.625189762831399e-33,9.188019069844256e-33,1.59891576900814e-33,2.0966734683297905e-34,5.713072098849187e-33,8.807661650261215e-33,7.678510274447641e-33,9.655460882963876e-33,2.64665345507063e-33,2.2582187845489976e-33,9.625589395411253e-33,1.0084250046756872e-33,2.3789393597456467e-33,2.4726418588293765e-33,7.032840040726335e-33,7.029081659638524e-33,2.2106817593149333e-33,4.576383690554721e-33,2.386215589813643e-33,5.742827061119936e-33,7.220889281497045e-34,8.069117794441617e-34,3.734577205736619e-33,2.4766329330590332e-33,2.8681326859498646e-34,5.9351201655617875e-33,8.039412374460486e-33,6.744779468543028e-33,1.5859555628616485e-33,6.205850098985813e-33,9.582319311546406e-34,3.982693984613817e-35,3.76054708811029e-33,6.115905757547758e-33,5.271329672701686e-33,1.1026212831886362e-33,5.319234667721429e-33,5.24926534473285e-33,8.530385843555353e-33,9.645516570742686e-33,5.278509505647883e-33,1.432107389897126e-33,4.540174776439157e-33,3.892599875916795e-33,4.836443182164746e-33,5.124585605356785e-33,1.2939489145791162e-33,3.921737211223853e-34,8.803060119089543e-33,1.7673096745560368e-33,4.1862365311171315e-33,8.43402000897142e-33,9.41058476114239e-33,1.899379565604995e-33,4.320697238690952e-33,2.7221116362925615e-33,7.735118907773517e-33,6.960753761322736e-33,6.33552603158914e-33,7.918763072491584e-33,1.462754890953877e-34,6.934323175419001e-33,8.403109146811373e-33,8.712654241556262e-34,8.439564370802167e-33,3.103081819798613e-33,8.025023388563406e-33,1.4753763691296995e-34,1.356024387036945e-33,8.197546505498925e-33,3.708382410269825e-33,5.242693651135242e-33,4.975223343010742e-33,3.318884988704986e-33,2.8732890138509683e-33,5.532160965774862e-33,7.074743387938254e-34,9.690900045728567e-33,3.2027818609079486e-33,5.438780482213976e-33,1.0879448458473074e-33,9.475491223491856e-33,5.2284039922300373e-33,8.104175888820511e-33,8.855559948695463e-33,6.328584869539644e-33,2.2600352879425312e-33,6.567064156315332e-33,7.785852055263152e-33,7.228748918148509e-34,7.352771294243557e-33,8.453560522554877e-33,4.710572261132348e-33,6.042191514720603e-33,4.7518888584255825e-33,1.3467842898650362e-33,2.8910373017014847e-33,4.765139893376157e-33,8.469056408404376e-33,9.877688355995047e-33,7.400726461532498e-33,2.3918965916413684e-33,9.803684393244644e-33,3.640408253108377e-33,8.616131201066446e-33,3.8798197570850646e-33,8.836921427272773e-33,5.212995751584273e-33,7.612664234031866e-33,1.5060407131567e-33,5.982501173984898e-33,7.945346977172722e-33,8.979784837813268e-33,8.853728256701188e-34,7.678321637008792e-33,9.746122965235415e-33,2.5768495190752797e-33,9.678883608033626e-33,1.205457096837227e-33,1.8629401508610367e-33,7.4737533472841515e-34,9.622268706581632e-33,6.531143149435514e-33,5.0026913533322726e-33,4.418199172233445e-33,1.2888138673421635e-33,9.065581239259178e-33,7.438200206855998e-33,8.783304185609071e-33,1.8544856492537523e-33,3.917711412876561e-33,8.630528659314713e-33,6.583121981919926e-33,2.0193303957870802e-33,6.033742180478546e-33,6.817749582239396e-33,3.880220273849602e-33,2.609728610672597e-33,3.517003502744566e-33,3.3764275636458787e-34,4.394451535912898e-33,9.05644002742017e-33,8.199884647813953e-33,2.2554394562460247e-33,8.070013751769546e-33,4.227773025388352e-33,5.612751177562882e-33,4.54237296034008e-33,3.693698541269726e-33,3.2041125157988535e-33,5.3336542497540885e-33,1.876247362000263e-33,4.018763211415439e-33,3.0565388246923677e-33,4.933350867719378e-34,7.182648475383412e-33,6.189669826470625e-33,5.266040634810032e-33,6.420459394880031e-33,3.741534914890856e-33,8.571670106889692e-33,8.505789275394693e-35,5.64920979630006e-33,5.291410810230647e-33,8.832562850568689e-33,1.1861921381964846e-34,6.507072077772332e-33,5.336323865566815e-33,1.7481622485954886e-33,9.092974701938396e-33,6.627945810981083e-33,3.8458268311408084e-34,6.398914867566748e-33,8.249793722566924e-33,6.5417832727156e-33,4.509516137481398e-33,7.942920356985303e-33,8.019090992101736e-33,4.609453981986646e-33,5.7379856633715955e-33,2.914349416866733e-33,6.71063739258419e-33,9.971735739271754e-33,8.310627748548182e-33,3.2958154741475634e-33,5.119965786881215e-33,9.785940058789616e-33,4.131667503912066e-33,3.3942403286975114e-33,3.35163576095398e-33,4.84773500456587e-33,4.486798142797941e-33,1.6691191605158042e-33,4.99132478627381e-33,1.2419659453977217e-33,7.621372230912293e-33,3.026175658711845e-33,6.410073816384444e-33,3.276029680494258e-33,8.038725973685012e-33,4.002551119957916e-33,8.026407073442137e-33,4.126549153356403e-33,3.8695492891371485e-33,1.7329886720332144e-33,1.558411208084637e-33,5.4969232067193874e-33,2.9328734346243094e-33,8.563094999701121e-33,2.197669324827274e-33,7.942690973299531e-33,3.0240484279474523e-33,9.317858619180623e-33,2.1379890922554524e-33,6.569561142795399e-34,8.420397878153622e-33,1.9360806389977128e-33,8.545390775847596e-33,3.378355937466545e-33,5.7853656470542415e-34,4.857435474187708e-33,1.5869273360309713e-33,8.696901244753429e-33,7.669528266923403e-33,2.4211869009032996e-33,8.174963142752609e-33,4.8338797777368696e-33,5.643202546427413e-33,1.1143226300288945e-33,6.57958747249069e-34,6.927655171601368e-33,1.2779629907914337e-33,8.53674530084026e-33,6.321403354138461e-33,5.371095037526622e-33,2.584213220732876e-33,4.5687091330006405e-33,8.74248577797828e-33,4.907645943424249e-33,6.304584261874062e-33,2.151378333681956e-33,7.859454602796655e-33,9.350276944595344e-33,3.3532380461857374e-33,2.592977074446836e-33,6.085033933558272e-33,8.911773706178817e-33,6.854619614276799e-33]}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/tiny_positive_real_components.json b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/tiny_positive_real_components.json
new file mode 100644
index 000000000000..ac219e9644de
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/fixtures/julia/tiny_positive_real_components.json
@@ -0,0 +1 @@
+{"re1":[8.268605269978856e-37,9.418099197816208e-35,3.398655316229896e-35,7.756311565971352e-35,2.597448215664898e-35,1.9737941684675506e-35,9.563876358680001e-36,3.13668146918713e-35,6.132565257821602e-35,1.0041222544104233e-35,5.986464805006968e-35,6.671373330527897e-35,4.5927977873707334e-35,9.693961744010015e-36,1.450757692089206e-35,8.892333180536714e-35,8.980164944253344e-35,3.675941922969935e-35,5.30576112463143e-35,9.325557138433246e-35,9.142272399410957e-35,9.372031958337291e-35,3.4785128157070777e-35,4.559177788190337e-35,6.3072563801087e-35,8.483994531943729e-35,6.65315557234034e-35,3.9864158870236495e-35,9.776560388734338e-35,2.2421074766226433e-35,8.699896969950576e-35,2.453719537299316e-35,2.1629962963636506e-35,6.03290357783431e-35,8.103577839415132e-36,7.446656881590087e-35,7.534557346183306e-35,6.930152346743068e-35,3.624029471015172e-35,1.905041581485991e-35,3.455148549059382e-35,6.647562135440965e-35,1.4887008784016986e-35,8.765187901271077e-35,3.71339742071324e-35,2.6462106756406245e-35,7.298806055570198e-35,6.079710306165494e-35,9.160308278911132e-35,9.637155169345843e-35,1.706838133547036e-35,1.0127887250340094e-35,3.702377025435266e-35,3.288810374870021e-36,7.159009849339488e-35,7.391205823030827e-35,6.174080879143006e-35,6.959819896644709e-35,3.3058983076017496e-35,2.627872234845434e-35,3.240289534190095e-35,1.917200947342752e-35,6.082547731990298e-35,3.6707685795993024e-35,8.667925323200159e-35,4.000040016822065e-35,4.207138292184763e-35,9.62595448117844e-35,3.8007391544690603e-35,8.986171173447514e-35,2.50421567101579e-35,3.644465247278631e-35,7.339057393623773e-35,3.639990000580972e-36,3.228469626845761e-35,9.583769597860138e-35,8.481920472794853e-35,3.0769716081464346e-35,5.710628091716152e-35,8.011902692589051e-35,8.431527016695683e-36,6.504758855962621e-35,3.7931485483557346e-35,1.8248018727894608e-36,7.041949453643617e-35,1.7977323129655153e-35,5.337281493824725e-35,4.248106092310587e-35,6.814174373094161e-35,6.28599935649065e-35,7.086339436873697e-35,5.953537994772834e-35,3.161342397192729e-35,3.815503790580302e-35,7.747163799719569e-35,6.286142838294979e-35,6.696792885553171e-35,8.768929338387162e-35,1.3662305258038687e-35,2.2522880761655505e-35,5.690087249395454e-35,9.125558072465478e-35,5.878106560994897e-35,7.495141446580412e-35,3.5338244441250284e-35,5.221981047346948e-35,6.75043168051348e-35,9.96459282362127e-35,4.512466813589184e-35,1.4399790111255505e-35,5.1633137300964636e-36,7.070224975028754e-35,9.831112426022329e-35,6.536424622826308e-35,5.471393257809406e-35,4.895137116120668e-35,1.2921209691694312e-35,6.575664502417007e-35,6.750619156203654e-35,4.578209467293088e-35,4.1245338296795836e-35,5.256745207356816e-35,3.1041916916126844e-35,9.404395137582839e-35,4.8040343000396044e-35,7.305121905182447e-35,9.002794281611116e-35,5.56108637767024e-35,1.5854185778192608e-35,5.491508551622712e-35,3.10653047724842e-35,4.502102520200499e-35,7.665039497172987e-35,5.942278569022925e-35,2.2113142325944811e-35,4.253394164531416e-35,4.1656340006271736e-35,1.0265172489282314e-35,1.0750722101150577e-36,6.050310455643792e-35,3.491646653465258e-35,1.2171782932755725e-35,9.256247671583491e-35,6.030917559475582e-35,4.713175216762997e-35,1.91748723923425e-35,1.7163965228885035e-35,8.591708760872815e-35,2.355995499894231e-35,3.998829352291426e-35,7.668647839120741e-35,8.412158713845105e-35,2.633532283263413e-35,1.381940282053565e-35,3.2704962484177587e-35,8.503053109744594e-35,7.557262667922906e-35,1.418765841011309e-35,8.171696454277635e-35,4.761406981477596e-35,3.4905860450846625e-35,7.261571957440847e-35,4.413913126641296e-35,6.825702839395115e-35,3.9510758327947454e-35,1.1545997600548995e-35,9.000271359135584e-35,9.717668015401837e-35,9.337059409883355e-35,7.60304656348508e-35,1.840450032806573e-36,5.423568720456801e-35,5.129367951704954e-35,3.1723372408518524e-36,8.822132140654324e-35,7.343766595020439e-35,3.1374454551942787e-35,9.595720162766373e-35,8.113158077239608e-35,7.207460026256395e-36,3.7967488010463375e-35,4.7017208583083933e-35,3.9657469175106146e-37,5.49145335266118e-35,8.651816380275084e-35,5.614988929283088e-35,6.760409994083153e-35,7.052768928961854e-35,9.663620669180083e-35,2.3673865559469308e-35,3.0765182489198394e-35,2.9039977859494025e-35,3.325574450467995e-35,2.5368442035679737e-35,3.421688953830596e-35,6.968037076218983e-35,1.4877405725362114e-35,1.0152303076753998e-35,1.4375840684062446e-35,1.7942869636149915e-35,1.312504203194652e-35,5.066354536190996e-35,1.5203498402687919e-35,4.1027474008211357e-35,6.71762033737574e-35,9.500523757078223e-35,4.4804033970912533e-35,7.228260871941074e-35,8.343802364095185e-35,5.868324480853044e-35,3.7243874492239126e-35,7.813077702199124e-35,2.615435738412398e-35,4.354418863635315e-35,3.803165609606531e-35,3.5988444104922767e-35,7.13548600760291e-35,2.1980657631753395e-35,8.846265756778626e-35,3.703931150570972e-35,5.81975784975649e-35,1.4255555246530203e-35,1.4179363338572303e-35,2.5013615057317917e-35,6.422798897604372e-35,8.208974020292938e-35,3.3985274952556986e-36,4.0091114244802426e-35,2.9187946725949376e-35,8.321166352320772e-35,3.486796254353884e-35,2.8835530521028793e-35,4.712939032663742e-35,4.2053352637473004e-35,3.559320468761429e-35,2.1851597031222324e-35,6.197436504633346e-36,5.518585227871823e-35,3.5040102415962124e-35,9.732054542052248e-36,5.012222516025275e-35,5.635130538022974e-35,6.054663549411763e-35,2.637875917563363e-35,5.240075329529734e-35,5.846417209344011e-35,9.108751299493904e-35,5.39538712507801e-36,4.817699005672876e-35,1.1446885146613793e-35,6.84733589256301e-35,1.0837259151075595e-35,2.582665404775923e-35,9.965061323388446e-36,9.095618814741843e-35,4.7689390936548e-35,1.785718652890411e-35,4.6234818651197314e-35,2.5642491451603365e-35,3.0178363375389534e-35,6.46136599318904e-35,2.9523963164393896e-35,4.5497088739816266e-35,1.4590244724403955e-35,6.140683320796268e-35,5.030393022314774e-35,7.654134826818797e-35,3.4833352324631237e-35,7.249476709325281e-35,1.251252198303524e-35,8.154180308927781e-35,7.805340945306192e-35,4.6354948387926206e-35,5.086641484733741e-35,1.888452735012076e-35,1.6015541613295646e-35,2.2370699209644073e-35,6.659369691688072e-35,7.27657803876154e-35,9.88513070256098e-35,7.959951430559316e-35,4.495410042087405e-35,8.392867612665426e-35,1.8084853303625192e-36,5.793899426108394e-35,4.559324065948322e-36,8.803008407174511e-35,3.927020259923085e-35,8.806666495416433e-35,3.1367494967298336e-35,8.355953914923468e-35,9.319858714479855e-35,1.5739794176592734e-35,6.913016458971354e-35,9.763882570938738e-35,4.935129888208949e-35,4.623188500717572e-35,5.159355421278157e-35,8.360275868435161e-35,6.922579930542095e-35,2.0609310817566572e-35,8.035748517221203e-35,7.70903542487749e-35,4.4926856680137513e-35,8.863885097875043e-35,4.3042946002717294e-35,6.933248692397417e-35,5.338653904053499e-35,6.276522993085406e-35,1.6562042114789975e-35,4.874887546321744e-35,4.031969377280585e-35,2.828542834978873e-35,9.89161832623935e-35,1.6090656862422525e-35,9.620820251380892e-35,7.243339401827364e-35,5.658077469491644e-35,4.99706767582113e-35,8.071616992472644e-35,5.26398879948569e-35,2.054095519125386e-35,2.754398980414101e-35,2.815084738138177e-35,9.810398564476183e-35,7.28975062985483e-35,2.866494406683717e-36,2.9430585363194203e-36,9.303132306504993e-35,3.5006683365104704e-35,2.636254267739536e-35,4.56682667138246e-35,6.663727504443053e-35,3.9988459115604065e-35,4.6408188225791997e-35,7.810097872640257e-35,8.540351813619081e-35,6.562818376198857e-35,5.030411666321515e-35,8.102057587665192e-35,2.0787332613968745e-35,7.729892639582227e-35,3.643100617142175e-35,9.82305064405689e-35,4.021769967832136e-35,3.2155874856497533e-35,4.249237358423181e-35,1.9111194196100466e-35,7.395004109170885e-35,3.719155537675178e-36,1.7941680383434555e-35,5.457713562767156e-35,6.787409431146033e-35,9.183464427789345e-35,9.90363193237939e-35,5.316596708989602e-35,2.282637798200072e-35,6.439796094080989e-35,6.226938038201043e-35,5.652695079725249e-35,6.744563843727036e-35,6.343499199587952e-35,2.0072891915996948e-35,7.16744341544396e-35,6.052902874073626e-35,3.287373731494347e-35,5.938842795842532e-35,2.9913005068341443e-35,5.153571844037575e-35,1.459584718769099e-35,4.777619930044949e-35,5.633415341751193e-35,7.018968629383763e-35,1.2839428667633956e-35,3.832470146700507e-35,7.658823824723277e-35,4.622380646134423e-35,1.521581008199233e-35,8.371856992995225e-35,7.296387928911976e-35,6.060033940862784e-35,9.607115925362207e-35,1.1019784997169301e-35,7.630577773151e-35,4.7153220386695125e-35,5.672977333846856e-35,9.677540995488414e-35,9.092172993234708e-35,4.5952239123837707e-35,1.8477501880515334e-36,4.7739795646775204e-35,3.995940623196694e-35,2.8446737836575264e-35,6.261227360110623e-35,5.118948340940897e-35,9.747501844273273e-35,5.493481220537099e-35,9.637568925747665e-35,6.633600264710445e-35,3.333393067063631e-35,4.3632866524619247e-35,1.4878333961583677e-35,4.0405298036961774e-35,8.87310235021032e-35,2.1650356247282608e-35,2.6749202542306183e-35,1.387873243599037e-35,7.075027756876217e-36,5.577839519448064e-35,2.672870902992785e-35,7.744965641918869e-35,9.33954387591679e-35,5.427107932479953e-35,4.701807273213979e-35,6.421999283709595e-35,3.980862232209614e-35,4.3453038748842485e-35,7.998345740038713e-35,7.935285509564333e-35,6.135818375411082e-35,9.151931067626322e-35,4.533222739204571e-35,7.945603453169493e-35,7.18908007235572e-35,3.025054776853063e-35,2.412090896161927e-35,3.12138615279828e-35,1.5737971598651077e-35,9.241252933959264e-35,1.992256064242378e-35,4.039687571171391e-36,4.278011441843088e-36,7.27698140310922e-35,3.493764122327519e-35,5.074097046526076e-35,8.072185024713204e-35,2.0973514429368833e-35,1.607690665343755e-35,5.888880514337547e-35,4.1672240710268933e-35,8.548941416502621e-35,9.361002634655329e-35,8.063826036408619e-35,5.531867863688385e-35,2.2164304046914527e-35,8.655103650601935e-35,9.215067542954928e-35,4.739075936870119e-35,8.30107573630056e-35,7.942772090233594e-35,9.788343224921497e-35,8.114826475505703e-35,9.297466828397885e-35,9.9644254801298e-35,2.6562557887285586e-35,8.773619781420189e-35,3.719485910000998e-35,7.926990918763616e-35,9.777718346625856e-35,9.664597070920757e-35,3.1863179395953033e-35,4.2782880603219715e-35,8.289950381565135e-36,2.7117791541239497e-36,7.111921938604062e-35,9.994856612917651e-35,3.768626984887804e-35,3.9332491807648613e-35,3.125453268911421e-35,3.640574616936753e-36,1.3150560620763806e-36,1.4981452579900988e-35,8.052476722838833e-35,3.3557707618219485e-35,8.202787442159011e-35,4.971680067294414e-35,3.817192474066394e-35,4.517213190842295e-35,3.286061898108855e-35,6.471860213276729e-35,6.72640484413003e-35,3.7182529318411603e-35,1.2225041945421475e-35,9.460912966718537e-36,4.379270706920857e-36,1.556803752990481e-35,4.5798811890101586e-35,7.503963265250538e-35,1.5530375974553577e-35,5.660156021197587e-35,9.168689892386139e-36,6.459257563998028e-35,5.244935735159858e-35,4.1192571427530295e-35,9.777755642590988e-35,9.992533602752367e-35,9.301451766304334e-35,9.270506865928115e-35,3.150268564385427e-36,1.861392237268776e-35],"im1":[-8.602220542107675,-8.801898964074208,-9.039811557318773,-8.822895635205917,-8.782295545229594,-9.711697629556115,-8.573283322139213,-9.037669775384316,-9.567448589167322,-9.228012511598488,-8.851953371993563,-8.449007941063336,-9.83748141805873,-8.457919589939088,-8.423087760814994,-8.635137137569838,-9.145349444285065,-9.349939371086597,-8.239038389511542,-9.405980656107014,-8.132109253479396,-9.333760470848246,-8.901391324654838,-9.974051547386878,-9.087418864657845,-9.145935961940554,-9.270724369766683,-9.776564930306687,-9.085561469537847,-9.915380859356487,-8.010497587869699,-9.536028685360321,-9.138981826543006,-8.366343493272218,-9.149556106437174,-9.654454873100923,-9.8004279632823,-9.918930753462787,-9.8338439957412,-8.338859285408406,-9.927699188303274,-8.815656023695801,-8.96112062358707,-8.657817516131548,-9.669184777375454,-9.1322104593438,-8.079812414677663,-9.409318331495355,-9.894200525732364,-9.600311313650124,-9.52465069907519,-9.930916413511252,-9.073231679622648,-9.339866971899173,-8.131963806544004,-8.472088652670037,-8.801976426098568,-8.498336079872264,-8.768692450001497,-9.481182230959776,-8.049603088401621,-8.872866005561253,-8.156739382151809,-9.077632730590619,-9.310119285876596,-9.21362158254468,-9.699897045076519,-8.322588860277728,-8.705010845322132,-9.724266293574306,-9.530192903367585,-9.994150598225753,-8.979125870766515,-8.99649828110459,-9.890008419001521,-8.253369573078103,-8.212506929575627,-9.181967225736328,-9.823034213744567,-8.847667265012769,-9.654298551535508,-9.58789196495386,-8.776071893884922,-9.723437119030857,-8.889457034528988,-8.103600540600686,-9.281617670024307,-9.99223436286332,-8.925636306719532,-8.886955744087526,-9.931968123680523,-9.800579793118342,-8.259205498171774,-9.733660612372637,-8.579531070697557,-8.701148696793377,-9.836402895787206,-9.999350771722499,-9.69431976292137,-9.110638760968005,-8.257075142812376,-8.653969923692069,-8.789962849684217,-8.159262879806981,-8.874586155515054,-8.749474869560865,-8.17439772013164,-8.89062256875172,-9.407251928782122,-9.179210044217605,-9.360479211312214,-8.584259190839973,-8.060374945382316,-9.139636472602447,-8.947569618885707,-9.865222156217477,-8.047278726354941,-8.18506894811509,-9.858926280811312,-8.800011491000129,-9.32841736554785,-8.76448814389584,-8.57234180119379,-9.544535841346887,-9.205389679062305,-9.234543519213997,-8.488867726935146,-8.275673641968371,-9.051314711711578,-9.792208428507246,-9.939068679507313,-9.144434593208118,-8.477103475519982,-9.894919774362137,-8.594270855326561,-8.592785010452388,-8.039592374627611,-9.600883458240876,-9.438698276856615,-9.554992795550305,-8.343983437115678,-9.478212473853356,-9.389501806219666,-8.491327559149715,-9.836953799010383,-8.00519562734479,-9.984050850354937,-9.574703203883562,-9.704560191629742,-9.069373110275379,-9.207984900461163,-8.32696437759912,-9.231036173928727,-9.312977308648522,-9.540280865550722,-8.149494624998487,-8.650509670010079,-8.141627656370295,-8.163059064487793,-8.872805064301813,-8.179699686266037,-9.874336569676208,-8.724474678668464,-9.081757018196132,-8.503710667844903,-8.376471472651078,-8.319111639503218,-8.590134136423888,-8.801106594060474,-8.584618725229127,-9.98294233013228,-8.2700518348856,-9.115853874287286,-8.672029849380664,-8.24427791135246,-9.433234378521526,-9.804318181856658,-9.184853199641172,-9.973071197293148,-9.019315086739862,-9.433288765756501,-8.519423825688113,-9.634820162328243,-8.110380930201181,-9.06746554649213,-8.156012165017588,-9.566537989706045,-8.557262539212758,-8.04374741421354,-9.927744226097209,-9.380698236207678,-8.83540169436742,-9.848421584363784,-9.945990995346405,-8.49214740198425,-8.253714288694368,-8.653717195337205,-8.786045694241698,-8.988615903146549,-8.269183029342544,-9.952905623857157,-9.386431098560562,-9.069121640745461,-9.353146378513124,-9.957357564713595,-9.103112526040796,-9.202910002042632,-8.689368640522742,-9.808986968794152,-9.858893057361236,-9.228333503683297,-8.596136752465599,-9.942877211139656,-9.312011904475884,-8.627175599551684,-8.741999135769237,-8.501505338154065,-8.168072184561057,-8.736125536833505,-8.544662968140681,-8.209114278928276,-9.665566699081541,-8.30733820340463,-8.457851125705256,-9.256133807115383,-8.425501696932898,-8.738145532569536,-8.031578870848783,-9.03704639219784,-8.33006507822467,-8.312910247045687,-8.952204796518384,-8.692380258716245,-9.971572756109733,-9.327791971933545,-8.768970796296149,-9.422590179902869,-9.132069980919509,-8.462987188751601,-8.852023690135088,-8.567129410626139,-8.553269646785251,-9.428344698669873,-8.466818018250992,-9.3241948250032,-9.818792174117593,-9.351998085478643,-8.646656536861897,-8.03404813370756,-8.62159242000735,-9.841066275732892,-8.773830203753752,-9.231112581590475,-9.367435974068513,-9.562530753801097,-8.775728565495863,-9.452542105383852,-8.420412903172847,-8.900874121338036,-8.850847120445597,-9.314686447681618,-9.936731241668662,-8.19116150106405,-8.5613159873689,-8.380314150014858,-9.704569511686945,-9.959275273635992,-9.559012020874206,-9.904648482840631,-8.051647567182187,-9.322332347523721,-8.886033808978976,-9.90166443187222,-9.471813775692581,-8.825181898465248,-8.00234469296855,-8.873522572041642,-8.365075526989965,-9.369250965654512,-9.604916491535125,-9.634730662261322,-8.444512591158912,-8.851133616453916,-9.699744737387519,-9.129026327999936,-8.902313246116258,-9.70224329864692,-8.594967751552009,-9.928045993780573,-8.127730344100778,-9.191410432076818,-8.234453096307618,-8.511000900024072,-8.301700846010986,-9.793772000806122,-8.50958033383989,-9.512641937471868,-9.264546714683132,-9.084393931307314,-8.545689140685294,-8.542503465592056,-9.608828905952903,-9.914246722534498,-9.779051833043525,-9.526642181354521,-8.753942350000255,-8.927452444979606,-8.305605901900591,-9.870513009435351,-8.115880049865064,-9.238541110428244,-9.786645616875376,-9.807782830720852,-9.156653188882492,-9.232548328674465,-8.14168112371291,-9.731709338938234,-9.122617158608564,-8.615348323771437,-9.729745163338341,-9.439661844308182,-9.756083317272042,-9.081716497161064,-8.4472707350208,-8.220521816292942,-8.94082200340656,-9.353384314559477,-9.448458808837549,-8.58371978529294,-8.107025230568048,-9.993226233928347,-9.9669120306166,-9.83554655120289,-8.213496066072272,-9.515926169282487,-9.89266410480157,-9.090021894902545,-9.669053347059904,-9.358394739520257,-9.60379828266786,-9.62543313361946,-9.10763640429455,-9.963526838759455,-9.194570527283316,-8.755038150569657,-9.145471319150488,-8.416513546553993,-8.575752692173266,-9.068524657321879,-9.543332771639015,-9.761998891452809,-8.25850712024735,-8.451784215038836,-8.417712288033323,-8.311094670580015,-8.162348421783816,-9.478812896831112,-8.280514147400078,-8.213756444968341,-8.775107383582714,-9.613497271913518,-9.890157228979788,-8.285302048418213,-9.025457162397426,-8.011489767325232,-9.508893926633881,-9.02009782060627,-8.266449570836837,-9.256371567493192,-9.318549281450977,-8.621926235995314,-8.949659643292833,-9.131689183346522,-8.644108858043834,-8.908317729067855,-9.685059894437012,-8.360850675331479,-8.08391904101017,-9.819035304745398,-9.483605167427614,-8.623013857590475,-9.842377755141776,-9.943577148620301,-8.385232133922374,-8.771582592759373,-9.568918413639679,-8.752025122611194,-9.876199423404543,-8.141451480357757,-9.982816736428457,-9.860593406486077,-9.845900866641939,-9.142652422374592,-9.44512237994099,-8.902395707236048,-9.509170432965536,-8.805274672589123,-9.524889652281114,-8.215257745291078,-8.492485409188395,-8.101915587380473,-8.98356076085031,-8.76866138781303,-9.770322947000238,-8.016467628462982,-8.303166431060006,-8.515253648994273,-9.530197377133941,-9.335211556738559,-8.242409119612661,-8.042938621524337,-8.492291324479442,-9.119714793212431,-8.147515461256127,-9.985602697807492,-9.931600108273692,-8.263862448375587,-8.073502540056706,-8.773940705041664,-8.444255441868435,-9.277078536141605,-8.299245407441338,-9.822049095744637,-9.542414824975577,-9.859704634281865,-9.091566864438358,-9.159731415105025,-9.856421525730646,-9.274204912436545,-9.836710964016838,-9.16115528890791,-8.195148221274314,-9.013615313366053,-8.149882299962863,-8.399330622198823,-8.178129837607072,-9.723911719419757,-9.615185165502126,-9.655307778796889,-8.919753529329508,-8.922570888829839,-9.095878942544681,-8.243874403875667,-8.170097634476377,-8.819777389526228,-8.914002541655828,-8.78857981732151,-9.146104303651065,-8.323900952857924,-9.357554888723376,-8.608377921226824,-9.476446345744623,-9.276125958908096,-9.910137389266211,-9.665248055663312,-8.815655539336031,-8.31211016280599,-8.764190026287677,-8.87766597158031,-9.593820095434497,-9.049435627772851,-8.600414893739188,-8.421518814542518,-8.10951133402914,-8.878637402318864,-9.55435431583591,-8.55607661080827,-8.831225842071564,-9.1238665255795,-8.760104296094132,-9.140856946042943,-9.23152526245136,-8.534469400025344,-9.170298616020187,-9.118935905152755,-8.564117494251214,-8.6787646486567,-8.592212645221302,-9.534118423827374,-8.554067702870313,-8.06473524114643,-8.443180513591612,-8.544437064951813,-9.749472144464512,-9.459732445588003,-8.516643739068583,-9.392184750094074,-9.468024197796332,-8.48307759492252,-8.137837854721207,-9.266840427700425,-8.994556543693763,-9.921139579426157,-8.564695815938844,-9.960528828793558,-9.774061397406731,-8.67133979688193,-8.551223283292483,-8.956043621127266,-9.97117695357188],"qim":[-4.929127e-36,9.820125e-37,-1.3411173e-36,6.473712e-36,1.3714518e-36,-2.6377911e-36,-9.550695e-36,-2.1526624e-36,3.33535e-36,5.067948e-37,-3.2345703e-36,-1.7994256e-36,8.020007e-37,7.668884e-37,-7.132533e-36,7.774651e-36,8.283134e-36,-3.3351036e-36,5.167628e-37,8.5685266e-36,8.449559e-36,5.672252e-36,-1.4991283e-36,5.986766e-37,8.58735e-37,1.0249991e-36,-3.884416e-37,-7.3824984e-36,9.631904e-36,-7.1162795e-36,4.2016135e-36,-8.961675e-37,-2.3000587e-36,4.1760237e-36,-5.8645014e-36,3.0465937e-37,6.9509363e-37,-3.4872187e-36,2.5329033e-36,-1.03267494e-35,2.6048543e-36,-1.8539093e-36,-9.7598116e-36,7.085577e-36,-2.2460485e-36,2.7508187e-36,-1.9389332e-36,-1.5787342e-38,1.3338929e-36,6.546515e-36,-3.6263602e-37,-1.2769473e-35,-3.5067416e-36,-3.881196e-36,1.7709385e-36,1.2980727e-36,2.442117e-36,6.0530576e-36,-1.4967259e-36,-3.749116e-36,-4.067562e-36,-6.8484284e-36,5.3208238e-36,-2.5294487e-36,9.049893e-37,-4.5353333e-36,3.0870585e-36,9.6424925e-36,-2.5651218e-36,6.641063e-36,-1.2724131e-36,-7.163619e-36,5.2972386e-36,-3.3584514e-36,-6.9690966e-36,1.05273225e-35,8.641571e-36,1.7715442e-36,5.9539008e-36,7.2253835e-38,-7.520639e-36,2.4786371e-37,2.80216e-36,-2.3601484e-36,1.4199265e-37,-7.745797e-36,-2.1544787e-36,-1.9543435e-36,-3.4282955e-36,5.4861324e-36,1.4148915e-36,-1.1254799e-36,-1.2667007e-36,-6.180331e-36,3.2216405e-36,1.8008844e-36,6.107426e-36,7.451237e-36,-4.326124e-36,-7.294737e-36,-5.400528e-37,4.093051e-37,4.9358577e-36,5.767841e-36,3.6278314e-36,-3.5802922e-36,-1.7478844e-36,9.166445e-36,-2.1540588e-36,1.029589e-36,-4.683343e-36,1.48532615e-36,3.2017513e-36,-1.9762357e-36,2.212431e-37,-5.6513807e-36,-2.145214e-36,4.8089055e-36,8.732579e-37,1.0413928e-36,-1.5251485e-36,-6.128122e-36,-2.4727158e-37,7.287316e-36,4.270661e-36,5.2927164e-36,5.6492322e-36,5.4864907e-36,1.1023996e-36,-2.4502618e-36,2.5949377e-36,3.6913723e-36,3.732232e-36,-2.5172667e-36,8.939992e-37,1.4003467e-36,-9.376149e-37,-3.0473066e-36,-9.243783e-36,-8.981235e-37,3.5134995e-36,-6.4152346e-36,5.1842013e-36,2.7501119e-36,-2.804917e-36,-1.9925302e-36,-8.3026836e-36,8.147741e-36,2.0766828e-37,4.720985e-36,-4.339341e-37,9.330964e-37,-1.5558989e-36,-4.1444642e-36,-2.0015769e-36,9.552021e-36,-5.117113e-37,-6.682138e-36,6.532934e-37,3.328913e-36,1.6817467e-36,-1.402776e-36,3.0889475e-36,6.930398e-36,-1.0760991e-36,-3.3866797e-36,8.495359e-36,3.0865734e-36,2.7269889e-36,4.4012466e-36,-4.320262e-36,-1.0247718e-36,3.907894e-36,-9.304859e-37,6.329341e-36,-1.1587884e-36,-5.9565403e-36,7.952657e-36,-3.750572e-36,-4.8028738e-36,-3.7795544e-36,-1.6061435e-36,-6.8381184e-36,1.2012854e-36,3.6870782e-36,2.5859338e-37,3.8905527e-36,5.25208e-36,3.0757795e-36,-7.193074e-36,-5.8505962e-36,3.4287576e-37,-1.943074e-36,1.0179866e-36,-4.0913937e-36,-1.1662853e-36,-3.8334414e-36,-2.5027286e-36,3.2425423e-37,-4.007051e-36,-3.758579e-36,-4.8340336e-36,-9.409318e-36,-7.1055326e-36,-1.3910705e-36,9.657972e-36,-3.8956815e-36,1.265229e-36,1.857947e-36,1.5993136e-36,-7.237501e-36,6.9960324e-36,-6.686054e-36,-2.4772674e-36,-5.7387926e-36,-1.5285923e-37,7.16964e-36,1.2560293e-36,5.1368436e-36,-1.3703667e-36,4.1684006e-36,-5.9094423e-36,-7.347138e-36,-5.8780482e-36,7.096938e-36,8.579947e-36,-7.3670356e-36,2.9609767e-36,-5.0181125e-36,4.0561697e-36,3.646389e-36,-4.159227e-36,9.948468e-37,4.338251e-36,1.1981766e-36,-4.1721408e-36,-7.925251e-36,-3.990613e-36,1.4412315e-36,2.5958534e-37,4.838205e-36,-2.8822074e-36,4.9121053e-36,2.974376e-36,3.2785487e-36,-5.727828e-36,5.8311027e-36,-9.633128e-36,1.6405387e-36,-7.183775e-36,-1.6728544e-36,-3.520108e-36,1.3509974e-36,-2.8635075e-36,3.6700402e-36,1.1102931e-36,-2.868952e-36,3.6867894e-36,2.740789e-36,2.1748082e-36,-1.2392948e-36,-1.9881788e-36,1.1046197e-37,-5.9603307e-36,7.1447375e-37,2.3892382e-36,-2.3517684e-36,-3.4192784e-36,4.095824e-36,-5.221956e-36,6.517152e-36,6.68845e-36,2.9819988e-36,-3.3852035e-36,-6.9427814e-36,-1.6312486e-36,-5.5346355e-36,5.7390785e-36,1.904669e-37,7.387805e-36,1.0629034e-36,-3.1805463e-36,4.393171e-36,-1.4980057e-36,-4.095621e-36,-1.05291154e-35,6.2893425e-36,-4.726168e-36,-8.994008e-37,-4.2627598e-36,-1.7945253e-36,5.709845e-36,-2.3183032e-36,-6.7708177e-37,1.00375666e-35,3.773352e-36,8.600528e-37,-3.1496286e-36,9.368583e-36,3.3638345e-36,-4.278563e-36,5.0837964e-36,2.5500692e-36,-2.1874045e-37,7.527329e-36,-4.5144195e-36,6.560423e-36,2.0576095e-37,-3.2351044e-36,-2.5074993e-36,4.6693736e-36,2.4573909e-36,-1.9532575e-38,2.2313107e-36,-9.156719e-36,2.672308e-36,3.6225333e-36,-1.0305957e-36,-5.021351e-36,5.6823102e-36,-5.2239905e-36,2.420537e-36,-3.4291805e-36,1.9601732e-36,2.8224908e-36,4.8059533e-37,-1.1843201e-36,-1.2829582e-35,5.5473953e-36,-4.0487745e-36,-4.7793614e-36,-6.033307e-36,4.926946e-36,-1.5178677e-36,-1.9645991e-37,5.7524517e-36,5.0987164e-36,-1.9878087e-36,1.5251587e-36,3.1279977e-36,-3.9828387e-36,6.958913e-36,-2.4747638e-36,7.343023e-36,-9.886229e-37,-5.390008e-36,-2.542246e-36,-8.687086e-36,7.03208e-36,-3.789135e-36,-1.0467046e-35,1.7630305e-37,2.9311555e-36,5.6395888e-36,1.3614205e-36,6.580641e-37,-3.674024e-36,2.2080457e-36,-2.3151435e-37,-1.945581e-36,4.477242e-36,6.833211e-36,-5.2656536e-36,1.0750237e-36,-3.1624553e-37,-3.6022854e-36,3.7932946e-36,-4.9123793e-36,-5.270558e-36,-7.5383425e-36,2.1473786e-36,4.5615638e-36,7.861121e-36,-6.194266e-36,3.6034606e-36,6.625565e-36,2.1738517e-36,-3.2822953e-36,-2.4615328e-37,6.866454e-36,-4.8563705e-36,3.319537e-36,-2.779921e-37,-1.278557e-36,5.243821e-36,-4.0461005e-36,6.0391144e-36,6.5046616e-36,-9.780482e-37,-1.1282313e-35,-5.997725e-36,-5.728122e-36,-2.462945e-36,-2.4778451e-36,4.2198156e-36,5.6043702e-36,3.0539055e-36,5.103717e-36,2.9646121e-36,-2.9054742e-36,-4.620247e-36,-2.9960687e-36,3.3154243e-36,4.1577836e-36,1.0660431e-36,-5.5349562e-36,1.5551432e-36,-6.8577924e-37,-5.4087154e-36,-3.100432e-36,6.891376e-36,2.3637603e-36,9.798779e-37,4.6614783e-36,-2.7073337e-36,3.0425e-36,4.707709e-36,5.842589e-36,3.0027759e-36,1.5683393e-36,1.7608106e-36,3.5517303e-36,2.1232501e-36,5.646653e-36,1.349605e-36,-4.4862677e-36,-2.1576518e-36,-6.45872e-36,5.564229e-36,-7.330596e-36,-1.3143871e-36,-1.012532e-36,5.9863174e-37,-2.6737078e-36,-2.8502052e-37,-9.773456e-37,-8.43967e-36,-3.2854866e-36,-6.576306e-38,-1.7976626e-36,-1.556565e-36,1.1017876e-35,7.211804e-36,1.5109201e-36,-2.6381409e-36,3.6269023e-36,1.213282e-36,-6.244184e-36,8.4641706e-36,1.00355185e-36,8.601225e-36,8.5799264e-36,-3.0969718e-37,5.6945398e-36,-2.8197321e-36,9.149983e-36,-3.6180595e-36,5.627485e-36,1.4620336e-36,6.2830116e-36,-6.7645246e-37,1.3508222e-36,-1.6589763e-36,-5.1663755e-36,2.0755692e-36,2.9657766e-36,3.3566004e-37,-7.935274e-37,-2.1714266e-36,-5.512569e-36,-3.4131376e-36,-5.0309397e-36,2.8226042e-36,-7.41048e-36,-2.0407592e-36,-3.6393261e-37,-1.2334083e-36,4.7767914e-36,-6.6703206e-36,4.848386e-37,6.762947e-36,-5.639538e-36,-8.684289e-36,-8.015164e-36,-1.2489201e-35,-2.516229e-36,-3.5939244e-36,-1.1018483e-36,-1.1874154e-37,6.0189034e-36,-5.79654e-36,1.3939308e-36,-3.1098387e-36,-4.5017427e-36,6.8062135e-36,4.9048452e-36,2.6448042e-37,1.2310645e-36,-3.8144408e-36,-2.224385e-36],"qre":[0.916199,0.9057055,1.0496976,0.9385954,0.9328989,1.1798356,0.99531555,1.1001989,1.1796149,0.96467376,1.0834994,0.8619327,1.0510719,0.86601055,1.0247841,0.89733106,0.95491666,1.0054351,0.85902286,0.9438388,0.95771205,1.0654938,1.0694832,1.009779,1.108437,1.0584044,1.0324404,1.0722536,1.1305416,1.1140751,0.81570137,1.1392827,0.9525506,0.93541306,0.9329374,0.998447,1.1320028,1.2388957,1.1577263,1.0313352,1.0494593,0.9167949,1.0214099,0.9536894,1.0116773,1.0034038,0.928132,0.98860186,1.0582931,1.0614333,0.9766241,1.1806198,0.975081,1.0019962,0.87726665,0.88450795,0.99355555,0.93012255,1.0164964,0.96302265,0.9830354,1.039349,0.9867662,0.91580546,1.0444919,0.9929052,1.1972504,0.86237913,0.9343853,1.1941333,0.9711864,1.2046062,0.9463719,0.9361063,1.0089911,1.0135231,0.8460546,0.96671796,1.1905308,0.9095863,1.1557666,0.9593339,0.95370126,1.1048031,0.93803805,0.90881234,1.0414926,1.1070684,1.0960115,1.0260009,1.0520781,1.1750067,0.92907625,1.1305156,0.97414124,1.084043,0.98921275,1.1550663,1.0569385,0.9584248,0.97273356,0.8877454,1.0704677,0.9788755,0.93298495,1.0611415,0.9698287,0.90355897,1.017746,0.94279796,0.9715111,1.0414681,0.91686165,1.1296693,0.97541577,1.0711278,0.91630787,0.84942317,1.1999696,1.0252357,0.96883696,1.0448176,1.0622072,1.0045621,1.0596088,0.9277929,0.9978027,0.9508495,1.0510072,0.99598247,1.1372932,0.9388816,0.85925066,0.9960245,0.9090407,0.8605905,0.84764135,1.0368549,1.071926,0.97987026,0.88859105,1.1466082,0.941679,0.9405894,1.0388641,0.8403792,1.1331809,1.0635954,0.98508114,1.1212744,1.0429845,1.0137486,1.1194471,1.122199,0.9842321,0.9209047,0.94034135,0.8535777,0.8813806,1.0217601,0.92954427,1.0121274,0.90642667,1.0912786,0.9358392,0.8436589,0.97725594,0.8939864,1.0328294,0.98319286,1.2430177,0.8480154,0.9700205,0.8974381,1.0265479,1.0580918,1.1825879,0.920649,1.1563385,0.98718566,0.95798343,0.9409079,0.9795596,0.9048753,0.9074977,0.95336545,0.98509806,1.0622879,0.81128436,1.1972532,1.1104149,0.9666838,1.0744394,1.1523011,0.89151114,0.84226954,1.0547833,0.91105783,0.91257894,0.9996321,1.1575626,1.0892868,1.07128,1.0479872,1.017885,1.1282623,1.1229241,1.0131122,1.0008007,1.055079,1.1406683,0.87113124,1.1071417,0.9407831,0.9357416,0.9321493,1.0620897,0.86107653,1.0796645,0.96307814,0.87807536,1.033056,0.9895907,0.941604,1.1422367,0.97510606,0.8767589,0.8505469,1.0538203,0.8416066,0.8912396,0.9481561,0.9223828,1.0807822,1.0230905,0.93788415,1.0487686,0.98289716,0.9414244,0.92689866,0.87721467,0.9124603,1.0766618,1.0000736,1.1019646,1.1273947,1.1642629,1.0166539,0.80383205,0.86845076,1.1090121,1.0193218,0.93511546,1.0043758,1.0179312,0.92185736,0.9804297,0.9014023,0.966,1.0957208,0.9538041,1.0369785,1.0086643,0.88116467,0.92789966,1.028814,1.0347468,1.0562513,1.0251045,0.80708826,1.15463,0.9984794,1.0019835,1.1553069,1.0351162,0.97843665,0.9921357,0.8654211,0.9608421,1.1786363,0.98432916,1.0173374,0.9707689,1.0920703,1.1363866,1.0937678,1.173156,1.0666655,1.0213733,0.9286611,1.0279293,1.0014397,1.0310109,1.0073165,1.0914166,0.99854755,0.9902283,1.0733038,1.0424458,1.0214446,0.9919247,1.1325778,1.20339,0.9815374,1.0126685,1.0097386,1.0094582,0.8384086,1.1342474,0.99397117,0.9730088,1.0996882,1.1870917,1.0626259,1.0262461,1.0127681,1.0165712,1.012455,1.0656471,0.97857845,1.0155311,1.1927724,1.0511147,0.8828956,1.009925,1.0022887,1.0450835,1.1653519,1.0157137,0.86639225,1.186567,1.1412711,1.0044839,0.8863728,0.96153456,1.130748,1.0450226,1.0958693,0.98403716,1.0998814,1.2005842,1.0793525,1.1092165,1.0730855,1.0780241,0.9342393,0.91046464,0.9745059,0.92282814,0.9721861,1.1643434,0.92023844,1.0306994,0.90137225,0.8748269,0.942561,1.0704497,0.87174225,0.83798015,1.0081196,1.0272701,1.2219551,0.89692456,1.006888,0.8268115,1.0113071,0.963185,1.0156425,1.0801977,1.1273284,0.868647,1.1169915,1.0292009,0.98419523,0.9034564,1.1300939,0.9224091,0.8559446,0.99629045,1.0683296,1.071948,1.0130982,1.0233995,0.93844026,1.0169268,1.1468934,0.8793651,1.1503044,0.89029145,1.1836524,1.1977282,1.0921917,1.0282664,1.0672857,0.9347233,0.9590352,0.9381966,1.0029013,0.8924721,0.9670853,0.94534856,0.94935846,1.0561179,0.99997705,0.9380777,0.890673,1.0241371,1.0135368,1.0660037,0.93415856,0.8148468,0.9534078,0.94206434,0.82435,1.2093623,1.1919187,1.0295684,0.8106385,1.0260255,0.8677956,1.0801035,0.94167227,1.1277337,1.0333164,1.0517882,1.0725678,0.9248104,1.0764747,0.9636499,1.0950587,0.9353152,0.85523194,1.0279297,0.8370253,0.90216184,0.91738045,1.2095742,1.0449952,1.0898081,0.94972634,1.1080382,1.1201196,0.9596825,0.9741996,1.0921769,0.90411276,0.9196494,1.0471642,0.89461756,1.1228576,0.88718146,1.040497,1.0522265,1.1693839,1.0213753,0.98286015,0.91616404,1.0422703,0.916898,1.1134793,0.9525057,1.0719805,0.8935017,0.8112154,0.9692418,1.0621703,0.89127827,1.0138801,0.9720697,1.0240008,0.99461365,0.955959,1.0261256,1.1135392,1.0725154,0.96716815,0.92246693,1.0583439,1.0956908,0.99724007,0.83603895,0.9313824,0.94612783,0.98169327,1.113945,0.9800986,0.9924252,1.0614885,1.0011942,0.86734354,0.96092355,1.0630211,1.018339,0.9232435,1.1273224,0.9897907,1.0447716,0.93983227,0.9914604,1.1371113],"re2":[5.141523282804045e-35,9.344927102181336e-35,4.3380130888180534e-35,1.7802707129151017e-35,1.400329329888379e-35,3.513257070036968e-35,9.226225793112079e-35,4.458287750413976e-35,2.905505934681206e-35,5.3834300073941294e-36,7.964045138620797e-35,9.786428306995857e-35,3.655475173160668e-35,2.5451457593487324e-36,7.136387581090955e-35,1.57208563088295e-35,1.096754780212179e-35,6.740750503825654e-35,5.59953094735815e-35,8.332472271836565e-36,2.0544760916990367e-35,4.1324698138701075e-35,4.4191895022688465e-35,3.9294116909923833e-35,5.055073665320081e-35,7.178983027315927e-35,6.781945126048592e-35,9.9954063454536e-35,1.800827601232764e-35,7.697567244713186e-35,5.607140628219581e-35,2.8121465825627555e-35,4.5873927578694713e-35,2.4565228151496764e-35,7.033510713460353e-35,7.163191908678842e-35,6.12434213106878e-35,7.847403059062355e-35,1.2719378246719136e-35,9.943162854165546e-35,9.442983568604978e-36,9.195331180828064e-35,9.840577268951523e-35,2.4460097337464724e-35,5.792435922515527e-35,1.4214279238190296e-36,9.682604961631828e-35,6.165005874298294e-35,7.4773464513821e-35,3.5009734016558046e-35,2.109822590729926e-35,9.955765437807894e-35,7.143444402181359e-35,3.9387818838901776e-35,6.289319191385301e-35,6.95061267417353e-35,4.036606519194595e-35,1.53664415833891e-35,4.5224281981485777e-35,6.56159456572242e-35,6.684418505131055e-35,7.469740448636374e-35,1.7068734266493367e-35,6.745979635956155e-35,7.526396375678725e-35,8.267237631268436e-35,1.4249833078854966e-35,3.7134961574524335e-36,6.625192658172573e-35,2.996407112787719e-35,3.864167759059963e-35,7.959316301376231e-35,2.4441400331536444e-35,3.836803796377734e-35,9.96985340158449e-35,9.97619757373812e-36,1.1074388873241192e-36,1.442348666422638e-35,6.703579916875234e-36,8.731024727036957e-35,6.164964498781086e-35,6.52227138858707e-35,1.2735308987027526e-35,2.045306266302843e-35,7.36365437386404e-35,9.577798388138165e-35,6.968190565977467e-35,5.430619023193542e-35,8.764589059797042e-35,1.4951761738735048e-35,5.465976945173851e-35,5.865741760491462e-35,4.614691952451699e-35,8.081910908313149e-35,5.040107050771321e-35,4.4653668297643473e-35,6.305743131056351e-36,2.0071843814629252e-35,5.046825452706659e-35,9.58505295292754e-35,6.32085970527943e-35,9.830022543535283e-35,1.7049662971120614e-35,2.745444479688685e-35,8.89813209839585e-37,7.703077074681383e-35,8.479509349506132e-35,1.0461023012075897e-35,6.390112526597669e-35,4.641047996652925e-36,5.176181618240728e-35,5.613182402226194e-35,7.652591884342228e-35,7.201493480361183e-35,5.401230013961433e-35,9.42943541881204e-35,3.466203269912785e-35,2.2860070585111123e-35,5.027754015617225e-35,3.5936518254922784e-35,5.772920269804727e-35,9.951345772068702e-35,3.110266500833798e-35,2.4693124947888954e-35,1.0323451487206669e-35,2.1957000627040055e-35,4.2059170503911676e-35,8.265714393498435e-36,6.0516033239416e-36,7.932403062499476e-35,7.375005602108386e-36,9.658436588590778e-36,4.6353574950827333e-35,8.476734965958816e-35,1.5028015051078147e-35,3.317701744007594e-35,5.963524320439915e-35,3.71142396927968e-35,7.693623285220607e-35,7.068380458516548e-35,2.165515266825779e-36,5.686515677361837e-35,4.340193730339301e-35,3.7723240535147284e-35,7.093456254026994e-35,4.540225161584351e-35,7.970126144717362e-35,1.1817902809286129e-35,2.1839930405043916e-35,1.607846466011753e-36,7.719910392395705e-35,7.542017528740375e-35,3.4986350090114414e-35,4.296362947329045e-35,5.294125637650442e-35,5.434490978614925e-37,8.53732827749926e-35,9.129044834956353e-35,8.584982386878382e-35,1.8307928042585662e-35,2.163104520880079e-35,8.526716729442282e-35,1.589495129887095e-35,9.696322213103447e-36,5.266820911657589e-35,5.354232917968569e-35,1.8095618527627865e-35,7.552511672511029e-35,6.790371808668874e-35,3.8244337357348153e-35,2.939411656587082e-35,7.574096596248332e-35,1.5019159149719195e-35,1.3553813853805106e-35,3.6422989305170423e-35,7.916954447127152e-35,6.828881616324561e-35,1.8049799333562499e-35,9.813660995629687e-35,5.175155757896907e-35,7.848242349131362e-35,6.542615430559037e-35,6.906717100046423e-35,4.878841694051429e-35,5.474162159742971e-35,5.657602713134536e-35,3.0273081903482753e-35,2.6564876431153457e-35,8.152551254401349e-35,6.959225424379684e-35,7.221675617976709e-35,2.6798962516348945e-35,4.752818840421655e-35,1.4390141675850852e-35,8.209625835810366e-35,9.629843367063742e-35,4.39217725404846e-35,3.763546191119644e-35,1.2253228838247886e-35,5.110890548985401e-35,3.925653848018738e-35,8.475143327375945e-35,8.854812395779169e-35,9.966094434201855e-35,7.936476720698623e-35,1.5140291185745325e-35,6.833146307088001e-35,6.063579505313464e-35,6.517583932388151e-35,4.1455570658596915e-35,8.398351852496128e-35,1.0440930397934521e-35,7.785778825660568e-35,7.234882294075086e-35,9.718613496862996e-35,4.0145938976322e-35,1.3149004001913976e-35,1.1690145879986401e-35,4.343737325361225e-35,5.108363892699878e-35,2.1897050200616707e-35,6.732063190187441e-35,7.665445681453894e-35,8.263825993919751e-35,5.881297167765442e-36,8.156904832391742e-36,8.761985120150642e-35,1.4262684605853202e-35,6.853239063140655e-35,5.116934012432577e-35,9.613470771309362e-37,7.182962751754845e-35,4.0931082072265365e-35,1.8759950469985463e-36,2.4112338947300325e-35,6.48907585120647e-35,7.380209606404039e-35,9.386792819827595e-35,2.3458147391115546e-35,7.82499231651712e-36,3.272779806786508e-36,9.13669264134525e-35,1.6282971918907928e-35,1.1970232484081356e-36,2.2377804095835672e-35,9.610602063072824e-35,3.8005933553598923e-35,8.589480735285554e-35,3.953602052336635e-35,9.530098184289682e-35,7.512794807563034e-35,4.035687792812301e-35,1.3356755804537535e-35,3.6512152929809034e-35,5.548461667392312e-35,4.0266344526471007e-35,4.6425965437445624e-35,1.3084972004565863e-35,4.021086137562802e-37,1.1509343908307756e-35,8.043203135978619e-35,4.684327258127915e-35,4.4216945055111e-35,8.227778813603728e-35,5.922415491244187e-35,2.6989123690025395e-35,9.584640455833644e-35,6.227459213032286e-35,3.2114348118500524e-35,8.005025961695062e-35,2.5049728584300835e-35,1.855732149119845e-35,1.6853218148071023e-35,6.805125985904116e-35,7.542844866432103e-35,3.000403073618126e-35,7.244140760050058e-35,1.284961501552243e-35,7.379831082198923e-35,3.278939479486917e-35,7.029730704704431e-35,7.013852197008378e-35,4.519435423811114e-35,1.383952844614835e-35,7.993817381963876e-35,8.251945621443802e-35,3.070002967473162e-35,7.251821041046993e-35,9.478327929881267e-35,7.395116886648975e-35,9.689926711973735e-35,4.618224119190108e-35,3.382835282122852e-35,7.41676223365865e-35,6.933393545704814e-36,1.721996292241522e-35,3.834446747315504e-35,7.34000231487942e-35,1.8804323585561166e-36,4.02205122104429e-35,5.792425547144455e-35,3.286872032129796e-35,4.660281163810594e-35,4.799222806376115e-35,1.7602775318267815e-35,8.138816655048665e-35,1.120738022371348e-35,6.124482722541903e-35,8.015705966674069e-35,3.726067760658649e-35,4.536473123073114e-36,1.6777673720681263e-35,2.396344601584409e-35,7.499249161059911e-35,9.595010022793689e-35,7.37833411134876e-35,3.7139180882716025e-35,6.505656578010123e-35,8.498720091479979e-35,2.474862465061076e-35,9.96507492279684e-35,6.22561290297674e-37,5.439214794874869e-35,1.0642844120544048e-35,7.439132344846341e-35,6.845373070082395e-35,1.288512233809974e-35,9.178596815420591e-35,4.5436719888387386e-35,8.41327533296167e-35,5.61402412877686e-35,8.618297959462824e-35,1.8312276436471506e-35,6.098297281698914e-35,5.028677345435751e-35,2.456255029421266e-35,3.92841785863835e-35,7.589133089556271e-35,3.638027523135281e-35,4.88306661882236e-35,4.391104682622929e-35,1.7213308741609444e-35,5.288467009177108e-35,3.2907847776229904e-35,4.475472927364242e-35,9.089729787924751e-35,7.248320322027183e-35,9.80583635050822e-35,5.2519085753036206e-36,4.2085240416336307e-35,9.07796530001384e-35,5.758826735229828e-35,4.253274960565732e-35,4.3453521004170967e-35,9.842227204984789e-35,5.035991715405374e-35,5.171638820150955e-35,4.981306264355067e-35,7.701692233856774e-35,7.287045869643454e-35,2.486812163171877e-35,6.652386570727686e-36,7.661084329452018e-35,6.161383552144347e-35,7.691393645946186e-35,6.599826417461205e-35,2.477689609740973e-35,6.881901487741075e-35,8.952055643955844e-35,6.822158680791341e-35,3.04634342274904e-35,1.771328255092651e-35,4.285831402487172e-37,6.832300880390134e-35,3.09215965319658e-36,1.7526187790504899e-35,2.875047495705058e-35,5.3993286870209e-35,8.64653041148139e-35,1.1241933423077354e-35,9.297668553062917e-35,6.299629948699527e-35,1.3407100102243663e-35,9.348495257783326e-35,1.8902304774516153e-36,7.889813364323056e-35,4.170069137831237e-35,3.0491477631420335e-35,6.166092897402517e-35,8.195121813088813e-35,8.108480772187125e-35,8.386562207232207e-35,4.89616204245574e-35,7.921063523483904e-35,1.1767709738120157e-35,4.36957099225132e-35,2.8003652655619224e-35,4.7765398489764974e-35,4.375103415189911e-35,6.085133908494868e-35,8.804132845489347e-35,4.553542209252834e-35,1.2193930369422988e-35,4.810830760434357e-35,1.336812739202e-35,8.796495871498418e-35,9.260422802460311e-37,1.3342732122596922e-35,9.675728519560182e-35,5.789692598279313e-35,1.1570756810881e-35,7.587593216536251e-35,4.75395469952104e-35,1.1476422148112952e-36,7.158667894101277e-35,1.2129306992510791e-35,5.5037331533192786e-36,2.688567906789345e-35,5.231347236235194e-35,5.311982298568946e-35,7.072988587694886e-35,1.4898751727800562e-35,5.405840894655234e-35,1.9108759700621201e-35,1.673249172495732e-35,5.794368638520995e-35,5.685943848955824e-35,6.955606298755491e-35,4.032809473680693e-35,7.832636852230165e-35,1.808347372181831e-35,1.6346989916061638e-35,6.568599963187093e-35,7.284223322756519e-35,5.918514187852196e-35,9.748905213439576e-35,7.343163906464515e-35,4.4313355563725795e-35,5.45705653704068e-35,6.16553869229654e-35,8.846607755064251e-35,3.6959283846589526e-36,1.9472422816831902e-35,4.377684891590858e-35,3.9799756041506247e-35,5.617881541209196e-35,8.759426031134799e-35,9.733763201994643e-35,4.7579254738863485e-36,6.328890257373641e-35,1.6259596993005008e-35,2.8886135042115788e-36,9.095462942830316e-35,4.39418896132238e-35,5.21312845386543e-35,5.765253068288711e-36,7.64279536112207e-35,3.065403891098753e-35,9.120028754984894e-35,3.8178592667468957e-35,4.0199156654975083e-35,2.9800299118699325e-35,2.6778120907513165e-35,6.700896114536295e-35,5.375974255895866e-35,6.898238294242738e-35,3.866806374551665e-35,4.5611285327701684e-35,5.311922638756589e-35,4.96087624053098e-35,3.2860013060412716e-35,6.649274558381903e-35,5.559617954827994e-35,8.494090432190849e-35,9.26599204793116e-35,5.473646522799476e-35,5.395975409345006e-35,6.039185936034274e-36,8.296336276422651e-35,6.072738893411065e-35,2.423582776048405e-36,9.481190471923129e-35,9.581417796697071e-35,9.072259944164245e-35,9.914206960540605e-35,3.8193098618721183e-35,8.042041951283729e-35,7.995154802466673e-35,1.6516742526312764e-35,1.4907188435610007e-37,6.771471962687665e-35,4.966795947236681e-35,8.12567012904181e-35,8.98507180595968e-35,3.338958409467035e-35,5.202169441035168e-35,8.692752048575825e-35,8.672187669136164e-35,3.7930724271636303e-35,3.3522891406981846e-35],"im2":[-9.389029996196358,-9.71827867188144,-8.611824337430955,-9.400105307184894,-9.413984771319477,-8.231399779987704,-8.61363301974911,-8.214578685377676,-8.11065382354329,-9.565940812190894,-8.169781736961353,-9.802399092746624,-9.359474804364773,-9.766530912563045,-8.219378286031645,-9.623135080716713,-9.577118113171437,-9.29939628605723,-9.591175032390671,-9.965665139503042,-8.491183828153112,-8.760032665461216,-8.323076744979913,-9.877459775650285,-8.198408311523146,-8.64124907821296,-8.979428448557368,-9.117773391752468,-8.03646831317528,-8.900100501914956,-9.820380756075055,-8.370204069895827,-9.594222025776931,-8.944010180565874,-9.807256626073135,-9.669471557767686,-8.65760055662939,-8.006268553506695,-8.494101391368208,-8.085498846855238,-9.459823060927004,-9.615733644001597,-8.77328611251183,-9.07823648666114,-9.557578127726646,-9.101231855603107,-8.705456203794107,-9.517802762042074,-9.349206440093933,-9.044666910892895,-9.75262695638616,-8.411612182694558,-9.305105616222228,-9.321259693920362,-9.269659690160251,-9.5783069610511,-8.859067956927337,-9.13679096160193,-8.626387142869177,-9.845232721763592,-8.188518734281605,-8.536945298561232,-8.266131309337283,-9.91218508612389,-8.91354015399842,-9.279456833486178,-8.101811167304223,-9.650730899535922,-9.316296165675627,-8.14336749265479,-9.812939880142773,-8.296611810893685,-9.487946403478116,-9.610551581624385,-9.801878339171415,-8.143247434628973,-9.706829209780937,-9.498082475124392,-8.250970379024793,-9.727133711537986,-8.353156193464589,-9.994321403754197,-9.202118048954551,-8.80105857015344,-9.476648554064933,-8.916692306829184,-8.911841886055477,-9.025849905784376,-8.143743415762284,-8.661743214851096,-9.440332735943732,-8.340870820471567,-8.889696099570005,-8.609930591871386,-8.807275694140124,-8.0265714923166,-9.94366715148253,-8.656949997688125,-9.172075311433773,-9.505846010592286,-8.488527548094362,-9.748256778020668,-8.211329726891252,-8.335342669030794,-9.512035202612275,-8.24534233035485,-8.428701950166458,-9.839559675134446,-9.243222349679034,-9.736136030987932,-9.634968318428648,-8.242459075172553,-8.79126608285231,-8.090540860670533,-9.17308350425716,-9.21012584930739,-8.782286667823183,-9.63603229257877,-8.215979278589442,-8.583403472507491,-9.628470654064769,-8.388535019000738,-8.070310718336584,-9.501190534094995,-8.687536515583819,-9.953238269468903,-8.507561570472175,-8.703453208092405,-8.612038507027991,-9.83170829199198,-8.739231451341402,-9.739711274842088,-9.86569314323988,-9.93441359221173,-9.454219950607204,-9.984754859909104,-9.484662681654525,-9.259621739280654,-8.805363626276797,-9.751283611613573,-9.39012853297216,-8.26630443104737,-9.971021466974271,-9.027666254634596,-9.468951115939586,-9.525694615736363,-8.810642225215762,-9.002204048775845,-9.85153372621299,-8.088451211387516,-8.828496641387192,-8.214032457078538,-8.246066934493523,-8.29886315230714,-9.69312096236245,-8.849443333533962,-9.199329457228187,-9.538238801964992,-9.261672710395326,-8.683843204392852,-8.799688122115478,-9.756021285349199,-9.625130552791177,-8.322125008180603,-9.086722449319204,-9.928741894889233,-8.512726141242887,-9.608796843030886,-8.521356041430707,-8.731367953585702,-8.031216083695238,-9.75224232373621,-9.397589541347521,-9.66309491845892,-8.031069350899136,-8.915327351256858,-8.290562714377065,-9.976498176984752,-8.624698542132508,-9.136391970440863,-9.84702694892272,-9.05447097234029,-9.835868792515422,-8.962982322534579,-9.991723534306296,-8.554970256424625,-9.711254523403067,-8.05550211305183,-9.914830504488123,-8.292100171922105,-8.447921976863315,-9.139908921614113,-9.166102207033841,-8.631416566013964,-9.525565398257443,-9.79937473818412,-8.204260325870912,-9.643785016711542,-9.849685626551627,-8.2722260506456,-8.598158285084775,-8.61704277645132,-8.46568695302634,-8.924866618420547,-9.782399194199572,-8.068258843137807,-8.195487885824006,-8.576906228669525,-9.8011384627127,-9.344222596948471,-8.09028685130096,-9.867786883762843,-8.980671978894163,-9.898149235194998,-9.219613382664223,-9.378324728268868,-8.004508423277477,-9.485884028323124,-8.091519803132918,-8.872243101563601,-9.348985346702099,-9.356285086373802,-8.394720717394627,-8.982386325099426,-8.103516305774718,-8.640599795976769,-9.966417832971837,-9.442840171196158,-8.575510361878642,-9.897813214236557,-9.327357566964587,-9.441699190311455,-9.423831559787704,-9.22625500201346,-9.11726905531013,-9.349736823482232,-8.984432215684269,-9.290971290476515,-8.989555043319653,-9.550152912201417,-9.766285691233936,-9.373854062475989,-8.757016378189057,-8.466194953773623,-8.461428701772606,-8.70927691894851,-8.03254913001234,-8.50501497660441,-9.994685649676228,-9.927555161490528,-8.873723345162333,-8.607516982280728,-9.87162905800285,-9.3266248970874,-9.394083132464466,-9.51961650562004,-9.641224162433671,-9.3414588099622,-9.214155603328813,-8.077648471006626,-9.765828349615076,-9.582389064403815,-8.120801302285416,-9.715909334199424,-9.031487207113592,-9.432774176030687,-9.624843831587143,-9.049941489402299,-9.662086756067401,-9.976166621726637,-8.073870386708247,-8.89956679891117,-9.882062916894622,-8.198526347371953,-8.525788233082396,-8.178704752619197,-8.943860469466367,-9.66590090415118,-9.7510836598443,-8.149177786090453,-9.788118100074751,-8.300601353673288,-9.117651825426021,-8.881978081782165,-8.033380845436561,-8.139125780766575,-8.270206821711188,-8.057790889348102,-9.72029163207023,-8.752095105717641,-8.941675573859056,-8.222614791641544,-8.255006233791589,-8.241402927567512,-8.973449631727346,-8.52195800603666,-9.606513619367478,-8.631802247892296,-8.714499150548397,-8.366278925510892,-8.612048122726524,-8.48403453830295,-8.23859805577981,-9.962995043670682,-9.407463995597555,-8.669514170276482,-8.843804871744384,-9.906393841002176,-8.702257144817663,-8.16510596389418,-9.494817255081202,-8.899472722225422,-8.262026958609084,-8.6170055518395,-8.99642708068321,-8.039036661174713,-9.573072356347344,-9.010391868003989,-8.084615910812971,-9.942733789948813,-9.295296685011861,-8.17933324852455,-8.640081203001785,-9.567689021873289,-8.139734771623715,-8.920405040493549,-8.949890650657643,-8.10781602892143,-8.450924630144579,-9.357222277217229,-8.421965478703015,-8.733167540502825,-9.791641224291062,-9.266412415948327,-9.896603508415694,-8.748778556857314,-8.698398064141891,-8.823181455459855,-9.510204156039727,-8.731666134605511,-8.017290610709457,-8.438056042003701,-8.982490825538079,-8.568347593890458,-8.121374780735056,-9.789217279860704,-9.2441961871069,-8.800103222183525,-9.826883786641748,-9.816364273802042,-8.384123540740436,-8.974311907439391,-8.200047700367534,-9.33877455279112,-9.50027297580125,-8.659756725953391,-8.854982381875772,-9.49881024052962,-9.80185107710724,-8.704431087786558,-9.358296211131954,-8.09371670484351,-9.23745751414056,-8.963715672378012,-9.689621148638244,-9.402578534033783,-9.36486503066062,-8.13913389541252,-8.569146213537277,-8.266046940850543,-9.925696746378847,-8.012288625733822,-8.872600806634642,-8.782920405002319,-9.860263264512042,-8.57013740095768,-9.06414519246922,-9.444441950542966,-9.855595905083245,-8.877041295454884,-8.044245316864972,-9.715126792812772,-9.716222844941653,-8.935285964011598,-8.62558013865288,-8.343336641463678,-9.952663693707043,-8.5857266487479,-9.144703950797313,-8.433909125567952,-8.232748033700952,-9.014809512371865,-8.891327333541353,-8.849666731189753,-9.524096411650623,-9.915350659625956,-9.385319292884647,-9.497335190324076,-9.205058007464544,-8.781526934523269,-8.570293961083197,-9.462769298428244,-8.30272982143803,-9.770546506562388,-8.545633732626333,-9.322351481402759,-8.314564712943735,-9.402912339693682,-8.757204159789723,-8.823350965778696,-9.870490718024573,-8.907301744394127,-9.680564476783767,-9.883563295286471,-8.256915574716963,-8.332447657177914,-8.02652982442575,-9.959436301333193,-8.551386802836,-9.730696472129987,-8.589064493785294,-8.813305953981613,-8.709545684419131,-9.234745966039025,-9.374230357606033,-8.476450162109327,-9.904443175682296,-9.156204355817085,-9.624039639856765,-8.982817005256258,-9.794725468750462,-9.58236981449572,-8.76870844333968,-9.736722198310488,-9.31022625977254,-8.914654978284217,-8.03911868430713,-9.201175267845034,-8.859639989728398,-9.391919066167585,-8.05258500098898,-8.120453043472633,-8.590209698012085,-8.386472195744215,-8.075411217836049,-9.859392233013413,-9.556446516789393,-8.734163788940212,-9.304424462365139,-8.333696749491462,-9.7030633323913,-9.107615596877631,-8.815712411478462,-8.474665908321477,-9.462973902546452,-8.969389927352829,-9.072731002942247,-8.408749126467038,-9.682281995693465,-8.616075008546748,-9.500663150465183,-8.022921731917878,-9.425297544783144,-9.99674252209009,-9.160394898374795,-8.995125562209495,-9.599781795559636,-8.71032481746125,-9.386020524354972,-8.554782548844443,-9.190358747462259,-9.656820872678342,-8.317178819155282,-8.235272343479265,-8.502382290719174,-8.854838406526536,-9.408212056635351,-8.118545064070869,-8.701467511057869,-8.57774194203639,-9.64636367737818,-9.06521367789866,-9.030954605642846,-9.931281844584179,-8.492099601096301,-8.68957762354025,-9.463872189327779,-8.919573063066547,-8.472959165553217,-9.382484284962532,-9.643680891662179,-8.461314693895485,-9.74247215331896,-9.276746103051284,-8.83556258327907,-9.874876587594127,-8.299747543430815,-9.098670295797252,-9.033183127515928,-8.768866396339128]}
diff --git a/lib/node_modules/@stdlib/complex/float32/base/div/test/test.js b/lib/node_modules/@stdlib/complex/float32/base/div/test/test.js
new file mode 100644
index 000000000000..8f007cbda87e
--- /dev/null
+++ b/lib/node_modules/@stdlib/complex/float32/base/div/test/test.js
@@ -0,0 +1,1056 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+/* eslint-disable id-length */
+
+'use strict';
+
+// MODULES //
+
+var tape = require( 'tape' );
+var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
+var absf = require( '@stdlib/math/base/special/absf' );
+var pow = require( '@stdlib/math/base/special/pow' );
+var EPS = require( '@stdlib/constants/float32/eps' );
+var PINF = require( '@stdlib/constants/float32/pinf' );
+var NINF = require( '@stdlib/constants/float32/ninf' );
+var toBinaryString = require( '@stdlib/number/float32/base/to-binary-string' );
+var Complex64 = require( '@stdlib/complex/float32/ctor' );
+var realf = require( '@stdlib/complex/float32/real' );
+var imagf = require( '@stdlib/complex/float32/imag' );
+var div = require( './../lib' );
+
+
+// FIXTURES //
+
+var data = require( './fixtures/julia/data.json' );
+var componentScales1 = require( './fixtures/julia/component_scales1.json' );
+var componentScales2 = require( './fixtures/julia/component_scales2.json' );
+var imaginaryComponentScales = require( './fixtures/julia/imaginary_component_scales.json' );
+var realComponentScales = require( './fixtures/julia/real_component_scales.json' );
+var largeNegativeImaginaryComponents = require( './fixtures/julia/large_negative_imaginary_components.json' );
+var largeNegativeRealComponents = require( './fixtures/julia/large_negative_real_components.json' );
+var largePositiveImaginaryComponents = require( './fixtures/julia/large_positive_imaginary_components.json' );
+var largePositiveRealComponents = require( './fixtures/julia/large_positive_real_components.json' );
+var tinyNegativeImaginaryComponents = require( './fixtures/julia/tiny_negative_imaginary_components.json' );
+var tinyNegativeRealComponents = require( './fixtures/julia/tiny_negative_real_components.json' );
+var tinyPositiveImaginaryComponents = require( './fixtures/julia/tiny_positive_imaginary_components.json' );
+var tinyPositiveRealComponents = require( './fixtures/julia/tiny_positive_real_components.json' );
+
+
+// FUNCTIONS //
+
+/**
+* Compares the binary representations of two single-precision floating-point numbers and returns the first index of a differing bit. If all bits match, the function returns `-1`.
+*
+* TODO: revisit once ULP distance fcn is written
+*
+* @private
+* @param {number} a - first number
+* @param {number} b - second number
+* @returns {integer} index
+*/
+function bitdiff( a, b ) {
+ var astr;
+ var bstr;
+ var i;
+
+ astr = toBinaryString( a );
+ bstr = toBinaryString( b );
+ for ( i = 0; i < 32; i++ ) {
+ if ( astr[ i ] !== bstr[ i ] ) {
+ return i;
+ }
+ }
+ return -1;
+}
+
+
+// TESTS //
+
+tape( 'main export is a function', function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof div, 'function', 'main export is a function' );
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (base behavior)', function test( t ) {
+ var z1;
+ var z2;
+ var v;
+
+ z1 = new Complex64( 2.0, 4.0 );
+ z2 = new Complex64( 1.0, 2.0 );
+
+ v = div( z1, z2 );
+
+ t.strictEqual( realf( v ), 2.0, 'returns expected value' );
+ t.strictEqual( imagf( v ), 0.0, 'returns expected value' );
+
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (difficult cases)', function test( t ) {
+ var idx;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var z1;
+ var z2;
+ var q;
+
+ // Test case #1:
+ z1 = new Complex64( 1.0, 1.0 );
+ z2 = new Complex64( 1.0, pow( 2.0, 103.0 ) );
+
+ q = div( z1, z2 );
+
+ idx = bitdiff( realf( q ), pow( 2.0, -103.0 ) );
+ t.strictEqual( idx, -1, 'real component has expected binary representation' );
+
+ idx = bitdiff( imagf( q ), -pow( 2.0, -103.0 ) );
+ t.strictEqual( idx, -1, 'imaginary component has expected binary representation' );
+
+ // Test case #2:
+ z1 = new Complex64( 1.0, 1.0 );
+ z2 = new Complex64( pow( 2.0, -103.0 ), pow( 2.0, -103.0 ) );
+
+ q = div( z1, z2 );
+
+ idx = bitdiff( realf( q ), pow( 2.0, 103.0 ) );
+ t.strictEqual( idx, -1, 'real component has expected binary representation' );
+
+ idx = bitdiff( imagf( q ), 0.0 );
+ t.strictEqual( idx, -1, 'imaginary component has expected binary representation' );
+
+ // Test case #3:
+ re1 = pow( 2.0, 103.0 );
+ im1 = pow( 2.0, -103.0 );
+ re2 = pow( 2.0, 67.0 );
+ im2 = pow( 2.0, -67.0 );
+
+ z1 = new Complex64( re1, im1 );
+ z2 = new Complex64( re2, im2 );
+
+ q = div( z1, z2 );
+
+ idx = bitdiff( realf( q ), pow( 2.0, 36.0 ) );
+ t.strictEqual( idx, -1, 'real component has expected binary representation' );
+
+ idx = bitdiff( imagf( q ), -pow( 2.0, -108.0 ) );
+ t.strictEqual( idx, -1, 'imaginary component has expected binary representation' );
+
+ // Test case #4:
+ z1 = new Complex64( pow( 2.0, 103.0 ), pow( 2.0, 103.0 ) );
+ z2 = new Complex64( 1.0, 1.0 );
+
+ q = div( z1, z2 );
+
+ idx = bitdiff( realf( q ), pow( 2.0, 103.0 ) );
+ t.strictEqual( idx, -1, 'real component has expected binary representation' );
+
+ idx = bitdiff( imagf( q ), 0.0 );
+ t.strictEqual( idx, -1, 'imaginary component has expected binary representation' );
+
+ // Test case #5:
+ re1 = pow( 2.0, 102.0 );
+ im1 = pow( 2.0, -84.0 );
+ re2 = pow( 2.0, 66.0 );
+ im2 = pow( 2.0, -78.0 );
+
+ z1 = new Complex64( re1, im1 );
+ z2 = new Complex64( re2, im2 );
+
+ q = div( z1, z2 );
+
+ idx = bitdiff( realf( q ), pow( 2.0, 36.0 ) );
+ t.strictEqual( idx, -1, 'real component has expected binary representation' );
+
+ idx = bitdiff( imagf( q ), -pow( 2.0, -107.0 ) );
+ t.strictEqual( idx, -1, 'imaginary component has expected binary representation' );
+
+ // Test case #6:
+ re1 = pow( 2.0, -7.0 );
+ im1 = pow( 2.0, 101.0 );
+ re2 = pow( 2.0, 100.0 );
+ im2 = pow( 2.0, -33.0 );
+
+ z1 = new Complex64( re1, im1 );
+ z2 = new Complex64( re2, im2 );
+
+ q = div( z1, z2 );
+
+ idx = bitdiff( realf( q ), pow( 2.0, -102.0 ) );
+ t.strictEqual( idx, -1, 'real component has expected binary representation' );
+
+ idx = bitdiff( imagf( q ), pow( 2.0, 2.0 ) );
+ t.strictEqual( idx, -1, 'imaginary component has expected binary representation' );
+
+ // Test case #7:
+ re1 = pow( 2.0, -37.0 );
+ im1 = pow( 2.0, -5.0 );
+ re2 = pow( 2.0, -103.0 );
+ im2 = pow( 2.0, -108.0 );
+
+ z1 = new Complex64( re1, im1 );
+ z2 = new Complex64( re2, im2 );
+
+ q = div( z1, z2 );
+
+ idx = bitdiff( realf( q ), 3.898125604559113300e29 );
+ t.strictEqual( idx, -1, 'real component has expected binary representation' );
+
+ idx = bitdiff( imagf( q ), 8.174961907852353577e29 );
+ t.strictEqual( idx, -1, 'imaginary component has expected binary representation' );
+
+ // Test case #8:
+ re1 = pow( 2.0, -107.0 );
+ im1 = pow( 2.0, -107.0 );
+ re2 = pow( 2.0, -107.0 );
+ im2 = pow( 2.0, -107.0 );
+
+ z1 = new Complex64( re1, im1 );
+ z2 = new Complex64( re2, im2 );
+
+ q = div( z1, z2 );
+
+ /*
+ * See section 3.6 in https://arxiv.org/pdf/1210.4539.pdf.
+ *
+ * ```text
+ * q[0]: 0011111111100011001100110011001100110011001100110011001100110100
+ * 0.6: 0011111111100011001100110011001100110011001100110011001100110011
+ * ```
+ *
+ * If we add
+ *
+ * ```text
+ * 0000000000000000000000000000000000000000000000000000000000000001
+ * ```
+ *
+ * to `0.6`, we get `q[0]`; thus, the result is 1 bit off.
+ */
+ idx = bitdiff( realf( q ), 0.6 );
+ t.strictEqual( idx, 61, 'real component has expected binary representation' );
+
+ idx = bitdiff( imagf( q ), 0.2 );
+ t.strictEqual( idx, -1, 'imaginary component has expected binary representation' );
+
+ // Test case #9:
+ re1 = pow( 2.0, 115.0 );
+ im1 = pow( 2.0, -99.0 );
+ re2 = pow( 2.0, 123.0 );
+ im2 = pow( 2.0, 123.0 );
+
+ z1 = new Complex64( re1, im1 );
+ z2 = new Complex64( re2, im2 );
+
+ q = div( z1, z2 );
+
+ idx = bitdiff( realf( q ), 0.001953125 );
+ t.strictEqual( idx, -1, 'real component has expected binary representation' );
+
+ idx = bitdiff( imagf( q ), -0.001953125 );
+ t.strictEqual( idx, -1, 'imaginary component has expected binary representation' );
+
+ // Test case #10:
+ re1 = pow( 2.0, -62.0 );
+ im1 = pow( 2.0, -107.0 );
+ re2 = pow( 2.0, -34.0 );
+ im2 = pow( 2.0, -79.0 );
+
+ z1 = new Complex64( re1, im1 );
+ z2 = new Complex64( re2, im2 );
+
+ q = div( z1, z2 );
+
+ idx = bitdiff( realf( q ), 1.02951151789360578e-8 );
+ t.strictEqual( idx, -1, 'real component has expected binary representation' );
+
+ idx = bitdiff( imagf( q ), 6.97145987515076231e-22 );
+ t.strictEqual( idx, -1, 'imaginary component has expected binary representation' );
+
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (tested against fixtures)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = data.re1;
+ im1 = data.im1;
+ re2 = data.re2;
+ im2 = data.im2;
+ qre = data.qre;
+ qim = data.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = div( z1, z2 );
+
+ if ( realf( q ) === qre[ i ] ) {
+ t.strictEqual( realf( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = absf( realf( q ) - qre[ i ] );
+ tol = 3 * EPS * absf( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[0]+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imagf( q ) === qim[ i ] ) {
+ t.strictEqual( imagf( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = absf( imagf( q ) - qim[ i ] );
+ tol = 300 * EPS * absf( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[1]+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (different component scales)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = componentScales1.re1;
+ im1 = componentScales1.im1;
+ re2 = componentScales1.re2;
+ im2 = componentScales1.im2;
+ qre = componentScales1.qre;
+ qim = componentScales1.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = div( z1, z2 );
+
+ if ( realf( q ) === qre[ i ] ) {
+ t.strictEqual( realf( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = absf( realf( q ) - qre[ i ] );
+ tol = 2 * EPS * absf( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[0]+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imagf( q ) === qim[ i ] ) {
+ t.strictEqual( imagf( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = absf( imagf( q ) - qim[ i ] );
+ tol = 250 * EPS * absf( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[1]+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (different component scales)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = componentScales2.re1;
+ im1 = componentScales2.im1;
+ re2 = componentScales2.re2;
+ im2 = componentScales2.im2;
+ qre = componentScales2.qre;
+ qim = componentScales2.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = div( z1, z2 );
+
+ if ( realf( q ) === qre[ i ] ) {
+ t.strictEqual( realf( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = absf( realf( q ) - qre[ i ] );
+ tol = 2 * EPS * absf( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[0]+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imagf( q ) === qim[ i ] ) {
+ t.strictEqual( imagf( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = absf( imagf( q ) - qim[ i ] );
+ tol = 20 * EPS * absf( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[1]+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (different imaginary component scales)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = imaginaryComponentScales.re1;
+ im1 = imaginaryComponentScales.im1;
+ re2 = imaginaryComponentScales.re2;
+ im2 = imaginaryComponentScales.im2;
+ qre = imaginaryComponentScales.qre;
+ qim = imaginaryComponentScales.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = div( z1, z2 );
+
+ if ( realf( q ) === qre[ i ] ) {
+ t.strictEqual( realf( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = absf( realf( q ) - qre[ i ] );
+ tol = 2 * EPS * absf( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[0]+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imagf( q ) === qim[ i ] ) {
+ t.strictEqual( imagf( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = absf( imagf( q ) - qim[ i ] );
+ tol = 2 * EPS * absf( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[1]+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (real imaginary component scales)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = realComponentScales.re1;
+ im1 = realComponentScales.im1;
+ re2 = realComponentScales.re2;
+ im2 = realComponentScales.im2;
+ qre = realComponentScales.qre;
+ qim = realComponentScales.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = div( z1, z2 );
+
+ if ( realf( q ) === qre[ i ] ) {
+ t.strictEqual( realf( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = absf( realf( q ) - qre[ i ] );
+ tol = 2 * EPS * absf( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[0]+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imagf( q ) === qim[ i ] ) {
+ t.strictEqual( imagf( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = absf( imagf( q ) - qim[ i ] );
+ tol = 2 * EPS * absf( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[1]+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (large negative imaginary components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = largeNegativeImaginaryComponents.re1;
+ im1 = largeNegativeImaginaryComponents.im1;
+ re2 = largeNegativeImaginaryComponents.re2;
+ im2 = largeNegativeImaginaryComponents.im2;
+ qre = largeNegativeImaginaryComponents.qre;
+ qim = largeNegativeImaginaryComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = div( z1, z2 );
+
+ if ( realf( q ) === qre[ i ] ) {
+ t.strictEqual( realf( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = absf( realf( q ) - qre[ i ] );
+ tol = 2 * EPS * absf( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[0]+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imagf( q ) === qim[ i ] ) {
+ t.strictEqual( imagf( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = absf( imagf( q ) - qim[ i ] );
+ tol = 75 * EPS * absf( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[1]+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (large negative real components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = largeNegativeRealComponents.re1;
+ im1 = largeNegativeRealComponents.im1;
+ re2 = largeNegativeRealComponents.re2;
+ im2 = largeNegativeRealComponents.im2;
+ qre = largeNegativeRealComponents.qre;
+ qim = largeNegativeRealComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = div( z1, z2 );
+
+ if ( realf( q ) === qre[ i ] ) {
+ t.strictEqual( realf( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = absf( realf( q ) - qre[ i ] );
+ tol = 2 * EPS * absf( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[0]+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imagf( q ) === qim[ i ] ) {
+ t.strictEqual( imagf( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = absf( imagf( q ) - qim[ i ] );
+ tol = 300 * EPS * absf( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[1]+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (large positive imaginary components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = largePositiveImaginaryComponents.re1;
+ im1 = largePositiveImaginaryComponents.im1;
+ re2 = largePositiveImaginaryComponents.re2;
+ im2 = largePositiveImaginaryComponents.im2;
+ qre = largePositiveImaginaryComponents.qre;
+ qim = largePositiveImaginaryComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = div( z1, z2 );
+
+ if ( realf( q ) === qre[ i ] ) {
+ t.strictEqual( realf( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = absf( realf( q ) - qre[ i ] );
+ tol = 2 * EPS * absf( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[0]+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imagf( q ) === qim[ i ] ) {
+ t.strictEqual( imagf( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta =
+ absf( imagf( q ) - qim[ i ] );
+ tol = 300 * EPS * absf( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[1]+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (large positive real components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = largePositiveRealComponents.re1;
+ im1 = largePositiveRealComponents.im1;
+ re2 = largePositiveRealComponents.re2;
+ im2 = largePositiveRealComponents.im2;
+ qre = largePositiveRealComponents.qre;
+ qim = largePositiveRealComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = div( z1, z2 );
+
+ if ( realf( q ) === qre[ i ] ) {
+ t.strictEqual( realf( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = absf( realf( q ) - qre[ i ] );
+ tol = 2 * EPS * absf( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[0]+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imagf( q ) === qim[ i ] ) {
+ t.strictEqual( imagf( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = absf( imagf( q ) - qim[ i ] );
+ tol = 325 * EPS * absf( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[1]+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (tiny negative imaginary components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = tinyNegativeImaginaryComponents.re1;
+ im1 = tinyNegativeImaginaryComponents.im1;
+ re2 = tinyNegativeImaginaryComponents.re2;
+ im2 = tinyNegativeImaginaryComponents.im2;
+ qre = tinyNegativeImaginaryComponents.qre;
+ qim = tinyNegativeImaginaryComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = div( z1, z2 );
+
+ if ( realf( q ) === qre[ i ] ) {
+ t.strictEqual( realf( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = absf( realf( q ) - qre[ i ] );
+ tol = 2 * EPS * absf( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[0]+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imagf( q ) === qim[ i ] ) {
+ t.strictEqual( imagf( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = absf( imagf( q ) - qim[ i ] );
+ tol = 450 * EPS * absf( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[1]+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (tiny negative real components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = tinyNegativeRealComponents.re1;
+ im1 = tinyNegativeRealComponents.im1;
+ re2 = tinyNegativeRealComponents.re2;
+ im2 = tinyNegativeRealComponents.im2;
+ qre = tinyNegativeRealComponents.qre;
+ qim = tinyNegativeRealComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = div( z1, z2 );
+
+ if ( realf( q ) === qre[ i ] ) {
+ t.strictEqual( realf( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = absf( realf( q ) - qre[ i ] );
+ tol = 2 * EPS * absf( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[0]+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imagf( q ) === qim[ i ] ) {
+ t.strictEqual( imagf( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = absf( imagf( q ) - qim[ i ] );
+ tol = 100 * EPS * absf( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[1]+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (tiny positive imaginary components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = tinyPositiveImaginaryComponents.re1;
+ im1 = tinyPositiveImaginaryComponents.im1;
+ re2 = tinyPositiveImaginaryComponents.re2;
+ im2 = tinyPositiveImaginaryComponents.im2;
+ qre = tinyPositiveImaginaryComponents.qre;
+ qim = tinyPositiveImaginaryComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = div( z1, z2 );
+
+ if ( realf( q ) === qre[ i ] ) {
+ t.strictEqual( realf( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = absf( realf( q ) - qre[ i ] );
+ tol = 2 * EPS * absf( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[0]+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imagf( q ) === qim[ i ] ) {
+ t.strictEqual( imagf( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = absf( imagf( q ) - qim[ i ] );
+ tol = 250 * EPS * absf( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[1]+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes a complex quotient (tiny positive real components)', function test( t ) {
+ var delta;
+ var tol;
+ var re1;
+ var im1;
+ var re2;
+ var im2;
+ var qre;
+ var qim;
+ var z1;
+ var z2;
+ var i;
+ var q;
+
+ re1 = tinyPositiveRealComponents.re1;
+ im1 = tinyPositiveRealComponents.im1;
+ re2 = tinyPositiveRealComponents.re2;
+ im2 = tinyPositiveRealComponents.im2;
+ qre = tinyPositiveRealComponents.qre;
+ qim = tinyPositiveRealComponents.qim;
+
+ for ( i = 0; i < re1.length; i++ ) {
+ z1 = new Complex64( re1[ i ], im1[ i ] );
+ z2 = new Complex64( re2[ i ], im2[ i ] );
+ q = div( z1, z2 );
+
+ if ( realf( q ) === qre[ i ] ) {
+ t.strictEqual( realf( q ), qre[ i ], 'returns expected real component' );
+ } else {
+ delta = absf( realf( q ) - qre[ i ] );
+ tol = 2 * EPS * absf( qre[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. real: '+q[0]+'. expected: '+qre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ if ( imagf( q ) === qim[ i ] ) {
+ t.strictEqual( imagf( q ), qim[ i ], 'returns expected imaginary component' );
+ } else {
+ delta = absf( imagf( q ) - qim[ i ] );
+ tol = 575 * EPS * absf( qim[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+re1[i]+' + '+im1[i]+'i. y: '+re2[i]+' + '+im2[i]+'i. imag: '+q[1]+'. expected: '+qim[i]+'. delta: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function handles large and small numbers', function test( t ) {
+ var expected;
+ var z1;
+ var z2;
+ var v;
+
+ z1 = new Complex64( 1.0e38, 5.0e37 );
+ z2 = new Complex64( 1.0, 0.5 );
+ v = div( z1, z2 );
+ expected = [ 1.0e38, 0.0 ];
+
+ t.strictEqual( realf( v ), expected[ 0 ], 'returns expected values' );
+ t.strictEqual( imagf( v ), expected[ 1 ], 'returns expected values' );
+
+ z1 = new Complex64( 1.0, 0.5 );
+ z2 = new Complex64( 1.0e38, 5.0e37 );
+ v = div( z1, z2 );
+ expected = [ 1.0e-38, 0.0 ];
+
+ t.strictEqual( realf( v ), expected[ 0 ], 'returns expected values' );
+ t.strictEqual( imagf( v ), expected[ 1 ], 'returns expected values' );
+
+ z1 = new Complex64( 1.0e-34, 2.0e-34 );
+ z2 = new Complex64( 1.0, 2.0 );
+ v = div( z1, z2 );
+ expected = [ 1.0e-34, 0.0 ];
+
+ t.strictEqual( realf( v ), expected[ 0 ], 'returns expected values' );
+ t.strictEqual( imagf( v ), expected[ 1 ], 'returns expected values' );
+
+ z1 = new Complex64( 1.0, 2.0 );
+ z2 = new Complex64( 1.0e-34, 2.0e-34 );
+ v = div( z1, z2 );
+ expected = [ 1.0e+34, 0.0 ];
+
+ t.strictEqual( realf( v ), expected[ 0 ], 'returns expected values' );
+ t.strictEqual( imagf( v ), expected[ 1 ], 'returns expected values' );
+
+ z1 = new Complex64( 2.0, 4.0 );
+ z2 = new Complex64( 0.0, 2.0 );
+ v = div( z1, z2 );
+ expected = [ 2.0, -1.0 ];
+
+ t.strictEqual( realf( v ), expected[ 0 ], 'returns expected values' );
+ t.strictEqual( imagf( v ), expected[ 1 ], 'returns expected values' );
+
+ z1 = new Complex64( 1.0e-18, 1.0e-18 );
+ z2 = new Complex64( 1.0, 1.0e-18 );
+ v = div( z1, z2 );
+ expected = [ 1.0e-18, 1.0e-18 ];
+
+ t.strictEqual( realf( v ), expected[ 0 ], 'returns expected values' );
+ t.strictEqual( imagf( v ), expected[ 1 ], 'returns expected values' );
+
+ t.end();
+});
+
+tape( 'the function may overflow during complex division', function test( t ) {
+ var z1;
+ var z2;
+ var v;
+
+ z1 = new Complex64( 1.0e8, 1.0e8 );
+ z2 = new Complex64( 5.0e-40, 5.0e-40 );
+ v = div( z1, z2 );
+ t.strictEqual( realf( v ), PINF, 'real component is +infinity' );
+ t.strictEqual( imagf( v ), 0.0, 'imaginary component is 0' );
+
+ z1 = new Complex64( 1.0e8, 1.0e8 );
+ z2 = new Complex64( -5.0e-40, 5.0e-40 );
+ v = div( z1, z2 );
+ t.strictEqual( realf( v ), 0.0, 'real component is 0' );
+ t.strictEqual( imagf( v ), NINF, 'imaginary component is -infinity' );
+
+ z1 = new Complex64( 1.0e8, -1.0e8 );
+ z2 = new Complex64( 5.0e-40, 5.0e-40 );
+ v = div( z1, z2 );
+ t.strictEqual( realf( v ), 0.0, 'real component is 0' );
+ t.strictEqual( imagf( v ), NINF, 'imaginary component is -infinity' );
+
+ z1 = new Complex64( -1.0e8, 1.0e8 );
+ z2 = new Complex64( 5.0e-40, 5.0e-40 );
+ v = div( z1, z2 );
+ t.strictEqual( realf( v ), 0.0, 'real component is 0' );
+ t.strictEqual( imagf( v ), PINF, 'imaginary component is +infinity' );
+
+ z1 = new Complex64( 1.0e8, 1.0e8 );
+ z2 = new Complex64( 5.0e-40, -5.0e-40 );
+ v = div( z1, z2 );
+ t.strictEqual( realf( v ), 0.0, 'real component is 0' );
+ t.strictEqual( imagf( v ), PINF, 'imaginary component is +infinity' );
+
+ z1 = new Complex64( -1.0e8, 1.0e8 );
+ z2 = new Complex64( -5.0e-40, 5.0e-40 );
+ v = div( z1, z2 );
+ t.strictEqual( realf( v ), PINF, 'real component is +infinity' );
+ t.strictEqual( imagf( v ), 0.0, 'imaginary component is 0' );
+
+ z1 = new Complex64( 1.0e8, -1.0e8 );
+ z2 = new Complex64( 5.0e-40, -5.0e-40 );
+ v = div( z1, z2 );
+ t.strictEqual( realf( v ), PINF, 'real component is +infinity' );
+ t.strictEqual( imagf( v ), 0.0, 'imaginary component is 0' );
+
+ z1 = new Complex64( 1.0e8, -1.0e8 );
+ z2 = new Complex64( -5.0e-40, 5.0e-40 );
+ v = div( z1, z2 );
+ t.strictEqual( realf( v ), NINF, 'real component is -infinity' );
+ t.strictEqual( imagf( v ), 0.0, 'imaginary component is 0' );
+
+ z1 = new Complex64( -1.0e8, 1.0e8 );
+ z2 = new Complex64( 5.0e-40, -5.0e-40 );
+ v = div( z1, z2 );
+ t.strictEqual( realf( v ), NINF, 'real component is -infinity' );
+ t.strictEqual( imagf( v ), 0.0, 'imaginary component is 0' );
+
+ z1 = new Complex64( -1.0e8, -1.0e8 );
+ z2 = new Complex64( -5.0e-40, 5.0e-40 );
+ v = div( z1, z2 );
+ t.strictEqual( realf( v ), 0.0, 'real component is 0' );
+ t.strictEqual( imagf( v ), PINF, 'imaginary component is +infinity' );
+
+ z1 = new Complex64( 1.0e8, -1.0e8 );
+ z2 = new Complex64( -5.0e-40, -5.0e-40 );
+ v = div( z1, z2 );
+ t.strictEqual( realf( v ), 0.0, 'real component is 0' );
+ t.strictEqual( imagf( v ), PINF, 'imaginary component is +infinity' );
+
+ z1 = new Complex64( -1.0e8, 1.0e8 );
+ z2 = new Complex64( -5.0e-40, -5.0e-40 );
+ v = div( z1, z2 );
+ t.strictEqual( realf( v ), 0.0, 'real component is 0' );
+ t.strictEqual( imagf( v ), NINF, 'imaginary component is -infinity' );
+
+ z1 = new Complex64( -1.0e8, -1.0e8 );
+ z2 = new Complex64( 5.0e-40, -5.0e-40 );
+ v = div( z1, z2 );
+ t.strictEqual( realf( v ), 0.0, 'real component is 0' );
+ t.strictEqual( imagf( v ), NINF, 'imaginary component is -infinity' );
+
+ t.end();
+});
+
+tape( 'if a real or imaginary component is `NaN`, all components are `NaN`', function test( t ) {
+ var z1;
+ var z2;
+ var v;
+
+ z1 = new Complex64( NaN, 3.0 );
+ z2 = new Complex64( -2.0, 1.0 );
+ v = div( z1, z2 );
+ t.strictEqual( isnanf( realf( v ) ), true, 'returns NaN' );
+ t.strictEqual( isnanf( imagf( v ) ), true, 'returns NaN' );
+
+ z1 = new Complex64( 5.0, NaN );
+ z2 = new Complex64( -2.0, 1.0 );
+ v = div( z1, z2 );
+ t.strictEqual( isnanf( realf( v ) ), true, 'returns NaN' );
+ t.strictEqual( isnanf( imagf( v ) ), true, 'returns NaN' );
+
+ z1 = new Complex64( 5.0, 3.0 );
+ z2 = new Complex64( NaN, 1.0 );
+ v = div( z1, z2 );
+ t.strictEqual( isnanf( realf( v ) ), true, 'returns NaN' );
+ t.strictEqual( isnanf( imagf( v ) ), true, 'returns NaN' );
+
+ z1 = new Complex64( 5.0, 3.0 );
+ z2 = new Complex64( -2.0, NaN );
+ v = div( z1, z2 );
+ t.strictEqual( isnanf( realf( v ) ), true, 'returns NaN' );
+ t.strictEqual( isnanf( imagf( v ) ), true, 'returns NaN' );
+
+ z1 = new Complex64( 5.0, 3.0 );
+ z2 = new Complex64( NaN, NaN );
+ v = div( z1, z2 );
+ t.strictEqual( isnanf( realf( v ) ), true, 'returns NaN' );
+ t.strictEqual( isnanf( imagf( v ) ), true, 'returns NaN' );
+
+ z1 = new Complex64( NaN, NaN );
+ z2 = new Complex64( -2.0, 1.0 );
+ v = div( z1, z2 );
+ t.strictEqual( isnanf( realf( v ) ), true, 'returns NaN' );
+ t.strictEqual( isnanf( imagf( v ) ), true, 'returns NaN' );
+
+ z1 = new Complex64( NaN, NaN );
+ z2 = new Complex64( NaN, NaN );
+ v = div( z1, z2 );
+ t.strictEqual( isnanf( realf( v ) ), true, 'returns NaN' );
+ t.strictEqual( isnanf( imagf( v ) ), true, 'returns NaN' );
+
+ t.end();
+});