diff --git a/lib/node_modules/@stdlib/math/base/special/acosd/README.md b/lib/node_modules/@stdlib/math/base/special/acosd/README.md
new file mode 100644
index 000000000000..5b5c058d7e85
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/acosd/README.md
@@ -0,0 +1,108 @@
+
+
+# acosd
+
+> Compute the [arccosine][arccosine] in degrees of a double-precision floating-point number.
+
+
+
+## Usage
+
+```javascript
+var acosd = require( '@stdlib/math/base/special/acosd' );
+```
+
+#### acosd( x )
+
+Computes the [arccosine][arccosine] (in degrees) of a double-precision floating-point number.
+
+```javascript
+var sqrt = require( '@stdlib/math/base/special/sqrt' );
+var v = acosd( 0.0 );
+// returns 90.0
+
+v = acosd( 0.5 );
+// returns ~60.0
+
+v = acosd( sqrt( 2 ) / 2 );
+// returns ~45.0
+
+v = acosd( sqrt( 3 ) / 2 );
+// returns ~30.0
+
+v = acosd( NaN );
+// returns NaN
+```
+
+The domain of `x` is restricted to `[-1,1]`. If `|x| > 1`, the function returns `NaN`.
+
+```javascript
+var v = acosd( -3.14 );
+// returns NaN
+```
+
+
+
+
+
+
+
+## Examples
+
+
+
+```javascript
+var linspace = require( '@stdlib/array/base/linspace' );
+var acosd = require( '@stdlib/math/base/special/acosd' );
+
+var x = linspace( -1.0, 1.0, 100 );
+
+var i;
+for ( i = 0; i < x.length; i++ ) {
+ console.log( acosd( x[ i ] ) );
+}
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+[arccosine]: https://en.wikipedia.org/wiki/Inverse_trigonometric_functions
+
+
+
+
+
+
+
+
diff --git a/lib/node_modules/@stdlib/math/base/special/acosd/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/acosd/benchmark/benchmark.js
new file mode 100644
index 000000000000..049df9f305ea
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/acosd/benchmark/benchmark.js
@@ -0,0 +1,51 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2024 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var bench = require( '@stdlib/bench' );
+var randu = require( '@stdlib/random/base/randu' );
+var isnan = require( '@stdlib/math/base/assert/is-nan' );
+var pkg = require( './../package.json' ).name;
+var acosd = require( './../lib' );
+
+
+// MAIN //
+
+bench( pkg, function benchmark( b ) {
+ var x;
+ var y;
+ var i;
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ x = ( randu()*2.0 ) - 1.0;
+ y = acosd( x );
+ if ( isnan( y ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ }
+ b.toc();
+ if ( isnan( y ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ b.pass( 'benchmark finished' );
+ b.end();
+});
diff --git a/lib/node_modules/@stdlib/math/base/special/acosd/docs/repl.txt b/lib/node_modules/@stdlib/math/base/special/acosd/docs/repl.txt
new file mode 100644
index 000000000000..211164b85017
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/acosd/docs/repl.txt
@@ -0,0 +1,29 @@
+
+{{alias}}( x )
+ Computes the arccosine (in degrees) of a double-precision floating-point
+ number.
+
+ If `|x| > 1`, the function returns `NaN`.
+
+ Parameters
+ ----------
+ x: number
+ Input value.
+
+ Returns
+ -------
+ y: number
+ Arccosine (in degrees).
+
+ Examples
+ --------
+ > var y = {{alias}}( 0.0 )
+ 90.0
+ > y = {{alias}}( {{alias:@stdlib/constants/float64/pi}}/6.0 )
+ ~58.43
+ > y = {{alias}}( NaN )
+ NaN
+
+ See Also
+ --------
+
diff --git a/lib/node_modules/@stdlib/math/base/special/acosd/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/acosd/docs/types/index.d.ts
new file mode 100644
index 000000000000..c6512c8eac18
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/acosd/docs/types/index.d.ts
@@ -0,0 +1,52 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2024 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+// TypeScript Version: 4.1
+
+/**
+* Computes the arccosine (in degrees) of a double-precision floating-point number.
+*
+* @param x - input value
+* @returns arccosine (in degrees)
+*
+* @example
+* var v = acosd( 0.0 );
+* // returns 0.0
+*
+* @example
+* var v = acosd( 0.5 );
+* // returns ~60.0
+*
+* @example
+* var v = acosd( Math.sqrt( 2 ) / 2 );
+* // returns ~45.0
+*
+* @example
+* var v = acosd( Math.sqrt( 3 ) / 2 );
+* // returns ~30.0
+*
+* @example
+* var v = acosd( NaN );
+* // returns NaN
+*/
+declare function acosd( x: number ): number;
+
+
+// EXPORTS //
+
+export = acosd;
diff --git a/lib/node_modules/@stdlib/math/base/special/acosd/docs/types/test.ts b/lib/node_modules/@stdlib/math/base/special/acosd/docs/types/test.ts
new file mode 100644
index 000000000000..1ce79356d54c
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/acosd/docs/types/test.ts
@@ -0,0 +1,44 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2024 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+import acosd = require( './index' );
+
+
+// TESTS //
+
+// The function returns a number...
+{
+ acosd( 0.5 ); // $ExpectType number
+}
+
+// The compiler throws an error if the function is provided a value other than a number...
+{
+ acosd( true ); // $ExpectError
+ acosd( false ); // $ExpectError
+ acosd( null ); // $ExpectError
+ acosd( undefined ); // $ExpectError
+ acosd( '5' ); // $ExpectError
+ acosd( [] ); // $ExpectError
+ acosd( {} ); // $ExpectError
+ acosd( ( x: number ): number => x ); // $ExpectError
+}
+
+// The compiler throws an error if the function is provided insufficient arguments...
+{
+ acosd(); // $ExpectError
+}
diff --git a/lib/node_modules/@stdlib/math/base/special/acosd/examples/index.js b/lib/node_modules/@stdlib/math/base/special/acosd/examples/index.js
new file mode 100644
index 000000000000..383a9c550041
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/acosd/examples/index.js
@@ -0,0 +1,29 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2024 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+var linspace = require( '@stdlib/array/base/linspace' );
+var acosd = require( './../lib' );
+
+var x = linspace( -1.0, 1.0, 100 );
+
+var i;
+for ( i = 0; i < x.length; i++ ) {
+ console.log( 'acosd(%d) = %d', x[ i ], acosd( x[ i ] ) );
+}
diff --git a/lib/node_modules/@stdlib/math/base/special/acosd/lib/index.js b/lib/node_modules/@stdlib/math/base/special/acosd/lib/index.js
new file mode 100644
index 000000000000..e742eec5bc67
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/acosd/lib/index.js
@@ -0,0 +1,52 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2024 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+/**
+* Compute the arccosine (in degrees) of a double-precision floating-point number.
+*
+* @module @stdlib/math/base/special/acosd
+*
+* @example
+* var acosd = require( '@stdlib/math/base/special/acosd' );
+*
+* var v = acosd( 0.0 );
+* // returns 90.0
+*
+* var v = acosd( 0.5 );
+* // returns ~60.0
+*
+* var v = acosd( Math.sqrt( 2 ) / 2 );
+* // returns ~45.0
+*
+* var v = acosd( Math.sqrt( 3 ) / 2 );
+* // returns ~30.0
+*
+* var v = acosd( NaN );
+* // returns NaN
+*/
+
+// MODULES //
+
+var main = require( './main.js' );
+
+
+// EXPORTS //
+
+module.exports = main;
diff --git a/lib/node_modules/@stdlib/math/base/special/acosd/lib/main.js b/lib/node_modules/@stdlib/math/base/special/acosd/lib/main.js
new file mode 100644
index 000000000000..8e3bb72c7ac2
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/acosd/lib/main.js
@@ -0,0 +1,63 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2024 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var rad2deg = require('@stdlib/math/base/special/rad2deg');
+var acos = require('@stdlib/math/base/special/acos');
+
+
+// MAIN //
+
+/**
+* Computes the arccosine (in degrees) of a double-precision floating-point number.
+*
+* @param {number} x - input value
+* @returns {number} arccosine (in degrees)
+*
+* @example
+* var v = acosd( 0.0 );
+* // returns 90.0
+*
+* @example
+* var v = acosd( 0.5 );
+* // returns ~60.0
+*
+* @example
+* var v = acosd( Math.sqrt( 2 ) / 2 );
+* // returns ~45.0
+*
+* @example
+* var v = acosd( Math.sqrt( 3 ) / 2 );
+* // returns ~30.0
+*
+* @example
+* var v = acosd( NaN );
+* // returns NaN
+*/
+function acosd( x ) {
+ var rad = acos( x );
+ return rad2deg( rad );
+}
+
+
+// EXPORTS //
+
+module.exports = acosd;
diff --git a/lib/node_modules/@stdlib/math/base/special/acosd/package.json b/lib/node_modules/@stdlib/math/base/special/acosd/package.json
new file mode 100644
index 000000000000..d4a8b326096d
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/acosd/package.json
@@ -0,0 +1,64 @@
+{
+ "name": "@stdlib/math/base/special/acosd",
+ "version": "0.0.0",
+ "description": "Compute the arccosine (in degrees) of a double-precision floating-point number.",
+ "license": "Apache-2.0",
+ "author": {
+ "name": "The Stdlib Authors",
+ "url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
+ },
+ "contributors": [
+ {
+ "name": "The Stdlib Authors",
+ "url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
+ }
+ ],
+ "main": "./lib",
+ "directories": {
+ "benchmark": "./benchmark",
+ "doc": "./docs",
+ "example": "./examples",
+ "lib": "./lib",
+ "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",
+ "degree",
+ "arccosine",
+ "cosine",
+ "inverse",
+ "trig",
+ "trigonometry",
+ "radians"
+ ]
+}
diff --git a/lib/node_modules/@stdlib/math/base/special/acosd/test/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/acosd/test/fixtures/julia/REQUIRE
new file mode 100644
index 000000000000..ae40bf736408
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/acosd/test/fixtures/julia/REQUIRE
@@ -0,0 +1,2 @@
+julia 1.5
+JSON 0.21
\ No newline at end of file
diff --git a/lib/node_modules/@stdlib/math/base/special/acosd/test/fixtures/julia/negative.json b/lib/node_modules/@stdlib/math/base/special/acosd/test/fixtures/julia/negative.json
new file mode 100644
index 000000000000..23cc1ab8ccbc
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/acosd/test/fixtures/julia/negative.json
@@ -0,0 +1 @@
+{"expected":[180.0,178.18897822198568,177.43872179938884,176.86295702294953,176.377503905344,175.94975751498464,175.5629967823349,175.20728904760477,174.87616290603896,174.5651234927047,174.2708982602069,173.99101680223387,173.72355993833804,173.46700150814993,173.22010415775898,172.98184817212524,172.75138138283216,172.5279829907731,172.3110368522993,172.10001136840114,171.8944440853778,171.69392972431135,171.49811074999653,171.30666985038263,171.1193238737793,170.93581889266386,170.75592614832576,170.57943869153797,170.40616857859186,170.23594451444342,170.06860985880513,169.90402092912385,169.74204554814162,169.58256179428977,169.4254569213342,169.27062642007144,169.11797319989387,168.96740687202274,168.8188431193882,168.6722031406872,168.52741315821976,168.38440398078154,168.2431106142689,168.10347191378042,167.96543027193593,167.8289313389085,167.69392377031267,167.56035899963527,167.4281910323496,167.297376259241,167.16787328679712,167.03964278279386,166.912647335446,166.78685132469386,166.66222080437223,166.5387233941569,166.41632818031658,166.2950056244076,166.17472747914846,166.05546671079642,165.93719742742164,165.81989481254095,165.70353506362937,165.58809533507832,165.47355368521414,165.3598890270284,165.24708108230791,165.13511033888153,165.0239580107289,164.9136060007204,164.80403686577947,164.69523378427735,164.58718052548775,164.47986142094504,164.37326133756258,164.26736565238073,164.162160228826,164.05763139437138,163.95376591949866,163.85055099787147,163.74797422763393,163.64602359375894,163.54468745137427,163.44395451000125,163.3438138186459,163.24425475168673,163.14526699550726,163.04684053582727,162.9489656456867,162.85163287404313,162.7548330349442,162.65855719724024,162.5627966748043,162.4675430172296,162.372788000976,162.2785236209393,162.18474208241932,162.09143579346326,161.99859735756363,161.90621956669105,161.81429539464276,161.7228179906898,161.63178067350708,161.54117692537008,161.45100038660527,161.3612448502796,161.27190425711757,161.1829726906334,161.09444437246768,161.00631365791796,160.91857503165343,160.83122310360469,160.74425260501985,160.6576583846787,160.5714354052576,160.4855787398373,160.40008356854747,160.31494517534108,160.2301589448926,160.14572035961427,160.06162499678524,159.97786852578787,159.89444670544677,159.81135538146617,159.72859048396032,159.64614802507373,159.5640240966871,159.48221486820452,159.4007165844196,159.3195255634561,159.2386381947803,159.15805093728244,159.0777603174234,158.99776292744505,158.9180554236408,158.8386345246839,158.75949701001204,158.68063971826473,158.60205954577208,158.5237534450931,158.44571842360094,158.36795154211356,158.29044991356832,158.2132107017382,158.13623111998854,158.0595084300726,157.98303994096443,157.9068230077275,157.83085503041838,157.75513345302306,157.67965576242605,157.6044194874098,157.52942219768434,157.45466150294524,157.38013505195957,157.30584053167843,157.23177566637503,157.157938216808,157.08432597940822,157.0109367854892,156.93776850047948,156.86481902317664,156.79208628502235,156.7195682493974,156.64726291093598,156.5751682948592,156.50328245632633,156.43160347980395,156.3601294784518,156.28885859352536,156.21778899379402,156.1469188749749,156.07624645918133,156.00576999438607,155.93548775389803,155.86539803585293,155.79549916271685,155.72578948080238,155.65626735979725,155.58693119230495,155.51777939339647,155.44881040017356,155.38002267134289,155.31141468680065,155.2429849472271,155.17473197369142,155.10665430726613,155.03875050865042,154.97101915780308,154.90345885358383,154.83606821340325,154.7688458728813,154.70179048551338,154.63490072234464,154.56817527165163,154.50161283863142,154.43521214509795,154.3689719291852,154.30289094505721,154.23696796262482,154.17120176726854,154.1055911595678,154.04013495503642,153.9748319838637,153.9096810906613,153.8446811342158,153.77983098724675,153.71512953616968,153.65057568086476,153.5861683344499,153.5219064230592,153.4577888856258,153.39381467366982,153.3299827510901,153.26629209396106,153.2027416903333,153.13933054003874,153.0760576544995,153.01292205654102,152.94992278020885,152.88705887058933,152.82432938363382,152.7617333859866,152.69926995481615,152.63693817765002,152.5747371522128,152.51266598626754,152.45072379746006,152.38890971316664,152.32722287034454,152.2656624153855,152.20422750397205,152.14291730093672,152.08173098012398,152.02066772425468,151.95972672479328,151.89890718181752,151.83820830389072,151.77762930793628,151.71716941911458,151.65682787070259,151.59660390397508,151.53649676808863,151.47650571996746,151.4166300241916,151.35686895288677,151.29722178561676,151.2376878092774,151.1782663179926,151.11895661301241,151.05975800261243,151.00066980199583,150.94169133319642,150.88282192498363,150.82406091276957,150.7654076385171,150.70686145065005,150.64842170396474,150.59008775954322,150.53185898466765,150.4737347527369,150.4157144431837,150.35779744139398,150.29998313862703,150.24227093193744,150.18466022409814,150.1271504235248,150.06974094420156,150.01243120560784,149.95522063264676,149.89810865557425,149.84109470992962,149.78417823646754,149.72735868109046,149.67063549478294,149.61400813354626,149.5574760583349,149.50103873499344,149.44469563419472,149.38844623137908,149.33229000669442,149.27622644493732,149.22025503549503,149.16437527228857,149.1085866537164,149.05288868259927,148.997280866126,148.94176271579974,148.8863337473853,148.8309934808575,148.77574144035,148.72057715410503,148.66550015442394,148.61050997761848,148.55560616396292,148.5007882576467,148.4460558067279,148.3914083630877,148.33684548238494,148.28236672401187,148.22797165105035,148.17365983022881,148.11943083187975,148.06528422989786,148.01121960169894,147.95723652817912,147.90333459367517,147.8495133859248,147.79577249602798,147.74211151840862,147.68853005077696,147.6350276940923,147.58160405252644,147.52825873342766,147.47499134728503,147.42180150769337,147.36868883131882,147.3156529378646,147.26269345003755,147.20980999351494,147.15700219691192,147.10426969174927,147.05161211242168,146.9990290961665,146.9465202830329,146.89408531585133,146.8417238402037,146.78943550439368,146.73721995941747,146.68507685893522,146.63300585924242,146.5810066192421,146.52907880041707,146.47722206680274,146.42543608496027,146.37372052395,146.32207505530536,146.27049935300695,146.21899309345733,146.16755595545553,146.1161876201726,146.06488777112705,146.01365609416055,145.96249227741436,145.91139601130567,145.86036698850444,145.80940490391055,145.75850945463117,145.70768033995836,145.65691726134725,145.6062199223942,145.55558802881524,145.50502128842516,145.45451941111637,145.4040821088384,145.35370909557741,145.30340008733623,145.2531548021142,145.20297295988803,145.15285428259193,145.10279849409886,145.05280532020146,145.0028744885934,144.9530057288511,144.9031987724154,144.85345335257367,144.803769204442,144.7541460649478,144.70458367281236,144.65508176853385,144.60564009437033,144.55625839432327,144.5069364141208,144.45767390120156,144.4084706046987,144.35932627542385,144.31024066585158,144.26121353010362,144.21224462393383,144.16333370471287,144.11448053141336,144.06568486459497,144.01694646638987,143.96826510048834,143.91964053212442,143.8710725280618,143.82256085658,143.77410528746046,143.725705591973,143.67736154286234,143.62907291433484,143.5808394820453,143.53266102308396,143.4845373159637,143.43646814060736,143.38845327833508,143.34049251185198,143.2925856252359,143.24473240392516,143.19693263470674,143.14918610570427,143.10149260636638,143.05385192745504,143.00626386103423,142.95872820045847,142.91124474036167,142.86381327664606,142.81643360647118,142.7691055282431,142.7218288416037,142.67460334741995,142.62742884777356,142.5803051459506,142.5332320464312,142.48620935487938,142.43923687813304,142.3923144241941,142.34544180221857,142.2986188225069,142.25184529649445,142.20512103674176,142.15844585692537,142.11181957182848,142.06524199733155,142.0187129504035,141.97223224909257,141.9257997125172,141.87941516085763,141.83307841534676,141.78678929826182,141.74054763291565,141.69435324364835,141.64820595581887,141.60210559579667,141.55605199095365,141.510044969656,141.46408436125614,141.4181699960848,141.37230170544314,141.32647932159512,141.28070267775945,141.23497160810248,141.18928594773024,141.1436455326811,141.0980501999184,141.05249978732323,141.00699413368702,140.96153307870446,140.9161164629665,140.87074412795303,140.82541591602632,140.78013167042386,140.7348912352516,140.68969445547734,140.6445411769238,140.59943124626227,140.55436451100596,140.50934081950336,140.46436002093216,140.41942196529254,140.3745265034011,140.32967348688464,140.28486276817378,140.2400942004971,140.19536763787497,140.15068293511348,140.1060399477986,140.06143853229042,140.0168785457171,139.97235984596927,139.92788229169415,139.88344574229012,139.83905005790098,139.79469509941043,139.75038072843662,139.70610680732656,139.66187319915096,139.6176797676987,139.57352637747164,139.5294128936793,139.48533918223387,139.44130510974472,139.39731054351373,139.3533553515298,139.30943940246428,139.26556256566573,139.22172471115508,139.1779257096208,139.13416543241422,139.0904437515444,139.04676053967376,139.0031156701133,138.95950901681772,138.91594045438129,138.87240985803282,138.82891710363145,138.78546206766208,138.7420446272309,138.6986646600611,138.65532204448837,138.61201665945677,138.56874838451427,138.52551709980864,138.48232268608325,138.43916502467283,138.39604399749942,138.35295948706823,138.30991137646365,138.26689954934517,138.22392388994348,138.18098428305643,138.13808061404518,138.0952127688304,138.05238063388828,138.00958409624675,137.9668230434819,137.92409736371394,137.88140694560377,137.8387516783491,137.79613145168094,137.75354615585988,137.71099568167264,137.6684799204284,137.62599876395544,137.58355210459732,137.5411398352099,137.49876184915746,137.4564180403097,137.414108303038,137.3718325322123,137.32959062319776,137.2873824718515,137.24520797451916,137.20306702803194,137.16095952970323,137.11888537732546,137.07684446916693,137.03483670396884,136.99286198094194,136.95092019976366,136.90901126057506,136.86713506397763,136.82529151103054,136.78348050324757,136.74170194259403,136.69995573148407,136.65824177277764,136.61655996977763,136.5749102262271,136.53329244630643,136.49170653463042,136.4501523962456,136.40862993662753,136.36713906167796,136.32567967772212,136.28425169150609,136.24285501019418,136.20148954136616,136.16015519301467,136.1188518735427,136.07757949176093,136.03633795688523,135.99512717853395,135.9539470667257,135.91279753187658,135.87167848479783,135.83058983669335,135.78953149915722,135.74850338417133,135.70750540410302,135.6665374717025,135.62559950010078,135.58469140280704,135.54381309370646,135.50296448705802,135.46214549749183,135.4213560400073,135.38059602997058,135.3398653831125,135.29916401552623,135.25849184366513,135.2178487843406,135.1772347547198,135.13664967232367,135.0960934550246,135.0555660210445,135.01506728895257,134.97459717766318,134.93415560643402,134.89374249486377,134.85335776289023,134.81300133078832,134.7726731191679,134.73237304897197,134.69210104147453,134.65185701827883,134.61164090131518,134.57145261283915,134.5312920754297,134.49115921198705,134.45105394573116,134.4109762001995,134.3709258992454,134.33090296703608,134.29090732805096,134.25093890707964,134.21099762922034,134.17108341987787,134.13119620476203,134.09133590988574,134.0515024615633,134.01169578640875,133.971915811334,133.93216246354714,133.89243567055084,133.85273536014066,133.81306146040313,133.7734138997145,133.7337926067386,133.69419751042568,133.6546285400104,133.6150856250105,133.5755686952249,133.53607768073246,133.49661251189005,133.45717311933123,133.4177594339646,133.3783713869722,133.33900890980806,133.29967193419662,133.26036039213128,133.22107421587282,133.18181333794797,133.14257769114778,133.10336720852646,133.0641818233996,133.0250214693428,132.98588608019037,132.9467755900338,132.90768993322027,132.86862904435134,132.82959285828153,132.79058131011695,132.7515943352138,132.71263186917716,132.67369384785957,132.63478020735957,132.5958908840205,132.55702581442918,132.51818493541447,132.47936818404597,132.44057549763278,132.40180681372223,132.36306207009844,132.3243412047812,132.28564415602466,132.246970862316,132.20832126237423,132.16969529514895,132.13109289981912,132.09251401579178,132.05395858270094,132.01542654040617,131.97691782899167,131.93843238876488,131.89997016025526,131.86153108421337,131.82311510160935,131.7847221536321,131.74635218168777,131.708005127399,131.6696809326035,131.631379539353,131.59310088991214,131.5548449267573,131.51661159257569,131.4784008302639,131.44021258292713,131.40204679387796,131.36390340663525,131.32578236492313,131.28768361266995,131.24960709400705,131.211552753268,131.1735205349873,131.13551038389946,131.09752224493798,131.05955606323425,131.02161178411663,130.98368935310933,130.94578871593149,130.9079098184962,130.87005260690944,130.83221702746906,130.79440302666399,130.756610551173,130.718839547864,130.6810899637929,130.6433617462028,130.60565484252282,130.56796920036737,130.53030476753523,130.49266149200838,130.45503932195138,130.4174382057102,130.37985809181154,130.34229892896167,130.30476066604572,130.2672432521268,130.2297466364449,130.19227076841634,130.1548155976325,130.11738107385932,130.0799671470362,130.0425737672752,130.00520088486024,129.96784845024612,129.93051641405796,129.89320472708988,129.85591334030465,129.81864220483266,129.781391271971,129.7441604931828,129.7069498200964,129.66975920450443,129.63258859836316,129.59543795379147,129.55830722307044,129.5211963586422,129.48410531310918,129.44703403923367,129.40998248993662,129.37295061829715,129.3359383775517,129.2989457210932,129.26197260247045,129.2250189753873,129.18808479370185,129.15117001142588,129.1142745827239,129.07739846191262,129.04054160345999,129.00370396198474,128.96688549225544,128.93008614919003,128.89330588785475,128.8565446634638,128.8198024313785,128.7830791471064,128.74637476630096,128.7096892447606,128.67302253842806,128.63637460338978,128.59974539587512,128.56313487225583,128.52654298904528,128.48996970289787,128.45341497060818,128.41687874911062,128.38036099547853,128.34386166692363,128.30738072079538,128.27091811458024,128.2344738059013,128.19804775251723,128.16163991232204,128.12525024334425,128.08887870374627,128.05252525182394,128.01618984600566,127.979872444852,127.943573007055,127.90729149143756,127.8710278569529,127.83478206268386,127.79855406784237,127.76234383176896,127.72615131393196,127.689976473927,127.65381927147656,127.61767966642924,127.58155761875923,127.54545308856576,127.50936603607249,127.47329642162704,127.4372442057003,127.40120934888594,127.36519181189992,127.3291915555798,127.29320854088432,127.25724272889282,127.22129408080454,127.1853625579384,127.14944812173225,127.11355073374226,127.07767035564264,127.04180694922492,127.00596047639746,126.97013089918504,126.93431817972822,126.89852228028285,126.86274316321958,126.82698079102336,126.79123512629288,126.75550613174019,126.71979377019007,126.68409800457952,126.64841879795748,126.61275611348401,126.57710991443008,126.54148016417699,126.50586682621582,126.470269864147,126.43468924167993,126.39912492263227,126.3635768709297,126.32804505060538,126.29252942579942,126.25702996075842,126.2215466198351,126.18607936748775,126.15062816827985,126.11519298687952,126.07977378805913,126.04437053669484,126.00898319776616,125.97361173635551,125.9382561176477,125.90291630692964,125.86759226958972,125.83228397111758,125.79699137710341,125.76171445323784,125.72645316531126,125.69120747921347,125.65597736093328,125.62076277655814,125.58556369227354,125.55038007436278,125.51521188920645,125.48005910328212,125.44492168316378,125.40979959552155,125.37469280712118,125.33960128482383,125.30452499558538,125.26946390645634,125.23441798458119,125.19938719719815,125.16437151163873,125.12937089532734,125.0943853157809,125.05941474060847,125.02445913751086,124.9895184742802,124.95459271879962,124.91968183904287,124.88478580307388,124.8499045790465,124.81503813520395,124.78018643987865,124.7453494614917,124.71052716855257,124.67571952965879,124.64092651349544,124.60614808883494,124.57138422453659,124.53663488954629,124.50190005289616,124.46717968370405,124.43247375117346,124.39778222459292,124.36310507333582,124.32844226685998,124.29379377470737,124.25915956650367,124.22453961195802,124.18993388086258,124.15534234309233,124.12076496860463,124.08620172743889,124.0516525897163,124.01711752563945,123.982596505492,123.94808949963834,123.91359647852336,123.87911741267196,123.8446522726889,123.81020102925834,123.77576365314361,123.74134011518686,123.70693038630873,123.67253443750803,123.63815223986154,123.60378376452351,123.56942898272544,123.53508786577585,123.50076038505986,123.46644651203891,123.43214621825055,123.39785947530791,123.36358625489967,123.32932652878961,123.2950802688163,123.26084744689292,123.22662803500685,123.1924220052194,123.15822932966553,123.12404998055362,123.08988393016502,123.055731150854,123.02159161504726,122.98746529524368,122.95335216401413,122.91925219400112,122.88516535791854,122.8510916285513,122.81703097875526,122.78298338145666,122.7489488096521,122.71492723640817,122.68091863486113,122.6469229782167,122.61294023974976,122.57897039280411,122.54501341079227,122.51106926719493,122.47713793556109,122.44321938950752,122.4093136027185,122.37542054894575,122.34154020200802,122.30767253579083,122.27381752424625,122.23997514139266,122.20614536131446,122.17232815816183,122.13852350615055,122.10473137956154,122.07095175274092,122.03718460009942,122.00342989611246,121.96968761531969,121.93595773232471,121.90224022179504,121.86853505846173,121.83484221711913,121.80116167262466,121.76749339989858,121.73383737392376,121.70019356974537,121.66656196247081,121.6329425272693,121.59933523937171,121.5657400740704,121.5321570067188,121.49858601273144,121.4650270675835,121.43148014681067,121.39794522600894,121.36442228083433,121.33091128700272,121.29741222028954,121.26392505652967,121.23044977161703,121.19698634150461,121.16353474220404,121.13009494978547,121.0966669403773,121.06325069016604,121.02984617539602,120.99645337236919,120.96307225744492,120.92970280703985,120.8963449976275,120.86299880573827,120.82966420795913,120.79634118093331,120.76302970136031,120.72972974599551,120.69644129165009,120.6631643151907,120.62989879353941,120.59664470367333,120.56340202262453,120.53017072747987,120.49695079538063,120.46374220352244,120.43054492915516,120.39735894958247,120.36418424216178,120.33102078430413,120.29786855347378,120.26472752718827,120.231597683018,120.1984789985861,120.1653714515684,120.13227501969305,120.09918968074028,120.06611541254252,120.03305219298382,120.00000000000001,119.96695881157825,119.93392860575698,119.90090936062577,119.86790105432499,119.83490366504572,119.80191717102961,119.76894155056861,119.73597678200484,119.70302284373034,119.67007971418705,119.63714737186646,119.60422579530949,119.5713149631063,119.53841485389627,119.50552544636753,119.47264671925707,119.43977865135034,119.40692122148127,119.37407440853192,119.34123819143251,119.30841254916105,119.27559746074324,119.24279290525239,119.20999886180915,119.17721530958134,119.14444222778384,119.11167959567842,119.0789273925735,119.04618559782406,119.01345419083144,118.98073315104327,118.94802245795307,118.9153220911004,118.88263203007045,118.84995225449399,118.81728274404723,118.78462347845158,118.75197443747352,118.71933560092452,118.68670694866078,118.6540884605831,118.62148011663676,118.58888189681136,118.55629378114062,118.52371574970219,118.49114778261773,118.4585898600524,118.42604196221502,118.39350406935772,118.36097616177595,118.32845821980816,118.29595022383575,118.26345215428294,118.23096399161659,118.19848571634598,118.16601730902282,118.13355875024097,118.10111002063636,118.06867110088676,118.03624197171183,118.00382261387271,117.97141300817215,117.93901313545413,117.90662297660384,117.87424251254755,117.84187172425241,117.80951059272638,117.77715909901798,117.74481722421628,117.71248494945064,117.68016225589069,117.64784912474617,117.61554553726663,117.58325147474152,117.55096691849994,117.51869184991052,117.48642625038129,117.45417010135952,117.4219233843316,117.38968608082301,117.357458172398,117.32523964065958,117.29303046724934,117.2608306338474,117.22864012217218,117.19645891398032,117.16428699106653,117.13212433526351,117.09997092844172,117.06782675250939,117.03569178941228,117.00356602113362,116.97144942969393,116.93934199715096,116.90724370559946,116.87515453717121,116.84307447403478,116.8110034983954,116.77894159249492,116.74688873861159,116.71484491906008,116.68281011619116,116.65078431239178,116.6187674900848,116.58675963172892,116.55476071981863,116.52277073688396,116.49078966549045,116.45881748823905,116.42685418776588,116.39489974674233,116.36295414787466,116.33101737390415,116.29908940760679,116.26717023179327,116.23525982930887,116.20335818303329,116.17146527588052,116.13958109079883,116.10770561077058,116.07583881881209,116.04398069797357,116.01213123133901,115.98029040202604,115.9484581931859,115.91663458800312,115.88481956969571,115.85301312151479,115.82121522674466,115.78942586870258,115.75764503073866,115.72587269623588,115.69410884860982,115.66235347130866,115.63060654781304,115.59886806163598,115.56713799632266,115.5354163354505,115.50370306262894,115.47199816149929,115.44030161573477,115.40861340904026,115.37693352515231,115.34526194783899,115.31359866089976,115.28194364816542,115.25029689349795,115.21865838079047,115.18702809396716,115.15540601698298,115.12379213382384,115.09218642850627,115.06058888507745,115.0289994876151,114.99741822022727,114.96584506705238,114.93428001225911,114.9027230400462,114.87117413464239,114.83963328030644,114.80810046132686,114.77657566202193,114.74505886673956,114.71355005985721,114.6820492257818,114.65055634894955,114.619071413826,114.58759440490581,114.55612530671279,114.52466410379964,114.49321078074797,114.46176532216822,114.43032771269951,114.39889793700956,114.36747597979463,114.33606182577937,114.30465545971681,114.27325686638822,114.24186603060302,114.21048293719868,114.17910757104065,114.14773991702229,114.11637996006473,114.0850276851169,114.05368307715521,114.0223461211837,113.99101680223384,113.95969510536447,113.92838101566169,113.89707451823878,113.86577559823613,113.83448424082114,113.80320043118819,113.77192415455843,113.7406553961798,113.70939414132692,113.67814037530104,113.64689408342983,113.61565525106745,113.5844238635944,113.55319990641739,113.52198336496936,113.49077422470928,113.45957247112223,113.42837808971912,113.39719106603673,113.36601138563762,113.33483903411006,113.30367399706789,113.27251626015047,113.24136580902261,113.2102226293745,113.17908670692161,113.14795802740458,113.11683657658924,113.08572234026641,113.05461530425191,113.02351545438644,112.9924227765355,112.96133725658939,112.93025888046296,112.89918763409571,112.86812350345167,112.83706647451926,112.80601653331124,112.77497366586468,112.74393785824083,112.71290909652507,112.68188736682683,112.6508726552795,112.61986494804043,112.58886423129073,112.55787049123529,112.52688371410268,112.49590388614509,112.46493099363819,112.43396502288117,112.4030059601966,112.37205379193031,112.34110850445143,112.31017008415223,112.2792385174481,112.24831379077746,112.21739589060162,112.18648480340488,112.15558051569427,112.1246830139996,112.09379228487336,112.0629083148906,112.03203109064899,112.00116059876854,111.97029682589178,111.93943975868349,111.90858938383074,111.87774568804275,111.8469086580509,111.81607828060865,111.78525454249136,111.75443743049637,111.72362693144282,111.69282303217172,111.66202571954571,111.63123498044911,111.60045080178782,111.56967317048925,111.5389020735023,111.50813749779721,111.47737943036556,111.44662785822015,111.41588276839504,111.38514414794531,111.35441198394722,111.32368626349793,111.29296697371558,111.26225410173915,111.23154763472846,111.20084755986399,111.170153864347,111.13946653539931,111.10878556026327,111.07811092620175,111.04744262049803,111.01678063045577,110.9861249433989,110.95547554667164,110.92483242763832,110.89419557368343,110.86356497221149,110.83294061064706,110.80232247643455,110.77171055703833,110.74110483994254,110.71050531265105,110.67991196268746,110.64932477759496,110.61874374493635,110.58816885229395,110.55760008726948,110.5270374374841,110.49648089057827,110.46593043421177,110.43538605606355,110.40484774383177,110.37431548523364,110.34378926800542,110.31326907990243,110.2827549086988,110.25224674218764,110.22174456818081,110.19124837450893,110.16075814902133,110.13027387958601,110.09979555408952,110.06932316043694,110.03885668655187,110.00839612037626,109.97794144987051,109.94749266301322,109.91704974780134,109.88661269224997,109.85618148439237,109.82575611227986,109.79533656398183,109.76492282758561,109.7345148911965,109.7041127429376,109.6737163709499,109.64332576339214,109.61294090844075,109.58256179428979,109.55218840915096,109.52182074125349,109.49145877884415,109.4611025101871,109.43075192356392,109.40040700727349,109.37006774963203,109.33973413897299,109.30940616364694,109.27908381202167,109.24876707248197,109.21845593342971,109.1881503832837,109.15785041047971,109.12755600347039,109.09726715072516,109.06698384073026,109.03670606198862,109.00643380301992,108.97616705236034,108.94590579856272,108.91565003019642,108.88539973584723,108.85515490411741,108.82491552362555,108.79468158300661,108.76445307091177,108.73422997600849,108.7040122869804,108.67379999252724,108.64359308136483,108.61339154222505,108.58319536385572,108.55300453502066,108.52281904449953,108.49263888108784,108.46246403359692,108.4322944908538,108.40213024170126,108.37197127499769,108.34181757961711,108.3116691444491,108.28152595839873,108.25138801038655,108.22125528934853,108.19112778423603,108.16100548401567,108.13088837766945,108.10077645419452,108.07066970260324,108.04056811192314,108.01047167119684,107.98038036948199,107.95029419585126,107.92021313939229,107.89013718920762,107.8600663344147,107.83000056414575,107.79993986754782,107.76988423378266,107.73983365202679,107.70978811147128,107.6797476013219,107.64971211079892,107.61968162913713,107.58965614558585,107.55963564940878,107.52962012988404,107.49960957630405,107.46960397797562,107.43960332421972,107.4096076043716,107.37961680778068,107.34963092381051,107.31964994183868,107.28967385125688,107.25970264147081,107.22973630190009,107.19977482197831,107.16981819115291,107.13986639888518,107.10991943465017,107.07997728793673,107.0500399482474,107.02010740509843,106.99017964801963,106.96025666655447,106.93033845025992,106.90042498870648,106.87051627147811,106.84061228817222,106.81071302839959,106.78081848178432,106.75092863796385,106.72104348658891,106.69116301732339,106.66128721984441,106.63141608384224,106.60154959902025,106.57168775509484,106.5418305417955,106.5119779488647,106.4821299660578,106.45228658314315,106.42244778990191,106.39261357612813,106.3627839316286,106.3329588462229,106.30313830974332,106.27332231203481,106.24351084295499,106.21370389237408,106.18390145017486,106.15410350625262,106.12431005051516,106.09452107288273,106.06473656328798,106.03495651167593,106.00518090800398,105.9754097422418,105.94564300437132,105.91588068438669,105.8861227722943,105.85636925811265,105.82662013187235,105.79687538361613,105.7671350033987,105.73739898128687,105.70766730735933,105.67793997170673,105.64821696443168,105.61849827564856,105.58878389548362,105.55907381407488,105.52936802157215,105.49966650813694,105.46996926394246,105.4402762791735,105.41058754402654,105.38090304870958,105.35122278344222,105.32154673845552,105.29187490399201,105.2622072703057,105.23254382766193,105.20288456633747,105.17322947662039,105.1435785488101,105.1139317732172,105.08428914016358,105.05465063998227,105.02501626301753,104.99538599962472,104.96575984017022,104.93613777503155,104.90651979459726,104.87690588926682,104.84729604945072,104.81769026557035,104.78808852805797,104.75849082735672,104.7288971539206,104.69930749821431,104.66972185071336,104.64014020190399,104.6105625422831,104.5809888623583,104.55141915264772,104.52185340368024,104.49229160599515,104.46273375014233,104.43317982668218,104.40362982618551,104.37408373923358,104.34454155641805,104.31500326834097,104.28546886561467,104.25593833886184,104.22641167871537,104.19688887581844,104.16736992082443,104.13785480439688,104.10834351720948,104.07883604994602,104.0493323933004,104.01983253797653,103.99033647468836,103.9608441941598,103.93135568712478,103.90187094432709,103.87238995652041,103.84291271446831,103.81343920894422,103.78396943073129,103.75450337062252,103.72504101942059,103.69558236793794,103.66612740699665,103.63667612742846,103.60722852007473,103.57778457578638,103.54834428542397,103.5189076398575,103.48947462996651,103.46004524663996,103.43061948077636,103.40119732328348,103.37177876507859,103.34236379708824,103.31295241024833,103.28354459550404,103.25414034380982,103.22473964612932,103.19534249343543,103.16594887671022,103.13655878694486,103.10717221513966,103.07778915230402,103.04840958945638,103.01903351762424,102.98966092784406,102.9602918111613,102.93092615863036,102.90156396131452,102.872205210286,102.84284989662584,102.81349801142392,102.7841495457789,102.75480449079826,102.72546283759816,102.69612457730354,102.66678970104797,102.63745819997374,102.60813006523172,102.57880528798141,102.54948385939085,102.52016577063671,102.4908510129041,102.46153957738667,102.4322314552865,102.40292663781415,102.37362511618856,102.34432688163707,102.31503192539537,102.2857402387075,102.25645181282576,102.22716663901076,102.19788470853135,102.1686060126646,102.13933054269579,102.11005828991831,102.08078924563378,102.0515234011519,102.02226074779038,101.99300127687513,101.96374497973999,101.93449184772685,101.90524187218558,101.875995044474,101.84675135595784,101.81751079801077,101.78827336201434,101.75903903935792,101.7298078214387,101.7005796996617,101.6713546654397,101.64213271019321,101.61291382535052,101.58369800234753,101.55448523262787,101.52527550764282,101.49606881885123,101.4668651577196,101.43766451572193,101.40846688433983,101.37927225506239,101.3500806193862,101.32089196881535,101.29170629486129,101.26252358904296,101.23334384288665,101.20416704792606,101.17499319570219,101.14582227776336,101.11665428566522,101.08748921097062,101.05832704524973,101.02916778007986,101.00001140704558,100.97085791773857,100.94170730375771,100.91255955670894,100.88341466820535,100.85427262986705,100.82513343332124,100.79599707020212,100.76686353215088,100.73773281081569,100.70860489785166,100.67947978492084,100.6503574636922,100.62123792584153,100.5921211630515,100.56300716701163,100.53389592941824,100.50478744197436,100.47568169638991,100.44657868438141,100.41747839767217,100.38838082799218,100.35928596707805,100.33019380667307,100.30110433852713,100.27201755439671,100.24293344604487,100.21385200524121,100.18477322376184,100.15569709338938,100.12662360591294,100.09755275312806,100.06848452683671,100.03941891884729,100.01035592097456,99.98129552503964,99.95223772287,99.92318250629943,99.89412986716799,99.86507979732204,99.83603228861413,99.80698733290312,99.77794492205399,99.74890504793792,99.7198677024323,99.69083287742058,99.66180056479234,99.63277075644328,99.60374344427514,99.5747186201957,99.54569627611878,99.51667640396417,99.48765899565768,99.45864404313103,99.4296315383219,99.40062147317387,99.37161383963641,99.34260862966485,99.31360583522039,99.28460544827001,99.25560746078652,99.2266118647485,99.1976186521403,99.16862781495198,99.13963934517933,99.11065323482381,99.08166947589261,99.0526880603985,99.02370898035988,98.99473222780081,98.96575779475087,98.93678567324527,98.9078158553247,98.87884833303536,98.84988309842903,98.8209201435629,98.79195946049964,98.7630010413073,98.73404487805944,98.70509096283492,98.67613928771803,98.6471898447984,98.61824262617094,98.58929762393595,98.56035483019892,98.53141423707068,98.50247583666729,98.47353962110999,98.4446055825253,98.41567371304484,98.38674400480544,98.35781644994906,98.32889104062278,98.29996776897876,98.27104662717429,98.24212760737164,98.21321070173819,98.1842959024463,98.15538320167332,98.12647259160158,98.0975640644184,98.06865761231602,98.03975322749153,98.010850902147,97.98195062848933,97.95305239873026,97.92415620508643,97.89526203977923,97.86636989503486,97.83747976308429,97.80859163616324,97.7797055065122,97.75082136637631,97.72193920800547,97.69305902365417,97.66418080558162,97.63530454605164,97.60643023733269,97.57755787169776,97.54868744142446,97.51981893879497,97.49095235609595,97.4620876856186,97.43322491965863,97.4043640505162,97.37550507049592,97.34664797190689,97.31779274706254,97.28893938828078,97.26008788788381,97.23123823819827,97.2023904315551,97.17354446028955,97.14470031674117,97.11585799325381,97.08701748217557,97.05817877585876,97.02934186665998,97.00050674693996,96.97167340906365,96.94284184540018,96.91401204832276,96.88518401020882,96.85635772343979,96.82753318040126,96.79871037348288,96.76988929507831,96.74106993758531,96.71225229340556,96.6834363549448,96.65462211461274,96.62580956482299,96.59699869799314,96.56818950654471,96.53938198290307,96.51057611949751,96.48177190876116,96.45296934313097,96.42416841504777,96.39536911695615,96.36657144130449,96.33777538054493,96.30898092713338,96.28018807352947,96.25139681219653,96.2226071356016,96.19381903621539,96.16503250651223,96.13624753897014,96.10746412607072,96.07868226029917,96.0499019341443,96.02112314009847,95.99234587065754,95.96357011832099,95.9347958755917,95.90602313497614,95.87725188898415,95.84848213012911,95.8197138509278,95.79094704390039,95.76218170157048,95.73341781646508,95.70465538111446,95.67589438805236,95.64713482981574,95.61837669894493,95.58961998798353,95.5608646894784,95.53211079597966,95.5033583000407,95.47460719421808,95.44585747107156,95.41710912316411,95.38836214306185,95.35961652333404,95.33087225655309,95.30212933529451,95.27338775213684,95.24464749966181,95.21590857045413,95.18717095710154,95.15843465219486,95.12969964832784,95.10096593809729,95.07223351410293,95.04350236894744,95.01477249523649,94.98604388557855,94.95731653258511,94.92859042887046,94.89986556705178,94.8711419397491,94.84241953958525,94.81369835918589,94.78497839117946,94.75625962819721,94.72754206287311,94.69882568784386,94.67011049574892,94.6413964792304,94.61268363093316,94.5839719435047,94.55526140959516,94.52655202185734,94.49784377294664,94.46913665552105,94.44043066224118,94.41172578577017,94.38302201877374,94.3543193539201,94.32561778387999,94.29691730132669,94.26821789893589,94.23951956938578,94.21082230535701,94.18212609953261,94.15343094459806,94.12473683324123,94.09604375815233,94.06735171202399,94.03866068755114,94.00997067743104,93.98128167436325,93.95259367104966,93.92390666019439,93.89522063450383,93.86653558668664,93.83785150945366,93.80916839551796,93.78048623759477,93.75180502840156,93.72312476065787,93.69444542708544,93.66576702040811,93.63708953335181,93.60841295864459,93.57973728901655,93.55106251719985,93.52238863592866,93.49371563793925,93.46504351596977,93.43637226276046,93.40770187105349,93.37903233359299,93.35036364312505,93.3216957923976,93.29302877416058,93.26436258116571,93.23569720616668,93.20703264191897,93.1783688811799,93.14970591670864,93.12104374126613,93.09238234761513,93.06372172852011,93.03506187674738,93.00640278506489,92.97774444624241,92.94908685305131,92.92042999826474,92.89177387465745,92.86311847500588,92.8344637920881,92.8058098186838,92.77715654757425,92.74850397154235,92.71985208337254,92.69120087585084,92.66255034176477,92.6339004739034,92.60525126505729,92.5766027080185,92.54795479558057,92.51930752053845,92.49066087568858,92.4620148538288,92.43336944775838,92.40472465027793,92.37608045418946,92.34743685229637,92.31879383740332,92.29015140231638,92.2615095398429,92.23286824279148,92.20422750397204,92.17558731619575,92.14694767227499,92.11830856502344,92.08966998725592,92.06103193178846,92.03239439143827,92.00375735902375,91.97512082736439,91.94648478928086,91.91784923759491,91.88921416512937,91.86057956470823,91.83194542915643,91.80331175130004,91.77467852396613,91.74604573998279,91.7174133921791,91.68878147338515,91.66014997643192,91.63151889415145,91.60288821937664,91.57425794494132,91.54562806368023,91.51699856842897,91.48836945202405,91.4597407073028,91.43111232710338,91.40248430426482,91.3738566316269,91.3452293020302,91.31660230831609,91.2879756433267,91.25934929990486,91.23072327089413,91.20209754913884,91.17347212748393,91.14484699877507,91.11622215585854,91.08759759158133,91.05897329879097,91.03034927033568,91.00172549906422,90.97310197782595,90.94447869947082,90.91585565684926,90.8872328428123,90.8586102502114,90.82998787189861,90.80136570072641,90.77274372954773,90.74412195121602,90.71550035858506,90.68687894450915,90.65825770184293,90.62963662344143,90.60101570216007,90.57239493085461,90.54377430238114,90.51515380959609,90.48653344535617,90.45791320251841,90.4292930739401,90.40067305247877,90.37205313099219,90.3434333023384,90.31481355937557,90.28619389496215,90.25757430195672,90.228954773218,90.20033530160491,90.17171587997643,90.14309650119172,90.11447715811,90.08585784359057,90.05723855049283,90.02861927167615,90.0],"x":[-1.0,-0.9995004995004995,-0.999000999000999,-0.9985014985014985,-0.998001998001998,-0.9975024975024975,-0.997002997002997,-0.9965034965034965,-0.996003996003996,-0.9955044955044955,-0.995004995004995,-0.9945054945054945,-0.994005994005994,-0.9935064935064936,-0.993006993006993,-0.9925074925074925,-0.9920079920079921,-0.9915084915084915,-0.991008991008991,-0.9905094905094906,-0.99000999000999,-0.9895104895104895,-0.989010989010989,-0.9885114885114885,-0.988011988011988,-0.9875124875124875,-0.987012987012987,-0.9865134865134865,-0.986013986013986,-0.9855144855144855,-0.985014985014985,-0.9845154845154845,-0.984015984015984,-0.9835164835164835,-0.983016983016983,-0.9825174825174825,-0.9820179820179821,-0.9815184815184815,-0.981018981018981,-0.9805194805194806,-0.98001998001998,-0.9795204795204795,-0.9790209790209791,-0.9785214785214785,-0.978021978021978,-0.9775224775224776,-0.977022977022977,-0.9765234765234765,-0.9760239760239761,-0.9755244755244755,-0.975024975024975,-0.9745254745254746,-0.974025974025974,-0.9735264735264735,-0.973026973026973,-0.9725274725274725,-0.972027972027972,-0.9715284715284715,-0.971028971028971,-0.9705294705294706,-0.97002997002997,-0.9695304695304695,-0.9690309690309691,-0.9685314685314685,-0.968031968031968,-0.9675324675324676,-0.967032967032967,-0.9665334665334665,-0.9660339660339661,-0.9655344655344655,-0.965034965034965,-0.9645354645354646,-0.964035964035964,-0.9635364635364635,-0.9630369630369631,-0.9625374625374625,-0.962037962037962,-0.9615384615384616,-0.961038961038961,-0.9605394605394605,-0.9600399600399601,-0.9595404595404595,-0.9590409590409591,-0.9585414585414586,-0.958041958041958,-0.9575424575424576,-0.957042957042957,-0.9565434565434565,-0.9560439560439561,-0.9555444555444556,-0.955044955044955,-0.9545454545454546,-0.954045954045954,-0.9535464535464535,-0.9530469530469531,-0.9525474525474525,-0.952047952047952,-0.9515484515484516,-0.951048951048951,-0.9505494505494505,-0.9500499500499501,-0.9495504495504495,-0.949050949050949,-0.9485514485514486,-0.948051948051948,-0.9475524475524476,-0.9470529470529471,-0.9465534465534465,-0.9460539460539461,-0.9455544455544456,-0.945054945054945,-0.9445554445554446,-0.9440559440559441,-0.9435564435564435,-0.9430569430569431,-0.9425574425574426,-0.942057942057942,-0.9415584415584416,-0.9410589410589411,-0.9405594405594405,-0.9400599400599401,-0.9395604395604396,-0.939060939060939,-0.9385614385614386,-0.938061938061938,-0.9375624375624375,-0.9370629370629371,-0.9365634365634365,-0.936063936063936,-0.9355644355644356,-0.935064935064935,-0.9345654345654346,-0.9340659340659341,-0.9335664335664335,-0.9330669330669331,-0.9325674325674326,-0.932067932067932,-0.9315684315684316,-0.9310689310689311,-0.9305694305694305,-0.9300699300699301,-0.9295704295704296,-0.929070929070929,-0.9285714285714286,-0.9280719280719281,-0.9275724275724275,-0.9270729270729271,-0.9265734265734266,-0.926073926073926,-0.9255744255744256,-0.9250749250749251,-0.9245754245754245,-0.9240759240759241,-0.9235764235764236,-0.9230769230769231,-0.9225774225774226,-0.922077922077922,-0.9215784215784216,-0.9210789210789211,-0.9205794205794205,-0.9200799200799201,-0.9195804195804196,-0.919080919080919,-0.9185814185814186,-0.9180819180819181,-0.9175824175824175,-0.9170829170829171,-0.9165834165834166,-0.916083916083916,-0.9155844155844156,-0.9150849150849151,-0.9145854145854145,-0.9140859140859141,-0.9135864135864136,-0.913086913086913,-0.9125874125874126,-0.9120879120879121,-0.9115884115884116,-0.9110889110889111,-0.9105894105894106,-0.9100899100899101,-0.9095904095904096,-0.9090909090909091,-0.9085914085914086,-0.9080919080919081,-0.9075924075924076,-0.9070929070929071,-0.9065934065934066,-0.906093906093906,-0.9055944055944056,-0.9050949050949051,-0.9045954045954046,-0.9040959040959041,-0.9035964035964036,-0.903096903096903,-0.9025974025974026,-0.9020979020979021,-0.9015984015984015,-0.9010989010989011,-0.9005994005994006,-0.9000999000999002,-0.8996003996003996,-0.8991008991008991,-0.8986013986013986,-0.8981018981018981,-0.8976023976023976,-0.8971028971028971,-0.8966033966033966,-0.8961038961038961,-0.8956043956043956,-0.8951048951048951,-0.8946053946053946,-0.8941058941058941,-0.8936063936063936,-0.8931068931068931,-0.8926073926073926,-0.8921078921078921,-0.8916083916083916,-0.8911088911088911,-0.8906093906093906,-0.8901098901098901,-0.8896103896103896,-0.8891108891108891,-0.8886113886113887,-0.8881118881118881,-0.8876123876123876,-0.8871128871128872,-0.8866133866133866,-0.8861138861138861,-0.8856143856143857,-0.8851148851148851,-0.8846153846153846,-0.8841158841158842,-0.8836163836163836,-0.8831168831168831,-0.8826173826173827,-0.8821178821178821,-0.8816183816183816,-0.8811188811188811,-0.8806193806193806,-0.8801198801198801,-0.8796203796203796,-0.8791208791208791,-0.8786213786213786,-0.8781218781218781,-0.8776223776223776,-0.8771228771228772,-0.8766233766233766,-0.8761238761238761,-0.8756243756243757,-0.8751248751248751,-0.8746253746253746,-0.8741258741258742,-0.8736263736263736,-0.8731268731268731,-0.8726273726273727,-0.8721278721278721,-0.8716283716283716,-0.8711288711288712,-0.8706293706293706,-0.8701298701298701,-0.8696303696303697,-0.8691308691308691,-0.8686313686313686,-0.8681318681318682,-0.8676323676323676,-0.8671328671328671,-0.8666333666333667,-0.8661338661338661,-0.8656343656343657,-0.8651348651348651,-0.8646353646353646,-0.8641358641358642,-0.8636363636363636,-0.8631368631368631,-0.8626373626373627,-0.8621378621378621,-0.8616383616383616,-0.8611388611388612,-0.8606393606393606,-0.8601398601398601,-0.8596403596403597,-0.8591408591408591,-0.8586413586413586,-0.8581418581418582,-0.8576423576423576,-0.8571428571428571,-0.8566433566433567,-0.8561438561438561,-0.8556443556443556,-0.8551448551448552,-0.8546453546453546,-0.8541458541458542,-0.8536463536463537,-0.8531468531468531,-0.8526473526473527,-0.8521478521478522,-0.8516483516483516,-0.8511488511488512,-0.8506493506493507,-0.8501498501498501,-0.8496503496503497,-0.8491508491508492,-0.8486513486513486,-0.8481518481518482,-0.8476523476523476,-0.8471528471528471,-0.8466533466533467,-0.8461538461538461,-0.8456543456543456,-0.8451548451548452,-0.8446553446553446,-0.8441558441558441,-0.8436563436563437,-0.8431568431568431,-0.8426573426573427,-0.8421578421578422,-0.8416583416583416,-0.8411588411588412,-0.8406593406593407,-0.8401598401598401,-0.8396603396603397,-0.8391608391608392,-0.8386613386613386,-0.8381618381618382,-0.8376623376623377,-0.8371628371628371,-0.8366633366633367,-0.8361638361638362,-0.8356643356643356,-0.8351648351648352,-0.8346653346653347,-0.8341658341658341,-0.8336663336663337,-0.8331668331668332,-0.8326673326673326,-0.8321678321678322,-0.8316683316683317,-0.8311688311688312,-0.8306693306693307,-0.8301698301698301,-0.8296703296703297,-0.8291708291708292,-0.8286713286713286,-0.8281718281718282,-0.8276723276723277,-0.8271728271728271,-0.8266733266733267,-0.8261738261738262,-0.8256743256743256,-0.8251748251748252,-0.8246753246753247,-0.8241758241758241,-0.8236763236763237,-0.8231768231768232,-0.8226773226773226,-0.8221778221778222,-0.8216783216783217,-0.8211788211788211,-0.8206793206793207,-0.8201798201798202,-0.8196803196803197,-0.8191808191808192,-0.8186813186813187,-0.8181818181818182,-0.8176823176823177,-0.8171828171828172,-0.8166833166833167,-0.8161838161838162,-0.8156843156843157,-0.8151848151848152,-0.8146853146853147,-0.8141858141858141,-0.8136863136863137,-0.8131868131868132,-0.8126873126873126,-0.8121878121878122,-0.8116883116883117,-0.8111888111888111,-0.8106893106893107,-0.8101898101898102,-0.8096903096903096,-0.8091908091908092,-0.8086913086913087,-0.8081918081918081,-0.8076923076923077,-0.8071928071928072,-0.8066933066933067,-0.8061938061938062,-0.8056943056943057,-0.8051948051948052,-0.8046953046953047,-0.8041958041958042,-0.8036963036963037,-0.8031968031968032,-0.8026973026973027,-0.8021978021978022,-0.8016983016983017,-0.8011988011988012,-0.8006993006993007,-0.8001998001998002,-0.7997002997002997,-0.7992007992007992,-0.7987012987012987,-0.7982017982017982,-0.7977022977022977,-0.7972027972027972,-0.7967032967032966,-0.7962037962037962,-0.7957042957042957,-0.7952047952047953,-0.7947052947052947,-0.7942057942057942,-0.7937062937062938,-0.7932067932067932,-0.7927072927072927,-0.7922077922077922,-0.7917082917082917,-0.7912087912087912,-0.7907092907092907,-0.7902097902097902,-0.7897102897102897,-0.7892107892107892,-0.7887112887112887,-0.7882117882117882,-0.7877122877122877,-0.7872127872127872,-0.7867132867132867,-0.7862137862137862,-0.7857142857142857,-0.7852147852147852,-0.7847152847152847,-0.7842157842157842,-0.7837162837162838,-0.7832167832167832,-0.7827172827172827,-0.7822177822177823,-0.7817182817182817,-0.7812187812187812,-0.7807192807192808,-0.7802197802197802,-0.7797202797202797,-0.7792207792207793,-0.7787212787212787,-0.7782217782217782,-0.7777222777222778,-0.7772227772227772,-0.7767232767232767,-0.7762237762237763,-0.7757242757242757,-0.7752247752247752,-0.7747252747252747,-0.7742257742257742,-0.7737262737262737,-0.7732267732267732,-0.7727272727272727,-0.7722277722277723,-0.7717282717282717,-0.7712287712287712,-0.7707292707292708,-0.7702297702297702,-0.7697302697302697,-0.7692307692307693,-0.7687312687312687,-0.7682317682317682,-0.7677322677322678,-0.7672327672327672,-0.7667332667332667,-0.7662337662337663,-0.7657342657342657,-0.7652347652347652,-0.7647352647352648,-0.7642357642357642,-0.7637362637362637,-0.7632367632367633,-0.7627372627372627,-0.7622377622377622,-0.7617382617382618,-0.7612387612387612,-0.7607392607392608,-0.7602397602397603,-0.7597402597402597,-0.7592407592407593,-0.7587412587412588,-0.7582417582417582,-0.7577422577422578,-0.7572427572427572,-0.7567432567432567,-0.7562437562437563,-0.7557442557442557,-0.7552447552447552,-0.7547452547452548,-0.7542457542457542,-0.7537462537462537,-0.7532467532467533,-0.7527472527472527,-0.7522477522477522,-0.7517482517482518,-0.7512487512487512,-0.7507492507492507,-0.7502497502497503,-0.7497502497502497,-0.7492507492507493,-0.7487512487512488,-0.7482517482517482,-0.7477522477522478,-0.7472527472527473,-0.7467532467532467,-0.7462537462537463,-0.7457542457542458,-0.7452547452547452,-0.7447552447552448,-0.7442557442557443,-0.7437562437562437,-0.7432567432567433,-0.7427572427572428,-0.7422577422577422,-0.7417582417582418,-0.7412587412587412,-0.7407592407592407,-0.7402597402597403,-0.7397602397602397,-0.7392607392607392,-0.7387612387612388,-0.7382617382617382,-0.7377622377622378,-0.7372627372627373,-0.7367632367632367,-0.7362637362637363,-0.7357642357642358,-0.7352647352647352,-0.7347652347652348,-0.7342657342657343,-0.7337662337662337,-0.7332667332667333,-0.7327672327672328,-0.7322677322677322,-0.7317682317682318,-0.7312687312687313,-0.7307692307692307,-0.7302697302697303,-0.7297702297702298,-0.7292707292707292,-0.7287712287712288,-0.7282717282717283,-0.7277722277722277,-0.7272727272727273,-0.7267732267732268,-0.7262737262737263,-0.7257742257742258,-0.7252747252747253,-0.7247752247752248,-0.7242757242757243,-0.7237762237762237,-0.7232767232767233,-0.7227772227772228,-0.7222777222777222,-0.7217782217782218,-0.7212787212787213,-0.7207792207792207,-0.7202797202797203,-0.7197802197802198,-0.7192807192807192,-0.7187812187812188,-0.7182817182817183,-0.7177822177822177,-0.7172827172827173,-0.7167832167832168,-0.7162837162837162,-0.7157842157842158,-0.7152847152847153,-0.7147852147852148,-0.7142857142857143,-0.7137862137862138,-0.7132867132867133,-0.7127872127872128,-0.7122877122877123,-0.7117882117882118,-0.7112887112887113,-0.7107892107892108,-0.7102897102897103,-0.7097902097902098,-0.7092907092907093,-0.7087912087912088,-0.7082917082917083,-0.7077922077922078,-0.7072927072927073,-0.7067932067932068,-0.7062937062937062,-0.7057942057942058,-0.7052947052947053,-0.7047952047952047,-0.7042957042957043,-0.7037962037962038,-0.7032967032967034,-0.7027972027972028,-0.7022977022977023,-0.7017982017982018,-0.7012987012987013,-0.7007992007992008,-0.7002997002997003,-0.6998001998001998,-0.6993006993006993,-0.6988011988011988,-0.6983016983016983,-0.6978021978021978,-0.6973026973026973,-0.6968031968031968,-0.6963036963036963,-0.6958041958041958,-0.6953046953046953,-0.6948051948051948,-0.6943056943056943,-0.6938061938061938,-0.6933066933066933,-0.6928071928071928,-0.6923076923076923,-0.6918081918081919,-0.6913086913086913,-0.6908091908091908,-0.6903096903096904,-0.6898101898101898,-0.6893106893106893,-0.6888111888111889,-0.6883116883116883,-0.6878121878121878,-0.6873126873126874,-0.6868131868131868,-0.6863136863136863,-0.6858141858141859,-0.6853146853146853,-0.6848151848151848,-0.6843156843156843,-0.6838161838161838,-0.6833166833166833,-0.6828171828171828,-0.6823176823176823,-0.6818181818181818,-0.6813186813186813,-0.6808191808191808,-0.6803196803196803,-0.6798201798201798,-0.6793206793206793,-0.6788211788211789,-0.6783216783216783,-0.6778221778221778,-0.6773226773226774,-0.6768231768231768,-0.6763236763236763,-0.6758241758241759,-0.6753246753246753,-0.6748251748251748,-0.6743256743256744,-0.6738261738261738,-0.6733266733266733,-0.6728271728271729,-0.6723276723276723,-0.6718281718281718,-0.6713286713286714,-0.6708291708291708,-0.6703296703296703,-0.6698301698301699,-0.6693306693306693,-0.6688311688311688,-0.6683316683316683,-0.6678321678321678,-0.6673326673326674,-0.6668331668331668,-0.6663336663336663,-0.6658341658341659,-0.6653346653346653,-0.6648351648351648,-0.6643356643356644,-0.6638361638361638,-0.6633366633366633,-0.6628371628371629,-0.6623376623376623,-0.6618381618381618,-0.6613386613386614,-0.6608391608391608,-0.6603396603396603,-0.6598401598401599,-0.6593406593406593,-0.6588411588411588,-0.6583416583416584,-0.6578421578421578,-0.6573426573426573,-0.6568431568431569,-0.6563436563436563,-0.6558441558441559,-0.6553446553446554,-0.6548451548451548,-0.6543456543456544,-0.6538461538461539,-0.6533466533466533,-0.6528471528471529,-0.6523476523476524,-0.6518481518481518,-0.6513486513486514,-0.6508491508491508,-0.6503496503496503,-0.6498501498501499,-0.6493506493506493,-0.6488511488511488,-0.6483516483516484,-0.6478521478521478,-0.6473526473526473,-0.6468531468531469,-0.6463536463536463,-0.6458541458541458,-0.6453546453546454,-0.6448551448551448,-0.6443556443556444,-0.6438561438561439,-0.6433566433566433,-0.6428571428571429,-0.6423576423576424,-0.6418581418581418,-0.6413586413586414,-0.6408591408591409,-0.6403596403596403,-0.6398601398601399,-0.6393606393606394,-0.6388611388611388,-0.6383616383616384,-0.6378621378621379,-0.6373626373626373,-0.6368631368631369,-0.6363636363636364,-0.6358641358641358,-0.6353646353646354,-0.6348651348651349,-0.6343656343656343,-0.6338661338661339,-0.6333666333666333,-0.6328671328671329,-0.6323676323676324,-0.6318681318681318,-0.6313686313686314,-0.6308691308691309,-0.6303696303696303,-0.6298701298701299,-0.6293706293706294,-0.6288711288711288,-0.6283716283716284,-0.6278721278721279,-0.6273726273726273,-0.6268731268731269,-0.6263736263736264,-0.6258741258741258,-0.6253746253746254,-0.6248751248751249,-0.6243756243756243,-0.6238761238761239,-0.6233766233766234,-0.6228771228771228,-0.6223776223776224,-0.6218781218781219,-0.6213786213786214,-0.6208791208791209,-0.6203796203796204,-0.6198801198801199,-0.6193806193806194,-0.6188811188811189,-0.6183816183816184,-0.6178821178821179,-0.6173826173826173,-0.6168831168831169,-0.6163836163836164,-0.6158841158841158,-0.6153846153846154,-0.6148851148851149,-0.6143856143856143,-0.6138861138861139,-0.6133866133866134,-0.6128871128871128,-0.6123876123876124,-0.6118881118881119,-0.6113886113886113,-0.6108891108891109,-0.6103896103896104,-0.6098901098901099,-0.6093906093906094,-0.6088911088911089,-0.6083916083916084,-0.6078921078921079,-0.6073926073926074,-0.6068931068931069,-0.6063936063936064,-0.6058941058941059,-0.6053946053946054,-0.6048951048951049,-0.6043956043956044,-0.6038961038961039,-0.6033966033966034,-0.6028971028971029,-0.6023976023976024,-0.6018981018981019,-0.6013986013986014,-0.6008991008991009,-0.6003996003996004,-0.5999000999000998,-0.5994005994005994,-0.5989010989010989,-0.5984015984015985,-0.5979020979020979,-0.5974025974025974,-0.596903096903097,-0.5964035964035964,-0.5959040959040959,-0.5954045954045954,-0.5949050949050949,-0.5944055944055944,-0.593906093906094,-0.5934065934065934,-0.5929070929070929,-0.5924075924075924,-0.5919080919080919,-0.5914085914085914,-0.5909090909090909,-0.5904095904095904,-0.5899100899100899,-0.5894105894105894,-0.5889110889110889,-0.5884115884115884,-0.5879120879120879,-0.5874125874125874,-0.586913086913087,-0.5864135864135864,-0.5859140859140859,-0.5854145854145855,-0.5849150849150849,-0.5844155844155844,-0.583916083916084,-0.5834165834165834,-0.5829170829170829,-0.5824175824175825,-0.5819180819180819,-0.5814185814185814,-0.580919080919081,-0.5804195804195804,-0.5799200799200799,-0.5794205794205795,-0.5789210789210789,-0.5784215784215784,-0.577922077922078,-0.5774225774225774,-0.5769230769230769,-0.5764235764235764,-0.5759240759240759,-0.5754245754245755,-0.5749250749250749,-0.5744255744255744,-0.573926073926074,-0.5734265734265734,-0.5729270729270729,-0.5724275724275725,-0.5719280719280719,-0.5714285714285714,-0.570929070929071,-0.5704295704295704,-0.5699300699300699,-0.5694305694305695,-0.5689310689310689,-0.5684315684315684,-0.567932067932068,-0.5674325674325674,-0.5669330669330669,-0.5664335664335665,-0.5659340659340659,-0.5654345654345654,-0.564935064935065,-0.5644355644355644,-0.563936063936064,-0.5634365634365635,-0.5629370629370629,-0.5624375624375625,-0.561938061938062,-0.5614385614385614,-0.560939060939061,-0.5604395604395604,-0.5599400599400599,-0.5594405594405595,-0.5589410589410589,-0.5584415584415584,-0.557942057942058,-0.5574425574425574,-0.5569430569430569,-0.5564435564435565,-0.5559440559440559,-0.5554445554445554,-0.554945054945055,-0.5544455544455544,-0.5539460539460539,-0.5534465534465535,-0.5529470529470529,-0.5524475524475524,-0.551948051948052,-0.5514485514485514,-0.550949050949051,-0.5504495504495505,-0.5499500499500499,-0.5494505494505495,-0.548951048951049,-0.5484515484515484,-0.547952047952048,-0.5474525474525475,-0.5469530469530469,-0.5464535464535465,-0.545954045954046,-0.5454545454545454,-0.544955044955045,-0.5444555444555444,-0.5439560439560439,-0.5434565434565435,-0.542957042957043,-0.5424575424575424,-0.541958041958042,-0.5414585414585414,-0.5409590409590409,-0.5404595404595405,-0.5399600399600399,-0.5394605394605395,-0.538961038961039,-0.5384615384615384,-0.537962037962038,-0.5374625374625375,-0.5369630369630369,-0.5364635364635365,-0.535964035964036,-0.5354645354645354,-0.534965034965035,-0.5344655344655345,-0.5339660339660339,-0.5334665334665335,-0.532967032967033,-0.5324675324675324,-0.531968031968032,-0.5314685314685315,-0.5309690309690309,-0.5304695304695305,-0.52997002997003,-0.5294705294705294,-0.528971028971029,-0.5284715284715285,-0.527972027972028,-0.5274725274725275,-0.526973026973027,-0.5264735264735265,-0.525974025974026,-0.5254745254745254,-0.524975024975025,-0.5244755244755245,-0.5239760239760239,-0.5234765234765235,-0.522977022977023,-0.5224775224775224,-0.521978021978022,-0.5214785214785215,-0.5209790209790209,-0.5204795204795205,-0.51998001998002,-0.5194805194805194,-0.518981018981019,-0.5184815184815185,-0.5179820179820179,-0.5174825174825175,-0.516983016983017,-0.5164835164835165,-0.515984015984016,-0.5154845154845155,-0.514985014985015,-0.5144855144855145,-0.513986013986014,-0.5134865134865135,-0.512987012987013,-0.5124875124875125,-0.511988011988012,-0.5114885114885115,-0.510989010989011,-0.5104895104895105,-0.50999000999001,-0.5094905094905094,-0.508991008991009,-0.5084915084915085,-0.5079920079920079,-0.5074925074925075,-0.506993006993007,-0.5064935064935064,-0.505994005994006,-0.5054945054945055,-0.504995004995005,-0.5044955044955045,-0.503996003996004,-0.5034965034965035,-0.502997002997003,-0.5024975024975025,-0.501998001998002,-0.5014985014985015,-0.500999000999001,-0.5004995004995005,-0.5,-0.4995004995004995,-0.499000999000999,-0.4985014985014985,-0.498001998001998,-0.4975024975024975,-0.497002997002997,-0.4965034965034965,-0.49600399600399603,-0.4955044955044955,-0.495004995004995,-0.4945054945054945,-0.494005994005994,-0.4935064935064935,-0.493006993006993,-0.4925074925074925,-0.492007992007992,-0.4915084915084915,-0.49100899100899104,-0.4905094905094905,-0.49000999000999,-0.48951048951048953,-0.489010989010989,-0.4885114885114885,-0.48801198801198803,-0.4875124875124875,-0.487012987012987,-0.4865134865134865,-0.486013986013986,-0.4855144855144855,-0.485014985014985,-0.48451548451548454,-0.484015984015984,-0.4835164835164835,-0.48301698301698304,-0.4825174825174825,-0.482017982017982,-0.48151848151848153,-0.481018981018981,-0.4805194805194805,-0.48001998001998003,-0.47952047952047955,-0.479020979020979,-0.4785214785214785,-0.47802197802197804,-0.4775224775224775,-0.477022977022977,-0.47652347652347654,-0.476023976023976,-0.4755244755244755,-0.47502497502497504,-0.4745254745254745,-0.474025974025974,-0.47352647352647353,-0.47302697302697305,-0.4725274725274725,-0.47202797202797203,-0.47152847152847155,-0.471028971028971,-0.47052947052947053,-0.47002997002997005,-0.4695304695304695,-0.469030969030969,-0.46853146853146854,-0.468031968031968,-0.4675324675324675,-0.46703296703296704,-0.46653346653346656,-0.466033966033966,-0.46553446553446554,-0.46503496503496505,-0.4645354645354645,-0.46403596403596403,-0.46353646353646355,-0.463036963036963,-0.46253746253746253,-0.46203796203796205,-0.46153846153846156,-0.461038961038961,-0.46053946053946054,-0.46003996003996006,-0.4595404595404595,-0.45904095904095904,-0.45854145854145856,-0.458041958041958,-0.45754245754245754,-0.45704295704295705,-0.4565434565434565,-0.45604395604395603,-0.45554445554445555,-0.45504495504495507,-0.45454545454545453,-0.45404595404595405,-0.45354645354645357,-0.453046953046953,-0.45254745254745254,-0.45204795204795206,-0.4515484515484515,-0.45104895104895104,-0.45054945054945056,-0.4500499500499501,-0.44955044955044954,-0.44905094905094906,-0.4485514485514486,-0.44805194805194803,-0.44755244755244755,-0.44705294705294707,-0.44655344655344653,-0.44605394605394605,-0.44555444555444557,-0.44505494505494503,-0.44455544455544455,-0.44405594405594406,-0.4435564435564436,-0.44305694305694304,-0.44255744255744256,-0.4420579420579421,-0.44155844155844154,-0.44105894105894106,-0.4405594405594406,-0.44005994005994004,-0.43956043956043955,-0.43906093906093907,-0.4385614385614386,-0.43806193806193805,-0.43756243756243757,-0.4370629370629371,-0.43656343656343655,-0.43606393606393606,-0.4355644355644356,-0.43506493506493504,-0.43456543456543456,-0.4340659340659341,-0.43356643356643354,-0.43306693306693306,-0.4325674325674326,-0.4320679320679321,-0.43156843156843155,-0.43106893106893107,-0.4305694305694306,-0.43006993006993005,-0.42957042957042957,-0.4290709290709291,-0.42857142857142855,-0.42807192807192807,-0.4275724275724276,-0.4270729270729271,-0.42657342657342656,-0.4260739260739261,-0.4255744255744256,-0.42507492507492506,-0.4245754245754246,-0.4240759240759241,-0.42357642357642356,-0.4230769230769231,-0.4225774225774226,-0.42207792207792205,-0.42157842157842157,-0.4210789210789211,-0.4205794205794206,-0.42007992007992007,-0.4195804195804196,-0.4190809190809191,-0.41858141858141856,-0.4180819180819181,-0.4175824175824176,-0.41708291708291706,-0.4165834165834166,-0.4160839160839161,-0.4155844155844156,-0.4150849150849151,-0.4145854145854146,-0.4140859140859141,-0.41358641358641357,-0.4130869130869131,-0.4125874125874126,-0.41208791208791207,-0.4115884115884116,-0.4110889110889111,-0.41058941058941056,-0.4100899100899101,-0.4095904095904096,-0.4090909090909091,-0.4085914085914086,-0.4080919080919081,-0.4075924075924076,-0.4070929070929071,-0.4065934065934066,-0.4060939060939061,-0.40559440559440557,-0.4050949050949051,-0.4045954045954046,-0.40409590409590407,-0.4035964035964036,-0.4030969030969031,-0.4025974025974026,-0.4020979020979021,-0.4015984015984016,-0.4010989010989011,-0.4005994005994006,-0.4000999000999001,-0.3996003996003996,-0.3991008991008991,-0.3986013986013986,-0.3981018981018981,-0.39760239760239763,-0.3971028971028971,-0.3966033966033966,-0.3961038961038961,-0.3956043956043956,-0.3951048951048951,-0.3946053946053946,-0.3941058941058941,-0.3936063936063936,-0.3931068931068931,-0.3926073926073926,-0.3921078921078921,-0.3916083916083916,-0.39110889110889113,-0.3906093906093906,-0.3901098901098901,-0.38961038961038963,-0.3891108891108891,-0.3886113886113886,-0.3881118881118881,-0.3876123876123876,-0.3871128871128871,-0.3866133866133866,-0.38611388611388614,-0.3856143856143856,-0.3851148851148851,-0.38461538461538464,-0.3841158841158841,-0.3836163836163836,-0.38311688311688313,-0.3826173826173826,-0.3821178821178821,-0.38161838161838163,-0.3811188811188811,-0.3806193806193806,-0.3801198801198801,-0.37962037962037964,-0.3791208791208791,-0.3786213786213786,-0.37812187812187814,-0.3776223776223776,-0.3771228771228771,-0.37662337662337664,-0.3761238761238761,-0.3756243756243756,-0.37512487512487513,-0.37462537462537465,-0.3741258741258741,-0.37362637362637363,-0.37312687312687315,-0.3726273726273726,-0.37212787212787213,-0.37162837162837165,-0.3711288711288711,-0.3706293706293706,-0.37012987012987014,-0.3696303696303696,-0.3691308691308691,-0.36863136863136864,-0.36813186813186816,-0.3676323676323676,-0.36713286713286714,-0.36663336663336665,-0.3661338661338661,-0.36563436563436563,-0.36513486513486515,-0.3646353646353646,-0.36413586413586413,-0.36363636363636365,-0.36313686313686316,-0.3626373626373626,-0.36213786213786214,-0.36163836163836166,-0.3611388611388611,-0.36063936063936064,-0.36013986013986016,-0.3596403596403596,-0.35914085914085914,-0.35864135864135865,-0.3581418581418581,-0.35764235764235763,-0.35714285714285715,-0.35664335664335667,-0.35614385614385613,-0.35564435564435565,-0.35514485514485516,-0.3546453546453546,-0.35414585414585414,-0.35364635364635366,-0.3531468531468531,-0.35264735264735264,-0.35214785214785216,-0.3516483516483517,-0.35114885114885114,-0.35064935064935066,-0.3501498501498502,-0.34965034965034963,-0.34915084915084915,-0.34865134865134867,-0.34815184815184813,-0.34765234765234765,-0.34715284715284717,-0.34665334665334663,-0.34615384615384615,-0.34565434565434566,-0.3451548451548452,-0.34465534465534464,-0.34415584415584416,-0.3436563436563437,-0.34315684315684314,-0.34265734265734266,-0.3421578421578422,-0.34165834165834164,-0.34115884115884115,-0.34065934065934067,-0.34015984015984013,-0.33966033966033965,-0.33916083916083917,-0.3386613386613387,-0.33816183816183815,-0.33766233766233766,-0.3371628371628372,-0.33666333666333664,-0.33616383616383616,-0.3356643356643357,-0.33516483516483514,-0.33466533466533466,-0.3341658341658342,-0.3336663336663337,-0.33316683316683315,-0.33266733266733267,-0.3321678321678322,-0.33166833166833165,-0.33116883116883117,-0.3306693306693307,-0.33016983016983015,-0.32967032967032966,-0.3291708291708292,-0.32867132867132864,-0.32817182817182816,-0.3276723276723277,-0.3271728271728272,-0.32667332667332666,-0.3261738261738262,-0.3256743256743257,-0.32517482517482516,-0.3246753246753247,-0.3241758241758242,-0.32367632367632365,-0.32317682317682317,-0.3226773226773227,-0.3221778221778222,-0.32167832167832167,-0.3211788211788212,-0.3206793206793207,-0.32017982017982016,-0.3196803196803197,-0.3191808191808192,-0.31868131868131866,-0.3181818181818182,-0.3176823176823177,-0.31718281718281716,-0.3166833166833167,-0.3161838161838162,-0.3156843156843157,-0.31518481518481517,-0.3146853146853147,-0.3141858141858142,-0.31368631368631367,-0.3131868131868132,-0.3126873126873127,-0.31218781218781216,-0.3116883116883117,-0.3111888111888112,-0.3106893106893107,-0.3101898101898102,-0.3096903096903097,-0.3091908091908092,-0.3086913086913087,-0.3081918081918082,-0.3076923076923077,-0.30719280719280717,-0.3066933066933067,-0.3061938061938062,-0.30569430569430567,-0.3051948051948052,-0.3046953046953047,-0.3041958041958042,-0.3036963036963037,-0.3031968031968032,-0.3026973026973027,-0.3021978021978022,-0.3016983016983017,-0.3011988011988012,-0.3006993006993007,-0.3001998001998002,-0.2997002997002997,-0.29920079920079923,-0.2987012987012987,-0.2982017982017982,-0.2977022977022977,-0.2972027972027972,-0.2967032967032967,-0.2962037962037962,-0.2957042957042957,-0.2952047952047952,-0.2947052947052947,-0.2942057942057942,-0.2937062937062937,-0.2932067932067932,-0.29270729270729273,-0.2922077922077922,-0.2917082917082917,-0.29120879120879123,-0.2907092907092907,-0.2902097902097902,-0.2897102897102897,-0.2892107892107892,-0.2887112887112887,-0.2882117882117882,-0.28771228771228774,-0.2872127872127872,-0.2867132867132867,-0.28621378621378624,-0.2857142857142857,-0.2852147852147852,-0.28471528471528473,-0.2842157842157842,-0.2837162837162837,-0.28321678321678323,-0.2827172827172827,-0.2822177822177822,-0.2817182817182817,-0.28121878121878124,-0.2807192807192807,-0.2802197802197802,-0.27972027972027974,-0.2792207792207792,-0.2787212787212787,-0.27822177822177824,-0.2777222777222777,-0.2772227772227772,-0.27672327672327673,-0.2762237762237762,-0.2757242757242757,-0.27522477522477523,-0.27472527472527475,-0.2742257742257742,-0.27372627372627373,-0.27322677322677325,-0.2727272727272727,-0.2722277722277722,-0.27172827172827174,-0.2712287712287712,-0.2707292707292707,-0.27022977022977024,-0.26973026973026976,-0.2692307692307692,-0.26873126873126874,-0.26823176823176825,-0.2677322677322677,-0.26723276723276723,-0.26673326673326675,-0.2662337662337662,-0.26573426573426573,-0.26523476523476525,-0.2647352647352647,-0.2642357642357642,-0.26373626373626374,-0.26323676323676326,-0.2627372627372627,-0.26223776223776224,-0.26173826173826176,-0.2612387612387612,-0.26073926073926074,-0.26023976023976025,-0.2597402597402597,-0.25924075924075923,-0.25874125874125875,-0.25824175824175827,-0.25774225774225773,-0.25724275724275725,-0.25674325674325676,-0.2562437562437562,-0.25574425574425574,-0.25524475524475526,-0.2547452547452547,-0.25424575424575424,-0.25374625374625376,-0.2532467532467532,-0.25274725274725274,-0.25224775224775225,-0.2517482517482518,-0.25124875124875123,-0.25074925074925075,-0.25024975024975027,-0.24975024975024976,-0.24925074925074925,-0.24875124875124874,-0.24825174825174826,-0.24775224775224775,-0.24725274725274726,-0.24675324675324675,-0.24625374625374624,-0.24575424575424576,-0.24525474525474525,-0.24475524475524477,-0.24425574425574426,-0.24375624375624375,-0.24325674325674326,-0.24275724275724275,-0.24225774225774227,-0.24175824175824176,-0.24125874125874125,-0.24075924075924077,-0.24025974025974026,-0.23976023976023977,-0.23926073926073926,-0.23876123876123875,-0.23826173826173827,-0.23776223776223776,-0.23726273726273725,-0.23676323676323677,-0.23626373626373626,-0.23576423576423577,-0.23526473526473526,-0.23476523476523475,-0.23426573426573427,-0.23376623376623376,-0.23326673326673328,-0.23276723276723277,-0.23226773226773226,-0.23176823176823177,-0.23126873126873126,-0.23076923076923078,-0.23026973026973027,-0.22977022977022976,-0.22927072927072928,-0.22877122877122877,-0.22827172827172826,-0.22777222777222778,-0.22727272727272727,-0.22677322677322678,-0.22627372627372627,-0.22577422577422576,-0.22527472527472528,-0.22477522477522477,-0.2242757242757243,-0.22377622377622378,-0.22327672327672327,-0.22277722277722278,-0.22227772227772227,-0.2217782217782218,-0.22127872127872128,-0.22077922077922077,-0.2202797202797203,-0.21978021978021978,-0.2192807192807193,-0.21878121878121878,-0.21828171828171827,-0.2177822177822178,-0.21728271728271728,-0.21678321678321677,-0.2162837162837163,-0.21578421578421578,-0.2152847152847153,-0.21478521478521478,-0.21428571428571427,-0.2137862137862138,-0.21328671328671328,-0.2127872127872128,-0.2122877122877123,-0.21178821178821178,-0.2112887112887113,-0.21078921078921078,-0.2102897102897103,-0.2097902097902098,-0.20929070929070928,-0.2087912087912088,-0.2082917082917083,-0.2077922077922078,-0.2072927072927073,-0.20679320679320679,-0.2062937062937063,-0.2057942057942058,-0.20529470529470528,-0.2047952047952048,-0.2042957042957043,-0.2037962037962038,-0.2032967032967033,-0.20279720279720279,-0.2022977022977023,-0.2017982017982018,-0.2012987012987013,-0.2007992007992008,-0.2002997002997003,-0.1998001998001998,-0.1993006993006993,-0.19880119880119881,-0.1983016983016983,-0.1978021978021978,-0.1973026973026973,-0.1968031968031968,-0.1963036963036963,-0.1958041958041958,-0.1953046953046953,-0.19480519480519481,-0.1943056943056943,-0.1938061938061938,-0.1933066933066933,-0.1928071928071928,-0.19230769230769232,-0.1918081918081918,-0.1913086913086913,-0.19080919080919082,-0.1903096903096903,-0.18981018981018982,-0.1893106893106893,-0.1888111888111888,-0.18831168831168832,-0.1878121878121878,-0.18731268731268733,-0.18681318681318682,-0.1863136863136863,-0.18581418581418582,-0.1853146853146853,-0.1848151848151848,-0.18431568431568432,-0.1838161838161838,-0.18331668331668333,-0.18281718281718282,-0.1823176823176823,-0.18181818181818182,-0.1813186813186813,-0.18081918081918083,-0.18031968031968032,-0.1798201798201798,-0.17932067932067933,-0.17882117882117882,-0.17832167832167833,-0.17782217782217782,-0.1773226773226773,-0.17682317682317683,-0.17632367632367632,-0.17582417582417584,-0.17532467532467533,-0.17482517482517482,-0.17432567432567433,-0.17382617382617382,-0.17332667332667331,-0.17282717282717283,-0.17232767232767232,-0.17182817182817184,-0.17132867132867133,-0.17082917082917082,-0.17032967032967034,-0.16983016983016982,-0.16933066933066934,-0.16883116883116883,-0.16833166833166832,-0.16783216783216784,-0.16733266733266733,-0.16683316683316685,-0.16633366633366634,-0.16583416583416583,-0.16533466533466534,-0.16483516483516483,-0.16433566433566432,-0.16383616383616384,-0.16333666333666333,-0.16283716283716285,-0.16233766233766234,-0.16183816183816183,-0.16133866133866134,-0.16083916083916083,-0.16033966033966035,-0.15984015984015984,-0.15934065934065933,-0.15884115884115885,-0.15834165834165834,-0.15784215784215785,-0.15734265734265734,-0.15684315684315683,-0.15634365634365635,-0.15584415584415584,-0.15534465534465536,-0.15484515484515485,-0.15434565434565434,-0.15384615384615385,-0.15334665334665334,-0.15284715284715283,-0.15234765234765235,-0.15184815184815184,-0.15134865134865136,-0.15084915084915085,-0.15034965034965034,-0.14985014985014986,-0.14935064935064934,-0.14885114885114886,-0.14835164835164835,-0.14785214785214784,-0.14735264735264736,-0.14685314685314685,-0.14635364635364637,-0.14585414585414586,-0.14535464535464535,-0.14485514485514486,-0.14435564435564435,-0.14385614385614387,-0.14335664335664336,-0.14285714285714285,-0.14235764235764237,-0.14185814185814186,-0.14135864135864135,-0.14085914085914086,-0.14035964035964035,-0.13986013986013987,-0.13936063936063936,-0.13886113886113885,-0.13836163836163837,-0.13786213786213786,-0.13736263736263737,-0.13686313686313686,-0.13636363636363635,-0.13586413586413587,-0.13536463536463536,-0.13486513486513488,-0.13436563436563437,-0.13386613386613386,-0.13336663336663337,-0.13286713286713286,-0.13236763236763235,-0.13186813186813187,-0.13136863136863136,-0.13086913086913088,-0.13036963036963037,-0.12987012987012986,-0.12937062937062938,-0.12887112887112886,-0.12837162837162838,-0.12787212787212787,-0.12737262737262736,-0.12687312687312688,-0.12637362637362637,-0.1258741258741259,-0.12537462537462538,-0.12487512487512488,-0.12437562437562437,-0.12387612387612387,-0.12337662337662338,-0.12287712287712288,-0.12237762237762238,-0.12187812187812187,-0.12137862137862138,-0.12087912087912088,-0.12037962037962038,-0.11988011988011989,-0.11938061938061938,-0.11888111888111888,-0.11838161838161838,-0.11788211788211789,-0.11738261738261738,-0.11688311688311688,-0.11638361638361638,-0.11588411588411589,-0.11538461538461539,-0.11488511488511488,-0.11438561438561438,-0.11388611388611389,-0.11338661338661339,-0.11288711288711288,-0.11238761238761238,-0.11188811188811189,-0.11138861138861139,-0.1108891108891109,-0.11038961038961038,-0.10989010989010989,-0.10939060939060939,-0.1088911088911089,-0.10839160839160839,-0.10789210789210789,-0.10739260739260739,-0.1068931068931069,-0.1063936063936064,-0.10589410589410589,-0.10539460539460539,-0.1048951048951049,-0.1043956043956044,-0.1038961038961039,-0.10339660339660339,-0.1028971028971029,-0.1023976023976024,-0.1018981018981019,-0.10139860139860139,-0.1008991008991009,-0.1003996003996004,-0.0999000999000999,-0.09940059940059941,-0.0989010989010989,-0.0984015984015984,-0.0979020979020979,-0.09740259740259741,-0.0969030969030969,-0.0964035964035964,-0.0959040959040959,-0.09540459540459541,-0.09490509490509491,-0.0944055944055944,-0.0939060939060939,-0.09340659340659341,-0.09290709290709291,-0.0924075924075924,-0.0919080919080919,-0.09140859140859141,-0.09090909090909091,-0.09040959040959042,-0.0899100899100899,-0.08941058941058941,-0.08891108891108891,-0.08841158841158842,-0.08791208791208792,-0.08741258741258741,-0.08691308691308691,-0.08641358641358642,-0.08591408591408592,-0.08541458541458541,-0.08491508491508491,-0.08441558441558442,-0.08391608391608392,-0.08341658341658342,-0.08291708291708291,-0.08241758241758242,-0.08191808191808192,-0.08141858141858142,-0.08091908091908091,-0.08041958041958042,-0.07992007992007992,-0.07942057942057942,-0.07892107892107893,-0.07842157842157842,-0.07792207792207792,-0.07742257742257742,-0.07692307692307693,-0.07642357642357642,-0.07592407592407592,-0.07542457542457542,-0.07492507492507493,-0.07442557442557443,-0.07392607392607392,-0.07342657342657342,-0.07292707292707293,-0.07242757242757243,-0.07192807192807193,-0.07142857142857142,-0.07092907092907093,-0.07042957042957043,-0.06993006993006994,-0.06943056943056942,-0.06893106893106893,-0.06843156843156843,-0.06793206793206794,-0.06743256743256744,-0.06693306693306693,-0.06643356643356643,-0.06593406593406594,-0.06543456543456544,-0.06493506493506493,-0.06443556443556443,-0.06393606393606394,-0.06343656343656344,-0.06293706293706294,-0.06243756243756244,-0.061938061938061936,-0.06143856143856144,-0.060939060939060936,-0.06043956043956044,-0.059940059940059943,-0.05944055944055944,-0.058941058941058944,-0.05844155844155844,-0.057942057942057944,-0.05744255744255744,-0.056943056943056944,-0.05644355644355644,-0.055944055944055944,-0.05544455544455545,-0.054945054945054944,-0.05444555444555445,-0.053946053946053944,-0.05344655344655345,-0.052947052947052944,-0.05244755244755245,-0.05194805194805195,-0.05144855144855145,-0.05094905094905095,-0.05044955044955045,-0.04995004995004995,-0.04945054945054945,-0.04895104895104895,-0.04845154845154845,-0.04795204795204795,-0.047452547452547456,-0.04695304695304695,-0.046453546453546456,-0.04595404595404595,-0.045454545454545456,-0.04495504495504495,-0.044455544455544456,-0.04395604395604396,-0.043456543456543456,-0.04295704295704296,-0.042457542457542456,-0.04195804195804196,-0.041458541458541456,-0.04095904095904096,-0.040459540459540456,-0.03996003996003996,-0.039460539460539464,-0.03896103896103896,-0.038461538461538464,-0.03796203796203796,-0.037462537462537464,-0.03696303696303696,-0.036463536463536464,-0.03596403596403597,-0.035464535464535464,-0.03496503496503497,-0.034465534465534464,-0.03396603396603397,-0.033466533466533464,-0.03296703296703297,-0.032467532467532464,-0.03196803196803197,-0.03146853146853147,-0.030969030969030968,-0.030469530469530468,-0.029970029970029972,-0.029470529470529472,-0.028971028971028972,-0.028471528471528472,-0.027972027972027972,-0.027472527472527472,-0.026973026973026972,-0.026473526473526472,-0.025974025974025976,-0.025474525474525476,-0.024975024975024976,-0.024475524475524476,-0.023976023976023976,-0.023476523476523476,-0.022977022977022976,-0.022477522477522476,-0.02197802197802198,-0.02147852147852148,-0.02097902097902098,-0.02047952047952048,-0.01998001998001998,-0.01948051948051948,-0.01898101898101898,-0.01848151848151848,-0.017982017982017984,-0.017482517482517484,-0.016983016983016984,-0.016483516483516484,-0.015984015984015984,-0.015484515484515484,-0.014985014985014986,-0.014485514485514486,-0.013986013986013986,-0.013486513486513486,-0.012987012987012988,-0.012487512487512488,-0.011988011988011988,-0.011488511488511488,-0.01098901098901099,-0.01048951048951049,-0.00999000999000999,-0.00949050949050949,-0.008991008991008992,-0.008491508491508492,-0.007992007992007992,-0.007492507492507493,-0.006993006993006993,-0.006493506493506494,-0.005994005994005994,-0.005494505494505495,-0.004995004995004995,-0.004495504495504496,-0.003996003996003996,-0.0034965034965034965,-0.002997002997002997,-0.0024975024975024975,-0.001998001998001998,-0.0014985014985014985,-0.000999000999000999,-0.0004995004995004995,0.0]}
\ No newline at end of file
diff --git a/lib/node_modules/@stdlib/math/base/special/acosd/test/fixtures/julia/positive.json b/lib/node_modules/@stdlib/math/base/special/acosd/test/fixtures/julia/positive.json
new file mode 100644
index 000000000000..4992d9d571e7
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/acosd/test/fixtures/julia/positive.json
@@ -0,0 +1 @@
+{"expected":[90.0,89.97138072832385,89.94276144950719,89.91414215640943,89.88552284189,89.85690349880828,89.82828412002358,89.7996646983951,89.77104522678201,89.74242569804329,89.71380610503785,89.68518644062443,89.65656669766162,89.62794686900781,89.59932694752123,89.57070692605991,89.54208679748159,89.51346655464384,89.48484619040393,89.45622569761888,89.4276050691454,89.39898429783995,89.37036337655857,89.34174229815709,89.31312105549085,89.28449964141494,89.255878048784,89.22725627045227,89.1986342992736,89.1700121281014,89.14138974978862,89.11276715718772,89.08414434315075,89.0555213005292,89.02689802217405,88.99827450093579,88.96965072966434,88.94102670120904,88.91240240841869,88.88377784414145,88.85515300122493,88.82652787251607,88.79790245086117,88.76927672910587,88.74065070009514,88.71202435667331,88.68339769168391,88.6547706979698,88.62614336837312,88.59751569573518,88.56888767289662,88.54025929269721,88.51163054797595,88.48300143157103,88.45437193631977,88.42574205505869,88.39711178062336,88.36848110584855,88.33985002356808,88.31121852661487,88.2825866078209,88.25395426001722,88.22532147603388,88.19668824869997,88.16805457084358,88.13942043529178,88.11078583487063,88.08215076240509,88.05351521071914,88.02487917263561,87.99624264097625,87.96760560856173,87.93896806821155,87.9103300127441,87.88169143497656,87.85305232772501,87.82441268380427,87.79577249602796,87.76713175720853,87.73849046015711,87.70984859768362,87.68120616259668,87.65256314770365,87.62391954581054,87.59527534972207,87.56663055224162,87.5379851461712,87.50933912431141,87.48069247946155,87.45204520441943,87.4233972919815,87.39474873494272,87.3660995260966,87.33744965823523,87.30879912414917,87.28014791662746,87.25149602845767,87.22284345242576,87.19419018131622,87.16553620791191,87.13688152499414,87.10822612534257,87.07957000173526,87.05091314694869,87.0222555537576,86.99359721493511,86.96493812325264,86.93627827147988,86.90761765238489,86.87895625873387,86.85029408329136,86.8216311188201,86.79296735808104,86.76430279383334,86.73563741883429,86.70697122583944,86.6783042076024,86.64963635687496,86.62096766640701,86.59229812894651,86.56362773723954,86.53495648403025,86.50628436206077,86.47761136407134,86.44893748280016,86.42026271098345,86.39158704135541,86.36291046664819,86.3342329795919,86.30555457291456,86.27687523934213,86.24819497159845,86.21951376240523,86.19083160448206,86.16214849054636,86.13346441331336,86.10477936549617,86.07609333980562,86.04740632895036,86.01871832563675,85.99002932256897,85.96133931244887,85.93264828797601,85.90395624184767,85.87526316675878,85.84656905540194,85.8178739004674,85.789177694643,85.76048043061421,85.73178210106411,85.70308269867331,85.67438221612001,85.64568064607991,85.61697798122627,85.58827421422983,85.55956933775882,85.53086334447895,85.50215622705336,85.47344797814266,85.44473859040484,85.4160280564953,85.38731636906684,85.3586035207696,85.3298895042511,85.30117431215615,85.2724579371269,85.24374037180277,85.21502160882054,85.18630164081411,85.15758046041476,85.1288580602509,85.10013443294822,85.07140957112955,85.0426834674149,85.01395611442146,84.98522750476353,84.95649763105256,84.92776648589708,84.89903406190273,84.87030035167217,84.84156534780514,84.81282904289846,84.78409142954588,84.75535250033819,84.72661224786316,84.6978706647055,84.66912774344691,84.64038347666596,84.61163785693816,84.58289087683589,84.55414252892844,84.52539280578193,84.4966416999593,84.46788920402032,84.4391353105216,84.41038001201649,84.38162330105507,84.35286517018427,84.32410561194764,84.29534461888554,84.26658218353494,84.23781829842952,84.20905295609961,84.1802861490722,84.15151786987089,84.12274811101585,84.09397686502388,84.06520412440831,84.03642988167903,84.00765412934246,83.97887685990155,83.9500980658557,83.92131773970083,83.89253587392929,83.86375246102986,83.83496749348777,83.80618096378461,83.7773928643984,83.74860318780347,83.71981192647053,83.69101907286662,83.66222461945509,83.63342855869553,83.60463088304387,83.57583158495223,83.54703065686904,83.51822809123885,83.4894238805025,83.46061801709693,83.43181049345529,83.40300130200686,83.37419043517703,83.34537788538728,83.3165636450552,83.28774770659444,83.2589300624147,83.23011070492169,83.20128962651714,83.17246681959875,83.14364227656023,83.11481598979118,83.08598795167724,83.05715815459982,83.02832659093635,82.99949325306005,82.97065813334004,82.94182122414124,82.91298251782445,82.8841420067462,82.85529968325883,82.82645553971047,82.7976095684449,82.76876176180173,82.7399121121162,82.71106061171923,82.68220725293746,82.65335202809312,82.62449492950408,82.5956359494838,82.56677508034139,82.53791231438142,82.50904764390407,82.48018106120503,82.45131255857554,82.42244212830225,82.39356976266733,82.36469545394836,82.33581919441839,82.30694097634584,82.27806079199455,82.24917863362369,82.2202944934878,82.19140836383676,82.16252023691573,82.13363010496515,82.10473796022076,82.07584379491357,82.04694760126974,82.01804937151068,81.98914909785302,81.96024677250848,81.931342387684,81.9024359355816,81.87352740839842,81.84461679832668,81.8157040975537,81.78678929826181,81.75787239262837,81.72895337282573,81.70003223102124,81.67110895937724,81.64218355005094,81.61325599519456,81.58432628695518,81.5553944174747,81.52646037889001,81.49752416333273,81.46858576292932,81.4396451698011,81.41070237606407,81.38175737382906,81.35281015520161,81.32386071228197,81.29490903716508,81.26595512194056,81.2369989586927,81.20804053950037,81.1790798564371,81.15011690157097,81.12115166696464,81.09218414467531,81.06321432675473,81.03424220524913,81.0052677721992,80.97629101964012,80.94731193960152,80.91833052410739,80.88934676517619,80.86036065482068,80.83137218504804,80.80238134785971,80.7733881352515,80.74439253921348,80.71539455173,80.68639416477963,80.65739137033516,80.62838616036359,80.59937852682614,80.5703684616781,80.54135595686898,80.51234100434232,80.48332359603583,80.45430372388122,80.4252813798043,80.39625655572488,80.36722924355672,80.33819943520767,80.30916712257944,80.28013229756772,80.25109495206208,80.22205507794602,80.1930126670969,80.16396771138588,80.13492020267797,80.10587013283201,80.07681749370057,80.04776227713002,80.01870447496037,79.98964407902545,79.96058108115271,79.9315154731633,79.90244724687194,79.87337639408707,79.84430290661062,79.81522677623818,79.78614799475879,79.75706655395514,79.72798244560329,79.69889566147287,79.66980619332693,79.64071403292195,79.61161917200783,79.58252160232783,79.55342131561859,79.5243183036101,79.49521255802564,79.46610407058178,79.43699283298838,79.4078788369485,79.37876207415849,79.34964253630781,79.32052021507916,79.29139510214834,79.26226718918433,79.23313646784912,79.20400292979788,79.17486656667876,79.14572737013296,79.11658533179467,79.08744044329106,79.0582926962423,79.02914208226143,78.99998859295444,78.97083221992014,78.94167295475029,78.91251078902938,78.8833457143348,78.85417772223664,78.82500680429783,78.79583295207395,78.76665615711336,78.73747641095706,78.70829370513873,78.67910803118467,78.6499193806138,78.62072774493761,78.59153311566018,78.56233548427808,78.53313484228042,78.50393118114877,78.47472449235718,78.44551476737213,78.41630199765248,78.3870861746495,78.3578672898068,78.32864533456032,78.29942030033831,78.27019217856132,78.24096096064208,78.21172663798566,78.18248920198923,78.15324864404216,78.124004955526,78.09475812781443,78.06550815227315,78.03625502026001,78.00699872312488,77.97773925220962,77.94847659884812,77.91921075436622,77.88994171008169,77.86066945730423,77.8313939873354,77.80211529146865,77.77283336098924,77.74354818717424,77.7142597612925,77.68496807460463,77.65567311836294,77.62637488381145,77.59707336218585,77.56776854471352,77.53846042261334,77.50914898709591,77.4798342293633,77.45051614060915,77.4211947120186,77.39186993476828,77.36254180002626,77.33321029895203,77.30387542269646,77.27453716240184,77.24519550920175,77.2158504542211,77.18650198857608,77.15715010337416,77.127794789714,77.09843603868548,77.06907384136964,77.0397081888387,77.01033907215594,76.98096648237578,76.95159041054363,76.922210847696,76.89282778486034,76.86344121305515,76.83405112328978,76.80465750656457,76.77526035387068,76.74585965619019,76.71645540449596,76.68704758975167,76.65763620291176,76.62822123492143,76.59880267671652,76.56938051922366,76.53995475336004,76.5105253700335,76.48109236014251,76.45165571457603,76.42221542421362,76.39277147992529,76.36332387257156,76.33387259300336,76.30441763206206,76.27495898057941,76.24549662937748,76.21603056926872,76.1865607910558,76.15708728553169,76.1276100434796,76.09812905567293,76.06864431287522,76.0391558058402,76.00966352531165,75.98016746202349,75.95066760669961,75.92116395005398,75.89165648279052,75.86214519560313,75.83263007917557,75.80311112418157,75.77358832128465,75.74406166113818,75.71453113438533,75.68499673165903,75.65545844358194,75.62591626076643,75.5963701738145,75.56682017331782,75.53726624985767,75.50770839400485,75.47814659631976,75.44858084735228,75.41901113764172,75.3894374577169,75.35985979809602,75.33027814928666,75.3006925017857,75.2711028460794,75.24150917264328,75.21191147194203,75.18230973442967,75.15270395054928,75.12309411073319,75.09348020540274,75.06386222496845,75.03424015982979,75.0046140003753,74.97498373698245,74.94534936001772,74.91571085983642,74.88606822678281,74.8564214511899,74.82677052337961,74.79711543366254,74.76745617233809,74.73779272969432,74.70812509600799,74.67845326154449,74.64877721655779,74.61909695129042,74.58941245597347,74.5597237208265,74.53003073605755,74.50033349186305,74.47063197842786,74.44092618592512,74.4112161045164,74.38150172435145,74.35178303556833,74.32206002829327,74.29233269264068,74.26260101871314,74.23286499660131,74.20312461638389,74.17337986812767,74.14363074188736,74.1138772277057,74.08411931561331,74.0543569956287,74.02459025775822,73.99481909199602,73.96504348832407,73.93526343671203,73.90547892711727,73.87568994948484,73.84589649374736,73.81609854982514,73.78629610762592,73.75648915704501,73.72667768796519,73.6968616902567,73.6670411537771,73.6372160683714,73.60738642387187,73.57755221009809,73.54771341685685,73.5178700339422,73.48802205113532,73.4581694582045,73.42831224490517,73.39845040097977,73.36858391615777,73.33871278015559,73.30883698267661,73.27895651341109,73.24907136203615,73.21918151821568,73.18928697160042,73.15938771182778,73.12948372852189,73.09957501129354,73.06966154974009,73.03974333344554,73.00982035198037,72.97989259490159,72.9499600517526,72.92002271206327,72.89008056534985,72.86013360111484,72.83018180884709,72.80022517802169,72.77026369809991,72.7402973585292,72.71032614874314,72.68035005816134,72.6503690761895,72.62038319221932,72.5903923956284,72.56039667578028,72.53039602202439,72.50039042369595,72.47037987011598,72.44036435059124,72.41034385441417,72.38031837086288,72.3502878892011,72.32025239867811,72.29021188852872,72.26016634797323,72.23011576621734,72.2000601324522,72.16999943585427,72.13993366558532,72.10986281079238,72.07978686060771,72.04970580414874,72.01961963051801,71.98952832880316,71.95943188807686,71.92933029739677,71.8992235458055,71.86911162233056,71.83899451598434,71.80887221576398,71.77874471065147,71.74861198961347,71.71847404160128,71.68833085555092,71.6581824203829,71.62802872500232,71.59786975829874,71.56770550914621,71.5375359664031,71.50736111891216,71.47718095550049,71.44699546497934,71.41680463614429,71.38660845777497,71.35640691863519,71.32620000747278,71.2959877130196,71.26577002399151,71.23554692908823,71.20531841699339,71.17508447637445,71.14484509588259,71.11460026415277,71.08434996980358,71.05409420143728,71.02383294763968,70.99356619698008,70.96329393801138,70.93301615926974,70.90273284927484,70.87244399652963,70.84214958952029,70.8118496167163,70.7815440665703,70.75123292751803,70.72091618797835,70.69059383635306,70.66026586102703,70.62993225036797,70.59959299272651,70.5692480764361,70.53889748981291,70.50854122115585,70.4781792587465,70.44781159084906,70.41743820571023,70.38705909155927,70.35667423660786,70.3262836290501,70.2958872570624,70.26548510880352,70.2350771724144,70.20466343601817,70.17424388772014,70.14381851560763,70.11338730775003,70.08295025219866,70.05250733698679,70.0220585501295,69.99160387962374,69.96114331344813,69.93067683956306,69.90020444591049,69.869726120414,69.83924185097867,69.80875162549108,69.77825543181919,69.74775325781236,69.7172450913012,69.68673092009759,69.65621073199458,69.62568451476638,69.59515225616825,69.56461394393645,69.53406956578824,69.50351910942175,69.47296256251592,69.44239991273054,69.41183114770605,69.38125625506365,69.35067522240506,69.32008803731256,69.28949468734896,69.25889516005746,69.22828944296167,69.19767752356545,69.16705938935294,69.13643502778851,69.10580442631658,69.07516757236168,69.04452445332836,69.0138750566011,68.98321936954423,68.95255737950197,68.92188907379825,68.89121443973674,68.8605334646007,68.829846135653,68.79915244013601,68.76845236527156,68.73774589826085,68.70703302628444,68.67631373650207,68.64558801605278,68.61485585205469,68.58411723160498,68.55337214177985,68.52262056963446,68.49186250220279,68.4610979264977,68.43032682951075,68.39954919821218,68.3687650195509,68.3379742804543,68.30717696782828,68.27637306855718,68.24556256950365,68.21474545750864,68.18392171939135,68.15309134194908,68.12225431195726,68.09141061616927,68.06056024131651,68.02970317410823,67.99883940123146,67.96796890935103,67.9370916851094,67.90620771512665,67.8753169860004,67.84441948430573,67.81351519659513,67.78260410939838,67.75168620922254,67.7207614825519,67.68982991584777,67.65889149554859,67.6279462080697,67.5969940398034,67.56603497711883,67.53506900636181,67.50409611385493,67.47311628589732,67.44212950876472,67.41113576870929,67.38013505195957,67.34912734472049,67.31811263317319,67.28709090347493,67.25606214175917,67.22502633413532,67.19398346668876,67.16293352548074,67.13187649654833,67.10081236590429,67.06974111953706,67.03866274341063,67.0075772234645,66.97648454561357,66.94538469574809,66.91427765973359,66.88316342341076,66.85204197259542,66.82091329307839,66.78977737062552,66.7586341909774,66.72748373984955,66.69632600293211,66.66516096588994,66.63398861436238,66.60280893396327,66.5716219102809,66.54042752887777,66.50922577529072,66.47801663503064,66.44680009358261,66.4155761364056,66.38434474893255,66.35310591657017,66.32185962469897,66.29060585867308,66.25934460382021,66.22807584544158,66.19679956881181,66.16551575917886,66.13422440176389,66.10292548176123,66.07161898433831,66.04030489463553,66.00898319776617,65.97765387881631,65.9463169228448,65.91497231488312,65.88362003993527,65.85226008297772,65.82089242895937,65.78951706280134,65.758133969397,65.72674313361178,65.69534454028319,65.66393817422065,65.63252402020538,65.60110206299045,65.56967228730049,65.53823467783178,65.50678921925204,65.47533589620038,65.44387469328723,65.4124055950942,65.38092858617402,65.34944365105046,65.3179507742182,65.28644994014279,65.25494113326044,65.22342433797807,65.19189953867316,65.16036671969356,65.12882586535761,65.09727695995382,65.06571998774089,65.03415493294762,65.00258177977274,64.97100051238492,64.93941111492255,64.90781357149373,64.87620786617616,64.84459398301702,64.81297190603286,64.78134161920951,64.74970310650205,64.71805635183459,64.68640133910024,64.65473805216102,64.6230664748477,64.59138659095976,64.55969838426526,64.52800183850071,64.49629693737107,64.4645836645495,64.43286200367734,64.40113193836403,64.36939345218694,64.33764652869134,64.30589115139018,64.27412730376413,64.24235496926134,64.21057413129743,64.17878477325534,64.14698687848521,64.11518043030429,64.08336541199688,64.05154180681411,64.01970959797396,63.987868768660995,63.95601930202644,63.92416118118793,63.892294389229434,63.860418909201165,63.828534724119486,63.796641816966726,63.76474017069114,63.732829768206734,63.700910592393235,63.668982626095854,63.63704585212533,63.605100253257675,63.57314581223411,63.541182511760965,63.50921033450955,63.47722926311605,63.445239280181376,63.41324036827107,63.381232509915215,63.349215687608215,63.31718988380883,63.28515508093994,63.25311126138841,63.221058407505105,63.188996501604606,63.15692552596523,63.12484546282879,63.09275629440054,63.06065800284905,63.02855057030607,62.99643397886638,62.96430821058772,62.93217324749061,62.90002907155827,62.8678756647365,62.83571300893347,62.80354108601967,62.77135987782782,62.739169366152595,62.70696953275066,62.67476035934043,62.642541827602,62.61031391917698,62.578076615668394,62.5458298986405,62.51357374961871,62.481308150089475,62.44903308150006,62.41674852525848,62.38445446273337,62.35215087525385,62.3198377441093,62.28751505054936,62.25518277578374,62.22284090098203,62.190489407273624,62.15812827574758,62.125757487452454,62.09337702339616,62.06098686454588,62.02858699182785,61.996177386127286,61.96375802828818,61.93132889911324,61.89888997936367,61.86644124975903,61.83398269097717,61.80151428365402,61.76903600838341,61.73654784571706,61.704049776164254,61.67154178019185,61.639023838224055,61.606495930642275,61.573958037785005,61.5414101399476,61.50885221738229,61.4762842502978,61.44370621885939,61.411118103188635,61.37851988336323,61.345911539416896,61.31329305133922,61.28066439907548,61.248025562526486,61.21537652154844,61.182717255952774,61.15004774550601,61.117367969929546,61.08467790889959,61.05197754204692,61.01926684895674,60.986545809168554,60.953814402175944,60.92107260742651,60.888320404321576,60.85555777221615,60.822784690418665,60.79000113819085,60.75720709474761,60.724402539256765,60.69158745083897,60.65876180856748,60.625925591468075,60.59307877851875,60.56022134864966,60.52735328074295,60.49447455363247,60.46158514610373,60.4286850368937,60.39577420469054,60.362852628133545,60.32992028581294,60.296977156269655,60.264023217995174,60.23105844943139,60.198082828970406,60.165096334954285,60.13209894567504,60.09909063937424,60.066071394243025,60.033041188421755,60.00000000000001,59.96694780701618,59.9338845874575,59.90081031925971,59.867724980306974,59.83462854843159,59.8015210014139,59.76840231698203,59.73527247281175,59.70213144652622,59.66897921569589,59.63581575783823,59.602641050417546,59.56945507084485,59.53625779647755,59.503049204619394,59.469829272520144,59.436597977375456,59.40335529632667,59.370101206460596,59.33683568480929,59.30355870834992,59.270270254004494,59.236970298639704,59.2036588190667,59.17033579204089,59.137001194261714,59.10365500237249,59.07029719296016,59.03692774255507,59.00354662763082,58.97015382460399,58.93674930983396,58.90333305962269,58.86990505021453,58.83646525779595,58.80301365849539,58.76955022838297,58.73607494347035,58.70258777971046,58.66908871299728,58.63557771916566,58.60205477399107,58.56851985318933,58.534972932416515,58.50141398726856,58.4678429932812,58.43425992592962,58.40066476062829,58.3670574727307,58.33343803752919,58.299806430254634,58.266162626076266,58.23250660010142,58.198838327375334,58.165157782880854,58.131464941538255,58.09775977820496,58.0640422676753,58.03031238468033,57.99657010388752,57.96281539990056,57.929048247259104,57.895268620438465,57.861476493849466,57.827671841838175,57.79385463868556,57.76002485860735,57.72618247575376,57.69232746420917,57.65845979799196,57.62457945105424,57.5906863972815,57.55678061049251,57.52286206443892,57.48893073280508,57.45498658920776,57.42102960719588,57.38705976025025,57.353077021783314,57.31908136513888,57.28507276359182,57.251051190347894,57.21701661854335,57.182969021244745,57.1489083714487,57.114834642081476,57.08074780599888,57.04664783598588,57.012534704756334,56.97840838495276,56.944268849146,56.91011606983498,56.8759500194464,56.841770670334476,56.80757799478061,56.77337196499314,56.739152553107076,56.70491973118369,56.670673471210414,56.63641374510035,56.60214052469211,56.56785378174946,56.53355348796107,56.49923961494014,56.46491213422416,56.430571017274566,56.3962162354765,56.36184776013847,56.327465562491966,56.29306961369129,56.25865988481315,56.224236346856394,56.18979897074166,56.15534772731111,56.12088258732804,56.08640352147664,56.05191050036165,56.017403494508,55.982882474360544,55.9483474102837,55.91379827256112,55.87923503139538,55.844657656907685,55.81006611913743,55.77546038804199,55.74084043349633,55.706206225292625,55.67155773314001,55.6368949266642,55.6022177754071,55.56752624882656,55.532820316295954,55.498099947103846,55.463365110453694,55.428615775463406,55.393851911165065,55.35907348650458,55.32428047034122,55.289472831447426,55.25465053850832,55.219813560121366,55.18496186479606,55.15009542095352,55.11521419692612,55.080318160957134,55.04540728120039,55.010481525719804,54.97554086248913,54.94058525939152,54.905614684219096,54.87062910467266,54.83562848836128,54.800612802801865,54.76558201541883,54.73053609354368,54.695475004414625,54.6603987151762,54.62530719287883,54.59020040447847,54.55507831683624,54.519940896717884,54.484788110793545,54.44961992563724,54.414436307726476,54.379237223441876,54.344022639066715,54.30879252078654,54.27354683468875,54.238285546762164,54.20300862289659,54.167716028882445,54.13240773041028,54.09708369307037,54.061743882352296,54.0263882636445,53.991016802233844,53.95562946330517,53.920226211940886,53.88480701312049,53.84937183172016,53.81392063251225,53.77845338016491,53.7429700392416,53.70747057420059,53.67195494939461,53.6364231290703,53.600875077367746,53.565310758320095,53.529730135852994,53.494133173784185,53.458519835823,53.42289008556991,53.387243886515996,53.35158120204253,53.315901995420475,53.28020622980995,53.24449386825981,53.208764873707125,53.17301920897666,53.13725683678044,53.10147771971716,53.06568182027177,53.02986910081495,52.99403952360254,52.9581930507751,52.92232964435737,52.88644926625774,52.85055187826776,52.81463744206159,52.77870591919546,52.7427572711072,52.70679145911568,52.670808444420196,52.63480818810008,52.598790651114065,52.56275579429971,52.52670357837296,52.4906339639275,52.45454691143424,52.418442381240766,52.38232033357077,52.346180728523436,52.31002352607301,52.273848686068064,52.237656168231034,52.20144593215762,52.16521793731616,52.128972143047115,52.092708508562446,52.05642699294501,52.02012755514801,51.983810153994355,51.94747474817606,51.91112129625371,51.87474975665576,51.838360087677955,51.80195224748277,51.76552619409872,51.729081885419745,51.69261927920464,51.656138333076385,51.619639004521474,51.583121250889384,51.54658502939183,51.51003029710215,51.47345701095471,51.43686512774417,51.40025460412489,51.36362539661024,51.326977461571936,51.290310755239396,51.25362523369903,51.2169208528936,51.18019756862152,51.143455336536185,51.106694112145256,51.06991385080998,51.03311450774454,50.996296038015274,50.959458396540015,50.9226015380874,50.885725417276085,50.84882998857412,50.811915206298146,50.77498102461272,50.73802739752956,50.70105427890682,50.664061622448315,50.62704938170285,50.59001751006338,50.552965960766336,50.51589468689082,50.47880364135783,50.44169277692955,50.40456204620851,50.367411401636865,50.33024079549556,50.2930501799036,50.255839506817196,50.21860872802902,50.181357795167365,50.144086659695354,50.106795272910134,50.069483585942066,50.032151549753856,49.99479911513977,49.957426232724806,49.920032852963814,49.88261892614069,49.84518440236751,49.80772923158368,49.7702533635551,49.732756747873225,49.69523933395428,49.657701071038346,49.620141908188465,49.58256179428978,49.544960678048625,49.50733850799162,49.46969523246479,49.432030799632635,49.3943451574772,49.356638253797215,49.31891003620709,49.28116045213601,49.24338944882702,49.20559697333604,49.167782972530944,49.12994739309057,49.0920901815038,49.05421128406851,49.01631064689068,48.978388215883385,48.94044393676575,48.90247775506203,48.86448961610054,48.82647946501271,48.78844724673201,48.75039290599295,48.71231638733007,48.67421763507686,48.63609659336474,48.597953206122035,48.55978741707287,48.52159916973611,48.48338840742433,48.4451550732427,48.40689911008789,48.368620460647016,48.3303190673965,48.291994872601,48.25364781831224,48.21527784636794,48.176884898390654,48.138468915786646,48.100029839744735,48.06156761123514,48.02308217100833,47.98457345959384,47.94604141729908,47.90748598420822,47.86890710018089,47.83030470485105,47.79167873762578,47.753029137684,47.71435584397533,47.6756587952188,47.63693792990157,47.59819318627779,47.55942450236722,47.52063181595404,47.48181506458553,47.44297418557082,47.404109115979495,47.36521979264046,47.32630615214046,47.28736813082284,47.248405664786205,47.209418689883066,47.170407141718464,47.13137095564867,47.09231006677974,47.053224409966205,47.014113919809624,46.97497853065721,46.93581817660042,46.896632791473536,46.85742230885221,46.81818666205206,46.77892578412719,46.739639607868725,46.7003280658034,46.66099109019197,46.62162861302782,46.58224056603541,46.54282688066877,46.50338748810996,46.463922319267546,46.424431304775105,46.38491437498952,46.345371459989586,46.30580248957433,46.266207393261396,46.226586100285516,46.18693853959685,46.14726463985935,46.10756432944915,46.06783753645288,46.02808418866602,45.98830421359125,45.94849753843669,45.908664090114264,45.86880379523797,45.82891658012213,45.78900237077966,45.74906109292036,45.70909267194905,45.669097032963904,45.62907410075461,45.58902379980049,45.54894605426883,45.50884078801295,45.46870792457033,45.42854738716085,45.38835909868482,45.34814298172117,45.307898958525456,45.267626951028056,45.22732688083211,45.1869986692117,45.14664223710976,45.106257505136234,45.065844393565996,45.025402822336815,44.98493271104745,44.94443397895551,44.903906544975406,44.86335032767634,44.82276524528021,44.78215121565942,44.741508156334866,44.70083598447378,44.6601346168875,44.61940397002941,44.57864395999271,44.537854502508175,44.497035512942,44.456186906293524,44.415308597192976,44.37440049989923,44.333462528297495,44.292494595897,44.25149661582867,44.210468500842794,44.169410163306665,44.12832151520218,44.08720246812343,44.046052933274304,44.00487282146606,43.963662043114795,43.922420508239064,43.881148126457305,43.83984480698533,43.79851045863385,43.75714498980582,43.71574830849391,43.6743203222779,43.63286093832206,43.591370063372466,43.549847603754394,43.5082934653696,43.46670755369358,43.425089773772896,43.38344003022239,43.341758227222385,43.30004426851595,43.25829805740598,43.21651949675244,43.17470848896944,43.13286493602238,43.09098873942497,43.04907980023635,43.007138019058075,42.965163296031164,42.92315553083306,42.881114622674545,42.839040470296766,42.796932971968054,42.754792025480846,42.71261752814851,42.67040937680223,42.62816746778771,42.58589169696201,42.5435819596903,42.50123815084252,42.45886016479012,42.41644789540269,42.37400123604459,42.33152007957159,42.289004318327365,42.24645384414012,42.20386854831908,42.161248321650895,42.11859305439622,42.07590263628605,42.033176956518105,41.99041590375324,41.947619366111745,41.9047872311696,41.86191938595481,41.819015716943596,41.77607611005653,41.73310045065483,41.69008862353636,41.64704051293177,41.60395600250058,41.56083497532717,41.51767731391675,41.474482900191354,41.43125161548575,41.38798334054324,41.34467795551163,41.3013353399389,41.25795537276908,41.21453793233792,41.17108289636855,41.12759014196719,41.08405954561873,41.04049098318228,40.99688432988673,40.95323946032624,40.909556248455615,40.8658345675858,40.82207429037919,40.778275288844945,40.73443743433429,40.69056059753572,40.64664464847019,40.60268945648628,40.55869489025526,40.514660817766135,40.47058710632068,40.42647362252837,40.3823202323013,40.33812680084905,40.293893192673444,40.24961927156339,40.20530490058957,40.16094994209902,40.1165542577099,40.072117708305875,40.027640154030756,39.98312145428289,39.938561467709576,39.8939600522014,39.84931706488655,39.80463236212504,39.759905799502874,39.715137231826205,39.67032651311537,39.62547349659889,39.58057803470747,39.53563997906785,39.49065918049663,39.44563548899405,39.400568753737716,39.3554588230762,39.31030554452267,39.26510876474839,39.21986832957614,39.17458408397368,39.12925587204697,39.083883537033515,39.03846692129553,38.993005866312984,38.94750021267678,38.90194980008162,38.85635446731893,38.810714052269766,38.7650283918975,38.71929732224054,38.67352067840491,38.627698294556865,38.58183000391522,38.535915638743866,38.48995503034401,38.44394800904635,38.39789440420334,38.35179404418115,38.30564675635165,38.25945236708436,38.21321070173819,38.166921584653245,38.12058483914238,38.07420028748279,38.027767750907444,37.98128704959649,37.93475800266846,37.888180428171545,37.84155414307463,37.79487896325825,37.74815470350555,37.70138117749308,37.654558197781434,37.607685575805895,37.56076312186696,37.51379064512063,37.46676795356879,37.419694854049396,37.37257115222645,37.32539665258007,37.27817115839631,37.23089447175688,37.18356639352882,37.13618672335395,37.08875525963833,37.04127179954154,36.99373613896578,36.94614807254497,36.89850739363365,36.85081389429574,36.80306736529326,36.75526759607485,36.70741437476413,36.65950748814803,36.611546721664936,36.563531859392654,36.5154626840363,36.46733897691606,36.419160517954715,36.370927085665166,36.32263845713767,36.274294408027025,36.225894712539564,36.177439143420024,36.128927471938205,36.0803594678756,36.03173489951166,35.983053533610125,35.93431513540505,35.88551946858665,35.83666629528713,35.787755376066194,35.738786469896404,35.68975933414844,35.640673724576146,35.59152939530132,35.54232609879846,35.49306358587924,35.443741605676735,35.394359905629656,35.344918231466174,35.29541632718765,35.24585393505221,35.19623079555801,35.14654664742634,35.09680122758459,35.046994271148904,34.997125511406594,34.94719467979854,34.89720150590114,34.84714571740807,34.797027040111985,34.74684519788578,34.69659991266379,34.64629090442258,34.5959178911616,34.54548058888363,34.494978711574866,34.44441197118479,34.39378007760584,34.34308273865277,34.292319660041656,34.24149054536885,34.190595096089446,34.13963301149556,34.088603988694345,34.03750772258566,33.986343905839455,33.93511222887295,33.88381237982739,33.83244404454448,33.78100690654268,33.72950064699303,33.67792494469465,33.62627947605001,33.57456391503973,33.52277793319726,33.47092119958295,33.41899338075791,33.36699414075758,33.31492314106481,33.262780040582534,33.210564495606334,33.15827615979629,33.10591468414866,33.0534797169671,33.00097090383349,32.94838788757833,32.89573030825075,32.842997803088096,32.79019000648507,32.73730654996246,32.68434706213541,32.63131116868118,32.578198492306626,32.52500865271499,32.471741266572344,32.41839594747358,32.36497230590773,32.31146994922306,32.257888481591394,32.204227503972035,32.15048661407519,32.09666540632483,32.042763471820884,31.988780398301085,31.934715770102148,31.880569168120253,31.826340169771175,31.772028348949657,31.717633275988153,31.663154517615066,31.608591636912298,31.55394419327209,31.499211742353328,31.444393836037094,31.389490022381526,31.33449984557608,31.27942284589499,31.22425855965001,31.169006519142517,31.113666252614724,31.058237284200285,31.002719133873992,30.947111317400715,30.891413346283617,30.83562472771144,30.779744964504957,30.723773555062678,30.667709993305586,30.611553768620915,30.555304365805277,30.49896126500657,30.442523941665097,30.38599186645374,30.32936450521708,30.27264131890952,30.21582176353246,30.158905290070383,30.101891344425784,30.044779367353236,29.987568794392164,29.93025905579847,29.872849576475218,29.815339775901876,29.75772906806257,29.700016861372987,29.642202558606026,29.58428555681628,29.526265247263105,29.468141015332343,29.4099122404568,29.351578296035253,29.293138549349955,29.234592361482903,29.175939087230443,29.11717807501636,29.05830866680359,28.99933019800416,28.940241997387567,28.881043386987603,28.82173368200738,28.762312190722604,28.702778214383248,28.64313104711325,28.583369975808424,28.523494280032544,28.46350323191139,28.40339609602493,28.34317212929742,28.282830580885406,28.22237069206373,28.16179169610927,28.101092818182476,28.04027327520674,27.979332275745342,27.91826901987603,27.857082699063277,27.795772496027972,27.734337584614515,27.672777129655458,27.611090286833374,27.549276202539954,27.487334013732468,27.425262847787202,27.363061822349994,27.300730045183865,27.23826661401343,27.17567061636619,27.112941129410697,27.050077219791177,26.987077943459006,26.923942345500524,26.86066945996127,26.797258309666685,26.73370790603894,26.67001724890989,26.60618532633018,26.542211114374197,26.478093576940832,26.413831665550102,26.34942431913524,26.284870463830305,26.22016901275326,26.155318865784203,26.09031890933871,26.02516801613629,25.959865044963575,25.894408840432213,25.828798232731486,25.76303203737519,25.697109054942782,25.631028070814818,25.564787854902054,25.49838716136858,25.431824728348392,25.365099277655375,25.298209514486626,25.23115412711872,25.16393178659676,25.096541146416193,25.028980842196923,24.961249491349577,24.893345692733877,24.82526802630859,24.757015052772935,24.68858531319936,24.619977328657107,24.55118959982646,24.482220606603548,24.413068807695048,24.34373264020275,24.274210519197652,24.204500837283177,24.134601964147066,24.064512246101984,23.994230005613943,23.923753540818673,23.853081125025138,23.782211006205994,23.711141406474646,23.63987052154821,23.568396520196067,23.496717543673675,23.42483170514082,23.352737089064025,23.28043175060261,23.207913714977646,23.13518097682337,23.062231499520525,22.989063214510793,22.91567402059178,22.84206178319202,22.768224333624985,22.694159468321587,22.61986494804042,22.54533849705477,22.470577802315656,22.39558051259019,22.32034423757395,22.244866546976933,22.169144969581644,22.093176992272493,22.016960059035586,21.940491569927406,21.86376888001147,21.78678929826181,21.709550086431687,21.632048457886444,21.554281576399074,21.47624655490691,21.397940454227932,21.31936028173528,21.240502989987952,21.1613654753161,21.08194457635922,21.002237072554948,20.922239682576617,20.84194906271757,20.761361805219696,20.680474436543914,20.599283415580413,20.517785131795502,20.435975903312926,20.35385197492628,20.271409516039704,20.188644618533825,20.105553294553236,20.022131474212156,19.93837500321474,19.85427964038572,19.76984105510741,19.685054824658913,19.599916431452538,19.514421260162706,19.42856459474239,19.342341615321292,19.255747394980162,19.168776896395315,19.081424968346596,18.993686342082054,18.905555627532316,18.81702730936661,18.728095742882427,18.63875514972039,18.54899961339474,18.458823074629912,18.368219326492934,18.27718200931018,18.185704605357238,18.09378043330895,18.001402642436386,17.908564206536763,17.815257917580684,17.721476379060704,17.627211999024023,17.532456982770412,17.4372033251957,17.341442802759754,17.245166965055805,17.148367125956877,17.051034354313295,16.953159464172735,16.854733004492736,16.755745248313286,16.65618618135407,16.55604548999875,16.455312548625734,16.353976406241074,16.252025772366075,16.149449002128545,16.046234080501335,15.942368605628634,15.837839771173998,15.732634347619268,15.626738662437434,15.520138579054967,15.412819474512256,15.304766215722648,15.195963134220534,15.08639399927962,14.97604198927111,14.86488966111848,14.752918917692103,14.640110972971616,14.526446314785883,14.41190466492167,14.29646493637063,14.180105187459052,14.062802572578365,13.944533289203587,13.825272520851554,13.70499437559241,13.583671819683431,13.46127660584312,13.337779195627782,13.213148675306133,13.08735266455403,12.960357217206145,12.832126713202888,12.70262374075901,12.571808967650426,12.439641000364748,12.30607622968732,12.171068661091503,12.034569728064074,11.896528086219595,11.756889385731114,11.615596019218488,11.472586841780274,11.327796859312787,11.181156880611827,11.032593127977256,10.88202680010615,10.72937357992857,10.57454307866581,10.417438205710237,10.257954451858375,10.095979070876169,9.931390141194873,9.764055485556593,9.593831421408158,9.420561308462045,9.24407385167425,9.064181107336152,8.880676126220694,8.69333014961737,8.50188925000348,8.30607027568866,8.105555914622174,7.899988631598873,7.688963147700683,7.472017009226892,7.248618617167867,7.01815182787477,6.779895842241023,6.532998491850062,6.2764400616619636,6.008983197766148,5.729101739793097,5.4348765072952885,5.123837093961034,4.792710952395244,4.437003217665115,4.05024248501538,3.6224960946559825,3.137042977050463,2.56127820061115,1.8110217780143116,0.0],"x":[0.0,0.0004995004995004995,0.000999000999000999,0.0014985014985014985,0.001998001998001998,0.0024975024975024975,0.002997002997002997,0.0034965034965034965,0.003996003996003996,0.004495504495504496,0.004995004995004995,0.005494505494505495,0.005994005994005994,0.006493506493506494,0.006993006993006993,0.007492507492507493,0.007992007992007992,0.008491508491508492,0.008991008991008992,0.00949050949050949,0.00999000999000999,0.01048951048951049,0.01098901098901099,0.011488511488511488,0.011988011988011988,0.012487512487512488,0.012987012987012988,0.013486513486513486,0.013986013986013986,0.014485514485514486,0.014985014985014986,0.015484515484515484,0.015984015984015984,0.016483516483516484,0.016983016983016984,0.017482517482517484,0.017982017982017984,0.01848151848151848,0.01898101898101898,0.01948051948051948,0.01998001998001998,0.02047952047952048,0.02097902097902098,0.02147852147852148,0.02197802197802198,0.022477522477522476,0.022977022977022976,0.023476523476523476,0.023976023976023976,0.024475524475524476,0.024975024975024976,0.025474525474525476,0.025974025974025976,0.026473526473526472,0.026973026973026972,0.027472527472527472,0.027972027972027972,0.028471528471528472,0.028971028971028972,0.029470529470529472,0.029970029970029972,0.030469530469530468,0.030969030969030968,0.03146853146853147,0.03196803196803197,0.032467532467532464,0.03296703296703297,0.033466533466533464,0.03396603396603397,0.034465534465534464,0.03496503496503497,0.035464535464535464,0.03596403596403597,0.036463536463536464,0.03696303696303696,0.037462537462537464,0.03796203796203796,0.038461538461538464,0.03896103896103896,0.039460539460539464,0.03996003996003996,0.040459540459540456,0.04095904095904096,0.041458541458541456,0.04195804195804196,0.042457542457542456,0.04295704295704296,0.043456543456543456,0.04395604395604396,0.044455544455544456,0.04495504495504495,0.045454545454545456,0.04595404595404595,0.046453546453546456,0.04695304695304695,0.047452547452547456,0.04795204795204795,0.04845154845154845,0.04895104895104895,0.04945054945054945,0.04995004995004995,0.05044955044955045,0.05094905094905095,0.05144855144855145,0.05194805194805195,0.05244755244755245,0.052947052947052944,0.05344655344655345,0.053946053946053944,0.05444555444555445,0.054945054945054944,0.05544455544455545,0.055944055944055944,0.05644355644355644,0.056943056943056944,0.05744255744255744,0.057942057942057944,0.05844155844155844,0.058941058941058944,0.05944055944055944,0.059940059940059943,0.06043956043956044,0.060939060939060936,0.06143856143856144,0.061938061938061936,0.06243756243756244,0.06293706293706294,0.06343656343656344,0.06393606393606394,0.06443556443556443,0.06493506493506493,0.06543456543456544,0.06593406593406594,0.06643356643356643,0.06693306693306693,0.06743256743256744,0.06793206793206794,0.06843156843156843,0.06893106893106893,0.06943056943056942,0.06993006993006994,0.07042957042957043,0.07092907092907093,0.07142857142857142,0.07192807192807193,0.07242757242757243,0.07292707292707293,0.07342657342657342,0.07392607392607392,0.07442557442557443,0.07492507492507493,0.07542457542457542,0.07592407592407592,0.07642357642357642,0.07692307692307693,0.07742257742257742,0.07792207792207792,0.07842157842157842,0.07892107892107893,0.07942057942057942,0.07992007992007992,0.08041958041958042,0.08091908091908091,0.08141858141858142,0.08191808191808192,0.08241758241758242,0.08291708291708291,0.08341658341658342,0.08391608391608392,0.08441558441558442,0.08491508491508491,0.08541458541458541,0.08591408591408592,0.08641358641358642,0.08691308691308691,0.08741258741258741,0.08791208791208792,0.08841158841158842,0.08891108891108891,0.08941058941058941,0.0899100899100899,0.09040959040959042,0.09090909090909091,0.09140859140859141,0.0919080919080919,0.0924075924075924,0.09290709290709291,0.09340659340659341,0.0939060939060939,0.0944055944055944,0.09490509490509491,0.09540459540459541,0.0959040959040959,0.0964035964035964,0.0969030969030969,0.09740259740259741,0.0979020979020979,0.0984015984015984,0.0989010989010989,0.09940059940059941,0.0999000999000999,0.1003996003996004,0.1008991008991009,0.10139860139860139,0.1018981018981019,0.1023976023976024,0.1028971028971029,0.10339660339660339,0.1038961038961039,0.1043956043956044,0.1048951048951049,0.10539460539460539,0.10589410589410589,0.1063936063936064,0.1068931068931069,0.10739260739260739,0.10789210789210789,0.10839160839160839,0.1088911088911089,0.10939060939060939,0.10989010989010989,0.11038961038961038,0.1108891108891109,0.11138861138861139,0.11188811188811189,0.11238761238761238,0.11288711288711288,0.11338661338661339,0.11388611388611389,0.11438561438561438,0.11488511488511488,0.11538461538461539,0.11588411588411589,0.11638361638361638,0.11688311688311688,0.11738261738261738,0.11788211788211789,0.11838161838161838,0.11888111888111888,0.11938061938061938,0.11988011988011989,0.12037962037962038,0.12087912087912088,0.12137862137862138,0.12187812187812187,0.12237762237762238,0.12287712287712288,0.12337662337662338,0.12387612387612387,0.12437562437562437,0.12487512487512488,0.12537462537462538,0.1258741258741259,0.12637362637362637,0.12687312687312688,0.12737262737262736,0.12787212787212787,0.12837162837162838,0.12887112887112886,0.12937062937062938,0.12987012987012986,0.13036963036963037,0.13086913086913088,0.13136863136863136,0.13186813186813187,0.13236763236763235,0.13286713286713286,0.13336663336663337,0.13386613386613386,0.13436563436563437,0.13486513486513488,0.13536463536463536,0.13586413586413587,0.13636363636363635,0.13686313686313686,0.13736263736263737,0.13786213786213786,0.13836163836163837,0.13886113886113885,0.13936063936063936,0.13986013986013987,0.14035964035964035,0.14085914085914086,0.14135864135864135,0.14185814185814186,0.14235764235764237,0.14285714285714285,0.14335664335664336,0.14385614385614387,0.14435564435564435,0.14485514485514486,0.14535464535464535,0.14585414585414586,0.14635364635364637,0.14685314685314685,0.14735264735264736,0.14785214785214784,0.14835164835164835,0.14885114885114886,0.14935064935064934,0.14985014985014986,0.15034965034965034,0.15084915084915085,0.15134865134865136,0.15184815184815184,0.15234765234765235,0.15284715284715283,0.15334665334665334,0.15384615384615385,0.15434565434565434,0.15484515484515485,0.15534465534465536,0.15584415584415584,0.15634365634365635,0.15684315684315683,0.15734265734265734,0.15784215784215785,0.15834165834165834,0.15884115884115885,0.15934065934065933,0.15984015984015984,0.16033966033966035,0.16083916083916083,0.16133866133866134,0.16183816183816183,0.16233766233766234,0.16283716283716285,0.16333666333666333,0.16383616383616384,0.16433566433566432,0.16483516483516483,0.16533466533466534,0.16583416583416583,0.16633366633366634,0.16683316683316685,0.16733266733266733,0.16783216783216784,0.16833166833166832,0.16883116883116883,0.16933066933066934,0.16983016983016982,0.17032967032967034,0.17082917082917082,0.17132867132867133,0.17182817182817184,0.17232767232767232,0.17282717282717283,0.17332667332667331,0.17382617382617382,0.17432567432567433,0.17482517482517482,0.17532467532467533,0.17582417582417584,0.17632367632367632,0.17682317682317683,0.1773226773226773,0.17782217782217782,0.17832167832167833,0.17882117882117882,0.17932067932067933,0.1798201798201798,0.18031968031968032,0.18081918081918083,0.1813186813186813,0.18181818181818182,0.1823176823176823,0.18281718281718282,0.18331668331668333,0.1838161838161838,0.18431568431568432,0.1848151848151848,0.1853146853146853,0.18581418581418582,0.1863136863136863,0.18681318681318682,0.18731268731268733,0.1878121878121878,0.18831168831168832,0.1888111888111888,0.1893106893106893,0.18981018981018982,0.1903096903096903,0.19080919080919082,0.1913086913086913,0.1918081918081918,0.19230769230769232,0.1928071928071928,0.1933066933066933,0.1938061938061938,0.1943056943056943,0.19480519480519481,0.1953046953046953,0.1958041958041958,0.1963036963036963,0.1968031968031968,0.1973026973026973,0.1978021978021978,0.1983016983016983,0.19880119880119881,0.1993006993006993,0.1998001998001998,0.2002997002997003,0.2007992007992008,0.2012987012987013,0.2017982017982018,0.2022977022977023,0.20279720279720279,0.2032967032967033,0.2037962037962038,0.2042957042957043,0.2047952047952048,0.20529470529470528,0.2057942057942058,0.2062937062937063,0.20679320679320679,0.2072927072927073,0.2077922077922078,0.2082917082917083,0.2087912087912088,0.20929070929070928,0.2097902097902098,0.2102897102897103,0.21078921078921078,0.2112887112887113,0.21178821178821178,0.2122877122877123,0.2127872127872128,0.21328671328671328,0.2137862137862138,0.21428571428571427,0.21478521478521478,0.2152847152847153,0.21578421578421578,0.2162837162837163,0.21678321678321677,0.21728271728271728,0.2177822177822178,0.21828171828171827,0.21878121878121878,0.2192807192807193,0.21978021978021978,0.2202797202797203,0.22077922077922077,0.22127872127872128,0.2217782217782218,0.22227772227772227,0.22277722277722278,0.22327672327672327,0.22377622377622378,0.2242757242757243,0.22477522477522477,0.22527472527472528,0.22577422577422576,0.22627372627372627,0.22677322677322678,0.22727272727272727,0.22777222777222778,0.22827172827172826,0.22877122877122877,0.22927072927072928,0.22977022977022976,0.23026973026973027,0.23076923076923078,0.23126873126873126,0.23176823176823177,0.23226773226773226,0.23276723276723277,0.23326673326673328,0.23376623376623376,0.23426573426573427,0.23476523476523475,0.23526473526473526,0.23576423576423577,0.23626373626373626,0.23676323676323677,0.23726273726273725,0.23776223776223776,0.23826173826173827,0.23876123876123875,0.23926073926073926,0.23976023976023977,0.24025974025974026,0.24075924075924077,0.24125874125874125,0.24175824175824176,0.24225774225774227,0.24275724275724275,0.24325674325674326,0.24375624375624375,0.24425574425574426,0.24475524475524477,0.24525474525474525,0.24575424575424576,0.24625374625374624,0.24675324675324675,0.24725274725274726,0.24775224775224775,0.24825174825174826,0.24875124875124874,0.24925074925074925,0.24975024975024976,0.25024975024975027,0.25074925074925075,0.25124875124875123,0.2517482517482518,0.25224775224775225,0.25274725274725274,0.2532467532467532,0.25374625374625376,0.25424575424575424,0.2547452547452547,0.25524475524475526,0.25574425574425574,0.2562437562437562,0.25674325674325676,0.25724275724275725,0.25774225774225773,0.25824175824175827,0.25874125874125875,0.25924075924075923,0.2597402597402597,0.26023976023976025,0.26073926073926074,0.2612387612387612,0.26173826173826176,0.26223776223776224,0.2627372627372627,0.26323676323676326,0.26373626373626374,0.2642357642357642,0.2647352647352647,0.26523476523476525,0.26573426573426573,0.2662337662337662,0.26673326673326675,0.26723276723276723,0.2677322677322677,0.26823176823176825,0.26873126873126874,0.2692307692307692,0.26973026973026976,0.27022977022977024,0.2707292707292707,0.2712287712287712,0.27172827172827174,0.2722277722277722,0.2727272727272727,0.27322677322677325,0.27372627372627373,0.2742257742257742,0.27472527472527475,0.27522477522477523,0.2757242757242757,0.2762237762237762,0.27672327672327673,0.2772227772227772,0.2777222777222777,0.27822177822177824,0.2787212787212787,0.2792207792207792,0.27972027972027974,0.2802197802197802,0.2807192807192807,0.28121878121878124,0.2817182817182817,0.2822177822177822,0.2827172827172827,0.28321678321678323,0.2837162837162837,0.2842157842157842,0.28471528471528473,0.2852147852147852,0.2857142857142857,0.28621378621378624,0.2867132867132867,0.2872127872127872,0.28771228771228774,0.2882117882117882,0.2887112887112887,0.2892107892107892,0.2897102897102897,0.2902097902097902,0.2907092907092907,0.29120879120879123,0.2917082917082917,0.2922077922077922,0.29270729270729273,0.2932067932067932,0.2937062937062937,0.2942057942057942,0.2947052947052947,0.2952047952047952,0.2957042957042957,0.2962037962037962,0.2967032967032967,0.2972027972027972,0.2977022977022977,0.2982017982017982,0.2987012987012987,0.29920079920079923,0.2997002997002997,0.3001998001998002,0.3006993006993007,0.3011988011988012,0.3016983016983017,0.3021978021978022,0.3026973026973027,0.3031968031968032,0.3036963036963037,0.3041958041958042,0.3046953046953047,0.3051948051948052,0.30569430569430567,0.3061938061938062,0.3066933066933067,0.30719280719280717,0.3076923076923077,0.3081918081918082,0.3086913086913087,0.3091908091908092,0.3096903096903097,0.3101898101898102,0.3106893106893107,0.3111888111888112,0.3116883116883117,0.31218781218781216,0.3126873126873127,0.3131868131868132,0.31368631368631367,0.3141858141858142,0.3146853146853147,0.31518481518481517,0.3156843156843157,0.3161838161838162,0.3166833166833167,0.31718281718281716,0.3176823176823177,0.3181818181818182,0.31868131868131866,0.3191808191808192,0.3196803196803197,0.32017982017982016,0.3206793206793207,0.3211788211788212,0.32167832167832167,0.3221778221778222,0.3226773226773227,0.32317682317682317,0.32367632367632365,0.3241758241758242,0.3246753246753247,0.32517482517482516,0.3256743256743257,0.3261738261738262,0.32667332667332666,0.3271728271728272,0.3276723276723277,0.32817182817182816,0.32867132867132864,0.3291708291708292,0.32967032967032966,0.33016983016983015,0.3306693306693307,0.33116883116883117,0.33166833166833165,0.3321678321678322,0.33266733266733267,0.33316683316683315,0.3336663336663337,0.3341658341658342,0.33466533466533466,0.33516483516483514,0.3356643356643357,0.33616383616383616,0.33666333666333664,0.3371628371628372,0.33766233766233766,0.33816183816183815,0.3386613386613387,0.33916083916083917,0.33966033966033965,0.34015984015984013,0.34065934065934067,0.34115884115884115,0.34165834165834164,0.3421578421578422,0.34265734265734266,0.34315684315684314,0.3436563436563437,0.34415584415584416,0.34465534465534464,0.3451548451548452,0.34565434565434566,0.34615384615384615,0.34665334665334663,0.34715284715284717,0.34765234765234765,0.34815184815184813,0.34865134865134867,0.34915084915084915,0.34965034965034963,0.3501498501498502,0.35064935064935066,0.35114885114885114,0.3516483516483517,0.35214785214785216,0.35264735264735264,0.3531468531468531,0.35364635364635366,0.35414585414585414,0.3546453546453546,0.35514485514485516,0.35564435564435565,0.35614385614385613,0.35664335664335667,0.35714285714285715,0.35764235764235763,0.3581418581418581,0.35864135864135865,0.35914085914085914,0.3596403596403596,0.36013986013986016,0.36063936063936064,0.3611388611388611,0.36163836163836166,0.36213786213786214,0.3626373626373626,0.36313686313686316,0.36363636363636365,0.36413586413586413,0.3646353646353646,0.36513486513486515,0.36563436563436563,0.3661338661338661,0.36663336663336665,0.36713286713286714,0.3676323676323676,0.36813186813186816,0.36863136863136864,0.3691308691308691,0.3696303696303696,0.37012987012987014,0.3706293706293706,0.3711288711288711,0.37162837162837165,0.37212787212787213,0.3726273726273726,0.37312687312687315,0.37362637362637363,0.3741258741258741,0.37462537462537465,0.37512487512487513,0.3756243756243756,0.3761238761238761,0.37662337662337664,0.3771228771228771,0.3776223776223776,0.37812187812187814,0.3786213786213786,0.3791208791208791,0.37962037962037964,0.3801198801198801,0.3806193806193806,0.3811188811188811,0.38161838161838163,0.3821178821178821,0.3826173826173826,0.38311688311688313,0.3836163836163836,0.3841158841158841,0.38461538461538464,0.3851148851148851,0.3856143856143856,0.38611388611388614,0.3866133866133866,0.3871128871128871,0.3876123876123876,0.3881118881118881,0.3886113886113886,0.3891108891108891,0.38961038961038963,0.3901098901098901,0.3906093906093906,0.39110889110889113,0.3916083916083916,0.3921078921078921,0.3926073926073926,0.3931068931068931,0.3936063936063936,0.3941058941058941,0.3946053946053946,0.3951048951048951,0.3956043956043956,0.3961038961038961,0.3966033966033966,0.3971028971028971,0.39760239760239763,0.3981018981018981,0.3986013986013986,0.3991008991008991,0.3996003996003996,0.4000999000999001,0.4005994005994006,0.4010989010989011,0.4015984015984016,0.4020979020979021,0.4025974025974026,0.4030969030969031,0.4035964035964036,0.40409590409590407,0.4045954045954046,0.4050949050949051,0.40559440559440557,0.4060939060939061,0.4065934065934066,0.4070929070929071,0.4075924075924076,0.4080919080919081,0.4085914085914086,0.4090909090909091,0.4095904095904096,0.4100899100899101,0.41058941058941056,0.4110889110889111,0.4115884115884116,0.41208791208791207,0.4125874125874126,0.4130869130869131,0.41358641358641357,0.4140859140859141,0.4145854145854146,0.4150849150849151,0.4155844155844156,0.4160839160839161,0.4165834165834166,0.41708291708291706,0.4175824175824176,0.4180819180819181,0.41858141858141856,0.4190809190809191,0.4195804195804196,0.42007992007992007,0.4205794205794206,0.4210789210789211,0.42157842157842157,0.42207792207792205,0.4225774225774226,0.4230769230769231,0.42357642357642356,0.4240759240759241,0.4245754245754246,0.42507492507492506,0.4255744255744256,0.4260739260739261,0.42657342657342656,0.4270729270729271,0.4275724275724276,0.42807192807192807,0.42857142857142855,0.4290709290709291,0.42957042957042957,0.43006993006993005,0.4305694305694306,0.43106893106893107,0.43156843156843155,0.4320679320679321,0.4325674325674326,0.43306693306693306,0.43356643356643354,0.4340659340659341,0.43456543456543456,0.43506493506493504,0.4355644355644356,0.43606393606393606,0.43656343656343655,0.4370629370629371,0.43756243756243757,0.43806193806193805,0.4385614385614386,0.43906093906093907,0.43956043956043955,0.44005994005994004,0.4405594405594406,0.44105894105894106,0.44155844155844154,0.4420579420579421,0.44255744255744256,0.44305694305694304,0.4435564435564436,0.44405594405594406,0.44455544455544455,0.44505494505494503,0.44555444555444557,0.44605394605394605,0.44655344655344653,0.44705294705294707,0.44755244755244755,0.44805194805194803,0.4485514485514486,0.44905094905094906,0.44955044955044954,0.4500499500499501,0.45054945054945056,0.45104895104895104,0.4515484515484515,0.45204795204795206,0.45254745254745254,0.453046953046953,0.45354645354645357,0.45404595404595405,0.45454545454545453,0.45504495504495507,0.45554445554445555,0.45604395604395603,0.4565434565434565,0.45704295704295705,0.45754245754245754,0.458041958041958,0.45854145854145856,0.45904095904095904,0.4595404595404595,0.46003996003996006,0.46053946053946054,0.461038961038961,0.46153846153846156,0.46203796203796205,0.46253746253746253,0.463036963036963,0.46353646353646355,0.46403596403596403,0.4645354645354645,0.46503496503496505,0.46553446553446554,0.466033966033966,0.46653346653346656,0.46703296703296704,0.4675324675324675,0.468031968031968,0.46853146853146854,0.469030969030969,0.4695304695304695,0.47002997002997005,0.47052947052947053,0.471028971028971,0.47152847152847155,0.47202797202797203,0.4725274725274725,0.47302697302697305,0.47352647352647353,0.474025974025974,0.4745254745254745,0.47502497502497504,0.4755244755244755,0.476023976023976,0.47652347652347654,0.477022977022977,0.4775224775224775,0.47802197802197804,0.4785214785214785,0.479020979020979,0.47952047952047955,0.48001998001998003,0.4805194805194805,0.481018981018981,0.48151848151848153,0.482017982017982,0.4825174825174825,0.48301698301698304,0.4835164835164835,0.484015984015984,0.48451548451548454,0.485014985014985,0.4855144855144855,0.486013986013986,0.4865134865134865,0.487012987012987,0.4875124875124875,0.48801198801198803,0.4885114885114885,0.489010989010989,0.48951048951048953,0.49000999000999,0.4905094905094905,0.49100899100899104,0.4915084915084915,0.492007992007992,0.4925074925074925,0.493006993006993,0.4935064935064935,0.494005994005994,0.4945054945054945,0.495004995004995,0.4955044955044955,0.49600399600399603,0.4965034965034965,0.497002997002997,0.4975024975024975,0.498001998001998,0.4985014985014985,0.499000999000999,0.4995004995004995,0.5,0.5004995004995005,0.500999000999001,0.5014985014985015,0.501998001998002,0.5024975024975025,0.502997002997003,0.5034965034965035,0.503996003996004,0.5044955044955045,0.504995004995005,0.5054945054945055,0.505994005994006,0.5064935064935064,0.506993006993007,0.5074925074925075,0.5079920079920079,0.5084915084915085,0.508991008991009,0.5094905094905094,0.50999000999001,0.5104895104895105,0.510989010989011,0.5114885114885115,0.511988011988012,0.5124875124875125,0.512987012987013,0.5134865134865135,0.513986013986014,0.5144855144855145,0.514985014985015,0.5154845154845155,0.515984015984016,0.5164835164835165,0.516983016983017,0.5174825174825175,0.5179820179820179,0.5184815184815185,0.518981018981019,0.5194805194805194,0.51998001998002,0.5204795204795205,0.5209790209790209,0.5214785214785215,0.521978021978022,0.5224775224775224,0.522977022977023,0.5234765234765235,0.5239760239760239,0.5244755244755245,0.524975024975025,0.5254745254745254,0.525974025974026,0.5264735264735265,0.526973026973027,0.5274725274725275,0.527972027972028,0.5284715284715285,0.528971028971029,0.5294705294705294,0.52997002997003,0.5304695304695305,0.5309690309690309,0.5314685314685315,0.531968031968032,0.5324675324675324,0.532967032967033,0.5334665334665335,0.5339660339660339,0.5344655344655345,0.534965034965035,0.5354645354645354,0.535964035964036,0.5364635364635365,0.5369630369630369,0.5374625374625375,0.537962037962038,0.5384615384615384,0.538961038961039,0.5394605394605395,0.5399600399600399,0.5404595404595405,0.5409590409590409,0.5414585414585414,0.541958041958042,0.5424575424575424,0.542957042957043,0.5434565434565435,0.5439560439560439,0.5444555444555444,0.544955044955045,0.5454545454545454,0.545954045954046,0.5464535464535465,0.5469530469530469,0.5474525474525475,0.547952047952048,0.5484515484515484,0.548951048951049,0.5494505494505495,0.5499500499500499,0.5504495504495505,0.550949050949051,0.5514485514485514,0.551948051948052,0.5524475524475524,0.5529470529470529,0.5534465534465535,0.5539460539460539,0.5544455544455544,0.554945054945055,0.5554445554445554,0.5559440559440559,0.5564435564435565,0.5569430569430569,0.5574425574425574,0.557942057942058,0.5584415584415584,0.5589410589410589,0.5594405594405595,0.5599400599400599,0.5604395604395604,0.560939060939061,0.5614385614385614,0.561938061938062,0.5624375624375625,0.5629370629370629,0.5634365634365635,0.563936063936064,0.5644355644355644,0.564935064935065,0.5654345654345654,0.5659340659340659,0.5664335664335665,0.5669330669330669,0.5674325674325674,0.567932067932068,0.5684315684315684,0.5689310689310689,0.5694305694305695,0.5699300699300699,0.5704295704295704,0.570929070929071,0.5714285714285714,0.5719280719280719,0.5724275724275725,0.5729270729270729,0.5734265734265734,0.573926073926074,0.5744255744255744,0.5749250749250749,0.5754245754245755,0.5759240759240759,0.5764235764235764,0.5769230769230769,0.5774225774225774,0.577922077922078,0.5784215784215784,0.5789210789210789,0.5794205794205795,0.5799200799200799,0.5804195804195804,0.580919080919081,0.5814185814185814,0.5819180819180819,0.5824175824175825,0.5829170829170829,0.5834165834165834,0.583916083916084,0.5844155844155844,0.5849150849150849,0.5854145854145855,0.5859140859140859,0.5864135864135864,0.586913086913087,0.5874125874125874,0.5879120879120879,0.5884115884115884,0.5889110889110889,0.5894105894105894,0.5899100899100899,0.5904095904095904,0.5909090909090909,0.5914085914085914,0.5919080919080919,0.5924075924075924,0.5929070929070929,0.5934065934065934,0.593906093906094,0.5944055944055944,0.5949050949050949,0.5954045954045954,0.5959040959040959,0.5964035964035964,0.596903096903097,0.5974025974025974,0.5979020979020979,0.5984015984015985,0.5989010989010989,0.5994005994005994,0.5999000999000998,0.6003996003996004,0.6008991008991009,0.6013986013986014,0.6018981018981019,0.6023976023976024,0.6028971028971029,0.6033966033966034,0.6038961038961039,0.6043956043956044,0.6048951048951049,0.6053946053946054,0.6058941058941059,0.6063936063936064,0.6068931068931069,0.6073926073926074,0.6078921078921079,0.6083916083916084,0.6088911088911089,0.6093906093906094,0.6098901098901099,0.6103896103896104,0.6108891108891109,0.6113886113886113,0.6118881118881119,0.6123876123876124,0.6128871128871128,0.6133866133866134,0.6138861138861139,0.6143856143856143,0.6148851148851149,0.6153846153846154,0.6158841158841158,0.6163836163836164,0.6168831168831169,0.6173826173826173,0.6178821178821179,0.6183816183816184,0.6188811188811189,0.6193806193806194,0.6198801198801199,0.6203796203796204,0.6208791208791209,0.6213786213786214,0.6218781218781219,0.6223776223776224,0.6228771228771228,0.6233766233766234,0.6238761238761239,0.6243756243756243,0.6248751248751249,0.6253746253746254,0.6258741258741258,0.6263736263736264,0.6268731268731269,0.6273726273726273,0.6278721278721279,0.6283716283716284,0.6288711288711288,0.6293706293706294,0.6298701298701299,0.6303696303696303,0.6308691308691309,0.6313686313686314,0.6318681318681318,0.6323676323676324,0.6328671328671329,0.6333666333666333,0.6338661338661339,0.6343656343656343,0.6348651348651349,0.6353646353646354,0.6358641358641358,0.6363636363636364,0.6368631368631369,0.6373626373626373,0.6378621378621379,0.6383616383616384,0.6388611388611388,0.6393606393606394,0.6398601398601399,0.6403596403596403,0.6408591408591409,0.6413586413586414,0.6418581418581418,0.6423576423576424,0.6428571428571429,0.6433566433566433,0.6438561438561439,0.6443556443556444,0.6448551448551448,0.6453546453546454,0.6458541458541458,0.6463536463536463,0.6468531468531469,0.6473526473526473,0.6478521478521478,0.6483516483516484,0.6488511488511488,0.6493506493506493,0.6498501498501499,0.6503496503496503,0.6508491508491508,0.6513486513486514,0.6518481518481518,0.6523476523476524,0.6528471528471529,0.6533466533466533,0.6538461538461539,0.6543456543456544,0.6548451548451548,0.6553446553446554,0.6558441558441559,0.6563436563436563,0.6568431568431569,0.6573426573426573,0.6578421578421578,0.6583416583416584,0.6588411588411588,0.6593406593406593,0.6598401598401599,0.6603396603396603,0.6608391608391608,0.6613386613386614,0.6618381618381618,0.6623376623376623,0.6628371628371629,0.6633366633366633,0.6638361638361638,0.6643356643356644,0.6648351648351648,0.6653346653346653,0.6658341658341659,0.6663336663336663,0.6668331668331668,0.6673326673326674,0.6678321678321678,0.6683316683316683,0.6688311688311688,0.6693306693306693,0.6698301698301699,0.6703296703296703,0.6708291708291708,0.6713286713286714,0.6718281718281718,0.6723276723276723,0.6728271728271729,0.6733266733266733,0.6738261738261738,0.6743256743256744,0.6748251748251748,0.6753246753246753,0.6758241758241759,0.6763236763236763,0.6768231768231768,0.6773226773226774,0.6778221778221778,0.6783216783216783,0.6788211788211789,0.6793206793206793,0.6798201798201798,0.6803196803196803,0.6808191808191808,0.6813186813186813,0.6818181818181818,0.6823176823176823,0.6828171828171828,0.6833166833166833,0.6838161838161838,0.6843156843156843,0.6848151848151848,0.6853146853146853,0.6858141858141859,0.6863136863136863,0.6868131868131868,0.6873126873126874,0.6878121878121878,0.6883116883116883,0.6888111888111889,0.6893106893106893,0.6898101898101898,0.6903096903096904,0.6908091908091908,0.6913086913086913,0.6918081918081919,0.6923076923076923,0.6928071928071928,0.6933066933066933,0.6938061938061938,0.6943056943056943,0.6948051948051948,0.6953046953046953,0.6958041958041958,0.6963036963036963,0.6968031968031968,0.6973026973026973,0.6978021978021978,0.6983016983016983,0.6988011988011988,0.6993006993006993,0.6998001998001998,0.7002997002997003,0.7007992007992008,0.7012987012987013,0.7017982017982018,0.7022977022977023,0.7027972027972028,0.7032967032967034,0.7037962037962038,0.7042957042957043,0.7047952047952047,0.7052947052947053,0.7057942057942058,0.7062937062937062,0.7067932067932068,0.7072927072927073,0.7077922077922078,0.7082917082917083,0.7087912087912088,0.7092907092907093,0.7097902097902098,0.7102897102897103,0.7107892107892108,0.7112887112887113,0.7117882117882118,0.7122877122877123,0.7127872127872128,0.7132867132867133,0.7137862137862138,0.7142857142857143,0.7147852147852148,0.7152847152847153,0.7157842157842158,0.7162837162837162,0.7167832167832168,0.7172827172827173,0.7177822177822177,0.7182817182817183,0.7187812187812188,0.7192807192807192,0.7197802197802198,0.7202797202797203,0.7207792207792207,0.7212787212787213,0.7217782217782218,0.7222777222777222,0.7227772227772228,0.7232767232767233,0.7237762237762237,0.7242757242757243,0.7247752247752248,0.7252747252747253,0.7257742257742258,0.7262737262737263,0.7267732267732268,0.7272727272727273,0.7277722277722277,0.7282717282717283,0.7287712287712288,0.7292707292707292,0.7297702297702298,0.7302697302697303,0.7307692307692307,0.7312687312687313,0.7317682317682318,0.7322677322677322,0.7327672327672328,0.7332667332667333,0.7337662337662337,0.7342657342657343,0.7347652347652348,0.7352647352647352,0.7357642357642358,0.7362637362637363,0.7367632367632367,0.7372627372627373,0.7377622377622378,0.7382617382617382,0.7387612387612388,0.7392607392607392,0.7397602397602397,0.7402597402597403,0.7407592407592407,0.7412587412587412,0.7417582417582418,0.7422577422577422,0.7427572427572428,0.7432567432567433,0.7437562437562437,0.7442557442557443,0.7447552447552448,0.7452547452547452,0.7457542457542458,0.7462537462537463,0.7467532467532467,0.7472527472527473,0.7477522477522478,0.7482517482517482,0.7487512487512488,0.7492507492507493,0.7497502497502497,0.7502497502497503,0.7507492507492507,0.7512487512487512,0.7517482517482518,0.7522477522477522,0.7527472527472527,0.7532467532467533,0.7537462537462537,0.7542457542457542,0.7547452547452548,0.7552447552447552,0.7557442557442557,0.7562437562437563,0.7567432567432567,0.7572427572427572,0.7577422577422578,0.7582417582417582,0.7587412587412588,0.7592407592407593,0.7597402597402597,0.7602397602397603,0.7607392607392608,0.7612387612387612,0.7617382617382618,0.7622377622377622,0.7627372627372627,0.7632367632367633,0.7637362637362637,0.7642357642357642,0.7647352647352648,0.7652347652347652,0.7657342657342657,0.7662337662337663,0.7667332667332667,0.7672327672327672,0.7677322677322678,0.7682317682317682,0.7687312687312687,0.7692307692307693,0.7697302697302697,0.7702297702297702,0.7707292707292708,0.7712287712287712,0.7717282717282717,0.7722277722277723,0.7727272727272727,0.7732267732267732,0.7737262737262737,0.7742257742257742,0.7747252747252747,0.7752247752247752,0.7757242757242757,0.7762237762237763,0.7767232767232767,0.7772227772227772,0.7777222777222778,0.7782217782217782,0.7787212787212787,0.7792207792207793,0.7797202797202797,0.7802197802197802,0.7807192807192808,0.7812187812187812,0.7817182817182817,0.7822177822177823,0.7827172827172827,0.7832167832167832,0.7837162837162838,0.7842157842157842,0.7847152847152847,0.7852147852147852,0.7857142857142857,0.7862137862137862,0.7867132867132867,0.7872127872127872,0.7877122877122877,0.7882117882117882,0.7887112887112887,0.7892107892107892,0.7897102897102897,0.7902097902097902,0.7907092907092907,0.7912087912087912,0.7917082917082917,0.7922077922077922,0.7927072927072927,0.7932067932067932,0.7937062937062938,0.7942057942057942,0.7947052947052947,0.7952047952047953,0.7957042957042957,0.7962037962037962,0.7967032967032966,0.7972027972027972,0.7977022977022977,0.7982017982017982,0.7987012987012987,0.7992007992007992,0.7997002997002997,0.8001998001998002,0.8006993006993007,0.8011988011988012,0.8016983016983017,0.8021978021978022,0.8026973026973027,0.8031968031968032,0.8036963036963037,0.8041958041958042,0.8046953046953047,0.8051948051948052,0.8056943056943057,0.8061938061938062,0.8066933066933067,0.8071928071928072,0.8076923076923077,0.8081918081918081,0.8086913086913087,0.8091908091908092,0.8096903096903096,0.8101898101898102,0.8106893106893107,0.8111888111888111,0.8116883116883117,0.8121878121878122,0.8126873126873126,0.8131868131868132,0.8136863136863137,0.8141858141858141,0.8146853146853147,0.8151848151848152,0.8156843156843157,0.8161838161838162,0.8166833166833167,0.8171828171828172,0.8176823176823177,0.8181818181818182,0.8186813186813187,0.8191808191808192,0.8196803196803197,0.8201798201798202,0.8206793206793207,0.8211788211788211,0.8216783216783217,0.8221778221778222,0.8226773226773226,0.8231768231768232,0.8236763236763237,0.8241758241758241,0.8246753246753247,0.8251748251748252,0.8256743256743256,0.8261738261738262,0.8266733266733267,0.8271728271728271,0.8276723276723277,0.8281718281718282,0.8286713286713286,0.8291708291708292,0.8296703296703297,0.8301698301698301,0.8306693306693307,0.8311688311688312,0.8316683316683317,0.8321678321678322,0.8326673326673326,0.8331668331668332,0.8336663336663337,0.8341658341658341,0.8346653346653347,0.8351648351648352,0.8356643356643356,0.8361638361638362,0.8366633366633367,0.8371628371628371,0.8376623376623377,0.8381618381618382,0.8386613386613386,0.8391608391608392,0.8396603396603397,0.8401598401598401,0.8406593406593407,0.8411588411588412,0.8416583416583416,0.8421578421578422,0.8426573426573427,0.8431568431568431,0.8436563436563437,0.8441558441558441,0.8446553446553446,0.8451548451548452,0.8456543456543456,0.8461538461538461,0.8466533466533467,0.8471528471528471,0.8476523476523476,0.8481518481518482,0.8486513486513486,0.8491508491508492,0.8496503496503497,0.8501498501498501,0.8506493506493507,0.8511488511488512,0.8516483516483516,0.8521478521478522,0.8526473526473527,0.8531468531468531,0.8536463536463537,0.8541458541458542,0.8546453546453546,0.8551448551448552,0.8556443556443556,0.8561438561438561,0.8566433566433567,0.8571428571428571,0.8576423576423576,0.8581418581418582,0.8586413586413586,0.8591408591408591,0.8596403596403597,0.8601398601398601,0.8606393606393606,0.8611388611388612,0.8616383616383616,0.8621378621378621,0.8626373626373627,0.8631368631368631,0.8636363636363636,0.8641358641358642,0.8646353646353646,0.8651348651348651,0.8656343656343657,0.8661338661338661,0.8666333666333667,0.8671328671328671,0.8676323676323676,0.8681318681318682,0.8686313686313686,0.8691308691308691,0.8696303696303697,0.8701298701298701,0.8706293706293706,0.8711288711288712,0.8716283716283716,0.8721278721278721,0.8726273726273727,0.8731268731268731,0.8736263736263736,0.8741258741258742,0.8746253746253746,0.8751248751248751,0.8756243756243757,0.8761238761238761,0.8766233766233766,0.8771228771228772,0.8776223776223776,0.8781218781218781,0.8786213786213786,0.8791208791208791,0.8796203796203796,0.8801198801198801,0.8806193806193806,0.8811188811188811,0.8816183816183816,0.8821178821178821,0.8826173826173827,0.8831168831168831,0.8836163836163836,0.8841158841158842,0.8846153846153846,0.8851148851148851,0.8856143856143857,0.8861138861138861,0.8866133866133866,0.8871128871128872,0.8876123876123876,0.8881118881118881,0.8886113886113887,0.8891108891108891,0.8896103896103896,0.8901098901098901,0.8906093906093906,0.8911088911088911,0.8916083916083916,0.8921078921078921,0.8926073926073926,0.8931068931068931,0.8936063936063936,0.8941058941058941,0.8946053946053946,0.8951048951048951,0.8956043956043956,0.8961038961038961,0.8966033966033966,0.8971028971028971,0.8976023976023976,0.8981018981018981,0.8986013986013986,0.8991008991008991,0.8996003996003996,0.9000999000999002,0.9005994005994006,0.9010989010989011,0.9015984015984015,0.9020979020979021,0.9025974025974026,0.903096903096903,0.9035964035964036,0.9040959040959041,0.9045954045954046,0.9050949050949051,0.9055944055944056,0.906093906093906,0.9065934065934066,0.9070929070929071,0.9075924075924076,0.9080919080919081,0.9085914085914086,0.9090909090909091,0.9095904095904096,0.9100899100899101,0.9105894105894106,0.9110889110889111,0.9115884115884116,0.9120879120879121,0.9125874125874126,0.913086913086913,0.9135864135864136,0.9140859140859141,0.9145854145854145,0.9150849150849151,0.9155844155844156,0.916083916083916,0.9165834165834166,0.9170829170829171,0.9175824175824175,0.9180819180819181,0.9185814185814186,0.919080919080919,0.9195804195804196,0.9200799200799201,0.9205794205794205,0.9210789210789211,0.9215784215784216,0.922077922077922,0.9225774225774226,0.9230769230769231,0.9235764235764236,0.9240759240759241,0.9245754245754245,0.9250749250749251,0.9255744255744256,0.926073926073926,0.9265734265734266,0.9270729270729271,0.9275724275724275,0.9280719280719281,0.9285714285714286,0.929070929070929,0.9295704295704296,0.9300699300699301,0.9305694305694305,0.9310689310689311,0.9315684315684316,0.932067932067932,0.9325674325674326,0.9330669330669331,0.9335664335664335,0.9340659340659341,0.9345654345654346,0.935064935064935,0.9355644355644356,0.936063936063936,0.9365634365634365,0.9370629370629371,0.9375624375624375,0.938061938061938,0.9385614385614386,0.939060939060939,0.9395604395604396,0.9400599400599401,0.9405594405594405,0.9410589410589411,0.9415584415584416,0.942057942057942,0.9425574425574426,0.9430569430569431,0.9435564435564435,0.9440559440559441,0.9445554445554446,0.945054945054945,0.9455544455544456,0.9460539460539461,0.9465534465534465,0.9470529470529471,0.9475524475524476,0.948051948051948,0.9485514485514486,0.949050949050949,0.9495504495504495,0.9500499500499501,0.9505494505494505,0.951048951048951,0.9515484515484516,0.952047952047952,0.9525474525474525,0.9530469530469531,0.9535464535464535,0.954045954045954,0.9545454545454546,0.955044955044955,0.9555444555444556,0.9560439560439561,0.9565434565434565,0.957042957042957,0.9575424575424576,0.958041958041958,0.9585414585414586,0.9590409590409591,0.9595404595404595,0.9600399600399601,0.9605394605394605,0.961038961038961,0.9615384615384616,0.962037962037962,0.9625374625374625,0.9630369630369631,0.9635364635364635,0.964035964035964,0.9645354645354646,0.965034965034965,0.9655344655344655,0.9660339660339661,0.9665334665334665,0.967032967032967,0.9675324675324676,0.968031968031968,0.9685314685314685,0.9690309690309691,0.9695304695304695,0.97002997002997,0.9705294705294706,0.971028971028971,0.9715284715284715,0.972027972027972,0.9725274725274725,0.973026973026973,0.9735264735264735,0.974025974025974,0.9745254745254746,0.975024975024975,0.9755244755244755,0.9760239760239761,0.9765234765234765,0.977022977022977,0.9775224775224776,0.978021978021978,0.9785214785214785,0.9790209790209791,0.9795204795204795,0.98001998001998,0.9805194805194806,0.981018981018981,0.9815184815184815,0.9820179820179821,0.9825174825174825,0.983016983016983,0.9835164835164835,0.984015984015984,0.9845154845154845,0.985014985014985,0.9855144855144855,0.986013986013986,0.9865134865134865,0.987012987012987,0.9875124875124875,0.988011988011988,0.9885114885114885,0.989010989010989,0.9895104895104895,0.99000999000999,0.9905094905094906,0.991008991008991,0.9915084915084915,0.9920079920079921,0.9925074925074925,0.993006993006993,0.9935064935064936,0.994005994005994,0.9945054945054945,0.995004995004995,0.9955044955044955,0.996003996003996,0.9965034965034965,0.997002997002997,0.9975024975024975,0.998001998001998,0.9985014985014985,0.999000999000999,0.9995004995004995,1.0]}
\ No newline at end of file
diff --git a/lib/node_modules/@stdlib/math/base/special/acosd/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/acosd/test/fixtures/julia/runner.jl
new file mode 100644
index 000000000000..364c3586732b
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/acosd/test/fixtures/julia/runner.jl
@@ -0,0 +1,69 @@
+#!/usr/bin/env julia
+#
+# @license Apache-2.0
+#
+# Copyright (c) 2024 The Stdlib Authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+import JSON
+
+"""
+ gen( domain, name )
+
+Generate fixture data and write to file.
+
+# Arguments
+
+* `domain`: domain
+* `name::AbstractString`: output filename
+
+# Examples
+
+``` julia
+julia> x = range( -1, stop = 1, length = 2001 );
+julia> gen( x, \"data.json\" );
+```
+"""
+function gen( domain, name )
+ x = collect( domain );
+ y = acosd.( x );
+
+ # Store data to be written to file as a collection:
+ data = Dict([
+ ("x", x),
+ ("expected", y)
+ ]);
+
+ # Based on the script directory, create an output filepath:
+ filepath = joinpath( dir, name );
+
+ # Write the data to the output filepath as JSON:
+ outfile = open( filepath, "w" );
+ write( outfile, JSON.json(data) );
+ close( outfile );
+end
+
+# Get the filename:
+file = @__FILE__;
+
+# Extract the directory in which this file resides:
+dir = dirname( file );
+
+# Generate fixture data for negative values:
+x = range( -1.0, stop = 0, length = 2003 );
+gen( x, "negative.json" );
+
+# Generate fixture data for positive values:
+x = range( 0, stop = 1.0, length = 2003 );
+gen( x, "positive.json" );
\ No newline at end of file
diff --git a/lib/node_modules/@stdlib/math/base/special/acosd/test/test.js b/lib/node_modules/@stdlib/math/base/special/acosd/test/test.js
new file mode 100644
index 000000000000..a006cd428d4b
--- /dev/null
+++ b/lib/node_modules/@stdlib/math/base/special/acosd/test/test.js
@@ -0,0 +1,119 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2024 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var tape = require( 'tape' );
+var isnan = require( '@stdlib/math/base/assert/is-nan' );
+var abs = require( '@stdlib/math/base/special/abs' );
+var randu = require( '@stdlib/random/base/randu' );
+var EPS = require( '@stdlib/constants/float64/eps' );
+var acosd = require( './../lib' );
+
+
+// FIXTURES //
+
+var negative = require( './fixtures/julia/negative.json' );
+var positive = require( './fixtures/julia/positive.json' );
+
+
+// TESTS //
+
+tape( 'main export is a function', function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof acosd, 'function', 'main export is a function' );
+ t.end();
+});
+
+tape( 'the function returns `NaN` if provided `NaN`', function test( t ) {
+ var v = acosd( NaN );
+ t.equal( isnan( v ), true, 'returns NaN' );
+ t.end();
+});
+
+tape( 'the function computes the arccosine in degrees (negative values)', function test( t ) {
+ var expected;
+ var delta;
+ var tol;
+ var x;
+ var y;
+ var i;
+
+ x = negative.x;
+ expected = negative.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ y = acosd( x[i] );
+ if ( y === expected[ i ] ) {
+ t.equal( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i] );
+ } else {
+ delta = abs( y - expected[i] );
+ tol = 1.4 * EPS * abs( expected[i] );
+ t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. Δ: '+delta+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function computes the arccosine in degrees (positive values)', function test( t ) {
+ var expected;
+ var delta;
+ var tol;
+ var x;
+ var y;
+ var i;
+
+ x = positive.x;
+ expected = positive.expected;
+
+ for ( i = 0; i < x.length; i++ ) {
+ y = acosd( x[i] );
+ if ( y === expected[ i ] ) {
+ t.equal( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i] );
+ } else {
+ delta = abs( y - expected[i] );
+ tol = 1.4 * EPS * abs( expected[i] );
+ t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. Δ: '+delta+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function returns `NaN` if provided a value less than `-1`', function test( t ) {
+ var v;
+ var i;
+
+ for ( i = 0; i < 1e3; i++ ) {
+ v = -(randu()*1.0e6) - (1.0-EPS);
+ t.equal( isnan( acosd( v ) ), true, 'returns NaN when provided '+v );
+ }
+ t.end();
+});
+
+tape( 'the function returns `NaN` if provided a value greater than `+1`', function test( t ) {
+ var v;
+ var i;
+
+ for ( i = 0; i < 1e3; i++ ) {
+ v = (randu()*1.0e6) + 1.0 + EPS;
+ t.equal( isnan( acosd( v ) ), true, 'returns NaN when provided '+v );
+ }
+ t.end();
+});