diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/README.md b/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/README.md
new file mode 100644
index 000000000000..1b9f88959fa9
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/README.md
@@ -0,0 +1,139 @@
+
+
+# Skewness
+
+> Planck (discrete exponential) distribution [skewness][skewness].
+
+
+
+
+
+The [skewness][skewness] for a Planck random variable is
+
+
+
+```math
+\mathop{\mathrm{skew}}\left( X \right) = 2 \cosh\left( \frac{\lambda}{2} \right)
+```
+
+
+
+where `λ` is the shape parameter.
+
+
+
+
+
+
+
+
+
+## Usage
+
+```javascript
+var skewness = require( '@stdlib/stats/base/dists/planck/skewness' );
+```
+
+#### skewness( lambda )
+
+Returns the [skewness][skewness] of a Planck distribution with shape parameter `lambda`.
+
+```javascript
+var v = skewness( 0.1 );
+// returns ~2.0025
+
+v = skewness( 1.5 );
+// returns ~2.5894
+```
+
+If provided a shape parameter `lambda` which is nonpositive or `NaN`, the function returns `NaN`.
+
+```javascript
+var v = skewness( NaN );
+// returns NaN
+
+v = skewness( -1.5 );
+// returns NaN
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+## Examples
+
+
+
+```javascript
+var uniform = require( '@stdlib/random/array/uniform' );
+var skewness = require( '@stdlib/stats/base/dists/planck/skewness' );
+
+var lambda = uniform( 10, 0.1, 10.0 );
+
+var v;
+var i;
+for ( i = 0; i < lambda.length; i++ ) {
+ v = skewness( lambda[ i ] );
+ console.log( 'λ: %d, skew(X;λ): %d', lambda[ i ].toFixed( 4 ), v.toFixed( 4 ) );
+}
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+[skewness]: https://en.wikipedia.org/wiki/Skewness
+
+
+
+
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/benchmark/benchmark.js b/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/benchmark/benchmark.js
new file mode 100644
index 000000000000..1b30b70b4d42
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/benchmark/benchmark.js
@@ -0,0 +1,52 @@
+/**
+* @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 skewness = require( './../lib' );
+
+
+// MAIN //
+
+bench( pkg, function benchmark( b ) {
+ var lambda;
+ var y;
+ var i;
+
+ lambda = uniform( 100, 0.1, 10.0 );
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ y = skewness( 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();
+});
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/docs/repl.txt b/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/docs/repl.txt
new file mode 100644
index 000000000000..425b21e196ac
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/docs/repl.txt
@@ -0,0 +1,26 @@
+
+{{alias}}( λ )
+ Returns the skewness of a Planck distribution with shape parameter `λ`.
+
+ If `λ <= 0`, the function returns `NaN`.
+
+ Parameters
+ ----------
+ λ: number
+ Shape parameter.
+
+ Returns
+ -------
+ out: number
+ Skewness.
+
+ Examples
+ --------
+ > var v = {{alias}}( 0.1 )
+ ~2.0025
+ > v = {{alias}}( 1.5 )
+ ~2.5894
+
+ See Also
+ --------
+
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/docs/types/index.d.ts b/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/docs/types/index.d.ts
new file mode 100644
index 000000000000..c9a1bec062e0
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/docs/types/index.d.ts
@@ -0,0 +1,52 @@
+/*
+* @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
+
+/**
+* Returns the skewness of a Planck distribution.
+*
+* ## Notes
+*
+* - If `lambda <= 0`, the function returns `NaN`.
+*
+* @param lambda - shape parameter
+* @returns skewness
+*
+* @example
+* var v = skewness( 0.1 );
+* // returns ~2.0025
+*
+* @example
+* var v = skewness( 0.5 );
+* // returns ~2.5894
+*
+* @example
+* var v = skewness( -1.1 );
+* // returns NaN
+*
+* @example
+* var v = skewness( NaN );
+* // returns NaN
+*/
+declare function skewness( lambda: number ): number;
+
+
+// EXPORTS //
+
+export = skewness;
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/docs/types/test.ts b/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/docs/types/test.ts
new file mode 100644
index 000000000000..26fba10eb1c0
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/docs/types/test.ts
@@ -0,0 +1,44 @@
+/*
+* @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 skewness = require( './index' );
+
+
+// TESTS //
+
+// The function returns a number...
+{
+ skewness( 0.3 ); // $ExpectType number
+}
+
+// The compiler throws an error if the function is provided a value other than a number...
+{
+ skewness( true ); // $ExpectError
+ skewness( false ); // $ExpectError
+ skewness( null ); // $ExpectError
+ skewness( undefined ); // $ExpectError
+ skewness( '5' ); // $ExpectError
+ skewness( [] ); // $ExpectError
+ skewness( {} ); // $ExpectError
+ skewness( ( x: number ): number => x ); // $ExpectError
+}
+
+// The compiler throws an error if the function is provided insufficient arguments...
+{
+ skewness(); // $ExpectError
+}
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/examples/index.js b/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/examples/index.js
new file mode 100644
index 000000000000..1e341166e65b
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/examples/index.js
@@ -0,0 +1,31 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+var uniform = require( '@stdlib/random/array/uniform' );
+var skewness = require( './../lib' );
+
+var lambda = uniform( 10, 0.1, 10.0 );
+
+var v;
+var i;
+for ( i = 0; i < lambda.length; i++ ) {
+ v = skewness( lambda[ i ] );
+ console.log( 'λ: %d, skew(X;λ): %d', lambda[ i ].toFixed( 4 ), v.toFixed( 4 ) );
+}
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/lib/index.js b/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/lib/index.js
new file mode 100644
index 000000000000..97a1d9ad8b0c
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/lib/index.js
@@ -0,0 +1,43 @@
+/**
+* @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 skewness.
+*
+* @module @stdlib/stats/base/dists/planck/skewness
+*
+* @example
+* var skewness = require( '@stdlib/stats/base/dists/planck/skewness' );
+*
+* var v = skewness( 0.1 );
+* // returns ~2.0025
+*
+* v = skewness( 1.5 );
+* // returns ~2.5894
+*/
+
+// MODULES //
+
+var main = require( './main.js' );
+
+
+// EXPORTS //
+
+module.exports = main;
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/lib/main.js b/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/lib/main.js
new file mode 100644
index 000000000000..022a23a3b48c
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/lib/main.js
@@ -0,0 +1,61 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var isnan = require( '@stdlib/math/base/assert/is-nan' );
+var cosh = require( '@stdlib/math/base/special/cosh' );
+
+
+// MAIN //
+
+/**
+* Returns the skewness of a Planck distribution.
+*
+* @param {PositiveNumber} lambda - shape parameter
+* @returns {PositiveNumber} skewness
+*
+* @example
+* var v = skewness( 0.1 );
+* // returns ~2.0025
+*
+* @example
+* var v = skewness( 1.5 );
+* // returns ~2.5894
+*
+* @example
+* var v = skewness( -1.1 );
+* // returns NaN
+*
+* @example
+* var v = skewness( NaN );
+* // returns NaN
+*/
+function skewness( lambda ) {
+ if ( isnan( lambda ) || lambda <= 0.0 ) {
+ return NaN;
+ }
+ return 2.0 * cosh( lambda / 2.0 );
+}
+
+
+// EXPORTS //
+
+module.exports = skewness;
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/package.json b/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/package.json
new file mode 100644
index 000000000000..bacbffc9da81
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/package.json
@@ -0,0 +1,68 @@
+{
+ "name": "@stdlib/stats/base/dists/planck/skewness",
+ "version": "0.0.0",
+ "description": "Planck (discrete exponential) distribution skewness.",
+ "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",
+ "planck",
+ "parameter",
+ "memoryless",
+ "life-time",
+ "discrete",
+ "skewness",
+ "shape",
+ "asymmetry",
+ "univariate"
+ ]
+}
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/test/fixtures/python/data.json b/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/test/fixtures/python/data.json
new file mode 100644
index 000000000000..d82c79615415
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/test/fixtures/python/data.json
@@ -0,0 +1 @@
+{"lambda": [7.28771354747294, 17.19200605003821, 2.2888656743039726, 7.854727486099642, 6.69956741467767, 0.18088780521883896, 3.8994251606907615, 7.767118960954131, 7.704599286520617, 1.9741888460101942, 18.934567360935613, 18.906997276170156, 17.659859698861954, 13.966269433236032, 14.514808056689542, 6.986219738268884, 19.49518550638792, 11.014658386199478, 9.53520565093986, 7.714195971140285, 11.975963546456239, 5.148467495967046, 13.880430078037183, 11.896063746184867, 1.23712214997165, 1.4564293245987048, 19.04952156038298, 11.14689791219081, 3.503628205095448, 7.003517853433065, 1.4285991205561266, 14.585032546047678, 10.39210952455808, 6.506398830170168, 5.976339514281232, 1.42414831250943, 13.412956616521337, 1.8608357662885466, 0.19757664273147846, 0.1208208797558541, 15.1470018810671, 15.17975114584164, 10.257722444898985, 13.831350160524396, 12.336009339930191, 0.9558569685741158, 10.889639824587015, 13.218309615126934, 3.4891795850963403, 6.708328118625766, 6.922650815077709, 5.964830235774445, 1.6174230022063396, 7.827273857505848, 9.460993667825274, 18.780073607324567, 17.729426047379803, 19.554812747410537, 6.62072119917994, 16.910757914197706, 14.399753328333007, 18.444333002851426, 15.748556610808839, 11.532176609693066, 17.990388878965636, 12.40186955254443, 8.274433128099512, 15.041840713328448, 6.504950047148763, 14.59484457986677, 4.068212484804659, 1.1072715516302156, 17.461945852257227, 17.126743007978327, 17.83295108725447, 10.15652409199571, 13.861705918168152, 8.622980601624693, 16.2040810451617, 3.2621728076150647, 9.995362723762566, 5.444657654561656, 5.238350853509113, 16.316514520764954, 16.923124410909942, 7.0963201171782835, 1.27451509158659, 3.123694332848461, 10.856315804561325, 2.49006649801645, 12.266431251760153, 17.743783256583914, 2.9146671923779977, 6.321212891118268, 11.95339726225026, 17.688740519620307, 13.62449815248766, 1.6851393299616668, 1.9957636761584063, 11.457753710317133, 12.1125307086605, 8.547909105699787, 12.607907266390281, 1.674343726321248, 8.194658567053379, 1.2462895282289699, 11.385624531658983, 8.572206832638985, 0.1245576517197966, 9.979181994943504, 8.699873479956295, 16.68474866774288, 18.10312174475542, 0.9876193477024109, 8.438464990032681, 4.596320419547486, 4.624703282270768, 0.24519325488671084, 5.608573504806172, 7.1112944108006815, 17.373810914664652, 7.439507592386785, 2.060745647947435, 16.973640932335744, 17.511908567408373, 3.5828845267918075, 0.0914803639397932, 15.693525016065742, 0.18526503644516357, 7.864727389888269, 19.73747191772009, 14.890560759346519, 17.082671742973975, 10.99680262829046, 19.43599366525846, 16.444213266333005, 19.104361110283037, 10.024534125720606, 9.943387007881274, 19.83796509228295, 0.19380888127375817, 3.4650818873111078, 14.847867871579684, 9.15530056984787, 1.6455892746138523, 14.916267905815722, 12.57602982150942, 15.858630760160832, 4.19131256221831, 2.302402109341861, 6.501662839737472, 12.20659964224032, 9.645186044341386, 4.812772987393035, 19.358668750144666, 14.8609767965572, 13.537406939587237, 13.906879887709858, 1.0999678724707507, 17.061097653212705, 8.000382170790248, 10.746516168701628, 5.37274392000906, 18.90183289784889, 17.224165866323457, 16.973790421651263, 13.806784593579916, 2.788830185751343, 13.430237684377017, 16.97217812015943, 8.14368097968152, 15.376484478850639, 0.3817441184249204, 5.422124186062862, 6.184402256987274, 9.661505693929849, 8.695485543537824, 0.4024813243933334, 9.553916976480274, 9.42966063936324, 2.1704783157806973, 16.744885100194438, 1.3989472808017722, 19.819367180154217, 12.765773937323484, 14.851186220120447, 19.460003702425205, 13.79337333221656, 0.798458456849358, 14.360184343706141, 13.051841453017508, 1.472933363028437, 4.718733313956591, 8.093311543002088, 0.7876352836616829, 17.372839784647606, 19.21574588574347, 5.400350193527153, 6.653339434976198, 9.972642173193556, 15.827187306056615, 19.85364430746898, 15.31588943284712, 6.902280101593911, 2.029740148046213, 3.902366054661981, 12.598480389778802, 16.659409863017622, 8.863520800610864, 9.187009172210692, 0.5846616892016177, 17.90307469710358, 8.784499648140505, 8.402895655098323, 17.740305598978118, 13.951251542395855, 19.953393404035776, 19.267368293899384, 0.2745374084921193, 3.2124712495013608, 4.37862172511892, 10.406416912131167, 9.36710063844063, 4.248042007118253, 2.958750592416166, 18.364223943154567, 3.0793868187984685, 9.317304827917548, 9.965013710639584, 5.6467560587839944, 12.614575454414636, 0.8943988217876786, 13.870039555311743, 6.041068462529426, 11.900127636108163, 5.014245275735105, 5.573552993577469, 10.76756572428929, 12.708980473128605, 15.994762444841433, 6.85564673484393, 14.167247349413438, 1.6876518332971235, 17.175374825878926, 6.820530328554022, 1.1265724474240946, 15.376571849699745, 3.3835369183134256, 9.672730800833811, 13.433884381155057, 4.631034733481543, 11.432494024434376, 4.4692268852990775, 14.506052112007094, 6.829428630879299, 6.511913986516449, 14.242682546302417, 14.539072400446337, 11.108927753725098, 16.243036713963413, 9.930691641909103, 5.827731454175735, 12.846792832842613, 4.335940119350665, 17.127664347261973, 16.30917809318474, 14.033522551950671, 18.92659139659387, 13.175937149739973, 1.235464446733363, 14.910025309237977, 8.242820392369863, 19.21767925503369, 19.401819765569652, 2.4659811265810516, 4.698727040447707, 6.6056005035635295, 7.751098797520861, 4.461819195040562, 16.9003269477037, 17.194639902239, 10.391590160430352, 12.828163129844823, 0.7061789060592516, 0.5775725029892542, 0.19506829921125401, 8.514440781157544, 10.665734033415577, 2.2072224032366683, 19.910709386610655, 13.147496327821246, 7.045161825461788, 1.864324333133096, 0.5031641923974295, 3.725797240038695, 6.008358659789705, 13.391658484371769, 5.668932489867187, 5.792468515564451, 15.564232673630611, 5.602229098354341, 6.135088907912811, 3.342449333133839, 11.843478804130376, 17.215001374183487, 12.02445337866147, 9.31429878916314, 4.838773631826745, 19.083021691025962, 17.46233372138196, 10.816305206220596, 6.432904231076986, 16.86852584243518, 0.04556312911141003, 10.32301703299698, 11.82972977429252, 17.907894789736233, 11.910297900062986, 8.11933996828559, 17.092757624037407, 4.923558975386837, 10.115170348057426, 5.300224712032606, 0.1439370596015177, 1.1654790493477751, 16.111956325504032, 0.2603520779435242, 2.7872866654604023, 18.10147285636949, 0.6348632736881332, 1.7875419371567558, 17.3625893929051, 4.994849004763475, 19.576003785447433, 9.900088700632601, 0.43225931183520583, 0.8341264938105875, 7.950290161065141, 8.815929676272933, 1.5479037179568822, 17.74592720536995, 14.678263587514664, 4.2694390218600535, 2.4467142257322716, 14.00454841980495, 16.327479322996158, 0.6387352425412862, 14.201583291576005, 1.0840470569977745, 17.791888281472563, 13.185253424923086, 7.284949221581818, 10.463475012177597, 12.70601194394758, 11.882418172981508, 12.046885685112557, 4.070752610816419, 6.913626993020305, 19.217205391896577, 5.527864864228926, 0.6051197668847519, 11.423604475590484, 0.04371586721073628, 12.688908565975757, 14.311703855999358, 18.589607583951164, 12.93086503736868, 12.99127922523353, 12.077380167447501, 16.076096968563697, 18.139944751607203, 16.83919204613611, 16.069657511859486, 11.315235657160997, 15.62056969993857, 18.34741102566673, 11.866049073392894, 12.84890160537197, 19.77484152781602, 1.1557199463099166, 6.7757937121968475, 17.05168822604368, 10.857385360449879, 5.994372918103872, 5.257628206211804, 2.4745007663909258, 0.36549720776772654, 10.305600556958412, 15.303880901509165, 12.000240327587585, 6.610637966048931, 8.975327908581095, 5.005890752064306, 3.749161660205811, 9.262073097067415, 13.086757811677323, 0.5548148900098382, 17.69393117817473, 0.20920729014613837, 1.8561526799397177, 1.8017641964340747, 5.912716207493249, 1.451615012676839, 18.873147567079734, 10.412928909159756, 5.313439450793094, 13.628418776471257, 10.210962270698671, 15.297251370793925, 1.1806477803532522, 0.2338927249539613, 6.937233752288636, 2.7416623609319846, 11.539147252715535, 2.253182150965838, 0.463802799790316, 12.607327139784616, 2.3053399766147864, 11.956530187829559, 9.182260728305522, 16.548604589068127, 5.59989430407176, 6.848684716840356, 8.3150068684154, 6.990349127774385, 1.566911139176037, 0.055416194974158284, 9.108313357477787, 19.638010627858172, 5.973289485264067, 6.676364284122542, 18.289556506751396, 1.2109576097382901, 10.607812356351689, 14.171702743251103, 5.042028992591156, 2.914618942540299, 8.459466618086712, 18.11356750406748, 14.372929176715413, 10.668266051222863, 0.2342478800182768, 17.79356353286848, 2.8107253750157857, 6.931269523158294, 7.921188557907763, 0.10081477704965147, 18.5802405442886, 3.273106077989276, 19.36555110385048, 13.23721978951707, 10.321591326925184, 14.550434541538618, 2.5601993033268755, 1.297693781982927, 19.08681561150476, 0.08857118511963691, 0.7879280332382343, 14.888385652969859, 12.390511705024887, 14.870966695382899, 15.318438849918207, 1.0654992971879795, 1.4654889672718219, 14.467276164680023, 3.4543836060972266, 12.70064468972957, 11.019787474316745, 7.209121482892835, 9.95292620024406, 3.716650432103825, 13.92686198647972, 9.481189931464149, 18.69529139396728, 10.400957440162856, 17.274090412272578, 16.214615065390884, 11.117751771067985, 10.264170249746634, 13.60111787723881, 18.512461251207412, 4.515865849522496, 15.568749286787023, 0.8015635246872455, 3.652223508203898, 15.874184262062993, 17.78966798433341, 14.3090984288215, 7.880222360989335, 14.52380492611503, 10.268284857911729, 6.848079290402264, 12.502133071725886, 10.521333587715048, 19.536948801757113, 3.3423826726207118, 0.4292492186521213, 7.990748964158831, 7.138167879135285, 16.97334712752504, 4.198493782227595, 0.7077470496330629, 4.045086230548385, 17.94796364579941, 10.112878167507143, 18.19344122159022, 2.5075489954805996, 7.187330319788908, 19.272804181460018, 4.402759854469707, 2.6578695856460066, 1.174519263103151, 15.574265241325024, 3.399910695604198, 12.019232634942353, 19.61495787963165, 6.332587361900317, 5.95139598533512, 5.942877038912336, 3.338432064148056, 16.302533046788277, 13.99128910245907, 2.023194578136851, 19.853216799740615, 16.174914547375362, 10.090244452756831, 14.497747562050055, 2.830821181115566, 12.67655274684442, 5.238606496676697, 0.44213675529912955, 5.041064944498695, 18.952297162689764, 17.706494065170016, 2.2897375544705234, 8.2459161855294, 17.19165468778146, 12.805166657751696, 0.9354154971425821, 4.250167310705779, 16.735755336070376, 12.046252044726113, 13.785244907076352, 1.790814893685475, 4.204967742708781, 17.045857886726527, 14.05323305298799, 12.211378817122107, 19.645053933234507, 5.299759104622666, 2.0701738355040855, 12.362867788403475, 18.62626297271118, 19.769608720792856, 7.252298681890553, 16.29910485066418, 5.130341511398997, 2.9602545198473207, 16.38069361838561, 19.9269691704028, 11.207993007222463, 19.42389222337097, 7.294008834347247, 14.86036874925655, 4.091085800651593, 9.629572862251107, 2.3735586376507323, 8.83392434528594, 2.026023122271421, 19.579810381639156, 0.7957433386078772, 7.982067376719495, 4.839810592662301, 15.80750343930152, 15.689102284741763, 13.791252648933307, 19.874237109520752, 8.274047888974774, 2.818085312574765, 5.114348715861845, 18.911449372533067, 4.354384892036216, 14.556453915489904, 10.375611256764232, 17.91572892099438, 9.796764453037603, 12.200094719464296, 15.353815654071873, 16.406640481702528, 9.356228426244481, 10.853209960027243, 11.605951902715653, 2.3283919381366114, 13.012316770134763, 19.774392515930533, 1.1011977403666484, 15.046010189401908, 2.814190235798726, 0.09144475724456091, 19.755460339322784, 12.131892596684446, 6.681415765971432, 9.672091637738824, 2.856542439617471, 2.3532209830477746, 11.62142871515612, 13.231331287179087, 0.8091700204704999, 1.8144241811938677, 17.018081736675953, 4.725325776910598, 8.41235442857049, 8.26905870976791, 14.125745357683538, 16.414847899754676, 5.516340636697647, 3.641527354068481, 18.9813019006696, 13.701000071201424, 14.518027759656206, 2.118891311820552, 0.710991866697952, 16.97687374824732, 2.220467120291707, 8.147732127700467, 9.910926219783287, 0.29257135717830174, 13.654555739395636, 15.447650345894072, 7.050179941165304, 11.369641146316834, 14.435587529666876, 14.281360264520904, 17.13903181395861, 4.677086771708135, 4.477387156561092, 7.422117926029424, 7.105757384742359, 19.992789388487104, 8.746039285390072, 4.934527956705413, 7.094135960443058, 10.435442042443892, 12.584563392964391, 8.961311365624478, 15.993563987595298, 5.482845642774034, 11.766763238663911, 1.623835528956592, 13.625636293040293, 9.406283039459744, 11.483593742487324, 17.59996751203164, 15.59117185186202, 12.571925639836092, 1.253973243463633, 18.424815678724393, 1.6972667426399934, 8.377301996843265, 16.249346646161516, 13.376870629348801, 14.82271787914835, 2.978760359900101, 3.0203835280352465, 0.543890853738016, 6.992801186310514, 9.91109119635757, 10.132723527490876, 17.613878733397396, 4.490470648413069, 13.047614516030707, 8.360711683454022, 2.572424001919993, 14.930867074302327, 13.85186197560925, 0.6554936418944934, 10.957130789916585, 15.758301863689868, 14.811004519635024, 10.921467154084867, 2.6646431333489096, 4.739267441715695, 18.647651797518442, 15.951651045057233, 9.63903705445765, 2.20314717491944, 3.09917697224392, 14.795397374504056, 11.056579233280976, 17.776406891464497, 15.404792993332759, 5.900707493510151, 2.59376751371033, 9.114446709981113, 7.841422569994963, 5.112547927720987, 15.57286179014948, 1.539301590949882, 18.985044111724335, 4.9625049438105595, 8.171990281332953, 16.78798832871359, 0.16459126563507898, 7.640339576616784, 12.347778428039241, 18.720365917406966, 18.81210572381462, 10.461657388627518, 5.861079320776714, 4.985449511094782, 4.400990122188211, 6.527311412083456, 17.573019797667616, 2.474822117446065, 8.87477697940519, 9.647688223842634, 6.841704904267156, 11.396685305632502, 7.474823386599048, 10.328674632147045, 7.950851231757811, 17.42760425590174, 9.835104097172326, 7.109940678338957, 8.488506093458351, 7.0647971541602805, 4.117276840076962, 9.173217384634354, 15.634986084223963, 5.334821695009364, 4.714594533730501, 17.506531004894054, 14.61698750889729, 8.818619290441825, 9.921604929101802, 1.5939724514540177, 13.75139834821853, 12.19945853588258, 7.991379832712829, 19.411254858018733, 8.187037124587711, 11.469354422893144, 4.93999712597603, 13.641000529927027, 12.153279123014478, 18.483060346266228, 6.309283111684076, 16.108396554137578, 5.268176158961433, 14.426803659938924, 13.485535637043704, 6.13289715770998, 17.850381657397694, 4.73654362575048, 16.990553754732318, 4.135104568604577, 0.41300096157709687, 11.947587760007396, 11.15972629727933, 19.219327704789247, 9.995884818601448, 4.11273520898961, 16.218740286005737, 1.5312786456471916, 5.194658846235189, 2.741769074638105, 3.4094951121437145, 2.83984157943614, 7.075172714504088, 5.489534516069869, 12.134526107509982, 19.931464203941605, 7.452244812483824, 0.20514222444939945, 2.916638638817688, 2.7498136381103744, 4.5301216665078385, 12.015903820662599, 5.486715509773918, 17.204844410329926, 2.9899257306194693, 17.34046307347898, 3.45615927197346, 13.806849600494752, 16.959793205601656, 19.045411649770983, 12.652226378489711, 7.844528965850648, 9.758568974270961, 10.271675777413702, 14.275328220931957, 15.975302903407593, 4.796797136589943, 1.6061228887414725, 12.356602994318438, 12.160282484202753, 10.25667244790856, 14.351884307461539, 4.089896523595651, 6.202547244052945, 14.055774679898823, 14.264073966021273, 13.353622847988726, 13.034956516677243, 19.42815194719976, 19.45637284142731, 0.6004298037888889, 12.846369249662466, 4.9305626471861626, 10.63826865444414, 15.536522522155394, 4.388941081340906, 18.997701281332454, 1.5769795199811387, 2.0197229124186977, 15.11248438256866, 13.023548564540752, 15.774669970586963, 18.406584242572666, 13.181556733075135, 8.347269040022011, 3.650193368128234, 10.931885433545592, 16.054889184780905, 10.467521132899664, 15.829783025622799, 17.040988026338233, 6.415064928955552, 17.821609323264102, 10.070358325625788, 18.646487893364693, 14.467729559309907, 18.082166689880182, 14.250983914518216, 16.59153017603405, 17.647819621844384, 10.686258038953804, 4.806958732449546, 14.755673399983191, 2.092160218927146, 0.047408181443278075, 16.444723703962197, 5.316408557755066, 5.84195858018761, 14.639844116160672, 13.291377474043955, 3.6856727707330394, 7.82066063521591, 16.862114543251025, 15.236885045500664, 15.286748909940684, 1.3036318724612195, 2.4677642373382525, 11.809021274165293, 19.86689809347021, 4.783781112656662, 19.06712687759508, 18.77366669546309, 17.831785448034637, 2.0469793664859615, 8.767876559236374, 2.7811044853040556, 14.021923076476481, 18.7881724854102, 9.355466538360764, 11.174481515843286, 15.597586592403289, 6.531537291591494, 14.244317677685281, 7.374656048736908, 18.771299786309392, 2.065891702652638, 18.122008624137997, 0.15236800058920252, 8.826527493215156, 4.8364267274957085, 11.59664470019873, 18.846605822622763, 11.116382597335065, 11.98604546103289, 18.69897750569545, 14.016829444930856, 10.884778110657784, 8.006870758358119, 18.509350612676826, 13.615959511033227, 11.324342001689402, 7.026619299403443, 10.003498553458712, 13.846950335501663, 15.724556598070302, 15.588216437003657, 18.634697273606424, 3.731076172727661, 16.922505795106954, 10.796045390541737, 0.16370810915179002, 18.211451537114833, 17.67857408126758, 17.046036615140313, 6.1353018132810995, 9.049655188753468, 10.280738473189793, 10.262309701260893, 10.385595597447338, 13.212966654476146, 1.6368338162281915, 16.20601543711834, 15.929283585064749, 18.486775967871164, 19.552188767101875, 18.776084676300016, 9.445738047180326, 17.36433712018251, 9.332128354056552, 5.278582395516849, 6.867277390022057, 2.1530576830569204, 6.9063245476617325, 13.749192521490208, 1.0735512905130373, 17.67465027060381, 10.7238352921412, 14.76730330886668, 11.185401840846803, 0.07536720837967747, 19.992361755205973, 16.962849731344033, 8.413542832291599, 12.489594599528324, 8.845282159873193, 11.459400979534152, 8.416436212296139, 12.524081729770993, 17.747587010204814, 7.948903204967339, 19.411987812100854, 11.07019856851723, 15.46210516835471, 0.6758439543085748, 13.085301720156302, 8.133576421850591, 3.9171230289935877, 0.16986384795573795, 19.823750534021542, 7.441549664750893, 12.567050178216558, 9.161015214477295, 18.67940890290405, 11.255827409082585, 9.251261637678352, 0.845971222972115, 14.652279077094219, 16.916310661008445, 11.595401483859149, 5.683453876120255, 8.380059815283891, 9.797936443832562, 3.8174668698434844, 12.511821122066904, 12.73369763031976, 12.887323535564333, 12.38893709550538, 9.69177998240043, 3.638198686056666, 8.555046531373385, 15.37422277150043, 15.672126021919821, 15.691496027695466, 12.902307153625273, 2.9737294986272134, 13.085347636252937, 16.42328236286531, 2.335443507727264, 6.174419688305209, 1.2300660020571397, 15.275345229929481, 19.868618156986887, 7.743932047796715, 16.428288202752185, 4.467420129085271, 2.3655686864397985, 12.900815458006162, 15.838421609812217, 5.426747270018812, 9.458938238362744, 9.385682650388652, 16.48401661701422, 1.193640532874165, 16.571958437913466, 4.299474061035305, 9.28582785284068, 2.4357306732695716, 11.260284099450452, 8.565363408483663, 11.772549600742586, 1.3899011396857408, 8.783219885868427, 10.065719806106422, 7.443051994098182], "expected": [38.26518327742153, 5409.992898544143, 3.4590640399400794, 50.792646064750365, 28.531661321733598, 2.0081856772089104, 7.168982657753014, 48.61746469845912, 47.122485722983185, 3.056084138315694, 12929.71831892677, 12752.704480795517, 6835.807409322012, 1078.294145693006, 1418.5698926779112, 32.91847258445009, 17112.984068337933, 246.4959717663865, 117.6454082284309, 47.34893513820767, 398.61182229906274, 13.197471312409963, 1032.993292795536, 383.0014175142674, 2.394974163802499, 2.554149322015484, 13694.653573284302, 263.3445829493143, 5.938510575683092, 33.203895183720206, 2.5322902354591417, 1469.263797446876, 180.5640270491206, 25.911636410217135, 19.899699708512856, 2.528839960006031, 817.6871480903159, 2.929957395080484, 2.0097670717427234, 2.0036505312375508, 1945.9415077594679, 1978.0678788314249, 168.8306779974841, 1007.9522379744974, 477.23501368077086, 2.2327966836104016, 231.55989426216638, 741.8570907776808, 5.898269793989427, 28.656606735115275, 31.890563066446948, 19.7860928178424, 2.6904450597281326, 50.100729067564664, 113.36068749850214, 11968.539893791905, 7077.762061080442, 17630.8656812333, 27.4315053260162, 4700.287717729412, 1339.2663214496847, 10118.963444796087, 2628.7887036189054, 319.2894678739998, 8064.237605621416, 493.21189409028386, 62.64422410904198, 1846.266276954798, 25.892929033585187, 1476.4897346114144, 7.776213253799123, 2.314422165894123, 6191.7494578199085, 5236.305861655587, 7453.772519220735, 160.5011114101349, 1023.3674743759982, 74.5649239130738, 3301.1976780129294, 5.305139431613434, 148.07619491510394, 15.281437312256784, 13.79726506210058, 3492.0957708995056, 4729.440798898031, 34.7780994551733, 2.4200274766742114, 4.977367976747104, 227.7337502512526, 3.7609816074345184, 460.9180829720447, 7128.753318425632, 4.527349731631359, 23.62729456750231, 394.13956341071537, 6935.235432352081, 908.9138241040629, 2.7529295142566426, 3.081189656275871, 307.62681918041636, 426.7809332088195, 71.81895829086858, 546.7310385410514, 2.7427584168207093, 60.195967796683355, 2.401038520117151, 296.730293446138, 72.69646020056798, 2.003879905974458, 146.88314686390137, 77.48646942011925, 4198.045717447078, 8531.844774676281, 2.2488436003381245, 67.99599821419932, 10.056292390265618, 10.197172064139686, 2.01504876740157, 16.57584215460997, 35.03903448594331, 5924.819407663215, 41.27847584332438, 3.158984218513243, 4850.419663151528, 6348.37598330879, 6.164816609525005, 2.002092529034681, 2557.4415952963163, 2.00858692100789, 51.04704585279927, 19316.906222638525, 1711.7657532266883, 5122.182565890237, 244.30515256828292, 16613.930949918966, 3722.335993167944, 14075.353388011465, 150.2516209205494, 144.27793551997226, 20312.313318686338, 2.0093978213272314, 5.8318392288643786, 1675.6129070009229, 97.2958111711759, 2.7160564617053415, 1733.910056607999, 538.0859816406462, 2777.524964810613, 8.253764795317027, 3.4782450504417453, 25.850533418177584, 447.33368655228645, 124.29499802194411, 11.183941539045671, 15983.854196185737, 1686.6317128744192, 870.1840930018172, 1046.7452390106305, 2.310184253963389, 5067.2262976589745, 54.62689607844013, 215.56868967999816, 14.74645330940621, 12719.817064959912, 5497.688258615379, 4850.782219627832, 995.6475261602174, 4.280593215416987, 824.7829923870137, 4846.873334042923, 58.681881312186675, 2182.5352730710024, 2.036542885819045, 15.111712659444251, 22.070907535394333, 125.31324134971952, 77.31670956158169, 2.04063466143117, 118.75106468466014, 111.59883634819954, 3.2979686604437797, 4326.1903352724785, 2.5095397833487603, 20124.305503457064, 591.6349614691168, 1678.3953464822923, 16814.583507279694, 988.9934299653804, 2.1615121934328054, 1313.0300386075528, 682.6094446350046, 2.5673456672612653, 10.678725913455793, 57.223308175594035, 2.157107195725554, 5921.943221185252, 14881.482702188787, 14.949531092154126, 27.881366394557958, 146.40368099612243, 2734.1989590755056, 20472.179709754793, 2117.4015659446977, 31.568034300026827, 3.1214544260615007, 7.179113487543196, 544.1601364579816, 4145.19449682385, 84.09119346455154, 98.85033528003495, 2.0860676384391796, 7719.750820278055, 80.83442283953875, 66.79792515752035, 7116.368408055003, 1070.2276311966925, 21519.111025045626, 15270.59177016338, 2.0188723030248172, 5.184655654952351, 9.041051547248122, 181.86027881638478, 108.16261687308182, 8.48425441238304, 4.617982187038398, 9721.663085579261, 4.877607209397181, 105.5033035486342, 145.8463792192589, 16.893024127487646, 548.5569211875071, 2.2033425210690503, 1027.6405492288434, 20.551016851712475, 383.7804359081632, 12.35107762359569, 16.290241904027926, 217.84938595853407, 575.070855641094, 2973.1620702248015, 30.84196624473645, 1192.2819777582092, 2.7553081690093917, 5365.192030814152, 30.30630302530446, 2.325770089153487, 2182.6306200936006, 5.613266812096918, 126.01845646115673, 826.2882265762346, 10.228877671288162, 303.7660551454669, 9.449903095594292, 1412.3730138893377, 30.441146816197456, 25.982975219949576, 1238.1107716105755, 1435.8850321764685, 258.3922695233337, 3366.1281476946538, 143.36509348127504, 18.48216382606144, 616.0936929927816, 8.85493290559544, 5238.718624326031, 3479.309484893835, 1115.169934707571, 12878.25751400358, 726.3053150306234, 2.3938829444561294, 1728.5064472465606, 61.66233573442887, 14895.875358342664, 16332.461125736147, 3.7228960178220354, 10.574327877172136, 27.225447565774857, 48.22992001745255, 9.415759729991, 4675.837263996017, 5417.122152228436, 180.51714677396873, 610.3815473093626, 2.1259728189409706, 2.083978707917838, 2.0095204540196128, 70.62759426243377, 207.03551472847985, 3.3467054720245333, 21064.71606985134, 716.050084024545, 33.90125888325523, 2.933696678394596, 2.06362809572174, 6.597605803552982, 20.21923609373454, 809.0257694565071, 17.080062538965112, 18.16106573738973, 2397.3434580799267, 16.523727680929472, 21.535605717872993, 5.506694083584126, 373.06273181023613, 5472.554129230318, 408.39411859634936, 105.34487764382516, 11.32794180616995, 13925.971802203037, 6192.95036842393, 223.22331266823548, 24.97957770301118, 4602.076844094875, 2.0005190221307165, 174.43311687052716, 370.5069384616507, 7738.378214106568, 385.7369540022192, 57.97243650615465, 5148.078667367557, 11.8109417068692, 157.21678266898107, 14.22627230153286, 2.005181705242858, 2.3493046456045383, 3152.585735070207, 2.0169697446582178, 4.277673657807982, 8524.813643775644, 2.101611786918356, 2.85343988344324, 5891.669748978658, 12.233455027063473, 17818.667022057238, 141.18830830940922, 2.0468941459965317, 2.1764777272115925, 53.276619598677925, 82.11438203057749, 2.6295051491067842, 7136.399256529284, 1539.3756879178197, 8.572952491740011, 3.692818721396731, 1099.1308802884612, 3511.293414023577, 2.102865556835041, 1212.9277274462556, 2.3010530035380126, 7302.296447313247, 729.6964243194251, 38.21240338328006, 187.12298350555295, 574.2179366342278, 380.39721040155825, 413.0004594065046, 7.785763567191005, 31.747283041009826, 14892.346473329442, 15.925140449436872, 2.092242952985025, 302.4189089815171, 2.000477788283755, 569.3283701677212, 1281.5845703072855, 10881.330487867923, 642.5437711851256, 662.2491818498479, 419.3457549325158, 3096.56461903398, 8690.383852600891, 4535.071241512662, 3086.610557505102, 286.4689101898179, 2465.8331331760924, 9640.28087502554, 377.296579641989, 616.7436328830444, 19681.231925541713, 2.3433181945223973, 29.637405712927972, 5043.442443103642, 227.85556511174758, 20.079032210333466, 13.929490783903558, 3.7363059114228636, 2.033490102679766, 172.92080639322197, 2104.7262212518785, 403.4797523941636, 27.29392230470632, 88.92474397728334, 12.300272464516112, 6.671505624140468, 102.63012465766424, 694.6311451873543, 2.077449662803232, 6953.258028335759, 2.010951903341367, 2.9249517581052586, 2.867984863360083, 19.279826348046484, 2.5503326884285458, 12538.683064603938, 182.453344850559, 14.31964822392704, 910.6973219986734, 164.92946534502772, 2097.7611010885075, 2.3587205768031483, 2.0136920459151293, 32.12348417391477, 4.192518880425905, 320.40421402665004, 3.4092579388056397, 2.0540197001531437, 546.5724759891912, 3.482428995508103, 394.75744424544604, 98.61596907149908, 3921.7856795203284, 16.504591004356453, 30.735017698796135, 63.927409907984526, 32.986383836526166, 2.645848225357017, 2.0007677877861654, 95.037106867904, 18379.75960917715, 19.86952916521937, 28.20337637589583, 9365.408790222178, 2.377942257434799, 201.12586376797546, 1194.9409775369036, 12.521589848955353, 4.527251746284411, 68.71346462502427, 8576.522142654538, 1321.4239194688632, 207.29777728941576, 2.013733706495826, 7308.41560066458, 4.322283233011827, 32.02801680543167, 52.507561287682975, 2.002541442879904, 10830.486718440976, 5.332080272117147, 16038.952211472299, 748.9046540459541, 174.3088241766314, 1444.0656036496364, 3.8750077495136255, 2.4359813743020666, 13952.413888598681, 2.0019615342592636, 2.157225512075403, 1709.9051301421393, 490.41894242621106, 1695.0774224364172, 2120.1023555848146, 2.2905989396956974, 2.5613716665593147, 1385.2537342473938, 5.802619020722547, 572.6790250286908, 247.1289120192471, 36.79273012570678, 144.9676605951332, 6.568920970979678, 1057.2557213356533, 114.51103981524084, 11471.78366011466, 181.36455523636397, 5636.65023234751, 3318.630986795539, 259.53478291824047, 169.37581175553197, 898.3503866042777, 10469.595141954804, 9.667867067795585, 2402.763510466125, 2.162787625844029, 6.370733345998428, 2799.2092866444987, 7294.194311781055, 1279.9161216977768, 51.44376441646515, 1424.9656049594219, 169.72460369840763, 30.725734929874616, 518.5675270438886, 192.6150714145057, 17474.0884762498, 5.50652308040367, 2.0462408168689588, 54.36458904173545, 35.51225436153329, 4849.7071772308545, 8.282570898687514, 2.1265387444354573, 7.689838695982002, 7894.975622278514, 157.0367158381017, 8925.973027071916, 3.788967567025651, 36.39462064261872, 15312.152834464423, 9.148126321535871, 4.041777071842384, 2.354900018944526, 2409.3994219584883, 5.656394654857639, 407.3294610625166, 18169.12389015692, 23.761569106627462, 19.6543132517677, 19.571208841547588, 5.496399563192958, 3467.768583402786, 1091.868131193847, 3.1136277187918915, 20467.804169915416, 3253.404834008896, 155.26971597958328, 1406.5206174438003, 4.361002894442624, 565.8219750017827, 13.79901013618251, 2.0490705851866444, 12.515633084277416, 13044.848543871258, 6997.071987356031, 3.4602947028032625, 61.75780634331331, 5409.04254843392, 603.4034687710284, 2.222767378441688, 8.493020932597348, 4306.486795113182, 412.86963478067935, 984.9821156098226, 2.8567742985524616, 8.308631479709355, 5028.761363192707, 1126.2145304326946, 448.4038970120492, 18444.600845774123, 14.222993650150688, 3.1705464357519992, 483.687079945531, 11082.598943650872, 19629.805187371974, 37.59449514070988, 3461.8295804546306, 13.079784543903214, 4.621113483496529, 3605.9728914006137, 21236.667961599844, 271.5130131654028, 16513.70820639252, 38.38565355853667, 1686.1190152449333, 7.862665808346885, 123.32858103684643, 3.5817142398998243, 82.85630706991567, 3.117005785283876, 17852.613551792652, 2.1604012058242787, 54.129274763401845, 11.33372438023619, 2707.421151164134, 2551.7924070138088, 987.9453169708452, 20684.058403045085, 62.63216491925991, 4.336413167410729, 12.976840403623651, 12781.124235200537, 8.934863955410323, 1448.4183318157973, 179.08074825886652, 7768.749392539904, 134.08016351654842, 445.8811290486095, 2157.93719440124, 3653.059504169848, 107.57632921651394, 227.38038553342562, 331.28699795746735, 3.5155198163739754, 669.2519644688879, 19676.813867995388, 2.3108957180750527, 1850.1192710785544, 4.328927923030449, 2.0020909001272904, 19491.43022461921, 430.93259395256257, 28.274521498401025, 125.97819479472368, 4.411204372920784, 3.551684176828637, 333.8605294590984, 746.7029413053803, 2.1659340907979, 2.881054103745355, 4959.40428658811, 10.713360685368228, 67.11444496064685, 62.476197767953, 1167.7959083475675, 3668.0813968447983, 15.834368374400837, 6.338475619444355, 13235.408191987215, 944.3540576753925, 1420.8554164392983, 3.231419309277659, 2.1277139143702652, 4858.266259359815, 3.3645491806181895, 58.8007972156755, 141.95537364560656, 2.021437688541128, 922.6768310581535, 2261.594486403255, 33.98627775216209, 294.3684204684367, 1363.4783211368483, 1262.2874112749412, 5268.578880390597, 10.46259416709135, 9.487665322887135, 40.92154372818384, 34.94232077345454, 21947.196677094948, 79.29528905306196, 11.87496119301806, 34.740202631006554, 184.5186225420276, 540.3867683933216, 88.30387158950377, 2971.381000501791, 15.573514533629853, 359.0240498529677, 2.696228831865737, 909.4312058925856, 110.30218352351173, 311.62706514829296, 6634.136391333998, 2429.853132730227, 536.9829201419025, 2.4061602666482984, 10020.696160496893, 2.764451056061597, 65.94895288952593, 3376.7649365451753, 803.0659702223417, 1654.674025242612, 4.659858559706649, 4.748466561071139, 2.074411210280035, 33.0267765064599, 141.96708262196728, 158.60257105345002, 6680.441713406545, 9.548539992166189, 681.1683007219194, 65.40441031570505, 3.8953670801705615, 1746.6131780940889, 1018.342874314043, 2.108382980029533, 239.50704408921675, 2641.629062996708, 1645.011459371192, 235.274200147646, 4.053695500948589, 10.786989742527382, 11201.7568515663, 2909.759296131679, 123.91349000229157, 3.341244757147419, 4.921867080886197, 1632.2244596312692, 251.71698965428607, 7245.989807227515, 2213.6470887880537, 19.165034787156955, 3.931262437773287, 95.32893770847758, 50.456133597871585, 12.96530099550776, 2407.709278393479, 2.622186968109666, 13260.196220406246, 12.039868291214718, 59.51792668963561, 4420.438664605662, 2.0067763943538726, 45.63387611773903, 480.0515785267149, 11616.513775999894, 12161.772000979443, 186.95301090123093, 18.791108014218477, 12.176869328056679, 9.140230856229316, 26.183189188099142, 6545.348490155308, 3.736813042604641, 84.56566665515516, 124.45057940317308, 30.628169655309538, 298.3758356750099, 42.01298421326227, 174.92721933687963, 53.29155713525449, 6086.339757324704, 136.67496462348157, 35.01536443796175, 69.71802175139909, 34.23514953041343, 7.9629217914313415, 98.17115834342174, 2483.6715404626975, 14.472062031682594, 10.657041345434068, 6331.329517178849, 1492.927450286501, 82.22485155939093, 142.71527558971357, 2.6695289302951433, 968.4532782402533, 445.73932190383545, 54.38172859313243, 16409.69229304873, 59.96714090596663, 309.4163115632597, 11.907014843211856, 916.4444511023312, 435.5653456934577, 10316.813093019737, 23.487285680986055, 3146.9794847077997, 14.00238746751978, 1357.5031505031488, 847.9055157296837, 21.51212030429867, 7519.018173510979, 10.772563572021353, 4891.6107216321525, 8.031944151530581, 2.0427941956541567, 392.9963619947581, 265.03910594027997, 14908.157970400542, 148.11485134347484, 7.945439618232594, 3325.483092216036, 2.615405242533715, 13.502302252914891, 4.192715491841906, 5.681815330387705, 4.378525914644072, 34.41291211652198, 15.625255070838792, 431.50039441611307, 21284.45140569013, 41.5418924986568, 2.0105300602924516, 4.531355581739027, 4.207571359039412, 9.73553422999397, 406.65207106114303, 15.603427897262053, 5444.832315797682, 4.683427892128423, 5826.848494431793, 5.807457381467422, 995.67988860784, 4816.952019395016, 13666.540567938298, 558.9815066358127, 50.53450126183816, 131.54411659088288, 170.01258903479587, 1258.4860650705707, 2944.3741685043647, 11.096400992166359, 2.6803202102642327, 482.1743633906592, 437.0932138531305, 168.74207162781252, 1307.5922377770767, 7.85814553953646, 22.271232955834485, 1127.6466465397723, 1251.4242999098533, 793.7852915868351, 676.8708191335206, 16548.91760657923, 16784.085491659724, 2.0908079605113308, 615.9632240341153, 11.851776893330918, 204.2119259806215, 2364.3571362104894, 9.08666530687298, 13344.380598770778, 2.654602008013745, 3.1094900987387417, 1912.6451622341356, 673.0209712402179, 2663.336998556956, 9929.765400454837, 728.34894366737, 64.96648586894356, 6.364596817234627, 236.50292969744493, 3063.902468471734, 187.50190615702687, 2737.7498687877373, 5016.531576660556, 24.758474641323357, 7411.622682703374, 153.73363736272103, 11195.239862477414, 1385.5678028201037, 8442.918815028519, 1243.2604515772339, 4006.8679301214697, 6794.779206833411, 209.17095332329723, 11.151999709695874, 1600.125096614711, 3.1977835232994822, 2.0005619102268937, 3723.2861244510696, 14.34071392867824, 18.613334548844726, 1510.086928367681, 769.4611202523074, 6.472790618986424, 49.935471080817834, 4587.347820389862, 2035.3900782114067, 2086.774151934695, 2.440121124441877, 3.7256970320566833, 366.6904656083727, 20608.29717332783, 11.025602650346693, 13815.73506982644, 11930.260550054007, 7449.429580283021, 3.1422280118936827, 80.16555399145344, 4.266005629354374, 1108.7209712111912, 12017.104028236376, 107.53536355317944, 267.0016359284868, 2437.659080384837, 26.238409545319996, 1239.123421076834, 39.963029739826744, 11916.149980057786, 3.165286342708584, 8612.796363185518, 2.0058068096472166, 82.5505244041639, 11.314865623090073, 329.7489300797214, 12373.383069420155, 259.3571748928393, 400.6262553103766, 11492.946293907538, 1105.9008604297178, 230.99770987365744, 54.80429075496102, 10453.324235734966, 905.0416605256412, 287.77619465702656, 33.588951357894636, 148.67972816119234, 1015.8450806120609, 2597.4317497229913, 2426.265173551227, 11129.43461711627, 6.614223556607466, 4727.9781718328195, 220.9735863057654, 2.0067038280157456, 9006.715825535248, 6900.071560629846, 5029.210774508388, 21.537888455321433, 92.29085144621293, 170.7846699963083, 169.21833005266402, 179.9769293259341, 739.8778862472844, 2.708037721778811, 3304.392127125198, 2877.3986352806614, 10335.997594540377, 17607.74932672675, 11944.69284304029, 112.4994177550001, 5896.820514852757, 106.28803356491537, 14.074686405408746, 31.02146739741237, 3.2752521851058627, 31.6318082492839, 967.385749260259, 2.295113029925404, 6886.547544771195, 213.1379608912251, 1609.4568494693435, 268.46345471207445, 2.0014202220788104, 21942.504502901447, 4824.31921575694, 67.1543186282478, 515.3266984133878, 83.3280418474593, 307.88029029204296, 67.25149732244334, 524.2897569984356, 7142.324229526201, 53.23971228247373, 16415.707170570284, 253.43689410727856, 2277.999163689945, 2.115282044275916, 694.1256080733643, 58.38632400653941, 7.23018331720033, 2.007217768886417, 20168.459847771956, 41.32059468502806, 535.6755036358221, 97.57415547673806, 11381.044179881123, 278.08494822732126, 102.07693612563692, 2.1816003903521364, 1519.5051044619033, 4713.355602636628, 329.54402291478345, 17.20367379661104, 66.03991140782027, 134.1587481592365, 6.89280904527793, 521.0855563351637, 582.2219690717898, 628.706351353299, 490.03298842223546, 127.2243137678857, 6.328473971336484, 72.07561800623404, 2180.0685410926053, 2530.2241310872287, 2554.848402074959, 633.434163349389, 4.649286261487387, 694.1415439593916, 3683.5832075520807, 3.5257353412534913, 21.961473058306265, 2.390340695033904, 2074.909562213169, 20626.02858699527, 48.0575520746593, 3692.814467801816, 9.44156349832076, 3.5698724833535116, 632.9618963635173, 2749.600581926328, 15.146377142406415, 113.24426302833227, 109.17206751984844, 3797.1587848651398, 2.366893638035487, 3967.848481118579, 8.699115931797412, 103.85613781327305, 3.6758259969896887, 278.7052923874606, 72.44823308389341, 360.0642593645328, 2.502709150657873, 80.78273079675492, 153.37753244215662, 41.351608537302134]}
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/test/fixtures/python/runner.py b/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/test/fixtures/python/runner.py
new file mode 100644
index 000000000000..1403beb69158
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/test/fixtures/python/runner.py
@@ -0,0 +1,77 @@
+#!/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(lam, name):
+ """
+ Generate fixture data and write to file.
+
+ # Arguments
+
+ * `lam`: shape parameter.
+ * `name::str`: output filename.
+
+ # Examples
+
+ ```python
+ python> lam = np.random.rand(1000) * 20.0
+ python> gen(lam, "data.json")
+ ```
+ """
+ # Compute skewness values:
+ z = np.array(planck.stats(lam, moments='s'))
+
+ # Store data to be written to file as a dictionary:
+ data = {
+ "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."""
+ lam = np.random.rand(1000) * 20.0
+ gen(lam, "data.json")
+
+
+if __name__ == "__main__":
+ main()
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/test/test.js b/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/test/test.js
new file mode 100644
index 000000000000..9d861efdcb00
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/skewness/test/test.js
@@ -0,0 +1,82 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2025 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var tape = require( 'tape' );
+var isnan = require( '@stdlib/math/base/assert/is-nan' );
+var abs = require( '@stdlib/math/base/special/abs' );
+var EPS = require( '@stdlib/constants/float64/eps' );
+var skewness = require( './../lib' );
+
+
+// FIXTURES //
+
+var data = require( './fixtures/python/data.json' );
+
+
+// TESTS //
+
+tape( 'main export is a function', function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof skewness, 'function', 'main export is a function' );
+ t.end();
+});
+
+tape( 'if provided `NaN` for `lambda`, the function returns `NaN`', function test( t ) {
+ var v = skewness( NaN );
+ t.equal( isnan( v ), true, 'returns expected value' );
+ t.end();
+});
+
+tape( 'if provided a shape parameter `lambda` which is nonpositive, the function returns `NaN`', function test( t ) {
+ var v;
+
+ v = skewness( 0.0 );
+ t.equal( isnan( v ), true, 'returns expected value' );
+
+ v = skewness( -1.5 );
+ t.equal( isnan( v ), true, 'returns expected value' );
+
+ t.end();
+});
+
+tape( 'the function returns the skewness of a Planck distribution', function test( t ) {
+ var expected;
+ var lambda;
+ var delta;
+ var tol;
+ var i;
+ var y;
+
+ expected = data.expected;
+ lambda = data.lambda;
+ for ( i = 0; i < expected.length; i++ ) {
+ y = skewness( lambda[ i ] );
+ if ( y === expected[ i ] ) {
+ t.equal( y, expected[ i ], 'lambda: '+lambda[ i ]+', y: '+y+', expected: '+expected[ i ] );
+ } else {
+ delta = abs( y - expected[ i ] );
+ tol = 1.0 * EPS * abs( expected[ i ] );
+ t.ok( delta <= tol, 'within tolerance. lambda: '+lambda[ i ]+'. y: '+y+'. E: '+expected[ i ]+'. Δ: '+delta+'. tol: '+tol+'.' );
+ }
+ }
+ t.end();
+});