From 8f4f65e411257ea0945f3e0c24b96dcaade44e32 Mon Sep 17 00:00:00 2001 From: hrshya Date: Fri, 21 Mar 2025 19:00:41 +0530 Subject: [PATCH 1/7] feat: add constants/float32/min-ln --- .../constants/float32/min-ln/README.md | 149 ++++++++++++++++++ .../constants/float32/min-ln/docs/repl.txt | 12 ++ .../float32/min-ln/docs/types/index.d.ts | 33 ++++ .../float32/min-ln/docs/types/test.ts | 28 ++++ .../float32/min-ln/examples/index.js | 24 +++ .../include/stdlib/constants/float32/min_ln.h | 27 ++++ .../constants/float32/min-ln/lib/index.js | 60 +++++++ .../constants/float32/min-ln/manifest.json | 36 +++++ .../constants/float32/min-ln/package.json | 72 +++++++++ .../constants/float32/min-ln/test/test.js | 43 +++++ 10 files changed, 484 insertions(+) create mode 100644 lib/node_modules/@stdlib/constants/float32/min-ln/README.md create mode 100644 lib/node_modules/@stdlib/constants/float32/min-ln/docs/repl.txt create mode 100644 lib/node_modules/@stdlib/constants/float32/min-ln/docs/types/index.d.ts create mode 100644 lib/node_modules/@stdlib/constants/float32/min-ln/docs/types/test.ts create mode 100644 lib/node_modules/@stdlib/constants/float32/min-ln/examples/index.js create mode 100644 lib/node_modules/@stdlib/constants/float32/min-ln/include/stdlib/constants/float32/min_ln.h create mode 100644 lib/node_modules/@stdlib/constants/float32/min-ln/lib/index.js create mode 100644 lib/node_modules/@stdlib/constants/float32/min-ln/manifest.json create mode 100644 lib/node_modules/@stdlib/constants/float32/min-ln/package.json create mode 100644 lib/node_modules/@stdlib/constants/float32/min-ln/test/test.js diff --git a/lib/node_modules/@stdlib/constants/float32/min-ln/README.md b/lib/node_modules/@stdlib/constants/float32/min-ln/README.md new file mode 100644 index 000000000000..037a5dfcdfb9 --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float32/min-ln/README.md @@ -0,0 +1,149 @@ + + +# FLOAT32_MIN_LN + +> [Natural logarithm][natural-logarithm] of the smallest **normalized** [single-precision floating-point number][ieee754]. + +
+ +## Usage + +```javascript +var FLOAT32_MIN_LN = require( '@stdlib/constants/float32/min-ln' ); +``` + +#### FLOAT32_MIN_LN + +[Natural logarithm][natural-logarithm] of the smallest **normalized** [single-precision floating-point number][ieee754]. + +```javascript +var bool = ( FLOAT32_MIN_LN === -87.3365478515625 ); +// returns true +``` + +
+ + + +
+ +## Examples + + + + + +```javascript +var FLOAT32_MIN_LN = require( '@stdlib/constants/float32/min-ln' ); + +console.log( FLOAT32_MIN_LN ); +// => -87.3365478515625 +``` + +
+ + + + + +* * * + +
+ +## C APIs + + + +
+ +
+ + + + + +
+ +### Usage + +```c +#include "stdlib/constants/float32/min_ln.h" +``` + +#### STDLIB_CONSTANT_FLOAT32_MIN_LN + +Macro for the [natural logarithm][natural-logarithm] of the smallest **normalized** [single-precision floating-point number][ieee754]. + +
+ + + + + +
+ +
+ + + + + +
+ +
+ + + +
+ + + + + + + + + + + + + + diff --git a/lib/node_modules/@stdlib/constants/float32/min-ln/docs/repl.txt b/lib/node_modules/@stdlib/constants/float32/min-ln/docs/repl.txt new file mode 100644 index 000000000000..b77d6d941084 --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float32/min-ln/docs/repl.txt @@ -0,0 +1,12 @@ + +{{alias}} + Natural logarithm of the smallest normalized single-precision floating-point + number. + + Examples + -------- + > {{alias}} + -87.3365478515625 + + See Also + -------- diff --git a/lib/node_modules/@stdlib/constants/float32/min-ln/docs/types/index.d.ts b/lib/node_modules/@stdlib/constants/float32/min-ln/docs/types/index.d.ts new file mode 100644 index 000000000000..ff607b532e70 --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float32/min-ln/docs/types/index.d.ts @@ -0,0 +1,33 @@ +/* +* @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 + +/** +* Natural logarithm of the smallest normalized single-precision floating-point number. +* +* @example +* var min = FLOAT32_MIN_LN; +* // returns -87.3365478515625 +*/ +declare const FLOAT32_MIN_LN: number; + + +// EXPORTS // + +export = FLOAT32_MIN_LN; diff --git a/lib/node_modules/@stdlib/constants/float32/min-ln/docs/types/test.ts b/lib/node_modules/@stdlib/constants/float32/min-ln/docs/types/test.ts new file mode 100644 index 000000000000..c591d6d7a992 --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float32/min-ln/docs/types/test.ts @@ -0,0 +1,28 @@ +/* +* @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 FLOAT32_MIN_LN = require( './index' ); + + +// TESTS // + +// The export is a number... +{ + // eslint-disable-next-line @typescript-eslint/no-unused-expressions + FLOAT32_MIN_LN; // $ExpectType number +} diff --git a/lib/node_modules/@stdlib/constants/float32/min-ln/examples/index.js b/lib/node_modules/@stdlib/constants/float32/min-ln/examples/index.js new file mode 100644 index 000000000000..ceeb160aee76 --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float32/min-ln/examples/index.js @@ -0,0 +1,24 @@ +/** + * @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 FLOAT32_MIN_LN = require( './../lib' ); + + console.log( FLOAT32_MIN_LN ); + // => -87.3365478515625 diff --git a/lib/node_modules/@stdlib/constants/float32/min-ln/include/stdlib/constants/float32/min_ln.h b/lib/node_modules/@stdlib/constants/float32/min-ln/include/stdlib/constants/float32/min_ln.h new file mode 100644 index 000000000000..d4c1e08f2026 --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float32/min-ln/include/stdlib/constants/float32/min_ln.h @@ -0,0 +1,27 @@ +/** +* @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. +*/ + +#ifndef STDLIB_CONSTANTS_FLOAT32_MIN_LN_H +#define STDLIB_CONSTANTS_FLOAT32_MIN_LN_H + +/** +* Macro for the natural logarithm of the smallest normalized single-precision floating-point number. +*/ +#define STDLIB_CONSTANT_FLOAT32_MIN_LN -87.3365478515625f + +#endif // !STDLIB_CONSTANTS_FLOAT32_MIN_LN_H diff --git a/lib/node_modules/@stdlib/constants/float32/min-ln/lib/index.js b/lib/node_modules/@stdlib/constants/float32/min-ln/lib/index.js new file mode 100644 index 000000000000..949ec83c65be --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float32/min-ln/lib/index.js @@ -0,0 +1,60 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +/** +* Natural logarithm of the smallest normalized single-precision floating-point number. +* +* @module @stdlib/constants/float32/min-ln +* @type {number} +* +* @example +* var FLOAT32_MIN_LN = require( '@stdlib/constants/float32/min-ln' ); +* // returns -87.3365478515625 +*/ + +// MODULES // + +var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' ); + + +// MAIN // + +/** +* Natural logarithm of the smallest normalized single-precision floating-point number. +* +* ## Notes +* +* The number has the value +* +* ```tex +* -\ln \left( 2^{1023-1} \right) +* ``` +* +* @constant +* @type {number} +* @default -87.3365478515625 +* @see [IEEE 754]{@link https://en.wikipedia.org/wiki/IEEE_754-1985} +*/ +var FLOAT32_MIN_LN = float64ToFloat32( -87.3365478515625 ); + + +// EXPORTS // + +module.exports = FLOAT32_MIN_LN; diff --git a/lib/node_modules/@stdlib/constants/float32/min-ln/manifest.json b/lib/node_modules/@stdlib/constants/float32/min-ln/manifest.json new file mode 100644 index 000000000000..844d692f6439 --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float32/min-ln/manifest.json @@ -0,0 +1,36 @@ +{ + "options": {}, + "fields": [ + { + "field": "src", + "resolve": true, + "relative": true + }, + { + "field": "include", + "resolve": true, + "relative": true + }, + { + "field": "libraries", + "resolve": false, + "relative": false + }, + { + "field": "libpath", + "resolve": true, + "relative": false + } + ], + "confs": [ + { + "src": [], + "include": [ + "./include" + ], + "libraries": [], + "libpath": [], + "dependencies": [] + } + ] +} diff --git a/lib/node_modules/@stdlib/constants/float32/min-ln/package.json b/lib/node_modules/@stdlib/constants/float32/min-ln/package.json new file mode 100644 index 000000000000..63715c4763aa --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float32/min-ln/package.json @@ -0,0 +1,72 @@ +{ + "name": "@stdlib/constants/float32/min-ln", + "version": "0.0.0", + "description": "Natural logarithm of the smallest normalized single-precision floating-point number.", + "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": { + "doc": "./docs", + "example": "./examples", + "include": "./include", + "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", + "constant", + "const", + "mathematics", + "math", + "smallest", + "minimum", + "floating-point", + "float32", + "float", + "64bit", + "ieee754", + "dbl", + "precision", + "min", + "normalized", + "logarithm", + "log" + ] +} diff --git a/lib/node_modules/@stdlib/constants/float32/min-ln/test/test.js b/lib/node_modules/@stdlib/constants/float32/min-ln/test/test.js new file mode 100644 index 000000000000..e1e4f2976e86 --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float32/min-ln/test/test.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'; + +// MODULES // + +var tape = require( 'tape' ); +var pow = require( '@stdlib/math/base/special/pow' ); +var lnf = require( '@stdlib/math/base/special/lnf' ); +var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' ); +var SMALLEST_NORMAL = require( '@stdlib/constants/float32/smallest-normal' ); +var FLOAT32_MIN_LN = require( './../lib' ); + + +// TESTS // + +tape( 'main export is a number', function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof FLOAT32_MIN_LN, 'number', 'main export is a number' ); + t.end(); +}); + +tape( 'export is a single-precision floating-point number equal to the natural logarithm of the smallest normalized single-precision floating-point number', function test( t ) { + t.equal( FLOAT32_MIN_LN, -lnf( float64ToFloat32( pow( 2, 126 ) ) ), 'equals the logarithm of the smallest normalized single-precision floating-point number' ); + t.equal( FLOAT32_MIN_LN, lnf( SMALLEST_NORMAL ), 'equals the logarithm of the smallest normalized single-precision floating-point number' ); + t.end(); +}); From 21da942b2f4edb612e3d7cdba2e19b29aa96ba2e Mon Sep 17 00:00:00 2001 From: hrshya Date: Fri, 21 Mar 2025 19:18:24 +0530 Subject: [PATCH 2/7] fix: resolves lint issues --- .../float32/min-ln/examples/index.js | 40 +++++++++---------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/lib/node_modules/@stdlib/constants/float32/min-ln/examples/index.js b/lib/node_modules/@stdlib/constants/float32/min-ln/examples/index.js index ceeb160aee76..76277db1b427 100644 --- a/lib/node_modules/@stdlib/constants/float32/min-ln/examples/index.js +++ b/lib/node_modules/@stdlib/constants/float32/min-ln/examples/index.js @@ -1,24 +1,24 @@ /** - * @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. - */ +* @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'; +'use strict'; - var FLOAT32_MIN_LN = require( './../lib' ); +var FLOAT32_MIN_LN = require( './../lib' ); - console.log( FLOAT32_MIN_LN ); - // => -87.3365478515625 +console.log( FLOAT32_MIN_LN ); +// => -87.3365478515625 From 92ef8781bce2ec5a26c051bb54bfb8eb7f858859 Mon Sep 17 00:00:00 2001 From: Harsh <149176984+hrshya@users.noreply.github.com> Date: Sun, 23 Mar 2025 19:39:54 +0530 Subject: [PATCH 3/7] update README.md Signed-off-by: Harsh <149176984+hrshya@users.noreply.github.com> --- .../@stdlib/constants/float32/min-ln/README.md | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/lib/node_modules/@stdlib/constants/float32/min-ln/README.md b/lib/node_modules/@stdlib/constants/float32/min-ln/README.md index 037a5dfcdfb9..6eac4481a4f6 100644 --- a/lib/node_modules/@stdlib/constants/float32/min-ln/README.md +++ b/lib/node_modules/@stdlib/constants/float32/min-ln/README.md @@ -120,12 +120,6 @@ Macro for the [natural logarithm][natural-logarithm] of the smallest **normalize @@ -138,12 +132,6 @@ Macro for the [natural logarithm][natural-logarithm] of the smallest **normalize [natural-logarithm]: https://en.wikipedia.org/wiki/Natural_logarithm - - -[@stdlib/constants/float64/max-ln]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/constants/float64/max-ln - - - From 62a91f3b3883f4dd99bea7d884c919556a63dac4 Mon Sep 17 00:00:00 2001 From: Harsh <149176984+hrshya@users.noreply.github.com> Date: Mon, 24 Mar 2025 14:50:09 +0530 Subject: [PATCH 4/7] update index.js Signed-off-by: Harsh <149176984+hrshya@users.noreply.github.com> --- lib/node_modules/@stdlib/constants/float32/min-ln/lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/constants/float32/min-ln/lib/index.js b/lib/node_modules/@stdlib/constants/float32/min-ln/lib/index.js index 949ec83c65be..6dacc8b8ebd5 100644 --- a/lib/node_modules/@stdlib/constants/float32/min-ln/lib/index.js +++ b/lib/node_modules/@stdlib/constants/float32/min-ln/lib/index.js @@ -44,7 +44,7 @@ var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' ); * The number has the value * * ```tex -* -\ln \left( 2^{1023-1} \right) +* -\ln \left( 2^{127-1} \right) * ``` * * @constant From ed49835d7488d830277ce31b49c7996dd32b7875 Mon Sep 17 00:00:00 2001 From: Athan Date: Tue, 1 Apr 2025 22:59:42 -0700 Subject: [PATCH 5/7] Apply suggestions from code review Signed-off-by: Athan --- .../@stdlib/constants/float32/min-ln/lib/index.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/lib/node_modules/@stdlib/constants/float32/min-ln/lib/index.js b/lib/node_modules/@stdlib/constants/float32/min-ln/lib/index.js index 6dacc8b8ebd5..d6252cd160ec 100644 --- a/lib/node_modules/@stdlib/constants/float32/min-ln/lib/index.js +++ b/lib/node_modules/@stdlib/constants/float32/min-ln/lib/index.js @@ -29,11 +29,6 @@ * // returns -87.3365478515625 */ -// MODULES // - -var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' ); - - // MAIN // /** @@ -52,7 +47,7 @@ var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' ); * @default -87.3365478515625 * @see [IEEE 754]{@link https://en.wikipedia.org/wiki/IEEE_754-1985} */ -var FLOAT32_MIN_LN = float64ToFloat32( -87.3365478515625 ); +var FLOAT32_MIN_LN = -87.3365478515625; // EXPORTS // From f077670c46713aeb6a056d189cafb7d588935541 Mon Sep 17 00:00:00 2001 From: Athan Date: Tue, 1 Apr 2025 23:00:34 -0700 Subject: [PATCH 6/7] chore: fix keywords Signed-off-by: Athan --- .../@stdlib/constants/float32/min-ln/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/constants/float32/min-ln/package.json b/lib/node_modules/@stdlib/constants/float32/min-ln/package.json index 63715c4763aa..8de7dab1b5ec 100644 --- a/lib/node_modules/@stdlib/constants/float32/min-ln/package.json +++ b/lib/node_modules/@stdlib/constants/float32/min-ln/package.json @@ -60,9 +60,9 @@ "floating-point", "float32", "float", - "64bit", + "32bit", "ieee754", - "dbl", + "flt", "precision", "min", "normalized", From 7c09052430374d6396aa6a7ba651686b79cf24fe Mon Sep 17 00:00:00 2001 From: Athan Date: Tue, 1 Apr 2025 23:01:37 -0700 Subject: [PATCH 7/7] test: update assertion messages Signed-off-by: Athan --- .../@stdlib/constants/float32/min-ln/test/test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/constants/float32/min-ln/test/test.js b/lib/node_modules/@stdlib/constants/float32/min-ln/test/test.js index e1e4f2976e86..414533540510 100644 --- a/lib/node_modules/@stdlib/constants/float32/min-ln/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/min-ln/test/test.js @@ -37,7 +37,7 @@ tape( 'main export is a number', function test( t ) { }); tape( 'export is a single-precision floating-point number equal to the natural logarithm of the smallest normalized single-precision floating-point number', function test( t ) { - t.equal( FLOAT32_MIN_LN, -lnf( float64ToFloat32( pow( 2, 126 ) ) ), 'equals the logarithm of the smallest normalized single-precision floating-point number' ); - t.equal( FLOAT32_MIN_LN, lnf( SMALLEST_NORMAL ), 'equals the logarithm of the smallest normalized single-precision floating-point number' ); + t.equal( FLOAT32_MIN_LN, -lnf( float64ToFloat32( pow( 2, 126 ) ) ), 'returns expected value' ); + t.equal( FLOAT32_MIN_LN, lnf( SMALLEST_NORMAL ), 'returns expected value' ); t.end(); });