diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/README.md b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/README.md
new file mode 100644
index 000000000000..7cd312ee8bf5
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/README.md
@@ -0,0 +1,157 @@
+
+
+# Cumulative Distribution Function
+
+> [Bradford][bradford-distribution] distribution [cumulative distribution function][cdf] (CDF).
+
+
+
+The [cumulative distribution function][cdf] (CDF) for a [Bradford][bradford-distribution] random variable is
+
+
+
+```math
+F(x;c)=\frac{\ln(1+cx)}{\ln(1+c)}
+```
+
+
+
+
+
+where `c > 0` is the shape parameter of the distribution.
+
+
+
+
+
+
+
+## Usage
+
+```javascript
+var cdf = require( '@stdlib/stats/base/dists/bradford/cdf' );
+```
+
+#### cdf( x, c )
+
+Evaluates the [cumulative distribution function][cdf] (CDF) for a [Bradford][bradford-distribution] distribution with shape parameter `c` at a value `x`.
+
+```javascript
+var y = cdf( 0.1, 0.1 );
+// returns ~0.104
+
+y = cdf( 0.5, 5.0 );
+// returns ~0.699
+
+y = cdf( 1.0, 10.0 );
+// returns 1.0
+
+y = cdf( -0.5, 1.0 );
+// returns 0.0
+
+y = cdf( 2.0, 1.0 );
+// returns 1.0
+```
+
+If provided `NaN` as any argument, the function returns `NaN`.
+
+```javascript
+var y = cdf( NaN, 1.0 );
+// returns NaN
+
+y = cdf( 0.0, NaN );
+// returns NaN
+```
+
+If provided a shape parameter `c <= 0`, the function returns `NaN`.
+
+```javascript
+var y = cdf( 0.0, 0.0 );
+// returns NaN
+
+y = cdf( 0.5, -5.0 );
+// returns NaN
+```
+
+#### cdf.factory( c )
+
+Returns a function for evaluating the [CDF][cdf] of a [Bradford][bradford-distribution] distribution with shape parameter `c`.
+
+```javascript
+var myPDF = cdf.factory( 5.0 );
+var y = myPDF( 0.5 );
+// returns ~0.699
+
+y = myPDF( 1.0 );
+// returns 1.0
+```
+
+
+
+
+
+
+
+## Examples
+
+
+
+```javascript
+var uniform = require( '@stdlib/random/array/uniform' );
+var cdf = require( '@stdlib/stats/base/dists/bradford/cdf' );
+
+var x = uniform( 10, 0.0, 1.0 );
+var c = uniform( 10, 0.1, 10.0 );
+
+var y;
+var i;
+for ( i = 0; i < x.length; i++ ) {
+ y = cdf( x[ i ], c[ i ] );
+ console.log( 'x: %d, c: %d, F(x;c): %d', x[ i ].toFixed( 4 ), c[ i ].toFixed( 4 ), y.toFixed( 4 ) );
+}
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+[cdf]: https://en.wikipedia.org/wiki/Cumulative_distribution_function
+
+[bradford-distribution]: https://en.wikipedia.org/wiki/Bradford%27s_law
+
+
+
+
diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/benchmark/benchmark.js b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/benchmark/benchmark.js
new file mode 100644
index 000000000000..54a26f984489
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/benchmark/benchmark.js
@@ -0,0 +1,78 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var bench = require( '@stdlib/bench' );
+var uniform = require( '@stdlib/random/array/uniform' );
+var isnan = require( '@stdlib/math/base/assert/is-nan' );
+var pkg = require( './../package.json' ).name;
+var cdf = require( './../lib' );
+
+
+// MAIN //
+
+bench( pkg, function benchmark( b ) {
+ var x;
+ var c;
+ var y;
+ var i;
+
+ x = uniform( 100, 0.0, 1.0 );
+ c = uniform( 100, 0.1, 10.0 );
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ y = cdf( x[ i % x.length ], c[ i % c.length ] );
+ 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();
+});
+
+bench( pkg+':factory', function benchmark( b ) {
+ var mycdf;
+ var x;
+ var y;
+ var i;
+
+ x = uniform( 100, 0.0, 1.0 );
+ mycdf = cdf.factory( 5.0 );
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ y = mycdf( x[ i % x.length ] );
+ 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/stats/base/dists/bradford/cdf/docs/img/equation_bradford_cdf.svg b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/docs/img/equation_bradford_cdf.svg
new file mode 100644
index 000000000000..1f1ec4a42eca
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/docs/img/equation_bradford_cdf.svg
@@ -0,0 +1,49 @@
+
\ No newline at end of file
diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/docs/repl.txt b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/docs/repl.txt
new file mode 100644
index 000000000000..16300ca9c1fa
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/docs/repl.txt
@@ -0,0 +1,72 @@
+
+{{alias}}( x, c )
+ Evaluates the cumulative distribution function
+ (CDF) for a Bradford distribution
+ with shape parameter `c` at a value `x`.
+
+ If provided `NaN` as any argument, the function returns `NaN`.
+
+ If provided `c <= 0`, the function returns `NaN`.
+
+ Parameters
+ ----------
+ x: number
+ Input value.
+
+ c: number
+ Shape parameter.
+
+ Returns
+ -------
+ out: number
+ Evaluated CDF.
+
+ Examples
+ --------
+ > var y = {{alias}}( 0.1, 0.1 )
+ ~0.104
+ > y = {{alias}}( 0.5, 5.0 )
+ ~0.699
+ > y = {{alias}}( 1.0, 10.0 )
+ 1.0
+ > y = {{alias}}( -1.0, 0.5 )
+ 0.0
+ > y = {{alias}}( 2.0, 0.5 )
+ 1.0
+
+ > y = {{alias}}( 0.5, 0.0 )
+ NaN
+ > y = {{alias}}( 0.5, -5.0 )
+ NaN
+
+ > y = {{alias}}( NaN, 1.0 )
+ NaN
+ > y = {{alias}}( 1.0, NaN )
+ NaN
+
+
+{{alias}}.factory( c )
+ Returns a function for evaluating the cumulative distribution function
+ (CDF) of a Bradford distribution with shape parameter `c`.
+
+ Parameters
+ ----------
+ c: number
+ Shape parameter.
+
+ Returns
+ -------
+ cdf: Function
+ Cumulative distribution function (CDF).
+
+ Examples
+ --------
+ > var myCDF = {{alias}}.factory( 5.0 );
+ > var y = myCDF( 0.5 )
+ ~0.699
+ > y = myCDF( 1.0 )
+ 1.0
+
+ See Also
+ --------
+
diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/docs/types/index.d.ts b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/docs/types/index.d.ts
new file mode 100644
index 000000000000..049e7babd208
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/docs/types/index.d.ts
@@ -0,0 +1,123 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+// TypeScript Version: 4.1
+
+/**
+* Evaluates the cumulative distribution function (CDF) for a Bradford distribution.
+*
+* @param x - input value
+* @returns evaluated CDF
+*/
+type Unary = ( x: number ) => number;
+
+
+/**
+* Interface for the cumulative distribution function (CDF) of a Bradford distribution.
+*/
+interface CDF {
+ /**
+ * Evaluates the cumulative distribution function (CDF) for a Bradford distribution with shape parameter `c` at a value `x`.
+ *
+ * ## Notes
+ *
+ * - If provided `c <= 0`, the function returns `NaN`.
+ *
+ * @param x - input value
+ * @param c - shape parameter
+ * @returns evaluated CDF
+ *
+ * @example
+ * var v = cdf( 0.1, 0.1 );
+ * // returns ~0.104
+ *
+ * @example
+ * var v = cdf( 0.5, 5.0 );
+ * // returns ~0.699
+ *
+ * @example
+ * var v = cdf( 1.0, 10.0 );
+ * // returns 1.0
+ *
+ * @example
+ * var y = cdf( -1.0, 0.5 );
+ * // returns 0.0
+ *
+ * @example
+ * var y = cdf( 2.0, 0.5 );
+ * // returns 1.0
+ *
+ * @example
+ * var y = cdf( 0.5, 0.0 );
+ * // returns NaN
+ *
+ * @example
+ * var y = cdf( 0.5, -5.0 );
+ * // returns NaN
+ *
+ * @example
+ * var y = cdf( NaN, 1.0 );
+ * // returns NaN
+ *
+ * @example
+ * var y = cdf( 1.0, NaN );
+ * // returns NaN
+ */
+ ( x: number, c: number ): number;
+
+ /**
+ * Returns a function for evaluating the cumulative distribution function (CDF) for a Bradford distribution with shape parameter `c`.
+ *
+ * @param c - shape parameter
+ * @returns CDF
+ *
+ * @example
+ * var mypdf = cdf.factory( 5.0 );
+ * var y = mypdf( 0.5 );
+ * // returns ~0.699
+ *
+ * y = mypdf( 1.0 );
+ * // returns 1.0
+ */
+ factory( c: number ): Unary;
+}
+
+/**
+* Bradford distribution cumulative distribution function (CDF).
+*
+* @param x - input value
+* @param c - shape parameter
+* @returns evaluated CDF
+*
+* @example
+* var y = cdf( 0.5, 5.0 );
+* // returns ~0.699
+*
+* var mycdf = cdf.factory( 5.0 );
+* y = mycdf( 0.5 );
+* // returns ~0.699
+*
+* y = mycdf( 1.0 );
+* // returns 1.0
+*/
+declare var cdf: CDF;
+
+
+// EXPORTS //
+
+export = cdf;
diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/docs/types/test.ts b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/docs/types/test.ts
new file mode 100644
index 000000000000..ebbb045aaad5
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/docs/types/test.ts
@@ -0,0 +1,98 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+import cdf = require( './index' );
+
+
+// TESTS //
+
+// The function returns a number...
+{
+ cdf( 0, 1 ); // $ExpectType number
+ cdf( 1, 5 ); // $ExpectType number
+}
+
+// The compiler throws an error if the function is provided values other than two numbers...
+{
+ cdf( true, 3 ); // $ExpectError
+ cdf( false, 2 ); // $ExpectError
+ cdf( '5', 1 ); // $ExpectError
+ cdf( [], 1 ); // $ExpectError
+ cdf( {}, 2 ); // $ExpectError
+ cdf( ( x: number ): number => x, 2 ); // $ExpectError
+
+ cdf( 9, true ); // $ExpectError
+ cdf( 9, false ); // $ExpectError
+ cdf( 5, '5' ); // $ExpectError
+ cdf( 8, [] ); // $ExpectError
+ cdf( 9, {} ); // $ExpectError
+ cdf( 8, ( x: number ): number => x ); // $ExpectError
+}
+
+// The compiler throws an error if the function is provided an unsupported number of arguments...
+{
+ cdf(); // $ExpectError
+ cdf( 1 ); // $ExpectError
+ cdf( 1, 5, 3 ); // $ExpectError
+}
+
+// Attached to main export is a `factory` method which returns a function...
+{
+ cdf.factory( 5 ); // $ExpectType Unary
+}
+
+// The `factory` method returns a function which returns a number...
+{
+ const fcn = cdf.factory( 5 );
+ fcn( 1 ); // $ExpectType number
+}
+
+// The compiler throws an error if the function returned by the `factory` method is provided invalid arguments...
+{
+ const fcn = cdf.factory( 5 );
+ fcn( true ); // $ExpectError
+ fcn( false ); // $ExpectError
+ fcn( '5' ); // $ExpectError
+ fcn( [] ); // $ExpectError
+ fcn( {} ); // $ExpectError
+ fcn( ( x: number ): number => x ); // $ExpectError
+}
+
+// The compiler throws an error if the function returned by the `factory` method is provided an unsupported number of arguments...
+{
+ const fcn = cdf.factory( 5 );
+ fcn(); // $ExpectError
+ fcn( 2, 0 ); // $ExpectError
+ fcn( 2, 0, 1 ); // $ExpectError
+}
+
+// The compiler throws an error if the `factory` method is provided values other than one number...
+{
+ cdf.factory( true ); // $ExpectError
+ cdf.factory( false ); // $ExpectError
+ cdf.factory( '5' ); // $ExpectError
+ cdf.factory( [] ); // $ExpectError
+ cdf.factory( {} ); // $ExpectError
+ cdf.factory( ( x: number ): number => x ); // $ExpectError
+}
+
+// The compiler throws an error if the `factory` method is provided an unsupported number of arguments...
+{
+ cdf.factory( 0, 1 ); // $ExpectError
+ cdf.factory( 0, 4, 8 ); // $ExpectError
+}
diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/examples/index.js b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/examples/index.js
new file mode 100644
index 000000000000..10bd6063342f
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/examples/index.js
@@ -0,0 +1,32 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+var uniform = require( '@stdlib/random/array/uniform' );
+var cdf = require( './../lib' );
+
+var x = uniform( 10, 0.0, 1.0 );
+var c = uniform( 10, 0.1, 10.0 );
+
+var y;
+var i;
+for ( i = 0; i < x.length; i++ ) {
+ y = cdf( x[ i ], c[ i ] );
+ console.log( 'x: %d, c: %d, F(x;c): %d', x[ i ].toFixed( 4 ), c[ i ].toFixed( 4 ), y.toFixed( 4 ) );
+}
diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/lib/factory.js b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/lib/factory.js
new file mode 100644
index 000000000000..648fa752d921
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/lib/factory.js
@@ -0,0 +1,83 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var constantFunction = require( '@stdlib/utils/constant-function' );
+var isnan = require( '@stdlib/math/base/assert/is-nan' );
+var log1p = require( '@stdlib/math/base/special/log1p' );
+
+
+// MAIN //
+
+/**
+* Returns a function for evaluating the cumulative distribution function (CDF) for a Bradford distribution with shape parameter `c`.
+*
+* @param {PositiveNumber} c - shape parameter
+* @returns {Function} CDF
+*
+* @example
+* var cdf = factory( 5.0 );
+* var y = cdf( 0.5 );
+* // returns ~0.699
+*
+* y = cdf( 1.0 );
+* // returns 1.0
+*/
+function factory( c ) {
+ if (
+ isnan( c ) ||
+ c <= 0.0
+ ) {
+ return constantFunction( NaN );
+ }
+ return cdf;
+
+ /**
+ * Evaluates the cumulative distribution function (CDF) for a Bradford distribution.
+ *
+ * @private
+ * @param {number} x - input value
+ * @returns {Probability} evaluated CDF
+ *
+ * @example
+ * var y = cdf( 0.5 );
+ * // returns
+ */
+ function cdf( x ) {
+ if (
+ isnan( x )
+ ) {
+ return NaN;
+ }
+ if ( x <= 0.0 ) {
+ return 0.0;
+ }
+ if ( x >= 1.0 ) {
+ return 1.0;
+ }
+ return log1p( c * x ) / log1p( c );
+ }
+}
+
+
+// EXPORTS //
+
+module.exports = factory;
diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/lib/index.js b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/lib/index.js
new file mode 100644
index 000000000000..dfc2916567ef
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/lib/index.js
@@ -0,0 +1,54 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+/**
+* Bradford distribution cumulative distribution function (CDF).
+*
+* @module @stdlib/stats/base/dists/bradford/cdf
+*
+* @example
+* var cdf = require( '@stdlib/stats/base/dists/bradford/cdf' );
+*
+* var y = cdf( 0.5, 5.0 );
+* // returns ~0.699
+*
+* var myPDF = cdf.factory( 5.0 );
+* y = myPDF( 0.5 );
+* // returns ~0.699
+*
+* y = myPDF( 1.0 );
+* // returns 1.0
+*/
+
+// MODULES //
+
+var setReadOnly = require( '@stdlib/utils/define-nonenumerable-read-only-property' );
+var main = require( './main.js' );
+var factory = require( './factory.js' );
+
+
+// MAIN //
+
+setReadOnly( main, 'factory', factory );
+
+
+// EXPORTS //
+
+module.exports = main;
diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/lib/main.js b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/lib/main.js
new file mode 100644
index 000000000000..66802a2d1dba
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/lib/main.js
@@ -0,0 +1,92 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var isnan = require( '@stdlib/math/base/assert/is-nan' );
+var log1p = require( '@stdlib/math/base/special/log1p' );
+
+
+// MAIN //
+
+/**
+* Returns the cumulative distribution function (CDF) for a Bradford distribution with shape parameter `c` at a value `x`.
+*
+* @param {number} x - input value
+* @param {PositiveNumber} c - shape parameter
+* @returns {Probability} evaluated CDF
+*
+* @example
+* var v = cdf( 0.1, 0.1 );
+* // returns ~0.104
+*
+* @example
+* var v = cdf( 0.5, 5.0 );
+* // returns ~0.699
+*
+* @example
+* var v = cdf( 1.0, 10.0 );
+* // returns 1.0
+*
+* @example
+* var v = cdf( -1.0, 0.5 );
+* // returns 0.0
+*
+* @example
+* var v = cdf( 2.0, 0.5 );
+* // returns 1.0
+*
+* @example
+* var v = cdf( 0.5, 0.0 );
+* // returns NaN
+*
+* @example
+* var v = cdf( 0.5, -5.0 );
+* // returns NaN
+*
+* @example
+* var v = cdf( NaN, 1.0 );
+* // returns NaN
+*
+* @example
+* var v = cdf( 1.0, NaN );
+* // returns NaN
+*/
+function cdf( x, c ) {
+ if (
+ isnan( c ) ||
+ isnan( x ) ||
+ c <= 0.0
+ ) {
+ return NaN;
+ }
+ if ( x <= 0.0 ) {
+ return 0.0;
+ }
+ if ( x >= 1.0 ) {
+ return 1.0;
+ }
+ return log1p( c * x ) / log1p( c );
+}
+
+
+// EXPORTS //
+
+module.exports = cdf;
diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/package.json b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/package.json
new file mode 100644
index 000000000000..29ea5700bd1d
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/package.json
@@ -0,0 +1,69 @@
+{
+ "name": "@stdlib/stats/base/dists/bradford/cdf",
+ "version": "0.0.0",
+ "description": "Bradford distribution cumulative distribution function (CDF).",
+ "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",
+ "statistics",
+ "stats",
+ "distribution",
+ "dist",
+ "bradford",
+ "bradford-distribution",
+ "parameter",
+ "shape-parameter",
+ "continuous",
+ "skewed",
+ "cdf",
+ "cumulative",
+ "cumulative-distribution",
+ "cumulative-distribution-function"
+ ]
+}
diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/test/fixtures/python/large_c.json b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/test/fixtures/python/large_c.json
new file mode 100644
index 000000000000..3385731f394a
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/test/fixtures/python/large_c.json
@@ -0,0 +1 @@
+{"x": [0.0, 0.001001001001001001, 0.002002002002002002, 0.003003003003003003, 0.004004004004004004, 0.005005005005005005, 0.006006006006006006, 0.007007007007007007, 0.008008008008008008, 0.009009009009009009, 0.01001001001001001, 0.011011011011011011, 0.012012012012012012, 0.013013013013013013, 0.014014014014014014, 0.015015015015015015, 0.016016016016016016, 0.017017017017017015, 0.018018018018018018, 0.01901901901901902, 0.02002002002002002, 0.02102102102102102, 0.022022022022022022, 0.023023023023023025, 0.024024024024024024, 0.025025025025025023, 0.026026026026026026, 0.02702702702702703, 0.028028028028028028, 0.029029029029029027, 0.03003003003003003, 0.031031031031031032, 0.03203203203203203, 0.03303303303303303, 0.03403403403403403, 0.035035035035035036, 0.036036036036036036, 0.037037037037037035, 0.03803803803803804, 0.03903903903903904, 0.04004004004004004, 0.04104104104104104, 0.04204204204204204, 0.043043043043043044, 0.044044044044044044, 0.04504504504504504, 0.04604604604604605, 0.04704704704704705, 0.04804804804804805, 0.04904904904904905, 0.050050050050050046, 0.05105105105105105, 0.05205205205205205, 0.05305305305305305, 0.05405405405405406, 0.055055055055055056, 0.056056056056056056, 0.057057057057057055, 0.058058058058058054, 0.05905905905905906, 0.06006006006006006, 0.06106106106106106, 0.062062062062062065, 0.06306306306306306, 0.06406406406406406, 0.06506506506506507, 0.06606606606606606, 0.06706706706706707, 0.06806806806806806, 0.06906906906906907, 0.07007007007007007, 0.07107107107107107, 0.07207207207207207, 0.07307307307307308, 0.07407407407407407, 0.07507507507507508, 0.07607607607607608, 0.07707707707707707, 0.07807807807807808, 0.07907907907907907, 0.08008008008008008, 0.08108108108108109, 0.08208208208208208, 0.08308308308308308, 0.08408408408408408, 0.08508508508508508, 0.08608608608608609, 0.08708708708708708, 0.08808808808808809, 0.0890890890890891, 0.09009009009009009, 0.09109109109109109, 0.0920920920920921, 0.09309309309309309, 0.0940940940940941, 0.09509509509509509, 0.0960960960960961, 0.0970970970970971, 0.0980980980980981, 0.0990990990990991, 0.10010010010010009, 0.1011011011011011, 0.1021021021021021, 0.1031031031031031, 0.1041041041041041, 0.10510510510510511, 0.1061061061061061, 0.10710710710710711, 0.10810810810810811, 0.1091091091091091, 0.11011011011011011, 0.1111111111111111, 0.11211211211211211, 0.11311311311311312, 0.11411411411411411, 0.11511511511511512, 0.11611611611611611, 0.11711711711711711, 0.11811811811811812, 0.11911911911911911, 0.12012012012012012, 0.12112112112112113, 0.12212212212212212, 0.12312312312312312, 0.12412412412412413, 0.12512512512512514, 0.12612612612612611, 0.12712712712712712, 0.12812812812812813, 0.12912912912912913, 0.13013013013013014, 0.13113113113113112, 0.13213213213213212, 0.13313313313313313, 0.13413413413413414, 0.13513513513513514, 0.13613613613613612, 0.13713713713713713, 0.13813813813813813, 0.13913913913913914, 0.14014014014014015, 0.14114114114114115, 0.14214214214214213, 0.14314314314314314, 0.14414414414414414, 0.14514514514514515, 0.14614614614614616, 0.14714714714714713, 0.14814814814814814, 0.14914914914914915, 0.15015015015015015, 0.15115115115115116, 0.15215215215215216, 0.15315315315315314, 0.15415415415415415, 0.15515515515515516, 0.15615615615615616, 0.15715715715715717, 0.15815815815815815, 0.15915915915915915, 0.16016016016016016, 0.16116116116116116, 0.16216216216216217, 0.16316316316316315, 0.16416416416416416, 0.16516516516516516, 0.16616616616616617, 0.16716716716716717, 0.16816816816816815, 0.16916916916916916, 0.17017017017017017, 0.17117117117117117, 0.17217217217217218, 0.17317317317317318, 0.17417417417417416, 0.17517517517517517, 0.17617617617617617, 0.17717717717717718, 0.1781781781781782, 0.17917917917917917, 0.18018018018018017, 0.18118118118118118, 0.18218218218218218, 0.1831831831831832, 0.1841841841841842, 0.18518518518518517, 0.18618618618618618, 0.1871871871871872, 0.1881881881881882, 0.1891891891891892, 0.19019019019019018, 0.19119119119119118, 0.1921921921921922, 0.1931931931931932, 0.1941941941941942, 0.19519519519519518, 0.1961961961961962, 0.1971971971971972, 0.1981981981981982, 0.1991991991991992, 0.20020020020020018, 0.2012012012012012, 0.2022022022022022, 0.2032032032032032, 0.2042042042042042, 0.20520520520520522, 0.2062062062062062, 0.2072072072072072, 0.2082082082082082, 0.2092092092092092, 0.21021021021021022, 0.2112112112112112, 0.2122122122122122, 0.2132132132132132, 0.21421421421421422, 0.21521521521521522, 0.21621621621621623, 0.2172172172172172, 0.2182182182182182, 0.21921921921921922, 0.22022022022022023, 0.22122122122122123, 0.2222222222222222, 0.22322322322322322, 0.22422422422422422, 0.22522522522522523, 0.22622622622622623, 0.2272272272272272, 0.22822822822822822, 0.22922922922922923, 0.23023023023023023, 0.23123123123123124, 0.23223223223223222, 0.23323323323323322, 0.23423423423423423, 0.23523523523523523, 0.23623623623623624, 0.23723723723723725, 0.23823823823823823, 0.23923923923923923, 0.24024024024024024, 0.24124124124124124, 0.24224224224224225, 0.24324324324324323, 0.24424424424424424, 0.24524524524524524, 0.24624624624624625, 0.24724724724724725, 0.24824824824824826, 0.24924924924924924, 0.2502502502502503, 0.25125125125125125, 0.25225225225225223, 0.25325325325325326, 0.25425425425425424, 0.2552552552552553, 0.25625625625625625, 0.25725725725725723, 0.25825825825825827, 0.25925925925925924, 0.2602602602602603, 0.26126126126126126, 0.26226226226226224, 0.26326326326326327, 0.26426426426426425, 0.2652652652652653, 0.26626626626626626, 0.26726726726726724, 0.2682682682682683, 0.26926926926926925, 0.2702702702702703, 0.27127127127127126, 0.27227227227227224, 0.2732732732732733, 0.27427427427427425, 0.2752752752752753, 0.27627627627627627, 0.2772772772772773, 0.2782782782782783, 0.27927927927927926, 0.2802802802802803, 0.28128128128128127, 0.2822822822822823, 0.2832832832832833, 0.28428428428428426, 0.2852852852852853, 0.2862862862862863, 0.2872872872872873, 0.2882882882882883, 0.28928928928928926, 0.2902902902902903, 0.2912912912912913, 0.2922922922922923, 0.2932932932932933, 0.29429429429429427, 0.2952952952952953, 0.2962962962962963, 0.2972972972972973, 0.2982982982982983, 0.29929929929929927, 0.3003003003003003, 0.3013013013013013, 0.3023023023023023, 0.3033033033033033, 0.30430430430430433, 0.3053053053053053, 0.3063063063063063, 0.3073073073073073, 0.3083083083083083, 0.30930930930930933, 0.3103103103103103, 0.3113113113113113, 0.3123123123123123, 0.3133133133133133, 0.31431431431431434, 0.3153153153153153, 0.3163163163163163, 0.3173173173173173, 0.3183183183183183, 0.31931931931931934, 0.3203203203203203, 0.3213213213213213, 0.32232232232232233, 0.3233233233233233, 0.32432432432432434, 0.3253253253253253, 0.3263263263263263, 0.32732732732732733, 0.3283283283283283, 0.32932932932932935, 0.3303303303303303, 0.3313313313313313, 0.33233233233233234, 0.3333333333333333, 0.33433433433433435, 0.3353353353353353, 0.3363363363363363, 0.33733733733733734, 0.3383383383383383, 0.33933933933933935, 0.34034034034034033, 0.34134134134134136, 0.34234234234234234, 0.3433433433433433, 0.34434434434434436, 0.34534534534534533, 0.34634634634634637, 0.34734734734734735, 0.3483483483483483, 0.34934934934934936, 0.35035035035035034, 0.35135135135135137, 0.35235235235235235, 0.3533533533533533, 0.35435435435435436, 0.35535535535535534, 0.3563563563563564, 0.35735735735735735, 0.35835835835835833, 0.35935935935935936, 0.36036036036036034, 0.3613613613613614, 0.36236236236236236, 0.36336336336336333, 0.36436436436436437, 0.36536536536536535, 0.3663663663663664, 0.36736736736736736, 0.3683683683683684, 0.36936936936936937, 0.37037037037037035, 0.3713713713713714, 0.37237237237237236, 0.3733733733733734, 0.3743743743743744, 0.37537537537537535, 0.3763763763763764, 0.37737737737737737, 0.3783783783783784, 0.3793793793793794, 0.38038038038038036, 0.3813813813813814, 0.38238238238238237, 0.3833833833833834, 0.3843843843843844, 0.38538538538538536, 0.3863863863863864, 0.38738738738738737, 0.3883883883883884, 0.3893893893893894, 0.39039039039039036, 0.3913913913913914, 0.3923923923923924, 0.3933933933933934, 0.3943943943943944, 0.39539539539539537, 0.3963963963963964, 0.3973973973973974, 0.3983983983983984, 0.3993993993993994, 0.40040040040040037, 0.4014014014014014, 0.4024024024024024, 0.4034034034034034, 0.4044044044044044, 0.40540540540540543, 0.4064064064064064, 0.4074074074074074, 0.4084084084084084, 0.4094094094094094, 0.41041041041041043, 0.4114114114114114, 0.4124124124124124, 0.4134134134134134, 0.4144144144144144, 0.41541541541541543, 0.4164164164164164, 0.4174174174174174, 0.4184184184184184, 0.4194194194194194, 0.42042042042042044, 0.4214214214214214, 0.4224224224224224, 0.42342342342342343, 0.4244244244244244, 0.42542542542542544, 0.4264264264264264, 0.4274274274274274, 0.42842842842842843, 0.4294294294294294, 0.43043043043043044, 0.4314314314314314, 0.43243243243243246, 0.43343343343343343, 0.4344344344344344, 0.43543543543543545, 0.4364364364364364, 0.43743743743743746, 0.43843843843843844, 0.4394394394394394, 0.44044044044044045, 0.44144144144144143, 0.44244244244244246, 0.44344344344344344, 0.4444444444444444, 0.44544544544544545, 0.44644644644644643, 0.44744744744744747, 0.44844844844844844, 0.4494494494494494, 0.45045045045045046, 0.45145145145145144, 0.45245245245245247, 0.45345345345345345, 0.4544544544544544, 0.45545545545545546, 0.45645645645645644, 0.4574574574574575, 0.45845845845845845, 0.45945945945945943, 0.46046046046046046, 0.46146146146146144, 0.4624624624624625, 0.46346346346346345, 0.46446446446446443, 0.46546546546546547, 0.46646646646646645, 0.4674674674674675, 0.46846846846846846, 0.4694694694694695, 0.47047047047047047, 0.47147147147147145, 0.4724724724724725, 0.47347347347347346, 0.4744744744744745, 0.4754754754754755, 0.47647647647647645, 0.4774774774774775, 0.47847847847847846, 0.4794794794794795, 0.4804804804804805, 0.48148148148148145, 0.4824824824824825, 0.48348348348348347, 0.4844844844844845, 0.4854854854854855, 0.48648648648648646, 0.4874874874874875, 0.48848848848848847, 0.4894894894894895, 0.4904904904904905, 0.49149149149149146, 0.4924924924924925, 0.4934934934934935, 0.4944944944944945, 0.4954954954954955, 0.4964964964964965, 0.4974974974974975, 0.4984984984984985, 0.4994994994994995, 0.5005005005005005, 0.5015015015015015, 0.5025025025025025, 0.5035035035035035, 0.5045045045045045, 0.5055055055055055, 0.5065065065065065, 0.5075075075075075, 0.5085085085085085, 0.5095095095095095, 0.5105105105105106, 0.5115115115115115, 0.5125125125125125, 0.5135135135135135, 0.5145145145145145, 0.5155155155155156, 0.5165165165165165, 0.5175175175175175, 0.5185185185185185, 0.5195195195195195, 0.5205205205205206, 0.5215215215215215, 0.5225225225225225, 0.5235235235235235, 0.5245245245245245, 0.5255255255255256, 0.5265265265265265, 0.5275275275275275, 0.5285285285285285, 0.5295295295295295, 0.5305305305305306, 0.5315315315315315, 0.5325325325325325, 0.5335335335335335, 0.5345345345345345, 0.5355355355355356, 0.5365365365365365, 0.5375375375375375, 0.5385385385385385, 0.5395395395395395, 0.5405405405405406, 0.5415415415415415, 0.5425425425425425, 0.5435435435435435, 0.5445445445445445, 0.5455455455455456, 0.5465465465465466, 0.5475475475475475, 0.5485485485485485, 0.5495495495495496, 0.5505505505505506, 0.5515515515515516, 0.5525525525525525, 0.5535535535535535, 0.5545545545545546, 0.5555555555555556, 0.5565565565565566, 0.5575575575575575, 0.5585585585585585, 0.5595595595595596, 0.5605605605605606, 0.5615615615615616, 0.5625625625625625, 0.5635635635635635, 0.5645645645645646, 0.5655655655655656, 0.5665665665665666, 0.5675675675675675, 0.5685685685685685, 0.5695695695695696, 0.5705705705705706, 0.5715715715715716, 0.5725725725725725, 0.5735735735735735, 0.5745745745745746, 0.5755755755755756, 0.5765765765765766, 0.5775775775775776, 0.5785785785785785, 0.5795795795795796, 0.5805805805805806, 0.5815815815815816, 0.5825825825825826, 0.5835835835835835, 0.5845845845845846, 0.5855855855855856, 0.5865865865865866, 0.5875875875875876, 0.5885885885885885, 0.5895895895895896, 0.5905905905905906, 0.5915915915915916, 0.5925925925925926, 0.5935935935935935, 0.5945945945945946, 0.5955955955955956, 0.5965965965965966, 0.5975975975975976, 0.5985985985985985, 0.5995995995995996, 0.6006006006006006, 0.6016016016016016, 0.6026026026026026, 0.6036036036036035, 0.6046046046046046, 0.6056056056056056, 0.6066066066066066, 0.6076076076076076, 0.6086086086086087, 0.6096096096096096, 0.6106106106106106, 0.6116116116116116, 0.6126126126126126, 0.6136136136136137, 0.6146146146146146, 0.6156156156156156, 0.6166166166166166, 0.6176176176176176, 0.6186186186186187, 0.6196196196196196, 0.6206206206206206, 0.6216216216216216, 0.6226226226226226, 0.6236236236236237, 0.6246246246246246, 0.6256256256256256, 0.6266266266266266, 0.6276276276276276, 0.6286286286286287, 0.6296296296296297, 0.6306306306306306, 0.6316316316316316, 0.6326326326326326, 0.6336336336336337, 0.6346346346346347, 0.6356356356356356, 0.6366366366366366, 0.6376376376376376, 0.6386386386386387, 0.6396396396396397, 0.6406406406406406, 0.6416416416416416, 0.6426426426426426, 0.6436436436436437, 0.6446446446446447, 0.6456456456456456, 0.6466466466466466, 0.6476476476476476, 0.6486486486486487, 0.6496496496496497, 0.6506506506506506, 0.6516516516516516, 0.6526526526526526, 0.6536536536536537, 0.6546546546546547, 0.6556556556556556, 0.6566566566566566, 0.6576576576576576, 0.6586586586586587, 0.6596596596596597, 0.6606606606606606, 0.6616616616616616, 0.6626626626626626, 0.6636636636636637, 0.6646646646646647, 0.6656656656656657, 0.6666666666666666, 0.6676676676676676, 0.6686686686686687, 0.6696696696696697, 0.6706706706706707, 0.6716716716716716, 0.6726726726726726, 0.6736736736736737, 0.6746746746746747, 0.6756756756756757, 0.6766766766766766, 0.6776776776776777, 0.6786786786786787, 0.6796796796796797, 0.6806806806806807, 0.6816816816816816, 0.6826826826826827, 0.6836836836836837, 0.6846846846846847, 0.6856856856856857, 0.6866866866866866, 0.6876876876876877, 0.6886886886886887, 0.6896896896896897, 0.6906906906906907, 0.6916916916916916, 0.6926926926926927, 0.6936936936936937, 0.6946946946946947, 0.6956956956956957, 0.6966966966966966, 0.6976976976976977, 0.6986986986986987, 0.6996996996996997, 0.7007007007007007, 0.7017017017017017, 0.7027027027027027, 0.7037037037037037, 0.7047047047047047, 0.7057057057057057, 0.7067067067067067, 0.7077077077077077, 0.7087087087087087, 0.7097097097097097, 0.7107107107107107, 0.7117117117117117, 0.7127127127127127, 0.7137137137137137, 0.7147147147147147, 0.7157157157157157, 0.7167167167167167, 0.7177177177177178, 0.7187187187187187, 0.7197197197197197, 0.7207207207207207, 0.7217217217217217, 0.7227227227227228, 0.7237237237237237, 0.7247247247247247, 0.7257257257257257, 0.7267267267267267, 0.7277277277277278, 0.7287287287287287, 0.7297297297297297, 0.7307307307307307, 0.7317317317317317, 0.7327327327327328, 0.7337337337337337, 0.7347347347347347, 0.7357357357357357, 0.7367367367367368, 0.7377377377377378, 0.7387387387387387, 0.7397397397397397, 0.7407407407407407, 0.7417417417417418, 0.7427427427427428, 0.7437437437437437, 0.7447447447447447, 0.7457457457457457, 0.7467467467467468, 0.7477477477477478, 0.7487487487487487, 0.7497497497497497, 0.7507507507507507, 0.7517517517517518, 0.7527527527527528, 0.7537537537537538, 0.7547547547547547, 0.7557557557557557, 0.7567567567567568, 0.7577577577577578, 0.7587587587587588, 0.7597597597597597, 0.7607607607607607, 0.7617617617617618, 0.7627627627627628, 0.7637637637637638, 0.7647647647647647, 0.7657657657657657, 0.7667667667667668, 0.7677677677677678, 0.7687687687687688, 0.7697697697697697, 0.7707707707707707, 0.7717717717717718, 0.7727727727727728, 0.7737737737737738, 0.7747747747747747, 0.7757757757757757, 0.7767767767767768, 0.7777777777777778, 0.7787787787787788, 0.7797797797797797, 0.7807807807807807, 0.7817817817817818, 0.7827827827827828, 0.7837837837837838, 0.7847847847847848, 0.7857857857857857, 0.7867867867867868, 0.7877877877877878, 0.7887887887887888, 0.7897897897897898, 0.7907907907907907, 0.7917917917917918, 0.7927927927927928, 0.7937937937937938, 0.7947947947947948, 0.7957957957957957, 0.7967967967967968, 0.7977977977977978, 0.7987987987987988, 0.7997997997997998, 0.8008008008008007, 0.8018018018018018, 0.8028028028028028, 0.8038038038038038, 0.8048048048048048, 0.8058058058058059, 0.8068068068068068, 0.8078078078078078, 0.8088088088088088, 0.8098098098098098, 0.8108108108108109, 0.8118118118118118, 0.8128128128128128, 0.8138138138138138, 0.8148148148148148, 0.8158158158158159, 0.8168168168168168, 0.8178178178178178, 0.8188188188188188, 0.8198198198198198, 0.8208208208208209, 0.8218218218218218, 0.8228228228228228, 0.8238238238238238, 0.8248248248248248, 0.8258258258258259, 0.8268268268268268, 0.8278278278278278, 0.8288288288288288, 0.8298298298298298, 0.8308308308308309, 0.8318318318318318, 0.8328328328328328, 0.8338338338338338, 0.8348348348348348, 0.8358358358358359, 0.8368368368368369, 0.8378378378378378, 0.8388388388388388, 0.8398398398398398, 0.8408408408408409, 0.8418418418418419, 0.8428428428428428, 0.8438438438438438, 0.8448448448448448, 0.8458458458458459, 0.8468468468468469, 0.8478478478478478, 0.8488488488488488, 0.8498498498498498, 0.8508508508508509, 0.8518518518518519, 0.8528528528528528, 0.8538538538538538, 0.8548548548548548, 0.8558558558558559, 0.8568568568568569, 0.8578578578578578, 0.8588588588588588, 0.8598598598598598, 0.8608608608608609, 0.8618618618618619, 0.8628628628628628, 0.8638638638638638, 0.8648648648648649, 0.8658658658658659, 0.8668668668668669, 0.8678678678678678, 0.8688688688688688, 0.8698698698698699, 0.8708708708708709, 0.8718718718718719, 0.8728728728728729, 0.8738738738738738, 0.8748748748748749, 0.8758758758758759, 0.8768768768768769, 0.8778778778778779, 0.8788788788788788, 0.8798798798798799, 0.8808808808808809, 0.8818818818818819, 0.8828828828828829, 0.8838838838838838, 0.8848848848848849, 0.8858858858858859, 0.8868868868868869, 0.8878878878878879, 0.8888888888888888, 0.8898898898898899, 0.8908908908908909, 0.8918918918918919, 0.8928928928928929, 0.8938938938938938, 0.8948948948948949, 0.8958958958958959, 0.8968968968968969, 0.8978978978978979, 0.8988988988988988, 0.8998998998998999, 0.9009009009009009, 0.9019019019019019, 0.9029029029029029, 0.9039039039039038, 0.9049049049049049, 0.9059059059059059, 0.9069069069069069, 0.9079079079079079, 0.9089089089089089, 0.9099099099099099, 0.9109109109109109, 0.9119119119119119, 0.9129129129129129, 0.9139139139139139, 0.914914914914915, 0.9159159159159159, 0.9169169169169169, 0.9179179179179179, 0.9189189189189189, 0.91991991991992, 0.9209209209209209, 0.9219219219219219, 0.9229229229229229, 0.9239239239239239, 0.924924924924925, 0.9259259259259259, 0.9269269269269269, 0.9279279279279279, 0.9289289289289289, 0.92992992992993, 0.9309309309309309, 0.9319319319319319, 0.9329329329329329, 0.933933933933934, 0.934934934934935, 0.9359359359359359, 0.9369369369369369, 0.9379379379379379, 0.938938938938939, 0.93993993993994, 0.9409409409409409, 0.9419419419419419, 0.9429429429429429, 0.943943943943944, 0.944944944944945, 0.9459459459459459, 0.9469469469469469, 0.9479479479479479, 0.948948948948949, 0.94994994994995, 0.950950950950951, 0.9519519519519519, 0.9529529529529529, 0.953953953953954, 0.954954954954955, 0.955955955955956, 0.9569569569569569, 0.9579579579579579, 0.958958958958959, 0.95995995995996, 0.960960960960961, 0.9619619619619619, 0.9629629629629629, 0.963963963963964, 0.964964964964965, 0.965965965965966, 0.9669669669669669, 0.9679679679679679, 0.968968968968969, 0.96996996996997, 0.970970970970971, 0.9719719719719719, 0.9729729729729729, 0.973973973973974, 0.974974974974975, 0.975975975975976, 0.9769769769769769, 0.9779779779779779, 0.978978978978979, 0.97997997997998, 0.980980980980981, 0.9819819819819819, 0.9829829829829829, 0.983983983983984, 0.984984984984985, 0.985985985985986, 0.986986986986987, 0.9879879879879879, 0.988988988988989, 0.98998998998999, 0.990990990990991, 0.991991991991992, 0.992992992992993, 0.993993993993994, 0.994994994994995, 0.995995995995996, 0.996996996996997, 0.997997997997998, 0.998998998998999, 1.0], "c": [10.0, 10.09009009009009, 10.18018018018018, 10.27027027027027, 10.36036036036036, 10.45045045045045, 10.54054054054054, 10.63063063063063, 10.72072072072072, 10.81081081081081, 10.9009009009009, 10.99099099099099, 11.08108108108108, 11.17117117117117, 11.26126126126126, 11.35135135135135, 11.441441441441441, 11.531531531531531, 11.621621621621621, 11.711711711711711, 11.801801801801801, 11.891891891891891, 11.981981981981981, 12.072072072072071, 12.162162162162161, 12.252252252252251, 12.342342342342342, 12.432432432432432, 12.522522522522522, 12.612612612612612, 12.702702702702702, 12.792792792792792, 12.882882882882882, 12.972972972972972, 13.063063063063062, 13.153153153153152, 13.243243243243242, 13.333333333333332, 13.423423423423422, 13.513513513513512, 13.603603603603602, 13.693693693693694, 13.783783783783784, 13.873873873873874, 13.963963963963964, 14.054054054054053, 14.144144144144143, 14.234234234234233, 14.324324324324325, 14.414414414414415, 14.504504504504505, 14.594594594594595, 14.684684684684685, 14.774774774774775, 14.864864864864865, 14.954954954954955, 15.045045045045045, 15.135135135135135, 15.225225225225225, 15.315315315315315, 15.405405405405405, 15.495495495495495, 15.585585585585585, 15.675675675675675, 15.765765765765765, 15.855855855855856, 15.945945945945946, 16.036036036036037, 16.126126126126124, 16.216216216216218, 16.306306306306304, 16.396396396396398, 16.486486486486484, 16.576576576576578, 16.666666666666664, 16.756756756756758, 16.846846846846844, 16.936936936936938, 17.027027027027025, 17.117117117117118, 17.207207207207205, 17.2972972972973, 17.38738738738739, 17.47747747747748, 17.56756756756757, 17.65765765765766, 17.74774774774775, 17.83783783783784, 17.92792792792793, 18.01801801801802, 18.108108108108105, 18.1981981981982, 18.288288288288285, 18.37837837837838, 18.468468468468465, 18.55855855855856, 18.64864864864865, 18.73873873873874, 18.82882882882883, 18.91891891891892, 19.00900900900901, 19.0990990990991, 19.18918918918919, 19.27927927927928, 19.36936936936937, 19.45945945945946, 19.54954954954955, 19.63963963963964, 19.72972972972973, 19.81981981981982, 19.90990990990991, 20.0, 20.09009009009009, 20.18018018018018, 20.27027027027027, 20.36036036036036, 20.45045045045045, 20.54054054054054, 20.63063063063063, 20.72072072072072, 20.81081081081081, 20.9009009009009, 20.99099099099099, 21.08108108108108, 21.17117117117117, 21.26126126126126, 21.35135135135135, 21.44144144144144, 21.53153153153153, 21.62162162162162, 21.71171171171171, 21.8018018018018, 21.89189189189189, 21.98198198198198, 22.07207207207207, 22.16216216216216, 22.25225225225225, 22.34234234234234, 22.43243243243243, 22.52252252252252, 22.61261261261261, 22.7027027027027, 22.792792792792792, 22.882882882882882, 22.972972972972972, 23.063063063063062, 23.153153153153152, 23.243243243243242, 23.333333333333332, 23.423423423423422, 23.513513513513512, 23.603603603603602, 23.693693693693692, 23.783783783783782, 23.873873873873872, 23.963963963963963, 24.054054054054053, 24.144144144144143, 24.234234234234233, 24.324324324324323, 24.414414414414413, 24.504504504504503, 24.594594594594597, 24.684684684684683, 24.774774774774777, 24.864864864864863, 24.954954954954957, 25.045045045045043, 25.135135135135137, 25.225225225225223, 25.315315315315317, 25.405405405405403, 25.495495495495497, 25.585585585585584, 25.675675675675677, 25.765765765765764, 25.855855855855857, 25.945945945945944, 26.036036036036034, 26.126126126126124, 26.216216216216214, 26.306306306306304, 26.396396396396394, 26.486486486486484, 26.576576576576574, 26.666666666666664, 26.756756756756754, 26.846846846846844, 26.936936936936934, 27.027027027027025, 27.117117117117115, 27.207207207207205, 27.2972972972973, 27.38738738738739, 27.47747747747748, 27.56756756756757, 27.65765765765766, 27.74774774774775, 27.83783783783784, 27.92792792792793, 28.01801801801802, 28.10810810810811, 28.1981981981982, 28.28828828828829, 28.37837837837838, 28.46846846846847, 28.55855855855856, 28.64864864864865, 28.73873873873874, 28.82882882882883, 28.91891891891892, 29.00900900900901, 29.0990990990991, 29.18918918918919, 29.27927927927928, 29.36936936936937, 29.45945945945946, 29.54954954954955, 29.63963963963964, 29.72972972972973, 29.81981981981982, 29.90990990990991, 30.0, 30.09009009009009, 30.18018018018018, 30.27027027027027, 30.36036036036036, 30.45045045045045, 30.54054054054054, 30.63063063063063, 30.72072072072072, 30.81081081081081, 30.9009009009009, 30.99099099099099, 31.08108108108108, 31.17117117117117, 31.26126126126126, 31.35135135135135, 31.44144144144144, 31.53153153153153, 31.62162162162162, 31.71171171171171, 31.8018018018018, 31.89189189189189, 31.98198198198198, 32.072072072072075, 32.16216216216216, 32.25225225225225, 32.34234234234234, 32.432432432432435, 32.52252252252252, 32.61261261261261, 32.7027027027027, 32.792792792792795, 32.88288288288288, 32.97297297297297, 33.06306306306306, 33.153153153153156, 33.24324324324324, 33.33333333333333, 33.42342342342342, 33.513513513513516, 33.6036036036036, 33.69369369369369, 33.78378378378378, 33.873873873873876, 33.96396396396396, 34.05405405405405, 34.14414414414414, 34.234234234234236, 34.32432432432432, 34.41441441441441, 34.5045045045045, 34.5945945945946, 34.68468468468468, 34.77477477477477, 34.86486486486486, 34.95495495495496, 35.04504504504504, 35.13513513513513, 35.22522522522522, 35.31531531531532, 35.4054054054054, 35.49549549549549, 35.585585585585584, 35.67567567567568, 35.765765765765764, 35.85585585585585, 35.945945945945944, 36.03603603603604, 36.126126126126124, 36.21621621621621, 36.306306306306304, 36.3963963963964, 36.486486486486484, 36.57657657657657, 36.666666666666664, 36.75675675675676, 36.846846846846844, 36.93693693693693, 37.027027027027025, 37.11711711711712, 37.207207207207205, 37.29729729729729, 37.387387387387385, 37.47747747747748, 37.567567567567565, 37.65765765765765, 37.747747747747745, 37.83783783783784, 37.927927927927925, 38.01801801801801, 38.108108108108105, 38.1981981981982, 38.288288288288285, 38.37837837837837, 38.468468468468465, 38.55855855855856, 38.648648648648646, 38.73873873873873, 38.828828828828826, 38.91891891891892, 39.009009009009006, 39.0990990990991, 39.18918918918919, 39.27927927927928, 39.369369369369366, 39.45945945945946, 39.54954954954955, 39.63963963963964, 39.729729729729726, 39.81981981981982, 39.90990990990991, 40.0, 40.09009009009009, 40.18018018018018, 40.270270270270274, 40.36036036036036, 40.45045045045045, 40.54054054054054, 40.630630630630634, 40.72072072072072, 40.81081081081081, 40.9009009009009, 40.990990990990994, 41.08108108108108, 41.17117117117117, 41.26126126126126, 41.351351351351354, 41.44144144144144, 41.53153153153153, 41.62162162162162, 41.711711711711715, 41.8018018018018, 41.89189189189189, 41.98198198198198, 42.07207207207207, 42.16216216216216, 42.25225225225225, 42.34234234234234, 42.43243243243243, 42.52252252252252, 42.61261261261261, 42.7027027027027, 42.79279279279279, 42.88288288288288, 42.97297297297297, 43.06306306306306, 43.15315315315315, 43.24324324324324, 43.33333333333333, 43.42342342342342, 43.51351351351351, 43.6036036036036, 43.69369369369369, 43.78378378378378, 43.87387387387387, 43.96396396396396, 44.05405405405405, 44.14414414414414, 44.23423423423423, 44.32432432432432, 44.41441441441441, 44.5045045045045, 44.5945945945946, 44.68468468468468, 44.77477477477478, 44.86486486486486, 44.95495495495496, 45.04504504504504, 45.13513513513514, 45.22522522522522, 45.31531531531532, 45.4054054054054, 45.4954954954955, 45.585585585585584, 45.67567567567568, 45.765765765765764, 45.85585585585586, 45.945945945945944, 46.03603603603604, 46.126126126126124, 46.21621621621622, 46.306306306306304, 46.3963963963964, 46.486486486486484, 46.57657657657658, 46.666666666666664, 46.75675675675676, 46.846846846846844, 46.93693693693694, 47.027027027027025, 47.11711711711712, 47.207207207207205, 47.2972972972973, 47.387387387387385, 47.47747747747748, 47.567567567567565, 47.65765765765766, 47.747747747747745, 47.83783783783784, 47.927927927927925, 48.01801801801802, 48.108108108108105, 48.1981981981982, 48.288288288288285, 48.37837837837838, 48.468468468468465, 48.55855855855856, 48.648648648648646, 48.73873873873874, 48.828828828828826, 48.91891891891892, 49.009009009009006, 49.0990990990991, 49.189189189189186, 49.27927927927928, 49.369369369369366, 49.45945945945946, 49.549549549549546, 49.63963963963964, 49.729729729729726, 49.81981981981982, 49.909909909909906, 50.0, 50.09009009009009, 50.18018018018018, 50.27027027027027, 50.36036036036036, 50.45045045045045, 50.54054054054054, 50.63063063063063, 50.72072072072072, 50.81081081081081, 50.9009009009009, 50.99099099099099, 51.08108108108108, 51.17117117117117, 51.26126126126126, 51.35135135135135, 51.44144144144144, 51.53153153153153, 51.62162162162162, 51.71171171171171, 51.8018018018018, 51.89189189189189, 51.98198198198198, 52.07207207207207, 52.16216216216216, 52.25225225225225, 52.34234234234234, 52.43243243243243, 52.52252252252252, 52.61261261261261, 52.7027027027027, 52.79279279279279, 52.88288288288288, 52.97297297297297, 53.06306306306306, 53.15315315315315, 53.24324324324324, 53.33333333333333, 53.42342342342342, 53.51351351351351, 53.6036036036036, 53.69369369369369, 53.78378378378378, 53.87387387387387, 53.96396396396396, 54.05405405405405, 54.14414414414414, 54.23423423423423, 54.32432432432432, 54.41441441441441, 54.5045045045045, 54.59459459459459, 54.68468468468468, 54.77477477477477, 54.86486486486486, 54.95495495495495, 55.04504504504504, 55.13513513513513, 55.22522522522522, 55.31531531531531, 55.4054054054054, 55.49549549549549, 55.585585585585584, 55.67567567567567, 55.765765765765764, 55.85585585585585, 55.945945945945944, 56.03603603603603, 56.126126126126124, 56.21621621621622, 56.306306306306304, 56.3963963963964, 56.486486486486484, 56.57657657657658, 56.666666666666664, 56.75675675675676, 56.846846846846844, 56.93693693693694, 57.027027027027025, 57.11711711711712, 57.207207207207205, 57.2972972972973, 57.387387387387385, 57.47747747747748, 57.567567567567565, 57.65765765765766, 57.747747747747745, 57.83783783783784, 57.927927927927925, 58.01801801801802, 58.108108108108105, 58.1981981981982, 58.288288288288285, 58.37837837837838, 58.468468468468465, 58.55855855855856, 58.648648648648646, 58.73873873873874, 58.828828828828826, 58.91891891891892, 59.009009009009006, 59.0990990990991, 59.189189189189186, 59.27927927927928, 59.369369369369366, 59.45945945945946, 59.549549549549546, 59.63963963963964, 59.729729729729726, 59.81981981981982, 59.909909909909906, 60.0, 60.09009009009009, 60.18018018018018, 60.27027027027027, 60.36036036036036, 60.45045045045045, 60.54054054054054, 60.63063063063063, 60.72072072072072, 60.81081081081081, 60.9009009009009, 60.99099099099099, 61.08108108108108, 61.17117117117117, 61.26126126126126, 61.35135135135135, 61.44144144144144, 61.53153153153153, 61.62162162162162, 61.71171171171171, 61.8018018018018, 61.89189189189189, 61.98198198198198, 62.07207207207207, 62.16216216216216, 62.25225225225225, 62.34234234234234, 62.43243243243243, 62.52252252252252, 62.61261261261261, 62.7027027027027, 62.79279279279279, 62.88288288288288, 62.97297297297297, 63.06306306306306, 63.15315315315315, 63.24324324324324, 63.33333333333333, 63.42342342342342, 63.51351351351351, 63.6036036036036, 63.69369369369369, 63.78378378378378, 63.87387387387387, 63.96396396396396, 64.05405405405405, 64.14414414414415, 64.23423423423424, 64.32432432432432, 64.41441441441441, 64.5045045045045, 64.59459459459458, 64.68468468468468, 64.77477477477477, 64.86486486486487, 64.95495495495496, 65.04504504504504, 65.13513513513513, 65.22522522522522, 65.3153153153153, 65.4054054054054, 65.49549549549549, 65.58558558558559, 65.67567567567568, 65.76576576576576, 65.85585585585585, 65.94594594594594, 66.03603603603602, 66.12612612612612, 66.21621621621621, 66.30630630630631, 66.3963963963964, 66.48648648648648, 66.57657657657657, 66.66666666666666, 66.75675675675674, 66.84684684684684, 66.93693693693693, 67.02702702702703, 67.11711711711712, 67.2072072072072, 67.29729729729729, 67.38738738738738, 67.47747747747746, 67.56756756756756, 67.65765765765765, 67.74774774774775, 67.83783783783784, 67.92792792792793, 68.01801801801801, 68.1081081081081, 68.1981981981982, 68.28828828828829, 68.37837837837839, 68.46846846846847, 68.55855855855856, 68.64864864864865, 68.73873873873873, 68.82882882882882, 68.91891891891892, 69.009009009009, 69.0990990990991, 69.1891891891892, 69.27927927927928, 69.36936936936937, 69.45945945945945, 69.54954954954954, 69.63963963963964, 69.72972972972973, 69.81981981981983, 69.90990990990991, 70.0, 70.09009009009009, 70.18018018018017, 70.27027027027026, 70.36036036036036, 70.45045045045045, 70.54054054054055, 70.63063063063063, 70.72072072072072, 70.8108108108108, 70.9009009009009, 70.99099099099098, 71.08108108108108, 71.17117117117117, 71.26126126126127, 71.35135135135135, 71.44144144144144, 71.53153153153153, 71.62162162162161, 71.7117117117117, 71.8018018018018, 71.89189189189189, 71.98198198198199, 72.07207207207207, 72.16216216216216, 72.25225225225225, 72.34234234234233, 72.43243243243242, 72.52252252252252, 72.61261261261261, 72.70270270270271, 72.7927927927928, 72.88288288288288, 72.97297297297297, 73.06306306306305, 73.15315315315314, 73.24324324324324, 73.33333333333333, 73.42342342342343, 73.51351351351352, 73.6036036036036, 73.69369369369369, 73.78378378378378, 73.87387387387386, 73.96396396396396, 74.05405405405405, 74.14414414414414, 74.23423423423424, 74.32432432432432, 74.41441441441441, 74.5045045045045, 74.5945945945946, 74.68468468468468, 74.77477477477477, 74.86486486486486, 74.95495495495496, 75.04504504504504, 75.13513513513513, 75.22522522522522, 75.31531531531532, 75.4054054054054, 75.49549549549549, 75.58558558558558, 75.67567567567568, 75.76576576576576, 75.85585585585585, 75.94594594594594, 76.03603603603604, 76.12612612612612, 76.21621621621621, 76.3063063063063, 76.3963963963964, 76.48648648648648, 76.57657657657657, 76.66666666666666, 76.75675675675676, 76.84684684684684, 76.93693693693693, 77.02702702702702, 77.11711711711712, 77.2072072072072, 77.29729729729729, 77.38738738738738, 77.47747747747748, 77.56756756756756, 77.65765765765765, 77.74774774774774, 77.83783783783784, 77.92792792792793, 78.01801801801801, 78.1081081081081, 78.1981981981982, 78.28828828828829, 78.37837837837837, 78.46846846846846, 78.55855855855856, 78.64864864864865, 78.73873873873873, 78.82882882882882, 78.91891891891892, 79.009009009009, 79.09909909909909, 79.1891891891892, 79.27927927927928, 79.36936936936937, 79.45945945945945, 79.54954954954955, 79.63963963963964, 79.72972972972973, 79.81981981981981, 79.90990990990991, 80.0, 80.09009009009009, 80.18018018018017, 80.27027027027027, 80.36036036036036, 80.45045045045045, 80.54054054054053, 80.63063063063063, 80.72072072072072, 80.8108108108108, 80.9009009009009, 80.990990990991, 81.08108108108108, 81.17117117117117, 81.26126126126125, 81.35135135135135, 81.44144144144144, 81.53153153153153, 81.62162162162161, 81.71171171171171, 81.8018018018018, 81.89189189189189, 81.98198198198197, 82.07207207207207, 82.16216216216216, 82.25225225225225, 82.34234234234233, 82.43243243243244, 82.52252252252252, 82.61261261261261, 82.7027027027027, 82.7927927927928, 82.88288288288288, 82.97297297297297, 83.06306306306305, 83.15315315315316, 83.24324324324324, 83.33333333333333, 83.42342342342342, 83.51351351351352, 83.6036036036036, 83.69369369369369, 83.78378378378378, 83.87387387387388, 83.96396396396396, 84.05405405405405, 84.14414414414414, 84.23423423423424, 84.32432432432432, 84.41441441441441, 84.5045045045045, 84.5945945945946, 84.68468468468468, 84.77477477477477, 84.86486486486486, 84.95495495495496, 85.04504504504504, 85.13513513513513, 85.22522522522522, 85.31531531531532, 85.4054054054054, 85.49549549549549, 85.58558558558558, 85.67567567567568, 85.76576576576576, 85.85585585585585, 85.94594594594594, 86.03603603603604, 86.12612612612612, 86.21621621621621, 86.3063063063063, 86.3963963963964, 86.48648648648648, 86.57657657657657, 86.66666666666666, 86.75675675675676, 86.84684684684684, 86.93693693693693, 87.02702702702702, 87.11711711711712, 87.2072072072072, 87.29729729729729, 87.38738738738738, 87.47747747747748, 87.56756756756756, 87.65765765765765, 87.74774774774774, 87.83783783783784, 87.92792792792793, 88.01801801801801, 88.1081081081081, 88.1981981981982, 88.28828828828829, 88.37837837837837, 88.46846846846846, 88.55855855855856, 88.64864864864865, 88.73873873873873, 88.82882882882882, 88.91891891891892, 89.009009009009, 89.09909909909909, 89.18918918918918, 89.27927927927928, 89.36936936936937, 89.45945945945945, 89.54954954954954, 89.63963963963964, 89.72972972972973, 89.81981981981981, 89.9099099099099, 90.0, 90.09009009009009, 90.18018018018017, 90.27027027027026, 90.36036036036036, 90.45045045045045, 90.54054054054053, 90.63063063063062, 90.72072072072072, 90.8108108108108, 90.9009009009009, 90.990990990991, 91.08108108108108, 91.17117117117117, 91.26126126126125, 91.35135135135135, 91.44144144144144, 91.53153153153153, 91.62162162162161, 91.71171171171171, 91.8018018018018, 91.89189189189189, 91.98198198198197, 92.07207207207207, 92.16216216216216, 92.25225225225225, 92.34234234234233, 92.43243243243244, 92.52252252252252, 92.61261261261261, 92.7027027027027, 92.7927927927928, 92.88288288288288, 92.97297297297297, 93.06306306306305, 93.15315315315316, 93.24324324324324, 93.33333333333333, 93.42342342342342, 93.51351351351352, 93.6036036036036, 93.69369369369369, 93.78378378378378, 93.87387387387388, 93.96396396396396, 94.05405405405405, 94.14414414414414, 94.23423423423424, 94.32432432432432, 94.41441441441441, 94.5045045045045, 94.5945945945946, 94.68468468468468, 94.77477477477477, 94.86486486486486, 94.95495495495496, 95.04504504504504, 95.13513513513513, 95.22522522522522, 95.31531531531532, 95.4054054054054, 95.49549549549549, 95.58558558558558, 95.67567567567568, 95.76576576576576, 95.85585585585585, 95.94594594594594, 96.03603603603604, 96.12612612612612, 96.21621621621621, 96.3063063063063, 96.3963963963964, 96.48648648648648, 96.57657657657657, 96.66666666666666, 96.75675675675676, 96.84684684684684, 96.93693693693693, 97.02702702702702, 97.11711711711712, 97.2072072072072, 97.29729729729729, 97.38738738738738, 97.47747747747748, 97.56756756756756, 97.65765765765765, 97.74774774774774, 97.83783783783784, 97.92792792792793, 98.01801801801801, 98.1081081081081, 98.1981981981982, 98.28828828828829, 98.37837837837837, 98.46846846846846, 98.55855855855856, 98.64864864864865, 98.73873873873873, 98.82882882882882, 98.91891891891892, 99.009009009009, 99.09909909909909, 99.18918918918918, 99.27927927927928, 99.36936936936937, 99.45945945945945, 99.54954954954954, 99.63963963963964, 99.72972972972973, 99.81981981981981, 99.9099099099099, 100.0], "expected": [0.0, 0.004176769473199528, 0.008357349466624316, 0.012540667287589676, 0.016725683029413126, 0.02091138933404359, 0.025096811110933585, 0.02928100521543834, 0.033463060089944145, 0.03764209537083754, 0.04181726146432908, 0.045987739094041656, 0.050152738823164365, 0.05431150055386043, 0.05846329300650199, 0.06260741318118758, 0.06674318580387889, 0.07086996275937557, 0.07498712251322745, 0.07909406952456642, 0.08319023365172455, 0.08727506955239021, 0.09134805607994306, 0.09540869567749916, 0.0994565137710925, 0.10349105816331572, 0.107511898428644, 0.11151862531157156, 0.11551085012859645, 0.1194882041750045, 0.12345033813731622, 0.12739692151218276, 0.1313276420324404, 0.13524220510096044, 0.13914033323286354, 0.1430217655066034, 0.14688625702436295, 0.15073357838215104, 0.1545635151499317, 0.1583758673620698, 0.1621704490183296, 0.1659470875956193, 0.16970562357063323, 0.17344590995350795, 0.17716781183257113, 0.18087120593023243, 0.18455598017003516, 0.1882220332548598, 0.19186927425624772, 0.1954976222147886, 0.19910700575149654, 0.20269736269008043, 0.20626863968999792, 0.20982079189016672, 0.21335378256319407, 0.21686758277997448, 0.22036217108449296, 0.22383753317866462, 0.22729366161703135, 0.23073055551113103, 0.23414822024334897, 0.23754666719005546, 0.24092591345383071, 0.24428598160457468, 0.247626899429298, 0.25094869969038686, 0.25425141989213734, 0.2575351020553487, 0.26079979249977187, 0.26404554163420607, 0.26727240375403644, 0.2704804368460128, 0.27366970240006455, 0.27684026522795496, 0.279992193288575, 0.28312555751968577, 0.2862404316759149, 0.28933689217282127, 0.29241501793684166, 0.2954748902609382, 0.2985165926657691, 0.30154021076620685, 0.30454583214303566, 0.30753354621965845, 0.3105034441436529, 0.31345561867301563, 0.31639016406694, 0.3193071759809752, 0.32220675136642085, 0.32508898837381134, 0.32795398626035105, 0.33080184530116463, 0.33363266670422953, 0.33644655252886196, 0.3392436056076323, 0.3420239294715888, 0.34478762827867, 0.34753480674519455, 0.3502655700803155, 0.35298002392333316, 0.35567827428376186, 0.35836042748405034, 0.36102659010485827, 0.36367686893279344, 0.3663113709105208, 0.36893020308915175, 0.37153347258283126, 0.37412128652543813, 0.37669375202931893, 0.3792509761459793, 0.38179306582865696, 0.38432012789670517, 0.38683226900171613, 0.3893295955953179, 0.39181221389857984, 0.394280229872964, 0.396733749192761, 0.3991728772189538, 0.4015977189744517, 0.4040083791206416, 0.40640496193520226, 0.4087875712911336, 0.4111563106369498, 0.4135112829779923, 0.4158525908588136, 0.4181803363465929, 0.42049462101553803, 0.4227955459322343, 0.4250832116419022, 0.4273577181555258, 0.42961916493781543, 0.43186765089597007, 0.4341032743692067, 0.43632613311902363, 0.43853632432016626, 0.44073394455226694, 0.4429190897921293, 0.44509185540662916, 0.4472523361462057, 0.4494006261389177, 0.4515368188850397, 0.4536610072521751, 0.4557732834708617, 0.4578737391306505, 0.4599624651766345, 0.4620395519064078, 0.46410508896743624, 0.46615916535482044, 0.4682018694094326, 0.4702332888164113, 0.4722535106039958, 0.4742626211426856, 0.47626070614470944, 0.47824785066378794, 0.48022413909517775, 0.4821896551759812, 0.484144481985711, 0.48608870194709536, 0.48802239682711296, 0.4899456477382448, 0.4918585351399332, 0.49376113884023726, 0.49565353799767264, 0.4975358111232289, 0.4994080360825528, 0.5012702900982884, 0.5031226497525676, 0.5049651909896401, 0.5067979891186368, 0.5086211188164577, 0.5104346541307778, 0.5122386684831639, 0.5140332346722958, 0.5158184248772834, 0.5175943106610776, 0.5193609629739653, 0.5211184521571444, 0.5228668479463737, 0.5246062194756916, 0.5263366352811996, 0.528058163304905, 0.529770870898619, 0.5314748248279049, 0.5331700912760732, 0.5348567358482197, 0.5365348235753012, 0.5382044189182471, 0.5398655857721029, 0.5415183874702005, 0.5431628867883563, 0.5447991459490882, 0.5464272266258545, 0.5480471899473079, 0.5496590965015636, 0.5512630063404786, 0.5528589789839405, 0.5544470734241628, 0.5560273481299831, 0.5575998610511673, 0.5591646696227102, 0.5607218307691371, 0.5622714009088025, 0.5638134359581819, 0.5653479913361588, 0.5668751219683037, 0.5683948822911421, 0.5699073262564137, 0.5714125073353179, 0.5729104785227467, 0.5744012923415028, 0.5758850008465025, 0.5773616556289607, 0.5788313078205605, 0.5802940080976016, 0.5817498066851309, 0.5831987533610526, 0.584640897460217, 0.5860762878784869, 0.5875049730767834, 0.5889270010851062, 0.5903424195065318, 0.5917512755211874, 0.5931536158901989, 0.5945494869596148, 0.5959389346643044, 0.5973220045318283, 0.5986987416862843, 0.6000691908521256, 0.6014333963579517, 0.6027914021402718, 0.6041432517472415, 0.6054889883423689, 0.6068286547081958, 0.6081622932499487, 0.609489945999161, 0.6108116546172662, 0.612127460399164, 0.6134374042767564, 0.6147415268224538, 0.6160398682526529, 0.6173324684311859, 0.618619366872739, 0.6199006027462433, 0.6211762148782343, 0.6224462417561842, 0.6237107215318041, 0.6249696920243157, 0.6262231907236963, 0.6274712547938921, 0.6287139210760037, 0.6299512260914427, 0.6311832060450586, 0.632409896828237, 0.6336313340219696, 0.6348475528998937, 0.6360585884313062, 0.6372644752841463, 0.6384652478279509, 0.6396609401367822, 0.6408515859921263, 0.6420372188857649, 0.6432178720226183, 0.6443935783235613, 0.6455643704282117, 0.6467302806976911, 0.6478913412173587, 0.6490475837995183, 0.6501990399860983, 0.6513457410513055, 0.652487718004252, 0.6536250015915555, 0.6547576222999147, 0.6558856103586583, 0.6570089957422678, 0.658127808172875, 0.6592420771227347, 0.6603518318166727, 0.6614571012345069, 0.6625579141134459, 0.6636542989504626, 0.6647462840046424, 0.6658338972995079, 0.6669171666253213, 0.6679961195413598, 0.6690707833781713, 0.6701411852398033, 0.6712073520060117, 0.6722693103344448, 0.6733270866628055, 0.6743807072109909, 0.6754301979832091, 0.6764755847700756, 0.6775168931506855, 0.6785541484946663, 0.6795873759642074, 0.6806166005160704, 0.6816418469035763, 0.6826631396785735, 0.6836805031933838, 0.6846939616027299, 0.6857035388656407, 0.6867092587473375, 0.6877111448211006, 0.6887092204701158, 0.689703508889302, 0.6906940330871189, 0.6916808158873562, 0.6926638799309042, 0.6936432476775043, 0.6946189414074838, 0.6955909832234694, 0.6965593950520839, 0.6975241986456268, 0.6984854155837332, 0.6994430672750196, 0.7003971749587088, 0.7013477597062395, 0.7022948424228597, 0.7032384438491995, 0.7041785845628333, 0.7051152849798195, 0.7060485653562278, 0.7069784457896494, 0.7079049462206909, 0.7088280864344522, 0.70974788606199, 0.7106643645817654, 0.7115775413210751, 0.7124874354574692, 0.7133940660201535, 0.7142974518913762, 0.7151976118078016, 0.7160945643618678, 0.7169883280031308, 0.7178789210395955, 0.7187663616390303, 0.7196506678302701, 0.720531857504505, 0.7214099484165548, 0.722284958186131, 0.7231569042990851, 0.7240258041086438, 0.7248916748366322, 0.7257545335746823, 0.7266143972854312, 0.7274712828037044, 0.7283252068376892, 0.7291761859700931, 0.7300242366592934, 0.7308693752404714, 0.7317116179267371, 0.7325509808102422, 0.7333874798632793, 0.7342211309393727, 0.7350519497743555, 0.7358799519874367, 0.736705153082257, 0.7375275684479334, 0.7383472133600936, 0.7391641029818985, 0.7399782523650559, 0.7407896764508223, 0.7415983900709943, 0.7424044079488911, 0.743207744700326, 0.7440084148345671, 0.7448064327552902, 0.7456018127615197, 0.746394569048561, 0.7471847157089241, 0.7479722667332354, 0.7487572360111424, 0.7495396373322083, 0.750319484386797, 0.75109679076695, 0.7518715699672537, 0.7526438353856982, 0.7534136003245265, 0.754180877991077, 0.7549456814986149, 0.7557080238671571, 0.7564679180242885, 0.7572253768059686, 0.7579804129573319, 0.7587330391334783, 0.759483267900258, 0.7602311117350449, 0.7609765830275058, 0.7617196940803602, 0.7624604571101318, 0.7631988842478935, 0.7639349875400052, 0.7646687789488432, 0.7654002703535224, 0.7661294735506121, 0.7668564002548441, 0.7675810620998138, 0.7683034706386738, 0.7690236373448215, 0.7697415736125799, 0.7704572907578702, 0.771170800018879, 0.7718821125567192, 0.7725912394560831, 0.7732981917258893, 0.7740029802999248, 0.7747056160374781, 0.7754061097239686, 0.776104472071568, 0.7768007137198167, 0.7774948452362334, 0.778186877116919, 0.7788768197871547, 0.7795646836019945, 0.7802504788468508, 0.7809342157380755, 0.781615904423535, 0.7822955549831793, 0.7829731774296056, 0.7836487817086174, 0.7843223776997768, 0.7849939752169515, 0.7856635840088584, 0.7863312137595994, 0.7869968740891937, 0.7876605745541041, 0.788322324647759, 0.7889821338010686, 0.7896400113829364, 0.7902959667007664, 0.7909500090009643, 0.7916021474694344, 0.7922523912320723, 0.7929007493552522, 0.7935472308463101, 0.7941918446540207, 0.7948345996690732, 0.7954755047245387, 0.7961145685963352, 0.796751800003689, 0.7973872076095898, 0.7980208000212418, 0.7986525857905122, 0.7992825734143739, 0.7999107713353437, 0.8005371879419184, 0.8011618315690043, 0.8017847104983448, 0.8024058329589423, 0.8030252071274775, 0.803642841128724, 0.8042587430359589, 0.80487292087137, 0.8054853826064595, 0.8060961361624427, 0.8067051894106446, 0.8073125501728909, 0.8079182262218984, 0.8085222252816571, 0.8091245550278143, 0.8097252230880503, 0.8103242370424537, 0.8109216044238922, 0.8115173327183792, 0.8121114293654392, 0.8127039017584673, 0.8132947572450869, 0.8138840031275038, 0.8144716466628573, 0.815057695063568, 0.8156421554976814, 0.8162250350892097, 0.8168063409184709, 0.8173860800224224, 0.8179642593949941, 0.8185408859874169, 0.8191159667085499, 0.819689508425202, 0.8202615179624532, 0.8208320021039717, 0.8214009675923282, 0.8219684211293076, 0.8225343693762185, 0.823098818954198, 0.8236617764445158, 0.824223248388875, 0.8247832412897094, 0.8253417616104798, 0.8258988157759649, 0.826454410172553, 0.8270085511485287, 0.8275612450143572, 0.8281124980429682, 0.8286623164700342, 0.8292107064942489, 0.8297576742776008, 0.830303225945648, 0.8308473675877852, 0.8313901052575147, 0.8319314449727085, 0.8324713927158744, 0.8330099544344138, 0.8335471360408826, 0.8340829434132458, 0.8346173823951318, 0.8351504587960847, 0.8356821783918125, 0.8362125469244356, 0.836741570102732, 0.8372692536023795, 0.8377956030661969, 0.8383206241043839, 0.838844322294756, 0.8393667031829809, 0.8398877722828103, 0.840407535076311, 0.8409259970140938, 0.8414431635155394, 0.841959039969024, 0.8424736317321422, 0.8429869441319273, 0.8434989824650713, 0.844009751998141, 0.8445192579677945, 0.8450275055809936, 0.845534500015217, 0.8460402464186685, 0.8465447499104858, 0.8470480155809478, 0.8475500484916775, 0.8480508536758464, 0.8485504361383744, 0.8490488008561305, 0.8495459527781294, 0.8500418968257287, 0.8505366378928229, 0.8510301808460352, 0.8515225305249113, 0.8520136917421064, 0.8525036692835742, 0.8529924679087546, 0.8534800923507564, 0.853966547316542, 0.8544518374871095, 0.8549359675176721, 0.8554189420378375, 0.8559007656517853, 0.8563814429384431, 0.8568609784516595, 0.8573393767203797, 0.8578166422488146, 0.858292779516612, 0.8587677929790256, 0.8592416870670821, 0.8597144661877474, 0.8601861347240904, 0.8606566970354474, 0.8611261574575837, 0.8615945203028539, 0.8620617898603614, 0.8625279703961171, 0.8629930661531945, 0.8634570813518877, 0.8639200201898628, 0.8643818868423131, 0.8648426854621096, 0.8653024201799517, 0.8657610951045175, 0.86621871432261, 0.8666752818993056, 0.8671308018780991, 0.8675852782810488, 0.868038715108919, 0.8684911163413227, 0.8689424859368631, 0.8693928278332732, 0.8698421459475542, 0.8702904441761143, 0.8707377263949042, 0.8711839964595539, 0.8716292582055059, 0.8720735154481494, 0.8725167719829529, 0.8729590315855947, 0.873400298012094, 0.8738405749989393, 0.8742798662632176, 0.8747181755027409, 0.8751555063961731, 0.875591862603154, 0.8760272477644251, 0.8764616655019519, 0.8768951194190467, 0.8773276131004893, 0.8777591501126483, 0.8781897340036001, 0.878619368303247, 0.8790480565234363, 0.8794758021580751, 0.8799026086832475, 0.880328479557329, 0.8807534182211003, 0.8811774280978617, 0.8816005125935433, 0.8820226750968179, 0.8824439189792113, 0.8828642475952118, 0.883283664282379, 0.8837021723614523, 0.8841197751364571, 0.8845364758948123, 0.8849522779074356, 0.8853671844288472, 0.8857811986972757, 0.8861943239347589, 0.8866065633472484, 0.88701792012471, 0.8874283974412246, 0.8878379984550889, 0.8882467263089132, 0.8886545841297226, 0.8890615750290519, 0.8894677021030448, 0.8898729684325495, 0.8902773770832134, 0.8906809311055802, 0.891083633535182, 0.8914854873926338, 0.8918864956837262, 0.8922866613995174, 0.8926859875164246, 0.8930844769963142, 0.8934821327865937, 0.8938789578202985, 0.8942749550161824, 0.894670127278805, 0.8950644774986198, 0.8954580085520599, 0.895850723301625, 0.8962426245959658, 0.8966337152699705, 0.8970239981448478, 0.8974134760282105, 0.8978021517141596, 0.8981900279833647, 0.8985771076031482, 0.8989633933275648, 0.8993488878974824, 0.8997335940406624, 0.9001175144718386, 0.9005006518927976, 0.9008830089924544, 0.9012645884469324, 0.9016453929196395, 0.9020254250613451, 0.9024046875102554, 0.9027831828920898, 0.9031609138201552, 0.9035378828954205, 0.9039140927065905, 0.9042895458301793, 0.9046642448305832, 0.905038192260152, 0.9054113906592622, 0.9057838425563877, 0.9061555504681693, 0.906526516899487, 0.9068967443435282, 0.9072662352818571, 0.9076349921844844, 0.9080030175099342, 0.9083703137053126, 0.9087368832063748, 0.9091027284375917, 0.9094678518122162, 0.9098322557323497, 0.9101959425890062, 0.9105589147621788, 0.9109211746209025, 0.9112827245233197, 0.9116435668167427, 0.9120037038377173, 0.9123631379120858, 0.9127218713550478, 0.9130799064712238, 0.9134372455547158, 0.9137938908891673, 0.9141498447478259, 0.9145051093936011, 0.9148596870791256, 0.9152135800468136, 0.9155667905289208, 0.9159193207476007, 0.9162711729149651, 0.9166223492331403, 0.9169728518943243, 0.9173226830808441, 0.9176718449652121, 0.9180203397101822, 0.9183681694688045, 0.9187153363844823, 0.9190618425910253, 0.9194076902127055, 0.9197528813643104, 0.9200974181511969, 0.9204413026693455, 0.9207845370054124, 0.9211271232367823, 0.9214690634316214, 0.9218103596489291, 0.9221510139385891, 0.9224910283414207, 0.9228304048892307, 0.9231691456048632, 0.9235072525022499, 0.9238447275864594, 0.9241815728537484, 0.9245177902916094, 0.9248533818788199, 0.925188349585492, 0.9255226953731185, 0.9258564211946232, 0.9261895289944071, 0.9265220207083952, 0.9268538982640855, 0.9271851635805934, 0.9275158185686995, 0.9278458651308946, 0.928175305161426, 0.9285041405463437, 0.928832373163543, 0.9291600048828123, 0.9294870375658758, 0.9298134730664378, 0.9301393132302275, 0.9304645598950418, 0.9307892148907887, 0.9311132800395311, 0.9314367571555288, 0.9317596480452809, 0.9320819545075695, 0.9324036783334995, 0.9327248213065412, 0.9330453852025726, 0.9333653717899187, 0.933684782829394, 0.9340036200743425, 0.9343218852706772, 0.934639580156921, 0.934956706464247, 0.935273265916517, 0.9355892602303211, 0.9359046911150171, 0.9362195602727682, 0.9365338693985833, 0.9368476201803535, 0.937160814298891, 0.9374734534279671, 0.937785539234349, 0.9380970733778379, 0.9384080575113048, 0.938718493280729, 0.9390283823252334, 0.9393377262771213, 0.9396465267619125, 0.9399547853983793, 0.9402625037985813, 0.9405696835679027, 0.940876326305085, 0.9411824336022644, 0.9414880070450045, 0.9417930482123323, 0.9420975586767721, 0.9424015400043788, 0.9427049937547733, 0.9430079214811747, 0.9433103247304342, 0.9436122050430692, 0.943913563953295, 0.944214402989058, 0.9445147236720696, 0.9448145275178362, 0.9451138160356938, 0.9454125907288388, 0.9457108530943592, 0.9460086046232677, 0.9463058468005326, 0.9466025811051075, 0.9468988090099649, 0.947194531982125, 0.9474897514826874, 0.9477844689668607, 0.9480786858839938, 0.9483724036776049, 0.948665623785412, 0.9489583476393626, 0.9492505766656629, 0.9495423122848069, 0.9498335559116069, 0.9501243089552204, 0.9504145728191806, 0.9507043489014239, 0.9509936385943192, 0.9512824432846959, 0.9515707643538709, 0.9518586031776785, 0.9521459611264962, 0.952432839565274, 0.9527192398535603, 0.9530051633455299, 0.9532906113900115, 0.9535755853305127, 0.9538600865052498, 0.9541441162471712, 0.9544276758839861, 0.9547107667381901, 0.9549933901270903, 0.9552755473628323, 0.9555572397524266, 0.955838468597772, 0.9561192351956836, 0.9563995408379165, 0.9566793868111911, 0.956958774397219, 0.9572377048727269, 0.957516179509482, 0.9577941995743156, 0.9580717663291491, 0.9583488810310168, 0.9586255449320906, 0.9589017592797039, 0.959177525316376, 0.9594528442798349, 0.9597277174030409, 0.9600021459142108, 0.9602761310368412, 0.96054967398973, 0.9608227759870013, 0.9610954382381277, 0.9613676619479525, 0.961639448316713, 0.9619107985400619, 0.9621817138090913, 0.9624521953103531, 0.9627222442258825, 0.9629918617332189, 0.9632610490054287, 0.963529807211126, 0.9637981375144945, 0.9640660410753091, 0.9643335190489575, 0.9646005725864606, 0.9648672028344939, 0.9651334109354082, 0.9653991980272515, 0.9656645652437883, 0.9659295137145205, 0.9661940445647083, 0.9664581589153904, 0.9667218578834041, 0.9669851425814052, 0.9672480141178882, 0.9675104735972058, 0.9677725221195898, 0.9680341607811688, 0.9682953906739898, 0.9685562128860361, 0.9688166285012473, 0.9690766385995379, 0.9693362442568171, 0.9695954465450075, 0.9698542465320634, 0.9701126452819907, 0.9703706438548642, 0.970628243306847, 0.9708854446902094, 0.971142249053345, 0.9713986574407917, 0.9716546708932486, 0.9719102904475933, 0.9721655171369002, 0.9724203519904602, 0.9726747960337949, 0.972928850288677, 0.9731825157731471, 0.9734357935015305, 0.9736886844844548, 0.9739411897288675, 0.9741933102380528, 0.9744450470116482, 0.974696401045663, 0.9749473733324925, 0.9751979648609372, 0.975448176616218, 0.9756980095799938, 0.9759474647303764, 0.9761965430419486, 0.9764452454857793, 0.97669357302944, 0.9769415266370214, 0.9771891072691482, 0.9774363158829963, 0.9776831534323079, 0.9779296208674071, 0.9781757191352163, 0.9784214491792709, 0.9786668119397355, 0.9789118083534184, 0.9791564393537878, 0.979400705870987, 0.9796446088318482, 0.9798881491599095, 0.9801313277754283, 0.9803741455953969, 0.9806166035335577, 0.9808587025004163, 0.9811004434032583, 0.9813418271461618, 0.9815828546300143, 0.9818235267525237, 0.9820638444082364, 0.9823038084885483, 0.9825434198817217, 0.9827826794728968, 0.983021588144108, 0.9832601467742966, 0.9834983562393239, 0.9837362174119872, 0.983973731162032, 0.9842108983561653, 0.9844477198580702, 0.9846841965284189, 0.984920329224886, 0.9851561188021623, 0.9853915661119677, 0.9856266720030639, 0.9858614373212689, 0.9860958629094685, 0.9863299496076308, 0.9865636982528176, 0.9867971096791985, 0.9870301847180626, 0.9872629241978327, 0.9874953289440759, 0.9877273997795182, 0.9879591375240553, 0.9881905429947666, 0.9884216170059262, 0.9886523603690164, 0.9888827738927385, 0.9891128583830264, 0.9893426146430586, 0.9895720434732684, 0.9898011456713587, 0.9900299220323117, 0.9902583733484016, 0.9904865004092065, 0.9907143040016199, 0.9909417849098623, 0.9911689439154935, 0.9913957817974228, 0.991622299331922, 0.9918484972926354, 0.9920743764505925, 0.992299937574218, 0.9925251814293444, 0.9927501087792224, 0.9929747203845315, 0.9931990170033926, 0.9934229993913772, 0.9936466683015204, 0.9938700244843295, 0.9940930686877966, 0.9943158016574087, 0.9945382241361591, 0.9947603368645562, 0.9949821405806366, 0.9952036360199741, 0.9954248239156904, 0.9956457049984658, 0.99586627999655, 0.9960865496357713, 0.9963065146395481, 0.9965261757288982, 0.9967455336224499, 0.996964589036451, 0.9971833426847804, 0.997401795278956, 0.9976199475281473, 0.9978378001391834, 0.9980553538165627, 0.9982726092624643, 0.9984895671767569, 0.9987062282570085, 0.9989225931984956, 0.999138662694214, 0.9993544374348877, 0.9995699181089779, 0.9997851054026935, 1.0]}
diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/test/fixtures/python/medium_c.json b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/test/fixtures/python/medium_c.json
new file mode 100644
index 000000000000..15dfa3718031
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/test/fixtures/python/medium_c.json
@@ -0,0 +1 @@
+{"x": [0.0, 0.001001001001001001, 0.002002002002002002, 0.003003003003003003, 0.004004004004004004, 0.005005005005005005, 0.006006006006006006, 0.007007007007007007, 0.008008008008008008, 0.009009009009009009, 0.01001001001001001, 0.011011011011011011, 0.012012012012012012, 0.013013013013013013, 0.014014014014014014, 0.015015015015015015, 0.016016016016016016, 0.017017017017017015, 0.018018018018018018, 0.01901901901901902, 0.02002002002002002, 0.02102102102102102, 0.022022022022022022, 0.023023023023023025, 0.024024024024024024, 0.025025025025025023, 0.026026026026026026, 0.02702702702702703, 0.028028028028028028, 0.029029029029029027, 0.03003003003003003, 0.031031031031031032, 0.03203203203203203, 0.03303303303303303, 0.03403403403403403, 0.035035035035035036, 0.036036036036036036, 0.037037037037037035, 0.03803803803803804, 0.03903903903903904, 0.04004004004004004, 0.04104104104104104, 0.04204204204204204, 0.043043043043043044, 0.044044044044044044, 0.04504504504504504, 0.04604604604604605, 0.04704704704704705, 0.04804804804804805, 0.04904904904904905, 0.050050050050050046, 0.05105105105105105, 0.05205205205205205, 0.05305305305305305, 0.05405405405405406, 0.055055055055055056, 0.056056056056056056, 0.057057057057057055, 0.058058058058058054, 0.05905905905905906, 0.06006006006006006, 0.06106106106106106, 0.062062062062062065, 0.06306306306306306, 0.06406406406406406, 0.06506506506506507, 0.06606606606606606, 0.06706706706706707, 0.06806806806806806, 0.06906906906906907, 0.07007007007007007, 0.07107107107107107, 0.07207207207207207, 0.07307307307307308, 0.07407407407407407, 0.07507507507507508, 0.07607607607607608, 0.07707707707707707, 0.07807807807807808, 0.07907907907907907, 0.08008008008008008, 0.08108108108108109, 0.08208208208208208, 0.08308308308308308, 0.08408408408408408, 0.08508508508508508, 0.08608608608608609, 0.08708708708708708, 0.08808808808808809, 0.0890890890890891, 0.09009009009009009, 0.09109109109109109, 0.0920920920920921, 0.09309309309309309, 0.0940940940940941, 0.09509509509509509, 0.0960960960960961, 0.0970970970970971, 0.0980980980980981, 0.0990990990990991, 0.10010010010010009, 0.1011011011011011, 0.1021021021021021, 0.1031031031031031, 0.1041041041041041, 0.10510510510510511, 0.1061061061061061, 0.10710710710710711, 0.10810810810810811, 0.1091091091091091, 0.11011011011011011, 0.1111111111111111, 0.11211211211211211, 0.11311311311311312, 0.11411411411411411, 0.11511511511511512, 0.11611611611611611, 0.11711711711711711, 0.11811811811811812, 0.11911911911911911, 0.12012012012012012, 0.12112112112112113, 0.12212212212212212, 0.12312312312312312, 0.12412412412412413, 0.12512512512512514, 0.12612612612612611, 0.12712712712712712, 0.12812812812812813, 0.12912912912912913, 0.13013013013013014, 0.13113113113113112, 0.13213213213213212, 0.13313313313313313, 0.13413413413413414, 0.13513513513513514, 0.13613613613613612, 0.13713713713713713, 0.13813813813813813, 0.13913913913913914, 0.14014014014014015, 0.14114114114114115, 0.14214214214214213, 0.14314314314314314, 0.14414414414414414, 0.14514514514514515, 0.14614614614614616, 0.14714714714714713, 0.14814814814814814, 0.14914914914914915, 0.15015015015015015, 0.15115115115115116, 0.15215215215215216, 0.15315315315315314, 0.15415415415415415, 0.15515515515515516, 0.15615615615615616, 0.15715715715715717, 0.15815815815815815, 0.15915915915915915, 0.16016016016016016, 0.16116116116116116, 0.16216216216216217, 0.16316316316316315, 0.16416416416416416, 0.16516516516516516, 0.16616616616616617, 0.16716716716716717, 0.16816816816816815, 0.16916916916916916, 0.17017017017017017, 0.17117117117117117, 0.17217217217217218, 0.17317317317317318, 0.17417417417417416, 0.17517517517517517, 0.17617617617617617, 0.17717717717717718, 0.1781781781781782, 0.17917917917917917, 0.18018018018018017, 0.18118118118118118, 0.18218218218218218, 0.1831831831831832, 0.1841841841841842, 0.18518518518518517, 0.18618618618618618, 0.1871871871871872, 0.1881881881881882, 0.1891891891891892, 0.19019019019019018, 0.19119119119119118, 0.1921921921921922, 0.1931931931931932, 0.1941941941941942, 0.19519519519519518, 0.1961961961961962, 0.1971971971971972, 0.1981981981981982, 0.1991991991991992, 0.20020020020020018, 0.2012012012012012, 0.2022022022022022, 0.2032032032032032, 0.2042042042042042, 0.20520520520520522, 0.2062062062062062, 0.2072072072072072, 0.2082082082082082, 0.2092092092092092, 0.21021021021021022, 0.2112112112112112, 0.2122122122122122, 0.2132132132132132, 0.21421421421421422, 0.21521521521521522, 0.21621621621621623, 0.2172172172172172, 0.2182182182182182, 0.21921921921921922, 0.22022022022022023, 0.22122122122122123, 0.2222222222222222, 0.22322322322322322, 0.22422422422422422, 0.22522522522522523, 0.22622622622622623, 0.2272272272272272, 0.22822822822822822, 0.22922922922922923, 0.23023023023023023, 0.23123123123123124, 0.23223223223223222, 0.23323323323323322, 0.23423423423423423, 0.23523523523523523, 0.23623623623623624, 0.23723723723723725, 0.23823823823823823, 0.23923923923923923, 0.24024024024024024, 0.24124124124124124, 0.24224224224224225, 0.24324324324324323, 0.24424424424424424, 0.24524524524524524, 0.24624624624624625, 0.24724724724724725, 0.24824824824824826, 0.24924924924924924, 0.2502502502502503, 0.25125125125125125, 0.25225225225225223, 0.25325325325325326, 0.25425425425425424, 0.2552552552552553, 0.25625625625625625, 0.25725725725725723, 0.25825825825825827, 0.25925925925925924, 0.2602602602602603, 0.26126126126126126, 0.26226226226226224, 0.26326326326326327, 0.26426426426426425, 0.2652652652652653, 0.26626626626626626, 0.26726726726726724, 0.2682682682682683, 0.26926926926926925, 0.2702702702702703, 0.27127127127127126, 0.27227227227227224, 0.2732732732732733, 0.27427427427427425, 0.2752752752752753, 0.27627627627627627, 0.2772772772772773, 0.2782782782782783, 0.27927927927927926, 0.2802802802802803, 0.28128128128128127, 0.2822822822822823, 0.2832832832832833, 0.28428428428428426, 0.2852852852852853, 0.2862862862862863, 0.2872872872872873, 0.2882882882882883, 0.28928928928928926, 0.2902902902902903, 0.2912912912912913, 0.2922922922922923, 0.2932932932932933, 0.29429429429429427, 0.2952952952952953, 0.2962962962962963, 0.2972972972972973, 0.2982982982982983, 0.29929929929929927, 0.3003003003003003, 0.3013013013013013, 0.3023023023023023, 0.3033033033033033, 0.30430430430430433, 0.3053053053053053, 0.3063063063063063, 0.3073073073073073, 0.3083083083083083, 0.30930930930930933, 0.3103103103103103, 0.3113113113113113, 0.3123123123123123, 0.3133133133133133, 0.31431431431431434, 0.3153153153153153, 0.3163163163163163, 0.3173173173173173, 0.3183183183183183, 0.31931931931931934, 0.3203203203203203, 0.3213213213213213, 0.32232232232232233, 0.3233233233233233, 0.32432432432432434, 0.3253253253253253, 0.3263263263263263, 0.32732732732732733, 0.3283283283283283, 0.32932932932932935, 0.3303303303303303, 0.3313313313313313, 0.33233233233233234, 0.3333333333333333, 0.33433433433433435, 0.3353353353353353, 0.3363363363363363, 0.33733733733733734, 0.3383383383383383, 0.33933933933933935, 0.34034034034034033, 0.34134134134134136, 0.34234234234234234, 0.3433433433433433, 0.34434434434434436, 0.34534534534534533, 0.34634634634634637, 0.34734734734734735, 0.3483483483483483, 0.34934934934934936, 0.35035035035035034, 0.35135135135135137, 0.35235235235235235, 0.3533533533533533, 0.35435435435435436, 0.35535535535535534, 0.3563563563563564, 0.35735735735735735, 0.35835835835835833, 0.35935935935935936, 0.36036036036036034, 0.3613613613613614, 0.36236236236236236, 0.36336336336336333, 0.36436436436436437, 0.36536536536536535, 0.3663663663663664, 0.36736736736736736, 0.3683683683683684, 0.36936936936936937, 0.37037037037037035, 0.3713713713713714, 0.37237237237237236, 0.3733733733733734, 0.3743743743743744, 0.37537537537537535, 0.3763763763763764, 0.37737737737737737, 0.3783783783783784, 0.3793793793793794, 0.38038038038038036, 0.3813813813813814, 0.38238238238238237, 0.3833833833833834, 0.3843843843843844, 0.38538538538538536, 0.3863863863863864, 0.38738738738738737, 0.3883883883883884, 0.3893893893893894, 0.39039039039039036, 0.3913913913913914, 0.3923923923923924, 0.3933933933933934, 0.3943943943943944, 0.39539539539539537, 0.3963963963963964, 0.3973973973973974, 0.3983983983983984, 0.3993993993993994, 0.40040040040040037, 0.4014014014014014, 0.4024024024024024, 0.4034034034034034, 0.4044044044044044, 0.40540540540540543, 0.4064064064064064, 0.4074074074074074, 0.4084084084084084, 0.4094094094094094, 0.41041041041041043, 0.4114114114114114, 0.4124124124124124, 0.4134134134134134, 0.4144144144144144, 0.41541541541541543, 0.4164164164164164, 0.4174174174174174, 0.4184184184184184, 0.4194194194194194, 0.42042042042042044, 0.4214214214214214, 0.4224224224224224, 0.42342342342342343, 0.4244244244244244, 0.42542542542542544, 0.4264264264264264, 0.4274274274274274, 0.42842842842842843, 0.4294294294294294, 0.43043043043043044, 0.4314314314314314, 0.43243243243243246, 0.43343343343343343, 0.4344344344344344, 0.43543543543543545, 0.4364364364364364, 0.43743743743743746, 0.43843843843843844, 0.4394394394394394, 0.44044044044044045, 0.44144144144144143, 0.44244244244244246, 0.44344344344344344, 0.4444444444444444, 0.44544544544544545, 0.44644644644644643, 0.44744744744744747, 0.44844844844844844, 0.4494494494494494, 0.45045045045045046, 0.45145145145145144, 0.45245245245245247, 0.45345345345345345, 0.4544544544544544, 0.45545545545545546, 0.45645645645645644, 0.4574574574574575, 0.45845845845845845, 0.45945945945945943, 0.46046046046046046, 0.46146146146146144, 0.4624624624624625, 0.46346346346346345, 0.46446446446446443, 0.46546546546546547, 0.46646646646646645, 0.4674674674674675, 0.46846846846846846, 0.4694694694694695, 0.47047047047047047, 0.47147147147147145, 0.4724724724724725, 0.47347347347347346, 0.4744744744744745, 0.4754754754754755, 0.47647647647647645, 0.4774774774774775, 0.47847847847847846, 0.4794794794794795, 0.4804804804804805, 0.48148148148148145, 0.4824824824824825, 0.48348348348348347, 0.4844844844844845, 0.4854854854854855, 0.48648648648648646, 0.4874874874874875, 0.48848848848848847, 0.4894894894894895, 0.4904904904904905, 0.49149149149149146, 0.4924924924924925, 0.4934934934934935, 0.4944944944944945, 0.4954954954954955, 0.4964964964964965, 0.4974974974974975, 0.4984984984984985, 0.4994994994994995, 0.5005005005005005, 0.5015015015015015, 0.5025025025025025, 0.5035035035035035, 0.5045045045045045, 0.5055055055055055, 0.5065065065065065, 0.5075075075075075, 0.5085085085085085, 0.5095095095095095, 0.5105105105105106, 0.5115115115115115, 0.5125125125125125, 0.5135135135135135, 0.5145145145145145, 0.5155155155155156, 0.5165165165165165, 0.5175175175175175, 0.5185185185185185, 0.5195195195195195, 0.5205205205205206, 0.5215215215215215, 0.5225225225225225, 0.5235235235235235, 0.5245245245245245, 0.5255255255255256, 0.5265265265265265, 0.5275275275275275, 0.5285285285285285, 0.5295295295295295, 0.5305305305305306, 0.5315315315315315, 0.5325325325325325, 0.5335335335335335, 0.5345345345345345, 0.5355355355355356, 0.5365365365365365, 0.5375375375375375, 0.5385385385385385, 0.5395395395395395, 0.5405405405405406, 0.5415415415415415, 0.5425425425425425, 0.5435435435435435, 0.5445445445445445, 0.5455455455455456, 0.5465465465465466, 0.5475475475475475, 0.5485485485485485, 0.5495495495495496, 0.5505505505505506, 0.5515515515515516, 0.5525525525525525, 0.5535535535535535, 0.5545545545545546, 0.5555555555555556, 0.5565565565565566, 0.5575575575575575, 0.5585585585585585, 0.5595595595595596, 0.5605605605605606, 0.5615615615615616, 0.5625625625625625, 0.5635635635635635, 0.5645645645645646, 0.5655655655655656, 0.5665665665665666, 0.5675675675675675, 0.5685685685685685, 0.5695695695695696, 0.5705705705705706, 0.5715715715715716, 0.5725725725725725, 0.5735735735735735, 0.5745745745745746, 0.5755755755755756, 0.5765765765765766, 0.5775775775775776, 0.5785785785785785, 0.5795795795795796, 0.5805805805805806, 0.5815815815815816, 0.5825825825825826, 0.5835835835835835, 0.5845845845845846, 0.5855855855855856, 0.5865865865865866, 0.5875875875875876, 0.5885885885885885, 0.5895895895895896, 0.5905905905905906, 0.5915915915915916, 0.5925925925925926, 0.5935935935935935, 0.5945945945945946, 0.5955955955955956, 0.5965965965965966, 0.5975975975975976, 0.5985985985985985, 0.5995995995995996, 0.6006006006006006, 0.6016016016016016, 0.6026026026026026, 0.6036036036036035, 0.6046046046046046, 0.6056056056056056, 0.6066066066066066, 0.6076076076076076, 0.6086086086086087, 0.6096096096096096, 0.6106106106106106, 0.6116116116116116, 0.6126126126126126, 0.6136136136136137, 0.6146146146146146, 0.6156156156156156, 0.6166166166166166, 0.6176176176176176, 0.6186186186186187, 0.6196196196196196, 0.6206206206206206, 0.6216216216216216, 0.6226226226226226, 0.6236236236236237, 0.6246246246246246, 0.6256256256256256, 0.6266266266266266, 0.6276276276276276, 0.6286286286286287, 0.6296296296296297, 0.6306306306306306, 0.6316316316316316, 0.6326326326326326, 0.6336336336336337, 0.6346346346346347, 0.6356356356356356, 0.6366366366366366, 0.6376376376376376, 0.6386386386386387, 0.6396396396396397, 0.6406406406406406, 0.6416416416416416, 0.6426426426426426, 0.6436436436436437, 0.6446446446446447, 0.6456456456456456, 0.6466466466466466, 0.6476476476476476, 0.6486486486486487, 0.6496496496496497, 0.6506506506506506, 0.6516516516516516, 0.6526526526526526, 0.6536536536536537, 0.6546546546546547, 0.6556556556556556, 0.6566566566566566, 0.6576576576576576, 0.6586586586586587, 0.6596596596596597, 0.6606606606606606, 0.6616616616616616, 0.6626626626626626, 0.6636636636636637, 0.6646646646646647, 0.6656656656656657, 0.6666666666666666, 0.6676676676676676, 0.6686686686686687, 0.6696696696696697, 0.6706706706706707, 0.6716716716716716, 0.6726726726726726, 0.6736736736736737, 0.6746746746746747, 0.6756756756756757, 0.6766766766766766, 0.6776776776776777, 0.6786786786786787, 0.6796796796796797, 0.6806806806806807, 0.6816816816816816, 0.6826826826826827, 0.6836836836836837, 0.6846846846846847, 0.6856856856856857, 0.6866866866866866, 0.6876876876876877, 0.6886886886886887, 0.6896896896896897, 0.6906906906906907, 0.6916916916916916, 0.6926926926926927, 0.6936936936936937, 0.6946946946946947, 0.6956956956956957, 0.6966966966966966, 0.6976976976976977, 0.6986986986986987, 0.6996996996996997, 0.7007007007007007, 0.7017017017017017, 0.7027027027027027, 0.7037037037037037, 0.7047047047047047, 0.7057057057057057, 0.7067067067067067, 0.7077077077077077, 0.7087087087087087, 0.7097097097097097, 0.7107107107107107, 0.7117117117117117, 0.7127127127127127, 0.7137137137137137, 0.7147147147147147, 0.7157157157157157, 0.7167167167167167, 0.7177177177177178, 0.7187187187187187, 0.7197197197197197, 0.7207207207207207, 0.7217217217217217, 0.7227227227227228, 0.7237237237237237, 0.7247247247247247, 0.7257257257257257, 0.7267267267267267, 0.7277277277277278, 0.7287287287287287, 0.7297297297297297, 0.7307307307307307, 0.7317317317317317, 0.7327327327327328, 0.7337337337337337, 0.7347347347347347, 0.7357357357357357, 0.7367367367367368, 0.7377377377377378, 0.7387387387387387, 0.7397397397397397, 0.7407407407407407, 0.7417417417417418, 0.7427427427427428, 0.7437437437437437, 0.7447447447447447, 0.7457457457457457, 0.7467467467467468, 0.7477477477477478, 0.7487487487487487, 0.7497497497497497, 0.7507507507507507, 0.7517517517517518, 0.7527527527527528, 0.7537537537537538, 0.7547547547547547, 0.7557557557557557, 0.7567567567567568, 0.7577577577577578, 0.7587587587587588, 0.7597597597597597, 0.7607607607607607, 0.7617617617617618, 0.7627627627627628, 0.7637637637637638, 0.7647647647647647, 0.7657657657657657, 0.7667667667667668, 0.7677677677677678, 0.7687687687687688, 0.7697697697697697, 0.7707707707707707, 0.7717717717717718, 0.7727727727727728, 0.7737737737737738, 0.7747747747747747, 0.7757757757757757, 0.7767767767767768, 0.7777777777777778, 0.7787787787787788, 0.7797797797797797, 0.7807807807807807, 0.7817817817817818, 0.7827827827827828, 0.7837837837837838, 0.7847847847847848, 0.7857857857857857, 0.7867867867867868, 0.7877877877877878, 0.7887887887887888, 0.7897897897897898, 0.7907907907907907, 0.7917917917917918, 0.7927927927927928, 0.7937937937937938, 0.7947947947947948, 0.7957957957957957, 0.7967967967967968, 0.7977977977977978, 0.7987987987987988, 0.7997997997997998, 0.8008008008008007, 0.8018018018018018, 0.8028028028028028, 0.8038038038038038, 0.8048048048048048, 0.8058058058058059, 0.8068068068068068, 0.8078078078078078, 0.8088088088088088, 0.8098098098098098, 0.8108108108108109, 0.8118118118118118, 0.8128128128128128, 0.8138138138138138, 0.8148148148148148, 0.8158158158158159, 0.8168168168168168, 0.8178178178178178, 0.8188188188188188, 0.8198198198198198, 0.8208208208208209, 0.8218218218218218, 0.8228228228228228, 0.8238238238238238, 0.8248248248248248, 0.8258258258258259, 0.8268268268268268, 0.8278278278278278, 0.8288288288288288, 0.8298298298298298, 0.8308308308308309, 0.8318318318318318, 0.8328328328328328, 0.8338338338338338, 0.8348348348348348, 0.8358358358358359, 0.8368368368368369, 0.8378378378378378, 0.8388388388388388, 0.8398398398398398, 0.8408408408408409, 0.8418418418418419, 0.8428428428428428, 0.8438438438438438, 0.8448448448448448, 0.8458458458458459, 0.8468468468468469, 0.8478478478478478, 0.8488488488488488, 0.8498498498498498, 0.8508508508508509, 0.8518518518518519, 0.8528528528528528, 0.8538538538538538, 0.8548548548548548, 0.8558558558558559, 0.8568568568568569, 0.8578578578578578, 0.8588588588588588, 0.8598598598598598, 0.8608608608608609, 0.8618618618618619, 0.8628628628628628, 0.8638638638638638, 0.8648648648648649, 0.8658658658658659, 0.8668668668668669, 0.8678678678678678, 0.8688688688688688, 0.8698698698698699, 0.8708708708708709, 0.8718718718718719, 0.8728728728728729, 0.8738738738738738, 0.8748748748748749, 0.8758758758758759, 0.8768768768768769, 0.8778778778778779, 0.8788788788788788, 0.8798798798798799, 0.8808808808808809, 0.8818818818818819, 0.8828828828828829, 0.8838838838838838, 0.8848848848848849, 0.8858858858858859, 0.8868868868868869, 0.8878878878878879, 0.8888888888888888, 0.8898898898898899, 0.8908908908908909, 0.8918918918918919, 0.8928928928928929, 0.8938938938938938, 0.8948948948948949, 0.8958958958958959, 0.8968968968968969, 0.8978978978978979, 0.8988988988988988, 0.8998998998998999, 0.9009009009009009, 0.9019019019019019, 0.9029029029029029, 0.9039039039039038, 0.9049049049049049, 0.9059059059059059, 0.9069069069069069, 0.9079079079079079, 0.9089089089089089, 0.9099099099099099, 0.9109109109109109, 0.9119119119119119, 0.9129129129129129, 0.9139139139139139, 0.914914914914915, 0.9159159159159159, 0.9169169169169169, 0.9179179179179179, 0.9189189189189189, 0.91991991991992, 0.9209209209209209, 0.9219219219219219, 0.9229229229229229, 0.9239239239239239, 0.924924924924925, 0.9259259259259259, 0.9269269269269269, 0.9279279279279279, 0.9289289289289289, 0.92992992992993, 0.9309309309309309, 0.9319319319319319, 0.9329329329329329, 0.933933933933934, 0.934934934934935, 0.9359359359359359, 0.9369369369369369, 0.9379379379379379, 0.938938938938939, 0.93993993993994, 0.9409409409409409, 0.9419419419419419, 0.9429429429429429, 0.943943943943944, 0.944944944944945, 0.9459459459459459, 0.9469469469469469, 0.9479479479479479, 0.948948948948949, 0.94994994994995, 0.950950950950951, 0.9519519519519519, 0.9529529529529529, 0.953953953953954, 0.954954954954955, 0.955955955955956, 0.9569569569569569, 0.9579579579579579, 0.958958958958959, 0.95995995995996, 0.960960960960961, 0.9619619619619619, 0.9629629629629629, 0.963963963963964, 0.964964964964965, 0.965965965965966, 0.9669669669669669, 0.9679679679679679, 0.968968968968969, 0.96996996996997, 0.970970970970971, 0.9719719719719719, 0.9729729729729729, 0.973973973973974, 0.974974974974975, 0.975975975975976, 0.9769769769769769, 0.9779779779779779, 0.978978978978979, 0.97997997997998, 0.980980980980981, 0.9819819819819819, 0.9829829829829829, 0.983983983983984, 0.984984984984985, 0.985985985985986, 0.986986986986987, 0.9879879879879879, 0.988988988988989, 0.98998998998999, 0.990990990990991, 0.991991991991992, 0.992992992992993, 0.993993993993994, 0.994994994994995, 0.995995995995996, 0.996996996996997, 0.997997997997998, 0.998998998998999, 1.0], "c": [1.0, 1.009009009009009, 1.018018018018018, 1.027027027027027, 1.0360360360360361, 1.045045045045045, 1.054054054054054, 1.063063063063063, 1.072072072072072, 1.0810810810810811, 1.09009009009009, 1.0990990990990992, 1.1081081081081081, 1.117117117117117, 1.1261261261261262, 1.135135135135135, 1.1441441441441442, 1.1531531531531531, 1.1621621621621623, 1.1711711711711712, 1.1801801801801801, 1.1891891891891893, 1.1981981981981982, 1.2072072072072073, 1.2162162162162162, 1.2252252252252251, 1.2342342342342343, 1.2432432432432432, 1.2522522522522523, 1.2612612612612613, 1.2702702702702702, 1.2792792792792793, 1.2882882882882882, 1.2972972972972974, 1.3063063063063063, 1.3153153153153152, 1.3243243243243243, 1.3333333333333333, 1.3423423423423424, 1.3513513513513513, 1.3603603603603602, 1.3693693693693694, 1.3783783783783785, 1.3873873873873874, 1.3963963963963963, 1.4054054054054055, 1.4144144144144144, 1.4234234234234235, 1.4324324324324325, 1.4414414414414414, 1.4504504504504505, 1.4594594594594594, 1.4684684684684686, 1.4774774774774775, 1.4864864864864864, 1.4954954954954955, 1.5045045045045045, 1.5135135135135136, 1.5225225225225225, 1.5315315315315314, 1.5405405405405406, 1.5495495495495497, 1.5585585585585586, 1.5675675675675675, 1.5765765765765765, 1.5855855855855856, 1.5945945945945947, 1.6036036036036037, 1.6126126126126126, 1.6216216216216215, 1.6306306306306306, 1.6396396396396398, 1.6486486486486487, 1.6576576576576576, 1.6666666666666665, 1.6756756756756757, 1.6846846846846848, 1.6936936936936937, 1.7027027027027026, 1.7117117117117115, 1.7207207207207207, 1.7297297297297298, 1.7387387387387387, 1.7477477477477477, 1.7567567567567568, 1.7657657657657657, 1.7747747747747749, 1.7837837837837838, 1.7927927927927927, 1.8018018018018018, 1.810810810810811, 1.8198198198198199, 1.8288288288288288, 1.8378378378378377, 1.8468468468468469, 1.855855855855856, 1.864864864864865, 1.8738738738738738, 1.8828828828828827, 1.8918918918918919, 1.900900900900901, 1.90990990990991, 1.9189189189189189, 1.9279279279279278, 1.936936936936937, 1.945945945945946, 1.954954954954955, 1.9639639639639639, 1.9729729729729728, 1.981981981981982, 1.990990990990991, 2.0, 2.009009009009009, 2.018018018018018, 2.027027027027027, 2.036036036036036, 2.045045045045045, 2.054054054054054, 2.063063063063063, 2.0720720720720722, 2.081081081081081, 2.09009009009009, 2.0990990990990994, 2.108108108108108, 2.1171171171171173, 2.126126126126126, 2.135135135135135, 2.1441441441441444, 2.153153153153153, 2.1621621621621623, 2.171171171171171, 2.18018018018018, 2.1891891891891895, 2.198198198198198, 2.2072072072072073, 2.2162162162162162, 2.225225225225225, 2.2342342342342345, 2.243243243243243, 2.2522522522522523, 2.2612612612612613, 2.27027027027027, 2.2792792792792795, 2.288288288288288, 2.2972972972972974, 2.3063063063063063, 2.315315315315315, 2.3243243243243246, 2.333333333333333, 2.3423423423423424, 2.3513513513513513, 2.3603603603603602, 2.3693693693693696, 2.378378378378378, 2.3873873873873874, 2.3963963963963963, 2.4054054054054053, 2.4144144144144146, 2.423423423423423, 2.4324324324324325, 2.4414414414414414, 2.4504504504504503, 2.4594594594594597, 2.468468468468468, 2.4774774774774775, 2.4864864864864864, 2.4954954954954953, 2.5045045045045047, 2.5135135135135136, 2.5225225225225225, 2.5315315315315314, 2.5405405405405403, 2.5495495495495497, 2.5585585585585586, 2.5675675675675675, 2.5765765765765765, 2.5855855855855854, 2.5945945945945947, 2.6036036036036037, 2.6126126126126126, 2.621621621621622, 2.6306306306306304, 2.6396396396396398, 2.6486486486486487, 2.6576576576576576, 2.666666666666667, 2.6756756756756754, 2.684684684684685, 2.6936936936936937, 2.7027027027027026, 2.711711711711712, 2.7207207207207205, 2.72972972972973, 2.7387387387387387, 2.7477477477477477, 2.756756756756757, 2.7657657657657655, 2.774774774774775, 2.7837837837837838, 2.7927927927927927, 2.801801801801802, 2.8108108108108105, 2.81981981981982, 2.828828828828829, 2.8378378378378377, 2.846846846846847, 2.8558558558558556, 2.864864864864865, 2.873873873873874, 2.8828828828828827, 2.891891891891892, 2.9009009009009006, 2.90990990990991, 2.918918918918919, 2.9279279279279278, 2.936936936936937, 2.9459459459459456, 2.954954954954955, 2.963963963963964, 2.972972972972973, 2.981981981981982, 2.990990990990991, 3.0, 3.009009009009009, 3.018018018018018, 3.027027027027027, 3.036036036036036, 3.045045045045045, 3.054054054054054, 3.063063063063063, 3.0720720720720722, 3.081081081081081, 3.09009009009009, 3.099099099099099, 3.108108108108108, 3.1171171171171173, 3.126126126126126, 3.135135135135135, 3.144144144144144, 3.153153153153153, 3.1621621621621623, 3.171171171171171, 3.18018018018018, 3.189189189189189, 3.1981981981981984, 3.2072072072072073, 3.2162162162162162, 3.225225225225225, 3.234234234234234, 3.2432432432432434, 3.2522522522522523, 3.2612612612612613, 3.27027027027027, 3.279279279279279, 3.2882882882882885, 3.2972972972972974, 3.3063063063063063, 3.315315315315315, 3.324324324324324, 3.3333333333333335, 3.3423423423423424, 3.3513513513513513, 3.3603603603603602, 3.369369369369369, 3.3783783783783785, 3.3873873873873874, 3.3963963963963963, 3.4054054054054053, 3.414414414414414, 3.4234234234234235, 3.4324324324324325, 3.4414414414414414, 3.4504504504504503, 3.4594594594594597, 3.4684684684684686, 3.4774774774774775, 3.4864864864864864, 3.4954954954954953, 3.5045045045045047, 3.5135135135135136, 3.5225225225225225, 3.5315315315315314, 3.5405405405405403, 3.5495495495495497, 3.5585585585585586, 3.5675675675675675, 3.5765765765765765, 3.5855855855855854, 3.5945945945945947, 3.6036036036036037, 3.6126126126126126, 3.6216216216216215, 3.6306306306306304, 3.6396396396396398, 3.6486486486486487, 3.6576576576576576, 3.6666666666666665, 3.6756756756756754, 3.684684684684685, 3.6936936936936937, 3.7027027027027026, 3.7117117117117115, 3.720720720720721, 3.72972972972973, 3.7387387387387387, 3.7477477477477477, 3.7567567567567566, 3.765765765765766, 3.774774774774775, 3.7837837837837838, 3.7927927927927927, 3.8018018018018016, 3.810810810810811, 3.81981981981982, 3.828828828828829, 3.8378378378378377, 3.8468468468468466, 3.855855855855856, 3.864864864864865, 3.873873873873874, 3.8828828828828827, 3.8918918918918917, 3.900900900900901, 3.90990990990991, 3.918918918918919, 3.9279279279279278, 3.9369369369369367, 3.945945945945946, 3.954954954954955, 3.963963963963964, 3.972972972972973, 3.981981981981982, 3.990990990990991, 4.0, 4.009009009009009, 4.018018018018018, 4.027027027027027, 4.036036036036036, 4.045045045045045, 4.054054054054054, 4.063063063063063, 4.072072072072072, 4.081081081081081, 4.09009009009009, 4.099099099099099, 4.108108108108108, 4.117117117117117, 4.126126126126126, 4.135135135135135, 4.1441441441441444, 4.153153153153153, 4.162162162162162, 4.171171171171171, 4.18018018018018, 4.1891891891891895, 4.198198198198198, 4.207207207207207, 4.216216216216216, 4.225225225225225, 4.2342342342342345, 4.243243243243244, 4.252252252252252, 4.261261261261261, 4.27027027027027, 4.2792792792792795, 4.288288288288289, 4.297297297297297, 4.306306306306306, 4.315315315315315, 4.324324324324325, 4.333333333333334, 4.342342342342342, 4.351351351351351, 4.36036036036036, 4.36936936936937, 4.378378378378379, 4.387387387387387, 4.396396396396396, 4.405405405405405, 4.414414414414415, 4.423423423423424, 4.4324324324324325, 4.441441441441441, 4.45045045045045, 4.45945945945946, 4.468468468468469, 4.4774774774774775, 4.486486486486486, 4.495495495495495, 4.504504504504505, 4.513513513513514, 4.5225225225225225, 4.531531531531531, 4.54054054054054, 4.54954954954955, 4.558558558558559, 4.5675675675675675, 4.576576576576576, 4.585585585585585, 4.594594594594595, 4.603603603603604, 4.612612612612613, 4.621621621621621, 4.63063063063063, 4.63963963963964, 4.648648648648649, 4.657657657657658, 4.666666666666666, 4.675675675675675, 4.684684684684685, 4.693693693693694, 4.702702702702703, 4.711711711711711, 4.7207207207207205, 4.72972972972973, 4.738738738738739, 4.747747747747748, 4.756756756756756, 4.7657657657657655, 4.774774774774775, 4.783783783783784, 4.792792792792793, 4.801801801801801, 4.8108108108108105, 4.81981981981982, 4.828828828828829, 4.837837837837838, 4.846846846846846, 4.8558558558558556, 4.864864864864865, 4.873873873873874, 4.882882882882883, 4.891891891891891, 4.900900900900901, 4.90990990990991, 4.918918918918919, 4.927927927927928, 4.936936936936936, 4.945945945945946, 4.954954954954955, 4.963963963963964, 4.972972972972973, 4.981981981981982, 4.990990990990991, 5.0, 5.009009009009009, 5.018018018018018, 5.027027027027027, 5.036036036036036, 5.045045045045045, 5.054054054054054, 5.063063063063063, 5.072072072072072, 5.081081081081081, 5.09009009009009, 5.099099099099099, 5.108108108108108, 5.117117117117117, 5.126126126126126, 5.135135135135135, 5.1441441441441444, 5.153153153153153, 5.162162162162162, 5.171171171171171, 5.18018018018018, 5.1891891891891895, 5.198198198198198, 5.207207207207207, 5.216216216216216, 5.225225225225225, 5.2342342342342345, 5.243243243243243, 5.252252252252252, 5.261261261261261, 5.27027027027027, 5.2792792792792795, 5.288288288288288, 5.297297297297297, 5.306306306306306, 5.315315315315315, 5.324324324324325, 5.333333333333333, 5.342342342342342, 5.351351351351351, 5.36036036036036, 5.36936936936937, 5.378378378378378, 5.387387387387387, 5.396396396396397, 5.405405405405405, 5.414414414414415, 5.423423423423423, 5.4324324324324325, 5.441441441441442, 5.45045045045045, 5.45945945945946, 5.468468468468468, 5.4774774774774775, 5.486486486486487, 5.495495495495495, 5.504504504504505, 5.513513513513513, 5.5225225225225225, 5.531531531531532, 5.54054054054054, 5.54954954954955, 5.558558558558558, 5.5675675675675675, 5.576576576576577, 5.585585585585585, 5.594594594594595, 5.603603603603603, 5.612612612612613, 5.621621621621622, 5.63063063063063, 5.63963963963964, 5.648648648648648, 5.657657657657658, 5.666666666666667, 5.675675675675675, 5.684684684684685, 5.693693693693693, 5.702702702702703, 5.711711711711712, 5.7207207207207205, 5.72972972972973, 5.738738738738738, 5.747747747747748, 5.756756756756757, 5.7657657657657655, 5.774774774774775, 5.783783783783783, 5.792792792792793, 5.801801801801802, 5.8108108108108105, 5.81981981981982, 5.828828828828828, 5.837837837837838, 5.846846846846847, 5.8558558558558556, 5.864864864864865, 5.873873873873874, 5.882882882882883, 5.891891891891892, 5.900900900900901, 5.90990990990991, 5.918918918918919, 5.927927927927928, 5.936936936936937, 5.945945945945946, 5.954954954954955, 5.963963963963964, 5.972972972972973, 5.981981981981982, 5.990990990990991, 6.0, 6.009009009009009, 6.018018018018018, 6.027027027027027, 6.036036036036036, 6.045045045045045, 6.054054054054054, 6.063063063063063, 6.072072072072072, 6.081081081081081, 6.09009009009009, 6.099099099099099, 6.108108108108108, 6.117117117117117, 6.126126126126126, 6.135135135135135, 6.1441441441441444, 6.153153153153153, 6.162162162162162, 6.171171171171171, 6.18018018018018, 6.1891891891891895, 6.198198198198198, 6.207207207207207, 6.216216216216216, 6.225225225225225, 6.2342342342342345, 6.243243243243243, 6.252252252252252, 6.261261261261261, 6.27027027027027, 6.2792792792792795, 6.288288288288288, 6.297297297297297, 6.306306306306306, 6.315315315315315, 6.324324324324325, 6.333333333333333, 6.342342342342342, 6.351351351351351, 6.36036036036036, 6.36936936936937, 6.378378378378378, 6.387387387387387, 6.396396396396397, 6.405405405405405, 6.414414414414415, 6.423423423423423, 6.4324324324324325, 6.441441441441442, 6.45045045045045, 6.45945945945946, 6.468468468468468, 6.4774774774774775, 6.486486486486487, 6.495495495495495, 6.504504504504505, 6.513513513513513, 6.5225225225225225, 6.531531531531532, 6.54054054054054, 6.54954954954955, 6.558558558558558, 6.5675675675675675, 6.576576576576577, 6.585585585585585, 6.594594594594595, 6.603603603603603, 6.612612612612613, 6.621621621621622, 6.63063063063063, 6.63963963963964, 6.648648648648648, 6.657657657657658, 6.666666666666667, 6.675675675675675, 6.684684684684685, 6.693693693693693, 6.702702702702703, 6.711711711711712, 6.7207207207207205, 6.72972972972973, 6.738738738738738, 6.747747747747748, 6.756756756756757, 6.7657657657657655, 6.774774774774775, 6.783783783783783, 6.792792792792793, 6.801801801801802, 6.8108108108108105, 6.81981981981982, 6.828828828828828, 6.837837837837838, 6.846846846846847, 6.8558558558558556, 6.864864864864865, 6.873873873873873, 6.882882882882883, 6.891891891891892, 6.900900900900901, 6.90990990990991, 6.918918918918919, 6.927927927927928, 6.936936936936937, 6.945945945945946, 6.954954954954955, 6.963963963963964, 6.972972972972973, 6.981981981981982, 6.990990990990991, 7.0, 7.009009009009009, 7.018018018018018, 7.027027027027027, 7.036036036036036, 7.045045045045045, 7.054054054054054, 7.063063063063063, 7.072072072072072, 7.081081081081081, 7.09009009009009, 7.099099099099099, 7.108108108108108, 7.117117117117117, 7.126126126126126, 7.135135135135135, 7.1441441441441444, 7.153153153153153, 7.162162162162162, 7.171171171171171, 7.18018018018018, 7.1891891891891895, 7.198198198198198, 7.207207207207207, 7.216216216216216, 7.225225225225225, 7.2342342342342345, 7.243243243243243, 7.252252252252252, 7.261261261261261, 7.27027027027027, 7.2792792792792795, 7.288288288288288, 7.297297297297297, 7.306306306306306, 7.315315315315315, 7.324324324324325, 7.333333333333333, 7.342342342342342, 7.351351351351351, 7.36036036036036, 7.36936936936937, 7.378378378378378, 7.387387387387387, 7.396396396396396, 7.405405405405405, 7.414414414414415, 7.423423423423423, 7.4324324324324325, 7.441441441441442, 7.45045045045045, 7.45945945945946, 7.468468468468468, 7.4774774774774775, 7.486486486486487, 7.495495495495495, 7.504504504504505, 7.513513513513513, 7.5225225225225225, 7.531531531531532, 7.54054054054054, 7.54954954954955, 7.558558558558558, 7.5675675675675675, 7.576576576576577, 7.585585585585585, 7.594594594594595, 7.603603603603603, 7.612612612612613, 7.621621621621622, 7.63063063063063, 7.63963963963964, 7.648648648648648, 7.657657657657658, 7.666666666666667, 7.675675675675675, 7.684684684684685, 7.693693693693693, 7.702702702702703, 7.711711711711712, 7.7207207207207205, 7.72972972972973, 7.738738738738738, 7.747747747747748, 7.756756756756757, 7.7657657657657655, 7.774774774774775, 7.783783783783783, 7.792792792792793, 7.801801801801802, 7.8108108108108105, 7.81981981981982, 7.828828828828828, 7.837837837837838, 7.846846846846847, 7.8558558558558556, 7.864864864864865, 7.873873873873873, 7.882882882882883, 7.891891891891892, 7.900900900900901, 7.90990990990991, 7.918918918918919, 7.927927927927928, 7.936936936936937, 7.945945945945946, 7.954954954954955, 7.963963963963964, 7.972972972972973, 7.981981981981982, 7.990990990990991, 8.0, 8.00900900900901, 8.018018018018019, 8.027027027027028, 8.036036036036036, 8.045045045045045, 8.054054054054054, 8.063063063063062, 8.072072072072071, 8.08108108108108, 8.09009009009009, 8.0990990990991, 8.108108108108109, 8.117117117117118, 8.126126126126126, 8.135135135135135, 8.144144144144144, 8.153153153153152, 8.162162162162161, 8.17117117117117, 8.18018018018018, 8.18918918918919, 8.198198198198199, 8.207207207207208, 8.216216216216216, 8.225225225225225, 8.234234234234235, 8.243243243243242, 8.252252252252251, 8.26126126126126, 8.27027027027027, 8.27927927927928, 8.288288288288289, 8.297297297297298, 8.306306306306306, 8.315315315315315, 8.324324324324325, 8.333333333333332, 8.342342342342342, 8.35135135135135, 8.36036036036036, 8.36936936936937, 8.378378378378379, 8.387387387387388, 8.396396396396396, 8.405405405405405, 8.414414414414415, 8.423423423423422, 8.432432432432432, 8.441441441441441, 8.45045045045045, 8.45945945945946, 8.468468468468469, 8.477477477477478, 8.486486486486488, 8.495495495495495, 8.504504504504505, 8.513513513513512, 8.522522522522522, 8.531531531531531, 8.54054054054054, 8.54954954954955, 8.558558558558559, 8.567567567567568, 8.576576576576578, 8.585585585585585, 8.594594594594595, 8.603603603603602, 8.612612612612612, 8.621621621621621, 8.63063063063063, 8.63963963963964, 8.64864864864865, 8.657657657657658, 8.666666666666668, 8.675675675675675, 8.684684684684685, 8.693693693693692, 8.702702702702702, 8.711711711711711, 8.72072072072072, 8.72972972972973, 8.73873873873874, 8.747747747747749, 8.756756756756758, 8.765765765765765, 8.774774774774775, 8.783783783783782, 8.792792792792792, 8.801801801801801, 8.81081081081081, 8.81981981981982, 8.82882882882883, 8.837837837837839, 8.846846846846848, 8.855855855855856, 8.864864864864865, 8.873873873873872, 8.882882882882882, 8.891891891891891, 8.9009009009009, 8.90990990990991, 8.91891891891892, 8.927927927927929, 8.936936936936938, 8.945945945945946, 8.954954954954955, 8.963963963963964, 8.972972972972972, 8.981981981981981, 8.99099099099099, 9.0, 9.00900900900901, 9.018018018018019, 9.027027027027026, 9.036036036036036, 9.045045045045045, 9.054054054054054, 9.063063063063064, 9.072072072072071, 9.08108108108108, 9.09009009009009, 9.0990990990991, 9.108108108108109, 9.117117117117116, 9.126126126126126, 9.135135135135135, 9.144144144144144, 9.153153153153154, 9.162162162162161, 9.17117117117117, 9.18018018018018, 9.18918918918919, 9.198198198198199, 9.207207207207206, 9.216216216216216, 9.225225225225225, 9.234234234234235, 9.243243243243244, 9.252252252252251, 9.26126126126126, 9.27027027027027, 9.27927927927928, 9.288288288288289, 9.297297297297296, 9.306306306306306, 9.315315315315315, 9.324324324324325, 9.333333333333334, 9.342342342342342, 9.35135135135135, 9.36036036036036, 9.36936936936937, 9.378378378378379, 9.387387387387387, 9.396396396396396, 9.405405405405405, 9.414414414414415, 9.423423423423424, 9.432432432432432, 9.441441441441441, 9.45045045045045, 9.45945945945946, 9.468468468468469, 9.477477477477477, 9.486486486486486, 9.495495495495495, 9.504504504504505, 9.513513513513514, 9.522522522522522, 9.531531531531531, 9.54054054054054, 9.54954954954955, 9.558558558558559, 9.567567567567567, 9.576576576576576, 9.585585585585585, 9.594594594594595, 9.603603603603604, 9.612612612612612, 9.621621621621621, 9.63063063063063, 9.63963963963964, 9.64864864864865, 9.657657657657657, 9.666666666666666, 9.675675675675675, 9.684684684684685, 9.693693693693694, 9.702702702702702, 9.711711711711711, 9.72072072072072, 9.72972972972973, 9.73873873873874, 9.747747747747749, 9.756756756756756, 9.765765765765765, 9.774774774774775, 9.783783783783784, 9.792792792792794, 9.801801801801801, 9.81081081081081, 9.81981981981982, 9.82882882882883, 9.837837837837839, 9.846846846846846, 9.855855855855856, 9.864864864864865, 9.873873873873874, 9.882882882882884, 9.891891891891891, 9.9009009009009, 9.90990990990991, 9.91891891891892, 9.927927927927929, 9.936936936936936, 9.945945945945946, 9.954954954954955, 9.963963963963964, 9.972972972972974, 9.981981981981981, 9.99099099099099, 10.0], "expected": [0.0, 0.001447031463159249, 0.0028998064252610404, 0.004358263285345502, 0.005822340446455476, 0.007291976320816643, 0.008767109335021742, 0.010247677935216587, 0.011733620592285728, 0.013224875807035555, 0.01472138211537269, 0.016223078093475653, 0.017729902362957677, 0.019241793596018644, 0.020758690520584294, 0.022280531925430565, 0.023807256665291352, 0.025338803665947728, 0.026875111929296834, 0.028416120538398617, 0.029961768662498747, 0.03151199556202599, 0.033066740593562245, 0.03462594321478381, 0.036189542989372235, 0.0377574795918931, 0.0393296928126413, 0.040906122562451484, 0.04248670887747187, 0.04407139192390051, 0.0456601120026823, 0.04725280955416544, 0.048849425162716335, 0.05044989956129141, 0.05205417363596482, 0.05366218843041076, 0.05527388515033937, 0.05688920516788511, 0.058508090025946466, 0.0601304814424762, 0.06175632131472098, 0.06338555172340937, 0.06501811493688767, 0.06665395341520221, 0.06829300981412788, 0.06993522698914147, 0.07158054799933958, 0.07322891611130015, 0.07488027480288686, 0.07653456776699598, 0.0781917389152448, 0.0798517323816013, 0.08151449252595443, 0.08317996393762415, 0.08484809143881163, 0.08651882008798793, 0.08819209518322192, 0.08986786226544644, 0.09154606712166209, 0.09322665578807934, 0.09490957455319744, 0.09659476996082077, 0.09828218881301205, 0.09997177817298214, 0.10166348536791658, 0.10335725799173827, 0.10505304390780651, 0.10675079125155242, 0.10845044843305016, 0.11015196413952448, 0.11185528733779433, 0.1135603672766523, 0.1152671534891807, 0.11697559579500343, 0.11868564430247425, 0.12039724941080174, 0.12211036181211031, 0.12382493249343836, 0.1255409127386733, 0.12725825413042333, 0.12897690855182697, 0.13069682818829986, 0.13241796552921964, 0.13414027336954865, 0.13586370481139542, 0.13758821326551457, 0.13931375245274602, 0.14104027640539354, 0.14276773946854313, 0.14449609630132176, 0.1462253018780963, 0.14795531148961413, 0.14968608074408446, 0.15141756556820227, 0.1531497222081143, 0.1548825072303277, 0.1566158775225626, 0.15834979029454788, 0.16008420307876173, 0.16181907373111715, 0.16355436043159247, 0.16529002168480827, 0.16702601632055067, 0.1687623034942414, 0.17049884268735646, 0.17223559370779182, 0.17397251669017894, 0.17570957209614926, 0.17744672071454892, 0.17918392366160416, 0.18092114238103785, 0.18265833864413805, 0.18439547454977936, 0.1861325125243968, 0.1878694153219144, 0.1896061460236276, 0.19134266803804087, 0.1930789451006616, 0.1948149412737497, 0.196550620946025, 0.1982859488323319, 0.20002088997326267, 0.20175540973474015, 0.20348947380755925, 0.2052230482068904, 0.20695609927174255, 0.2086885936643892, 0.21042049836975601, 0.21215178069477214, 0.2138824082676851, 0.2156123490373401, 0.21734157127242457, 0.2190700435606789, 0.22079773480807263, 0.22252461423794914, 0.224250651390137, 0.22597581612003076, 0.22770007859764002, 0.22942340930660907, 0.2311457790432064, 0.2328671589152858, 0.23458752034121888, 0.23630683504880023, 0.23802507507412568, 0.23974221276044386, 0.24145822075698262, 0.2431730720177501, 0.24488673980031156, 0.24659919766454239, 0.24831041947135785, 0.2500203793814203, 0.2517290518538248, 0.2534364116447628, 0.2551424338061658, 0.2568470936843281, 0.258550366918511, 0.26025222943952664, 0.26195265746830504, 0.2636516275144421, 0.26534911637473113, 0.2670451011316771, 0.26873955915199504, 0.2704324680850931, 0.2721238058615402, 0.2738135506915196, 0.27550168106326733, 0.27718817574149934, 0.2788730137658236, 0.28055617444914055, 0.28223763737603264, 0.2839173824011404, 0.2855953896475297, 0.2872716395050468, 0.28894611262866515, 0.2906187899368211, 0.29228965260974177, 0.2939586820877633, 0.2956258600696431, 0.29729116851086096, 0.29895458962191646, 0.3006161058666175, 0.30227569996036346, 0.3039333548684217, 0.30558905380419843, 0.307242780227506, 0.3088945178428239, 0.31054425059755536, 0.3121919626802815, 0.3138376385190105, 0.31548126277942357, 0.3171228203631201, 0.3187622964058573, 0.32039967627579014, 0.3220349455717086, 0.3236680901212731, 0.32529909597925016, 0.326927949425746, 0.32855463696444015, 0.33017914532081877, 0.33180146144040934, 0.33342157248701365, 0.3350394658409434, 0.3366551290972567, 0.3382685500639946, 0.3398797167604205, 0.34148861741526176, 0.34309524046495193, 0.3446995745518772, 0.34630160852262387, 0.34790133142623014, 0.3494987325124406, 0.3510938012299638, 0.3526865272247338, 0.35427690033817566, 0.3558649106054747, 0.3574505482538507, 0.3590338037008358, 0.3606146675525578, 0.3621931306020279, 0.3637691838274342, 0.3653428183904395, 0.3669140256344856, 0.36848279708310305, 0.37004912443822613, 0.37161299957851435, 0.3731744145576804, 0.3747333616028235, 0.3762898331127701, 0.37784382165642166, 0.3793953199711071, 0.3809443209609449, 0.3824908176952099, 0.3840348034067089, 0.38557627149016327, 0.387115215500598, 0.3886516291517397, 0.3901855063144212, 0.391716841014995, 0.393245627433753, 0.39477185990335645, 0.39629553290727204, 0.3978166410782165, 0.399335179196611, 0.4008511421890424, 0.4023645251267328, 0.40387532322401914, 0.4053835318368399, 0.40688914646123114, 0.40839216273183143, 0.4098925764203955, 0.41139038343431644, 0.4128855798151572, 0.4143781617371908, 0.41586812550595065, 0.41735546755678776, 0.4188401844534401, 0.4203222728866082, 0.42180172967254176, 0.4232785517516361, 0.4247527361870355, 0.4262242801632486, 0.42769318098477094, 0.42915943607471896, 0.43062304297347204, 0.43208399933732466, 0.43354230293714735, 0.4349979516570577, 0.43645094349310154, 0.43790127655194255, 0.4393489490495613, 0.4407939593099656, 0.4422363057639081, 0.44367598694761523, 0.4451130015015254, 0.44654734816903524, 0.44797902579525856, 0.44940803332579154, 0.4508343698054896, 0.4522580343772534, 0.45367902628082407, 0.4550973448515884, 0.45651298951939295, 0.45792595980736894, 0.45933625533076516, 0.4607438757957916, 0.4621488209984725, 0.46355109082350726, 0.46495068524314315, 0.46634760431605643, 0.46774184818624165, 0.469133417081914, 0.4705223113144148, 0.471908531277134, 0.4732920774444358, 0.4746729503705967, 0.4760511506887518, 0.4774266791098503, 0.4787995364216213, 0.4801697234875469, 0.4815372412458459, 0.48290209070846685, 0.48426427296008817, 0.48562378915712917, 0.4869806405267705, 0.4883348283659806, 0.48968635404055527, 0.4910352189841619, 0.4923814246973961, 0.4937249727468441, 0.4950658647641575, 0.4964041024451317, 0.4977396875487991, 0.49907262189652535, 0.5004029073711173, 0.5017305459159396, 0.5030555395340379, 0.504377890287272, 0.5056976002954573, 0.5070146717355138, 0.508329106840624, 0.5096409078993996, 0.5109500772550549, 0.5122566173045897, 0.5135605304979799, 0.5148618193373765, 0.5161604863763114, 0.517456534218913, 0.5187499655191281, 0.5200407829799523, 0.5213289893526692, 0.5226145874360957, 0.5238975800758354, 0.5251779701635407, 0.5264557606361822, 0.5277309544753241, 0.5290035547064093, 0.5302735643980505, 0.5315409866613298, 0.5328058246491043, 0.5340680815553204, 0.535327760614334, 0.53658486510024, 0.5378393983262058, 0.5390913636438149, 0.5403407644424163, 0.54158760414848, 0.5428318862249614, 0.5440736141706707, 0.5453127915196508, 0.5465494218405604, 0.5477835087360653, 0.5490150558422349, 0.5502440668279467, 0.5514705453942963, 0.5526944952740154, 0.5539159202308934, 0.5551348240592093, 0.5563512105831664, 0.557565083656336, 0.5587764471611053, 0.5599853050081329, 0.5611916611358102, 0.5623955195097278, 0.56359688412215, 0.5647957589914931, 0.5659921481618116, 0.567186055702289, 0.5683774857067341, 0.5695664422930856, 0.5707529296029191, 0.5719369518009622, 0.5731185130746143, 0.5742976176334721, 0.5754742697088608, 0.5766484735533709, 0.5778202334403996, 0.5789895536636993, 0.5801564385369293, 0.5813208923932152, 0.582482919584711, 0.5836425244821687, 0.5847997114745118, 0.5859544849684142, 0.5871068493878836, 0.5882568091738515, 0.5894043687837663, 0.5905495326911935, 0.5916923053854168, 0.5928326913710501, 0.5939706951676486, 0.5951063213093275, 0.5962395743443853, 0.5973704588349306, 0.5984989793565153, 0.5996251404977698, 0.6007489468600459, 0.6018704030570605, 0.6029895137145479, 0.6041062834699127, 0.6052207169718893, 0.6063328188802054, 0.6074425938652483, 0.6085500466077378, 0.6096551817984022, 0.6107580041376559, 0.6118585183352869, 0.6129567291101427, 0.6140526411898224, 0.6151462593103744, 0.6162375882159948, 0.6173266326587324, 0.6184133973981959, 0.619497887201266, 0.6205801068418103, 0.6216600611004032, 0.6227377547640476, 0.6238131926259024, 0.6248863794850126, 0.6259573201460424, 0.6270260194190124, 0.6280924821190415, 0.6291567130660898, 0.6302187170847072, 0.6312784990037841, 0.6323360636563058, 0.6333914158791107, 0.634444560512651, 0.6354955024007568, 0.6365442463904047, 0.6375907973314875, 0.6386351600765887, 0.6396773394807591, 0.6407173404012977, 0.6417551676975339, 0.6427908262306147, 0.6438243208632934, 0.6448556564597216, 0.6458848378852448, 0.6469118700062, 0.6479367576897168, 0.648959505803521, 0.6499801192157412, 0.6509986027947177, 0.6520149614088151, 0.6530291999262363, 0.6540413232148409, 0.6550513361419641, 0.6560592435742403, 0.6570650503774277, 0.6580687614162364, 0.659070381554159, 0.660069915653303, 0.6610673685742267, 0.6620627451757759, 0.6630560503149259, 0.6640472888466225, 0.6650364656236274, 0.6660235854963662, 0.6670086533127767, 0.6679916739181628, 0.6689726521550465, 0.6699515928630256, 0.6709285008786325, 0.671903381035194, 0.6728762381626948, 0.6738470770876435, 0.6748159026329378, 0.675782719617736, 0.6767475328573264, 0.6777103471630026, 0.6786711673419373, 0.6796299981970608, 0.6805868445269396, 0.6815417111256582, 0.6824946027827025, 0.6834455242828441, 0.6843944804060282, 0.6853414759272627, 0.6862865156165072, 0.6872296042385676, 0.6881707465529893, 0.6891099473139533, 0.6900472112701742, 0.6909825431647999, 0.6919159477353127, 0.6928474297134323, 0.6937769938250199, 0.6947046447899856, 0.6956303873221948, 0.6965542261293793, 0.697476165913047, 0.6983962113683949, 0.6993143671842246, 0.7002306380428552, 0.7011450286200436, 0.7020575435849009, 0.7029681875998144, 0.7038769653203676, 0.7047838813952645, 0.7056889404662535, 0.7065921471680535, 0.7074935061282813, 0.7083930219673801, 0.7092906992985495, 0.7101865427276772, 0.711080556853271, 0.7119727462663935, 0.7128631155505971, 0.7137516692818601, 0.7146384120285255, 0.7155233483512389, 0.7164064828028891, 0.7172878199285504, 0.718167364265424, 0.7190451203427827, 0.7199210926819154, 0.7207952857960733, 0.7216677041904178, 0.7225383523619678, 0.72340723479955, 0.7242743559837495, 0.7251397203868606, 0.726003332472841, 0.726865196697264, 0.7277253175072743, 0.7285836993415438, 0.7294403466302276, 0.7302952637949232, 0.7311484552486278, 0.7319999253956992, 0.7328496786318168, 0.7336977193439416, 0.7345440519102804, 0.735388680700249, 0.7362316100744364, 0.7370728443845704, 0.7379123879734834, 0.7387502451750803, 0.7395864203143054, 0.7404209177071125, 0.7412537416604335, 0.7420848964721488, 0.7429143864310603, 0.7437422158168612, 0.7445683889001102, 0.7453929099422058, 0.7462157831953586, 0.7470370129025694, 0.7478566032976024, 0.748674558604964, 0.7494908830398788, 0.7503055808082691, 0.7511186561067331, 0.7519301131225241, 0.7527399560335314, 0.7535481890082614, 0.7543548162058183, 0.7551598417758879, 0.7559632698587193, 0.7567651045851093, 0.7575653500763855, 0.7583640104443932, 0.7591610897914789, 0.7599565922104777, 0.7607505217846995, 0.7615428825879162, 0.7623336786843501, 0.763122914128662, 0.7639105929659401, 0.7646967192316908, 0.7654812969518267, 0.7662643301426594, 0.7670458228108897, 0.7678257789536003, 0.7686042025582457, 0.7693810976026487, 0.7701564680549907, 0.7709303178738072, 0.7717026510079811, 0.7724734713967382, 0.7732427829696426, 0.7740105896465914, 0.7747768953378126, 0.7755417039438602, 0.7763050193556124, 0.7770668454542686, 0.7778271861113479, 0.778586045188687, 0.7793434265384399, 0.7800993340030761, 0.7808537714153813, 0.7816067425984569, 0.7823582513657212, 0.7831083015209094, 0.7838568968580756, 0.7846040411615944, 0.7853497382061627, 0.7860939917568026, 0.7868368055688634, 0.7875781833880257, 0.7883181289503044, 0.7890566459820522, 0.789793738199965, 0.7905294093110853, 0.7912636630128075, 0.7919965029928829, 0.7927279329294258, 0.793457956490919, 0.7941865773362196, 0.7949137991145655, 0.7956396254655833, 0.7963640600192938, 0.7970871063961208, 0.7978087682068972, 0.798529049052874, 0.7992479525257283, 0.7999654822075719, 0.8006816416709596, 0.8013964344788984, 0.8021098641848574, 0.8028219343327757, 0.8035326484570745, 0.8042420100826648, 0.8049500227249597, 0.8056566898898829, 0.806362015073881, 0.8070660017639345, 0.8077686534375674, 0.8084699735628602, 0.809169965598461, 0.8098686329935976, 0.8105659791880888, 0.8112620076123576, 0.8119567216874434, 0.812650124825014, 0.8133422204273796, 0.8140330118875051, 0.8147225025890235, 0.8154106959062494, 0.8160975952041931, 0.8167832038385732, 0.8174675251558319, 0.8181505624931484, 0.8188323191784536, 0.8195127985304436, 0.8201920038585964, 0.8208699384631842, 0.821546605635291, 0.8222220086568253, 0.8228961508005367, 0.823569035330031, 0.8242406654997863, 0.8249110445551675, 0.8255801757324438, 0.8262480622588027, 0.8269147073523683, 0.8275801142222152, 0.8282442860683874, 0.8289072260819129, 0.8295689374448205, 0.830229423330158, 0.8308886869020075, 0.8315467313155025, 0.8322035597168461, 0.8328591752433278, 0.8335135810233393, 0.8341667801763945, 0.8348187758131447, 0.8354695710353978, 0.8361191689361352, 0.8367675725995298, 0.837414785100964, 0.8380608095070471, 0.838705648875635, 0.8393493062558461, 0.8399917846880816, 0.8406330872040425, 0.8412732168267489, 0.8419121765705574, 0.8425499694411811, 0.8431865984357073, 0.8438220665426167, 0.8444563767418015, 0.8450895320045847, 0.8457215352937396, 0.8463523895635074, 0.8469820977596185, 0.8476106628193089, 0.8482380876713412, 0.8488643752360235, 0.8494895284252286, 0.850113550142413, 0.8507364432826368, 0.8513582107325826, 0.8519788553705764, 0.8525983800666047, 0.8532167876823369, 0.8538340810711428, 0.8544502630781129, 0.8550653365400791, 0.8556793042856331, 0.8562921691351466, 0.8569039339007917, 0.8575146013865603, 0.8581241743882841, 0.8587326556936545, 0.859340048082243, 0.8599463543255202, 0.860551577186877, 0.8611557194216439, 0.8617587837771121, 0.8623607729925516, 0.8629616897992338, 0.8635615369204497, 0.8641603170715312, 0.8647580329598709, 0.8653546872849427, 0.8659502827383218, 0.8665448220037038, 0.8671383077569275, 0.8677307426659931, 0.8683221293910838, 0.8689124705845842, 0.8695017688911032, 0.8700900269474922, 0.8706772473828671, 0.8712634328186271, 0.8718485858684762, 0.8724327091384435, 0.8730158052269024, 0.8735978767245925, 0.8741789262146392, 0.874758956272574, 0.8753379694663552, 0.8759159683563881, 0.8764929554955452, 0.8770689334291871, 0.8776439046951826, 0.878217871823929, 0.8787908373383718, 0.8793628037540273, 0.879933773579, 0.8805037493140051, 0.8810727334523878, 0.8816407284801442, 0.8822077368759411, 0.882773761111137, 0.8833388036498018, 0.8839028669487369, 0.8844659534574967, 0.8850280656184072, 0.885589205866588, 0.8861493766299707, 0.8867085803293209, 0.8872668193782569, 0.887824096183271, 0.888380413143749, 0.8889357726519912, 0.8894901770932313, 0.8900436288456571, 0.8905961302804316, 0.8911476837617113, 0.8916982916466676, 0.8922479562855062, 0.8927966800214874, 0.8933444651909458, 0.8938913141233111, 0.8944372291411267, 0.894982212560071, 0.8955262666889764, 0.8960693938298494, 0.8966115962778912, 0.8971528763215159, 0.8976932362423719, 0.8982326783153609, 0.8987712048086577, 0.8993088179837306, 0.8998455200953598, 0.9003813133916586, 0.9009162001140913, 0.9014501824974949, 0.9019832627700964, 0.9025154431535346, 0.9030467258628778, 0.9035771131066442, 0.9041066070868214, 0.9046352099988854, 0.9051629240318203, 0.9056897513681373, 0.9062156941838954, 0.9067407546487181, 0.9072649349258151, 0.9077882371720003, 0.9083106635377118, 0.9088322161670299, 0.9093528971976977, 0.9098727087611383, 0.9103916529824763, 0.9109097319805544, 0.9114269478679541, 0.9119433027510137, 0.9124587987298481, 0.9129734378983665, 0.9134872223442921, 0.9140001541491811, 0.9145122353884404, 0.9150234681313476, 0.9155338544410686, 0.9160433963746771, 0.9165520959831727, 0.9170599553114995, 0.9175669763985653, 0.9180731612772591, 0.9185785119744702, 0.9190830305111062, 0.9195867189021126, 0.9200895791564888, 0.9205916132773092, 0.9210928232617391, 0.9215932111010542, 0.9220927787806587, 0.9225915282801029, 0.9230894615731017, 0.9235865806275528, 0.9240828874055542, 0.9245783838634227, 0.9250730719517115, 0.9255669536152283, 0.9260600307930533, 0.9265523054185563, 0.9270437794194151, 0.9275344547176333, 0.9280243332295576, 0.9285134168658954, 0.9290017075317335, 0.9294892071265536, 0.9299759175442517, 0.9304618406731544, 0.9309469783960375, 0.9314313325901421, 0.9319149051271924, 0.9323976978734138, 0.9328797126895487, 0.9333609514308754, 0.9338414159472229, 0.9343211080829912, 0.9348000296771655, 0.9352781825633348, 0.9357555685697088, 0.936232189519134, 0.9367080472291114, 0.9371831435118132, 0.9376574801740996, 0.9381310590175354, 0.9386038818384068, 0.9390759504277386, 0.9395472665713094, 0.9400178320496703, 0.9404876486381598, 0.9409567181069212, 0.941425042220918, 0.9418926227399518, 0.9423594614186774, 0.9428255600066201, 0.9432909202481914, 0.9437555438827052, 0.9442194326443946, 0.944682588262427, 0.9451450124609213, 0.9456067069589638, 0.9460676734706231, 0.9465279137049678, 0.9469874293660809, 0.947446222153077, 0.9479042937601168, 0.948361645876424, 0.9488182801863008, 0.9492741983691423, 0.9497294020994552, 0.9501838930468701, 0.9506376728761589, 0.9510907432472501, 0.9515431058152442, 0.9519947622304282, 0.9524457141382932, 0.9528959631795474, 0.953345510990133, 0.9537943592012407, 0.9542425094393249, 0.9546899633261193, 0.955136722478652, 0.95558278850926, 0.9560281630256049, 0.9564728476306877, 0.9569168439228635, 0.9573601534958568, 0.9578027779387759, 0.9582447188361282, 0.9586859777678349, 0.9591265563092455, 0.9595664560311522, 0.9600056784998056, 0.9604442252769281, 0.9608820979197293, 0.9613192979809203, 0.9617558270087279, 0.9621916865469089, 0.9626268781347652, 0.963061403307158, 0.9634952635945209, 0.9639284605228761, 0.9643609956138466, 0.9647928703846724, 0.9652240863482225, 0.9656546450130112, 0.9660845478832097, 0.9665137964586623, 0.9669423922348989, 0.9673703367031498, 0.9677976313503595, 0.9682242776591986, 0.9686502771080815, 0.9690756311711757, 0.9695003413184193, 0.9699244090155315, 0.9703478357240287, 0.9707706229012366, 0.9711927720003044, 0.9716142844702171, 0.9720351617558115, 0.9724554052977865, 0.9728750165327186, 0.9732939968930739, 0.9737123478072232, 0.9741300706994525, 0.9745471669899787, 0.9749636380949614, 0.9753794854265163, 0.9757947103927286, 0.9762093143976648, 0.976623298841388, 0.977036665119968, 0.9774494146254967, 0.9778615487460991, 0.9782730688659471, 0.9786839763652724, 0.9790942726203783, 0.9795039590036535, 0.9799130368835836, 0.9803215076247647, 0.9807293725879158, 0.9811366331298901, 0.9815432906036898, 0.9819493463584765, 0.9823548017395839, 0.9827596580885319, 0.9831639167430364, 0.983567579037023, 0.9839706463006397, 0.9843731198602678, 0.9847750010385349, 0.9851762911543269, 0.9855769915228, 0.985977103455393, 0.9863766282598384, 0.9867755672401758, 0.9871739216967623, 0.9875716929262857, 0.9879688822217761, 0.9883654908726164, 0.988761520164556, 0.9891569713797216, 0.989551845796628, 0.9899461446901917, 0.9903398693317411, 0.9907330209890282, 0.9911256009262405, 0.9915176104040131, 0.9919090506794388, 0.99229992300608, 0.992690228633981, 0.993079968809678, 0.9934691447762116, 0.9938577577731372, 0.9942458090365367, 0.9946332997990295, 0.9950202312897837, 0.9954066047345271, 0.9957924213555595, 0.9961776823717611, 0.996562388998606, 0.9969465424481727, 0.9973301439291539, 0.9977131946468684, 0.9980956958032716, 0.9984776485969673, 0.9988590542232162, 0.9992399138739494, 0.999620228737777, 1.0]}
diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/test/fixtures/python/runner.py b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/test/fixtures/python/runner.py
new file mode 100644
index 000000000000..3d9f15df5dff
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/test/fixtures/python/runner.py
@@ -0,0 +1,85 @@
+#!/usr/bin/env python
+#
+# @license Apache-2.0
+#
+# Copyright (c) 2025 The Stdlib Authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+"""Generate fixtures."""
+
+import os
+import json
+import numpy as np
+from scipy.stats import bradford
+
+# Get the file path:
+FILE = os.path.realpath(__file__)
+
+# Extract the directory in which this file resides:
+DIR = os.path.dirname(FILE)
+
+
+def gen(x, c, name):
+ """Generate fixture data and write to file.
+
+ # Arguments
+
+ * `x`: domain
+ * `c`: domain
+ * `name::str`: output filename
+
+ # Examples
+
+ ``` python
+ python> x = linspace(0, 1, 2001)
+ python> c = linspace(0.1, 1000, 2001)
+ python> gen(x, c, './data.json')
+ ```
+ """
+ y = bradford.cdf(x, c)
+
+ # Store data to be written to file as a dictionary:
+ data = {
+ "x": x.tolist(),
+ "c": c.tolist(),
+ "expected": y.tolist()
+ }
+
+ # Based on the script directory, create an output filepath:
+ filepath = os.path.join(DIR, name)
+
+ # Write the data to the output filepath as JSON:
+ with open(filepath, "w", encoding="utf-8") as outfile:
+ json.dump(data, outfile)
+
+
+def main():
+ """Generate fixture data."""
+ x = np.linspace(0, 1, 1000)
+
+ # Small shape parameter:
+ c = np.linspace(0.1, 1, 1000)
+ gen(x, c, "small_c.json")
+
+ # Medium shape parameter:
+ c = np.linspace(1, 10, 1000)
+ gen(x, c, "medium_c.json")
+
+ # Large shape parameter:
+ c = np.linspace(10, 100, 1000)
+ gen(x, c, "large_c.json")
+
+
+if __name__ == "__main__":
+ main()
diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/test/fixtures/python/small_c.json b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/test/fixtures/python/small_c.json
new file mode 100644
index 000000000000..999ced99849d
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/test/fixtures/python/small_c.json
@@ -0,0 +1 @@
+{"x": [0.0, 0.001001001001001001, 0.002002002002002002, 0.003003003003003003, 0.004004004004004004, 0.005005005005005005, 0.006006006006006006, 0.007007007007007007, 0.008008008008008008, 0.009009009009009009, 0.01001001001001001, 0.011011011011011011, 0.012012012012012012, 0.013013013013013013, 0.014014014014014014, 0.015015015015015015, 0.016016016016016016, 0.017017017017017015, 0.018018018018018018, 0.01901901901901902, 0.02002002002002002, 0.02102102102102102, 0.022022022022022022, 0.023023023023023025, 0.024024024024024024, 0.025025025025025023, 0.026026026026026026, 0.02702702702702703, 0.028028028028028028, 0.029029029029029027, 0.03003003003003003, 0.031031031031031032, 0.03203203203203203, 0.03303303303303303, 0.03403403403403403, 0.035035035035035036, 0.036036036036036036, 0.037037037037037035, 0.03803803803803804, 0.03903903903903904, 0.04004004004004004, 0.04104104104104104, 0.04204204204204204, 0.043043043043043044, 0.044044044044044044, 0.04504504504504504, 0.04604604604604605, 0.04704704704704705, 0.04804804804804805, 0.04904904904904905, 0.050050050050050046, 0.05105105105105105, 0.05205205205205205, 0.05305305305305305, 0.05405405405405406, 0.055055055055055056, 0.056056056056056056, 0.057057057057057055, 0.058058058058058054, 0.05905905905905906, 0.06006006006006006, 0.06106106106106106, 0.062062062062062065, 0.06306306306306306, 0.06406406406406406, 0.06506506506506507, 0.06606606606606606, 0.06706706706706707, 0.06806806806806806, 0.06906906906906907, 0.07007007007007007, 0.07107107107107107, 0.07207207207207207, 0.07307307307307308, 0.07407407407407407, 0.07507507507507508, 0.07607607607607608, 0.07707707707707707, 0.07807807807807808, 0.07907907907907907, 0.08008008008008008, 0.08108108108108109, 0.08208208208208208, 0.08308308308308308, 0.08408408408408408, 0.08508508508508508, 0.08608608608608609, 0.08708708708708708, 0.08808808808808809, 0.0890890890890891, 0.09009009009009009, 0.09109109109109109, 0.0920920920920921, 0.09309309309309309, 0.0940940940940941, 0.09509509509509509, 0.0960960960960961, 0.0970970970970971, 0.0980980980980981, 0.0990990990990991, 0.10010010010010009, 0.1011011011011011, 0.1021021021021021, 0.1031031031031031, 0.1041041041041041, 0.10510510510510511, 0.1061061061061061, 0.10710710710710711, 0.10810810810810811, 0.1091091091091091, 0.11011011011011011, 0.1111111111111111, 0.11211211211211211, 0.11311311311311312, 0.11411411411411411, 0.11511511511511512, 0.11611611611611611, 0.11711711711711711, 0.11811811811811812, 0.11911911911911911, 0.12012012012012012, 0.12112112112112113, 0.12212212212212212, 0.12312312312312312, 0.12412412412412413, 0.12512512512512514, 0.12612612612612611, 0.12712712712712712, 0.12812812812812813, 0.12912912912912913, 0.13013013013013014, 0.13113113113113112, 0.13213213213213212, 0.13313313313313313, 0.13413413413413414, 0.13513513513513514, 0.13613613613613612, 0.13713713713713713, 0.13813813813813813, 0.13913913913913914, 0.14014014014014015, 0.14114114114114115, 0.14214214214214213, 0.14314314314314314, 0.14414414414414414, 0.14514514514514515, 0.14614614614614616, 0.14714714714714713, 0.14814814814814814, 0.14914914914914915, 0.15015015015015015, 0.15115115115115116, 0.15215215215215216, 0.15315315315315314, 0.15415415415415415, 0.15515515515515516, 0.15615615615615616, 0.15715715715715717, 0.15815815815815815, 0.15915915915915915, 0.16016016016016016, 0.16116116116116116, 0.16216216216216217, 0.16316316316316315, 0.16416416416416416, 0.16516516516516516, 0.16616616616616617, 0.16716716716716717, 0.16816816816816815, 0.16916916916916916, 0.17017017017017017, 0.17117117117117117, 0.17217217217217218, 0.17317317317317318, 0.17417417417417416, 0.17517517517517517, 0.17617617617617617, 0.17717717717717718, 0.1781781781781782, 0.17917917917917917, 0.18018018018018017, 0.18118118118118118, 0.18218218218218218, 0.1831831831831832, 0.1841841841841842, 0.18518518518518517, 0.18618618618618618, 0.1871871871871872, 0.1881881881881882, 0.1891891891891892, 0.19019019019019018, 0.19119119119119118, 0.1921921921921922, 0.1931931931931932, 0.1941941941941942, 0.19519519519519518, 0.1961961961961962, 0.1971971971971972, 0.1981981981981982, 0.1991991991991992, 0.20020020020020018, 0.2012012012012012, 0.2022022022022022, 0.2032032032032032, 0.2042042042042042, 0.20520520520520522, 0.2062062062062062, 0.2072072072072072, 0.2082082082082082, 0.2092092092092092, 0.21021021021021022, 0.2112112112112112, 0.2122122122122122, 0.2132132132132132, 0.21421421421421422, 0.21521521521521522, 0.21621621621621623, 0.2172172172172172, 0.2182182182182182, 0.21921921921921922, 0.22022022022022023, 0.22122122122122123, 0.2222222222222222, 0.22322322322322322, 0.22422422422422422, 0.22522522522522523, 0.22622622622622623, 0.2272272272272272, 0.22822822822822822, 0.22922922922922923, 0.23023023023023023, 0.23123123123123124, 0.23223223223223222, 0.23323323323323322, 0.23423423423423423, 0.23523523523523523, 0.23623623623623624, 0.23723723723723725, 0.23823823823823823, 0.23923923923923923, 0.24024024024024024, 0.24124124124124124, 0.24224224224224225, 0.24324324324324323, 0.24424424424424424, 0.24524524524524524, 0.24624624624624625, 0.24724724724724725, 0.24824824824824826, 0.24924924924924924, 0.2502502502502503, 0.25125125125125125, 0.25225225225225223, 0.25325325325325326, 0.25425425425425424, 0.2552552552552553, 0.25625625625625625, 0.25725725725725723, 0.25825825825825827, 0.25925925925925924, 0.2602602602602603, 0.26126126126126126, 0.26226226226226224, 0.26326326326326327, 0.26426426426426425, 0.2652652652652653, 0.26626626626626626, 0.26726726726726724, 0.2682682682682683, 0.26926926926926925, 0.2702702702702703, 0.27127127127127126, 0.27227227227227224, 0.2732732732732733, 0.27427427427427425, 0.2752752752752753, 0.27627627627627627, 0.2772772772772773, 0.2782782782782783, 0.27927927927927926, 0.2802802802802803, 0.28128128128128127, 0.2822822822822823, 0.2832832832832833, 0.28428428428428426, 0.2852852852852853, 0.2862862862862863, 0.2872872872872873, 0.2882882882882883, 0.28928928928928926, 0.2902902902902903, 0.2912912912912913, 0.2922922922922923, 0.2932932932932933, 0.29429429429429427, 0.2952952952952953, 0.2962962962962963, 0.2972972972972973, 0.2982982982982983, 0.29929929929929927, 0.3003003003003003, 0.3013013013013013, 0.3023023023023023, 0.3033033033033033, 0.30430430430430433, 0.3053053053053053, 0.3063063063063063, 0.3073073073073073, 0.3083083083083083, 0.30930930930930933, 0.3103103103103103, 0.3113113113113113, 0.3123123123123123, 0.3133133133133133, 0.31431431431431434, 0.3153153153153153, 0.3163163163163163, 0.3173173173173173, 0.3183183183183183, 0.31931931931931934, 0.3203203203203203, 0.3213213213213213, 0.32232232232232233, 0.3233233233233233, 0.32432432432432434, 0.3253253253253253, 0.3263263263263263, 0.32732732732732733, 0.3283283283283283, 0.32932932932932935, 0.3303303303303303, 0.3313313313313313, 0.33233233233233234, 0.3333333333333333, 0.33433433433433435, 0.3353353353353353, 0.3363363363363363, 0.33733733733733734, 0.3383383383383383, 0.33933933933933935, 0.34034034034034033, 0.34134134134134136, 0.34234234234234234, 0.3433433433433433, 0.34434434434434436, 0.34534534534534533, 0.34634634634634637, 0.34734734734734735, 0.3483483483483483, 0.34934934934934936, 0.35035035035035034, 0.35135135135135137, 0.35235235235235235, 0.3533533533533533, 0.35435435435435436, 0.35535535535535534, 0.3563563563563564, 0.35735735735735735, 0.35835835835835833, 0.35935935935935936, 0.36036036036036034, 0.3613613613613614, 0.36236236236236236, 0.36336336336336333, 0.36436436436436437, 0.36536536536536535, 0.3663663663663664, 0.36736736736736736, 0.3683683683683684, 0.36936936936936937, 0.37037037037037035, 0.3713713713713714, 0.37237237237237236, 0.3733733733733734, 0.3743743743743744, 0.37537537537537535, 0.3763763763763764, 0.37737737737737737, 0.3783783783783784, 0.3793793793793794, 0.38038038038038036, 0.3813813813813814, 0.38238238238238237, 0.3833833833833834, 0.3843843843843844, 0.38538538538538536, 0.3863863863863864, 0.38738738738738737, 0.3883883883883884, 0.3893893893893894, 0.39039039039039036, 0.3913913913913914, 0.3923923923923924, 0.3933933933933934, 0.3943943943943944, 0.39539539539539537, 0.3963963963963964, 0.3973973973973974, 0.3983983983983984, 0.3993993993993994, 0.40040040040040037, 0.4014014014014014, 0.4024024024024024, 0.4034034034034034, 0.4044044044044044, 0.40540540540540543, 0.4064064064064064, 0.4074074074074074, 0.4084084084084084, 0.4094094094094094, 0.41041041041041043, 0.4114114114114114, 0.4124124124124124, 0.4134134134134134, 0.4144144144144144, 0.41541541541541543, 0.4164164164164164, 0.4174174174174174, 0.4184184184184184, 0.4194194194194194, 0.42042042042042044, 0.4214214214214214, 0.4224224224224224, 0.42342342342342343, 0.4244244244244244, 0.42542542542542544, 0.4264264264264264, 0.4274274274274274, 0.42842842842842843, 0.4294294294294294, 0.43043043043043044, 0.4314314314314314, 0.43243243243243246, 0.43343343343343343, 0.4344344344344344, 0.43543543543543545, 0.4364364364364364, 0.43743743743743746, 0.43843843843843844, 0.4394394394394394, 0.44044044044044045, 0.44144144144144143, 0.44244244244244246, 0.44344344344344344, 0.4444444444444444, 0.44544544544544545, 0.44644644644644643, 0.44744744744744747, 0.44844844844844844, 0.4494494494494494, 0.45045045045045046, 0.45145145145145144, 0.45245245245245247, 0.45345345345345345, 0.4544544544544544, 0.45545545545545546, 0.45645645645645644, 0.4574574574574575, 0.45845845845845845, 0.45945945945945943, 0.46046046046046046, 0.46146146146146144, 0.4624624624624625, 0.46346346346346345, 0.46446446446446443, 0.46546546546546547, 0.46646646646646645, 0.4674674674674675, 0.46846846846846846, 0.4694694694694695, 0.47047047047047047, 0.47147147147147145, 0.4724724724724725, 0.47347347347347346, 0.4744744744744745, 0.4754754754754755, 0.47647647647647645, 0.4774774774774775, 0.47847847847847846, 0.4794794794794795, 0.4804804804804805, 0.48148148148148145, 0.4824824824824825, 0.48348348348348347, 0.4844844844844845, 0.4854854854854855, 0.48648648648648646, 0.4874874874874875, 0.48848848848848847, 0.4894894894894895, 0.4904904904904905, 0.49149149149149146, 0.4924924924924925, 0.4934934934934935, 0.4944944944944945, 0.4954954954954955, 0.4964964964964965, 0.4974974974974975, 0.4984984984984985, 0.4994994994994995, 0.5005005005005005, 0.5015015015015015, 0.5025025025025025, 0.5035035035035035, 0.5045045045045045, 0.5055055055055055, 0.5065065065065065, 0.5075075075075075, 0.5085085085085085, 0.5095095095095095, 0.5105105105105106, 0.5115115115115115, 0.5125125125125125, 0.5135135135135135, 0.5145145145145145, 0.5155155155155156, 0.5165165165165165, 0.5175175175175175, 0.5185185185185185, 0.5195195195195195, 0.5205205205205206, 0.5215215215215215, 0.5225225225225225, 0.5235235235235235, 0.5245245245245245, 0.5255255255255256, 0.5265265265265265, 0.5275275275275275, 0.5285285285285285, 0.5295295295295295, 0.5305305305305306, 0.5315315315315315, 0.5325325325325325, 0.5335335335335335, 0.5345345345345345, 0.5355355355355356, 0.5365365365365365, 0.5375375375375375, 0.5385385385385385, 0.5395395395395395, 0.5405405405405406, 0.5415415415415415, 0.5425425425425425, 0.5435435435435435, 0.5445445445445445, 0.5455455455455456, 0.5465465465465466, 0.5475475475475475, 0.5485485485485485, 0.5495495495495496, 0.5505505505505506, 0.5515515515515516, 0.5525525525525525, 0.5535535535535535, 0.5545545545545546, 0.5555555555555556, 0.5565565565565566, 0.5575575575575575, 0.5585585585585585, 0.5595595595595596, 0.5605605605605606, 0.5615615615615616, 0.5625625625625625, 0.5635635635635635, 0.5645645645645646, 0.5655655655655656, 0.5665665665665666, 0.5675675675675675, 0.5685685685685685, 0.5695695695695696, 0.5705705705705706, 0.5715715715715716, 0.5725725725725725, 0.5735735735735735, 0.5745745745745746, 0.5755755755755756, 0.5765765765765766, 0.5775775775775776, 0.5785785785785785, 0.5795795795795796, 0.5805805805805806, 0.5815815815815816, 0.5825825825825826, 0.5835835835835835, 0.5845845845845846, 0.5855855855855856, 0.5865865865865866, 0.5875875875875876, 0.5885885885885885, 0.5895895895895896, 0.5905905905905906, 0.5915915915915916, 0.5925925925925926, 0.5935935935935935, 0.5945945945945946, 0.5955955955955956, 0.5965965965965966, 0.5975975975975976, 0.5985985985985985, 0.5995995995995996, 0.6006006006006006, 0.6016016016016016, 0.6026026026026026, 0.6036036036036035, 0.6046046046046046, 0.6056056056056056, 0.6066066066066066, 0.6076076076076076, 0.6086086086086087, 0.6096096096096096, 0.6106106106106106, 0.6116116116116116, 0.6126126126126126, 0.6136136136136137, 0.6146146146146146, 0.6156156156156156, 0.6166166166166166, 0.6176176176176176, 0.6186186186186187, 0.6196196196196196, 0.6206206206206206, 0.6216216216216216, 0.6226226226226226, 0.6236236236236237, 0.6246246246246246, 0.6256256256256256, 0.6266266266266266, 0.6276276276276276, 0.6286286286286287, 0.6296296296296297, 0.6306306306306306, 0.6316316316316316, 0.6326326326326326, 0.6336336336336337, 0.6346346346346347, 0.6356356356356356, 0.6366366366366366, 0.6376376376376376, 0.6386386386386387, 0.6396396396396397, 0.6406406406406406, 0.6416416416416416, 0.6426426426426426, 0.6436436436436437, 0.6446446446446447, 0.6456456456456456, 0.6466466466466466, 0.6476476476476476, 0.6486486486486487, 0.6496496496496497, 0.6506506506506506, 0.6516516516516516, 0.6526526526526526, 0.6536536536536537, 0.6546546546546547, 0.6556556556556556, 0.6566566566566566, 0.6576576576576576, 0.6586586586586587, 0.6596596596596597, 0.6606606606606606, 0.6616616616616616, 0.6626626626626626, 0.6636636636636637, 0.6646646646646647, 0.6656656656656657, 0.6666666666666666, 0.6676676676676676, 0.6686686686686687, 0.6696696696696697, 0.6706706706706707, 0.6716716716716716, 0.6726726726726726, 0.6736736736736737, 0.6746746746746747, 0.6756756756756757, 0.6766766766766766, 0.6776776776776777, 0.6786786786786787, 0.6796796796796797, 0.6806806806806807, 0.6816816816816816, 0.6826826826826827, 0.6836836836836837, 0.6846846846846847, 0.6856856856856857, 0.6866866866866866, 0.6876876876876877, 0.6886886886886887, 0.6896896896896897, 0.6906906906906907, 0.6916916916916916, 0.6926926926926927, 0.6936936936936937, 0.6946946946946947, 0.6956956956956957, 0.6966966966966966, 0.6976976976976977, 0.6986986986986987, 0.6996996996996997, 0.7007007007007007, 0.7017017017017017, 0.7027027027027027, 0.7037037037037037, 0.7047047047047047, 0.7057057057057057, 0.7067067067067067, 0.7077077077077077, 0.7087087087087087, 0.7097097097097097, 0.7107107107107107, 0.7117117117117117, 0.7127127127127127, 0.7137137137137137, 0.7147147147147147, 0.7157157157157157, 0.7167167167167167, 0.7177177177177178, 0.7187187187187187, 0.7197197197197197, 0.7207207207207207, 0.7217217217217217, 0.7227227227227228, 0.7237237237237237, 0.7247247247247247, 0.7257257257257257, 0.7267267267267267, 0.7277277277277278, 0.7287287287287287, 0.7297297297297297, 0.7307307307307307, 0.7317317317317317, 0.7327327327327328, 0.7337337337337337, 0.7347347347347347, 0.7357357357357357, 0.7367367367367368, 0.7377377377377378, 0.7387387387387387, 0.7397397397397397, 0.7407407407407407, 0.7417417417417418, 0.7427427427427428, 0.7437437437437437, 0.7447447447447447, 0.7457457457457457, 0.7467467467467468, 0.7477477477477478, 0.7487487487487487, 0.7497497497497497, 0.7507507507507507, 0.7517517517517518, 0.7527527527527528, 0.7537537537537538, 0.7547547547547547, 0.7557557557557557, 0.7567567567567568, 0.7577577577577578, 0.7587587587587588, 0.7597597597597597, 0.7607607607607607, 0.7617617617617618, 0.7627627627627628, 0.7637637637637638, 0.7647647647647647, 0.7657657657657657, 0.7667667667667668, 0.7677677677677678, 0.7687687687687688, 0.7697697697697697, 0.7707707707707707, 0.7717717717717718, 0.7727727727727728, 0.7737737737737738, 0.7747747747747747, 0.7757757757757757, 0.7767767767767768, 0.7777777777777778, 0.7787787787787788, 0.7797797797797797, 0.7807807807807807, 0.7817817817817818, 0.7827827827827828, 0.7837837837837838, 0.7847847847847848, 0.7857857857857857, 0.7867867867867868, 0.7877877877877878, 0.7887887887887888, 0.7897897897897898, 0.7907907907907907, 0.7917917917917918, 0.7927927927927928, 0.7937937937937938, 0.7947947947947948, 0.7957957957957957, 0.7967967967967968, 0.7977977977977978, 0.7987987987987988, 0.7997997997997998, 0.8008008008008007, 0.8018018018018018, 0.8028028028028028, 0.8038038038038038, 0.8048048048048048, 0.8058058058058059, 0.8068068068068068, 0.8078078078078078, 0.8088088088088088, 0.8098098098098098, 0.8108108108108109, 0.8118118118118118, 0.8128128128128128, 0.8138138138138138, 0.8148148148148148, 0.8158158158158159, 0.8168168168168168, 0.8178178178178178, 0.8188188188188188, 0.8198198198198198, 0.8208208208208209, 0.8218218218218218, 0.8228228228228228, 0.8238238238238238, 0.8248248248248248, 0.8258258258258259, 0.8268268268268268, 0.8278278278278278, 0.8288288288288288, 0.8298298298298298, 0.8308308308308309, 0.8318318318318318, 0.8328328328328328, 0.8338338338338338, 0.8348348348348348, 0.8358358358358359, 0.8368368368368369, 0.8378378378378378, 0.8388388388388388, 0.8398398398398398, 0.8408408408408409, 0.8418418418418419, 0.8428428428428428, 0.8438438438438438, 0.8448448448448448, 0.8458458458458459, 0.8468468468468469, 0.8478478478478478, 0.8488488488488488, 0.8498498498498498, 0.8508508508508509, 0.8518518518518519, 0.8528528528528528, 0.8538538538538538, 0.8548548548548548, 0.8558558558558559, 0.8568568568568569, 0.8578578578578578, 0.8588588588588588, 0.8598598598598598, 0.8608608608608609, 0.8618618618618619, 0.8628628628628628, 0.8638638638638638, 0.8648648648648649, 0.8658658658658659, 0.8668668668668669, 0.8678678678678678, 0.8688688688688688, 0.8698698698698699, 0.8708708708708709, 0.8718718718718719, 0.8728728728728729, 0.8738738738738738, 0.8748748748748749, 0.8758758758758759, 0.8768768768768769, 0.8778778778778779, 0.8788788788788788, 0.8798798798798799, 0.8808808808808809, 0.8818818818818819, 0.8828828828828829, 0.8838838838838838, 0.8848848848848849, 0.8858858858858859, 0.8868868868868869, 0.8878878878878879, 0.8888888888888888, 0.8898898898898899, 0.8908908908908909, 0.8918918918918919, 0.8928928928928929, 0.8938938938938938, 0.8948948948948949, 0.8958958958958959, 0.8968968968968969, 0.8978978978978979, 0.8988988988988988, 0.8998998998998999, 0.9009009009009009, 0.9019019019019019, 0.9029029029029029, 0.9039039039039038, 0.9049049049049049, 0.9059059059059059, 0.9069069069069069, 0.9079079079079079, 0.9089089089089089, 0.9099099099099099, 0.9109109109109109, 0.9119119119119119, 0.9129129129129129, 0.9139139139139139, 0.914914914914915, 0.9159159159159159, 0.9169169169169169, 0.9179179179179179, 0.9189189189189189, 0.91991991991992, 0.9209209209209209, 0.9219219219219219, 0.9229229229229229, 0.9239239239239239, 0.924924924924925, 0.9259259259259259, 0.9269269269269269, 0.9279279279279279, 0.9289289289289289, 0.92992992992993, 0.9309309309309309, 0.9319319319319319, 0.9329329329329329, 0.933933933933934, 0.934934934934935, 0.9359359359359359, 0.9369369369369369, 0.9379379379379379, 0.938938938938939, 0.93993993993994, 0.9409409409409409, 0.9419419419419419, 0.9429429429429429, 0.943943943943944, 0.944944944944945, 0.9459459459459459, 0.9469469469469469, 0.9479479479479479, 0.948948948948949, 0.94994994994995, 0.950950950950951, 0.9519519519519519, 0.9529529529529529, 0.953953953953954, 0.954954954954955, 0.955955955955956, 0.9569569569569569, 0.9579579579579579, 0.958958958958959, 0.95995995995996, 0.960960960960961, 0.9619619619619619, 0.9629629629629629, 0.963963963963964, 0.964964964964965, 0.965965965965966, 0.9669669669669669, 0.9679679679679679, 0.968968968968969, 0.96996996996997, 0.970970970970971, 0.9719719719719719, 0.9729729729729729, 0.973973973973974, 0.974974974974975, 0.975975975975976, 0.9769769769769769, 0.9779779779779779, 0.978978978978979, 0.97997997997998, 0.980980980980981, 0.9819819819819819, 0.9829829829829829, 0.983983983983984, 0.984984984984985, 0.985985985985986, 0.986986986986987, 0.9879879879879879, 0.988988988988989, 0.98998998998999, 0.990990990990991, 0.991991991991992, 0.992992992992993, 0.993993993993994, 0.994994994994995, 0.995995995995996, 0.996996996996997, 0.997997997997998, 0.998998998998999, 1.0], "c": [0.1, 0.10090090090090091, 0.1018018018018018, 0.10270270270270271, 0.10360360360360361, 0.1045045045045045, 0.10540540540540541, 0.10630630630630632, 0.10720720720720721, 0.10810810810810811, 0.10900900900900902, 0.10990990990990991, 0.11081081081081082, 0.11171171171171172, 0.11261261261261261, 0.11351351351351352, 0.11441441441441443, 0.11531531531531532, 0.11621621621621622, 0.11711711711711711, 0.11801801801801802, 0.11891891891891893, 0.11981981981981982, 0.12072072072072072, 0.12162162162162163, 0.12252252252252252, 0.12342342342342343, 0.12432432432432433, 0.12522522522522522, 0.12612612612612614, 0.12702702702702703, 0.12792792792792793, 0.12882882882882885, 0.12972972972972974, 0.13063063063063063, 0.13153153153153152, 0.13243243243243244, 0.13333333333333333, 0.13423423423423425, 0.13513513513513514, 0.13603603603603603, 0.13693693693693693, 0.13783783783783785, 0.13873873873873874, 0.13963963963963966, 0.14054054054054055, 0.14144144144144144, 0.14234234234234233, 0.14324324324324325, 0.14414414414414414, 0.14504504504504506, 0.14594594594594595, 0.14684684684684685, 0.14774774774774774, 0.14864864864864866, 0.14954954954954955, 0.15045045045045047, 0.15135135135135136, 0.15225225225225225, 0.15315315315315314, 0.15405405405405406, 0.15495495495495495, 0.15585585585585587, 0.15675675675675677, 0.15765765765765766, 0.15855855855855855, 0.15945945945945947, 0.16036036036036036, 0.16126126126126128, 0.16216216216216217, 0.16306306306306306, 0.16396396396396395, 0.16486486486486487, 0.16576576576576577, 0.16666666666666669, 0.16756756756756758, 0.16846846846846847, 0.16936936936936936, 0.17027027027027028, 0.17117117117117117, 0.1720720720720721, 0.17297297297297298, 0.17387387387387387, 0.17477477477477477, 0.17567567567567569, 0.17657657657657658, 0.1774774774774775, 0.1783783783783784, 0.17927927927927928, 0.18018018018018017, 0.1810810810810811, 0.18198198198198198, 0.1828828828828829, 0.1837837837837838, 0.18468468468468469, 0.18558558558558558, 0.1864864864864865, 0.1873873873873874, 0.1882882882882883, 0.1891891891891892, 0.1900900900900901, 0.19099099099099098, 0.1918918918918919, 0.1927927927927928, 0.1936936936936937, 0.1945945945945946, 0.1954954954954955, 0.1963963963963964, 0.1972972972972973, 0.1981981981981982, 0.19909909909909912, 0.2, 0.2009009009009009, 0.2018018018018018, 0.20270270270270271, 0.2036036036036036, 0.20450450450450453, 0.20540540540540542, 0.2063063063063063, 0.2072072072072072, 0.20810810810810812, 0.209009009009009, 0.20990990990990993, 0.21081081081081082, 0.21171171171171171, 0.2126126126126126, 0.21351351351351353, 0.21441441441441442, 0.21531531531531534, 0.21621621621621623, 0.21711711711711712, 0.218018018018018, 0.21891891891891893, 0.21981981981981982, 0.22072072072072074, 0.22162162162162163, 0.22252252252252253, 0.22342342342342342, 0.22432432432432434, 0.22522522522522523, 0.22612612612612612, 0.22702702702702704, 0.22792792792792793, 0.22882882882882882, 0.22972972972972974, 0.23063063063063063, 0.23153153153153153, 0.23243243243243245, 0.23333333333333334, 0.23423423423423423, 0.23513513513513515, 0.23603603603603604, 0.23693693693693693, 0.23783783783783785, 0.23873873873873874, 0.23963963963963963, 0.24054054054054055, 0.24144144144144145, 0.24234234234234234, 0.24324324324324326, 0.24414414414414415, 0.24504504504504504, 0.24594594594594596, 0.24684684684684685, 0.24774774774774774, 0.24864864864864866, 0.24954954954954955, 0.25045045045045045, 0.25135135135135134, 0.25225225225225223, 0.2531531531531531, 0.25405405405405407, 0.25495495495495496, 0.25585585585585585, 0.2567567567567568, 0.2576576576576577, 0.2585585585585586, 0.2594594594594595, 0.26036036036036037, 0.26126126126126126, 0.26216216216216215, 0.26306306306306304, 0.26396396396396393, 0.2648648648648649, 0.26576576576576577, 0.26666666666666666, 0.2675675675675676, 0.2684684684684685, 0.2693693693693694, 0.2702702702702703, 0.2711711711711712, 0.27207207207207207, 0.27297297297297296, 0.27387387387387385, 0.27477477477477474, 0.2756756756756757, 0.2765765765765766, 0.2774774774774775, 0.2783783783783784, 0.2792792792792793, 0.2801801801801802, 0.2810810810810811, 0.281981981981982, 0.2828828828828829, 0.28378378378378377, 0.28468468468468466, 0.28558558558558556, 0.2864864864864865, 0.2873873873873874, 0.2882882882882883, 0.28918918918918923, 0.2900900900900901, 0.290990990990991, 0.2918918918918919, 0.2927927927927928, 0.2936936936936937, 0.2945945945945946, 0.2954954954954955, 0.29639639639639637, 0.2972972972972973, 0.2981981981981982, 0.2990990990990991, 0.30000000000000004, 0.30090090090090094, 0.30180180180180183, 0.3027027027027027, 0.3036036036036036, 0.3045045045045045, 0.3054054054054054, 0.3063063063063063, 0.3072072072072072, 0.3081081081081081, 0.309009009009009, 0.3099099099099099, 0.31081081081081086, 0.31171171171171175, 0.31261261261261264, 0.31351351351351353, 0.3144144144144144, 0.3153153153153153, 0.3162162162162162, 0.3171171171171171, 0.318018018018018, 0.31891891891891894, 0.31981981981981983, 0.3207207207207207, 0.32162162162162167, 0.32252252252252256, 0.32342342342342345, 0.32432432432432434, 0.32522522522522523, 0.3261261261261261, 0.327027027027027, 0.3279279279279279, 0.3288288288288288, 0.32972972972972975, 0.33063063063063064, 0.33153153153153153, 0.3324324324324325, 0.33333333333333337, 0.33423423423423426, 0.33513513513513515, 0.33603603603603605, 0.33693693693693694, 0.33783783783783783, 0.3387387387387387, 0.3396396396396396, 0.34054054054054056, 0.34144144144144145, 0.34234234234234234, 0.3432432432432433, 0.3441441441441442, 0.3450450450450451, 0.34594594594594597, 0.34684684684684686, 0.34774774774774775, 0.34864864864864864, 0.34954954954954953, 0.3504504504504504, 0.3513513513513513, 0.3522522522522522, 0.3531531531531532, 0.3540540540540541, 0.354954954954955, 0.3558558558558559, 0.3567567567567568, 0.35765765765765767, 0.35855855855855856, 0.35945945945945945, 0.36036036036036034, 0.36126126126126124, 0.3621621621621621, 0.363063063063063, 0.363963963963964, 0.3648648648648649, 0.3657657657657658, 0.3666666666666667, 0.3675675675675676, 0.3684684684684685, 0.36936936936936937, 0.37027027027027026, 0.37117117117117115, 0.37207207207207205, 0.37297297297297294, 0.37387387387387383, 0.37477477477477483, 0.3756756756756757, 0.3765765765765766, 0.3774774774774775, 0.3783783783783784, 0.3792792792792793, 0.3801801801801802, 0.3810810810810811, 0.38198198198198197, 0.38288288288288286, 0.38378378378378375, 0.38468468468468464, 0.38558558558558564, 0.38648648648648654, 0.3873873873873874, 0.3882882882882883, 0.3891891891891892, 0.3900900900900901, 0.390990990990991, 0.3918918918918919, 0.3927927927927928, 0.39369369369369367, 0.39459459459459456, 0.39549549549549545, 0.39639639639639646, 0.39729729729729735, 0.39819819819819824, 0.39909909909909913, 0.4, 0.4009009009009009, 0.4018018018018018, 0.4027027027027027, 0.4036036036036036, 0.4045045045045045, 0.4054054054054054, 0.40630630630630626, 0.40720720720720727, 0.40810810810810816, 0.40900900900900905, 0.40990990990990994, 0.41081081081081083, 0.4117117117117117, 0.4126126126126126, 0.4135135135135135, 0.4144144144144144, 0.4153153153153153, 0.4162162162162162, 0.4171171171171171, 0.4180180180180181, 0.41891891891891897, 0.41981981981981986, 0.42072072072072075, 0.42162162162162165, 0.42252252252252254, 0.42342342342342343, 0.4243243243243243, 0.4252252252252252, 0.4261261261261261, 0.427027027027027, 0.4279279279279279, 0.4288288288288289, 0.4297297297297298, 0.4306306306306307, 0.43153153153153156, 0.43243243243243246, 0.43333333333333335, 0.43423423423423424, 0.43513513513513513, 0.436036036036036, 0.4369369369369369, 0.4378378378378378, 0.4387387387387387, 0.4396396396396397, 0.4405405405405406, 0.4414414414414415, 0.4423423423423424, 0.44324324324324327, 0.44414414414414416, 0.44504504504504505, 0.44594594594594594, 0.44684684684684683, 0.4477477477477477, 0.4486486486486486, 0.4495495495495495, 0.4504504504504505, 0.4513513513513514, 0.4522522522522523, 0.4531531531531532, 0.4540540540540541, 0.45495495495495497, 0.45585585585585586, 0.45675675675675675, 0.45765765765765765, 0.45855855855855854, 0.45945945945945943, 0.4603603603603603, 0.4612612612612613, 0.4621621621621622, 0.4630630630630631, 0.463963963963964, 0.4648648648648649, 0.4657657657657658, 0.4666666666666667, 0.46756756756756757, 0.46846846846846846, 0.46936936936936935, 0.47027027027027024, 0.47117117117117113, 0.47207207207207214, 0.472972972972973, 0.4738738738738739, 0.4747747747747748, 0.4756756756756757, 0.4765765765765766, 0.4774774774774775, 0.4783783783783784, 0.47927927927927927, 0.48018018018018016, 0.48108108108108105, 0.48198198198198194, 0.48288288288288295, 0.48378378378378384, 0.48468468468468473, 0.4855855855855856, 0.4864864864864865, 0.4873873873873874, 0.4882882882882883, 0.4891891891891892, 0.4900900900900901, 0.49099099099099097, 0.49189189189189186, 0.49279279279279276, 0.49369369369369376, 0.49459459459459465, 0.49549549549549554, 0.49639639639639643, 0.4972972972972973, 0.4981981981981982, 0.4990990990990991, 0.5, 0.5009009009009009, 0.5018018018018018, 0.5027027027027027, 0.5036036036036036, 0.5045045045045046, 0.5054054054054055, 0.5063063063063064, 0.5072072072072072, 0.5081081081081081, 0.509009009009009, 0.5099099099099099, 0.5108108108108108, 0.5117117117117117, 0.5126126126126126, 0.5135135135135135, 0.5144144144144144, 0.5153153153153154, 0.5162162162162163, 0.5171171171171172, 0.5180180180180181, 0.518918918918919, 0.5198198198198198, 0.5207207207207207, 0.5216216216216216, 0.5225225225225225, 0.5234234234234234, 0.5243243243243243, 0.5252252252252252, 0.5261261261261262, 0.5270270270270271, 0.527927927927928, 0.5288288288288289, 0.5297297297297298, 0.5306306306306307, 0.5315315315315315, 0.5324324324324324, 0.5333333333333333, 0.5342342342342342, 0.5351351351351351, 0.536036036036036, 0.536936936936937, 0.5378378378378379, 0.5387387387387388, 0.5396396396396397, 0.5405405405405406, 0.5414414414414415, 0.5423423423423424, 0.5432432432432432, 0.5441441441441441, 0.545045045045045, 0.5459459459459459, 0.5468468468468468, 0.5477477477477478, 0.5486486486486487, 0.5495495495495496, 0.5504504504504505, 0.5513513513513514, 0.5522522522522523, 0.5531531531531532, 0.5540540540540541, 0.554954954954955, 0.5558558558558558, 0.5567567567567567, 0.5576576576576576, 0.5585585585585586, 0.5594594594594595, 0.5603603603603604, 0.5612612612612613, 0.5621621621621622, 0.5630630630630631, 0.563963963963964, 0.5648648648648649, 0.5657657657657658, 0.5666666666666667, 0.5675675675675675, 0.5684684684684684, 0.5693693693693693, 0.5702702702702703, 0.5711711711711712, 0.5720720720720721, 0.572972972972973, 0.5738738738738739, 0.5747747747747748, 0.5756756756756757, 0.5765765765765766, 0.5774774774774775, 0.5783783783783784, 0.5792792792792792, 0.5801801801801801, 0.5810810810810811, 0.581981981981982, 0.5828828828828829, 0.5837837837837838, 0.5846846846846847, 0.5855855855855856, 0.5864864864864865, 0.5873873873873874, 0.5882882882882883, 0.5891891891891892, 0.5900900900900901, 0.590990990990991, 0.591891891891892, 0.5927927927927928, 0.5936936936936937, 0.5945945945945946, 0.5954954954954955, 0.5963963963963964, 0.5972972972972973, 0.5981981981981982, 0.5990990990990991, 0.6, 0.6009009009009009, 0.6018018018018018, 0.6027027027027027, 0.6036036036036035, 0.6045045045045044, 0.6054054054054054, 0.6063063063063063, 0.6072072072072072, 0.6081081081081081, 0.609009009009009, 0.6099099099099099, 0.6108108108108108, 0.6117117117117117, 0.6126126126126126, 0.6135135135135135, 0.6144144144144144, 0.6153153153153152, 0.6162162162162163, 0.6171171171171171, 0.618018018018018, 0.6189189189189189, 0.6198198198198198, 0.6207207207207207, 0.6216216216216216, 0.6225225225225225, 0.6234234234234234, 0.6243243243243243, 0.6252252252252252, 0.6261261261261261, 0.6270270270270271, 0.627927927927928, 0.6288288288288288, 0.6297297297297297, 0.6306306306306306, 0.6315315315315315, 0.6324324324324324, 0.6333333333333333, 0.6342342342342342, 0.6351351351351351, 0.636036036036036, 0.6369369369369369, 0.6378378378378379, 0.6387387387387388, 0.6396396396396397, 0.6405405405405405, 0.6414414414414414, 0.6423423423423423, 0.6432432432432432, 0.6441441441441441, 0.645045045045045, 0.6459459459459459, 0.6468468468468468, 0.6477477477477477, 0.6486486486486487, 0.6495495495495496, 0.6504504504504505, 0.6513513513513514, 0.6522522522522523, 0.6531531531531531, 0.654054054054054, 0.6549549549549549, 0.6558558558558558, 0.6567567567567567, 0.6576576576576576, 0.6585585585585585, 0.6594594594594595, 0.6603603603603604, 0.6612612612612613, 0.6621621621621622, 0.6630630630630631, 0.663963963963964, 0.6648648648648648, 0.6657657657657657, 0.6666666666666666, 0.6675675675675675, 0.6684684684684684, 0.6693693693693693, 0.6702702702702703, 0.6711711711711712, 0.6720720720720721, 0.672972972972973, 0.6738738738738739, 0.6747747747747748, 0.6756756756756757, 0.6765765765765765, 0.6774774774774774, 0.6783783783783783, 0.6792792792792792, 0.6801801801801801, 0.6810810810810811, 0.681981981981982, 0.6828828828828829, 0.6837837837837838, 0.6846846846846847, 0.6855855855855856, 0.6864864864864865, 0.6873873873873874, 0.6882882882882883, 0.6891891891891891, 0.69009009009009, 0.6909909909909909, 0.6918918918918919, 0.6927927927927928, 0.6936936936936937, 0.6945945945945946, 0.6954954954954955, 0.6963963963963964, 0.6972972972972973, 0.6981981981981982, 0.6990990990990991, 0.7, 0.7009009009009008, 0.7018018018018017, 0.7027027027027027, 0.7036036036036036, 0.7045045045045045, 0.7054054054054054, 0.7063063063063063, 0.7072072072072072, 0.7081081081081081, 0.709009009009009, 0.7099099099099099, 0.7108108108108108, 0.7117117117117117, 0.7126126126126126, 0.7135135135135136, 0.7144144144144144, 0.7153153153153153, 0.7162162162162162, 0.7171171171171171, 0.718018018018018, 0.7189189189189189, 0.7198198198198198, 0.7207207207207207, 0.7216216216216216, 0.7225225225225225, 0.7234234234234234, 0.7243243243243244, 0.7252252252252253, 0.7261261261261261, 0.727027027027027, 0.7279279279279279, 0.7288288288288288, 0.7297297297297297, 0.7306306306306306, 0.7315315315315315, 0.7324324324324324, 0.7333333333333333, 0.7342342342342342, 0.7351351351351352, 0.7360360360360361, 0.736936936936937, 0.7378378378378379, 0.7387387387387387, 0.7396396396396396, 0.7405405405405405, 0.7414414414414414, 0.7423423423423423, 0.7432432432432432, 0.7441441441441441, 0.745045045045045, 0.745945945945946, 0.7468468468468469, 0.7477477477477478, 0.7486486486486487, 0.7495495495495496, 0.7504504504504504, 0.7513513513513513, 0.7522522522522522, 0.7531531531531531, 0.754054054054054, 0.7549549549549549, 0.7558558558558558, 0.7567567567567568, 0.7576576576576577, 0.7585585585585586, 0.7594594594594595, 0.7603603603603604, 0.7612612612612613, 0.7621621621621621, 0.763063063063063, 0.7639639639639639, 0.7648648648648648, 0.7657657657657657, 0.7666666666666666, 0.7675675675675676, 0.7684684684684685, 0.7693693693693694, 0.7702702702702703, 0.7711711711711712, 0.7720720720720721, 0.772972972972973, 0.7738738738738739, 0.7747747747747747, 0.7756756756756756, 0.7765765765765765, 0.7774774774774774, 0.7783783783783784, 0.7792792792792793, 0.7801801801801802, 0.7810810810810811, 0.781981981981982, 0.7828828828828829, 0.7837837837837838, 0.7846846846846847, 0.7855855855855856, 0.7864864864864864, 0.7873873873873873, 0.7882882882882882, 0.7891891891891892, 0.7900900900900901, 0.790990990990991, 0.7918918918918919, 0.7927927927927928, 0.7936936936936937, 0.7945945945945946, 0.7954954954954955, 0.7963963963963964, 0.7972972972972973, 0.7981981981981981, 0.799099099099099, 0.7999999999999999, 0.8009009009009009, 0.8018018018018018, 0.8027027027027027, 0.8036036036036036, 0.8045045045045045, 0.8054054054054054, 0.8063063063063063, 0.8072072072072072, 0.8081081081081081, 0.809009009009009, 0.8099099099099099, 0.8108108108108107, 0.8117117117117117, 0.8126126126126126, 0.8135135135135135, 0.8144144144144144, 0.8153153153153153, 0.8162162162162162, 0.8171171171171171, 0.818018018018018, 0.8189189189189189, 0.8198198198198198, 0.8207207207207207, 0.8216216216216216, 0.8225225225225226, 0.8234234234234235, 0.8243243243243243, 0.8252252252252252, 0.8261261261261261, 0.827027027027027, 0.8279279279279279, 0.8288288288288288, 0.8297297297297297, 0.8306306306306306, 0.8315315315315315, 0.8324324324324324, 0.8333333333333334, 0.8342342342342343, 0.8351351351351352, 0.836036036036036, 0.8369369369369369, 0.8378378378378378, 0.8387387387387387, 0.8396396396396396, 0.8405405405405405, 0.8414414414414414, 0.8423423423423423, 0.8432432432432432, 0.8441441441441442, 0.8450450450450451, 0.845945945945946, 0.8468468468468469, 0.8477477477477477, 0.8486486486486486, 0.8495495495495495, 0.8504504504504504, 0.8513513513513513, 0.8522522522522522, 0.8531531531531531, 0.854054054054054, 0.854954954954955, 0.8558558558558559, 0.8567567567567568, 0.8576576576576577, 0.8585585585585586, 0.8594594594594595, 0.8603603603603603, 0.8612612612612612, 0.8621621621621621, 0.863063063063063, 0.8639639639639639, 0.8648648648648648, 0.8657657657657658, 0.8666666666666667, 0.8675675675675676, 0.8684684684684685, 0.8693693693693694, 0.8702702702702703, 0.8711711711711712, 0.872072072072072, 0.8729729729729729, 0.8738738738738738, 0.8747747747747747, 0.8756756756756756, 0.8765765765765766, 0.8774774774774775, 0.8783783783783784, 0.8792792792792793, 0.8801801801801802, 0.8810810810810811, 0.881981981981982, 0.8828828828828829, 0.8837837837837837, 0.8846846846846846, 0.8855855855855855, 0.8864864864864864, 0.8873873873873874, 0.8882882882882883, 0.8891891891891892, 0.8900900900900901, 0.890990990990991, 0.8918918918918919, 0.8927927927927928, 0.8936936936936937, 0.8945945945945946, 0.8954954954954955, 0.8963963963963963, 0.8972972972972972, 0.8981981981981982, 0.8990990990990991, 0.9, 0.9009009009009009, 0.9018018018018018, 0.9027027027027027, 0.9036036036036036, 0.9045045045045045, 0.9054054054054054, 0.9063063063063063, 0.9072072072072072, 0.908108108108108, 0.909009009009009, 0.9099099099099099, 0.9108108108108108, 0.9117117117117117, 0.9126126126126126, 0.9135135135135135, 0.9144144144144144, 0.9153153153153153, 0.9162162162162162, 0.9171171171171171, 0.918018018018018, 0.9189189189189189, 0.9198198198198199, 0.9207207207207208, 0.9216216216216216, 0.9225225225225225, 0.9234234234234234, 0.9243243243243243, 0.9252252252252252, 0.9261261261261261, 0.927027027027027, 0.9279279279279279, 0.9288288288288288, 0.9297297297297297, 0.9306306306306307, 0.9315315315315316, 0.9324324324324325, 0.9333333333333333, 0.9342342342342342, 0.9351351351351351, 0.936036036036036, 0.9369369369369369, 0.9378378378378378, 0.9387387387387387, 0.9396396396396396, 0.9405405405405405, 0.9414414414414415, 0.9423423423423424, 0.9432432432432433, 0.9441441441441442, 0.945045045045045, 0.9459459459459459, 0.9468468468468468, 0.9477477477477477, 0.9486486486486486, 0.9495495495495495, 0.9504504504504504, 0.9513513513513513, 0.9522522522522523, 0.9531531531531532, 0.9540540540540541, 0.954954954954955, 0.9558558558558559, 0.9567567567567568, 0.9576576576576576, 0.9585585585585585, 0.9594594594594594, 0.9603603603603603, 0.9612612612612612, 0.9621621621621621, 0.9630630630630631, 0.963963963963964, 0.9648648648648649, 0.9657657657657658, 0.9666666666666667, 0.9675675675675676, 0.9684684684684685, 0.9693693693693693, 0.9702702702702702, 0.9711711711711711, 0.972072072072072, 0.9729729729729729, 0.9738738738738739, 0.9747747747747748, 0.9756756756756757, 0.9765765765765766, 0.9774774774774775, 0.9783783783783784, 0.9792792792792793, 0.9801801801801802, 0.981081081081081, 0.9819819819819819, 0.9828828828828828, 0.9837837837837837, 0.9846846846846847, 0.9855855855855856, 0.9864864864864865, 0.9873873873873874, 0.9882882882882883, 0.9891891891891892, 0.9900900900900901, 0.990990990990991, 0.9918918918918919, 0.9927927927927928, 0.9936936936936936, 0.9945945945945945, 0.9954954954954955, 0.9963963963963964, 0.9972972972972973, 0.9981981981981982, 0.9990990990990991, 1.0], "expected": [0.0, 0.001050639919872706, 0.002102045226055714, 0.003154212611079538, 0.004207138765013788, 0.005260820375505223, 0.006315254127815835, 0.007370436704860966, 0.00842636478724743, 0.009483035053311707, 0.010540444179158098, 0.011598588838696971, 0.01265746570368298, 0.01371707144375333, 0.014777402726466047, 0.0158384562173383, 0.01690022857988469, 0.01796271647565559, 0.01902591656427554, 0.020089825503481526, 0.02115443994916144, 0.022219756555392434, 0.023285771974479334, 0.02435248285699305, 0.025419885851808984, 0.02648797760614551, 0.02755675476560237, 0.02862621397419913, 0.02969635187441362, 0.030767165107220423, 0.03183865031212931, 0.03291080412722369, 0.03398362318919909, 0.035057104133401566, 0.03613124359386625, 0.03720603820335572, 0.03828148459339849, 0.03935757939432745, 0.0404343192353183, 0.041511700744427976, 0.0425897205486331, 0.043668375273868396, 0.04474766154506503, 0.0458275759861891, 0.04690811522027992, 0.0479892758694885, 0.049071054555115776, 0.05015344789765101, 0.051236452516810145, 0.05232006503157405, 0.05340428206022675, 0.05448910022039388, 0.05557451612908069, 0.05666052640271046, 0.05774712765716255, 0.05883431650781067, 0.05992208956956099, 0.06101044345689023, 0.06209937478388384, 0.06318888016427396, 0.0642789562114775, 0.06536959953863418, 0.06646080675864444, 0.06755257448420737, 0.06864489932785875, 0.06973777790200873, 0.07083120681897974, 0.07192518269104443, 0.07301970213046313, 0.0741147617495219, 0.07521035816056998, 0.07630648797605748, 0.07740314780857305, 0.07850033427088138, 0.07959804397596072, 0.08069627353704036, 0.08179501956763796, 0.08289427868159713, 0.0839940474931245, 0.08509432261682723, 0.08619510066775007, 0.08729637826141261, 0.08839815201384636, 0.08950041854163195, 0.0906031744619359, 0.09170641639254791, 0.09281014095191746, 0.0939143447591908, 0.09501902443424781, 0.09612417659773859, 0.09722979787112027, 0.0983358848766935, 0.09944243423763906, 0.10054944257805441, 0.10165690652299002, 0.10276482269848577, 0.10387318773160731, 0.10498199825048218, 0.10609125088433598, 0.10720094226352872, 0.10831106901959041, 0.10942162778525742, 0.11053261519450815, 0.11164402788259896, 0.11275586248609977, 0.11386811564292987, 0.11498078399239352, 0.11609386417521539, 0.11720735283357604, 0.1183212466111473, 0.11943554215312763, 0.12055023610627713, 0.12166532511895294, 0.12278080584114412, 0.12389667492450672, 0.12501292902239858, 0.12612956478991422, 0.12724657888391955, 0.1283639679630865, 0.12948172868792757, 0.13059985772083038, 0.131718351726092, 0.13283720736995316, 0.13395642132063265, 0.13507599024836128, 0.13619591082541607, 0.13731617972615393, 0.13843679362704592, 0.13955774920671069, 0.14067904314594806, 0.1418006721277731, 0.1429226328374489, 0.14404492196252072, 0.1451675361928486, 0.14629047222064104, 0.14741372674048778, 0.14853729644939287, 0.14966117804680787, 0.15078536823466415, 0.15190986371740603, 0.15303466120202297, 0.15415975739808252, 0.15528514901776236, 0.15641083277588275, 0.15753680538993878, 0.15866306358013213, 0.1597896040694035, 0.16091642358346422, 0.1620435188508281, 0.163170886602843, 0.16429852357372252, 0.1654264265005773, 0.16655459212344653, 0.16768301718532902, 0.16881169843221455, 0.16994063261311446, 0.17106981648009298, 0.1721992467882979, 0.17332892029599103, 0.1744588337645791, 0.1755889839586439, 0.17671936764597282, 0.1778499815975889, 0.17898082258778122, 0.18011188739413453, 0.18124317279755947, 0.18237467558232193, 0.18350639253607307, 0.18463832044987868, 0.18577045611824858, 0.18690279633916582, 0.18803533791411609, 0.1891680776481165, 0.19030101234974459, 0.19143413883116725, 0.1925674539081693, 0.19370095440018198, 0.1948346371303116, 0.19596849892536752, 0.19710253661589078, 0.19823674703618174, 0.1993711270243283, 0.2005056734222336, 0.2016403830756438, 0.20277525283417552, 0.2039102795513434, 0.20504546008458735, 0.20618079129529965, 0.2073162700488524, 0.2084518932146239, 0.20958765766602575, 0.21072356028052963, 0.2118595979396937, 0.21299576752918892, 0.21413206593882553, 0.21526849006257903, 0.21640503679861653, 0.21754170304932227, 0.21867848572132356, 0.21981538172551635, 0.22095238797709077, 0.2220895013955568, 0.22322671890476875, 0.22436403743295122, 0.22550145391272344, 0.22663896528112445, 0.22777656847963773, 0.2289142604542157, 0.23005203815530417, 0.23118989853786678, 0.232327838561409, 0.23346585519000213, 0.23460394539230744, 0.23574210614159974, 0.23688033441579093, 0.23801862719745365, 0.2391569814738447, 0.24029539423692797, 0.24143386248339782, 0.2425723832147018, 0.24371095343706337, 0.24484957016150505, 0.2459882304038704, 0.24712693118484672, 0.24826566952998713, 0.24940444246973287, 0.25054324703943515, 0.25168208027937683, 0.2528209392347946, 0.2539598209558999, 0.25509872249790083, 0.25623764092102325, 0.2573765732905318, 0.25851551667675127, 0.2596544681550871, 0.2607934248060458, 0.26193238371525657, 0.2630713419734907, 0.2642102966766824, 0.26534924492594875, 0.26648818382760997, 0.2676271104932087, 0.2687660220395305, 0.2699049155886229, 0.27104378826781517, 0.27218263720973734, 0.2733214595523396, 0.27446025243891126, 0.27559901301809936, 0.27673773844392807, 0.2778764258758166, 0.2790150724785981, 0.28015367542253766, 0.28129223188335084, 0.2824307390422214, 0.28356919408581927, 0.2847075942063185, 0.2858459366014145, 0.28698421847434197, 0.2881224370338917, 0.2892605894944281, 0.2903986730759064, 0.291536685003889, 0.2926746225095627, 0.29381248282975514, 0.2949502632069513, 0.2960879608893097, 0.2972255731306789, 0.2983630971906133, 0.29950053033438895, 0.30063786983301977, 0.3017751129632727, 0.30291225700768326, 0.30404929925457125, 0.30518623699805547, 0.30632306753806915, 0.3074597881803745, 0.3085963962365781, 0.30973288902414453, 0.3108692638664121, 0.3120055180926063, 0.31314164903785413, 0.3142776540431986, 0.315413530455612, 0.3165492756280105, 0.3176848869192672, 0.3188203616942258, 0.3199556973237139, 0.3210908911845564, 0.3222259406595885, 0.32336084313766866, 0.3244955960136913, 0.32563019668859977, 0.3267646425693984, 0.3278989310691653, 0.3290330596070646, 0.33016702560835814, 0.33130082650441817, 0.33243445973273844, 0.33356792273694624, 0.33470121296681427, 0.3358343278782712, 0.3369672649334141, 0.3381000216005185, 0.3392325953540501, 0.3403649836746753, 0.3414971840492723, 0.34262919397094127, 0.34376101093901495, 0.3448926324590692, 0.34602405604293296, 0.34715527920869815, 0.34828629948073025, 0.34941711438967715, 0.3505477214724798, 0.35167811827238066, 0.352808302338934, 0.3539382712280147, 0.3550680225018273, 0.3561975537289152, 0.35732686248416956, 0.3584559463488375, 0.35958480291053146, 0.36071342976323695, 0.3618418245073212, 0.3629699847495412, 0.364097908103052, 0.36522559218741435, 0.3663530346286024, 0.367480233059012, 0.36860718511746704, 0.36973388844922833, 0.37086034070599944, 0.37198653954593497, 0.37311248263364666, 0.3742381676402109, 0.3753635922431752, 0.37648875412656485, 0.3776136509808891, 0.37873828050314845, 0.3798626403968395, 0.3809867283719623, 0.3821105421450255, 0.3832340794390529, 0.38435733798358845, 0.38548031551470247, 0.38660300977499645, 0.38772541851360914, 0.38884753948622114, 0.3899693704550607, 0.3910909091889077, 0.3922121534630995, 0.39333310105953506, 0.3944537497666796, 0.39557409737956967, 0.3966941416998159, 0.39781388053561006, 0.3989333117017256, 0.4000524330195252, 0.4011712423169614, 0.4022897374285834, 0.4034079161955377, 0.40452577646557447, 0.4056433160930482, 0.4067605329389239, 0.40787742487077705, 0.4089939897627994, 0.4101102254958003, 0.41122612995720986, 0.41234170104108214, 0.41345693664809685, 0.41457183468556247, 0.4156863930674182, 0.4168006097142365, 0.4179144825532249, 0.4190280095182281, 0.42014118854972987, 0.42125401759485476, 0.42236649460736964, 0.4234786175476859, 0.42459038438285934, 0.4257017930865937, 0.4268128416392392, 0.42792352802779665, 0.42903385024591517, 0.43014380629389615, 0.4312533941786913, 0.4323626119139056, 0.43347145751979604, 0.43457992902327325, 0.4356880244579009, 0.43679574186389675, 0.43790307928813227, 0.4390100347841324, 0.44011660641207623, 0.44122279223879596, 0.44232859033777716, 0.44343399878915807, 0.444539015679729, 0.4456436391029316, 0.4467478671588588, 0.4478516979542531, 0.4489551296025065, 0.4500581602236579, 0.45116078794439435, 0.4522630108980471, 0.45336482722459304, 0.45446623507065015, 0.45556723258947934, 0.45666781794097916, 0.4577679892916878, 0.45886774481477766, 0.45996708269005665, 0.4610660011039633, 0.4621644982495665, 0.46326257232656276, 0.4643602215412734, 0.4654574441066427, 0.4665542382422352, 0.4676506021742329, 0.46874653413543255, 0.46984203236524297, 0.47093709510968235, 0.47203172062137483, 0.4731259071595476, 0.47421965299002766, 0.4753129563852382, 0.47640581562419665, 0.47749822899250893, 0.47859019478236803, 0.47968171129254883, 0.48077277682840575, 0.48186338970186715, 0.48295354823143355, 0.4840432507421717, 0.48513249556571214, 0.4862212810402431, 0.4873096055105087, 0.48839746732780226, 0.4894848648499631, 0.49057179644137233, 0.4916582604729471, 0.4927442553221368, 0.4938297793729181, 0.4949148310157899, 0.4959994086477687, 0.4970835106723832, 0.49816713549966984, 0.4992502815461666, 0.500332947234909, 0.5014151309954237, 0.5024968312637232, 0.5035780464823018, 0.5046587751001274, 0.5057390155726385, 0.5068187663617361, 0.5078980259357807, 0.508976792769583, 0.510055065344401, 0.5111328421479318, 0.5122101216743074, 0.5132869024240859, 0.5143631829042487, 0.5154389616281906, 0.5165142371157161, 0.5175890078930316, 0.5186632724927388, 0.5197370294538289, 0.520810277321675, 0.5218830146480258, 0.5229552399909987, 0.524026951915073, 0.5250981489910826, 0.5261688297962094, 0.5272389929139751, 0.5283086369342362, 0.5293777604531738, 0.5304463620732894, 0.5315144404033944, 0.5325819940586055, 0.5336490216603349, 0.5347155218362847, 0.535781493220437, 0.5368469344530487, 0.537911844180641, 0.5389762210559947, 0.540040063738139, 0.5411033708923461, 0.5421661411901216, 0.5432283733091975, 0.5442900659335234, 0.5453512177532578, 0.5464118274647614, 0.5474718937705871, 0.5485314153794728, 0.5495903910063321, 0.5506488193722462, 0.5517066992044554, 0.5527640292363505, 0.5538208082074633, 0.5548770348634596, 0.555932707956128, 0.5569878262433741, 0.5580423884892078, 0.5590963934637383, 0.5601498399431621, 0.5612027267097555, 0.5622550525518641, 0.5633068162638964, 0.5643580166463108, 0.5654086525056091, 0.5664587226543262, 0.5675082259110209, 0.5685571611002659, 0.5696055270526397, 0.5706533226047151, 0.5717005465990513, 0.5727471978841836, 0.5737932753146139, 0.5748387777508002, 0.5758837040591483, 0.5769280531120003, 0.5779718237876265, 0.5790150149702139, 0.580057625549857, 0.5810996544225482, 0.5821411004901662, 0.5831819626604684, 0.5842222398470776, 0.5852619309694752, 0.5863010349529884, 0.5873395507287812, 0.5883774772338429, 0.5894148134109805, 0.5904515582088039, 0.5914877105817199, 0.592523269489919, 0.5935582338993656, 0.594592602781788, 0.595626375114667, 0.5966595498812255, 0.5976921260704183, 0.5987241026769203, 0.5997554787011175, 0.6007862531490944, 0.6018164250326244, 0.6028459933691583, 0.6038749571818133, 0.6049033154993635, 0.6059310673562265, 0.6069582117924547, 0.6079847478537226, 0.6090106745913174, 0.6100359910621259, 0.6110606963286254, 0.61208478945887, 0.6131082695264833, 0.6141311356106424, 0.615153386796071, 0.6161750221730248, 0.6171960408372826, 0.6182164418901329, 0.6192362244383645, 0.6202553875942534, 0.6212739304755527, 0.6222918522054794, 0.6233091519127055, 0.6243258287313438, 0.6253418818009382, 0.6263573102664509, 0.6273721132782518, 0.6283862899921063, 0.6293998395691637, 0.6304127611759454, 0.6314250539843334, 0.6324367171715589, 0.6334477499201897, 0.6344581514181193, 0.6354679208585537, 0.6364770574400023, 0.6374855603662622, 0.6384934288464102, 0.6395006620947877, 0.6405072593309914, 0.6415132197798589, 0.642518542671459, 0.6435232272410782, 0.6445272727292091, 0.6455306783815387, 0.6465334434489359, 0.64753556718744, 0.6485370488582476, 0.649537887727702, 0.6505380830672796, 0.6515376341535782, 0.6525365402683058, 0.653534800698267, 0.6545324147353515, 0.6555293816765225, 0.6565257008238027, 0.6575213714842646, 0.6585163929700149, 0.6595107645981862, 0.6605044856909211, 0.6614975555753627, 0.6624899735836395, 0.6634817390528563, 0.6644728513250786, 0.6654633097473232, 0.6664531136715429, 0.667442262454617, 0.6684307554583367, 0.6694185920493938, 0.6704057715993682, 0.6713922934847147, 0.6723781570867513, 0.6733633617916471, 0.6743479069904087, 0.6753317920788684, 0.6763150164576717, 0.6772975795322643, 0.6782794807128811, 0.6792607194145315, 0.6802412950569886, 0.6812212070647752, 0.6822004548671534, 0.6831790378981092, 0.6841569555963432, 0.6851342074052548, 0.6861107927729322, 0.6870867111521373, 0.6880619620002967, 0.689036544779485, 0.6900104589564161, 0.6909837040024266, 0.6919562793934662, 0.6929281846100845, 0.6938994191374179, 0.6948699824651771, 0.6958398740876336, 0.696809093503609, 0.6977776402164609, 0.698745513734071, 0.6997127135688311, 0.7006792392376329, 0.7016450902618525, 0.7026102661673407, 0.7035747664844068, 0.7045385907478104, 0.7055017384967437, 0.706464209274824, 0.7074260026300762, 0.708387118114924, 0.7093475552861749, 0.7103073137050089, 0.7112663929369637, 0.7122247925519256, 0.7131825121241132, 0.7141395512320675, 0.715095909458637, 0.7160515863909673, 0.7170065816204858, 0.7179608947428919, 0.7189145253581419, 0.719867473070438, 0.7208197374882149, 0.721771318224127, 0.7227222148950363, 0.7236724271219996, 0.7246219545302552, 0.7255707967492111, 0.7265189534124328, 0.7274664241576284, 0.7284132086266392, 0.7293593064654239, 0.7303047173240489, 0.7312494408566729, 0.7321934767215366, 0.7331368245809484, 0.734079484101274, 0.7350214549529197, 0.7359627368103261, 0.736903329351948, 0.7378432322602491, 0.7387824452216837, 0.7397209679266875, 0.7406588000696642, 0.7415959413489724, 0.7425323914669132, 0.7434681501297186, 0.7444032170475375, 0.7453375919344248, 0.7462712745083276, 0.7472042644910725, 0.7481365616083555, 0.7490681655897256, 0.7499990761685766, 0.7509292930821306, 0.7518588160714292, 0.7527876448813176, 0.7537157792604355, 0.7546432189612022, 0.7555699637398053, 0.756496013356187, 0.7574213675740344, 0.7583460261607642, 0.759269988887512, 0.7601932555291198, 0.761115825864122, 0.7620376996747359, 0.7629588767468468, 0.7638793568699974, 0.7647991398373745, 0.7657182254457969, 0.7666366134957029, 0.7675543037911389, 0.7684712961397461, 0.7693875903527495, 0.7703031862449432, 0.7712180836346817, 0.7721322823438647, 0.7730457821979264, 0.7739585830258225, 0.774870684660019, 0.7757820869364789, 0.776692789694651, 0.777602792777457, 0.7785120960312806, 0.7794206993059535, 0.7803286024547451, 0.7812358053343491, 0.7821423078048729, 0.7830481097298233, 0.783953210976097, 0.784857611413967, 0.7857613109170709, 0.7866643093623987, 0.7875666066302823, 0.7884682026043809, 0.7893690971716711, 0.7902692902224345, 0.791168781650246, 0.7920675713519607, 0.792965659227703, 0.7938630451808558, 0.7947597291180458, 0.7956557109491348, 0.7965509905872049, 0.7974455679485493, 0.7983394429526595, 0.7992326155222129, 0.8001250855830614, 0.8010168530642207, 0.8019079178978572, 0.8027982800192766, 0.8036879393669133, 0.8045768958823168, 0.8054651495101423, 0.8063527001981371, 0.8072395478971298, 0.8081256925610193, 0.8090111341467625, 0.8098958726143619, 0.8107799079268567, 0.8116632400503082, 0.8125458689537904, 0.8134277946093776, 0.8143090169921334, 0.8151895360800984, 0.8160693518542802, 0.8169484642986407, 0.8178268734000854, 0.8187045791484514, 0.8195815815364971, 0.8204578805598892, 0.8213334762171939, 0.8222083685098629, 0.8230825574422237, 0.8239560430214677, 0.8248288252576402, 0.8257009041636273, 0.8265722797551458, 0.8274429520507324, 0.8283129210717309, 0.8291821868422834, 0.8300507493893174, 0.8309186087425349, 0.8317857649344026, 0.8326522180001386, 0.833517967977704, 0.8343830149077902, 0.8352473588338077, 0.8361109998018765, 0.8369739378608135, 0.8378361730621238, 0.8386977054599866, 0.8395585351112476, 0.8404186620754059, 0.8412780864146041, 0.842136808193618, 0.8429948274798437, 0.8438521443432888, 0.8447087588565623, 0.8455646710948602, 0.8464198811359593, 0.8472743890602034, 0.8481281949504933, 0.8489812988922776, 0.8498337009735393, 0.850685401284789, 0.8515363999190498, 0.8523866969718509, 0.853236292541214, 0.8540851867276444, 0.8549333796341203, 0.8557808713660823, 0.8566276620314217, 0.8574737517404726, 0.8583191406059987, 0.8591638287431848, 0.8600078162696261, 0.8608511033053174, 0.8616936899726424, 0.8625355763963648, 0.8633767627036171, 0.8642172490238903, 0.8650570354890236, 0.8658961222331947, 0.8667345093929089, 0.8675721971069903, 0.8684091855165698, 0.8692454747650765, 0.8700810649982264, 0.8709159563640139, 0.8717501490126993, 0.872583643096802, 0.8734164387710875, 0.8742485361925592, 0.8750799355204477, 0.8759106369162011, 0.8767406405434756, 0.8775699465681241, 0.8783985551581884, 0.8792264664838872, 0.8800536807176088, 0.8808801980338979, 0.8817060186094497, 0.882531142623097, 0.8833555702558027, 0.8841793016906477, 0.8850023371128242, 0.8858246767096236, 0.8866463206704279, 0.8874672691867, 0.8882875224519741, 0.8891070806618463, 0.8899259440139641, 0.8907441127080188, 0.8915615869457335, 0.8923783669308561, 0.8931944528691491, 0.8940098449683779, 0.8948245434383049, 0.8956385484906788, 0.8964518603392236, 0.8972644791996321, 0.898076405289554, 0.8988876388285892, 0.8996981800382755, 0.9005080291420828, 0.9013171863654003, 0.9021256519355304, 0.9029334260816777, 0.9037405090349412, 0.9045469010283034, 0.9053526022966231, 0.9061576130766246, 0.9069619336068904, 0.9077655641278509, 0.9085685048817759, 0.9093707561127654, 0.9101723180667415, 0.9109731909914376, 0.9117733751363917, 0.9125728707529367, 0.9133716780941898, 0.9141697974150474, 0.9149672289721723, 0.9157639730239884, 0.9165600298306686, 0.9173553996541298, 0.9181500827580196, 0.9189440794077133, 0.9197373898702987, 0.9205300144145748, 0.9213219533110355, 0.9221132068318677, 0.9229037752509377, 0.923693658843787, 0.9244828578876195, 0.9252713726612959, 0.926059203445325, 0.9268463505218547, 0.9276328141746618, 0.9284185946891479, 0.9292036923523267, 0.9299881074528182, 0.9307718402808391, 0.9315548911281962, 0.9323372602882756, 0.9331189480560365, 0.9338999547280019, 0.9346802806022511, 0.9354599259784114, 0.9362388911576488, 0.937017176442662, 0.9377947821376718, 0.9385717085484155, 0.9393479559821366, 0.9401235247475787, 0.9408984151549756, 0.9416726275160451, 0.9424461621439798, 0.9432190193534397, 0.9439911994605439, 0.9447627027828632, 0.945533529639412, 0.9463036803506397, 0.9470731552384251, 0.9478419546260651, 0.9486100788382708, 0.9493775282011564, 0.950144303042234, 0.9509104036904035, 0.9516758304759474, 0.9524405837305213, 0.9532046637871477, 0.953968070980206, 0.9547308056454284, 0.9554928681198886, 0.9562542587419979, 0.9570149778514937, 0.9577750257894363, 0.9585344028981981, 0.9592931095214573, 0.9600511460041904, 0.9608085126926657, 0.9615652099344341, 0.9623212380783235, 0.9630765974744303, 0.9638312884741119, 0.9645853114299812, 0.9653386666958975, 0.9660913546269593, 0.9668433755794986, 0.9675947299110722, 0.9683454179804549, 0.9690954401476327, 0.969844796773796, 0.9705934882213311, 0.971341514853814, 0.9720888770360041, 0.9728355751338357, 0.973581609514412, 0.974326980545997, 0.9750716885980102, 0.9758157340410178, 0.9765591172467283, 0.9773018385879819, 0.9780438984387474, 0.9787852971741123, 0.9795260351702786, 0.980266112804553, 0.981005530455344, 0.9817442885021513, 0.9824823873255608, 0.9832198273072383, 0.9839566088299218, 0.9846927322774158, 0.9854281980345835, 0.9861630064873411, 0.9868971580226503, 0.9876306530285133, 0.9883634918939641, 0.9890956750090641, 0.9898272027648928, 0.9905580755535451, 0.9912882937681212, 0.9920178578027226, 0.9927467680524433, 0.993475024913367, 0.9942026287825562, 0.99492958005805, 0.9956558791388539, 0.9963815264249376, 0.9971065223172251, 0.9978308672175902, 0.99855456152885, 0.9992776056547585, 1.0]}
diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/test/test.cdf.js b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/test/test.cdf.js
new file mode 100644
index 000000000000..9f67e8cf80fb
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/test/test.cdf.js
@@ -0,0 +1,183 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var tape = require( 'tape' );
+var isnan = require( '@stdlib/math/base/assert/is-nan' );
+var abs = require( '@stdlib/math/base/special/abs' );
+var PINF = require( '@stdlib/constants/float64/pinf' );
+var NINF = require( '@stdlib/constants/float64/ninf' );
+var EPS = require( '@stdlib/constants/float64/eps' );
+var cdf = require( './../lib' );
+
+
+// FIXTURES //
+
+var smallC = require( './fixtures/python/small_c.json' );
+var mediumC = require( './fixtures/python/medium_c.json' );
+var largeC = require( './fixtures/python/large_c.json' );
+
+
+// TESTS //
+
+tape( 'main export is a function', function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof cdf, 'function', 'main export is a function' );
+ t.end();
+});
+
+tape( 'if provided `NaN` for any parameter, the function returns `NaN`', function test( t ) {
+ var y;
+
+ y = cdf( NaN, 1.0 );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ y = cdf( 0.0, NaN );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ t.end();
+});
+
+tape( 'if provided `c <= 0`, the function returns `NaN`', function test( t ) {
+ var y;
+
+ y = cdf( 0.0, 0.0 );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ y = cdf( 0.5, -1.0 );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ y = cdf( 1.0, NINF );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ t.end();
+});
+
+tape( 'if provided a number greater than or equal to one for `x` and a finite `c`, the function returns `1`', function test( t ) {
+ var y;
+
+ y = cdf( PINF, 0.5 );
+ t.equal( y, 1.0, 'returns 1' );
+
+ y = cdf( 100.0, 0.5 );
+ t.equal( y, 1.0, 'returns 1' );
+
+ y = cdf( 10.0, 0.5 );
+ t.equal( y, 1.0, 'returns 1' );
+
+ y = cdf( 1.0, 0.5 );
+ t.equal( y, 1.0, 'returns 1' );
+
+ t.end();
+});
+
+tape( 'if provided a number less than or equal to zero for `x` and a finite `c`, the function returns `0`', function test( t ) {
+ var y;
+
+ y = cdf( NINF, 0.5 );
+ t.equal( y, 0.0, 'returns 0' );
+
+ y = cdf( -100.0, 0.5 );
+ t.equal( y, 0.0, 'returns 0' );
+
+ y = cdf( -1.0, 0.5 );
+ t.equal( y, 0.0, 'returns 0' );
+
+ y = cdf( 0.0, 0.5 );
+ t.equal( y, 0.0, 'returns 0' );
+
+ t.end();
+});
+
+tape( 'the function evaluates the cdf for `x` given small parameter `c`', function test( t ) {
+ var expected;
+ var delta;
+ var tol;
+ var x;
+ var c;
+ var y;
+ var i;
+
+ expected = smallC.expected;
+ x = smallC.x;
+ c = smallC.c;
+ for ( i = 0; i < x.length; i++ ) {
+ y = cdf( x[i], c[i] );
+ if ( y === expected[i] ) {
+ t.equal( y, expected[i], 'x: '+x[i]+'. c:'+c[i]+', y: '+y+', expected: '+expected[i] );
+ } else {
+ delta = abs( y - expected[ i ] );
+ tol = 3.0 * EPS * abs( expected[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. c: '+c[i]+'. y: '+y+'. E: '+expected[ i ]+'. Δ: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function evaluates the cdf for `x` given medium parameter `c`', function test( t ) {
+ var expected;
+ var delta;
+ var tol;
+ var x;
+ var c;
+ var y;
+ var i;
+
+ expected = mediumC.expected;
+ x = mediumC.x;
+ c = mediumC.c;
+ for ( i = 0; i < x.length; i++ ) {
+ y = cdf( x[i], c[i] );
+ if ( y === expected[i] ) {
+ t.equal( y, expected[i], 'x: '+x[i]+'. c:'+c[i]+', y: '+y+', expected: '+expected[i] );
+ } else {
+ delta = abs( y - expected[ i ] );
+ tol = 2.2 * EPS * abs( expected[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. c: '+c[i]+'. y: '+y+'. E: '+expected[ i ]+'. Δ: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function evaluates the cdf for `x` given large parameter `c`', function test( t ) {
+ var expected;
+ var delta;
+ var tol;
+ var x;
+ var c;
+ var y;
+ var i;
+
+ expected = largeC.expected;
+ x = largeC.x;
+ c = largeC.c;
+ for ( i = 0; i < x.length; i++ ) {
+ y = cdf( x[i], c[i] );
+ if ( y === expected[i] ) {
+ t.equal( y, expected[i], 'x: '+x[i]+'. c: '+c[i]+', y: '+y+', expected: '+expected[i] );
+ } else {
+ delta = abs( y - expected[ i ] );
+ tol = 1.9 * EPS * abs( expected[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. c: '+c[i]+'. y: '+y+'. E: '+expected[ i ]+'. Δ: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/test/test.factory.js b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/test/test.factory.js
new file mode 100644
index 000000000000..b7ce18e6639e
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/test/test.factory.js
@@ -0,0 +1,211 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var tape = require( 'tape' );
+var isnan = require( '@stdlib/math/base/assert/is-nan' );
+var abs = require( '@stdlib/math/base/special/abs' );
+var PINF = require( '@stdlib/constants/float64/pinf' );
+var NINF = require( '@stdlib/constants/float64/ninf' );
+var EPS = require( '@stdlib/constants/float64/eps' );
+var factory = require( './../lib/factory.js' );
+
+
+// FIXTURES //
+
+var smallC = require( './fixtures/python/small_c.json' );
+var mediumC = require( './fixtures/python/medium_c.json' );
+var largeC = require( './fixtures/python/large_c.json' );
+
+
+// TESTS //
+
+tape( 'main export is a function', function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof factory, 'function', 'main export is a function' );
+ t.end();
+});
+
+tape( 'the function returns a function', function test( t ) {
+ var cdf = factory( 1.0 );
+ t.equal( typeof cdf, 'function', 'returns a function' );
+ t.end();
+});
+
+tape( 'if provided `NaN` for any parameter, the created function returns `NaN`', function test( t ) {
+ var cdf;
+ var y;
+
+ cdf = factory( 1.0 );
+ y = cdf( NaN );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ cdf = factory( NaN );
+ y = cdf( 0.0 );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ cdf = factory( NaN );
+ y = cdf( NaN );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ t.end();
+});
+
+tape( 'if provided `c <= 0`, the created function always returns `NaN`', function test( t ) {
+ var cdf;
+ var y;
+
+ cdf = factory( -1.0 );
+ y = cdf( 1.0 );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ y = cdf( 0.5 );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ y = cdf( 0.0 );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ t.end();
+});
+
+tape( 'if provided a finite `c`, the function returns a function which returns `1` when provided a number greater than or equal to one for `x`', function test( t ) {
+ var cdf;
+ var y;
+
+ cdf = factory( 0.5 );
+ y = cdf( PINF );
+ t.equal( y, 1.0, 'returns 1' );
+
+ y = cdf( 100.0 );
+ t.equal( y, 1.0, 'returns 1' );
+
+ y = cdf( 10.0 );
+ t.equal( y, 1.0, 'returns 1' );
+
+ y = cdf( 1.0 );
+ t.equal( y, 1.0, 'returns 1' );
+
+ t.end();
+});
+
+tape( 'if provided a finite `c`, the function returns a function which returns `0` when provided a number smaller than or equal to zero for `x`', function test( t ) {
+ var cdf;
+ var y;
+
+ cdf = factory( 0.5 );
+ y = cdf( NINF );
+ t.equal( y, 0.0, 'returns 0' );
+
+ y = cdf( -100.0 );
+ t.equal( y, 0.0, 'returns 0' );
+
+ y = cdf( -10.0 );
+ t.equal( y, 0.0, 'returns 0' );
+
+ y = cdf( -1.0 );
+ t.equal( y, 0.0, 'returns 0' );
+
+ y = cdf( 0.0 );
+ t.equal( y, 0.0, 'returns 0' );
+
+ t.end();
+});
+
+tape( 'the created function evaluates the cdf for `x` given small `c`', function test( t ) {
+ var expected;
+ var delta;
+ var cdf;
+ var tol;
+ var c;
+ var i;
+ var x;
+ var y;
+
+ expected = smallC.expected;
+ x = smallC.x;
+ c = smallC.c;
+ for ( i = 0; i < x.length; i++ ) {
+ cdf = factory( c[i] );
+ y = cdf( x[i] );
+ if ( y === expected[i] ) {
+ t.equal( y, expected[i], 'x: '+x[i]+'. c: '+c[i]+', y: '+y+', expected: '+expected[i] );
+ } else {
+ delta = abs( y - expected[ i ] );
+ tol = 3.0 * EPS * abs( expected[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. c: '+c[i]+'. y: '+y+'. E: '+expected[ i ]+'. Δ: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the created function evaluates the cdf for `x` given a medium `c`', function test( t ) {
+ var expected;
+ var delta;
+ var cdf;
+ var tol;
+ var c;
+ var i;
+ var x;
+ var y;
+
+ expected = mediumC.expected;
+ x = mediumC.x;
+ c = mediumC.c;
+ for ( i = 0; i < x.length; i++ ) {
+ cdf = factory( c[i] );
+ y = cdf( x[i] );
+ if ( y === expected[i] ) {
+ t.equal( y, expected[i], 'x: '+x[i]+'. c: '+c[i]+', y: '+y+', expected: '+expected[i] );
+ } else {
+ delta = abs( y - expected[ i ] );
+ tol = 2.2 * EPS * abs( expected[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. c: '+c[i]+'. y: '+y+'. E: '+expected[ i ]+'. Δ: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the created function evaluates the cdf for `x` given a large `c`', function test( t ) {
+ var expected;
+ var delta;
+ var cdf;
+ var tol;
+ var c;
+ var i;
+ var x;
+ var y;
+
+ expected = largeC.expected;
+ x = largeC.x;
+ c = largeC.c;
+ for ( i = 0; i < x.length; i++ ) {
+ cdf = factory( c[i] );
+ y = cdf( x[i] );
+ if ( y === expected[i] ) {
+ t.equal( y, expected[i], 'x: '+x[i]+'. c: '+c[i]+', y: '+y+', expected: '+expected[i] );
+ } else {
+ delta = abs( y - expected[ i ] );
+ tol = 1.9 * EPS * abs( expected[ i ] );
+ t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. c: '+c[i]+'. y: '+y+'. E: '+expected[ i ]+'. Δ: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/test/test.js b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/test/test.js
new file mode 100644
index 000000000000..cef508494ff6
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/test/test.js
@@ -0,0 +1,38 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var tape = require( 'tape' );
+var cdf = require( './../lib' );
+
+
+// TESTS //
+
+tape( 'main export is a function', function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof cdf, 'function', 'main export is a function' );
+ t.end();
+});
+
+tape( 'attached to the main export is a factory method for generating `cdf` functions', function test( t ) {
+ t.equal( typeof cdf.factory, 'function', 'exports a factory method' );
+ t.end();
+});