Full Code of masotime/json-url for AI

master f048e1b19376 cached
55 files
471.2 KB
168.0k tokens
757 symbols
1 requests
Download .txt
Showing preview only (492K chars total). Download the full file or copy to clipboard to get everything.
Repository: masotime/json-url
Branch: master
Commit: f048e1b19376
Files: 55
Total size: 471.2 KB

Directory structure:
gitextract_mxai2kco/

├── .babelrc
├── .editorconfig
├── .eslintignore
├── .eslintrc
├── .gitignore
├── .npmignore
├── .nycrc
├── .travis.yml
├── LICENSE
├── README.md
├── dist/
│   ├── browser/
│   │   ├── json-url-998.js
│   │   ├── json-url-998.js.LICENSE.txt
│   │   ├── json-url-lzma.js
│   │   ├── json-url-lzstring.js
│   │   ├── json-url-lzw.js
│   │   ├── json-url-msgpack.js
│   │   ├── json-url-safe64.js
│   │   ├── json-url-safe64.js.LICENSE.txt
│   │   ├── json-url-single.js
│   │   ├── json-url-single.js.LICENSE.txt
│   │   ├── json-url.js
│   │   └── json-url.js.LICENSE.txt
│   └── node/
│       ├── browser-index.js
│       ├── codecs/
│       │   ├── index.js
│       │   ├── lzma.js
│       │   ├── lzstring.js
│       │   ├── lzw.js
│       │   └── pack.js
│       ├── index.js
│       ├── loaders.js
│       └── main/
│           ├── browser-index.js
│           ├── codecs/
│           │   ├── index.js
│           │   ├── lzma.js
│           │   ├── lzstring.js
│           │   ├── lzw.js
│           │   └── pack.js
│           ├── index.js
│           └── loaders.js
├── eslint.config.js
├── examples/
│   └── browser/
│       └── test.html
├── karma.conf.js
├── package.json
├── src/
│   └── main/
│       ├── browser-index.js
│       ├── codecs/
│       │   ├── index.js
│       │   ├── lzma.js
│       │   ├── lzstring.js
│       │   ├── lzw.js
│       │   └── pack.js
│       ├── index.js
│       └── loaders.js
├── test/
│   ├── index.js
│   ├── perf.js
│   └── samples.json
├── webpack.config.js
└── webpack.config.single.js

================================================
FILE CONTENTS
================================================

================================================
FILE: .babelrc
================================================
{
	"presets": [
		"@babel/preset-env"
	],
	"plugins": [
		[
			"module-resolver",
			{
				"root": [
					"src"
				],
				"transformFunctions": [
					"require",
					"require.resolve",
					"import"
				]
			}
		],
		"dynamic-import-node",
		"@babel/plugin-syntax-dynamic-import",
		"@babel/plugin-syntax-import-meta",
		"@babel/plugin-proposal-class-properties",
		"@babel/plugin-proposal-json-strings",
		[
			"@babel/plugin-proposal-decorators",
			{
				"legacy": true
			}
		],
		"@babel/plugin-proposal-function-sent",
		"@babel/plugin-proposal-export-namespace-from",
		"@babel/plugin-proposal-numeric-separator",
		"@babel/plugin-proposal-throw-expressions",
		"@babel/plugin-proposal-export-default-from",
		"@babel/plugin-proposal-logical-assignment-operators",
		"@babel/plugin-proposal-optional-chaining",
		[
			"@babel/plugin-proposal-pipeline-operator",
			{
				"proposal": "minimal"
			}
		],
		"@babel/plugin-proposal-nullish-coalescing-operator",
		"@babel/plugin-proposal-do-expressions",
		"@babel/plugin-proposal-function-bind"
	],
	"env": {
		"test": {
			"plugins": [
				"istanbul"
			]
		}
	}
}


================================================
FILE: .editorconfig
================================================
# top-most EditorConfig file
root = true

[*]
charset = utf-8
end_of_line = lf
indent_style = tab
indent_size = 2
trim_trailing_whitespace = true

================================================
FILE: .eslintignore
================================================
dist/**/*

================================================
FILE: .eslintrc
================================================
{
  "parser": "babel-eslint",
  "plugins": [ "import" ],
  "extends": [ "eslint:recommended", "plugin:import/recommended" ],
  "settings": {
    "import/resolver": {
      "babel-module": {}
    }
  },
  "rules": {
    "no-undef": 2,
    "no-unused-vars": 2,
    "no-console": 0
  },
  "env": {
    "node": true,
    "es6": true
  },
  "parserOptions": {
    "ecmaVersion": 2015,
    "sourceType": "module",
    "ecmaFeatures": {
      "jsx": true,
      "experimentalObjectRestSpread": true,
      "forOf": true
    }
  }
}

================================================
FILE: .gitignore
================================================
node_modules
*.log
.DS_Store
coverage/
.nyc_output/
stats.json


================================================
FILE: .npmignore
================================================
*.log
test/
examples/
.DS_Store
coverage/
.nyc_output/

================================================
FILE: .nycrc
================================================
{
	"include": [ "src/**/*.js" ],
	"require": [ "@babel/register", "@babel/polyfill" ],
	"sourceMap": false,
	"instrument": false,
	"reporter": [ "text", "lcov" ]
}

================================================
FILE: .travis.yml
================================================
language: node_js
node_js:
  - "node"
  - "14"
  - "12"
  - "10"
after_success: npm run coverage
install: npm install

================================================
FILE: LICENSE
================================================
MIT License

Copyright (c) Facebook, Inc. and its affiliates.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.


================================================
FILE: README.md
================================================
# json-url

[![npm downloads][downloads-image]][downloads-url] [![Build Status][travis-image]][travis-url] [![Dependency Status][daviddm-image]][daviddm-url] [![Coverage Status][coverage-image]][coverage-url]

Generate URL-safe representations of some arbtirary JSON data in as small a space as possible that can be shared in a bookmark / link.

Although designed to work in Node, a standalone client-side library is provided that can be used directly on the browser.

## Usage

### Compress

```
	var codec = require('json-url')('lzw');
	var obj = { one: 1, two: 2, three: [1,2,3], four: 'red pineapples' };
	codec.compress(obj).then(result => console.log(result));
	/* Result: woTCo29uZQHCo3R3bwLCpXRocmVlwpMBAgPCpGZvdXLCrsSOZCBwacSDYXBwbGVz */
```

### Decompress

```
	var codec = require('json-url')('lzma');
	codec.decompress(someCompressedString).then(json => { /* operate on json */ })
```

### Stats

```
	var codec = require('json-url')('lzstring');
	codec.stats(obj).then(
		({ rawencoded, compressedencoded, compression }) => {
			console.log(`Raw URI-encoded JSON string length: ${rawencoded}`);
			console.log(`Compressed URI-encoded JSON string length: ${compressedencoded}`);
			console.log(`Compression ratio (raw / compressed): ${compression}`);
		}
	);
```

### Standalone Browser Bundle

```
<script type="text/javascript" src="/dist/browser/json-url.js"></script>
<script>
	const lib = JsonUrl('lzma'); // JsonUrl is added to the window object
	lib.compress(parsed).then(output => { result.value = output; });
</script>
```

To see it in action, download the source code and run `npm run example`, or simply visit [this link](http://jsbin.com/cayuhox).

* The browser bundle is generated using Webpack and consists of multiple chunks, with the main chunk entry point located at `dist/browser/json-url.js`. Chunks must be located in the same folder as the main module itself.
* I've tried my best to reduce the bundle sizes, but the module (at least the entry) is still surprisingly large on the browser (56kb minified, 20kb gzipped). Most of it is due to the buffer.js shim, and partly due to the regenerator-runtime - I may revisit this later to try and improve efficiency.

## Usage Notes

* Although not all algorithms are asynchronous, all functions return Promises to ensure compatibility.
* Instantiate an instance with appropriate compression codec before using.
* Valid codecs:
	* lzw
	* lzma
	* lzstring - runs lzstring against a stringified JSON instead of using MessagePack on JSON
	* pack - this just uses MessagePack and converts the binary buffer into a Base64 URL-safe representation, without any other compression

## Motivation

Typically when you want to shorten a long URL with large amounts of data parameters, the approach is to generate a "short URL" where compression is achieved by using a third-party service which stores the true URL and redirects the user (e.g. bit.ly or goo.gl).

However, if you want to:

* share bookmarks with virtually unlimited combinations of state and/or
* want to avoid the third-party dependency

you would encode the data structure (typically JSON) in your URL, but this often results in very large URLs.

This approach differs by removing that third-party dependency and encodes it using common compression algorithms such as LZW or LZMA.

Note: It is arguable that a custom dictionary / domain specific encoding would ultimately provide better compression, but here we want to
* avoid maintaining such a dictionary and/or
* retain cross-application compatibility (otherwise you need a shared dictionary)

## Approach

I explored several options, the most popular one being [MessagePack][1]. However, I noticed that it did not give the best possible compression as compared to [LZMA][2] and [LZW][3].

At first I tried to apply the binary compression directly on a stringified JSON, then I realised that packing it first resulted in better compression.

For small JS objects, LZW largely outperformed LZMA, but for the most part you'd probably be looking to compress large JSON data rather than small amounts (otherwise a simple stringify + base64 is sufficient). You can choose to use whatever codec suits you best.

In addition, there is now support for [LZSTRING][5], although the URI encoding still uses urlsafe-base64 because LZSTRING still uses unsafe characters via their `compressToURIEncodedString` method - notably the [`+` character][6]

Finally, I went with [urlsafe-base64][4] to encode it in a URL-friendly format.

## TODO

Find a way to improve bundle sizes for browser usage.

[1]: http://msgpack.org/index.html
[2]: https://www.npmjs.com/package/lzma
[3]: https://www.npmjs.com/package/node-lzw
[4]: https://www.npmjs.com/package/urlsafe-base64
[5]: http://pieroxy.net/blog/pages/lz-string/index.html
[6]: https://github.com/pieroxy/lz-string/blob/master/libs/lz-string.js#L15

[downloads-image]: https://img.shields.io/npm/dm/json-url.svg?style=flat-square
[downloads-url]: https://www.npmjs.com/package/json-url
[travis-image]: https://travis-ci.org/masotime/json-url.svg?bxeranch=master
[travis-url]: https://travis-ci.org/masotime/json-url
[daviddm-image]: https://david-dm.org/masotime/json-url.svg?theme=shields.io
[daviddm-url]: https://david-dm.org/masotime/json-url
[coverage-image]: https://coveralls.io/repos/github/masotime/json-url/badge.svg?branch=master
[coverage-url]: https://coveralls.io/github/masotime/json-url?branch=master


================================================
FILE: dist/browser/json-url-998.js
================================================
/*! For license information please see json-url-998.js.LICENSE.txt */
(self.webpackChunkJsonUrl=self.webpackChunkJsonUrl||[]).push([[998],{41:(t,e,r)=>{"use strict";var n=r(655),o=r(8068),i=r(9675),a=r(5795);t.exports=function(t,e,r){if(!t||"object"!=typeof t&&"function"!=typeof t)throw new i("`obj` must be an object or a function`");if("string"!=typeof e&&"symbol"!=typeof e)throw new i("`property` must be a string or a symbol`");if(arguments.length>3&&"boolean"!=typeof arguments[3]&&null!==arguments[3])throw new i("`nonEnumerable`, if provided, must be a boolean or null");if(arguments.length>4&&"boolean"!=typeof arguments[4]&&null!==arguments[4])throw new i("`nonWritable`, if provided, must be a boolean or null");if(arguments.length>5&&"boolean"!=typeof arguments[5]&&null!==arguments[5])throw new i("`nonConfigurable`, if provided, must be a boolean or null");if(arguments.length>6&&"boolean"!=typeof arguments[6])throw new i("`loose`, if provided, must be a boolean");var u=arguments.length>3?arguments[3]:null,s=arguments.length>4?arguments[4]:null,c=arguments.length>5?arguments[5]:null,f=arguments.length>6&&arguments[6],l=!!a&&a(t,e);if(n)n(t,e,{configurable:null===c&&l?l.configurable:!c,enumerable:null===u&&l?l.enumerable:!u,value:r,writable:null===s&&l?l.writable:!s});else{if(!f&&(u||s||c))throw new o("This environment does not support defining a property as non-configurable, non-writable, or non-enumerable.");t[e]=r}}},63:(t,e,r)=>{"use strict";const n=r(8399).Transform,o=r(6698),i=r(4829);function a(t){(t=t||{}).objectMode=!0,t.highWaterMark=16,n.call(this,t),this._msgpack=t.msgpack}function u(t){if(!(this instanceof u))return(t=t||{}).msgpack=this,new u(t);a.call(this,t),this._wrap="wrap"in t&&t.wrap}function s(t){if(!(this instanceof s))return(t=t||{}).msgpack=this,new s(t);a.call(this,t),this._chunks=i(),this._wrap="wrap"in t&&t.wrap}o(a,n),o(u,a),u.prototype._transform=function(t,e,r){let n=null;try{n=this._msgpack.encode(this._wrap?t.value:t).slice(0)}catch(t){return this.emit("error",t),r()}this.push(n),r()},o(s,a),s.prototype._transform=function(t,e,r){t&&this._chunks.append(t);try{let t=this._msgpack.decode(this._chunks);this._wrap&&(t={value:t}),this.push(t)}catch(t){return void(t instanceof this._msgpack.IncompleteBufferError?r():this.emit("error",t))}this._chunks.length>0?this._transform(null,e,r):r()},t.exports.decoder=s,t.exports.encoder=u},76:t=>{"use strict";t.exports=Function.prototype.call},345:(t,e,r)=>{t.exports=r(7007).EventEmitter},414:t=>{"use strict";t.exports=Math.round},453:(t,e,r)=>{"use strict";var n,o=r(9612),i=r(9383),a=r(1237),u=r(9290),s=r(9538),c=r(8068),f=r(9675),l=r(5345),p=r(1514),h=r(8968),y=r(6188),d=r(8002),g=r(5880),b=r(414),v=r(3093),m=Function,w=function(t){try{return m('"use strict"; return ('+t+").constructor;")()}catch(t){}},S=r(5795),E=r(655),_=function(){throw new f},O=S?function(){try{return _}catch(t){try{return S(arguments,"callee").get}catch(t){return _}}}():_,j=r(4039)(),A=r(3628),x=r(1064),R=r(8648),k=r(1002),P=r(76),T={},M="undefined"!=typeof Uint8Array&&A?A(Uint8Array):n,I={__proto__:null,"%AggregateError%":"undefined"==typeof AggregateError?n:AggregateError,"%Array%":Array,"%ArrayBuffer%":"undefined"==typeof ArrayBuffer?n:ArrayBuffer,"%ArrayIteratorPrototype%":j&&A?A([][Symbol.iterator]()):n,"%AsyncFromSyncIteratorPrototype%":n,"%AsyncFunction%":T,"%AsyncGenerator%":T,"%AsyncGeneratorFunction%":T,"%AsyncIteratorPrototype%":T,"%Atomics%":"undefined"==typeof Atomics?n:Atomics,"%BigInt%":"undefined"==typeof BigInt?n:BigInt,"%BigInt64Array%":"undefined"==typeof BigInt64Array?n:BigInt64Array,"%BigUint64Array%":"undefined"==typeof BigUint64Array?n:BigUint64Array,"%Boolean%":Boolean,"%DataView%":"undefined"==typeof DataView?n:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":i,"%eval%":eval,"%EvalError%":a,"%Float16Array%":"undefined"==typeof Float16Array?n:Float16Array,"%Float32Array%":"undefined"==typeof Float32Array?n:Float32Array,"%Float64Array%":"undefined"==typeof Float64Array?n:Float64Array,"%FinalizationRegistry%":"undefined"==typeof FinalizationRegistry?n:FinalizationRegistry,"%Function%":m,"%GeneratorFunction%":T,"%Int8Array%":"undefined"==typeof Int8Array?n:Int8Array,"%Int16Array%":"undefined"==typeof Int16Array?n:Int16Array,"%Int32Array%":"undefined"==typeof Int32Array?n:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":j&&A?A(A([][Symbol.iterator]())):n,"%JSON%":"object"==typeof JSON?JSON:n,"%Map%":"undefined"==typeof Map?n:Map,"%MapIteratorPrototype%":"undefined"!=typeof Map&&j&&A?A((new Map)[Symbol.iterator]()):n,"%Math%":Math,"%Number%":Number,"%Object%":o,"%Object.getOwnPropertyDescriptor%":S,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":"undefined"==typeof Promise?n:Promise,"%Proxy%":"undefined"==typeof Proxy?n:Proxy,"%RangeError%":u,"%ReferenceError%":s,"%Reflect%":"undefined"==typeof Reflect?n:Reflect,"%RegExp%":RegExp,"%Set%":"undefined"==typeof Set?n:Set,"%SetIteratorPrototype%":"undefined"!=typeof Set&&j&&A?A((new Set)[Symbol.iterator]()):n,"%SharedArrayBuffer%":"undefined"==typeof SharedArrayBuffer?n:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":j&&A?A(""[Symbol.iterator]()):n,"%Symbol%":j?Symbol:n,"%SyntaxError%":c,"%ThrowTypeError%":O,"%TypedArray%":M,"%TypeError%":f,"%Uint8Array%":"undefined"==typeof Uint8Array?n:Uint8Array,"%Uint8ClampedArray%":"undefined"==typeof Uint8ClampedArray?n:Uint8ClampedArray,"%Uint16Array%":"undefined"==typeof Uint16Array?n:Uint16Array,"%Uint32Array%":"undefined"==typeof Uint32Array?n:Uint32Array,"%URIError%":l,"%WeakMap%":"undefined"==typeof WeakMap?n:WeakMap,"%WeakRef%":"undefined"==typeof WeakRef?n:WeakRef,"%WeakSet%":"undefined"==typeof WeakSet?n:WeakSet,"%Function.prototype.call%":P,"%Function.prototype.apply%":k,"%Object.defineProperty%":E,"%Object.getPrototypeOf%":x,"%Math.abs%":p,"%Math.floor%":h,"%Math.max%":y,"%Math.min%":d,"%Math.pow%":g,"%Math.round%":b,"%Math.sign%":v,"%Reflect.getPrototypeOf%":R};if(A)try{null.error}catch(t){var L=A(A(t));I["%Error.prototype%"]=L}var N=function t(e){var r;if("%AsyncFunction%"===e)r=w("async function () {}");else if("%GeneratorFunction%"===e)r=w("function* () {}");else if("%AsyncGeneratorFunction%"===e)r=w("async function* () {}");else if("%AsyncGenerator%"===e){var n=t("%AsyncGeneratorFunction%");n&&(r=n.prototype)}else if("%AsyncIteratorPrototype%"===e){var o=t("%AsyncGenerator%");o&&A&&(r=A(o.prototype))}return I[e]=r,r},U={__proto__:null,"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},B=r(6743),F=r(9957),D=B.call(P,Array.prototype.concat),C=B.call(k,Array.prototype.splice),q=B.call(P,String.prototype.replace),W=B.call(P,String.prototype.slice),G=B.call(P,RegExp.prototype.exec),V=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,$=/\\(\\)?/g,H=function(t,e){var r,n=t;if(F(U,n)&&(n="%"+(r=U[n])[0]+"%"),F(I,n)){var o=I[n];if(o===T&&(o=N(n)),void 0===o&&!e)throw new f("intrinsic "+t+" exists, but is not available. Please file an issue!");return{alias:r,name:n,value:o}}throw new c("intrinsic "+t+" does not exist!")};t.exports=function(t,e){if("string"!=typeof t||0===t.length)throw new f("intrinsic name must be a non-empty string");if(arguments.length>1&&"boolean"!=typeof e)throw new f('"allowMissing" argument must be a boolean');if(null===G(/^%?[^%]*%?$/,t))throw new c("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var r=function(t){var e=W(t,0,1),r=W(t,-1);if("%"===e&&"%"!==r)throw new c("invalid intrinsic syntax, expected closing `%`");if("%"===r&&"%"!==e)throw new c("invalid intrinsic syntax, expected opening `%`");var n=[];return q(t,V,function(t,e,r,o){n[n.length]=r?q(o,$,"$1"):e||t}),n}(t),n=r.length>0?r[0]:"",o=H("%"+n+"%",e),i=o.name,a=o.value,u=!1,s=o.alias;s&&(n=s[0],C(r,D([0,1],s)));for(var l=1,p=!0;l<r.length;l+=1){var h=r[l],y=W(h,0,1),d=W(h,-1);if(('"'===y||"'"===y||"`"===y||'"'===d||"'"===d||"`"===d)&&y!==d)throw new c("property names with quotes must have matching quotes");if("constructor"!==h&&p||(u=!0),F(I,i="%"+(n+="."+h)+"%"))a=I[i];else if(null!=a){if(!(h in a)){if(!e)throw new f("base intrinsic for "+t+" exists, but the property is not available.");return}if(S&&l+1>=r.length){var g=S(a,h);a=(p=!!g)&&"get"in g&&!("originalValue"in g.get)?g.get:a[h]}else p=F(a,h),a=a[h];p&&!u&&(I[i]=a)}}return a}},487:(t,e,r)=>{"use strict";var n=r(6897),o=r(655),i=r(3126),a=r(2205);t.exports=function(t){var e=i(arguments),r=t.length-(arguments.length-1);return n(e,1+(r>0?r:0),!0)},o?o(t.exports,"apply",{value:a}):t.exports.apply=a},537:(t,e,r)=>{var n=r(5606),o=Object.getOwnPropertyDescriptors||function(t){for(var e=Object.keys(t),r={},n=0;n<e.length;n++)r[e[n]]=Object.getOwnPropertyDescriptor(t,e[n]);return r},i=/%[sdj%]/g;e.format=function(t){if(!v(t)){for(var e=[],r=0;r<arguments.length;r++)e.push(s(arguments[r]));return e.join(" ")}r=1;for(var n=arguments,o=n.length,a=String(t).replace(i,function(t){if("%%"===t)return"%";if(r>=o)return t;switch(t){case"%s":return String(n[r++]);case"%d":return Number(n[r++]);case"%j":try{return JSON.stringify(n[r++])}catch(t){return"[Circular]"}default:return t}}),u=n[r];r<o;u=n[++r])g(u)||!S(u)?a+=" "+u:a+=" "+s(u);return a},e.deprecate=function(t,r){if(void 0!==n&&!0===n.noDeprecation)return t;if(void 0===n)return function(){return e.deprecate(t,r).apply(this,arguments)};var o=!1;return function(){if(!o){if(n.throwDeprecation)throw new Error(r);n.traceDeprecation?console.trace(r):console.error(r),o=!0}return t.apply(this,arguments)}};var a={},u=/^$/;function s(t,r){var n={seen:[],stylize:f};return arguments.length>=3&&(n.depth=arguments[2]),arguments.length>=4&&(n.colors=arguments[3]),d(r)?n.showHidden=r:r&&e._extend(n,r),m(n.showHidden)&&(n.showHidden=!1),m(n.depth)&&(n.depth=2),m(n.colors)&&(n.colors=!1),m(n.customInspect)&&(n.customInspect=!0),n.colors&&(n.stylize=c),l(n,t,n.depth)}function c(t,e){var r=s.styles[e];return r?"["+s.colors[r][0]+"m"+t+"["+s.colors[r][1]+"m":t}function f(t,e){return t}function l(t,r,n){if(t.customInspect&&r&&O(r.inspect)&&r.inspect!==e.inspect&&(!r.constructor||r.constructor.prototype!==r)){var o=r.inspect(n,t);return v(o)||(o=l(t,o,n)),o}var i=function(t,e){if(m(e))return t.stylize("undefined","undefined");if(v(e)){var r="'"+JSON.stringify(e).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return t.stylize(r,"string")}if(b(e))return t.stylize(""+e,"number");if(d(e))return t.stylize(""+e,"boolean");if(g(e))return t.stylize("null","null")}(t,r);if(i)return i;var a=Object.keys(r),u=function(t){var e={};return t.forEach(function(t,r){e[t]=!0}),e}(a);if(t.showHidden&&(a=Object.getOwnPropertyNames(r)),_(r)&&(a.indexOf("message")>=0||a.indexOf("description")>=0))return p(r);if(0===a.length){if(O(r)){var s=r.name?": "+r.name:"";return t.stylize("[Function"+s+"]","special")}if(w(r))return t.stylize(RegExp.prototype.toString.call(r),"regexp");if(E(r))return t.stylize(Date.prototype.toString.call(r),"date");if(_(r))return p(r)}var c,f="",S=!1,j=["{","}"];(y(r)&&(S=!0,j=["[","]"]),O(r))&&(f=" [Function"+(r.name?": "+r.name:"")+"]");return w(r)&&(f=" "+RegExp.prototype.toString.call(r)),E(r)&&(f=" "+Date.prototype.toUTCString.call(r)),_(r)&&(f=" "+p(r)),0!==a.length||S&&0!=r.length?n<0?w(r)?t.stylize(RegExp.prototype.toString.call(r),"regexp"):t.stylize("[Object]","special"):(t.seen.push(r),c=S?function(t,e,r,n,o){for(var i=[],a=0,u=e.length;a<u;++a)R(e,String(a))?i.push(h(t,e,r,n,String(a),!0)):i.push("");return o.forEach(function(o){o.match(/^\d+$/)||i.push(h(t,e,r,n,o,!0))}),i}(t,r,n,u,a):a.map(function(e){return h(t,r,n,u,e,S)}),t.seen.pop(),function(t,e,r){var n=t.reduce(function(t,e){return e.indexOf("\n")>=0&&0,t+e.replace(/\u001b\[\d\d?m/g,"").length+1},0);if(n>60)return r[0]+(""===e?"":e+"\n ")+" "+t.join(",\n  ")+" "+r[1];return r[0]+e+" "+t.join(", ")+" "+r[1]}(c,f,j)):j[0]+f+j[1]}function p(t){return"["+Error.prototype.toString.call(t)+"]"}function h(t,e,r,n,o,i){var a,u,s;if((s=Object.getOwnPropertyDescriptor(e,o)||{value:e[o]}).get?u=s.set?t.stylize("[Getter/Setter]","special"):t.stylize("[Getter]","special"):s.set&&(u=t.stylize("[Setter]","special")),R(n,o)||(a="["+o+"]"),u||(t.seen.indexOf(s.value)<0?(u=g(r)?l(t,s.value,null):l(t,s.value,r-1)).indexOf("\n")>-1&&(u=i?u.split("\n").map(function(t){return"  "+t}).join("\n").slice(2):"\n"+u.split("\n").map(function(t){return"   "+t}).join("\n")):u=t.stylize("[Circular]","special")),m(a)){if(i&&o.match(/^\d+$/))return u;(a=JSON.stringify(""+o)).match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(a=a.slice(1,-1),a=t.stylize(a,"name")):(a=a.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),a=t.stylize(a,"string"))}return a+": "+u}function y(t){return Array.isArray(t)}function d(t){return"boolean"==typeof t}function g(t){return null===t}function b(t){return"number"==typeof t}function v(t){return"string"==typeof t}function m(t){return void 0===t}function w(t){return S(t)&&"[object RegExp]"===j(t)}function S(t){return"object"==typeof t&&null!==t}function E(t){return S(t)&&"[object Date]"===j(t)}function _(t){return S(t)&&("[object Error]"===j(t)||t instanceof Error)}function O(t){return"function"==typeof t}function j(t){return Object.prototype.toString.call(t)}function A(t){return t<10?"0"+t.toString(10):t.toString(10)}e.debuglog=function(t){if(t=t.toUpperCase(),!a[t])if(u.test(t)){var r=n.pid;a[t]=function(){var n=e.format.apply(e,arguments);console.error("%s %d: %s",t,r,n)}}else a[t]=function(){};return a[t]},e.inspect=s,s.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},s.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"},e.types=r(9032),e.isArray=y,e.isBoolean=d,e.isNull=g,e.isNullOrUndefined=function(t){return null==t},e.isNumber=b,e.isString=v,e.isSymbol=function(t){return"symbol"==typeof t},e.isUndefined=m,e.isRegExp=w,e.types.isRegExp=w,e.isObject=S,e.isDate=E,e.types.isDate=E,e.isError=_,e.types.isNativeError=_,e.isFunction=O,e.isPrimitive=function(t){return null===t||"boolean"==typeof t||"number"==typeof t||"string"==typeof t||"symbol"==typeof t||void 0===t},e.isBuffer=r(1135);var x=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function R(t,e){return Object.prototype.hasOwnProperty.call(t,e)}e.log=function(){var t,r;console.log("%s - %s",(t=new Date,r=[A(t.getHours()),A(t.getMinutes()),A(t.getSeconds())].join(":"),[t.getDate(),x[t.getMonth()],r].join(" ")),e.format.apply(e,arguments))},e.inherits=r(6698),e._extend=function(t,e){if(!e||!S(e))return t;for(var r=Object.keys(e),n=r.length;n--;)t[r[n]]=e[r[n]];return t};var k="undefined"!=typeof Symbol?Symbol("util.promisify.custom"):void 0;function P(t,e){if(!t){var r=new Error("Promise was rejected with a falsy value");r.reason=t,t=r}return e(t)}e.promisify=function(t){if("function"!=typeof t)throw new TypeError('The "original" argument must be of type Function');if(k&&t[k]){var e;if("function"!=typeof(e=t[k]))throw new TypeError('The "util.promisify.custom" argument must be of type Function');return Object.defineProperty(e,k,{value:e,enumerable:!1,writable:!1,configurable:!0}),e}function e(){for(var e,r,n=new Promise(function(t,n){e=t,r=n}),o=[],i=0;i<arguments.length;i++)o.push(arguments[i]);o.push(function(t,n){t?r(t):e(n)});try{t.apply(this,o)}catch(t){r(t)}return n}return Object.setPrototypeOf(e,Object.getPrototypeOf(t)),k&&Object.defineProperty(e,k,{value:e,enumerable:!1,writable:!1,configurable:!0}),Object.defineProperties(e,o(t))},e.promisify.custom=k,e.callbackify=function(t){if("function"!=typeof t)throw new TypeError('The "original" argument must be of type Function');function e(){for(var e=[],r=0;r<arguments.length;r++)e.push(arguments[r]);var o=e.pop();if("function"!=typeof o)throw new TypeError("The last argument must be of type Function");var i=this,a=function(){return o.apply(i,arguments)};t.apply(this,e).then(function(t){n.nextTick(a.bind(null,null,t))},function(t){n.nextTick(P.bind(null,t,a))})}return Object.setPrototypeOf(e,Object.getPrototypeOf(t)),Object.defineProperties(e,o(t)),e}},592:(t,e,r)=>{"use strict";var n=r(655),o=function(){return!!n};o.hasArrayLengthDefineBug=function(){if(!n)return null;try{return 1!==n([],"length",{value:1}).length}catch(t){return!0}},t.exports=o},655:t=>{"use strict";var e=Object.defineProperty||!1;if(e)try{e({},"a",{value:1})}catch(t){e=!1}t.exports=e},1002:t=>{"use strict";t.exports=Function.prototype.apply},1064:(t,e,r)=>{"use strict";var n=r(9612);t.exports=n.getPrototypeOf||null},1093:t=>{"use strict";var e=Object.prototype.toString;t.exports=function(t){var r=e.call(t),n="[object Arguments]"===r;return n||(n="[object Array]"!==r&&null!==t&&"object"==typeof t&&"number"==typeof t.length&&t.length>=0&&"[object Function]"===e.call(t.callee)),n}},1135:t=>{t.exports=function(t){return t&&"object"==typeof t&&"function"==typeof t.copy&&"function"==typeof t.fill&&"function"==typeof t.readUInt8}},1189:(t,e,r)=>{"use strict";var n=Array.prototype.slice,o=r(1093),i=Object.keys,a=i?function(t){return i(t)}:r(8875),u=Object.keys;a.shim=function(){if(Object.keys){var t=function(){var t=Object.keys(arguments);return t&&t.length===arguments.length}(1,2);t||(Object.keys=function(t){return o(t)?u(n.call(t)):u(t)})}else Object.keys=a;return Object.keys||a},t.exports=a},1237:t=>{"use strict";t.exports=EvalError},1333:t=>{"use strict";t.exports=function(){if("function"!=typeof Symbol||"function"!=typeof Object.getOwnPropertySymbols)return!1;if("symbol"==typeof Symbol.iterator)return!0;var t={},e=Symbol("test"),r=Object(e);if("string"==typeof e)return!1;if("[object Symbol]"!==Object.prototype.toString.call(e))return!1;if("[object Symbol]"!==Object.prototype.toString.call(r))return!1;for(var n in t[e]=42,t)return!1;if("function"==typeof Object.keys&&0!==Object.keys(t).length)return!1;if("function"==typeof Object.getOwnPropertyNames&&0!==Object.getOwnPropertyNames(t).length)return!1;var o=Object.getOwnPropertySymbols(t);if(1!==o.length||o[0]!==e)return!1;if(!Object.prototype.propertyIsEnumerable.call(t,e))return!1;if("function"==typeof Object.getOwnPropertyDescriptor){var i=Object.getOwnPropertyDescriptor(t,e);if(42!==i.value||!0!==i.enumerable)return!1}return!0}},1514:t=>{"use strict";t.exports=Math.abs},2205:(t,e,r)=>{"use strict";var n=r(6743),o=r(1002),i=r(3144);t.exports=function(){return i(n,o,arguments)}},2299:(t,e,r)=>{"use strict";function n(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,i,a,u=[],s=!0,c=!1;try{if(i=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;s=!1}else for(;!(s=(n=i.call(r)).done)&&(u.push(n.value),u.length!==e);s=!0);}catch(t){c=!0,o=t}finally{try{if(!s&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(c)throw o}}return u}}(t,e)||function(t,e){if(!t)return;if("string"==typeof t)return o(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);"Object"===r&&t.constructor&&(r=t.constructor.name);if("Map"===r||"Set"===r)return Array.from(t);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return o(t,e)}(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function o(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function i(t){return i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},i(t)}var a=void 0!==/a/g.flags,u=function(t){var e=[];return t.forEach(function(t){return e.push(t)}),e},s=function(t){var e=[];return t.forEach(function(t,r){return e.push([r,t])}),e},c=Object.is?Object.is:r(7653),f=Object.getOwnPropertySymbols?Object.getOwnPropertySymbols:function(){return[]},l=Number.isNaN?Number.isNaN:r(4133);function p(t){return t.call.bind(t)}var h=p(Object.prototype.hasOwnProperty),y=p(Object.prototype.propertyIsEnumerable),d=p(Object.prototype.toString),g=r(537).types,b=g.isAnyArrayBuffer,v=g.isArrayBufferView,m=g.isDate,w=g.isMap,S=g.isRegExp,E=g.isSet,_=g.isNativeError,O=g.isBoxedPrimitive,j=g.isNumberObject,A=g.isStringObject,x=g.isBooleanObject,R=g.isBigIntObject,k=g.isSymbolObject,P=g.isFloat32Array,T=g.isFloat64Array;function M(t){if(0===t.length||t.length>10)return!0;for(var e=0;e<t.length;e++){var r=t.charCodeAt(e);if(r<48||r>57)return!0}return 10===t.length&&t>=Math.pow(2,32)}function I(t){return Object.keys(t).filter(M).concat(f(t).filter(Object.prototype.propertyIsEnumerable.bind(t)))}function L(t,e){if(t===e)return 0;for(var r=t.length,n=e.length,o=0,i=Math.min(r,n);o<i;++o)if(t[o]!==e[o]){r=t[o],n=e[o];break}return r<n?-1:n<r?1:0}function N(t,e,r,n){if(t===e)return 0!==t||(!r||c(t,e));if(r){if("object"!==i(t))return"number"==typeof t&&l(t)&&l(e);if("object"!==i(e)||null===t||null===e)return!1;if(Object.getPrototypeOf(t)!==Object.getPrototypeOf(e))return!1}else{if(null===t||"object"!==i(t))return(null===e||"object"!==i(e))&&t==e;if(null===e||"object"!==i(e))return!1}var o,u,s,f,p=d(t);if(p!==d(e))return!1;if(Array.isArray(t)){if(t.length!==e.length)return!1;var h=I(t),y=I(e);return h.length===y.length&&B(t,e,r,n,1,h)}if("[object Object]"===p&&(!w(t)&&w(e)||!E(t)&&E(e)))return!1;if(m(t)){if(!m(e)||Date.prototype.getTime.call(t)!==Date.prototype.getTime.call(e))return!1}else if(S(t)){if(!S(e)||(s=t,f=e,!(a?s.source===f.source&&s.flags===f.flags:RegExp.prototype.toString.call(s)===RegExp.prototype.toString.call(f))))return!1}else if(_(t)||t instanceof Error){if(t.message!==e.message||t.name!==e.name)return!1}else{if(v(t)){if(r||!P(t)&&!T(t)){if(!function(t,e){return t.byteLength===e.byteLength&&0===L(new Uint8Array(t.buffer,t.byteOffset,t.byteLength),new Uint8Array(e.buffer,e.byteOffset,e.byteLength))}(t,e))return!1}else if(!function(t,e){if(t.byteLength!==e.byteLength)return!1;for(var r=0;r<t.byteLength;r++)if(t[r]!==e[r])return!1;return!0}(t,e))return!1;var g=I(t),M=I(e);return g.length===M.length&&B(t,e,r,n,0,g)}if(E(t))return!(!E(e)||t.size!==e.size)&&B(t,e,r,n,2);if(w(t))return!(!w(e)||t.size!==e.size)&&B(t,e,r,n,3);if(b(t)){if(u=e,(o=t).byteLength!==u.byteLength||0!==L(new Uint8Array(o),new Uint8Array(u)))return!1}else if(O(t)&&!function(t,e){return j(t)?j(e)&&c(Number.prototype.valueOf.call(t),Number.prototype.valueOf.call(e)):A(t)?A(e)&&String.prototype.valueOf.call(t)===String.prototype.valueOf.call(e):x(t)?x(e)&&Boolean.prototype.valueOf.call(t)===Boolean.prototype.valueOf.call(e):R(t)?R(e)&&BigInt.prototype.valueOf.call(t)===BigInt.prototype.valueOf.call(e):k(e)&&Symbol.prototype.valueOf.call(t)===Symbol.prototype.valueOf.call(e)}(t,e))return!1}return B(t,e,r,n,0)}function U(t,e){return e.filter(function(e){return y(t,e)})}function B(t,e,r,o,a,c){if(5===arguments.length){c=Object.keys(t);var l=Object.keys(e);if(c.length!==l.length)return!1}for(var p=0;p<c.length;p++)if(!h(e,c[p]))return!1;if(r&&5===arguments.length){var d=f(t);if(0!==d.length){var g=0;for(p=0;p<d.length;p++){var b=d[p];if(y(t,b)){if(!y(e,b))return!1;c.push(b),g++}else if(y(e,b))return!1}var v=f(e);if(d.length!==v.length&&U(e,v).length!==g)return!1}else{var m=f(e);if(0!==m.length&&0!==U(e,m).length)return!1}}if(0===c.length&&(0===a||1===a&&0===t.length||0===t.size))return!0;if(void 0===o)o={val1:new Map,val2:new Map,position:0};else{var w=o.val1.get(t);if(void 0!==w){var S=o.val2.get(e);if(void 0!==S)return w===S}o.position++}o.val1.set(t,o.position),o.val2.set(e,o.position);var E=function(t,e,r,o,a,c){var f=0;if(2===c){if(!function(t,e,r,n){for(var o=null,a=u(t),s=0;s<a.length;s++){var c=a[s];if("object"===i(c)&&null!==c)null===o&&(o=new Set),o.add(c);else if(!e.has(c)){if(r)return!1;if(!C(t,e,c))return!1;null===o&&(o=new Set),o.add(c)}}if(null!==o){for(var f=u(e),l=0;l<f.length;l++){var p=f[l];if("object"===i(p)&&null!==p){if(!F(o,p,r,n))return!1}else if(!r&&!t.has(p)&&!F(o,p,r,n))return!1}return 0===o.size}return!0}(t,e,r,a))return!1}else if(3===c){if(!function(t,e,r,o){for(var a=null,u=s(t),c=0;c<u.length;c++){var f=n(u[c],2),l=f[0],p=f[1];if("object"===i(l)&&null!==l)null===a&&(a=new Set),a.add(l);else{var h=e.get(l);if(void 0===h&&!e.has(l)||!N(p,h,r,o)){if(r)return!1;if(!q(t,e,l,p,o))return!1;null===a&&(a=new Set),a.add(l)}}}if(null!==a){for(var y=s(e),d=0;d<y.length;d++){var g=n(y[d],2),b=g[0],v=g[1];if("object"===i(b)&&null!==b){if(!W(a,t,b,v,r,o))return!1}else if(!(r||t.has(b)&&N(t.get(b),v,!1,o)||W(a,t,b,v,!1,o)))return!1}return 0===a.size}return!0}(t,e,r,a))return!1}else if(1===c)for(;f<t.length;f++){if(!h(t,f)){if(h(e,f))return!1;for(var l=Object.keys(t);f<l.length;f++){var p=l[f];if(!h(e,p)||!N(t[p],e[p],r,a))return!1}return l.length===Object.keys(e).length}if(!h(e,f)||!N(t[f],e[f],r,a))return!1}for(f=0;f<o.length;f++){var y=o[f];if(!N(t[y],e[y],r,a))return!1}return!0}(t,e,r,c,o,a);return o.val1.delete(t),o.val2.delete(e),E}function F(t,e,r,n){for(var o=u(t),i=0;i<o.length;i++){var a=o[i];if(N(e,a,r,n))return t.delete(a),!0}return!1}function D(t){switch(i(t)){case"undefined":return null;case"object":return;case"symbol":return!1;case"string":t=+t;case"number":if(l(t))return!1}return!0}function C(t,e,r){var n=D(r);return null!=n?n:e.has(n)&&!t.has(n)}function q(t,e,r,n,o){var i=D(r);if(null!=i)return i;var a=e.get(i);return!(void 0===a&&!e.has(i)||!N(n,a,!1,o))&&(!t.has(i)&&N(n,a,!1,o))}function W(t,e,r,n,o,i){for(var a=u(t),s=0;s<a.length;s++){var c=a[s];if(N(r,c,o,i)&&N(n,e.get(c),o,i))return t.delete(c),!0}return!1}t.exports={isDeepEqual:function(t,e){return N(t,e,false)},isDeepStrictEqual:function(t,e){return N(t,e,true)}}},2464:(t,e,r)=>{"use strict";var n=r(8452),o=r(6642);t.exports=function(){var t=o();return n(Number,{isNaN:t},{isNaN:function(){return Number.isNaN!==t}}),t}},2682:(t,e,r)=>{"use strict";var n=r(9600),o=Object.prototype.toString,i=Object.prototype.hasOwnProperty;t.exports=function(t,e,r){if(!n(e))throw new TypeError("iterator must be a function");var a,u;arguments.length>=3&&(a=r),u=t,"[object Array]"===o.call(u)?function(t,e,r){for(var n=0,o=t.length;n<o;n++)i.call(t,n)&&(null==r?e(t[n],n,t):e.call(r,t[n],n,t))}(t,e,a):"string"==typeof t?function(t,e,r){for(var n=0,o=t.length;n<o;n++)null==r?e(t.charAt(n),n,t):e.call(r,t.charAt(n),n,t)}(t,e,a):function(t,e,r){for(var n in t)i.call(t,n)&&(null==r?e(t[n],n,t):e.call(r,t[n],n,t))}(t,e,a)}},2726:(t,e,r)=>{"use strict";function n(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter(function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable})),r.push.apply(r,n)}return r}function o(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?n(Object(r),!0).forEach(function(e){i(t,e,r[e])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):n(Object(r)).forEach(function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))})}return t}function i(t,e,r){return(e=u(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function a(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,u(n.key),n)}}function u(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,e||"default");if("object"!=typeof n)return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:String(e)}var s=r(8287).Buffer,c=r(5340).inspect,f=c&&c.custom||"inspect";function l(t,e,r){s.prototype.copy.call(t,e,r)}t.exports=function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.head=null,this.tail=null,this.length=0}var e,r,n;return e=t,(r=[{key:"push",value:function(t){var e={data:t,next:null};this.length>0?this.tail.next=e:this.head=e,this.tail=e,++this.length}},{key:"unshift",value:function(t){var e={data:t,next:this.head};0===this.length&&(this.tail=e),this.head=e,++this.length}},{key:"shift",value:function(){if(0!==this.length){var t=this.head.data;return 1===this.length?this.head=this.tail=null:this.head=this.head.next,--this.length,t}}},{key:"clear",value:function(){this.head=this.tail=null,this.length=0}},{key:"join",value:function(t){if(0===this.length)return"";for(var e=this.head,r=""+e.data;e=e.next;)r+=t+e.data;return r}},{key:"concat",value:function(t){if(0===this.length)return s.alloc(0);for(var e=s.allocUnsafe(t>>>0),r=this.head,n=0;r;)l(r.data,e,n),n+=r.data.length,r=r.next;return e}},{key:"consume",value:function(t,e){var r;return t<this.head.data.length?(r=this.head.data.slice(0,t),this.head.data=this.head.data.slice(t)):r=t===this.head.data.length?this.shift():e?this._getString(t):this._getBuffer(t),r}},{key:"first",value:function(){return this.head.data}},{key:"_getString",value:function(t){var e=this.head,r=1,n=e.data;for(t-=n.length;e=e.next;){var o=e.data,i=t>o.length?o.length:t;if(i===o.length?n+=o:n+=o.slice(0,t),0===(t-=i)){i===o.length?(++r,e.next?this.head=e.next:this.head=this.tail=null):(this.head=e,e.data=o.slice(i));break}++r}return this.length-=r,n}},{key:"_getBuffer",value:function(t){var e=s.allocUnsafe(t),r=this.head,n=1;for(r.data.copy(e),t-=r.data.length;r=r.next;){var o=r.data,i=t>o.length?o.length:t;if(o.copy(e,e.length-t,0,i),0===(t-=i)){i===o.length?(++n,r.next?this.head=r.next:this.head=this.tail=null):(this.head=r,r.data=o.slice(i));break}++n}return this.length-=n,e}},{key:f,value:function(t,e){return c(this,o(o({},e),{},{depth:0,customInspect:!1}))}}])&&a(e.prototype,r),n&&a(e,n),Object.defineProperty(e,"prototype",{writable:!1}),t}()},2861:(t,e,r)=>{var n=r(8287),o=n.Buffer;function i(t,e){for(var r in t)e[r]=t[r]}function a(t,e,r){return o(t,e,r)}o.from&&o.alloc&&o.allocUnsafe&&o.allocUnsafeSlow?t.exports=n:(i(n,e),e.Buffer=a),a.prototype=Object.create(o.prototype),i(o,a),a.from=function(t,e,r){if("number"==typeof t)throw new TypeError("Argument must not be a number");return o(t,e,r)},a.alloc=function(t,e,r){if("number"!=typeof t)throw new TypeError("Argument must be a number");var n=o(t);return void 0!==e?"string"==typeof r?n.fill(e,r):n.fill(e):n.fill(0),n},a.allocUnsafe=function(t){if("number"!=typeof t)throw new TypeError("Argument must be a number");return o(t)},a.allocUnsafeSlow=function(t){if("number"!=typeof t)throw new TypeError("Argument must be a number");return n.SlowBuffer(t)}},2955:(t,e,r)=>{"use strict";var n,o=r(5606);function i(t,e,r){return(e=function(t){var e=function(t,e){if("object"!=typeof t||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,e||"default");if("object"!=typeof n)return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"==typeof e?e:String(e)}(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var a=r(6238),u=Symbol("lastResolve"),s=Symbol("lastReject"),c=Symbol("error"),f=Symbol("ended"),l=Symbol("lastPromise"),p=Symbol("handlePromise"),h=Symbol("stream");function y(t,e){return{value:t,done:e}}function d(t){var e=t[u];if(null!==e){var r=t[h].read();null!==r&&(t[l]=null,t[u]=null,t[s]=null,e(y(r,!1)))}}function g(t){o.nextTick(d,t)}var b=Object.getPrototypeOf(function(){}),v=Object.setPrototypeOf((i(n={get stream(){return this[h]},next:function(){var t=this,e=this[c];if(null!==e)return Promise.reject(e);if(this[f])return Promise.resolve(y(void 0,!0));if(this[h].destroyed)return new Promise(function(e,r){o.nextTick(function(){t[c]?r(t[c]):e(y(void 0,!0))})});var r,n=this[l];if(n)r=new Promise(function(t,e){return function(r,n){t.then(function(){e[f]?r(y(void 0,!0)):e[p](r,n)},n)}}(n,this));else{var i=this[h].read();if(null!==i)return Promise.resolve(y(i,!1));r=new Promise(this[p])}return this[l]=r,r}},Symbol.asyncIterator,function(){return this}),i(n,"return",function(){var t=this;return new Promise(function(e,r){t[h].destroy(null,function(t){t?r(t):e(y(void 0,!0))})})}),n),b);t.exports=function(t){var e,r=Object.create(v,(i(e={},h,{value:t,writable:!0}),i(e,u,{value:null,writable:!0}),i(e,s,{value:null,writable:!0}),i(e,c,{value:null,writable:!0}),i(e,f,{value:t._readableState.endEmitted,writable:!0}),i(e,p,{value:function(t,e){var n=r[h].read();n?(r[l]=null,r[u]=null,r[s]=null,t(y(n,!1))):(r[u]=t,r[s]=e)},writable:!0}),e));return r[l]=null,a(t,function(t){if(t&&"ERR_STREAM_PREMATURE_CLOSE"!==t.code){var e=r[s];return null!==e&&(r[l]=null,r[u]=null,r[s]=null,e(t)),void(r[c]=t)}var n=r[u];null!==n&&(r[l]=null,r[u]=null,r[s]=null,n(y(void 0,!0))),r[f]=!0}),t.on("readable",g.bind(null,r)),r}},3003:t=>{"use strict";t.exports=function(t){return t!=t}},3070:(t,e,r)=>{"use strict";const n=r(4829),o=r(4571).N,i={196:2,197:3,198:5,199:3,200:4,201:6,202:5,203:9,204:2,205:3,206:5,207:9,208:2,209:3,210:5,211:9,212:3,213:4,214:6,215:10,216:18,217:2,218:3,219:5,222:3,220:3,221:5};function a(t,e,r){return e>=r+t}function u(t,e,r,n,o){let i=e;const a=[];let u=0;for(;u++<r;){const e=c(t,i,o);if(!e)return null;a.push(e[0]),i+=e[1]}return[a,n+i-e]}function s(t,e,r,n,o){const i=u(t,e,2*r,n,o);if(!i)return null;const[a,s]=i;let c=!o.options.preferMap;if(c)for(let t=0;t<2*r;t+=2)if("string"!=typeof a[t]){c=!1;break}if(c){const t={};for(let e=0;e<2*r;e+=2){const r=a[e],n=a[e+1];if("__proto__"===r){if("error"===o.options.protoAction)throw new SyntaxError("Object contains forbidden prototype property");if("remove"===o.options.protoAction)continue}t[r]=n}return[t,s]}{const t=new Map;for(let e=0;e<2*r;e+=2){const r=a[e],n=a[e+1];t.set(r,n)}return[t,s]}}function c(t,e,r){if(t.length<=e)return null;const n=t.length-e;let o=e;const c=t.readUInt8(o);o+=1;const l=i[c]||-1;if(n<l)return null;if(c<128)return[c,1];if(128==(240&c)){return s(t,o,15&c,o-e,r)}if(144==(240&c)){return u(t,o,15&c,o-e,r)}if(160==(224&c)){const e=31&c;if(!a(e,n,1))return null;return[t.toString("utf8",o,o+e),e+1]}if(c>=192&&c<=195)return function(t){if(192===t)return[null,1];if(194===t)return[!1,1];if(195===t)return[!0,1]}(c);if(c>=196&&c<=198){const e=t.readUIntBE(o,l-1);if(o+=l-1,!a(e,n,l))return null;return[t.slice(o,o+e),l+e]}if(c>=199&&c<=201){const e=t.readUIntBE(o,l-2);o+=l-2;const i=t.readInt8(o);return o+=1,a(e,n,l)?f(t,o,i,e,l,r):null}if(c>=202&&c<=203)return function(t,e,r){let n;4===r&&(n=t.readFloatBE(e));8===r&&(n=t.readDoubleBE(e));return[n,r+1]}(t,o,l-1);if(c>=204&&c<=207)return function(t,e,r){const n=e+r;let o=0;for(;e<n;)o+=t.readUInt8(e++)*Math.pow(256,n-e);return[o,r+1]}(t,o,l-1);if(c>=208&&c<=211)return function(t,e,r){let n;1===r&&(n=t.readInt8(e));2===r&&(n=t.readInt16BE(e));4===r&&(n=t.readInt32BE(e));8===r&&(n=function(t,e){var r=!(128&~t[e]);if(r){let r=1;for(let n=e+7;n>=e;n--){const e=(255^t[n])+r;t[n]=255&e,r=e>>8}}const n=t.readUInt32BE(e+0),o=t.readUInt32BE(e+4);return(4294967296*n+o)*(r?-1:1)}(t.slice(e,e+8),0));return[n,r+1]}(t,o,l-1);if(c>=212&&c<=216){const e=t.readInt8(o);return o+=1,f(t,o,e,l-2,2,r)}if(c>=217&&c<=219){const e=t.readUIntBE(o,l-1);if(o+=l-1,!a(e,n,l))return null;return[t.toString("utf8",o,o+e),l+e]}if(c>=220&&c<=221){const e=t.readUIntBE(o,l-1);return o+=l-1,u(t,o,e,l,r)}if(c>=222&&c<=223){let e;switch(c){case 222:return e=t.readUInt16BE(o),o+=2,s(t,o,e,3,r);case 223:return e=t.readUInt32BE(o),o+=4,s(t,o,e,5,r)}}if(c>=224)return[c-256,1];throw new Error("not implemented yet")}function f(t,e,r,n,o,i){const a=t.slice(e,e+n),u=i.decodingTypes.get(r);if(!u)throw new Error("unable to find ext type "+r);return[u(a),o+n]}t.exports=function(t,e){const r={decodingTypes:t,options:e,decode:i};return i;function i(t){n.isBufferList(t)||(t=n(t));const e=c(t,0,r);if(!e)throw new o;return t.consume(e[1]),e[0]}}},3093:(t,e,r)=>{"use strict";var n=r(4459);t.exports=function(t){return n(t)||0===t?t:t<0?-1:1}},3126:(t,e,r)=>{"use strict";var n=r(6743),o=r(9675),i=r(76),a=r(3144);t.exports=function(t){if(t.length<1||"function"!=typeof t[0])throw new o("a function is required");return a(n,i,t)}},3141:(t,e,r)=>{"use strict";var n=r(2861).Buffer,o=n.isEncoding||function(t){switch((t=""+t)&&t.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};function i(t){var e;switch(this.encoding=function(t){var e=function(t){if(!t)return"utf8";for(var e;;)switch(t){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return t;default:if(e)return;t=(""+t).toLowerCase(),e=!0}}(t);if("string"!=typeof e&&(n.isEncoding===o||!o(t)))throw new Error("Unknown encoding: "+t);return e||t}(t),this.encoding){case"utf16le":this.text=s,this.end=c,e=4;break;case"utf8":this.fillLast=u,e=4;break;case"base64":this.text=f,this.end=l,e=3;break;default:return this.write=p,void(this.end=h)}this.lastNeed=0,this.lastTotal=0,this.lastChar=n.allocUnsafe(e)}function a(t){return t<=127?0:t>>5==6?2:t>>4==14?3:t>>3==30?4:t>>6==2?-1:-2}function u(t){var e=this.lastTotal-this.lastNeed,r=function(t,e){if(128!=(192&e[0]))return t.lastNeed=0,"�";if(t.lastNeed>1&&e.length>1){if(128!=(192&e[1]))return t.lastNeed=1,"�";if(t.lastNeed>2&&e.length>2&&128!=(192&e[2]))return t.lastNeed=2,"�"}}(this,t);return void 0!==r?r:this.lastNeed<=t.length?(t.copy(this.lastChar,e,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(t.copy(this.lastChar,e,0,t.length),void(this.lastNeed-=t.length))}function s(t,e){if((t.length-e)%2==0){var r=t.toString("utf16le",e);if(r){var n=r.charCodeAt(r.length-1);if(n>=55296&&n<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=t[t.length-2],this.lastChar[1]=t[t.length-1],r.slice(0,-1)}return r}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=t[t.length-1],t.toString("utf16le",e,t.length-1)}function c(t){var e=t&&t.length?this.write(t):"";if(this.lastNeed){var r=this.lastTotal-this.lastNeed;return e+this.lastChar.toString("utf16le",0,r)}return e}function f(t,e){var r=(t.length-e)%3;return 0===r?t.toString("base64",e):(this.lastNeed=3-r,this.lastTotal=3,1===r?this.lastChar[0]=t[t.length-1]:(this.lastChar[0]=t[t.length-2],this.lastChar[1]=t[t.length-1]),t.toString("base64",e,t.length-r))}function l(t){var e=t&&t.length?this.write(t):"";return this.lastNeed?e+this.lastChar.toString("base64",0,3-this.lastNeed):e}function p(t){return t.toString(this.encoding)}function h(t){return t&&t.length?this.write(t):""}e.I=i,i.prototype.write=function(t){if(0===t.length)return"";var e,r;if(this.lastNeed){if(void 0===(e=this.fillLast(t)))return"";r=this.lastNeed,this.lastNeed=0}else r=0;return r<t.length?e?e+this.text(t,r):this.text(t,r):e||""},i.prototype.end=function(t){var e=t&&t.length?this.write(t):"";return this.lastNeed?e+"�":e},i.prototype.text=function(t,e){var r=function(t,e,r){var n=e.length-1;if(n<r)return 0;var o=a(e[n]);if(o>=0)return o>0&&(t.lastNeed=o-1),o;if(--n<r||-2===o)return 0;if(o=a(e[n]),o>=0)return o>0&&(t.lastNeed=o-2),o;if(--n<r||-2===o)return 0;if(o=a(e[n]),o>=0)return o>0&&(2===o?o=0:t.lastNeed=o-3),o;return 0}(this,t,e);if(!this.lastNeed)return t.toString("utf8",e);this.lastTotal=r;var n=t.length-(r-this.lastNeed);return t.copy(this.lastChar,0,n),t.toString("utf8",e,n)},i.prototype.fillLast=function(t){if(this.lastNeed<=t.length)return t.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);t.copy(this.lastChar,this.lastTotal-this.lastNeed,0,t.length),this.lastNeed-=t.length}},3144:(t,e,r)=>{"use strict";var n=r(6743),o=r(1002),i=r(76),a=r(7119);t.exports=a||n.call(i,o)},3600:(t,e,r)=>{"use strict";t.exports=o;var n=r(4610);function o(t){if(!(this instanceof o))return new o(t);n.call(this,t)}r(6698)(o,n),o.prototype._transform=function(t,e,r){r(null,t)}},3628:(t,e,r)=>{"use strict";var n=r(8648),o=r(1064),i=r(7176);t.exports=n?function(t){return n(t)}:o?function(t){if(!t||"object"!=typeof t&&"function"!=typeof t)throw new TypeError("getProto: not an object");return o(t)}:i?function(t){return i(t)}:null},3918:(t,e,r)=>{"use strict";var n=r(5606);function o(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter(function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable})),r.push.apply(r,n)}return r}function i(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?o(Object(r),!0).forEach(function(e){a(t,e,r[e])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):o(Object(r)).forEach(function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))})}return t}function a(t,e,r){return(e=s(e))in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function u(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,s(n.key),n)}}function s(t){var e=function(t,e){if("object"!==g(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,e||"default");if("object"!==g(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"===g(e)?e:String(e)}function c(t,e){if(e&&("object"===g(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return f(t)}function f(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function l(t){var e="function"==typeof Map?new Map:void 0;return l=function(t){if(null===t||(r=t,-1===Function.toString.call(r).indexOf("[native code]")))return t;var r;if("function"!=typeof t)throw new TypeError("Super expression must either be null or a function");if(void 0!==e){if(e.has(t))return e.get(t);e.set(t,n)}function n(){return p(t,arguments,d(this).constructor)}return n.prototype=Object.create(t.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),y(n,t)},l(t)}function p(t,e,r){return p=h()?Reflect.construct.bind():function(t,e,r){var n=[null];n.push.apply(n,e);var o=new(Function.bind.apply(t,n));return r&&y(o,r.prototype),o},p.apply(null,arguments)}function h(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(t){return!1}}function y(t,e){return y=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},y(t,e)}function d(t){return d=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},d(t)}function g(t){return g="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},g(t)}var b=r(537).inspect,v=r(9597).codes.ERR_INVALID_ARG_TYPE;function m(t,e,r){return(void 0===r||r>t.length)&&(r=t.length),t.substring(r-e.length,r)===e}var w="",S="",E="",_="",O={deepStrictEqual:"Expected values to be strictly deep-equal:",strictEqual:"Expected values to be strictly equal:",strictEqualObject:'Expected "actual" to be reference-equal to "expected":',deepEqual:"Expected values to be loosely deep-equal:",equal:"Expected values to be loosely equal:",notDeepStrictEqual:'Expected "actual" not to be strictly deep-equal to:',notStrictEqual:'Expected "actual" to be strictly unequal to:',notStrictEqualObject:'Expected "actual" not to be reference-equal to "expected":',notDeepEqual:'Expected "actual" not to be loosely deep-equal to:',notEqual:'Expected "actual" to be loosely unequal to:',notIdentical:"Values identical but not reference-equal:"};function j(t){var e=Object.keys(t),r=Object.create(Object.getPrototypeOf(t));return e.forEach(function(e){r[e]=t[e]}),Object.defineProperty(r,"message",{value:t.message}),r}function A(t){return b(t,{compact:!1,customInspect:!1,depth:1e3,maxArrayLength:1/0,showHidden:!1,breakLength:1/0,showProxy:!1,sorted:!0,getters:!0})}function x(t,e,r){var o="",i="",a=0,u="",s=!1,c=A(t),f=c.split("\n"),l=A(e).split("\n"),p=0,h="";if("strictEqual"===r&&"object"===g(t)&&"object"===g(e)&&null!==t&&null!==e&&(r="strictEqualObject"),1===f.length&&1===l.length&&f[0]!==l[0]){var y=f[0].length+l[0].length;if(y<=10){if(!("object"===g(t)&&null!==t||"object"===g(e)&&null!==e||0===t&&0===e))return"".concat(O[r],"\n\n")+"".concat(f[0]," !== ").concat(l[0],"\n")}else if("strictEqualObject"!==r){if(y<(n.stderr&&n.stderr.isTTY?n.stderr.columns:80)){for(;f[0][p]===l[0][p];)p++;p>2&&(h="\n  ".concat(function(t,e){if(e=Math.floor(e),0==t.length||0==e)return"";var r=t.length*e;for(e=Math.floor(Math.log(e)/Math.log(2));e;)t+=t,e--;return t+t.substring(0,r-t.length)}(" ",p),"^"),p=0)}}}for(var d=f[f.length-1],b=l[l.length-1];d===b&&(p++<2?u="\n  ".concat(d).concat(u):o=d,f.pop(),l.pop(),0!==f.length&&0!==l.length);)d=f[f.length-1],b=l[l.length-1];var v=Math.max(f.length,l.length);if(0===v){var j=c.split("\n");if(j.length>30)for(j[26]="".concat(w,"...").concat(_);j.length>27;)j.pop();return"".concat(O.notIdentical,"\n\n").concat(j.join("\n"),"\n")}p>3&&(u="\n".concat(w,"...").concat(_).concat(u),s=!0),""!==o&&(u="\n  ".concat(o).concat(u),o="");var x=0,R=O[r]+"\n".concat(S,"+ actual").concat(_," ").concat(E,"- expected").concat(_),k=" ".concat(w,"...").concat(_," Lines skipped");for(p=0;p<v;p++){var P=p-a;if(f.length<p+1)P>1&&p>2&&(P>4?(i+="\n".concat(w,"...").concat(_),s=!0):P>3&&(i+="\n  ".concat(l[p-2]),x++),i+="\n  ".concat(l[p-1]),x++),a=p,o+="\n".concat(E,"-").concat(_," ").concat(l[p]),x++;else if(l.length<p+1)P>1&&p>2&&(P>4?(i+="\n".concat(w,"...").concat(_),s=!0):P>3&&(i+="\n  ".concat(f[p-2]),x++),i+="\n  ".concat(f[p-1]),x++),a=p,i+="\n".concat(S,"+").concat(_," ").concat(f[p]),x++;else{var T=l[p],M=f[p],I=M!==T&&(!m(M,",")||M.slice(0,-1)!==T);I&&m(T,",")&&T.slice(0,-1)===M&&(I=!1,M+=","),I?(P>1&&p>2&&(P>4?(i+="\n".concat(w,"...").concat(_),s=!0):P>3&&(i+="\n  ".concat(f[p-2]),x++),i+="\n  ".concat(f[p-1]),x++),a=p,i+="\n".concat(S,"+").concat(_," ").concat(M),o+="\n".concat(E,"-").concat(_," ").concat(T),x+=2):(i+=o,o="",1!==P&&0!==p||(i+="\n  ".concat(M),x++))}if(x>20&&p<v-2)return"".concat(R).concat(k,"\n").concat(i,"\n").concat(w,"...").concat(_).concat(o,"\n")+"".concat(w,"...").concat(_)}return"".concat(R).concat(s?k:"","\n").concat(i).concat(o).concat(u).concat(h)}var R=function(t,e){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&y(t,e)}(m,t);var r,o,a,s,l,p=(r=m,o=h(),function(){var t,e=d(r);if(o){var n=d(this).constructor;t=Reflect.construct(e,arguments,n)}else t=e.apply(this,arguments);return c(this,t)});function m(t){var e;if(function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,m),"object"!==g(t)||null===t)throw new v("options","Object",t);var r=t.message,o=t.operator,i=t.stackStartFn,a=t.actual,u=t.expected,s=Error.stackTraceLimit;if(Error.stackTraceLimit=0,null!=r)e=p.call(this,String(r));else if(n.stderr&&n.stderr.isTTY&&(n.stderr&&n.stderr.getColorDepth&&1!==n.stderr.getColorDepth()?(w="",S="",_="",E=""):(w="",S="",_="",E="")),"object"===g(a)&&null!==a&&"object"===g(u)&&null!==u&&"stack"in a&&a instanceof Error&&"stack"in u&&u instanceof Error&&(a=j(a),u=j(u)),"deepStrictEqual"===o||"strictEqual"===o)e=p.call(this,x(a,u,o));else if("notDeepStrictEqual"===o||"notStrictEqual"===o){var l=O[o],h=A(a).split("\n");if("notStrictEqual"===o&&"object"===g(a)&&null!==a&&(l=O.notStrictEqualObject),h.length>30)for(h[26]="".concat(w,"...").concat(_);h.length>27;)h.pop();e=1===h.length?p.call(this,"".concat(l," ").concat(h[0])):p.call(this,"".concat(l,"\n\n").concat(h.join("\n"),"\n"))}else{var y=A(a),d="",b=O[o];"notDeepEqual"===o||"notEqual"===o?(y="".concat(O[o],"\n\n").concat(y)).length>1024&&(y="".concat(y.slice(0,1021),"...")):(d="".concat(A(u)),y.length>512&&(y="".concat(y.slice(0,509),"...")),d.length>512&&(d="".concat(d.slice(0,509),"...")),"deepEqual"===o||"equal"===o?y="".concat(b,"\n\n").concat(y,"\n\nshould equal\n\n"):d=" ".concat(o," ").concat(d)),e=p.call(this,"".concat(y).concat(d))}return Error.stackTraceLimit=s,e.generatedMessage=!r,Object.defineProperty(f(e),"name",{value:"AssertionError [ERR_ASSERTION]",enumerable:!1,writable:!0,configurable:!0}),e.code="ERR_ASSERTION",e.actual=a,e.expected=u,e.operator=o,Error.captureStackTrace&&Error.captureStackTrace(f(e),i),e.stack,e.name="AssertionError",c(e)}return a=m,(s=[{key:"toString",value:function(){return"".concat(this.name," [").concat(this.code,"]: ").concat(this.message)}},{key:e,value:function(t,e){return b(this,i(i({},e),{},{customInspect:!1,depth:0}))}}])&&u(a.prototype,s),l&&u(a,l),Object.defineProperty(a,"prototype",{writable:!1}),m}(l(Error),b.custom);t.exports=R},4035:(t,e,r)=>{"use strict";var n,o=r(6556),i=r(9092)(),a=r(9957),u=r(5795);if(i){var s=o("RegExp.prototype.exec"),c={},f=function(){throw c},l={toString:f,valueOf:f};"symbol"==typeof Symbol.toPrimitive&&(l[Symbol.toPrimitive]=f),n=function(t){if(!t||"object"!=typeof t)return!1;var e=u(t,"lastIndex");if(!(e&&a(e,"value")))return!1;try{s(t,l)}catch(t){return t===c}}}else{var p=o("Object.prototype.toString");n=function(t){return!(!t||"object"!=typeof t&&"function"!=typeof t)&&"[object RegExp]"===p(t)}}t.exports=n},4039:(t,e,r)=>{"use strict";var n="undefined"!=typeof Symbol&&Symbol,o=r(1333);t.exports=function(){return"function"==typeof n&&("function"==typeof Symbol&&("symbol"==typeof n("foo")&&("symbol"==typeof Symbol("bar")&&o())))}},4133:(t,e,r)=>{"use strict";var n=r(487),o=r(8452),i=r(3003),a=r(6642),u=r(2464),s=n(a(),Number);o(s,{getPolyfill:a,implementation:i,shim:u}),t.exports=s},4148:(t,e,r)=>{"use strict";var n=r(5606);function o(t){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},o(t)}function i(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,u(n.key),n)}}function a(t,e,r){return e&&i(t.prototype,e),r&&i(t,r),Object.defineProperty(t,"prototype",{writable:!1}),t}function u(t){var e=function(t,e){if("object"!==o(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,e||"default");if("object"!==o(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"===o(e)?e:String(e)}var s,c,f=r(9597).codes,l=f.ERR_AMBIGUOUS_ARGUMENT,p=f.ERR_INVALID_ARG_TYPE,h=f.ERR_INVALID_ARG_VALUE,y=f.ERR_INVALID_RETURN_VALUE,d=f.ERR_MISSING_ARGS,g=r(3918),b=r(537).inspect,v=r(537).types,m=v.isPromise,w=v.isRegExp,S=r(9133)(),E=r(9394)(),_=r(8075)("RegExp.prototype.test");new Map;function O(){var t=r(2299);s=t.isDeepEqual,c=t.isDeepStrictEqual}var j=!1,A=t.exports=P,x={};function R(t){if(t.message instanceof Error)throw t.message;throw new g(t)}function k(t,e,r,n){if(!r){var o=!1;if(0===e)o=!0,n="No value argument passed to `assert.ok()`";else if(n instanceof Error)throw n;var i=new g({actual:r,expected:!0,message:n,operator:"==",stackStartFn:t});throw i.generatedMessage=o,i}}function P(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];k.apply(void 0,[P,e.length].concat(e))}A.fail=function t(e,r,o,i,a){var u,s=arguments.length;if(0===s)u="Failed";else if(1===s)o=e,e=void 0;else{if(!1===j)j=!0,(n.emitWarning?n.emitWarning:console.warn.bind(console))("assert.fail() with more than one argument is deprecated. Please use assert.strictEqual() instead or only pass a message.","DeprecationWarning","DEP0094");2===s&&(i="!=")}if(o instanceof Error)throw o;var c={actual:e,expected:r,operator:void 0===i?"fail":i,stackStartFn:a||t};void 0!==o&&(c.message=o);var f=new g(c);throw u&&(f.message=u,f.generatedMessage=!0),f},A.AssertionError=g,A.ok=P,A.equal=function t(e,r,n){if(arguments.length<2)throw new d("actual","expected");e!=r&&R({actual:e,expected:r,message:n,operator:"==",stackStartFn:t})},A.notEqual=function t(e,r,n){if(arguments.length<2)throw new d("actual","expected");e==r&&R({actual:e,expected:r,message:n,operator:"!=",stackStartFn:t})},A.deepEqual=function t(e,r,n){if(arguments.length<2)throw new d("actual","expected");void 0===s&&O(),s(e,r)||R({actual:e,expected:r,message:n,operator:"deepEqual",stackStartFn:t})},A.notDeepEqual=function t(e,r,n){if(arguments.length<2)throw new d("actual","expected");void 0===s&&O(),s(e,r)&&R({actual:e,expected:r,message:n,operator:"notDeepEqual",stackStartFn:t})},A.deepStrictEqual=function t(e,r,n){if(arguments.length<2)throw new d("actual","expected");void 0===s&&O(),c(e,r)||R({actual:e,expected:r,message:n,operator:"deepStrictEqual",stackStartFn:t})},A.notDeepStrictEqual=function t(e,r,n){if(arguments.length<2)throw new d("actual","expected");void 0===s&&O();c(e,r)&&R({actual:e,expected:r,message:n,operator:"notDeepStrictEqual",stackStartFn:t})},A.strictEqual=function t(e,r,n){if(arguments.length<2)throw new d("actual","expected");E(e,r)||R({actual:e,expected:r,message:n,operator:"strictEqual",stackStartFn:t})},A.notStrictEqual=function t(e,r,n){if(arguments.length<2)throw new d("actual","expected");E(e,r)&&R({actual:e,expected:r,message:n,operator:"notStrictEqual",stackStartFn:t})};var T=a(function t(e,r,n){var o=this;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),r.forEach(function(t){t in e&&(void 0!==n&&"string"==typeof n[t]&&w(e[t])&&_(e[t],n[t])?o[t]=n[t]:o[t]=e[t])})});function M(t,e,r,n){if("function"!=typeof e){if(w(e))return _(e,t);if(2===arguments.length)throw new p("expected",["Function","RegExp"],e);if("object"!==o(t)||null===t){var i=new g({actual:t,expected:e,message:r,operator:"deepStrictEqual",stackStartFn:n});throw i.operator=n.name,i}var a=Object.keys(e);if(e instanceof Error)a.push("name","message");else if(0===a.length)throw new h("error",e,"may not be an empty object");return void 0===s&&O(),a.forEach(function(o){"string"==typeof t[o]&&w(e[o])&&_(e[o],t[o])||function(t,e,r,n,o,i){if(!(r in t)||!c(t[r],e[r])){if(!n){var a=new T(t,o),u=new T(e,o,t),s=new g({actual:a,expected:u,operator:"deepStrictEqual",stackStartFn:i});throw s.actual=t,s.expected=e,s.operator=i.name,s}R({actual:t,expected:e,message:n,operator:i.name,stackStartFn:i})}}(t,e,o,r,a,n)}),!0}return void 0!==e.prototype&&t instanceof e||!Error.isPrototypeOf(e)&&!0===e.call({},t)}function I(t){if("function"!=typeof t)throw new p("fn","Function",t);try{t()}catch(t){return t}return x}function L(t){return m(t)||null!==t&&"object"===o(t)&&"function"==typeof t.then&&"function"==typeof t.catch}function N(t){return Promise.resolve().then(function(){var e;if("function"==typeof t){if(!L(e=t()))throw new y("instance of Promise","promiseFn",e)}else{if(!L(t))throw new p("promiseFn",["Function","Promise"],t);e=t}return Promise.resolve().then(function(){return e}).then(function(){return x}).catch(function(t){return t})})}function U(t,e,r,n){if("string"==typeof r){if(4===arguments.length)throw new p("error",["Object","Error","Function","RegExp"],r);if("object"===o(e)&&null!==e){if(e.message===r)throw new l("error/message",'The error message "'.concat(e.message,'" is identical to the message.'))}else if(e===r)throw new l("error/message",'The error "'.concat(e,'" is identical to the message.'));n=r,r=void 0}else if(null!=r&&"object"!==o(r)&&"function"!=typeof r)throw new p("error",["Object","Error","Function","RegExp"],r);if(e===x){var i="";r&&r.name&&(i+=" (".concat(r.name,")")),i+=n?": ".concat(n):".";var a="rejects"===t.name?"rejection":"exception";R({actual:void 0,expected:r,operator:t.name,message:"Missing expected ".concat(a).concat(i),stackStartFn:t})}if(r&&!M(e,r,n,t))throw e}function B(t,e,r,n){if(e!==x){if("string"==typeof r&&(n=r,r=void 0),!r||M(e,r)){var o=n?": ".concat(n):".",i="doesNotReject"===t.name?"rejection":"exception";R({actual:e,expected:r,operator:t.name,message:"Got unwanted ".concat(i).concat(o,"\n")+'Actual message: "'.concat(e&&e.message,'"'),stackStartFn:t})}throw e}}function F(t,e,r,n,i){if(!w(e))throw new p("regexp","RegExp",e);var a="match"===i;if("string"!=typeof t||_(e,t)!==a){if(r instanceof Error)throw r;var u=!r;r=r||("string"!=typeof t?'The "string" argument must be of type string. Received type '+"".concat(o(t)," (").concat(b(t),")"):(a?"The input did not match the regular expression ":"The input was expected to not match the regular expression ")+"".concat(b(e),". Input:\n\n").concat(b(t),"\n"));var s=new g({actual:t,expected:e,message:r,operator:i,stackStartFn:n});throw s.generatedMessage=u,s}}function D(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];k.apply(void 0,[D,e.length].concat(e))}A.throws=function t(e){for(var r=arguments.length,n=new Array(r>1?r-1:0),o=1;o<r;o++)n[o-1]=arguments[o];U.apply(void 0,[t,I(e)].concat(n))},A.rejects=function t(e){for(var r=arguments.length,n=new Array(r>1?r-1:0),o=1;o<r;o++)n[o-1]=arguments[o];return N(e).then(function(e){return U.apply(void 0,[t,e].concat(n))})},A.doesNotThrow=function t(e){for(var r=arguments.length,n=new Array(r>1?r-1:0),o=1;o<r;o++)n[o-1]=arguments[o];B.apply(void 0,[t,I(e)].concat(n))},A.doesNotReject=function t(e){for(var r=arguments.length,n=new Array(r>1?r-1:0),o=1;o<r;o++)n[o-1]=arguments[o];return N(e).then(function(e){return B.apply(void 0,[t,e].concat(n))})},A.ifError=function t(e){if(null!=e){var r="ifError got unwanted exception: ";"object"===o(e)&&"string"==typeof e.message?0===e.message.length&&e.constructor?r+=e.constructor.name:r+=e.message:r+=b(e);var n=new g({actual:e,expected:null,operator:"ifError",message:r,stackStartFn:t}),i=e.stack;if("string"==typeof i){var a=i.split("\n");a.shift();for(var u=n.stack.split("\n"),s=0;s<a.length;s++){var c=u.indexOf(a[s]);if(-1!==c){u=u.slice(0,c);break}}n.stack="".concat(u.join("\n"),"\n").concat(a.join("\n"))}throw n}},A.match=function t(e,r,n){F(e,r,n,t,"match")},A.doesNotMatch=function t(e,r,n){F(e,r,n,t,"doesNotMatch")},A.strict=S(D,A,{equal:A.strictEqual,deepEqual:A.deepStrictEqual,notEqual:A.notStrictEqual,notDeepEqual:A.notDeepStrictEqual}),A.strict.strict=A.strict},4459:t=>{"use strict";t.exports=Number.isNaN||function(t){return t!=t}},4571:(t,e,r)=>{"use strict";const n=r(537);function o(t){Error.call(this),Error.captureStackTrace&&Error.captureStackTrace(this,this.constructor),this.name=this.constructor.name,this.message=t||"unable to decode"}e.N=o,n.inherits(o,Error),e.d=function(t){return t%1!=0}},4610:(t,e,r)=>{"use strict";t.exports=f;var n=r(6048).F,o=n.ERR_METHOD_NOT_IMPLEMENTED,i=n.ERR_MULTIPLE_CALLBACK,a=n.ERR_TRANSFORM_ALREADY_TRANSFORMING,u=n.ERR_TRANSFORM_WITH_LENGTH_0,s=r(5382);function c(t,e){var r=this._transformState;r.transforming=!1;var n=r.writecb;if(null===n)return this.emit("error",new i);r.writechunk=null,r.writecb=null,null!=e&&this.push(e),n(t);var o=this._readableState;o.reading=!1,(o.needReadable||o.length<o.highWaterMark)&&this._read(o.highWaterMark)}function f(t){if(!(this instanceof f))return new f(t);s.call(this,t),this._transformState={afterTransform:c.bind(this),needTransform:!1,transforming:!1,writecb:null,writechunk:null,writeencoding:null},this._readableState.needReadable=!0,this._readableState.sync=!1,t&&("function"==typeof t.transform&&(this._transform=t.transform),"function"==typeof t.flush&&(this._flush=t.flush)),this.on("prefinish",l)}function l(){var t=this;"function"!=typeof this._flush||this._readableState.destroyed?p(this,null,null):this._flush(function(e,r){p(t,e,r)})}function p(t,e,r){if(e)return t.emit("error",e);if(null!=r&&t.push(r),t._writableState.length)throw new u;if(t._transformState.transforming)throw new a;return t.push(null)}r(6698)(f,s),f.prototype.push=function(t,e){return this._transformState.needTransform=!1,s.prototype.push.call(this,t,e)},f.prototype._transform=function(t,e,r){r(new o("_transform()"))},f.prototype._write=function(t,e,r){var n=this._transformState;if(n.writecb=r,n.writechunk=t,n.writeencoding=e,!n.transforming){var o=this._readableState;(n.needTransform||o.needReadable||o.length<o.highWaterMark)&&this._read(o.highWaterMark)}},f.prototype._read=function(t){var e=this._transformState;null===e.writechunk||e.transforming?e.needTransform=!0:(e.transforming=!0,this._transform(e.writechunk,e.writeencoding,e.afterTransform))},f.prototype._destroy=function(t,e){s.prototype._destroy.call(this,t,function(t){e(t)})}},4643:(t,e,r)=>{function n(t){try{if(!r.g.localStorage)return!1}catch(t){return!1}var e=r.g.localStorage[t];return null!=e&&"true"===String(e).toLowerCase()}t.exports=function(t,e){if(n("noDeprecation"))return t;var r=!1;return function(){if(!r){if(n("throwDeprecation"))throw new Error(e);n("traceDeprecation")?console.trace(e):console.warn(e),r=!0}return t.apply(this,arguments)}}},4829:(t,e,r)=>{"use strict";const n=r(8399).Duplex,o=r(6698),i=r(7813);function a(t){if(!(this instanceof a))return new a(t);if("function"==typeof t){this._callback=t;const e=function(t){this._callback&&(this._callback(t),this._callback=null)}.bind(this);this.on("pipe",function(t){t.on("error",e)}),this.on("unpipe",function(t){t.removeListener("error",e)}),t=null}i._init.call(this,t),n.call(this)}o(a,n),Object.assign(a.prototype,i.prototype),a.prototype._new=function(t){return new a(t)},a.prototype._write=function(t,e,r){this._appendBuffer(t),"function"==typeof r&&r()},a.prototype._read=function(t){if(!this.length)return this.push(null);t=Math.min(t,this.length),this.push(this.slice(0,t)),this.consume(t)},a.prototype.end=function(t){n.prototype.end.call(this,t),this._callback&&(this._callback(null,this.slice()),this._callback=null)},a.prototype._destroy=function(t,e){this._bufs.length=0,this.length=0,e(t)},a.prototype._isBufferList=function(t){return t instanceof a||t instanceof i||a.isBufferList(t)},a.isBufferList=i.isBufferList,t.exports=a,t.exports.BufferListStream=a,t.exports.BufferList=i},4998:(t,e,r)=>{"use strict";const n=r(2861).Buffer,o=r(4148),i=r(4829),a=r(63),u=r(3070),s=r(6506),c=r(4571).N,f=r(6154);t.exports=function(t){const e=[],r=new Map;return t=t||{forceFloat64:!1,compatibilityMode:!1,disableTimestampEncoding:!1,preferMap:!1,protoAction:"error"},r.set(f.type,f.decode),t.disableTimestampEncoding||e.push(f),{encode:s(e,t),decode:u(r,t),register:function(t,e,r,a){return o(e,"must have a constructor"),o(r,"must have an encode function"),o(t>=0,"must have a non-negative type"),o(a,"must have a decode function"),this.registerEncoder(function(t){return t instanceof e},function(e){const o=i(),a=n.allocUnsafe(1);return a.writeInt8(t,0),o.append(a),o.append(r(e)),o}),this.registerDecoder(t,a),this},registerEncoder:function(t,r){return o(t,"must have an encode function"),o(r,"must have an encode function"),e.push({check:t,encode:r}),this},registerDecoder:function(t,e){return o(t>=0,"must have a non-negative type"),o(e,"must have a decode function"),r.set(t,e),this},encoder:a.encoder,decoder:a.decoder,buffer:!0,type:"msgpack5",IncompleteBufferError:c}}},5157:t=>{t.exports=function(){throw new Error("Readable.from is not available in the browser")}},5291:(t,e,r)=>{"use strict";var n=r(6048).F.ERR_INVALID_OPT_VALUE;t.exports={getHighWaterMark:function(t,e,r,o){var i=function(t,e,r){return null!=t.highWaterMark?t.highWaterMark:e?t[r]:null}(e,o,r);if(null!=i){if(!isFinite(i)||Math.floor(i)!==i||i<0)throw new n(o?r:"highWaterMark",i);return Math.floor(i)}return t.objectMode?16:16384}}},5345:t=>{"use strict";t.exports=URIError},5382:(t,e,r)=>{"use strict";var n=r(5606),o=Object.keys||function(t){var e=[];for(var r in t)e.push(r);return e};t.exports=f;var i=r(5412),a=r(6708);r(6698)(f,i);for(var u=o(a.prototype),s=0;s<u.length;s++){var c=u[s];f.prototype[c]||(f.prototype[c]=a.prototype[c])}function f(t){if(!(this instanceof f))return new f(t);i.call(this,t),a.call(this,t),this.allowHalfOpen=!0,t&&(!1===t.readable&&(this.readable=!1),!1===t.writable&&(this.writable=!1),!1===t.allowHalfOpen&&(this.allowHalfOpen=!1,this.once("end",l)))}function l(){this._writableState.ended||n.nextTick(p,this)}function p(t){t.end()}Object.defineProperty(f.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),Object.defineProperty(f.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(f.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(f.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._readableState&&void 0!==this._writableState&&(this._readableState.destroyed&&this._writableState.destroyed)},set:function(t){void 0!==this._readableState&&void 0!==this._writableState&&(this._readableState.destroyed=t,this._writableState.destroyed=t)}})},5412:(t,e,r)=>{"use strict";var n,o=r(5606);t.exports=j,j.ReadableState=O;r(7007).EventEmitter;var i=function(t,e){return t.listeners(e).length},a=r(345),u=r(8287).Buffer,s=(void 0!==r.g?r.g:"undefined"!=typeof window?window:"undefined"!=typeof self?self:{}).Uint8Array||function(){};var c,f=r(9838);c=f&&f.debuglog?f.debuglog("stream"):function(){};var l,p,h,y=r(2726),d=r(5896),g=r(5291).getHighWaterMark,b=r(6048).F,v=b.ERR_INVALID_ARG_TYPE,m=b.ERR_STREAM_PUSH_AFTER_EOF,w=b.ERR_METHOD_NOT_IMPLEMENTED,S=b.ERR_STREAM_UNSHIFT_AFTER_END_EVENT;r(6698)(j,a);var E=d.errorOrDestroy,_=["error","close","destroy","pause","resume"];function O(t,e,o){n=n||r(5382),t=t||{},"boolean"!=typeof o&&(o=e instanceof n),this.objectMode=!!t.objectMode,o&&(this.objectMode=this.objectMode||!!t.readableObjectMode),this.highWaterMark=g(this,t,"readableHighWaterMark",o),this.buffer=new y,this.length=0,this.pipes=null,this.pipesCount=0,this.flowing=null,this.ended=!1,this.endEmitted=!1,this.reading=!1,this.sync=!0,this.needReadable=!1,this.emittedReadable=!1,this.readableListening=!1,this.resumeScheduled=!1,this.paused=!0,this.emitClose=!1!==t.emitClose,this.autoDestroy=!!t.autoDestroy,this.destroyed=!1,this.defaultEncoding=t.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,t.encoding&&(l||(l=r(3141).I),this.decoder=new l(t.encoding),this.encoding=t.encoding)}function j(t){if(n=n||r(5382),!(this instanceof j))return new j(t);var e=this instanceof n;this._readableState=new O(t,this,e),this.readable=!0,t&&("function"==typeof t.read&&(this._read=t.read),"function"==typeof t.destroy&&(this._destroy=t.destroy)),a.call(this)}function A(t,e,r,n,o){c("readableAddChunk",e);var i,a=t._readableState;if(null===e)a.reading=!1,function(t,e){if(c("onEofChunk"),e.ended)return;if(e.decoder){var r=e.decoder.end();r&&r.length&&(e.buffer.push(r),e.length+=e.objectMode?1:r.length)}e.ended=!0,e.sync?P(t):(e.needReadable=!1,e.emittedReadable||(e.emittedReadable=!0,T(t)))}(t,a);else if(o||(i=function(t,e){var r;n=e,u.isBuffer(n)||n instanceof s||"string"==typeof e||void 0===e||t.objectMode||(r=new v("chunk",["string","Buffer","Uint8Array"],e));var n;return r}(a,e)),i)E(t,i);else if(a.objectMode||e&&e.length>0)if("string"==typeof e||a.objectMode||Object.getPrototypeOf(e)===u.prototype||(e=function(t){return u.from(t)}(e)),n)a.endEmitted?E(t,new S):x(t,a,e,!0);else if(a.ended)E(t,new m);else{if(a.destroyed)return!1;a.reading=!1,a.decoder&&!r?(e=a.decoder.write(e),a.objectMode||0!==e.length?x(t,a,e,!1):M(t,a)):x(t,a,e,!1)}else n||(a.reading=!1,M(t,a));return!a.ended&&(a.length<a.highWaterMark||0===a.length)}function x(t,e,r,n){e.flowing&&0===e.length&&!e.sync?(e.awaitDrain=0,t.emit("data",r)):(e.length+=e.objectMode?1:r.length,n?e.buffer.unshift(r):e.buffer.push(r),e.needReadable&&P(t)),M(t,e)}Object.defineProperty(j.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._readableState&&this._readableState.destroyed},set:function(t){this._readableState&&(this._readableState.destroyed=t)}}),j.prototype.destroy=d.destroy,j.prototype._undestroy=d.undestroy,j.prototype._destroy=function(t,e){e(t)},j.prototype.push=function(t,e){var r,n=this._readableState;return n.objectMode?r=!0:"string"==typeof t&&((e=e||n.defaultEncoding)!==n.encoding&&(t=u.from(t,e),e=""),r=!0),A(this,t,e,!1,r)},j.prototype.unshift=function(t){return A(this,t,null,!0,!1)},j.prototype.isPaused=function(){return!1===this._readableState.flowing},j.prototype.setEncoding=function(t){l||(l=r(3141).I);var e=new l(t);this._readableState.decoder=e,this._readableState.encoding=this._readableState.decoder.encoding;for(var n=this._readableState.buffer.head,o="";null!==n;)o+=e.write(n.data),n=n.next;return this._readableState.buffer.clear(),""!==o&&this._readableState.buffer.push(o),this._readableState.length=o.length,this};var R=1073741824;function k(t,e){return t<=0||0===e.length&&e.ended?0:e.objectMode?1:t!=t?e.flowing&&e.length?e.buffer.head.data.length:e.length:(t>e.highWaterMark&&(e.highWaterMark=function(t){return t>=R?t=R:(t--,t|=t>>>1,t|=t>>>2,t|=t>>>4,t|=t>>>8,t|=t>>>16,t++),t}(t)),t<=e.length?t:e.ended?e.length:(e.needReadable=!0,0))}function P(t){var e=t._readableState;c("emitReadable",e.needReadable,e.emittedReadable),e.needReadable=!1,e.emittedReadable||(c("emitReadable",e.flowing),e.emittedReadable=!0,o.nextTick(T,t))}function T(t){var e=t._readableState;c("emitReadable_",e.destroyed,e.length,e.ended),e.destroyed||!e.length&&!e.ended||(t.emit("readable"),e.emittedReadable=!1),e.needReadable=!e.flowing&&!e.ended&&e.length<=e.highWaterMark,B(t)}function M(t,e){e.readingMore||(e.readingMore=!0,o.nextTick(I,t,e))}function I(t,e){for(;!e.reading&&!e.ended&&(e.length<e.highWaterMark||e.flowing&&0===e.length);){var r=e.length;if(c("maybeReadMore read 0"),t.read(0),r===e.length)break}e.readingMore=!1}function L(t){var e=t._readableState;e.readableListening=t.listenerCount("readable")>0,e.resumeScheduled&&!e.paused?e.flowing=!0:t.listenerCount("data")>0&&t.resume()}function N(t){c("readable nexttick read 0"),t.read(0)}function U(t,e){c("resume",e.reading),e.reading||t.read(0),e.resumeScheduled=!1,t.emit("resume"),B(t),e.flowing&&!e.reading&&t.read(0)}function B(t){var e=t._readableState;for(c("flow",e.flowing);e.flowing&&null!==t.read(););}function F(t,e){return 0===e.length?null:(e.objectMode?r=e.buffer.shift():!t||t>=e.length?(r=e.decoder?e.buffer.join(""):1===e.buffer.length?e.buffer.first():e.buffer.concat(e.length),e.buffer.clear()):r=e.buffer.consume(t,e.decoder),r);var r}function D(t){var e=t._readableState;c("endReadable",e.endEmitted),e.endEmitted||(e.ended=!0,o.nextTick(C,e,t))}function C(t,e){if(c("endReadableNT",t.endEmitted,t.length),!t.endEmitted&&0===t.length&&(t.endEmitted=!0,e.readable=!1,e.emit("end"),t.autoDestroy)){var r=e._writableState;(!r||r.autoDestroy&&r.finished)&&e.destroy()}}function q(t,e){for(var r=0,n=t.length;r<n;r++)if(t[r]===e)return r;return-1}j.prototype.read=function(t){c("read",t),t=parseInt(t,10);var e=this._readableState,r=t;if(0!==t&&(e.emittedReadable=!1),0===t&&e.needReadable&&((0!==e.highWaterMark?e.length>=e.highWaterMark:e.length>0)||e.ended))return c("read: emitReadable",e.length,e.ended),0===e.length&&e.ended?D(this):P(this),null;if(0===(t=k(t,e))&&e.ended)return 0===e.length&&D(this),null;var n,o=e.needReadable;return c("need readable",o),(0===e.length||e.length-t<e.highWaterMark)&&c("length less than watermark",o=!0),e.ended||e.reading?c("reading or ended",o=!1):o&&(c("do read"),e.reading=!0,e.sync=!0,0===e.length&&(e.needReadable=!0),this._read(e.highWaterMark),e.sync=!1,e.reading||(t=k(r,e))),null===(n=t>0?F(t,e):null)?(e.needReadable=e.length<=e.highWaterMark,t=0):(e.length-=t,e.awaitDrain=0),0===e.length&&(e.ended||(e.needReadable=!0),r!==t&&e.ended&&D(this)),null!==n&&this.emit("data",n),n},j.prototype._read=function(t){E(this,new w("_read()"))},j.prototype.pipe=function(t,e){var r=this,n=this._readableState;switch(n.pipesCount){case 0:n.pipes=t;break;case 1:n.pipes=[n.pipes,t];break;default:n.pipes.push(t)}n.pipesCount+=1,c("pipe count=%d opts=%j",n.pipesCount,e);var a=(!e||!1!==e.end)&&t!==o.stdout&&t!==o.stderr?s:g;function u(e,o){c("onunpipe"),e===r&&o&&!1===o.hasUnpiped&&(o.hasUnpiped=!0,c("cleanup"),t.removeListener("close",y),t.removeListener("finish",d),t.removeListener("drain",f),t.removeListener("error",h),t.removeListener("unpipe",u),r.removeListener("end",s),r.removeListener("end",g),r.removeListener("data",p),l=!0,!n.awaitDrain||t._writableState&&!t._writableState.needDrain||f())}function s(){c("onend"),t.end()}n.endEmitted?o.nextTick(a):r.once("end",a),t.on("unpipe",u);var f=function(t){return function(){var e=t._readableState;c("pipeOnDrain",e.awaitDrain),e.awaitDrain&&e.awaitDrain--,0===e.awaitDrain&&i(t,"data")&&(e.flowing=!0,B(t))}}(r);t.on("drain",f);var l=!1;function p(e){c("ondata");var o=t.write(e);c("dest.write",o),!1===o&&((1===n.pipesCount&&n.pipes===t||n.pipesCount>1&&-1!==q(n.pipes,t))&&!l&&(c("false write response, pause",n.awaitDrain),n.awaitDrain++),r.pause())}function h(e){c("onerror",e),g(),t.removeListener("error",h),0===i(t,"error")&&E(t,e)}function y(){t.removeListener("finish",d),g()}function d(){c("onfinish"),t.removeListener("close",y),g()}function g(){c("unpipe"),r.unpipe(t)}return r.on("data",p),function(t,e,r){if("function"==typeof t.prependListener)return t.prependListener(e,r);t._events&&t._events[e]?Array.isArray(t._events[e])?t._events[e].unshift(r):t._events[e]=[r,t._events[e]]:t.on(e,r)}(t,"error",h),t.once("close",y),t.once("finish",d),t.emit("pipe",r),n.flowing||(c("pipe resume"),r.resume()),t},j.prototype.unpipe=function(t){var e=this._readableState,r={hasUnpiped:!1};if(0===e.pipesCount)return this;if(1===e.pipesCount)return t&&t!==e.pipes||(t||(t=e.pipes),e.pipes=null,e.pipesCount=0,e.flowing=!1,t&&t.emit("unpipe",this,r)),this;if(!t){var n=e.pipes,o=e.pipesCount;e.pipes=null,e.pipesCount=0,e.flowing=!1;for(var i=0;i<o;i++)n[i].emit("unpipe",this,{hasUnpiped:!1});return this}var a=q(e.pipes,t);return-1===a||(e.pipes.splice(a,1),e.pipesCount-=1,1===e.pipesCount&&(e.pipes=e.pipes[0]),t.emit("unpipe",this,r)),this},j.prototype.on=function(t,e){var r=a.prototype.on.call(this,t,e),n=this._readableState;return"data"===t?(n.readableListening=this.listenerCount("readable")>0,!1!==n.flowing&&this.resume()):"readable"===t&&(n.endEmitted||n.readableListening||(n.readableListening=n.needReadable=!0,n.flowing=!1,n.emittedReadable=!1,c("on readable",n.length,n.reading),n.length?P(this):n.reading||o.nextTick(N,this))),r},j.prototype.addListener=j.prototype.on,j.prototype.removeListener=function(t,e){var r=a.prototype.removeListener.call(this,t,e);return"readable"===t&&o.nextTick(L,this),r},j.prototype.removeAllListeners=function(t){var e=a.prototype.removeAllListeners.apply(this,arguments);return"readable"!==t&&void 0!==t||o.nextTick(L,this),e},j.prototype.resume=function(){var t=this._readableState;return t.flowing||(c("resume"),t.flowing=!t.readableListening,function(t,e){e.resumeScheduled||(e.resumeScheduled=!0,o.nextTick(U,t,e))}(this,t)),t.paused=!1,this},j.prototype.pause=function(){return c("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(c("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState.paused=!0,this},j.prototype.wrap=function(t){var e=this,r=this._readableState,n=!1;for(var o in t.on("end",function(){if(c("wrapped end"),r.decoder&&!r.ended){var t=r.decoder.end();t&&t.length&&e.push(t)}e.push(null)}),t.on("data",function(o){(c("wrapped data"),r.decoder&&(o=r.decoder.write(o)),r.objectMode&&null==o)||(r.objectMode||o&&o.length)&&(e.push(o)||(n=!0,t.pause()))}),t)void 0===this[o]&&"function"==typeof t[o]&&(this[o]=function(e){return function(){return t[e].apply(t,arguments)}}(o));for(var i=0;i<_.length;i++)t.on(_[i],this.emit.bind(this,_[i]));return this._read=function(e){c("wrapped _read",e),n&&(n=!1,t.resume())},this},"function"==typeof Symbol&&(j.prototype[Symbol.asyncIterator]=function(){return void 0===p&&(p=r(2955)),p(this)}),Object.defineProperty(j.prototype,"readableHighWaterMark",{enumerable:!1,get:function(){return this._readableState.highWaterMark}}),Object.defineProperty(j.prototype,"readableBuffer",{enumerable:!1,get:function(){return this._readableState&&this._readableState.buffer}}),Object.defineProperty(j.prototype,"readableFlowing",{enumerable:!1,get:function(){return this._readableState.flowing},set:function(t){this._readableState&&(this._readableState.flowing=t)}}),j._fromList=F,Object.defineProperty(j.prototype,"readableLength",{enumerable:!1,get:function(){return this._readableState.length}}),"function"==typeof Symbol&&(j.from=function(t,e){return void 0===h&&(h=r(5157)),h(j,t,e)})},5606:t=>{var e,r,n=t.exports={};function o(){throw new Error("setTimeout has not been defined")}function i(){throw new Error("clearTimeout has not been defined")}function a(t){if(e===setTimeout)return setTimeout(t,0);if((e===o||!e)&&setTimeout)return e=setTimeout,setTimeout(t,0);try{return e(t,0)}catch(r){try{return e.call(null,t,0)}catch(r){return e.call(this,t,0)}}}!function(){try{e="function"==typeof setTimeout?setTimeout:o}catch(t){e=o}try{r="function"==typeof clearTimeout?clearTimeout:i}catch(t){r=i}}();var u,s=[],c=!1,f=-1;function l(){c&&u&&(c=!1,u.length?s=u.concat(s):f=-1,s.length&&p())}function p(){if(!c){var t=a(l);c=!0;for(var e=s.length;e;){for(u=s,s=[];++f<e;)u&&u[f].run();f=-1,e=s.length}u=null,c=!1,function(t){if(r===clearTimeout)return clearTimeout(t);if((r===i||!r)&&clearTimeout)return r=clearTimeout,clearTimeout(t);try{return r(t)}catch(e){try{return r.call(null,t)}catch(e){return r.call(this,t)}}}(t)}}function h(t,e){this.fun=t,this.array=e}function y(){}n.nextTick=function(t){var e=new Array(arguments.length-1);if(arguments.length>1)for(var r=1;r<arguments.length;r++)e[r-1]=arguments[r];s.push(new h(t,e)),1!==s.length||c||a(p)},h.prototype.run=function(){this.fun.apply(null,this.array)},n.title="browser",n.browser=!0,n.env={},n.argv=[],n.version="",n.versions={},n.on=y,n.addListener=y,n.once=y,n.off=y,n.removeListener=y,n.removeAllListeners=y,n.emit=y,n.prependListener=y,n.prependOnceListener=y,n.listeners=function(t){return[]},n.binding=function(t){throw new Error("process.binding is not supported")},n.cwd=function(){return"/"},n.chdir=function(t){throw new Error("process.chdir is not supported")},n.umask=function(){return 0}},5680:(t,e,r)=>{"use strict";var n=r(5767);t.exports=function(t){return!!n(t)}},5767:(t,e,r)=>{"use strict";var n=r(2682),o=r(9209),i=r(487),a=r(6556),u=r(5795),s=r(3628),c=a("Object.prototype.toString"),f=r(9092)(),l="undefined"==typeof globalThis?r.g:globalThis,p=o(),h=a("String.prototype.slice"),y=a("Array.prototype.indexOf",!0)||function(t,e){for(var r=0;r<t.length;r+=1)if(t[r]===e)return r;return-1},d={__proto__:null};n(p,f&&u&&s?function(t){var e=new l[t];if(Symbol.toStringTag in e&&s){var r=s(e),n=u(r,Symbol.toStringTag);if(!n&&r){var o=s(r);n=u(o,Symbol.toStringTag)}d["$"+t]=i(n.get)}}:function(t){var e=new l[t],r=e.slice||e.set;r&&(d["$"+t]=i(r))});t.exports=function(t){if(!t||"object"!=typeof t)return!1;if(!f){var e=h(c(t),8,-1);return y(p,e)>-1?e:"Object"===e&&function(t){var e=!1;return n(d,function(r,n){if(!e)try{r(t),e=h(n,1)}catch(t){}}),e}(t)}return u?function(t){var e=!1;return n(d,function(r,n){if(!e)try{"$"+r(t)===n&&(e=h(n,1))}catch(t){}}),e}(t):null}},5795:(t,e,r)=>{"use strict";var n=r(6549);if(n)try{n([],"length")}catch(t){n=null}t.exports=n},5880:t=>{"use strict";t.exports=Math.pow},5896:(t,e,r)=>{"use strict";var n=r(5606);function o(t,e){a(t,e),i(t)}function i(t){t._writableState&&!t._writableState.emitClose||t._readableState&&!t._readableState.emitClose||t.emit("close")}function a(t,e){t.emit("error",e)}t.exports={destroy:function(t,e){var r=this,u=this._readableState&&this._readableState.destroyed,s=this._writableState&&this._writableState.destroyed;return u||s?(e?e(t):t&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,n.nextTick(a,this,t)):n.nextTick(a,this,t)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(t||null,function(t){!e&&t?r._writableState?r._writableState.errorEmitted?n.nextTick(i,r):(r._writableState.errorEmitted=!0,n.nextTick(o,r,t)):n.nextTick(o,r,t):e?(n.nextTick(i,r),e(t)):n.nextTick(i,r)}),this)},undestroy:function(){this._readableState&&(this._readableState.destroyed=!1,this._readableState.reading=!1,this._readableState.ended=!1,this._readableState.endEmitted=!1),this._writableState&&(this._writableState.destroyed=!1,this._writableState.ended=!1,this._writableState.ending=!1,this._writableState.finalCalled=!1,this._writableState.prefinished=!1,this._writableState.finished=!1,this._writableState.errorEmitted=!1)},errorOrDestroy:function(t,e){var r=t._readableState,n=t._writableState;r&&r.autoDestroy||n&&n.autoDestroy?t.destroy(e):t.emit("error",e)}}},6048:t=>{"use strict";var e={};function r(t,r,n){n||(n=Error);var o=function(t){var e,n;function o(e,n,o){return t.call(this,function(t,e,n){return"string"==typeof r?r:r(t,e,n)}(e,n,o))||this}return n=t,(e=o).prototype=Object.create(n.prototype),e.prototype.constructor=e,e.__proto__=n,o}(n);o.prototype.name=n.name,o.prototype.code=t,e[t]=o}function n(t,e){if(Array.isArray(t)){var r=t.length;return t=t.map(function(t){return String(t)}),r>2?"one of ".concat(e," ").concat(t.slice(0,r-1).join(", "),", or ")+t[r-1]:2===r?"one of ".concat(e," ").concat(t[0]," or ").concat(t[1]):"of ".concat(e," ").concat(t[0])}return"of ".concat(e," ").concat(String(t))}r("ERR_INVALID_OPT_VALUE",function(t,e){return'The value "'+e+'" is invalid for option "'+t+'"'},TypeError),r("ERR_INVALID_ARG_TYPE",function(t,e,r){var o,i,a,u;if("string"==typeof e&&(i="not ",e.substr(!a||a<0?0:+a,i.length)===i)?(o="must not be",e=e.replace(/^not /,"")):o="must be",function(t,e,r){return(void 0===r||r>t.length)&&(r=t.length),t.substring(r-e.length,r)===e}(t," argument"))u="The ".concat(t," ").concat(o," ").concat(n(e,"type"));else{var s=function(t,e,r){return"number"!=typeof r&&(r=0),!(r+e.length>t.length)&&-1!==t.indexOf(e,r)}(t,".")?"property":"argument";u='The "'.concat(t,'" ').concat(s," ").concat(o," ").concat(n(e,"type"))}return u+=". Received type ".concat(typeof r)},TypeError),r("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF"),r("ERR_METHOD_NOT_IMPLEMENTED",function(t){return"The "+t+" method is not implemented"}),r("ERR_STREAM_PREMATURE_CLOSE","Premature close"),r("ERR_STREAM_DESTROYED",function(t){return"Cannot call "+t+" after a stream was destroyed"}),r("ERR_MULTIPLE_CALLBACK","Callback called multiple times"),r("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable"),r("ERR_STREAM_WRITE_AFTER_END","write after end"),r("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),r("ERR_UNKNOWN_ENCODING",function(t){return"Unknown encoding: "+t},TypeError),r("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event"),t.exports.F=e},6154:(t,e,r)=>{var n=r(8287).Buffer;t.exports={check:function(t){return"function"==typeof t.getDate},type:-1,encode:function(t){if(null===t)return;const e=1*t,r=Math.floor(e/1e3),o=1e6*(e-1e3*r);if(r<0||r>17179869184){const t=n.allocUnsafe(13);t[0]=-1,t.writeUInt32BE(o,1);let e="";if(r>=0){const t="0000000000000000";e=r.toString(16),e=t.slice(0,-1*e.length)+e}else{let t=(-1*r).toString(2),n=t.length-1;for(;"0"===t[n];)n--;t=t.slice(0,n).split("").map(function(t){return"1"===t?0:1}).join("")+t.slice(n,t.length);t="1111111111111111111111111111111111111111111111111111111111111111".slice(0,-1*t.length)+t,t.match(/.{1,8}/g).forEach(function(t){1===(t=parseInt(t,2).toString(16)).length&&(t="0"+t),e+=t})}return t.write(e,5,"hex"),t}if(o||r>4294967295){const t=n.allocUnsafe(9);t[0]=-1;const e=4*o+r/Math.pow(2,32)&4294967295,i=4294967295&r;return t.writeInt32BE(e,1),t.writeInt32BE(i,5),t}{const t=n.allocUnsafe(5);return t[0]=-1,t.writeUInt32BE(Math.floor(e/1e3),1),t}},decode:function(t){let e,r,n,o,i=0;switch(t.length){case 4:e=t.readUInt32BE(0);break;case 8:r=t.readUInt32BE(0),n=t.readUInt32BE(4),i=r/4,e=(3&r)*Math.pow(2,32)+n;break;case 12:if(o=t.toString("hex",4,12),128&parseInt(t.toString("hex",4,6),16)){let t="";const r="00000000";o.match(/.{1,2}/g).forEach(function(e){e=parseInt(e,16).toString(2),e=r.slice(0,-1*e.length)+e,t+=e}),e=-1*parseInt(t.split("").map(function(t){return"1"===t?0:1}).join(""),2)-1}else e=parseInt(o,16);i=t.readUInt32BE(0)}const a=1e3*e+Math.round(i/1e6);return new Date(a)}}},6188:t=>{"use strict";t.exports=Math.max},6238:(t,e,r)=>{"use strict";var n=r(6048).F.ERR_STREAM_PREMATURE_CLOSE;function o(){}t.exports=function t(e,r,i){if("function"==typeof r)return t(e,null,r);r||(r={}),i=function(t){var e=!1;return function(){if(!e){e=!0;for(var r=arguments.length,n=new Array(r),o=0;o<r;o++)n[o]=arguments[o];t.apply(this,n)}}}(i||o);var a=r.readable||!1!==r.readable&&e.readable,u=r.writable||!1!==r.writable&&e.writable,s=function(){e.writable||f()},c=e._writableState&&e._writableState.finished,f=function(){u=!1,c=!0,a||i.call(e)},l=e._readableState&&e._readableState.endEmitted,p=function(){a=!1,l=!0,u||i.call(e)},h=function(t){i.call(e,t)},y=function(){var t;return a&&!l?(e._readableState&&e._readableState.ended||(t=new n),i.call(e,t)):u&&!c?(e._writableState&&e._writableState.ended||(t=new n),i.call(e,t)):void 0},d=function(){e.req.on("finish",f)};return!function(t){return t.setHeader&&"function"==typeof t.abort}(e)?u&&!e._writableState&&(e.on("end",s),e.on("close",s)):(e.on("complete",f),e.on("abort",y),e.req?d():e.on("request",d)),e.on("end",p),e.on("finish",f),!1!==r.error&&e.on("error",h),e.on("close",y),function(){e.removeListener("complete",f),e.removeListener("abort",y),e.removeListener("request",d),e.req&&e.req.removeListener("finish",f),e.removeListener("end",s),e.removeListener("close",s),e.removeListener("finish",f),e.removeListener("end",p),e.removeListener("error",h),e.removeListener("close",y)}}},6506:(t,e,r)=>{"use strict";const n=r(2861).Buffer,o=r(4829),i=r(4571).d;function a(t,e,r){const n=r%4294967296,o=Math.floor(r/4294967296);t.writeUInt32BE(o,e+0),t.writeUInt32BE(n,e+4)}t.exports=function(t,e){function r(u){if(void 0===u)throw new Error("undefined is not encodable in msgpack!");if(null===u)return n.from([192]);if(!0===u)return n.from([195]);if(!1===u)return n.from([194]);if(u instanceof Map)return function(t,e,r){const n=[f(t.size,128,222)],i=[...t.keys()];e.preferMap||i.every(t=>"string"==typeof t)&&console.warn("Map with string only keys will be deserialized as an object!");return i.forEach(e=>{n.push(r(e),r(t.get(e)))}),o(n)}(u,e,r);if("string"==typeof u)return function(t,e){const r=n.byteLength(t);let o;r<32?(o=n.allocUnsafe(1+r),o[0]=160|r,r>0&&o.write(t,1)):r<=255&&!e.compatibilityMode?(o=n.allocUnsafe(2+r),o[0]=217,o[1]=r,o.write(t,2)):r<=65535?(o=n.allocUnsafe(3+r),o[0]=218,o.writeUInt16BE(r,1),o.write(t,3)):(o=n.allocUnsafe(5+r),o[0]=219,o.writeUInt32BE(r,1),o.write(t,5));return o}(u,e);if(u&&(u.readUInt32LE||u instanceof Uint8Array)){u instanceof Uint8Array&&(u=n.from(u));const t=e.compatibilityMode?p:l;return o([t(u.length),u])}if(Array.isArray(u))return function(t,e){const r=[f(t.length,144,220)];if(t.forEach(t=>{r.push(e(t))}),r.length!==t.length+1)throw new Error("Sparse arrays are not encodable in msgpack");return o(r)}(u,r);if("object"==typeof u)return function(t,e){const r=e.find(e=>e.check(t));if(!r)return null;const n=r.encode(t);return n?o([c(n.length-1),n]):null}(u,t)||function(t,e,r){const n=[];for(const e in t)Object.prototype.hasOwnProperty.call(t,e)&&void 0!==t[e]&&"function"!=typeof t[e]&&n.push(e);const i=[f(n.length,128,222)];e.sortKeys&&n.sort();return n.forEach(e=>{i.push(r(e),r(t[e]))}),o(i)}(u,e,r);if("number"==typeof u)return function(t,e){let r;if(i(t))return s(t,e.forceFloat64);if(Math.abs(t)>9007199254740991)return s(t,!0);if(t>=0){if(t<128)return n.from([t]);if(t<256)return n.from([204,t]);if(t<65536)return n.from([205,255&t>>8,255&t]);if(t<=4294967295)return n.from([206,255&t>>24,255&t>>16,255&t>>8,255&t]);t<=9007199254740991&&(r=n.allocUnsafe(9),r[0]=207,a(r,1,t))}else t>=-32?(r=n.allocUnsafe(1),r[0]=256+t):t>=-128?(r=n.allocUnsafe(2),r[0]=208,r.writeInt8(t,1)):t>=-32768?(r=n.allocUnsafe(3),r[0]=209,r.writeInt16BE(t,1)):t>-214748365?(r=n.allocUnsafe(5),r[0]=210,r.writeInt32BE(t,1)):t>=-9007199254740991&&(r=n.allocUnsafe(9),r[0]=211,function(t,e,r){const n=r<0;r=Math.abs(r),a(t,e,r),n&&function(t,e){let r=e+8;for(;r-- >e;)if(0!==t[r]){t[r]=1+(255^t[r]);break}for(;r-- >e;)t[r]=255^t[r]}(t,e)}(r,1,t));return r}(u,e);throw new Error("not implemented yet")}return function(t){return r(t).slice()}};const u=Math.fround;function s(t,e){let r;return!e&&u&&Object.is(u(t),t)?(r=n.allocUnsafe(5),r[0]=202,r.writeFloatBE(t,1)):(r=n.allocUnsafe(9),r[0]=203,r.writeDoubleBE(t,1)),r}function c(t){return 1===t?n.from([212]):2===t?n.from([213]):4===t?n.from([214]):8===t?n.from([215]):16===t?n.from([216]):t<256?n.from([199,t]):t<65536?n.from([200,t>>8,255&t]):n.from([201,t>>24,t>>16&255,t>>8&255,255&t])}function f(t,e,r){if(t<16)return n.from([e|t]);const o=t<65536?2:4,i=n.allocUnsafe(1+o);return i[0]=t<65536?r:r+1,i.writeUIntBE(t,1,o),i}function l(t){let e;return t<=255?(e=n.allocUnsafe(2),e[0]=196,e[1]=t):t<=65535?(e=n.allocUnsafe(3),e[0]=197,e.writeUInt16BE(t,1)):(e=n.allocUnsafe(5),e[0]=198,e.writeUInt32BE(t,1)),e}function p(t){let e;return t<=31?(e=n.allocUnsafe(1),e[0]=160|t):t<=65535?(e=n.allocUnsafe(3),e[0]=218,e.writeUInt16BE(t,1)):(e=n.allocUnsafe(5),e[0]=219,e.writeUInt32BE(t,1)),e}},6549:t=>{"use strict";t.exports=Object.getOwnPropertyDescriptor},6556:(t,e,r)=>{"use strict";var n=r(453),o=r(3126),i=o([n("%String.prototype.indexOf%")]);t.exports=function(t,e){var r=n(t,!!e);return"function"==typeof r&&i(t,".prototype.")>-1?o([r]):r}},6576:(t,e,r)=>{"use strict";var n=r(9394),o=r(8452);t.exports=function(){var t=n();return o(Object,{is:t},{is:function(){return Object.is!==t}}),t}},6578:t=>{"use strict";t.exports=["Float16Array","Float32Array","Float64Array","Int8Array","Int16Array","Int32Array","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array"]},6642:(t,e,r)=>{"use strict";var n=r(3003);t.exports=function(){return Number.isNaN&&Number.isNaN(NaN)&&!Number.isNaN("a")?Number.isNaN:n}},6698:t=>{"function"==typeof Object.create?t.exports=function(t,e){e&&(t.super_=e,t.prototype=Object.create(e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}))}:t.exports=function(t,e){if(e){t.super_=e;var r=function(){};r.prototype=e.prototype,t.prototype=new r,t.prototype.constructor=t}}},6708:(t,e,r)=>{"use strict";var n,o=r(5606);function i(t){var e=this;this.next=null,this.entry=null,this.finish=function(){!function(t,e,r){var n=t.entry;t.entry=null;for(;n;){var o=n.callback;e.pendingcb--,o(r),n=n.next}e.corkedRequestsFree.next=t}(e,t)}}t.exports=j,j.WritableState=O;var a={deprecate:r(4643)},u=r(345),s=r(8287).Buffer,c=(void 0!==r.g?r.g:"undefined"!=typeof window?window:"undefined"!=typeof self?self:{}).Uint8Array||function(){};var f,l=r(5896),p=r(5291).getHighWaterMark,h=r(6048).F,y=h.ERR_INVALID_ARG_TYPE,d=h.ERR_METHOD_NOT_IMPLEMENTED,g=h.ERR_MULTIPLE_CALLBACK,b=h.ERR_STREAM_CANNOT_PIPE,v=h.ERR_STREAM_DESTROYED,m=h.ERR_STREAM_NULL_VALUES,w=h.ERR_STREAM_WRITE_AFTER_END,S=h.ERR_UNKNOWN_ENCODING,E=l.errorOrDestroy;function _(){}function O(t,e,a){n=n||r(5382),t=t||{},"boolean"!=typeof a&&(a=e instanceof n),this.objectMode=!!t.objectMode,a&&(this.objectMode=this.objectMode||!!t.writableObjectMode),this.highWaterMark=p(this,t,"writableHighWaterMark",a),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1;var u=!1===t.decodeStrings;this.decodeStrings=!u,this.defaultEncoding=t.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(t){!function(t,e){var r=t._writableState,n=r.sync,i=r.writecb;if("function"!=typeof i)throw new g;if(function(t){t.writing=!1,t.writecb=null,t.length-=t.writelen,t.writelen=0}(r),e)!function(t,e,r,n,i){--e.pendingcb,r?(o.nextTick(i,n),o.nextTick(T,t,e),t._writableState.errorEmitted=!0,E(t,n)):(i(n),t._writableState.errorEmitted=!0,E(t,n),T(t,e))}(t,r,n,e,i);else{var a=k(r)||t.destroyed;a||r.corked||r.bufferProcessing||!r.bufferedRequest||R(t,r),n?o.nextTick(x,t,r,a,i):x(t,r,a,i)}}(e,t)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.emitClose=!1!==t.emitClose,this.autoDestroy=!!t.autoDestroy,this.bufferedRequestCount=0,this.corkedRequestsFree=new i(this)}function j(t){var e=this instanceof(n=n||r(5382));if(!e&&!f.call(j,this))return new j(t);this._writableState=new O(t,this,e),this.writable=!0,t&&("function"==typeof t.write&&(this._write=t.write),"function"==typeof t.writev&&(this._writev=t.writev),"function"==typeof t.destroy&&(this._destroy=t.destroy),"function"==typeof t.final&&(this._final=t.final)),u.call(this)}function A(t,e,r,n,o,i,a){e.writelen=n,e.writecb=a,e.writing=!0,e.sync=!0,e.destroyed?e.onwrite(new v("write")):r?t._writev(o,e.onwrite):t._write(o,i,e.onwrite),e.sync=!1}function x(t,e,r,n){r||function(t,e){0===e.length&&e.needDrain&&(e.needDrain=!1,t.emit("drain"))}(t,e),e.pendingcb--,n(),T(t,e)}function R(t,e){e.bufferProcessing=!0;var r=e.bufferedRequest;if(t._writev&&r&&r.next){var n=e.bufferedRequestCount,o=new Array(n),a=e.corkedRequestsFree;a.entry=r;for(var u=0,s=!0;r;)o[u]=r,r.isBuf||(s=!1),r=r.next,u+=1;o.allBuffers=s,A(t,e,!0,e.length,o,"",a.finish),e.pendingcb++,e.lastBufferedRequest=null,a.next?(e.corkedRequestsFree=a.next,a.next=null):e.corkedRequestsFree=new i(e),e.bufferedRequestCount=0}else{for(;r;){var c=r.chunk,f=r.encoding,l=r.callback;if(A(t,e,!1,e.objectMode?1:c.length,c,f,l),r=r.next,e.bufferedRequestCount--,e.writing)break}null===r&&(e.lastBufferedRequest=null)}e.bufferedRequest=r,e.bufferProcessing=!1}function k(t){return t.ending&&0===t.length&&null===t.bufferedRequest&&!t.finished&&!t.writing}function P(t,e){t._final(function(r){e.pendingcb--,r&&E(t,r),e.prefinished=!0,t.emit("prefinish"),T(t,e)})}function T(t,e){var r=k(e);if(r&&(function(t,e){e.prefinished||e.finalCalled||("function"!=typeof t._final||e.destroyed?(e.prefinished=!0,t.emit("prefinish")):(e.pendingcb++,e.finalCalled=!0,o.nextTick(P,t,e)))}(t,e),0===e.pendingcb&&(e.finished=!0,t.emit("finish"),e.autoDestroy))){var n=t._readableState;(!n||n.autoDestroy&&n.endEmitted)&&t.destroy()}return r}r(6698)(j,u),O.prototype.getBuffer=function(){for(var t=this.bufferedRequest,e=[];t;)e.push(t),t=t.next;return e},function(){try{Object.defineProperty(O.prototype,"buffer",{get:a.deprecate(function(){return this.getBuffer()},"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch(t){}}(),"function"==typeof Symbol&&Symbol.hasInstance&&"function"==typeof Function.prototype[Symbol.hasInstance]?(f=Function.prototype[Symbol.hasInstance],Object.defineProperty(j,Symbol.hasInstance,{value:function(t){return!!f.call(this,t)||this===j&&(t&&t._writableState instanceof O)}})):f=function(t){return t instanceof this},j.prototype.pipe=function(){E(this,new b)},j.prototype.write=function(t,e,r){var n,i=this._writableState,a=!1,u=!i.objectMode&&(n=t,s.isBuffer(n)||n instanceof c);return u&&!s.isBuffer(t)&&(t=function(t){return s.from(t)}(t)),"function"==typeof e&&(r=e,e=null),u?e="buffer":e||(e=i.defaultEncoding),"function"!=typeof r&&(r=_),i.ending?function(t,e){var r=new w;E(t,r),o.nextTick(e,r)}(this,r):(u||function(t,e,r,n){var i;return null===r?i=new m:"string"==typeof r||e.objectMode||(i=new y("chunk",["string","Buffer"],r)),!i||(E(t,i),o.nextTick(n,i),!1)}(this,i,t,r))&&(i.pendingcb++,a=function(t,e,r,n,o,i){if(!r){var a=function(t,e,r){t.objectMode||!1===t.decodeStrings||"string"!=typeof e||(e=s.from(e,r));return e}(e,n,o);n!==a&&(r=!0,o="buffer",n=a)}var u=e.objectMode?1:n.length;e.length+=u;var c=e.length<e.highWaterMark;c||(e.needDrain=!0);if(e.writing||e.corked){var f=e.lastBufferedRequest;e.lastBufferedRequest={chunk:n,encoding:o,isBuf:r,callback:i,next:null},f?f.next=e.lastBufferedRequest:e.bufferedRequest=e.lastBufferedRequest,e.bufferedRequestCount+=1}else A(t,e,!1,u,n,o,i);return c}(this,i,u,t,e,r)),a},j.prototype.cork=function(){this._writableState.corked++},j.prototype.uncork=function(){var t=this._writableState;t.corked&&(t.corked--,t.writing||t.corked||t.bufferProcessing||!t.bufferedRequest||R(this,t))},j.prototype.setDefaultEncoding=function(t){if("string"==typeof t&&(t=t.toLowerCase()),!(["hex","utf8","utf-8","ascii","binary","base64","ucs2","ucs-2","utf16le","utf-16le","raw"].indexOf((t+"").toLowerCase())>-1))throw new S(t);return this._writableState.defaultEncoding=t,this},Object.defineProperty(j.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(j.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),j.prototype._write=function(t,e,r){r(new d("_write()"))},j.prototype._writev=null,j.prototype.end=function(t,e,r){var n=this._writableState;return"function"==typeof t?(r=t,t=null,e=null):"function"==typeof e&&(r=e,e=null),null!=t&&this.write(t,e),n.corked&&(n.corked=1,this.uncork()),n.ending||function(t,e,r){e.ending=!0,T(t,e),r&&(e.finished?o.nextTick(r):t.once("finish",r));e.ended=!0,t.writable=!1}(this,n,r),this},Object.defineProperty(j.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(j.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(t){this._writableState&&(this._writableState.destroyed=t)}}),j.prototype.destroy=l.destroy,j.prototype._undestroy=l.undestroy,j.prototype._destroy=function(t,e){e(t)}},6743:(t,e,r)=>{"use strict";var n=r(9353);t.exports=Function.prototype.bind||n},6897:(t,e,r)=>{"use strict";var n=r(453),o=r(41),i=r(592)(),a=r(5795),u=r(9675),s=n("%Math.floor%");t.exports=function(t,e){if("function"!=typeof t)throw new u("`fn` is not a function");if("number"!=typeof e||e<0||e>4294967295||s(e)!==e)throw new u("`length` must be a positive 32-bit integer");var r=arguments.length>2&&!!arguments[2],n=!0,c=!0;if("length"in t&&a){var f=a(t,"length");f&&!f.configurable&&(n=!1),f&&!f.writable&&(c=!1)}return(n||c||!r)&&(i?o(t,"length",e,!0,!0):o(t,"length",e)),t}},7007:t=>{"use strict";var e,r="object"==typeof Reflect?Reflect:null,n=r&&"function"==typeof r.apply?r.apply:function(t,e,r){return Function.prototype.apply.call(t,e,r)};e=r&&"function"==typeof r.ownKeys?r.ownKeys:Object.getOwnPropertySymbols?function(t){return Object.getOwnPropertyNames(t).concat(Object.getOwnPropertySymbols(t))}:function(t){return Object.getOwnPropertyNames(t)};var o=Number.isNaN||function(t){return t!=t};function i(){i.init.call(this)}t.exports=i,t.exports.once=function(t,e){return new Promise(function(r,n){function o(r){t.removeListener(e,i),n(r)}function i(){"function"==typeof t.removeListener&&t.removeListener("error",o),r([].slice.call(arguments))}d(t,e,i,{once:!0}),"error"!==e&&function(t,e,r){"function"==typeof t.on&&d(t,"error",e,r)}(t,o,{once:!0})})},i.EventEmitter=i,i.prototype._events=void 0,i.prototype._eventsCount=0,i.prototype._maxListeners=void 0;var a=10;function u(t){if("function"!=typeof t)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof t)}function s(t){return void 0===t._maxListeners?i.defaultMaxListeners:t._maxListeners}function c(t,e,r,n){var o,i,a,c;if(u(r),void 0===(i=t._events)?(i=t._events=Object.create(null),t._eventsCount=0):(void 0!==i.newListener&&(t.emit("newListener",e,r.listener?r.listener:r),i=t._events),a=i[e]),void 0===a)a=i[e]=r,++t._eventsCount;else if("function"==typeof a?a=i[e]=n?[r,a]:[a,r]:n?a.unshift(r):a.push(r),(o=s(t))>0&&a.length>o&&!a.warned){a.warned=!0;var f=new Error("Possible EventEmitter memory leak detected. "+a.length+" "+String(e)+" listeners added. Use emitter.setMaxListeners() to increase limit");f.name="MaxListenersExceededWarning",f.emitter=t,f.type=e,f.count=a.length,c=f,console&&console.warn&&console.warn(c)}return t}function f(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function l(t,e,r){var n={fired:!1,wrapFn:void 0,target:t,type:e,listener:r},o=f.bind(n);return o.listener=r,n.wrapFn=o,o}function p(t,e,r){var n=t._events;if(void 0===n)return[];var o=n[e];return void 0===o?[]:"function"==typeof o?r?[o.listener||o]:[o]:r?function(t){for(var e=new Array(t.length),r=0;r<e.length;++r)e[r]=t[r].listener||t[r];return e}(o):y(o,o.length)}function h(t){var e=this._events;if(void 0!==e){var r=e[t];if("function"==typeof r)return 1;if(void 0!==r)return r.length}return 0}function y(t,e){for(var r=new Array(e),n=0;n<e;++n)r[n]=t[n];return r}function d(t,e,r,n){if("function"==typeof t.on)n.once?t.once(e,r):t.on(e,r);else{if("function"!=typeof t.addEventListener)throw new TypeError('The "emitter" argument must be of type EventEmitter. Received type '+typeof t);t.addEventListener(e,function o(i){n.once&&t.removeEventListener(e,o),r(i)})}}Object.defineProperty(i,"defaultMaxListeners",{enumerable:!0,get:function(){return a},set:function(t){if("number"!=typeof t||t<0||o(t))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+t+".");a=t}}),i.init=function(){void 0!==this._events&&this._events!==Object.getPrototypeOf(this)._events||(this._events=Object.create(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0},i.prototype.setMaxListeners=function(t){if("number"!=typeof t||t<0||o(t))throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+t+".");return this._maxListeners=t,this},i.prototype.getMaxListeners=function(){return s(this)},i.prototype.emit=function(t){for(var e=[],r=1;r<arguments.length;r++)e.push(arguments[r]);var o="error"===t,i=this._events;if(void 0!==i)o=o&&void 0===i.error;else if(!o)return!1;if(o){var a;if(e.length>0&&(a=e[0]),a instanceof Error)throw a;var u=new Error("Unhandled error."+(a?" ("+a.message+")":""));throw u.context=a,u}var s=i[t];if(void 0===s)return!1;if("function"==typeof s)n(s,this,e);else{var c=s.length,f=y(s,c);for(r=0;r<c;++r)n(f[r],this,e)}return!0},i.prototype.addListener=function(t,e){return c(this,t,e,!1)},i.prototype.on=i.prototype.addListener,i.prototype.prependListener=function(t,e){return c(this,t,e,!0)},i.prototype.once=function(t,e){return u(e),this.on(t,l(this,t,e)),this},i.prototype.prependOnceListener=function(t,e){return u(e),this.prependListener(t,l(this,t,e)),this},i.prototype.removeListener=function(t,e){var r,n,o,i,a;if(u(e),void 0===(n=this._events))return this;if(void 0===(r=n[t]))return this;if(r===e||r.listener===e)0===--this._eventsCount?this._events=Object.create(null):(delete n[t],n.removeListener&&this.emit("removeListener",t,r.listener||e));else if("function"!=typeof r){for(o=-1,i=r.length-1;i>=0;i--)if(r[i]===e||r[i].listener===e){a=r[i].listener,o=i;break}if(o<0)return this;0===o?r.shift():function(t,e){for(;e+1<t.length;e++)t[e]=t[e+1];t.pop()}(r,o),1===r.length&&(n[t]=r[0]),void 0!==n.removeListener&&this.emit("removeListener",t,a||e)}return this},i.prototype.off=i.prototype.removeListener,i.prototype.removeAllListeners=function(t){var e,r,n;if(void 0===(r=this._events))return this;if(void 0===r.removeListener)return 0===arguments.length?(this._events=Object.create(null),this._eventsCount=0):void 0!==r[t]&&(0===--this._eventsCount?this._events=Object.create(null):delete r[t]),this;if(0===arguments.length){var o,i=Object.keys(r);for(n=0;n<i.length;++n)"removeListener"!==(o=i[n])&&this.removeAllListeners(o);return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if("function"==typeof(e=r[t]))this.removeListener(t,e);else if(void 0!==e)for(n=e.length-1;n>=0;n--)this.removeListener(t,e[n]);return this},i.prototype.listeners=function(t){return p(this,t,!0)},i.prototype.rawListeners=function(t){return p(this,t,!1)},i.listenerCount=function(t,e){return"function"==typeof t.listenerCount?t.listenerCount(e):h.call(t,e)},i.prototype.listenerCount=h,i.prototype.eventNames=function(){return this._eventsCount>0?e(this._events):[]}},7119:t=>{"use strict";t.exports="undefined"!=typeof Reflect&&Reflect&&Reflect.apply},7176:(t,e,r)=>{"use strict";var n,o=r(3126),i=r(5795);try{n=[].__proto__===Array.prototype}catch(t){if(!t||"object"!=typeof t||!("code"in t)||"ERR_PROTO_ACCESS"!==t.code)throw t}var a=!!n&&i&&i(Object.prototype,"__proto__"),u=Object,s=u.getPrototypeOf;t.exports=a&&"function"==typeof a.get?o([a.get]):"function"==typeof s&&function(t){return s(null==t?t:u(t))}},7244:(t,e,r)=>{"use strict";var n=r(9092)(),o=r(6556)("Object.prototype.toString"),i=function(t){return!(n&&t&&"object"==typeof t&&Symbol.toStringTag in t)&&"[object Arguments]"===o(t)},a=function(t){return!!i(t)||null!==t&&"object"==typeof t&&"length"in t&&"number"==typeof t.length&&t.length>=0&&"[object Array]"!==o(t)&&"callee"in t&&"[object Function]"===o(t.callee)},u=function(){return i(arguments)}();i.isLegacyArguments=a,t.exports=u?i:a},7653:(t,e,r)=>{"use strict";var n=r(8452),o=r(487),i=r(9211),a=r(9394),u=r(6576),s=o(a(),Object);n(s,{getPolyfill:a,implementation:i,shim:u}),t.exports=s},7758:(t,e,r)=>{"use strict";var n;var o=r(6048).F,i=o.ERR_MISSING_ARGS,a=o.ERR_STREAM_DESTROYED;function u(t){if(t)throw t}function s(t){t()}function c(t,e){return t.pipe(e)}t.exports=function(){for(var t=arguments.length,e=new Array(t),o=0;o<t;o++)e[o]=arguments[o];var f,l=function(t){return t.length?"function"!=typeof t[t.length-1]?u:t.pop():u}(e);if(Array.isArray(e[0])&&(e=e[0]),e.length<2)throw new i("streams");var p=e.map(function(t,o){var i=o<e.length-1;return function(t,e,o,i){i=function(t){var e=!1;return function(){e||(e=!0,t.apply(void 0,arguments))}}(i);var u=!1;t.on("close",function(){u=!0}),void 0===n&&(n=r(6238)),n(t,{readable:e,writable:o},function(t){if(t)return i(t);u=!0,i()});var s=!1;return function(e){if(!u&&!s)return s=!0,function(t){return t.setHeader&&"function"==typeof t.abort}(t)?t.abort():"function"==typeof t.destroy?t.destroy():void i(e||new a("pipe"))}}(t,i,o>0,function(t){f||(f=t),t&&p.forEach(s),i||(p.forEach(s),l(f))})});return e.reduce(c)}},7813:(t,e,r)=>{"use strict";const{Buffer:n}=r(8287),o=Symbol.for("BufferList");function i(t){if(!(this instanceof i))return new i(t);i._init.call(this,t)}i._init=function(t){Object.defineProperty(this,o,{value:!0}),this._bufs=[],this.length=0,t&&this.append(t)},i.prototype._new=function(t){return new i(t)},i.prototype._offset=function(t){if(0===t)return[0,0];let e=0;for(let r=0;r<this._bufs.length;r++){const n=e+this._bufs[r].length;if(t<n||r===this._bufs.length-1)return[r,t-e];e=n}},i.prototype._reverseOffset=function(t){const e=t[0];let r=t[1];for(let t=0;t<e;t++)r+=this._bufs[t].length;return r},i.prototype.get=function(t){if(t>this.length||t<0)return;const e=this._offset(t);return this._bufs[e[0]][e[1]]},i.prototype.slice=function(t,e){return"number"==typeof t&&t<0&&(t+=this.length),"number"==typeof e&&e<0&&(e+=this.length),this.copy(null,0,t,e)},i.prototype.copy=function(t,e,r,o){if(("number"!=typeof r||r<0)&&(r=0),("number"!=typeof o||o>this.length)&&(o=this.length),r>=this.length)return t||n.alloc(0);if(o<=0)return t||n.alloc(0);const i=!!t,a=this._offset(r),u=o-r;let s=u,c=i&&e||0,f=a[1];if(0===r&&o===this.length){if(!i)return 1===this._bufs.length?this._bufs[0]:n.concat(this._bufs,this.length);for(let e=0;e<this._bufs.length;e++)this._bufs[e].copy(t,c),c+=this._bufs[e].length;return t}if(s<=this._bufs[a[0]].length-f)return i?this._bufs[a[0]].copy(t,e,f,f+s):this._bufs[a[0]].slice(f,f+s);i||(t=n.allocUnsafe(u));for(let e=a[0];e<this._bufs.length;e++){const r=this._bufs[e].length-f;if(!(s>r)){this._bufs[e].copy(t,c,f,f+s),c+=r;break}this._bufs[e].copy(t,c,f),c+=r,s-=r,f&&(f=0)}return t.length>c?t.slice(0,c):t},i.prototype.shallowSlice=function(t,e){if(t=t||0,e="number"!=typeof e?this.length:e,t<0&&(t+=this.length),e<0&&(e+=this.length),t===e)return this._new();const r=this._offset(t),n=this._offset(e),o=this._bufs.slice(r[0],n[0]+1);return 0===n[1]?o.pop():o[o.length-1]=o[o.length-1].slice(0,n[1]),0!==r[1]&&(o[0]=o[0].slice(r[1])),this._new(o)},i.prototype.toString=function(t,e,r){return this.slice(e,r).toString(t)},i.prototype.consume=function(t){if(t=Math.trunc(t),Number.isNaN(t)||t<=0)return this;for(;this._bufs.length;){if(!(t>=this._bufs[0].length)){this._bufs[0]=this._bufs[0].slice(t),this.length-=t;break}t-=this._bufs[0].length,this.length-=this._bufs[0].length,this._bufs.shift()}return this},i.prototype.duplicate=function(){const t=this._new();for(let e=0;e<this._bufs.length;e++)t.append(this._bufs[e]);return t},i.prototype.append=function(t){if(null==t)return this;if(t.buffer)this._appendBuffer(n.from(t.buffer,t.byteOffset,t.byteLength));else if(Array.isArray(t))for(let e=0;e<t.length;e++)this.append(t[e]);else if(this._isBufferList(t))for(let e=0;e<t._bufs.length;e++)this.append(t._bufs[e]);else"number"==typeof t&&(t=t.toString()),this._appendBuffer(n.from(t));return this},i.prototype._appendBuffer=function(t){this._bufs.push(t),this.length+=t.length},i.prototype.indexOf=function(t,e,r){if(void 0===r&&"string"==typeof e&&(r=e,e=void 0),"function"==typeof t||Array.isArray(t))throw new TypeError('The "value" argument must be one of type string, Buffer, BufferList, or Uint8Array.');if("number"==typeof t?t=n.from([t]):"string"==typeof t?t=n.from(t,r):this._isBufferList(t)?t=t.slice():Array.isArray(t.buffer)?t=n.from(t.buffer,t.byteOffset,t.byteLength):n.isBuffer(t)||(t=n.from(t)),e=Number(e||0),isNaN(e)&&(e=0),e<0&&(e=this.length+e),e<0&&(e=0),0===t.length)return e>this.length?this.length:e;const o=this._offset(e);let i=o[0],a=o[1];for(;i<this._bufs.length;i++){const e=this._bufs[i];for(;a<e.length;){if(e.length-a>=t.length){const r=e.indexOf(t,a);if(-1!==r)return this._reverseOffset([i,r]);a=e.length-t.length+1}else{const e=this._reverseOffset([i,a]);if(this._match(e,t))return e;a++}}a=0}return-1},i.prototype._match=function(t,e){if(this.length-t<e.length)return!1;for(let r=0;r<e.length;r++)if(this.get(t+r)!==e[r])return!1;return!0},function(){const t={readDoubleBE:8,readDoubleLE:8,readFloatBE:4,readFloatLE:4,readInt32BE:4,readInt32LE:4,readUInt32BE:4,readUInt32LE:4,readInt16BE:2,readInt16LE:2,readUInt16BE:2,readUInt16LE:2,readInt8:1,readUInt8:1,readIntBE:null,readIntLE:null,readUIntBE:null,readUIntLE:null};for(const e in t)(function(e){i.prototype[e]=null===t[e]?function(t,r){return this.slice(t,t+r)[e](0,r)}:function(r=0){return this.slice(r,r+t[e])[e](0)}})(e)}(),i.prototype._isBufferList=function(t){return t instanceof i||i.isBufferList(t)},i.isBufferList=function(t){return null!=t&&t[o]},t.exports=i},8002:t=>{"use strict";t.exports=Math.min},8068:t=>{"use strict";t.exports=SyntaxError},8075:(t,e,r)=>{"use strict";var n=r(453),o=r(487),i=o(n("String.prototype.indexOf"));t.exports=function(t,e){var r=n(t,!!e);return"function"==typeof r&&i(t,".prototype.")>-1?o(r):r}},8184:(t,e,r)=>{"use strict";var n,o=r(6556),i=r(9721)(/^\s*(?:function)?\*/),a=r(9092)(),u=r(3628),s=o("Object.prototype.toString"),c=o("Function.prototype.toString");t.exports=function(t){if("function"!=typeof t)return!1;if(i(c(t)))return!0;if(!a)return"[object GeneratorFunction]"===s(t);if(!u)return!1;if(void 0===n){var e=function(){if(!a)return!1;try{return Function("return function*() {}")()}catch(t){}}();n=!!e&&u(e)}return u(t)===n}},8399:(t,e,r)=>{(e=t.exports=r(5412)).Stream=e,e.Readable=e,e.Writable=r(6708),e.Duplex=r(5382),e.Transform=r(4610),e.PassThrough=r(3600),e.finished=r(6238),e.pipeline=r(7758)},8403:(t,e,r)=>{"use strict";var n=r(1189),o=r(1333)(),i=r(6556),a=r(9612),u=i("Array.prototype.push"),s=i("Object.prototype.propertyIsEnumerable"),c=o?a.getOwnPropertySymbols:null;t.exports=function(t,e){if(null==t)throw new TypeError("target must be an object");var r=a(t);if(1===arguments.length)return r;for(var i=1;i<arguments.length;++i){var f=a(arguments[i]),l=n(f),p=o&&(a.getOwnPropertySymbols||c);if(p)for(var h=p(f),y=0;y<h.length;++y){var d=h[y];s(f,d)&&u(l,d)}for(var g=0;g<l.length;++g){var b=l[g];if(s(f,b)){var v=f[b];r[b]=v}}}return r}},8452:(t,e,r)=>{"use strict";var n=r(1189),o="function"==typeof Symbol&&"symbol"==typeof Symbol("foo"),i=Object.prototype.toString,a=Array.prototype.concat,u=r(41),s=r(592)(),c=function(t,e,r,n){if(e in t)if(!0===n){if(t[e]===r)return}else if("function"!=typeof(o=n)||"[object Function]"!==i.call(o)||!n())return;var o;s?u(t,e,r,!0):u(t,e,r)},f=function(t,e){var r=arguments.length>2?arguments[2]:{},i=n(e);o&&(i=a.call(i,Object.getOwnPropertySymbols(e)));for(var u=0;u<i.length;u+=1)c(t,i[u],e[i[u]],r[i[u]])};f.supportsDescriptors=!!s,t.exports=f},8648:t=>{"use strict";t.exports="undefined"!=typeof Reflect&&Reflect.getPrototypeOf||null},8875:(t,e,r)=>{"use strict";var n;if(!Object.keys){var o=Object.prototype.hasOwnProperty,i=Object.prototype.toString,a=r(1093),u=Object.prototype.propertyIsEnumerable,s=!u.call({toString:null},"toString"),c=u.call(function(){},"prototype"),f=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],l=function(t){var e=t.constructor;return e&&e.prototype===t},p={$applicationCache:!0,$console:!0,$external:!0,$frame:!0,$frameElement:!0,$frames:!0,$innerHeight:!0,$innerWidth:!0,$onmozfullscreenchange:!0,$onmozfullscreenerror:!0,$outerHeight:!0,$outerWidth:!0,$pageXOffset:!0,$pageYOffset:!0,$parent:!0,$scrollLeft:!0,$scrollTop:!0,$scrollX:!0,$scrollY:!0,$self:!0,$webkitIndexedDB:!0,$webkitStorageInfo:!0,$window:!0},h=function(){if("undefined"==typeof window)return!1;for(var t in window)try{if(!p["$"+t]&&o.call(window,t)&&null!==window[t]&&"object"==typeof window[t])try{l(window[t])}catch(t){return!0}}catch(t){return!0}return!1}();n=function(t){var e=null!==t&&"object"==typeof t,r="[object Function]"===i.call(t),n=a(t),u=e&&"[object String]"===i.call(t),p=[];if(!e&&!r&&!n)throw new TypeError("Object.keys called on a non-object");var y=c&&r;if(u&&t.length>0&&!o.call(t,0))for(var d=0;d<t.length;++d)p.push(String(d));if(n&&t.length>0)for(var g=0;g<t.length;++g)p.push(String(g));else for(var b in t)y&&"prototype"===b||!o.call(t,b)||p.push(String(b));if(s)for(var v=function(t){if("undefined"==typeof window||!h)return l(t);try{return l(t)}catch(t){return!1}}(t),m=0;m<f.length;++m)v&&"constructor"===f[m]||!o.call(t,f[m])||p.push(f[m]);return p}}t.exports=n},8968:t=>{"use strict";t.exports=Math.floor},9032:(t,e,r)=>{"use strict";var n=r(7244),o=r(8184),i=r(5767),a=r(5680);function u(t){return t.call.bind(t)}var s="undefined"!=typeof BigInt,c="undefined"!=typeof Symbol,f=u(Object.prototype.toString),l=u(Number.prototype.valueOf),p=u(String.prototype.valueOf),h=u(Boolean.prototype.valueOf);if(s)var y=u(BigInt.prototype.valueOf);if(c)var d=u(Symbol.prototype.valueOf);function g(t,e){if("object"!=typeof t)return!1;try{return e(t),!0}catch(t){return!1}}function b(t){return"[object Map]"===f(t)}function v(t){return"[object Set]"===f(t)}function m(t){return"[object WeakMap]"===f(t)}function w(t){return"[object WeakSet]"===f(t)}function S(t){return"[object ArrayBuffer]"===f(t)}function E(t){return"undefined"!=typeof ArrayBuffer&&(S.working?S(t):t instanceof ArrayBuffer)}function _(t){return"[object DataView]"===f(t)}function O(t){return"undefined"!=typeof DataView&&(_.working?_(t):t instanceof DataView)}e.isArgumentsObject=n,e.isGeneratorFunction=o,e.isTypedArray=a,e.isPromise=function(t){return"undefined"!=typeof Promise&&t instanceof Promise||null!==t&&"object"==typeof t&&"function"==typeof t.then&&"function"==typeof t.catch},e.isArrayBufferView=function(t){return"undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(t):a(t)||O(t)},e.isUint8Array=function(t){return"Uint8Array"===i(t)},e.isUint8ClampedArray=function(t){return"Uint8ClampedArray"===i(t)},e.isUint16Array=function(t){return"Uint16Array"===i(t)},e.isUint32Array=function(t){return"Uint32Array"===i(t)},e.isInt8Array=function(t){return"Int8Array"===i(t)},e.isInt16Array=function(t){return"Int16Array"===i(t)},e.isInt32Array=function(t){return"Int32Array"===i(t)},e.isFloat32Array=function(t){return"Float32Array"===i(t)},e.isFloat64Array=function(t){return"Float64Array"===i(t)},e.isBigInt64Array=function(t){return"BigInt64Array"===i(t)},e.isBigUint64Array=function(t){return"BigUint64Array"===i(t)},b.working="undefined"!=typeof Map&&b(new Map),e.isMap=function(t){return"undefined"!=typeof Map&&(b.working?b(t):t instanceof Map)},v.working="undefined"!=typeof Set&&v(new Set),e.isSet=function(t){return"undefined"!=typeof Set&&(v.working?v(t):t instanceof Set)},m.working="undefined"!=typeof WeakMap&&m(new WeakMap),e.isWeakMap=function(t){return"undefined"!=typeof WeakMap&&(m.working?m(t):t instanceof WeakMap)},w.working="undefined"!=typeof WeakSet&&w(new WeakSet),e.isWeakSet=function(t){return w(t)},S.working="undefined"!=typeof ArrayBuffer&&S(new ArrayBuffer),e.isArrayBuffer=E,_.working="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof DataView&&_(new DataView(new ArrayBuffer(1),0,1)),e.isDataView=O;var j="undefined"!=typeof SharedArrayBuffer?SharedArrayBuffer:void 0;function A(t){return"[object SharedArrayBuffer]"===f(t)}function x(t){return void 0!==j&&(void 0===A.working&&(A.working=A(new j)),A.working?A(t):t instanceof j)}function R(t){return g(t,l)}function k(t){return g(t,p)}function P(t){return g(t,h)}function T(t){return s&&g(t,y)}function M(t){return c&&g(t,d)}e.isSharedArrayBuffer=x,e.isAsyncFunction=function(t){return"[object AsyncFunction]"===f(t)},e.isMapIterator=function(t){return"[object Map Iterator]"===f(t)},e.isSetIterator=function(t){return"[object Set Iterator]"===f(t)},e.isGeneratorObject=function(t){return"[object Generator]"===f(t)},e.isWebAssemblyCompiledModule=function(t){return"[object WebAssembly.Module]"===f(t)},e.isNumberObject=R,e.isStringObject=k,e.isBooleanObject=P,e.isBigIntObject=T,e.isSymbolObject=M,e.isBoxedPrimitive=function(t){return R(t)||k(t)||P(t)||T(t)||M(t)},e.isAnyArrayBuffer=function(t){return"undefined"!=typeof Uint8Array&&(E(t)||x(t))},["isProxy","isExternal","isModuleNamespaceObject"].forEach(function(t){Object.defineProperty(e,t,{enumerable:!1,value:function(){throw new Error(t+" is not supported in userland")}})})},9092:(t,e,r)=>{"use strict";var n=r(1333);t.exports=function(){return n()&&!!Symbol.toStringTag}},9133:(t,e,r)=>{"use strict";var n=r(8403);t.exports=function(){return Object.assign?function(){if(!Object.assign)return!1;for(var t="abcdefghijklmnopqrst",e=t.split(""),r={},n=0;n<e.length;++n)r[e[n]]=e[n];var o=Object.assign({},r),i="";for(var a in o)i+=a;return t!==i}()||function(){if(!Object.assign||!Object.preventExtensions)return!1;var t=Object.preventExtensions({1:2});try{Object.assign(t,"xy")}catch(e){return"y"===t[1]}return!1}()?n:Object.assign:n}},9209:(t,e,r)=>{"use strict";var n=r(6578),o="undefined"==typeof globalThis?r.g:globalThis;t.exports=function(){for(var t=[],e=0;e<n.length;e++)"function"==typeof o[n[e]]&&(t[t.length]=n[e]);return t}},9211:t=>{"use strict";var e=function(t){return t!=t};t.exports=function(t,r){return 0===t&&0===r?1/t==1/r:t===r||!(!e(t)||!e(r))}},9290:t=>{"use strict";t.exports=RangeError},9353:t=>{"use strict";var e=Object.prototype.toString,r=Math.max,n=function(t,e){for(var r=[],n=0;n<t.length;n+=1)r[n]=t[n];for(var o=0;o<e.length;o+=1)r[o+t.length]=e[o];return r};t.exports=function(t){var o=this;if("function"!=typeof o||"[object Function]"!==e.apply(o))throw new TypeError("Function.prototype.bind called on incompatible "+o);for(var i,a=function(t,e){for(var r=[],n=e||0,o=0;n<t.length;n+=1,o+=1)r[o]=t[n];return r}(arguments,1),u=r(0,o.length-a.length),s=[],c=0;c<u;c++)s[c]="$"+c;if(i=Function("binder","return function ("+function(t,e){for(var r="",n=0;n<t.length;n+=1)r+=t[n],n+1<t.length&&(r+=e);return r}(s,",")+"){ return binder.apply(this,arguments); }")(function(){if(this instanceof i){var e=o.apply(this,n(a,arguments));return Object(e)===e?e:this}return o.apply(t,n(a,arguments))}),o.prototype){var f=function(){};f.prototype=o.prototype,i.prototype=new f,f.prototype=null}return i}},9383:t=>{"use strict";t.exports=Error},9394:(t,e,r)=>{"use strict";var n=r(9211);t.exports=function(){return"function"==typeof Object.is?Object.is:n}},9538:t=>{"use strict";t.exports=ReferenceError},9597:(t,e,r)=>{"use strict";function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}function o(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,i(n.key),n)}}function i(t){var e=function(t,e){if("object"!==n(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var o=r.call(t,e||"default");if("object"!==n(o))return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"===n(e)?e:String(e)}function a(t,e){return a=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},a(t,e)}function u(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(t){return!1}}();return function(){var r,o=s(t);if(e){var i=s(this).constructor;r=Reflect.construct(o,arguments,i)}else r=o.apply(this,arguments);return function(t,e){if(e&&("object"===n(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,r)}}function s(t){return s=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},s(t)}var c,f,l={};function p(t,e,r){r||(r=Error);var n=function(r){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&a(t,e)}(f,r);var n,i,s,c=u(f);function f(r,n,o){var i;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,f),i=c.call(this,function(t,r,n){return"string"==typeof e?e:e(t,r,n)}(r,n,o)),i.code=t,i}return n=f,i&&o(n.prototype,i),s&&o(n,s),Object.defineProperty(n,"prototype",{writable:!1}),n}(r);l[t]=n}function h(t,e){if(Array.isArray(t)){var r=t.length;return t=t.map(function(t){return String(t)}),r>2?"one of ".concat(e," ").concat(t.slice(0,r-1).join(", "),", or ")+t[r-1]:2===r?"one of ".concat(e," ").concat(t[0]," or ").concat(t[1]):"of ".concat(e," ").concat(t[0])}return"of ".concat(e," ").concat(String(t))}p("ERR_AMBIGUOUS_ARGUMENT",'The "%s" argument is ambiguous. %s',TypeError),p("ERR_INVALID_ARG_TYPE",function(t,e,o){var i,a,u,s;if(void 0===c&&(c=r(4148)),c("string"==typeof t,"'name' must be a string"),"string"==typeof e&&(a="not ",e.substr(!u||u<0?0:+u,a.length)===a)?(i="must not be",e=e.replace(/^not /,"")):i="must be",function(t,e,r){return(void 0===r||r>t.length)&&(r=t.length),t.substring(r-e.length,r)===e}(t," argument"))s="The ".concat(t," ").concat(i," ").concat(h(e,"type"));else{var f=function(t,e,r){return"number"!=typeof r&&(r=0),!(r+e.length>t.length)&&-1!==t.indexOf(e,r)}(t,".")?"property":"argument";s='The "'.concat(t,'" ').concat(f," ").concat(i," ").concat(h(e,"type"))}return s+=". Received type ".concat(n(o))},TypeError),p("ERR_INVALID_ARG_VALUE",function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"is invalid";void 0===f&&(f=r(537));var o=f.inspect(e);return o.length>128&&(o="".concat(o.slice(0,128),"...")),"The argument '".concat(t,"' ").concat(n,". Received ").concat(o)},TypeError,RangeError),p("ERR_INVALID_RETURN_VALUE",function(t,e,r){var o;return o=r&&r.constructor&&r.constructor.name?"instance of ".concat(r.constructor.name):"type ".concat(n(r)),"Expected ".concat(t,' to be returned from the "').concat(e,'"')+" function but got ".concat(o,".")},TypeError),p("ERR_MISSING_ARGS",function(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];void 0===c&&(c=r(4148)),c(e.length>0,"At least one arg needs to be specified");var o="The ",i=e.length;switch(e=e.map(function(t){return'"'.concat(t,'"')}),i){case 1:o+="".concat(e[0]," argument");break;case 2:o+="".concat(e[0]," and ").concat(e[1]," arguments");break;default:o+=e.slice(0,i-1).join(", "),o+=", and ".concat(e[i-1]," arguments")}return"".concat(o," must be specified")},TypeError),t.exports.codes=l},9600:t=>{"use strict";var e,r,n=Function.prototype.toString,o="object"==typeof Reflect&&null!==Reflect&&Reflect.apply;if("function"==typeof o&&"function"==typeof Object.defineProperty)try{e=Object.defineProperty({},"length",{get:function(){throw r}}),r={},o(function(){throw 42},null,e)}catch(t){t!==r&&(o=null)}else o=null;var i=/^\s*class\b/,a=function(t){try{var e=n.call(t);return i.test(e)}catch(t){return!1}},u=function(t){try{return!a(t)&&(n.call(t),!0)}catch(t){return!1}},s=Object.prototype.toString,c="function"==typeof Symbol&&!!Symbol.toStringTag,f=!(0 in[,]),l=function(){return!1};if("object"==typeof document){var p=document.all;s.call(p)===s.call(document.all)&&(l=function(t){if((f||!t)&&(void 0===t||"object"==typeof t))try{var e=s.call(t);return("[object HTMLAllCollection]"===e||"[object HTML document.all class]"===e||"[object HTMLCollection]"===e||"[object Object]"===e)&&null==t("")}catch(t){}return!1})}t.exports=o?function(t){if(l(t))return!0;if(!t)return!1;if("function"!=typeof t&&"object"!=typeof t)return!1;try{o(t,null,e)}catch(t){if(t!==r)return!1}return!a(t)&&u(t)}:function(t){if(l(t))return!0;if(!t)return!1;if("function"!=typeof t&&"object"!=typeof t)return!1;if(c)return u(t);if(a(t))return!1;var e=s.call(t);return!("[object Function]"!==e&&"[object GeneratorFunction]"!==e&&!/^\[object HTML/.test(e))&&u(t)}},9612:t=>{"use strict";t.exports=Object},9675:t=>{"use strict";t.exports=TypeError},9721:(t,e,r)=>{"use strict";var n=r(6556),o=r(4035),i=n("RegExp.prototype.exec"),a=r(9675);t.exports=function(t){if(!o(t))throw new a("`regex` must be a RegExp");return function(e){return null!==i(t,e)}}},9957:(t,e,r)=>{"use strict";var n=Function.prototype.call,o=Object.prototype.hasOwnProperty,i=r(6743);t.exports=i.call(n,o)}}]);

================================================
FILE: dist/browser/json-url-998.js.LICENSE.txt
================================================
/*!
 * The buffer module from node.js, for the browser.
 *
 * @author   Feross Aboukhadijeh <feross@feross.org> <http://feross.org>
 * @license  MIT
 */

/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */


================================================
FILE: dist/browser/json-url-lzma.js
================================================
(self.webpackChunkJsonUrl=self.webpackChunkJsonUrl||[]).push([[483],{894:function(){var n=function(){"use strict";function r(n,r){postMessage({action:Kn,cbn:r,result:n})}function c(n){var r=[];return r[n-1]=void 0,r}function t(n,r){return b(n[0]+r[0],n[1]+r[1])}function o(n,r){return function(n,r){var c,t;return c=n*Vn,t=r,0>r&&(t+=Vn),[t,c]}(Math.max(Math.min(n[1]/Vn,2147483647),-2147483648)&Math.max(Math.min(r[1]/Vn,2147483647),-2147483648),e(n)&e(r))}function f(n,r){var c,t;return n[0]==r[0]&&n[1]==r[1]?0:(c=0>n[1],t=0>r[1],c&&!t?-1:!c&&t?1:d(n,r)[1]<0?-1:1)}function b(n,r){var c,t;for(n%=0x10000000000000000,r=(r%=0x10000000000000000)-(c=r%Vn)+(t=Math.floor(n/Vn)*Vn),n=n-t+c;0>n;)n+=Vn,r-=Vn;for(;n>4294967295;)n-=Vn,r+=Vn;for(r%=0x10000000000000000;r>0x7fffffff00000000;)r-=0x10000000000000000;for(;-0x8000000000000000>r;)r+=0x10000000000000000;return[n,r]}function i(n,r){return n[0]==r[0]&&n[1]==r[1]}function u(n){return n>=0?[n,0]:[n+Vn,-Vn]}function e(n){return n[0]>=2147483648?~~Math.max(Math.min(n[0]-Vn,2147483647),-2147483648):~~Math.max(Math.min(n[0],2147483647),-2147483648)}function a(n){return 30>=n?1<<n:a(30)*a(n-30)}function v(n,r){var c,t,o,f;if(r&=63,i(n,Rn))return r?Sn:n;if(0>n[1])throw Error("Neg");return f=a(r),t=n[1]*f%0x10000000000000000,(t+=c=(o=n[0]*f)-o%Vn)>=0x8000000000000000&&(t-=0x10000000000000000),[o-=c,t]}function l(n,r){var c;return c=a(r&=63),b(Math.floor(n[0]/c),n[1]/c)}function d(n,r){return b(n[0]-r[0],n[1]-r[1])}function h(n,r){return n.Mc=r,n.Lc=0,n.Yb=r.length,n}function s(n){return n.Lc>=n.Yb?-1:255&n.Mc[n.Lc++]}function m(n,r,c,t){return n.Lc>=n.Yb?-1:(t=Math.min(t,n.Yb-n.Lc),z(n.Mc,n.Lc,r,c,t),n.Lc+=t,t)}function g(n){return n.Mc=c(32),n.Yb=0,n}function x(n){var r=n.Mc;return r.length=n.Yb,r}function p(n,r){n.Mc[n.Yb++]=r<<24>>24}function w(n,r,c,t){z(r,c,n.Mc,n.Yb,t),n.Yb+=t}function z(n,r,c,t,o){for(var f=0;o>f;++f)c[t+f]=n[r+f]}function M(r,c,t,o,b){var i,u;if(f(o,Yn)<0)throw Error("invalid length "+o);for(r.Tb=o,function(n,r){(function(n,r){n.ab=r;for(var c=0;r>1<<c;++c);n.$b=2*c})(r,1<<n.s),r.n=n.f,function(n,r){var c=n.X;n.X=r,n.b&&c!=n.X&&(n.wb=-1,n.b=null)}(r,n.m),r.eb=0,r.fb=3,r.Y=2,r.y=3}(b,i=$({})),i.Gc=void 0===n.disableEndMark,function(n,r){n.fc[0]=9*(5*n.Y+n.eb)+n.fb<<24>>24;for(var c=0;4>c;++c)n.fc[1+c]=n.ab>>8*c<<24>>24;w(r,n.fc,0,5)}(i,t),u=0;64>u;u+=8)p(t,255&e(l(o,u)));r.yb=(i.W=0,i.oc=c,i.pc=0,function(n){var r,c;n.b||(r={},c=4,n.X||(c=2),function(n,r){n.qb=r>2,n.qb?(n.w=0,n.xb=4,n.R=66560):(n.w=2,n.xb=3,n.R=0)}(r,c),n.b=r),dn(n.A,n.eb,n.fb),(n.ab!=n.wb||n.Hb!=n.n)&&(U(n.b,n.ab,4096,n.n,274),n.wb=n.ab,n.Hb=n.n)}(i),i.d.Ab=t,function(n){(function(n){n.l=0,n.J=0;for(var r=0;4>r;++r)n.v[r]=0})(n),function(n){n.mc=Sn,n.xc=Sn,n.E=-1,n.Jb=1,n.Oc=0}(n.d),Bn(n.C),Bn(n._),Bn(n.bb),Bn(n.hb),Bn(n.Ub),Bn(n.vc),Bn(n.Sb),function(n){var r,c=1<<n.u+n.I;for(r=0;c>r;++r)Bn(n.V[r].tb)}(n.A);for(var r=0;4>r;++r)Bn(n.K[r].G);bn(n.$,1<<n.Y),bn(n.i,1<<n.Y),Bn(n.S.G),n.N=0,n.jb=0,n.q=0,n.s=0}(i),W(i),P(i),i.$.rb=i.n+1-2,ln(i.$,1<<i.Y),i.i.rb=i.n+1-2,ln(i.i,1<<i.Y),i.g=Sn,function(n,r){return n.cb=r,n.Z=null,n.zc=1,n}({},i))}function E(n,r,c){return n.Nb=g({}),M(n,h({},r),n.Nb,u(r.length),c),n}function L(n,r,c){var t,o,f,b,i="",e=[];for(o=0;5>o;++o){if(-1==(f=s(r)))throw Error("truncated input");e[o]=f<<24>>24}if(!function(n,r){var c,t,o,f,b,i,u;if(5>r.length)return 0;for(u=255&r[0],o=u%9,f=(i=~~(u/9))%5,b=~~(i/5),c=0,t=0;4>t;++t)c+=(255&r[1+t])<<8*t;return c>99999999||!function(n,r,c,t){if(r>8||c>4||t>4)return 0;S(n.gb,c,r);var o=1<<t;return T(n.Rb,o),T(n.sb,o),n.Dc=o-1,1}(n,o,f,b)?0:function(n,r){return 0>r?0:(n.Ob!=r&&(n.Ob=r,n.nb=Math.max(n.Ob,1),J(n.B,Math.max(n.nb,4096))),1)}(n,c)}(t=K({}),e))throw Error("corrupted input");for(o=0;64>o;o+=8){if(-1==(f=s(r)))throw Error("truncated input");1==(f=f.toString(16)).length&&(f="0"+f),i=f+""+i}/^0+$|^f+$/i.test(i)?n.Tb=Yn:(b=parseInt(i,16),n.Tb=b>4294967295?Yn:u(b)),n.yb=function(n,r,c,t){return n.e.Ab=r,D(n.B),n.B.cc=c,function(n){n.B.h=0,n.B.o=0,Bn(n.Gb),Bn(n.pb),Bn(n.Zb),Bn(n.Cb),Bn(n.Db),Bn(n.Eb),Bn(n.kc),function(n){var r,c;for(c=1<<n.u+n.I,r=0;c>r;++r)Bn(n.V[r].Ib)}(n.gb);for(var r=0;4>r;++r)Bn(n.kb[r].G);R(n.Rb),R(n.sb),Bn(n.Fb.G),function(n){n.Bb=0,n.E=-1;for(var r=0;5>r;++r)n.Bb=n.Bb<<8|s(n.Ab)}(n.e)}(n),n.U=0,n.ib=0,n.Jc=0,n.Ic=0,n.Qc=0,n.Nc=t,n.g=Sn,n.jc=0,function(n,r){return n.Z=r,n.cb=null,n.zc=1,n}({},n)}(t,r,c,n.Tb)}function j(n,r){return n.Nb=g({}),L(n,h({},r),n.Nb),n}function y(n,r){return n.c[n.f+n.o+r]}function k(n,r,c,t){var o,f;for(n.T&&n.o+r+t>n.h&&(t=n.h-(n.o+r)),++c,f=n.f+n.o+r,o=0;t>o&&n.c[f+o]==n.c[f+o-c];++o);return o}function C(n){return n.h-n.o}function A(n){var r,c;if(!n.T)for(;;){if(!(c=-n.f+n.Kb-n.h))return;if(-1==(r=m(n.cc,n.c,n.f+n.h,c)))return n.zb=n.h,n.f+n.zb>n.H&&(n.zb=n.H-n.f),void(n.T=1);n.h+=r,n.h>=n.o+n._b&&(n.zb=n.h-n._b)}}function B(n,r){n.f+=r,n.zb-=r,n.o-=r,n.h-=r}function U(n,r,t,o,f){var b,i;1073741567>r&&(n.Fc=16+(o>>1),function(n,r,t,o){var f;n.Bc=r,n._b=t,f=r+t+o,(null==n.c||n.Kb!=f)&&(n.c=null,n.Kb=f,n.c=c(n.Kb)),n.H=n.Kb-t}(n,r+t,o+f,256+~~((r+t+o+f)/2)),n.ob=o,b=r+1,n.p!=b&&(n.L=c(2*(n.p=b))),i=65536,n.qb&&(i=r-1,i|=i>>1,i|=i>>2,i|=i>>4,i|=i>>8,i>>=1,(i|=65535)>16777216&&(i>>=1),n.Ec=i,++i,i+=n.R),i!=n.rc&&(n.ub=c(n.rc=i)))}function G(n){var r;++n.k>=n.p&&(n.k=0),function(n){++n.o,n.o>n.zb&&(n.f+n.o>n.H&&function(n){var r,c,t;for((t=n.f+n.o-n.Bc)>0&&--t,c=n.f+n.h-t,r=0;c>r;++r)n.c[r]=n.c[t+r];n.f-=t}(n),A(n))}(n),1073741823==n.o&&(r=n.o-n.p,I(n.L,2*n.p,r),I(n.ub,n.rc,r),B(n,r))}function I(n,r,c){var t,o;for(t=0;r>t;++t)c>=(o=n[t]||0)?o=0:o-=c,n[t]=o}function J(n,r){(null==n.Lb||n.M!=r)&&(n.Lb=c(r)),n.M=r,n.o=0,n.h=0}function q(n){var r=n.o-n.h;r&&(w(n.cc,n.Lb,n.h,r),n.o>=n.M&&(n.o=0),n.h=n.o)}function Q(n,r){var c=n.o-r-1;return 0>c&&(c+=n.M),n.Lb[c]}function D(n){q(n),n.cc=null}function N(n){return 4>(n-=2)?n:3}function Z(n){return 4>n?0:10>n?n-3:n-6}function F(n){if(!n.zc)throw Error("bad state");return n.cb?function(n){(function(n,r,c,o){var b,a,v,l,h,s,m,g,x,p,w,z,M,E,L;if(r[0]=Sn,c[0]=Sn,o[0]=1,n.oc&&(n.b.cc=n.oc,function(n){n.f=0,n.o=0,n.h=0,n.T=0,A(n),n.k=0,B(n,-1)}(n.b),n.W=1,n.oc=null),!n.pc){if(n.pc=1,E=n.g,i(n.g,Sn)){if(!C(n.b))return void _(n,e(n.g));tn(n),M=e(n.g)&n.y,Un(n.d,n.C,(n.l<<4)+M,0),n.l=Z(n.l),v=y(n.b,-n.s),sn(hn(n.A,e(n.g),n.J),n.d,v),n.J=v,--n.s,n.g=t(n.g,On)}if(!C(n.b))return void _(n,e(n.g));for(;;){if(m=X(n,e(n.g)),p=n.mb,M=e(n.g)&n.y,a=(n.l<<4)+M,1==m&&-1==p)Un(n.d,n.C,a,0),v=y(n.b,-n.s),L=hn(n.A,e(n.g),n.J),7>n.l?sn(L,n.d,v):(x=y(n.b,-n.v[0]-1-n.s),mn(L,n.d,x,v)),n.J=v,n.l=Z(n.l);else{if(Un(n.d,n.C,a,1),4>p){if(Un(n.d,n.bb,n.l,1),p?(Un(n.d,n.hb,n.l,1),1==p?Un(n.d,n.Ub,n.l,0):(Un(n.d,n.Ub,n.l,1),Un(n.d,n.vc,n.l,p-2))):(Un(n.d,n.hb,n.l,0),Un(n.d,n._,a,1==m?0:1)),1==m?n.l=7>n.l?9:11:(en(n.i,n.d,m-2,M),n.l=7>n.l?8:11),l=n.v[p],0!=p){for(s=p;s>=1;--s)n.v[s]=n.v[s-1];n.v[0]=l}}else{for(Un(n.d,n.bb,n.l,0),n.l=7>n.l?7:10,en(n.$,n.d,m-2,M),z=fn(p-=4),g=N(m),En(n.K[g],n.d,z),z>=4&&(w=p-(b=(2|1&z)<<(h=(z>>1)-1)),14>z?kn(n.Sb,b-z-1,n.d,h,w):(Gn(n.d,w>>4,h-4),jn(n.S,n.d,15&w),++n.Qb)),l=p,s=3;s>=1;--s)n.v[s]=n.v[s-1];n.v[0]=l,++n.Mb}n.J=y(n.b,m-1-n.s)}if(n.s-=m,n.g=t(n.g,u(m)),!n.s){if(n.Mb>=128&&W(n),n.Qb>=16&&P(n),r[0]=n.g,c[0]=In(n.d),!C(n.b))return void _(n,e(n.g));if(f(d(n.g,E),[4096,0])>=0)return n.pc=0,void(o[0]=0)}}}})(n.cb,n.cb.Xb,n.cb.uc,n.cb.Kc),n.Pb=n.cb.Xb[0],n.cb.Kc[0]&&(function(n){on(n),n.d.Ab=null}(n.cb),n.zc=0)}(n):function(n){var r=function(n){var r,c,o,b,i,a;if(a=e(n.g)&n.Dc,An(n.e,n.Gb,(n.U<<4)+a)){if(An(n.e,n.Zb,n.U))o=0,An(n.e,n.Cb,n.U)?(An(n.e,n.Db,n.U)?(An(n.e,n.Eb,n.U)?(c=n.Qc,n.Qc=n.Ic):c=n.Ic,n.Ic=n.Jc):c=n.Jc,n.Jc=n.ib,n.ib=c):An(n.e,n.pb,(n.U<<4)+a)||(n.U=7>n.U?9:11,o=1),o||(o=V(n.sb,n.e,a)+2,n.U=7>n.U?8:11);else if(n.Qc=n.Ic,n.Ic=n.Jc,n.Jc=n.ib,o=2+V(n.Rb,n.e,a),n.U=7>n.U?7:10,(i=zn(n.kb[N(o)],n.e))>=4){if(b=(i>>1)-1,n.ib=(2|1&i)<<b,14>i)n.ib+=function(n,r,c,t){var o,f,b=1,i=0;for(f=0;t>f;++f)o=An(c,n,r+b),b<<=1,b+=o,i|=o<<f;return i}(n.kc,n.ib-i-1,n.e,b);else if(n.ib+=function(n,r){var c,t,o=0;for(c=r;0!=c;--c)n.E>>>=1,t=n.Bb-n.E>>>31,n.Bb-=n.E&t-1,o=o<<1|1-t,-16777216&n.E||(n.Bb=n.Bb<<8|s(n.Ab),n.E<<=8);return o}(n.e,b-4)<<4,n.ib+=function(n,r){var c,t,o=1,f=0;for(t=0;n.F>t;++t)c=An(r,n.G,o),o<<=1,o+=c,f|=c<<t;return f}(n.Fb,n.e),0>n.ib)return-1==n.ib?1:-1}else n.ib=i;if(f(u(n.ib),n.g)>=0||n.ib>=n.nb)return-1;(function(n,r,c){var t=n.o-r-1;for(0>t&&(t+=n.M);0!=c;--c)t>=n.M&&(t=0),n.Lb[n.o++]=n.Lb[t++],n.o>=n.M&&q(n)})(n.B,n.ib,o),n.g=t(n.g,u(o)),n.jc=Q(n.B,0)}else r=function(n,r,c){return n.V[((r&n.qc)<<n.u)+((255&c)>>>8-n.u)]}(n.gb,e(n.g),n.jc),n.jc=7>n.U?function(n,r){var c=1;do{c=c<<1|An(r,n.Ib,c)}while(256>c);return c<<24>>24}(r,n.e):function(n,r,c){var t,o,f=1;do{if(o=c>>7&1,c<<=1,t=An(r,n.Ib,(1+o<<8)+f),f=f<<1|t,o!=t){for(;256>f;)f=f<<1|An(r,n.Ib,f);break}}while(256>f);return f<<24>>24}(r,n.e,Q(n.B,n.ib)),function(n,r){n.Lb[n.o++]=r,n.o>=n.M&&q(n)}(n.B,n.jc),n.U=Z(n.U),n.g=t(n.g,On);return 0}(n.Z);if(-1==r)throw Error("corrupted input");n.Pb=Yn,n.Pc=n.Z.g,(r||f(n.Z.Nc,Sn)>=0&&f(n.Z.g,n.Z.Nc)>=0)&&(q(n.Z.B),D(n.Z.B),n.Z.e.Ab=null,n.zc=0)}(n),n.zc}function K(n){n.B={},n.e={},n.Gb=c(192),n.Zb=c(12),n.Cb=c(12),n.Db=c(12),n.Eb=c(12),n.pb=c(192),n.kb=c(4),n.kc=c(114),n.Fb=wn({},4),n.Rb=Y({}),n.sb=Y({}),n.gb={};for(var r=0;4>r;++r)n.kb[r]=wn({},6);return n}function T(n,r){for(;r>n.O;++n.O)n.ec[n.O]=wn({},3),n.hc[n.O]=wn({},3)}function V(n,r,c){return An(r,n.wc,0)?8+(An(r,n.wc,1)?8+zn(n.tc,r):zn(n.hc[c],r)):zn(n.ec[c],r)}function Y(n){return n.wc=c(2),n.ec=c(16),n.hc=c(16),n.tc=wn({},8),n.O=0,n}function R(n){Bn(n.wc);for(var r=0;n.O>r;++r)Bn(n.ec[r].G),Bn(n.hc[r].G);Bn(n.tc.G)}function S(n,r,t){var o,f;if(null==n.V||n.u!=t||n.I!=r)for(n.I=r,n.qc=(1<<r)-1,n.u=t,f=1<<n.u+n.I,n.V=c(f),o=0;f>o;++o)n.V[o]=O({})}function O(n){return n.Ib=c(768),n}function H(n,r){var c,t,o,f;n.jb=r,o=n.a[r].r,t=n.a[r].j;do{n.a[r].t&&(pn(n.a[o]),n.a[o].r=o-1,n.a[r].Ac&&(n.a[o-1].t=0,n.a[o-1].r=n.a[r].r2,n.a[o-1].j=n.a[r].j2)),f=o,c=t,t=n.a[f].j,o=n.a[f].r,n.a[f].j=c,n.a[f].r=r,r=f}while(r>0);return n.mb=n.a[0].j,n.q=n.a[0].r}function $(n){var r;for(n.v=c(4),n.a=[],n.d={},n.C=c(192),n.bb=c(12),n.hb=c(12),n.Ub=c(12),n.vc=c(12),n._=c(192),n.K=[],n.Sb=c(114),n.S=Mn({},4),n.$=an({}),n.i=an({}),n.A={},n.m=[],n.P=[],n.lb=[],n.nc=c(16),n.x=c(4),n.Q=c(4),n.Xb=[Sn],n.uc=[Sn],n.Kc=[0],n.fc=c(5),n.yc=c(128),n.vb=0,n.X=1,n.D=0,n.Hb=-1,n.mb=0,r=0;4096>r;++r)n.a[r]={};for(r=0;4>r;++r)n.K[r]=Mn({},6);return n}function P(n){for(var r=0;16>r;++r)n.nc[r]=yn(n.S,r);n.Qb=0}function W(n){var r,c,t,o,f,b,i,u;for(o=4;128>o;++o)r=(2|1&(b=fn(o)))<<(t=(b>>1)-1),n.yc[o]=Cn(n.Sb,r-b-1,t,o-r);for(f=0;4>f;++f){for(c=n.K[f],i=f<<6,b=0;n.$b>b;++b)n.P[i+b]=Ln(c,b);for(b=14;n.$b>b;++b)n.P[i+b]+=(b>>1)-1-4<<6;for(u=128*f,o=0;4>o;++o)n.lb[u+o]=n.P[i+o];for(;128>o;++o)n.lb[u+o]=n.P[i+fn(o)]+n.yc[o]}n.Mb=0}function _(n,r){on(n),function(n,r){if(n.Gc){Un(n.d,n.C,(n.l<<4)+r,1),Un(n.d,n.bb,n.l,0),n.l=7>n.l?7:10,en(n.$,n.d,0,r);var c=N(2);En(n.K[c],n.d,63),Gn(n.d,67108863,26),jn(n.S,n.d,15)}}(n,r&n.y);for(var c=0;5>c;++c)Jn(n.d)}function X(n,r){var c,t,o,f,b,i,u,e,a,v,l,d,h,s,m,g,x,p,w,z,M,E,L,j,A,B,U,G,I,J,q,Q,D,N,F,K,T,V,Y,R,S,O,$,P;if(n.jb!=n.q)return h=n.a[n.q].r-n.q,n.mb=n.a[n.q].j,n.q=n.a[n.q].r,h;if(n.q=n.jb=0,n.N?(d=n.vb,n.N=0):d=tn(n),B=n.D,2>(j=C(n.b)+1))return n.mb=-1,1;for(j>273&&(j=273),Y=0,a=0;4>a;++a)n.x[a]=n.v[a],n.Q[a]=k(n.b,-1,n.x[a],273),n.Q[a]>n.Q[Y]&&(Y=a);if(n.Q[Y]>=n.n)return n.mb=Y,cn(n,(h=n.Q[Y])-1),h;if(d>=n.n)return n.mb=n.m[B-1]+4,cn(n,d-1),d;if(u=y(n.b,-1),x=y(n.b,-n.v[0]-1-1),2>d&&u!=x&&2>n.Q[Y])return n.mb=-1,1;if(n.a[0].Hc=n.l,D=r&n.y,n.a[1].z=Pn[n.C[(n.l<<4)+D]>>>2]+xn(hn(n.A,r,n.J),n.l>=7,x,u),pn(n.a[1]),V=(p=Pn[2048-n.C[(n.l<<4)+D]>>>2])+Pn[2048-n.bb[n.l]>>>2],x==u&&(R=V+function(n,r,c){return Pn[n.hb[r]>>>2]+Pn[n._[(r<<4)+c]>>>2]}(n,n.l,D),n.a[1].z>R&&(n.a[1].z=R,function(n){n.j=0,n.t=0}(n.a[1]))),2>(l=d>=n.Q[Y]?d:n.Q[Y]))return n.mb=n.a[1].j,1;n.a[1].r=0,n.a[0].bc=n.x[0],n.a[0].ac=n.x[1],n.a[0].dc=n.x[2],n.a[0].lc=n.x[3],v=l;do{n.a[v--].z=268435455}while(v>=2);for(a=0;4>a;++a)if(!(2>(T=n.Q[a]))){F=V+rn(n,a,n.l,D);do{f=F+vn(n.i,T-2,D),(J=n.a[T]).z>f&&(J.z=f,J.r=0,J.j=a,J.t=0)}while(--T>=2)}if(L=p+Pn[n.bb[n.l]>>>2],d>=(v=n.Q[0]>=2?n.Q[0]+1:2)){for(U=0;v>n.m[U];)U+=2;for(;f=L+nn(n,e=n.m[U+1],v,D),(J=n.a[v]).z>f&&(J.z=f,J.r=0,J.j=e+4,J.t=0),v!=n.m[U]||(U+=2)!=B;++v);}for(c=0;;){if(++c==l)return H(n,c);if(w=tn(n),B=n.D,w>=n.n)return n.vb=w,n.N=1,H(n,c);if(++r,Q=n.a[c].r,n.a[c].t?(--Q,n.a[c].Ac?(O=n.a[n.a[c].r2].Hc,O=4>n.a[c].j2?7>O?8:11:7>O?7:10):O=n.a[Q].Hc,O=Z(O)):O=n.a[Q].Hc,Q==c-1?O=n.a[c].j?Z(O):7>O?9:11:(n.a[c].t&&n.a[c].Ac?(Q=n.a[c].r2,q=n.a[c].j2,O=7>O?8:11):O=4>(q=n.a[c].j)?7>O?8:11:7>O?7:10,I=n.a[Q],4>q?q?1==q?(n.x[0]=I.ac,n.x[1]=I.bc,n.x[2]=I.dc,n.x[3]=I.lc):2==q?(n.x[0]=I.dc,n.x[1]=I.bc,n.x[2]=I.ac,n.x[3]=I.lc):(n.x[0]=I.lc,n.x[1]=I.bc,n.x[2]=I.ac,n.x[3]=I.dc):(n.x[0]=I.bc,n.x[1]=I.ac,n.x[2]=I.dc,n.x[3]=I.lc):(n.x[0]=q-4,n.x[1]=I.bc,n.x[2]=I.ac,n.x[3]=I.dc)),n.a[c].Hc=O,n.a[c].bc=n.x[0],n.a[c].ac=n.x[1],n.a[c].dc=n.x[2],n.a[c].lc=n.x[3],i=n.a[c].z,u=y(n.b,-1),x=y(n.b,-n.x[0]-1-1),D=r&n.y,t=i+Pn[n.C[(O<<4)+D]>>>2]+xn(hn(n.A,r,y(n.b,-2)),O>=7,x,u),z=0,(M=n.a[c+1]).z>t&&(M.z=t,M.r=c,M.j=-1,M.t=0,z=1),V=(p=i+Pn[2048-n.C[(O<<4)+D]>>>2])+Pn[2048-n.bb[O]>>>2],x!=u||c>M.r&&!M.j||(R=V+(Pn[n.hb[O]>>>2]+Pn[n._[(O<<4)+D]>>>2]),M.z>=R&&(M.z=R,M.r=c,M.j=0,M.t=0,z=1)),!(2>(j=A=(A=C(n.b)+1)>4095-c?4095-c:A))){if(j>n.n&&(j=n.n),!z&&x!=u&&(P=Math.min(A-1,n.n),(m=k(n.b,0,n.x[0],P))>=2)){for($=Z(O),N=r+1&n.y,E=t+Pn[2048-n.C[($<<4)+N]>>>2]+Pn[2048-n.bb[$]>>>2],G=c+1+m;G>l;)n.a[++l].z=268435455;f=E+(vn(n.i,m-2,N)+rn(n,0,$,N)),(J=n.a[G]).z>f&&(J.z=f,J.r=c+1,J.j=0,J.t=1,J.Ac=0)}for(S=2,K=0;4>K;++K)if(!(2>(s=k(n.b,-1,n.x[K],j)))){g=s;do{for(;c+s>l;)n.a[++l].z=268435455;f=V+(vn(n.i,s-2,D)+rn(n,K,O,D)),(J=n.a[c+s]).z>f&&(J.z=f,J.r=c,J.j=K,J.t=0)}while(--s>=2);if(s=g,K||(S=s+1),A>s&&(P=Math.min(A-1-s,n.n),(m=k(n.b,s,n.x[K],P))>=2)){for($=7>O?8:11,N=r+s&n.y,o=V+(vn(n.i,s-2,D)+rn(n,K,O,D))+Pn[n.C[($<<4)+N]>>>2]+xn(hn(n.A,r+s,y(n.b,s-1-1)),1,y(n.b,s-1-(n.x[K]+1)),y(n.b,s-1)),$=Z($),N=r+s+1&n.y,E=o+Pn[2048-n.C[($<<4)+N]>>>2]+Pn[2048-n.bb[$]>>>2],G=s+1+m;c+G>l;)n.a[++l].z=268435455;f=E+(vn(n.i,m-2,N)+rn(n,0,$,N)),(J=n.a[c+G]).z>f&&(J.z=f,J.r=c+s+1,J.j=0,J.t=1,J.Ac=1,J.r2=c,J.j2=K)}}if(w>j){for(w=j,B=0;w>n.m[B];B+=2);n.m[B]=w,B+=2}if(w>=S){for(L=p+Pn[n.bb[O]>>>2];c+w>l;)n.a[++l].z=268435455;for(U=0;S>n.m[U];)U+=2;for(s=S;;++s)if(f=L+nn(n,b=n.m[U+1],s,D),(J=n.a[c+s]).z>f&&(J.z=f,J.r=c,J.j=b+4,J.t=0),s==n.m[U]){if(A>s&&(P=Math.min(A-1-s,n.n),(m=k(n.b,s,b,P))>=2)){for($=7>O?7:10,N=r+s&n.y,o=f+Pn[n.C[($<<4)+N]>>>2]+xn(hn(n.A,r+s,y(n.b,s-1-1)),1,y(n.b,s-(b+1)-1),y(n.b,s-1)),$=Z($),N=r+s+1&n.y,E=o+Pn[2048-n.C[($<<4)+N]>>>2]+Pn[2048-n.bb[$]>>>2],G=s+1+m;c+G>l;)n.a[++l].z=268435455;f=E+(vn(n.i,m-2,N)+rn(n,0,$,N)),(J=n.a[c+G]).z>f&&(J.z=f,J.r=c+s+1,J.j=0,J.t=1,J.Ac=1,J.r2=c,J.j2=b+4)}if((U+=2)==B)break}}}}}function nn(n,r,c,t){var o=N(c);return(128>r?n.lb[128*o+r]:n.P[(o<<6)+function(n){return 131072>n?$n[n>>6]+12:134217728>n?$n[n>>16]+32:$n[n>>26]+52}(r)]+n.nc[15&r])+vn(n.$,c-2,t)}function rn(n,r,c,t){var o;return r?(o=Pn[2048-n.hb[c]>>>2],1==r?o+=Pn[n.Ub[c]>>>2]:(o+=Pn[2048-n.Ub[c]>>>2],o+=qn(n.vc[c],r-2))):(o=Pn[n.hb[c]>>>2],o+=Pn[2048-n._[(c<<4)+t]>>>2]),o}function cn(n,r){r>0&&(function(n,r){var c,t,o,f,b,i,u,e,a,v,l,d,h,s,m,g,x;do{if(n.h>=n.o+n.ob)d=n.ob;else if(d=n.h-n.o,n.xb>d){G(n);continue}for(h=n.o>n.p?n.o-n.p:0,t=n.f+n.o,n.qb?(i=1023&(x=Hn[255&n.c[t]]^255&n.c[t+1]),n.ub[i]=n.o,u=65535&(x^=(255&n.c[t+2])<<8),n.ub[1024+u]=n.o,e=(x^Hn[255&n.c[t+3]]<<5)&n.Ec):e=255&n.c[t]^(255&n.c[t+1])<<8,o=n.ub[n.R+e],n.ub[n.R+e]=n.o,m=1+(n.k<<1),g=n.k<<1,v=l=n.w,c=n.Fc;;){if(h>=o||0==c--){n.L[m]=n.L[g]=0;break}if(b=n.o-o,f=(n.k>=b?n.k-b:n.k-b+n.p)<<1,s=n.f+o,a=l>v?v:l,n.c[s+a]==n.c[t+a]){for(;++a!=d&&n.c[s+a]==n.c[t+a];);if(a==d){n.L[g]=n.L[f],n.L[m]=n.L[f+1];break}}(255&n.c[t+a])>(255&n.c[s+a])?(n.L[g]=o,g=f+1,o=n.L[g],l=a):(n.L[m]=o,m=f,o=n.L[m],v=a)}G(n)}while(0!=--r)}(n.b,r),n.s+=r)}function tn(n){var r=0;return n.D=function(n,r){var c,t,o,f,b,i,u,e,a,v,l,d,h,s,m,g,x,p,w,z,M;if(n.h>=n.o+n.ob)s=n.ob;else if(s=n.h-n.o,n.xb>s)return G(n),0;for(x=0,m=n.o>n.p?n.o-n.p:0,t=n.f+n.o,g=1,e=0,a=0,n.qb?(e=1023&(M=Hn[255&n.c[t]]^255&n.c[t+1]),a=65535&(M^=(255&n.c[t+2])<<8),v=(M^Hn[255&n.c[t+3]]<<5)&n.Ec):v=255&n.c[t]^(255&n.c[t+1])<<8,o=n.ub[n.R+v]||0,n.qb&&(f=n.ub[e]||0,b=n.ub[1024+a]||0,n.ub[e]=n.o,n.ub[1024+a]=n.o,f>m&&n.c[n.f+f]==n.c[t]&&(r[x++]=g=2,r[x++]=n.o-f-1),b>m&&n.c[n.f+b]==n.c[t]&&(b==f&&(x-=2),r[x++]=g=3,r[x++]=n.o-b-1,f=b),0!=x&&f==o&&(x-=2,g=1)),n.ub[n.R+v]=n.o,w=1+(n.k<<1),z=n.k<<1,d=h=n.w,0!=n.w&&o>m&&n.c[n.f+o+n.w]!=n.c[t+n.w]&&(r[x++]=g=n.w,r[x++]=n.o-o-1),c=n.Fc;;){if(m>=o||0==c--){n.L[w]=n.L[z]=0;break}if(u=n.o-o,i=(n.k>=u?n.k-u:n.k-u+n.p)<<1,p=n.f+o,l=h>d?d:h,n.c[p+l]==n.c[t+l]){for(;++l!=s&&n.c[p+l]==n.c[t+l];);if(l>g&&(r[x++]=g=l,r[x++]=u-1,l==s)){n.L[z]=n.L[i],n.L[w]=n.L[i+1];break}}(255&n.c[t+l])>(255&n.c[p+l])?(n.L[z]=o,z=i+1,o=n.L[z],h=l):(n.L[w]=o,w=i,o=n.L[w],d=l)}return G(n),x}(n.b,n.m),n.D>0&&((r=n.m[n.D-2])==n.n&&(r+=k(n.b,r-1,n.m[n.D-1],273-r))),++n.s,r}function on(n){n.b&&n.W&&(n.b.cc=null,n.W=0)}function fn(n){return 2048>n?$n[n]:2097152>n?$n[n>>10]+20:$n[n>>20]+40}function bn(n,r){Bn(n.db);for(var c=0;r>c;++c)Bn(n.Vb[c].G),Bn(n.Wb[c].G);Bn(n.ic.G)}function un(n,r,c,t,o){var f,b,i,u,e;for(f=Pn[n.db[0]>>>2],i=(b=Pn[2048-n.db[0]>>>2])+Pn[n.db[1]>>>2],u=b+Pn[2048-n.db[1]>>>2],e=0,e=0;8>e;++e){if(e>=c)return;t[o+e]=f+Ln(n.Vb[r],e)}for(;16>e;++e){if(e>=c)return;t[o+e]=i+Ln(n.Wb[r],e-8)}for(;c>e;++e)t[o+e]=u+Ln(n.ic,e-8-8)}function en(n,r,c,t){(function(n,r,c,t){8>c?(Un(r,n.db,0,0),En(n.Vb[t],r,c)):(c-=8,Un(r,n.db,0,1),8>c?(Un(r,n.db,1,0),En(n.Wb[t],r,c)):(Un(r,n.db,1,1),En(n.ic,r,c-8)))})(n,r,c,t),0==--n.sc[t]&&(un(n,t,n.rb,n.Cc,272*t),n.sc[t]=n.rb)}function an(n){return function(n){n.db=c(2),n.Vb=c(16),n.Wb=c(16),n.ic=Mn({},8);for(var r=0;16>r;++r)n.Vb[r]=Mn({},3),n.Wb[r]=Mn({},3)}(n),n.Cc=[],n.sc=[],n}function vn(n,r,c){return n.Cc[272*c+r]}function ln(n,r){for(var c=0;r>c;++c)un(n,c,n.rb,n.Cc,272*c),n.sc[c]=n.rb}function dn(n,r,t){var o,f;if(null==n.V||n.u!=t||n.I!=r)for(n.I=r,n.qc=(1<<r)-1,n.u=t,f=1<<n.u+n.I,n.V=c(f),o=0;f>o;++o)n.V[o]=gn({})}function hn(n,r,c){return n.V[((r&n.qc)<<n.u)+((255&c)>>>8-n.u)]}function sn(n,r,c){var t,o,f=1;for(o=7;o>=0;--o)t=c>>o&1,Un(r,n.tb,f,t),f=f<<1|t}function mn(n,r,c,t){var o,f,b,i,u=1,e=1;for(f=7;f>=0;--f)o=t>>f&1,i=e,u&&(i+=1+(b=c>>f&1)<<8,u=b==o),Un(r,n.tb,i,o),e=e<<1|o}function gn(n){return n.tb=c(768),n}function xn(n,r,c,t){var o,f,b=1,i=7,u=0;if(r)for(;i>=0;--i)if(f=c>>i&1,o=t>>i&1,u+=qn(n.tb[(1+f<<8)+b],o),b=b<<1|o,f!=o){--i;break}for(;i>=0;--i)o=t>>i&1,u+=qn(n.tb[b],o),b=b<<1|o;return u}function pn(n){n.j=-1,n.t=0}function wn(n,r){return n.F=r,n.G=c(1<<r),n}function zn(n,r){var c,t=1;for(c=n.F;0!=c;--c)t=(t<<1)+An(r,n.G,t);return t-(1<<n.F)}function Mn(n,r){return n.F=r,n.G=c(1<<r),n}function En(n,r,c){var t,o,f=1;for(o=n.F;0!=o;)t=c>>>--o&1,Un(r,n.G,f,t),f=f<<1|t}function Ln(n,r){var c,t,o=1,f=0;for(t=n.F;0!=t;)c=r>>>--t&1,f+=qn(n.G[o],c),o=(o<<1)+c;return f}function jn(n,r,c){var t,o,f=1;for(o=0;n.F>o;++o)t=1&c,Un(r,n.G,f,t),f=f<<1|t,c>>=1}function yn(n,r){var c,t,o=1,f=0;for(t=n.F;0!=t;--t)c=1&r,r>>>=1,f+=qn(n.G[o],c),o=o<<1|c;return f}function kn(n,r,c,t,o){var f,b,i=1;for(b=0;t>b;++b)Un(c,n,r+i,f=1&o),i=i<<1|f,o>>=1}function Cn(n,r,c,t){var o,f,b=1,i=0;for(f=c;0!=f;--f)o=1&t,t>>>=1,i+=Pn[(2047&(n[r+b]-o^-o))>>>2],b=b<<1|o;return i}function An(n,r,c){var t,o=r[c];return(-2147483648^(t=(n.E>>>11)*o))>(-2147483648^n.Bb)?(n.E=t,r[c]=o+(2048-o>>>5)<<16>>16,-16777216&n.E||(n.Bb=n.Bb<<8|s(n.Ab),n.E<<=8),0):(n.E-=t,n.Bb-=t,r[c]=o-(o>>>5)<<16>>16,-16777216&n.E||(n.Bb=n.Bb<<8|s(n.Ab),n.E<<=8),1)}function Bn(n){for(var r=n.length-1;r>=0;--r)n[r]=1024}function Un(n,r,c,f){var b,i=r[c];b=(n.E>>>11)*i,f?(n.xc=t(n.xc,o(u(b),[4294967295,0])),n.E-=b,r[c]=i-(i>>>5)<<16>>16):(n.E=b,r[c]=i+(2048-i>>>5)<<16>>16),-16777216&n.E||(n.E<<=8,Jn(n))}function Gn(n,r,c){for(var o=c-1;o>=0;--o)n.E>>>=1,1==(r>>>o&1)&&(n.xc=t(n.xc,u(n.E))),-16777216&n.E||(n.E<<=8,Jn(n))}function In(n){return t(t(u(n.Jb),n.mc),[4,0])}function Jn(n){var r,c=e(function(n,r){var c;return c=l(n,r&=63),0>n[1]&&(c=t(c,v([2,0],63-r))),c}(n.xc,32));if(0!=c||f(n.xc,[4278190080,0])<0){n.mc=t(n.mc,u(n.Jb)),r=n.Oc;do{p(n.Ab,r+c),r=255}while(0!=--n.Jb);n.Oc=e(n.xc)>>>24}++n.Jb,n.xc=v(o(n.xc,[16777215,0]),8)}function qn(n,r){return Pn[(2047&(n-r^-r))>>>2]}function Qn(n){for(var r,c,t,o=0,f=0,b=n.length,i=[],u=[];b>o;++o,++f){if(128&(r=255&n[o]))if(192==(224&r)){if(o+1>=b)return n;if(128!=(192&(c=255&n[++o])))return n;u[f]=(31&r)<<6|63&c}else{if(224!=(240&r))return n;if(o+2>=b)return n;if(128!=(192&(c=255&n[++o])))return n;if(128!=(192&(t=255&n[++o])))return n;u[f]=(15&r)<<12|(63&c)<<6|63&t}else{if(!r)return n;u[f]=r}16383==f&&(i.push(String.fromCharCode.apply(String,u)),f=-1)}return f>0&&(u.length=f,i.push(String.fromCharCode.apply(String,u))),i.join("")}function Dn(n){var r,c,t,o=[],f=0,b=n.length;if("object"==typeof n)return n;for(function(n,r,c,t,o){var f;for(f=r;c>f;++f)t[o++]=n.charCodeAt(f)}(n,0,b,o,0),t=0;b>t;++t)(r=o[t])>=1&&127>=r?++f:f+=!r||r>=128&&2047>=r?2:3;for(c=[],f=0,t=0;b>t;++t)(r=o[t])>=1&&127>=r?c[f++]=r<<24>>24:!r||r>=128&&2047>=r?(c[f++]=(192|r>>6&31)<<24>>24,c[f++]=(128|63&r)<<24>>24):(c[f++]=(224|r>>12&15)<<24>>24,c[f++]=(128|r>>6&63)<<24>>24,c[f++]=(128|63&r)<<24>>24);return c}function Nn(n){return n[1]+n[0]}var Zn=1,Fn=2,Kn=3,Tn="function"==typeof setImmediate?setImmediate:setTimeout,Vn=4294967296,Yn=[4294967295,-Vn],Rn=[0,-0x8000000000000000],Sn=[0,0],On=[1,0],Hn=function(){var n,r,c,t=[];for(n=0;256>n;++n){for(c=n,r=0;8>r;++r)1&c?c=c>>>1^-306674912:c>>>=1;t[n]=c}return t}(),$n=function(){var n,r,c,t=2,o=[0,1];for(c=2;22>c;++c)for(r=1<<(c>>1)-1,n=0;r>n;++n,++t)o[t]=c<<24>>24;return o}(),Pn=function(){var n,r,c,t=[];for(r=8;r>=0;--r)for(n=1<<9-r,c=1<<9-r-1;n>c;++c)t[c]=(r<<6)+(n-c<<6>>>9-r-1);return t}(),Wn=function(){var n=[{s:16,f:64,m:0},{s:20,f:64,m:0},{s:19,f:64,m:1},{s:20,f:64,m:1},{s:21,f:128,m:1},{s:22,f:128,m:1},{s:23,f:128,m:1},{s:24,f:255,m:1},{s:25,f:255,m:1}];return function(r){return n[r-1]||n[6]}}();return"undefined"==typeof onmessage||"undefined"!=typeof window&&void 0!==window.document||(onmessage=function(r){r&&r.gc&&(r.gc.action==Fn?n.decompress(r.gc.gc,r.gc.cbn):r.gc.action==Zn&&n.compress(r.gc.gc,r.gc.Rc,r.gc.cbn))}),{compress:function(n,c,t,o){var f,b,i={},u=void 0===t&&void 0===o;if("function"!=typeof t&&(b=t,t=o=0),o=o||function(n){return void 0!==b?r(n,b):void 0},t=t||function(n,r){return void 0!==b?postMessage({action:Zn,cbn:b,result:n,error:r}):void 0},u){for(i.c=E({},Dn(n),Wn(c));F(i.c.yb););return x(i.c.Nb)}try{i.c=E({},Dn(n),Wn(c)),o(0)}catch(n){return t(null,n)}Tn(function n(){try{for(var r,c=(new Date).getTime();F(i.c.yb);)if(f=Nn(i.c.yb.Pb)/Nn(i.c.Tb),(new Date).getTime()-c>200)return o(f),Tn(n,0),0;o(1),r=x(i.c.Nb),Tn(t.bind(null,r),0)}catch(n){t(null,n)}},0)},decompress:function(n,c,t){var o,f,b,i,u={},e=void 0===c&&void 0===t;if("function"!=typeof c&&(f=c,c=t=0),t=t||function(n){return void 0!==f?r(b?n:-1,f):void 0},c=c||function(n,r){return void 0!==f?postMessage({action:Fn,cbn:f,result:n,error:r}):void 0},e){for(u.d=j({},n);F(u.d.yb););return Qn(x(u.d.Nb))}try{u.d=j({},n),i=Nn(u.d.Tb),b=i>-1,t(0)}catch(n){return c(null,n)}Tn(function n(){try{for(var r,f=0,e=(new Date).getTime();F(u.d.yb);)if(++f%1e3==0&&(new Date).getTime()-e>200)return b&&(o=Nn(u.d.yb.Z.g)/i,t(o)),Tn(n,0),0;t(1),r=Qn(x(u.d.Nb)),Tn(c.bind(null,r),0)}catch(n){c(null,n)}},0)}}}();this.LZMA=this.LZMA_WORKER=n}}]);

================================================
FILE: dist/browser/json-url-lzstring.js
================================================
(self.webpackChunkJsonUrl=self.webpackChunkJsonUrl||[]).push([[66],{2992:(o,r,n)=>{var e,t=function(){var o=String.fromCharCode,r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",n="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-$",e={};function t(o,r){if(!e[o]){e[o]={};for(var n=0;n<o.length;n++)e[o][o.charAt(n)]=n}return e[o][r]}var s={compressToBase64:function(o){if(null==o)return"";var n=s._compress(o,6,function(o){return r.charAt(o)});switch(n.length%4){default:case 0:return n;case 1:return n+"===";case 2:return n+"==";case 3:return n+"="}},decompressFromBase64:function(o){return null==o?"":""==o?null:s._decompress(o.length,32,function(n){return t(r,o.charAt(n))})},compressToUTF16:function(r){return null==r?"":s._compress(r,15,function(r){return o(r+32)})+" "},decompressFromUTF16:function(o){return null==o?"":""==o?null:s._decompress(o.length,16384,function(r){return o.charCodeAt(r)-32})},compressToUint8Array:function(o){for(var r=s.compress(o),n=new Uint8Array(2*r.length),e=0,t=r.length;e<t;e++){var i=r.charCodeAt(e);n[2*e]=i>>>8,n[2*e+1]=i%256}return n},decompressFromUint8Array:function(r){if(null==r)return s.decompress(r);for(var n=new Array(r.length/2),e=0,t=n.length;e<t;e++)n[e]=256*r[2*e]+r[2*e+1];var i=[];return n.forEach(function(r){i.push(o(r))}),s.decompress(i.join(""))},compressToEncodedURIComponent:function(o){return null==o?"":s._compress(o,6,function(o){return n.charAt(o)})},decompressFromEncodedURIComponent:function(o){return null==o?"":""==o?null:(o=o.replace(/ /g,"+"),s._decompress(o.length,32,function(r){return t(n,o.charAt(r))}))},compress:function(r){return s._compress(r,16,function(r){return o(r)})},_compress:function(o,r,n){if(null==o)return"";var e,t,s,i={},p={},c="",a="",u="",l=2,f=3,h=2,d=[],m=0,v=0;for(s=0;s<o.length;s+=1)if(c=o.charAt(s),Object.prototype.hasOwnProperty.call(i,c)||(i[c]=f++,p[c]=!0),a=u+c,Object.prototype.hasOwnProperty.call(i,a))u=a;else{if(Object.prototype.hasOwnProperty.call(p,u)){if(u.charCodeAt(0)<256){for(e=0;e<h;e++)m<<=1,v==r-1?(v=0,d.push(n(m)),m=0):v++;for(t=u.charCodeAt(0),e=0;e<8;e++)m=m<<1|1&t,v==r-1?(v=0,d.push(n(m)),m=0):v++,t>>=1}else{for(t=1,e=0;e<h;e++)m=m<<1|t,v==r-1?(v=0,d.push(n(m)),m=0):v++,t=0;for(t=u.charCodeAt(0),e=0;e<16;e++)m=m<<1|1&t,v==r-1?(v=0,d.push(n(m)),m=0):v++,t>>=1}0==--l&&(l=Math.pow(2,h),h++),delete p[u]}else for(t=i[u],e=0;e<h;e++)m=m<<1|1&t,v==r-1?(v=0,d.push(n(m)),m=0):v++,t>>=1;0==--l&&(l=Math.pow(2,h),h++),i[a]=f++,u=String(c)}if(""!==u){if(Object.prototype.hasOwnProperty.call(p,u)){if(u.charCodeAt(0)<256){for(e=0;e<h;e++)m<<=1,v==r-1?(v=0,d.push(n(m)),m=0):v++;for(t=u.charCodeAt(0),e=0;e<8;e++)m=m<<1|1&t,v==r-1?(v=0,d.push(n(m)),m=0):v++,t>>=1}else{for(t=1,e=0;e<h;e++)m=m<<1|t,v==r-1?(v=0,d.push(n(m)),m=0):v++,t=0;for(t=u.charCodeAt(0),e=0;e<16;e++)m=m<<1|1&t,v==r-1?(v=0,d.push(n(m)),m=0):v++,t>>=1}0==--l&&(l=Math.pow(2,h),h++),delete p[u]}else for(t=i[u],e=0;e<h;e++)m=m<<1|1&t,v==r-1?(v=0,d.push(n(m)),m=0):v++,t>>=1;0==--l&&(l=Math.pow(2,h),h++)}for(t=2,e=0;e<h;e++)m=m<<1|1&t,v==r-1?(v=0,d.push(n(m)),m=0):v++,t>>=1;for(;;){if(m<<=1,v==r-1){d.push(n(m));break}v++}return d.join("")},decompress:function(o){return null==o?"":""==o?null:s._decompress(o.length,32768,function(r){return o.charCodeAt(r)})},_decompress:function(r,n,e){var t,s,i,p,c,a,u,l=[],f=4,h=4,d=3,m="",v=[],w={val:e(0),position:n,index:1};for(t=0;t<3;t+=1)l[t]=t;for(i=0,c=Math.pow(2,2),a=1;a!=c;)p=w.val&w.position,w.position>>=1,0==w.position&&(w.position=n,w.val=e(w.index++)),i|=(p>0?1:0)*a,a<<=1;switch(i){case 0:for(i=0,c=Math.pow(2,8),a=1;a!=c;)p=w.val&w.position,w.position>>=1,0==w.position&&(w.position=n,w.val=e(w.index++)),i|=(p>0?1:0)*a,a<<=1;u=o(i);break;case 1:for(i=0,c=Math.pow(2,16),a=1;a!=c;)p=w.val&w.position,w.position>>=1,0==w.position&&(w.position=n,w.val=e(w.index++)),i|=(p>0?1:0)*a,a<<=1;u=o(i);break;case 2:return""}for(l[3]=u,s=u,v.push(u);;){if(w.index>r)return"";for(i=0,c=Math.pow(2,d),a=1;a!=c;)p=w.val&w.position,w.position>>=1,0==w.position&&(w.position=n,w.val=e(w.index++)),i|=(p>0?1:0)*a,a<<=1;switch(u=i){case 0:for(i=0,c=Math.pow(2,8),a=1;a!=c;)p=w.val&w.position,w.position>>=1,0==w.position&&(w.position=n,w.val=e(w.index++)),i|=(p>0?1:0)*a,a<<=1;l[h++]=o(i),u=h-1,f--;break;case 1:for(i=0,c=Math.pow(2,16),a=1;a!=c;)p=w.val&w.position,w.position>>=1,0==w.position&&(w.position=n,w.val=e(w.index++)),i|=(p>0?1:0)*a,a<<=1;l[h++]=o(i),u=h-1,f--;break;case 2:return v.join("")}if(0==f&&(f=Math.pow(2,d),d++),l[u])m=l[u];else{if(u!==h)return null;m=s+s.charAt(0)}v.push(m),l[h++]=s+m.charAt(0),s=m,0==--f&&(f=Math.pow(2,d),d++)}}};return s}();void 0===(e=function(){return t}.call(r,n,r,o))||(o.exports=e)}}]);

================================================
FILE: dist/browser/json-url-lzw.js
================================================
"use strict";(self.webpackChunkJsonUrl=self.webpackChunkJsonUrl||[]).push([[508],{4484:e=>{var r=function(){};r.prototype.encode=function(e){for(var r,t={},n=(e+"").split(""),o=[],h=n[0],l=256,p=1;p<n.length;p++)null!=t[h+(r=n[p])]?h+=r:(o.push(h.length>1?t[h]:h.charCodeAt(0)),t[h+r]=l,l++,h=r);o.push(h.length>1?t[h]:h.charCodeAt(0));for(p=0;p<o.length;p++)o[p]=String.fromCharCode(o[p]);return o.join("")},r.prototype.decode=function(e){for(var r,t={},n=(e+"").split(""),o=n[0],h=o,l=[o],p=256,s=1;s<n.length;s++){var u=n[s].charCodeAt(0);r=u<256?n[s]:t[u]?t[u]:h+o,l.push(r),o=r.charAt(0),t[p]=h+o,p++,h=r}return l.join("")},e.exports=new r}}]);

================================================
FILE: dist/browser/json-url-msgpack.js
================================================
(self.webpackChunkJsonUrl=self.webpackChunkJsonUrl||[]).push([[81],{5340:()=>{},9838:()=>{}}]);

================================================
FILE: dist/browser/json-url-safe64.js
================================================
/*! For license information please see json-url-safe64.js.LICENSE.txt */
(self.webpackChunkJsonUrl=self.webpackChunkJsonUrl||[]).push([[622],{421:(e,r,n)=>{e.exports=n(5253)},5253:(e,r,n)=>{var a=n(8287).Buffer;r.version="1.0.0",r.encode=function(e){return e.toString("base64").replace(/\+/g,"-").replace(/\//g,"_").replace(/=+$/,"")},r.decode=function(e){return e=(e+=Array(5-e.length%4).join("=")).replace(/\-/g,"+").replace(/\_/g,"/"),new a(e,"base64")},r.validate=function(e){return/^[A-Za-z0-9\-_]+$/.test(e)}}}]);

================================================
FILE: dist/browser/json-url-safe64.js.LICENSE.txt
================================================
/*!
 * urlsafe-base64
 */


================================================
FILE: dist/browser/json-url-single.js
================================================
/*! For license information please see json-url-single.js.LICENSE.txt */
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.JsonUrl=e():t.JsonUrl=e()}(self,()=>(()=>{var t,e,r={41:(t,e,r)=>{"use strict";var n=r(655),o=r(8068),i=r(9675),a=r(5795);t.exports=function(t,e,r){if(!t||"object"!=typeof t&&"function"!=typeof t)throw new i("`obj` must be an object or a function`");if("string"!=typeof e&&"symbol"!=typeof e)throw new i("`property` must be a string or a symbol`");if(arguments.length>3&&"boolean"!=typeof arguments[3]&&null!==arguments[3])throw new i("`nonEnumerable`, if provided, must be a boolean or null");if(arguments.length>4&&"boolean"!=typeof arguments[4]&&null!==arguments[4])throw new i("`nonWritable`, if provided, must be a boolean or null");if(arguments.length>5&&"boolean"!=typeof arguments[5]&&null!==arguments[5])throw new i("`nonConfigurable`, if provided, must be a boolean or null");if(arguments.length>6&&"boolean"!=typeof arguments[6])throw new i("`loose`, if provided, must be a boolean");var u=arguments.length>3?arguments[3]:null,c=arguments.length>4?arguments[4]:null,s=arguments.length>5?arguments[5]:null,f=arguments.length>6&&arguments[6],l=!!a&&a(t,e);if(n)n(t,e,{configurable:null===s&&l?l.configurable:!s,enumerable:null===u&&l?l.enumerable:!u,value:r,writable:null===c&&l?l.writable:!c});else{if(!f&&(u||c||s))throw new o("This environment does not support defining a property as non-configurable, non-writable, or non-enumerable.");t[e]=r}}},63:(t,e,r)=>{"use strict";const n=r(8399).Transform,o=r(6698),i=r(4829);function a(t){(t=t||{}).objectMode=!0,t.highWaterMark=16,n.call(this,t),this._msgpack=t.msgpack}function u(t){if(!(this instanceof u))return(t=t||{}).msgpack=this,new u(t);a.call(this,t),this._wrap="wrap"in t&&t.wrap}function c(t){if(!(this instanceof c))return(t=t||{}).msgpack=this,new c(t);a.call(this,t),this._chunks=i(),this._wrap="wrap"in t&&t.wrap}o(a,n),o(u,a),u.prototype._transform=function(t,e,r){let n=null;try{n=this._msgpack.encode(this._wrap?t.value:t).slice(0)}catch(t){return this.emit("error",t),r()}this.push(n),r()},o(c,a),c.prototype._transform=function(t,e,r){t&&this._chunks.append(t);try{let t=this._msgpack.decode(this._chunks);this._wrap&&(t={value:t}),this.push(t)}catch(t){return void(t instanceof this._msgpack.IncompleteBufferError?r():this.emit("error",t))}this._chunks.length>0?this._transform(null,e,r):r()},t.exports.decoder=c,t.exports.encoder=u},76:t=>{"use strict";t.exports=Function.prototype.call},251:(t,e)=>{e.read=function(t,e,r,n,o){var i,a,u=8*o-n-1,c=(1<<u)-1,s=c>>1,f=-7,l=r?o-1:0,p=r?-1:1,h=t[e+l];for(l+=p,i=h&(1<<-f)-1,h>>=-f,f+=u;f>0;i=256*i+t[e+l],l+=p,f-=8);for(a=i&(1<<-f)-1,i>>=-f,f+=n;f>0;a=256*a+t[e+l],l+=p,f-=8);if(0===i)i=1-s;else{if(i===c)return a?NaN:1/0*(h?-1:1);a+=Math.pow(2,n),i-=s}return(h?-1:1)*a*Math.pow(2,i-n)},e.write=function(t,e,r,n,o,i){var a,u,c,s=8*i-o-1,f=(1<<s)-1,l=f>>1,p=23===o?Math.pow(2,-24)-Math.pow(2,-77):0,h=n?0:i-1,d=n?1:-1,y=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(u=isNaN(e)?1:0,a=f):(a=Math.floor(Math.log(e)/Math.LN2),e*(c=Math.pow(2,-a))<1&&(a--,c*=2),(e+=a+l>=1?p/c:p*Math.pow(2,1-l))*c>=2&&(a++,c/=2),a+l>=f?(u=0,a=f):a+l>=1?(u=(e*c-1)*Math.pow(2,o),a+=l):(u=e*Math.pow(2,l-1)*Math.pow(2,o),a=0));o>=8;t[r+h]=255&u,h+=d,u/=256,o-=8);for(a=a<<o|u,s+=o;s>0;t[r+h]=255&a,h+=d,a/=256,s-=8);t[r+h-d]|=128*y}},345:(t,e,r)=>{t.exports=r(7007).EventEmitter},414:t=>{"use strict";t.exports=Math.round},421:(t,e,r)=>{t.exports=r(5253)},453:(t,e,r)=>{"use strict";var n,o=r(9612),i=r(9383),a=r(1237),u=r(9290),c=r(9538),s=r(8068),f=r(9675),l=r(5345),p=r(1514),h=r(8968),d=r(6188),y=r(8002),b=r(5880),g=r(414),v=r(3093),m=Function,w=function(t){try{return m('"use strict"; return ('+t+").constructor;")()}catch(t){}},E=r(5795),_=r(655),S=function(){throw new f},x=E?function(){try{return S}catch(t){try{return E(arguments,"callee").get}catch(t){return S}}}():S,O=r(4039)(),j=r(3628),A=r(1064),R=r(8648),k=r(1002),B=r(76),T={},P="undefined"!=typeof Uint8Array&&j?j(Uint8Array):n,I={__proto__:null,"%AggregateError%":"undefined"==typeof AggregateError?n:AggregateError,"%Array%":Array,"%ArrayBuffer%":"undefined"==typeof ArrayBuffer?n:ArrayBuffer,"%ArrayIteratorPrototype%":O&&j?j([][Symbol.iterator]()):n,"%AsyncFromSyncIteratorPrototype%":n,"%AsyncFunction%":T,"%AsyncGenerator%":T,"%AsyncGeneratorFunction%":T,"%AsyncIteratorPrototype%":T,"%Atomics%":"undefined"==typeof Atomics?n:Atomics,"%BigInt%":"undefined"==typeof BigInt?n:BigInt,"%BigInt64Array%":"undefined"==typeof BigInt64Array?n:BigInt64Array,"%BigUint64Array%":"undefined"==typeof BigUint64Array?n:BigUint64Array,"%Boolean%":Boolean,"%DataView%":"undefined"==typeof DataView?n:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":i,"%eval%":eval,"%EvalError%":a,"%Float16Array%":"undefined"==typeof Float16Array?n:Float16Array,"%Float32Array%":"undefined"==typeof Float32Array?n:Float32Array,"%Float64Array%":"undefined"==typeof Float64Array?n:Float64Array,"%FinalizationRegistry%":"undefined"==typeof FinalizationRegistry?n:FinalizationRegistry,"%Function%":m,"%GeneratorFunction%":T,"%Int8Array%":"undefined"==typeof Int8Array?n:Int8Array,"%Int16Array%":"undefined"==typeof Int16Array?n:Int16Array,"%Int32Array%":"undefined"==typeof Int32Array?n:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":O&&j?j(j([][Symbol.iterator]())):n,"%JSON%":"object"==typeof JSON?JSON:n,"%Map%":"undefined"==typeof Map?n:Map,"%MapIteratorPrototype%":"undefined"!=typeof Map&&O&&j?j((new Map)[Symbol.iterator]()):n,"%Math%":Math,"%Number%":Number,"%Object%":o,"%Object.getOwnPropertyDescriptor%":E,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":"undefined"==typeof Promise?n:Promise,"%Proxy%":"undefined"==typeof Proxy?n:Proxy,"%RangeError%":u,"%ReferenceError%":c,"%Reflect%":"undefined"==typeof Reflect?n:Reflect,"%RegExp%":RegExp,"%Set%":"undefined"==typeof Set?n:Set,"%SetIteratorPrototype%":"undefined"!=typeof Set&&O&&j?j((new Set)[Symbol.iterator]()):n,"%SharedArrayBuffer%":"undefined"==typeof SharedArrayBuffer?n:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":O&&j?j(""[Symbol.iterator]()):n,"%Symbol%":O?Symbol:n,"%SyntaxError%":s,"%ThrowTypeError%":x,"%TypedArray%":P,"%TypeError%":f,"%Uint8Array%":"undefined"==typeof Uint8Array?n:Uint8Array,"%Uint8ClampedArray%":"undefined"==typeof Uint8ClampedArray?n:Uint8ClampedArray,"%Uint16Array%":"undefined"==typeof Uint16Array?n:Uint16Array,"%Uint32Array%":"undefined"==typeof Uint32Array?n:Uint32Array,"%URIError%":l,"%WeakMap%":"undefined"==typeof WeakMap?n:WeakMap,"%WeakRef%":"undefined"==typeof WeakRef?n:WeakRef,"%WeakSet%":"undefined"==typeof WeakSet?n:WeakSet,"%Function.prototype.call%":B,"%Function.prototype.apply%":k,"%Object.defineProperty%":_,"%Object.getPrototypeOf%":A,"%Math.abs%":p,"%Math.floor%":h,"%Math.max%":d,"%Math.min%":y,"%Math.pow%":b,"%Math.round%":g,"%Math.sign%":v,"%Reflect.getPrototypeOf%":R};if(j)try{null.error}catch(t){var M=j(j(t));I["%Error.prototype%"]=M}var U=function t(e){var r;if("%AsyncFunction%"===e)r=w("async function () {}");else if("%GeneratorFunction%"===e)r=w("function* () {}");else if("%AsyncGeneratorFunction%"===e)r=w("async function* () {}");else if("%AsyncGenerator%"===e){var n=t("%AsyncGeneratorFunction%");n&&(r=n.prototype)}else if("%AsyncIteratorPrototype%"===e){var o=t("%AsyncGenerator%");o&&j&&(r=j(o.prototype))}return I[e]=r,r},L={__proto__:null,"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},N=r(6743),C=r(9957),F=N.call(B,Array.prototype.concat),D=N.call(k,Array.prototype.splice),q=N.call(B,String.prototype.replace),z=N.call(B,String.prototype.slice),$=N.call(B,RegExp.prototype.exec),G=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,W=/\\(\\)?/g,V=function(t,e){var r,n=t;if(C(L,n)&&(n="%"+(r=L[n])[0]+"%"),C(I,n)){var o=I[n];if(o===T&&(o=U(n)),void 0===o&&!e)throw new f("intrinsic "+t+" exists, but is not available. Please file an issue!");return{alias:r,name:n,value:o}}throw new s("intrinsic "+t+" does not exist!")};t.exports=function(t,e){if("string"!=typeof t||0===t.length)throw new f("intrinsic name must be a non-empty string");if(arguments.length>1&&"boolean"!=typeof e)throw new f('"allowMissing" argument must be a boolean');if(null===$(/^%?[^%]*%?$/,t))throw new s("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var r=function(t){var e=z(t,0,1),r=z(t,-1);if("%"===e&&"%"!==r)throw new s("invalid intrinsic syntax, expected closing `%`");if("%"===r&&"%"!==e)throw new s("invalid intrinsic syntax, expected opening `%`");var n=[];return q(t,G,function(t,e,r,o){n[n.length]=r?q(o,W,"$1"):e||t}),n}(t),n=r.length>0?r[0]:"",o=V("%"+n+"%",e),i=o.name,a=o.value,u=!1,c=o.alias;c&&(n=c[0],D(r,F([0,1],c)));for(var l=1,p=!0;l<r.length;l+=1){var h=r[l],d=z(h,0,1),y=z(h,-1);if(('"'===d||"'"===d||"`"===d||'"'===y||"'"===y||"`"===y)&&d!==y)throw new s("property names with quotes must have matching quotes");if("constructor"!==h&&p||(u=!0),C(I,i="%"+(n+="."+h)+"%"))a=I[i];else if(null!=a){if(!(h in a)){if(!e)throw new f("base intrinsic for "+t+" exists, but the property is not available.");return}if(E&&l+1>=r.length){var b=E(a,h);a=(p=!!b)&&"get"in b&&!("originalValue"in b.get)?b.get:a[h]}else p=C(a,h),a=a[h];p&&!u&&(I[i]=a)}}return a}},487:(t,e,r)=>{"use strict";var n=r(6897),o=r(655),i=r(3126),a=r(2205);t.exports=function(t){var e=i(arguments),r=t.length-(arguments.length-1);return n(e,1+(r>0?r:0),!0)},o?o(t.exports,"apply",{value:a}):t.exports.apply=a},537:(t,e,r)=>{var n=r(5606),o=Object.getOwnPropertyDescriptors||function(t){for(var e=Object.keys(t),r={},n=0;n<e.length;n++)r[e[n]]=Object.getOwnPropertyDescriptor(t,e[n]);return r},i=/%[sdj%]/g;e.format=function(t){if(!v(t)){for(var e=[],r=0;r<arguments.length;r++)e.push(c(arguments[r]));return e.join(" ")}r=1;for(var n=arguments,o=n.length,a=String(t).replace(i,function(t){if("%%"===t)return"%";if(r>=o)return t;switch(t){case"%s":return String(n[r++]);case"%d":return Number(n[r++]);case"%j":try{return JSON.stringify(n[r++])}catch(t){return"[Circular]"}default:return t}}),u=n[r];r<o;u=n[++r])b(u)||!E(u)?a+=" "+u:a+=" "+c(u);return a},e.deprecate=function(t,r){if(void 0!==n&&!0===n.noDeprecation)return t;if(void 0===n)return function(){return e.deprecate(t,r).apply(this,arguments)};var o=!1;return function(){if(!o){if(n.throwDeprecation)throw new Error(r);n.traceDeprecation?console.trace(r):console.error(r),o=!0}return t.apply(this,arguments)}};var a={},u=/^$/;function c(t,r){var n={seen:[],stylize:f};return arguments.length>=3&&(n.depth=arguments[2]),arguments.length>=4&&(n.colors=arguments[3]),y(r)?n.showHidden=r:r&&e._extend(n,r),m(n.showHidden)&&(n.showHidden=!1),m(n.depth)&&(n.depth=2),m(n.colors)&&(n.colors=!1),m(n.customInspect)&&(n.customInspect=!0),n.colors&&(n.stylize=s),l(n,t,n.depth)}function s(t,e){var r=c.styles[e];return r?"["+c.colors[r][0]+"m"+t+"["+c.colors[r][1]+"m":t}function f(t,e){return t}function l(t,r,n){if(t.customInspect&&r&&x(r.inspect)&&r.inspect!==e.inspect&&(!r.constructor||r.constructor.prototype!==r)){var o=r.inspect(n,t);return v(o)||(o=l(t,o,n)),o}var i=function(t,e){if(m(e))return t.stylize("undefined","undefined");if(v(e)){var r="'"+JSON.stringify(e).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return t.stylize(r,"string")}if(g(e))return t.stylize(""+e,"number");if(y(e))return t.stylize(""+e,"boolean");if(b(e))return t.stylize("null","null")}(t,r);if(i)return i;var a=Object.keys(r),u=function(t){var e={};return t.forEach(function(t,r){e[t]=!0}),e}(a);if(t.showHidden&&(a=Object.getOwnPropertyNames(r)),S(r)&&(a.indexOf("message")>=0||a.indexOf("description")>=0))return p(r);if(0===a.length){if(x(r)){var c=r.name?": "+r.name:"";return t.stylize("[Function"+c+"]","special")}if(w(r))return t.stylize(RegExp.prototype.toString.call(r),"regexp");if(_(r))return t.stylize(Date.prototype.toString.call(r),"date");if(S(r))return p(r)}var s,f="",E=!1,O=["{","}"];(d(r)&&(E=!0,O=["[","]"]),x(r))&&(f=" [Function"+(r.name?": "+r.name:"")+"]");return w(r)&&(f=" "+RegExp.prototype.toString.call(r)),_(r)&&(f=" "+Date.prototype.toUTCString.call(r)),S(r)&&(f=" "+p(r)),0!==a.length||E&&0!=r.length?n<0?w(r)?t.stylize(RegExp.prototype.toString.call(r),"regexp"):t.stylize("[Object]","special"):(t.seen.push(r),s=E?function(t,e,r,n,o){for(var i=[],a=0,u=e.length;a<u;++a)R(e,String(a))?i.push(h(t,e,r,n,String(a),!0)):i.push("");return o.forEach(function(o){o.match(/^\d+$/)||i.push(h(t,e,r,n,o,!0))}),i}(t,r,n,u,a):a.map(function(e){return h(t,r,n,u,e,E)}),t.seen.pop(),function(t,e,r){var n=t.reduce(function(t,e){return e.indexOf("\n")>=0&&0,t+e.replace(/\u001b\[\d\d?m/g,"").length+1},0);if(n>60)return r[0]+(""===e?"":e+"\n ")+" "+t.join(",\n  ")+" "+r[1];return r[0]+e+" "+t.join(", ")+" "+r[1]}(s,f,O)):O[0]+f+O[1]}function p(t){return"["+Error.prototype.toString.call(t)+"]"}function h(t,e,r,n,o,i){var a,u,c;if((c=Object.getOwnPropertyDescriptor(e,o)||{value:e[o]}).get?u=c.set?t.stylize("[Getter/Setter]","special"):t.stylize("[Getter]","special"):c.set&&(u=t.stylize("[Setter]","special")),R(n,o)||(a="["+o+"]"),u||(t.seen.indexOf(c.value)<0?(u=b(r)?l(t,c.value,null):l(t,c.value,r-1)).indexOf("\n")>-1&&(u=i?u.split("\n").map(function(t){return"  "+t}).join("\n").slice(2):"\n"+u.split("\n").map(function(t){return"   "+t}).join("\n")):u=t.stylize("[Circular]","special")),m(a)){if(i&&o.match(/^\d+$/))return u;(a=JSON.stringify(""+o)).match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(a=a.slice(1,-1),a=t.stylize(a,"name")):(a=a.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),a=t.stylize(a,"string"))}return a+": "+u}function d(t){return Array.isArray(t)}function y(t){return"boolean"==typeof t}function b(t){return null===t}function g(t){return"number"==typeof t}function v(t){return"string"==typeof t}function m(t){return void 0===t}function w(t){return E(t)&&"[object RegExp]"===O(t)}function E(t){return"object"==typeof t&&null!==t}function _(t){return E(t)&&"[object Date]"===O(t)}function S(t){return E(t)&&("[object Error]"===O(t)||t instanceof Error)}function x(t){return"function"==typeof t}function O(t){return Object.prototype.toString.call(t)}function j(t){return t<10?"0"+t.toString(10):t.toString(10)}e.debuglog=function(t){if(t=t.toUpperCase(),!a[t])if(u.test(t)){var r=n.pid;a[t]=function(){var n=e.format.apply(e,arguments);console.error("%s %d: %s",t,r,n)}}else a[t]=function(){};return a[t]},e.inspect=c,c.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},c.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"},e.types=r(9032),e.isArray=d,e.isBoolean=y,e.isNull=b,e.isNullOrUndefined=function(t){return null==t},e.isNumber=g,e.isString=v,e.isSymbol=function(t){return"symbol"==typeof t},e.isUndefined=m,e.isRegExp=w,e.types.isRegExp=w,e.isObject=E,e.isDate=_,e.types.isDate=_,e.isError=S,e.types.isNativeError=S,e.isFunction=x,e.isPrimitive=function(t){return null===t||"boolean"==typeof t||"number"==typeof t||"string"==typeof t||"symbol"==typeof t||void 0===t},e.isBuffer=r(1135);var A=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function R(t,e){return Object.prototype.hasOwnProperty.call(t,e)}e.log=function(){var t,r;console.log("%s - %s",(t=new Date,r=[j(t.getHours()),j(t.getMinutes()),j(t.getSeconds())].join(":"),[t.getDate(),A[t.getMonth()],r].join(" ")),e.format.apply(e,arguments))},e.inherits=r(6698),e._extend=function(t,e){if(!e||!E(e))return t;for(var r=Object.keys(e),n=r.length;n--;)t[r[n]]=e[r[n]];return t};var k="undefined"!=typeof Symbol?Symbol("util.promisify.custom"):void 0;function B(t,e){if(!t){var r=new Error("Promise was rejected with a falsy value");r.reason=t,t=r}return e(t)}e.promisify=function(t){if("function"!=typeof t)throw new TypeError('The "original" argument must be of type Function');if(k&&t[k]){var e;if("function"!=typeof(e=t[k]))throw new TypeError('The "util.promisify.custom" argument must be of type Function');return Object.defineProperty(e,k,{value:e,enumerable:!1,writable:!1,configurable:!0}),e}function e(){for(var e,r,n=new Promise(function(t,n){e=t,r=n}),o=[],i=0;i<arguments.length;i++)o.push(arguments[i]);o.push(function(t,n){t?r(t):e(n)});try{t.apply(this,o)}catch(t){r(t)}return n}return Object.setPrototypeOf(e,Object.getPrototypeOf(t)),k&&Object.defineProperty(e,k,{value:e,enumerable:!1,writable:!1,configurable:!0}),Object.defineProperties(e,o(t))},e.promisify.custom=k,e.callbackify=function(t){if("function"!=typeof t)throw new TypeError('The "original" argument must be of type Function');function e(){for(var e=[],r=0;r<arguments.length;r++)e.push(arguments[r]);var o=e.pop();if("function"!=typeof o)throw new TypeError("The last argument must be of type Function");var i=this,a=function(){return o.apply(i,arguments)};t.apply(this,e).then(function(t){n.nextTick(a.bind(null,null,t))},function(t){n.nextTick(B.bind(null,t,a))})}return Object.setPrototypeOf(e,Object.getPrototypeOf(t)),Object.defineProperties(e,o(t)),e}},579:(t,e,r)=>{var n=r(3738).default;t.exports=function(t){if(null!=t){var e=t["function"==typeof Symbol&&Symbol.iterator||"@@iterator"],r=0;if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length))return{next:function(){return t&&r>=t.length&&(t=void 0),{value:t&&t[r++],done:!t}}}}throw new TypeError(n(t)+" is not iterable")},t.exports.__esModule=!0,t.exports.default=t.exports},592:(t,e,r)=>{"use strict";var n=r(655),o=function(){return!!n};o.hasArrayLengthDefineBug=function(){if(!n)return null;try{return 1!==n([],"length",{value:1}).length}catch(t){return!0}},t.exports=o},655:t=>{"use strict";var e=Object.defineProperty||!1;if(e)try{e({},"a",{value:1})}catch(t){e=!1}t.exports=e},887:(t,e,r)=>{var n=r(6993),o=r(1791);t.exports=function(t,e,r,i,a){return new o(n().w(t,e,r,i),a||Promise)},t.exports.__esModule=!0,t.exports.default=t.exports},894:function(){var t=function(){"use strict";function e(t,e){postMessage({action:Dt,cbn:e,result:t})}function r(t){var e=[];return e[t-1]=void 0,e}function n(t,e){return a(t[0]+e[0],t[1]+e[1])}function o(t,e){return function(t,e){var r,n;return r=t*zt,n=e,0>e&&(n+=zt),[n,r]}(Math.max(Math.min(t[1]/zt,2147483647),-2147483648)&Math.max(Math.min(e[1]/zt,2147483647),-2147483648),s(t)&s(e))}function i(t,e){var r,n;return t[0]==e[0]&&t[1]==e[1]?0:(r=0>t[1],n=0>e[1],r&&!n?-1:!r&&n?1:h(t,e)[1]<0?-1:1)}function a(t,e){var r,n;for(t%=0x10000000000000000,e=(e%=0x10000000000000000)-(r=e%zt)+(n=Math.floor(t/zt)*zt),t=t-n+r;0>t;)t+=zt,e-=zt;for(;t>4294967295;)t-=zt,e+=zt;for(e%=0x10000000000000000;e>0x7fffffff00000000;)e-=0x10000000000000000;for(;-0x8000000000000000>e;)e+=0x10000000000000000;return[t,e]}function u(t,e){return t[0]==e[0]&&t[1]==e[1]}function c(t){return t>=0?[t,0]:[t+zt,-zt]}function s(t){return t[0]>=2147483648?~~Math.max(Math.min(t[0]-zt,2147483647),-2147483648):~~Math.max(Math.min(t[0],2147483647),-2147483648)}function f(t){return 30>=t?1<<t:f(30)*f(t-30)}function l(t,e){var r,n,o,i;if(e&=63,u(t,Gt))return e?Wt:t;if(0>t[1])throw Error("Neg");return i=f(e),n=t[1]*i%0x10000000000000000,(n+=r=(o=t[0]*i)-o%zt)>=0x8000000000000000&&(n-=0x10000000000000000),[o-=r,n]}function p(t,e){var r;return r=f(e&=63),a(Math.floor(t[0]/r),t[1]/r)}function h(t,e){return a(t[0]-e[0],t[1]-e[1])}function d(t,e){return t.Mc=e,t.Lc=0,t.Yb=e.length,t}function y(t){return t.Lc>=t.Yb?-1:255&t.Mc[t.Lc++]}function b(t,e,r,n){return t.Lc>=t.Yb?-1:(n=Math.min(n,t.Yb-t.Lc),E(t.Mc,t.Lc,e,r,n),t.Lc+=n,n)}function g(t){return t.Mc=r(32),t.Yb=0,t}function v(t){var e=t.Mc;return e.length=t.Yb,e}function m(t,e){t.Mc[t.Yb++]=e<<24>>24}function w(t,e,r,n){E(e,r,t.Mc,t.Yb,n),t.Yb+=n}function E(t,e,r,n,o){for(var i=0;o>i;++i)r[n+i]=t[e+i]}function _(e,r,n,o,a){var u,c;if(i(o,$t)<0)throw Error("invalid length "+o);for(e.Tb=o,function(t,e){(function(t,e){t.ab=e;for(var r=0;e>1<<r;++r);t.$b=2*r})(e,1<<t.s),e.n=t.f,function(t,e){var r=t.X;t.X=e,t.b&&r!=t.X&&(t.wb=-1,t.b=null)}(e,t.m),e.eb=0,e.fb=3,e.Y=2,e.y=3}(a,u=J({})),u.Gc=void 0===t.disableEndMark,function(t,e){t.fc[0]=9*(5*t.Y+t.eb)+t.fb<<24>>24;for(var r=0;4>r;++r)t.fc[1+r]=t.ab>>8*r<<24>>24;w(e,t.fc,0,5)}(u,n),c=0;64>c;c+=8)m(n,255&s(p(o,c)));e.yb=(u.W=0,u.oc=r,u.pc=0,function(t){var e,r;t.b||(e={},r=4,t.X||(r=2),function(t,e){t.qb=e>2,t.qb?(t.w=0,t.xb=4,t.R=66560):(t.w=2,t.xb=3,t.R=0)}(e,r),t.b=e),pt(t.A,t.eb,t.fb),(t.ab!=t.wb||t.Hb!=t.n)&&(T(t.b,t.ab,4096,t.n,274),t.wb=t.ab,t.Hb=t.n)}(u),u.d.Ab=n,function(t){(function(t){t.l=0,t.J=0;for(var e=0;4>e;++e)t.v[e]=0})(t),function(t){t.mc=Wt,t.xc=Wt,t.E=-1,t.Jb=1,t.Oc=0}(t.d),kt(t.C),kt(t._),kt(t.bb),kt(t.hb),kt(t.Ub),kt(t.vc),kt(t.Sb),function(t){var e,r=1<<t.u+t.I;for(e=0;r>e;++e)kt(t.V[e].tb)}(t.A);for(var e=0;4>e;++e)kt(t.K[e].G);at(t.$,1<<t.Y),at(t.i,1<<t.Y),kt(t.S.G),t.N=0,t.jb=0,t.q=0,t.s=0}(u),Z(u),K(u),u.$.rb=u.n+1-2,lt(u.$,1<<u.Y),u.i.rb=u.n+1-2,lt(u.i,1<<u.Y),u.g=Wt,function(t,e){return t.cb=e,t.Z=null,t.zc=1,t}({},u))}function S(t,e,r){return t.Nb=g({}),_(t,d({},e),t.Nb,c(e.length),r),t}function x(t,e,r){var n,o,i,a,u="",s=[];for(o=0;5>o;++o){if(-1==(i=y(e)))throw Error("truncated input");s[o]=i<<24>>24}if(!function(t,e){var r,n,o,i,a,u,c;if(5>e.length)return 0;for(c=255&e[0],o=c%9,i=(u=~~(c/9))%5,a=~~(u/5),r=0,n=0;4>n;++n)r+=(255&e[1+n])<<8*n;return r>99999999||!function(t,e,r,n){if(e>8||r>4||n>4)return 0;V(t.gb,r,e);var o=1<<n;return z(t.Rb,o),z(t.sb,o),t.Dc=o-1,1}(t,o,i,a)?0:function(t,e){return 0>e?0:(t.Ob!=e&&(t.Ob=e,t.nb=Math.max(t.Ob,1),M(t.B,Math.max(t.nb,4096))),1)}(t,r)}(n=q({}),s))throw Error("corrupted input");for(o=0;64>o;o+=8){if(-1==(i=y(e)))throw Error("truncated input");1==(i=i.toString(16)).length&&(i="0"+i),u=i+""+u}/^0+$|^f+$/i.test(u)?t.Tb=$t:(a=parseInt(u,16),t.Tb=a>4294967295?$t:c(a)),t.yb=function(t,e,r,n){return t.e.Ab=e,N(t.B),t.B.cc=r,function(t){t.B.h=0,t.B.o=0,kt(t.Gb),kt(t.pb),kt(t.Zb),kt(t.Cb),kt(t.Db),kt(t.Eb),kt(t.kc),function(t){var e,r;for(r=1<<t.u+t.I,e=0;r>e;++e)kt(t.V[e].Ib)}(t.gb);for(var e=0;4>e;++e)kt(t.kb[e].G);W(t.Rb),W(t.sb),kt(t.Fb.G),function(t){t.Bb=0,t.E=-1;for(var e=0;5>e;++e)t.Bb=t.Bb<<8|y(t.Ab)}(t.e)}(t),t.U=0,t.ib=0,t.Jc=0,t.Ic=0,t.Qc=0,t.Nc=n,t.g=Wt,t.jc=0,function(t,e){return t.Z=e,t.cb=null,t.zc=1,t}({},t)}(n,e,r,t.Tb)}function O(t,e){return t.Nb=g({}),x(t,d({},e),t.Nb),t}function j(t,e){return t.c[t.f+t.o+e]}function A(t,e,r,n){var o,i;for(t.T&&t.o+e+n>t.h&&(n=t.h-(t.o+e)),++r,i=t.f+t.o+e,o=0;n>o&&t.c[i+o]==t.c[i+o-r];++o);return o}function R(t){return t.h-t.o}function k(t){var e,r;if(!t.T)for(;;){if(!(r=-t.f+t.Kb-t.h))return;if(-1==(e=b(t.cc,t.c,t.f+t.h,r)))return t.zb=t.h,t.f+t.zb>t.H&&(t.zb=t.H-t.f),void(t.T=1);t.h+=e,t.h>=t.o+t._b&&(t.zb=t.h-t._b)}}function B(t,e){t.f+=e,t.zb-=e,t.o-=e,t.h-=e}function T(t,e,n,o,i){var a,u;1073741567>e&&(t.Fc=16+(o>>1),function(t,e,n,o){var i;t.Bc=e,t._b=n,i=e+n+o,(null==t.c||t.Kb!=i)&&(t.c=null,t.Kb=i,t.c=r(t.Kb)),t.H=t.Kb-n}(t,e+n,o+i,256+~~((e+n+o+i)/2)),t.ob=o,a=e+1,t.p!=a&&(t.L=r(2*(t.p=a))),u=65536,t.qb&&(u=e-1,u|=u>>1,u|=u>>2,u|=u>>4,u|=u>>8,u>>=1,(u|=65535)>16777216&&(u>>=1),t.Ec=u,++u,u+=t.R),u!=t.rc&&(t.ub=r(t.rc=u)))}function P(t){var e;++t.k>=t.p&&(t.k=0),function(t){++t.o,t.o>t.zb&&(t.f+t.o>t.H&&function(t){var e,r,n;for((n=t.f+t.o-t.Bc)>0&&--n,r=t.f+t.h-n,e=0;r>e;++e)t.c[e]=t.c[n+e];t.f-=n}(t),k(t))}(t),1073741823==t.o&&(e=t.o-t.p,I(t.L,2*t.p,e),I(t.ub,t.rc,e),B(t,e))}function I(t,e,r){var n,o;for(n=0;e>n;++n)r>=(o=t[n]||0)?o=0:o-=r,t[n]=o}function M(t,e){(null==t.Lb||t.M!=e)&&(t.Lb=r(e)),t.M=e,t.o=0,t.h=0}function U(t){var e=t.o-t.h;e&&(w(t.cc,t.Lb,t.h,e),t.o>=t.M&&(t.o=0),t.h=t.o)}function L(t,e){var r=t.o-e-1;return 0>r&&(r+=t.M),t.Lb[r]}function N(t){U(t),t.cc=null}function C(t){return 4>(t-=2)?t:3}function F(t){return 4>t?0:10>t?t-3:t-6}function D(t){if(!t.zc)throw Error("bad state");return t.cb?function(t){(function(t,e,r,o){var a,f,l,p,d,y,b,g,v,m,w,E,_,S,x;if(e[0]=Wt,r[0]=Wt,o[0]=1,t.oc&&(t.b.cc=t.oc,function(t){t.f=0,t.o=0,t.h=0,t.T=0,k(t),t.k=0,B(t,-1)}(t.b),t.W=1,t.oc=null),!t.pc){if(t.pc=1,S=t.g,u(t.g,Wt)){if(!R(t.b))return void Q(t,s(t.g));nt(t),_=s(t.g)&t.y,Bt(t.d,t.C,(t.l<<4)+_,0),t.l=F(t.l),l=j(t.b,-t.s),dt(ht(t.A,s(t.g),t.J),t.d,l),t.J=l,--t.s,t.g=n(t.g,Vt)}if(!R(t.b))return void Q(t,s(t.g));for(;;){if(b=X(t,s(t.g)),m=t.mb,_=s(t.g)&t.y,f=(t.l<<4)+_,1==b&&-1==m)Bt(t.d,t.C,f,0),l=j(t.b,-t.s),x=ht(t.A,s(t.g),t.J),7>t.l?dt(x,t.d,l):(v=j(t.b,-t.v[0]-1-t.s),yt(x,t.d,v,l)),t.J=l,t.l=F(t.l);else{if(Bt(t.d,t.C,f,1),4>m){if(Bt(t.d,t.bb,t.l,1),m?(Bt(t.d,t.hb,t.l,1),1==m?Bt(t.d,t.Ub,t.l,0):(Bt(t.d,t.Ub,t.l,1),Bt(t.d,t.vc,t.l,m-2))):(Bt(t.d,t.hb,t.l,0),Bt(t.d,t._,f,1==b?0:1)),1==b?t.l=7>t.l?9:11:(ct(t.i,t.d,b-2,_),t.l=7>t.l?8:11),p=t.v[m],0!=m){for(y=m;y>=1;--y)t.v[y]=t.v[y-1];t.v[0]=p}}else{for(Bt(t.d,t.bb,t.l,0),t.l=7>t.l?7:10,ct(t.$,t.d,b-2,_),E=it(m-=4),g=C(b),_t(t.K[g],t.d,E),E>=4&&(w=m-(a=(2|1&E)<<(d=(E>>1)-1)),14>E?jt(t.Sb,a-E-1,t.d,d,w):(Tt(t.d,w>>4,d-4),xt(t.S,t.d,15&w),++t.Qb)),p=m,y=3;y>=1;--y)t.v[y]=t.v[y-1];t.v[0]=p,++t.Mb}t.J=j(t.b,b-1-t.s)}if(t.s-=b,t.g=n(t.g,c(b)),!t.s){if(t.Mb>=128&&Z(t),t.Qb>=16&&K(t),e[0]=t.g,r[0]=Pt(t.d),!R(t.b))return void Q(t,s(t.g));if(i(h(t.g,S),[4096,0])>=0)return t.pc=0,void(o[0]=0)}}}})(t.cb,t.cb.Xb,t.cb.uc,t.cb.Kc),t.Pb=t.cb.Xb[0],t.cb.Kc[0]&&(function(t){ot(t),t.d.Ab=null}(t.cb),t.zc=0)}(t):function(t){var e=function(t){var e,r,o,a,u,f;if(f=s(t.g)&t.Dc,Rt(t.e,t.Gb,(t.U<<4)+f)){if(Rt(t.e,t.Zb,t.U))o=0,Rt(t.e,t.Cb,t.U)?(Rt(t.e,t.Db,t.U)?(Rt(t.e,t.Eb,t.U)?(r=t.Qc,t.Qc=t.Ic):r=t.Ic,t.Ic=t.Jc):r=t.Jc,t.Jc=t.ib,t.ib=r):Rt(t.e,t.pb,(t.U<<4)+f)||(t.U=7>t.U?9:11,o=1),o||(o=$(t.sb,t.e,f)+2,t.U=7>t.U?8:11);else if(t.Qc=t.Ic,t.Ic=t.Jc,t.Jc=t.ib,o=2+$(t.Rb,t.e,f),t.U=7>t.U?7:10,(u=wt(t.kb[C(o)],t.e))>=
Download .txt
gitextract_mxai2kco/

├── .babelrc
├── .editorconfig
├── .eslintignore
├── .eslintrc
├── .gitignore
├── .npmignore
├── .nycrc
├── .travis.yml
├── LICENSE
├── README.md
├── dist/
│   ├── browser/
│   │   ├── json-url-998.js
│   │   ├── json-url-998.js.LICENSE.txt
│   │   ├── json-url-lzma.js
│   │   ├── json-url-lzstring.js
│   │   ├── json-url-lzw.js
│   │   ├── json-url-msgpack.js
│   │   ├── json-url-safe64.js
│   │   ├── json-url-safe64.js.LICENSE.txt
│   │   ├── json-url-single.js
│   │   ├── json-url-single.js.LICENSE.txt
│   │   ├── json-url.js
│   │   └── json-url.js.LICENSE.txt
│   └── node/
│       ├── browser-index.js
│       ├── codecs/
│       │   ├── index.js
│       │   ├── lzma.js
│       │   ├── lzstring.js
│       │   ├── lzw.js
│       │   └── pack.js
│       ├── index.js
│       ├── loaders.js
│       └── main/
│           ├── browser-index.js
│           ├── codecs/
│           │   ├── index.js
│           │   ├── lzma.js
│           │   ├── lzstring.js
│           │   ├── lzw.js
│           │   └── pack.js
│           ├── index.js
│           └── loaders.js
├── eslint.config.js
├── examples/
│   └── browser/
│       └── test.html
├── karma.conf.js
├── package.json
├── src/
│   └── main/
│       ├── browser-index.js
│       ├── codecs/
│       │   ├── index.js
│       │   ├── lzma.js
│       │   ├── lzstring.js
│       │   ├── lzw.js
│       │   └── pack.js
│       ├── index.js
│       └── loaders.js
├── test/
│   ├── index.js
│   ├── perf.js
│   └── samples.json
├── webpack.config.js
└── webpack.config.single.js
Download .txt
SYMBOL INDEX (757 symbols across 24 files)

FILE: dist/browser/json-url-998.js
  function a (line 2) | function a(t){(t=t||{}).objectMode=!0,t.highWaterMark=16,n.call(this,t),...
  function u (line 2) | function u(t){if(!(this instanceof u))return(t=t||{}).msgpack=this,new u...
  function s (line 2) | function s(t){if(!(this instanceof s))return(t=t||{}).msgpack=this,new s...
  function s (line 2) | function s(t,r){var n={seen:[],stylize:f};return arguments.length>=3&&(n...
  function c (line 2) | function c(t,e){var r=s.styles[e];return r?"["+s.colors[r][0]+"m"+t+"[...
  function f (line 2) | function f(t,e){return t}
  function l (line 2) | function l(t,r,n){if(t.customInspect&&r&&O(r.inspect)&&r.inspect!==e.ins...
  function p (line 2) | function p(t){return"["+Error.prototype.toString.call(t)+"]"}
  function h (line 2) | function h(t,e,r,n,o,i){var a,u,s;if((s=Object.getOwnPropertyDescriptor(...
  function y (line 2) | function y(t){return Array.isArray(t)}
  function d (line 2) | function d(t){return"boolean"==typeof t}
  function g (line 2) | function g(t){return null===t}
  function b (line 2) | function b(t){return"number"==typeof t}
  function v (line 2) | function v(t){return"string"==typeof t}
  function m (line 2) | function m(t){return void 0===t}
  function w (line 2) | function w(t){return S(t)&&"[object RegExp]"===j(t)}
  function S (line 2) | function S(t){return"object"==typeof t&&null!==t}
  function E (line 2) | function E(t){return S(t)&&"[object Date]"===j(t)}
  function _ (line 2) | function _(t){return S(t)&&("[object Error]"===j(t)||t instanceof Error)}
  function O (line 2) | function O(t){return"function"==typeof t}
  function j (line 2) | function j(t){return Object.prototype.toString.call(t)}
  function A (line 2) | function A(t){return t<10?"0"+t.toString(10):t.toString(10)}
  function R (line 2) | function R(t,e){return Object.prototype.hasOwnProperty.call(t,e)}
  function P (line 2) | function P(t,e){if(!t){var r=new Error("Promise was rejected with a fals...
  function e (line 2) | function e(){for(var e,r,n=new Promise(function(t,n){e=t,r=n}),o=[],i=0;...
  function e (line 2) | function e(){for(var e=[],r=0;r<arguments.length;r++)e.push(arguments[r]...
  function n (line 2) | function n(t,e){return function(t){if(Array.isArray(t))return t}(t)||fun...
  function o (line 2) | function o(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Ar...
  function i (line 2) | function i(t){return i="function"==typeof Symbol&&"symbol"==typeof Symbo...
  function p (line 2) | function p(t){return t.call.bind(t)}
  function M (line 2) | function M(t){if(0===t.length||t.length>10)return!0;for(var e=0;e<t.leng...
  function I (line 2) | function I(t){return Object.keys(t).filter(M).concat(f(t).filter(Object....
  function L (line 2) | function L(t,e){if(t===e)return 0;for(var r=t.length,n=e.length,o=0,i=Ma...
  function N (line 2) | function N(t,e,r,n){if(t===e)return 0!==t||(!r||c(t,e));if(r){if("object...
  function U (line 2) | function U(t,e){return e.filter(function(e){return y(t,e)})}
  function B (line 2) | function B(t,e,r,o,a,c){if(5===arguments.length){c=Object.keys(t);var l=...
  function F (line 2) | function F(t,e,r,n){for(var o=u(t),i=0;i<o.length;i++){var a=o[i];if(N(e...
  function D (line 2) | function D(t){switch(i(t)){case"undefined":return null;case"object":retu...
  function C (line 2) | function C(t,e,r){var n=D(r);return null!=n?n:e.has(n)&&!t.has(n)}
  function q (line 2) | function q(t,e,r,n,o){var i=D(r);if(null!=i)return i;var a=e.get(i);retu...
  function W (line 2) | function W(t,e,r,n,o,i){for(var a=u(t),s=0;s<a.length;s++){var c=a[s];if...
  function n (line 2) | function n(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){va...
  function o (line 2) | function o(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[...
  function i (line 2) | function i(t,e,r){return(e=u(e))in t?Object.defineProperty(t,e,{value:r,...
  function a (line 2) | function a(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.en...
  function u (line 2) | function u(t){var e=function(t,e){if("object"!=typeof t||null===t)return...
  function l (line 2) | function l(t,e,r){s.prototype.copy.call(t,e,r)}
  function t (line 2) | function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Ca...
  function i (line 2) | function i(t,e){for(var r in t)e[r]=t[r]}
  function a (line 2) | function a(t,e,r){return o(t,e,r)}
  function i (line 2) | function i(t,e,r){return(e=function(t){var e=function(t,e){if("object"!=...
  function y (line 2) | function y(t,e){return{value:t,done:e}}
  function d (line 2) | function d(t){var e=t[u];if(null!==e){var r=t[h].read();null!==r&&(t[l]=...
  function g (line 2) | function g(t){o.nextTick(d,t)}
  method stream (line 2) | get stream(){return this[h]}
  function a (line 2) | function a(t,e,r){return e>=r+t}
  function u (line 2) | function u(t,e,r,n,o){let i=e;const a=[];let u=0;for(;u++<r;){const e=c(...
  function s (line 2) | function s(t,e,r,n,o){const i=u(t,e,2*r,n,o);if(!i)return null;const[a,s...
  function c (line 2) | function c(t,e,r){if(t.length<=e)return null;const n=t.length-e;let o=e;...
  function f (line 2) | function f(t,e,r,n,o,i){const a=t.slice(e,e+n),u=i.decodingTypes.get(r);...
  function i (line 2) | function i(t){n.isBufferList(t)||(t=n(t));const e=c(t,0,r);if(!e)throw n...
  function i (line 2) | function i(t){var e;switch(this.encoding=function(t){var e=function(t){i...
  function a (line 2) | function a(t){return t<=127?0:t>>5==6?2:t>>4==14?3:t>>3==30?4:t>>6==2?-1...
  function u (line 2) | function u(t){var e=this.lastTotal-this.lastNeed,r=function(t,e){if(128!...
  function s (line 2) | function s(t,e){if((t.length-e)%2==0){var r=t.toString("utf16le",e);if(r...
  function c (line 2) | function c(t){var e=t&&t.length?this.write(t):"";if(this.lastNeed){var r...
  function f (line 2) | function f(t,e){var r=(t.length-e)%3;return 0===r?t.toString("base64",e)...
  function l (line 2) | function l(t){var e=t&&t.length?this.write(t):"";return this.lastNeed?e+...
  function p (line 2) | function p(t){return t.toString(this.encoding)}
  function h (line 2) | function h(t){return t&&t.length?this.write(t):""}
  function o (line 2) | function o(t){if(!(this instanceof o))return new o(t);n.call(this,t)}
  function o (line 2) | function o(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){va...
  function i (line 2) | function i(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[...
  function a (line 2) | function a(t,e,r){return(e=s(e))in t?Object.defineProperty(t,e,{value:r,...
  function u (line 2) | function u(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.en...
  function s (line 2) | function s(t){var e=function(t,e){if("object"!==g(t)||null===t)return t;...
  function c (line 2) | function c(t,e){if(e&&("object"===g(e)||"function"==typeof e))return e;i...
  function f (line 2) | function f(t){if(void 0===t)throw new ReferenceError("this hasn't been i...
  function l (line 2) | function l(t){var e="function"==typeof Map?new Map:void 0;return l=funct...
  function p (line 2) | function p(t,e,r){return p=h()?Reflect.construct.bind():function(t,e,r){...
  function h (line 2) | function h(){if("undefined"==typeof Reflect||!Reflect.construct)return!1...
  function y (line 2) | function y(t,e){return y=Object.setPrototypeOf?Object.setPrototypeOf.bin...
  function d (line 2) | function d(t){return d=Object.setPrototypeOf?Object.getPrototypeOf.bind(...
  function g (line 2) | function g(t){return g="function"==typeof Symbol&&"symbol"==typeof Symbo...
  function m (line 2) | function m(t,e,r){return(void 0===r||r>t.length)&&(r=t.length),t.substri...
  function j (line 2) | function j(t){var e=Object.keys(t),r=Object.create(Object.getPrototypeOf...
  function A (line 2) | function A(t){return b(t,{compact:!1,customInspect:!1,depth:1e3,maxArray...
  function x (line 2) | function x(t,e,r){var o="",i="",a=0,u="",s=!1,c=A(t),f=c.split("\n"),l=A...
  function m (line 2) | function m(t){var e;if(function(t,e){if(!(t instanceof e))throw new Type...
  function o (line 2) | function o(t){return o="function"==typeof Symbol&&"symbol"==typeof Symbo...
  function i (line 2) | function i(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.en...
  function a (line 2) | function a(t,e,r){return e&&i(t.prototype,e),r&&i(t,r),Object.defineProp...
  function u (line 2) | function u(t){var e=function(t,e){if("object"!==o(t)||null===t)return t;...
  function O (line 2) | function O(){var t=r(2299);s=t.isDeepEqual,c=t.isDeepStrictEqual}
  function R (line 2) | function R(t){if(t.message instanceof Error)throw t.message;throw new g(t)}
  function k (line 2) | function k(t,e,r,n){if(!r){var o=!1;if(0===e)o=!0,n="No value argument p...
  function P (line 2) | function P(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=...
  function M (line 2) | function M(t,e,r,n){if("function"!=typeof e){if(w(e))return _(e,t);if(2=...
  function I (line 2) | function I(t){if("function"!=typeof t)throw new p("fn","Function",t);try...
  function L (line 2) | function L(t){return m(t)||null!==t&&"object"===o(t)&&"function"==typeof...
  function N (line 2) | function N(t){return Promise.resolve().then(function(){var e;if("functio...
  function U (line 2) | function U(t,e,r,n){if("string"==typeof r){if(4===arguments.length)throw...
  function B (line 2) | function B(t,e,r,n){if(e!==x){if("string"==typeof r&&(n=r,r=void 0),!r||...
  function F (line 2) | function F(t,e,r,n,i){if(!w(e))throw new p("regexp","RegExp",e);var a="m...
  function D (line 2) | function D(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=...
  function o (line 2) | function o(t){Error.call(this),Error.captureStackTrace&&Error.captureSta...
  function c (line 2) | function c(t,e){var r=this._transformState;r.transforming=!1;var n=r.wri...
  function f (line 2) | function f(t){if(!(this instanceof f))return new f(t);s.call(this,t),thi...
  function l (line 2) | function l(){var t=this;"function"!=typeof this._flush||this._readableSt...
  function p (line 2) | function p(t,e,r){if(e)return t.emit("error",e);if(null!=r&&t.push(r),t....
  function n (line 2) | function n(t){try{if(!r.g.localStorage)return!1}catch(t){return!1}var e=...
  function a (line 2) | function a(t){if(!(this instanceof a))return new a(t);if("function"==typ...
  function f (line 2) | function f(t){if(!(this instanceof f))return new f(t);i.call(this,t),a.c...
  function l (line 2) | function l(){this._writableState.ended||n.nextTick(p,this)}
  function p (line 2) | function p(t){t.end()}
  function O (line 2) | function O(t,e,o){n=n||r(5382),t=t||{},"boolean"!=typeof o&&(o=e instanc...
  function j (line 2) | function j(t){if(n=n||r(5382),!(this instanceof j))return new j(t);var e...
  function A (line 2) | function A(t,e,r,n,o){c("readableAddChunk",e);var i,a=t._readableState;i...
  function x (line 2) | function x(t,e,r,n){e.flowing&&0===e.length&&!e.sync?(e.awaitDrain=0,t.e...
  function k (line 2) | function k(t,e){return t<=0||0===e.length&&e.ended?0:e.objectMode?1:t!=t...
  function P (line 2) | function P(t){var e=t._readableState;c("emitReadable",e.needReadable,e.e...
  function T (line 2) | function T(t){var e=t._readableState;c("emitReadable_",e.destroyed,e.len...
  function M (line 2) | function M(t,e){e.readingMore||(e.readingMore=!0,o.nextTick(I,t,e))}
  function I (line 2) | function I(t,e){for(;!e.reading&&!e.ended&&(e.length<e.highWaterMark||e....
  function L (line 2) | function L(t){var e=t._readableState;e.readableListening=t.listenerCount...
  function N (line 2) | function N(t){c("readable nexttick read 0"),t.read(0)}
  function U (line 2) | function U(t,e){c("resume",e.reading),e.reading||t.read(0),e.resumeSched...
  function B (line 2) | function B(t){var e=t._readableState;for(c("flow",e.flowing);e.flowing&&...
  function F (line 2) | function F(t,e){return 0===e.length?null:(e.objectMode?r=e.buffer.shift(...
  function D (line 2) | function D(t){var e=t._readableState;c("endReadable",e.endEmitted),e.end...
  function C (line 2) | function C(t,e){if(c("endReadableNT",t.endEmitted,t.length),!t.endEmitte...
  function q (line 2) | function q(t,e){for(var r=0,n=t.length;r<n;r++)if(t[r]===e)return r;retu...
  function u (line 2) | function u(e,o){c("onunpipe"),e===r&&o&&!1===o.hasUnpiped&&(o.hasUnpiped...
  function s (line 2) | function s(){c("onend"),t.end()}
  function p (line 2) | function p(e){c("ondata");var o=t.write(e);c("dest.write",o),!1===o&&((1...
  function h (line 2) | function h(e){c("onerror",e),g(),t.removeListener("error",h),0===i(t,"er...
  function y (line 2) | function y(){t.removeListener("finish",d),g()}
  function d (line 2) | function d(){c("onfinish"),t.removeListener("close",y),g()}
  function g (line 2) | function g(){c("unpipe"),r.unpipe(t)}
  function o (line 2) | function o(){throw new Error("setTimeout has not been defined")}
  function i (line 2) | function i(){throw new Error("clearTimeout has not been defined")}
  function a (line 2) | function a(t){if(e===setTimeout)return setTimeout(t,0);if((e===o||!e)&&s...
  function l (line 2) | function l(){c&&u&&(c=!1,u.length?s=u.concat(s):f=-1,s.length&&p())}
  function p (line 2) | function p(){if(!c){var t=a(l);c=!0;for(var e=s.length;e;){for(u=s,s=[];...
  function h (line 2) | function h(t,e){this.fun=t,this.array=e}
  function y (line 2) | function y(){}
  function o (line 2) | function o(t,e){a(t,e),i(t)}
  function i (line 2) | function i(t){t._writableState&&!t._writableState.emitClose||t._readable...
  function a (line 2) | function a(t,e){t.emit("error",e)}
  function r (line 2) | function r(t,r,n){n||(n=Error);var o=function(t){var e,n;function o(e,n,...
  function n (line 2) | function n(t,e){if(Array.isArray(t)){var r=t.length;return t=t.map(funct...
  function o (line 2) | function o(){}
  function a (line 2) | function a(t,e,r){const n=r%4294967296,o=Math.floor(r/4294967296);t.writ...
  function r (line 2) | function r(u){if(void 0===u)throw new Error("undefined is not encodable ...
  function s (line 2) | function s(t,e){let r;return!e&&u&&Object.is(u(t),t)?(r=n.allocUnsafe(5)...
  function c (line 2) | function c(t){return 1===t?n.from([212]):2===t?n.from([213]):4===t?n.fro...
  function f (line 2) | function f(t,e,r){if(t<16)return n.from([e|t]);const o=t<65536?2:4,i=n.a...
  function l (line 2) | function l(t){let e;return t<=255?(e=n.allocUnsafe(2),e[0]=196,e[1]=t):t...
  function p (line 2) | function p(t){let e;return t<=31?(e=n.allocUnsafe(1),e[0]=160|t):t<=6553...
  function i (line 2) | function i(t){var e=this;this.next=null,this.entry=null,this.finish=func...
  function _ (line 2) | function _(){}
  function O (line 2) | function O(t,e,a){n=n||r(5382),t=t||{},"boolean"!=typeof a&&(a=e instanc...
  function j (line 2) | function j(t){var e=this instanceof(n=n||r(5382));if(!e&&!f.call(j,this)...
  function A (line 2) | function A(t,e,r,n,o,i,a){e.writelen=n,e.writecb=a,e.writing=!0,e.sync=!...
  function x (line 2) | function x(t,e,r,n){r||function(t,e){0===e.length&&e.needDrain&&(e.needD...
  function R (line 2) | function R(t,e){e.bufferProcessing=!0;var r=e.bufferedRequest;if(t._writ...
  function k (line 2) | function k(t){return t.ending&&0===t.length&&null===t.bufferedRequest&&!...
  function P (line 2) | function P(t,e){t._final(function(r){e.pendingcb--,r&&E(t,r),e.prefinish...
  function T (line 2) | function T(t,e){var r=k(e);if(r&&(function(t,e){e.prefinished||e.finalCa...
  function i (line 2) | function i(){i.init.call(this)}
  function o (line 2) | function o(r){t.removeListener(e,i),n(r)}
  function i (line 2) | function i(){"function"==typeof t.removeListener&&t.removeListener("erro...
  function u (line 2) | function u(t){if("function"!=typeof t)throw new TypeError('The "listener...
  function s (line 2) | function s(t){return void 0===t._maxListeners?i.defaultMaxListeners:t._m...
  function c (line 2) | function c(t,e,r,n){var o,i,a,c;if(u(r),void 0===(i=t._events)?(i=t._eve...
  function f (line 2) | function f(){if(!this.fired)return this.target.removeListener(this.type,...
  function l (line 2) | function l(t,e,r){var n={fired:!1,wrapFn:void 0,target:t,type:e,listener...
  function p (line 2) | function p(t,e,r){var n=t._events;if(void 0===n)return[];var o=n[e];retu...
  function h (line 2) | function h(t){var e=this._events;if(void 0!==e){var r=e[t];if("function"...
  function y (line 2) | function y(t,e){for(var r=new Array(e),n=0;n<e;++n)r[n]=t[n];return r}
  function d (line 2) | function d(t,e,r,n){if("function"==typeof t.on)n.once?t.once(e,r):t.on(e...
  function u (line 2) | function u(t){if(t)throw t}
  function s (line 2) | function s(t){t()}
  function c (line 2) | function c(t,e){return t.pipe(e)}
  function i (line 2) | function i(t){if(!(this instanceof i))return new i(t);i._init.call(this,t)}
  function u (line 2) | function u(t){return t.call.bind(t)}
  function g (line 2) | function g(t,e){if("object"!=typeof t)return!1;try{return e(t),!0}catch(...
  function b (line 2) | function b(t){return"[object Map]"===f(t)}
  function v (line 2) | function v(t){return"[object Set]"===f(t)}
  function m (line 2) | function m(t){return"[object WeakMap]"===f(t)}
  function w (line 2) | function w(t){return"[object WeakSet]"===f(t)}
  function S (line 2) | function S(t){return"[object ArrayBuffer]"===f(t)}
  function E (line 2) | function E(t){return"undefined"!=typeof ArrayBuffer&&(S.working?S(t):t i...
  function _ (line 2) | function _(t){return"[object DataView]"===f(t)}
  function O (line 2) | function O(t){return"undefined"!=typeof DataView&&(_.working?_(t):t inst...
  function A (line 2) | function A(t){return"[object SharedArrayBuffer]"===f(t)}
  function x (line 2) | function x(t){return void 0!==j&&(void 0===A.working&&(A.working=A(new j...
  function R (line 2) | function R(t){return g(t,l)}
  function k (line 2) | function k(t){return g(t,p)}
  function P (line 2) | function P(t){return g(t,h)}
  function T (line 2) | function T(t){return s&&g(t,y)}
  function M (line 2) | function M(t){return c&&g(t,d)}
  function n (line 2) | function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbo...
  function o (line 2) | function o(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.en...
  function i (line 2) | function i(t){var e=function(t,e){if("object"!==n(t)||null===t)return t;...
  function a (line 2) | function a(t,e){return a=Object.setPrototypeOf?Object.setPrototypeOf.bin...
  function u (line 2) | function u(t){var e=function(){if("undefined"==typeof Reflect||!Reflect....
  function s (line 2) | function s(t){return s=Object.setPrototypeOf?Object.getPrototypeOf.bind(...
  function p (line 2) | function p(t,e,r){r||(r=Error);var n=function(r){!function(t,e){if("func...
  function h (line 2) | function h(t,e){if(Array.isArray(t)){var r=t.length;return t=t.map(funct...

FILE: dist/browser/json-url-lzma.js
  function r (line 1) | function r(n,r){postMessage({action:Kn,cbn:r,result:n})}
  function c (line 1) | function c(n){var r=[];return r[n-1]=void 0,r}
  function t (line 1) | function t(n,r){return b(n[0]+r[0],n[1]+r[1])}
  function o (line 1) | function o(n,r){return function(n,r){var c,t;return c=n*Vn,t=r,0>r&&(t+=...
  function f (line 1) | function f(n,r){var c,t;return n[0]==r[0]&&n[1]==r[1]?0:(c=0>n[1],t=0>r[...
  function b (line 1) | function b(n,r){var c,t;for(n%=0x10000000000000000,r=(r%=0x1000000000000...
  function i (line 1) | function i(n,r){return n[0]==r[0]&&n[1]==r[1]}
  function u (line 1) | function u(n){return n>=0?[n,0]:[n+Vn,-Vn]}
  function e (line 1) | function e(n){return n[0]>=2147483648?~~Math.max(Math.min(n[0]-Vn,214748...
  function a (line 1) | function a(n){return 30>=n?1<<n:a(30)*a(n-30)}
  function v (line 1) | function v(n,r){var c,t,o,f;if(r&=63,i(n,Rn))return r?Sn:n;if(0>n[1])thr...
  function l (line 1) | function l(n,r){var c;return c=a(r&=63),b(Math.floor(n[0]/c),n[1]/c)}
  function d (line 1) | function d(n,r){return b(n[0]-r[0],n[1]-r[1])}
  function h (line 1) | function h(n,r){return n.Mc=r,n.Lc=0,n.Yb=r.length,n}
  function s (line 1) | function s(n){return n.Lc>=n.Yb?-1:255&n.Mc[n.Lc++]}
  function m (line 1) | function m(n,r,c,t){return n.Lc>=n.Yb?-1:(t=Math.min(t,n.Yb-n.Lc),z(n.Mc...
  function g (line 1) | function g(n){return n.Mc=c(32),n.Yb=0,n}
  function x (line 1) | function x(n){var r=n.Mc;return r.length=n.Yb,r}
  function p (line 1) | function p(n,r){n.Mc[n.Yb++]=r<<24>>24}
  function w (line 1) | function w(n,r,c,t){z(r,c,n.Mc,n.Yb,t),n.Yb+=t}
  function z (line 1) | function z(n,r,c,t,o){for(var f=0;o>f;++f)c[t+f]=n[r+f]}
  function M (line 1) | function M(r,c,t,o,b){var i,u;if(f(o,Yn)<0)throw Error("invalid length "...
  function E (line 1) | function E(n,r,c){return n.Nb=g({}),M(n,h({},r),n.Nb,u(r.length),c),n}
  function L (line 1) | function L(n,r,c){var t,o,f,b,i="",e=[];for(o=0;5>o;++o){if(-1==(f=s(r))...
  function j (line 1) | function j(n,r){return n.Nb=g({}),L(n,h({},r),n.Nb),n}
  function y (line 1) | function y(n,r){return n.c[n.f+n.o+r]}
  function k (line 1) | function k(n,r,c,t){var o,f;for(n.T&&n.o+r+t>n.h&&(t=n.h-(n.o+r)),++c,f=...
  function C (line 1) | function C(n){return n.h-n.o}
  function A (line 1) | function A(n){var r,c;if(!n.T)for(;;){if(!(c=-n.f+n.Kb-n.h))return;if(-1...
  function B (line 1) | function B(n,r){n.f+=r,n.zb-=r,n.o-=r,n.h-=r}
  function U (line 1) | function U(n,r,t,o,f){var b,i;1073741567>r&&(n.Fc=16+(o>>1),function(n,r...
  function G (line 1) | function G(n){var r;++n.k>=n.p&&(n.k=0),function(n){++n.o,n.o>n.zb&&(n.f...
  function I (line 1) | function I(n,r,c){var t,o;for(t=0;r>t;++t)c>=(o=n[t]||0)?o=0:o-=c,n[t]=o}
  function J (line 1) | function J(n,r){(null==n.Lb||n.M!=r)&&(n.Lb=c(r)),n.M=r,n.o=0,n.h=0}
  function q (line 1) | function q(n){var r=n.o-n.h;r&&(w(n.cc,n.Lb,n.h,r),n.o>=n.M&&(n.o=0),n.h...
  function Q (line 1) | function Q(n,r){var c=n.o-r-1;return 0>c&&(c+=n.M),n.Lb[c]}
  function D (line 1) | function D(n){q(n),n.cc=null}
  function N (line 1) | function N(n){return 4>(n-=2)?n:3}
  function Z (line 1) | function Z(n){return 4>n?0:10>n?n-3:n-6}
  function F (line 1) | function F(n){if(!n.zc)throw Error("bad state");return n.cb?function(n){...
  function K (line 1) | function K(n){n.B={},n.e={},n.Gb=c(192),n.Zb=c(12),n.Cb=c(12),n.Db=c(12)...
  function T (line 1) | function T(n,r){for(;r>n.O;++n.O)n.ec[n.O]=wn({},3),n.hc[n.O]=wn({},3)}
  function V (line 1) | function V(n,r,c){return An(r,n.wc,0)?8+(An(r,n.wc,1)?8+zn(n.tc,r):zn(n....
  function Y (line 1) | function Y(n){return n.wc=c(2),n.ec=c(16),n.hc=c(16),n.tc=wn({},8),n.O=0,n}
  function R (line 1) | function R(n){Bn(n.wc);for(var r=0;n.O>r;++r)Bn(n.ec[r].G),Bn(n.hc[r].G)...
  function S (line 1) | function S(n,r,t){var o,f;if(null==n.V||n.u!=t||n.I!=r)for(n.I=r,n.qc=(1...
  function O (line 1) | function O(n){return n.Ib=c(768),n}
  function H (line 1) | function H(n,r){var c,t,o,f;n.jb=r,o=n.a[r].r,t=n.a[r].j;do{n.a[r].t&&(p...
  function $ (line 1) | function $(n){var r;for(n.v=c(4),n.a=[],n.d={},n.C=c(192),n.bb=c(12),n.h...
  function P (line 1) | function P(n){for(var r=0;16>r;++r)n.nc[r]=yn(n.S,r);n.Qb=0}
  function W (line 1) | function W(n){var r,c,t,o,f,b,i,u;for(o=4;128>o;++o)r=(2|1&(b=fn(o)))<<(...
  function _ (line 1) | function _(n,r){on(n),function(n,r){if(n.Gc){Un(n.d,n.C,(n.l<<4)+r,1),Un...
  function X (line 1) | function X(n,r){var c,t,o,f,b,i,u,e,a,v,l,d,h,s,m,g,x,p,w,z,M,E,L,j,A,B,...
  function nn (line 1) | function nn(n,r,c,t){var o=N(c);return(128>r?n.lb[128*o+r]:n.P[(o<<6)+fu...
  function rn (line 1) | function rn(n,r,c,t){var o;return r?(o=Pn[2048-n.hb[c]>>>2],1==r?o+=Pn[n...
  function cn (line 1) | function cn(n,r){r>0&&(function(n,r){var c,t,o,f,b,i,u,e,a,v,l,d,h,s,m,g...
  function tn (line 1) | function tn(n){var r=0;return n.D=function(n,r){var c,t,o,f,b,i,u,e,a,v,...
  function on (line 1) | function on(n){n.b&&n.W&&(n.b.cc=null,n.W=0)}
  function fn (line 1) | function fn(n){return 2048>n?$n[n]:2097152>n?$n[n>>10]+20:$n[n>>20]+40}
  function bn (line 1) | function bn(n,r){Bn(n.db);for(var c=0;r>c;++c)Bn(n.Vb[c].G),Bn(n.Wb[c].G...
  function un (line 1) | function un(n,r,c,t,o){var f,b,i,u,e;for(f=Pn[n.db[0]>>>2],i=(b=Pn[2048-...
  function en (line 1) | function en(n,r,c,t){(function(n,r,c,t){8>c?(Un(r,n.db,0,0),En(n.Vb[t],r...
  function an (line 1) | function an(n){return function(n){n.db=c(2),n.Vb=c(16),n.Wb=c(16),n.ic=M...
  function vn (line 1) | function vn(n,r,c){return n.Cc[272*c+r]}
  function ln (line 1) | function ln(n,r){for(var c=0;r>c;++c)un(n,c,n.rb,n.Cc,272*c),n.sc[c]=n.rb}
  function dn (line 1) | function dn(n,r,t){var o,f;if(null==n.V||n.u!=t||n.I!=r)for(n.I=r,n.qc=(...
  function hn (line 1) | function hn(n,r,c){return n.V[((r&n.qc)<<n.u)+((255&c)>>>8-n.u)]}
  function sn (line 1) | function sn(n,r,c){var t,o,f=1;for(o=7;o>=0;--o)t=c>>o&1,Un(r,n.tb,f,t),...
  function mn (line 1) | function mn(n,r,c,t){var o,f,b,i,u=1,e=1;for(f=7;f>=0;--f)o=t>>f&1,i=e,u...
  function gn (line 1) | function gn(n){return n.tb=c(768),n}
  function xn (line 1) | function xn(n,r,c,t){var o,f,b=1,i=7,u=0;if(r)for(;i>=0;--i)if(f=c>>i&1,...
  function pn (line 1) | function pn(n){n.j=-1,n.t=0}
  function wn (line 1) | function wn(n,r){return n.F=r,n.G=c(1<<r),n}
  function zn (line 1) | function zn(n,r){var c,t=1;for(c=n.F;0!=c;--c)t=(t<<1)+An(r,n.G,t);retur...
  function Mn (line 1) | function Mn(n,r){return n.F=r,n.G=c(1<<r),n}
  function En (line 1) | function En(n,r,c){var t,o,f=1;for(o=n.F;0!=o;)t=c>>>--o&1,Un(r,n.G,f,t)...
  function Ln (line 1) | function Ln(n,r){var c,t,o=1,f=0;for(t=n.F;0!=t;)c=r>>>--t&1,f+=qn(n.G[o...
  function jn (line 1) | function jn(n,r,c){var t,o,f=1;for(o=0;n.F>o;++o)t=1&c,Un(r,n.G,f,t),f=f...
  function yn (line 1) | function yn(n,r){var c,t,o=1,f=0;for(t=n.F;0!=t;--t)c=1&r,r>>>=1,f+=qn(n...
  function kn (line 1) | function kn(n,r,c,t,o){var f,b,i=1;for(b=0;t>b;++b)Un(c,n,r+i,f=1&o),i=i...
  function Cn (line 1) | function Cn(n,r,c,t){var o,f,b=1,i=0;for(f=c;0!=f;--f)o=1&t,t>>>=1,i+=Pn...
  function An (line 1) | function An(n,r,c){var t,o=r[c];return(-2147483648^(t=(n.E>>>11)*o))>(-2...
  function Bn (line 1) | function Bn(n){for(var r=n.length-1;r>=0;--r)n[r]=1024}
  function Un (line 1) | function Un(n,r,c,f){var b,i=r[c];b=(n.E>>>11)*i,f?(n.xc=t(n.xc,o(u(b),[...
  function Gn (line 1) | function Gn(n,r,c){for(var o=c-1;o>=0;--o)n.E>>>=1,1==(r>>>o&1)&&(n.xc=t...
  function In (line 1) | function In(n){return t(t(u(n.Jb),n.mc),[4,0])}
  function Jn (line 1) | function Jn(n){var r,c=e(function(n,r){var c;return c=l(n,r&=63),0>n[1]&...
  function qn (line 1) | function qn(n,r){return Pn[(2047&(n-r^-r))>>>2]}
  function Qn (line 1) | function Qn(n){for(var r,c,t,o=0,f=0,b=n.length,i=[],u=[];b>o;++o,++f){i...
  function Dn (line 1) | function Dn(n){var r,c,t,o=[],f=0,b=n.length;if("object"==typeof n)retur...
  function Nn (line 1) | function Nn(n){return n[1]+n[0]}

FILE: dist/browser/json-url-lzstring.js
  function t (line 1) | function t(o,r){if(!e[o]){e[o]={};for(var n=0;n<o.length;n++)e[o][o.char...

FILE: dist/browser/json-url-single.js
  function a (line 2) | function a(t){(t=t||{}).objectMode=!0,t.highWaterMark=16,n.call(this,t),...
  function u (line 2) | function u(t){if(!(this instanceof u))return(t=t||{}).msgpack=this,new u...
  function c (line 2) | function c(t){if(!(this instanceof c))return(t=t||{}).msgpack=this,new c...
  function c (line 2) | function c(t,r){var n={seen:[],stylize:f};return arguments.length>=3&&(n...
  function s (line 2) | function s(t,e){var r=c.styles[e];return r?"["+c.colors[r][0]+"m"+t+"[...
  function f (line 2) | function f(t,e){return t}
  function l (line 2) | function l(t,r,n){if(t.customInspect&&r&&x(r.inspect)&&r.inspect!==e.ins...
  function p (line 2) | function p(t){return"["+Error.prototype.toString.call(t)+"]"}
  function h (line 2) | function h(t,e,r,n,o,i){var a,u,c;if((c=Object.getOwnPropertyDescriptor(...
  function d (line 2) | function d(t){return Array.isArray(t)}
  function y (line 2) | function y(t){return"boolean"==typeof t}
  function b (line 2) | function b(t){return null===t}
  function g (line 2) | function g(t){return"number"==typeof t}
  function v (line 2) | function v(t){return"string"==typeof t}
  function m (line 2) | function m(t){return void 0===t}
  function w (line 2) | function w(t){return E(t)&&"[object RegExp]"===O(t)}
  function E (line 2) | function E(t){return"object"==typeof t&&null!==t}
  function _ (line 2) | function _(t){return E(t)&&"[object Date]"===O(t)}
  function S (line 2) | function S(t){return E(t)&&("[object Error]"===O(t)||t instanceof Error)}
  function x (line 2) | function x(t){return"function"==typeof t}
  function O (line 2) | function O(t){return Object.prototype.toString.call(t)}
  function j (line 2) | function j(t){return t<10?"0"+t.toString(10):t.toString(10)}
  function R (line 2) | function R(t,e){return Object.prototype.hasOwnProperty.call(t,e)}
  function B (line 2) | function B(t,e){if(!t){var r=new Error("Promise was rejected with a fals...
  function e (line 2) | function e(){for(var e,r,n=new Promise(function(t,n){e=t,r=n}),o=[],i=0;...
  function e (line 2) | function e(){for(var e=[],r=0;r<arguments.length;r++)e.push(arguments[r]...
  function e (line 2) | function e(t,e){postMessage({action:Dt,cbn:e,result:t})}
  function r (line 2) | function r(t){var e=[];return e[t-1]=void 0,e}
  function n (line 2) | function n(t,e){return a(t[0]+e[0],t[1]+e[1])}
  function o (line 2) | function o(t,e){return function(t,e){var r,n;return r=t*zt,n=e,0>e&&(n+=...
  function i (line 2) | function i(t,e){var r,n;return t[0]==e[0]&&t[1]==e[1]?0:(r=0>t[1],n=0>e[...
  function a (line 2) | function a(t,e){var r,n;for(t%=0x10000000000000000,e=(e%=0x1000000000000...
  function u (line 2) | function u(t,e){return t[0]==e[0]&&t[1]==e[1]}
  function c (line 2) | function c(t){return t>=0?[t,0]:[t+zt,-zt]}
  function s (line 2) | function s(t){return t[0]>=2147483648?~~Math.max(Math.min(t[0]-zt,214748...
  function f (line 2) | function f(t){return 30>=t?1<<t:f(30)*f(t-30)}
  function l (line 2) | function l(t,e){var r,n,o,i;if(e&=63,u(t,Gt))return e?Wt:t;if(0>t[1])thr...
  function p (line 2) | function p(t,e){var r;return r=f(e&=63),a(Math.floor(t[0]/r),t[1]/r)}
  function h (line 2) | function h(t,e){return a(t[0]-e[0],t[1]-e[1])}
  function d (line 2) | function d(t,e){return t.Mc=e,t.Lc=0,t.Yb=e.length,t}
  function y (line 2) | function y(t){return t.Lc>=t.Yb?-1:255&t.Mc[t.Lc++]}
  function b (line 2) | function b(t,e,r,n){return t.Lc>=t.Yb?-1:(n=Math.min(n,t.Yb-t.Lc),E(t.Mc...
  function g (line 2) | function g(t){return t.Mc=r(32),t.Yb=0,t}
  function v (line 2) | function v(t){var e=t.Mc;return e.length=t.Yb,e}
  function m (line 2) | function m(t,e){t.Mc[t.Yb++]=e<<24>>24}
  function w (line 2) | function w(t,e,r,n){E(e,r,t.Mc,t.Yb,n),t.Yb+=n}
  function E (line 2) | function E(t,e,r,n,o){for(var i=0;o>i;++i)r[n+i]=t[e+i]}
  function _ (line 2) | function _(e,r,n,o,a){var u,c;if(i(o,$t)<0)throw Error("invalid length "...
  function S (line 2) | function S(t,e,r){return t.Nb=g({}),_(t,d({},e),t.Nb,c(e.length),r),t}
  function x (line 2) | function x(t,e,r){var n,o,i,a,u="",s=[];for(o=0;5>o;++o){if(-1==(i=y(e))...
  function O (line 2) | function O(t,e){return t.Nb=g({}),x(t,d({},e),t.Nb),t}
  function j (line 2) | function j(t,e){return t.c[t.f+t.o+e]}
  function A (line 2) | function A(t,e,r,n){var o,i;for(t.T&&t.o+e+n>t.h&&(n=t.h-(t.o+e)),++r,i=...
  function R (line 2) | function R(t){return t.h-t.o}
  function k (line 2) | function k(t){var e,r;if(!t.T)for(;;){if(!(r=-t.f+t.Kb-t.h))return;if(-1...
  function B (line 2) | function B(t,e){t.f+=e,t.zb-=e,t.o-=e,t.h-=e}
  function T (line 2) | function T(t,e,n,o,i){var a,u;1073741567>e&&(t.Fc=16+(o>>1),function(t,e...
  function P (line 2) | function P(t){var e;++t.k>=t.p&&(t.k=0),function(t){++t.o,t.o>t.zb&&(t.f...
  function I (line 2) | function I(t,e,r){var n,o;for(n=0;e>n;++n)r>=(o=t[n]||0)?o=0:o-=r,t[n]=o}
  function M (line 2) | function M(t,e){(null==t.Lb||t.M!=e)&&(t.Lb=r(e)),t.M=e,t.o=0,t.h=0}
  function U (line 2) | function U(t){var e=t.o-t.h;e&&(w(t.cc,t.Lb,t.h,e),t.o>=t.M&&(t.o=0),t.h...
  function L (line 2) | function L(t,e){var r=t.o-e-1;return 0>r&&(r+=t.M),t.Lb[r]}
  function N (line 2) | function N(t){U(t),t.cc=null}
  function C (line 2) | function C(t){return 4>(t-=2)?t:3}
  function F (line 2) | function F(t){return 4>t?0:10>t?t-3:t-6}
  function D (line 2) | function D(t){if(!t.zc)throw Error("bad state");return t.cb?function(t){...
  function q (line 2) | function q(t){t.B={},t.e={},t.Gb=r(192),t.Zb=r(12),t.Cb=r(12),t.Db=r(12)...
  function z (line 2) | function z(t,e){for(;e>t.O;++t.O)t.ec[t.O]=mt({},3),t.hc[t.O]=mt({},3)}
  function $ (line 2) | function $(t,e,r){return Rt(e,t.wc,0)?8+(Rt(e,t.wc,1)?8+wt(t.tc,e):wt(t....
  function G (line 2) | function G(t){return t.wc=r(2),t.ec=r(16),t.hc=r(16),t.tc=mt({},8),t.O=0,t}
  function W (line 2) | function W(t){kt(t.wc);for(var e=0;t.O>e;++e)kt(t.ec[e].G),kt(t.hc[e].G)...
  function V (line 2) | function V(t,e,n){var o,i;if(null==t.V||t.u!=n||t.I!=e)for(t.I=e,t.qc=(1...
  function H (line 2) | function H(t){return t.Ib=r(768),t}
  function Y (line 2) | function Y(t,e){var r,n,o,i;t.jb=e,o=t.a[e].r,n=t.a[e].j;do{t.a[e].t&&(v...
  function J (line 2) | function J(t){var e;for(t.v=r(4),t.a=[],t.d={},t.C=r(192),t.bb=r(12),t.h...
  function K (line 2) | function K(t){for(var e=0;16>e;++e)t.nc[e]=Ot(t.S,e);t.Qb=0}
  function Z (line 2) | function Z(t){var e,r,n,o,i,a,u,c;for(o=4;128>o;++o)e=(2|1&(a=it(o)))<<(...
  function Q (line 2) | function Q(t,e){ot(t),function(t,e){if(t.Gc){Bt(t.d,t.C,(t.l<<4)+e,1),Bt...
  function X (line 2) | function X(t,e){var r,n,o,i,a,u,c,s,f,l,p,h,d,y,b,g,v,m,w,E,_,S,x,O,k,B,...
  function tt (line 2) | function tt(t,e,r,n){var o=C(r);return(128>e?t.lb[128*o+e]:t.P[(o<<6)+fu...
  function et (line 2) | function et(t,e,r,n){var o;return e?(o=Jt[2048-t.hb[r]>>>2],1==e?o+=Jt[t...
  function rt (line 2) | function rt(t,e){e>0&&(function(t,e){var r,n,o,i,a,u,c,s,f,l,p,h,d,y,b,g...
  function nt (line 2) | function nt(t){var e=0;return t.D=function(t,e){var r,n,o,i,a,u,c,s,f,l,...
  function ot (line 2) | function ot(t){t.b&&t.W&&(t.b.cc=null,t.W=0)}
  function it (line 2) | function it(t){return 2048>t?Yt[t]:2097152>t?Yt[t>>10]+20:Yt[t>>20]+40}
  function at (line 2) | function at(t,e){kt(t.db);for(var r=0;e>r;++r)kt(t.Vb[r].G),kt(t.Wb[r].G...
  function ut (line 2) | function ut(t,e,r,n,o){var i,a,u,c,s;for(i=Jt[t.db[0]>>>2],u=(a=Jt[2048-...
  function ct (line 2) | function ct(t,e,r,n){(function(t,e,r,n){8>r?(Bt(e,t.db,0,0),_t(t.Vb[n],e...
  function st (line 2) | function st(t){return function(t){t.db=r(2),t.Vb=r(16),t.Wb=r(16),t.ic=E...
  function ft (line 2) | function ft(t,e,r){return t.Cc[272*r+e]}
  function lt (line 2) | function lt(t,e){for(var r=0;e>r;++r)ut(t,r,t.rb,t.Cc,272*r),t.sc[r]=t.rb}
  function pt (line 2) | function pt(t,e,n){var o,i;if(null==t.V||t.u!=n||t.I!=e)for(t.I=e,t.qc=(...
  function ht (line 2) | function ht(t,e,r){return t.V[((e&t.qc)<<t.u)+((255&r)>>>8-t.u)]}
  function dt (line 2) | function dt(t,e,r){var n,o,i=1;for(o=7;o>=0;--o)n=r>>o&1,Bt(e,t.tb,i,n),...
  function yt (line 2) | function yt(t,e,r,n){var o,i,a,u,c=1,s=1;for(i=7;i>=0;--i)o=n>>i&1,u=s,c...
  function bt (line 2) | function bt(t){return t.tb=r(768),t}
  function gt (line 2) | function gt(t,e,r,n){var o,i,a=1,u=7,c=0;if(e)for(;u>=0;--u)if(i=r>>u&1,...
  function vt (line 2) | function vt(t){t.j=-1,t.t=0}
  function mt (line 2) | function mt(t,e){return t.F=e,t.G=r(1<<e),t}
  function wt (line 2) | function wt(t,e){var r,n=1;for(r=t.F;0!=r;--r)n=(n<<1)+Rt(e,t.G,n);retur...
  function Et (line 2) | function Et(t,e){return t.F=e,t.G=r(1<<e),t}
  function _t (line 2) | function _t(t,e,r){var n,o,i=1;for(o=t.F;0!=o;)n=r>>>--o&1,Bt(e,t.G,i,n)...
  function St (line 2) | function St(t,e){var r,n,o=1,i=0;for(n=t.F;0!=n;)r=e>>>--n&1,i+=Mt(t.G[o...
  function xt (line 2) | function xt(t,e,r){var n,o,i=1;for(o=0;t.F>o;++o)n=1&r,Bt(e,t.G,i,n),i=i...
  function Ot (line 2) | function Ot(t,e){var r,n,o=1,i=0;for(n=t.F;0!=n;--n)r=1&e,e>>>=1,i+=Mt(t...
  function jt (line 2) | function jt(t,e,r,n,o){var i,a,u=1;for(a=0;n>a;++a)Bt(r,t,e+u,i=1&o),u=u...
  function At (line 2) | function At(t,e,r,n){var o,i,a=1,u=0;for(i=r;0!=i;--i)o=1&n,n>>>=1,u+=Jt...
  function Rt (line 2) | function Rt(t,e,r){var n,o=e[r];return(-2147483648^(n=(t.E>>>11)*o))>(-2...
  function kt (line 2) | function kt(t){for(var e=t.length-1;e>=0;--e)t[e]=1024}
  function Bt (line 2) | function Bt(t,e,r,i){var a,u=e[r];a=(t.E>>>11)*u,i?(t.xc=n(t.xc,o(c(a),[...
  function Tt (line 2) | function Tt(t,e,r){for(var o=r-1;o>=0;--o)t.E>>>=1,1==(e>>>o&1)&&(t.xc=n...
  function Pt (line 2) | function Pt(t){return n(n(c(t.Jb),t.mc),[4,0])}
  function It (line 2) | function It(t){var e,r=s(function(t,e){var r;return r=p(t,e&=63),0>t[1]&...
  function Mt (line 2) | function Mt(t,e){return Jt[(2047&(t-e^-e))>>>2]}
  function Ut (line 2) | function Ut(t){for(var e,r,n,o=0,i=0,a=t.length,u=[],c=[];a>o;++o,++i){i...
  function Lt (line 2) | function Lt(t){var e,r,n,o=[],i=0,a=t.length;if("object"==typeof t)retur...
  function Nt (line 2) | function Nt(t){return t[1]+t[0]}
  function i (line 2) | function i(t,o,a,u){try{var c=e[t](o),s=c.value;return s instanceof n?r....
  function o (line 2) | function o(){return new r(function(e,r){i(t,n,e,r)})}
  function n (line 2) | function n(t,e){return function(t){if(Array.isArray(t))return t}(t)||fun...
  function o (line 2) | function o(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Ar...
  function i (line 2) | function i(t){return i="function"==typeof Symbol&&"symbol"==typeof Symbo...
  function p (line 2) | function p(t){return t.call.bind(t)}
  function P (line 2) | function P(t){if(0===t.length||t.length>10)return!0;for(var e=0;e<t.leng...
  function I (line 2) | function I(t){return Object.keys(t).filter(P).concat(f(t).filter(Object....
  function M (line 2) | function M(t,e){if(t===e)return 0;for(var r=t.length,n=e.length,o=0,i=Ma...
  function U (line 2) | function U(t,e,r,n){if(t===e)return 0!==t||(!r||s(t,e));if(r){if("object...
  function L (line 2) | function L(t,e){return e.filter(function(e){return d(t,e)})}
  function N (line 2) | function N(t,e,r,o,a,s){if(5===arguments.length){s=Object.keys(t);var l=...
  function C (line 2) | function C(t,e,r,n){for(var o=u(t),i=0;i<o.length;i++){var a=o[i];if(U(e...
  function F (line 2) | function F(t){switch(i(t)){case"undefined":return null;case"object":retu...
  function D (line 2) | function D(t,e,r){var n=F(r);return null!=n?n:e.has(n)&&!t.has(n)}
  function q (line 2) | function q(t,e,r,n,o){var i=F(r);if(null!=i)return i;var a=e.get(i);retu...
  function z (line 2) | function z(t,e,r,n,o,i){for(var a=u(t),c=0;c<a.length;c++){var s=a[c];if...
  function n (line 2) | function n(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){va...
  function o (line 2) | function o(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[...
  function i (line 2) | function i(t,e,r){return(e=u(e))in t?Object.defineProperty(t,e,{value:r,...
  function a (line 2) | function a(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.en...
  function u (line 2) | function u(t){var e=function(t,e){if("object"!=typeof t||null===t)return...
  function l (line 2) | function l(t,e,r){c.prototype.copy.call(t,e,r)}
  function t (line 2) | function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Ca...
  function i (line 2) | function i(t,e){for(var r in t)e[r]=t[r]}
  function a (line 2) | function a(t,e,r){return o(t,e,r)}
  function i (line 2) | function i(t,e,r){return(e=function(t){var e=function(t,e){if("object"!=...
  function d (line 2) | function d(t,e){return{value:t,done:e}}
  function y (line 2) | function y(t){var e=t[u];if(null!==e){var r=t[h].read();null!==r&&(t[l]=...
  function b (line 2) | function b(t){o.nextTick(y,t)}
  method stream (line 2) | get stream(){return this[h]}
  function o (line 2) | function o(t,e){if(!n[t]){n[t]={};for(var r=0;r<t.length;r++)n[t][t.char...
  function a (line 2) | function a(t,e,r){return e>=r+t}
  function u (line 2) | function u(t,e,r,n,o){let i=e;const a=[];let u=0;for(;u++<r;){const e=s(...
  function c (line 2) | function c(t,e,r,n,o){const i=u(t,e,2*r,n,o);if(!i)return null;const[a,c...
  function s (line 2) | function s(t,e,r){if(t.length<=e)return null;const n=t.length-e;let o=e;...
  function f (line 2) | function f(t,e,r,n,o,i){const a=t.slice(e,e+n),u=i.decodingTypes.get(r);...
  function i (line 2) | function i(t){n.isBufferList(t)||(t=n(t));const e=s(t,0,r);if(!e)throw n...
  function i (line 2) | function i(t){var e;switch(this.encoding=function(t){var e=function(t){i...
  function a (line 2) | function a(t){return t<=127?0:t>>5==6?2:t>>4==14?3:t>>3==30?4:t>>6==2?-1...
  function u (line 2) | function u(t){var e=this.lastTotal-this.lastNeed,r=function(t,e){if(128!...
  function c (line 2) | function c(t,e){if((t.length-e)%2==0){var r=t.toString("utf16le",e);if(r...
  function s (line 2) | function s(t){var e=t&&t.length?this.write(t):"";if(this.lastNeed){var r...
  function f (line 2) | function f(t,e){var r=(t.length-e)%3;return 0===r?t.toString("base64",e)...
  function l (line 2) | function l(t){var e=t&&t.length?this.write(t):"";return this.lastNeed?e+...
  function p (line 2) | function p(t){return t.toString(this.encoding)}
  function h (line 2) | function h(t){return t&&t.length?this.write(t):""}
  function o (line 2) | function o(t){if(!(this instanceof o))return new o(t);n.call(this,t)}
  function e (line 2) | function e(r){return t.exports=e="function"==typeof Symbol&&"symbol"==ty...
  function o (line 2) | function o(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){va...
  function i (line 2) | function i(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[...
  function a (line 2) | function a(t,e,r){return(e=c(e))in t?Object.defineProperty(t,e,{value:r,...
  function u (line 2) | function u(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.en...
  function c (line 2) | function c(t){var e=function(t,e){if("object"!==b(t)||null===t)return t;...
  function s (line 2) | function s(t,e){if(e&&("object"===b(e)||"function"==typeof e))return e;i...
  function f (line 2) | function f(t){if(void 0===t)throw new ReferenceError("this hasn't been i...
  function l (line 2) | function l(t){var e="function"==typeof Map?new Map:void 0;return l=funct...
  function p (line 2) | function p(t,e,r){return p=h()?Reflect.construct.bind():function(t,e,r){...
  function h (line 2) | function h(){if("undefined"==typeof Reflect||!Reflect.construct)return!1...
  function d (line 2) | function d(t,e){return d=Object.setPrototypeOf?Object.setPrototypeOf.bin...
  function y (line 2) | function y(t){return y=Object.setPrototypeOf?Object.getPrototypeOf.bind(...
  function b (line 2) | function b(t){return b="function"==typeof Symbol&&"symbol"==typeof Symbo...
  function m (line 2) | function m(t,e,r){return(void 0===r||r>t.length)&&(r=t.length),t.substri...
  function O (line 2) | function O(t){var e=Object.keys(t),r=Object.create(Object.getPrototypeOf...
  function j (line 2) | function j(t){return g(t,{compact:!1,customInspect:!1,depth:1e3,maxArray...
  function A (line 2) | function A(t,e,r){var o="",i="",a=0,u="",c=!1,s=j(t),f=s.split("\n"),l=j...
  function m (line 2) | function m(t){var e;if(function(t,e){if(!(t instanceof e))throw new Type...
  function o (line 2) | function o(t){return o="function"==typeof Symbol&&"symbol"==typeof Symbo...
  function i (line 2) | function i(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.en...
  function a (line 2) | function a(t,e,r){return e&&i(t.prototype,e),r&&i(t,r),Object.defineProp...
  function u (line 2) | function u(t){var e=function(t,e){if("object"!==o(t)||null===t)return t;...
  function x (line 2) | function x(){var t=r(2299);c=t.isDeepEqual,s=t.isDeepStrictEqual}
  function R (line 2) | function R(t){if(t.message instanceof Error)throw t.message;throw new b(t)}
  function k (line 2) | function k(t,e,r,n){if(!r){var o=!1;if(0===e)o=!0,n="No value argument p...
  function B (line 2) | function B(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=...
  function P (line 2) | function P(t,e,r,n){if("function"!=typeof e){if(w(e))return S(e,t);if(2=...
  function I (line 2) | function I(t){if("function"!=typeof t)throw new p("fn","Function",t);try...
  function M (line 2) | function M(t){return m(t)||null!==t&&"object"===o(t)&&"function"==typeof...
  function U (line 2) | function U(t){return Promise.resolve().then(function(){var e;if("functio...
  function L (line 2) | function L(t,e,r,n){if("string"==typeof r){if(4===arguments.length)throw...
  function N (line 2) | function N(t,e,r,n){if(e!==A){if("string"==typeof r&&(n=r,r=void 0),!r||...
  function C (line 2) | function C(t,e,r,n,i){if(!w(e))throw new p("regexp","RegExp",e);var a="m...
  function F (line 2) | function F(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=...
  function o (line 2) | function o(t){Error.call(this),Error.captureStackTrace&&Error.captureSta...
  function s (line 2) | function s(t,e){var r=this._transformState;r.transforming=!1;var n=r.wri...
  function f (line 2) | function f(t){if(!(this instanceof f))return new f(t);c.call(this,t),thi...
  function l (line 2) | function l(){var t=this;"function"!=typeof this._flush||this._readableSt...
  function p (line 2) | function p(t,e,r){if(e)return t.emit("error",e);if(null!=r&&t.push(r),t....
  function f (line 2) | function f(){"use strict";var e=o(),r=e.m(f),l=(Object.getPrototypeOf?Ob...
  function e (line 2) | function e(t){try{if(!window.localStorage)return!1}catch(t){return!1}var...
  function a (line 2) | function a(t){if(!(this instanceof a))return new a(t);if("function"==typ...
  function f (line 2) | function f(t){if(!(this instanceof f))return new f(t);i.call(this,t),a.c...
  function l (line 2) | function l(){this._writableState.ended||n.nextTick(p,this)}
  function p (line 2) | function p(t){t.end()}
  function x (line 2) | function x(t,e,o){n=n||r(5382),t=t||{},"boolean"!=typeof o&&(o=e instanc...
  function O (line 2) | function O(t){if(n=n||r(5382),!(this instanceof O))return new O(t);var e...
  function j (line 2) | function j(t,e,r,n,o){s("readableAddChunk",e);var i,a=t._readableState;i...
  function A (line 2) | function A(t,e,r,n){e.flowing&&0===e.length&&!e.sync?(e.awaitDrain=0,t.e...
  function k (line 2) | function k(t,e){return t<=0||0===e.length&&e.ended?0:e.objectMode?1:t!=t...
  function B (line 2) | function B(t){var e=t._readableState;s("emitReadable",e.needReadable,e.e...
  function T (line 2) | function T(t){var e=t._readableState;s("emitReadable_",e.destroyed,e.len...
  function P (line 2) | function P(t,e){e.readingMore||(e.readingMore=!0,o.nextTick(I,t,e))}
  function I (line 2) | function I(t,e){for(;!e.reading&&!e.ended&&(e.length<e.highWaterMark||e....
  function M (line 2) | function M(t){var e=t._readableState;e.readableListening=t.listenerCount...
  function U (line 2) | function U(t){s("readable nexttick read 0"),t.read(0)}
  function L (line 2) | function L(t,e){s("resume",e.reading),e.reading||t.read(0),e.resumeSched...
  function N (line 2) | function N(t){var e=t._readableState;for(s("flow",e.flowing);e.flowing&&...
  function C (line 2) | function C(t,e){return 0===e.length?null:(e.objectMode?r=e.buffer.shift(...
  function F (line 2) | function F(t){var e=t._readableState;s("endReadable",e.endEmitted),e.end...
  function D (line 2) | function D(t,e){if(s("endReadableNT",t.endEmitted,t.length),!t.endEmitte...
  function q (line 2) | function q(t,e){for(var r=0,n=t.length;r<n;r++)if(t[r]===e)return r;retu...
  function u (line 2) | function u(e,o){s("onunpipe"),e===r&&o&&!1===o.hasUnpiped&&(o.hasUnpiped...
  function c (line 2) | function c(){s("onend"),t.end()}
  function p (line 2) | function p(e){s("ondata");var o=t.write(e);s("dest.write",o),!1===o&&((1...
  function h (line 2) | function h(e){s("onerror",e),b(),t.removeListener("error",h),0===i(t,"er...
  function d (line 2) | function d(){t.removeListener("finish",y),b()}
  function y (line 2) | function y(){s("onfinish"),t.removeListener("close",d),b()}
  function b (line 2) | function b(){s("unpipe"),r.unpipe(t)}
  function e (line 2) | function e(r,n,o,i){var a=Object.defineProperty;try{a({},"",{})}catch(r)...
  function o (line 2) | function o(){throw new Error("setTimeout has not been defined")}
  function i (line 2) | function i(){throw new Error("clearTimeout has not been defined")}
  function a (line 2) | function a(t){if(e===setTimeout)return setTimeout(t,0);if((e===o||!e)&&s...
  function l (line 2) | function l(){s&&u&&(s=!1,u.length?c=u.concat(c):f=-1,c.length&&p())}
  function p (line 2) | function p(){if(!s){var t=a(l);s=!0;for(var e=c.length;e;){for(u=c,c=[];...
  function h (line 2) | function h(t,e){this.fun=t,this.array=e}
  function d (line 2) | function d(){}
  function o (line 2) | function o(t,e){a(t,e),i(t)}
  function i (line 2) | function i(t){t._writableState&&!t._writableState.emitClose||t._readable...
  function a (line 2) | function a(t,e){t.emit("error",e)}
  function r (line 2) | function r(t,r,n){n||(n=Error);var o=function(t){var e,n;function o(e,n,...
  function n (line 2) | function n(t,e){if(Array.isArray(t)){var r=t.length;return t=t.map(funct...
  function o (line 2) | function o(){}
  function a (line 2) | function a(t,e,r){const n=r%4294967296,o=Math.floor(r/4294967296);t.writ...
  function r (line 2) | function r(u){if(void 0===u)throw new Error("undefined is not encodable ...
  function c (line 2) | function c(t,e){let r;return!e&&u&&Object.is(u(t),t)?(r=n.allocUnsafe(5)...
  function s (line 2) | function s(t){return 1===t?n.from([212]):2===t?n.from([213]):4===t?n.fro...
  function f (line 2) | function f(t,e,r){if(t<16)return n.from([e|t]);const o=t<65536?2:4,i=n.a...
  function l (line 2) | function l(t){let e;return t<=255?(e=n.allocUnsafe(2),e[0]=196,e[1]=t):t...
  function p (line 2) | function p(t){let e;return t<=31?(e=n.allocUnsafe(1),e[0]=160|t):t<=6553...
  function i (line 2) | function i(t){var e=this;this.next=null,this.entry=null,this.finish=func...
  function S (line 2) | function S(){}
  function x (line 2) | function x(t,e,a){n=n||r(5382),t=t||{},"boolean"!=typeof a&&(a=e instanc...
  function O (line 2) | function O(t){var e=this instanceof(n=n||r(5382));if(!e&&!f.call(O,this)...
  function j (line 2) | function j(t,e,r,n,o,i,a){e.writelen=n,e.writecb=a,e.writing=!0,e.sync=!...
  function A (line 2) | function A(t,e,r,n){r||function(t,e){0===e.length&&e.needDrain&&(e.needD...
  function R (line 2) | function R(t,e){e.bufferProcessing=!0;var r=e.bufferedRequest;if(t._writ...
  function k (line 2) | function k(t){return t.ending&&0===t.length&&null===t.bufferedRequest&&!...
  function B (line 2) | function B(t,e){t._final(function(r){e.pendingcb--,r&&_(t,r),e.prefinish...
  function T (line 2) | function T(t,e){var r=k(e);if(r&&(function(t,e){e.prefinished||e.finalCa...
  function o (line 2) | function o(){var e,r,i="function"==typeof Symbol?Symbol:{},a=i.iterator|...
  function i (line 2) | function i(){i.init.call(this)}
  function o (line 2) | function o(r){t.removeListener(e,i),n(r)}
  function i (line 2) | function i(){"function"==typeof t.removeListener&&t.removeListener("erro...
  function u (line 2) | function u(t){if("function"!=typeof t)throw new TypeError('The "listener...
  function c (line 2) | function c(t){return void 0===t._maxListeners?i.defaultMaxListeners:t._m...
  function s (line 2) | function s(t,e,r,n){var o,i,a,s;if(u(r),void 0===(i=t._events)?(i=t._eve...
  function f (line 2) | function f(){if(!this.fired)return this.target.removeListener(this.type,...
  function l (line 2) | function l(t,e,r){var n={fired:!1,wrapFn:void 0,target:t,type:e,listener...
  function p (line 2) | function p(t,e,r){var n=t._events;if(void 0===n)return[];var o=n[e];retu...
  function h (line 2) | function h(t){var e=this._events;if(void 0!==e){var r=e[t];if("function"...
  function d (line 2) | function d(t,e){for(var r=new Array(e),n=0;n<e;++n)r[n]=t[n];return r}
  function y (line 2) | function y(t,e,r,n){if("function"==typeof t.on)n.once?t.once(e,r):t.on(e...
  function u (line 2) | function u(t){var e=t.length;if(e%4>0)throw new Error("Invalid string. L...
  function c (line 2) | function c(t){return r[t>>18&63]+r[t>>12&63]+r[t>>6&63]+r[63&t]}
  function s (line 2) | function s(t,e,r){for(var n,o=[],i=e;i<r;i+=3)n=(t[i]<<16&16711680)+(t[i...
  function u (line 2) | function u(t){if(t)throw t}
  function c (line 2) | function c(t){t()}
  function s (line 2) | function s(t,e){return t.pipe(e)}
  function i (line 2) | function i(t){if(!(this instanceof i))return new i(t);i._init.call(this,t)}
  function u (line 2) | function u(t){if(t>a)throw new RangeError('The value "'+t+'" is invalid ...
  function c (line 2) | function c(t,e,r){if("number"==typeof t){if("string"==typeof e)throw new...
  function s (line 2) | function s(t,e,r){if("string"==typeof t)return function(t,e){"string"==t...
  function f (line 2) | function f(t){if("number"!=typeof t)throw new TypeError('"size" argument...
  function l (line 2) | function l(t){return f(t),u(t<0?0:0|d(t))}
  function p (line 2) | function p(t){const e=t.length<0?0:0|d(t.length),r=u(e);for(let n=0;n<e;...
  function h (line 2) | function h(t,e,r){if(e<0||t.byteLength<e)throw new RangeError('"offset" ...
  function d (line 2) | function d(t){if(t>=a)throw new RangeError("Attempt to allocate Buffer l...
  function y (line 2) | function y(t,e){if(c.isBuffer(t))return t.length;if(ArrayBuffer.isView(t...
  function b (line 2) | function b(t,e,r){let n=!1;if((void 0===e||e<0)&&(e=0),e>this.length)ret...
  function g (line 2) | function g(t,e,r){const n=t[e];t[e]=t[r],t[r]=n}
  function v (line 2) | function v(t,e,r,n,o){if(0===t.length)return-1;if("string"==typeof r?(n=...
  function m (line 2) | function m(t,e,r,n,o){let i,a=1,u=t.length,c=e.length;if(void 0!==n&&("u...
  function w (line 2) | function w(t,e,r,n){r=Number(r)||0;const o=t.length-r;n?(n=Number(n))>o&...
  function E (line 2) | function E(t,e,r,n){return Y(V(e,t.length-r),t,r,n)}
  function _ (line 2) | function _(t,e,r,n){return Y(function(t){const e=[];for(let r=0;r<t.leng...
  function S (line 2) | function S(t,e,r,n){return Y(H(e),t,r,n)}
  function x (line 2) | function x(t,e,r,n){return Y(function(t,e){let r,n,o;const i=[];for(let ...
  function O (line 2) | function O(t,e,r){return 0===e&&r===t.length?n.fromByteArray(t):n.fromBy...
  function j (line 2) | function j(t,e,r){r=Math.min(t.length,r);const n=[];let o=e;for(;o<r;){c...
  function R (line 2) | function R(t,e,r){let n="";r=Math.min(t.length,r);for(let o=e;o<r;++o)n+...
  function k (line 2) | function k(t,e,r){let n="";r=Math.min(t.length,r);for(let o=e;o<r;++o)n+...
  function B (line 2) | function B(t,e,r){const n=t.length;(!e||e<0)&&(e=0),(!r||r<0||r>n)&&(r=n...
  function T (line 2) | function T(t,e,r){const n=t.slice(e,r);let o="";for(let t=0;t<n.length-1...
  function P (line 2) | function P(t,e,r){if(t%1!=0||t<0)throw new RangeError("offset is not uin...
  function I (line 2) | function I(t,e,r,n,o,i){if(!c.isBuffer(t))throw new TypeError('"buffer" ...
  function M (line 2) | function M(t,e,r,n,o){z(e,n,o,t,r,7);let i=Number(e&BigInt(4294967295));...
  function U (line 2) | function U(t,e,r,n,o){z(e,n,o,t,r,7);let i=Number(e&BigInt(4294967295));...
  function L (line 2) | function L(t,e,r,n,o,i){if(r+n>t.length)throw new RangeError("Index out ...
  function N (line 2) | function N(t,e,r,n,i){return e=+e,r>>>=0,i||L(t,0,r,4),o.write(t,e,r,n,2...
  function C (line 2) | function C(t,e,r,n,i){return e=+e,r>>>=0,i||L(t,0,r,8),o.write(t,e,r,n,5...
  function D (line 2) | function D(t,e,r){F[t]=class extends r{constructor(){super(),Object.defi...
  function q (line 2) | function q(t){let e="",r=t.length;const n="-"===t[0]?1:0;for(;r>=n+4;r-=...
  function z (line 2) | function z(t,e,r,n,o,i){if(t>r||t<e){const n="bigint"==typeof e?"n":"";l...
  function $ (line 2) | function $(t,e){if("number"!=typeof t)throw new F.ERR_INVALID_ARG_TYPE(e...
  function G (line 2) | function G(t,e,r){if(Math.floor(t)!==t)throw $(t,r),new F.ERR_OUT_OF_RAN...
  function V (line 2) | function V(t,e){let r;e=e||1/0;const n=t.length;let o=null;const i=[];fo...
  function H (line 2) | function H(t){return n.toByteArray(function(t){if((t=(t=t.split("=")[0])...
  function Y (line 2) | function Y(t,e,r,n){let o;for(o=0;o<n&&!(o+r>=e.length||o>=t.length);++o...
  function J (line 2) | function J(t,e){return t instanceof e||null!=t&&null!=t.constructor&&nul...
  function K (line 2) | function K(t){return t!=t}
  function Q (line 2) | function Q(t){return"undefined"==typeof BigInt?X:t}
  function X (line 2) | function X(){throw new Error("BigInt not supported")}
  function u (line 2) | function u(t){return t.call.bind(t)}
  function b (line 2) | function b(t,e){if("object"!=typeof t)return!1;try{return e(t),!0}catch(...
  function g (line 2) | function g(t){return"[object Map]"===f(t)}
  function v (line 2) | function v(t){return"[object Set]"===f(t)}
  function m (line 2) | function m(t){return"[object WeakMap]"===f(t)}
  function w (line 2) | function w(t){return"[object WeakSet]"===f(t)}
  function E (line 2) | function E(t){return"[object ArrayBuffer]"===f(t)}
  function _ (line 2) | function _(t){return"undefined"!=typeof ArrayBuffer&&(E.working?E(t):t i...
  function S (line 2) | function S(t){return"[object DataView]"===f(t)}
  function x (line 2) | function x(t){return"undefined"!=typeof DataView&&(S.working?S(t):t inst...
  function j (line 2) | function j(t){return"[object SharedArrayBuffer]"===f(t)}
  function A (line 2) | function A(t){return void 0!==O&&(void 0===j.working&&(j.working=j(new O...
  function R (line 2) | function R(t){return b(t,l)}
  function k (line 2) | function k(t){return b(t,p)}
  function B (line 2) | function B(t){return b(t,h)}
  function T (line 2) | function T(t){return c&&b(t,d)}
  function P (line 2) | function P(t){return s&&b(t,y)}
  function n (line 2) | function n(t){return n="function"==typeof Symbol&&"symbol"==typeof Symbo...
  function o (line 2) | function o(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.en...
  function i (line 2) | function i(t){var e=function(t,e){if("object"!==n(t)||null===t)return t;...
  function a (line 2) | function a(t,e){return a=Object.setPrototypeOf?Object.setPrototypeOf.bin...
  function u (line 2) | function u(t){var e=function(){if("undefined"==typeof Reflect||!Reflect....
  function c (line 2) | function c(t){return c=Object.setPrototypeOf?Object.getPrototypeOf.bind(...
  function p (line 2) | function p(t,e,r){r||(r=Error);var n=function(r){!function(t,e){if("func...
  function h (line 2) | function h(t,e){if(Array.isArray(t)){var r=t.length;return t=t.map(funct...
  function o (line 2) | function o(t){var e=n[t];if(void 0!==e)return e.exports;var i=n[t]={expo...
  function t (line 2) | function t(t,e,r,n,o,i,a){try{var u=t[i](a),c=u.value}catch(t){return vo...
  function e (line 2) | function e(e){return function(){var r=this,n=arguments;return new Promis...
  function c (line 2) | function c(t){return s.apply(this,arguments)}
  function s (line 2) | function s(){return(s=e(n().mark(function e(r){var c,s,f,l,p;return n()....
  function f (line 2) | function f(){return(f=e(n().mark(function e(r){var c,s,f,l,p;return n()....
  function l (line 2) | function l(){return(l=e(n().mark(function t(e){var r,o,i;return n().wrap...

FILE: dist/browser/json-url.js
  function i (line 2) | function i(t,o,u,s){try{var f=e[t](o),a=f.value;return a instanceof n?r....
  function o (line 2) | function o(){return new r(function(e,r){i(t,n,e,r)})}
  function e (line 2) | function e(r){return t.exports=e="function"==typeof Symbol&&"symbol"==ty...
  function c (line 2) | function c(){"use strict";var e=o(),r=e.m(c),p=(Object.getPrototypeOf?Ob...
  function e (line 2) | function e(r,n,o,i){var u=Object.defineProperty;try{u({},"",{})}catch(r)...
  function o (line 2) | function o(){var e,r,i="function"==typeof Symbol?Symbol:{},u=i.iterator|...
  function s (line 2) | function s(t){var e=t.length;if(e%4>0)throw new Error("Invalid string. L...
  function f (line 2) | function f(t){return r[t>>18&63]+r[t>>12&63]+r[t>>6&63]+r[63&t]}
  function a (line 2) | function a(t,e,r){for(var n,o=[],i=e;i<r;i+=3)n=(t[i]<<16&16711680)+(t[i...
  function s (line 2) | function s(t){if(t>u)throw new RangeError('The value "'+t+'" is invalid ...
  function f (line 2) | function f(t,e,r){if("number"==typeof t){if("string"==typeof e)throw new...
  function a (line 2) | function a(t,e,r){if("string"==typeof t)return function(t,e){"string"==t...
  function c (line 2) | function c(t){if("number"!=typeof t)throw new TypeError('"size" argument...
  function p (line 2) | function p(t){return c(t),s(t<0?0:0|y(t))}
  function h (line 2) | function h(t){const e=t.length<0?0:0|y(t.length),r=s(e);for(let n=0;n<e;...
  function l (line 2) | function l(t,e,r){if(e<0||t.byteLength<e)throw new RangeError('"offset" ...
  function y (line 2) | function y(t){if(t>=u)throw new RangeError("Attempt to allocate Buffer l...
  function g (line 2) | function g(t,e){if(f.isBuffer(t))return t.length;if(ArrayBuffer.isView(t...
  function d (line 2) | function d(t,e,r){let n=!1;if((void 0===e||e<0)&&(e=0),e>this.length)ret...
  function w (line 2) | function w(t,e,r){const n=t[e];t[e]=t[r],t[r]=n}
  function b (line 2) | function b(t,e,r,n,o){if(0===t.length)return-1;if("string"==typeof r?(n=...
  function m (line 2) | function m(t,e,r,n,o){let i,u=1,s=t.length,f=e.length;if(void 0!==n&&("u...
  function v (line 2) | function v(t,e,r,n){r=Number(r)||0;const o=t.length-r;n?(n=Number(n))>o&...
  function x (line 2) | function x(t,e,r,n){return W(q(e,t.length-r),t,r,n)}
  function E (line 2) | function E(t,e,r,n){return W(function(t){const e=[];for(let r=0;r<t.leng...
  function B (line 2) | function B(t,e,r,n){return W(V(e),t,r,n)}
  function A (line 2) | function A(t,e,r,n){return W(function(t,e){let r,n,o;const i=[];for(let ...
  function I (line 2) | function I(t,e,r){return 0===e&&r===t.length?n.fromByteArray(t):n.fromBy...
  function _ (line 2) | function _(t,e,r){r=Math.min(t.length,r);const n=[];let o=e;for(;o<r;){c...
  function O (line 2) | function O(t,e,r){let n="";r=Math.min(t.length,r);for(let o=e;o<r;++o)n+...
  function T (line 2) | function T(t,e,r){let n="";r=Math.min(t.length,r);for(let o=e;o<r;++o)n+...
  function S (line 2) | function S(t,e,r){const n=t.length;(!e||e<0)&&(e=0),(!r||r<0||r>n)&&(r=n...
  function k (line 2) | function k(t,e,r){const n=t.slice(e,r);let o="";for(let t=0;t<n.length-1...
  function R (line 2) | function R(t,e,r){if(t%1!=0||t<0)throw new RangeError("offset is not uin...
  function j (line 2) | function j(t,e,r,n,o,i){if(!f.isBuffer(t))throw new TypeError('"buffer" ...
  function L (line 2) | function L(t,e,r,n,o){G(e,n,o,t,r,7);let i=Number(e&BigInt(4294967295));...
  function M (line 2) | function M(t,e,r,n,o){G(e,n,o,t,r,7);let i=Number(e&BigInt(4294967295));...
  function P (line 2) | function P(t,e,r,n,o,i){if(r+n>t.length)throw new RangeError("Index out ...
  function N (line 2) | function N(t,e,r,n,i){return e=+e,r>>>=0,i||P(t,0,r,4),o.write(t,e,r,n,2...
  function C (line 2) | function C(t,e,r,n,i){return e=+e,r>>>=0,i||P(t,0,r,8),o.write(t,e,r,n,5...
  function F (line 2) | function F(t,e,r){$[t]=class extends r{constructor(){super(),Object.defi...
  function z (line 2) | function z(t){let e="",r=t.length;const n="-"===t[0]?1:0;for(;r>=n+4;r-=...
  function G (line 2) | function G(t,e,r,n,o,i){if(t>r||t<e){const n="bigint"==typeof e?"n":"";l...
  function D (line 2) | function D(t,e){if("number"!=typeof t)throw new $.ERR_INVALID_ARG_TYPE(e...
  function J (line 2) | function J(t,e,r){if(Math.floor(t)!==t)throw D(t,r),new $.ERR_OUT_OF_RAN...
  function q (line 2) | function q(t,e){let r;e=e||1/0;const n=t.length;let o=null;const i=[];fo...
  function V (line 2) | function V(t){return n.toByteArray(function(t){if((t=(t=t.split("=")[0])...
  function W (line 2) | function W(t,e,r,n){let o;for(o=0;o<n&&!(o+r>=e.length||o>=t.length);++o...
  function X (line 2) | function X(t,e){return t instanceof e||null!=t&&null!=t.constructor&&nul...
  function Z (line 2) | function Z(t){return t!=t}
  function K (line 2) | function K(t){return"undefined"==typeof BigInt?Q:t}
  function Q (line 2) | function Q(){throw new Error("BigInt not supported")}
  function u (line 2) | function u(t){var e=i[t];if(void 0!==e)return e.exports;var r=i[t]={expo...
  function t (line 2) | function t(t,e,r,n,o,i,u){try{var s=t[i](u),f=s.value}catch(t){return vo...
  function e (line 2) | function e(e){return function(){var r=this,n=arguments;return new Promis...
  function f (line 2) | function f(t){return a.apply(this,arguments)}
  function a (line 2) | function a(){return(a=e(n().mark(function e(r){var f,a,c,p,h;return n()....
  function c (line 2) | function c(){return(c=e(n().mark(function e(r){var f,a,c,p,h;return n()....
  function p (line 2) | function p(){return(p=e(n().mark(function t(e){var r,o,i;return n().wrap...

FILE: dist/node/browser-index.js
  function getCurrentScriptSrc (line 12) | function getCurrentScriptSrc() {
  function derivePath (line 19) | function derivePath(scriptSrc) {

FILE: dist/node/codecs/lzma.js
  function compress (line 36) | function compress(_x) {
  function decompress (line 63) | function decompress(_x2) {

FILE: dist/node/codecs/lzstring.js
  function compress (line 31) | function compress(_x) {
  function decompress (line 51) | function decompress(_x2) {

FILE: dist/node/codecs/lzw.js
  function compress (line 31) | function compress(_x) {
  function decompress (line 53) | function decompress(_x2) {

FILE: dist/node/codecs/pack.js
  function compress (line 25) | function compress(_x) {
  function decompress (line 42) | function decompress(_x2) {

FILE: dist/node/index.js
  function createClient (line 15) | function createClient(algorithm) {

FILE: dist/node/loaders.js
  function _interopRequireWildcard (line 11) | function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMa...

FILE: dist/node/main/browser-index.js
  function getCurrentScriptSrc (line 12) | function getCurrentScriptSrc() {
  function derivePath (line 19) | function derivePath(scriptSrc) {

FILE: dist/node/main/codecs/lzma.js
  function compress (line 36) | function compress(_x) {
  function decompress (line 63) | function decompress(_x2) {

FILE: dist/node/main/codecs/lzstring.js
  function compress (line 31) | function compress(_x) {
  function decompress (line 51) | function decompress(_x2) {

FILE: dist/node/main/codecs/lzw.js
  function compress (line 31) | function compress(_x) {
  function decompress (line 53) | function decompress(_x2) {

FILE: dist/node/main/codecs/pack.js
  function compress (line 25) | function compress(_x) {
  function decompress (line 42) | function decompress(_x2) {

FILE: dist/node/main/index.js
  function createClient (line 15) | function createClient(algorithm) {

FILE: dist/node/main/loaders.js
  function _interopRequireWildcard (line 11) | function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMa...

FILE: karma.conf.js
  function deepClone (line 6) | function deepClone(x) {
  function makeKarmaWebpackConfig (line 17) | function makeKarmaWebpackConfig() {

FILE: src/main/browser-index.js
  function getCurrentScriptSrc (line 5) | function getCurrentScriptSrc() {
  function derivePath (line 13) | function derivePath(scriptSrc) {

FILE: src/main/index.js
  function createClient (line 6) | function createClient(algorithm) {

FILE: src/main/loaders.js
  method msgpack (line 3) | async msgpack() {
  method safe64 (line 8) | async safe64() {
  method lzma (line 11) | async lzma() {
  method lzstring (line 17) | async lzstring() {
  method lzw (line 20) | async lzw() {

FILE: test/perf.js
  function main (line 7) | async function main() {
Condensed preview — 55 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (501K chars).
[
  {
    "path": ".babelrc",
    "chars": 1123,
    "preview": "{\n\t\"presets\": [\n\t\t\"@babel/preset-env\"\n\t],\n\t\"plugins\": [\n\t\t[\n\t\t\t\"module-resolver\",\n\t\t\t{\n\t\t\t\t\"root\": [\n\t\t\t\t\t\"src\"\n\t\t\t\t],\n\t"
  },
  {
    "path": ".editorconfig",
    "chars": 145,
    "preview": "# top-most EditorConfig file\nroot = true\n\n[*]\ncharset = utf-8\nend_of_line = lf\nindent_style = tab\nindent_size = 2\ntrim_t"
  },
  {
    "path": ".eslintignore",
    "chars": 9,
    "preview": "dist/**/*"
  },
  {
    "path": ".eslintrc",
    "chars": 524,
    "preview": "{\n  \"parser\": \"babel-eslint\",\n  \"plugins\": [ \"import\" ],\n  \"extends\": [ \"eslint:recommended\", \"plugin:import/recommended"
  },
  {
    "path": ".gitignore",
    "chars": 63,
    "preview": "node_modules\n*.log\n.DS_Store\ncoverage/\n.nyc_output/\nstats.json\n"
  },
  {
    "path": ".npmignore",
    "chars": 54,
    "preview": "*.log\ntest/\nexamples/\n.DS_Store\ncoverage/\n.nyc_output/"
  },
  {
    "path": ".nycrc",
    "chars": 163,
    "preview": "{\n\t\"include\": [ \"src/**/*.js\" ],\n\t\"require\": [ \"@babel/register\", \"@babel/polyfill\" ],\n\t\"sourceMap\": false,\n\t\"instrument"
  },
  {
    "path": ".travis.yml",
    "chars": 117,
    "preview": "language: node_js\nnode_js:\n  - \"node\"\n  - \"14\"\n  - \"12\"\n  - \"10\"\nafter_success: npm run coverage\ninstall: npm install"
  },
  {
    "path": "LICENSE",
    "chars": 1086,
    "preview": "MIT License\n\nCopyright (c) Facebook, Inc. and its affiliates.\n\nPermission is hereby granted, free of charge, to any pers"
  },
  {
    "path": "README.md",
    "chars": 5440,
    "preview": "# json-url\n\n[![npm downloads][downloads-image]][downloads-url] [![Build Status][travis-image]][travis-url] [![Dependency"
  },
  {
    "path": "dist/browser/json-url-998.js",
    "chars": 130471,
    "preview": "/*! For license information please see json-url-998.js.LICENSE.txt */\n(self.webpackChunkJsonUrl=self.webpackChunkJsonUrl"
  },
  {
    "path": "dist/browser/json-url-998.js.LICENSE.txt",
    "chars": 239,
    "preview": "/*!\n * The buffer module from node.js, for the browser.\n *\n * @author   Feross Aboukhadijeh <feross@feross.org> <http://"
  },
  {
    "path": "dist/browser/json-url-lzma.js",
    "chars": 23621,
    "preview": "(self.webpackChunkJsonUrl=self.webpackChunkJsonUrl||[]).push([[483],{894:function(){var n=function(){\"use strict\";functi"
  },
  {
    "path": "dist/browser/json-url-lzstring.js",
    "chars": 4698,
    "preview": "(self.webpackChunkJsonUrl=self.webpackChunkJsonUrl||[]).push([[66],{2992:(o,r,n)=>{var e,t=function(){var o=String.fromC"
  },
  {
    "path": "dist/browser/json-url-lzw.js",
    "chars": 649,
    "preview": "\"use strict\";(self.webpackChunkJsonUrl=self.webpackChunkJsonUrl||[]).push([[508],{4484:e=>{var r=function(){};r.prototyp"
  },
  {
    "path": "dist/browser/json-url-msgpack.js",
    "chars": 95,
    "preview": "(self.webpackChunkJsonUrl=self.webpackChunkJsonUrl||[]).push([[81],{5340:()=>{},9838:()=>{}}]);"
  },
  {
    "path": "dist/browser/json-url-safe64.js",
    "chars": 519,
    "preview": "/*! For license information please see json-url-safe64.js.LICENSE.txt */\n(self.webpackChunkJsonUrl=self.webpackChunkJson"
  },
  {
    "path": "dist/browser/json-url-safe64.js.LICENSE.txt",
    "chars": 26,
    "preview": "/*!\n * urlsafe-base64\n */\n"
  },
  {
    "path": "dist/browser/json-url-single.js",
    "chars": 200945,
    "preview": "/*! For license information please see json-url-single.js.LICENSE.txt */\n!function(t,e){\"object\"==typeof exports&&\"objec"
  },
  {
    "path": "dist/browser/json-url-single.js.LICENSE.txt",
    "chars": 656,
    "preview": "/*!\n * The buffer module from node.js, for the browser.\n *\n * @author   Feross Aboukhadijeh <feross@feross.org> <http://"
  },
  {
    "path": "dist/browser/json-url.js",
    "chars": 43042,
    "preview": "/*! For license information please see json-url.js.LICENSE.txt */\n!function(t,e){\"object\"==typeof exports&&\"object\"==typ"
  },
  {
    "path": "dist/browser/json-url.js.LICENSE.txt",
    "chars": 389,
    "preview": "/*!\n * The buffer module from node.js, for the browser.\n *\n * @author   Feross Aboukhadijeh <https://feross.org>\n * @lic"
  },
  {
    "path": "dist/node/browser-index.js",
    "chars": 977,
    "preview": "\"use strict\";\n\nvar _interopRequireDefault = require(\"@babel/runtime/helpers/interopRequireDefault\");\nObject.defineProper"
  },
  {
    "path": "dist/node/codecs/index.js",
    "chars": 604,
    "preview": "\"use strict\";\n\nvar _interopRequireDefault = require(\"@babel/runtime/helpers/interopRequireDefault\");\nObject.defineProper"
  },
  {
    "path": "dist/node/codecs/lzma.js",
    "chars": 2442,
    "preview": "\"use strict\";\n\nvar _interopRequireDefault = require(\"@babel/runtime/helpers/interopRequireDefault\");\nObject.defineProper"
  },
  {
    "path": "dist/node/codecs/lzstring.js",
    "chars": 2033,
    "preview": "\"use strict\";\n\nvar _interopRequireDefault = require(\"@babel/runtime/helpers/interopRequireDefault\");\nObject.defineProper"
  },
  {
    "path": "dist/node/codecs/lzw.js",
    "chars": 2076,
    "preview": "\"use strict\";\n\nvar _interopRequireDefault = require(\"@babel/runtime/helpers/interopRequireDefault\");\nObject.defineProper"
  },
  {
    "path": "dist/node/codecs/pack.js",
    "chars": 1615,
    "preview": "\"use strict\";\n\nvar _interopRequireDefault = require(\"@babel/runtime/helpers/interopRequireDefault\");\nObject.defineProper"
  },
  {
    "path": "dist/node/index.js",
    "chars": 5248,
    "preview": "\"use strict\";\n\nvar _interopRequireDefault = require(\"@babel/runtime/helpers/interopRequireDefault\");\nObject.defineProper"
  },
  {
    "path": "dist/node/loaders.js",
    "chars": 4909,
    "preview": "\"use strict\";\n\nvar _interopRequireDefault = require(\"@babel/runtime/helpers/interopRequireDefault\");\nvar _typeof = requi"
  },
  {
    "path": "dist/node/main/browser-index.js",
    "chars": 977,
    "preview": "\"use strict\";\n\nvar _interopRequireDefault = require(\"@babel/runtime/helpers/interopRequireDefault\");\nObject.defineProper"
  },
  {
    "path": "dist/node/main/codecs/index.js",
    "chars": 604,
    "preview": "\"use strict\";\n\nvar _interopRequireDefault = require(\"@babel/runtime/helpers/interopRequireDefault\");\nObject.defineProper"
  },
  {
    "path": "dist/node/main/codecs/lzma.js",
    "chars": 2442,
    "preview": "\"use strict\";\n\nvar _interopRequireDefault = require(\"@babel/runtime/helpers/interopRequireDefault\");\nObject.defineProper"
  },
  {
    "path": "dist/node/main/codecs/lzstring.js",
    "chars": 2033,
    "preview": "\"use strict\";\n\nvar _interopRequireDefault = require(\"@babel/runtime/helpers/interopRequireDefault\");\nObject.defineProper"
  },
  {
    "path": "dist/node/main/codecs/lzw.js",
    "chars": 2076,
    "preview": "\"use strict\";\n\nvar _interopRequireDefault = require(\"@babel/runtime/helpers/interopRequireDefault\");\nObject.defineProper"
  },
  {
    "path": "dist/node/main/codecs/pack.js",
    "chars": 1615,
    "preview": "\"use strict\";\n\nvar _interopRequireDefault = require(\"@babel/runtime/helpers/interopRequireDefault\");\nObject.defineProper"
  },
  {
    "path": "dist/node/main/index.js",
    "chars": 5248,
    "preview": "\"use strict\";\n\nvar _interopRequireDefault = require(\"@babel/runtime/helpers/interopRequireDefault\");\nObject.defineProper"
  },
  {
    "path": "dist/node/main/loaders.js",
    "chars": 4909,
    "preview": "\"use strict\";\n\nvar _interopRequireDefault = require(\"@babel/runtime/helpers/interopRequireDefault\");\nvar _typeof = requi"
  },
  {
    "path": "eslint.config.js",
    "chars": 956,
    "preview": "// eslint.config.js\nimport js from \"@eslint/js\";\nimport importPlugin from \"eslint-plugin-import\";\nimport babelParser fro"
  },
  {
    "path": "examples/browser/test.html",
    "chars": 3336,
    "preview": "<!doctype html>\n<html>\n\t<head>\n\t\t<title>json-url demo page</title>\n\t\t<style type=\"text/css\">\n\t\t\tbody {\n\t\t\t\tpadding: 0;\n\t"
  },
  {
    "path": "karma.conf.js",
    "chars": 2124,
    "preview": "/* eslint-disable import/unambiguous */\nconst webpack = require('webpack');\nconst prodWebpackConfig = require('./webpack"
  },
  {
    "path": "package.json",
    "chars": 3417,
    "preview": "{\n\t\"name\": \"json-url\",\n\t\"version\": \"4.0.0\",\n\t\"description\": \"Compress JSON into compact base64 URI-friendly notation\",\n\t"
  },
  {
    "path": "src/main/browser-index.js",
    "chars": 698,
    "preview": "/* global document */\nimport createClient from './index.js';\n\n// adapted from https://github.com/webpack/webpack/issues/"
  },
  {
    "path": "src/main/codecs/index.js",
    "chars": 201,
    "preview": "import lzma from 'main/codecs/lzma';\nimport lzstring from 'main/codecs/lzstring';\nimport lzw from 'main/codecs/lzw';\nimp"
  },
  {
    "path": "src/main/codecs/lzma.js",
    "chars": 550,
    "preview": "import LOADERS from 'main/loaders';\n\nexport default {\n\tpack: true,\n\tencode: true,\n\tcompress: async input => {\n\t\tconst lz"
  },
  {
    "path": "src/main/codecs/lzstring.js",
    "chars": 271,
    "preview": "import LOADERS from 'main/loaders';\n\nexport default {\n\tpack: false,\n\tencode: true,\n\tcompress: async string => Buffer.fro"
  },
  {
    "path": "src/main/codecs/lzw.js",
    "chars": 266,
    "preview": "import LOADERS from 'main/loaders';\n\nexport default {\n\tpack: true,\n\tencode: true,\n\tcompress: async input => Buffer.from("
  },
  {
    "path": "src/main/codecs/pack.js",
    "chars": 98,
    "preview": "export default {\n\tpack: true,\n\tencode: true,\n\tcompress: async _ => _,\n\tdecompress: async _ => _\n};"
  },
  {
    "path": "src/main/index.js",
    "chars": 1354,
    "preview": "import ALGORITHMS from 'main/codecs';\nimport LOADERS from 'main/loaders';\n\nconst twoDigitPercentage = val => Math.floor("
  },
  {
    "path": "src/main/loaders.js",
    "chars": 793,
    "preview": "// centralize all chunks in one file\nexport default {\n\tasync msgpack() {\n\t\tconst module = await import(/* webpackChunkNa"
  },
  {
    "path": "test/index.js",
    "chars": 1333,
    "preview": "/* global describe, it */\nimport assert from 'assert';\nimport createClient from 'main';\nimport { validate } from 'urlsaf"
  },
  {
    "path": "test/perf.js",
    "chars": 747,
    "preview": "import jsonUrl from 'main/index.js';\nimport samples from './samples.json';\nimport ALGORITHMS from 'main/compress';\n\ncons"
  },
  {
    "path": "test/samples.json",
    "chars": 8521,
    "preview": "[\n\t{\n\t\t\"filters\": {\n\t\t\t\"amenities\": [4, 55, 23],\n\t\t\t\"budget_max\": 80000,\n\t\t\t\"budget_min\": 50000,\n\t\t\t\"event_types\": [1, 2"
  },
  {
    "path": "webpack.config.js",
    "chars": 2084,
    "preview": "/* eslint-disable import/unambiguous */\nconst webpack = require('webpack');\nconst TerserPlugin = require('terser-webpack"
  },
  {
    "path": "webpack.config.single.js",
    "chars": 1915,
    "preview": "/* eslint-disable import/unambiguous */\nconst webpack = require('webpack');\nconst TerserPlugin = require('terser-webpack"
  }
]

About this extraction

This page contains the full source code of the masotime/json-url GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 55 files (471.2 KB), approximately 168.0k tokens, and a symbol index with 757 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!