diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/README.md b/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/README.md
new file mode 100644
index 000000000000..a4f1d5a8ba0e
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/README.md
@@ -0,0 +1,139 @@
+
+
+# Kurtosis
+
+> Planck (discrete exponential) distribution [excess kurtosis][kurtosis].
+
+
+
+
+
+The [excess kurtosis][kurtosis] for a Planck random variable is
+
+
+
+```math
+\mathop{\mathrm{Kurt}}\left( X \right) = 4 + 2 \cosh(\lambda)
+```
+
+
+
+where `λ` is the shape parameter.
+
+
+
+
+
+
+
+
+
+## Usage
+
+```javascript
+var kurtosis = require( '@stdlib/stats/base/dists/planck/kurtosis' );
+```
+
+#### kurtosis( lambda )
+
+Returns the [excess kurtosis][kurtosis] of a Planck distribution with shape parameter `lambda`.
+
+```javascript
+var v = kurtosis( 0.1 );
+// returns ~6.0100
+
+v = kurtosis( 1.5 );
+// returns ~8.7048
+```
+
+If provided a shape parameter `lambda` which is nonpositive or `NaN`, the function returns `NaN`.
+
+```javascript
+var v = kurtosis( NaN );
+// returns NaN
+
+v = kurtosis( -1.5 );
+// returns NaN
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+## Examples
+
+
+
+```javascript
+var uniform = require( '@stdlib/random/array/uniform' );
+var kurtosis = require( '@stdlib/stats/base/dists/planck/kurtosis' );
+
+var lambda = uniform( 10, 0.1, 10.0 );
+
+var v;
+var i;
+for ( i = 0; i < lambda.length; i++ ) {
+ v = kurtosis( lambda[ i ] );
+ console.log( 'λ: %d, Kurt(X;λ): %d', lambda[ i ].toFixed( 4 ), v.toFixed( 4 ) );
+}
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+[kurtosis]: https://en.wikipedia.org/wiki/Kurtosis
+
+
+
+
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/benchmark/benchmark.js b/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/benchmark/benchmark.js
new file mode 100644
index 000000000000..2ed19485a1b2
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/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 kurtosis = 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 = kurtosis( 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/kurtosis/docs/repl.txt b/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/docs/repl.txt
new file mode 100644
index 000000000000..7f8d80a1e293
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/docs/repl.txt
@@ -0,0 +1,27 @@
+
+{{alias}}( λ )
+ Returns the excess kurtosis of a Planck distribution with shape parameter
+ `λ`.
+
+ If `λ <= 0`, the function returns `NaN`.
+
+ Parameters
+ ----------
+ λ: number
+ Shape parameter.
+
+ Returns
+ -------
+ out: number
+ Excess kurtosis.
+
+ Examples
+ --------
+ > var v = {{alias}}( 0.1 )
+ ~6.0100
+ > v = {{alias}}( 1.5 )
+ ~8.7048
+
+ See Also
+ --------
+
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/docs/types/index.d.ts b/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/docs/types/index.d.ts
new file mode 100644
index 000000000000..1de97e2f3119
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/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 excess kurtosis of a Planck distribution.
+*
+* ## Notes
+*
+* - If `lambda <= 0`, the function returns `NaN`.
+*
+* @param lambda - shape parameter
+* @returns kurtosis
+*
+* @example
+* var v = kurtosis( 0.1 );
+* // returns ~6.0100
+*
+* @example
+* var v = kurtosis( 1.5 );
+* // returns ~8.7048
+*
+* @example
+* var v = kurtosis( -1.1 );
+* // returns NaN
+*
+* @example
+* var v = kurtosis( NaN );
+* // returns NaN
+*/
+declare function kurtosis( lambda: number ): number;
+
+
+// EXPORTS //
+
+export = kurtosis;
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/docs/types/test.ts b/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/docs/types/test.ts
new file mode 100644
index 000000000000..32f723300471
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/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 kurtosis = require( './index' );
+
+
+// TESTS //
+
+// The function returns a number...
+{
+ kurtosis( 0.3 ); // $ExpectType number
+}
+
+// The compiler throws an error if the function is provided a value other than a number...
+{
+ kurtosis( true ); // $ExpectError
+ kurtosis( false ); // $ExpectError
+ kurtosis( null ); // $ExpectError
+ kurtosis( undefined ); // $ExpectError
+ kurtosis( '5' ); // $ExpectError
+ kurtosis( [] ); // $ExpectError
+ kurtosis( {} ); // $ExpectError
+ kurtosis( ( x: number ): number => x ); // $ExpectError
+}
+
+// The compiler throws an error if the function is provided insufficient arguments...
+{
+ kurtosis(); // $ExpectError
+}
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/examples/index.js b/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/examples/index.js
new file mode 100644
index 000000000000..13f77f695509
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/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 kurtosis = require( './../lib' );
+
+var lambda = uniform( 10, 0.1, 10.0 );
+
+var v;
+var i;
+for ( i = 0; i < lambda.length; i++ ) {
+ v = kurtosis( lambda[ i ] );
+ console.log( 'λ: %d, Kurt(X;λ): %d', lambda[ i ].toFixed( 4 ), v.toFixed( 4 ) );
+}
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/lib/index.js b/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/lib/index.js
new file mode 100644
index 000000000000..082da5dc4278
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/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 excess kurtosis.
+*
+* @module @stdlib/stats/base/dists/planck/kurtosis
+*
+* @example
+* var kurtosis = require( '@stdlib/stats/base/dists/planck/kurtosis' );
+*
+* var v = kurtosis( 0.1 );
+* // returns ~6.0100
+*
+* v = kurtosis( 1.5 );
+* // returns ~8.7048
+*/
+
+// MODULES //
+
+var main = require( './main.js' );
+
+
+// EXPORTS //
+
+module.exports = main;
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/lib/main.js b/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/lib/main.js
new file mode 100644
index 000000000000..29fadca2ac42
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/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 excess kurtosis of a Planck distribution.
+*
+* @param {PositiveNumber} lambda - shape parameter
+* @returns {PositiveNumber} kurtosis
+*
+* @example
+* var v = kurtosis( 0.1 );
+* // returns ~6.0100
+*
+* @example
+* var v = kurtosis( 1.5 );
+* // returns ~8.7048
+*
+* @example
+* var v = kurtosis( -1.1 );
+* // returns NaN
+*
+* @example
+* var v = kurtosis( NaN );
+* // returns NaN
+*/
+function kurtosis( lambda ) {
+ if ( isnan( lambda ) || lambda <= 0.0 ) {
+ return NaN;
+ }
+ return 4.0 + ( 2.0 * cosh( lambda ) );
+}
+
+
+// EXPORTS //
+
+module.exports = kurtosis;
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/package.json b/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/package.json
new file mode 100644
index 000000000000..89011730cb52
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/package.json
@@ -0,0 +1,68 @@
+{
+ "name": "@stdlib/stats/base/dists/planck/kurtosis",
+ "version": "0.0.0",
+ "description": "Planck (discrete exponential) distribution excess kurtosis.",
+ "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",
+ "parameter",
+ "memoryless",
+ "life-time",
+ "discrete",
+ "kurtosis",
+ "excess",
+ "tails",
+ "planck",
+ "univariate"
+ ]
+}
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/test/fixtures/python/data.json b/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/test/fixtures/python/data.json
new file mode 100644
index 000000000000..e36ad295a2d2
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/test/fixtures/python/data.json
@@ -0,0 +1 @@
+{"lambda": [4.975162669672901, 9.489932723747437, 9.147662763199428, 7.485806747136657, 11.453311635593124, 2.7572468600606115, 4.772164918540753, 18.427039841658434, 11.513514163377618, 3.4056518060090846, 10.496093119695294, 16.643555884495335, 10.387625296849157, 19.90659095126921, 14.436653079797866, 16.38618293037597, 0.6486005946342499, 15.17021139359711, 13.510306621439266, 17.931878813902628, 6.958456296603708, 5.636833791613681, 5.129235681164392, 18.851644559724484, 1.5145862189290438, 8.510293534534025, 11.941231890434496, 17.39976633926515, 6.065343452976366, 16.4488911177914, 19.921514031349187, 3.2945985164072744, 15.092177459239144, 9.65680851192754, 5.835184505225451, 17.396776375159604, 18.279650119912418, 4.329048528572876, 2.762393713394231, 9.300356783902963, 9.904484720762117, 14.992197917585523, 16.031817737877766, 6.060163356431412, 15.626650266055167, 5.634029769825268, 5.618954278174009, 18.894933965194802, 0.6020118406805031, 2.7728058536526, 8.331589605719966, 10.862847733308472, 19.044722260966502, 2.7455432285336, 17.383039594483773, 18.36457359974617, 4.184194039144344, 17.233923933528008, 8.465806330208213, 7.395912988676628, 5.502013698156012, 0.8802358681799927, 7.603308456395599, 13.725608877670165, 18.340525705484986, 19.075797819322176, 14.91494667658939, 6.014439371481806, 6.351938675781986, 14.36666394390489, 10.209886969176372, 6.168398978250922, 19.98145508825592, 0.6413525420338151, 15.300640799767905, 2.622452248869207, 10.876109495207567, 5.3525021741557, 8.618862257010623, 0.06794330789442249, 3.8677149321781457, 0.9626738191453788, 8.020371003303971, 19.947275927553896, 15.936332405801197, 9.665131267598081, 7.677901529633832, 2.973298059984051, 11.692564260946778, 4.844939082261897, 14.517595311603749, 18.204967229646616, 17.42752875476364, 3.7558236169129766, 7.64132274137012, 15.987381828135433, 13.988090301497389, 6.598347531408352, 0.11244510698919186, 17.376293360778693, 12.04512424092708, 18.522819759118047, 0.8284962039320343, 11.520653990273367, 12.245682185874022, 16.688266739128107, 18.2232721121115, 1.5445461088088197, 10.854821944424412, 9.272661376968568, 9.511937947457342, 4.102794240157026, 4.602902835351921, 6.603962386007696, 19.068230481947968, 17.337130836290793, 15.23289476291637, 1.7018206468456842, 5.390776529930239, 1.4855145105265555, 11.541098279355593, 4.8895774115525175, 5.304342106301916, 11.424968579238119, 14.750067765055439, 8.945084998016164, 10.428167503298344, 16.68913587954283, 1.2357172526897409, 3.037023893509674, 11.238742963886166, 12.79634691500829, 11.617790575032384, 4.280770380811467, 10.169677536694795, 16.039844190703867, 17.776281595052204, 3.708809406643774, 9.033978431437983, 6.645616378082608, 15.48364077310464, 10.867571176335591, 0.4540022421537526, 0.5545324279131592, 18.0724807362095, 0.9493012357412223, 8.619546674903038, 2.9876548710119444, 15.117265985402177, 11.154692399305858, 3.604718632684172, 2.144184657007593, 15.83859545387899, 6.852977762509937, 9.316274297215816, 18.059939079199662, 14.11800713069628, 9.247192548005618, 10.635663236926922, 7.158893490207941, 3.122250130738524, 8.300973378685795, 19.307458051434097, 19.80935700214013, 17.655041625994844, 2.1178081503193114, 8.20130637361147, 12.008716651893256, 1.085302052914059, 12.444405632863589, 12.277942145184289, 13.324954861043285, 19.115124715489017, 2.8921556740456755, 14.635031940729625, 14.801690525704302, 11.082944586047333, 1.6598016546933536, 1.6232127133874386, 18.579036702559545, 18.64603720814751, 3.291244949326453, 0.13211373380646263, 14.215933152926345, 4.3947784576066296, 16.453111806006056, 9.861580482858521, 0.0872168813704488, 15.280068103533829, 8.407071863245578, 12.652465403571433, 9.608468961535593, 3.302475428333056, 12.380121426877462, 1.939748637055807, 12.638830794760107, 12.629204198054719, 19.243921228165846, 2.4460004035508365, 16.120558388041072, 4.6258577928057125, 5.504494088769151, 7.493172490407969, 16.342121455226952, 17.109429414921195, 13.241210633973854, 16.90559097495426, 3.9711948822412535, 16.813036309207366, 0.4377942833316051, 10.949602294263292, 4.346416198797196, 10.707069202810413, 1.419160070764942, 18.641366251630767, 5.372438544637532, 19.809354761493864, 3.5400914865625643, 3.6826169493244643, 7.685049687896262, 5.6758762050634655, 15.995595420660129, 10.044741622390072, 1.644127353000322, 5.922077187374379, 5.605701275368451, 3.7144411473029693, 17.950026255690616, 2.6018602939241298, 10.576239374460467, 3.6146104951463665, 4.429887809244953, 12.141216305979832, 15.346950103544026, 12.06255662107175, 1.2221985833287508, 0.03885581954270467, 1.8411231056410737, 18.317149618666736, 16.795044850047557, 19.39214918166966, 16.254869591540004, 17.053645055901637, 5.127987338535647, 17.14785196271386, 16.43628246665392, 11.814585381690035, 1.5476053573339965, 2.4182307646439494, 18.202283655058537, 17.145659948347266, 0.7927456411666545, 4.96112976446307, 4.858209785500074, 2.851953323180878, 9.672808350563525, 3.140684347181737, 17.342498501379517, 8.575219253007308, 2.8987537936865615, 11.118402259000831, 1.8970134957960094, 13.630199877697311, 8.701965602665958, 13.905058045988408, 11.450145358453003, 4.151888077075396, 9.073926713133584, 1.7568725509069338, 6.353207924003053, 0.3418265134799481, 13.285388781229413, 0.4473025924600593, 3.8395540102487313, 6.167827880580623, 4.764154996555874, 6.610020700084784, 9.87943254069355, 5.990446974718477, 10.691557526088163, 16.642638753188894, 18.070956207664437, 19.931909092010688, 10.103318889207317, 8.390450495604558, 13.086288013137423, 13.3545683231876, 16.470783938071417, 5.6457650011754135, 10.598205655922863, 7.466737888509383, 5.403755391822786, 3.6137757517423497, 13.990722642264387, 8.001629669636882, 11.446139880368875, 4.217881219700617, 1.5396007025314407, 10.377801191191962, 14.473044374099475, 13.525849128929512, 1.1909716107716384, 10.760487677156355, 13.349380336006684, 11.93321657056286, 5.146604460266431, 15.829846684031113, 6.150769642609801, 0.5011590720092829, 5.603918311501475, 3.306141470480699, 11.241048371587528, 12.952108529861167, 4.699530434371204, 14.86260144302763, 14.529924574604289, 10.7017472904852, 1.877644949051418, 3.4553265950049483, 2.5794305657431327, 15.515669778063563, 2.0129515762483985, 14.895075092363195, 5.697657310632341, 18.448862859611484, 13.72104615024855, 7.863594126127467, 1.8013703666593561, 9.81345925589443, 18.269543606260747, 15.764958010179523, 2.0737388616077723, 10.788776828746736, 15.898425159871717, 19.87619655772585, 14.328349682760706, 3.894118987787427, 18.742265432941853, 1.2429663405873792, 12.900907599304283, 14.960796963421043, 18.341369518833915, 6.973981670791258, 7.094925595917301, 3.13933961489814, 15.801182438159113, 19.202014313382286, 5.05880867249653, 2.8303753999178483, 6.266654423213622, 7.448690814216706, 12.00493327595481, 14.83782636650825, 5.9218889228703535, 9.452463002931335, 17.65939971564155, 2.756970866690538, 13.233684573609485, 18.789954864858963, 14.152283236312513, 3.1347959601790887, 10.994807280983034, 7.753906805460593, 1.0956130237534234, 6.993652371811123, 2.461090617280961, 14.689934368897848, 10.448724208644604, 14.225493870085046, 16.669763311885603, 16.948721936156044, 4.998353681878466, 7.439232705225742, 0.714788578809884, 5.144303981453082, 11.241393184249493, 15.803613722690919, 16.25837816748379, 15.0534763454716, 9.78148792479709, 11.681809224262913, 0.5847582774678739, 7.557299126005718, 5.007577018539946, 6.563998140259395, 1.6813705582203697, 7.311004691670815, 9.170924955458998, 9.737425751491289, 6.501418262175196, 16.874380779078223, 0.42664536815569365, 17.084970259559658, 5.651728960368237, 14.47033788178642, 10.23533367019109, 8.412170128693921, 15.142681662387826, 7.779580875795309, 18.660324745168854, 6.659202508355193, 17.617372295417177, 17.124446906906243, 8.103147917538365, 1.1019354284278648, 7.4172940501949665, 5.56463463228371, 16.488768041992262, 9.388823440674134, 1.2891287048941868, 13.08801688767597, 12.594992273278374, 6.544628514644664, 7.520284012336962, 6.0908845087543595, 19.68798145383959, 19.635328277469057, 5.687114978907697, 1.6855631151233963, 2.0531653746538714, 7.529893601122211, 10.366582784351483, 15.523777553585758, 13.056255059232315, 14.022703996016887, 1.8332197125004113, 19.516281688132246, 9.039135998894858, 4.9260632106133535, 19.98412154773753, 4.438499431985332, 13.46206732444082, 0.49820093061316406, 11.658227976690267, 16.22395070802979, 18.648881255299457, 11.642385232638006, 9.637064448266146, 3.1004174063544165, 16.463008537017515, 16.180316940263204, 6.294174229398131, 7.798245435973781, 6.181471682534663, 13.11094480049145, 14.038852894232548, 14.516699595771811, 3.7089034591450942, 4.400544043233401, 9.948063700582217, 6.670911780471325, 8.720283048866184, 4.296505109324089, 11.320640502858144, 14.253768712229732, 11.751238531781958, 16.602611173507015, 6.794071499249819, 10.493188370287426, 3.2970161012774213, 14.203783850382035, 10.098551024512702, 17.821168023626008, 3.843186811679813, 8.546483578060517, 2.9364374028964924, 14.47381027140606, 17.70593158386587, 19.13958913169386, 10.917061094691455, 13.370898229058083, 5.3755528550807, 7.889262424444468, 7.051488551115648, 11.317023837724898, 4.027031502423353, 6.863555821183176, 4.5819660946423335, 5.493747357336211, 11.606262104739965, 0.5815364776180121, 14.043575077118103, 1.2827190980169756, 16.917269406992563, 3.6564201081107006, 9.651697342265122, 6.740583283053181, 12.876011165010938, 10.275777924203366, 19.27491637321016, 16.5501122127028, 12.127240088873991, 7.243145648334095, 0.4974862761193566, 1.5829400865011345, 10.428802231735519, 13.16834578430212, 14.68527649829232, 3.843513364127793, 5.583952238815442, 9.12325541408122, 3.7344333651235484, 6.622663985921942, 8.763948924495962, 15.091176555142951, 7.0182951054275495, 4.882586396699365, 13.792558388618271, 19.879519427226725, 13.019457316867314, 12.363963841513028, 16.98397051607539, 0.42176972134682744, 7.301126449734998, 18.008216283751683, 14.057978037847052, 2.0002029674788524, 8.651583196648467, 6.811813877550545, 1.4420694260926559, 15.682486115794337, 4.106078089409618, 3.834716550617041, 2.101830047330504, 17.371431937738585, 19.44558446134502, 5.417224364930419, 17.296695726217507, 0.7125356956984996, 0.4051551641657025, 5.349673474049097, 19.154512730385996, 2.6071292493697173, 3.5816742719845074, 2.3453218484642435, 13.77094928012409, 13.82565768740333, 7.0639580715422, 11.638176896955493, 11.488327563979963, 17.236512893305132, 12.275843698765668, 14.042478676232285, 18.90690616058484, 14.674513518197571, 3.2766102591441904, 18.44291172732173, 3.8539331199377824, 12.785908546783677, 0.6865128863592251, 3.0516121366028237, 4.5846510880917934, 2.5726471768008463, 16.169233878097618, 8.223595741403658, 10.823582907738594, 12.475570079150627, 11.388128071483951, 12.300705998141993, 8.23254577241362, 3.91233225185472, 14.284988409886072, 9.338592217003054, 5.869253453246723, 9.192216482792457, 9.529031153266622, 18.754661873483123, 18.66861389836898, 15.733885182698454, 19.974979815874335, 16.25858027410901, 12.322070450949116, 0.2480915616897228, 2.3155785937113293, 16.853730437175496, 6.933442030098657, 12.640629006437523, 5.401551392140169, 6.131307376525774, 19.86554760633329, 10.507020244314022, 17.258202564799372, 13.137909621619524, 19.338671506801383, 19.203588275339133, 9.119423287061387, 13.271024949529899, 10.349595511792591, 16.309840142241146, 0.9355107955589737, 16.406181891218445, 12.619586266762981, 6.875144319347828, 3.9959574549813714, 10.844849178702919, 2.671112191473808, 16.855295292008275, 16.55933011173113, 5.506529418439152, 0.3195885967768497, 10.486036306329334, 3.823501150486297, 2.2106235366958726, 10.850659233872136, 17.61095831172271, 2.935269337359314, 3.476280368251332, 7.3609284151384085, 13.154752612658102, 2.4170574317274784, 10.331300173653059, 4.27666196074342, 13.934551189545763, 9.031837061574059, 11.945131717788616, 7.61741128606851, 16.78937408678927, 12.967187731379079, 1.3131002582505347, 8.194903433809984, 2.0259704607091167, 7.370320168610709, 14.65971452574472, 9.172323620969197, 13.13200458709684, 14.063960051637785, 10.158430726425177, 3.824631656125419, 5.613509773910163, 5.309789561765421, 1.2829108901365482, 3.8997860080581193, 12.720691301274982, 16.376181237231094, 1.1573704081168756, 18.80642636194535, 16.743746507536464, 13.906059046678953, 3.2817544243079033, 14.587421949672763, 11.62305083755056, 16.473555575552822, 12.85319680819833, 6.3307851667925, 14.835908486543838, 15.537100975535196, 5.992466841358503, 7.125027228247944, 2.600837749682987, 3.2840372708630827, 18.994069299619397, 4.767645027369465, 9.333948523010854, 0.42326576884309963, 0.2483623636246457, 6.165371961387622, 2.5827120091100375, 17.680010480048935, 10.372735836937444, 4.1002359220064015, 4.71400864990515, 0.9564678141021998, 0.5917652792503247, 6.558048663416017, 2.6262365216470096, 11.800788240368426, 15.172733222624416, 3.03728348370484, 5.571568550640496, 16.432703041328583, 9.304616388766757, 7.731522336765599, 11.52729951527322, 5.735733435644212, 16.119522615948355, 3.9409986711916845, 17.189649535072647, 11.819904237844678, 15.695626195935242, 10.790345959188322, 3.3097962225328836, 6.836979286551889, 15.952386544906554, 9.722792886277972, 0.007576625935594716, 3.8124923319711934, 19.639219241971638, 5.028159818116656, 13.4378333984459, 15.888038521680315, 10.574687171689398, 16.67776956857703, 3.1639074151004487, 9.225326798287268, 7.29455264973682, 9.946328501199224, 6.990054448571945, 10.803863429425384, 7.091990939539361, 7.4139299123153535, 19.108034523975654, 17.077196563212492, 5.8374481220679275, 2.0371271108946654, 1.484365662317224, 14.628630836293944, 5.41718819617631, 18.759223412169863, 10.458544779680084, 0.8625078726691071, 1.0050387459881893, 10.957784999712768, 11.553031755167712, 17.612585236389947, 3.8412141420235923, 18.9460034596318, 11.070272250511197, 8.946840270628819, 18.727817738044482, 13.333280381088642, 15.22172770251035, 4.764395219638688, 4.727515735101098, 14.197555887510696, 16.757544666501058, 11.591094005139924, 7.59441202492879, 6.543169690241697, 0.9219085168588803, 3.3891864095461166, 16.61165010177153, 12.784430046231387, 2.0359624112201646, 18.40326776524712, 0.9796158369745056, 10.210902796911999, 18.559728948289806, 10.875028360405425, 8.203343538549168, 13.040277141139988, 3.5339858335374608, 9.348359715922804, 6.854697838477457, 19.920690534355053, 10.584165029464515, 9.90538499757832, 17.711852376724494, 9.03141411388523, 17.65431344270102, 15.564945183723825, 5.339320157967771, 8.515248110610527, 12.797070893294286, 6.492898432645706, 16.890113115879622, 17.923852164000493, 11.058942109845201, 12.617038436650102, 11.448472977775385, 8.029192232112798, 18.12326602123234, 3.348798746859536, 17.787086975548533, 4.993198203022809, 16.55850682803108, 10.092941030155115, 3.3454391997316013, 4.859407083446056, 3.1222481835574345, 19.346716295320835, 4.454092215738161, 19.430524316891862, 7.498980601699003, 10.40864241329243, 1.609687446522603, 0.9642979450089451, 2.1912893890070295, 17.88866762061025, 12.698713290694275, 19.273244642514932, 16.38574233291832, 9.235149043845798, 1.3083987936017571, 11.320138598516605, 6.698861950856658, 13.769410001063962, 17.99301314666075, 3.751291994354735, 13.59786297670633, 15.656068908558458, 5.211062635122032, 10.819470346502747, 2.476688422809481, 16.943241299647926, 12.976390091284609, 10.25765173061817, 0.17796434030984853, 13.74832493279392, 18.83314687582685, 0.28328604530472257, 16.503045114519956, 8.526173595224558, 4.408325532048409, 5.854160265710872, 11.41168597216939, 0.5187755796387661, 7.205578972307711, 7.4117141002134375, 13.824250019259585, 12.214896943824108, 16.45960901670554, 8.77266515258585, 15.383529549374735, 19.66255962407898, 13.858218384537109, 12.366685614751145, 15.768059569637185, 19.525689565336652, 10.553570069085843, 12.419993902546105, 13.517027998823956, 14.674497249502735, 2.652241168060232, 12.543485193091497, 16.305867855308335, 19.354638700101113, 15.843094378996499, 17.63530740608158, 14.228616291250171, 4.600390227493145, 0.23633686907310159, 8.310275716829556, 16.560145018995883, 8.648264487255625, 14.621168258755453, 0.9677704992410741, 6.1591933045590235, 9.94084330031992, 18.595798849569785, 3.0410128137964354, 19.545961044807708, 4.980375229959126, 16.746604362512475, 14.911742836258014, 1.0589824349366417, 8.394373203804207, 2.3933439095865494, 12.178968915897988, 6.644566443303095, 18.936817600542476, 17.575993646481585, 6.241816177374417, 16.468306343580398, 19.31263049766986, 3.5540454711405367, 10.415255862121997, 13.35946066146806, 10.430536850160246, 1.3598521910939598, 5.135659182103911, 9.14801831569999, 13.807721652284224, 11.184910897426585, 4.327565601602572, 7.01365213634311, 3.027083270380917, 0.16041233021237833, 6.778036146347097, 4.311866947772289, 5.780639154749901, 1.2104703599360955, 18.615976760835533, 19.419748811326393, 11.52528873778751, 6.226788771471721, 17.97498509869829, 12.914050221617916, 15.169832798893818, 12.93994620076662, 1.0130885944509571, 5.766927416248844, 12.06121492638548, 16.44757676775512, 1.9790505529368962, 16.77141570575355, 17.317725693666116, 1.7299032626829502, 3.7779601292616016, 10.099757147411623, 15.934468477066941, 9.06621742350998, 2.492761615490937, 14.79271957929244, 18.213961416762835, 10.980922012932057, 16.927074099077203, 0.8487780973523673, 2.016032137457946, 18.727443138653584, 7.861532138108942, 15.470146679008485, 13.502563441403685, 1.2569606605891703, 5.624020557554264, 9.717156504710225, 1.1208156374719547, 13.337899592508439, 17.472327812381792, 0.6563302068767762, 0.7054630856281041, 3.1731197665233646, 9.061073750727859, 1.4979153458088623, 17.383992685328742, 1.058675711308521, 0.8882451886071219, 16.12719948153359, 16.122514251422423, 17.729818741989597, 10.087834263848709, 13.775511729293674, 19.21112298280854, 12.070567478079695, 17.064448048469153, 4.286976619090767, 4.159222629105788, 5.011206123530323, 15.951264587652423, 2.4701612016692676, 7.618932844685801, 18.43622133675575, 1.2554575517811806, 19.931373742005764, 15.580398512218764, 10.89890193611854, 12.465918419602819, 5.728099662002135, 18.63525775297421, 3.1336032163123506, 5.906678735522092, 17.536953087194686, 3.2367401484932112, 13.874606059702472, 13.161067926613018, 1.8103179077108722, 4.562207865981613, 4.129564276603359, 3.365698278055076, 4.824516353250845, 15.740965068563932, 9.158335929875827, 7.649249727736727, 16.968619191640386, 14.11906176130913, 6.033088884695896, 11.609157760469788, 18.19487673218096, 7.051607299456284, 1.0360369512641765, 8.747766102839469, 3.028577776323116, 10.259484375294942, 6.7786493275393145, 2.822072633447421, 13.538793058511462, 18.835388003510076, 7.362340150111009, 5.10658406610939, 6.751990154074905, 3.249335796244579, 19.401211293346037, 7.401863589280739, 1.231113298939579, 12.383886816248815, 11.782508859812232, 7.843853383959969, 16.717865139270398, 16.94121215184147, 17.014368762638465, 0.49365391880773046, 10.453036845239602, 13.467241581762261, 14.642608774615791, 1.5063603483426458, 5.477549435993756, 19.169791362643146, 8.669926813453383, 13.0644935134605, 16.33951319473303, 6.772907181596395, 8.911476204328894, 5.858254875989813, 15.194339190896134, 19.327794666357004, 10.921439842393683, 14.266856952664506, 16.31196658229631, 4.195346405958538, 0.9350382944269375, 18.279041104877187], "expected": [148.77928070267873, 13229.905582959418, 9396.46240271315, 1786.562227374, 94216.82857175998, 19.819869853896012, 122.18326609032626, 100637939.96944383, 100062.88718242467, 34.167115983995075, 36177.899173870974, 16912374.33293727, 32459.50319696122, 441898581.6005347, 1861057.1214655305, 13074616.494916225, 6.4356389274915955, 3875605.341361635, 736977.0633409868, 61336084.330693096, 1056.0092648736522, 284.5765223175249, 172.89390551827827, 153873991.08353814, 8.767438208043586, 4969.620656891195, 153469.62667496334, 36026540.11768516, 434.6728893227555, 13920754.376722671, 448542520.1759611, 31.003668184964837, 3584675.726626442, 15631.82902822565, 346.1307754877442, 35918982.9440195, 86846275.5453537, 79.88524219766155, 19.900848992753716, 10945.922504999606, 20023.953361220567, 3243615.467875367, 9173396.552128904, 432.4477544775158, 6117419.528651939, 283.79090161504973, 279.604658913294, 160681385.49071315, 6.373496927540074, 20.06596091056071, 4157.014203568951, 52204.51990439591, 186645617.33635983, 19.63728478045244, 35428945.28387881, 94543787.22773984, 69.6558103365452, 30520955.297206525, 4753.555788940648, 1633.3124017316165, 249.18924295085782, 6.8261535171403125, 2008.8182859717617, 914025.0471351864, 92297327.89369452, 192536795.7342657, 3002476.5081946696, 413.29875461596447, 577.6054066701736, 1735257.2808461613, 27174.49634909756, 481.42322685336813, 476250767.8345253, 6.425627405839952, 4415544.4632841265, 17.842072882353953, 52901.401495134436, 215.1406726381246, 5539.08548601179, 6.004618069207742, 51.8538656349337, 7.000559488831033, 3046.306157804927, 460247955.6510873, 8337991.229348316, 15762.43839081164, 2164.082607051417, 23.607445629099686, 119682.50015669454, 131.10340748187292, 2017959.2648832083, 80596620.65789582, 37040736.91852328, 46.79281212053653, 2086.4970801585328, 8774692.50021788, 1188370.5813873352, 737.8828332398768, 6.01265723005696, 35190737.77126385, 170271.1990043869, 110753746.5525437, 6.726578157131637, 100779.8467540535, 208084.89178588666, 17685700.068883568, 82085517.72243252, 8.899252994402898, 51787.24626720143, 10647.039461716564, 13524.17039810886, 64.52565506540276, 103.78354448539903, 742.0150534340612, 191085303.7655614, 33839217.01218604, 4126316.72264109, 9.666273819147644, 223.3782280826409, 8.643623376238008, 102861.34214440681, 136.90492587826887, 205.21355496697237, 91584.03600434208, 2546089.819356588, 7674.100636067672, 33802.35812722836, 17701078.103967417, 7.731471826742867, 24.89109695757803, 76023.33266257301, 360900.6524461033, 111060.0796864955, 76.30994610056312, 26103.659262862046, 9247322.639948362, 52497792.08984048, 44.82970188366998, 8387.145203447897, 773.4054450641673, 5302248.466400249, 52451.66932456183, 6.209682837264177, 6.315467436302022, 70595770.5094042, 6.970914847637882, 5542.875093997074, 23.889508145972332, 3675747.5084928316, 69895.01642041473, 40.79853124495499, 12.652242908936739, 7561619.787913493, 950.6968050405225, 11121.484245642949, 69715911.59679836, 1353237.0385216833, 10379.396459110123, 41596.00488462465, 1289.488518805119, 26.74145225218132, 4031.79130057978, 242729464.89289093, 400953898.41531634, 46503666.27204261, 12.433191892615673, 3649.7101312276377, 164183.66934642597, 7.2981335982664515, 253830.34545620214, 214907.02206868955, 612290.0541567954, 200259530.43474093, 22.087595686390486, 2269417.397194611, 2680977.4809830473, 65056.153343051556, 9.448444485286974, 9.266614480725242, 117158319.56011204, 125276924.3974681, 30.91350997052295, 6.017479440390515, 1492459.2684721004, 85.03901954420202, 13979633.691985523, 19183.177907957393, 6.007611607549537, 4325632.92315167, 4482.627483147635, 312537.0190640028, 14894.354987306206, 31.216629432163213, 238026.72395423616, 11.100742094491334, 308304.67237108905, 305351.02572660043, 227786933.0261531, 15.628729990606123, 10024661.721107123, 106.1001031147357, 249.79814268219144, 1799.74058950647, 12511037.028175563, 26948267.387226243, 563102.9429126751, 21978849.377286598, 57.06672984894181, 20035905.738642342, 6.194744711430705, 56935.398936825346, 81.21424562620547, 44674.526616187955, 8.375564135618923, 124693125.85996616, 219.39210255462405, 400953000.02047724, 38.49908326793525, 43.77543960679492, 2179.578530466395, 295.74728169345076, 8847061.01197349, 23038.344592275862, 9.369671754466584, 377.18876639498154, 275.9762630904212, 45.06001684872689, 62459338.54667319, 17.562943392420074, 39196.4488212442, 41.16380552544617, 87.93391693586963, 187444.41852148832, 4624833.685732237, 173265.38360113717, 7.689224732362989, 6.001509964673535, 10.462253068760202, 90164799.82548626, 19678654.007341586, 264182100.19991624, 11465693.265171356, 25486136.939076208, 172.68321438332512, 28003837.310456496, 13746334.402692584, 135214.13215322755, 8.912958233734088, 15.315059413438567, 80380623.5773123, 27942519.73457605, 6.662054884428001, 146.76198934493786, 132.80119211071442, 21.379314910088013, 15883.88280171258, 27.16293652383204, 34021342.932692535, 5302.713258370286, 22.206602574464604, 67404.13226053567, 10.815972751413272, 830850.1162584135, 6018.723327786515, 1093683.2687476089, 93918.99640482692, 67.56961639708568, 8728.81659544496, 9.966871455913614, 578.3339121187887, 6.117987542500613, 588537.2956529269, 6.203437925161374, 50.52623237085526, 481.15065179477494, 121.24054405997398, 746.4997351414071, 19528.64013040481, 403.59568060991194, 43986.95830407937, 16896870.57921449, 70488227.24541721, 453229465.1748593, 24427.935434483443, 4408.801818110453, 482287.79840906203, 630693.1082445984, 14228879.419156173, 287.0935700645315, 40066.88631985785, 1752.8928603026989, 226.24394690030272, 41.132841183082995, 1191502.888026183, 2989.820259278188, 93543.57431944417, 71.90421870511102, 8.877194804059787, 32142.217978602494, 1930030.6596961701, 748520.9507899068, 7.594202345901296, 47125.642597962054, 627429.5741423313, 152244.46716985773, 175.8528043871461, 7495753.496341788, 473.0804023535567, 6.2564614195557, 275.4917843960525, 31.316320097901976, 76198.79039057209, 421728.9190449505, 113.90465670722313, 2849353.9628738714, 2042993.173772829, 44437.425465634944, 10.691039070542985, 35.70020679959677, 17.26544256093696, 5474823.023563406, 11.618972218963677, 2943401.523574868, 302.1714207786837, 102858302.84343077, 909864.1180507992, 2604.851769361004, 10.223015905798839, 18282.10654378686, 85972982.92157674, 7024808.96760046, 12.080223266156324, 48477.7081129698, 8027836.786315645, 428669407.12570405, 1670029.882475339, 53.1331266558909, 137931185.36035752, 7.75440628725919, 400679.679324498, 3143345.4980881885, 92375242.4757256, 1072.4695182411122, 1209.8334705838704, 27.13192583669763, 7283943.676561842, 218438339.08594865, 161.40923931730057, 21.010814047718945, 530.7141690973893, 1721.6135804518149, 163563.68948386124, 2779628.394115881, 377.1185158190735, 12743.504168426001, 46706775.66412325, 19.8155393096979, 558880.9337535464, 144668415.5687493, 1400424.6816105412, 27.0274543538132, 59568.03797532604, 2334.6605157852755, 7.325350274230937, 1093.6951028778572, 15.80292579829409, 2397497.486380853, 34504.33142464464, 1506796.6397301124, 17361463.077116247, 22947558.616966013, 152.1757738946781, 1705.4447986516789, 6.5330500918693755, 175.45794181667213, 76225.06784920531, 7301674.552095637, 11505992.161234422, 3448595.1575371716, 17706.974016665128, 118402.25040454834, 6.351797691438801, 1918.667770905549, 153.54864651707726, 713.1025305791379, 9.559033534298079, 1500.6808042779733, 9617.512753919933, 16943.87780832545, 670.0871488438753, 21303479.3443803, 6.184804208262339, 26297131.20833809, 288.7869311035361, 1924814.1198245536, 27874.767857016217, 4505.519016603451, 3770366.3255831623, 2395.272788533473, 127079670.77167575, 783.9299845910476, 44784487.87939447, 27356016.73985961, 3308.855431920104, 7.342213461116416, 1668.523892583493, 265.03364539757416, 14487087.857785553, 11958.026517442926, 7.905133434823056, 483122.3277788995, 295081.19329843955, 699.4997013523308, 1849.0917903009856, 445.81428837972624, 355125378.9060029, 336910639.79506797, 299.0445808903354, 9.580828392939981, 11.920856433936825, 1866.9078185625763, 31783.69317355556, 5519392.060957305, 468018.73490171944, 1230224.5202283983, 10.413888240757748, 299097959.5185294, 8430.493528974122, 141.84306727157582, 477522365.7781502, 88.65964015665283, 702269.8566162887, 6.253380605910154, 115642.93387751875, 11116611.374660196, 125633725.00450267, 113825.33176531178, 15326.298313798769, 26.25224918387775, 14118673.210189138, 10641982.14268215, 545.4104294927023, 2440.323950141, 487.7053578630345, 494327.1838070734, 1250252.5058921776, 2016152.5596723363, 44.8335375900234, 85.50746417746002, 20915.69190587772, 793.1160432346917, 6129.912938648394, 77.45628661074902, 82511.17209302018, 1550008.9961768666, 126914.64458258242, 16233887.232565787, 896.54127094532, 36072.97552405609, 31.068851520196848, 1474436.6805041516, 24311.762583705193, 54907916.601486154, 50.69540408159488, 5152.618039405224, 22.90163107535346, 1931509.4281365655, 48931487.60947741, 205219182.9770696, 55112.601774723444, 641076.7532425111, 220.06391713231838, 2672.475367470196, 1158.5769759470838, 82213.31023852433, 60.11197567968305, 960.76414976797, 101.71654008495837, 247.17084668171003, 109787.12468176629, 6.34782350392339, 1256170.3696098963, 7.88371496612462, 22237032.481857102, 42.74829698193836, 15552.156327057233, 850.0552629221684, 390827.4353633683, 29025.08533789727, 234957778.5529528, 15403610.260089759, 184842.93235228208, 1402.4869198923095, 6.252639273482196, 9.074621208206652, 33823.81771600915, 523531.99491783435, 2386356.2393304124, 50.71064107718282, 270.1250627250441, 9169.992308947623, 45.88818377251702, 755.9469336539339, 6403.332384054676, 3581089.608991054, 1120.8817249104236, 135.9791310390115, 977313.2279959206, 430096188.8031557, 451109.86139498645, 234211.7548148708, 23770852.051214185, 6.180542446537732, 1485.9690253448257, 66201676.42142731, 1274393.8051844733, 11.525863806590284, 5723.194353827131, 912.5183530138297, 8.465877240074077, 6468706.567187651, 64.72463035347097, 50.301915146180505, 12.303360605038723, 35020075.89321333, 278682716.4666237, 229.25747323884514, 32498219.11383451, 6.52955450271742, 6.166408484114498, 214.5442897198144, 208304758.32570037, 17.633813297152376, 39.961482285479796, 14.532447559603439, 956420.9911314367, 1010202.7861325102, 1173.064111769079, 113347.33987409236, 97574.21621370185, 30600075.187388048, 214456.53242120193, 1254793.862429261, 162616655.98802766, 2360809.7027244032, 30.523596250651394, 102247997.3056234, 51.1994527455844, 357153.07362853084, 6.490103503224757, 25.19669533298743, 101.9792059384281, 17.176791018607673, 10524687.629200641, 3731.8830826406156, 50194.59352468091, 261865.25441281893, 88271.57204328984, 219855.14840128596, 3765.3975008757484, 54.03545852843667, 1599162.9773970065, 11372.39282761368, 357.9874405158177, 9824.393709496584, 13757.259898929646, 139651683.03987175, 128137431.51202011, 6809884.857182869, 473176877.29647225, 11508317.832680402, 224602.6815305505, 6.061865765676503, 14.229491885600371, 20868066.479951434, 1030.020473307135, 308859.5609943689, 225.75468053772175, 464.0393832816851, 424128747.0318745, 36575.34338406521, 31271030.778731715, 507837.85786633124, 250425373.21168655, 218782423.43209136, 9134.934279308849, 580144.1257901582, 31248.40230304509, 12113613.641338896, 6.940900281038347, 13338727.326602176, 302428.29684632097, 971.9160775217397, 58.396269909821804, 51273.39062407009, 18.525213384026884, 20900747.532256205, 15546255.58231365, 250.2989158367571, 6.103009164648045, 35815.928209725855, 49.78600651551931, 13.231034416631982, 51572.135633968915, 44498160.1622882, 22.87968956302491, 36.37013035240733, 1577.2971930615759, 516463.7378738259, 15.301999906391435, 30681.972709094895, 76.01358955163552, 1126419.6854101513, 8369.212996052302, 154069.2846450152, 2037.292192209184, 19567376.85330551, 428136.3823882403, 7.986666477283038, 3626.4414457405146, 11.71533264184331, 1592.142804594847, 2326129.4066098873, 9630.968250025533, 504847.9179412262, 1282040.069802585, 25811.765859571795, 49.83774771761359, 278.1082451027511, 206.31259361026622, 7.884353542356937, 53.412124754079066, 334604.07821244246, 12944500.010000963, 7.495867678995767, 147071054.09367493, 18694627.133969158, 1094778.590568348, 30.660001104360074, 2163902.360874723, 111645.80299838584, 14268371.407041708, 382011.9917590877, 565.5991490291232, 2774302.5170108126, 5593421.263048377, 404.4036161816245, 1246.6828073591346, 17.54923338478673, 30.720759818666462, 177426912.614296, 121.65037247540022, 11319.723874853327, 6.1818446118913375, 6.062001591250424, 479.980256444361, 17.308546277549667, 47679427.04342919, 31979.838122687524, 64.37109364446081, 115.5071913460569, 6.986735475200334, 6.3605253766474075, 708.8962832170321, 17.89400463778941, 133361.42924405567, 3885391.279367566, 24.89649587651191, 266.84986793179354, 13697218.395499421, 10992.630178036961, 2283.069510660224, 101451.78538248394, 313.74329038607937, 10014283.83589031, 55.48940602798947, 29199135.83366312, 135935.21135504037, 6554266.740015176, 48553.82939040995, 31.416069184631805, 935.6716433549674, 8472930.706545124, 16697.803637238572, 6.000057405535182, 49.28520214317817, 338224100.7774113, 156.65839776796713, 685455.756525441, 7944886.126688414, 39135.661383077895, 17501021.299024943, 27.705136492338596, 10154.992957315344, 1476.2588177198554, 20879.43741463341, 1089.7815147756316, 49214.555878231564, 1206.299955934873, 1662.9336172546937, 198844673.76946515, 26093497.84405641, 346.90609243504144, 11.798949444372486, 8.638811787144213, 2254937.0396153177, 229.24932642515998, 140290164.6987669, 34844.81350738216, 6.7911968128082165, 7.098043577641198, 57403.162982578266, 104096.14081507325, 44570614.23287098, 50.60346480080466, 169100451.39911374, 64236.991935308586, 7687.57557582987, 135952724.25099966, 617408.9330710638, 4080494.2664643377, 121.26870722972683, 117.0233039020471, 1465282.5040382305, 18954366.356346067, 108134.48867148517, 1991.0616687802221, 698.4858333213717, 6.911843171928252, 33.675562263634255, 16381289.313388325, 356625.41869110725, 11.790175058456574, 98273779.1055689, 7.03888816014153, 27202.11091625195, 114917953.41045897, 52844.24317696704, 3657.1446130252634, 460600.2575370206, 38.28943983512367, 11483.97765577545, 952.3265931104846, 448173298.8093574, 39508.308864034836, 20041.98497650797, 49222060.1492499, 8365.675696749213, 46469815.408387, 5751354.091439278, 212.37580189146664, 4994.284248579756, 361162.02838979656, 664.4363317558267, 21641283.046996158, 60845731.664762616, 63513.33043640536, 301658.75186718965, 93762.06603976764, 3073.2617466709194, 74273595.90191047, 32.503641726701005, 53068126.45612151, 151.4138922143954, 15533461.873937512, 24175.777966338563, 32.40827909188231, 132.9554792774834, 26.741408142076153, 252448117.7136827, 89.98969674669084, 274517160.23107105, 1810.2007918543054, 33148.842877401585, 9.201197925532123, 7.004196322710726, 13.058514048344954, 58742126.71842093, 327330.4567983924, 234565320.56258416, 13068857.122766731, 10255.189774197073, 7.970496551733975, 82469.77177551945, 815.4830256242657, 954949.9309607582, 65202815.4692188, 46.5995418830797, 804412.8804860519, 6300058.918578717, 187.29417965452157, 49988.60549502993, 15.98580641139906, 22822135.424771775, 432094.3942515225, 28503.78242021949, 6.031754984022134, 935025.6216801592, 151053842.23378003, 6.080789106202551, 14695404.542441932, 5049.104441282814, 86.14399674398419, 352.68484481329904, 90375.65734639872, 6.2752183380047075, 1350.92503763343, 1659.261804269792, 1008781.7618823585, 201776.6694428185, 14070757.99794495, 6459.354216884573, 4797139.607784834, 346211229.1535709, 1043636.9284927871, 234850.08351298168, 7046630.6410016, 301925114.26633286, 38317.97801321143, 247709.0251619154, 741947.2218662346, 2360771.2958092755, 18.256288847097068, 280267.41089146014, 12065590.352339974, 254456057.20900303, 7595715.570788551, 45594948.6810644, 1511508.8338587314, 103.53319264663786, 6.056115583041068, 4069.43398367027, 15558929.498999793, 5704.245471276978, 2238172.0597476824, 7.011998858365024, 477.0484305251691, 20765.244918201748, 119138695.77909067, 24.974213545877486, 308108039.73508453, 149.53584972607618, 18748130.071120102, 2992872.4588145833, 7.230243943899081, 4426.114502647254, 15.041372558224703, 194656.05607657586, 772.5980461907458, 167554231.0708834, 42969182.88253113, 517.7927456283915, 14193669.671553798, 243988222.60106018, 38.983047687567435, 33368.771039565385, 633786.2127993806, 33882.533104512724, 8.1523161687905, 173.98221147950375, 9399.80250988771, 992245.3492449286, 72039.25260008285, 79.77283241291269, 1115.7081056952834, 24.685409078931226, 6.02578734151602, 882.3432324171663, 78.59300375030575, 327.96927552844244, 7.653119420751743, 121567083.23117027, 271574979.2981649, 101248.00141047487, 510.1295555725511, 64037868.46846381, 405980.3646022835, 3874138.336939297, 416630.8269722659, 7.117189962567265, 323.5574944895345, 173033.0756014927, 13902469.656853333, 11.37407003655007, 19219114.984991085, 33188892.484515402, 9.81740983391249, 47.749623067358506, 24341.09842043566, 8322464.290414838, 8661.813065831915, 16.17731207956284, 2657034.1692123045, 81324791.4524413, 58746.690851114676, 22456132.04567507, 6.76472728772301, 11.641656028934229, 135901805.98237425, 2599.4943711056026, 5231180.060929144, 731292.5846032414, 7.799240260432356, 281.0044553272154, 16603.975664327776, 7.393368810071724, 620267.4539619876, 38737857.7254902, 6.4464566157123215, 6.518663928923237, 27.92374688883495, 8617.394444962645, 8.695951824441767, 35462728.38008597, 7.229466052436211, 6.842237213961505, 10091457.964814233, 10044287.768731888, 50114393.58039036, 24052.65299827879, 960794.5645549404, 220437110.92678037, 174658.93006838765, 25762955.988692295, 76.75994264625136, 68.03735431298938, 154.09231172045216, 8463429.775778726, 15.9089240283109, 2040.3883188419518, 101566201.57884191, 7.794389200382827, 452986893.71669674, 5840921.871423261, 54120.907356332325, 259350.01637261623, 311.3878316584261, 123933759.74727403, 27.000108661549497, 371.4863372744104, 41323966.157283865, 29.489912899367805, 1060880.551458028, 519735.6640093762, 10.27599241755576, 99.80518746980262, 66.16692634855352, 32.98824587143197, 128.53425754852088, 6858269.111805408, 9497.24660371963, 2103.0706007886556, 23408724.72933181, 1354664.952338888, 421.003508504716, 110105.4795162909, 79787450.03450662, 1158.7140879821784, 7.172885097009835, 6300.6065730430255, 24.71620182024827, 28556.060283374765, 882.881979729779, 20.871141523348445, 758272.6781737686, 151392752.80137855, 1579.5198384619384, 169.1114581021572, 859.7613320678016, 29.812015534586827, 266587028.26384792, 1643.0366857817137, 7.717007858222148, 238924.6616707643, 130945.88265254868, 2554.0124939928355, 18216992.29116245, 22775872.899476983, 24504539.05420316, 6.24868347253175, 34653.44011092126, 705912.9779620316, 2286677.6720682927, 8.732000495988185, 243.26384680906162, 211511807.33906865, 5829.073188617783, 471890.37915724504, 12478447.514436219, 877.8497858628253, 7420.601575188877, 354.11547686629433, 3970252.284547869, 247716296.2347697, 55354.437520415195, 1570429.1748452946, 12139399.912856596, 70.39178640964268, 6.939881835655007, 86793400.96257105]}
diff --git a/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/test/fixtures/python/runner.py b/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/test/fixtures/python/runner.py
new file mode 100644
index 000000000000..161e06609ee9
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/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
+ python> gen(lam, "data.json")
+ ```
+ """
+ # Compute excess kurtosis values:
+ z = np.array(planck.stats(lam, moments='k'))
+
+ # 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/kurtosis/test/test.js b/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/test/test.js
new file mode 100644
index 000000000000..e6fa6f90296f
--- /dev/null
+++ b/lib/node_modules/@stdlib/stats/base/dists/planck/kurtosis/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 kurtosis = 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 kurtosis, 'function', 'main export is a function' );
+ t.end();
+});
+
+tape( 'if provided `NaN` for `lambda`, the function returns `NaN`', function test( t ) {
+ var v = kurtosis( NaN );
+ t.equal( isnan( v ), true, 'returns NaN' );
+ t.end();
+});
+
+tape( 'if provided a shape parameter `lambda` which is nonpositive, the function returns `NaN`', function test( t ) {
+ var v;
+
+ v = kurtosis( 0.0 );
+ t.equal( isnan( v ), true, 'returns NaN' );
+
+ v = kurtosis( -1.5 );
+ t.equal( isnan( v ), true, 'returns NaN' );
+
+ t.end();
+});
+
+tape( 'the function returns the excess kurtosis 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 = kurtosis( 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();
+});