diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/README.md b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/README.md
new file mode 100644
index 000000000000..cb22502cd17e
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/README.md
@@ -0,0 +1,164 @@
+
+
+# Quantile Function
+
+> [Bradford][bradford-distribution] distribution [quantile function][quantile-function].
+
+
+
+The [quantile function][quantile-function] for a [Bradford][bradford-distribution] random variable is
+
+
+
+```math
+Q(p;c)=\frac{(1+c)^p - 1}{c}
+```
+
+
+
+
+
+for `0 <= p <= 1`, where `c` is the shape parameter.
+
+
+
+
+
+
+
+## Usage
+
+```javascript
+var quantile = require( '@stdlib/stats/base/dists/bradford/quantile' );
+```
+
+#### quantile( p, c )
+
+Evaluates the [quantile function][quantile-function] for a [Bradford][bradford-distribution] distribution with shape parameter `c` at a probability `p`.
+
+```javascript
+var y = quantile( 0.1, 0.1 );
+// returns ~0.096
+
+y = quantile( 0.5, 5.0 );
+// returns ~0.290
+
+y = quantile( 1.0, 10.0 );
+// returns 1.0
+```
+
+If provided `NaN` as any argument, the function returns `NaN`.
+
+```javascript
+var y = quantile( NaN, 1.0 );
+// returns NaN
+
+y = quantile( 0.0, NaN );
+// returns NaN
+```
+
+If provided a probability `p` outside the interval `[0,1]`, the function returns `NaN`.
+
+```javascript
+var y = quantile( 2.0, 0.5 );
+// returns NaN
+
+y = quantile( -1.0, 0.5 );
+// returns NaN
+```
+
+If provided a shape parameter `c <= 0`, the function returns `NaN`.
+
+```javascript
+var y = quantile( 0.5, 0.0 );
+// returns NaN
+
+y = quantile( 0.5, -10.0 );
+// returns NaN
+```
+
+#### quantile.factory( c )
+
+Returns a function for evaluating the [quantile function][quantile-function] for a [Bradford][bradford-distribution] distribution with shape parameter `c`.
+
+```javascript
+var myquantile = quantile.factory( 5.0 );
+var y = myquantile( 0.4 );
+// returns ~0.210
+
+y = myquantile( 0.8 );
+// returns ~0.639
+
+y = myquantile( 1.0 );
+// returns 1.0
+```
+
+
+
+
+
+
+
+## Examples
+
+
+
+```javascript
+var uniform = require( '@stdlib/random/array/uniform' );
+var quantile = require( '@stdlib/stats/base/dists/bradford/quantile' );
+
+var p = uniform( 10, 0.0, 1.0 );
+var c = uniform( 10, 0.1, 10.0 );
+
+var y;
+var i;
+for ( i = 0; i < p.length; i++ ) {
+ y = quantile( p[ i ], c[ i ] );
+ console.log( 'p: %d, c: %d, Q(p;c): %d', p[ i ].toFixed( 4 ), c[ i ].toFixed( 4 ), y.toFixed( 4 ) );
+}
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+[bradford-distribution]: https://en.wikipedia.org/wiki/Bradford%27s_law
+
+[quantile-function]: https://en.wikipedia.org/wiki/Quantile_function
+
+
+
+
diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/benchmark/benchmark.js b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/benchmark/benchmark.js
new file mode 100644
index 000000000000..ac0978ffc2ff
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/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 quantile = require( './../lib' );
+
+
+// MAIN //
+
+bench( pkg, function benchmark( b ) {
+ var p;
+ var c;
+ var y;
+ var i;
+
+ p = uniform( 100, 0.0, 1.0 );
+ c = uniform( 100, 0.1, 10.0 );
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ y = quantile( p[ i % p.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 myquantile;
+ var p;
+ var y;
+ var i;
+
+ p = uniform( 100, 0.0, 1.0 );
+ myquantile = quantile.factory( 5.0 );
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ y = myquantile( p[ i % p.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/quantile/docs/img/equation_bradford_quantile_function.svg b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/docs/img/equation_bradford_quantile_function.svg
new file mode 100644
index 000000000000..54ea1aaaeb53
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/docs/img/equation_bradford_quantile_function.svg
@@ -0,0 +1,42 @@
+
\ No newline at end of file
diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/docs/repl.txt b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/docs/repl.txt
new file mode 100644
index 000000000000..af591ae4eda7
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/docs/repl.txt
@@ -0,0 +1,74 @@
+
+{{alias}}( p, c )
+ Evaluates the quantile function for a Bradford distribution with shape
+ parameter `c` at a probability `p`.
+
+ If `p < 0` or `p > 1`, the function returns `NaN`.
+
+ If `c <= 0`, the function returns `NaN`.
+
+ If provided `NaN` as any argument, the function returns `NaN`.
+
+ Parameters
+ ----------
+ p: number
+ Input probability.
+
+ c: number
+ Shape parameter.
+
+ Returns
+ -------
+ out: number
+ Evaluated quantile function.
+
+ Examples
+ --------
+ > var y = {{alias}}( 0.1, 0.1 )
+ ~0.096
+ > y = {{alias}}( 0.5, 5.0 )
+ ~0.290
+ > y = {{alias}}( 1.0, 10.0 )
+ 1.0
+
+ > y = {{alias}}( 0.5, 0.0 )
+ NaN
+
+ > y = {{alias}}( 2.0, 0.5 )
+ NaN
+ > y = {{alias}}( -1.0, 0.5 )
+ NaN
+
+ > y = {{alias}}( NaN, 1.0 )
+ NaN
+ > y = {{alias}}( 1.0, NaN )
+ NaN
+
+
+{{alias}}.factory( c )
+ Returns a function for evaluating the quantile function of a Bradford
+ distribution with shape parameter `c`.
+
+ Parameters
+ ----------
+ c: number
+ Shape parameter.
+
+ Returns
+ -------
+ quantile: Function
+ Quantile function.
+
+ Examples
+ --------
+ > var myquantile = {{alias}}.factory( 5.0 );
+ > var y = myquantile( 0.4 )
+ ~0.210
+ > y = myquantile( 0.8 )
+ ~0.639
+ > y = myquantile( 1.0 )
+ 1.0
+
+ See Also
+ --------
+
diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/docs/types/index.d.ts b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/docs/types/index.d.ts
new file mode 100644
index 000000000000..423f9701a185
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/docs/types/index.d.ts
@@ -0,0 +1,132 @@
+/*
+* @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 quantile function for a Bradford distribution.
+*
+* ## Notes
+*
+* - If `c <= 0`, the function returns `NaN`.
+*
+* @param c - shape parameter
+* @returns evaluated quantile function
+*/
+type Unary = ( c: number ) => number;
+
+/**
+* Interface for the quantile function of a Bradford distribution.
+*/
+interface Quantile {
+ /**
+ * Evaluates the quantile function for a Bradford distribution with shape parameter `c` at a probability `p`.
+ *
+ * ## Notes
+ *
+ * - If `p < 0` or `p > 1`, the function returns `NaN`.
+ * - If `c <= 0`, the function returns `NaN`.
+ *
+ * @param p - input value
+ * @param c - shape parameter
+ * @returns evaluated quantile function
+ *
+ * @example
+ * var y = quantile( 0.1, 0.1 );
+ * // returns ~0.096
+ *
+ * @example
+ * var y = quantile( 0.5, 5.0 );
+ * // returns ~0.290
+ *
+ * @example
+ * var y = quantile( 1.0, 10.0 );
+ * // returns 1.0
+ *
+ * @example
+ * var y = quantile( 0.5, 0.0 );
+ * // returns NaN
+ *
+ * @example
+ * var y = quantile( 2.0, 0.5 );
+ * // returns NaN
+ *
+ * @example
+ * var y = quantile( -1.0, 0.5 );
+ * // returns NaN
+ *
+ * @example
+ * var y = quantile( NaN, 1.0 );
+ * // returns NaN
+ *
+ * @example
+ * var y = quantile( 1.0, NaN );
+ * // returns NaN
+ */
+ ( p: number, c: number ): number;
+
+ /**
+ * Returns a function for evaluating the quantile function for a Bradford distribution with shape parameter `c`.
+ *
+ * @param c - shape parameter
+ * @returns quantile function
+ *
+ * @example
+ * var myquantile = quantile.factory( 5.0 );
+ * var y = myquantile( 0.4 );
+ * // returns ~0.210
+ *
+ * y = myquantile( 0.8 );
+ * // returns ~0.639
+ *
+ * y = myquantile( 1.0 );
+ * // returns 1.0
+ */
+ factory( c: number ): Unary;
+}
+
+/**
+* Bradford distribution quantile function.
+*
+* @param p - input value
+* @param c - shape parameter
+* @returns evaluated quantile function
+*
+* @example
+* var y = quantile( 0.1, 0.1 );
+* // returns ~0.096
+*
+* y = quantile( 0.5, 5.0 );
+* // returns ~0.290
+*
+* var myquantile = quantile.factory( 5.0 );
+* y = myquantile( 0.4 );
+* // returns ~0.210
+*
+* y = myquantile( 0.8 );
+* // returns ~0.639
+*
+* y = myquantile( 1.0 );
+* // returns 1.0
+*/
+declare var quantile: Quantile;
+
+
+// EXPORTS //
+
+export = quantile;
diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/docs/types/test.ts b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/docs/types/test.ts
new file mode 100644
index 000000000000..f54a1238790b
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/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 quantile = require( './index' );
+
+
+// TESTS //
+
+// The function returns a number...
+{
+ quantile( 0.2, 0.2 ); // $ExpectType number
+ quantile( 0.1, 5.0 ); // $ExpectType number
+}
+
+// The compiler throws an error if the function is provided values other than two numbers...
+{
+ quantile( true, 0.3 ); // $ExpectError
+ quantile( false, 0.2 ); // $ExpectError
+ quantile( '5', 0.1 ); // $ExpectError
+ quantile( [], 0.1 ); // $ExpectError
+ quantile( {}, 0.2 ); // $ExpectError
+ quantile( ( x: number ): number => x, 0.2 ); // $ExpectError
+
+ quantile( 0.9, true ); // $ExpectError
+ quantile( 0.9, false ); // $ExpectError
+ quantile( 0.5, '5' ); // $ExpectError
+ quantile( 0.8, [] ); // $ExpectError
+ quantile( 0.9, {} ); // $ExpectError
+ quantile( 0.8, ( x: number ): number => x ); // $ExpectError
+}
+
+// The compiler throws an error if the function is provided an unsupported number of arguments...
+{
+ quantile(); // $ExpectError
+ quantile( 0.2 ); // $ExpectError
+ quantile( 0.2, 0.8, 4 ); // $ExpectError
+}
+
+// Attached to main export is a `factory` method which returns a function...
+{
+ quantile.factory( 0.3 ); // $ExpectType Unary
+}
+
+// The `factory` method returns a function which returns a number...
+{
+ const fcn = quantile.factory( 5.0 );
+ fcn( 0.2 ); // $ExpectType number
+}
+
+// The compiler throws an error if the function returned by the `factory` method is provided an invalid argument...
+{
+ const fcn = quantile.factory( 5.0 );
+ 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 = quantile.factory( 5.0 );
+ fcn(); // $ExpectError
+ fcn( 0.2, 0.8 ); // $ExpectError
+ fcn( 0.2, 0.8, 1 ); // $ExpectError
+}
+
+// The compiler throws an error if the `factory` method is provided a value other than a number...
+{
+ quantile.factory( true ); // $ExpectError
+ quantile.factory( false ); // $ExpectError
+ quantile.factory( '5' ); // $ExpectError
+ quantile.factory( [] ); // $ExpectError
+ quantile.factory( {} ); // $ExpectError
+ quantile.factory( ( x: number ): number => x ); // $ExpectError
+}
+
+// The compiler throws an error if the `factory` method is provided an unsupported number of arguments...
+{
+ quantile.factory( 0.2, 0.2 ); // $ExpectError
+ quantile.factory( 0.3, 0.4, 8 ); // $ExpectError
+}
diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/examples/index.js b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/examples/index.js
new file mode 100644
index 000000000000..81417abf9283
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/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 quantile = require( './../lib' );
+
+var p = uniform( 10, 0.0, 1.0 );
+var c = uniform( 10, 0.1, 10.0 );
+
+var y;
+var i;
+for ( i = 0; i < p.length; i++ ) {
+ y = quantile( p[ i ], c[ i ] );
+ console.log( 'p: %d, c: %d, Q(p;c): %d', p[ i ].toFixed( 4 ), c[ i ].toFixed( 4 ), y.toFixed( 4 ) );
+}
diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/lib/factory.js b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/lib/factory.js
new file mode 100644
index 000000000000..07e45fd9bd84
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/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 expm1 = require( '@stdlib/math/base/special/expm1' );
+var log1p = require( '@stdlib/math/base/special/log1p' );
+
+
+// MAIN //
+
+/**
+* Returns a function for evaluating the quantile function for a Bradford distribution with shape parameter `c`.
+*
+* @param {PositiveNumber} c - shape parameter
+* @returns {NonNegativeNumber} quantile function
+*
+* @example
+* var quantile = factory( 5.0 );
+* var y = quantile( 0.4 );
+* // returns ~0.210
+*
+* y = quantile( 0.8 );
+* // returns ~0.639
+*
+* y = quantile( 1.0 );
+* // returns 1.0
+*/
+function factory( c ) {
+ if (
+ isnan( c ) ||
+ c <= 0.0
+ ) {
+ return constantFunction( NaN );
+ }
+ return quantile;
+
+ /**
+ * Evaluates the quantile function for a Bradford distribution.
+ *
+ * @private
+ * @param {Probability} p - input value
+ * @returns {number} evaluated quantile function
+ *
+ * @example
+ * var y = quantile( 0.3 );
+ * // returns
+ */
+ function quantile( p ) {
+ if (
+ isnan( p ) ||
+ p < 0.0 ||
+ p > 1.0
+ ) {
+ return NaN;
+ }
+ return expm1( p * log1p( c ) ) / c;
+ }
+}
+
+
+// EXPORTS //
+
+module.exports = factory;
diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/lib/index.js b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/lib/index.js
new file mode 100644
index 000000000000..d75ca19b9d93
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/lib/index.js
@@ -0,0 +1,60 @@
+/**
+* @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 quantile function.
+*
+* @module @stdlib/stats/base/dists/bradford/quantile
+*
+* @example
+* var quantile = require( '@stdlib/stats/base/dists/bradford/quantile' );
+*
+* var y = quantile( 0.1, 0.1 );
+* // returns ~1.039
+*
+* var y = quantile( 0.5, 5.0 );
+* // returns ~0.797
+*
+* var myquantile = quantile.factory( 5.0 );
+* y = myquantile( 0.4 );
+* // returns 0
+*
+* y = myquantile( 0.8 );
+* // returns 1
+*
+* y = myquantile( 1.0 );
+* // returns 1
+*/
+
+// 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/quantile/lib/main.js b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/lib/main.js
new file mode 100644
index 000000000000..74f033d9b3d3
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/lib/main.js
@@ -0,0 +1,85 @@
+/**
+* @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 expm1 = require( '@stdlib/math/base/special/expm1' );
+var log1p = require( '@stdlib/math/base/special/log1p' );
+
+
+// MAIN //
+
+/**
+* Evaluates the quantile function for a Bradford distribution with shape parameter `c` at a probability `p`.
+*
+* @param {Probability} p - input value
+* @param {PositiveNumber} c - shape parameter
+* @returns {NonNegativeNumber} evaluated quantile function
+*
+* @example
+* var y = quantile( 0.1, 0.1 );
+* // returns ~0.096
+*
+* @example
+* var y = quantile( 0.5, 5.0 );
+* // returns ~0.290
+*
+* @example
+* var y = quantile( 1.0, 10.0 );
+* // returns 1.0
+*
+* @example
+* var y = quantile( 0.5, 0.0 );
+* // returns NaN
+*
+* @example
+* var y = quantile( 2.0, 0.5 );
+* // returns NaN
+*
+* @example
+* var y = quantile( -1.0, 0.5 );
+* // returns NaN
+*
+* @example
+* var y = quantile( NaN, 1.0 );
+* // returns NaN
+*
+* @example
+* var y = quantile( 1.0, NaN );
+* // returns NaN
+*/
+function quantile( p, c ) {
+ if (
+ isnan( c ) ||
+ isnan( p ) ||
+ c <= 0.0 ||
+ p < 0.0 ||
+ p > 1.0
+ ) {
+ return NaN;
+ }
+ return expm1( p * log1p( c ) ) / c;
+}
+
+
+// EXPORTS //
+
+module.exports = quantile;
diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/package.json b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/package.json
new file mode 100644
index 000000000000..5c66b6b3be18
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/package.json
@@ -0,0 +1,71 @@
+{
+ "name": "@stdlib/stats/base/dists/bradford/quantile",
+ "version": "0.0.0",
+ "description": "Bradford distribution quantile function.",
+ "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",
+ "probability",
+ "cdf",
+ "inverse",
+ "continuous",
+ "quantile",
+ "percentile",
+ "success probability",
+ "bradford",
+ "bradford distribution",
+ "bradford quantile",
+ "bradford inverse cdf",
+ "bradford inverse cumulative distribution function"
+ ]
+}
diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/test/fixtures/python/large_c.json b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/test/fixtures/python/large_c.json
new file mode 100644
index 000000000000..caeb90085fa6
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/test/fixtures/python/large_c.json
@@ -0,0 +1 @@
+{"p": [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.0002389833028541472, 0.00047590676740720506, 0.0007108183815227637, 0.000943764816425074, 0.001174791473540944, 0.0014039425293368721, 0.0016312609782518639, 0.0018567886738206105, 0.0020805663680763323, 0.0023026337493175517, 0.0025230294783183294, 0.0027417912230570953, 0.0029589556920350288, 0.0031745586662510934, 0.0033886350298971395, 0.003601218799833094, 0.0038123431538990295, 0.004022040458117868, 0.004230342292839643, 0.004437279477875593, 0.004642882096667773, 0.004847179519537589, 0.005050200426054369, 0.005251972826563013, 0.005452524082907754, 0.005651880928387242, 0.005850069486974341, 0.006047115291832427, 0.006243043303158346, 0.00643787792538078, 0.0066316430237412785, 0.006824361940283971, 0.0070160575092786965, 0.0072067520721010615, 0.0073964674915919, 0.0075852251659174665, 0.007773046041950748, 0.007959950628193298, 0.008145959007256122, 0.008331090847917241, 0.008515365416772822, 0.008698801589497936, 0.008881417861732296, 0.009063232359605638, 0.009244262849916791, 0.009424526749979742, 0.009604041137149567, 0.009782822758040408, 0.009960888037447208, 0.01013825308698239, 0.010314933713438213, 0.010490945426884939, 0.010666303448514778, 0.010841022718240898, 0.011015117902060468, 0.01118860339919044, 0.01136149334898427, 0.01153380163763747, 0.01170554190468964, 0.011876727549330165, 0.012047371736514673, 0.012217487402898793, 0.012387087262595783, 0.012556183812764079, 0.012724789339030774, 0.012892915920756578, 0.0130605754361479, 0.013227779567221107, 0.013394539804624106, 0.013560867452320066, 0.013726773632137906, 0.013892269288194073, 0.014057365191189804, 0.01422207194258818, 0.014386399978674762, 0.014550359574505763, 0.014713960847747403, 0.01487721376240999, 0.01504012813248014, 0.015202713625454401, 0.015364979765777519, 0.015526935938188309, 0.015688591390976142, 0.01584995523915081, 0.016011036467528546, 0.016171843933736822, 0.016332386371140473, 0.016492672391691547, 0.016652710488705244, 0.01681250903956435, 0.016972076308354123, 0.017131420448429947, 0.017290549504919758, 0.017449471417163145, 0.017608194021089072, 0.017766725051534114, 0.017925072144502906, 0.01808324283937253, 0.01824124458104255, 0.018399084722032277, 0.018556770524526763, 0.01871430916237307, 0.018871707723028264, 0.019028973209460537, 0.019186112542004717, 0.01934313256017363, 0.019500040024426433, 0.01965684161789524, 0.01981354394807117, 0.01997015354845102, 0.02012667688014557, 0.020283120333450675, 0.020439490229382254, 0.020595792821175945, 0.02075203429575265, 0.0209082207751508, 0.0210643583179262, 0.021220452920520518, 0.021376510518599033, 0.021532536988358716, 0.02168853814780726, 0.02184451975801392, 0.022000487524332944, 0.02215644709760036, 0.022312404075304576, 0.02246836400273186, 0.022624332374087182, 0.022780314633590894, 0.022936316176552236, 0.02309234235042004, 0.023248398455811253, 0.02340448974751792, 0.02356062143549311, 0.023716798685816384, 0.023873026621639353, 0.024029310324111684, 0.024185654833288314, 0.024342065149018044, 0.02449854623181426, 0.024655103003708056, 0.02481174034908426, 0.024968463115500786, 0.025125276114491783, 0.025282184122354844, 0.025439191880922852, 0.02559630409832068, 0.02575352544970725, 0.02591086057800322, 0.026068314094604663, 0.02622589058008316, 0.026383594584872532, 0.026541430629942568, 0.026699403207460184, 0.02685751678143805, 0.027015775788371266, 0.027174184637862253, 0.027332747713234042, 0.02749146937213245, 0.02765035394711731, 0.027809405746242823, 0.02796862905362771, 0.02812802813001495, 0.02828760721332175, 0.028447370519179598, 0.02860732224146503, 0.02876746655282088, 0.02892780760516868, 0.029088349530212092, 0.029249096439931777, 0.02941005242707172, 0.029571221565617353, 0.029732607911265672, 0.029894215501887377, 0.030056048357981376, 0.030218110483121823, 0.030380405864397598, 0.030542938472844915, 0.03070571226387261, 0.03086873117768078, 0.03103199913967262, 0.031195520060859686, 0.03135929783826086, 0.03152333635529491, 0.031687639482167004, 0.031852211076249276, 0.032017054982455426, 0.032182175033609726, 0.03234757505081027, 0.032513258843786925, 0.032679230211253844, 0.03284549294125671, 0.033012050811514905, 0.03317890758975871, 0.03334606703406157, 0.03351353289316752, 0.033681308906814054, 0.033849398806050285, 0.03401780631355073, 0.03418653514392459, 0.03435558900402092, 0.034524971593229405, 0.03469468660377719, 0.03486473772102163, 0.0350351286237391, 0.035205862984410016, 0.03537694446950003, 0.03554837673973763, 0.03572016345038808, 0.035892308251523806, 0.03606481478829154, 0.03623768670117577, 0.036410927626259214, 0.03658454119547983, 0.03675853103688486, 0.03693290077488157, 0.03710765403048523, 0.037282794421563875, 0.03745832556308042, 0.03763425106733174, 0.03781057454418505, 0.0379872996013117, 0.038164429844418084, 0.038341968877474174, 0.03851992030293934, 0.03869828772198586, 0.03887707473471985, 0.039056284940399866, 0.03923592193765328, 0.03941598932469017, 0.03959649069951518, 0.03977742966013714, 0.03995880980477649, 0.040140634732070746, 0.04032290804127775, 0.040505633332477135, 0.0406888142067697, 0.04087245426647488, 0.04105655711532641, 0.04124112635866617, 0.04142616560363614, 0.041611678459368744, 0.04179766853717536, 0.04198413945073331, 0.04217109481627104, 0.042358538252751876, 0.04254647338205608, 0.0427349038291615, 0.0429238332223226, 0.04311326519324818, 0.0433032033772776, 0.043493651413555476, 0.043684612945205335, 0.043876091619501636, 0.04406809108804067, 0.04426061500691012, 0.04445366703685736, 0.044647250843456644, 0.04484137009727509, 0.04503602847403729, 0.04523122965478922, 0.04542697732606065, 0.04562327518002673, 0.04582012691466834, 0.046017536233931636, 0.046215506847886445, 0.046414042472883686, 0.046613146831711944, 0.04681282365375305, 0.047013076675136725, 0.04721390963889452, 0.0474153262951126, 0.04761733040108405, 0.047819925721460085, 0.048023116028400606, 0.048226905101724, 0.048431296729056036, 0.048636294705978335, 0.04884190283617579, 0.04904812493158348, 0.04925496481253299, 0.04946242630789789, 0.049670513255238705, 0.04987922950094723, 0.05008857890039027, 0.05029856531805287, 0.05050919262768078, 0.05072046471242263, 0.050932385464971336, 0.05114495878770533, 0.051358188592828896, 0.05157207880251229, 0.05178663334903144, 0.052001856174906894, 0.052217751233042765, 0.05243432248686496, 0.05265157391045899, 0.05286950948870772, 0.05308813321742833, 0.053307449103509305, 0.053527461165046725, 0.0537481734314806, 0.05396958994373059, 0.0541917147543315, 0.05441455192756874, 0.05463810553961299, 0.054862379678655274, 0.05508737844504117, 0.055313105951405116, 0.05553956632280456, 0.05576676369685356, 0.05599470222385663, 0.056223386066942, 0.05645281940219491, 0.05668300641879087, 0.056913951319128346, 0.057145658318961776, 0.05737813164753422, 0.0576113755477099, 0.057845394276106646, 0.05808019210322835, 0.05831577331359722, 0.058552142205886046, 0.05878930309305019, 0.05902726030246, 0.05926601817603257, 0.05950558107036401, 0.059745953356861344, 0.05998713942187451, 0.06022914366682849, 0.06047197050835517, 0.060715624378425495, 0.06096010972448145, 0.061205431009568254, 0.06145159271246641, 0.061698599327823934, 0.061946455366288684, 0.06219516535464067, 0.06244473383592438, 0.06269516536958149, 0.06294646453158328, 0.06319863591456358, 0.06345168412795131, 0.06370561379810383, 0.0639604295684397, 0.06421613609957211, 0.06447273806944233, 0.06473024017345301, 0.06498864712460224, 0.06524796365361726, 0.06550819450908853, 0.06576934445760402, 0.06603141828388384, 0.06629442079091473, 0.06655835680008505, 0.06682323115131986, 0.06708904870321639, 0.06735581433317941, 0.0676235329375573, 0.06789220943177803, 0.06816184875048546, 0.06843245584767607, 0.06870403569683574, 0.06897659329107701, 0.06925013364327652, 0.06952466178621276, 0.06980018277270411, 0.07007670167574727, 0.07035422358865596, 0.07063275362519975, 0.07091229691974374, 0.07119285862738804, 0.07147444392410768, 0.07175705800689335, 0.07204070609389183, 0.07232539342454726, 0.07261112525974256, 0.07289790688194128, 0.07318574359533002, 0.07347464072596077, 0.07376460362189423, 0.0740556376533431, 0.074347748212816, 0.0746409407152618, 0.07493522059821411, 0.07523059332193675, 0.07552706436956905, 0.07582463924727198, 0.07612332348437459, 0.07642312263352102, 0.07672404227081778, 0.07702608799598175, 0.07732926543248823, 0.07763358022772027, 0.0779390380531174, 0.07824564460432598, 0.07855340560134906, 0.07886232678869748, 0.07917241393554113, 0.07948367283586068, 0.07979610930860023, 0.08010972919781997, 0.0804245383728497, 0.0807405427284429, 0.08105774818493124, 0.08137616068837962, 0.08169578621074194, 0.08201663075001725, 0.0823387003304067, 0.0826620010024707, 0.0829865388432872, 0.08331231995660995, 0.08363935047302803, 0.08396763655012537, 0.08429718437264112, 0.08462800015263096, 0.08496009012962841, 0.08529346057080733, 0.08562811777114473, 0.08596406805358428, 0.08630131776920057, 0.086639873297364, 0.08697974104590615, 0.08732092745128622, 0.0876634389787575, 0.08800728212253534, 0.08835246340596495, 0.08869898938169059, 0.08904686663182514, 0.08939610176812025, 0.08974670143213757, 0.09009867229542025, 0.09045202105966564, 0.09080675445689826, 0.09116287924964384, 0.091520402231104, 0.09187933022533139, 0.09223967008740631, 0.09260142870361311, 0.09296461299161823, 0.09332922990064849, 0.09369528641167033, 0.09406278953756979, 0.09443174632333333, 0.09480216384622944, 0.09517404921599099, 0.09554740957499838, 0.09592225209846372, 0.09629858399461533, 0.09667641250488379, 0.09705574490408818, 0.09743658850062333, 0.09781895063664822, 0.09820283868827485, 0.09858826006575817, 0.09897522221368678, 0.0993637326111745, 0.09975379877205295, 0.10014542824506488, 0.10053862861405832, 0.100933407498182, 0.10132977255208096, 0.10172773146609407, 0.10212729196645133, 0.102528461815473, 0.1029312488117694, 0.10333566079044125, 0.10374170562328153, 0.10414939121897777, 0.1045587255233159, 0.10496971651938429, 0.10538237222777956, 0.10579670070681266, 0.10621271005271639, 0.10663040839985378, 0.10704980392092737, 0.1074709048271896, 0.1078937193686542, 0.10831825583430836, 0.10874452255232649, 0.10917252789028423, 0.10960228025537427, 0.11003378809462253, 0.11046705989510586, 0.11090210418417065, 0.11133892952965237, 0.11177754454009638, 0.11221795786497968, 0.11266017819493376, 0.1131042142619688, 0.11355007483969819, 0.11399776874356536, 0.1144473048310706, 0.11489869200199945, 0.11535193919865254, 0.11580705540607597, 0.11626404965229309, 0.11672293100853756, 0.1171837085894873, 0.11764639155349996, 0.11811098910284888, 0.11857751048396127, 0.11904596498765643, 0.11951636194938599, 0.1199887107494751, 0.12046302081336466, 0.12093930161185486, 0.12141756266135004, 0.12189781352410478, 0.12238006380847107, 0.12286432316914672, 0.12335060130742512, 0.12383890797144642, 0.12432925295644975, 0.12482164610502648, 0.1253160973073755, 0.12581261650155867, 0.12631121367375903, 0.1268118988585389, 0.12731468213910008, 0.12781957364754548, 0.12832658356514107, 0.12883572212258065, 0.12934699960025098, 0.12986042632849815, 0.13037601268789611, 0.1308937691095155, 0.13141370607519537, 0.13193583411781448, 0.13246016382156536, 0.13298670582222943, 0.13351547080745266, 0.13404646951702437, 0.13457971274315597, 0.13511521133076138, 0.1356529761777398, 0.13619301823525895, 0.13673534850803978, 0.1372799780546438, 0.1378269179877604, 0.1383761794744965, 0.13892777373666765, 0.13948171205109047, 0.1400380057498765, 0.14059666622072797, 0.14115770490723487, 0.141721133309173, 0.1422869629828048, 0.14285520554118084, 0.14342587265444293, 0.1439989760501289, 0.1445745275134797, 0.14515253888774662, 0.14573302207450137, 0.14631598903394727, 0.14690145178523192, 0.14748942240676224, 0.1480799130365201, 0.1486729358723806, 0.14926850317243096, 0.14986662725529204, 0.15046732050044137, 0.15107059534853723, 0.15167646430174533, 0.1522849399240664, 0.15289603484166583, 0.15350976174320535, 0.15412613338017608, 0.1547451625672332, 0.1553668621825331, 0.155991245168071, 0.15661832453002184, 0.15724811333908215, 0.1578806247308138, 0.15851587190598948, 0.15915386813094012, 0.1597946267379045, 0.16043816112538012, 0.1610844847584762, 0.16173361116926857, 0.16238555395715631, 0.16304032678922048, 0.16369794340058444, 0.16435841759477665, 0.1650217632440945, 0.16568799428997097, 0.16635712474334263, 0.1670291686850201, 0.1677041402660596, 0.168382053708138, 0.16906292330392766, 0.16974676341747585, 0.17043358848458395, 0.17112341301318984, 0.17181625158375244, 0.17251211884963694, 0.17321102953750436, 0.17391299844770092, 0.174618040454651, 0.17532617050725122, 0.17603740362926737, 0.17675175491973308, 0.17746923955335064, 0.1781898727808941, 0.1789136699296145, 0.17964064640364644, 0.18037081768441893, 0.18110419933106608, 0.18184080698084135, 0.18258065634953324, 0.18332376323188446, 0.18407014350201178, 0.18481981311382917, 0.18557278810147285, 0.1863290845797289, 0.18708871874446206, 0.1878517068730492, 0.18861806532481237, 0.1893878105414557, 0.19016095904750493, 0.19093752745074777, 0.19171753244267897, 0.19250099079894478, 0.1932879193797929, 0.19407833513052244, 0.19487225508193767, 0.1956696963508036, 0.19647067614030472, 0.1972752117405047, 0.1980833205288102, 0.198895019970437, 0.1997103276188772, 0.2005292611163704, 0.2013518381943771, 0.20217807667405435, 0.20300799446673387, 0.20384160957440337, 0.2046789400901898, 0.2055200041988459, 0.2063648201772385, 0.20721340639484012, 0.20806578131422354, 0.20892196349155767, 0.2097819715771076, 0.2106458243157365, 0.2115135405474106, 0.21238513920770657, 0.21326063932832254, 0.2141400600375902, 0.21502342056099127, 0.2159107402216759, 0.21680203844098464, 0.2176973347389725, 0.21859664873493587, 0.21950000014794244, 0.22040740879736467, 0.22131889460341553, 0.22223447758768647, 0.22315417787368988, 0.22407801568740274, 0.22500601135781523, 0.2259381853174802, 0.22687455810306756, 0.22781515035592, 0.2287599828226127, 0.22970907635551638, 0.23066245191336207, 0.2316201305618106, 0.23258213347402434, 0.23354848193124084, 0.23451919732335272, 0.23549430114948777, 0.23647381501859321, 0.23745776065002383, 0.23844615987413184, 0.239439034632862, 0.2404364069803478, 0.24143829908351225, 0.24244473322267138, 0.24345573179214175, 0.24447131730085062, 0.2454915123729491, 0.24651633974842962, 0.2475458222837459, 0.24857998295243752, 0.24961884484575586, 0.2506624311732961, 0.2517107652636298, 0.25276387056494326, 0.25382177064567857, 0.2548844891951776, 0.2559520500243302, 0.25702447706622633, 0.25810179437680986, 0.25918402613553815, 0.2602711966460449, 0.2613633303368048, 0.262460451761804, 0.26356258560121276, 0.26466975666206277, 0.265781989878928, 0.2668993103146085, 0.26802174316081867, 0.2691493137388789, 0.27028204750041246, 0.2714199700280433, 0.2725631070361006, 0.27371148437132525, 0.2748651280135811, 0.2760240640765699, 0.27718831880855055, 0.2783579185930616, 0.2795328899496485, 0.2807132595345925, 0.2818990541416481, 0.2830903007027809, 0.2842870262889095, 0.2854892581106536, 0.28669702351908466, 0.28791035000648113, 0.289129265207088, 0.29035379689788027, 0.2915839729993303, 0.2928198215761802, 0.29406137083821793, 0.29530864914105726, 0.29656168498692387, 0.29782050702544316, 0.29908514405443365, 0.3003556250207055, 0.3016319790208629, 0.3029142353021092, 0.30420242326305985, 0.3054965724545564, 0.30679671258048724, 0.3081028734986119, 0.3094150852213909, 0.3107333779168176, 0.31205778190925837, 0.31338832768029456, 0.31472504586956973, 0.31606796727564235, 0.3174171228568424, 0.3187725437321334, 0.3201342611819784, 0.32150230664921153, 0.32287671173991284, 0.32425750822429034, 0.3256447280375658, 0.32703840328086387, 0.3284385662221093, 0.3298452492969258, 0.33125848510954214, 0.33267830643370333, 0.33410474621358455, 0.3355378375647126, 0.33697761377489177, 0.33842410830513253, 0.33987735479059095, 0.3413373870415063, 0.34280423904414886, 0.3442779449617718, 0.34575853913556664, 0.347246056085626, 0.34874053051191145, 0.35024199729522526, 0.35175049149818927, 0.35326604836622755, 0.3547887033285568, 0.35631849199917875, 0.3578554501778823, 0.35939961385124775, 0.36095101919365746, 0.36250970256831405, 0.36407570052826155, 0.36564904981741303, 0.3672297873715868, 0.36881795031954184, 0.37041357598402597, 0.37201670188282665, 0.3736273657298262, 0.37524560543606617, 0.3768714591108147, 0.3785049650626416, 0.3801461618004984, 0.38179508803480644, 0.3834517826785467, 0.3851162848483607, 0.386788633865654, 0.38846886925770713, 0.3901570307587936, 0.3918531583113014, 0.3935572920668637, 0.39526947238749416, 0.3969897398467296, 0.3987181352307771, 0.4004546995396702, 0.402199473988429, 0.4039525000082284, 0.40571381924757266, 0.40748347357347453, 0.4092615050726454, 0.4110479560526854, 0.4128428690432869, 0.41464628679744087, 0.416458252292651, 0.41827880873215295, 0.4201079995461438, 0.4219458683930158, 0.423792459160597, 0.42564781596739987, 0.4275119831638767, 0.4293850053336801, 0.43126692729493515, 0.433157794101512, 0.43505765104431227, 0.43696654365255766, 0.438884517695088, 0.4408116191816667, 0.4427478943642929, 0.4446933897385202, 0.4466481520447833, 0.448612228269735, 0.45058566564758457, 0.45256851166144885, 0.4545608140447085, 0.456562620782372, 0.4585739801124487, 0.4605949405273269, 0.46262555077516365, 0.46466585986127706, 0.46671591704954984, 0.46877577186384173, 0.47084547408940686, 0.47292507377431997, 0.47501462123091165, 0.4771141670372103, 0.47922376203839384, 0.4813434573482464, 0.4834733043506276, 0.4856133547009459, 0.4877636603276435, 0.48992427343368555, 0.4920952464980628, 0.4942766322772994, 0.49646848380696795, 0.4986708544032167, 0.5008837976643034, 0.5031073674721362, 0.5053416179938274, 0.5075866036832501, 0.5098423792826092, 0.5121089998240178, 0.5143865206310841, 0.5166749973205043, 0.5189744858036699, 0.5212850422882777, 0.5236067232799545, 0.5259395855838855, 0.5282836863064573, 0.530639082856905, 0.5330058329489732, 0.535383994602582, 0.5377736261455063, 0.5401747862150611, 0.5425875337597986, 0.5450119280412143, 0.5474480286354614, 0.549895895435077, 0.5523555886507169, 0.5548271688128975, 0.5573106967737549, 0.5598062337088032, 0.5623138411187145, 0.5648335808310987, 0.5673655150022977, 0.5699097061191938, 0.5724662170010175, 0.5750351108011776, 0.5776164510090935, 0.5802103014520399, 0.5828167262970025, 0.5854357900525456, 0.5880675575706864, 0.5907120940487827, 0.5933694650314287, 0.5960397364123684, 0.5987229744364088, 0.6014192457013519, 0.6041286171599368, 0.6068511561217883, 0.6095869302553818, 0.6123360075900172, 0.6150984565178017, 0.6178743457956469, 0.6206637445472749, 0.6234667222652382, 0.6262833488129492, 0.6291136944267219, 0.6319578297178231, 0.6348158256745376, 0.6376877536642452, 0.6405736854355071, 0.6434736931201659, 0.6463878492354584, 0.6493162266861338, 0.6522588987665965, 0.6552159391630475, 0.6581874219556457, 0.6611734216206809, 0.6641740130327548, 0.667189271466979, 0.670219272601184, 0.6732640925181392, 0.6763238077077872, 0.6793984950694879, 0.6824882319142817, 0.6855930959671567, 0.6887131653693355, 0.6918485186805742, 0.6949992348814683, 0.6981653933757798, 0.7013470739927723, 0.7045443569895625, 0.7077573230534806, 0.7109860533044482, 0.7142306292973699, 0.7174911330245329, 0.7207676469180275, 0.7240602538521763, 0.7273690371459774, 0.730694080565566, 0.7340354683266836, 0.7373932850971658, 0.7407676159994397, 0.7441585466130457, 0.7475661629771546, 0.7509905515931223, 0.7544317994270403, 0.757889993912308, 0.7613652229522213, 0.7648575749225737, 0.7683671386742698, 0.7718940035359585, 0.7754382593166755, 0.7789999963085088, 0.7825793052892696, 0.7861762775251844, 0.7897910047736021, 0.7934235792857168, 0.797074093809299, 0.8007426415914548, 0.8044293163813918, 0.8081342124331982, 0.8118574245086487, 0.8155990478800167, 0.819359178332906, 0.8231379121690994, 0.8269353462094212, 0.8307515777966153, 0.8345867047982463, 0.8384408256096074, 0.8423140391566538, 0.8462064448989433, 0.8501181428326045, 0.8540492334933125, 0.857999817959286, 0.861969997854304, 0.8659598753507299, 0.869969553172566, 0.8739991345985126, 0.878048723465056, 0.8821184241695647, 0.8862083416734086, 0.8903185815050934, 0.8944492497634163, 0.8986004531206353, 0.9027722988256566, 0.9069648947072454, 0.9111783491772512, 0.9154127712338481, 0.9196682704648034, 0.9239449570507519, 0.9282429417685019, 0.9325623359943473, 0.9369032517074126, 0.9412658014929997, 0.9456500985459763, 0.9500562566741566, 0.9544843903017228, 0.9589346144726635, 0.9634070448542156, 0.9679017977403456, 0.9724189900552374, 0.9769587393568087, 0.9815211638402414, 0.9861063823415342, 0.9907145143410778, 0.9953456799672428, 1.0]}
diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/test/fixtures/python/medium_c.json b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/test/fixtures/python/medium_c.json
new file mode 100644
index 000000000000..40ecc8c1e9a1
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/test/fixtures/python/medium_c.json
@@ -0,0 +1 @@
+{"p": [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.000692346450731655, 0.0013817296793713835, 0.0020681881378419495, 0.002751759716962742, 0.003432481757334349, 0.004110391059967932, 0.004785523896666505, 0.005457916020164915, 0.006127602674035159, 0.006794618602363445, 0.007458998059205205, 0.008120774817824038, 0.008779982179720503, 0.009436652983456247, 0.010090819613279149, 0.010742514007554547, 0.0113917676670079, 0.012038611662783727, 0.012683076644325693, 0.013325192847082577, 0.013964990100044582, 0.01460249783311445, 0.015237745084317664, 0.015870760506855788, 0.01650157237600718, 0.017130208595878688, 0.017756696706012428, 0.018381063887851084, 0.019003336971065432, 0.019623542439747517, 0.020241706438472853, 0.02085785477823495, 0.021472012942255245, 0.022084206091671686, 0.022694459071108782, 0.02330279641413221, 0.023909242348590643, 0.024513820801847743, 0.025116555405906727, 0.02571746950243041, 0.026316586147658978, 0.026913928117228175, 0.02750951791089012, 0.02810337775713914, 0.02869552961774491, 0.029285995192195113, 0.029874795922049502, 0.030461952995208003, 0.03104748735009421, 0.03163141967975667, 0.0322137704358899, 0.0327945598327766, 0.03337380785115338, 0.033951534242001376, 0.03452775853026371, 0.035102500018491425, 0.035675777790419215, 0.03624761071447324, 0.03681801744721173, 0.03738701643670056, 0.0379546259258249, 0.03852086395553839, 0.03908574836805143, 0.039649296809959794, 0.040211526735314786, 0.04077245540863655, 0.04133209990787146, 0.041890477127294885, 0.0424476037803608, 0.04300349640249894, 0.043558171353861086, 0.04411164482201724, 0.044663932824602855, 0.04521505121191854, 0.04576501566948244, 0.04631384172053736, 0.04686154472851254, 0.04740813989944184, 0.04795364228433895, 0.048498066781530395, 0.04904142813894742, 0.049583740956377624, 0.05012501968767719, 0.050665278642944095, 0.05120453199065402, 0.051742793759758765, 0.05228007784174844, 0.05281639799267841, 0.05335176783516091, 0.0538862008603229, 0.054419710429730456, 0.05495230977728037, 0.05548401201105951, 0.056014830115173074, 0.05654477695154175, 0.0570738652616689, 0.057602107668378005, 0.05812951667752114, 0.058656104679659225, 0.05918188395171405, 0.05970686665859351, 0.06023106485478945, 0.06075449048594985, 0.06127715539042495, 0.0617990713007882, 0.062320249845332513, 0.06284070254954237, 0.0633604408375418, 0.06387947603351948, 0.06439781936313063, 0.06491548195487652, 0.06543247484146215, 0.06594880896113206, 0.06646449515898525, 0.06697954418826899, 0.0674939667116526, 0.06800777330248094, 0.06852097444600845, 0.06903358054061373, 0.06954560189899557, 0.07005704874934997, 0.07056793123652941, 0.07107825942318392, 0.07158804329088472, 0.07209729274123078, 0.0726060175969383, 0.07311422760291363, 0.07362193242730997, 0.07412914166256816, 0.07463586482644148, 0.07514211136300548, 0.07564789064365214, 0.0761532119680697, 0.07665808456520748, 0.07716251759422674, 0.07766652014543694, 0.07817010124121888, 0.07867326983693369, 0.07917603482181856, 0.07967840501986971, 0.08018038919071217, 0.08068199603045693, 0.08118323417254596, 0.08168411218858448, 0.08218463858916193, 0.08268482182466058, 0.08318467028605281, 0.08368419230568706, 0.08418339615806249, 0.08468229006059258, 0.08518088217435833, 0.0856791806048502, 0.08617719340270025, 0.08667492856440369, 0.08717239403303019, 0.08766959769892599, 0.0881665474004053, 0.08866325092443288, 0.0891597160072969, 0.08965595033527256, 0.09015196154527672, 0.09064775722551335, 0.09114334491611048, 0.09163873210974832, 0.09213392625227881, 0.09262893474333715, 0.0931237649369445, 0.0936184241421033, 0.09411291962338396, 0.09460725860150433, 0.09510144825390102, 0.09559549571529317, 0.09608940807823926, 0.09658319239368592, 0.09707685567151007, 0.09757040488105356, 0.09806384695165113, 0.09855718877315134, 0.09905043719643086, 0.09954359903390204, 0.1000366810600139, 0.10052969001174668, 0.10102263258910034, 0.10151551545557636, 0.10200834523865376, 0.10250112853025906, 0.10299387188722994, 0.10348658183177363, 0.10397926485191912, 0.10447192740196375, 0.10496457590291441, 0.10545721674292309, 0.10594985627771716, 0.10644250083102408, 0.1069351566949913, 0.1074278301306006, 0.10792052736807745, 0.10841325460729562, 0.10890601801817644, 0.10939882374108374, 0.10989167788721366, 0.11038458653897953, 0.11087755575039303, 0.11137059154743975, 0.1118636999284508, 0.11235688686447007, 0.11285015829961696, 0.11334352015144478, 0.11383697831129513, 0.1143305386446479, 0.11482420699146746, 0.11531798916654448, 0.11581189095983402, 0.11630591813678968, 0.11680007643869392, 0.11729437158298414, 0.11778880926357603, 0.1182833951511821, 0.11877813489362742, 0.1192730341161612, 0.11976809842176526, 0.12026333339145899, 0.12075874458460045, 0.12125433753918484, 0.12175011777213883, 0.12224609077961239, 0.12274226203726697, 0.12323863700056031, 0.12373522110502888, 0.12423201976656613, 0.12472903838169874, 0.12522628232785968, 0.1257237569636573, 0.12622146762914316, 0.12671941964607542, 0.1272176183181807, 0.12771606893141232, 0.1282147767542059, 0.12871374703773275, 0.12921298501614994, 0.12971249590684827, 0.13021228491069733, 0.1307123572122881, 0.13121271798017312, 0.1317133723671039, 0.13221432551026643, 0.1327155825315137, 0.13321714853759586, 0.1337190286203887, 0.13422122785711926, 0.13472375131058878, 0.13522660402939465, 0.13572979104814883, 0.13623331738769487, 0.13673718805532245, 0.13724140804498003, 0.13774598233748514, 0.13825091590073282, 0.13875621368990187, 0.1392618806476594, 0.13976792170436264, 0.14027434177825995, 0.14078114577568898, 0.14128833859127304, 0.14179592510811628, 0.14230391019799604, 0.14281229872155426, 0.14332109552848651, 0.14383030545772932, 0.14433993333764633, 0.14484998398621177, 0.14536046221119323, 0.14587137281033183, 0.14638272057152163, 0.14689451027298647, 0.1474067466834563, 0.1479194345623407, 0.1484325786599018, 0.14894618371742555, 0.14946025446739064, 0.14997479563363708, 0.15048981193153232, 0.15100530806813664, 0.15152128874236662, 0.15203775864515737, 0.15255472245962332, 0.15307218486121787, 0.1535901505178913, 0.15410862409024714, 0.15462761023169838, 0.15514711358862085, 0.15566713880050634, 0.156187690500114, 0.15670877331362057, 0.15723039186076998, 0.15775255075502004, 0.15827525460369016, 0.15879850800810583, 0.15932231556374388, 0.15984668186037457, 0.1603716114822039, 0.1608971090080149, 0.16142317901130623, 0.16194982606043212, 0.16247705471873866, 0.16300486954470111, 0.16353327509205884, 0.1640622759099498, 0.164591876543044, 0.16512208153167543, 0.16565289541197412, 0.16618432271599548, 0.16671636797185055, 0.16724903570383393, 0.16778233043255142, 0.16831625667504627, 0.16885081894492535, 0.16938602175248324, 0.16992186960482666, 0.1704583670059966, 0.17099551845709093, 0.17153332845638572, 0.17207180149945525, 0.1726109420792914, 0.17315075468642266, 0.17369124380903192, 0.17423241393307345, 0.17477426954238925, 0.1753168151188244, 0.17586005514234182, 0.17640399409113638, 0.17694863644174808, 0.1774939866691742, 0.17804004924698155, 0.17858682864741693, 0.17913432934151782, 0.17968255579922202, 0.18023151248947608, 0.1807812038803442, 0.18133163443911515, 0.18188280863240963, 0.1824347309262863, 0.18298740578634734, 0.18354083767784368, 0.1840950310657787, 0.18464999041501295, 0.185205720190366, 0.18576222485671998, 0.18631950887912105, 0.18687757672288066, 0.18743643285367653, 0.18799608173765237, 0.18855652784151802, 0.1891177756326483, 0.18967982957918122, 0.19024269415011646, 0.19080637381541232, 0.19137087304608294, 0.19193619631429473, 0.19250234809346192, 0.19306933285834235, 0.19363715508513188, 0.19420581925155941, 0.1947753298369803, 0.1953456913224699, 0.19591690819091676, 0.19648898492711483, 0.1970619260178558, 0.1976357359520205, 0.19821041922067031, 0.19878598031713776, 0.19936242373711655, 0.19993975397875222, 0.20051797554273068, 0.20109709293236802, 0.2016771106536989, 0.20225803321556451, 0.2028398651297011, 0.2034226109108267, 0.20400627507672908, 0.20459086214835168, 0.2051763766498803, 0.20576282310882935, 0.20635020605612703, 0.20693853002620094, 0.20752779955706294, 0.20811801919039358, 0.20870919347162664, 0.20930132695003298, 0.2098944241788038, 0.21048848971513473, 0.21108352812030773, 0.21167954395977456, 0.212276541803239, 0.21287452622473846, 0.2134735018027265, 0.21407347312015346, 0.21467444476454806, 0.2152764213280984, 0.21587940740773237, 0.21648340760519805, 0.2170884265271438, 0.21769446878519808, 0.2183015389960489, 0.21890964178152325, 0.21951878176866624, 0.22012896358981954, 0.22074019188270017, 0.22135247129047914, 0.22196580646185882, 0.22258020205115145, 0.2231956627183562, 0.2238121931292374, 0.22442979795540058, 0.22504848187437074, 0.22566824956966808, 0.2262891057308852, 0.22691105505376297, 0.22753410224026713, 0.22815825199866402, 0.22878350904359676, 0.22940987809615998, 0.2300373638839762, 0.2306659711412704, 0.23129570460894552, 0.23192656903465697, 0.23255856917288775, 0.23319170978502238, 0.23382599563942225, 0.2344614315114988, 0.23509802218378836, 0.2357357724460258, 0.2363746870952182, 0.23701477093571874, 0.23765602877930012, 0.23829846544522754, 0.2389420857603328, 0.2395868945590862, 0.24023289668367054, 0.24088009698405363, 0.24152850031806053, 0.24217811155144692, 0.24282893555797097, 0.24348097721946615, 0.2441342414259131, 0.24478873307551202, 0.24544445707475462, 0.24610141833849628, 0.24675962179002736, 0.24741907236114558, 0.24807977499222744, 0.24874173463229954, 0.24940495623911033, 0.25006944477920157, 0.2507352052279796, 0.25140224256978616, 0.25207056179797016, 0.2527401679149586, 0.2534110659323272, 0.2540832608708721, 0.25475675776067974, 0.2554315616411986, 0.25610767756130964, 0.2567851105793968, 0.2574638657634179, 0.25814394819097536, 0.25882536294938624, 0.2595081151357531, 0.26019220985703484, 0.2608776522301161, 0.2615644473818787, 0.26225260044927134, 0.2629421165793801, 0.26363300092949865, 0.2643252586671985, 0.2650188949703996, 0.2657139150274397, 0.26641032403714515, 0.2671081272089012, 0.2678073297627213, 0.2685079369293182, 0.2692099539501733, 0.26991338607760706, 0.27061823857484907, 0.2713245167161079, 0.27203222578664166, 0.2727413710828276, 0.27345195791223204, 0.274163991593681, 0.2748774774573297, 0.27559242084473323, 0.2763088271089161, 0.27702670161444237, 0.2777460497374861, 0.27846687686590105, 0.27918918839929124, 0.2799129897490807, 0.2806382863385836, 0.28136508360307544, 0.2820933869898614, 0.2828232019583485, 0.28355453398011443, 0.28428738853897895, 0.2850217711310731, 0.28575768726491096, 0.2864951424614584, 0.2872341422542051, 0.28797469218923377, 0.28871679782529164, 0.2894604647338604, 0.29020569849922695, 0.2909525047185543, 0.2917008890019517, 0.29245085697254636, 0.2932024142665534, 0.293955566533347, 0.2947103194355313, 0.29546667864901144, 0.2962246498630647, 0.29698423878041164, 0.29774545111728656, 0.29850829260350975, 0.2992727689825583, 0.3000388860116374, 0.300806649461752, 0.30157606511777807, 0.30234713877853436, 0.3031198762568544, 0.3038942833796572, 0.30467036598802083, 0.3054481299372522, 0.3062275810969605, 0.30700872535112944, 0.30779156859818796, 0.30857611675108415, 0.30936237573735664, 0.31015035149920694, 0.3109400499935726, 0.3117314771921994, 0.3125246390817142, 0.31331954166369763, 0.31411619095475707, 0.3149145929866001, 0.31571475380610664, 0.3165166794754035, 0.31732037607193614, 0.3181258496885434, 0.318933106433531, 0.3197421524307443, 0.3205529938196424, 0.3213656367553731, 0.3221800874088452, 0.322996351966804, 0.3238144366319046, 0.32463434762278714, 0.32545609117415064, 0.3262796735368278, 0.3271051009778598, 0.32793237978057116, 0.3287615162446445, 0.3295925166861964, 0.33042538743785155, 0.331260134848819, 0.3320967652849679, 0.33293528512890164, 0.3337757007800356, 0.3346180186546719, 0.3354622451860758, 0.33630838682455216, 0.3371564500375211, 0.3380064413095952, 0.3388583671426563, 0.33971223405593143, 0.34056804858607087, 0.34142581728722415, 0.3422855467311185, 0.34314724350713505, 0.34401091422238755, 0.3448765655017997, 0.34574420398818184, 0.3466138363423117, 0.3474854692430098, 0.34835910938721976, 0.349234763490086, 0.35011243828503225, 0.3509921405238415, 0.35187387697673367, 0.3527576544324462, 0.3536434796983125, 0.35453135960034143, 0.355421300983298, 0.3563133107107827, 0.35720739566531134, 0.35810356274839594, 0.35900181888062466, 0.3599021710017427, 0.3608046260707334, 0.3617091910658986, 0.3626158729849409, 0.36352467884504336, 0.364435615682953, 0.3653486905550615, 0.366263910537487, 0.3671812827261574, 0.36810081423689134, 0.3690225122054812, 0.3699463837877767, 0.37087243615976717, 0.3718006765176641, 0.3727311120779854, 0.3736637500776396, 0.37459859777400734, 0.3755356624450279, 0.37647495138928155, 0.3774164719260751, 0.37836023139552577, 0.37930623715864653, 0.38025449659743105, 0.38120501711493826, 0.3821578061353791, 0.3831128711042013, 0.3840702194881754, 0.3850298587754811, 0.3859917964757936, 0.3869560401203701, 0.3879225972621363, 0.3888914754757746, 0.3898626823578097, 0.3908362255266975, 0.3918121126229118, 0.3927903513090332, 0.39377094926983675, 0.39475391421238026, 0.3957392538660936, 0.39672697598286677, 0.39771708833713965, 0.39870959872599177, 0.3997045149692309, 0.4007018449094832, 0.4017015964122844, 0.4027037773661689, 0.40370839568276096, 0.404715459296866, 0.40572497616656045, 0.4067369542732844, 0.4077514016219331, 0.40876832624094783, 0.4097877361824097, 0.4108096395221303, 0.41183404435974563, 0.4128609588188088, 0.41389039104688286, 0.4149223492156343, 0.41595684152092743, 0.4169938761829174, 0.41803346144614584, 0.4190756055796336, 0.42012031687697754, 0.42116760365644357, 0.4222174742610639, 0.42326993705873156, 0.42432500044229665, 0.42538267282966297, 0.42644296266388304, 0.4275058784132573, 0.42857142857142844, 0.429639621657481, 0.43071046621603826, 0.43178397081735853, 0.4328601440574362, 0.4339389945580987, 0.43502053096710513, 0.43610476195824555, 0.43719169623144094, 0.43828134251284206, 0.43937370955492994, 0.4404688061366162, 0.4415666410633433, 0.4426672231671856, 0.44377056130695114, 0.4448766643682814, 0.44598554126375545, 0.44709720093299077, 0.44821165234274507, 0.44932890448702095, 0.45044896638716697, 0.45157184709198267, 0.4526975556778202, 0.4538261012486913, 0.4549574929363688, 0.4560917399004934, 0.45722885132867713, 0.4583688364366094, 0.4595117044681626, 0.460657464695498, 0.4618061264191723, 0.46295769896824346, 0.4641121917003788, 0.46526961400196143, 0.46642997528819835, 0.46759328500322805, 0.46875955262022984, 0.4699287876415306, 0.4711009995987157, 0.47227619805273763, 0.47345439259402494, 0.47463559284259377, 0.4758198084481571, 0.47700704909023584, 0.47819732447826996, 0.4793906443517303, 0.4805870184802296, 0.481786456663635, 0.48298896873218145, 0.48419456454658283, 0.4854032539981466, 0.48661504700888686, 0.48782995353163905, 0.48904798355017304, 0.49026914707930863, 0.4914934541650307, 0.4927209148846047, 0.49395153934669167, 0.4951853376914661, 0.49642232009073034, 0.49766249674803353, 0.4989058778987883, 0.5001524738103872, 0.5014022947823233, 0.502655351146307, 0.5039116532663847, 0.5051712115390596, 0.5064340363934098, 0.5077001382912093, 0.5089695277270483, 0.5102422152284538, 0.5115182113560107, 0.5127975267034844, 0.5140801718979422, 0.5153661575998753, 0.5166554945033222, 0.5179481933359923, 0.5192442648593892, 0.5205437198689346, 0.5218465691940932, 0.5231528236984976, 0.5244624942800729, 0.5257755918711637, 0.5270921274386593, 0.5284121119841206, 0.5297355565439076, 0.5310624721893052, 0.5323928700266538, 0.533726761197475, 0.5350641568786018, 0.5364050682823075, 0.5377495066564345, 0.5390974832845254, 0.5404490094859533, 0.5418040966160519, 0.5431627560662483, 0.5445249992641927, 0.5458908376738927, 0.5472602827958452, 0.5486333461671686, 0.5500100393617385, 0.5513903739903195, 0.552774361700701, 0.5541620141778324, 0.5555533431439571, 0.5569483603587497, 0.5583470776194517, 0.5597495067610085, 0.5611556596562071, 0.5625655482158126, 0.5639791843887078, 0.5653965801620308, 0.5668177475613142, 0.5682426986506266, 0.5696714455327098, 0.5711040003491219, 0.5725403752803755, 0.5739805825460828, 0.5754246344050953, 0.5768725431556465, 0.5783243211354963, 0.5797799807220715, 0.5812395343326141, 0.5827029944243217, 0.5841703734944954, 0.5856416840806842, 0.5871169387608294, 0.5885961501534145, 0.5900793309176097, 0.5915664937534194, 0.5930576514018325, 0.5945528166449678, 0.5960520023062252, 0.5975552212504346, 0.5990624863840066, 0.6005738106550815, 0.6020892070536823, 0.6036086886118655, 0.6051322684038726, 0.6066599595462849, 0.6081917751981739, 0.6097277285612577, 0.6112678328800533, 0.6128121014420332, 0.6143605475777799, 0.6159131846611406, 0.6174700261093864, 0.6190310853833676, 0.6205963759876709, 0.622165911470779, 0.6237397054252279, 0.6253177714877667, 0.6269001233395176, 0.6284867747061368, 0.6300777393579736, 0.6316730311102329, 0.6332726638231378, 0.6348766514020924, 0.6364850077978431, 0.6380977470066446, 0.639714883070422, 0.6413364300769383, 0.6429624021599576, 0.6445928134994128, 0.6462276783215716, 0.6478670108992028, 0.6495108255517468, 0.6511591366454806, 0.6528119585936899, 0.6544693058568369, 0.6561311929427311, 0.6577976344067, 0.6594686448517613, 0.6611442389287927, 0.6628244313367088, 0.6645092368226285, 0.6661986701820549, 0.6678927462590455, 0.6695914799463892, 0.6712948861857815, 0.6730029799680013, 0.6747157763330872, 0.676433290370516, 0.6781555372193804, 0.6798825320685676, 0.6816142901569394, 0.6833508267735121, 0.6850921572576377, 0.6868382969991845, 0.6885892614387201, 0.6903450660676931, 0.692105726428618, 0.6938712581152578, 0.6956416767728092, 0.6974169980980885, 0.699197237839717, 0.7009824117983074, 0.7027725358266522, 0.7045676258299115, 0.7063676977657996, 0.7081727676447782, 0.7099828515302431, 0.7117979655387175, 0.7136181258400405, 0.7154433486575615, 0.717273650268333, 0.7191090470033026, 0.7209495552475085, 0.722795191440274, 0.7246459720754022, 0.7265019137013731, 0.7283630329215424, 0.7302293463943342, 0.7321008708334451, 0.7339776230080398, 0.7358596197429517, 0.7377468779188843, 0.7396394144726106, 0.7415372463971777, 0.7434403907421069, 0.7453488646135991, 0.7472626851747384, 0.7491818696456968, 0.7511064353039393, 0.7530363994844319, 0.754971779579847, 0.7569125930407733, 0.7588588573759216, 0.760810590152338, 0.7627678089956095, 0.76473053159008, 0.7666987756790574, 0.7686725590650286, 0.7706518996098726, 0.7726368152350732, 0.7746273239219359, 0.7766234437118005, 0.7786251927062602, 0.7806325890673779, 0.782645651017902, 0.7846643968414884, 0.7866888448829185, 0.7887190135483183, 0.7907549213053822, 0.7927965866835911, 0.7948440282744396, 0.796897264731655, 0.7989563147714254, 0.8010211971726227, 0.803091930777028, 0.8051685344895604, 0.8072510272785041, 0.8093394281757345, 0.8114337562769507, 0.8135340307419033, 0.8156402707946259, 0.8177524957236685, 0.8198707248823259, 0.8219949776888775, 0.8241252736268141, 0.8262616322450799, 0.8284040731583039, 0.8305526160470403, 0.8327072806580008, 0.8348680868043007, 0.8370350543656915, 0.839208203288806, 0.8413875535873964, 0.8435731253425786, 0.8457649387030728, 0.8479630138854514, 0.8501673711743791, 0.8523780309228607, 0.8545950135524896, 0.8568183395536899, 0.8590480294859714, 0.8612841039781743, 0.8635265837287209, 0.8657754895058656, 0.8680308421479495, 0.8702926625636505, 0.8725609717322387, 0.8748357907038319, 0.8771171405996475, 0.8794050426122647, 0.8816995180058794, 0.8840005881165609, 0.8863082743525151, 0.8886225981943416, 0.8909435811952972, 0.8932712449815587, 0.8956056112524844, 0.8979467017808798, 0.9002945384132613, 0.9026491430701243, 0.9050105377462103, 0.9073787445107732, 0.9097537855078505, 0.9121356829565336, 0.9145244591512355, 0.9169201364619681, 0.9193227373346137, 0.9217322842911947, 0.9241487999301562, 0.9265723069266362, 0.9290028280327465, 0.9314403860778492, 0.9338850039688362, 0.9363367046904101, 0.9387955113053643, 0.9412614469548675, 0.9437345348587446, 0.9462147983157635, 0.9487022607039177, 0.9511969454807172, 0.9536988761834722, 0.9562080764295819, 0.9587245699168284, 0.9612483804236619, 0.9637795318094973, 0.9663180480150039, 0.9688639530624024, 0.9714172710557555, 0.9739780261812706, 0.9765462427075906, 0.9791219449860971, 0.9817051574512078, 0.9842959046206761, 0.9868942110958956, 0.9895001015622011, 0.9921136007891743, 0.9947347336309456, 0.9973635250265029, 1.0]}
diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/test/fixtures/python/runner.py b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/test/fixtures/python/runner.py
new file mode 100644
index 000000000000..15c75ff7acb9
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/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.ppf(x, c)
+
+ # Store data to be written to file as a dictionary:
+ data = {
+ "p": 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."""
+ p = np.linspace(0, 1, 1000)
+
+ # Small shape parameter:
+ c = np.linspace(0.1, 1, 1000)
+ gen(p, c, "small_c.json")
+
+ # Medium shape parameter:
+ c = np.linspace(1, 10, 1000)
+ gen(p, c, "medium_c.json")
+
+ # Large shape parameter:
+ c = np.linspace(10, 100, 1000)
+ gen(p, c, "large_c.json")
+
+
+if __name__ == "__main__":
+ main()
diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/test/fixtures/python/small_c.json b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/test/fixtures/python/small_c.json
new file mode 100644
index 000000000000..40ce6e0466bc
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/test/fixtures/python/small_c.json
@@ -0,0 +1 @@
+{"p": [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.0009537050652378502, 0.001906710916177769, 0.0028590210897825826, 0.0038106391129635844, 0.004761568502629511, 0.005711812765735264, 0.006661375399330418, 0.007610259890607444, 0.008558469716949724, 0.0095060083459793, 0.010452879235604418, 0.011399085834066784, 0.012344631579988654, 0.013289519902419611, 0.014233754220883167, 0.015177337945423109, 0.01612027447664963, 0.01706256720578521, 0.01800421951471027, 0.018945234776008645, 0.019885616353012774, 0.02082536759984867, 0.02176449186148075, 0.022702992473756328, 0.023640872763449953, 0.024578136048307542, 0.025514785637090257, 0.0264508248296182, 0.02738625691681384, 0.028321085180745324, 0.029255312894669445, 0.03018894332307454, 0.031121979721723095, 0.03205442533769411, 0.03298628340942537, 0.0339175571667554, 0.0348482498309653, 0.035778364614820306, 0.0367079047226112, 0.03763687335019552, 0.038565273685038516, 0.03949310890625396, 0.0404203821846448, 0.041347096682743424, 0.04227325555485202, 0.043198861947082536, 0.044123918997396455, 0.04504842983564448, 0.04597239758360596, 0.04689582535502819, 0.047818716255665354, 0.04874107338331753, 0.04966289982786933, 0.05058419867132843, 0.051504972987863815, 0.05242522584384403, 0.05334496029787513, 0.05426417940083837, 0.05518288619592789, 0.05610108371868815, 0.05701877499705107, 0.05793596305137325, 0.05885265089447275, 0.05976884153166589, 0.06068453796080373, 0.06159974317230855, 0.0625144601492099, 0.0634286918671808, 0.06434244129457357, 0.06525571139245542, 0.06616850511464412, 0.0670808254077433, 0.0679926752111777, 0.06890405745722811, 0.0698149750710664, 0.07072543097079012, 0.07163542806745705, 0.07254496926511968, 0.07345405746085937, 0.07436269554482046, 0.07527088640024415, 0.07617863290350231, 0.07708593792413111, 0.07799280432486433, 0.07889923496166688, 0.07980523268376769, 0.08071080033369292, 0.08161594074729872, 0.08252065675380388, 0.08342495117582244, 0.08432882682939605, 0.08523228652402623, 0.0861353330627064, 0.08703796924195403, 0.08794019785184214, 0.08884202167603135, 0.08974344349180093, 0.09064446607008068, 0.09154509217548182, 0.09244532456632816, 0.09334516599468716, 0.09424461920640059, 0.09514368694111537, 0.09604237193231394, 0.09694067690734481, 0.09783860458745279, 0.09873615768780906, 0.09963333891754116, 0.10053015097976295, 0.10142659657160435, 0.10232267838424074, 0.10321839910292262, 0.10411376140700489, 0.10500876796997607, 0.10590342145948725, 0.10679772453738128, 0.10769167985972132, 0.10858529007681976, 0.1094785578332666, 0.11037148576795802, 0.11126407651412462, 0.11215633269935969, 0.1130482569456471, 0.11393985186938954, 0.11483112008143599, 0.11572206418710972, 0.11661268678623571, 0.1175029904731681, 0.11839297783681768, 0.11928265146067885, 0.120172013922857, 0.1210610677960953, 0.12194981564780172, 0.12283826004007566, 0.12372640352973453, 0.12461424866834049, 0.12550179800222677, 0.1263890540725238, 0.12727601941518557, 0.12816269656101573, 0.1290490880356934, 0.12993519635979897, 0.13082102404884025, 0.1317065736132775, 0.1325918475585494, 0.13347684838509832, 0.13436157858839543, 0.13524604065896634, 0.13613023708241562, 0.1370141703394523, 0.13789784290591442, 0.13878125725279394, 0.1396644158462613, 0.1405473211476902, 0.14142997561368165, 0.14231238169608884, 0.143194541842041, 0.14407645849396775, 0.14495813408962305, 0.1458395710621093, 0.1467207718399008, 0.14760173884686825, 0.1484824745023015, 0.1493629812209339, 0.1502432614129651, 0.15112331748408497, 0.15200315183549656, 0.15288276686393923, 0.1537621649617118, 0.15464134851669578, 0.15552031991237777, 0.15639908152787274, 0.1572776357379462, 0.15815598491303734, 0.15903413141928122, 0.15991207761853127, 0.16078982586838164, 0.16166737852218932, 0.16254473792909657, 0.16342190643405263, 0.16429888637783596, 0.16517568009707598, 0.16605228992427484, 0.16692871818782934, 0.16780496721205224, 0.16868103931719405, 0.16955693681946432, 0.17043266203105295, 0.1713082172601518, 0.17218360481097544, 0.17305882698378258, 0.17393388607489682, 0.1748087843767279, 0.17568352417779218, 0.17655810776273384, 0.17743253741234521, 0.1783068154035875, 0.1791809440096115, 0.18005492549977764, 0.1809287621396767, 0.18180245619115004, 0.18267600991230948, 0.1835494255575581, 0.1844227053776095, 0.18529585161950832, 0.18616886652664985, 0.18704175233880022, 0.18791451129211548, 0.18878714561916204, 0.1896596575489354, 0.19053204930688078, 0.19140432311491123, 0.19227648119142812, 0.19314852575133978, 0.19402045900608103, 0.19489228316363205, 0.19576400042853748, 0.1966356130019259, 0.197507123081528, 0.19837853286169618, 0.19924984453342248, 0.20012106028435794, 0.20099218229883137, 0.2018632127578671, 0.20273415383920415, 0.20360500771731457, 0.20447577656342159, 0.205346462545518, 0.2062170678283845, 0.20708759457360765, 0.20795804493959794, 0.2088284210816079, 0.20969872515175034, 0.21056895929901562, 0.21143912566928993, 0.21230922640537273, 0.21317926364699488, 0.2140492395308358, 0.21491915619054106, 0.21578901575674034, 0.21665882035706419, 0.21752857211616192, 0.21839827315571872, 0.21926792559447275, 0.22013753154823265, 0.22100709312989406, 0.22187661244945742, 0.2227460916140445, 0.22361553272791532, 0.22448493789248514, 0.22535430920634114, 0.22622364876525933, 0.22709295866222146, 0.2279622409874307, 0.22883149782832932, 0.22970073126961452, 0.2305699433932551, 0.23143913627850785, 0.23230831200193391, 0.2331774726374148, 0.23404662025616885, 0.23491575692676747, 0.23578488471515105, 0.23665400568464473, 0.23752312189597535, 0.23839223540728607, 0.23926134827415324, 0.24013046254960213, 0.24099958028412188, 0.2418687035256824, 0.24273783431974885, 0.24360697470929832, 0.24447612673483454, 0.2453452924344037, 0.24621447384361025, 0.24708367299563158, 0.24795289192123368, 0.24882213264878675, 0.2496913972042799, 0.2505606876113367, 0.25143000589123005, 0.25229935406289755, 0.25316873414295615, 0.25403814814571746, 0.25490759808320257, 0.2557770859651569, 0.2566466137990649, 0.257516183590165, 0.2583857973414644, 0.2592554570537536, 0.26012516472562097, 0.26099492235346744, 0.2618647319315211, 0.26273459545185157, 0.26360451490438463, 0.26447449227691594, 0.2653445295551265, 0.26621462872259594, 0.26708479176081706, 0.2679550206492107, 0.2688253173651389, 0.2696956838839193, 0.2705661221788396, 0.27143663422117126, 0.2723072219801835, 0.27317788742315724, 0.2740486325153994, 0.27491945922025546, 0.275790369499125, 0.2766613653114739, 0.27753244861484927, 0.27840362136489244, 0.27927488551535257, 0.28014624301810037, 0.2810176958231418, 0.28188924587863134, 0.28276089513088537, 0.28363264552439593, 0.2845044990018438, 0.28537645750411167, 0.286248522970298, 0.2871206973377295, 0.2879929825419751, 0.2888653805168586, 0.28973789319447196, 0.2906105225051882, 0.2914832703776749, 0.29235613873890665, 0.2932291295141783, 0.294102244627118, 0.2949754859996994, 0.29584885555225604, 0.2967223552034919, 0.2975959868704964, 0.29846975246875534, 0.2993436539121651, 0.3002176931130439, 0.30109187198214565, 0.30196619242867145, 0.30284065636028284, 0.30371526568311424, 0.30459002230178506, 0.3054649281194125, 0.30633998503762366, 0.307215194956568, 0.3080905597749299, 0.30896608138994025, 0.3098417616973897, 0.3107176025916403, 0.3115936059656372, 0.3124697737109219, 0.3133461077176434, 0.3142226098745708, 0.3150992820691052, 0.315976126187292, 0.31685314411383164, 0.3177303377320937, 0.31860770892412626, 0.3194852595706705, 0.32036299155116954, 0.3212409067437834, 0.3221190070253978, 0.3229972942716388, 0.32387577035688087, 0.32475443715426283, 0.32563329653569634, 0.3265123503718785, 0.3273916005323035, 0.32827104888527425, 0.3291506972979135, 0.3300305476361761, 0.3309106017648595, 0.3317908615476154, 0.332671328846962, 0.3335520055242941, 0.3344328934398954, 0.3353139944529491, 0.33619531042155, 0.33707684320271447, 0.3379585946523934, 0.33884056662548134, 0.3397227609758298, 0.34060517955625624, 0.34148782421855733, 0.3423706968135176, 0.34325379919092297, 0.3441371331995696, 0.34502070068727686, 0.34590450350089597, 0.3467885434863232, 0.3476728224885095, 0.34855734235147134, 0.3494421049183022, 0.3503271120311827, 0.35121236553139196, 0.3520978672593179, 0.3529836190544681, 0.35386962275548095, 0.3547558802001355, 0.3556423932253627, 0.35652916366725634, 0.357416193361082, 0.3583034841412902, 0.3591910378415244, 0.36007885629463376, 0.36096694133268137, 0.36185529478695677, 0.36274391848798493, 0.3636328142655381, 0.36452198394864394, 0.3654114293655989, 0.3663011523439756, 0.36719115471063557, 0.36808143829173784, 0.36897200491275023, 0.3698628563984587, 0.37075399457297886, 0.3716454212597647, 0.37253713828162, 0.37342914746070754, 0.37432145061856004, 0.3752140495760895, 0.37610694615359813, 0.3770001421707872, 0.3778936394467684, 0.37878743980007323, 0.3796815450486625, 0.38057595700993785, 0.38147067750074914, 0.38236570833740763, 0.38326105133569255, 0.3841567083108639, 0.38505268107766993, 0.385948971450359, 0.3868455812426873, 0.3877425122679312, 0.3886397663388941, 0.38953734526791867, 0.3904352508668954, 0.39133348494727255, 0.3922320493200652, 0.3931309457958664, 0.394030176184855, 0.394929742296807, 0.39582964594110404, 0.3967298889267434, 0.3976304730623471, 0.3985314001561723, 0.39943267201612004, 0.4003342904497451, 0.401236257264266, 0.4021385742665728, 0.40304124326323876, 0.40394426606052763, 0.4048476444644057, 0.4057513802805475, 0.4066554753143495, 0.407559931370935, 0.40846475025516765, 0.40936993377165765, 0.41027548372477285, 0.4111814019186469, 0.4120876901571896, 0.4129943502440951, 0.4139013839828517, 0.4148087931767511, 0.4157165796288975, 0.4166247451422169, 0.4175332915194654, 0.41844222056323965, 0.41935153407598535, 0.42026123386000613, 0.42117132171747274, 0.42208179945043306, 0.4229926688608191, 0.42390393175045876, 0.424815589921082, 0.42572764517433237, 0.4266400993117741, 0.42755295413490235, 0.42846621144515146, 0.42937987304390424, 0.4302939407325002, 0.4312084163122462, 0.4321233015844228, 0.43303859835029557, 0.4339543084111226, 0.43487043356816324, 0.4357869756226879, 0.43670393637598587, 0.4376213176293752, 0.43853912118421023, 0.43945734884189125, 0.440376002403873, 0.44129508367167347, 0.44221459444688255, 0.44313453653117085, 0.44405491172629813, 0.4449757218341228, 0.4458969686566089, 0.446818653995837, 0.447740779654011, 0.448663347433468, 0.4495863591366854, 0.45050981656629224, 0.45143372152507405, 0.452358075815985, 0.4532828812421539, 0.45420813960689427, 0.4551338527137126, 0.4560600223663155, 0.4569866503686207, 0.4579137385247634, 0.45884128863910584, 0.45976930251624576, 0.4606977819610238, 0.4616267287785334, 0.4625561447741287, 0.4634860317534324, 0.46441639152234515, 0.46534722588705285, 0.46627853665403585, 0.4672103256300774, 0.46814259462227187, 0.46907534543803203, 0.4700085798850995, 0.47094229977155055, 0.4718765069058075, 0.4728112030966437, 0.4737463901531948, 0.47468206988496425, 0.47561824410183434, 0.4765549146140723, 0.47749208323234005, 0.47842975176770075, 0.47936792203162937, 0.4803065958360186, 0.4812457749931882, 0.4821854613158937, 0.48312565661733353, 0.48406636271115755, 0.4850075814114753, 0.4859493145328645, 0.48689156389037846, 0.487834331299555, 0.4887776185764238, 0.48972142753751546, 0.49066575999986856, 0.4916106177810388, 0.49255600269910554, 0.4935019165726828, 0.49444836122092334, 0.49539533846353023, 0.4963428501207633, 0.4972908980134469, 0.49823948396297857, 0.49918860979133767, 0.5001382773210916, 0.501088488375406, 0.5020392447780502, 0.5029905483534081, 0.5039424009264836, 0.5048948043229106, 0.5058477603689593, 0.5068012708915449, 0.5077553377182362, 0.5087099626772625, 0.5096651475975216, 0.510620894308589, 0.5115772046407238, 0.512534080424878, 0.5134915234927047, 0.5144495356765648, 0.5154081188095357, 0.5163672747254184, 0.517327005258747, 0.5182873122447946, 0.5192481975195825, 0.5202096629198875, 0.5211717102832496, 0.5221343414479801, 0.5230975582531704, 0.5240613625386972, 0.5250257561452335, 0.5259907409142535, 0.5269563186880429, 0.5279224913097051, 0.5288892606231697, 0.5298566284731994, 0.5308245967053986, 0.531793167166222, 0.53276234170298, 0.5337321221638482, 0.5347025103978755, 0.5356735082549904, 0.5366451175860091, 0.5376173402426445, 0.5385901780775121, 0.5395636329441402, 0.5405377066969734, 0.5415124011913858, 0.5424877182836834, 0.5434636598311166, 0.5444402276918832, 0.5454174237251406, 0.5463952497910094, 0.5473737077505846, 0.5483527994659406, 0.5493325268001406, 0.5503128916172431, 0.5512938957823108, 0.5522755411614163, 0.5532578296216523, 0.5542407630311368, 0.5552243432590228, 0.5562085721755041, 0.5571934516518247, 0.5581789835602848, 0.5591651697742493, 0.5601520121681558, 0.5611395126175206, 0.5621276729989492, 0.5631164951901396, 0.5641059810698946, 0.5650961325181263, 0.5660869514158646, 0.5670784396452643, 0.5680705990896147, 0.5690634316333432, 0.5700569391620275, 0.5710511235624, 0.5720459867223567, 0.5730415305309638, 0.5740377568784666, 0.575034667656296, 0.5760322647570759, 0.5770305500746328, 0.5780295255039998, 0.5790291929414273, 0.5800295542843891, 0.5810306114315904, 0.5820323662829749, 0.5830348207397326, 0.5840379767043073, 0.5850418360804046, 0.5860464007729979, 0.5870516726883385, 0.5880576537339601, 0.5890643458186889, 0.5900717508526493, 0.591079870747273, 0.5920887074153046, 0.5930982627708109, 0.5941085387291873, 0.5951195372071664, 0.5961312601228235, 0.5971437093955867, 0.5981568869462421, 0.5991707946969428, 0.6001854345712153, 0.6012008084939687, 0.6022169183914995, 0.6032337661915019, 0.6042513538230733, 0.6052696832167227, 0.6062887563043778, 0.6073085750193935, 0.6083291412965572, 0.6093504570720983, 0.6103725242836955, 0.6113953448704829, 0.6124189207730585, 0.6134432539334924, 0.6144683462953323, 0.6154941998036121, 0.6165208164048604, 0.6175481980471056, 0.6185763466798861, 0.6196052642542546, 0.6206349527227888, 0.6216654140395962, 0.6226966501603244, 0.623728663042165, 0.6247614546438639, 0.6257950269257277, 0.6268293818496319, 0.6278645213790265, 0.628900447478946, 0.6299371621160145, 0.6309746672584549, 0.6320129648760957, 0.6330520569403785, 0.6340919454243648, 0.6351326323027445, 0.6361741195518441, 0.6372164091496308, 0.638259503075724, 0.6393034033113997, 0.6403481118396005, 0.6413936306449404, 0.642439961713715, 0.6434871070339062, 0.6445350685951927, 0.6455838483889543, 0.6466334484082815, 0.6476838706479828, 0.6487351171045914, 0.6497871897763726, 0.6508400906633321, 0.6518938217672232, 0.6529483850915536, 0.6540037826415941, 0.6550600164243846, 0.6561170884487428, 0.6571750007252711, 0.6582337552663645, 0.6592933540862171, 0.6603537992008308, 0.6614150926280218, 0.6624772363874287, 0.6635402325005204, 0.664604082990602, 0.665668789882824, 0.6667343552041884, 0.6678007809835569, 0.6688680692516598, 0.6699362220410996, 0.6710052413863629, 0.6720751293238244, 0.6731458878917576, 0.6742175191303392, 0.6752900250816588, 0.6763634077897253, 0.6774376693004748, 0.6785128116617776, 0.6795888369234477, 0.6806657471372469, 0.6817435443568945, 0.682822230638076, 0.6839018080384475, 0.6849822786176458, 0.6860636444372938, 0.6871459075610111, 0.6882290700544176, 0.6893131339851444, 0.6903981014228395, 0.6914839744391765, 0.6925707551078598, 0.6936584455046361, 0.6947470477072976, 0.6958365637956935, 0.6969269958517336, 0.6980183459594002, 0.6991106162047516, 0.7002038086759319, 0.7012979254631793, 0.7023929686588306, 0.7034889403573321, 0.7045858426552452, 0.7056836776512545, 0.7067824474461755, 0.7078821541429623, 0.7089827998467145, 0.7100843866646853, 0.7111869167062896, 0.7122903920831114, 0.7133948149089092, 0.7145001872996284, 0.7156065113734027, 0.7167137892505675, 0.7178220230536642, 0.7189312149074488, 0.7200413669388985, 0.7211524812772223, 0.7222645600538639, 0.7233776054025142, 0.7244916194591157, 0.7256066043618711, 0.7267225622512515, 0.7278394952700037, 0.7289574055631574, 0.730076295278033, 0.73119616656425, 0.7323170215737341, 0.7334388624607246, 0.7345616913817834, 0.7356855104958004, 0.7368103219640034, 0.7379361279499644, 0.7390629306196086, 0.7401907321412208, 0.7413195346854532, 0.7424493404253347, 0.7435801515362769, 0.7447119701960817, 0.7458447985849515, 0.7469786388854934, 0.7481134932827295, 0.7492493639641046, 0.7503862531194916, 0.7515241629412029, 0.752663095623994, 0.7538030533650756, 0.7549440383641174, 0.756086052823259, 0.7572290989471155, 0.7583731789427868, 0.7595182950198646, 0.7606644493904399, 0.761811644269112, 0.7629598818729951, 0.7641091644217274, 0.7652594941374768, 0.7664108732449515, 0.7675633039714058, 0.768716788546648, 0.76987132920305, 0.7710269281755537, 0.772183587701678, 0.7733413100215298, 0.7745000973778072, 0.7756599520158131, 0.7768208761834581, 0.777982872131271, 0.7791459421124062, 0.7803100883826507, 0.7814753132004338, 0.7826416188268333, 0.7838090075255847, 0.7849774815630881, 0.7861470432084168, 0.7873176947333249, 0.7884894384122556, 0.7896622765223491, 0.7908362113434507, 0.7920112451581175, 0.7931873802516283, 0.7943646189119901, 0.7955429634299477, 0.7967224160989897, 0.7979029792153581, 0.7990846550780548, 0.8002674459888524, 0.8014513542522976, 0.8026363821757256, 0.8038225320692608, 0.805009806245832, 0.8061982070211746, 0.8073877367138423, 0.808578397645214, 0.8097701921395019, 0.8109631225237593, 0.8121571911278894, 0.8133524002846529, 0.8145487523296758, 0.815746249601459, 0.8169448944413841, 0.8181446891937241, 0.8193456362056496, 0.8205477378272374, 0.8217509964114794, 0.8229554143142906, 0.8241609938945156, 0.8253677375139401, 0.8265756475372952, 0.8277847263322687, 0.8289949762695118, 0.8302063997226486, 0.8314189990682814, 0.8326327766860028, 0.8338477349584011, 0.8350638762710705, 0.8362812030126169, 0.8374997175746698, 0.8387194223518861, 0.8399403197419623, 0.841162412145641, 0.8423857019667196, 0.8436101916120579, 0.8448358834915874, 0.846062780018319, 0.8472908836083523, 0.848520196680882, 0.8497507216582091, 0.850982460965746, 0.8522154170320275, 0.8534495922887186, 0.8546849891706211, 0.8559216101156853, 0.857159457565015, 0.8583985339628787, 0.859638841756715, 0.8608803833971458, 0.8621231613379785, 0.8633671780362203, 0.8646124359520827, 0.8658589375489929, 0.8671066852935991, 0.8683556816557821, 0.8696059291086615, 0.870857430128606, 0.8721101871952404, 0.8733642027914552, 0.8746194794034154, 0.8758760195205668, 0.8771338256356475, 0.8783929002446956, 0.8796532458470564, 0.8809148649453927, 0.8821777600456919, 0.8834419336572762, 0.8847073882928105, 0.8859741264683105, 0.8872421507031529, 0.8885114635200809, 0.8897820674452178, 0.8910539650080711, 0.8923271587415436, 0.8936016511819412, 0.8948774448689822, 0.896154542345805, 0.8974329461589797, 0.898712658858512, 0.899993682997857, 0.9012760211339241, 0.9025596758270884, 0.9038446496411976, 0.905130945143582, 0.9064185649050642, 0.9077075114999641, 0.9089977875061129, 0.9102893955048578, 0.911582338081073, 0.9128766178231682, 0.9141722373230973, 0.9154691991763667, 0.9167675059820455, 0.9180671603427732, 0.9193681648647704, 0.9206705221578441, 0.9219742348354012, 0.9232793055144545, 0.9245857368156333, 0.9258935313631896, 0.9272026917850114, 0.9285132207126277, 0.9298251207812203, 0.9311383946296313, 0.9324530449003721, 0.9337690742396341, 0.9350864852972957, 0.9364052807269325, 0.9377254631858268, 0.9390470353349752, 0.940369999839099, 0.9416943593666534, 0.9430201165898355, 0.9443472741845951, 0.9456758348306414, 0.9470058012114556, 0.9483371760142965, 0.949669961930213, 0.9510041616540506, 0.9523397778844619, 0.9536768133239157, 0.955015270678708, 0.9563551526589659, 0.9576964619786651, 0.9590392013556303, 0.9603833735115516, 0.9617289811719898, 0.9630760270663881, 0.9644245139280795, 0.9657744444942966, 0.9671258215061823, 0.9684786477087982, 0.9698329258511333, 0.9711886586861155, 0.9725458489706179, 0.9739044994654713, 0.9752646129354727, 0.9766261921493932, 0.9779892398799902, 0.979353758904014, 0.98071975200222, 0.9820872219593759, 0.9834561715642741, 0.9848266036097372, 0.9861985208926314, 0.9875719262138734, 0.9889468223784423, 0.9903232121953878, 0.9917010984778387, 0.9930804840430154, 0.9944613717122371, 0.9958437643109332, 0.9972276646686518, 0.9986130756190689, 1.0]}
diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/test/test.factory.js b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/test/test.factory.js
new file mode 100644
index 000000000000..4441730808c8
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/test/test.factory.js
@@ -0,0 +1,188 @@
+/**
+* @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 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 quantile = factory( 1.0 );
+ t.equal( typeof quantile, 'function', 'returns a function' );
+ t.end();
+});
+
+tape( 'if provided `NaN` for any parameter, the created function returns `NaN`', function test( t ) {
+ var quantile;
+ var y;
+
+ quantile = factory( 1.0 );
+ y = quantile( NaN );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ quantile = factory( NaN );
+ y = quantile( 0.0 );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ quantile = factory( NaN );
+ y = quantile( 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 quantile;
+ var y;
+
+ quantile = factory( -1.0 );
+
+ y = quantile( 1.0 );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ y = quantile( 0.5 );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ y = quantile( 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 `NaN` when provided a number outside `[0,1]` for `p`', function test( t ) {
+ var quantile;
+ var y;
+
+ quantile = factory( 1.0 );
+
+ y = quantile( -1.0 );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ y = quantile( -0.5 );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ y = quantile( 1.5 );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ y = quantile( 10.0 );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ t.end();
+});
+
+tape( 'the created function evaluates the quantile for `p` given small `c`', function test( t ) {
+ var expected;
+ var quantile;
+ var delta;
+ var tol;
+ var c;
+ var i;
+ var p;
+ var y;
+
+ expected = smallC.expected;
+ p = smallC.p;
+ c = smallC.c;
+ for ( i = 0; i < expected.length; i++ ) {
+ quantile = factory( c[i] );
+ y = quantile( p[i] );
+ if ( y === expected[i] ) {
+ t.equal( y, expected[i], 'p: '+p[i]+'. c: '+c[i]+', y: '+y+', expected: '+expected[i] );
+ } else {
+ delta = abs( y - expected[ i ] );
+ tol = 3.2 * EPS * abs( expected[ i ] );
+ t.ok( delta <= tol, 'within tolerance. p: '+p[ i ]+'. c: '+c[i]+'. y: '+y+'. E: '+expected[ i ]+'. Δ: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the created function evaluates the quantile for `p` given a medium `c`', function test( t ) {
+ var expected;
+ var quantile;
+ var delta;
+ var tol;
+ var c;
+ var i;
+ var p;
+ var y;
+
+ expected = mediumC.expected;
+ p = mediumC.p;
+ c = mediumC.c;
+ for ( i = 0; i < expected.length; i++ ) {
+ quantile = factory( c[i] );
+ y = quantile( p[i] );
+ if ( y === expected[i] ) {
+ t.equal( y, expected[i], 'p: '+p[i]+'. c: '+c[i]+', y: '+y+', expected: '+expected[i] );
+ } else {
+ delta = abs( y - expected[ i ] );
+ tol = 3.2 * EPS * abs( expected[ i ] );
+ t.ok( delta <= tol, 'within tolerance. p: '+p[ i ]+'. c: '+c[i]+'. y: '+y+'. E: '+expected[ i ]+'. Δ: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the created function evaluates the quantile for `p` given a large `c`', function test( t ) {
+ var expected;
+ var quantile;
+ var delta;
+ var tol;
+ var c;
+ var i;
+ var p;
+ var y;
+
+ expected = largeC.expected;
+ p = largeC.p;
+ c = largeC.c;
+ for ( i = 0; i < expected.length; i++ ) {
+ quantile = factory( c[i] );
+ y = quantile( p[i] );
+ if ( y === expected[i] ) {
+ t.equal( y, expected[i], 'p: '+p[i]+'. c: '+c[i]+', y: '+y+', expected: '+expected[i] );
+ } else {
+ delta = abs( y - expected[ i ] );
+ tol = 4.8 * EPS * abs( expected[ i ] );
+ t.ok( delta <= tol, 'within tolerance. p: '+p[ 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/quantile/test/test.js b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/test/test.js
new file mode 100644
index 000000000000..6ad40b0c38e2
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/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 quantile = require( './../lib' );
+
+
+// TESTS //
+
+tape( 'main export is a function', function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof quantile, 'function', 'main export is a function' );
+ t.end();
+});
+
+tape( 'attached to the main export is a factory method for generating `quantile` functions', function test( t ) {
+ t.equal( typeof quantile.factory, 'function', 'exports a factory method' );
+ t.end();
+});
diff --git a/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/test/test.quantile.js b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/test/test.quantile.js
new file mode 100644
index 000000000000..4867f7efe63e
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/test/test.quantile.js
@@ -0,0 +1,165 @@
+/**
+* @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 quantile = 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 quantile, '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 = quantile( NaN, 1.0 );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ y = quantile( 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 = quantile( 0.0, 0.0 );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ y = quantile( 0.5, -1.0 );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ y = quantile( 1.0, NINF );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ t.end();
+});
+
+tape( 'if provided a number outside `[0,1]` for `p` and a valid `c`, the function returns `NaN`', function test( t ) {
+ var y;
+
+ y = quantile( 2.0, 1.0 );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ y = quantile( -0.5, 1.0 );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ y = quantile( NINF, 1.0 );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ y = quantile( PINF, 1.0 );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ t.end();
+});
+
+tape( 'the function evaluates the quantile for `p` given small parameter `c`', function test( t ) {
+ var expected;
+ var delta;
+ var tol;
+ var p;
+ var c;
+ var y;
+ var i;
+
+ expected = smallC.expected;
+ p = smallC.p;
+ c = smallC.c;
+ for ( i = 0; i < p.length; i++ ) {
+ y = quantile( p[i], c[i] );
+ if ( y === expected[i] ) {
+ t.equal( y, expected[i], 'p: '+p[i]+'. c:'+c[i]+', y: '+y+', expected: '+expected[i] );
+ } else {
+ delta = abs( y - expected[ i ] );
+ tol = 3.2 * EPS * abs( expected[ i ] );
+ t.ok( delta <= tol, 'within tolerance. p: '+p[ i ]+'. c: '+c[i]+'. y: '+y+'. E: '+expected[ i ]+'. Δ: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function evaluates the quantile for `p` given medium parameter `c`', function test( t ) {
+ var expected;
+ var delta;
+ var tol;
+ var p;
+ var c;
+ var y;
+ var i;
+
+ expected = mediumC.expected;
+ p = mediumC.p;
+ c = mediumC.c;
+ for ( i = 0; i < p.length; i++ ) {
+ y = quantile( p[i], c[i] );
+ if ( y === expected[i] ) {
+ t.equal( y, expected[i], 'p: '+p[i]+'. c:'+c[i]+', y: '+y+', expected: '+expected[i] );
+ } else {
+ delta = abs( y - expected[ i ] );
+ tol = 3.2 * EPS * abs( expected[ i ] );
+ t.ok( delta <= tol, 'within tolerance. p: '+p[ i ]+'. c: '+c[i]+'. y: '+y+'. E: '+expected[ i ]+'. Δ: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});
+
+tape( 'the function evaluates the quantile for `p` given large parameter `c`', function test( t ) {
+ var expected;
+ var delta;
+ var tol;
+ var p;
+ var c;
+ var y;
+ var i;
+
+ expected = largeC.expected;
+ p = largeC.p;
+ c = largeC.c;
+ for ( i = 0; i < p.length; i++ ) {
+ y = quantile( p[i], c[i] );
+ if ( y === expected[i] ) {
+ t.equal( y, expected[i], 'p: '+p[i]+'. c: '+c[i]+', y: '+y+', expected: '+expected[i] );
+ } else {
+ delta = abs( y - expected[ i ] );
+ tol = 4.8 * EPS * abs( expected[ i ] );
+ t.ok( delta <= tol, 'within tolerance. p: '+p[ i ]+'. c: '+c[i]+'. y: '+y+'. E: '+expected[ i ]+'. Δ: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});