diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/README.md b/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/README.md
new file mode 100644
index 000000000000..68e2a38f95bb
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/README.md
@@ -0,0 +1,154 @@
+
+
+# Quantile Function
+
+> Planck (discrete exponential) distribution [quantile function][quantile-function].
+
+
+
+The [quantile function][quantile-function] for a Planck random variable is
+
+
+
+```math
+Q(p;\lambda) = \left\lceil -\frac{\ln(1-p)}{\lambda} \right\rceil \!-1
+```
+
+
+
+for `0 < p < 1` and where `λ` is the shape parameter.
+
+
+
+
+
+
+
+## Usage
+
+```javascript
+var quantile = require( '@stdlib/stats/base/dists/planck/quantile' );
+```
+
+#### quantile( p, lambda )
+
+Evaluates the [quantile function][quantile-function] for a Planck distribution with shape parameter `lambda` at a probability `p`.
+
+```javascript
+var y = quantile( 0.8, 0.4 );
+// returns 4
+
+y = quantile( 0.5, 1.4 );
+// returns 0
+
+y = quantile( 0.9, 2.1 );
+// returns 1
+```
+
+If provided an input probability `p` outside the interval `[0,1]`, the function returns `NaN`.
+
+```javascript
+var y = quantile( 1.9, 0.5 );
+// returns NaN
+
+y = quantile( -0.1, 0.5 );
+// returns NaN
+```
+
+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 shape parameter `lambda` which is nonpositive, the function returns `NaN`.
+
+```javascript
+var y = quantile( 0.4, -1.0 );
+// returns NaN
+```
+
+#### quantile.factory( lambda )
+
+Returns a function for evaluating the [quantile function][quantile-function] for a Planck distribution with shape parameter `lambda`.
+
+```javascript
+var myquantile = quantile.factory( 0.4 );
+var y = myquantile( 0.4 );
+// returns 1
+
+y = myquantile( 0.8 );
+// returns 4
+
+y = myquantile( 1.0 );
+// returns Infinity
+```
+
+
+
+
+
+
+
+## Examples
+
+
+
+```javascript
+var uniform = require( '@stdlib/random/array/uniform' );
+var quantile = require( '@stdlib/stats/base/dists/planck/quantile' );
+
+var lambda = uniform( 10, 0.1, 10.0 );
+var p = uniform( 10, 0.0, 1.0 );
+
+var y;
+var i;
+for ( i = 0; i < lambda.length; i++ ) {
+ y = quantile( p[ i ], lambda[ i ] );
+ console.log( 'p: %d, λ: %d, Q(p;λ): %d', p[ i ].toFixed( 4 ), lambda[ i ].toFixed( 4 ), y.toFixed( 4 ) );
+}
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+[quantile-function]: https://en.wikipedia.org/wiki/Quantile_function
+
+
+
+
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/benchmark/benchmark.js b/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/benchmark/benchmark.js
new file mode 100644
index 000000000000..c4882aa6ecdb
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/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 lambda;
+ var p;
+ var y;
+ var i;
+
+ p = uniform( 100, 0.0, 1.0 );
+ lambda = uniform( 100, 0.1, 10.0 );
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ y = quantile( p[ i % p.length ], lambda[ i % lambda.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;
+
+ myquantile = quantile.factory( 0.3 );
+ p = uniform( 100, 0.0, 1.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/planck/quantile/docs/repl.txt b/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/docs/repl.txt
new file mode 100644
index 000000000000..7ef7c3b90665
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/docs/repl.txt
@@ -0,0 +1,74 @@
+
+{{alias}}( p, λ )
+ Evaluates the quantile function for a Planck distribution with shape
+ parameter `λ` at a probability `p`.
+
+ If `p < 0` or `p > 1`, the function returns `NaN`.
+
+ If `λ <= 0`, the function returns `NaN`.
+
+ If provided `NaN` as any argument, the function returns `NaN`.
+
+ Parameters
+ ----------
+ p: number
+ Input probability.
+
+ λ: number
+ Shape parameter.
+
+ Returns
+ -------
+ out: number
+ Evaluated quantile function.
+
+ Examples
+ --------
+ > var y = {{alias}}( 0.8, 0.4 )
+ 4
+ > y = {{alias}}( 0.5, 1.4 )
+ 0
+ > y = {{alias}}( 0.9, 2.1 )
+ 1
+
+ > y = {{alias}}( 0.2, -0.1 )
+ NaN
+
+ > y = {{alias}}( NaN, 0.8 )
+ NaN
+ > y = {{alias}}( 0.4, NaN )
+ NaN
+
+ > y = {{alias}}( -0.5, 1.0 )
+ NaN
+ > y = {{alias}}( 1.5, 1.0 )
+ NaN
+
+
+{{alias}}.factory( λ )
+ Returns a function for evaluating the quantile function of a Planck
+ distribution with shape parameter `λ`.
+
+ Parameters
+ ----------
+ λ: number
+ Shape parameter.
+
+ Returns
+ -------
+ quantile: Function
+ Quantile function.
+
+ Examples
+ --------
+ > var myquantile = {{alias}}.factory( 0.4 );
+ > var y = myquantile( 0.4 )
+ 1
+ > y = myquantile( 0.8 )
+ 4
+ > y = myquantile( 1.0 )
+ Infinity
+
+ See Also
+ --------
+
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/docs/types/index.d.ts b/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/docs/types/index.d.ts
new file mode 100644
index 000000000000..190f02fb9c86
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/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 Planck distribution.
+*
+* ## Notes
+*
+* - If `p < 0` or `p > 1`, the function returns `NaN`.
+*
+* @param p - input value
+* @returns evaluated quantile function
+*/
+type Unary = ( p: number ) => number;
+
+/**
+* Interface for the quantile function of a Planck distribution.
+*/
+interface Quantile {
+ /**
+ * Evaluates the quantile function for a Planck distribution with shape parameter `lambda` at a probability `p`.
+ *
+ * ## Notes
+ *
+ * - If `p < 0` or `p > 1`, the function returns `NaN`.
+ * - If `lambda <= 0`, the function returns `NaN`.
+ *
+ * @param p - input value
+ * @param lambda - shape parameter
+ * @returns evaluated quantile function
+ *
+ * @example
+ * var y = quantile( 0.8, 0.4 );
+ * // returns 4
+ *
+ * @example
+ * var y = quantile( 0.5, 1.4 );
+ * // returns 0
+ *
+ * @example
+ * var y = quantile( 0.9, 2.1 );
+ * // returns 1
+ *
+ * @example
+ * var y = quantile( 0.2, -0.1 );
+ * // returns NaN
+ *
+ * @example
+ * var y = quantile( NaN, 0.8 );
+ * // returns NaN
+ *
+ * @example
+ * var y = quantile( 0.4, NaN );
+ * // returns NaN
+ *
+ * @example
+ * var y = quantile( -0.5, 1.0 );
+ * // returns NaN
+ *
+ * @example
+ * var y = quantile( 1.5, 1.0 );
+ * // returns NaN
+ */
+ ( p: number, lambda: number ): number;
+
+ /**
+ * Returns a function for evaluating the quantile function for a Planck distribution with shape parameter `lambda`.
+ *
+ * @param lambda - shape parameter
+ * @returns quantile function
+ *
+ * @example
+ * var myquantile = quantile.factory( 0.4 );
+ * var y = myquantile( 0.4 );
+ * // returns 1
+ *
+ * y = myquantile( 0.8 );
+ * // returns 4
+ *
+ * y = myquantile( 1.0 );
+ * // returns Infinity
+ */
+ factory( lambda: number ): Unary;
+}
+
+/**
+* Evaluates the quantile function for a Planck distribution with shape parameter `lambda` at a probability `p`.
+*
+* @param p - input value
+* @param lambda - shape parameter
+* @returns evaluated quantile function
+*
+* @example
+* var y = quantile( 0.8, 0.4 );
+* // returns 4
+*
+* y = quantile( 0.5, 1.4 );
+* // returns 0
+*
+* var myquantile = quantile.factory( 0.4 );
+* y = myquantile( 0.4 );
+* // returns 1
+*
+* y = myquantile( 0.8 );
+* // returns 4
+*
+* y = myquantile( 1.0 );
+* // returns Infinity
+*/
+declare var quantile: Quantile;
+
+
+// EXPORTS //
+
+export = quantile;
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/docs/types/test.ts b/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/docs/types/test.ts
new file mode 100644
index 000000000000..99fbca207304
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/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, 0.2 ); // $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.0 ); // $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( 0.3 );
+ 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( 0.3 );
+ 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( 0.3 );
+ fcn(); // $ExpectError
+ fcn( 0.2, 0.8 ); // $ExpectError
+ fcn( 0.2, 0.8, 1.0 ); // $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.0 ); // $ExpectError
+}
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/examples/index.js b/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/examples/index.js
new file mode 100644
index 000000000000..a6d226c46b3f
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/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 lambda = uniform( 10, 0.1, 10.0 );
+var p = uniform( 10, 0.0, 1.0 );
+
+var y;
+var i;
+for ( i = 0; i < lambda.length; i++ ) {
+ y = quantile( p[ i ], lambda[ i ] );
+ console.log( 'p: %d, λ: %d, Q(p;λ): %d', p[ i ].toFixed( 4 ), lambda[ i ].toFixed( 4 ), y.toFixed( 4 ) );
+}
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/lib/factory.js b/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/lib/factory.js
new file mode 100644
index 000000000000..07c75e225c4a
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/lib/factory.js
@@ -0,0 +1,80 @@
+/**
+* @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 ceil = require( '@stdlib/math/base/special/ceil' );
+var ln = require( '@stdlib/math/base/special/ln' );
+var PINF = require( '@stdlib/constants/float64/pinf' );
+
+
+// MAIN //
+
+/**
+* Returns a function for evaluating the quantile function for a Planck distribution with shape parameter `lambda`.
+*
+* @param {PositiveNumber} lambda - success probability
+* @returns {Function} quantile function
+*
+* @example
+* var quantile = factory( 0.4 );
+* var y = quantile( 0.4 );
+* // returns 1
+*
+* y = quantile( 0.8 );
+* // returns 4
+*
+* y = quantile( 1.0 );
+* // returns Infinity
+*/
+function factory( lambda ) {
+ if ( isnan( lambda ) || lambda <= 0.0 ) {
+ return constantFunction( NaN );
+ }
+ return quantile;
+
+ /**
+ * Evaluates the quantile function for a Planck distribution.
+ *
+ * @private
+ * @param {Probability} p - input value
+ * @returns {NonNegativeInteger} evaluated quantile function
+ *
+ * @example
+ * var y = quantile( 0.3 );
+ * // returns
+ */
+ function quantile( p ) {
+ if ( isnan( p ) || p < 0.0 || p > 1.0 ) {
+ return NaN;
+ }
+ if ( p === 1.0 ) {
+ return PINF;
+ }
+ return ceil( -ln( 1.0-p ) / lambda ) - 1.0;
+ }
+}
+
+
+// EXPORTS //
+
+module.exports = factory;
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/lib/index.js b/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/lib/index.js
new file mode 100644
index 000000000000..fed299058b43
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/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';
+
+/**
+* Planck distribution quantile function.
+*
+* @module @stdlib/stats/base/dists/planck/quantile
+*
+* @example
+* var quantile = require( '@stdlib/stats/base/dists/planck/quantile' );
+*
+* var y = quantile( 0.8, 0.4 );
+* // returns 4
+*
+* y = quantile( 0.5, 1.4 );
+* // returns 0
+*
+* var myquantile = quantile.factory( 0.4 );
+* y = myquantile( 0.4 );
+* // returns 1
+*
+* y = myquantile( 0.8 );
+* // returns 4
+*
+* y = myquantile( 1.0 );
+* // returns Infinity
+*/
+
+// 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/planck/quantile/lib/main.js b/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/lib/main.js
new file mode 100644
index 000000000000..52f5fef9da70
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/lib/main.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 isnan = require( '@stdlib/math/base/assert/is-nan' );
+var ceil = require( '@stdlib/math/base/special/ceil' );
+var ln = require( '@stdlib/math/base/special/ln' );
+var PINF = require( '@stdlib/constants/float64/pinf' );
+
+
+// MAIN //
+
+/**
+* Evaluates the quantile function for a Planck distribution with shape parameter `lambda` at a probability `p`.
+*
+* @param {Probability} p - input value
+* @param {PositiveNumber} lambda - shape parameter
+* @returns {NonNegativeInteger} evaluated quantile function
+*
+* @example
+* var y = quantile( 0.8, 0.4 );
+* // returns 4
+*
+* @example
+* var y = quantile( 0.5, 1.4 );
+* // returns 0
+*
+* @example
+* var y = quantile( 0.9, 2.1 );
+* // returns 1
+*
+* @example
+* var y = quantile( 0.2, -0.1 );
+* // returns NaN
+*
+* @example
+* var y = quantile( NaN, 0.8 );
+* // returns NaN
+*
+* @example
+* var y = quantile( 0.4, NaN );
+* // returns NaN
+*
+* @example
+* var y = quantile( -0.5, 1.0 );
+* // returns NaN
+*
+* @example
+* var y = quantile( 1.5, 1.0 );
+* // returns NaN
+*/
+function quantile( p, lambda ) {
+ if ( isnan( lambda ) || isnan( p ) || lambda <= 0.0 || p < 0.0 || p > 1.0 ) { // eslint-disable-line max-len
+ return NaN;
+ }
+ if ( p === 1.0 ) {
+ return PINF;
+ }
+ return ceil( -ln( 1.0-p ) / lambda ) - 1.0;
+}
+
+
+// EXPORTS //
+
+module.exports = quantile;
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/package.json b/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/package.json
new file mode 100644
index 000000000000..84ddb4a3d480
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/package.json
@@ -0,0 +1,67 @@
+{
+ "name": "@stdlib/stats/base/dists/planck/quantile",
+ "version": "0.0.0",
+ "description": "Planck (discrete exponential) 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",
+ "failure times",
+ "memoryless property",
+ "discrete",
+ "planck",
+ "univariate"
+ ]
+}
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/test/fixtures/python/large_lambda.json b/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/test/fixtures/python/large_lambda.json
new file mode 100644
index 000000000000..1f8d1bd1ebe6
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/test/fixtures/python/large_lambda.json
@@ -0,0 +1 @@
+{"r": [0.9544555848274979, 0.7403580906863967, 0.2519726241201691, 0.9066083415025643, 0.10472160992685564, 0.17746797020152416, 0.9591828428488697, 0.7304673004774859, 0.635565019532496, 0.39282381518757303, 0.4342203791048863, 0.21925873707696664, 0.7533254901997656, 0.9177567133953949, 0.06207527148340519, 0.317107207060741, 0.8223198170589929, 0.5283732324772701, 0.1614598319686854, 0.6686071724611999, 0.8169267398292239, 0.042033087993004425, 0.780506415802706, 0.8868025369421134, 0.14518278699465836, 0.6013787715088863, 0.4273210250402978, 0.2756699240950683, 0.1759593701987915, 0.23163581285215884, 0.24775025776554183, 0.1549499044997137, 0.8839846451544837, 0.16823237306824246, 0.07461839268650572, 0.9129877527174196, 0.4076927432913836, 0.43643543977611576, 0.7884021058143497, 0.5531586070578656, 0.8751417613252777, 0.12481549351198806, 0.8549237378239185, 0.21318434378215012, 0.007827108820905981, 0.03309542095571594, 0.9005305401667352, 0.4291683395170298, 0.042759531655934935, 0.9501902588323883, 0.4810228819919401, 0.4941627251415758, 0.8965897060168878, 0.1377988383125328, 0.6631699406355545, 0.4186391484678994, 0.17073572969163264, 0.8279123511189063, 0.5797688649485492, 0.5966264660743866, 0.16994069084040753, 0.09523572082621146, 0.05427273742722638, 0.9761650309531114, 0.26897955574664456, 0.6901836132088518, 0.37367553303509027, 0.12079493858635781, 0.09204159010612012, 0.6622925808038305, 0.09022398616874594, 0.6275171224837608, 0.8272869195279748, 0.016452105779083848, 0.5984856275971281, 0.08178684809601466, 0.3495744781905695, 0.2013859253761504, 0.9690800010631048, 0.18132349309616191, 0.11950144359254733, 0.12729153196596377, 0.5698557061146327, 0.45611478299972164, 0.8003493939447622, 0.5322317625732769, 0.07054389088868873, 0.14901169215991106, 0.6280833204346117, 0.605316111379996, 0.23684720523700153, 0.053575685743366463, 0.579608898201778, 0.5241481067933355, 0.3917847074759454, 0.9821917380752108, 0.15744429838209373, 0.8904051177102867, 0.9996922539902703, 0.49761196910095007, 0.6188648832751831, 0.06840736378637113, 0.17016400262944198, 0.7204086858683758, 0.9903701261927274, 0.41671729969797267, 0.3731318937142717, 0.2918054772375278, 0.5804303054077983, 0.09043978994369983, 0.7104915043954665, 0.9408814051587858, 0.06609737716740371, 0.18864212554170356, 0.20098788460686856, 0.39087779508615295, 0.43559137957645877, 0.8180935539971042, 0.378152108932039, 0.5202737798238333, 0.2607998399624405, 0.6610476261694279, 0.279741026385396, 0.6984025350272727, 0.8379216646052672, 0.6183665320047211, 0.33855163035899494, 0.9137593260740818, 0.4424961407937579, 0.23063911182349284, 0.9553761789496812, 0.3986303898391891, 0.431473149477129, 0.06951053643354765, 0.17521439897021274, 0.25508549472311404, 0.3668454727262611, 0.3780250702729926, 0.2588493004995315, 0.11767379495387431, 0.6743467268464577, 0.12775651343437677, 0.6154068406003567, 0.7778870992661352, 0.08078358949913012, 0.10314977400212233, 0.36654207823600204, 0.2832565347124395, 0.18492498435134652, 0.7143114292485556, 0.7527501462134853, 0.7242625134047287, 0.9071346752916971, 0.2676443856151459, 0.9906997532108772, 0.6009670366238961, 0.5643890138246974, 0.9540917307352753, 0.6730226495232922, 0.7837448832278171, 0.9905521011656488, 0.810467573964875, 0.48239383675983005, 0.648068523229573, 0.6145483046932879, 0.5741120864168191, 0.4038078262125615, 0.42644200078978656, 0.6374993536204376, 0.3534703176857811, 0.6963738895040151, 0.8949055438535621, 0.044731905885125545, 0.4685211726094758, 0.8986753697340045, 0.4614026511071374, 0.6460808785256439, 0.0934692143389162, 0.5260559468343587, 0.5470169316904766, 0.35003798504907135, 0.3947449215703206, 0.8687929477999942, 0.8612764940958464, 0.809632784012324, 0.20324278986453603, 0.5871114827976872, 0.6337471655213693, 0.01789081178831675, 0.8775392469317896, 0.4303173279841763, 0.4504004351918296, 0.5715842358767452, 0.24816787171039034, 0.8345900025729356, 0.4204083834979071, 0.48082726389359987, 0.8962695754660712, 0.5509359674545503, 0.900293435069848, 0.49803004695431297, 0.9592123436575225, 0.7197896056812687, 0.663512260604006, 0.24671596824031905, 0.04435449642575584, 0.7489436338767156, 0.8942620781577427, 0.10982654165787609, 0.7309359345915588, 0.09805112287692752, 0.7612158674636504, 0.6491543485784098, 0.4396606922088464, 0.7873692622868186, 0.21747321676179543, 0.27819978467955697, 0.025859952034126277, 0.07369535293179252, 0.2332950590924373, 0.2807993386343115, 0.780907869685212, 0.6275810987026325, 0.8181344558347825, 0.3257909457189473, 0.5782287766784618, 0.4000159832728678, 0.7889837221179912, 0.23825799859099672, 0.7288098732098229, 0.9236659819669766, 0.8404137227938077, 0.6845162466664836, 0.5033302841847802, 0.7903054656220869, 0.09113763345188708, 0.5814958327054145, 0.8809116832409908, 0.9122823453363125, 0.40810224895261027, 0.4993163281026095, 0.4982581239593208, 0.2438053546265364, 0.5895115366310014, 0.41462421011230177, 0.08018617084902369, 0.08344834470301987, 0.9537411798415036, 0.4024424493128791, 0.4349033379456855, 0.5894778789168267, 0.525395259759944, 0.742384062268148, 0.5897518228228003, 0.5746091605842067, 0.48455023970844235, 0.9971742090272192, 0.5801216779588502, 0.3453488874633682, 0.837271110948858, 0.5720494726169524, 0.5510882378156213, 0.1474026712307962, 0.8792405390394964, 0.1545575358395126, 0.277307496159071, 0.21178304134292902, 0.42008334024706895, 0.4844438199874551, 0.7629227286347695, 0.018191150533511613, 0.559724892006026, 0.31959801497719054, 0.42484124055468686, 0.5045022335945112, 0.41792277630394237, 0.8406756874397227, 0.7584689612373772, 0.6627959232140231, 0.4504234556891311, 0.6188812086557282, 0.2520511112897321, 0.6768894585664594, 0.3661259749132949, 0.9116865527641543, 0.23213232856306942, 0.4908392834870331, 0.738939475306359, 0.5620610076127113, 0.8266539544720171, 0.01875064686052219, 0.6833938264409025, 0.15622407261938154, 0.47847063703984216, 0.16225735863292068, 0.626861835172884, 0.6962144668652144, 0.43806475373402887, 0.7492544031589252, 0.7040677230630416, 0.01759954618456372, 0.9865958010578765, 0.03185187514267629, 0.30381137581155415, 0.5060214422564072, 0.3092472118168026, 0.0032909179014989354, 0.7127498654249984, 0.8883115575635208, 0.32149983437858787, 0.8009411838074117, 0.04638748648727131, 0.7297664812389735, 0.8989291363884553, 0.35566706525255143, 0.013896858858623018, 0.6346983893556364, 0.03891941107879826, 0.5364478561568168, 0.9346052901800616, 0.5693971256780886, 0.8276623763303008, 0.7062849172073955, 0.5488628711485576, 0.9915643236365863, 0.27360242982737326, 0.428510889022807, 0.5861745987579853, 0.29525251091454774, 0.30807814828126157, 0.8896455694157437, 0.5027114714348876, 0.9199076411196865, 0.23282426413852708, 0.4818500620085011, 0.16670153256358888, 0.6636973144358316, 0.7694941061195618, 0.15883471872883104, 0.5024009822955197, 0.7607385012668226, 0.573308268589688, 0.7128052915538216, 0.47458114042107746, 0.3058585053783185, 0.09592156921231909, 0.3377952791739445, 0.952001594343004, 0.8846612747528495, 0.5982256970401872, 0.6369596346886195, 0.02693587765302574, 0.5035915271181381, 0.47394620282309596, 0.7634217079612763, 0.6406562340181134, 0.11079848192330677, 0.11522602110249769, 0.923058921556633, 0.9629263060398169, 0.15060125521144674, 0.5968283212517348, 0.29721872055541865, 0.5405791996023788, 0.46497597047053163, 0.1474020065524796, 0.02372847455167626, 0.4812350611515559, 0.6967296144435504, 0.40179152923066985, 0.07337169310561187, 0.6573405093113526, 0.28539098302246435, 0.009244331607107803, 0.8334697295352289, 0.23464663972541577, 0.3073779897627624, 0.058093662575568694, 0.04610850727102267, 0.5546424186668094, 0.2049655844224303, 0.06441181531467033, 0.14571754478580512, 0.9136148842072573, 0.9633426345737295, 0.11450279429572519, 0.8566414099373426, 0.12902084871220154, 0.7809907033457243, 0.2985570720128967, 0.46729112914902193, 0.7217325778549142, 0.2546352230908381, 0.1256851780716386, 0.39866286655515215, 0.29130009236984944, 0.5981952924368953, 0.5728623455467942, 0.1919052600398845, 0.9814586395989626, 0.462482396448342, 0.7489914511611149, 0.7412085483495735, 0.9946184453248871, 0.9936217361154278, 0.8775986486201842, 0.006560143058748524, 0.07987839637588312, 0.09255693443709223, 0.6803478962534361, 0.30716860052772965, 0.059662614018199944, 0.9495076917578638, 0.08768176932411165, 0.001824941895294807, 0.404622906816846, 0.24973904196073338, 0.31896231963901933, 0.8108683556212708, 0.39186369848808034, 0.4459274394891427, 0.010718097594918707, 0.7550653191418718, 0.3223419376369112, 0.8164182930492055, 0.17922455006075122, 0.33949473635875504, 0.06751194311674491, 0.27312836940117935, 0.7977878633194752, 0.5534685165687104, 0.9664165966522394, 0.6163821629133173, 0.762601699536449, 0.013349048692931964, 0.19665098565332462, 0.5163939212920239, 0.964244464765071, 0.7121324678477916, 0.7343086132847295, 0.19586167380919972, 0.33987362838875446, 0.7917335907775159, 0.46270781969142505, 0.1568263181861438, 0.5605860508617901, 0.41770569345363284, 0.023095063092301582, 0.671615089714368, 0.8998883033166025, 0.3242808596725315, 0.4522441487686394, 0.8767106808480611, 0.34638967803599197, 0.763273507178805, 0.17403742007770107, 0.18792541092877746, 0.42265489606353224, 0.22032773490032842, 0.052433649773522606, 0.6410772493293125, 0.5404297486773655, 0.6738850368969902, 0.025304861036353765, 0.9214332930951719, 0.8048750272010128, 0.1118679959599429, 0.7260315135398228, 0.5033264679667974, 0.11766109467832087, 0.8893669830512008, 0.08419669816230901, 0.14675588040793208, 0.3528936945566066, 0.106742390640025, 0.4577293580973604, 0.4575372804000559, 0.6559996666974696, 0.6990217090015802, 0.6186309438534915, 0.7109303170901605, 0.7890954090368631, 0.09348311842786117, 0.7131596022185958, 0.29420168216011433, 0.4242046278295408, 0.762301071285519, 0.8726250099662999, 0.07445780740456609, 0.012498265444291112, 0.7062697218305279, 0.25387072967397084, 0.8754763532429322, 0.5280531041312686, 0.5829766765032436, 0.9945414245536217, 0.007846602377753031, 0.7792711615538326, 0.1954933824064189, 0.06442714559787988, 0.796829720341162, 0.21965903814918053, 0.5990052965486369, 0.4747824713914609, 0.7555350342577766, 0.15843456375281983, 0.920282178759835, 0.9786594229398783, 0.6198631794907337, 0.5393122117536336, 0.5580758017265334, 0.7522073552221554, 0.613052578061908, 0.2698946896821819, 0.8910459023406836, 0.2947695305170457, 0.7168595679123648, 0.29624731565202467, 0.6638787200527321, 0.6279389121599652, 0.23444823075221521, 0.8166093093653645, 0.24446679560588835, 0.43326733879830737, 0.04482406194098443, 0.769363895627691, 0.150690618852507, 0.5358252851058666, 0.355291232307269, 0.4552392093245221, 0.24930691227037804, 0.6992456820243974, 0.043882588746269935, 0.9286801324853223, 0.781469537754247, 0.32539601043627964, 0.19458764045459065, 0.7217863037850774, 0.3483230790280828, 0.1543237930443374, 0.862092603487542, 0.5366933873577592, 0.8594865514074684, 0.7870106889721089, 0.5112783992131956, 0.892563029233438, 0.06661275929610178, 0.8308797345950213, 0.9407309207505831, 0.8838656404719337, 0.8660628180316879, 0.8793239885674379, 0.7101769887414117, 0.3337894505736897, 0.0678709014864235, 0.1932201424648582, 0.5837218281767435, 0.6091161543324661, 0.19244190681541684, 0.9153377133525555, 0.7325385293104899, 0.13014919306577044, 0.036541357319163636, 0.9175541295305089, 0.7969717718229588, 0.6279623899970435, 0.3145432427626199, 0.3344187748743471, 0.16101661909664966, 0.9814209788159267, 0.06251830806129965, 0.17117506937088667, 0.8970387438084556, 0.7192892308962439, 0.5475936657425622, 0.1757228924966735, 0.29220323055501063, 0.9544985974535637, 0.9242099841273987, 0.8187163403702354, 0.37894026796105584, 0.9060269224413243, 0.86495574862838, 0.8004715385214718, 0.6051661957081984, 0.9906111694781868, 0.02354600171460486, 0.9094001255113112, 0.8420117032204392, 0.3018285803933285, 0.7619290368450714, 0.9929127172137747, 0.1443610370107673, 0.8528333012391964, 0.4723144305526621, 0.3543726213854874, 0.06595743147076516, 0.8587686511990039, 0.5686616638655381, 0.6436028532937127, 0.31520733149241165, 0.942429717423015, 0.019969123451064164, 0.9573148842278032, 0.5610370701248902, 0.345767904655891, 0.637298280485113, 0.9501619387313595, 0.9023645158518087, 0.9001019571783025, 0.8510965244457804, 0.6781184643216009, 0.6467959684732545, 0.7507085898201029, 0.5707487724114384, 0.15914298607556376, 0.30946353708794383, 0.08526069353495203, 0.8824923282206909, 0.3257522816406303, 0.11516900557473231, 0.040447664677833894, 0.238115328455202, 0.26047504305684877, 0.8944597315897932, 0.38237254819193456, 0.7268236594938281, 0.686853227933618, 0.7412494215062803, 0.61642140245942, 0.04255093012732547, 0.5607856894823714, 0.5237019474579192, 0.7024804237374815, 0.9367806480428362, 0.337324229011002, 0.061949124323642524, 0.842676203644689, 0.9437679496408095, 0.5057797484709146, 0.38114666220988436, 0.5070669191140688, 0.5289429822897412, 0.6652231370760142, 0.4118754305707273, 0.4246092692547606, 0.6993349883208757, 0.9293332961736703, 0.05436059403671578, 0.15166388115177754, 0.5673979679815983, 0.018521914524938232, 0.15432250613035525, 0.7315744365962857, 0.869731505164773, 0.8899914747350662, 0.8945133422677615, 0.043440442011210334, 0.6551082366206871, 0.6756908312893908, 0.8189066836659483, 0.3694706686672956, 0.6592093878094065, 0.3469781254891232, 0.15019537679216788, 0.5747951247927865, 0.3797777903585545, 0.7449604363694184, 0.2539521278936667, 0.6824352721089039, 0.9143258007441811, 0.48346786025546284, 0.5280720667633579, 0.1707052035347203, 0.6241750807425153, 0.7158663835907636, 0.8010822444600842, 0.3555368934693094, 0.3974174139974719, 0.2938188813472842, 0.1079901029295749, 0.9936302130520833, 0.22386695901191278, 0.644094229466804, 0.7744846884522795, 0.4530274523330595, 0.1333681288918489, 0.3058805713784929, 0.7543141356461199, 0.2654505251459711, 0.5873384982201626, 0.6355219203606196, 0.45227008329992835, 0.09381607601797337, 0.7079547662865675, 0.8092468116714526, 0.48436408689374166, 0.7041669871746071, 0.31315398564782215, 0.22922817832776932, 0.13113355472725918, 0.926413910105858, 0.5164413189557261, 0.06004436331227003, 0.24682439573718795, 0.30472404935355035, 0.2698646146079917, 0.0935337717465291, 0.08141482139970269, 0.7288075421649551, 0.7739842330434357, 0.8876829583626448, 0.11371787095608377, 0.39110346338949187, 0.34158204930068203, 0.5364802571045646, 0.3083296110221079, 0.5982339119362032, 0.5021506536361843, 0.5899564172393897, 0.28927866564852167, 0.8379878797549081, 0.10851917693075963, 0.3608324497709353, 0.5307241664769408, 0.9160278952770236, 0.47001249459548455, 0.2776419258332392, 0.16717861772144804, 0.5535561505077309, 0.9914372868676019, 0.058454096343101725, 0.16224579812680429, 0.0819099784003765, 0.12348426486872788, 0.18331711573765885, 0.636717030800838, 0.48300950933021936, 0.546676664649808, 0.5750653862608988, 0.6631090372096365, 0.41139734184639465, 0.17172487812618797, 0.678129444580649, 0.04414916225824239, 0.1668524637575134, 0.15734545805562294, 0.04740650887417186, 0.33566621335299474, 0.743523779653463, 0.5604545044272673, 0.31430876494986715, 0.013888572361703377, 0.27053859429659466, 0.36711651661116873, 0.5372220678360071, 0.3608055782184847, 0.5351832202416135, 0.17118711352785565, 0.13674203055839618, 0.34257592060522224, 0.8531958068276321, 0.07131958380091585, 0.11563202953108065, 0.5021794177899086, 0.9176905632700192, 0.11417685885673823, 0.733345160174861, 0.8144453632138027, 0.799913501701463, 0.12751399953736386, 0.976691052223234, 0.881475190006092, 0.314141608757753, 0.2277932705117519, 0.6164787594316575, 0.06459280229867115, 0.9904451937278883, 0.7912145861241413, 0.6895044084136714, 0.9382021970130643, 0.28084880017385394, 0.20143588754197672, 0.16526139245653826, 0.32507365813700684, 0.9412861421004475, 0.888537826767357, 0.12126715648597375, 0.6779372596904892, 0.26250726837496574, 0.7386104268737769, 0.5466959707899951, 0.17720423098335492, 0.5116228501225129, 0.9523198697693187, 0.31838793406375465, 0.8269255967585047, 0.21134221953272625, 0.5611323780100061, 0.646307827362364, 0.8619677410533254, 0.16673004569933536, 0.05552131886903422, 0.11631100703096431, 0.44094285065214667, 0.5294855369942151, 0.9583552070733045, 0.4715024451664519, 0.43492441033075435, 0.6537362220992303, 0.6230468378462019, 0.1497472319742118, 0.35651929096774115, 0.3019958117699124, 0.7341835092953298, 0.29627041100719076, 0.15538045250986177, 0.8125400580411011, 0.6664003087316595, 0.13633044298056796, 0.8245837672462037, 0.5921284664682147, 0.916179141354857, 0.704377796571236, 0.6055471528212574, 0.9373371454723403, 0.9108747985117938, 0.6121746898202135, 0.8414060683611387, 0.7720867844338214, 0.5196200593874966, 0.8422746693417956, 0.7120321508883802, 0.7526639104157907, 0.6241084117146982, 0.6680470392241485, 0.7512312826266448, 0.02725750432925922, 0.9894897764782035, 0.7994117310946816, 0.3751052892794472, 0.36378215897385524, 0.9937313584776343, 0.5585546831320446, 0.8323006340827832, 0.10413305465959122, 0.2860223361399129, 0.9700634188512529, 0.6432471376539862, 0.15331126553455765, 0.021698036820599342, 0.7265321701435142, 0.09826168291444748, 0.13798494486866608, 0.04672555860628569, 0.9789323224538913, 0.41615612581622385, 0.009106886444161133, 0.9384052160368184, 0.0910805724196736, 0.36356185306879096, 0.5281419635382008, 0.4817766218940417, 0.31926293870870703, 0.8195431212702993, 0.10389324595554728, 0.8530280806167805, 0.3814117876376033, 0.1590088116011562, 0.7327175168279276, 0.10641020278923452, 0.6699533178550239, 0.4790654430974488, 0.07975259712073479, 0.24128563923784585, 0.2173336332763437, 0.42482132503494685, 0.8340195682790744, 0.7893817185225145, 0.17486298041370452, 0.7747091613028828, 0.3497880003777387, 0.24284870754657017, 0.04023442400838095, 0.00013217623788708277, 0.073800843781331, 0.8830941740068048, 0.014456683059574593, 0.7569029609512159, 0.4754606701454911, 0.10073778457392557, 0.5822448705704482, 0.3611954034353415, 0.8402819331154479, 0.5097805889755943, 0.2761204595193246, 0.696174965853414, 0.346560670565756, 0.9163253031230412, 0.1248802748398884, 0.1693078718631248, 0.19255771144668687, 0.224213239722033, 0.9498688299880469, 0.5271875865156698, 0.3127345526623788, 0.5545815436659484, 0.5541437355280344, 0.669183101148907, 0.6290530709661524, 0.8329744214327617, 0.40802467927134944, 0.8357431279859965, 0.2401021760234785, 0.9309454701712842, 0.7574956674306902, 0.06370635963610294, 0.5457338750286026, 0.37557853738150226, 0.5430836254492855, 0.21688593930710576, 0.5512635778409783, 0.3800509899145871, 0.9560851548027325, 0.1923335609847998, 0.3135345793638141, 0.6237788058116817, 0.5582654684449452, 0.48597665552435143, 0.9214866426766223, 0.492891462552858, 0.18484356989550266, 0.5663638109341775, 0.9661047609299539, 0.8436266966718143, 0.147131010464852, 0.3566208148871106, 0.5280561452822411, 0.7811479495552294, 0.9948359564163731, 0.6528183570085757, 0.5318023251404792, 0.8315241120005973, 0.7265742959666626, 0.198162178377995, 0.3422245655506304, 0.595981212312827, 0.3370544661597378, 0.11892330342371371, 0.057564901082487685, 0.5773176344367559, 0.19415469717374945, 0.5305523801397429, 0.32205268360192196, 0.9264810882416519, 0.98629792033637, 0.3190937491226594, 0.8995916368967918, 0.30588500499109195, 0.31987271375685855, 0.5759294136551657, 0.6041736225372069, 0.5163909668412967, 0.5958715611705515, 0.5110227896561538, 0.9190921422823376, 0.9013741942783015, 0.8801453979060184, 0.30019786255337433, 0.722913937293593, 0.5553814112331819, 0.6451518068069404, 0.8185033209334887, 0.46457915562670615, 0.4893799133734831, 0.9358423720414842, 0.6336203806078669, 0.845653747450809, 0.17808707019992853, 0.4936179351367256, 0.8738236803960654, 0.8595637494387147, 0.5583680316713145, 0.18614014968574744, 0.9936865248801747, 0.4512483910372943, 0.48911429915600524, 0.47101577709246445, 0.12762669333046428, 0.16982835907829252, 0.26588168555399627, 0.4559669589283186, 0.20606781032507326, 0.9769631202927935, 0.7519421901293496, 0.9032320837282445, 0.10469778936186558, 0.2116143357271938, 0.11502753059844151, 0.8188975410641246], "lambda": [17.820471566505866, 10.964932529402425, 11.978359844095825, 11.671990961777839, 14.829999757774768, 19.857176012831452, 16.550597865174964, 12.409026231615021, 12.710872030695793, 19.10180676467578, 11.18961196780841, 15.160286160412419, 16.235452434302903, 19.08548715230683, 17.255155821219574, 15.538091363617394, 10.810978644762566, 12.198489791106255, 15.000685048709224, 10.364876820820454, 10.405504142190182, 11.618261483276047, 19.72291606705301, 15.64059288052315, 18.376097026384862, 16.874453571642437, 16.816060385526278, 18.686040484969134, 14.897126468636381, 11.339195261133344, 16.162569342788224, 16.77531301640449, 19.467329327095875, 18.64841207115968, 19.866537947937566, 18.101232869826106, 11.725755541477996, 15.810623798366723, 13.429344065075012, 19.73076935851003, 13.924897547641862, 13.751030403388642, 12.074533068445168, 16.02771406291739, 12.140848229141916, 14.813639005568309, 12.968264257014997, 13.254502038783219, 10.733527552516707, 12.878269969095333, 12.238564267342769, 19.573672809233447, 16.900206580636265, 18.778626725129072, 19.092740127965225, 14.35413660918968, 16.25580700688478, 15.502890195745337, 13.036095350892914, 16.30896644092068, 16.733532289473317, 12.362243116890948, 16.50106127852014, 18.21309858656773, 13.313466765475289, 16.10942087368345, 13.40828323003091, 18.16683742943244, 18.38319641517625, 18.02704676566468, 11.054523920670887, 11.677811732266303, 14.188645855460049, 15.808023447875579, 17.122995272828767, 14.277561192041656, 16.67484280996164, 11.205290418880496, 10.70676698205148, 13.36616984009024, 19.562889486777134, 18.337607760339782, 17.845007206211648, 17.07582556635796, 15.18998506109685, 12.618920549754275, 12.097438116015478, 12.23253376193393, 17.866492851058176, 18.82455085595176, 11.013371827475238, 17.26548529985504, 18.917015147196658, 12.88533427964718, 11.854184365920688, 11.399330339454725, 10.34126794998228, 16.21846475702553, 14.616674965635106, 18.13533336804856, 17.847772861814686, 10.269927844628302, 10.18226794538689, 16.901820435161067, 18.159183866699756, 10.181840846730953, 17.11060523367543, 10.318264938851208, 15.268804620110416, 11.291811363112595, 14.097602660864126, 15.699904161717981, 14.721528682083985, 12.521341475405418, 14.874805208195268, 12.649540359270533, 14.483381906151674, 18.99675411483817, 14.806984574842023, 19.199214534187515, 16.53663487190496, 11.415474091054215, 18.040961977566788, 11.568255793031081, 11.807902697388645, 19.25286551615301, 13.202613160529388, 15.138517668445846, 13.449202954768815, 10.19626124416381, 12.656053600783235, 14.0977061838603, 10.928706313208354, 19.664543830648, 11.85486504752464, 19.76639274376908, 12.058047658938845, 11.599363723112681, 11.357586796410807, 14.631034708187661, 16.121415934729725, 18.899349473510995, 11.966969643316666, 12.974623925678275, 14.684648188860681, 18.56114601244362, 10.941254774770423, 14.364378687101116, 12.179016014895184, 13.663018338451941, 14.419169240508502, 10.755588707446444, 13.13407081617828, 17.46917914361277, 15.093920585782346, 16.34764539052131, 12.129146456651329, 10.982544935116037, 19.309859169652803, 14.33873631986732, 11.127768036369236, 12.8859171877942, 18.034464783740347, 13.220907198822012, 19.556432062229266, 11.361349106453195, 14.074601999238556, 13.246178432816574, 10.240534057476253, 10.494169325021304, 13.16395460659398, 12.580438077579554, 12.204936648884537, 17.469961374011973, 18.367434722874968, 16.564046506637197, 18.490398643062445, 15.001291389568301, 17.763978397060658, 19.824276823614667, 11.650588439717378, 16.731549581209016, 17.248227819057213, 11.50936433921854, 13.058282244753936, 15.898383259896207, 11.618021545535765, 19.22387773824991, 17.377358397136263, 13.226155619132916, 18.191116624925698, 10.152550997720628, 18.66105138358474, 10.860217506848205, 12.184490918570571, 10.237137615779382, 19.84103011570668, 10.712833276009414, 14.22543558099029, 19.149787132663235, 19.975901792932827, 19.521924738807524, 16.20430207567857, 13.258175366461646, 10.507838928886784, 12.803572993365622, 18.039962884196342, 16.88635575217253, 14.65016978989738, 13.36023304447857, 18.390900745129848, 11.555458629355641, 19.75048963160712, 14.299920540400581, 19.806849045593786, 12.18716932528862, 19.089813219008963, 10.152760396249558, 13.618181795271326, 17.584200132812057, 19.217531457117587, 13.752869505542094, 14.005903495176609, 17.8717852179294, 10.688179909137858, 18.739695000058315, 10.101105425631815, 13.64155700791624, 18.257204442165857, 13.081828570406532, 15.339792903355901, 13.790275192955585, 16.168208082314685, 14.495061652592657, 11.590164963992645, 15.499810725169901, 10.129837425405483, 10.580673854179269, 19.454287805964547, 14.963082143217356, 17.21077702972523, 18.903912580871076, 18.27942949323244, 12.154105873041264, 18.870399541632757, 12.26666903687315, 14.780087639831983, 12.6488294617708, 16.23943595364167, 19.83758496944261, 13.938580926284757, 19.01142050244284, 12.70686169957891, 15.929453719907217, 19.075376816685075, 15.41403674335551, 19.19060429172564, 11.43685167382263, 14.576709629209388, 17.703694150338144, 11.235383470718142, 18.152841434923474, 15.568061907415974, 10.39372204068368, 18.665356864955264, 17.465452347917605, 12.99430704516687, 15.588525269945066, 15.485407611725869, 11.290184088136172, 19.478537937386772, 14.896190956934538, 18.014313385719174, 14.265210264020837, 14.78063383812567, 16.50732103190281, 19.749975897002752, 18.86607337636287, 11.859114125093566, 10.445059080899515, 19.95185108788661, 12.052434859358385, 16.483416047663233, 15.69551620638399, 15.584277022576279, 12.063673430525549, 19.546332929350566, 14.45499572874375, 12.603226862115722, 18.662189581683755, 19.733451735623767, 17.22780165713057, 17.50659026267836, 17.867767525328787, 17.64367077841633, 19.365719261997953, 14.888033601886473, 15.325354814339285, 12.66364294093929, 12.65327929505607, 17.46021061934693, 18.34199295325066, 17.86319085194202, 17.722692551455687, 10.449874822382219, 19.197141835889596, 15.721159249601962, 15.477391485470244, 18.755947673180593, 19.14189784982588, 18.380919375083586, 17.02987386267963, 11.553182028596984, 11.091032491200433, 19.270814436883263, 14.915822277658133, 10.595434722820045, 14.072928484359876, 15.424179866292544, 18.75409682229703, 11.06003803915311, 19.375094984990916, 15.516072655871564, 17.537999730204785, 12.104105749572962, 11.130714729784897, 18.118394765047185, 15.827304337156248, 13.505432923556782, 13.715437954218284, 14.705055318095106, 12.900369612767195, 15.480360691665567, 15.961749142551286, 14.276782334816561, 12.830944694522643, 11.038211247610267, 14.687787021277918, 14.734611102173629, 11.233207287787154, 19.344799133073273, 10.204041667444919, 13.73596849038892, 12.710925740062274, 10.130669790546614, 18.732463561322422, 18.1469383150429, 18.401163113622303, 14.552397141334476, 19.899612826360514, 10.072685242570357, 19.10548745209848, 14.663162283843063, 16.6548729967631, 17.39558977517413, 12.57490025270713, 17.52964514284653, 17.316623295019994, 13.73845714049336, 16.626855702732136, 17.117378739267807, 11.275724257525233, 14.16190595697172, 12.936315812750937, 13.866364420945645, 17.098345220241818, 14.606946483122414, 11.05891929208414, 18.966926023554933, 12.86122773976933, 18.909138906178928, 15.118772896247368, 15.950236960061098, 18.499164233832165, 13.980790004509464, 19.628959708310532, 19.171115020310264, 17.6239198127274, 12.02106939051056, 10.087717162816288, 10.516443220702765, 17.527651829126256, 17.569389839069025, 10.756841405688558, 13.071359372796195, 15.651705772388777, 14.63051508690744, 11.7115876321056, 17.73024340604141, 16.65055509201192, 10.923600251336476, 13.205325228106073, 11.42917388567829, 18.884249329110038, 18.031056269478704, 10.92739258922473, 15.267769095456877, 19.822673757589662, 13.093352722591803, 14.715236373464284, 17.21260149911532, 10.131208959783773, 10.565544674934117, 14.245503381845285, 17.1801183265099, 11.435458429497341, 12.539087418012588, 16.006146439011797, 12.216995073182527, 17.169874352388046, 12.835280362411492, 12.622235345850264, 18.401196969249703, 19.483151881993045, 18.98862160312837, 18.08171859997713, 12.448581018487847, 14.900421065981094, 11.156026868774413, 17.196818765181657, 13.16230066776948, 18.23474207522624, 16.867817594049058, 18.063484592218536, 18.38398714487942, 18.315170395482074, 18.483985128829595, 15.069992760688605, 13.069387971480307, 16.618529087857244, 15.04378842927919, 19.49421842137553, 17.69462897443061, 11.136309264810837, 10.948443598207831, 19.925578441083054, 16.239397319358527, 14.829809935798043, 15.687584401153654, 17.698097642948134, 15.782390982576494, 10.753564445863722, 19.55319050257799, 14.808992829280864, 11.781058062550828, 18.784525928873506, 18.120204452847815, 15.8318737932228, 16.053488893058592, 11.995868432415264, 11.110412232924693, 17.4389252266824, 19.86230942493831, 11.316219741360221, 19.692294356879387, 11.892239020225603, 16.94096715237363, 14.900375296102407, 18.402727192649806, 19.885079190384438, 16.303433364210598, 19.51112937785137, 18.047832527898294, 17.081318779267153, 17.33384181933332, 13.565977042202658, 10.751649724488644, 13.213162773663452, 10.396542264314425, 18.978637281369203, 14.830954863951062, 12.696165229166665, 18.365284404171852, 15.71947685300086, 18.438856936618958, 15.097793523328539, 16.808470986357364, 17.204299451319983, 16.629447825971564, 18.387201618827298, 15.186990766687172, 17.375025891968704, 15.11909161743445, 17.838794105587713, 14.846204971047381, 11.40520014922031, 16.763449488029323, 12.330863889998648, 15.362218614310978, 18.88982488448654, 18.909024475808053, 14.826357658989034, 10.844266380922425, 13.477606719769124, 18.91992873138404, 18.35062944022292, 18.547821054322768, 15.562344146127398, 11.750097976319328, 16.707269607973583, 14.85644819869361, 15.39147845096775, 12.110732126149149, 15.520498547652723, 19.061401652815384, 15.542506459595515, 18.96418435868859, 11.980540093134444, 15.999680649801657, 10.433053927126357, 12.367327894362123, 10.989872062436541, 12.865383698118038, 19.00476466398208, 13.080617046183484, 19.802304906306517, 15.759800921825164, 12.669051475259295, 10.08278724016585, 19.582672595777463, 11.337293607275704, 13.763573556111602, 16.31267113873713, 11.74599301168467, 11.626936917544969, 16.08350724067786, 18.058485260884154, 16.747414673990257, 12.095054976282013, 17.324969920597606, 10.976693471008772, 11.291338102726375, 16.002125527029026, 15.983632694598935, 11.138239759955548, 16.77160288158012, 16.194095066684895, 16.68493590088047, 11.439448848799845, 16.40710497855851, 15.479625540547694, 13.673159158294903, 18.375213935551045, 18.757550745190187, 15.73082437951381, 15.996428987186777, 19.174802376686507, 13.859088396837466, 19.28049892111594, 16.654095191792795, 12.610686662246632, 18.360550556089102, 18.866697794653632, 13.8115360814529, 14.892660604536104, 12.51548325229092, 10.062954841105256, 18.136310517649, 10.55211414880887, 11.89770734530989, 13.188855856019298, 18.89273416487699, 10.917337195215648, 12.513940969789276, 19.931643040269716, 14.580931457218119, 11.947495458108172, 18.17206305659598, 13.076231121792222, 12.87346178039782, 12.808964335346142, 11.080426044659237, 11.807066573239878, 16.99272420445998, 19.01029286577753, 13.108382668707758, 12.472255282763689, 13.098283695374633, 18.457447903405676, 18.61810980564891, 12.62201561955189, 13.395669522758398, 19.314989429781875, 12.808378537855813, 17.074688555014326, 12.72094951471733, 18.87990635056456, 14.693807652222159, 15.193941010982785, 11.924171402114453, 18.015262309150906, 12.050660760658687, 15.25491654563242, 16.718769692260604, 15.993569066367908, 15.631931976556217, 16.740166123349205, 19.217326589036787, 10.562935971096014, 16.577237930058338, 15.904982633252606, 19.722769055379448, 18.447444523769143, 11.94326189729085, 14.684662332236309, 12.252287664582907, 11.081646497179513, 14.282570570281054, 11.358157537480661, 17.39416414314532, 19.185438088805334, 17.563602095262592, 18.996869055445, 16.417745084000046, 15.64769162360049, 18.15773287199699, 12.893932373981766, 16.474625237527782, 11.587513437433856, 10.301084475415927, 11.011417853547705, 10.9198629238247, 18.97368806688525, 10.891570317024607, 12.725076374766509, 14.413835781481243, 14.017544989909172, 18.61209100369267, 10.079048402640758, 17.727472872932996, 10.250928421355379, 12.736030053360043, 10.73964047549923, 11.745628096302429, 15.513419324132943, 17.81442434083351, 10.425257317019481, 19.6806289017164, 19.577323018113006, 19.180057622709796, 13.436807079984835, 14.244110602267472, 15.027741718073507, 10.282552850432122, 18.97923213187695, 18.556711356069446, 18.480237102176822, 14.618722903038414, 17.910685709087158, 12.271640706435683, 13.439451431072712, 10.601968322792638, 11.17527672013215, 19.590745920408466, 19.6118187348818, 14.008182527565577, 16.04627969418334, 11.29066997564936, 18.780064729184346, 11.315122475831082, 18.14600474335832, 18.29886903427705, 15.401184376856383, 14.49186786445426, 13.916871087369714, 14.296073249003342, 17.625011897892584, 17.180354995569633, 10.706768673006106, 18.15172860047157, 19.846800487453283, 17.154376298530075, 15.01042177106979, 15.18618159946335, 18.64804685538267, 17.517695632950282, 10.610039823791865, 10.50598090262722, 17.61916416958442, 18.51129675296184, 18.76776500717071, 12.498758607859324, 16.387943214098087, 17.548853860966112, 13.266460344441365, 11.363470950110017, 17.266864584403788, 18.231772354615348, 11.758715090061084, 17.703431260407648, 11.22921765538271, 12.196257023617623, 13.161733969421924, 18.19767298197235, 12.814591399425648, 12.012500771802106, 16.076565637068313, 13.166078562893745, 11.627888153036361, 13.348787900274205, 17.55891316455125, 19.849137353282813, 19.00131236606558, 18.5334349575272, 11.47738008243317, 13.576698789611259, 16.418121036162614, 17.07233159771935, 14.860689119009104, 10.358840199891553, 14.045210369632567, 17.313518296956925, 19.581764527186657, 10.896014269603238, 17.149677494402205, 13.340924629687738, 15.931901665569473, 17.803466425210797, 18.498935508987323, 12.58133064408274, 17.887070644828267, 12.45959720022693, 11.914394823784097, 18.18059813271783, 15.261921029428363, 19.215077000328115, 14.220447410019975, 17.691956800760025, 15.1587617400188, 12.320132220285831, 18.99091005319139, 13.669293016449775, 17.303587346472895, 19.902059756032315, 12.718477994391495, 13.149065109263438, 19.40586860801486, 16.12485760945568, 18.194633825591946, 13.039222581219276, 11.016244296778423, 12.528876216177027, 13.920766082998355, 11.939402798198737, 19.193353740342637, 18.64951409782239, 10.96481350638099, 15.375551524010854, 17.726124977937314, 15.568750543804347, 16.053471754835808, 13.46881021037031, 14.081151316904137, 17.256122386103062, 16.293243944918885, 10.293799778974282, 11.092784061252765, 18.335982715353452, 19.072966884233388, 14.39460793883729, 11.628765129058976, 13.37059631289383, 15.007563733640424, 17.60368942128575, 11.146005615021522, 15.437826215400516, 14.324789469715942, 13.761850916904276, 11.380559787781436, 14.507232149296145, 13.150414150468928, 16.300103898023625, 11.409364619239257, 16.93263921361457, 15.006103151710374, 18.715763419038797, 14.317664585876269, 10.183606506780396, 19.35613460821005, 11.05232797238094, 10.57651816868766, 17.869252836164033, 15.2816481858898, 16.827635063415464, 17.401446757962894, 11.163514915059258, 17.916226550400488, 19.248942312952522, 18.58494016283425, 14.048118883092464, 18.62537114940074, 10.47399588508476, 18.124317294251153, 15.73211649249092, 10.003867072939757, 17.164047277104125, 14.812105375437614, 18.75717447450107, 16.559729263860543, 12.843433262942607, 12.455473840830017, 13.409025489872224, 15.942822347724116, 17.849441944404667, 17.099406156102486, 19.252218507170134, 17.248468106576865, 11.822986235228969, 13.322203820927397, 17.451722470706507, 18.322932377286858, 14.474989890248555, 19.09591763792063, 14.40386007086408, 12.375248767694035, 19.060573350904676, 10.703446688852782, 17.24828663441852, 10.120849552884504, 13.94296871018641, 14.36068346159533, 19.37718474381365, 12.639238248928553, 13.694561876645647, 13.787679746937624, 12.738300524711903, 12.806214918692554, 11.450972775068758, 17.663791492894667, 13.92089411701436, 18.263493359773747, 14.45792100150658, 16.361621960433837, 10.457435230321177, 18.750650253789587, 14.17041567235123, 12.957032113209147, 18.46076834256242, 14.56405955665352, 12.637097049705076, 12.535078998321618, 17.567322597048555, 17.791356501823227, 16.045316857195616, 18.201102948743703, 16.86841660660339, 19.200962840491542, 18.120844035221445, 11.450406954723116, 15.267645836143853, 15.233422468125589, 19.566296582320682, 11.556524669614854, 16.47746765110459, 11.488439711958591, 16.024370507196053, 11.01025864639483, 16.43929074023441, 14.497596848997638, 15.424235096032515, 19.294579058922025, 19.980243531182317, 19.167949231133207, 12.346729674397595, 11.733122264085331, 19.189032511541004, 15.123901272977474, 19.11045916373972, 16.15564905341583, 10.511248111059063, 11.557273495753588, 11.16818888901268, 13.179553062053706, 16.04011285470621, 18.40038292720065, 16.739711719261564, 12.984452157254092, 10.699929518858305, 14.613929341438189, 18.752533114811946, 19.155708558189954, 12.385612222623992, 12.929910688301588, 14.466685773782398, 13.459782961751092, 10.274137675580837, 19.449686875934198, 17.97121653252781, 14.759776060857494, 15.022073805736056, 11.134798744744923, 12.880343507073741, 17.61651467759296, 16.929532998801147, 17.860036421939565, 15.712087840206934, 16.99005006738112, 12.951623503202825, 16.06470458205262, 13.642875992376897, 15.483949231301382, 14.189162226621768, 16.33588299322542, 14.243620748086375, 10.662048395523387, 17.531863561974706, 10.769060176836806, 13.8114569258483, 11.995518873497371, 10.169235621451522, 16.099234285637387, 15.922398127379228, 17.677294363052997, 14.95078917489117, 16.687733819211317, 12.07423541371378, 13.998622733628093, 11.040020929378336, 14.767253527615674, 13.994503059793825, 15.415970905586066, 17.470866179346668, 12.520340933042696, 12.115334821869412, 12.779606396678945, 16.506828804403646, 17.7868140542151, 15.545274064056315, 18.440828465647655, 19.78478865081304, 11.243844034835536, 12.70242215858117, 15.312267526382378, 10.491393462973125, 14.58342305373378, 17.032172415855506, 19.108243509729697, 16.429261030910816, 13.967846578078042, 18.331724382050666, 19.798579410093886, 13.315772730343472, 16.861774768615092, 10.81984154295797, 18.77696715752181, 11.973214551059588, 12.512290854472617, 14.271515595528687, 18.52521693832493, 10.822567269756334, 10.654418041316985, 17.04869745102922, 18.31404956786972, 17.052949408454296, 18.810079035524794, 16.50389219844134, 17.907025134027712, 14.040637138262746, 11.48364013640305, 15.766947103953708, 14.347134347303193, 16.504906631709275, 10.188982504932167, 18.525558786960715, 18.908996767624487, 18.718622150851324, 15.377346681098016, 17.71460357914292, 16.96240452321024, 13.186885766525936, 11.115749088558806, 12.157330260694925, 17.328056936538687, 17.705793261717147, 16.637133632456393, 12.256076526430073, 15.112694233678955, 10.77950417448834, 18.649287898094787, 14.973710878903669, 15.010779378131348, 14.763046367152626, 15.038367524391589, 15.745168554424712, 15.131390183500514, 12.983116192834323, 16.91089474127847, 17.80080559203478, 15.116667289271675, 14.216910532120899, 13.471229386312793, 12.314767050197787, 14.749330903842424, 11.517449144408788, 11.657827858070677, 13.969107728595736, 10.152482968492034, 13.525771001979686, 15.902866351900226, 14.006096634584296], "expected": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]}
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/test/fixtures/python/runner.py b/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/test/fixtures/python/runner.py
new file mode 100644
index 000000000000..b1744111ade9
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/test/fixtures/python/runner.py
@@ -0,0 +1,87 @@
+#!/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 planck
+
+# Get the file path:
+FILE = os.path.realpath(__file__)
+
+# Extract the directory in which this file resides:
+DIR = os.path.dirname(FILE)
+
+
+def gen(r, lam, name):
+ """
+ Generate fixture data and write to file.
+
+ # Arguments
+
+ * `r`: input values.
+ * `lam`: shape parameter.
+ * `name::str`: output filename.
+
+ # Examples
+
+ ```python
+ python> r = np.random.rand(1000)
+ python> lam = np.random.rand(1000)
+ python> gen(r, lam, "data.json")
+ ```
+ """
+ # Compute quantile values:
+ z = np.array(planck.ppf(r, lam))
+
+ # Store data to be written to file as a dictionary:
+ data = {
+ "r": r.tolist(),
+ "lambda": lam.tolist(),
+ "expected": z.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)
+
+ # Include trailing newline:
+ with open(filepath, "a", encoding='utf-8') as outfile:
+ outfile.write("\n")
+
+
+def main():
+ """Generate fixture data."""
+ # Large shape parameter:
+ r = np.random.rand(1000)
+ lam = (np.random.rand(1000) * 10.0) + 10.0
+ gen(r, lam, "large_lambda.json")
+
+ # Small shape parameter:
+ r = np.random.rand(1000)
+ lam = np.random.rand(1000) * 0.5
+ gen(r, lam, "small_lambda.json")
+
+
+if __name__ == "__main__":
+ main()
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/test/fixtures/python/small_lambda.json b/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/test/fixtures/python/small_lambda.json
new file mode 100644
index 000000000000..cbf983cd1c69
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/test/fixtures/python/small_lambda.json
@@ -0,0 +1 @@
+{"r": [0.7462536237075819, 0.19432916923683086, 0.9630896747513285, 0.9082820305873366, 0.5282922574879091, 0.14382341173708202, 0.7898545264867911, 0.4088406552563817, 0.2941938866424547, 0.5486243307494847, 0.5427570160330144, 0.7070990522090317, 0.9434102780588776, 0.5538701110477441, 0.7339479403465565, 0.5471307155110778, 0.386214741962729, 0.7668556894704668, 0.7421989078739687, 0.10181961950873164, 0.2809096285055014, 0.6802221511354455, 0.300503392455469, 0.6433984117926028, 0.164024359024181, 0.896690778957723, 0.0046375828677400754, 0.7423324055069999, 0.8822492091541738, 0.5813129672399421, 0.257389449971518, 0.9338678037646482, 0.6400011500037533, 0.5873201217038521, 0.7661047329356491, 0.8461014139378851, 0.44435285474017816, 0.3170737964981336, 0.7780747746649465, 0.377234852341668, 0.8327000787840414, 0.9501267429125752, 0.8126531900663412, 0.1348344803453606, 0.2950853652070512, 0.4900859963314078, 0.15825830946682573, 0.9652914115533768, 0.6529275910349998, 0.8003856147222496, 0.5884738806500939, 0.5499714807569905, 0.6825643532219486, 0.48833792806735166, 0.7722928951414395, 0.9830979861221427, 0.052419303083640734, 0.4275532039283938, 0.46953946268025526, 0.15182997979456503, 0.09542712276590648, 0.23529390553892882, 0.12536861454600978, 0.8593066499386505, 0.884950465309422, 0.7641945522363833, 0.36186792576947624, 0.5681666880975698, 0.3233390508091972, 0.14683747451820273, 0.25727154654772866, 0.19463537153737442, 0.9540793215424902, 0.8624715029746807, 0.6146193380448067, 0.7974266473101017, 0.6757605646973008, 0.4954894749437212, 0.7349369962978834, 0.0801372342867972, 0.9555806227128675, 0.397437689061109, 0.7979468316040806, 0.006180240562026262, 0.08163402491713145, 0.5290430562865387, 0.18187597203823946, 0.4406894555434977, 0.07928880752917256, 0.9474082847029426, 0.07930581301484252, 0.060368192893259454, 0.22714331930455978, 0.694608941815124, 0.9550924587784622, 0.13102717926431195, 0.06272154730386315, 0.6578780925998203, 0.3309048853587301, 0.1602917444924502, 0.6648358734654557, 0.9914248787423542, 0.6511843375034468, 0.26931254912407376, 0.014476636241109175, 0.9643200909898764, 0.11238017426151847, 0.19246262004691017, 0.45923393765970255, 0.8141403084097588, 0.09860227855249015, 0.7304585097136922, 0.16909886299734112, 0.28272729587916645, 0.06168029630583105, 0.34282332008881355, 0.8590973144776887, 0.5162134966577315, 0.9208812159971411, 0.6105537839077709, 0.06937911419570775, 0.39300832796291396, 0.8661577099122314, 0.8020348218075041, 0.4072631086251802, 0.34294076834851683, 0.11046564744853915, 0.5729978879963458, 0.7150140991366559, 0.9498087866296151, 0.2774776590061869, 0.5317513823717794, 0.5586250530345177, 0.021666386030200657, 0.332447077620043, 0.4785178811255735, 0.9798553028611127, 0.062115493130244226, 0.9280015422372483, 0.9870855415533668, 0.5676075311756527, 0.09336440087979914, 0.021094878644738135, 0.7336726911277442, 0.7040964308145078, 0.7414800568070707, 0.24429067870378984, 0.48271518101103295, 0.29300045856374246, 0.9385092692428604, 0.9840202637899833, 0.985531095788565, 0.49984304344663755, 0.9229743635924785, 0.8275295208991112, 0.5143917532027202, 0.14081931574841133, 0.46160904539976344, 0.0695894342439024, 0.8202946788764967, 0.10159176572258855, 0.5955525655614761, 0.3472370303040342, 0.662251415833399, 0.8167000781782493, 0.8807287712529497, 0.5642452234549361, 0.2012584368596273, 0.7264412823925696, 0.42752116448100164, 0.040863444888951994, 0.4872647665017259, 0.6715292183696857, 0.088186122514882, 0.9570775468674882, 0.01933374159321788, 0.9820051566860873, 0.34770875360668263, 0.6050040042222696, 0.6226196518717376, 0.9439265764002412, 0.1014842350835301, 0.4936102091285438, 0.17987215091698316, 0.8843431173024847, 0.024849439870057166, 0.2653112825350187, 0.629902287129211, 0.3077820000024387, 0.9030452980233857, 0.6206370126564876, 0.6508535749040545, 0.7450898910718672, 0.03866439242331443, 0.8309905980815543, 0.045746086405404895, 0.6019709328964133, 0.8106945018132465, 0.9723774792278271, 0.10499301661488991, 0.9978113939436283, 0.417054539444926, 0.19382579647948583, 0.42947397292097056, 0.09123227732385963, 0.7150359002890956, 0.8351120971233259, 0.9646913819548718, 0.9417493612545678, 0.8262060569064599, 0.9624455166858126, 0.3492461325410825, 0.5412230288136919, 0.44587296594629455, 0.29782343689805446, 0.7143239439051977, 0.7491155737210482, 0.952375957297747, 0.7630368930061346, 0.7141547562144596, 0.21999684766000482, 0.9812291810448298, 0.5757367459966756, 0.8828587391321299, 0.49739073165825043, 0.46328294678326465, 0.008243717280739249, 0.4503376892135784, 0.11276512128756222, 0.11568146390110234, 0.7608707066303753, 0.6910418111974326, 0.9836445240475852, 0.9189913538371711, 0.5809188925636849, 0.44918670367502134, 0.7694847057699098, 0.9140505929431306, 0.15488004947959266, 0.29278946985693854, 0.39316183488945655, 0.6954870101815906, 0.3525299281983877, 0.4786749275125456, 0.20636149032227558, 0.8074421833564503, 0.6243258883883884, 0.8180506783350775, 0.10189143988078853, 0.28687050803479186, 0.6557244249886961, 0.685988881079356, 0.7968394636964611, 0.5636305591783725, 0.06122023572380597, 0.6551529178937662, 0.11953422739954056, 0.18637283450870645, 0.8922276134253156, 0.07951826557737829, 0.15595317497493755, 0.7309161412298387, 0.6337666976761736, 0.04781443144759856, 0.9196067411029119, 0.44603206212060187, 0.6213378661843145, 0.49806404319504216, 0.6522235820315478, 0.7865642767034247, 0.20995427809640654, 0.6263902592489927, 0.2834017980346699, 0.45214837662445295, 0.31298283474423483, 0.1834861334924872, 0.34399561169575577, 0.46232613259100885, 0.7696027478995552, 0.08904283839158533, 0.20076423666422294, 0.8981242483695608, 0.38629313506410357, 0.226275618022443, 0.22940051281692797, 0.6155747427344371, 0.770028142198512, 0.6377594084425595, 0.3132405791883992, 0.1661486170744092, 0.21881090676218418, 0.9640228810925372, 0.16303550619752682, 0.7219531428080788, 0.4474923392747967, 0.2153588310176744, 0.12329093179805206, 0.8078011516706292, 0.7462019229098604, 0.10602952593122672, 0.04168198616568475, 0.5575568087229702, 0.4264867407499783, 0.07273910182858145, 0.4499709543270086, 0.33695130549142327, 0.7230401489702846, 0.05660677928483138, 0.10878002082986449, 0.2873590520237945, 0.005831251134162163, 0.3698520329369124, 0.5402839016714037, 0.8703074600990652, 0.6249833729061999, 0.5000208887493702, 0.5762068646487658, 0.5216542310792623, 0.754667747273089, 0.7945091437531978, 0.6221263361546877, 0.06638190311604009, 0.6269827299442127, 0.6752263913994733, 0.6015238556750878, 0.22597714550943482, 0.8206088073747263, 0.714770737207965, 0.7581606315265247, 0.8490017820445915, 0.04781959801504132, 0.5803012478386674, 0.15269670364834032, 0.9591314398089852, 0.010525093807077113, 0.877089160282886, 0.28551219828845187, 0.9616935020538493, 0.005515070126426824, 0.7102307702402411, 0.5769661141701014, 0.09691228545522046, 0.05352163313349334, 0.5920932207728213, 0.6400277131305135, 0.1022521183077788, 0.8541035095945705, 0.15549774139605654, 0.027431922650263618, 0.9558718342311092, 0.435990595575265, 0.26593711329862324, 0.6418499940511095, 0.5840856341670048, 0.9507318294803769, 0.3944884764734772, 0.6837826332423507, 0.93098501018002, 0.32603499657109314, 0.4753681350457547, 0.15298088442105773, 0.9726663366814727, 0.39734704902133167, 0.9960342721075267, 0.41087520619638496, 0.07359566527637385, 0.26352098759920417, 0.7370239377306047, 0.44115374168181487, 0.41870445152756375, 0.9886394030073348, 0.18312395016035887, 0.8505656201135628, 0.8354174294334351, 0.947918249380341, 0.8655082365029378, 0.5251901618054121, 0.37060485561717904, 0.8338176936530468, 0.18299929240659474, 0.1946488678474796, 0.7618789884574255, 0.700952427576246, 0.3633944240907201, 0.11617921472953607, 0.6312375633233178, 0.9544515679343862, 0.38902569867545234, 0.05740113060980434, 0.8183750366664452, 0.9770198968283318, 0.6161983282959902, 0.01879426033389686, 0.26359338007884625, 0.04801045875891652, 0.6961492098148734, 0.21567422697406646, 0.8064308274117564, 0.052005907767367354, 0.16291653543899676, 0.6346658261970729, 0.33881722694778404, 0.31167518101689307, 0.818232106801728, 0.105533795921815, 0.23159106309518596, 0.8224091561682025, 0.065392999910459, 0.15896721240612743, 0.39081598404771156, 0.16250954434200804, 0.474905922255624, 0.5234454145768495, 0.9518629270546466, 0.3902008697638528, 0.34387840863994745, 0.1910306664263709, 0.25145599895715987, 0.5908715034040632, 0.6952187761615632, 0.1112475570979744, 0.610805191434731, 0.6324732094243539, 0.5672509883356794, 0.3432587168749879, 0.8959099577683934, 0.7147814246979688, 0.9141751436431295, 0.3249017093108708, 0.27891002217162, 0.5198126581604927, 0.3478263780050841, 0.5611302377617654, 0.6097937446923387, 0.7651978664523218, 0.8951296583606283, 0.8211043860120727, 0.6714218894060738, 0.7514855518460114, 0.855573648167156, 0.2592376939468203, 0.4425023841736254, 0.8026980439906591, 0.8586889682561757, 0.39304876577084624, 0.5775150301354603, 0.8801912845701618, 0.06873371176598353, 0.11648967674824773, 0.12697415730260986, 0.6479420141944563, 0.04484905983326448, 0.16161111515422466, 0.07943624146266193, 0.26641505942627763, 0.12161043124541182, 0.8896570546513326, 0.966235928596332, 0.8526014921419162, 0.4989176346980547, 0.4289189844868827, 0.4120515344844077, 0.5504083568131876, 0.5667420355908431, 0.47309599067861585, 0.43242557804621007, 0.018726265124853092, 0.48477419811523537, 0.6143730374675757, 0.7611060433521549, 0.3436671858582929, 0.8654996395001884, 0.22586737091801334, 0.8902279693435599, 0.8148976201137534, 0.4397654687144881, 0.418520904144852, 0.8145976146230842, 0.17176879430427217, 0.18553916347741306, 0.20193233409338696, 0.4217893448883999, 0.413153020065791, 0.2570874604715706, 0.7162844634708949, 0.10179891134151586, 0.6721931075860732, 0.7481140377564408, 0.5804188585222422, 0.8623874793611103, 0.4186670500300337, 0.29639532859953055, 0.4552769117279075, 0.9566431660727154, 0.3993128993111731, 0.1370292693358106, 0.20373728168949323, 0.16948146013052356, 0.2972324460794892, 0.31431869769986254, 0.9001709240361125, 0.5830985216958707, 0.8483198356011512, 0.1975170492360716, 0.7668331954587341, 0.14752597761526876, 0.9084218303157205, 0.10639742180705347, 0.751080760346818, 0.10802150158976054, 0.34396254842863716, 0.11728433871463118, 0.02743981670821949, 0.8385976113292468, 0.8932165405389684, 0.0916963948070284, 0.5206809245942315, 0.31064987647037345, 0.24016395487541797, 0.0032325109746772496, 0.9571244060066437, 0.009405789141974652, 0.6702657276185954, 0.9388034176588003, 0.7754683418179826, 0.44065100550516245, 0.6799636968067274, 0.9461275944009778, 0.8075398310807663, 0.6258892932759934, 0.4201999563323897, 0.43303998910849395, 0.9231316220328063, 0.31184352398471127, 0.06546573492329866, 0.4644496599395729, 0.6030462408714162, 0.2269719819963919, 0.5734112332114667, 0.09524902998104934, 0.8122257383775353, 0.34864318079612344, 0.2983694210389628, 0.9053505163237417, 0.5081285304409683, 0.6410781729877705, 0.9230989259590818, 0.45402542031542936, 0.22202496016818585, 0.30053924923522735, 0.6914914109134354, 0.7365802165277726, 0.628733974156353, 0.010619565934596231, 0.4918695824613817, 0.22282604355309032, 0.20234322527327286, 0.24178093540733736, 0.6672296047365912, 0.392170894284956, 0.558617069922958, 0.8286150981129196, 0.017104550625848924, 0.6808021612971272, 0.9118163207502276, 0.8581240830003032, 0.5931973063540582, 0.2230396055189342, 0.7051237424242617, 0.5821701490924572, 0.7530483083512897, 0.4917198783566794, 0.0353098948972862, 0.5937867703163382, 0.5725949207712834, 0.9784053524089333, 0.10883221240320828, 0.18037270442332143, 0.9158166226351836, 0.35847769691225373, 0.9350980538110688, 0.24766955800236357, 0.26982832614937546, 0.9167706581852683, 0.3732116894163158, 0.5519110408953829, 0.707093570155962, 0.8240660881894875, 0.8474080359554704, 0.8167499942924713, 0.7681008420574675, 0.49947722783084025, 0.05729441826071213, 0.78019263104173, 0.7986794133800038, 0.21087231665787354, 0.08114266359473432, 0.9426557254679003, 0.008795322204405709, 0.608246189399286, 0.8778125172930996, 0.6141084202111986, 0.8683479020339993, 0.5337016007008468, 0.5218635364077598, 0.4308043847397688, 0.018302175742226034, 0.3247002579040622, 0.5650947457562723, 0.9611097238947911, 0.22461172269365048, 0.19358835848719358, 0.24597565226905316, 0.9392804127167907, 0.5055704937046706, 0.7866536459371986, 0.8758686148198527, 0.6056036152780916, 0.3353679093394064, 0.6615190623118288, 0.5654215755239216, 0.7858408014212898, 0.06314436775959631, 0.8957376378293204, 0.767423759995931, 0.6482123255099259, 0.49290362729324877, 0.19817769483932046, 0.7514860540714816, 0.6235413739853978, 0.21783298257853134, 0.6651378917291094, 0.5038504057739213, 0.9804643103137889, 0.9363043813186295, 0.8575627047976353, 0.7913246012344379, 0.23693044450660206, 0.2375774314154936, 0.34530701992157065, 0.5609701141466588, 0.8293516916438731, 0.7232384041639206, 0.2835129612431434, 0.4208055672246148, 0.7759731797847448, 0.039922197332008524, 0.2262163604090649, 0.52480866407402, 0.7110664671821292, 0.16343976180385633, 0.34345738334041764, 0.6941286643489852, 0.9831385268253223, 0.9890329223060161, 0.04465233211604347, 0.28170830913814593, 0.0681922429436439, 0.7243131029234896, 0.5900572469182757, 0.244060435550572, 0.42964239805241966, 0.7644270313298076, 0.45307427873483874, 0.708129823429618, 0.31993792744292027, 0.5821149273261865, 0.5647489268857618, 0.4011583883903761, 0.00335881587331055, 0.7955414204768629, 0.8760205244286093, 0.5483713873692776, 0.8837493585449555, 0.5854156238761552, 0.04400103348578943, 0.6612814376945427, 0.3101208317042431, 0.5938010258239295, 0.03937333946281574, 0.8345423491688857, 0.22897938029748544, 0.8146954246731005, 0.037541497358362985, 0.6544189310100182, 0.044779106227311294, 0.5163429650807673, 0.40103002979168745, 0.9197289970459496, 0.13131601701295836, 0.9609190807196053, 0.054113381198521604, 0.9796987464812059, 0.8730304482381095, 0.9845905319396598, 0.6854352038876087, 0.017888888255248703, 0.8128053862561759, 0.3075882482723157, 0.5178335442544811, 0.2189716592214993, 0.9125955279919457, 0.8493459428530594, 0.3306199288270242, 0.21763383884519305, 0.4999058201704054, 0.5369080949535282, 0.5726716133746554, 0.8488811874390223, 0.4601853597611809, 0.9882181636937805, 0.9811088930484112, 0.4198451212452804, 0.9914868116318657, 0.07941937117050901, 0.9929819315207857, 0.49601258930760195, 0.6145707940943701, 0.962964603157714, 0.5771527642837295, 0.18890826214571776, 0.09582646341043655, 0.446315321936541, 0.7039371684125806, 0.7977493707006736, 0.08249882038019918, 0.5907396323885403, 0.6909061132656298, 0.6237500631459595, 0.5262045039431629, 0.7298133575451808, 0.42350926745855344, 0.22788628020462043, 0.8590188253899671, 0.26301651163388773, 0.08424672823410417, 0.9047783718286204, 0.22512346206435807, 0.7625385871862002, 0.10634465422182171, 0.774576648960009, 0.9942000835715769, 0.6042369567260276, 0.9096478099568478, 0.676233790752557, 0.6944879414761341, 0.851184020301292, 0.7113236333639211, 0.15707148726039388, 0.4449192847158383, 0.285231192131702, 0.9356768308341203, 0.3545057078140167, 0.9779837032989301, 0.9046558938970213, 0.6225507484368603, 0.0935442636551096, 0.8204206838009603, 0.9365699604639467, 0.31170418936641275, 0.34233241841272755, 0.5110984891019759, 0.2088708133328736, 0.8477100031978516, 0.1343941024423002, 0.6407557071787545, 0.10289178549278244, 0.6166563713039974, 0.024563634756903818, 0.6869606784461667, 0.0628613851431502, 0.8959611279388019, 0.264737742183747, 0.14775398009949592, 0.8490006041571015, 0.15418775429740972, 0.5857366212014882, 0.25541824753647835, 0.9758881076088175, 0.5895554408504758, 0.7893601106084638, 0.35179178642244613, 0.6617575482888283, 0.501126282773861, 0.7910829527710618, 0.34881288587722903, 0.9438002515214072, 0.39137622362790225, 0.9328157822607316, 0.04820622462376811, 0.933085728389283, 0.14031585100274313, 0.28512448106466504, 0.27040096155849513, 0.7330431479658515, 0.5991691767560401, 0.655831998037911, 0.39793599534755664, 0.9456784565477588, 0.041975562288774415, 0.015458380406756622, 0.029214222895026842, 0.17815744526088018, 0.21564450459638118, 0.5804239629011166, 0.07649252231972137, 0.41744495969468787, 0.13890414107465232, 0.010515513659167475, 0.1733723132627265, 0.6140014935757089, 0.4073094433879004, 0.7241051485315656, 0.8670361197099143, 0.7303231918896281, 0.9754670005581184, 0.9108732941708285, 0.20804351528780096, 0.377959108613517, 0.30373752774057106, 0.7503253395227845, 0.4431686786291562, 0.7295636846911393, 0.3458209308367759, 0.9990102102833864, 0.023816777230453945, 0.4121576512512656, 0.017540208949308744, 0.10748607625045559, 0.6764785976915529, 0.5683817599326257, 0.6432465633879865, 0.697233172830048, 0.029691477042522285, 0.19360779835675357, 0.008842789932465678, 0.6109799968094064, 0.8501598585129023, 0.3727522749898796, 0.7856931214676317, 0.6328470240080772, 0.22695075671954967, 0.7556082070752209, 0.4920386836188866, 0.6485614832588317, 0.17257271095160798, 0.7665041852646957, 0.6712006063329234, 0.7933801191676186, 0.8379365364165843, 0.5658089789208417, 0.4824607080989701, 0.21461901338982503, 0.2538716641675771, 0.37807563346238315, 0.1482014045156016, 0.11944680493685267, 0.5374606673784603, 0.5575866828192043, 0.35208962899234086, 0.6429204442934353, 0.5800496476125405, 0.24477126387835957, 0.9060155543395465, 0.6457455327883665, 0.46300684969673256, 0.8030568898084001, 0.008561096234795285, 0.4800370060565282, 0.9063691378769559, 0.6790170987332369, 0.9984540808667304, 0.24507911336793153, 0.5436717539084625, 0.9445585357807141, 0.8147145591029148, 0.636287417443421, 0.04719521623512368, 0.2936143280714334, 0.5809031658185868, 0.06406084822131497, 0.7010203251635366, 0.9985421293023831, 0.6807064122318754, 0.050686919209465775, 0.2778627834164791, 0.6136524973509422, 0.5351834760477097, 0.8855502018639503, 0.33578801418091575, 0.9812173447383147, 0.7791240899433652, 0.7493911123605596, 0.9603697125595835, 0.13185193221350644, 0.4298173391331782, 0.5065733056192903, 0.6031024959880005, 0.5136153454453769, 0.06767547870292445, 0.1329883138421104, 0.11156521727887025, 0.08968736594816507, 0.8045381041491119, 0.8213636301367575, 0.8591961628124916, 0.5553968278390694, 0.0936251605831635, 0.2483367698176847, 0.8974856055352869, 0.6861750951662099, 0.9502539959877101, 0.35076562603422945, 0.38750138460394556, 0.8725630819199787, 0.8736914857433836, 0.48621035433340665, 0.49096823755657637, 0.44323646974974207, 0.7833386251582365, 0.6977679776810295, 0.5241037703719598, 0.06838473716423477, 0.42838637992186135, 0.5500262542848259, 0.601779090377618, 0.9902408856747604, 0.9222671595038143, 0.36855920298872635, 0.01187700195514707, 0.8306970679693717, 0.233487725472859, 0.21790041504184743, 0.846178054212103, 0.5922768528445205, 0.13255998110606926, 0.11327267857012757, 0.09692502202565112, 0.747747703482499, 0.34399997963405193, 0.4817678040709821, 0.8058176426112745, 0.38097798025804497, 0.3686153385414239, 0.7676484088221466, 0.4530194710189732, 0.052755077515742155, 0.31536912741330014, 0.42362035448617474, 0.7245411545234157, 0.9213705851534426, 0.5424612759769876, 0.7177242415498644, 0.6847078452962764, 0.7058384862866343, 0.3316567964003375, 0.476895621954468, 0.09001314427299345, 0.9188385431970276, 0.4139792550560022, 0.8050015449354061, 0.08932122552465804, 0.6576678199668323, 0.9495175629703048, 0.13558543940947843, 0.8176739523055885, 0.8012330448041369, 0.3444159075914094, 0.21852997546016595, 0.05572897576528735, 0.10374744361491994, 0.6664250934626548, 0.4603137446257535, 0.03304460199906445, 0.08378217590054748, 0.6507256446175618, 0.9285773150747385, 0.3918135432587506, 0.09701791413645255, 0.6471185031334411, 0.357525306767038, 0.8215957020477335, 0.6454705881041165, 0.15252639949026126, 0.5367645058872053, 0.8154563076581075, 0.9237435173910441, 0.9269594106729153, 0.7931684284076841, 0.3294922742685553, 0.2707000387450459, 0.9937069354588218, 0.3720729206754836, 0.1449065203876383, 0.46670954350070915, 0.9030729252148894, 0.5540468226905289, 0.334481945528898, 0.200466037145153, 0.09043350437490527], "lambda": [0.11869274299832627, 0.03303683027198856, 0.26229621460008534, 0.33149876682771806, 0.21232183235198615, 0.3079694951928432, 0.43357727762424547, 0.2622216702571413, 0.29776806386742005, 0.44754691469645375, 0.07024738146818721, 0.4221389190663488, 0.09020483306317095, 0.08761695536826741, 0.12865024590236718, 0.23804304428729933, 0.24902210128488067, 0.47440453916403913, 0.3926027273466486, 0.15512427400983153, 0.25383213990014647, 0.005588800168093766, 0.16851142170689726, 0.4658398787372138, 0.10561764912082772, 0.287997001081781, 0.34792842406200364, 0.19475988475111972, 0.2965000868511411, 0.44533439427146093, 0.4716257091900384, 0.2017118921429415, 0.031316057124483154, 0.3969901784289555, 0.3763507017229067, 0.19479599135558867, 0.02771740842458531, 0.16487360669074058, 0.12572240755589587, 0.1886242182531897, 0.0032380179236096707, 0.18079081827849575, 0.04792903102717827, 0.008056000993033274, 0.1457155657148827, 0.2368568154041762, 0.09711776591567545, 0.12114408024821127, 0.1909373770784974, 0.37649232637479546, 0.016356914161907876, 0.2660549918646877, 0.15963692888115333, 0.41738216484492496, 0.025642458090935183, 0.061609169750482196, 0.043700114107848465, 0.2855087684421282, 0.10317740580712947, 0.06492650520434173, 0.1299961419716757, 0.3702353860989719, 0.40445145389347265, 0.3875845848064458, 0.055836270791726705, 0.047443582216531555, 0.14136515253080773, 0.16206556055647353, 0.46472974411571627, 0.4331730510514954, 0.32057680418606255, 0.16485989036579585, 0.048308839094685974, 0.4933678347254432, 0.3535178200561204, 0.04911428097017645, 0.16727642934788828, 0.4029520176892069, 0.15763996252527362, 0.13975098291367566, 0.2622914814001569, 0.11150172601281616, 0.1387885802690943, 0.24591369244733607, 0.24107860115252994, 0.3292577681799555, 0.052098221921319354, 0.15322837610454593, 0.4783583496569019, 0.009475808068444724, 0.3139663782164335, 0.321549770499793, 0.05464894233489642, 0.3807094099687474, 0.16086805190760012, 0.41116978394631937, 0.31645183675389615, 0.13453465324603003, 0.40529797470419343, 0.2272843971927599, 0.2923780602635624, 0.46251734821340623, 0.1968923018568483, 0.3043045105041668, 0.024453988201632193, 0.12897006040306158, 0.30473344362832916, 0.011181182622690966, 0.45206901020804974, 0.002780708591940906, 0.13605284222562225, 0.19483039219193415, 0.46458163882577974, 0.49447222075852065, 0.3847459932735712, 0.40673969754014483, 0.0652091784352753, 0.14453692315170652, 0.3889939180470314, 0.23780578135158897, 0.09300970374707784, 0.47341096015250356, 0.30014579196605107, 0.38471904946590135, 0.27109047224808946, 0.4893076871854219, 0.24283523473047086, 0.04256328263688225, 0.1444382213667012, 0.4197330448494505, 0.117310661377511, 0.1241484368489576, 0.1986025497043633, 0.15386387181067585, 0.4491624884893472, 0.4962472157919883, 0.10647384980262259, 0.08513030967465568, 0.18855975998448438, 0.07103748827290057, 0.48284378589214083, 0.23802349696769648, 0.382547446043097, 0.13808255736412028, 0.2807515700407935, 0.3880499328176819, 0.49232616608349994, 0.14077248081654536, 0.29690001897700674, 0.2001797405334712, 0.40731855804054484, 0.05941274765377047, 0.3297786201997955, 0.17119610018520887, 0.29237841066717185, 0.4202985585830734, 0.01547430906497188, 0.4405501306352142, 0.1825866775183082, 0.30874182809960077, 0.39802084339893956, 0.4873864158373952, 0.4113987280347975, 0.19214537615628263, 0.1557573388018908, 0.11485247819449745, 0.27105564478250527, 0.0738396837170594, 0.21162500444047294, 0.11411873033879205, 0.2560956425411427, 0.33044173740612415, 0.47479994827246436, 0.20028210071131464, 0.43323940113403214, 0.14291651217820905, 0.05394207292707903, 0.3618274441250588, 0.2885066955368776, 0.49287533828389646, 0.1328903758604037, 0.28328045971230814, 0.2890538055970838, 0.3225577805921107, 0.035984585197788355, 0.284461423279504, 0.31541749590281143, 0.3278521409249076, 0.2311764319784808, 0.4650230746860323, 0.23454207151725576, 0.2187504127285907, 0.2538267841791192, 0.16578182185678186, 0.26271062433454584, 0.3372034215111329, 0.31316736949444424, 0.23520553500172764, 0.253390994481125, 0.11044566444260395, 0.20565949533007627, 0.09872114027674517, 0.4494066520263414, 0.28634296990609454, 0.1172041436972091, 0.2608472076504798, 0.35269814616899303, 0.17679396922542412, 0.12594378891313152, 0.17673810578217564, 0.006920568285572415, 0.3458661743527866, 0.37025471251835745, 0.3719841115714065, 0.2096951063583657, 0.0765654277080805, 0.315821013077792, 0.3595236240989997, 0.026362270190624093, 0.42946152643262303, 0.4039821726219868, 0.18293081798986693, 0.26397014504882205, 0.36949351229852717, 0.1178502437132194, 0.2892780829037436, 0.43971042445171943, 0.2524227951985203, 0.0011765006108048759, 0.44052029734709613, 0.38234931072211875, 0.4089626647130729, 0.3484684845070229, 0.09974474765478963, 0.36993362758864995, 0.3062155245525679, 0.44163418428022705, 0.11504360506402123, 0.07586446033322297, 0.21277401787574862, 0.4345300300073662, 0.10857463520784971, 0.31962116587614087, 0.4067739906318806, 0.13699832794927985, 0.44910925224320797, 0.35841376972774636, 0.3763540302573808, 0.0009829890607275238, 0.3992727054887829, 0.10181869148632366, 0.4614844948398094, 0.23636163763758805, 0.0704478392863283, 0.48222325682456624, 0.13920880887797948, 0.12213156558983423, 0.007430130233381682, 0.38630236376956917, 0.009568902172457816, 0.15680839714707667, 0.2307931421127794, 0.17438976884261354, 0.3829249077457571, 0.4453925509864058, 0.05759206643791598, 0.2413159873935592, 0.17039528972375978, 0.17371440265452642, 0.13304510079441756, 0.1352709265962132, 0.1072012731982454, 0.04199807266113964, 0.3208645079469934, 0.4019699561008691, 0.47622799820902734, 0.2431798603751933, 0.41109301506950807, 0.275757017916253, 0.0857218366709055, 0.014558167331628569, 0.22686186593626761, 0.15580762207990978, 0.3988995911552295, 0.3569238932248966, 0.03414080937219843, 0.23028472429906627, 0.0254130781544043, 0.4609501756856843, 0.25688065635891183, 0.3166158649340668, 0.11842556896795126, 0.23837355411870065, 0.10835016667619424, 0.20798019941273543, 0.1324420696074916, 0.2736706400472529, 0.0031870349255914143, 0.09741962669839666, 0.41884591831841284, 0.2404273966619654, 0.2941903454751402, 0.36532912875602397, 0.2608384659244371, 0.21277893414091364, 0.03463225671401893, 0.08561894411128995, 0.2729694631846692, 0.1774684789436185, 0.26498758504224595, 0.4126738858171855, 0.07568488285658387, 0.41912479453700147, 0.2910774023943863, 0.13414883968479824, 0.11378851481700869, 0.10517600420401557, 0.0843036001731966, 0.17032229834479962, 0.4977571998154127, 0.4192608987367899, 0.2928901347416309, 0.2154740702813709, 0.34468861968092085, 0.18245712490145904, 0.43917167505553284, 0.15048568162435766, 0.13560000354760815, 0.449983026738537, 0.4204638126292619, 0.2402710497175809, 0.05278338993694992, 0.39140903393931353, 0.3722506391465984, 0.25977006460913793, 0.39693177927606593, 0.2159339381225206, 0.41870235233921876, 0.05743638112620697, 0.38563229277665995, 0.20206424549032587, 0.2724517041121083, 0.4727530640458707, 0.290029117191416, 0.45393597575969574, 0.4951211861067562, 0.003482624627416109, 0.2324878142254374, 0.3802185415764291, 0.03852203543248384, 0.06676677407248821, 0.3878388360335989, 0.18097492676025778, 0.31540308625683217, 0.0436085244815258, 0.06183352047590579, 0.12803264477456117, 0.07763858657457118, 0.49726901364672405, 0.1996063981653584, 0.2667551328806721, 0.26357271117370534, 0.30048020208001625, 0.30438573471984015, 0.22210722437399927, 0.23655100379037003, 0.3509314062104276, 0.3119484507221995, 0.13978464825187809, 0.1691336763007127, 0.09483046140053686, 0.4840393753750629, 0.4147387525293193, 0.15575974606808274, 0.45908983068548737, 0.25527563413814336, 0.235278158777803, 0.00772897631243985, 0.4797036856842717, 0.4969506359416256, 0.44566874420039915, 0.2554308856736498, 0.4499203166593572, 0.34791017841170363, 0.34081288797998655, 0.3388942440900641, 0.12777258402819391, 0.059974628244428174, 0.31774409652624197, 0.021947146219099933, 0.2462747579179328, 0.19633297682267042, 0.0010248014117807402, 0.20439927635360333, 0.3820062256673566, 0.26419841862393867, 0.30807290551661665, 0.411609244815743, 0.42047767929085106, 0.4588267086457916, 0.47071896460244156, 0.41712692935721785, 0.25090024267029387, 0.3873201076805338, 0.1555217485202785, 0.0829157968090864, 0.35986027395950554, 0.28808844445666587, 0.47249414266391965, 0.4279264517894696, 0.2521103865018791, 0.34709324433398314, 0.40005816900446955, 0.37823960528783246, 0.12180079734930871, 0.18841881633083923, 0.3562651592533876, 0.41663550016706397, 0.3363051032406924, 0.08932140137450884, 0.2619181781176531, 0.4922899804013546, 0.03366073234095035, 0.38304091253712247, 0.029645138587289066, 0.3717315523895633, 0.022346636801140518, 0.24861216197221053, 0.09268388824927742, 0.25369153104160136, 0.4670284631809803, 0.20366855466796602, 0.123879568320445, 0.43767188068441826, 0.12873187215010423, 0.27098384936372544, 0.32649509271657345, 0.20010005960266958, 0.46499842175648665, 0.28822124312206954, 0.36865766830045715, 0.01386903323984029, 0.02546854911109292, 0.10155437835006659, 0.20490826872830403, 0.010972642303334612, 0.01882167744001023, 0.11387925898710205, 0.20163255116183582, 0.34538538455728507, 0.08283890270689703, 0.48195944776860306, 0.06747104495066147, 0.28762357163886687, 0.39567714671059634, 0.06739812121673694, 0.133880226705952, 0.3776691777096679, 0.28016991318071277, 0.13683412417363272, 0.32966288807685573, 0.06539658354951305, 0.12514218524271692, 0.35607501926223245, 0.36326666572537764, 0.33531174565375543, 0.33947036045391377, 0.039219852605118344, 7.157337058544266e-05, 0.03373715984172354, 0.4339371058275222, 0.48100071650878073, 0.3256431924133684, 0.22464447835445855, 0.3399781741132577, 0.08623507887637161, 0.33399611315353545, 0.29609156246892754, 0.4570130181645371, 0.04792194848027348, 0.038768517647558676, 0.24845975098106793, 0.39834548657782065, 0.4480963094683331, 0.42283510629165544, 0.29893595524947586, 0.4231620308914067, 0.2845494538743408, 0.1679208394820047, 0.2507206931994759, 0.30196903850135565, 0.3911288626890546, 0.06510410780649944, 0.10872658975198507, 0.029175953852372982, 0.06832082327641353, 0.39698839454034324, 0.19301864199559488, 0.1648867721791612, 0.23405425457081114, 0.43554628841086884, 0.1381032233714371, 0.03626344091144801, 0.11816458456740803, 0.03693373488994883, 0.4748445060032335, 0.35826422032971705, 0.3541621186262993, 0.49964591591336477, 0.4338492747425835, 0.46311728780130496, 0.06601740428309644, 0.16714622689477326, 0.34586923264533204, 0.4164099365608611, 0.26752967392453614, 0.1273520922567774, 0.2942251351882922, 0.28203595904961876, 0.012861176524801399, 0.3999918698526061, 0.216041052246692, 0.16954381003982977, 0.06312774190404702, 0.04112491387295664, 0.1931362534198856, 0.0784399882240509, 0.39515351666319104, 0.21700776009374811, 0.2948180353927339, 0.15402675915358366, 0.07117967680579468, 0.025339119712656788, 0.031121986070341445, 0.2716276513926849, 0.17094252101108764, 0.2899663549599285, 0.49768823375387633, 0.4672534128783847, 0.16026808267049647, 0.4627466085786978, 0.05452747686315795, 0.3262956478258967, 0.4771269154347661, 0.13715886354112017, 0.33262008029187706, 0.06831433814457, 0.43347883021675143, 0.06897432882277083, 0.12517245946793332, 0.26181409233190445, 0.19986635789850438, 0.4926954841066322, 0.21313521617191822, 0.28286990052337874, 0.21542941796125203, 0.14598770340325012, 0.2974298855851948, 0.06577424977713042, 0.49839682667128504, 0.3823347971268323, 0.16886865743906387, 0.12998845685949934, 0.3215602749788648, 0.36985172770320845, 0.20093662197437606, 0.4345925782349001, 0.421349843794975, 0.011920824454953405, 0.3040976607589384, 0.40938309999462164, 0.21377125634739114, 0.05516096455016317, 0.21387724976584732, 0.15449179103073757, 0.057482127977276753, 0.3247574043453502, 0.09582696914140232, 0.24441878829464703, 0.45741404154595217, 0.008292849418973569, 0.039669809723561156, 0.3736701070879061, 0.14522052091464266, 0.0034200269714206866, 0.4346726816388638, 0.33388526093671994, 0.15586086282588174, 0.4803585920182432, 0.2724300406600329, 0.4427191877675305, 0.13842947848602644, 0.06619451974719126, 0.24550958105504622, 0.38718123887899164, 0.2593587070084042, 0.46585751129459735, 0.36102499120449044, 0.35654574445957243, 0.09866396102414321, 0.24056090886514997, 0.4985887195636358, 0.22510076497070702, 0.1415104257643574, 0.35992012537665796, 0.3331765891687767, 0.36601055769184093, 0.020209168919625653, 0.3282769675660541, 0.39473318057750256, 0.10175852246296846, 0.29056171869124725, 0.3689477545976796, 0.15227157854698126, 0.4508284589847724, 0.4848518680940308, 0.48764181270791845, 0.20161236116021075, 0.0372518862447907, 0.13802424979747369, 0.08359244242561942, 0.11815073321180325, 0.4083228119124898, 0.49445453457696575, 0.3519872243413412, 0.39403313265728634, 0.32230825748701464, 0.41812745623222575, 0.2358478689657717, 0.2454050017169933, 0.3920742655024593, 0.048942597606496385, 0.3781234629292398, 0.22873477036365886, 0.32859187401172874, 0.010408336845101784, 0.3330546374077761, 0.2958343300881319, 0.02703572611457683, 0.0038885450454624326, 0.36429625023949985, 0.02244319568024966, 0.09355151759077368, 0.006954988969105846, 0.38129045290112606, 0.43057743756775857, 0.11132933762864194, 0.4482505665108088, 0.13929195202819256, 0.4736420043529702, 0.049487470549729906, 0.12591639461203763, 0.2911980003145704, 0.07076434291045713, 0.06026435050285561, 0.27441092162600833, 0.21865195664212067, 0.48295039559246294, 0.29947929003497553, 0.16691279229863742, 0.08873097365459603, 0.15199173586976056, 0.4181799309690651, 0.29127024912722504, 0.3987008474144783, 0.3378259481213086, 0.4222301486054217, 0.06409284671412652, 0.09940341228051713, 0.005248532166602982, 0.20239690544339084, 0.41314104853182376, 0.36143828556720975, 0.4251301435384012, 0.12455928344149458, 0.08256160763981679, 0.41283064224796046, 0.36803804376519683, 0.4080345613361484, 0.23098485581069617, 0.22612076231563571, 0.14381508092933443, 0.45543600639529, 0.28250850310798403, 0.28453867317269904, 0.15998107837497771, 0.3295301318485066, 0.493518633387603, 0.3221606966427171, 0.41796533528763447, 0.08907909974832179, 0.2582324869935567, 0.2001457166709879, 0.1709756062581061, 0.3436095786842655, 0.24361627864171947, 0.4816715996907824, 0.4967750270684401, 0.04954820338017568, 0.34310254784194644, 0.009839209218664935, 0.3068360891166182, 0.44379538486428893, 0.38012523241684115, 0.12626076578176343, 0.44435213045611066, 0.15599209863312374, 0.43572734039221117, 0.0801377599187677, 0.05366084259517945, 0.49020634357210957, 0.2538895201047088, 0.3825201674407459, 0.43228474215565726, 0.1890605572682557, 0.4033829203752873, 0.11625710298659958, 0.04497782870351097, 0.2551149963056197, 0.21190972660133162, 0.07796236822662717, 0.25375191194369306, 0.20119353125115996, 0.3637880175704598, 0.3255423282161364, 0.041233135914097385, 0.07388505348429814, 0.07207962564381909, 0.14636229024820152, 0.31660404388591973, 0.08326688315213354, 0.0704843953803096, 0.1666902281041875, 0.2927801559541405, 0.49477465029936185, 0.08334248934185562, 0.05828117420737672, 0.38072543558990984, 0.3784651640395225, 0.45196382670478313, 0.36676157155480243, 0.32272484636794735, 0.3887985442338071, 0.17050096067083814, 0.19209592067216869, 0.4591533464309152, 0.18052876679211988, 0.27428723942058153, 0.009706534711373616, 0.2629309791775029, 0.39575780559865087, 0.4560318870096285, 0.2188322818919759, 0.48506896593434046, 0.34116239124706993, 0.09690798106794496, 0.10559340103890452, 0.47453208722618034, 0.34503191943149686, 0.31289657707186547, 0.28092044971241836, 0.40480928007550193, 0.3924501825345857, 0.06500261444872402, 0.08236581883271687, 0.3378207837976913, 0.37224128318015665, 0.13491320001812046, 0.358589059750193, 0.4320294022468539, 0.2866839795750583, 0.09331427492688238, 0.18380848620602852, 0.0328564238717734, 0.24819430151599592, 0.1185889236119026, 0.4895762943981495, 0.011493220733647447, 0.45153849292729786, 0.12744107300526342, 0.3829334702534033, 0.23633162763311616, 0.38326228275719754, 0.44932977494924686, 0.3894886124637714, 0.03323453953515487, 0.01003300042630273, 0.34479489446132855, 0.1333067929911258, 0.07408430687186562, 0.07818901067107742, 0.10325860879721743, 0.46122724766710277, 0.3076197147182261, 0.24874655264856343, 0.21377032925116551, 0.16499186431854396, 0.24319045913569454, 0.4891479310920348, 0.30583871351935094, 0.20789349840985388, 0.39744095118313977, 0.04854803175466449, 0.33806436380706195, 0.04723106615341849, 0.17873198484177066, 0.44154110676648983, 0.09230673856219923, 0.38317699275312656, 0.22086763814192456, 0.17800014193230435, 0.13909126746505607, 0.061648750703262034, 0.1991565563069308, 0.09268104438782748, 0.06834640441743906, 0.37367962408410066, 0.16187978374664408, 0.1056392711140497, 0.4215798287087052, 0.1860622850149361, 0.48765844562290256, 0.3803440527463615, 0.05122190860983045, 0.2408112306693338, 0.14188537037411147, 0.3114262790274082, 0.30458028154493266, 0.4135087771036594, 0.21806541506001825, 0.17983384616824233, 0.4641139597289056, 0.1682319349093499, 0.17628487498832335, 0.019539465643411913, 0.20412690765591435, 0.48913402775586334, 0.35012109658318635, 0.43143185983479, 0.15276996734980747, 0.28758157482818686, 0.4171174643788504, 0.11765815968789611, 0.2560853322208503, 0.48357837954827565, 0.34714331338781523, 0.21857838127797963, 0.08126451863400713, 0.23152785982718854, 0.0013770746799243727, 0.4629003824149525, 0.03339461615623318, 0.08302273211338956, 0.014655526853111722, 0.3691859112450707, 0.08490373611458107, 0.27774962137845477, 0.4498659350608322, 0.4677924594470558, 0.04875329521878452, 0.09773678783621065, 0.496891547006969, 0.21911464988631996, 0.1243297060264737, 0.33420771146710343, 0.3463391639562473, 0.3490748974151434, 0.14098048035786453, 0.0850319004239013, 0.0952738715732509, 0.3795144032366342, 0.11607394676352528, 0.18761322168482775, 0.4601644632964441, 0.037338429973916065, 0.38879336890933236, 0.233884228404926, 0.17952556347060433, 0.08673669835462833, 0.24331910388992523, 0.04769202736559991, 0.006364373594645978, 0.2283782914970261, 0.43751799270696234, 0.15788662961373207, 0.023420568356262272, 0.14061280042682128, 0.051227239042442974, 0.21596087450415502, 0.0447780192783116, 0.04207963750123189, 0.19620841691344137, 0.4322974560649247, 0.18629037854619312, 0.04257814199198201, 0.3584065545962655, 0.21169204557012655, 0.4412078267375418, 0.3773947513702056, 0.3622855105465947, 0.287745357501777, 0.28235301726464135, 0.07718763863636241, 0.2824312405945318, 0.01149765149581744, 0.17325661474097376, 0.33979390035919244, 0.17175853192528528, 0.3188151067828781, 0.015405519970635662, 0.11244723538708196, 0.32419906686241984, 0.21092554205578556, 0.39306973830684383, 0.052656669164593384, 0.49405587960270136, 0.12492455813471798, 0.4973486606250149, 0.4469915989166607, 0.2725290908550184, 0.1294130105833003, 0.021189191940719998, 0.2345648377380991, 0.08248362775918716, 0.34741599364344955, 0.4600149952794051, 0.2127354291890105, 0.02224448741928986, 0.27384644401718866, 0.40497757995586425, 0.22866275196120667, 0.31167379745387375, 0.22444482239468033, 0.26627658857843917, 0.3701284200164505, 0.17995804020050304, 0.3083140410256097, 0.35382850242722025, 0.4928990291064823, 0.011006821420119717, 0.07216961337769395, 0.3290914774054746, 0.14451087895453812, 0.20680276160472594, 0.10774561258664966, 0.4409283392524962, 0.07560486934029209, 0.13239208082425374, 0.04698671716135566, 0.44949254386276083, 0.37072331308391765, 0.3823184691882801, 0.40237184472619875, 0.21956771597339708, 0.3801936148869511, 0.12040728292818281, 0.24799521438142513, 0.38279516062878655, 0.40171825788199284, 0.25026839514149424, 0.40126870033606754, 0.41973766404165, 0.3083999870763011, 0.4143048382112812, 0.14348027481619013, 0.037000385665188984, 0.4610760888774248, 0.3963678578892963, 0.22249594014859825, 0.022464460009485765, 0.47043362146660406, 0.0008925725442541221, 0.3644348722358255, 0.2692582883547171, 0.3013408677701271, 0.46781754939859443, 0.49071887997882974, 0.36771715459826876, 0.38625474557923306, 0.3705709866754393, 0.1993506115157394, 0.2081425580475324, 0.15078191129155627, 0.402875478529422, 0.3598768230154652, 0.3432418493954254, 0.15888072654854968, 0.4297017037767549, 0.43570895607747695, 0.11194432569424495, 0.024789451634363302, 0.06515441580042775, 0.05634555983527506, 0.043675643780008044, 0.32234356858552116, 0.36792766229383683, 0.10602691236942124, 0.42410530968172067, 0.4848920026227695, 0.05820648366105702], "expected": [11.0, 6.0, 12.0, 7.0, 3.0, 0.0, 3.0, 2.0, 1.0, 1.0, 11.0, 2.0, 31.0, 9.0, 10.0, 3.0, 1.0, 3.0, 3.0, 0.0, 1.0, 204.0, 2.0, 2.0, 1.0, 7.0, 0.0, 6.0, 7.0, 1.0, 0.0, 13.0, 32.0, 2.0, 3.0, 9.0, 21.0, 2.0, 11.0, 2.0, 552.0, 16.0, 34.0, 17.0, 2.0, 2.0, 1.0, 27.0, 5.0, 4.0, 54.0, 3.0, 7.0, 1.0, 57.0, 66.0, 1.0, 1.0, 6.0, 2.0, 0.0, 0.0, 0.0, 5.0, 38.0, 30.0, 3.0, 5.0, 0.0, 0.0, 0.0, 1.0, 63.0, 4.0, 2.0, 32.0, 6.0, 1.0, 8.0, 0.0, 11.0, 4.0, 11.0, 0.0, 0.0, 2.0, 3.0, 3.0, 0.0, 310.0, 0.0, 0.0, 4.0, 3.0, 19.0, 0.0, 0.0, 7.0, 0.0, 0.0, 3.0, 10.0, 5.0, 1.0, 0.0, 25.0, 0.0, 19.0, 1.0, 605.0, 0.0, 6.0, 0.0, 0.0, 0.0, 1.0, 30.0, 5.0, 6.0, 3.0, 0.0, 1.0, 6.0, 4.0, 1.0, 0.0, 0.0, 19.0, 8.0, 7.0, 2.0, 6.0, 4.0, 0.0, 0.0, 1.0, 36.0, 0.0, 13.0, 61.0, 1.0, 0.0, 0.0, 9.0, 4.0, 3.0, 0.0, 4.0, 1.0, 13.0, 10.0, 71.0, 2.0, 14.0, 6.0, 1.0, 9.0, 1.0, 0.0, 5.0, 0.0, 1.0, 1.0, 5.0, 10.0, 18.0, 3.0, 3.0, 6.0, 4.0, 0.0, 2.0, 2.0, 0.0, 7.0, 0.0, 74.0, 1.0, 3.0, 1.0, 21.0, 0.0, 2.0, 0.0, 59.0, 0.0, 0.0, 3.0, 1.0, 5.0, 4.0, 4.0, 5.0, 0.0, 6.0, 0.0, 2.0, 7.0, 14.0, 1.0, 29.0, 5.0, 0.0, 1.0, 0.0, 4.0, 5.0, 18.0, 22.0, 9.0, 474.0, 1.0, 2.0, 1.0, 1.0, 16.0, 4.0, 8.0, 54.0, 2.0, 0.0, 21.0, 3.0, 5.0, 5.0, 2.0, 0.0, 2.0, 101.0, 0.0, 3.0, 2.0, 11.0, 25.0, 2.0, 1.0, 3.0, 21.0, 2.0, 1.0, 1.0, 10.0, 1.0, 1.0, 1.0, 3.0, 2.0, 4.0, 109.0, 0.0, 10.0, 2.0, 6.0, 11.0, 0.0, 7.0, 1.0, 27.0, 5.0, 8.0, 1.0, 5.0, 5.0, 0.0, 5.0, 10.0, 4.0, 4.0, 6.0, 11.0, 1.0, 9.0, 7.0, 1.0, 0.0, 0.0, 1.0, 1.0, 5.0, 1.0, 15.0, 10.0, 3.0, 0.0, 0.0, 28.0, 6.0, 39.0, 0.0, 0.0, 0.0, 28.0, 0.0, 11.0, 2.0, 1.0, 0.0, 517.0, 14.0, 0.0, 0.0, 2.0, 1.0, 0.0, 2.0, 11.0, 14.0, 0.0, 0.0, 1.0, 0.0, 6.0, 1.0, 7.0, 7.0, 6.0, 8.0, 8.0, 8.0, 3.0, 2.0, 0.0, 4.0, 3.0, 5.0, 0.0, 11.0, 9.0, 3.0, 4.0, 0.0, 16.0, 0.0, 8.0, 0.0, 5.0, 1.0, 7.0, 0.0, 3.0, 4.0, 0.0, 0.0, 3.0, 2.0, 0.0, 552.0, 0.0, 0.0, 81.0, 8.0, 0.0, 5.0, 2.0, 69.0, 8.0, 8.0, 34.0, 0.0, 3.0, 0.0, 13.0, 1.0, 18.0, 2.0, 0.0, 0.0, 4.0, 4.0, 3.0, 47.0, 0.0, 4.0, 11.0, 6.0, 7.0, 3.0, 59.0, 3.0, 0.0, 0.0, 5.0, 2.0, 1.0, 0.0, 2.0, 24.0, 8.0, 0.0, 77.0, 15.0, 4.0, 18.0, 1.0, 0.0, 4.0, 0.0, 3.0, 0.0, 0.0, 2.0, 0.0, 1.0, 4.0, 0.0, 3.0, 4.0, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 8.0, 4.0, 2.0, 0.0, 0.0, 2.0, 13.0, 0.0, 1.0, 29.0, 2.0, 14.0, 6.0, 56.0, 9.0, 4.0, 1.0, 1.0, 2.0, 6.0, 2.0, 11.0, 8.0, 5.0, 5.0, 2.0, 6.0, 0.0, 42.0, 63.0, 19.0, 2.0, 78.0, 112.0, 0.0, 0.0, 0.0, 12.0, 0.0, 2.0, 0.0, 0.0, 1.0, 16.0, 8.0, 6.0, 5.0, 1.0, 8.0, 6.0, 2.0, 1.0, 1.0, 0.0, 16.0, 13313.0, 42.0, 0.0, 4.0, 0.0, 9.0, 4.0, 6.0, 1.0, 5.0, 0.0, 4.0, 5.0, 2.0, 1.0, 0.0, 2.0, 0.0, 2.0, 4.0, 5.0, 7.0, 1.0, 0.0, 9.0, 28.0, 17.0, 2.0, 0.0, 0.0, 2.0, 1.0, 5.0, 6.0, 52.0, 1.0, 39.0, 0.0, 6.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 5.0, 5.0, 0.0, 5.0, 1.0, 0.0, 0.0, 7.0, 0.0, 6.0, 44.0, 36.0, 3.0, 14.0, 7.0, 7.0, 3.0, 3.0, 7.0, 101.0, 12.0, 0.0, 3.0, 3.0, 0.0, 1.0, 0.0, 3.0, 7.0, 1.0, 4.0, 5.0, 3.0, 37.0, 1.0, 3.0, 2.0, 4.0, 6.0, 2.0, 0.0, 2.0, 1.0, 1.0, 0.0, 16.0, 0.0, 2.0, 10.0, 0.0, 3.0, 6.0, 9.0, 2.0, 0.0, 102.0, 2.0, 3.0, 3.0, 0.0, 4.0, 5.0, 66.0, 0.0, 2.0, 10.0, 0.0, 329.0, 7.0, 0.0, 17.0, 136.0, 1.0, 3.0, 11.0, 3.0, 6.0, 3.0, 4.0, 0.0, 6.0, 4.0, 0.0, 0.0, 7.0, 0.0, 9.0, 8.0, 1.0, 9.0, 5.0, 2.0, 1.0, 0.0, 19.0, 2.0, 8.0, 2.0, 0.0, 0.0, 18.0, 1.0, 3.0, 4.0, 4.0, 10.0, 7.0, 9.0, 13.0, 0.0, 4.0, 4.0, 2.0, 2.0, 0.0, 5.0, 3.0, 0.0, 22.0, 1.0, 17.0, 8.0, 187.0, 4.0, 0.0, 10.0, 108.0, 2.0, 78.0, 13.0, 47.0, 1.0, 3.0, 0.0, 0.0, 5.0, 2.0, 3.0, 3.0, 4.0, 57.0, 74.0, 0.0, 1.0, 0.0, 4.0, 5.0, 3.0, 3.0, 3.0, 2.0, 3.0, 1.0, 2.0, 12.0, 5.0, 0.0, 7.0, 5.0, 2.0, 5.0, 7.0, 0.0, 2.0, 1.0, 2.0, 0.0, 7.0, 1.0, 3.0, 0.0, 3.0, 0.0, 2.0, 1.0, 7.0, 0.0, 36.0, 0.0, 19.0, 12.0, 12.0, 4.0, 0.0, 3.0, 7.0, 2.0, 25.0, 7.0, 4.0, 1.0, 1.0, 1.0, 4.0, 1.0, 23.0, 11.0, 9.0, 15.0, 1.0, 11.0, 0.0, 12.0, 5.0, 21.0, 12.0, 4.0, 2.0, 0.0, 2.0, 3.0, 4.0, 2.0, 12.0, 16.0, 6.0, 2.0, 15.0, 7.0, 1.0, 6.0, 0.0, 1.0, 40.0, 0.0, 3.0, 0.0, 4.0, 15.0, 2.0, 14.0, 5.0, 2.0, 10.0, 4.0, 17.0, 2.0, 0.0, 6.0, 2.0, 7.0, 6.0, 10.0, 0.0, 3.0, 7.0, 1.0, 1.0, 1.0, 0.0, 28.0, 1.0, 3.0, 0.0, 7.0, 0.0, 2.0, 0.0, 24.0, 1.0, 4.0, 7.0, 1.0, 1.0, 25.0, 8.0, 6.0, 4.0, 1.0, 2.0, 1.0, 4.0, 12.0, 286.0, 1.0, 20.0, 0.0, 34.0, 1.0, 0.0, 1.0, 5.0, 4.0, 6.0, 2.0, 5.0, 0.0, 0.0, 0.0, 4.0, 0.0, 18.0, 0.0, 1.0, 1.0, 0.0, 0.0, 5.0, 3.0, 20.0, 10.0, 14.0, 54.0, 6.0, 1.0, 4.0, 0.0, 7.0, 1.0, 3.0, 8.0, 28.0, 0.0, 1.0, 0.0, 0.0, 5.0, 4.0, 2.0, 7.0, 0.0, 11.0, 0.0, 1.0, 5.0, 1.0, 10.0, 3.0, 0.0, 11.0, 2.0, 2.0, 0.0, 6.0, 13.0, 6.0, 1321.0, 1.0, 19.0, 2.0, 19.0, 1.0, 1.0, 0.0, 1.0, 1.0, 8.0, 10.0, 1.0, 1.0, 19.0, 3.0, 1.0, 4.0, 0.0, 7.0, 24.0, 2.0, 55.0, 1.0, 1.0, 77.0, 4.0, 4.0, 0.0, 4.0, 3.0, 1.0, 189.0, 28.0, 2.0, 0.0, 13.0, 6.0, 14.0, 10.0, 9.0, 94.0, 7.0, 3.0, 17.0, 3.0, 1.0, 3.0, 2.0, 1.0, 0.0, 0.0, 0.0, 1.0, 5.0, 149.0, 11.0, 2.0, 0.0, 0.0, 147.0, 10.0, 9.0, 2.0, 1.0, 39.0, 4.0, 5.0, 1.0, 1.0, 5.0, 9.0, 35.0, 0.0, 6.0, 2.0, 2.0, 21.0, 114.0, 1.0, 0.0, 7.0, 0.0, 1.0, 7.0, 2.0, 0.0, 0.0, 0.0, 2.0, 38.0, 9.0, 4.0, 3.0, 2.0, 13.0, 1.0, 0.0, 2.0, 11.0, 2.0, 6.0, 2.0, 3.0, 5.0, 3.0, 3.0, 2.0, 0.0, 6.0, 2.0, 4.0, 0.0, 3.0, 7.0, 1.0, 45.0, 3.0, 1.0, 1.0, 2.0, 0.0, 1230.0, 1.0, 0.0, 0.0, 2.0, 5.0, 1.0, 0.0, 2.0, 2.0, 8.0, 6.0, 0.0, 2.0, 4.0, 16.0, 6.0, 3.0, 3.0, 12.0, 77.0, 8.0, 3.0, 1.0, 6.0, 7.0, 0.0, 0.0, 1.0]}
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/test/test.factory.js b/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/test/test.factory.js
new file mode 100644
index 000000000000..c2d4f8ddfa2b
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/test/test.factory.js
@@ -0,0 +1,148 @@
+/**
+* @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 PINF = require( '@stdlib/constants/float64/pinf' );
+var factory = require( './../lib/factory.js' );
+
+
+// FIXTURES //
+
+var smallLambda = require( './fixtures/python/small_lambda.json' );
+var largeLambda = require( './fixtures/python/large_lambda.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 returned 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' );
+
+ t.end();
+});
+
+tape( 'if provided a valid shape parameter `lambda`, 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( 0.8 );
+ y = quantile( -0.1 );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ y = quantile( 1.1 );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ t.end();
+});
+
+tape( 'if provided a valid shape parameter `lambda`, the function returns a function which returns `+Infinity` when provided `1.0` for `p`', function test( t ) {
+ var quantile;
+ var y;
+
+ quantile = factory( 0.5 );
+ y = quantile( 1.0 );
+ t.equal( y, PINF, 'returns expected value' );
+
+ t.end();
+});
+
+tape( 'if provided a shape parameter `lambda` which is nonpositive, the returned function always returns `NaN`', function test( t ) {
+ var quantile;
+ var y;
+
+ quantile = factory( -1.0 );
+
+ y = quantile( 0.4 );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ y = quantile( 0.8 );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ quantile = factory( 0.0 );
+
+ y = quantile( 0.4 );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ y = quantile( 0.8 );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ t.end();
+});
+
+tape( 'the returned function evaluates the quantile for `p` given small parameter `lambda`', function test( t ) {
+ var quantile;
+ var expected;
+ var lambda;
+ var p;
+ var y;
+ var i;
+
+ expected = smallLambda.expected;
+ p = smallLambda.r;
+ lambda = smallLambda.lambda;
+ for ( i = 0; i < p.length; i++ ) {
+ quantile = factory( lambda[ i ] );
+ y = quantile( p[ i ] );
+ t.equal( y, expected[ i ], 'p: '+p[ i ]+', lambda: '+lambda[ i ]+', y: '+y+', expected: '+expected[ i ] );
+ }
+ t.end();
+});
+
+tape( 'the returned function evaluates the quantile for `p` given large parameter `lambda`', function test( t ) {
+ var quantile;
+ var expected;
+ var lambda;
+ var p;
+ var y;
+ var i;
+
+ expected = largeLambda.expected;
+ p = largeLambda.r;
+ lambda = largeLambda.lambda;
+ for ( i = 0; i < p.length; i++ ) {
+ quantile = factory( lambda[ i ] );
+ y = quantile( p[ i ] );
+ t.equal( y, expected[ i ], 'p: '+p[ i ]+', lambda: '+lambda[ i ]+', y: '+y+', expected: '+expected[ i ] );
+ }
+ t.end();
+});
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/test/test.js b/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/test/test.js
new file mode 100644
index 000000000000..6ad40b0c38e2
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/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/planck/quantile/test/test.quantile.js b/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/test/test.quantile.js
new file mode 100644
index 000000000000..a76f7130beaa
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/quantile/test/test.quantile.js
@@ -0,0 +1,111 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var tape = require( 'tape' );
+var isnan = require( '@stdlib/math/base/assert/is-nan' );
+var PINF = require( '@stdlib/constants/float64/pinf' );
+var quantile = require( './../lib' );
+
+
+// FIXTURES //
+
+var smallLambda = require( './fixtures/python/small_lambda.json' );
+var largeLambda = require( './fixtures/python/large_lambda.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 = 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 a number outside `[0,1]` for `p` and a valid `lambda`, the function returns `NaN`', function test( t ) {
+ var y = quantile( 2.2, 0.8 );
+ t.equal( isnan( y ), true, 'returns expected value' );
+ y = quantile( -0.2, 0.8 );
+ t.equal( isnan( y ), true, 'returns expected value' );
+ t.end();
+});
+
+tape( 'if provided `1.0` for `p` and a valid `lambda`, the function returns `+Infinity`', function test( t ) {
+ var y = quantile( 1.0, 0.5 );
+ t.equal( y, PINF, 'returns expected value' );
+ y = quantile( 1.0, 1.5 );
+ t.equal( y, PINF, 'returns expected value' );
+ t.end();
+});
+
+tape( 'if provided a shape parameter `lambda` which is nonpositive, the function always returns `NaN`', function test( t ) {
+ var y;
+
+ y = quantile( 0.8, -1.5 );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ y = quantile( 0.9, 0.0 );
+ t.equal( isnan( y ), true, 'returns expected value' );
+
+ t.end();
+});
+
+tape( 'the function evaluates the quantile for `p` given small parameter `lambda`', function test( t ) {
+ var expected;
+ var lambda;
+ var p;
+ var y;
+ var i;
+
+ expected = smallLambda.expected;
+ p = smallLambda.r;
+ lambda = smallLambda.lambda;
+ for ( i = 0; i < p.length; i++ ) {
+ y = quantile( p[ i ], lambda[ i ] );
+ t.equal( y, expected[ i ], 'p: '+p[ i ]+', lambda: '+lambda[ i ]+', y: '+y+', expected: '+expected[ i ] );
+ }
+ t.end();
+});
+
+tape( 'the function evaluates the quantile for `p` given large parameter `lambda`', function test( t ) {
+ var expected;
+ var lambda;
+ var p;
+ var y;
+ var i;
+
+ expected = largeLambda.expected;
+ p = largeLambda.r;
+ lambda = largeLambda.lambda;
+ for ( i = 0; i < p.length; i++ ) {
+ y = quantile( p[ i ], lambda[ i ] );
+ t.equal( y, expected[ i ], 'p: '+p[ i ]+', lambda: '+lambda[ i ]+', y: '+y+', expected: '+expected[ i ] );
+ }
+ t.end();
+});