@tachybase/plugin-adapter-red-node 1.0.6 → 1.0.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/externalVersion.js
CHANGED
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
* Copyright(c) 2012-2014 TJ Holowaychuk
|
|
43
43
|
* Copyright(c) 2015 Jed Watson
|
|
44
44
|
* MIT Licensed
|
|
45
|
-
*/e.exports=bytes;e.exports.format=format;e.exports.parse=parse;var a=/\B(?=(\d{3})+(?!\d))/g;var t=/(?:\.0*|(\.[^0]+)0+)$/;var i={b:1,kb:1<<10,mb:1<<20,gb:1<<30,tb:Math.pow(1024,4),pb:Math.pow(1024,5)};var n=/^((-|\+)?(\d+(?:\.\d+)?)) *(kb|mb|gb|tb|pb)$/i;function bytes(e,a){if(typeof e==="string"){return parse(e)}if(typeof e==="number"){return format(e,a)}return null}function format(e,n){if(!Number.isFinite(e)){return null}var r=Math.abs(e);var o=n&&n.thousandsSeparator||"";var s=n&&n.unitSeparator||"";var c=n&&n.decimalPlaces!==undefined?n.decimalPlaces:2;var p=Boolean(n&&n.fixedDecimals);var l=n&&n.unit||"";if(!l||!i[l.toLowerCase()]){if(r>=i.pb){l="PB"}else if(r>=i.tb){l="TB"}else if(r>=i.gb){l="GB"}else if(r>=i.mb){l="MB"}else if(r>=i.kb){l="KB"}else{l="B"}}var u=e/i[l.toLowerCase()];var d=u.toFixed(c);if(!p){d=d.replace(t,"$1")}if(o){d=d.split(".").map((function(e,t){return t===0?e.replace(a,o):e})).join(".")}return d+s+l}function parse(e){if(typeof e==="number"&&!isNaN(e)){return e}if(typeof e!=="string"){return null}var a=n.exec(e);var t;var r="b";if(!a){t=parseInt(e,10);r="b"}else{t=parseFloat(a[1]);r=a[4].toLowerCase()}if(isNaN(t)){return null}return Math.floor(i[r]*t)}},
|
|
45
|
+
*/e.exports=bytes;e.exports.format=format;e.exports.parse=parse;var a=/\B(?=(\d{3})+(?!\d))/g;var t=/(?:\.0*|(\.[^0]+)0+)$/;var i={b:1,kb:1<<10,mb:1<<20,gb:1<<30,tb:Math.pow(1024,4),pb:Math.pow(1024,5)};var n=/^((-|\+)?(\d+(?:\.\d+)?)) *(kb|mb|gb|tb|pb)$/i;function bytes(e,a){if(typeof e==="string"){return parse(e)}if(typeof e==="number"){return format(e,a)}return null}function format(e,n){if(!Number.isFinite(e)){return null}var r=Math.abs(e);var o=n&&n.thousandsSeparator||"";var s=n&&n.unitSeparator||"";var c=n&&n.decimalPlaces!==undefined?n.decimalPlaces:2;var p=Boolean(n&&n.fixedDecimals);var l=n&&n.unit||"";if(!l||!i[l.toLowerCase()]){if(r>=i.pb){l="PB"}else if(r>=i.tb){l="TB"}else if(r>=i.gb){l="GB"}else if(r>=i.mb){l="MB"}else if(r>=i.kb){l="KB"}else{l="B"}}var u=e/i[l.toLowerCase()];var d=u.toFixed(c);if(!p){d=d.replace(t,"$1")}if(o){d=d.split(".").map((function(e,t){return t===0?e.replace(a,o):e})).join(".")}return d+s+l}function parse(e){if(typeof e==="number"&&!isNaN(e)){return e}if(typeof e!=="string"){return null}var a=n.exec(e);var t;var r="b";if(!a){t=parseInt(e,10);r="b"}else{t=parseFloat(a[1]);r=a[4].toLowerCase()}if(isNaN(t)){return null}return Math.floor(i[r]*t)}},429:function(e,a,t){"use strict";var i=t(5632);var n=t(9831);var r=t(4715);var o=t(9348);e.exports=o||i.call(r,n)},9831:function(e){"use strict";e.exports=Function.prototype.apply},4715:function(e){"use strict";e.exports=Function.prototype.call},7063:function(e,a,t){"use strict";var i=t(5632);var n=t(6458);var r=t(4715);var o=t(429);e.exports=function callBindBasic(e){if(e.length<1||typeof e[0]!=="function"){throw new n("a function is required")}return o(i,r,e)}},9348:function(e){"use strict";e.exports=typeof Reflect!=="undefined"&&Reflect&&Reflect.apply},5296:function(e,a,t){"use strict";var i=t(8402);var n=t(7063);var r=n([i("%String.prototype.indexOf%")]);e.exports=function callBoundIntrinsic(e,a){var t=i(e,!!a);if(typeof t==="function"&&r(e,".prototype.")>-1){return n([t])}return t}},9101:function(e,a,t){"use strict";
|
|
46
46
|
/*!
|
|
47
47
|
* content-disposition
|
|
48
48
|
* Copyright(c) 2014-2017 Douglas Christopher Wilson
|
|
@@ -70,7 +70,7 @@ var i=t(6928).relative;e.exports=depd;var n=process.cwd();function containsNames
|
|
|
70
70
|
* Copyright(c) 2014 Jonathan Ong
|
|
71
71
|
* Copyright(c) 2015-2022 Douglas Christopher Wilson
|
|
72
72
|
* MIT Licensed
|
|
73
|
-
*/var i=t(4434).EventEmitter;var n=t(9896).ReadStream;var r=t(2203);var o=t(3106);e.exports=destroy;function destroy(e,a){if(isFsReadStream(e)){destroyReadStream(e)}else if(isZlibStream(e)){destroyZlibStream(e)}else if(hasDestroy(e)){e.destroy()}if(isEventEmitter(e)&&a){e.removeAllListeners("error");e.addListener("error",noop)}return e}function destroyReadStream(e){e.destroy();if(typeof e.close==="function"){e.on("open",onOpenClose)}}function closeZlibStream(e){if(e._hadError===true){var a=e._binding===null?"_binding":"_handle";e[a]={close:function(){this[a]=null}}}e.close()}function destroyZlibStream(e){if(typeof e.destroy==="function"){if(e._binding){e.destroy();if(e._processing){e._needDrain=true;e.once("drain",onDrainClearBinding)}else{e._binding.clear()}}else if(e._destroy&&e._destroy!==r.Transform.prototype._destroy){e.destroy()}else if(e._destroy&&typeof e.close==="function"){e.destroyed=true;e.close()}else{e.destroy()}}else if(typeof e.close==="function"){closeZlibStream(e)}}function hasDestroy(e){return e instanceof r&&typeof e.destroy==="function"}function isEventEmitter(e){return e instanceof i}function isFsReadStream(e){return e instanceof n}function isZlibStream(e){return e instanceof o.Gzip||e instanceof o.Gunzip||e instanceof o.Deflate||e instanceof o.DeflateRaw||e instanceof o.Inflate||e instanceof o.InflateRaw||e instanceof o.Unzip}function noop(){}function onDrainClearBinding(){this._binding.clear()}function onOpenClose(){if(typeof this.fd==="number"){this.close()}}},7213:function(e,a,t){"use strict";var i=t(
|
|
73
|
+
*/var i=t(4434).EventEmitter;var n=t(9896).ReadStream;var r=t(2203);var o=t(3106);e.exports=destroy;function destroy(e,a){if(isFsReadStream(e)){destroyReadStream(e)}else if(isZlibStream(e)){destroyZlibStream(e)}else if(hasDestroy(e)){e.destroy()}if(isEventEmitter(e)&&a){e.removeAllListeners("error");e.addListener("error",noop)}return e}function destroyReadStream(e){e.destroy();if(typeof e.close==="function"){e.on("open",onOpenClose)}}function closeZlibStream(e){if(e._hadError===true){var a=e._binding===null?"_binding":"_handle";e[a]={close:function(){this[a]=null}}}e.close()}function destroyZlibStream(e){if(typeof e.destroy==="function"){if(e._binding){e.destroy();if(e._processing){e._needDrain=true;e.once("drain",onDrainClearBinding)}else{e._binding.clear()}}else if(e._destroy&&e._destroy!==r.Transform.prototype._destroy){e.destroy()}else if(e._destroy&&typeof e.close==="function"){e.destroyed=true;e.close()}else{e.destroy()}}else if(typeof e.close==="function"){closeZlibStream(e)}}function hasDestroy(e){return e instanceof r&&typeof e.destroy==="function"}function isEventEmitter(e){return e instanceof i}function isFsReadStream(e){return e instanceof n}function isZlibStream(e){return e instanceof o.Gzip||e instanceof o.Gunzip||e instanceof o.Deflate||e instanceof o.DeflateRaw||e instanceof o.Inflate||e instanceof o.InflateRaw||e instanceof o.Unzip}function noop(){}function onDrainClearBinding(){this._binding.clear()}function onOpenClose(){if(typeof this.fd==="number"){this.close()}}},7213:function(e,a,t){"use strict";var i=t(7063);var n=t(2671);var r;try{r=[].__proto__===Array.prototype}catch(e){if(!e||typeof e!=="object"||!("code"in e)||e.code!=="ERR_PROTO_ACCESS"){throw e}}var o=!!r&&n&&n(Object.prototype,"__proto__");var s=Object;var c=s.getPrototypeOf;e.exports=o&&typeof o.get==="function"?i([o.get]):typeof c==="function"?function getDunder(e){return c(e==null?e:s(e))}:false},953:function(e){"use strict";
|
|
74
74
|
/*!
|
|
75
75
|
* ee-first
|
|
76
76
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -85,7 +85,7 @@ var i=t(6928).relative;e.exports=depd;var n=process.cwd();function containsNames
|
|
|
85
85
|
* encodeurl
|
|
86
86
|
* Copyright(c) 2016 Douglas Christopher Wilson
|
|
87
87
|
* MIT Licensed
|
|
88
|
-
*/e.exports=encodeUrl;var a=/(?:[^\x21\x23-\x3B\x3D\x3F-\x5F\x61-\x7A\x7C\x7E]|%(?:[^0-9A-Fa-f]|[0-9A-Fa-f][^0-9A-Fa-f]|$))+/g;var t=/(^|[^\uD800-\uDBFF])[\uDC00-\uDFFF]|[\uD800-\uDBFF]([^\uDC00-\uDFFF]|$)/g;var i="$1�$2";function encodeUrl(e){return String(e).replace(t,i).replace(a,encodeURI)}},9674:function(e){"use strict";var a=Object.defineProperty||false;if(a){try{a({},"a",{value:1})}catch(e){a=false}}e.exports=a},9224:function(e){"use strict";e.exports=EvalError},4684:function(e){"use strict";e.exports=Error},4433:function(e){"use strict";e.exports=RangeError},7409:function(e){"use strict";e.exports=ReferenceError},1681:function(e){"use strict";e.exports=SyntaxError},6458:function(e){"use strict";e.exports=TypeError},1866:function(e){"use strict";e.exports=URIError},
|
|
88
|
+
*/e.exports=encodeUrl;var a=/(?:[^\x21\x23-\x3B\x3D\x3F-\x5F\x61-\x7A\x7C\x7E]|%(?:[^0-9A-Fa-f]|[0-9A-Fa-f][^0-9A-Fa-f]|$))+/g;var t=/(^|[^\uD800-\uDBFF])[\uDC00-\uDFFF]|[\uD800-\uDBFF]([^\uDC00-\uDFFF]|$)/g;var i="$1�$2";function encodeUrl(e){return String(e).replace(t,i).replace(a,encodeURI)}},9674:function(e){"use strict";var a=Object.defineProperty||false;if(a){try{a({},"a",{value:1})}catch(e){a=false}}e.exports=a},9224:function(e){"use strict";e.exports=EvalError},4684:function(e){"use strict";e.exports=Error},4433:function(e){"use strict";e.exports=RangeError},7409:function(e){"use strict";e.exports=ReferenceError},1681:function(e){"use strict";e.exports=SyntaxError},6458:function(e){"use strict";e.exports=TypeError},1866:function(e){"use strict";e.exports=URIError},3485:function(e){"use strict";e.exports=Object},846:function(e){"use strict";
|
|
89
89
|
/*!
|
|
90
90
|
* escape-html
|
|
91
91
|
* Copyright(c) 2012-2013 TJ Holowaychuk
|
|
@@ -195,13 +195,13 @@ var i=t(6928).relative;e.exports=depd;var n=process.cwd();function containsNames
|
|
|
195
195
|
* Copyright(c) 2012 TJ Holowaychuk
|
|
196
196
|
* Copyright(c) 2016-2017 Douglas Christopher Wilson
|
|
197
197
|
* MIT Licensed
|
|
198
|
-
*/var a=/(?:^|,)\s*?no-cache\s*?(?:,|$)/;e.exports=fresh;function fresh(e,t){var i=e["if-modified-since"];var n=e["if-none-match"];if(!i&&!n){return false}var r=e["cache-control"];if(r&&a.test(r)){return false}if(n&&n!=="*"){var o=t["etag"];if(!o){return false}var s=true;var c=parseTokenList(n);for(var p=0;p<c.length;p++){var l=c[p];if(l===o||l==="W/"+o||"W/"+l===o){s=false;break}}if(s){return false}}if(i){var u=t["last-modified"];var d=!u||!(parseHttpDate(u)<=parseHttpDate(i));if(d){return false}}return true}function parseHttpDate(e){var a=e&&Date.parse(e);return typeof a==="number"?a:NaN}function parseTokenList(e){var a=0;var t=[];var i=0;for(var n=0,r=e.length;n<r;n++){switch(e.charCodeAt(n)){case 32:if(i===a){i=a=n+1}break;case 44:t.push(e.substring(i,a));i=a=n+1;break;default:a=n+1;break}}t.push(e.substring(i,a));return t}},6404:function(e){"use strict";var a="Function.prototype.bind called on incompatible ";var t=Object.prototype.toString;var i=Math.max;var n="[object Function]";var r=function concatty(e,a){var t=[];for(var i=0;i<e.length;i+=1){t[i]=e[i]}for(var n=0;n<a.length;n+=1){t[n+e.length]=a[n]}return t};var o=function slicy(e,a){var t=[];for(var i=a||0,n=0;i<e.length;i+=1,n+=1){t[n]=e[i]}return t};var joiny=function(e,a){var t="";for(var i=0;i<e.length;i+=1){t+=e[i];if(i+1<e.length){t+=a}}return t};e.exports=function bind(e){var s=this;if(typeof s!=="function"||t.apply(s)!==n){throw new TypeError(a+s)}var c=o(arguments,1);var p;var binder=function(){if(this instanceof p){var a=s.apply(this,r(c,arguments));if(Object(a)===a){return a}return this}return s.apply(e,r(c,arguments))};var l=i(0,s.length-c.length);var u=[];for(var d=0;d<l;d++){u[d]="$"+d}p=Function("binder","return function ("+joiny(u,",")+"){ return binder.apply(this,arguments); }")(binder);if(s.prototype){var f=function Empty(){};f.prototype=s.prototype;p.prototype=new f;f.prototype=null}return p}},5632:function(e,a,t){"use strict";var i=t(6404);e.exports=Function.prototype.bind||i},3987:function(e,a,t){"use strict";var i;var n=t(7241);var r=t(4684);var o=t(9224);var s=t(4433);var c=t(7409);var p=t(1681);var l=t(6458);var u=t(1866);var d=t(4328);var f=t(422);var m=t(1378);var v=t(7388);var x=t(526);var h=Function;var getEvalledConstructor=function(e){try{return h('"use strict"; return ('+e+").constructor;")()}catch(e){}};var g=t(2671);var b=t(9674);var throwTypeError=function(){throw new l};var y=g?function(){try{arguments.callee;return throwTypeError}catch(e){try{return g(arguments,"callee").get}catch(e){return throwTypeError}}}():throwTypeError;var w=t(9718)();var k=t(7213);var S=typeof Reflect==="function"&&Reflect.getPrototypeOf||n.getPrototypeOf||k;var j=t(5024);var E=t(9570);var C={};var A=typeof Uint8Array==="undefined"||!S?i:S(Uint8Array);var _={__proto__:null,"%AggregateError%":typeof AggregateError==="undefined"?i:AggregateError,"%Array%":Array,"%ArrayBuffer%":typeof ArrayBuffer==="undefined"?i:ArrayBuffer,"%ArrayIteratorPrototype%":w&&S?S([][Symbol.iterator]()):i,"%AsyncFromSyncIteratorPrototype%":i,"%AsyncFunction%":C,"%AsyncGenerator%":C,"%AsyncGeneratorFunction%":C,"%AsyncIteratorPrototype%":C,"%Atomics%":typeof Atomics==="undefined"?i:Atomics,"%BigInt%":typeof BigInt==="undefined"?i:BigInt,"%BigInt64Array%":typeof BigInt64Array==="undefined"?i:BigInt64Array,"%BigUint64Array%":typeof BigUint64Array==="undefined"?i:BigUint64Array,"%Boolean%":Boolean,"%DataView%":typeof DataView==="undefined"?i:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":r,"%eval%":eval,"%EvalError%":o,"%Float32Array%":typeof Float32Array==="undefined"?i:Float32Array,"%Float64Array%":typeof Float64Array==="undefined"?i:Float64Array,"%FinalizationRegistry%":typeof FinalizationRegistry==="undefined"?i:FinalizationRegistry,"%Function%":h,"%GeneratorFunction%":C,"%Int8Array%":typeof Int8Array==="undefined"?i:Int8Array,"%Int16Array%":typeof Int16Array==="undefined"?i:Int16Array,"%Int32Array%":typeof Int32Array==="undefined"?i:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":w&&S?S(S([][Symbol.iterator]())):i,"%JSON%":typeof JSON==="object"?JSON:i,"%Map%":typeof Map==="undefined"?i:Map,"%MapIteratorPrototype%":typeof Map==="undefined"||!w||!S?i:S((new Map)[Symbol.iterator]()),"%Math%":Math,"%Number%":Number,"%Object%":n,"%Object.getOwnPropertyDescriptor%":g,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":typeof Promise==="undefined"?i:Promise,"%Proxy%":typeof Proxy==="undefined"?i:Proxy,"%RangeError%":s,"%ReferenceError%":c,"%Reflect%":typeof Reflect==="undefined"?i:Reflect,"%RegExp%":RegExp,"%Set%":typeof Set==="undefined"?i:Set,"%SetIteratorPrototype%":typeof Set==="undefined"||!w||!S?i:S((new Set)[Symbol.iterator]()),"%SharedArrayBuffer%":typeof SharedArrayBuffer==="undefined"?i:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":w&&S?S(""[Symbol.iterator]()):i,"%Symbol%":w?Symbol:i,"%SyntaxError%":p,"%ThrowTypeError%":y,"%TypedArray%":A,"%TypeError%":l,"%Uint8Array%":typeof Uint8Array==="undefined"?i:Uint8Array,"%Uint8ClampedArray%":typeof Uint8ClampedArray==="undefined"?i:Uint8ClampedArray,"%Uint16Array%":typeof Uint16Array==="undefined"?i:Uint16Array,"%Uint32Array%":typeof Uint32Array==="undefined"?i:Uint32Array,"%URIError%":u,"%WeakMap%":typeof WeakMap==="undefined"?i:WeakMap,"%WeakRef%":typeof WeakRef==="undefined"?i:WeakRef,"%WeakSet%":typeof WeakSet==="undefined"?i:WeakSet,"%Function.prototype.call%":E,"%Function.prototype.apply%":j,"%Object.defineProperty%":b,"%Math.abs%":d,"%Math.floor%":f,"%Math.max%":m,"%Math.min%":v,"%Math.pow%":x};if(S){try{null.error}catch(e){var T=S(S(e));_["%Error.prototype%"]=T}}var O=function doEval(e){var a;if(e==="%AsyncFunction%"){a=getEvalledConstructor("async function () {}")}else if(e==="%GeneratorFunction%"){a=getEvalledConstructor("function* () {}")}else if(e==="%AsyncGeneratorFunction%"){a=getEvalledConstructor("async function* () {}")}else if(e==="%AsyncGenerator%"){var t=doEval("%AsyncGeneratorFunction%");if(t){a=t.prototype}}else if(e==="%AsyncIteratorPrototype%"){var i=doEval("%AsyncGenerator%");if(i&&S){a=S(i.prototype)}}_[e]=a;return a};var I={__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"]};var P=t(5632);var q=t(2618);var z=P.call(E,Array.prototype.concat);var B=P.call(j,Array.prototype.splice);var D=P.call(E,String.prototype.replace);var N=P.call(E,String.prototype.slice);var L=P.call(E,RegExp.prototype.exec);var F=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g;var M=/\\(\\)?/g;var R=function stringToPath(e){var a=N(e,0,1);var t=N(e,-1);if(a==="%"&&t!=="%"){throw new p("invalid intrinsic syntax, expected closing `%`")}else if(t==="%"&&a!=="%"){throw new p("invalid intrinsic syntax, expected opening `%`")}var i=[];D(e,F,(function(e,a,t,n){i[i.length]=t?D(n,M,"$1"):a||e}));return i};var U=function getBaseIntrinsic(e,a){var t=e;var i;if(q(I,t)){i=I[t];t="%"+i[0]+"%"}if(q(_,t)){var n=_[t];if(n===C){n=O(t)}if(typeof n==="undefined"&&!a){throw new l("intrinsic "+e+" exists, but is not available. Please file an issue!")}return{alias:i,name:t,value:n}}throw new p("intrinsic "+e+" does not exist!")};e.exports=function GetIntrinsic(e,a){if(typeof e!=="string"||e.length===0){throw new l("intrinsic name must be a non-empty string")}if(arguments.length>1&&typeof a!=="boolean"){throw new l('"allowMissing" argument must be a boolean')}if(L(/^%?[^%]*%?$/,e)===null){throw new p("`%` may not be present anywhere but at the beginning and end of the intrinsic name")}var t=R(e);var n=t.length>0?t[0]:"";var r=U("%"+n+"%",a);var o=r.name;var s=r.value;var c=false;var u=r.alias;if(u){n=u[0];B(t,z([0,1],u))}for(var d=1,f=true;d<t.length;d+=1){var m=t[d];var v=N(m,0,1);var x=N(m,-1);if((v==='"'||v==="'"||v==="`"||(x==='"'||x==="'"||x==="`"))&&v!==x){throw new p("property names with quotes must have matching quotes")}if(m==="constructor"||!f){c=true}n+="."+m;o="%"+n+"%";if(q(_,o)){s=_[o]}else if(s!=null){if(!(m in s)){if(!a){throw new l("base intrinsic for "+e+" exists, but the property is not available.")}return void i}if(g&&d+1>=t.length){var h=g(s,m);f=!!h;if(f&&"get"in h&&!("originalValue"in h.get)){s=h.get}else{s=s[m]}}else{f=q(s,m);s=s[m]}if(f&&!c){_[o]=s}}}return s}},7401:function(e){"use strict";e.exports=Object.getOwnPropertyDescriptor},2671:function(e,a,t){"use strict";var i=t(7401);if(i){try{i([],"length")}catch(e){i=null}}e.exports=i},9718:function(e,a,t){"use strict";var i=typeof Symbol!=="undefined"&&Symbol;var n=t(6044);e.exports=function hasNativeSymbols(){if(typeof i!=="function"){return false}if(typeof Symbol!=="function"){return false}if(typeof i("foo")!=="symbol"){return false}if(typeof Symbol("bar")!=="symbol"){return false}return n()}},6044:function(e){"use strict";e.exports=function hasSymbols(){if(typeof Symbol!=="function"||typeof Object.getOwnPropertySymbols!=="function"){return false}if(typeof Symbol.iterator==="symbol"){return true}var e={};var a=Symbol("test");var t=Object(a);if(typeof a==="string"){return false}if(Object.prototype.toString.call(a)!=="[object Symbol]"){return false}if(Object.prototype.toString.call(t)!=="[object Symbol]"){return false}var i=42;e[a]=i;for(var n in e){return false}if(typeof Object.keys==="function"&&Object.keys(e).length!==0){return false}if(typeof Object.getOwnPropertyNames==="function"&&Object.getOwnPropertyNames(e).length!==0){return false}var r=Object.getOwnPropertySymbols(e);if(r.length!==1||r[0]!==a){return false}if(!Object.prototype.propertyIsEnumerable.call(e,a)){return false}if(typeof Object.getOwnPropertyDescriptor==="function"){var o=Object.getOwnPropertyDescriptor(e,a);if(o.value!==i||o.enumerable!==true){return false}}return true}},2618:function(e,a,t){"use strict";var i=Function.prototype.call;var n=Object.prototype.hasOwnProperty;var r=t(5632);e.exports=r.call(i,n)},4700:function(e,a,t){"use strict";
|
|
198
|
+
*/var a=/(?:^|,)\s*?no-cache\s*?(?:,|$)/;e.exports=fresh;function fresh(e,t){var i=e["if-modified-since"];var n=e["if-none-match"];if(!i&&!n){return false}var r=e["cache-control"];if(r&&a.test(r)){return false}if(n&&n!=="*"){var o=t["etag"];if(!o){return false}var s=true;var c=parseTokenList(n);for(var p=0;p<c.length;p++){var l=c[p];if(l===o||l==="W/"+o||"W/"+l===o){s=false;break}}if(s){return false}}if(i){var u=t["last-modified"];var d=!u||!(parseHttpDate(u)<=parseHttpDate(i));if(d){return false}}return true}function parseHttpDate(e){var a=e&&Date.parse(e);return typeof a==="number"?a:NaN}function parseTokenList(e){var a=0;var t=[];var i=0;for(var n=0,r=e.length;n<r;n++){switch(e.charCodeAt(n)){case 32:if(i===a){i=a=n+1}break;case 44:t.push(e.substring(i,a));i=a=n+1;break;default:a=n+1;break}}t.push(e.substring(i,a));return t}},6404:function(e){"use strict";var a="Function.prototype.bind called on incompatible ";var t=Object.prototype.toString;var i=Math.max;var n="[object Function]";var r=function concatty(e,a){var t=[];for(var i=0;i<e.length;i+=1){t[i]=e[i]}for(var n=0;n<a.length;n+=1){t[n+e.length]=a[n]}return t};var o=function slicy(e,a){var t=[];for(var i=a||0,n=0;i<e.length;i+=1,n+=1){t[n]=e[i]}return t};var joiny=function(e,a){var t="";for(var i=0;i<e.length;i+=1){t+=e[i];if(i+1<e.length){t+=a}}return t};e.exports=function bind(e){var s=this;if(typeof s!=="function"||t.apply(s)!==n){throw new TypeError(a+s)}var c=o(arguments,1);var p;var binder=function(){if(this instanceof p){var a=s.apply(this,r(c,arguments));if(Object(a)===a){return a}return this}return s.apply(e,r(c,arguments))};var l=i(0,s.length-c.length);var u=[];for(var d=0;d<l;d++){u[d]="$"+d}p=Function("binder","return function ("+joiny(u,",")+"){ return binder.apply(this,arguments); }")(binder);if(s.prototype){var f=function Empty(){};f.prototype=s.prototype;p.prototype=new f;f.prototype=null}return p}},5632:function(e,a,t){"use strict";var i=t(6404);e.exports=Function.prototype.bind||i},8402:function(e,a,t){"use strict";var i;var n=t(3485);var r=t(4684);var o=t(9224);var s=t(4433);var c=t(7409);var p=t(1681);var l=t(6458);var u=t(1866);var d=t(4328);var f=t(422);var m=t(1378);var v=t(7388);var x=t(526);var h=t(7816);var g=t(9947);var b=Function;var getEvalledConstructor=function(e){try{return b('"use strict"; return ('+e+").constructor;")()}catch(e){}};var y=t(2671);var w=t(9674);var throwTypeError=function(){throw new l};var k=y?function(){try{arguments.callee;return throwTypeError}catch(e){try{return y(arguments,"callee").get}catch(e){return throwTypeError}}}():throwTypeError;var S=t(9718)();var j=t(9272);var E=t(5932);var C=t(3172);var A=t(9831);var _=t(4715);var T={};var O=typeof Uint8Array==="undefined"||!j?i:j(Uint8Array);var I={__proto__:null,"%AggregateError%":typeof AggregateError==="undefined"?i:AggregateError,"%Array%":Array,"%ArrayBuffer%":typeof ArrayBuffer==="undefined"?i:ArrayBuffer,"%ArrayIteratorPrototype%":S&&j?j([][Symbol.iterator]()):i,"%AsyncFromSyncIteratorPrototype%":i,"%AsyncFunction%":T,"%AsyncGenerator%":T,"%AsyncGeneratorFunction%":T,"%AsyncIteratorPrototype%":T,"%Atomics%":typeof Atomics==="undefined"?i:Atomics,"%BigInt%":typeof BigInt==="undefined"?i:BigInt,"%BigInt64Array%":typeof BigInt64Array==="undefined"?i:BigInt64Array,"%BigUint64Array%":typeof BigUint64Array==="undefined"?i:BigUint64Array,"%Boolean%":Boolean,"%DataView%":typeof DataView==="undefined"?i:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":r,"%eval%":eval,"%EvalError%":o,"%Float32Array%":typeof Float32Array==="undefined"?i:Float32Array,"%Float64Array%":typeof Float64Array==="undefined"?i:Float64Array,"%FinalizationRegistry%":typeof FinalizationRegistry==="undefined"?i:FinalizationRegistry,"%Function%":b,"%GeneratorFunction%":T,"%Int8Array%":typeof Int8Array==="undefined"?i:Int8Array,"%Int16Array%":typeof Int16Array==="undefined"?i:Int16Array,"%Int32Array%":typeof Int32Array==="undefined"?i:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":S&&j?j(j([][Symbol.iterator]())):i,"%JSON%":typeof JSON==="object"?JSON:i,"%Map%":typeof Map==="undefined"?i:Map,"%MapIteratorPrototype%":typeof Map==="undefined"||!S||!j?i:j((new Map)[Symbol.iterator]()),"%Math%":Math,"%Number%":Number,"%Object%":n,"%Object.getOwnPropertyDescriptor%":y,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":typeof Promise==="undefined"?i:Promise,"%Proxy%":typeof Proxy==="undefined"?i:Proxy,"%RangeError%":s,"%ReferenceError%":c,"%Reflect%":typeof Reflect==="undefined"?i:Reflect,"%RegExp%":RegExp,"%Set%":typeof Set==="undefined"?i:Set,"%SetIteratorPrototype%":typeof Set==="undefined"||!S||!j?i:j((new Set)[Symbol.iterator]()),"%SharedArrayBuffer%":typeof SharedArrayBuffer==="undefined"?i:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":S&&j?j(""[Symbol.iterator]()):i,"%Symbol%":S?Symbol:i,"%SyntaxError%":p,"%ThrowTypeError%":k,"%TypedArray%":O,"%TypeError%":l,"%Uint8Array%":typeof Uint8Array==="undefined"?i:Uint8Array,"%Uint8ClampedArray%":typeof Uint8ClampedArray==="undefined"?i:Uint8ClampedArray,"%Uint16Array%":typeof Uint16Array==="undefined"?i:Uint16Array,"%Uint32Array%":typeof Uint32Array==="undefined"?i:Uint32Array,"%URIError%":u,"%WeakMap%":typeof WeakMap==="undefined"?i:WeakMap,"%WeakRef%":typeof WeakRef==="undefined"?i:WeakRef,"%WeakSet%":typeof WeakSet==="undefined"?i:WeakSet,"%Function.prototype.call%":_,"%Function.prototype.apply%":A,"%Object.defineProperty%":w,"%Object.getPrototypeOf%":E,"%Math.abs%":d,"%Math.floor%":f,"%Math.max%":m,"%Math.min%":v,"%Math.pow%":x,"%Math.round%":h,"%Math.sign%":g,"%Reflect.getPrototypeOf%":C};if(j){try{null.error}catch(e){var P=j(j(e));I["%Error.prototype%"]=P}}var q=function doEval(e){var a;if(e==="%AsyncFunction%"){a=getEvalledConstructor("async function () {}")}else if(e==="%GeneratorFunction%"){a=getEvalledConstructor("function* () {}")}else if(e==="%AsyncGeneratorFunction%"){a=getEvalledConstructor("async function* () {}")}else if(e==="%AsyncGenerator%"){var t=doEval("%AsyncGeneratorFunction%");if(t){a=t.prototype}}else if(e==="%AsyncIteratorPrototype%"){var i=doEval("%AsyncGenerator%");if(i&&j){a=j(i.prototype)}}I[e]=a;return a};var z={__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"]};var B=t(5632);var D=t(2618);var N=B.call(_,Array.prototype.concat);var L=B.call(A,Array.prototype.splice);var M=B.call(_,String.prototype.replace);var F=B.call(_,String.prototype.slice);var R=B.call(_,RegExp.prototype.exec);var U=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g;var H=/\\(\\)?/g;var $=function stringToPath(e){var a=F(e,0,1);var t=F(e,-1);if(a==="%"&&t!=="%"){throw new p("invalid intrinsic syntax, expected closing `%`")}else if(t==="%"&&a!=="%"){throw new p("invalid intrinsic syntax, expected opening `%`")}var i=[];M(e,U,(function(e,a,t,n){i[i.length]=t?M(n,H,"$1"):a||e}));return i};var W=function getBaseIntrinsic(e,a){var t=e;var i;if(D(z,t)){i=z[t];t="%"+i[0]+"%"}if(D(I,t)){var n=I[t];if(n===T){n=q(t)}if(typeof n==="undefined"&&!a){throw new l("intrinsic "+e+" exists, but is not available. Please file an issue!")}return{alias:i,name:t,value:n}}throw new p("intrinsic "+e+" does not exist!")};e.exports=function GetIntrinsic(e,a){if(typeof e!=="string"||e.length===0){throw new l("intrinsic name must be a non-empty string")}if(arguments.length>1&&typeof a!=="boolean"){throw new l('"allowMissing" argument must be a boolean')}if(R(/^%?[^%]*%?$/,e)===null){throw new p("`%` may not be present anywhere but at the beginning and end of the intrinsic name")}var t=$(e);var n=t.length>0?t[0]:"";var r=W("%"+n+"%",a);var o=r.name;var s=r.value;var c=false;var u=r.alias;if(u){n=u[0];L(t,N([0,1],u))}for(var d=1,f=true;d<t.length;d+=1){var m=t[d];var v=F(m,0,1);var x=F(m,-1);if((v==='"'||v==="'"||v==="`"||(x==='"'||x==="'"||x==="`"))&&v!==x){throw new p("property names with quotes must have matching quotes")}if(m==="constructor"||!f){c=true}n+="."+m;o="%"+n+"%";if(D(I,o)){s=I[o]}else if(s!=null){if(!(m in s)){if(!a){throw new l("base intrinsic for "+e+" exists, but the property is not available.")}return void i}if(y&&d+1>=t.length){var h=y(s,m);f=!!h;if(f&&"get"in h&&!("originalValue"in h.get)){s=h.get}else{s=s[m]}}else{f=D(s,m);s=s[m]}if(f&&!c){I[o]=s}}}return s}},5932:function(e,a,t){"use strict";var i=t(3485);e.exports=i.getPrototypeOf||null},3172:function(e){"use strict";e.exports=typeof Reflect!=="undefined"&&Reflect.getPrototypeOf||null},9272:function(e,a,t){"use strict";var i=t(3172);var n=t(5932);var r=t(7213);e.exports=i?function getProto(e){return i(e)}:n?function getProto(e){if(!e||typeof e!=="object"&&typeof e!=="function"){throw new TypeError("getProto: not an object")}return n(e)}:r?function getProto(e){return r(e)}:null},7401:function(e){"use strict";e.exports=Object.getOwnPropertyDescriptor},2671:function(e,a,t){"use strict";var i=t(7401);if(i){try{i([],"length")}catch(e){i=null}}e.exports=i},9718:function(e,a,t){"use strict";var i=typeof Symbol!=="undefined"&&Symbol;var n=t(6044);e.exports=function hasNativeSymbols(){if(typeof i!=="function"){return false}if(typeof Symbol!=="function"){return false}if(typeof i("foo")!=="symbol"){return false}if(typeof Symbol("bar")!=="symbol"){return false}return n()}},6044:function(e){"use strict";e.exports=function hasSymbols(){if(typeof Symbol!=="function"||typeof Object.getOwnPropertySymbols!=="function"){return false}if(typeof Symbol.iterator==="symbol"){return true}var e={};var a=Symbol("test");var t=Object(a);if(typeof a==="string"){return false}if(Object.prototype.toString.call(a)!=="[object Symbol]"){return false}if(Object.prototype.toString.call(t)!=="[object Symbol]"){return false}var i=42;e[a]=i;for(var n in e){return false}if(typeof Object.keys==="function"&&Object.keys(e).length!==0){return false}if(typeof Object.getOwnPropertyNames==="function"&&Object.getOwnPropertyNames(e).length!==0){return false}var r=Object.getOwnPropertySymbols(e);if(r.length!==1||r[0]!==a){return false}if(!Object.prototype.propertyIsEnumerable.call(e,a)){return false}if(typeof Object.getOwnPropertyDescriptor==="function"){var o=Object.getOwnPropertyDescriptor(e,a);if(o.value!==i||o.enumerable!==true){return false}}return true}},2618:function(e,a,t){"use strict";var i=Function.prototype.call;var n=Object.prototype.hasOwnProperty;var r=t(5632);e.exports=r.call(i,n)},4700:function(e,a,t){"use strict";
|
|
199
199
|
/*!
|
|
200
200
|
* http-errors
|
|
201
201
|
* Copyright(c) 2014 Jonathan Ong
|
|
202
202
|
* Copyright(c) 2016 Douglas Christopher Wilson
|
|
203
203
|
* MIT Licensed
|
|
204
|
-
*/var i=t(7500)("http-errors");var n=t(99);var r=t(1443);var o=t(4070);var s=t(9050);e.exports=createError;e.exports.HttpError=createHttpErrorConstructor();e.exports.isHttpError=createIsHttpErrorFunction(e.exports.HttpError);populateConstructorExports(e.exports,r.codes,e.exports.HttpError);function codeClass(e){return Number(String(e).charAt(0)+"00")}function createError(){var e;var a;var t=500;var n={};for(var o=0;o<arguments.length;o++){var s=arguments[o];var c=typeof s;if(c==="object"&&s instanceof Error){e=s;t=e.status||e.statusCode||t}else if(c==="number"&&o===0){t=s}else if(c==="string"){a=s}else if(c==="object"){n=s}else{throw new TypeError("argument #"+(o+1)+" unsupported type "+c)}}if(typeof t==="number"&&(t<400||t>=600)){i("non-error status code; use only 4xx or 5xx status codes")}if(typeof t!=="number"||!r.message[t]&&(t<400||t>=600)){t=500}var p=createError[t]||createError[codeClass(t)];if(!e){e=p?new p(a):new Error(a||r.message[t]);Error.captureStackTrace(e,createError)}if(!p||!(e instanceof p)||e.status!==t){e.expose=t<500;e.status=e.statusCode=t}for(var l in n){if(l!=="status"&&l!=="statusCode"){e[l]=n[l]}}return e}function createHttpErrorConstructor(){function HttpError(){throw new TypeError("cannot construct abstract class")}o(HttpError,Error);return HttpError}function createClientErrorConstructor(e,a,t){var i=toClassName(a);function ClientError(e){var a=e!=null?e:r.message[t];var o=new Error(a);Error.captureStackTrace(o,ClientError);n(o,ClientError.prototype);Object.defineProperty(o,"message",{enumerable:true,configurable:true,value:a,writable:true});Object.defineProperty(o,"name",{enumerable:false,configurable:true,value:i,writable:true});return o}o(ClientError,e);nameFunc(ClientError,i);ClientError.prototype.status=t;ClientError.prototype.statusCode=t;ClientError.prototype.expose=true;return ClientError}function createIsHttpErrorFunction(e){return function isHttpError(a){if(!a||typeof a!=="object"){return false}if(a instanceof e){return true}return a instanceof Error&&typeof a.expose==="boolean"&&typeof a.statusCode==="number"&&a.status===a.statusCode}}function createServerErrorConstructor(e,a,t){var i=toClassName(a);function ServerError(e){var a=e!=null?e:r.message[t];var o=new Error(a);Error.captureStackTrace(o,ServerError);n(o,ServerError.prototype);Object.defineProperty(o,"message",{enumerable:true,configurable:true,value:a,writable:true});Object.defineProperty(o,"name",{enumerable:false,configurable:true,value:i,writable:true});return o}o(ServerError,e);nameFunc(ServerError,i);ServerError.prototype.status=t;ServerError.prototype.statusCode=t;ServerError.prototype.expose=false;return ServerError}function nameFunc(e,a){var t=Object.getOwnPropertyDescriptor(e,"name");if(t&&t.configurable){t.value=a;Object.defineProperty(e,"name",t)}}function populateConstructorExports(e,a,t){a.forEach((function forEachCode(a){var i;var n=s(r.message[a]);switch(codeClass(a)){case 400:i=createClientErrorConstructor(t,n,a);break;case 500:i=createServerErrorConstructor(t,n,a);break}if(i){e[a]=i;e[n]=i}}))}function toClassName(e){return e.substr(-5)!=="Error"?e+"Error":e}},1350:function(e,a,t){"use strict";var i=t(9392).Buffer;a._dbcs=DBCSCodec;var n=-1,r=-2,o=-10,s=-1e3,c=new Array(256),p=-1;for(var l=0;l<256;l++)c[l]=n;function DBCSCodec(e,a){this.encodingName=e.encodingName;if(!e)throw new Error("DBCS codec is called without the data.");if(!e.table)throw new Error("Encoding '"+this.encodingName+"' has no data.");var t=e.table();this.decodeTables=[];this.decodeTables[0]=c.slice(0);this.decodeTableSeq=[];for(var i=0;i<t.length;i++)this._addDecodeChunk(t[i]);this.defaultCharUnicode=a.defaultCharUnicode;this.encodeTable=[];this.encodeTableSeq=[];var o={};if(e.encodeSkipVals)for(var i=0;i<e.encodeSkipVals.length;i++){var p=e.encodeSkipVals[i];if(typeof p==="number")o[p]=true;else for(var l=p.from;l<=p.to;l++)o[l]=true}this._fillEncodeTable(0,0,o);if(e.encodeAdd){for(var u in e.encodeAdd)if(Object.prototype.hasOwnProperty.call(e.encodeAdd,u))this._setEncodeChar(u.charCodeAt(0),e.encodeAdd[u])}this.defCharSB=this.encodeTable[0][a.defaultCharSingleByte.charCodeAt(0)];if(this.defCharSB===n)this.defCharSB=this.encodeTable[0]["?"];if(this.defCharSB===n)this.defCharSB="?".charCodeAt(0);if(typeof e.gb18030==="function"){this.gb18030=e.gb18030();var d=this.decodeTables.length;var f=this.decodeTables[d]=c.slice(0);var m=this.decodeTables.length;var v=this.decodeTables[m]=c.slice(0);for(var i=129;i<=254;i++){var x=s-this.decodeTables[0][i];var h=this.decodeTables[x];for(var l=48;l<=57;l++)h[l]=s-d}for(var i=129;i<=254;i++)f[i]=s-m;for(var i=48;i<=57;i++)v[i]=r}}DBCSCodec.prototype.encoder=DBCSEncoder;DBCSCodec.prototype.decoder=DBCSDecoder;DBCSCodec.prototype._getDecodeTrieNode=function(e){var a=[];for(;e>0;e>>=8)a.push(e&255);if(a.length==0)a.push(0);var t=this.decodeTables[0];for(var i=a.length-1;i>0;i--){var r=t[a[i]];if(r==n){t[a[i]]=s-this.decodeTables.length;this.decodeTables.push(t=c.slice(0))}else if(r<=s){t=this.decodeTables[s-r]}else throw new Error("Overwrite byte in "+this.encodingName+", addr: "+e.toString(16))}return t};DBCSCodec.prototype._addDecodeChunk=function(e){var a=parseInt(e[0],16);var t=this._getDecodeTrieNode(a);a=a&255;for(var i=1;i<e.length;i++){var n=e[i];if(typeof n==="string"){for(var r=0;r<n.length;){var s=n.charCodeAt(r++);if(55296<=s&&s<56320){var c=n.charCodeAt(r++);if(56320<=c&&c<57344)t[a++]=65536+(s-55296)*1024+(c-56320);else throw new Error("Incorrect surrogate pair in "+this.encodingName+" at chunk "+e[0])}else if(4080<s&&s<=4095){var p=4095-s+2;var l=[];for(var u=0;u<p;u++)l.push(n.charCodeAt(r++));t[a++]=o-this.decodeTableSeq.length;this.decodeTableSeq.push(l)}else t[a++]=s}}else if(typeof n==="number"){var d=t[a-1]+1;for(var r=0;r<n;r++)t[a++]=d++}else throw new Error("Incorrect type '"+typeof n+"' given in "+this.encodingName+" at chunk "+e[0])}if(a>255)throw new Error("Incorrect chunk in "+this.encodingName+" at addr "+e[0]+": too long"+a)};DBCSCodec.prototype._getEncodeBucket=function(e){var a=e>>8;if(this.encodeTable[a]===undefined)this.encodeTable[a]=c.slice(0);return this.encodeTable[a]};DBCSCodec.prototype._setEncodeChar=function(e,a){var t=this._getEncodeBucket(e);var i=e&255;if(t[i]<=o)this.encodeTableSeq[o-t[i]][p]=a;else if(t[i]==n)t[i]=a};DBCSCodec.prototype._setEncodeSequence=function(e,a){var t=e[0];var i=this._getEncodeBucket(t);var r=t&255;var s;if(i[r]<=o){s=this.encodeTableSeq[o-i[r]]}else{s={};if(i[r]!==n)s[p]=i[r];i[r]=o-this.encodeTableSeq.length;this.encodeTableSeq.push(s)}for(var c=1;c<e.length-1;c++){var l=s[t];if(typeof l==="object")s=l;else{s=s[t]={};if(l!==undefined)s[p]=l}}t=e[e.length-1];s[t]=a};DBCSCodec.prototype._fillEncodeTable=function(e,a,t){var i=this.decodeTables[e];for(var n=0;n<256;n++){var r=i[n];var c=a+n;if(t[c])continue;if(r>=0)this._setEncodeChar(r,c);else if(r<=s)this._fillEncodeTable(s-r,c<<8,t);else if(r<=o)this._setEncodeSequence(this.decodeTableSeq[o-r],c)}};function DBCSEncoder(e,a){this.leadSurrogate=-1;this.seqObj=undefined;this.encodeTable=a.encodeTable;this.encodeTableSeq=a.encodeTableSeq;this.defaultCharSingleByte=a.defCharSB;this.gb18030=a.gb18030}DBCSEncoder.prototype.write=function(e){var a=i.alloc(e.length*(this.gb18030?4:3)),t=this.leadSurrogate,r=this.seqObj,s=-1,c=0,l=0;while(true){if(s===-1){if(c==e.length)break;var u=e.charCodeAt(c++)}else{var u=s;s=-1}if(55296<=u&&u<57344){if(u<56320){if(t===-1){t=u;continue}else{t=u;u=n}}else{if(t!==-1){u=65536+(t-55296)*1024+(u-56320);t=-1}else{u=n}}}else if(t!==-1){s=u;u=n;t=-1}var d=n;if(r!==undefined&&u!=n){var f=r[u];if(typeof f==="object"){r=f;continue}else if(typeof f=="number"){d=f}else if(f==undefined){f=r[p];if(f!==undefined){d=f;s=u}else{}}r=undefined}else if(u>=0){var m=this.encodeTable[u>>8];if(m!==undefined)d=m[u&255];if(d<=o){r=this.encodeTableSeq[o-d];continue}if(d==n&&this.gb18030){var v=findIdx(this.gb18030.uChars,u);if(v!=-1){var d=this.gb18030.gbChars[v]+(u-this.gb18030.uChars[v]);a[l++]=129+Math.floor(d/12600);d=d%12600;a[l++]=48+Math.floor(d/1260);d=d%1260;a[l++]=129+Math.floor(d/10);d=d%10;a[l++]=48+d;continue}}}if(d===n)d=this.defaultCharSingleByte;if(d<256){a[l++]=d}else if(d<65536){a[l++]=d>>8;a[l++]=d&255}else{a[l++]=d>>16;a[l++]=d>>8&255;a[l++]=d&255}}this.seqObj=r;this.leadSurrogate=t;return a.slice(0,l)};DBCSEncoder.prototype.end=function(){if(this.leadSurrogate===-1&&this.seqObj===undefined)return;var e=i.alloc(10),a=0;if(this.seqObj){var t=this.seqObj[p];if(t!==undefined){if(t<256){e[a++]=t}else{e[a++]=t>>8;e[a++]=t&255}}else{}this.seqObj=undefined}if(this.leadSurrogate!==-1){e[a++]=this.defaultCharSingleByte;this.leadSurrogate=-1}return e.slice(0,a)};DBCSEncoder.prototype.findIdx=findIdx;function DBCSDecoder(e,a){this.nodeIdx=0;this.prevBuf=i.alloc(0);this.decodeTables=a.decodeTables;this.decodeTableSeq=a.decodeTableSeq;this.defaultCharUnicode=a.defaultCharUnicode;this.gb18030=a.gb18030}DBCSDecoder.prototype.write=function(e){var a=i.alloc(e.length*2),t=this.nodeIdx,c=this.prevBuf,p=this.prevBuf.length,l=-this.prevBuf.length,u;if(p>0)c=i.concat([c,e.slice(0,10)]);for(var d=0,f=0;d<e.length;d++){var m=d>=0?e[d]:c[d+p];var u=this.decodeTables[t][m];if(u>=0){}else if(u===n){d=l;u=this.defaultCharUnicode.charCodeAt(0)}else if(u===r){var v=l>=0?e.slice(l,d+1):c.slice(l+p,d+1+p);var x=(v[0]-129)*12600+(v[1]-48)*1260+(v[2]-129)*10+(v[3]-48);var h=findIdx(this.gb18030.gbChars,x);u=this.gb18030.uChars[h]+x-this.gb18030.gbChars[h]}else if(u<=s){t=s-u;continue}else if(u<=o){var g=this.decodeTableSeq[o-u];for(var b=0;b<g.length-1;b++){u=g[b];a[f++]=u&255;a[f++]=u>>8}u=g[g.length-1]}else throw new Error("iconv-lite internal error: invalid decoding table value "+u+" at "+t+"/"+m);if(u>65535){u-=65536;var y=55296+Math.floor(u/1024);a[f++]=y&255;a[f++]=y>>8;u=56320+u%1024}a[f++]=u&255;a[f++]=u>>8;t=0;l=d+1}this.nodeIdx=t;this.prevBuf=l>=0?e.slice(l):c.slice(l+p);return a.slice(0,f).toString("ucs2")};DBCSDecoder.prototype.end=function(){var e="";while(this.prevBuf.length>0){e+=this.defaultCharUnicode;var a=this.prevBuf.slice(1);this.prevBuf=i.alloc(0);this.nodeIdx=0;if(a.length>0)e+=this.write(a)}this.nodeIdx=0;return e};function findIdx(e,a){if(e[0]>a)return-1;var t=0,i=e.length;while(t<i-1){var n=t+Math.floor((i-t+1)/2);if(e[n]<=a)t=n;else i=n}return t}},7862:function(e,a,t){"use strict";e.exports={shiftjis:{type:"_dbcs",table:function(){return t(4227)},encodeAdd:{"¥":92,"‾":126},encodeSkipVals:[{from:60736,to:63808}]},csshiftjis:"shiftjis",mskanji:"shiftjis",sjis:"shiftjis",windows31j:"shiftjis",ms31j:"shiftjis",xsjis:"shiftjis",windows932:"shiftjis",ms932:"shiftjis",932:"shiftjis",cp932:"shiftjis",eucjp:{type:"_dbcs",table:function(){return t(9594)},encodeAdd:{"¥":92,"‾":126}},gb2312:"cp936",gb231280:"cp936",gb23121980:"cp936",csgb2312:"cp936",csiso58gb231280:"cp936",euccn:"cp936",windows936:"cp936",ms936:"cp936",936:"cp936",cp936:{type:"_dbcs",table:function(){return t(1716)}},gbk:{type:"_dbcs",table:function(){return t(1716).concat(t(8174))}},xgbk:"gbk",isoir58:"gbk",gb18030:{type:"_dbcs",table:function(){return t(1716).concat(t(8174))},gb18030:function(){return t(1565)},encodeSkipVals:[128],encodeAdd:{"€":41699}},chinese:"gb18030",windows949:"cp949",ms949:"cp949",949:"cp949",cp949:{type:"_dbcs",table:function(){return t(5578)}},cseuckr:"cp949",csksc56011987:"cp949",euckr:"cp949",isoir149:"cp949",korean:"cp949",ksc56011987:"cp949",ksc56011989:"cp949",ksc5601:"cp949",windows950:"cp950",ms950:"cp950",950:"cp950",cp950:{type:"_dbcs",table:function(){return t(9856)}},big5:"big5hkscs",big5hkscs:{type:"_dbcs",table:function(){return t(9856).concat(t(1479))},encodeSkipVals:[41676]},cnbig5:"big5hkscs",csbig5:"big5hkscs",xxbig5:"big5hkscs"}},7541:function(e,a,t){"use strict";var i=[t(3760),t(6719),t(2491),t(6077),t(9567),t(9843),t(1350),t(7862)];for(var n=0;n<i.length;n++){var r=i[n];for(var o in r)if(Object.prototype.hasOwnProperty.call(r,o))a[o]=r[o]}},3760:function(e,a,t){"use strict";var i=t(9392).Buffer;e.exports={utf8:{type:"_internal",bomAware:true},cesu8:{type:"_internal",bomAware:true},unicode11utf8:"utf8",ucs2:{type:"_internal",bomAware:true},utf16le:"ucs2",binary:{type:"_internal"},base64:{type:"_internal"},hex:{type:"_internal"},_internal:InternalCodec};function InternalCodec(e,a){this.enc=e.encodingName;this.bomAware=e.bomAware;if(this.enc==="base64")this.encoder=InternalEncoderBase64;else if(this.enc==="cesu8"){this.enc="utf8";this.encoder=InternalEncoderCesu8;if(i.from("eda0bdedb2a9","hex").toString()!=="💩"){this.decoder=InternalDecoderCesu8;this.defaultCharUnicode=a.defaultCharUnicode}}}InternalCodec.prototype.encoder=InternalEncoder;InternalCodec.prototype.decoder=InternalDecoder;var n=t(3193).StringDecoder;if(!n.prototype.end)n.prototype.end=function(){};function InternalDecoder(e,a){n.call(this,a.enc)}InternalDecoder.prototype=n.prototype;function InternalEncoder(e,a){this.enc=a.enc}InternalEncoder.prototype.write=function(e){return i.from(e,this.enc)};InternalEncoder.prototype.end=function(){};function InternalEncoderBase64(e,a){this.prevStr=""}InternalEncoderBase64.prototype.write=function(e){e=this.prevStr+e;var a=e.length-e.length%4;this.prevStr=e.slice(a);e=e.slice(0,a);return i.from(e,"base64")};InternalEncoderBase64.prototype.end=function(){return i.from(this.prevStr,"base64")};function InternalEncoderCesu8(e,a){}InternalEncoderCesu8.prototype.write=function(e){var a=i.alloc(e.length*3),t=0;for(var n=0;n<e.length;n++){var r=e.charCodeAt(n);if(r<128)a[t++]=r;else if(r<2048){a[t++]=192+(r>>>6);a[t++]=128+(r&63)}else{a[t++]=224+(r>>>12);a[t++]=128+(r>>>6&63);a[t++]=128+(r&63)}}return a.slice(0,t)};InternalEncoderCesu8.prototype.end=function(){};function InternalDecoderCesu8(e,a){this.acc=0;this.contBytes=0;this.accBytes=0;this.defaultCharUnicode=a.defaultCharUnicode}InternalDecoderCesu8.prototype.write=function(e){var a=this.acc,t=this.contBytes,i=this.accBytes,n="";for(var r=0;r<e.length;r++){var o=e[r];if((o&192)!==128){if(t>0){n+=this.defaultCharUnicode;t=0}if(o<128){n+=String.fromCharCode(o)}else if(o<224){a=o&31;t=1;i=1}else if(o<240){a=o&15;t=2;i=1}else{n+=this.defaultCharUnicode}}else{if(t>0){a=a<<6|o&63;t--;i++;if(t===0){if(i===2&&a<128&&a>0)n+=this.defaultCharUnicode;else if(i===3&&a<2048)n+=this.defaultCharUnicode;else n+=String.fromCharCode(a)}}else{n+=this.defaultCharUnicode}}}this.acc=a;this.contBytes=t;this.accBytes=i;return n};InternalDecoderCesu8.prototype.end=function(){var e=0;if(this.contBytes>0)e+=this.defaultCharUnicode;return e}},6077:function(e,a,t){"use strict";var i=t(9392).Buffer;a._sbcs=SBCSCodec;function SBCSCodec(e,a){if(!e)throw new Error("SBCS codec is called without the data.");if(!e.chars||e.chars.length!==128&&e.chars.length!==256)throw new Error("Encoding '"+e.type+"' has incorrect 'chars' (must be of len 128 or 256)");if(e.chars.length===128){var t="";for(var n=0;n<128;n++)t+=String.fromCharCode(n);e.chars=t+e.chars}this.decodeBuf=i.from(e.chars,"ucs2");var r=i.alloc(65536,a.defaultCharSingleByte.charCodeAt(0));for(var n=0;n<e.chars.length;n++)r[e.chars.charCodeAt(n)]=n;this.encodeBuf=r}SBCSCodec.prototype.encoder=SBCSEncoder;SBCSCodec.prototype.decoder=SBCSDecoder;function SBCSEncoder(e,a){this.encodeBuf=a.encodeBuf}SBCSEncoder.prototype.write=function(e){var a=i.alloc(e.length);for(var t=0;t<e.length;t++)a[t]=this.encodeBuf[e.charCodeAt(t)];return a};SBCSEncoder.prototype.end=function(){};function SBCSDecoder(e,a){this.decodeBuf=a.decodeBuf}SBCSDecoder.prototype.write=function(e){var a=this.decodeBuf;var t=i.alloc(e.length*2);var n=0,r=0;for(var o=0;o<e.length;o++){n=e[o]*2;r=o*2;t[r]=a[n];t[r+1]=a[n+1]}return t.toString("ucs2")};SBCSDecoder.prototype.end=function(){}},9843:function(e){"use strict";e.exports={437:"cp437",737:"cp737",775:"cp775",850:"cp850",852:"cp852",855:"cp855",856:"cp856",857:"cp857",858:"cp858",860:"cp860",861:"cp861",862:"cp862",863:"cp863",864:"cp864",865:"cp865",866:"cp866",869:"cp869",874:"windows874",922:"cp922",1046:"cp1046",1124:"cp1124",1125:"cp1125",1129:"cp1129",1133:"cp1133",1161:"cp1161",1162:"cp1162",1163:"cp1163",1250:"windows1250",1251:"windows1251",1252:"windows1252",1253:"windows1253",1254:"windows1254",1255:"windows1255",1256:"windows1256",1257:"windows1257",1258:"windows1258",28591:"iso88591",28592:"iso88592",28593:"iso88593",28594:"iso88594",28595:"iso88595",28596:"iso88596",28597:"iso88597",28598:"iso88598",28599:"iso88599",28600:"iso885910",28601:"iso885911",28603:"iso885913",28604:"iso885914",28605:"iso885915",28606:"iso885916",windows874:{type:"_sbcs",chars:"€����…�����������‘’“”•–—�������� กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู����฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛����"},win874:"windows874",cp874:"windows874",windows1250:{type:"_sbcs",chars:"€�‚�„…†‡�‰Š‹ŚŤŽŹ�‘’“”•–—�™š›śťžź ˇ˘Ł¤Ą¦§¨©Ş«¬®Ż°±˛ł´µ¶·¸ąş»Ľ˝ľżŔÁÂĂÄĹĆÇČÉĘËĚÍÎĎĐŃŇÓÔŐÖ×ŘŮÚŰÜÝŢßŕáâăäĺćçčéęëěíîďđńňóôőö÷řůúűüýţ˙"},win1250:"windows1250",cp1250:"windows1250",windows1251:{type:"_sbcs",chars:"ЂЃ‚ѓ„…†‡€‰Љ‹ЊЌЋЏђ‘’“”•–—�™љ›њќћџ ЎўЈ¤Ґ¦§Ё©Є«¬®Ї°±Ііґµ¶·ё№є»јЅѕїАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя"},win1251:"windows1251",cp1251:"windows1251",windows1252:{type:"_sbcs",chars:"€�‚ƒ„…†‡ˆ‰Š‹Œ�Ž��‘’“”•–—˜™š›œ�žŸ ¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ"},win1252:"windows1252",cp1252:"windows1252",windows1253:{type:"_sbcs",chars:"€�‚ƒ„…†‡�‰�‹�����‘’“”•–—�™�›���� ΅Ά£¤¥¦§¨©�«¬®―°±²³΄µ¶·ΈΉΊ»Ό½ΎΏΐΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ�ΣΤΥΦΧΨΩΪΫάέήίΰαβγδεζηθικλμνξοπρςστυφχψωϊϋόύώ�"},win1253:"windows1253",cp1253:"windows1253",windows1254:{type:"_sbcs",chars:"€�‚ƒ„…†‡ˆ‰Š‹Œ����‘’“”•–—˜™š›œ��Ÿ ¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏĞÑÒÓÔÕÖרÙÚÛÜİŞßàáâãäåæçèéêëìíîïğñòóôõö÷øùúûüışÿ"},win1254:"windows1254",cp1254:"windows1254",windows1255:{type:"_sbcs",chars:"€�‚ƒ„…†‡ˆ‰�‹�����‘’“”•–—˜™�›���� ¡¢£₪¥¦§¨©×«¬®¯°±²³´µ¶·¸¹÷»¼½¾¿ְֱֲֳִֵֶַָֹֺֻּֽ־ֿ׀ׁׂ׃װױײ׳״�������אבגדהוזחטיךכלםמןנסעףפץצקרשת���"},win1255:"windows1255",cp1255:"windows1255",windows1256:{type:"_sbcs",chars:"€پ‚ƒ„…†‡ˆ‰ٹ‹Œچژڈگ‘’“”•–—ک™ڑ›œں ،¢£¤¥¦§¨©ھ«¬®¯°±²³´µ¶·¸¹؛»¼½¾؟ہءآأؤإئابةتثجحخدذرزسشصض×طظعغـفقكàلâمنهوçèéêëىيîïًٌٍَôُِ÷ّùْûüے"},win1256:"windows1256",cp1256:"windows1256",windows1257:{type:"_sbcs",chars:"€�‚�„…†‡�‰�‹�¨ˇ¸�‘’“”•–—�™�›�¯˛� �¢£¤�¦§Ø©Ŗ«¬®Æ°±²³´µ¶·ø¹ŗ»¼½¾æĄĮĀĆÄÅĘĒČÉŹĖĢĶĪĻŠŃŅÓŌÕÖ×ŲŁŚŪÜŻŽßąįāćäåęēčéźėģķīļšńņóōõö÷ųłśūüżž˙"},win1257:"windows1257",cp1257:"windows1257",windows1258:{type:"_sbcs",chars:"€�‚ƒ„…†‡ˆ‰�‹Œ����‘’“”•–—˜™�›œ��Ÿ ¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂĂÄÅÆÇÈÉÊË̀ÍÎÏĐÑ̉ÓÔƠÖרÙÚÛÜỮßàáâăäåæçèéêë́íîïđṇ̃óôơö÷øùúûüư₫ÿ"},win1258:"windows1258",cp1258:"windows1258",iso88591:{type:"_sbcs",chars:"
¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ"},cp28591:"iso88591",iso88592:{type:"_sbcs",chars:"
Ą˘Ł¤ĽŚ§¨ŠŞŤŹŽŻ°ą˛ł´ľśˇ¸šşťź˝žżŔÁÂĂÄĹĆÇČÉĘËĚÍÎĎĐŃŇÓÔŐÖ×ŘŮÚŰÜÝŢßŕáâăäĺćçčéęëěíîďđńňóôőö÷řůúűüýţ˙"},cp28592:"iso88592",iso88593:{type:"_sbcs",chars:"
Ħ˘£¤�Ĥ§¨İŞĞĴ�ݰħ²³´µĥ·¸ışğĵ½�żÀÁÂ�ÄĊĈÇÈÉÊËÌÍÎÏ�ÑÒÓÔĠÖ×ĜÙÚÛÜŬŜßàáâ�äċĉçèéêëìíîï�ñòóôġö÷ĝùúûüŭŝ˙"},cp28593:"iso88593",iso88594:{type:"_sbcs",chars:"
ĄĸŖ¤Ĩϧ¨ŠĒĢŦޝ°ą˛ŗ´ĩšēģŧŊžŋĀÁÂÃÄÅÆĮČÉĘËĖÍÎĪĐŅŌĶÔÕÖרŲÚÛÜŨŪßāáâãäåæįčéęëėíîīđņōķôõö÷øųúûüũū˙"},cp28594:"iso88594",iso88595:{type:"_sbcs",chars:"
ЁЂЃЄЅІЇЈЉЊЋЌЎЏАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя№ёђѓєѕіїјљњћќ§ўџ"},cp28595:"iso88595",iso88596:{type:"_sbcs",chars:"
���¤�������،�������������؛���؟�ءآأؤإئابةتثجحخدذرزسشصضطظعغ�����ـفقكلمنهوىيًٌٍَُِّْ�������������"},cp28596:"iso88596",iso88597:{type:"_sbcs",chars:"
‘’£€₯¦§¨©ͺ«¬�―°±²³΄΅Ά·ΈΉΊ»Ό½ΎΏΐΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ�ΣΤΥΦΧΨΩΪΫάέήίΰαβγδεζηθικλμνξοπρςστυφχψωϊϋόύώ�"},cp28597:"iso88597",iso88598:{type:"_sbcs",chars:"
�¢£¤¥¦§¨©×«¬®¯°±²³´µ¶·¸¹÷»¼½¾��������������������������������‗אבגדהוזחטיךכלםמןנסעףפץצקרשת���"},cp28598:"iso88598",iso88599:{type:"_sbcs",chars:"
¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏĞÑÒÓÔÕÖרÙÚÛÜİŞßàáâãäåæçèéêëìíîïğñòóôõö÷øùúûüışÿ"},cp28599:"iso88599",iso885910:{type:"_sbcs",chars:"
ĄĒĢĪĨͧĻĐŠŦŽŪŊ°ąēģīĩķ·ļđšŧž―ūŋĀÁÂÃÄÅÆĮČÉĘËĖÍÎÏÐŅŌÓÔÕÖŨØŲÚÛÜÝÞßāáâãäåæįčéęëėíîïðņōóôõöũøųúûüýþĸ"},cp28600:"iso885910",iso885911:{type:"_sbcs",chars:"
กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู����฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛����"},cp28601:"iso885911",iso885913:{type:"_sbcs",chars:"
”¢£¤„¦§Ø©Ŗ«¬®Æ°±²³“µ¶·ø¹ŗ»¼½¾æĄĮĀĆÄÅĘĒČÉŹĖĢĶĪĻŠŃŅÓŌÕÖ×ŲŁŚŪÜŻŽßąįāćäåęēčéźėģķīļšńņóōõö÷ųłśūüżž’"},cp28603:"iso885913",iso885914:{type:"_sbcs",chars:"
Ḃḃ£ĊċḊ§Ẁ©ẂḋỲ®ŸḞḟĠġṀṁ¶ṖẁṗẃṠỳẄẅṡÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏŴÑÒÓÔÕÖṪØÙÚÛÜÝŶßàáâãäåæçèéêëìíîïŵñòóôõöṫøùúûüýŷÿ"},cp28604:"iso885914",iso885915:{type:"_sbcs",chars:"
¡¢£€¥Š§š©ª«¬®¯°±²³Žµ¶·ž¹º»ŒœŸ¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ"},cp28605:"iso885915",iso885916:{type:"_sbcs",chars:"
ĄąŁ€„Чš©Ș«ŹźŻ°±ČłŽ”¶·žčș»ŒœŸżÀÁÂĂÄĆÆÇÈÉÊËÌÍÎÏĐŃÒÓÔŐÖŚŰÙÚÛÜĘȚßàáâăäćæçèéêëìíîïđńòóôőöśűùúûüęțÿ"},cp28606:"iso885916",cp437:{type:"_sbcs",chars:"ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜ¢£¥₧ƒáíóúñѪº¿⌐¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ibm437:"cp437",csibm437:"cp437",cp737:{type:"_sbcs",chars:"ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩαβγδεζηθικλμνξοπρσςτυφχψ░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀ωάέήϊίόύϋώΆΈΉΊΌΎΏ±≥≤ΪΫ÷≈°∙·√ⁿ²■ "},ibm737:"cp737",csibm737:"cp737",cp775:{type:"_sbcs",chars:"ĆüéāäģåćłēŖŗīŹÄÅÉæÆōöĢ¢ŚśÖÜø£Ø×¤ĀĪóŻżź”¦©®¬½¼Ł«»░▒▓│┤ĄČĘĖ╣║╗╝ĮŠ┐└┴┬├─┼ŲŪ╚╔╩╦╠═╬Žąčęėįšųūž┘┌█▄▌▐▀ÓßŌŃõÕµńĶķĻļņĒŅ’±“¾¶§÷„°∙·¹³²■ "},ibm775:"cp775",csibm775:"cp775",cp850:{type:"_sbcs",chars:"ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×ƒáíóúñѪº¿®¬½¼¡«»░▒▓│┤ÁÂÀ©╣║╗╝¢¥┐└┴┬├─┼ãÃ╚╔╩╦╠═╬¤ðÐÊËÈıÍÎÏ┘┌█▄¦Ì▀ÓßÔÒõÕµþÞÚÛÙýݯ´±‗¾¶§÷¸°¨·¹³²■ "},ibm850:"cp850",csibm850:"cp850",cp852:{type:"_sbcs",chars:"ÇüéâäůćçłëŐőîŹÄĆÉĹĺôöĽľŚśÖÜŤťŁ×čáíóúĄąŽžĘ꬟Ⱥ«»░▒▓│┤ÁÂĚŞ╣║╗╝Żż┐└┴┬├─┼Ăă╚╔╩╦╠═╬¤đĐĎËďŇÍÎě┘┌█▄ŢŮ▀ÓßÔŃńňŠšŔÚŕŰýÝţ´˝˛ˇ˘§÷¸°¨˙űŘř■ "},ibm852:"cp852",csibm852:"cp852",cp855:{type:"_sbcs",chars:"ђЂѓЃёЁєЄѕЅіІїЇјЈљЉњЊћЋќЌўЎџЏюЮъЪаАбБцЦдДеЕфФгГ«»░▒▓│┤хХиИ╣║╗╝йЙ┐└┴┬├─┼кК╚╔╩╦╠═╬¤лЛмМнНоОп┘┌█▄Пя▀ЯрРсСтТуУжЖвВьЬ№ыЫзЗшШэЭщЩчЧ§■ "},ibm855:"cp855",csibm855:"cp855",cp856:{type:"_sbcs",chars:"אבגדהוזחטיךכלםמןנסעףפץצקרשת�£�×����������®¬½¼�«»░▒▓│┤���©╣║╗╝¢¥┐└┴┬├─┼��╚╔╩╦╠═╬¤���������┘┌█▄¦�▀������µ�������¯´±‗¾¶§÷¸°¨·¹³²■ "},ibm856:"cp856",csibm856:"cp856",cp857:{type:"_sbcs",chars:"ÇüéâäàåçêëèïîıÄÅÉæÆôöòûùİÖÜø£ØŞşáíóúñÑĞ𿮬½¼¡«»░▒▓│┤ÁÂÀ©╣║╗╝¢¥┐└┴┬├─┼ãÃ╚╔╩╦╠═╬¤ºªÊËÈ�ÍÎÏ┘┌█▄¦Ì▀ÓßÔÒõÕµ�×ÚÛÙìÿ¯´±�¾¶§÷¸°¨·¹³²■ "},ibm857:"cp857",csibm857:"cp857",cp858:{type:"_sbcs",chars:"ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×ƒáíóúñѪº¿®¬½¼¡«»░▒▓│┤ÁÂÀ©╣║╗╝¢¥┐└┴┬├─┼ãÃ╚╔╩╦╠═╬¤ðÐÊËÈ€ÍÎÏ┘┌█▄¦Ì▀ÓßÔÒõÕµþÞÚÛÙýݯ´±‗¾¶§÷¸°¨·¹³²■ "},ibm858:"cp858",csibm858:"cp858",cp860:{type:"_sbcs",chars:"ÇüéâãàÁçêÊèÍÔìÃÂÉÀÈôõòÚùÌÕÜ¢£Ù₧ÓáíóúñѪº¿Ò¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ibm860:"cp860",csibm860:"cp860",cp861:{type:"_sbcs",chars:"ÇüéâäàåçêëèÐðÞÄÅÉæÆôöþûÝýÖÜø£Ø₧ƒáíóúÁÍÓÚ¿⌐¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ibm861:"cp861",csibm861:"cp861",cp862:{type:"_sbcs",chars:"אבגדהוזחטיךכלםמןנסעףפץצקרשת¢£¥₧ƒáíóúñѪº¿⌐¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ibm862:"cp862",csibm862:"cp862",cp863:{type:"_sbcs",chars:"ÇüéâÂà¶çêëèïî‗À§ÉÈÊôËÏûù¤ÔÜ¢£ÙÛƒ¦´óú¨¸³¯Î⌐¬½¼¾«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ibm863:"cp863",csibm863:"cp863",cp864:{type:"_sbcs",chars:"\0\b\t\n\v\f\r !\"#$٪&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~°·∙√▒─│┼┤┬├┴┐┌└┘β∞φ±½¼≈«»ﻷﻸ��ﻻﻼ� ﺂ£¤ﺄ��ﺎﺏﺕﺙ،ﺝﺡﺥ٠١٢٣٤٥٦٧٨٩ﻑ؛ﺱﺵﺹ؟¢ﺀﺁﺃﺅﻊﺋﺍﺑﺓﺗﺛﺟﺣﺧﺩﺫﺭﺯﺳﺷﺻﺿﻁﻅﻋﻏ¦¬÷×ﻉـﻓﻗﻛﻟﻣﻧﻫﻭﻯﻳﺽﻌﻎﻍﻡﹽّﻥﻩﻬﻰﻲﻐﻕﻵﻶﻝﻙﻱ■�"},ibm864:"cp864",csibm864:"cp864",cp865:{type:"_sbcs",chars:"ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø₧ƒáíóúñѪº¿⌐¬½¼¡«¤░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ibm865:"cp865",csibm865:"cp865",cp866:{type:"_sbcs",chars:"АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмноп░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀рстуфхцчшщъыьэюяЁёЄєЇїЎў°∙·√№¤■ "},ibm866:"cp866",csibm866:"cp866",cp869:{type:"_sbcs",chars:"������Ά�·¬¦‘’Έ―ΉΊΪΌ��ΎΫ©Ώ²³ά£έήίϊΐόύΑΒΓΔΕΖΗ½ΘΙ«»░▒▓│┤ΚΛΜΝ╣║╗╝ΞΟ┐└┴┬├─┼ΠΡ╚╔╩╦╠═╬ΣΤΥΦΧΨΩαβγ┘┌█▄δε▀ζηθικλμνξοπρσςτ΄±υφχ§ψ΅°¨ωϋΰώ■ "},ibm869:"cp869",csibm869:"cp869",cp922:{type:"_sbcs",chars:"
¡¢£¤¥¦§¨©ª«¬®‾°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏŠÑÒÓÔÕÖרÙÚÛÜÝŽßàáâãäåæçèéêëìíîïšñòóôõö÷øùúûüýžÿ"},ibm922:"cp922",csibm922:"cp922",cp1046:{type:"_sbcs",chars:"ﺈ×÷ﹱ■│─┐┌└┘ﹹﹻﹽﹿﹷﺊﻰﻳﻲﻎﻏﻐﻶﻸﻺﻼ ¤ﺋﺑﺗﺛﺟﺣ،ﺧﺳ٠١٢٣٤٥٦٧٨٩ﺷ؛ﺻﺿﻊ؟ﻋءآأؤإئابةتثجحخدذرزسشصضطﻇعغﻌﺂﺄﺎﻓـفقكلمنهوىيًٌٍَُِّْﻗﻛﻟﻵﻷﻹﻻﻣﻧﻬﻩ�"},ibm1046:"cp1046",csibm1046:"cp1046",cp1124:{type:"_sbcs",chars:"
ЁЂҐЄЅІЇЈЉЊЋЌЎЏАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя№ёђґєѕіїјљњћќ§ўџ"},ibm1124:"cp1124",csibm1124:"cp1124",cp1125:{type:"_sbcs",chars:"АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмноп░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀рстуфхцчшщъыьэюяЁёҐґЄєІіЇї·√№¤■ "},ibm1125:"cp1125",csibm1125:"cp1125",cp1129:{type:"_sbcs",chars:"
¡¢£¤¥¦§œ©ª«¬®¯°±²³Ÿµ¶·Œ¹º»¼½¾¿ÀÁÂĂÄÅÆÇÈÉÊË̀ÍÎÏĐÑ̉ÓÔƠÖרÙÚÛÜỮßàáâăäåæçèéêë́íîïđṇ̃óôơö÷øùúûüư₫ÿ"},ibm1129:"cp1129",csibm1129:"cp1129",cp1133:{type:"_sbcs",chars:"
ກຂຄງຈສຊຍດຕຖທນບປຜຝພຟມຢຣລວຫອຮ���ຯະາຳິີຶືຸູຼັົຽ���ເແໂໃໄ່້໊໋໌ໍໆ�ໜໝ₭����������������໐໑໒໓໔໕໖໗໘໙��¢¬¦�"},ibm1133:"cp1133",csibm1133:"cp1133",cp1161:{type:"_sbcs",chars:"��������������������������������่กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู้๊๋€฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛¢¬¦ "},ibm1161:"cp1161",csibm1161:"cp1161",cp1162:{type:"_sbcs",chars:"€…‘’“”•–— กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู����฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛����"},ibm1162:"cp1162",csibm1162:"cp1162",cp1163:{type:"_sbcs",chars:"
¡¢£€¥¦§œ©ª«¬®¯°±²³Ÿµ¶·Œ¹º»¼½¾¿ÀÁÂĂÄÅÆÇÈÉÊË̀ÍÎÏĐÑ̉ÓÔƠÖרÙÚÛÜỮßàáâăäåæçèéêë́íîïđṇ̃óôơö÷øùúûüư₫ÿ"},ibm1163:"cp1163",csibm1163:"cp1163",maccroatian:{type:"_sbcs",chars:"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®Š™´¨≠ŽØ∞±≤≥∆µ∂∑∏š∫ªºΩžø¿¡¬√ƒ≈ƫȅ ÀÃÕŒœĐ—“”‘’÷◊�©⁄¤‹›Æ»–·‚„‰ÂćÁčÈÍÎÏÌÓÔđÒÚÛÙıˆ˜¯πË˚¸Êæˇ"},maccyrillic:{type:"_sbcs",chars:"АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ†°¢£§•¶І®©™Ђђ≠Ѓѓ∞±≤≥іµ∂ЈЄєЇїЉљЊњјЅ¬√ƒ≈∆«»… ЋћЌќѕ–—“”‘’÷„ЎўЏџ№Ёёяабвгдежзийклмнопрстуфхцчшщъыьэю¤"},macgreek:{type:"_sbcs",chars:"Ĺ²É³ÖÜ΅àâä΄¨çéèê룙î‰ôö¦ùûü†ΓΔΘΛΞΠß®©ΣΪ§≠°·Α±≤≥¥ΒΕΖΗΙΚΜΦΫΨΩάΝ¬ΟΡ≈Τ«»… ΥΧΆΈœ–―“”‘’÷ΉΊΌΎέήίόΏύαβψδεφγηιξκλμνοπώρστθωςχυζϊϋΐΰ�"},maciceland:{type:"_sbcs",chars:"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûüݰ¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸ⁄¤ÐðÞþý·‚„‰ÂÊÁËÈÍÎÏÌÓÔ�ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ"},macroman:{type:"_sbcs",chars:"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸ⁄¤‹›fifl‡·‚„‰ÂÊÁËÈÍÎÏÌÓÔ�ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ"},macromania:{type:"_sbcs",chars:"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ĂŞ∞±≤≥¥µ∂∑∏π∫ªºΩăş¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸ⁄¤‹›Ţţ‡·‚„‰ÂÊÁËÈÍÎÏÌÓÔ�ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ"},macthai:{type:"_sbcs",chars:"«»…“”�•‘’� กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู\ufeff–—฿เแโใไๅๆ็่้๊๋์ํ™๏๐๑๒๓๔๕๖๗๘๙®©����"},macturkish:{type:"_sbcs",chars:"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸĞğİıŞş‡·‚„‰ÂÊÁËÈÍÎÏÌÓÔ�ÒÚÛÙ�ˆ˜¯˘˙˚¸˝˛ˇ"},macukraine:{type:"_sbcs",chars:"АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ†°Ґ£§•¶І®©™Ђђ≠Ѓѓ∞±≤≥іµґЈЄєЇїЉљЊњјЅ¬√ƒ≈∆«»… ЋћЌќѕ–—“”‘’÷„ЎўЏџ№Ёёяабвгдежзийклмнопрстуфхцчшщъыьэю¤"},koi8r:{type:"_sbcs",chars:"─│┌┐└┘├┤┬┴┼▀▄█▌▐░▒▓⌠■∙√≈≤≥ ⌡°²·÷═║╒ё╓╔╕╖╗╘╙╚╛╜╝╞╟╠╡Ё╢╣╤╥╦╧╨╩╪╫╬©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪ"},koi8u:{type:"_sbcs",chars:"─│┌┐└┘├┤┬┴┼▀▄█▌▐░▒▓⌠■∙√≈≤≥ ⌡°²·÷═║╒ёє╔ії╗╘╙╚╛ґ╝╞╟╠╡ЁЄ╣ІЇ╦╧╨╩╪Ґ╬©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪ"},koi8ru:{type:"_sbcs",chars:"─│┌┐└┘├┤┬┴┼▀▄█▌▐░▒▓⌠■∙√≈≤≥ ⌡°²·÷═║╒ёє╔ії╗╘╙╚╛ґў╞╟╠╡ЁЄ╣ІЇ╦╧╨╩╪ҐЎ©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪ"},koi8t:{type:"_sbcs",chars:"қғ‚Ғ„…†‡�‰ҳ‹ҲҷҶ�Қ‘’“”•–—�™�›�����ӯӮё¤ӣ¦§���«¬®�°±²Ё�Ӣ¶·�№�»���©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪ"},armscii8:{type:"_sbcs",chars:"
�և։)(»«—.՝,-֊…՜՛՞ԱաԲբԳգԴդԵեԶզԷէԸըԹթԺժԻիԼլԽխԾծԿկՀհՁձՂղՃճՄմՅյՆնՇշՈոՉչՊպՋջՌռՍսՎվՏտՐրՑցՒւՓփՔքՕօՖֆ՚�"},rk1048:{type:"_sbcs",chars:"ЂЃ‚ѓ„…†‡€‰Љ‹ЊҚҺЏђ‘’“”•–—�™љ›њқһџ ҰұӘ¤Ө¦§Ё©Ғ«¬®Ү°±Ііөµ¶·ё№ғ»әҢңүАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя"},tcvn:{type:"_sbcs",chars:"\0ÚỤỪỬỮ\b\t\n\v\f\rỨỰỲỶỸÝỴ !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~ÀẢÃÁẠẶẬÈẺẼÉẸỆÌỈĨÍỊÒỎÕÓỌỘỜỞỠỚỢÙỦŨ ĂÂÊÔƠƯĐăâêôơưđẶ̀̀̉̃́àảãáạẲằẳẵắẴẮẦẨẪẤỀặầẩẫấậèỂẻẽéẹềểễếệìỉỄẾỒĩíịòỔỏõóọồổỗốộờởỡớợùỖủũúụừửữứựỳỷỹýỵỐ"},georgianacademy:{type:"_sbcs",chars:"‚ƒ„…†‡ˆ‰Š‹Œ‘’“”•–—˜™š›œŸ ¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿აბგდევზთიკლმნოპჟრსტუფქღყშჩცძწჭხჯჰჱჲჳჴჵჶçèéêëìíîïðñòóôõö÷øùúûüýþÿ"},georgianps:{type:"_sbcs",chars:"‚ƒ„…†‡ˆ‰Š‹Œ‘’“”•–—˜™š›œŸ ¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿აბგდევზჱთიკლმნჲოპჟრსტჳუფქღყშჩცძწჭხჴჯჰჵæçèéêëìíîïðñòóôõö÷øùúûüýþÿ"},pt154:{type:"_sbcs",chars:"ҖҒӮғ„…ҶҮҲүҠӢҢҚҺҸҗ‘’“”•–—ҳҷҡӣңқһҹ ЎўЈӨҘҰ§Ё©Ә«¬ӯ®Ҝ°ұІіҙө¶·ё№ә»јҪҫҝАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя"},viscii:{type:"_sbcs",chars:"\0ẲẴẪ\b\t\n\v\f\rỶỸỴ !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~ẠẮẰẶẤẦẨẬẼẸẾỀỂỄỆỐỒỔỖỘỢỚỜỞỊỎỌỈỦŨỤỲÕắằặấầẩậẽẹếềểễệốồổỗỠƠộờởịỰỨỪỬơớƯÀÁÂÃẢĂẳẵÈÉÊẺÌÍĨỳĐứÒÓÔạỷừửÙÚỹỵÝỡưàáâãảăữẫèéêẻìíĩỉđựòóôõỏọụùúũủýợỮ"},iso646cn:{type:"_sbcs",chars:"\0\b\t\n\v\f\r !\"#¥%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}‾��������������������������������������������������������������������������������������������������������������������������������"},iso646jp:{type:"_sbcs",chars:"\0\b\t\n\v\f\r !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[¥]^_`abcdefghijklmnopqrstuvwxyz{|}‾��������������������������������������������������������������������������������������������������������������������������������"},hproman8:{type:"_sbcs",chars:"
ÀÂÈÊËÎÏ´ˋˆ¨˜ÙÛ₤¯Ýý°ÇçÑñ¡¿¤£¥§ƒ¢âêôûáéóúàèòùäëöüÅîØÆåíøæÄìÖÜÉïßÔÁÃãÐðÍÌÓÒÕõŠšÚŸÿÞþ·µ¶¾—¼½ªº«■»±�"},macintosh:{type:"_sbcs",chars:"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸ⁄¤‹›fifl‡·‚„‰ÂÊÁËÈÍÎÏÌÓÔ�ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ"},ascii:{type:"_sbcs",chars:"��������������������������������������������������������������������������������������������������������������������������������"},tis620:{type:"_sbcs",chars:"���������������������������������กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู����฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛����"}}},9567:function(e){"use strict";e.exports={10029:"maccenteuro",maccenteuro:{type:"_sbcs",chars:"ÄĀāÉĄÖÜáąČäčĆć鏟ĎíďĒēĖóėôöõúĚěü†°Ę£§•¶ß®©™ę¨≠ģĮįĪ≤≥īĶ∂∑łĻļĽľĹĺŅņѬ√ńŇ∆«»… ňŐÕőŌ–—“”‘’÷◊ōŔŕŘ‹›řŖŗŠ‚„šŚśÁŤťÍŽžŪÓÔūŮÚůŰűŲųÝýķŻŁżĢˇ"},808:"cp808",ibm808:"cp808",cp808:{type:"_sbcs",chars:"АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмноп░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀рстуфхцчшщъыьэюяЁёЄєЇїЎў°∙·√№€■ "},mik:{type:"_sbcs",chars:"АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя└┴┬├─┼╣║╚╔╩╦╠═╬┐░▒▓│┤№§╗╝┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ascii8bit:"ascii",usascii:"ascii",ansix34:"ascii",ansix341968:"ascii",ansix341986:"ascii",csascii:"ascii",cp367:"ascii",ibm367:"ascii",isoir6:"ascii",iso646us:"ascii",iso646irv:"ascii",us:"ascii",latin1:"iso88591",latin2:"iso88592",latin3:"iso88593",latin4:"iso88594",latin5:"iso88599",latin6:"iso885910",latin7:"iso885913",latin8:"iso885914",latin9:"iso885915",latin10:"iso885916",csisolatin1:"iso88591",csisolatin2:"iso88592",csisolatin3:"iso88593",csisolatin4:"iso88594",csisolatincyrillic:"iso88595",csisolatinarabic:"iso88596",csisolatingreek:"iso88597",csisolatinhebrew:"iso88598",csisolatin5:"iso88599",csisolatin6:"iso885910",l1:"iso88591",l2:"iso88592",l3:"iso88593",l4:"iso88594",l5:"iso88599",l6:"iso885910",l7:"iso885913",l8:"iso885914",l9:"iso885915",l10:"iso885916",isoir14:"iso646jp",isoir57:"iso646cn",isoir100:"iso88591",isoir101:"iso88592",isoir109:"iso88593",isoir110:"iso88594",isoir144:"iso88595",isoir127:"iso88596",isoir126:"iso88597",isoir138:"iso88598",isoir148:"iso88599",isoir157:"iso885910",isoir166:"tis620",isoir179:"iso885913",isoir199:"iso885914",isoir203:"iso885915",isoir226:"iso885916",cp819:"iso88591",ibm819:"iso88591",cyrillic:"iso88595",arabic:"iso88596",arabic8:"iso88596",ecma114:"iso88596",asmo708:"iso88596",greek:"iso88597",greek8:"iso88597",ecma118:"iso88597",elot928:"iso88597",hebrew:"iso88598",hebrew8:"iso88598",turkish:"iso88599",turkish8:"iso88599",thai:"iso885911",thai8:"iso885911",celtic:"iso885914",celtic8:"iso885914",isoceltic:"iso885914",tis6200:"tis620",tis62025291:"tis620",tis62025330:"tis620",1e4:"macroman",10006:"macgreek",10007:"maccyrillic",10079:"maciceland",10081:"macturkish",cspc8codepage437:"cp437",cspc775baltic:"cp775",cspc850multilingual:"cp850",cspcp852:"cp852",cspc862latinhebrew:"cp862",cpgr:"cp869",msee:"cp1250",mscyrl:"cp1251",msansi:"cp1252",msgreek:"cp1253",msturk:"cp1254",mshebr:"cp1255",msarab:"cp1256",winbaltrim:"cp1257",cp20866:"koi8r",20866:"koi8r",ibm878:"koi8r",cskoi8r:"koi8r",cp21866:"koi8u",21866:"koi8u",ibm1168:"koi8u",strk10482002:"rk1048",tcvn5712:"tcvn",tcvn57121:"tcvn",gb198880:"iso646cn",cn:"iso646cn",csiso14jisc6220ro:"iso646jp",jisc62201969ro:"iso646jp",jp:"iso646jp",cshproman8:"hproman8",r8:"hproman8",roman8:"hproman8",xroman8:"hproman8",ibm1051:"hproman8",mac:"macintosh",csmacintosh:"macintosh"}},6719:function(e,a,t){"use strict";var i=t(9392).Buffer;a.utf16be=Utf16BECodec;function Utf16BECodec(){}Utf16BECodec.prototype.encoder=Utf16BEEncoder;Utf16BECodec.prototype.decoder=Utf16BEDecoder;Utf16BECodec.prototype.bomAware=true;function Utf16BEEncoder(){}Utf16BEEncoder.prototype.write=function(e){var a=i.from(e,"ucs2");for(var t=0;t<a.length;t+=2){var n=a[t];a[t]=a[t+1];a[t+1]=n}return a};Utf16BEEncoder.prototype.end=function(){};function Utf16BEDecoder(){this.overflowByte=-1}Utf16BEDecoder.prototype.write=function(e){if(e.length==0)return"";var a=i.alloc(e.length+1),t=0,n=0;if(this.overflowByte!==-1){a[0]=e[0];a[1]=this.overflowByte;t=1;n=2}for(;t<e.length-1;t+=2,n+=2){a[n]=e[t+1];a[n+1]=e[t]}this.overflowByte=t==e.length-1?e[e.length-1]:-1;return a.slice(0,n).toString("ucs2")};Utf16BEDecoder.prototype.end=function(){};a.utf16=Utf16Codec;function Utf16Codec(e,a){this.iconv=a}Utf16Codec.prototype.encoder=Utf16Encoder;Utf16Codec.prototype.decoder=Utf16Decoder;function Utf16Encoder(e,a){e=e||{};if(e.addBOM===undefined)e.addBOM=true;this.encoder=a.iconv.getEncoder("utf-16le",e)}Utf16Encoder.prototype.write=function(e){return this.encoder.write(e)};Utf16Encoder.prototype.end=function(){return this.encoder.end()};function Utf16Decoder(e,a){this.decoder=null;this.initialBytes=[];this.initialBytesLen=0;this.options=e||{};this.iconv=a.iconv}Utf16Decoder.prototype.write=function(e){if(!this.decoder){this.initialBytes.push(e);this.initialBytesLen+=e.length;if(this.initialBytesLen<16)return"";var e=i.concat(this.initialBytes),a=detectEncoding(e,this.options.defaultEncoding);this.decoder=this.iconv.getDecoder(a,this.options);this.initialBytes.length=this.initialBytesLen=0}return this.decoder.write(e)};Utf16Decoder.prototype.end=function(){if(!this.decoder){var e=i.concat(this.initialBytes),a=detectEncoding(e,this.options.defaultEncoding);this.decoder=this.iconv.getDecoder(a,this.options);var t=this.decoder.write(e),n=this.decoder.end();return n?t+n:t}return this.decoder.end()};function detectEncoding(e,a){var t=a||"utf-16le";if(e.length>=2){if(e[0]==254&&e[1]==255)t="utf-16be";else if(e[0]==255&&e[1]==254)t="utf-16le";else{var i=0,n=0,r=Math.min(e.length-e.length%2,64);for(var o=0;o<r;o+=2){if(e[o]===0&&e[o+1]!==0)n++;if(e[o]!==0&&e[o+1]===0)i++}if(n>i)t="utf-16be";else if(n<i)t="utf-16le"}}return t}},2491:function(e,a,t){"use strict";var i=t(9392).Buffer;a.utf7=Utf7Codec;a.unicode11utf7="utf7";function Utf7Codec(e,a){this.iconv=a}Utf7Codec.prototype.encoder=Utf7Encoder;Utf7Codec.prototype.decoder=Utf7Decoder;Utf7Codec.prototype.bomAware=true;var n=/[^A-Za-z0-9'\(\),-\.\/:\? \n\r\t]+/g;function Utf7Encoder(e,a){this.iconv=a.iconv}Utf7Encoder.prototype.write=function(e){return i.from(e.replace(n,function(e){return"+"+(e==="+"?"":this.iconv.encode(e,"utf16-be").toString("base64").replace(/=+$/,""))+"-"}.bind(this)))};Utf7Encoder.prototype.end=function(){};function Utf7Decoder(e,a){this.iconv=a.iconv;this.inBase64=false;this.base64Accum=""}var r=/[A-Za-z0-9\/+]/;var o=[];for(var s=0;s<256;s++)o[s]=r.test(String.fromCharCode(s));var c="+".charCodeAt(0),p="-".charCodeAt(0),l="&".charCodeAt(0);Utf7Decoder.prototype.write=function(e){var a="",t=0,n=this.inBase64,r=this.base64Accum;for(var s=0;s<e.length;s++){if(!n){if(e[s]==c){a+=this.iconv.decode(e.slice(t,s),"ascii");t=s+1;n=true}}else{if(!o[e[s]]){if(s==t&&e[s]==p){a+="+"}else{var l=r+e.slice(t,s).toString();a+=this.iconv.decode(i.from(l,"base64"),"utf16-be")}if(e[s]!=p)s--;t=s+1;n=false;r=""}}}if(!n){a+=this.iconv.decode(e.slice(t),"ascii")}else{var l=r+e.slice(t).toString();var u=l.length-l.length%8;r=l.slice(u);l=l.slice(0,u);a+=this.iconv.decode(i.from(l,"base64"),"utf16-be")}this.inBase64=n;this.base64Accum=r;return a};Utf7Decoder.prototype.end=function(){var e="";if(this.inBase64&&this.base64Accum.length>0)e=this.iconv.decode(i.from(this.base64Accum,"base64"),"utf16-be");this.inBase64=false;this.base64Accum="";return e};a.utf7imap=Utf7IMAPCodec;function Utf7IMAPCodec(e,a){this.iconv=a}Utf7IMAPCodec.prototype.encoder=Utf7IMAPEncoder;Utf7IMAPCodec.prototype.decoder=Utf7IMAPDecoder;Utf7IMAPCodec.prototype.bomAware=true;function Utf7IMAPEncoder(e,a){this.iconv=a.iconv;this.inBase64=false;this.base64Accum=i.alloc(6);this.base64AccumIdx=0}Utf7IMAPEncoder.prototype.write=function(e){var a=this.inBase64,t=this.base64Accum,n=this.base64AccumIdx,r=i.alloc(e.length*5+10),o=0;for(var s=0;s<e.length;s++){var c=e.charCodeAt(s);if(32<=c&&c<=126){if(a){if(n>0){o+=r.write(t.slice(0,n).toString("base64").replace(/\//g,",").replace(/=+$/,""),o);n=0}r[o++]=p;a=false}if(!a){r[o++]=c;if(c===l)r[o++]=p}}else{if(!a){r[o++]=l;a=true}if(a){t[n++]=c>>8;t[n++]=c&255;if(n==t.length){o+=r.write(t.toString("base64").replace(/\//g,","),o);n=0}}}}this.inBase64=a;this.base64AccumIdx=n;return r.slice(0,o)};Utf7IMAPEncoder.prototype.end=function(){var e=i.alloc(10),a=0;if(this.inBase64){if(this.base64AccumIdx>0){a+=e.write(this.base64Accum.slice(0,this.base64AccumIdx).toString("base64").replace(/\//g,",").replace(/=+$/,""),a);this.base64AccumIdx=0}e[a++]=p;this.inBase64=false}return e.slice(0,a)};function Utf7IMAPDecoder(e,a){this.iconv=a.iconv;this.inBase64=false;this.base64Accum=""}var u=o.slice();u[",".charCodeAt(0)]=true;Utf7IMAPDecoder.prototype.write=function(e){var a="",t=0,n=this.inBase64,r=this.base64Accum;for(var o=0;o<e.length;o++){if(!n){if(e[o]==l){a+=this.iconv.decode(e.slice(t,o),"ascii");t=o+1;n=true}}else{if(!u[e[o]]){if(o==t&&e[o]==p){a+="&"}else{var s=r+e.slice(t,o).toString().replace(/,/g,"/");a+=this.iconv.decode(i.from(s,"base64"),"utf16-be")}if(e[o]!=p)o--;t=o+1;n=false;r=""}}}if(!n){a+=this.iconv.decode(e.slice(t),"ascii")}else{var s=r+e.slice(t).toString().replace(/,/g,"/");var c=s.length-s.length%8;r=s.slice(c);s=s.slice(0,c);a+=this.iconv.decode(i.from(s,"base64"),"utf16-be")}this.inBase64=n;this.base64Accum=r;return a};Utf7IMAPDecoder.prototype.end=function(){var e="";if(this.inBase64&&this.base64Accum.length>0)e=this.iconv.decode(i.from(this.base64Accum,"base64"),"utf16-be");this.inBase64=false;this.base64Accum="";return e}},7590:function(e,a){"use strict";var t="\ufeff";a.PrependBOM=PrependBOMWrapper;function PrependBOMWrapper(e,a){this.encoder=e;this.addBOM=true}PrependBOMWrapper.prototype.write=function(e){if(this.addBOM){e=t+e;this.addBOM=false}return this.encoder.write(e)};PrependBOMWrapper.prototype.end=function(){return this.encoder.end()};a.StripBOM=StripBOMWrapper;function StripBOMWrapper(e,a){this.decoder=e;this.pass=false;this.options=a||{}}StripBOMWrapper.prototype.write=function(e){var a=this.decoder.write(e);if(this.pass||!a)return a;if(a[0]===t){a=a.slice(1);if(typeof this.options.stripBOM==="function")this.options.stripBOM()}this.pass=true;return a};StripBOMWrapper.prototype.end=function(){return this.decoder.end()}},1775:function(e,a,t){"use strict";var i=t(181).Buffer;e.exports=function(e){var a=undefined;e.supportsNodeEncodingsExtension=!(i.from||new i(0)instanceof Uint8Array);e.extendNodeEncodings=function extendNodeEncodings(){if(a)return;a={};if(!e.supportsNodeEncodingsExtension){console.error("ACTION NEEDED: require('iconv-lite').extendNodeEncodings() is not supported in your version of Node");console.error("See more info at https://github.com/ashtuchkin/iconv-lite/wiki/Node-v4-compatibility");return}var n={hex:true,utf8:true,"utf-8":true,ascii:true,binary:true,base64:true,ucs2:true,"ucs-2":true,utf16le:true,"utf-16le":true};i.isNativeEncoding=function(e){return e&&n[e.toLowerCase()]};var r=t(181).SlowBuffer;a.SlowBufferToString=r.prototype.toString;r.prototype.toString=function(t,n,r){t=String(t||"utf8").toLowerCase();if(i.isNativeEncoding(t))return a.SlowBufferToString.call(this,t,n,r);if(typeof n=="undefined")n=0;if(typeof r=="undefined")r=this.length;return e.decode(this.slice(n,r),t)};a.SlowBufferWrite=r.prototype.write;r.prototype.write=function(t,n,r,o){if(isFinite(n)){if(!isFinite(r)){o=r;r=undefined}}else{var s=o;o=n;n=r;r=s}n=+n||0;var c=this.length-n;if(!r){r=c}else{r=+r;if(r>c){r=c}}o=String(o||"utf8").toLowerCase();if(i.isNativeEncoding(o))return a.SlowBufferWrite.call(this,t,n,r,o);if(t.length>0&&(r<0||n<0))throw new RangeError("attempt to write beyond buffer bounds");var p=e.encode(t,o);if(p.length<r)r=p.length;p.copy(this,n,0,r);return r};a.BufferIsEncoding=i.isEncoding;i.isEncoding=function(a){return i.isNativeEncoding(a)||e.encodingExists(a)};a.BufferByteLength=i.byteLength;i.byteLength=r.byteLength=function(t,n){n=String(n||"utf8").toLowerCase();if(i.isNativeEncoding(n))return a.BufferByteLength.call(this,t,n);return e.encode(t,n).length};a.BufferToString=i.prototype.toString;i.prototype.toString=function(t,n,r){t=String(t||"utf8").toLowerCase();if(i.isNativeEncoding(t))return a.BufferToString.call(this,t,n,r);if(typeof n=="undefined")n=0;if(typeof r=="undefined")r=this.length;return e.decode(this.slice(n,r),t)};a.BufferWrite=i.prototype.write;i.prototype.write=function(t,n,r,o){var s=n,c=r,p=o;if(isFinite(n)){if(!isFinite(r)){o=r;r=undefined}}else{var l=o;o=n;n=r;r=l}o=String(o||"utf8").toLowerCase();if(i.isNativeEncoding(o))return a.BufferWrite.call(this,t,s,c,p);n=+n||0;var u=this.length-n;if(!r){r=u}else{r=+r;if(r>u){r=u}}if(t.length>0&&(r<0||n<0))throw new RangeError("attempt to write beyond buffer bounds");var d=e.encode(t,o);if(d.length<r)r=d.length;d.copy(this,n,0,r);return r};if(e.supportsStreams){var o=t(2203).Readable;a.ReadableSetEncoding=o.prototype.setEncoding;o.prototype.setEncoding=function setEncoding(a,t){this._readableState.decoder=e.getDecoder(a,t);this._readableState.encoding=a};o.prototype.collect=e._collect}};e.undoExtendNodeEncodings=function undoExtendNodeEncodings(){if(!e.supportsNodeEncodingsExtension)return;if(!a)throw new Error("require('iconv-lite').undoExtendNodeEncodings(): Nothing to undo; extendNodeEncodings() is not called.");delete i.isNativeEncoding;var n=t(181).SlowBuffer;n.prototype.toString=a.SlowBufferToString;n.prototype.write=a.SlowBufferWrite;i.isEncoding=a.BufferIsEncoding;i.byteLength=a.BufferByteLength;i.prototype.toString=a.BufferToString;i.prototype.write=a.BufferWrite;if(e.supportsStreams){var r=t(2203).Readable;r.prototype.setEncoding=a.ReadableSetEncoding;delete r.prototype.collect}a=undefined}}},128:function(e,a,t){"use strict";var i=t(9392).Buffer;var n=t(7590),r=e.exports;r.encodings=null;r.defaultCharUnicode="�";r.defaultCharSingleByte="?";r.encode=function encode(e,a,t){e=""+(e||"");var n=r.getEncoder(a,t);var o=n.write(e);var s=n.end();return s&&s.length>0?i.concat([o,s]):o};r.decode=function decode(e,a,t){if(typeof e==="string"){if(!r.skipDecodeWarning){console.error("Iconv-lite warning: decode()-ing strings is deprecated. Refer to https://github.com/ashtuchkin/iconv-lite/wiki/Use-Buffers-when-decoding");r.skipDecodeWarning=true}e=i.from(""+(e||""),"binary")}var n=r.getDecoder(a,t);var o=n.write(e);var s=n.end();return s?o+s:o};r.encodingExists=function encodingExists(e){try{r.getCodec(e);return true}catch(e){return false}};r.toEncoding=r.encode;r.fromEncoding=r.decode;r._codecDataCache={};r.getCodec=function getCodec(e){if(!r.encodings)r.encodings=t(7541);var a=r._canonicalizeEncoding(e);var i={};while(true){var n=r._codecDataCache[a];if(n)return n;var o=r.encodings[a];switch(typeof o){case"string":a=o;break;case"object":for(var s in o)i[s]=o[s];if(!i.encodingName)i.encodingName=a;a=o.type;break;case"function":if(!i.encodingName)i.encodingName=a;n=new o(i,r);r._codecDataCache[i.encodingName]=n;return n;default:throw new Error("Encoding not recognized: '"+e+"' (searched as: '"+a+"')")}}};r._canonicalizeEncoding=function(e){return(""+e).toLowerCase().replace(/:\d{4}$|[^0-9a-z]/g,"")};r.getEncoder=function getEncoder(e,a){var t=r.getCodec(e),i=new t.encoder(a,t);if(t.bomAware&&a&&a.addBOM)i=new n.PrependBOM(i,a);return i};r.getDecoder=function getDecoder(e,a){var t=r.getCodec(e),i=new t.decoder(a,t);if(t.bomAware&&!(a&&a.stripBOM===false))i=new n.StripBOM(i,a);return i};var o=typeof process!=="undefined"&&process.versions&&process.versions.node;if(o){var s=o.split(".").map(Number);if(s[0]>0||s[1]>=10){t(1269)(r)}t(1775)(r)}if(false){}},1269:function(e,a,t){"use strict";var i=t(181).Buffer,n=t(2203).Transform;e.exports=function(e){e.encodeStream=function encodeStream(a,t){return new IconvLiteEncoderStream(e.getEncoder(a,t),t)};e.decodeStream=function decodeStream(a,t){return new IconvLiteDecoderStream(e.getDecoder(a,t),t)};e.supportsStreams=true;e.IconvLiteEncoderStream=IconvLiteEncoderStream;e.IconvLiteDecoderStream=IconvLiteDecoderStream;e._collect=IconvLiteDecoderStream.prototype.collect};function IconvLiteEncoderStream(e,a){this.conv=e;a=a||{};a.decodeStrings=false;n.call(this,a)}IconvLiteEncoderStream.prototype=Object.create(n.prototype,{constructor:{value:IconvLiteEncoderStream}});IconvLiteEncoderStream.prototype._transform=function(e,a,t){if(typeof e!="string")return t(new Error("Iconv encoding stream needs strings as its input."));try{var i=this.conv.write(e);if(i&&i.length)this.push(i);t()}catch(e){t(e)}};IconvLiteEncoderStream.prototype._flush=function(e){try{var a=this.conv.end();if(a&&a.length)this.push(a);e()}catch(a){e(a)}};IconvLiteEncoderStream.prototype.collect=function(e){var a=[];this.on("error",e);this.on("data",(function(e){a.push(e)}));this.on("end",(function(){e(null,i.concat(a))}));return this};function IconvLiteDecoderStream(e,a){this.conv=e;a=a||{};a.encoding=this.encoding="utf8";n.call(this,a)}IconvLiteDecoderStream.prototype=Object.create(n.prototype,{constructor:{value:IconvLiteDecoderStream}});IconvLiteDecoderStream.prototype._transform=function(e,a,t){if(!i.isBuffer(e))return t(new Error("Iconv decoding stream needs buffers as its input."));try{var n=this.conv.write(e);if(n&&n.length)this.push(n,this.encoding);t()}catch(e){t(e)}};IconvLiteDecoderStream.prototype._flush=function(e){try{var a=this.conv.end();if(a&&a.length)this.push(a,this.encoding);e()}catch(a){e(a)}};IconvLiteDecoderStream.prototype.collect=function(e){var a="";this.on("error",e);this.on("data",(function(e){a+=e}));this.on("end",(function(){e(null,a)}));return this}},4070:function(e,a,t){try{var i=t(9023);if(typeof i.inherits!=="function")throw"";e.exports=i.inherits}catch(a){e.exports=t(6005)}},6005:function(e){if(typeof Object.create==="function"){e.exports=function inherits(e,a){if(a){e.super_=a;e.prototype=Object.create(a.prototype,{constructor:{value:e,enumerable:false,writable:true,configurable:true}})}}}else{e.exports=function inherits(e,a){if(a){e.super_=a;var TempCtor=function(){};TempCtor.prototype=a.prototype;e.prototype=new TempCtor;e.prototype.constructor=e}}}},4287:function(e,a,t){e=t.nmd(e);(function(){var a,t,i,n,r,o,s,c,p;t={};c=this;if(true&&e!==null&&e.exports){e.exports=t}else{c["ipaddr"]=t}s=function(e,a,t,i){var n,r;if(e.length!==a.length){throw new Error("ipaddr: cannot match CIDR for objects with different lengths")}n=0;while(i>0){r=t-i;if(r<0){r=0}if(e[n]>>r!==a[n]>>r){return false}i-=t;n+=1}return true};t.subnetMatch=function(e,a,t){var i,n,r,o,s;if(t==null){t="unicast"}for(r in a){o=a[r];if(o[0]&&!(o[0]instanceof Array)){o=[o]}for(i=0,n=o.length;i<n;i++){s=o[i];if(e.kind()===s[0].kind()){if(e.match.apply(e,s)){return r}}}}return t};t.IPv4=function(){function IPv4(e){var a,t,i;if(e.length!==4){throw new Error("ipaddr: ipv4 octet count should be 4")}for(a=0,t=e.length;a<t;a++){i=e[a];if(!(0<=i&&i<=255)){throw new Error("ipaddr: ipv4 octet should fit in 8 bits")}}this.octets=e}IPv4.prototype.kind=function(){return"ipv4"};IPv4.prototype.toString=function(){return this.octets.join(".")};IPv4.prototype.toNormalizedString=function(){return this.toString()};IPv4.prototype.toByteArray=function(){return this.octets.slice(0)};IPv4.prototype.match=function(e,a){var t;if(a===void 0){t=e,e=t[0],a=t[1]}if(e.kind()!=="ipv4"){throw new Error("ipaddr: cannot match ipv4 address with non-ipv4 one")}return s(this.octets,e.octets,8,a)};IPv4.prototype.SpecialRanges={unspecified:[[new IPv4([0,0,0,0]),8]],broadcast:[[new IPv4([255,255,255,255]),32]],multicast:[[new IPv4([224,0,0,0]),4]],linkLocal:[[new IPv4([169,254,0,0]),16]],loopback:[[new IPv4([127,0,0,0]),8]],carrierGradeNat:[[new IPv4([100,64,0,0]),10]],private:[[new IPv4([10,0,0,0]),8],[new IPv4([172,16,0,0]),12],[new IPv4([192,168,0,0]),16]],reserved:[[new IPv4([192,0,0,0]),24],[new IPv4([192,0,2,0]),24],[new IPv4([192,88,99,0]),24],[new IPv4([198,51,100,0]),24],[new IPv4([203,0,113,0]),24],[new IPv4([240,0,0,0]),4]]};IPv4.prototype.range=function(){return t.subnetMatch(this,this.SpecialRanges)};IPv4.prototype.toIPv4MappedAddress=function(){return t.IPv6.parse("::ffff:"+this.toString())};IPv4.prototype.prefixLengthFromSubnetMask=function(){var e,a,t,i,n,r,o;o={0:8,128:7,192:6,224:5,240:4,248:3,252:2,254:1,255:0};e=0;n=false;for(a=t=3;t>=0;a=t+=-1){i=this.octets[a];if(i in o){r=o[i];if(n&&r!==0){return null}if(r!==8){n=true}e+=r}else{return null}}return 32-e};return IPv4}();i="(0?\\d+|0x[a-f0-9]+)";n={fourOctet:new RegExp("^"+i+"\\."+i+"\\."+i+"\\."+i+"$","i"),longValue:new RegExp("^"+i+"$","i")};t.IPv4.parser=function(e){var a,t,i,r,o;t=function(e){if(e[0]==="0"&&e[1]!=="x"){return parseInt(e,8)}else{return parseInt(e)}};if(a=e.match(n.fourOctet)){return function(){var e,n,r,o;r=a.slice(1,6);o=[];for(e=0,n=r.length;e<n;e++){i=r[e];o.push(t(i))}return o}()}else if(a=e.match(n.longValue)){o=t(a[1]);if(o>4294967295||o<0){throw new Error("ipaddr: address outside defined range")}return function(){var e,a;a=[];for(r=e=0;e<=24;r=e+=8){a.push(o>>r&255)}return a}().reverse()}else{return null}};t.IPv6=function(){function IPv6(e,a){var t,i,n,r,o,s;if(e.length===16){this.parts=[];for(t=i=0;i<=14;t=i+=2){this.parts.push(e[t]<<8|e[t+1])}}else if(e.length===8){this.parts=e}else{throw new Error("ipaddr: ipv6 part count should be 8 or 16")}s=this.parts;for(n=0,r=s.length;n<r;n++){o=s[n];if(!(0<=o&&o<=65535)){throw new Error("ipaddr: ipv6 part should fit in 16 bits")}}if(a){this.zoneId=a}}IPv6.prototype.kind=function(){return"ipv6"};IPv6.prototype.toString=function(){return this.toNormalizedString().replace(/((^|:)(0(:|$))+)/,"::")};IPv6.prototype.toRFC5952String=function(){var e,a,t,i,n;i=/((^|:)(0(:|$)){2,})/g;n=this.toNormalizedString();e=0;a=-1;while(t=i.exec(n)){if(t[0].length>a){e=t.index;a=t[0].length}}if(a<0){return n}return n.substring(0,e)+"::"+n.substring(e+a)};IPv6.prototype.toByteArray=function(){var e,a,t,i,n;e=[];n=this.parts;for(a=0,t=n.length;a<t;a++){i=n[a];e.push(i>>8);e.push(i&255)}return e};IPv6.prototype.toNormalizedString=function(){var e,a,t;e=function(){var e,t,i,n;i=this.parts;n=[];for(e=0,t=i.length;e<t;e++){a=i[e];n.push(a.toString(16))}return n}.call(this).join(":");t="";if(this.zoneId){t="%"+this.zoneId}return e+t};IPv6.prototype.toFixedLengthString=function(){var e,a,t;e=function(){var e,t,i,n;i=this.parts;n=[];for(e=0,t=i.length;e<t;e++){a=i[e];n.push(a.toString(16).padStart(4,"0"))}return n}.call(this).join(":");t="";if(this.zoneId){t="%"+this.zoneId}return e+t};IPv6.prototype.match=function(e,a){var t;if(a===void 0){t=e,e=t[0],a=t[1]}if(e.kind()!=="ipv6"){throw new Error("ipaddr: cannot match ipv6 address with non-ipv6 one")}return s(this.parts,e.parts,16,a)};IPv6.prototype.SpecialRanges={unspecified:[new IPv6([0,0,0,0,0,0,0,0]),128],linkLocal:[new IPv6([65152,0,0,0,0,0,0,0]),10],multicast:[new IPv6([65280,0,0,0,0,0,0,0]),8],loopback:[new IPv6([0,0,0,0,0,0,0,1]),128],uniqueLocal:[new IPv6([64512,0,0,0,0,0,0,0]),7],ipv4Mapped:[new IPv6([0,0,0,0,0,65535,0,0]),96],rfc6145:[new IPv6([0,0,0,0,65535,0,0,0]),96],rfc6052:[new IPv6([100,65435,0,0,0,0,0,0]),96],"6to4":[new IPv6([8194,0,0,0,0,0,0,0]),16],teredo:[new IPv6([8193,0,0,0,0,0,0,0]),32],reserved:[[new IPv6([8193,3512,0,0,0,0,0,0]),32]]};IPv6.prototype.range=function(){return t.subnetMatch(this,this.SpecialRanges)};IPv6.prototype.isIPv4MappedAddress=function(){return this.range()==="ipv4Mapped"};IPv6.prototype.toIPv4Address=function(){var e,a,i;if(!this.isIPv4MappedAddress()){throw new Error("ipaddr: trying to convert a generic ipv6 address to ipv4")}i=this.parts.slice(-2),e=i[0],a=i[1];return new t.IPv4([e>>8,e&255,a>>8,a&255])};IPv6.prototype.prefixLengthFromSubnetMask=function(){var e,a,t,i,n,r,o;o={0:16,32768:15,49152:14,57344:13,61440:12,63488:11,64512:10,65024:9,65280:8,65408:7,65472:6,65504:5,65520:4,65528:3,65532:2,65534:1,65535:0};e=0;n=false;for(a=t=7;t>=0;a=t+=-1){i=this.parts[a];if(i in o){r=o[i];if(n&&r!==0){return null}if(r!==16){n=true}e+=r}else{return null}}return 128-e};return IPv6}();r="(?:[0-9a-f]+::?)+";p="%[0-9a-z]{1,}";o={zoneIndex:new RegExp(p,"i"),native:new RegExp("^(::)?("+r+")?([0-9a-f]+)?(::)?("+p+")?$","i"),transitional:new RegExp("^((?:"+r+")|(?:::)(?:"+r+")?)"+(i+"\\."+i+"\\."+i+"\\."+i)+("("+p+")?$"),"i")};a=function(e,a){var t,i,n,r,s,c;if(e.indexOf("::")!==e.lastIndexOf("::")){return null}c=(e.match(o["zoneIndex"])||[])[0];if(c){c=c.substring(1);e=e.replace(/%.+$/,"")}t=0;i=-1;while((i=e.indexOf(":",i+1))>=0){t++}if(e.substr(0,2)==="::"){t--}if(e.substr(-2,2)==="::"){t--}if(t>a){return null}s=a-t;r=":";while(s--){r+="0:"}e=e.replace("::",r);if(e[0]===":"){e=e.slice(1)}if(e[e.length-1]===":"){e=e.slice(0,-1)}a=function(){var a,t,i,r;i=e.split(":");r=[];for(a=0,t=i.length;a<t;a++){n=i[a];r.push(parseInt(n,16))}return r}();return{parts:a,zoneId:c}};t.IPv6.parser=function(e){var t,i,n,r,s,c,p;if(o["native"].test(e)){return a(e,8)}else if(r=e.match(o["transitional"])){p=r[6]||"";t=a(r[1].slice(0,-1)+p,6);if(t.parts){c=[parseInt(r[2]),parseInt(r[3]),parseInt(r[4]),parseInt(r[5])];for(i=0,n=c.length;i<n;i++){s=c[i];if(!(0<=s&&s<=255)){return null}}t.parts.push(c[0]<<8|c[1]);t.parts.push(c[2]<<8|c[3]);return{parts:t.parts,zoneId:t.zoneId}}}return null};t.IPv4.isIPv4=t.IPv6.isIPv6=function(e){return this.parser(e)!==null};t.IPv4.isValid=function(e){var a;try{new this(this.parser(e));return true}catch(e){a=e;return false}};t.IPv4.isValidFourPartDecimal=function(e){if(t.IPv4.isValid(e)&&e.match(/^(0|[1-9]\d*)(\.(0|[1-9]\d*)){3}$/)){return true}else{return false}};t.IPv6.isValid=function(e){var a,t;if(typeof e==="string"&&e.indexOf(":")===-1){return false}try{a=this.parser(e);new this(a.parts,a.zoneId);return true}catch(e){t=e;return false}};t.IPv4.parse=function(e){var a;a=this.parser(e);if(a===null){throw new Error("ipaddr: string is not formatted like ip address")}return new this(a)};t.IPv6.parse=function(e){var a;a=this.parser(e);if(a.parts===null){throw new Error("ipaddr: string is not formatted like ip address")}return new this(a.parts,a.zoneId)};t.IPv4.parseCIDR=function(e){var a,t,i;if(t=e.match(/^(.+)\/(\d+)$/)){a=parseInt(t[2]);if(a>=0&&a<=32){i=[this.parse(t[1]),a];Object.defineProperty(i,"toString",{value:function(){return this.join("/")}});return i}}throw new Error("ipaddr: string is not formatted like an IPv4 CIDR range")};t.IPv4.subnetMaskFromPrefixLength=function(e){var a,t,i;e=parseInt(e);if(e<0||e>32){throw new Error("ipaddr: invalid IPv4 prefix length")}i=[0,0,0,0];t=0;a=Math.floor(e/8);while(t<a){i[t]=255;t++}if(a<4){i[a]=Math.pow(2,e%8)-1<<8-e%8}return new this(i)};t.IPv4.broadcastAddressFromCIDR=function(e){var a,t,i,n,r,o;try{a=this.parseCIDR(e);n=a[0].toByteArray();o=this.subnetMaskFromPrefixLength(a[1]).toByteArray();r=[];i=0;while(i<4){r.push(parseInt(n[i],10)|parseInt(o[i],10)^255);i++}return new this(r)}catch(e){t=e;throw new Error("ipaddr: the address does not have IPv4 CIDR format")}};t.IPv4.networkAddressFromCIDR=function(e){var a,t,i,n,r,o;try{a=this.parseCIDR(e);n=a[0].toByteArray();o=this.subnetMaskFromPrefixLength(a[1]).toByteArray();r=[];i=0;while(i<4){r.push(parseInt(n[i],10)&parseInt(o[i],10));i++}return new this(r)}catch(e){t=e;throw new Error("ipaddr: the address does not have IPv4 CIDR format")}};t.IPv6.parseCIDR=function(e){var a,t,i;if(t=e.match(/^(.+)\/(\d+)$/)){a=parseInt(t[2]);if(a>=0&&a<=128){i=[this.parse(t[1]),a];Object.defineProperty(i,"toString",{value:function(){return this.join("/")}});return i}}throw new Error("ipaddr: string is not formatted like an IPv6 CIDR range")};t.isValid=function(e){return t.IPv6.isValid(e)||t.IPv4.isValid(e)};t.parse=function(e){if(t.IPv6.isValid(e)){return t.IPv6.parse(e)}else if(t.IPv4.isValid(e)){return t.IPv4.parse(e)}else{throw new Error("ipaddr: the address has neither IPv6 nor IPv4 format")}};t.parseCIDR=function(e){var a;try{return t.IPv6.parseCIDR(e)}catch(i){a=i;try{return t.IPv4.parseCIDR(e)}catch(e){a=e;throw new Error("ipaddr: the address has neither IPv6 nor IPv4 CIDR format")}}};t.fromByteArray=function(e){var a;a=e.length;if(a===4){return new t.IPv4(e)}else if(a===16){return new t.IPv6(e)}else{throw new Error("ipaddr: the binary input is neither an IPv6 nor IPv4 address")}};t.process=function(e){var a;a=this.parse(e);if(a.kind()==="ipv6"&&a.isIPv4MappedAddress()){return a.toIPv4Address()}else{return a}}}).call(this)},4328:function(e){"use strict";e.exports=Math.abs},422:function(e){"use strict";e.exports=Math.floor},1378:function(e){"use strict";e.exports=Math.max},7388:function(e){"use strict";e.exports=Math.min},526:function(e){"use strict";e.exports=Math.pow},4167:function(e,a){
|
|
204
|
+
*/var i=t(7500)("http-errors");var n=t(99);var r=t(1443);var o=t(4070);var s=t(9050);e.exports=createError;e.exports.HttpError=createHttpErrorConstructor();e.exports.isHttpError=createIsHttpErrorFunction(e.exports.HttpError);populateConstructorExports(e.exports,r.codes,e.exports.HttpError);function codeClass(e){return Number(String(e).charAt(0)+"00")}function createError(){var e;var a;var t=500;var n={};for(var o=0;o<arguments.length;o++){var s=arguments[o];var c=typeof s;if(c==="object"&&s instanceof Error){e=s;t=e.status||e.statusCode||t}else if(c==="number"&&o===0){t=s}else if(c==="string"){a=s}else if(c==="object"){n=s}else{throw new TypeError("argument #"+(o+1)+" unsupported type "+c)}}if(typeof t==="number"&&(t<400||t>=600)){i("non-error status code; use only 4xx or 5xx status codes")}if(typeof t!=="number"||!r.message[t]&&(t<400||t>=600)){t=500}var p=createError[t]||createError[codeClass(t)];if(!e){e=p?new p(a):new Error(a||r.message[t]);Error.captureStackTrace(e,createError)}if(!p||!(e instanceof p)||e.status!==t){e.expose=t<500;e.status=e.statusCode=t}for(var l in n){if(l!=="status"&&l!=="statusCode"){e[l]=n[l]}}return e}function createHttpErrorConstructor(){function HttpError(){throw new TypeError("cannot construct abstract class")}o(HttpError,Error);return HttpError}function createClientErrorConstructor(e,a,t){var i=toClassName(a);function ClientError(e){var a=e!=null?e:r.message[t];var o=new Error(a);Error.captureStackTrace(o,ClientError);n(o,ClientError.prototype);Object.defineProperty(o,"message",{enumerable:true,configurable:true,value:a,writable:true});Object.defineProperty(o,"name",{enumerable:false,configurable:true,value:i,writable:true});return o}o(ClientError,e);nameFunc(ClientError,i);ClientError.prototype.status=t;ClientError.prototype.statusCode=t;ClientError.prototype.expose=true;return ClientError}function createIsHttpErrorFunction(e){return function isHttpError(a){if(!a||typeof a!=="object"){return false}if(a instanceof e){return true}return a instanceof Error&&typeof a.expose==="boolean"&&typeof a.statusCode==="number"&&a.status===a.statusCode}}function createServerErrorConstructor(e,a,t){var i=toClassName(a);function ServerError(e){var a=e!=null?e:r.message[t];var o=new Error(a);Error.captureStackTrace(o,ServerError);n(o,ServerError.prototype);Object.defineProperty(o,"message",{enumerable:true,configurable:true,value:a,writable:true});Object.defineProperty(o,"name",{enumerable:false,configurable:true,value:i,writable:true});return o}o(ServerError,e);nameFunc(ServerError,i);ServerError.prototype.status=t;ServerError.prototype.statusCode=t;ServerError.prototype.expose=false;return ServerError}function nameFunc(e,a){var t=Object.getOwnPropertyDescriptor(e,"name");if(t&&t.configurable){t.value=a;Object.defineProperty(e,"name",t)}}function populateConstructorExports(e,a,t){a.forEach((function forEachCode(a){var i;var n=s(r.message[a]);switch(codeClass(a)){case 400:i=createClientErrorConstructor(t,n,a);break;case 500:i=createServerErrorConstructor(t,n,a);break}if(i){e[a]=i;e[n]=i}}))}function toClassName(e){return e.substr(-5)!=="Error"?e+"Error":e}},1350:function(e,a,t){"use strict";var i=t(9392).Buffer;a._dbcs=DBCSCodec;var n=-1,r=-2,o=-10,s=-1e3,c=new Array(256),p=-1;for(var l=0;l<256;l++)c[l]=n;function DBCSCodec(e,a){this.encodingName=e.encodingName;if(!e)throw new Error("DBCS codec is called without the data.");if(!e.table)throw new Error("Encoding '"+this.encodingName+"' has no data.");var t=e.table();this.decodeTables=[];this.decodeTables[0]=c.slice(0);this.decodeTableSeq=[];for(var i=0;i<t.length;i++)this._addDecodeChunk(t[i]);this.defaultCharUnicode=a.defaultCharUnicode;this.encodeTable=[];this.encodeTableSeq=[];var o={};if(e.encodeSkipVals)for(var i=0;i<e.encodeSkipVals.length;i++){var p=e.encodeSkipVals[i];if(typeof p==="number")o[p]=true;else for(var l=p.from;l<=p.to;l++)o[l]=true}this._fillEncodeTable(0,0,o);if(e.encodeAdd){for(var u in e.encodeAdd)if(Object.prototype.hasOwnProperty.call(e.encodeAdd,u))this._setEncodeChar(u.charCodeAt(0),e.encodeAdd[u])}this.defCharSB=this.encodeTable[0][a.defaultCharSingleByte.charCodeAt(0)];if(this.defCharSB===n)this.defCharSB=this.encodeTable[0]["?"];if(this.defCharSB===n)this.defCharSB="?".charCodeAt(0);if(typeof e.gb18030==="function"){this.gb18030=e.gb18030();var d=this.decodeTables.length;var f=this.decodeTables[d]=c.slice(0);var m=this.decodeTables.length;var v=this.decodeTables[m]=c.slice(0);for(var i=129;i<=254;i++){var x=s-this.decodeTables[0][i];var h=this.decodeTables[x];for(var l=48;l<=57;l++)h[l]=s-d}for(var i=129;i<=254;i++)f[i]=s-m;for(var i=48;i<=57;i++)v[i]=r}}DBCSCodec.prototype.encoder=DBCSEncoder;DBCSCodec.prototype.decoder=DBCSDecoder;DBCSCodec.prototype._getDecodeTrieNode=function(e){var a=[];for(;e>0;e>>=8)a.push(e&255);if(a.length==0)a.push(0);var t=this.decodeTables[0];for(var i=a.length-1;i>0;i--){var r=t[a[i]];if(r==n){t[a[i]]=s-this.decodeTables.length;this.decodeTables.push(t=c.slice(0))}else if(r<=s){t=this.decodeTables[s-r]}else throw new Error("Overwrite byte in "+this.encodingName+", addr: "+e.toString(16))}return t};DBCSCodec.prototype._addDecodeChunk=function(e){var a=parseInt(e[0],16);var t=this._getDecodeTrieNode(a);a=a&255;for(var i=1;i<e.length;i++){var n=e[i];if(typeof n==="string"){for(var r=0;r<n.length;){var s=n.charCodeAt(r++);if(55296<=s&&s<56320){var c=n.charCodeAt(r++);if(56320<=c&&c<57344)t[a++]=65536+(s-55296)*1024+(c-56320);else throw new Error("Incorrect surrogate pair in "+this.encodingName+" at chunk "+e[0])}else if(4080<s&&s<=4095){var p=4095-s+2;var l=[];for(var u=0;u<p;u++)l.push(n.charCodeAt(r++));t[a++]=o-this.decodeTableSeq.length;this.decodeTableSeq.push(l)}else t[a++]=s}}else if(typeof n==="number"){var d=t[a-1]+1;for(var r=0;r<n;r++)t[a++]=d++}else throw new Error("Incorrect type '"+typeof n+"' given in "+this.encodingName+" at chunk "+e[0])}if(a>255)throw new Error("Incorrect chunk in "+this.encodingName+" at addr "+e[0]+": too long"+a)};DBCSCodec.prototype._getEncodeBucket=function(e){var a=e>>8;if(this.encodeTable[a]===undefined)this.encodeTable[a]=c.slice(0);return this.encodeTable[a]};DBCSCodec.prototype._setEncodeChar=function(e,a){var t=this._getEncodeBucket(e);var i=e&255;if(t[i]<=o)this.encodeTableSeq[o-t[i]][p]=a;else if(t[i]==n)t[i]=a};DBCSCodec.prototype._setEncodeSequence=function(e,a){var t=e[0];var i=this._getEncodeBucket(t);var r=t&255;var s;if(i[r]<=o){s=this.encodeTableSeq[o-i[r]]}else{s={};if(i[r]!==n)s[p]=i[r];i[r]=o-this.encodeTableSeq.length;this.encodeTableSeq.push(s)}for(var c=1;c<e.length-1;c++){var l=s[t];if(typeof l==="object")s=l;else{s=s[t]={};if(l!==undefined)s[p]=l}}t=e[e.length-1];s[t]=a};DBCSCodec.prototype._fillEncodeTable=function(e,a,t){var i=this.decodeTables[e];for(var n=0;n<256;n++){var r=i[n];var c=a+n;if(t[c])continue;if(r>=0)this._setEncodeChar(r,c);else if(r<=s)this._fillEncodeTable(s-r,c<<8,t);else if(r<=o)this._setEncodeSequence(this.decodeTableSeq[o-r],c)}};function DBCSEncoder(e,a){this.leadSurrogate=-1;this.seqObj=undefined;this.encodeTable=a.encodeTable;this.encodeTableSeq=a.encodeTableSeq;this.defaultCharSingleByte=a.defCharSB;this.gb18030=a.gb18030}DBCSEncoder.prototype.write=function(e){var a=i.alloc(e.length*(this.gb18030?4:3)),t=this.leadSurrogate,r=this.seqObj,s=-1,c=0,l=0;while(true){if(s===-1){if(c==e.length)break;var u=e.charCodeAt(c++)}else{var u=s;s=-1}if(55296<=u&&u<57344){if(u<56320){if(t===-1){t=u;continue}else{t=u;u=n}}else{if(t!==-1){u=65536+(t-55296)*1024+(u-56320);t=-1}else{u=n}}}else if(t!==-1){s=u;u=n;t=-1}var d=n;if(r!==undefined&&u!=n){var f=r[u];if(typeof f==="object"){r=f;continue}else if(typeof f=="number"){d=f}else if(f==undefined){f=r[p];if(f!==undefined){d=f;s=u}else{}}r=undefined}else if(u>=0){var m=this.encodeTable[u>>8];if(m!==undefined)d=m[u&255];if(d<=o){r=this.encodeTableSeq[o-d];continue}if(d==n&&this.gb18030){var v=findIdx(this.gb18030.uChars,u);if(v!=-1){var d=this.gb18030.gbChars[v]+(u-this.gb18030.uChars[v]);a[l++]=129+Math.floor(d/12600);d=d%12600;a[l++]=48+Math.floor(d/1260);d=d%1260;a[l++]=129+Math.floor(d/10);d=d%10;a[l++]=48+d;continue}}}if(d===n)d=this.defaultCharSingleByte;if(d<256){a[l++]=d}else if(d<65536){a[l++]=d>>8;a[l++]=d&255}else{a[l++]=d>>16;a[l++]=d>>8&255;a[l++]=d&255}}this.seqObj=r;this.leadSurrogate=t;return a.slice(0,l)};DBCSEncoder.prototype.end=function(){if(this.leadSurrogate===-1&&this.seqObj===undefined)return;var e=i.alloc(10),a=0;if(this.seqObj){var t=this.seqObj[p];if(t!==undefined){if(t<256){e[a++]=t}else{e[a++]=t>>8;e[a++]=t&255}}else{}this.seqObj=undefined}if(this.leadSurrogate!==-1){e[a++]=this.defaultCharSingleByte;this.leadSurrogate=-1}return e.slice(0,a)};DBCSEncoder.prototype.findIdx=findIdx;function DBCSDecoder(e,a){this.nodeIdx=0;this.prevBuf=i.alloc(0);this.decodeTables=a.decodeTables;this.decodeTableSeq=a.decodeTableSeq;this.defaultCharUnicode=a.defaultCharUnicode;this.gb18030=a.gb18030}DBCSDecoder.prototype.write=function(e){var a=i.alloc(e.length*2),t=this.nodeIdx,c=this.prevBuf,p=this.prevBuf.length,l=-this.prevBuf.length,u;if(p>0)c=i.concat([c,e.slice(0,10)]);for(var d=0,f=0;d<e.length;d++){var m=d>=0?e[d]:c[d+p];var u=this.decodeTables[t][m];if(u>=0){}else if(u===n){d=l;u=this.defaultCharUnicode.charCodeAt(0)}else if(u===r){var v=l>=0?e.slice(l,d+1):c.slice(l+p,d+1+p);var x=(v[0]-129)*12600+(v[1]-48)*1260+(v[2]-129)*10+(v[3]-48);var h=findIdx(this.gb18030.gbChars,x);u=this.gb18030.uChars[h]+x-this.gb18030.gbChars[h]}else if(u<=s){t=s-u;continue}else if(u<=o){var g=this.decodeTableSeq[o-u];for(var b=0;b<g.length-1;b++){u=g[b];a[f++]=u&255;a[f++]=u>>8}u=g[g.length-1]}else throw new Error("iconv-lite internal error: invalid decoding table value "+u+" at "+t+"/"+m);if(u>65535){u-=65536;var y=55296+Math.floor(u/1024);a[f++]=y&255;a[f++]=y>>8;u=56320+u%1024}a[f++]=u&255;a[f++]=u>>8;t=0;l=d+1}this.nodeIdx=t;this.prevBuf=l>=0?e.slice(l):c.slice(l+p);return a.slice(0,f).toString("ucs2")};DBCSDecoder.prototype.end=function(){var e="";while(this.prevBuf.length>0){e+=this.defaultCharUnicode;var a=this.prevBuf.slice(1);this.prevBuf=i.alloc(0);this.nodeIdx=0;if(a.length>0)e+=this.write(a)}this.nodeIdx=0;return e};function findIdx(e,a){if(e[0]>a)return-1;var t=0,i=e.length;while(t<i-1){var n=t+Math.floor((i-t+1)/2);if(e[n]<=a)t=n;else i=n}return t}},7862:function(e,a,t){"use strict";e.exports={shiftjis:{type:"_dbcs",table:function(){return t(4227)},encodeAdd:{"¥":92,"‾":126},encodeSkipVals:[{from:60736,to:63808}]},csshiftjis:"shiftjis",mskanji:"shiftjis",sjis:"shiftjis",windows31j:"shiftjis",ms31j:"shiftjis",xsjis:"shiftjis",windows932:"shiftjis",ms932:"shiftjis",932:"shiftjis",cp932:"shiftjis",eucjp:{type:"_dbcs",table:function(){return t(9594)},encodeAdd:{"¥":92,"‾":126}},gb2312:"cp936",gb231280:"cp936",gb23121980:"cp936",csgb2312:"cp936",csiso58gb231280:"cp936",euccn:"cp936",windows936:"cp936",ms936:"cp936",936:"cp936",cp936:{type:"_dbcs",table:function(){return t(1716)}},gbk:{type:"_dbcs",table:function(){return t(1716).concat(t(8174))}},xgbk:"gbk",isoir58:"gbk",gb18030:{type:"_dbcs",table:function(){return t(1716).concat(t(8174))},gb18030:function(){return t(1565)},encodeSkipVals:[128],encodeAdd:{"€":41699}},chinese:"gb18030",windows949:"cp949",ms949:"cp949",949:"cp949",cp949:{type:"_dbcs",table:function(){return t(5578)}},cseuckr:"cp949",csksc56011987:"cp949",euckr:"cp949",isoir149:"cp949",korean:"cp949",ksc56011987:"cp949",ksc56011989:"cp949",ksc5601:"cp949",windows950:"cp950",ms950:"cp950",950:"cp950",cp950:{type:"_dbcs",table:function(){return t(9856)}},big5:"big5hkscs",big5hkscs:{type:"_dbcs",table:function(){return t(9856).concat(t(1479))},encodeSkipVals:[41676]},cnbig5:"big5hkscs",csbig5:"big5hkscs",xxbig5:"big5hkscs"}},7541:function(e,a,t){"use strict";var i=[t(3760),t(6719),t(2491),t(6077),t(9567),t(9843),t(1350),t(7862)];for(var n=0;n<i.length;n++){var r=i[n];for(var o in r)if(Object.prototype.hasOwnProperty.call(r,o))a[o]=r[o]}},3760:function(e,a,t){"use strict";var i=t(9392).Buffer;e.exports={utf8:{type:"_internal",bomAware:true},cesu8:{type:"_internal",bomAware:true},unicode11utf8:"utf8",ucs2:{type:"_internal",bomAware:true},utf16le:"ucs2",binary:{type:"_internal"},base64:{type:"_internal"},hex:{type:"_internal"},_internal:InternalCodec};function InternalCodec(e,a){this.enc=e.encodingName;this.bomAware=e.bomAware;if(this.enc==="base64")this.encoder=InternalEncoderBase64;else if(this.enc==="cesu8"){this.enc="utf8";this.encoder=InternalEncoderCesu8;if(i.from("eda0bdedb2a9","hex").toString()!=="💩"){this.decoder=InternalDecoderCesu8;this.defaultCharUnicode=a.defaultCharUnicode}}}InternalCodec.prototype.encoder=InternalEncoder;InternalCodec.prototype.decoder=InternalDecoder;var n=t(3193).StringDecoder;if(!n.prototype.end)n.prototype.end=function(){};function InternalDecoder(e,a){n.call(this,a.enc)}InternalDecoder.prototype=n.prototype;function InternalEncoder(e,a){this.enc=a.enc}InternalEncoder.prototype.write=function(e){return i.from(e,this.enc)};InternalEncoder.prototype.end=function(){};function InternalEncoderBase64(e,a){this.prevStr=""}InternalEncoderBase64.prototype.write=function(e){e=this.prevStr+e;var a=e.length-e.length%4;this.prevStr=e.slice(a);e=e.slice(0,a);return i.from(e,"base64")};InternalEncoderBase64.prototype.end=function(){return i.from(this.prevStr,"base64")};function InternalEncoderCesu8(e,a){}InternalEncoderCesu8.prototype.write=function(e){var a=i.alloc(e.length*3),t=0;for(var n=0;n<e.length;n++){var r=e.charCodeAt(n);if(r<128)a[t++]=r;else if(r<2048){a[t++]=192+(r>>>6);a[t++]=128+(r&63)}else{a[t++]=224+(r>>>12);a[t++]=128+(r>>>6&63);a[t++]=128+(r&63)}}return a.slice(0,t)};InternalEncoderCesu8.prototype.end=function(){};function InternalDecoderCesu8(e,a){this.acc=0;this.contBytes=0;this.accBytes=0;this.defaultCharUnicode=a.defaultCharUnicode}InternalDecoderCesu8.prototype.write=function(e){var a=this.acc,t=this.contBytes,i=this.accBytes,n="";for(var r=0;r<e.length;r++){var o=e[r];if((o&192)!==128){if(t>0){n+=this.defaultCharUnicode;t=0}if(o<128){n+=String.fromCharCode(o)}else if(o<224){a=o&31;t=1;i=1}else if(o<240){a=o&15;t=2;i=1}else{n+=this.defaultCharUnicode}}else{if(t>0){a=a<<6|o&63;t--;i++;if(t===0){if(i===2&&a<128&&a>0)n+=this.defaultCharUnicode;else if(i===3&&a<2048)n+=this.defaultCharUnicode;else n+=String.fromCharCode(a)}}else{n+=this.defaultCharUnicode}}}this.acc=a;this.contBytes=t;this.accBytes=i;return n};InternalDecoderCesu8.prototype.end=function(){var e=0;if(this.contBytes>0)e+=this.defaultCharUnicode;return e}},6077:function(e,a,t){"use strict";var i=t(9392).Buffer;a._sbcs=SBCSCodec;function SBCSCodec(e,a){if(!e)throw new Error("SBCS codec is called without the data.");if(!e.chars||e.chars.length!==128&&e.chars.length!==256)throw new Error("Encoding '"+e.type+"' has incorrect 'chars' (must be of len 128 or 256)");if(e.chars.length===128){var t="";for(var n=0;n<128;n++)t+=String.fromCharCode(n);e.chars=t+e.chars}this.decodeBuf=i.from(e.chars,"ucs2");var r=i.alloc(65536,a.defaultCharSingleByte.charCodeAt(0));for(var n=0;n<e.chars.length;n++)r[e.chars.charCodeAt(n)]=n;this.encodeBuf=r}SBCSCodec.prototype.encoder=SBCSEncoder;SBCSCodec.prototype.decoder=SBCSDecoder;function SBCSEncoder(e,a){this.encodeBuf=a.encodeBuf}SBCSEncoder.prototype.write=function(e){var a=i.alloc(e.length);for(var t=0;t<e.length;t++)a[t]=this.encodeBuf[e.charCodeAt(t)];return a};SBCSEncoder.prototype.end=function(){};function SBCSDecoder(e,a){this.decodeBuf=a.decodeBuf}SBCSDecoder.prototype.write=function(e){var a=this.decodeBuf;var t=i.alloc(e.length*2);var n=0,r=0;for(var o=0;o<e.length;o++){n=e[o]*2;r=o*2;t[r]=a[n];t[r+1]=a[n+1]}return t.toString("ucs2")};SBCSDecoder.prototype.end=function(){}},9843:function(e){"use strict";e.exports={437:"cp437",737:"cp737",775:"cp775",850:"cp850",852:"cp852",855:"cp855",856:"cp856",857:"cp857",858:"cp858",860:"cp860",861:"cp861",862:"cp862",863:"cp863",864:"cp864",865:"cp865",866:"cp866",869:"cp869",874:"windows874",922:"cp922",1046:"cp1046",1124:"cp1124",1125:"cp1125",1129:"cp1129",1133:"cp1133",1161:"cp1161",1162:"cp1162",1163:"cp1163",1250:"windows1250",1251:"windows1251",1252:"windows1252",1253:"windows1253",1254:"windows1254",1255:"windows1255",1256:"windows1256",1257:"windows1257",1258:"windows1258",28591:"iso88591",28592:"iso88592",28593:"iso88593",28594:"iso88594",28595:"iso88595",28596:"iso88596",28597:"iso88597",28598:"iso88598",28599:"iso88599",28600:"iso885910",28601:"iso885911",28603:"iso885913",28604:"iso885914",28605:"iso885915",28606:"iso885916",windows874:{type:"_sbcs",chars:"€����…�����������‘’“”•–—�������� กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู����฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛����"},win874:"windows874",cp874:"windows874",windows1250:{type:"_sbcs",chars:"€�‚�„…†‡�‰Š‹ŚŤŽŹ�‘’“”•–—�™š›śťžź ˇ˘Ł¤Ą¦§¨©Ş«¬®Ż°±˛ł´µ¶·¸ąş»Ľ˝ľżŔÁÂĂÄĹĆÇČÉĘËĚÍÎĎĐŃŇÓÔŐÖ×ŘŮÚŰÜÝŢßŕáâăäĺćçčéęëěíîďđńňóôőö÷řůúűüýţ˙"},win1250:"windows1250",cp1250:"windows1250",windows1251:{type:"_sbcs",chars:"ЂЃ‚ѓ„…†‡€‰Љ‹ЊЌЋЏђ‘’“”•–—�™љ›њќћџ ЎўЈ¤Ґ¦§Ё©Є«¬®Ї°±Ііґµ¶·ё№є»јЅѕїАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя"},win1251:"windows1251",cp1251:"windows1251",windows1252:{type:"_sbcs",chars:"€�‚ƒ„…†‡ˆ‰Š‹Œ�Ž��‘’“”•–—˜™š›œ�žŸ ¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ"},win1252:"windows1252",cp1252:"windows1252",windows1253:{type:"_sbcs",chars:"€�‚ƒ„…†‡�‰�‹�����‘’“”•–—�™�›���� ΅Ά£¤¥¦§¨©�«¬®―°±²³΄µ¶·ΈΉΊ»Ό½ΎΏΐΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ�ΣΤΥΦΧΨΩΪΫάέήίΰαβγδεζηθικλμνξοπρςστυφχψωϊϋόύώ�"},win1253:"windows1253",cp1253:"windows1253",windows1254:{type:"_sbcs",chars:"€�‚ƒ„…†‡ˆ‰Š‹Œ����‘’“”•–—˜™š›œ��Ÿ ¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏĞÑÒÓÔÕÖרÙÚÛÜİŞßàáâãäåæçèéêëìíîïğñòóôõö÷øùúûüışÿ"},win1254:"windows1254",cp1254:"windows1254",windows1255:{type:"_sbcs",chars:"€�‚ƒ„…†‡ˆ‰�‹�����‘’“”•–—˜™�›���� ¡¢£₪¥¦§¨©×«¬®¯°±²³´µ¶·¸¹÷»¼½¾¿ְֱֲֳִֵֶַָֹֺֻּֽ־ֿ׀ׁׂ׃װױײ׳״�������אבגדהוזחטיךכלםמןנסעףפץצקרשת���"},win1255:"windows1255",cp1255:"windows1255",windows1256:{type:"_sbcs",chars:"€پ‚ƒ„…†‡ˆ‰ٹ‹Œچژڈگ‘’“”•–—ک™ڑ›œں ،¢£¤¥¦§¨©ھ«¬®¯°±²³´µ¶·¸¹؛»¼½¾؟ہءآأؤإئابةتثجحخدذرزسشصض×طظعغـفقكàلâمنهوçèéêëىيîïًٌٍَôُِ÷ّùْûüے"},win1256:"windows1256",cp1256:"windows1256",windows1257:{type:"_sbcs",chars:"€�‚�„…†‡�‰�‹�¨ˇ¸�‘’“”•–—�™�›�¯˛� �¢£¤�¦§Ø©Ŗ«¬®Æ°±²³´µ¶·ø¹ŗ»¼½¾æĄĮĀĆÄÅĘĒČÉŹĖĢĶĪĻŠŃŅÓŌÕÖ×ŲŁŚŪÜŻŽßąįāćäåęēčéźėģķīļšńņóōõö÷ųłśūüżž˙"},win1257:"windows1257",cp1257:"windows1257",windows1258:{type:"_sbcs",chars:"€�‚ƒ„…†‡ˆ‰�‹Œ����‘’“”•–—˜™�›œ��Ÿ ¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂĂÄÅÆÇÈÉÊË̀ÍÎÏĐÑ̉ÓÔƠÖרÙÚÛÜỮßàáâăäåæçèéêë́íîïđṇ̃óôơö÷øùúûüư₫ÿ"},win1258:"windows1258",cp1258:"windows1258",iso88591:{type:"_sbcs",chars:"
¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ"},cp28591:"iso88591",iso88592:{type:"_sbcs",chars:"
Ą˘Ł¤ĽŚ§¨ŠŞŤŹŽŻ°ą˛ł´ľśˇ¸šşťź˝žżŔÁÂĂÄĹĆÇČÉĘËĚÍÎĎĐŃŇÓÔŐÖ×ŘŮÚŰÜÝŢßŕáâăäĺćçčéęëěíîďđńňóôőö÷řůúűüýţ˙"},cp28592:"iso88592",iso88593:{type:"_sbcs",chars:"
Ħ˘£¤�Ĥ§¨İŞĞĴ�ݰħ²³´µĥ·¸ışğĵ½�żÀÁÂ�ÄĊĈÇÈÉÊËÌÍÎÏ�ÑÒÓÔĠÖ×ĜÙÚÛÜŬŜßàáâ�äċĉçèéêëìíîï�ñòóôġö÷ĝùúûüŭŝ˙"},cp28593:"iso88593",iso88594:{type:"_sbcs",chars:"
ĄĸŖ¤Ĩϧ¨ŠĒĢŦޝ°ą˛ŗ´ĩšēģŧŊžŋĀÁÂÃÄÅÆĮČÉĘËĖÍÎĪĐŅŌĶÔÕÖרŲÚÛÜŨŪßāáâãäåæįčéęëėíîīđņōķôõö÷øųúûüũū˙"},cp28594:"iso88594",iso88595:{type:"_sbcs",chars:"
ЁЂЃЄЅІЇЈЉЊЋЌЎЏАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя№ёђѓєѕіїјљњћќ§ўџ"},cp28595:"iso88595",iso88596:{type:"_sbcs",chars:"
���¤�������،�������������؛���؟�ءآأؤإئابةتثجحخدذرزسشصضطظعغ�����ـفقكلمنهوىيًٌٍَُِّْ�������������"},cp28596:"iso88596",iso88597:{type:"_sbcs",chars:"
‘’£€₯¦§¨©ͺ«¬�―°±²³΄΅Ά·ΈΉΊ»Ό½ΎΏΐΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ�ΣΤΥΦΧΨΩΪΫάέήίΰαβγδεζηθικλμνξοπρςστυφχψωϊϋόύώ�"},cp28597:"iso88597",iso88598:{type:"_sbcs",chars:"
�¢£¤¥¦§¨©×«¬®¯°±²³´µ¶·¸¹÷»¼½¾��������������������������������‗אבגדהוזחטיךכלםמןנסעףפץצקרשת���"},cp28598:"iso88598",iso88599:{type:"_sbcs",chars:"
¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏĞÑÒÓÔÕÖרÙÚÛÜİŞßàáâãäåæçèéêëìíîïğñòóôõö÷øùúûüışÿ"},cp28599:"iso88599",iso885910:{type:"_sbcs",chars:"
ĄĒĢĪĨͧĻĐŠŦŽŪŊ°ąēģīĩķ·ļđšŧž―ūŋĀÁÂÃÄÅÆĮČÉĘËĖÍÎÏÐŅŌÓÔÕÖŨØŲÚÛÜÝÞßāáâãäåæįčéęëėíîïðņōóôõöũøųúûüýþĸ"},cp28600:"iso885910",iso885911:{type:"_sbcs",chars:"
กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู����฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛����"},cp28601:"iso885911",iso885913:{type:"_sbcs",chars:"
”¢£¤„¦§Ø©Ŗ«¬®Æ°±²³“µ¶·ø¹ŗ»¼½¾æĄĮĀĆÄÅĘĒČÉŹĖĢĶĪĻŠŃŅÓŌÕÖ×ŲŁŚŪÜŻŽßąįāćäåęēčéźėģķīļšńņóōõö÷ųłśūüżž’"},cp28603:"iso885913",iso885914:{type:"_sbcs",chars:"
Ḃḃ£ĊċḊ§Ẁ©ẂḋỲ®ŸḞḟĠġṀṁ¶ṖẁṗẃṠỳẄẅṡÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏŴÑÒÓÔÕÖṪØÙÚÛÜÝŶßàáâãäåæçèéêëìíîïŵñòóôõöṫøùúûüýŷÿ"},cp28604:"iso885914",iso885915:{type:"_sbcs",chars:"
¡¢£€¥Š§š©ª«¬®¯°±²³Žµ¶·ž¹º»ŒœŸ¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ"},cp28605:"iso885915",iso885916:{type:"_sbcs",chars:"
ĄąŁ€„Чš©Ș«ŹźŻ°±ČłŽ”¶·žčș»ŒœŸżÀÁÂĂÄĆÆÇÈÉÊËÌÍÎÏĐŃÒÓÔŐÖŚŰÙÚÛÜĘȚßàáâăäćæçèéêëìíîïđńòóôőöśűùúûüęțÿ"},cp28606:"iso885916",cp437:{type:"_sbcs",chars:"ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜ¢£¥₧ƒáíóúñѪº¿⌐¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ibm437:"cp437",csibm437:"cp437",cp737:{type:"_sbcs",chars:"ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩαβγδεζηθικλμνξοπρσςτυφχψ░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀ωάέήϊίόύϋώΆΈΉΊΌΎΏ±≥≤ΪΫ÷≈°∙·√ⁿ²■ "},ibm737:"cp737",csibm737:"cp737",cp775:{type:"_sbcs",chars:"ĆüéāäģåćłēŖŗīŹÄÅÉæÆōöĢ¢ŚśÖÜø£Ø×¤ĀĪóŻżź”¦©®¬½¼Ł«»░▒▓│┤ĄČĘĖ╣║╗╝ĮŠ┐└┴┬├─┼ŲŪ╚╔╩╦╠═╬Žąčęėįšųūž┘┌█▄▌▐▀ÓßŌŃõÕµńĶķĻļņĒŅ’±“¾¶§÷„°∙·¹³²■ "},ibm775:"cp775",csibm775:"cp775",cp850:{type:"_sbcs",chars:"ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×ƒáíóúñѪº¿®¬½¼¡«»░▒▓│┤ÁÂÀ©╣║╗╝¢¥┐└┴┬├─┼ãÃ╚╔╩╦╠═╬¤ðÐÊËÈıÍÎÏ┘┌█▄¦Ì▀ÓßÔÒõÕµþÞÚÛÙýݯ´±‗¾¶§÷¸°¨·¹³²■ "},ibm850:"cp850",csibm850:"cp850",cp852:{type:"_sbcs",chars:"ÇüéâäůćçłëŐőîŹÄĆÉĹĺôöĽľŚśÖÜŤťŁ×čáíóúĄąŽžĘ꬟Ⱥ«»░▒▓│┤ÁÂĚŞ╣║╗╝Żż┐└┴┬├─┼Ăă╚╔╩╦╠═╬¤đĐĎËďŇÍÎě┘┌█▄ŢŮ▀ÓßÔŃńňŠšŔÚŕŰýÝţ´˝˛ˇ˘§÷¸°¨˙űŘř■ "},ibm852:"cp852",csibm852:"cp852",cp855:{type:"_sbcs",chars:"ђЂѓЃёЁєЄѕЅіІїЇјЈљЉњЊћЋќЌўЎџЏюЮъЪаАбБцЦдДеЕфФгГ«»░▒▓│┤хХиИ╣║╗╝йЙ┐└┴┬├─┼кК╚╔╩╦╠═╬¤лЛмМнНоОп┘┌█▄Пя▀ЯрРсСтТуУжЖвВьЬ№ыЫзЗшШэЭщЩчЧ§■ "},ibm855:"cp855",csibm855:"cp855",cp856:{type:"_sbcs",chars:"אבגדהוזחטיךכלםמןנסעףפץצקרשת�£�×����������®¬½¼�«»░▒▓│┤���©╣║╗╝¢¥┐└┴┬├─┼��╚╔╩╦╠═╬¤���������┘┌█▄¦�▀������µ�������¯´±‗¾¶§÷¸°¨·¹³²■ "},ibm856:"cp856",csibm856:"cp856",cp857:{type:"_sbcs",chars:"ÇüéâäàåçêëèïîıÄÅÉæÆôöòûùİÖÜø£ØŞşáíóúñÑĞ𿮬½¼¡«»░▒▓│┤ÁÂÀ©╣║╗╝¢¥┐└┴┬├─┼ãÃ╚╔╩╦╠═╬¤ºªÊËÈ�ÍÎÏ┘┌█▄¦Ì▀ÓßÔÒõÕµ�×ÚÛÙìÿ¯´±�¾¶§÷¸°¨·¹³²■ "},ibm857:"cp857",csibm857:"cp857",cp858:{type:"_sbcs",chars:"ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×ƒáíóúñѪº¿®¬½¼¡«»░▒▓│┤ÁÂÀ©╣║╗╝¢¥┐└┴┬├─┼ãÃ╚╔╩╦╠═╬¤ðÐÊËÈ€ÍÎÏ┘┌█▄¦Ì▀ÓßÔÒõÕµþÞÚÛÙýݯ´±‗¾¶§÷¸°¨·¹³²■ "},ibm858:"cp858",csibm858:"cp858",cp860:{type:"_sbcs",chars:"ÇüéâãàÁçêÊèÍÔìÃÂÉÀÈôõòÚùÌÕÜ¢£Ù₧ÓáíóúñѪº¿Ò¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ibm860:"cp860",csibm860:"cp860",cp861:{type:"_sbcs",chars:"ÇüéâäàåçêëèÐðÞÄÅÉæÆôöþûÝýÖÜø£Ø₧ƒáíóúÁÍÓÚ¿⌐¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ibm861:"cp861",csibm861:"cp861",cp862:{type:"_sbcs",chars:"אבגדהוזחטיךכלםמןנסעףפץצקרשת¢£¥₧ƒáíóúñѪº¿⌐¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ibm862:"cp862",csibm862:"cp862",cp863:{type:"_sbcs",chars:"ÇüéâÂà¶çêëèïî‗À§ÉÈÊôËÏûù¤ÔÜ¢£ÙÛƒ¦´óú¨¸³¯Î⌐¬½¼¾«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ibm863:"cp863",csibm863:"cp863",cp864:{type:"_sbcs",chars:"\0\b\t\n\v\f\r !\"#$٪&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~°·∙√▒─│┼┤┬├┴┐┌└┘β∞φ±½¼≈«»ﻷﻸ��ﻻﻼ� ﺂ£¤ﺄ��ﺎﺏﺕﺙ،ﺝﺡﺥ٠١٢٣٤٥٦٧٨٩ﻑ؛ﺱﺵﺹ؟¢ﺀﺁﺃﺅﻊﺋﺍﺑﺓﺗﺛﺟﺣﺧﺩﺫﺭﺯﺳﺷﺻﺿﻁﻅﻋﻏ¦¬÷×ﻉـﻓﻗﻛﻟﻣﻧﻫﻭﻯﻳﺽﻌﻎﻍﻡﹽّﻥﻩﻬﻰﻲﻐﻕﻵﻶﻝﻙﻱ■�"},ibm864:"cp864",csibm864:"cp864",cp865:{type:"_sbcs",chars:"ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø₧ƒáíóúñѪº¿⌐¬½¼¡«¤░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ibm865:"cp865",csibm865:"cp865",cp866:{type:"_sbcs",chars:"АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмноп░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀рстуфхцчшщъыьэюяЁёЄєЇїЎў°∙·√№¤■ "},ibm866:"cp866",csibm866:"cp866",cp869:{type:"_sbcs",chars:"������Ά�·¬¦‘’Έ―ΉΊΪΌ��ΎΫ©Ώ²³ά£έήίϊΐόύΑΒΓΔΕΖΗ½ΘΙ«»░▒▓│┤ΚΛΜΝ╣║╗╝ΞΟ┐└┴┬├─┼ΠΡ╚╔╩╦╠═╬ΣΤΥΦΧΨΩαβγ┘┌█▄δε▀ζηθικλμνξοπρσςτ΄±υφχ§ψ΅°¨ωϋΰώ■ "},ibm869:"cp869",csibm869:"cp869",cp922:{type:"_sbcs",chars:"
¡¢£¤¥¦§¨©ª«¬®‾°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏŠÑÒÓÔÕÖרÙÚÛÜÝŽßàáâãäåæçèéêëìíîïšñòóôõö÷øùúûüýžÿ"},ibm922:"cp922",csibm922:"cp922",cp1046:{type:"_sbcs",chars:"ﺈ×÷ﹱ■│─┐┌└┘ﹹﹻﹽﹿﹷﺊﻰﻳﻲﻎﻏﻐﻶﻸﻺﻼ ¤ﺋﺑﺗﺛﺟﺣ،ﺧﺳ٠١٢٣٤٥٦٧٨٩ﺷ؛ﺻﺿﻊ؟ﻋءآأؤإئابةتثجحخدذرزسشصضطﻇعغﻌﺂﺄﺎﻓـفقكلمنهوىيًٌٍَُِّْﻗﻛﻟﻵﻷﻹﻻﻣﻧﻬﻩ�"},ibm1046:"cp1046",csibm1046:"cp1046",cp1124:{type:"_sbcs",chars:"
ЁЂҐЄЅІЇЈЉЊЋЌЎЏАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя№ёђґєѕіїјљњћќ§ўџ"},ibm1124:"cp1124",csibm1124:"cp1124",cp1125:{type:"_sbcs",chars:"АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмноп░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀рстуфхцчшщъыьэюяЁёҐґЄєІіЇї·√№¤■ "},ibm1125:"cp1125",csibm1125:"cp1125",cp1129:{type:"_sbcs",chars:"
¡¢£¤¥¦§œ©ª«¬®¯°±²³Ÿµ¶·Œ¹º»¼½¾¿ÀÁÂĂÄÅÆÇÈÉÊË̀ÍÎÏĐÑ̉ÓÔƠÖרÙÚÛÜỮßàáâăäåæçèéêë́íîïđṇ̃óôơö÷øùúûüư₫ÿ"},ibm1129:"cp1129",csibm1129:"cp1129",cp1133:{type:"_sbcs",chars:"
ກຂຄງຈສຊຍດຕຖທນບປຜຝພຟມຢຣລວຫອຮ���ຯະາຳິີຶືຸູຼັົຽ���ເແໂໃໄ່້໊໋໌ໍໆ�ໜໝ₭����������������໐໑໒໓໔໕໖໗໘໙��¢¬¦�"},ibm1133:"cp1133",csibm1133:"cp1133",cp1161:{type:"_sbcs",chars:"��������������������������������่กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู้๊๋€฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛¢¬¦ "},ibm1161:"cp1161",csibm1161:"cp1161",cp1162:{type:"_sbcs",chars:"€…‘’“”•–— กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู����฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛����"},ibm1162:"cp1162",csibm1162:"cp1162",cp1163:{type:"_sbcs",chars:"
¡¢£€¥¦§œ©ª«¬®¯°±²³Ÿµ¶·Œ¹º»¼½¾¿ÀÁÂĂÄÅÆÇÈÉÊË̀ÍÎÏĐÑ̉ÓÔƠÖרÙÚÛÜỮßàáâăäåæçèéêë́íîïđṇ̃óôơö÷øùúûüư₫ÿ"},ibm1163:"cp1163",csibm1163:"cp1163",maccroatian:{type:"_sbcs",chars:"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®Š™´¨≠ŽØ∞±≤≥∆µ∂∑∏š∫ªºΩžø¿¡¬√ƒ≈ƫȅ ÀÃÕŒœĐ—“”‘’÷◊�©⁄¤‹›Æ»–·‚„‰ÂćÁčÈÍÎÏÌÓÔđÒÚÛÙıˆ˜¯πË˚¸Êæˇ"},maccyrillic:{type:"_sbcs",chars:"АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ†°¢£§•¶І®©™Ђђ≠Ѓѓ∞±≤≥іµ∂ЈЄєЇїЉљЊњјЅ¬√ƒ≈∆«»… ЋћЌќѕ–—“”‘’÷„ЎўЏџ№Ёёяабвгдежзийклмнопрстуфхцчшщъыьэю¤"},macgreek:{type:"_sbcs",chars:"Ĺ²É³ÖÜ΅àâä΄¨çéèê룙î‰ôö¦ùûü†ΓΔΘΛΞΠß®©ΣΪ§≠°·Α±≤≥¥ΒΕΖΗΙΚΜΦΫΨΩάΝ¬ΟΡ≈Τ«»… ΥΧΆΈœ–―“”‘’÷ΉΊΌΎέήίόΏύαβψδεφγηιξκλμνοπώρστθωςχυζϊϋΐΰ�"},maciceland:{type:"_sbcs",chars:"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûüݰ¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸ⁄¤ÐðÞþý·‚„‰ÂÊÁËÈÍÎÏÌÓÔ�ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ"},macroman:{type:"_sbcs",chars:"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸ⁄¤‹›fifl‡·‚„‰ÂÊÁËÈÍÎÏÌÓÔ�ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ"},macromania:{type:"_sbcs",chars:"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ĂŞ∞±≤≥¥µ∂∑∏π∫ªºΩăş¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸ⁄¤‹›Ţţ‡·‚„‰ÂÊÁËÈÍÎÏÌÓÔ�ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ"},macthai:{type:"_sbcs",chars:"«»…“”�•‘’� กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู\ufeff–—฿เแโใไๅๆ็่้๊๋์ํ™๏๐๑๒๓๔๕๖๗๘๙®©����"},macturkish:{type:"_sbcs",chars:"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸĞğİıŞş‡·‚„‰ÂÊÁËÈÍÎÏÌÓÔ�ÒÚÛÙ�ˆ˜¯˘˙˚¸˝˛ˇ"},macukraine:{type:"_sbcs",chars:"АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ†°Ґ£§•¶І®©™Ђђ≠Ѓѓ∞±≤≥іµґЈЄєЇїЉљЊњјЅ¬√ƒ≈∆«»… ЋћЌќѕ–—“”‘’÷„ЎўЏџ№Ёёяабвгдежзийклмнопрстуфхцчшщъыьэю¤"},koi8r:{type:"_sbcs",chars:"─│┌┐└┘├┤┬┴┼▀▄█▌▐░▒▓⌠■∙√≈≤≥ ⌡°²·÷═║╒ё╓╔╕╖╗╘╙╚╛╜╝╞╟╠╡Ё╢╣╤╥╦╧╨╩╪╫╬©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪ"},koi8u:{type:"_sbcs",chars:"─│┌┐└┘├┤┬┴┼▀▄█▌▐░▒▓⌠■∙√≈≤≥ ⌡°²·÷═║╒ёє╔ії╗╘╙╚╛ґ╝╞╟╠╡ЁЄ╣ІЇ╦╧╨╩╪Ґ╬©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪ"},koi8ru:{type:"_sbcs",chars:"─│┌┐└┘├┤┬┴┼▀▄█▌▐░▒▓⌠■∙√≈≤≥ ⌡°²·÷═║╒ёє╔ії╗╘╙╚╛ґў╞╟╠╡ЁЄ╣ІЇ╦╧╨╩╪ҐЎ©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪ"},koi8t:{type:"_sbcs",chars:"қғ‚Ғ„…†‡�‰ҳ‹ҲҷҶ�Қ‘’“”•–—�™�›�����ӯӮё¤ӣ¦§���«¬®�°±²Ё�Ӣ¶·�№�»���©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪ"},armscii8:{type:"_sbcs",chars:"
�և։)(»«—.՝,-֊…՜՛՞ԱաԲբԳգԴդԵեԶզԷէԸըԹթԺժԻիԼլԽխԾծԿկՀհՁձՂղՃճՄմՅյՆնՇշՈոՉչՊպՋջՌռՍսՎվՏտՐրՑցՒւՓփՔքՕօՖֆ՚�"},rk1048:{type:"_sbcs",chars:"ЂЃ‚ѓ„…†‡€‰Љ‹ЊҚҺЏђ‘’“”•–—�™љ›њқһџ ҰұӘ¤Ө¦§Ё©Ғ«¬®Ү°±Ііөµ¶·ё№ғ»әҢңүАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя"},tcvn:{type:"_sbcs",chars:"\0ÚỤỪỬỮ\b\t\n\v\f\rỨỰỲỶỸÝỴ !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~ÀẢÃÁẠẶẬÈẺẼÉẸỆÌỈĨÍỊÒỎÕÓỌỘỜỞỠỚỢÙỦŨ ĂÂÊÔƠƯĐăâêôơưđẶ̀̀̉̃́àảãáạẲằẳẵắẴẮẦẨẪẤỀặầẩẫấậèỂẻẽéẹềểễếệìỉỄẾỒĩíịòỔỏõóọồổỗốộờởỡớợùỖủũúụừửữứựỳỷỹýỵỐ"},georgianacademy:{type:"_sbcs",chars:"‚ƒ„…†‡ˆ‰Š‹Œ‘’“”•–—˜™š›œŸ ¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿აბგდევზთიკლმნოპჟრსტუფქღყშჩცძწჭხჯჰჱჲჳჴჵჶçèéêëìíîïðñòóôõö÷øùúûüýþÿ"},georgianps:{type:"_sbcs",chars:"‚ƒ„…†‡ˆ‰Š‹Œ‘’“”•–—˜™š›œŸ ¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿აბგდევზჱთიკლმნჲოპჟრსტჳუფქღყშჩცძწჭხჴჯჰჵæçèéêëìíîïðñòóôõö÷øùúûüýþÿ"},pt154:{type:"_sbcs",chars:"ҖҒӮғ„…ҶҮҲүҠӢҢҚҺҸҗ‘’“”•–—ҳҷҡӣңқһҹ ЎўЈӨҘҰ§Ё©Ә«¬ӯ®Ҝ°ұІіҙө¶·ё№ә»јҪҫҝАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя"},viscii:{type:"_sbcs",chars:"\0ẲẴẪ\b\t\n\v\f\rỶỸỴ !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~ẠẮẰẶẤẦẨẬẼẸẾỀỂỄỆỐỒỔỖỘỢỚỜỞỊỎỌỈỦŨỤỲÕắằặấầẩậẽẹếềểễệốồổỗỠƠộờởịỰỨỪỬơớƯÀÁÂÃẢĂẳẵÈÉÊẺÌÍĨỳĐứÒÓÔạỷừửÙÚỹỵÝỡưàáâãảăữẫèéêẻìíĩỉđựòóôõỏọụùúũủýợỮ"},iso646cn:{type:"_sbcs",chars:"\0\b\t\n\v\f\r !\"#¥%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}‾��������������������������������������������������������������������������������������������������������������������������������"},iso646jp:{type:"_sbcs",chars:"\0\b\t\n\v\f\r !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[¥]^_`abcdefghijklmnopqrstuvwxyz{|}‾��������������������������������������������������������������������������������������������������������������������������������"},hproman8:{type:"_sbcs",chars:"
ÀÂÈÊËÎÏ´ˋˆ¨˜ÙÛ₤¯Ýý°ÇçÑñ¡¿¤£¥§ƒ¢âêôûáéóúàèòùäëöüÅîØÆåíøæÄìÖÜÉïßÔÁÃãÐðÍÌÓÒÕõŠšÚŸÿÞþ·µ¶¾—¼½ªº«■»±�"},macintosh:{type:"_sbcs",chars:"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸ⁄¤‹›fifl‡·‚„‰ÂÊÁËÈÍÎÏÌÓÔ�ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ"},ascii:{type:"_sbcs",chars:"��������������������������������������������������������������������������������������������������������������������������������"},tis620:{type:"_sbcs",chars:"���������������������������������กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู����฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛����"}}},9567:function(e){"use strict";e.exports={10029:"maccenteuro",maccenteuro:{type:"_sbcs",chars:"ÄĀāÉĄÖÜáąČäčĆć鏟ĎíďĒēĖóėôöõúĚěü†°Ę£§•¶ß®©™ę¨≠ģĮįĪ≤≥īĶ∂∑łĻļĽľĹĺŅņѬ√ńŇ∆«»… ňŐÕőŌ–—“”‘’÷◊ōŔŕŘ‹›řŖŗŠ‚„šŚśÁŤťÍŽžŪÓÔūŮÚůŰűŲųÝýķŻŁżĢˇ"},808:"cp808",ibm808:"cp808",cp808:{type:"_sbcs",chars:"АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмноп░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀рстуфхцчшщъыьэюяЁёЄєЇїЎў°∙·√№€■ "},mik:{type:"_sbcs",chars:"АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя└┴┬├─┼╣║╚╔╩╦╠═╬┐░▒▓│┤№§╗╝┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ascii8bit:"ascii",usascii:"ascii",ansix34:"ascii",ansix341968:"ascii",ansix341986:"ascii",csascii:"ascii",cp367:"ascii",ibm367:"ascii",isoir6:"ascii",iso646us:"ascii",iso646irv:"ascii",us:"ascii",latin1:"iso88591",latin2:"iso88592",latin3:"iso88593",latin4:"iso88594",latin5:"iso88599",latin6:"iso885910",latin7:"iso885913",latin8:"iso885914",latin9:"iso885915",latin10:"iso885916",csisolatin1:"iso88591",csisolatin2:"iso88592",csisolatin3:"iso88593",csisolatin4:"iso88594",csisolatincyrillic:"iso88595",csisolatinarabic:"iso88596",csisolatingreek:"iso88597",csisolatinhebrew:"iso88598",csisolatin5:"iso88599",csisolatin6:"iso885910",l1:"iso88591",l2:"iso88592",l3:"iso88593",l4:"iso88594",l5:"iso88599",l6:"iso885910",l7:"iso885913",l8:"iso885914",l9:"iso885915",l10:"iso885916",isoir14:"iso646jp",isoir57:"iso646cn",isoir100:"iso88591",isoir101:"iso88592",isoir109:"iso88593",isoir110:"iso88594",isoir144:"iso88595",isoir127:"iso88596",isoir126:"iso88597",isoir138:"iso88598",isoir148:"iso88599",isoir157:"iso885910",isoir166:"tis620",isoir179:"iso885913",isoir199:"iso885914",isoir203:"iso885915",isoir226:"iso885916",cp819:"iso88591",ibm819:"iso88591",cyrillic:"iso88595",arabic:"iso88596",arabic8:"iso88596",ecma114:"iso88596",asmo708:"iso88596",greek:"iso88597",greek8:"iso88597",ecma118:"iso88597",elot928:"iso88597",hebrew:"iso88598",hebrew8:"iso88598",turkish:"iso88599",turkish8:"iso88599",thai:"iso885911",thai8:"iso885911",celtic:"iso885914",celtic8:"iso885914",isoceltic:"iso885914",tis6200:"tis620",tis62025291:"tis620",tis62025330:"tis620",1e4:"macroman",10006:"macgreek",10007:"maccyrillic",10079:"maciceland",10081:"macturkish",cspc8codepage437:"cp437",cspc775baltic:"cp775",cspc850multilingual:"cp850",cspcp852:"cp852",cspc862latinhebrew:"cp862",cpgr:"cp869",msee:"cp1250",mscyrl:"cp1251",msansi:"cp1252",msgreek:"cp1253",msturk:"cp1254",mshebr:"cp1255",msarab:"cp1256",winbaltrim:"cp1257",cp20866:"koi8r",20866:"koi8r",ibm878:"koi8r",cskoi8r:"koi8r",cp21866:"koi8u",21866:"koi8u",ibm1168:"koi8u",strk10482002:"rk1048",tcvn5712:"tcvn",tcvn57121:"tcvn",gb198880:"iso646cn",cn:"iso646cn",csiso14jisc6220ro:"iso646jp",jisc62201969ro:"iso646jp",jp:"iso646jp",cshproman8:"hproman8",r8:"hproman8",roman8:"hproman8",xroman8:"hproman8",ibm1051:"hproman8",mac:"macintosh",csmacintosh:"macintosh"}},6719:function(e,a,t){"use strict";var i=t(9392).Buffer;a.utf16be=Utf16BECodec;function Utf16BECodec(){}Utf16BECodec.prototype.encoder=Utf16BEEncoder;Utf16BECodec.prototype.decoder=Utf16BEDecoder;Utf16BECodec.prototype.bomAware=true;function Utf16BEEncoder(){}Utf16BEEncoder.prototype.write=function(e){var a=i.from(e,"ucs2");for(var t=0;t<a.length;t+=2){var n=a[t];a[t]=a[t+1];a[t+1]=n}return a};Utf16BEEncoder.prototype.end=function(){};function Utf16BEDecoder(){this.overflowByte=-1}Utf16BEDecoder.prototype.write=function(e){if(e.length==0)return"";var a=i.alloc(e.length+1),t=0,n=0;if(this.overflowByte!==-1){a[0]=e[0];a[1]=this.overflowByte;t=1;n=2}for(;t<e.length-1;t+=2,n+=2){a[n]=e[t+1];a[n+1]=e[t]}this.overflowByte=t==e.length-1?e[e.length-1]:-1;return a.slice(0,n).toString("ucs2")};Utf16BEDecoder.prototype.end=function(){};a.utf16=Utf16Codec;function Utf16Codec(e,a){this.iconv=a}Utf16Codec.prototype.encoder=Utf16Encoder;Utf16Codec.prototype.decoder=Utf16Decoder;function Utf16Encoder(e,a){e=e||{};if(e.addBOM===undefined)e.addBOM=true;this.encoder=a.iconv.getEncoder("utf-16le",e)}Utf16Encoder.prototype.write=function(e){return this.encoder.write(e)};Utf16Encoder.prototype.end=function(){return this.encoder.end()};function Utf16Decoder(e,a){this.decoder=null;this.initialBytes=[];this.initialBytesLen=0;this.options=e||{};this.iconv=a.iconv}Utf16Decoder.prototype.write=function(e){if(!this.decoder){this.initialBytes.push(e);this.initialBytesLen+=e.length;if(this.initialBytesLen<16)return"";var e=i.concat(this.initialBytes),a=detectEncoding(e,this.options.defaultEncoding);this.decoder=this.iconv.getDecoder(a,this.options);this.initialBytes.length=this.initialBytesLen=0}return this.decoder.write(e)};Utf16Decoder.prototype.end=function(){if(!this.decoder){var e=i.concat(this.initialBytes),a=detectEncoding(e,this.options.defaultEncoding);this.decoder=this.iconv.getDecoder(a,this.options);var t=this.decoder.write(e),n=this.decoder.end();return n?t+n:t}return this.decoder.end()};function detectEncoding(e,a){var t=a||"utf-16le";if(e.length>=2){if(e[0]==254&&e[1]==255)t="utf-16be";else if(e[0]==255&&e[1]==254)t="utf-16le";else{var i=0,n=0,r=Math.min(e.length-e.length%2,64);for(var o=0;o<r;o+=2){if(e[o]===0&&e[o+1]!==0)n++;if(e[o]!==0&&e[o+1]===0)i++}if(n>i)t="utf-16be";else if(n<i)t="utf-16le"}}return t}},2491:function(e,a,t){"use strict";var i=t(9392).Buffer;a.utf7=Utf7Codec;a.unicode11utf7="utf7";function Utf7Codec(e,a){this.iconv=a}Utf7Codec.prototype.encoder=Utf7Encoder;Utf7Codec.prototype.decoder=Utf7Decoder;Utf7Codec.prototype.bomAware=true;var n=/[^A-Za-z0-9'\(\),-\.\/:\? \n\r\t]+/g;function Utf7Encoder(e,a){this.iconv=a.iconv}Utf7Encoder.prototype.write=function(e){return i.from(e.replace(n,function(e){return"+"+(e==="+"?"":this.iconv.encode(e,"utf16-be").toString("base64").replace(/=+$/,""))+"-"}.bind(this)))};Utf7Encoder.prototype.end=function(){};function Utf7Decoder(e,a){this.iconv=a.iconv;this.inBase64=false;this.base64Accum=""}var r=/[A-Za-z0-9\/+]/;var o=[];for(var s=0;s<256;s++)o[s]=r.test(String.fromCharCode(s));var c="+".charCodeAt(0),p="-".charCodeAt(0),l="&".charCodeAt(0);Utf7Decoder.prototype.write=function(e){var a="",t=0,n=this.inBase64,r=this.base64Accum;for(var s=0;s<e.length;s++){if(!n){if(e[s]==c){a+=this.iconv.decode(e.slice(t,s),"ascii");t=s+1;n=true}}else{if(!o[e[s]]){if(s==t&&e[s]==p){a+="+"}else{var l=r+e.slice(t,s).toString();a+=this.iconv.decode(i.from(l,"base64"),"utf16-be")}if(e[s]!=p)s--;t=s+1;n=false;r=""}}}if(!n){a+=this.iconv.decode(e.slice(t),"ascii")}else{var l=r+e.slice(t).toString();var u=l.length-l.length%8;r=l.slice(u);l=l.slice(0,u);a+=this.iconv.decode(i.from(l,"base64"),"utf16-be")}this.inBase64=n;this.base64Accum=r;return a};Utf7Decoder.prototype.end=function(){var e="";if(this.inBase64&&this.base64Accum.length>0)e=this.iconv.decode(i.from(this.base64Accum,"base64"),"utf16-be");this.inBase64=false;this.base64Accum="";return e};a.utf7imap=Utf7IMAPCodec;function Utf7IMAPCodec(e,a){this.iconv=a}Utf7IMAPCodec.prototype.encoder=Utf7IMAPEncoder;Utf7IMAPCodec.prototype.decoder=Utf7IMAPDecoder;Utf7IMAPCodec.prototype.bomAware=true;function Utf7IMAPEncoder(e,a){this.iconv=a.iconv;this.inBase64=false;this.base64Accum=i.alloc(6);this.base64AccumIdx=0}Utf7IMAPEncoder.prototype.write=function(e){var a=this.inBase64,t=this.base64Accum,n=this.base64AccumIdx,r=i.alloc(e.length*5+10),o=0;for(var s=0;s<e.length;s++){var c=e.charCodeAt(s);if(32<=c&&c<=126){if(a){if(n>0){o+=r.write(t.slice(0,n).toString("base64").replace(/\//g,",").replace(/=+$/,""),o);n=0}r[o++]=p;a=false}if(!a){r[o++]=c;if(c===l)r[o++]=p}}else{if(!a){r[o++]=l;a=true}if(a){t[n++]=c>>8;t[n++]=c&255;if(n==t.length){o+=r.write(t.toString("base64").replace(/\//g,","),o);n=0}}}}this.inBase64=a;this.base64AccumIdx=n;return r.slice(0,o)};Utf7IMAPEncoder.prototype.end=function(){var e=i.alloc(10),a=0;if(this.inBase64){if(this.base64AccumIdx>0){a+=e.write(this.base64Accum.slice(0,this.base64AccumIdx).toString("base64").replace(/\//g,",").replace(/=+$/,""),a);this.base64AccumIdx=0}e[a++]=p;this.inBase64=false}return e.slice(0,a)};function Utf7IMAPDecoder(e,a){this.iconv=a.iconv;this.inBase64=false;this.base64Accum=""}var u=o.slice();u[",".charCodeAt(0)]=true;Utf7IMAPDecoder.prototype.write=function(e){var a="",t=0,n=this.inBase64,r=this.base64Accum;for(var o=0;o<e.length;o++){if(!n){if(e[o]==l){a+=this.iconv.decode(e.slice(t,o),"ascii");t=o+1;n=true}}else{if(!u[e[o]]){if(o==t&&e[o]==p){a+="&"}else{var s=r+e.slice(t,o).toString().replace(/,/g,"/");a+=this.iconv.decode(i.from(s,"base64"),"utf16-be")}if(e[o]!=p)o--;t=o+1;n=false;r=""}}}if(!n){a+=this.iconv.decode(e.slice(t),"ascii")}else{var s=r+e.slice(t).toString().replace(/,/g,"/");var c=s.length-s.length%8;r=s.slice(c);s=s.slice(0,c);a+=this.iconv.decode(i.from(s,"base64"),"utf16-be")}this.inBase64=n;this.base64Accum=r;return a};Utf7IMAPDecoder.prototype.end=function(){var e="";if(this.inBase64&&this.base64Accum.length>0)e=this.iconv.decode(i.from(this.base64Accum,"base64"),"utf16-be");this.inBase64=false;this.base64Accum="";return e}},7590:function(e,a){"use strict";var t="\ufeff";a.PrependBOM=PrependBOMWrapper;function PrependBOMWrapper(e,a){this.encoder=e;this.addBOM=true}PrependBOMWrapper.prototype.write=function(e){if(this.addBOM){e=t+e;this.addBOM=false}return this.encoder.write(e)};PrependBOMWrapper.prototype.end=function(){return this.encoder.end()};a.StripBOM=StripBOMWrapper;function StripBOMWrapper(e,a){this.decoder=e;this.pass=false;this.options=a||{}}StripBOMWrapper.prototype.write=function(e){var a=this.decoder.write(e);if(this.pass||!a)return a;if(a[0]===t){a=a.slice(1);if(typeof this.options.stripBOM==="function")this.options.stripBOM()}this.pass=true;return a};StripBOMWrapper.prototype.end=function(){return this.decoder.end()}},1775:function(e,a,t){"use strict";var i=t(181).Buffer;e.exports=function(e){var a=undefined;e.supportsNodeEncodingsExtension=!(i.from||new i(0)instanceof Uint8Array);e.extendNodeEncodings=function extendNodeEncodings(){if(a)return;a={};if(!e.supportsNodeEncodingsExtension){console.error("ACTION NEEDED: require('iconv-lite').extendNodeEncodings() is not supported in your version of Node");console.error("See more info at https://github.com/ashtuchkin/iconv-lite/wiki/Node-v4-compatibility");return}var n={hex:true,utf8:true,"utf-8":true,ascii:true,binary:true,base64:true,ucs2:true,"ucs-2":true,utf16le:true,"utf-16le":true};i.isNativeEncoding=function(e){return e&&n[e.toLowerCase()]};var r=t(181).SlowBuffer;a.SlowBufferToString=r.prototype.toString;r.prototype.toString=function(t,n,r){t=String(t||"utf8").toLowerCase();if(i.isNativeEncoding(t))return a.SlowBufferToString.call(this,t,n,r);if(typeof n=="undefined")n=0;if(typeof r=="undefined")r=this.length;return e.decode(this.slice(n,r),t)};a.SlowBufferWrite=r.prototype.write;r.prototype.write=function(t,n,r,o){if(isFinite(n)){if(!isFinite(r)){o=r;r=undefined}}else{var s=o;o=n;n=r;r=s}n=+n||0;var c=this.length-n;if(!r){r=c}else{r=+r;if(r>c){r=c}}o=String(o||"utf8").toLowerCase();if(i.isNativeEncoding(o))return a.SlowBufferWrite.call(this,t,n,r,o);if(t.length>0&&(r<0||n<0))throw new RangeError("attempt to write beyond buffer bounds");var p=e.encode(t,o);if(p.length<r)r=p.length;p.copy(this,n,0,r);return r};a.BufferIsEncoding=i.isEncoding;i.isEncoding=function(a){return i.isNativeEncoding(a)||e.encodingExists(a)};a.BufferByteLength=i.byteLength;i.byteLength=r.byteLength=function(t,n){n=String(n||"utf8").toLowerCase();if(i.isNativeEncoding(n))return a.BufferByteLength.call(this,t,n);return e.encode(t,n).length};a.BufferToString=i.prototype.toString;i.prototype.toString=function(t,n,r){t=String(t||"utf8").toLowerCase();if(i.isNativeEncoding(t))return a.BufferToString.call(this,t,n,r);if(typeof n=="undefined")n=0;if(typeof r=="undefined")r=this.length;return e.decode(this.slice(n,r),t)};a.BufferWrite=i.prototype.write;i.prototype.write=function(t,n,r,o){var s=n,c=r,p=o;if(isFinite(n)){if(!isFinite(r)){o=r;r=undefined}}else{var l=o;o=n;n=r;r=l}o=String(o||"utf8").toLowerCase();if(i.isNativeEncoding(o))return a.BufferWrite.call(this,t,s,c,p);n=+n||0;var u=this.length-n;if(!r){r=u}else{r=+r;if(r>u){r=u}}if(t.length>0&&(r<0||n<0))throw new RangeError("attempt to write beyond buffer bounds");var d=e.encode(t,o);if(d.length<r)r=d.length;d.copy(this,n,0,r);return r};if(e.supportsStreams){var o=t(2203).Readable;a.ReadableSetEncoding=o.prototype.setEncoding;o.prototype.setEncoding=function setEncoding(a,t){this._readableState.decoder=e.getDecoder(a,t);this._readableState.encoding=a};o.prototype.collect=e._collect}};e.undoExtendNodeEncodings=function undoExtendNodeEncodings(){if(!e.supportsNodeEncodingsExtension)return;if(!a)throw new Error("require('iconv-lite').undoExtendNodeEncodings(): Nothing to undo; extendNodeEncodings() is not called.");delete i.isNativeEncoding;var n=t(181).SlowBuffer;n.prototype.toString=a.SlowBufferToString;n.prototype.write=a.SlowBufferWrite;i.isEncoding=a.BufferIsEncoding;i.byteLength=a.BufferByteLength;i.prototype.toString=a.BufferToString;i.prototype.write=a.BufferWrite;if(e.supportsStreams){var r=t(2203).Readable;r.prototype.setEncoding=a.ReadableSetEncoding;delete r.prototype.collect}a=undefined}}},128:function(e,a,t){"use strict";var i=t(9392).Buffer;var n=t(7590),r=e.exports;r.encodings=null;r.defaultCharUnicode="�";r.defaultCharSingleByte="?";r.encode=function encode(e,a,t){e=""+(e||"");var n=r.getEncoder(a,t);var o=n.write(e);var s=n.end();return s&&s.length>0?i.concat([o,s]):o};r.decode=function decode(e,a,t){if(typeof e==="string"){if(!r.skipDecodeWarning){console.error("Iconv-lite warning: decode()-ing strings is deprecated. Refer to https://github.com/ashtuchkin/iconv-lite/wiki/Use-Buffers-when-decoding");r.skipDecodeWarning=true}e=i.from(""+(e||""),"binary")}var n=r.getDecoder(a,t);var o=n.write(e);var s=n.end();return s?o+s:o};r.encodingExists=function encodingExists(e){try{r.getCodec(e);return true}catch(e){return false}};r.toEncoding=r.encode;r.fromEncoding=r.decode;r._codecDataCache={};r.getCodec=function getCodec(e){if(!r.encodings)r.encodings=t(7541);var a=r._canonicalizeEncoding(e);var i={};while(true){var n=r._codecDataCache[a];if(n)return n;var o=r.encodings[a];switch(typeof o){case"string":a=o;break;case"object":for(var s in o)i[s]=o[s];if(!i.encodingName)i.encodingName=a;a=o.type;break;case"function":if(!i.encodingName)i.encodingName=a;n=new o(i,r);r._codecDataCache[i.encodingName]=n;return n;default:throw new Error("Encoding not recognized: '"+e+"' (searched as: '"+a+"')")}}};r._canonicalizeEncoding=function(e){return(""+e).toLowerCase().replace(/:\d{4}$|[^0-9a-z]/g,"")};r.getEncoder=function getEncoder(e,a){var t=r.getCodec(e),i=new t.encoder(a,t);if(t.bomAware&&a&&a.addBOM)i=new n.PrependBOM(i,a);return i};r.getDecoder=function getDecoder(e,a){var t=r.getCodec(e),i=new t.decoder(a,t);if(t.bomAware&&!(a&&a.stripBOM===false))i=new n.StripBOM(i,a);return i};var o=typeof process!=="undefined"&&process.versions&&process.versions.node;if(o){var s=o.split(".").map(Number);if(s[0]>0||s[1]>=10){t(1269)(r)}t(1775)(r)}if(false){}},1269:function(e,a,t){"use strict";var i=t(181).Buffer,n=t(2203).Transform;e.exports=function(e){e.encodeStream=function encodeStream(a,t){return new IconvLiteEncoderStream(e.getEncoder(a,t),t)};e.decodeStream=function decodeStream(a,t){return new IconvLiteDecoderStream(e.getDecoder(a,t),t)};e.supportsStreams=true;e.IconvLiteEncoderStream=IconvLiteEncoderStream;e.IconvLiteDecoderStream=IconvLiteDecoderStream;e._collect=IconvLiteDecoderStream.prototype.collect};function IconvLiteEncoderStream(e,a){this.conv=e;a=a||{};a.decodeStrings=false;n.call(this,a)}IconvLiteEncoderStream.prototype=Object.create(n.prototype,{constructor:{value:IconvLiteEncoderStream}});IconvLiteEncoderStream.prototype._transform=function(e,a,t){if(typeof e!="string")return t(new Error("Iconv encoding stream needs strings as its input."));try{var i=this.conv.write(e);if(i&&i.length)this.push(i);t()}catch(e){t(e)}};IconvLiteEncoderStream.prototype._flush=function(e){try{var a=this.conv.end();if(a&&a.length)this.push(a);e()}catch(a){e(a)}};IconvLiteEncoderStream.prototype.collect=function(e){var a=[];this.on("error",e);this.on("data",(function(e){a.push(e)}));this.on("end",(function(){e(null,i.concat(a))}));return this};function IconvLiteDecoderStream(e,a){this.conv=e;a=a||{};a.encoding=this.encoding="utf8";n.call(this,a)}IconvLiteDecoderStream.prototype=Object.create(n.prototype,{constructor:{value:IconvLiteDecoderStream}});IconvLiteDecoderStream.prototype._transform=function(e,a,t){if(!i.isBuffer(e))return t(new Error("Iconv decoding stream needs buffers as its input."));try{var n=this.conv.write(e);if(n&&n.length)this.push(n,this.encoding);t()}catch(e){t(e)}};IconvLiteDecoderStream.prototype._flush=function(e){try{var a=this.conv.end();if(a&&a.length)this.push(a,this.encoding);e()}catch(a){e(a)}};IconvLiteDecoderStream.prototype.collect=function(e){var a="";this.on("error",e);this.on("data",(function(e){a+=e}));this.on("end",(function(){e(null,a)}));return this}},4070:function(e,a,t){try{var i=t(9023);if(typeof i.inherits!=="function")throw"";e.exports=i.inherits}catch(a){e.exports=t(6005)}},6005:function(e){if(typeof Object.create==="function"){e.exports=function inherits(e,a){if(a){e.super_=a;e.prototype=Object.create(a.prototype,{constructor:{value:e,enumerable:false,writable:true,configurable:true}})}}}else{e.exports=function inherits(e,a){if(a){e.super_=a;var TempCtor=function(){};TempCtor.prototype=a.prototype;e.prototype=new TempCtor;e.prototype.constructor=e}}}},4287:function(e,a,t){e=t.nmd(e);(function(){var a,t,i,n,r,o,s,c,p;t={};c=this;if(true&&e!==null&&e.exports){e.exports=t}else{c["ipaddr"]=t}s=function(e,a,t,i){var n,r;if(e.length!==a.length){throw new Error("ipaddr: cannot match CIDR for objects with different lengths")}n=0;while(i>0){r=t-i;if(r<0){r=0}if(e[n]>>r!==a[n]>>r){return false}i-=t;n+=1}return true};t.subnetMatch=function(e,a,t){var i,n,r,o,s;if(t==null){t="unicast"}for(r in a){o=a[r];if(o[0]&&!(o[0]instanceof Array)){o=[o]}for(i=0,n=o.length;i<n;i++){s=o[i];if(e.kind()===s[0].kind()){if(e.match.apply(e,s)){return r}}}}return t};t.IPv4=function(){function IPv4(e){var a,t,i;if(e.length!==4){throw new Error("ipaddr: ipv4 octet count should be 4")}for(a=0,t=e.length;a<t;a++){i=e[a];if(!(0<=i&&i<=255)){throw new Error("ipaddr: ipv4 octet should fit in 8 bits")}}this.octets=e}IPv4.prototype.kind=function(){return"ipv4"};IPv4.prototype.toString=function(){return this.octets.join(".")};IPv4.prototype.toNormalizedString=function(){return this.toString()};IPv4.prototype.toByteArray=function(){return this.octets.slice(0)};IPv4.prototype.match=function(e,a){var t;if(a===void 0){t=e,e=t[0],a=t[1]}if(e.kind()!=="ipv4"){throw new Error("ipaddr: cannot match ipv4 address with non-ipv4 one")}return s(this.octets,e.octets,8,a)};IPv4.prototype.SpecialRanges={unspecified:[[new IPv4([0,0,0,0]),8]],broadcast:[[new IPv4([255,255,255,255]),32]],multicast:[[new IPv4([224,0,0,0]),4]],linkLocal:[[new IPv4([169,254,0,0]),16]],loopback:[[new IPv4([127,0,0,0]),8]],carrierGradeNat:[[new IPv4([100,64,0,0]),10]],private:[[new IPv4([10,0,0,0]),8],[new IPv4([172,16,0,0]),12],[new IPv4([192,168,0,0]),16]],reserved:[[new IPv4([192,0,0,0]),24],[new IPv4([192,0,2,0]),24],[new IPv4([192,88,99,0]),24],[new IPv4([198,51,100,0]),24],[new IPv4([203,0,113,0]),24],[new IPv4([240,0,0,0]),4]]};IPv4.prototype.range=function(){return t.subnetMatch(this,this.SpecialRanges)};IPv4.prototype.toIPv4MappedAddress=function(){return t.IPv6.parse("::ffff:"+this.toString())};IPv4.prototype.prefixLengthFromSubnetMask=function(){var e,a,t,i,n,r,o;o={0:8,128:7,192:6,224:5,240:4,248:3,252:2,254:1,255:0};e=0;n=false;for(a=t=3;t>=0;a=t+=-1){i=this.octets[a];if(i in o){r=o[i];if(n&&r!==0){return null}if(r!==8){n=true}e+=r}else{return null}}return 32-e};return IPv4}();i="(0?\\d+|0x[a-f0-9]+)";n={fourOctet:new RegExp("^"+i+"\\."+i+"\\."+i+"\\."+i+"$","i"),longValue:new RegExp("^"+i+"$","i")};t.IPv4.parser=function(e){var a,t,i,r,o;t=function(e){if(e[0]==="0"&&e[1]!=="x"){return parseInt(e,8)}else{return parseInt(e)}};if(a=e.match(n.fourOctet)){return function(){var e,n,r,o;r=a.slice(1,6);o=[];for(e=0,n=r.length;e<n;e++){i=r[e];o.push(t(i))}return o}()}else if(a=e.match(n.longValue)){o=t(a[1]);if(o>4294967295||o<0){throw new Error("ipaddr: address outside defined range")}return function(){var e,a;a=[];for(r=e=0;e<=24;r=e+=8){a.push(o>>r&255)}return a}().reverse()}else{return null}};t.IPv6=function(){function IPv6(e,a){var t,i,n,r,o,s;if(e.length===16){this.parts=[];for(t=i=0;i<=14;t=i+=2){this.parts.push(e[t]<<8|e[t+1])}}else if(e.length===8){this.parts=e}else{throw new Error("ipaddr: ipv6 part count should be 8 or 16")}s=this.parts;for(n=0,r=s.length;n<r;n++){o=s[n];if(!(0<=o&&o<=65535)){throw new Error("ipaddr: ipv6 part should fit in 16 bits")}}if(a){this.zoneId=a}}IPv6.prototype.kind=function(){return"ipv6"};IPv6.prototype.toString=function(){return this.toNormalizedString().replace(/((^|:)(0(:|$))+)/,"::")};IPv6.prototype.toRFC5952String=function(){var e,a,t,i,n;i=/((^|:)(0(:|$)){2,})/g;n=this.toNormalizedString();e=0;a=-1;while(t=i.exec(n)){if(t[0].length>a){e=t.index;a=t[0].length}}if(a<0){return n}return n.substring(0,e)+"::"+n.substring(e+a)};IPv6.prototype.toByteArray=function(){var e,a,t,i,n;e=[];n=this.parts;for(a=0,t=n.length;a<t;a++){i=n[a];e.push(i>>8);e.push(i&255)}return e};IPv6.prototype.toNormalizedString=function(){var e,a,t;e=function(){var e,t,i,n;i=this.parts;n=[];for(e=0,t=i.length;e<t;e++){a=i[e];n.push(a.toString(16))}return n}.call(this).join(":");t="";if(this.zoneId){t="%"+this.zoneId}return e+t};IPv6.prototype.toFixedLengthString=function(){var e,a,t;e=function(){var e,t,i,n;i=this.parts;n=[];for(e=0,t=i.length;e<t;e++){a=i[e];n.push(a.toString(16).padStart(4,"0"))}return n}.call(this).join(":");t="";if(this.zoneId){t="%"+this.zoneId}return e+t};IPv6.prototype.match=function(e,a){var t;if(a===void 0){t=e,e=t[0],a=t[1]}if(e.kind()!=="ipv6"){throw new Error("ipaddr: cannot match ipv6 address with non-ipv6 one")}return s(this.parts,e.parts,16,a)};IPv6.prototype.SpecialRanges={unspecified:[new IPv6([0,0,0,0,0,0,0,0]),128],linkLocal:[new IPv6([65152,0,0,0,0,0,0,0]),10],multicast:[new IPv6([65280,0,0,0,0,0,0,0]),8],loopback:[new IPv6([0,0,0,0,0,0,0,1]),128],uniqueLocal:[new IPv6([64512,0,0,0,0,0,0,0]),7],ipv4Mapped:[new IPv6([0,0,0,0,0,65535,0,0]),96],rfc6145:[new IPv6([0,0,0,0,65535,0,0,0]),96],rfc6052:[new IPv6([100,65435,0,0,0,0,0,0]),96],"6to4":[new IPv6([8194,0,0,0,0,0,0,0]),16],teredo:[new IPv6([8193,0,0,0,0,0,0,0]),32],reserved:[[new IPv6([8193,3512,0,0,0,0,0,0]),32]]};IPv6.prototype.range=function(){return t.subnetMatch(this,this.SpecialRanges)};IPv6.prototype.isIPv4MappedAddress=function(){return this.range()==="ipv4Mapped"};IPv6.prototype.toIPv4Address=function(){var e,a,i;if(!this.isIPv4MappedAddress()){throw new Error("ipaddr: trying to convert a generic ipv6 address to ipv4")}i=this.parts.slice(-2),e=i[0],a=i[1];return new t.IPv4([e>>8,e&255,a>>8,a&255])};IPv6.prototype.prefixLengthFromSubnetMask=function(){var e,a,t,i,n,r,o;o={0:16,32768:15,49152:14,57344:13,61440:12,63488:11,64512:10,65024:9,65280:8,65408:7,65472:6,65504:5,65520:4,65528:3,65532:2,65534:1,65535:0};e=0;n=false;for(a=t=7;t>=0;a=t+=-1){i=this.parts[a];if(i in o){r=o[i];if(n&&r!==0){return null}if(r!==16){n=true}e+=r}else{return null}}return 128-e};return IPv6}();r="(?:[0-9a-f]+::?)+";p="%[0-9a-z]{1,}";o={zoneIndex:new RegExp(p,"i"),native:new RegExp("^(::)?("+r+")?([0-9a-f]+)?(::)?("+p+")?$","i"),transitional:new RegExp("^((?:"+r+")|(?:::)(?:"+r+")?)"+(i+"\\."+i+"\\."+i+"\\."+i)+("("+p+")?$"),"i")};a=function(e,a){var t,i,n,r,s,c;if(e.indexOf("::")!==e.lastIndexOf("::")){return null}c=(e.match(o["zoneIndex"])||[])[0];if(c){c=c.substring(1);e=e.replace(/%.+$/,"")}t=0;i=-1;while((i=e.indexOf(":",i+1))>=0){t++}if(e.substr(0,2)==="::"){t--}if(e.substr(-2,2)==="::"){t--}if(t>a){return null}s=a-t;r=":";while(s--){r+="0:"}e=e.replace("::",r);if(e[0]===":"){e=e.slice(1)}if(e[e.length-1]===":"){e=e.slice(0,-1)}a=function(){var a,t,i,r;i=e.split(":");r=[];for(a=0,t=i.length;a<t;a++){n=i[a];r.push(parseInt(n,16))}return r}();return{parts:a,zoneId:c}};t.IPv6.parser=function(e){var t,i,n,r,s,c,p;if(o["native"].test(e)){return a(e,8)}else if(r=e.match(o["transitional"])){p=r[6]||"";t=a(r[1].slice(0,-1)+p,6);if(t.parts){c=[parseInt(r[2]),parseInt(r[3]),parseInt(r[4]),parseInt(r[5])];for(i=0,n=c.length;i<n;i++){s=c[i];if(!(0<=s&&s<=255)){return null}}t.parts.push(c[0]<<8|c[1]);t.parts.push(c[2]<<8|c[3]);return{parts:t.parts,zoneId:t.zoneId}}}return null};t.IPv4.isIPv4=t.IPv6.isIPv6=function(e){return this.parser(e)!==null};t.IPv4.isValid=function(e){var a;try{new this(this.parser(e));return true}catch(e){a=e;return false}};t.IPv4.isValidFourPartDecimal=function(e){if(t.IPv4.isValid(e)&&e.match(/^(0|[1-9]\d*)(\.(0|[1-9]\d*)){3}$/)){return true}else{return false}};t.IPv6.isValid=function(e){var a,t;if(typeof e==="string"&&e.indexOf(":")===-1){return false}try{a=this.parser(e);new this(a.parts,a.zoneId);return true}catch(e){t=e;return false}};t.IPv4.parse=function(e){var a;a=this.parser(e);if(a===null){throw new Error("ipaddr: string is not formatted like ip address")}return new this(a)};t.IPv6.parse=function(e){var a;a=this.parser(e);if(a.parts===null){throw new Error("ipaddr: string is not formatted like ip address")}return new this(a.parts,a.zoneId)};t.IPv4.parseCIDR=function(e){var a,t,i;if(t=e.match(/^(.+)\/(\d+)$/)){a=parseInt(t[2]);if(a>=0&&a<=32){i=[this.parse(t[1]),a];Object.defineProperty(i,"toString",{value:function(){return this.join("/")}});return i}}throw new Error("ipaddr: string is not formatted like an IPv4 CIDR range")};t.IPv4.subnetMaskFromPrefixLength=function(e){var a,t,i;e=parseInt(e);if(e<0||e>32){throw new Error("ipaddr: invalid IPv4 prefix length")}i=[0,0,0,0];t=0;a=Math.floor(e/8);while(t<a){i[t]=255;t++}if(a<4){i[a]=Math.pow(2,e%8)-1<<8-e%8}return new this(i)};t.IPv4.broadcastAddressFromCIDR=function(e){var a,t,i,n,r,o;try{a=this.parseCIDR(e);n=a[0].toByteArray();o=this.subnetMaskFromPrefixLength(a[1]).toByteArray();r=[];i=0;while(i<4){r.push(parseInt(n[i],10)|parseInt(o[i],10)^255);i++}return new this(r)}catch(e){t=e;throw new Error("ipaddr: the address does not have IPv4 CIDR format")}};t.IPv4.networkAddressFromCIDR=function(e){var a,t,i,n,r,o;try{a=this.parseCIDR(e);n=a[0].toByteArray();o=this.subnetMaskFromPrefixLength(a[1]).toByteArray();r=[];i=0;while(i<4){r.push(parseInt(n[i],10)&parseInt(o[i],10));i++}return new this(r)}catch(e){t=e;throw new Error("ipaddr: the address does not have IPv4 CIDR format")}};t.IPv6.parseCIDR=function(e){var a,t,i;if(t=e.match(/^(.+)\/(\d+)$/)){a=parseInt(t[2]);if(a>=0&&a<=128){i=[this.parse(t[1]),a];Object.defineProperty(i,"toString",{value:function(){return this.join("/")}});return i}}throw new Error("ipaddr: string is not formatted like an IPv6 CIDR range")};t.isValid=function(e){return t.IPv6.isValid(e)||t.IPv4.isValid(e)};t.parse=function(e){if(t.IPv6.isValid(e)){return t.IPv6.parse(e)}else if(t.IPv4.isValid(e)){return t.IPv4.parse(e)}else{throw new Error("ipaddr: the address has neither IPv6 nor IPv4 format")}};t.parseCIDR=function(e){var a;try{return t.IPv6.parseCIDR(e)}catch(i){a=i;try{return t.IPv4.parseCIDR(e)}catch(e){a=e;throw new Error("ipaddr: the address has neither IPv6 nor IPv4 CIDR format")}}};t.fromByteArray=function(e){var a;a=e.length;if(a===4){return new t.IPv4(e)}else if(a===16){return new t.IPv6(e)}else{throw new Error("ipaddr: the binary input is neither an IPv6 nor IPv4 address")}};t.process=function(e){var a;a=this.parse(e);if(a.kind()==="ipv6"&&a.isIPv4MappedAddress()){return a.toIPv4Address()}else{return a}}}).call(this)},4328:function(e){"use strict";e.exports=Math.abs},422:function(e){"use strict";e.exports=Math.floor},4021:function(e){"use strict";e.exports=Number.isNaN||function isNaN(e){return e!==e}},1378:function(e){"use strict";e.exports=Math.max},7388:function(e){"use strict";e.exports=Math.min},526:function(e){"use strict";e.exports=Math.pow},7816:function(e){"use strict";e.exports=Math.round},9947:function(e,a,t){"use strict";var i=t(4021);e.exports=function sign(e){if(i(e)||e===0){return e}return e<0?-1:+1}},4167:function(e,a){
|
|
205
205
|
/*!
|
|
206
206
|
* media-typer
|
|
207
207
|
* Copyright(c) 2014 Douglas Christopher Wilson
|
|
@@ -239,7 +239,7 @@ e.exports=t(7080)},6553:function(e,a,t){"use strict";
|
|
|
239
239
|
* Copyright(c) 2012-2014 Isaac Z. Schlueter
|
|
240
240
|
* Copyright(c) 2015 Douglas Christopher Wilson
|
|
241
241
|
* MIT Licensed
|
|
242
|
-
*/var i=t(5717);var n=t(7812);var r=t(6475);var o=t(817);e.exports=Negotiator;e.exports.Negotiator=Negotiator;function Negotiator(e){if(!(this instanceof Negotiator)){return new Negotiator(e)}this.request=e}Negotiator.prototype.charset=function charset(e){var a=this.charsets(e);return a&&a[0]};Negotiator.prototype.charsets=function charsets(e){return i(this.request.headers["accept-charset"],e)};Negotiator.prototype.encoding=function encoding(e){var a=this.encodings(e);return a&&a[0]};Negotiator.prototype.encodings=function encodings(e){return n(this.request.headers["accept-encoding"],e)};Negotiator.prototype.language=function language(e){var a=this.languages(e);return a&&a[0]};Negotiator.prototype.languages=function languages(e){return r(this.request.headers["accept-language"],e)};Negotiator.prototype.mediaType=function mediaType(e){var a=this.mediaTypes(e);return a&&a[0]};Negotiator.prototype.mediaTypes=function mediaTypes(e){return o(this.request.headers.accept,e)};Negotiator.prototype.preferredCharset=Negotiator.prototype.charset;Negotiator.prototype.preferredCharsets=Negotiator.prototype.charsets;Negotiator.prototype.preferredEncoding=Negotiator.prototype.encoding;Negotiator.prototype.preferredEncodings=Negotiator.prototype.encodings;Negotiator.prototype.preferredLanguage=Negotiator.prototype.language;Negotiator.prototype.preferredLanguages=Negotiator.prototype.languages;Negotiator.prototype.preferredMediaType=Negotiator.prototype.mediaType;Negotiator.prototype.preferredMediaTypes=Negotiator.prototype.mediaTypes},5717:function(e){"use strict";e.exports=preferredCharsets;e.exports.preferredCharsets=preferredCharsets;var a=/^\s*([^\s;]+)\s*(?:;(.*))?$/;function parseAcceptCharset(e){var a=e.split(",");for(var t=0,i=0;t<a.length;t++){var n=parseCharset(a[t].trim(),t);if(n){a[i++]=n}}a.length=i;return a}function parseCharset(e,t){var i=a.exec(e);if(!i)return null;var n=i[1];var r=1;if(i[2]){var o=i[2].split(";");for(var s=0;s<o.length;s++){var c=o[s].trim().split("=");if(c[0]==="q"){r=parseFloat(c[1]);break}}}return{charset:n,q:r,i:t}}function getCharsetPriority(e,a,t){var i={o:-1,q:0,s:0};for(var n=0;n<a.length;n++){var r=specify(e,a[n],t);if(r&&(i.s-r.s||i.q-r.q||i.o-r.o)<0){i=r}}return i}function specify(e,a,t){var i=0;if(a.charset.toLowerCase()===e.toLowerCase()){i|=1}else if(a.charset!=="*"){return null}return{i:t,o:a.i,q:a.q,s:i}}function preferredCharsets(e,a){var t=parseAcceptCharset(e===undefined?"*":e||"");if(!a){return t.filter(isQuality).sort(compareSpecs).map(getFullCharset)}var i=a.map((function getPriority(e,a){return getCharsetPriority(e,t,a)}));return i.filter(isQuality).sort(compareSpecs).map((function getCharset(e){return a[i.indexOf(e)]}))}function compareSpecs(e,a){return a.q-e.q||a.s-e.s||e.o-a.o||e.i-a.i||0}function getFullCharset(e){return e.charset}function isQuality(e){return e.q>0}},7812:function(e){"use strict";e.exports=preferredEncodings;e.exports.preferredEncodings=preferredEncodings;var a=/^\s*([^\s;]+)\s*(?:;(.*))?$/;function parseAcceptEncoding(e){var a=e.split(",");var t=false;var i=1;for(var n=0,r=0;n<a.length;n++){var o=parseEncoding(a[n].trim(),n);if(o){a[r++]=o;t=t||specify("identity",o);i=Math.min(i,o.q||1)}}if(!t){a[r++]={encoding:"identity",q:i,i:n}}a.length=r;return a}function parseEncoding(e,t){var i=a.exec(e);if(!i)return null;var n=i[1];var r=1;if(i[2]){var o=i[2].split(";");for(var s=0;s<o.length;s++){var c=o[s].trim().split("=");if(c[0]==="q"){r=parseFloat(c[1]);break}}}return{encoding:n,q:r,i:t}}function getEncodingPriority(e,a,t){var i={o:-1,q:0,s:0};for(var n=0;n<a.length;n++){var r=specify(e,a[n],t);if(r&&(i.s-r.s||i.q-r.q||i.o-r.o)<0){i=r}}return i}function specify(e,a,t){var i=0;if(a.encoding.toLowerCase()===e.toLowerCase()){i|=1}else if(a.encoding!=="*"){return null}return{i:t,o:a.i,q:a.q,s:i}}function preferredEncodings(e,a){var t=parseAcceptEncoding(e||"");if(!a){return t.filter(isQuality).sort(compareSpecs).map(getFullEncoding)}var i=a.map((function getPriority(e,a){return getEncodingPriority(e,t,a)}));return i.filter(isQuality).sort(compareSpecs).map((function getEncoding(e){return a[i.indexOf(e)]}))}function compareSpecs(e,a){return a.q-e.q||a.s-e.s||e.o-a.o||e.i-a.i||0}function getFullEncoding(e){return e.encoding}function isQuality(e){return e.q>0}},6475:function(e){"use strict";e.exports=preferredLanguages;e.exports.preferredLanguages=preferredLanguages;var a=/^\s*([^\s\-;]+)(?:-([^\s;]+))?\s*(?:;(.*))?$/;function parseAcceptLanguage(e){var a=e.split(",");for(var t=0,i=0;t<a.length;t++){var n=parseLanguage(a[t].trim(),t);if(n){a[i++]=n}}a.length=i;return a}function parseLanguage(e,t){var i=a.exec(e);if(!i)return null;var n=i[1];var r=i[2];var o=n;if(r)o+="-"+r;var s=1;if(i[3]){var c=i[3].split(";");for(var p=0;p<c.length;p++){var l=c[p].split("=");if(l[0]==="q")s=parseFloat(l[1])}}return{prefix:n,suffix:r,q:s,i:t,full:o}}function getLanguagePriority(e,a,t){var i={o:-1,q:0,s:0};for(var n=0;n<a.length;n++){var r=specify(e,a[n],t);if(r&&(i.s-r.s||i.q-r.q||i.o-r.o)<0){i=r}}return i}function specify(e,a,t){var i=parseLanguage(e);if(!i)return null;var n=0;if(a.full.toLowerCase()===i.full.toLowerCase()){n|=4}else if(a.prefix.toLowerCase()===i.full.toLowerCase()){n|=2}else if(a.full.toLowerCase()===i.prefix.toLowerCase()){n|=1}else if(a.full!=="*"){return null}return{i:t,o:a.i,q:a.q,s:n}}function preferredLanguages(e,a){var t=parseAcceptLanguage(e===undefined?"*":e||"");if(!a){return t.filter(isQuality).sort(compareSpecs).map(getFullLanguage)}var i=a.map((function getPriority(e,a){return getLanguagePriority(e,t,a)}));return i.filter(isQuality).sort(compareSpecs).map((function getLanguage(e){return a[i.indexOf(e)]}))}function compareSpecs(e,a){return a.q-e.q||a.s-e.s||e.o-a.o||e.i-a.i||0}function getFullLanguage(e){return e.full}function isQuality(e){return e.q>0}},817:function(e){"use strict";e.exports=preferredMediaTypes;e.exports.preferredMediaTypes=preferredMediaTypes;var a=/^\s*([^\s\/;]+)\/([^;\s]+)\s*(?:;(.*))?$/;function parseAccept(e){var a=splitMediaTypes(e);for(var t=0,i=0;t<a.length;t++){var n=parseMediaType(a[t].trim(),t);if(n){a[i++]=n}}a.length=i;return a}function parseMediaType(e,t){var i=a.exec(e);if(!i)return null;var n=Object.create(null);var r=1;var o=i[2];var s=i[1];if(i[3]){var c=splitParameters(i[3]).map(splitKeyValuePair);for(var p=0;p<c.length;p++){var l=c[p];var u=l[0].toLowerCase();var d=l[1];var f=d&&d[0]==='"'&&d[d.length-1]==='"'?d.substr(1,d.length-2):d;if(u==="q"){r=parseFloat(f);break}n[u]=f}}return{type:s,subtype:o,params:n,q:r,i:t}}function getMediaTypePriority(e,a,t){var i={o:-1,q:0,s:0};for(var n=0;n<a.length;n++){var r=specify(e,a[n],t);if(r&&(i.s-r.s||i.q-r.q||i.o-r.o)<0){i=r}}return i}function specify(e,a,t){var i=parseMediaType(e);var n=0;if(!i){return null}if(a.type.toLowerCase()==i.type.toLowerCase()){n|=4}else if(a.type!="*"){return null}if(a.subtype.toLowerCase()==i.subtype.toLowerCase()){n|=2}else if(a.subtype!="*"){return null}var r=Object.keys(a.params);if(r.length>0){if(r.every((function(e){return a.params[e]=="*"||(a.params[e]||"").toLowerCase()==(i.params[e]||"").toLowerCase()}))){n|=1}else{return null}}return{i:t,o:a.i,q:a.q,s:n}}function preferredMediaTypes(e,a){var t=parseAccept(e===undefined?"*/*":e||"");if(!a){return t.filter(isQuality).sort(compareSpecs).map(getFullType)}var i=a.map((function getPriority(e,a){return getMediaTypePriority(e,t,a)}));return i.filter(isQuality).sort(compareSpecs).map((function getType(e){return a[i.indexOf(e)]}))}function compareSpecs(e,a){return a.q-e.q||a.s-e.s||e.o-a.o||e.i-a.i||0}function getFullType(e){return e.type+"/"+e.subtype}function isQuality(e){return e.q>0}function quoteCount(e){var a=0;var t=0;while((t=e.indexOf('"',t))!==-1){a++;t++}return a}function splitKeyValuePair(e){var a=e.indexOf("=");var t;var i;if(a===-1){t=e}else{t=e.substr(0,a);i=e.substr(a+1)}return[t,i]}function splitMediaTypes(e){var a=e.split(",");for(var t=1,i=0;t<a.length;t++){if(quoteCount(a[i])%2==0){a[++i]=a[t]}else{a[i]+=","+a[t]}}a.length=i+1;return a}function splitParameters(e){var a=e.split(";");for(var t=1,i=0;t<a.length;t++){if(quoteCount(a[i])%2==0){a[++i]=a[t]}else{a[i]+=";"+a[t]}}a.length=i+1;for(var t=0;t<a.length;t++){a[t]=a[t].trim()}return a}},9162:function(e,a,t){var i=typeof Map==="function"&&Map.prototype;var n=Object.getOwnPropertyDescriptor&&i?Object.getOwnPropertyDescriptor(Map.prototype,"size"):null;var r=i&&n&&typeof n.get==="function"?n.get:null;var o=i&&Map.prototype.forEach;var s=typeof Set==="function"&&Set.prototype;var c=Object.getOwnPropertyDescriptor&&s?Object.getOwnPropertyDescriptor(Set.prototype,"size"):null;var p=s&&c&&typeof c.get==="function"?c.get:null;var l=s&&Set.prototype.forEach;var u=typeof WeakMap==="function"&&WeakMap.prototype;var d=u?WeakMap.prototype.has:null;var f=typeof WeakSet==="function"&&WeakSet.prototype;var m=f?WeakSet.prototype.has:null;var v=typeof WeakRef==="function"&&WeakRef.prototype;var x=v?WeakRef.prototype.deref:null;var h=Boolean.prototype.valueOf;var g=Object.prototype.toString;var b=Function.prototype.toString;var y=String.prototype.match;var w=String.prototype.slice;var k=String.prototype.replace;var S=String.prototype.toUpperCase;var j=String.prototype.toLowerCase;var E=RegExp.prototype.test;var C=Array.prototype.concat;var A=Array.prototype.join;var _=Array.prototype.slice;var T=Math.floor;var O=typeof BigInt==="function"?BigInt.prototype.valueOf:null;var I=Object.getOwnPropertySymbols;var P=typeof Symbol==="function"&&typeof Symbol.iterator==="symbol"?Symbol.prototype.toString:null;var q=typeof Symbol==="function"&&typeof Symbol.iterator==="object";var z=typeof Symbol==="function"&&Symbol.toStringTag&&(typeof Symbol.toStringTag===q?"object":"symbol")?Symbol.toStringTag:null;var B=Object.prototype.propertyIsEnumerable;var D=(typeof Reflect==="function"?Reflect.getPrototypeOf:Object.getPrototypeOf)||([].__proto__===Array.prototype?function(e){return e.__proto__}:null);function addNumericSeparator(e,a){if(e===Infinity||e===-Infinity||e!==e||e&&e>-1e3&&e<1e3||E.call(/e/,a)){return a}var t=/[0-9](?=(?:[0-9]{3})+(?![0-9]))/g;if(typeof e==="number"){var i=e<0?-T(-e):T(e);if(i!==e){var n=String(i);var r=w.call(a,n.length+1);return k.call(n,t,"$&_")+"."+k.call(k.call(r,/([0-9]{3})/g,"$&_"),/_$/,"")}}return k.call(a,t,"$&_")}var N=t(3062);var L=N.custom;var F=isSymbol(L)?L:null;var M={__proto__:null,double:'"',single:"'"};var R={__proto__:null,double:/(["\\])/g,single:/(['\\])/g};e.exports=function inspect_(e,a,t,i){var n=a||{};if(has(n,"quoteStyle")&&!has(M,n.quoteStyle)){throw new TypeError('option "quoteStyle" must be "single" or "double"')}if(has(n,"maxStringLength")&&(typeof n.maxStringLength==="number"?n.maxStringLength<0&&n.maxStringLength!==Infinity:n.maxStringLength!==null)){throw new TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`')}var s=has(n,"customInspect")?n.customInspect:true;if(typeof s!=="boolean"&&s!=="symbol"){throw new TypeError("option \"customInspect\", if provided, must be `true`, `false`, or `'symbol'`")}if(has(n,"indent")&&n.indent!==null&&n.indent!=="\t"&&!(parseInt(n.indent,10)===n.indent&&n.indent>0)){throw new TypeError('option "indent" must be "\\t", an integer > 0, or `null`')}if(has(n,"numericSeparator")&&typeof n.numericSeparator!=="boolean"){throw new TypeError('option "numericSeparator", if provided, must be `true` or `false`')}var c=n.numericSeparator;if(typeof e==="undefined"){return"undefined"}if(e===null){return"null"}if(typeof e==="boolean"){return e?"true":"false"}if(typeof e==="string"){return inspectString(e,n)}if(typeof e==="number"){if(e===0){return Infinity/e>0?"0":"-0"}var u=String(e);return c?addNumericSeparator(e,u):u}if(typeof e==="bigint"){var d=String(e)+"n";return c?addNumericSeparator(e,d):d}var f=typeof n.depth==="undefined"?5:n.depth;if(typeof t==="undefined"){t=0}if(t>=f&&f>0&&typeof e==="object"){return isArray(e)?"[Array]":"[Object]"}var m=getIndent(n,t);if(typeof i==="undefined"){i=[]}else if(indexOf(i,e)>=0){return"[Circular]"}function inspect(e,a,r){if(a){i=_.call(i);i.push(a)}if(r){var o={depth:n.depth};if(has(n,"quoteStyle")){o.quoteStyle=n.quoteStyle}return inspect_(e,o,t+1,i)}return inspect_(e,n,t+1,i)}if(typeof e==="function"&&!isRegExp(e)){var v=nameOf(e);var x=arrObjKeys(e,inspect);return"[Function"+(v?": "+v:" (anonymous)")+"]"+(x.length>0?" { "+A.call(x,", ")+" }":"")}if(isSymbol(e)){var g=q?k.call(String(e),/^(Symbol\(.*\))_[^)]*$/,"$1"):P.call(e);return typeof e==="object"&&!q?markBoxed(g):g}if(isElement(e)){var b="<"+j.call(String(e.nodeName));var y=e.attributes||[];for(var S=0;S<y.length;S++){b+=" "+y[S].name+"="+wrapQuotes(quote(y[S].value),"double",n)}b+=">";if(e.childNodes&&e.childNodes.length){b+="..."}b+="</"+j.call(String(e.nodeName))+">";return b}if(isArray(e)){if(e.length===0){return"[]"}var E=arrObjKeys(e,inspect);if(m&&!singleLineValues(E)){return"["+indentedJoin(E,m)+"]"}return"[ "+A.call(E,", ")+" ]"}if(isError(e)){var T=arrObjKeys(e,inspect);if(!("cause"in Error.prototype)&&"cause"in e&&!B.call(e,"cause")){return"{ ["+String(e)+"] "+A.call(C.call("[cause]: "+inspect(e.cause),T),", ")+" }"}if(T.length===0){return"["+String(e)+"]"}return"{ ["+String(e)+"] "+A.call(T,", ")+" }"}if(typeof e==="object"&&s){if(F&&typeof e[F]==="function"&&N){return N(e,{depth:f-t})}else if(s!=="symbol"&&typeof e.inspect==="function"){return e.inspect()}}if(isMap(e)){var I=[];if(o){o.call(e,(function(a,t){I.push(inspect(t,e,true)+" => "+inspect(a,e))}))}return collectionOf("Map",r.call(e),I,m)}if(isSet(e)){var L=[];if(l){l.call(e,(function(a){L.push(inspect(a,e))}))}return collectionOf("Set",p.call(e),L,m)}if(isWeakMap(e)){return weakCollectionOf("WeakMap")}if(isWeakSet(e)){return weakCollectionOf("WeakSet")}if(isWeakRef(e)){return weakCollectionOf("WeakRef")}if(isNumber(e)){return markBoxed(inspect(Number(e)))}if(isBigInt(e)){return markBoxed(inspect(O.call(e)))}if(isBoolean(e)){return markBoxed(h.call(e))}if(isString(e)){return markBoxed(inspect(String(e)))}if(typeof window!=="undefined"&&e===window){return"{ [object Window] }"}if(typeof globalThis!=="undefined"&&e===globalThis||typeof global!=="undefined"&&e===global){return"{ [object globalThis] }"}if(!isDate(e)&&!isRegExp(e)){var R=arrObjKeys(e,inspect);var U=D?D(e)===Object.prototype:e instanceof Object||e.constructor===Object;var H=e instanceof Object?"":"null prototype";var $=!U&&z&&Object(e)===e&&z in e?w.call(toStr(e),8,-1):H?"Object":"";var W=U||typeof e.constructor!=="function"?"":e.constructor.name?e.constructor.name+" ":"";var G=W+($||H?"["+A.call(C.call([],$||[],H||[]),": ")+"] ":"");if(R.length===0){return G+"{}"}if(m){return G+"{"+indentedJoin(R,m)+"}"}return G+"{ "+A.call(R,", ")+" }"}return String(e)};function wrapQuotes(e,a,t){var i=t.quoteStyle||a;var n=M[i];return n+e+n}function quote(e){return k.call(String(e),/"/g,""")}function isArray(e){return toStr(e)==="[object Array]"&&(!z||!(typeof e==="object"&&z in e))}function isDate(e){return toStr(e)==="[object Date]"&&(!z||!(typeof e==="object"&&z in e))}function isRegExp(e){return toStr(e)==="[object RegExp]"&&(!z||!(typeof e==="object"&&z in e))}function isError(e){return toStr(e)==="[object Error]"&&(!z||!(typeof e==="object"&&z in e))}function isString(e){return toStr(e)==="[object String]"&&(!z||!(typeof e==="object"&&z in e))}function isNumber(e){return toStr(e)==="[object Number]"&&(!z||!(typeof e==="object"&&z in e))}function isBoolean(e){return toStr(e)==="[object Boolean]"&&(!z||!(typeof e==="object"&&z in e))}function isSymbol(e){if(q){return e&&typeof e==="object"&&e instanceof Symbol}if(typeof e==="symbol"){return true}if(!e||typeof e!=="object"||!P){return false}try{P.call(e);return true}catch(e){}return false}function isBigInt(e){if(!e||typeof e!=="object"||!O){return false}try{O.call(e);return true}catch(e){}return false}var U=Object.prototype.hasOwnProperty||function(e){return e in this};function has(e,a){return U.call(e,a)}function toStr(e){return g.call(e)}function nameOf(e){if(e.name){return e.name}var a=y.call(b.call(e),/^function\s*([\w$]+)/);if(a){return a[1]}return null}function indexOf(e,a){if(e.indexOf){return e.indexOf(a)}for(var t=0,i=e.length;t<i;t++){if(e[t]===a){return t}}return-1}function isMap(e){if(!r||!e||typeof e!=="object"){return false}try{r.call(e);try{p.call(e)}catch(e){return true}return e instanceof Map}catch(e){}return false}function isWeakMap(e){if(!d||!e||typeof e!=="object"){return false}try{d.call(e,d);try{m.call(e,m)}catch(e){return true}return e instanceof WeakMap}catch(e){}return false}function isWeakRef(e){if(!x||!e||typeof e!=="object"){return false}try{x.call(e);return true}catch(e){}return false}function isSet(e){if(!p||!e||typeof e!=="object"){return false}try{p.call(e);try{r.call(e)}catch(e){return true}return e instanceof Set}catch(e){}return false}function isWeakSet(e){if(!m||!e||typeof e!=="object"){return false}try{m.call(e,m);try{d.call(e,d)}catch(e){return true}return e instanceof WeakSet}catch(e){}return false}function isElement(e){if(!e||typeof e!=="object"){return false}if(typeof HTMLElement!=="undefined"&&e instanceof HTMLElement){return true}return typeof e.nodeName==="string"&&typeof e.getAttribute==="function"}function inspectString(e,a){if(e.length>a.maxStringLength){var t=e.length-a.maxStringLength;var i="... "+t+" more character"+(t>1?"s":"");return inspectString(w.call(e,0,a.maxStringLength),a)+i}var n=R[a.quoteStyle||"single"];n.lastIndex=0;var r=k.call(k.call(e,n,"\\$1"),/[\x00-\x1f]/g,lowbyte);return wrapQuotes(r,"single",a)}function lowbyte(e){var a=e.charCodeAt(0);var t={8:"b",9:"t",10:"n",12:"f",13:"r"}[a];if(t){return"\\"+t}return"\\x"+(a<16?"0":"")+S.call(a.toString(16))}function markBoxed(e){return"Object("+e+")"}function weakCollectionOf(e){return e+" { ? }"}function collectionOf(e,a,t,i){var n=i?indentedJoin(t,i):A.call(t,", ");return e+" ("+a+") {"+n+"}"}function singleLineValues(e){for(var a=0;a<e.length;a++){if(indexOf(e[a],"\n")>=0){return false}}return true}function getIndent(e,a){var t;if(e.indent==="\t"){t="\t"}else if(typeof e.indent==="number"&&e.indent>0){t=A.call(Array(e.indent+1)," ")}else{return null}return{base:t,prev:A.call(Array(a+1),t)}}function indentedJoin(e,a){if(e.length===0){return""}var t="\n"+a.prev+a.base;return t+A.call(e,","+t)+"\n"+a.prev}function arrObjKeys(e,a){var t=isArray(e);var i=[];if(t){i.length=e.length;for(var n=0;n<e.length;n++){i[n]=has(e,n)?a(e[n],e):""}}var r=typeof I==="function"?I(e):[];var o;if(q){o={};for(var s=0;s<r.length;s++){o["$"+r[s]]=r[s]}}for(var c in e){if(!has(e,c)){continue}if(t&&String(Number(c))===c&&c<e.length){continue}if(q&&o["$"+c]instanceof Symbol){continue}else if(E.call(/[^\w$]/,c)){i.push(a(c,e)+": "+a(e[c],e))}else{i.push(c+": "+a(e[c],e))}}if(typeof I==="function"){for(var p=0;p<r.length;p++){if(B.call(e,r[p])){i.push("["+a(r[p])+"]: "+a(e[r[p]],e))}}}return i}},3062:function(e,a,t){e.exports=t(9023).inspect},1929:function(e,a,t){"use strict";
|
|
242
|
+
*/var i=t(5717);var n=t(7812);var r=t(6475);var o=t(817);e.exports=Negotiator;e.exports.Negotiator=Negotiator;function Negotiator(e){if(!(this instanceof Negotiator)){return new Negotiator(e)}this.request=e}Negotiator.prototype.charset=function charset(e){var a=this.charsets(e);return a&&a[0]};Negotiator.prototype.charsets=function charsets(e){return i(this.request.headers["accept-charset"],e)};Negotiator.prototype.encoding=function encoding(e){var a=this.encodings(e);return a&&a[0]};Negotiator.prototype.encodings=function encodings(e){return n(this.request.headers["accept-encoding"],e)};Negotiator.prototype.language=function language(e){var a=this.languages(e);return a&&a[0]};Negotiator.prototype.languages=function languages(e){return r(this.request.headers["accept-language"],e)};Negotiator.prototype.mediaType=function mediaType(e){var a=this.mediaTypes(e);return a&&a[0]};Negotiator.prototype.mediaTypes=function mediaTypes(e){return o(this.request.headers.accept,e)};Negotiator.prototype.preferredCharset=Negotiator.prototype.charset;Negotiator.prototype.preferredCharsets=Negotiator.prototype.charsets;Negotiator.prototype.preferredEncoding=Negotiator.prototype.encoding;Negotiator.prototype.preferredEncodings=Negotiator.prototype.encodings;Negotiator.prototype.preferredLanguage=Negotiator.prototype.language;Negotiator.prototype.preferredLanguages=Negotiator.prototype.languages;Negotiator.prototype.preferredMediaType=Negotiator.prototype.mediaType;Negotiator.prototype.preferredMediaTypes=Negotiator.prototype.mediaTypes},5717:function(e){"use strict";e.exports=preferredCharsets;e.exports.preferredCharsets=preferredCharsets;var a=/^\s*([^\s;]+)\s*(?:;(.*))?$/;function parseAcceptCharset(e){var a=e.split(",");for(var t=0,i=0;t<a.length;t++){var n=parseCharset(a[t].trim(),t);if(n){a[i++]=n}}a.length=i;return a}function parseCharset(e,t){var i=a.exec(e);if(!i)return null;var n=i[1];var r=1;if(i[2]){var o=i[2].split(";");for(var s=0;s<o.length;s++){var c=o[s].trim().split("=");if(c[0]==="q"){r=parseFloat(c[1]);break}}}return{charset:n,q:r,i:t}}function getCharsetPriority(e,a,t){var i={o:-1,q:0,s:0};for(var n=0;n<a.length;n++){var r=specify(e,a[n],t);if(r&&(i.s-r.s||i.q-r.q||i.o-r.o)<0){i=r}}return i}function specify(e,a,t){var i=0;if(a.charset.toLowerCase()===e.toLowerCase()){i|=1}else if(a.charset!=="*"){return null}return{i:t,o:a.i,q:a.q,s:i}}function preferredCharsets(e,a){var t=parseAcceptCharset(e===undefined?"*":e||"");if(!a){return t.filter(isQuality).sort(compareSpecs).map(getFullCharset)}var i=a.map((function getPriority(e,a){return getCharsetPriority(e,t,a)}));return i.filter(isQuality).sort(compareSpecs).map((function getCharset(e){return a[i.indexOf(e)]}))}function compareSpecs(e,a){return a.q-e.q||a.s-e.s||e.o-a.o||e.i-a.i||0}function getFullCharset(e){return e.charset}function isQuality(e){return e.q>0}},7812:function(e){"use strict";e.exports=preferredEncodings;e.exports.preferredEncodings=preferredEncodings;var a=/^\s*([^\s;]+)\s*(?:;(.*))?$/;function parseAcceptEncoding(e){var a=e.split(",");var t=false;var i=1;for(var n=0,r=0;n<a.length;n++){var o=parseEncoding(a[n].trim(),n);if(o){a[r++]=o;t=t||specify("identity",o);i=Math.min(i,o.q||1)}}if(!t){a[r++]={encoding:"identity",q:i,i:n}}a.length=r;return a}function parseEncoding(e,t){var i=a.exec(e);if(!i)return null;var n=i[1];var r=1;if(i[2]){var o=i[2].split(";");for(var s=0;s<o.length;s++){var c=o[s].trim().split("=");if(c[0]==="q"){r=parseFloat(c[1]);break}}}return{encoding:n,q:r,i:t}}function getEncodingPriority(e,a,t){var i={o:-1,q:0,s:0};for(var n=0;n<a.length;n++){var r=specify(e,a[n],t);if(r&&(i.s-r.s||i.q-r.q||i.o-r.o)<0){i=r}}return i}function specify(e,a,t){var i=0;if(a.encoding.toLowerCase()===e.toLowerCase()){i|=1}else if(a.encoding!=="*"){return null}return{i:t,o:a.i,q:a.q,s:i}}function preferredEncodings(e,a){var t=parseAcceptEncoding(e||"");if(!a){return t.filter(isQuality).sort(compareSpecs).map(getFullEncoding)}var i=a.map((function getPriority(e,a){return getEncodingPriority(e,t,a)}));return i.filter(isQuality).sort(compareSpecs).map((function getEncoding(e){return a[i.indexOf(e)]}))}function compareSpecs(e,a){return a.q-e.q||a.s-e.s||e.o-a.o||e.i-a.i||0}function getFullEncoding(e){return e.encoding}function isQuality(e){return e.q>0}},6475:function(e){"use strict";e.exports=preferredLanguages;e.exports.preferredLanguages=preferredLanguages;var a=/^\s*([^\s\-;]+)(?:-([^\s;]+))?\s*(?:;(.*))?$/;function parseAcceptLanguage(e){var a=e.split(",");for(var t=0,i=0;t<a.length;t++){var n=parseLanguage(a[t].trim(),t);if(n){a[i++]=n}}a.length=i;return a}function parseLanguage(e,t){var i=a.exec(e);if(!i)return null;var n=i[1];var r=i[2];var o=n;if(r)o+="-"+r;var s=1;if(i[3]){var c=i[3].split(";");for(var p=0;p<c.length;p++){var l=c[p].split("=");if(l[0]==="q")s=parseFloat(l[1])}}return{prefix:n,suffix:r,q:s,i:t,full:o}}function getLanguagePriority(e,a,t){var i={o:-1,q:0,s:0};for(var n=0;n<a.length;n++){var r=specify(e,a[n],t);if(r&&(i.s-r.s||i.q-r.q||i.o-r.o)<0){i=r}}return i}function specify(e,a,t){var i=parseLanguage(e);if(!i)return null;var n=0;if(a.full.toLowerCase()===i.full.toLowerCase()){n|=4}else if(a.prefix.toLowerCase()===i.full.toLowerCase()){n|=2}else if(a.full.toLowerCase()===i.prefix.toLowerCase()){n|=1}else if(a.full!=="*"){return null}return{i:t,o:a.i,q:a.q,s:n}}function preferredLanguages(e,a){var t=parseAcceptLanguage(e===undefined?"*":e||"");if(!a){return t.filter(isQuality).sort(compareSpecs).map(getFullLanguage)}var i=a.map((function getPriority(e,a){return getLanguagePriority(e,t,a)}));return i.filter(isQuality).sort(compareSpecs).map((function getLanguage(e){return a[i.indexOf(e)]}))}function compareSpecs(e,a){return a.q-e.q||a.s-e.s||e.o-a.o||e.i-a.i||0}function getFullLanguage(e){return e.full}function isQuality(e){return e.q>0}},817:function(e){"use strict";e.exports=preferredMediaTypes;e.exports.preferredMediaTypes=preferredMediaTypes;var a=/^\s*([^\s\/;]+)\/([^;\s]+)\s*(?:;(.*))?$/;function parseAccept(e){var a=splitMediaTypes(e);for(var t=0,i=0;t<a.length;t++){var n=parseMediaType(a[t].trim(),t);if(n){a[i++]=n}}a.length=i;return a}function parseMediaType(e,t){var i=a.exec(e);if(!i)return null;var n=Object.create(null);var r=1;var o=i[2];var s=i[1];if(i[3]){var c=splitParameters(i[3]).map(splitKeyValuePair);for(var p=0;p<c.length;p++){var l=c[p];var u=l[0].toLowerCase();var d=l[1];var f=d&&d[0]==='"'&&d[d.length-1]==='"'?d.substr(1,d.length-2):d;if(u==="q"){r=parseFloat(f);break}n[u]=f}}return{type:s,subtype:o,params:n,q:r,i:t}}function getMediaTypePriority(e,a,t){var i={o:-1,q:0,s:0};for(var n=0;n<a.length;n++){var r=specify(e,a[n],t);if(r&&(i.s-r.s||i.q-r.q||i.o-r.o)<0){i=r}}return i}function specify(e,a,t){var i=parseMediaType(e);var n=0;if(!i){return null}if(a.type.toLowerCase()==i.type.toLowerCase()){n|=4}else if(a.type!="*"){return null}if(a.subtype.toLowerCase()==i.subtype.toLowerCase()){n|=2}else if(a.subtype!="*"){return null}var r=Object.keys(a.params);if(r.length>0){if(r.every((function(e){return a.params[e]=="*"||(a.params[e]||"").toLowerCase()==(i.params[e]||"").toLowerCase()}))){n|=1}else{return null}}return{i:t,o:a.i,q:a.q,s:n}}function preferredMediaTypes(e,a){var t=parseAccept(e===undefined?"*/*":e||"");if(!a){return t.filter(isQuality).sort(compareSpecs).map(getFullType)}var i=a.map((function getPriority(e,a){return getMediaTypePriority(e,t,a)}));return i.filter(isQuality).sort(compareSpecs).map((function getType(e){return a[i.indexOf(e)]}))}function compareSpecs(e,a){return a.q-e.q||a.s-e.s||e.o-a.o||e.i-a.i||0}function getFullType(e){return e.type+"/"+e.subtype}function isQuality(e){return e.q>0}function quoteCount(e){var a=0;var t=0;while((t=e.indexOf('"',t))!==-1){a++;t++}return a}function splitKeyValuePair(e){var a=e.indexOf("=");var t;var i;if(a===-1){t=e}else{t=e.substr(0,a);i=e.substr(a+1)}return[t,i]}function splitMediaTypes(e){var a=e.split(",");for(var t=1,i=0;t<a.length;t++){if(quoteCount(a[i])%2==0){a[++i]=a[t]}else{a[i]+=","+a[t]}}a.length=i+1;return a}function splitParameters(e){var a=e.split(";");for(var t=1,i=0;t<a.length;t++){if(quoteCount(a[i])%2==0){a[++i]=a[t]}else{a[i]+=";"+a[t]}}a.length=i+1;for(var t=0;t<a.length;t++){a[t]=a[t].trim()}return a}},9162:function(e,a,t){var i=typeof Map==="function"&&Map.prototype;var n=Object.getOwnPropertyDescriptor&&i?Object.getOwnPropertyDescriptor(Map.prototype,"size"):null;var r=i&&n&&typeof n.get==="function"?n.get:null;var o=i&&Map.prototype.forEach;var s=typeof Set==="function"&&Set.prototype;var c=Object.getOwnPropertyDescriptor&&s?Object.getOwnPropertyDescriptor(Set.prototype,"size"):null;var p=s&&c&&typeof c.get==="function"?c.get:null;var l=s&&Set.prototype.forEach;var u=typeof WeakMap==="function"&&WeakMap.prototype;var d=u?WeakMap.prototype.has:null;var f=typeof WeakSet==="function"&&WeakSet.prototype;var m=f?WeakSet.prototype.has:null;var v=typeof WeakRef==="function"&&WeakRef.prototype;var x=v?WeakRef.prototype.deref:null;var h=Boolean.prototype.valueOf;var g=Object.prototype.toString;var b=Function.prototype.toString;var y=String.prototype.match;var w=String.prototype.slice;var k=String.prototype.replace;var S=String.prototype.toUpperCase;var j=String.prototype.toLowerCase;var E=RegExp.prototype.test;var C=Array.prototype.concat;var A=Array.prototype.join;var _=Array.prototype.slice;var T=Math.floor;var O=typeof BigInt==="function"?BigInt.prototype.valueOf:null;var I=Object.getOwnPropertySymbols;var P=typeof Symbol==="function"&&typeof Symbol.iterator==="symbol"?Symbol.prototype.toString:null;var q=typeof Symbol==="function"&&typeof Symbol.iterator==="object";var z=typeof Symbol==="function"&&Symbol.toStringTag&&(typeof Symbol.toStringTag===q?"object":"symbol")?Symbol.toStringTag:null;var B=Object.prototype.propertyIsEnumerable;var D=(typeof Reflect==="function"?Reflect.getPrototypeOf:Object.getPrototypeOf)||([].__proto__===Array.prototype?function(e){return e.__proto__}:null);function addNumericSeparator(e,a){if(e===Infinity||e===-Infinity||e!==e||e&&e>-1e3&&e<1e3||E.call(/e/,a)){return a}var t=/[0-9](?=(?:[0-9]{3})+(?![0-9]))/g;if(typeof e==="number"){var i=e<0?-T(-e):T(e);if(i!==e){var n=String(i);var r=w.call(a,n.length+1);return k.call(n,t,"$&_")+"."+k.call(k.call(r,/([0-9]{3})/g,"$&_"),/_$/,"")}}return k.call(a,t,"$&_")}var N=t(3062);var L=N.custom;var M=isSymbol(L)?L:null;var F={__proto__:null,double:'"',single:"'"};var R={__proto__:null,double:/(["\\])/g,single:/(['\\])/g};e.exports=function inspect_(e,a,t,i){var n=a||{};if(has(n,"quoteStyle")&&!has(F,n.quoteStyle)){throw new TypeError('option "quoteStyle" must be "single" or "double"')}if(has(n,"maxStringLength")&&(typeof n.maxStringLength==="number"?n.maxStringLength<0&&n.maxStringLength!==Infinity:n.maxStringLength!==null)){throw new TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`')}var s=has(n,"customInspect")?n.customInspect:true;if(typeof s!=="boolean"&&s!=="symbol"){throw new TypeError("option \"customInspect\", if provided, must be `true`, `false`, or `'symbol'`")}if(has(n,"indent")&&n.indent!==null&&n.indent!=="\t"&&!(parseInt(n.indent,10)===n.indent&&n.indent>0)){throw new TypeError('option "indent" must be "\\t", an integer > 0, or `null`')}if(has(n,"numericSeparator")&&typeof n.numericSeparator!=="boolean"){throw new TypeError('option "numericSeparator", if provided, must be `true` or `false`')}var c=n.numericSeparator;if(typeof e==="undefined"){return"undefined"}if(e===null){return"null"}if(typeof e==="boolean"){return e?"true":"false"}if(typeof e==="string"){return inspectString(e,n)}if(typeof e==="number"){if(e===0){return Infinity/e>0?"0":"-0"}var u=String(e);return c?addNumericSeparator(e,u):u}if(typeof e==="bigint"){var d=String(e)+"n";return c?addNumericSeparator(e,d):d}var f=typeof n.depth==="undefined"?5:n.depth;if(typeof t==="undefined"){t=0}if(t>=f&&f>0&&typeof e==="object"){return isArray(e)?"[Array]":"[Object]"}var m=getIndent(n,t);if(typeof i==="undefined"){i=[]}else if(indexOf(i,e)>=0){return"[Circular]"}function inspect(e,a,r){if(a){i=_.call(i);i.push(a)}if(r){var o={depth:n.depth};if(has(n,"quoteStyle")){o.quoteStyle=n.quoteStyle}return inspect_(e,o,t+1,i)}return inspect_(e,n,t+1,i)}if(typeof e==="function"&&!isRegExp(e)){var v=nameOf(e);var x=arrObjKeys(e,inspect);return"[Function"+(v?": "+v:" (anonymous)")+"]"+(x.length>0?" { "+A.call(x,", ")+" }":"")}if(isSymbol(e)){var g=q?k.call(String(e),/^(Symbol\(.*\))_[^)]*$/,"$1"):P.call(e);return typeof e==="object"&&!q?markBoxed(g):g}if(isElement(e)){var b="<"+j.call(String(e.nodeName));var y=e.attributes||[];for(var S=0;S<y.length;S++){b+=" "+y[S].name+"="+wrapQuotes(quote(y[S].value),"double",n)}b+=">";if(e.childNodes&&e.childNodes.length){b+="..."}b+="</"+j.call(String(e.nodeName))+">";return b}if(isArray(e)){if(e.length===0){return"[]"}var E=arrObjKeys(e,inspect);if(m&&!singleLineValues(E)){return"["+indentedJoin(E,m)+"]"}return"[ "+A.call(E,", ")+" ]"}if(isError(e)){var T=arrObjKeys(e,inspect);if(!("cause"in Error.prototype)&&"cause"in e&&!B.call(e,"cause")){return"{ ["+String(e)+"] "+A.call(C.call("[cause]: "+inspect(e.cause),T),", ")+" }"}if(T.length===0){return"["+String(e)+"]"}return"{ ["+String(e)+"] "+A.call(T,", ")+" }"}if(typeof e==="object"&&s){if(M&&typeof e[M]==="function"&&N){return N(e,{depth:f-t})}else if(s!=="symbol"&&typeof e.inspect==="function"){return e.inspect()}}if(isMap(e)){var I=[];if(o){o.call(e,(function(a,t){I.push(inspect(t,e,true)+" => "+inspect(a,e))}))}return collectionOf("Map",r.call(e),I,m)}if(isSet(e)){var L=[];if(l){l.call(e,(function(a){L.push(inspect(a,e))}))}return collectionOf("Set",p.call(e),L,m)}if(isWeakMap(e)){return weakCollectionOf("WeakMap")}if(isWeakSet(e)){return weakCollectionOf("WeakSet")}if(isWeakRef(e)){return weakCollectionOf("WeakRef")}if(isNumber(e)){return markBoxed(inspect(Number(e)))}if(isBigInt(e)){return markBoxed(inspect(O.call(e)))}if(isBoolean(e)){return markBoxed(h.call(e))}if(isString(e)){return markBoxed(inspect(String(e)))}if(typeof window!=="undefined"&&e===window){return"{ [object Window] }"}if(typeof globalThis!=="undefined"&&e===globalThis||typeof global!=="undefined"&&e===global){return"{ [object globalThis] }"}if(!isDate(e)&&!isRegExp(e)){var R=arrObjKeys(e,inspect);var U=D?D(e)===Object.prototype:e instanceof Object||e.constructor===Object;var H=e instanceof Object?"":"null prototype";var $=!U&&z&&Object(e)===e&&z in e?w.call(toStr(e),8,-1):H?"Object":"";var W=U||typeof e.constructor!=="function"?"":e.constructor.name?e.constructor.name+" ":"";var G=W+($||H?"["+A.call(C.call([],$||[],H||[]),": ")+"] ":"");if(R.length===0){return G+"{}"}if(m){return G+"{"+indentedJoin(R,m)+"}"}return G+"{ "+A.call(R,", ")+" }"}return String(e)};function wrapQuotes(e,a,t){var i=t.quoteStyle||a;var n=F[i];return n+e+n}function quote(e){return k.call(String(e),/"/g,""")}function isArray(e){return toStr(e)==="[object Array]"&&(!z||!(typeof e==="object"&&z in e))}function isDate(e){return toStr(e)==="[object Date]"&&(!z||!(typeof e==="object"&&z in e))}function isRegExp(e){return toStr(e)==="[object RegExp]"&&(!z||!(typeof e==="object"&&z in e))}function isError(e){return toStr(e)==="[object Error]"&&(!z||!(typeof e==="object"&&z in e))}function isString(e){return toStr(e)==="[object String]"&&(!z||!(typeof e==="object"&&z in e))}function isNumber(e){return toStr(e)==="[object Number]"&&(!z||!(typeof e==="object"&&z in e))}function isBoolean(e){return toStr(e)==="[object Boolean]"&&(!z||!(typeof e==="object"&&z in e))}function isSymbol(e){if(q){return e&&typeof e==="object"&&e instanceof Symbol}if(typeof e==="symbol"){return true}if(!e||typeof e!=="object"||!P){return false}try{P.call(e);return true}catch(e){}return false}function isBigInt(e){if(!e||typeof e!=="object"||!O){return false}try{O.call(e);return true}catch(e){}return false}var U=Object.prototype.hasOwnProperty||function(e){return e in this};function has(e,a){return U.call(e,a)}function toStr(e){return g.call(e)}function nameOf(e){if(e.name){return e.name}var a=y.call(b.call(e),/^function\s*([\w$]+)/);if(a){return a[1]}return null}function indexOf(e,a){if(e.indexOf){return e.indexOf(a)}for(var t=0,i=e.length;t<i;t++){if(e[t]===a){return t}}return-1}function isMap(e){if(!r||!e||typeof e!=="object"){return false}try{r.call(e);try{p.call(e)}catch(e){return true}return e instanceof Map}catch(e){}return false}function isWeakMap(e){if(!d||!e||typeof e!=="object"){return false}try{d.call(e,d);try{m.call(e,m)}catch(e){return true}return e instanceof WeakMap}catch(e){}return false}function isWeakRef(e){if(!x||!e||typeof e!=="object"){return false}try{x.call(e);return true}catch(e){}return false}function isSet(e){if(!p||!e||typeof e!=="object"){return false}try{p.call(e);try{r.call(e)}catch(e){return true}return e instanceof Set}catch(e){}return false}function isWeakSet(e){if(!m||!e||typeof e!=="object"){return false}try{m.call(e,m);try{d.call(e,d)}catch(e){return true}return e instanceof WeakSet}catch(e){}return false}function isElement(e){if(!e||typeof e!=="object"){return false}if(typeof HTMLElement!=="undefined"&&e instanceof HTMLElement){return true}return typeof e.nodeName==="string"&&typeof e.getAttribute==="function"}function inspectString(e,a){if(e.length>a.maxStringLength){var t=e.length-a.maxStringLength;var i="... "+t+" more character"+(t>1?"s":"");return inspectString(w.call(e,0,a.maxStringLength),a)+i}var n=R[a.quoteStyle||"single"];n.lastIndex=0;var r=k.call(k.call(e,n,"\\$1"),/[\x00-\x1f]/g,lowbyte);return wrapQuotes(r,"single",a)}function lowbyte(e){var a=e.charCodeAt(0);var t={8:"b",9:"t",10:"n",12:"f",13:"r"}[a];if(t){return"\\"+t}return"\\x"+(a<16?"0":"")+S.call(a.toString(16))}function markBoxed(e){return"Object("+e+")"}function weakCollectionOf(e){return e+" { ? }"}function collectionOf(e,a,t,i){var n=i?indentedJoin(t,i):A.call(t,", ");return e+" ("+a+") {"+n+"}"}function singleLineValues(e){for(var a=0;a<e.length;a++){if(indexOf(e[a],"\n")>=0){return false}}return true}function getIndent(e,a){var t;if(e.indent==="\t"){t="\t"}else if(typeof e.indent==="number"&&e.indent>0){t=A.call(Array(e.indent+1)," ")}else{return null}return{base:t,prev:A.call(Array(a+1),t)}}function indentedJoin(e,a){if(e.length===0){return""}var t="\n"+a.prev+a.base;return t+A.call(e,","+t)+"\n"+a.prev}function arrObjKeys(e,a){var t=isArray(e);var i=[];if(t){i.length=e.length;for(var n=0;n<e.length;n++){i[n]=has(e,n)?a(e[n],e):""}}var r=typeof I==="function"?I(e):[];var o;if(q){o={};for(var s=0;s<r.length;s++){o["$"+r[s]]=r[s]}}for(var c in e){if(!has(e,c)){continue}if(t&&String(Number(c))===c&&c<e.length){continue}if(q&&o["$"+c]instanceof Symbol){continue}else if(E.call(/[^\w$]/,c)){i.push(a(c,e)+": "+a(e[c],e))}else{i.push(c+": "+a(e[c],e))}}if(typeof I==="function"){for(var p=0;p<r.length;p++){if(B.call(e,r[p])){i.push("["+a(r[p])+"]: "+a(e[r[p]],e))}}}return i}},3062:function(e,a,t){e.exports=t(9023).inspect},1929:function(e,a,t){"use strict";
|
|
243
243
|
/*!
|
|
244
244
|
* on-finished
|
|
245
245
|
* Copyright(c) 2013 Jonathan Ong
|
|
@@ -256,7 +256,7 @@ e.exports=t(7080)},6553:function(e,a,t){"use strict";
|
|
|
256
256
|
* proxy-addr
|
|
257
257
|
* Copyright(c) 2014-2016 Douglas Christopher Wilson
|
|
258
258
|
* MIT Licensed
|
|
259
|
-
*/e.exports=proxyaddr;e.exports.all=alladdrs;e.exports.compile=compile;var i=t(1252);var n=t(4287);var r=/^[0-9]+$/;var o=n.isValid;var s=n.parse;var c={linklocal:["169.254.0.0/16","fe80::/10"],loopback:["127.0.0.1/8","::1/128"],uniquelocal:["10.0.0.0/8","172.16.0.0/12","192.168.0.0/16","fc00::/7"]};function alladdrs(e,a){var t=i(e);if(!a){return t}if(typeof a!=="function"){a=compile(a)}for(var n=0;n<t.length-1;n++){if(a(t[n],n))continue;t.length=n+1}return t}function compile(e){if(!e){throw new TypeError("argument is required")}var a;if(typeof e==="string"){a=[e]}else if(Array.isArray(e)){a=e.slice()}else{throw new TypeError("unsupported trust argument")}for(var t=0;t<a.length;t++){e=a[t];if(!Object.prototype.hasOwnProperty.call(c,e)){continue}e=c[e];a.splice.apply(a,[t,1].concat(e));t+=e.length-1}return compileTrust(compileRangeSubnets(a))}function compileRangeSubnets(e){var a=new Array(e.length);for(var t=0;t<e.length;t++){a[t]=parseipNotation(e[t])}return a}function compileTrust(e){var a=e.length;return a===0?trustNone:a===1?trustSingle(e[0]):trustMulti(e)}function parseipNotation(e){var a=e.lastIndexOf("/");var t=a!==-1?e.substring(0,a):e;if(!o(t)){throw new TypeError("invalid IP address: "+t)}var i=s(t);if(a===-1&&i.kind()==="ipv6"&&i.isIPv4MappedAddress()){i=i.toIPv4Address()}var n=i.kind()==="ipv6"?128:32;var c=a!==-1?e.substring(a+1,e.length):null;if(c===null){c=n}else if(r.test(c)){c=parseInt(c,10)}else if(i.kind()==="ipv4"&&o(c)){c=parseNetmask(c)}else{c=null}if(c<=0||c>n){throw new TypeError("invalid range on address: "+e)}return[i,c]}function parseNetmask(e){var a=s(e);var t=a.kind();return t==="ipv4"?a.prefixLengthFromSubnetMask():null}function proxyaddr(e,a){if(!e){throw new TypeError("req argument is required")}if(!a){throw new TypeError("trust argument is required")}var t=alladdrs(e,a);var i=t[t.length-1];return i}function trustNone(){return false}function trustMulti(e){return function trust(a){if(!o(a))return false;var t=s(a);var i;var n=t.kind();for(var r=0;r<e.length;r++){var c=e[r];var p=c[0];var l=p.kind();var u=c[1];var d=t;if(n!==l){if(l==="ipv4"&&!t.isIPv4MappedAddress()){continue}if(!i){i=l==="ipv4"?t.toIPv4Address():t.toIPv4MappedAddress()}d=i}if(d.match(p,u)){return true}}return false}}function trustSingle(e){var a=e[0];var t=a.kind();var i=t==="ipv4";var n=e[1];return function trust(e){if(!o(e))return false;var r=s(e);var c=r.kind();if(c!==t){if(i&&!r.isIPv4MappedAddress()){return false}r=i?r.toIPv4Address():r.toIPv4MappedAddress()}return r.match(a,n)}}},3608:function(e){"use strict";var a=String.prototype.replace;var t=/%20/g;var i={RFC1738:"RFC1738",RFC3986:"RFC3986"};e.exports={default:i.RFC3986,formatters:{RFC1738:function(e){return a.call(e,t,"+")},RFC3986:function(e){return String(e)}},RFC1738:i.RFC1738,RFC3986:i.RFC3986}},6792:function(e,a,t){"use strict";var i=t(5973);var n=t(5547);var r=t(3608);e.exports={formats:r,parse:n,stringify:i}},5547:function(e,a,t){"use strict";var i=t(7009);var n=Object.prototype.hasOwnProperty;var r=Array.isArray;var o={allowDots:false,allowEmptyArrays:false,allowPrototypes:false,allowSparse:false,arrayLimit:20,charset:"utf-8",charsetSentinel:false,comma:false,decodeDotInKeys:false,decoder:i.decode,delimiter:"&",depth:5,duplicates:"combine",ignoreQueryPrefix:false,interpretNumericEntities:false,parameterLimit:1e3,parseArrays:true,plainObjects:false,strictDepth:false,strictNullHandling:false};var interpretNumericEntities=function(e){return e.replace(/&#(\d+);/g,(function(e,a){return String.fromCharCode(parseInt(a,10))}))};var parseArrayValue=function(e,a){if(e&&typeof e==="string"&&a.comma&&e.indexOf(",")>-1){return e.split(",")}return e};var s="utf8=%26%2310003%3B";var c="utf8=%E2%9C%93";var p=function parseQueryStringValues(e,a){var t={__proto__:null};var p=a.ignoreQueryPrefix?e.replace(/^\?/,""):e;p=p.replace(/%5B/gi,"[").replace(/%5D/gi,"]");var l=a.parameterLimit===Infinity?undefined:a.parameterLimit;var u=p.split(a.delimiter,l);var d=-1;var f;var m=a.charset;if(a.charsetSentinel){for(f=0;f<u.length;++f){if(u[f].indexOf("utf8=")===0){if(u[f]===c){m="utf-8"}else if(u[f]===s){m="iso-8859-1"}d=f;f=u.length}}}for(f=0;f<u.length;++f){if(f===d){continue}var v=u[f];var x=v.indexOf("]=");var h=x===-1?v.indexOf("="):x+1;var g,b;if(h===-1){g=a.decoder(v,o.decoder,m,"key");b=a.strictNullHandling?null:""}else{g=a.decoder(v.slice(0,h),o.decoder,m,"key");b=i.maybeMap(parseArrayValue(v.slice(h+1),a),(function(e){return a.decoder(e,o.decoder,m,"value")}))}if(b&&a.interpretNumericEntities&&m==="iso-8859-1"){b=interpretNumericEntities(b)}if(v.indexOf("[]=")>-1){b=r(b)?[b]:b}var y=n.call(t,g);if(y&&a.duplicates==="combine"){t[g]=i.combine(t[g],b)}else if(!y||a.duplicates==="last"){t[g]=b}}return t};var parseObject=function(e,a,t,i){var n=i?a:parseArrayValue(a,t);for(var r=e.length-1;r>=0;--r){var o;var s=e[r];if(s==="[]"&&t.parseArrays){o=t.allowEmptyArrays&&(n===""||t.strictNullHandling&&n===null)?[]:[].concat(n)}else{o=t.plainObjects?Object.create(null):{};var c=s.charAt(0)==="["&&s.charAt(s.length-1)==="]"?s.slice(1,-1):s;var p=t.decodeDotInKeys?c.replace(/%2E/g,"."):c;var l=parseInt(p,10);if(!t.parseArrays&&p===""){o={0:n}}else if(!isNaN(l)&&s!==p&&String(l)===p&&l>=0&&(t.parseArrays&&l<=t.arrayLimit)){o=[];o[l]=n}else if(p!=="__proto__"){o[p]=n}}n=o}return n};var l=function parseQueryStringKeys(e,a,t,i){if(!e){return}var r=t.allowDots?e.replace(/\.([^.[]+)/g,"[$1]"):e;var o=/(\[[^[\]]*])/;var s=/(\[[^[\]]*])/g;var c=t.depth>0&&o.exec(r);var p=c?r.slice(0,c.index):r;var l=[];if(p){if(!t.plainObjects&&n.call(Object.prototype,p)){if(!t.allowPrototypes){return}}l.push(p)}var u=0;while(t.depth>0&&(c=s.exec(r))!==null&&u<t.depth){u+=1;if(!t.plainObjects&&n.call(Object.prototype,c[1].slice(1,-1))){if(!t.allowPrototypes){return}}l.push(c[1])}if(c){if(t.strictDepth===true){throw new RangeError("Input depth exceeded depth option of "+t.depth+" and strictDepth is true")}l.push("["+r.slice(c.index)+"]")}return parseObject(l,a,t,i)};var u=function normalizeParseOptions(e){if(!e){return o}if(typeof e.allowEmptyArrays!=="undefined"&&typeof e.allowEmptyArrays!=="boolean"){throw new TypeError("`allowEmptyArrays` option can only be `true` or `false`, when provided")}if(typeof e.decodeDotInKeys!=="undefined"&&typeof e.decodeDotInKeys!=="boolean"){throw new TypeError("`decodeDotInKeys` option can only be `true` or `false`, when provided")}if(e.decoder!==null&&typeof e.decoder!=="undefined"&&typeof e.decoder!=="function"){throw new TypeError("Decoder has to be a function.")}if(typeof e.charset!=="undefined"&&e.charset!=="utf-8"&&e.charset!=="iso-8859-1"){throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined")}var a=typeof e.charset==="undefined"?o.charset:e.charset;var t=typeof e.duplicates==="undefined"?o.duplicates:e.duplicates;if(t!=="combine"&&t!=="first"&&t!=="last"){throw new TypeError("The duplicates option must be either combine, first, or last")}var n=typeof e.allowDots==="undefined"?e.decodeDotInKeys===true?true:o.allowDots:!!e.allowDots;return{allowDots:n,allowEmptyArrays:typeof e.allowEmptyArrays==="boolean"?!!e.allowEmptyArrays:o.allowEmptyArrays,allowPrototypes:typeof e.allowPrototypes==="boolean"?e.allowPrototypes:o.allowPrototypes,allowSparse:typeof e.allowSparse==="boolean"?e.allowSparse:o.allowSparse,arrayLimit:typeof e.arrayLimit==="number"?e.arrayLimit:o.arrayLimit,charset:a,charsetSentinel:typeof e.charsetSentinel==="boolean"?e.charsetSentinel:o.charsetSentinel,comma:typeof e.comma==="boolean"?e.comma:o.comma,decodeDotInKeys:typeof e.decodeDotInKeys==="boolean"?e.decodeDotInKeys:o.decodeDotInKeys,decoder:typeof e.decoder==="function"?e.decoder:o.decoder,delimiter:typeof e.delimiter==="string"||i.isRegExp(e.delimiter)?e.delimiter:o.delimiter,depth:typeof e.depth==="number"||e.depth===false?+e.depth:o.depth,duplicates:t,ignoreQueryPrefix:e.ignoreQueryPrefix===true,interpretNumericEntities:typeof e.interpretNumericEntities==="boolean"?e.interpretNumericEntities:o.interpretNumericEntities,parameterLimit:typeof e.parameterLimit==="number"?e.parameterLimit:o.parameterLimit,parseArrays:e.parseArrays!==false,plainObjects:typeof e.plainObjects==="boolean"?e.plainObjects:o.plainObjects,strictDepth:typeof e.strictDepth==="boolean"?!!e.strictDepth:o.strictDepth,strictNullHandling:typeof e.strictNullHandling==="boolean"?e.strictNullHandling:o.strictNullHandling}};e.exports=function(e,a){var t=u(a);if(e===""||e===null||typeof e==="undefined"){return t.plainObjects?Object.create(null):{}}var n=typeof e==="string"?p(e,t):e;var r=t.plainObjects?Object.create(null):{};var o=Object.keys(n);for(var s=0;s<o.length;++s){var c=o[s];var d=l(c,n[c],t,typeof e==="string");r=i.merge(r,d,t)}if(t.allowSparse===true){return r}return i.compact(r)}},5973:function(e,a,t){"use strict";var i=t(4706);var n=t(7009);var r=t(3608);var o=Object.prototype.hasOwnProperty;var s={brackets:function brackets(e){return e+"[]"},comma:"comma",indices:function indices(e,a){return e+"["+a+"]"},repeat:function repeat(e){return e}};var c=Array.isArray;var p=Array.prototype.push;var pushToArray=function(e,a){p.apply(e,c(a)?a:[a])};var l=Date.prototype.toISOString;var u=r["default"];var d={addQueryPrefix:false,allowDots:false,allowEmptyArrays:false,arrayFormat:"indices",charset:"utf-8",charsetSentinel:false,delimiter:"&",encode:true,encodeDotInKeys:false,encoder:n.encode,encodeValuesOnly:false,format:u,formatter:r.formatters[u],indices:false,serializeDate:function serializeDate(e){return l.call(e)},skipNulls:false,strictNullHandling:false};var f=function isNonNullishPrimitive(e){return typeof e==="string"||typeof e==="number"||typeof e==="boolean"||typeof e==="symbol"||typeof e==="bigint"};var m={};var v=function stringify(e,a,t,r,o,s,p,l,u,v,x,h,g,b,y,w,k,S){var j=e;var E=S;var C=0;var A=false;while((E=E.get(m))!==void undefined&&!A){var _=E.get(e);C+=1;if(typeof _!=="undefined"){if(_===C){throw new RangeError("Cyclic object value")}else{A=true}}if(typeof E.get(m)==="undefined"){C=0}}if(typeof v==="function"){j=v(a,j)}else if(j instanceof Date){j=g(j)}else if(t==="comma"&&c(j)){j=n.maybeMap(j,(function(e){if(e instanceof Date){return g(e)}return e}))}if(j===null){if(s){return u&&!w?u(a,d.encoder,k,"key",b):a}j=""}if(f(j)||n.isBuffer(j)){if(u){var T=w?a:u(a,d.encoder,k,"key",b);return[y(T)+"="+y(u(j,d.encoder,k,"value",b))]}return[y(a)+"="+y(String(j))]}var O=[];if(typeof j==="undefined"){return O}var I;if(t==="comma"&&c(j)){if(w&&u){j=n.maybeMap(j,u)}I=[{value:j.length>0?j.join(",")||null:void undefined}]}else if(c(v)){I=v}else{var P=Object.keys(j);I=x?P.sort(x):P}var q=l?a.replace(/\./g,"%2E"):a;var z=r&&c(j)&&j.length===1?q+"[]":q;if(o&&c(j)&&j.length===0){return z+"[]"}for(var B=0;B<I.length;++B){var D=I[B];var N=typeof D==="object"&&typeof D.value!=="undefined"?D.value:j[D];if(p&&N===null){continue}var L=h&&l?D.replace(/\./g,"%2E"):D;var F=c(j)?typeof t==="function"?t(z,L):z:z+(h?"."+L:"["+L+"]");S.set(e,C);var M=i();M.set(m,S);pushToArray(O,stringify(N,F,t,r,o,s,p,l,t==="comma"&&w&&c(j)?null:u,v,x,h,g,b,y,w,k,M))}return O};var x=function normalizeStringifyOptions(e){if(!e){return d}if(typeof e.allowEmptyArrays!=="undefined"&&typeof e.allowEmptyArrays!=="boolean"){throw new TypeError("`allowEmptyArrays` option can only be `true` or `false`, when provided")}if(typeof e.encodeDotInKeys!=="undefined"&&typeof e.encodeDotInKeys!=="boolean"){throw new TypeError("`encodeDotInKeys` option can only be `true` or `false`, when provided")}if(e.encoder!==null&&typeof e.encoder!=="undefined"&&typeof e.encoder!=="function"){throw new TypeError("Encoder has to be a function.")}var a=e.charset||d.charset;if(typeof e.charset!=="undefined"&&e.charset!=="utf-8"&&e.charset!=="iso-8859-1"){throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined")}var t=r["default"];if(typeof e.format!=="undefined"){if(!o.call(r.formatters,e.format)){throw new TypeError("Unknown format option provided.")}t=e.format}var i=r.formatters[t];var n=d.filter;if(typeof e.filter==="function"||c(e.filter)){n=e.filter}var p;if(e.arrayFormat in s){p=e.arrayFormat}else if("indices"in e){p=e.indices?"indices":"repeat"}else{p=d.arrayFormat}if("commaRoundTrip"in e&&typeof e.commaRoundTrip!=="boolean"){throw new TypeError("`commaRoundTrip` must be a boolean, or absent")}var l=typeof e.allowDots==="undefined"?e.encodeDotInKeys===true?true:d.allowDots:!!e.allowDots;return{addQueryPrefix:typeof e.addQueryPrefix==="boolean"?e.addQueryPrefix:d.addQueryPrefix,allowDots:l,allowEmptyArrays:typeof e.allowEmptyArrays==="boolean"?!!e.allowEmptyArrays:d.allowEmptyArrays,arrayFormat:p,charset:a,charsetSentinel:typeof e.charsetSentinel==="boolean"?e.charsetSentinel:d.charsetSentinel,commaRoundTrip:e.commaRoundTrip,delimiter:typeof e.delimiter==="undefined"?d.delimiter:e.delimiter,encode:typeof e.encode==="boolean"?e.encode:d.encode,encodeDotInKeys:typeof e.encodeDotInKeys==="boolean"?e.encodeDotInKeys:d.encodeDotInKeys,encoder:typeof e.encoder==="function"?e.encoder:d.encoder,encodeValuesOnly:typeof e.encodeValuesOnly==="boolean"?e.encodeValuesOnly:d.encodeValuesOnly,filter:n,format:t,formatter:i,serializeDate:typeof e.serializeDate==="function"?e.serializeDate:d.serializeDate,skipNulls:typeof e.skipNulls==="boolean"?e.skipNulls:d.skipNulls,sort:typeof e.sort==="function"?e.sort:null,strictNullHandling:typeof e.strictNullHandling==="boolean"?e.strictNullHandling:d.strictNullHandling}};e.exports=function(e,a){var t=e;var n=x(a);var r;var o;if(typeof n.filter==="function"){o=n.filter;t=o("",t)}else if(c(n.filter)){o=n.filter;r=o}var p=[];if(typeof t!=="object"||t===null){return""}var l=s[n.arrayFormat];var u=l==="comma"&&n.commaRoundTrip;if(!r){r=Object.keys(t)}if(n.sort){r.sort(n.sort)}var d=i();for(var f=0;f<r.length;++f){var m=r[f];if(n.skipNulls&&t[m]===null){continue}pushToArray(p,v(t[m],m,l,u,n.allowEmptyArrays,n.strictNullHandling,n.skipNulls,n.encodeDotInKeys,n.encode?n.encoder:null,n.filter,n.sort,n.allowDots,n.serializeDate,n.format,n.formatter,n.encodeValuesOnly,n.charset,d))}var h=p.join(n.delimiter);var g=n.addQueryPrefix===true?"?":"";if(n.charsetSentinel){if(n.charset==="iso-8859-1"){g+="utf8=%26%2310003%3B&"}else{g+="utf8=%E2%9C%93&"}}return h.length>0?g+h:""}},7009:function(e,a,t){"use strict";var i=t(3608);var n=Object.prototype.hasOwnProperty;var r=Array.isArray;var o=function(){var e=[];for(var a=0;a<256;++a){e.push("%"+((a<16?"0":"")+a.toString(16)).toUpperCase())}return e}();var s=function compactQueue(e){while(e.length>1){var a=e.pop();var t=a.obj[a.prop];if(r(t)){var i=[];for(var n=0;n<t.length;++n){if(typeof t[n]!=="undefined"){i.push(t[n])}}a.obj[a.prop]=i}}};var c=function arrayToObject(e,a){var t=a&&a.plainObjects?Object.create(null):{};for(var i=0;i<e.length;++i){if(typeof e[i]!=="undefined"){t[i]=e[i]}}return t};var p=function merge(e,a,t){if(!a){return e}if(typeof a!=="object"){if(r(e)){e.push(a)}else if(e&&typeof e==="object"){if(t&&(t.plainObjects||t.allowPrototypes)||!n.call(Object.prototype,a)){e[a]=true}}else{return[e,a]}return e}if(!e||typeof e!=="object"){return[e].concat(a)}var i=e;if(r(e)&&!r(a)){i=c(e,t)}if(r(e)&&r(a)){a.forEach((function(a,i){if(n.call(e,i)){var r=e[i];if(r&&typeof r==="object"&&a&&typeof a==="object"){e[i]=merge(r,a,t)}else{e.push(a)}}else{e[i]=a}}));return e}return Object.keys(a).reduce((function(e,i){var r=a[i];if(n.call(e,i)){e[i]=merge(e[i],r,t)}else{e[i]=r}return e}),i)};var l=function assignSingleSource(e,a){return Object.keys(a).reduce((function(e,t){e[t]=a[t];return e}),e)};var decode=function(e,a,t){var i=e.replace(/\+/g," ");if(t==="iso-8859-1"){return i.replace(/%[0-9a-f]{2}/gi,unescape)}try{return decodeURIComponent(i)}catch(e){return i}};var u=1024;var d=function encode(e,a,t,n,r){if(e.length===0){return e}var s=e;if(typeof e==="symbol"){s=Symbol.prototype.toString.call(e)}else if(typeof e!=="string"){s=String(e)}if(t==="iso-8859-1"){return escape(s).replace(/%u[0-9a-f]{4}/gi,(function(e){return"%26%23"+parseInt(e.slice(2),16)+"%3B"}))}var c="";for(var p=0;p<s.length;p+=u){var l=s.length>=u?s.slice(p,p+u):s;var d=[];for(var f=0;f<l.length;++f){var m=l.charCodeAt(f);if(m===45||m===46||m===95||m===126||m>=48&&m<=57||m>=65&&m<=90||m>=97&&m<=122||r===i.RFC1738&&(m===40||m===41)){d[d.length]=l.charAt(f);continue}if(m<128){d[d.length]=o[m];continue}if(m<2048){d[d.length]=o[192|m>>6]+o[128|m&63];continue}if(m<55296||m>=57344){d[d.length]=o[224|m>>12]+o[128|m>>6&63]+o[128|m&63];continue}f+=1;m=65536+((m&1023)<<10|l.charCodeAt(f)&1023);d[d.length]=o[240|m>>18]+o[128|m>>12&63]+o[128|m>>6&63]+o[128|m&63]}c+=d.join("")}return c};var f=function compact(e){var a=[{obj:{o:e},prop:"o"}];var t=[];for(var i=0;i<a.length;++i){var n=a[i];var r=n.obj[n.prop];var o=Object.keys(r);for(var c=0;c<o.length;++c){var p=o[c];var l=r[p];if(typeof l==="object"&&l!==null&&t.indexOf(l)===-1){a.push({obj:r,prop:p});t.push(l)}}}s(a);return e};var m=function isRegExp(e){return Object.prototype.toString.call(e)==="[object RegExp]"};var v=function isBuffer(e){if(!e||typeof e!=="object"){return false}return!!(e.constructor&&e.constructor.isBuffer&&e.constructor.isBuffer(e))};var x=function combine(e,a){return[].concat(e,a)};var h=function maybeMap(e,a){if(r(e)){var t=[];for(var i=0;i<e.length;i+=1){t.push(a(e[i]))}return t}return a(e)};e.exports={arrayToObject:c,assign:l,combine:x,compact:f,decode:decode,encode:d,isBuffer:v,isRegExp:m,maybeMap:h,merge:p}},6200:function(e){"use strict";
|
|
259
|
+
*/e.exports=proxyaddr;e.exports.all=alladdrs;e.exports.compile=compile;var i=t(1252);var n=t(4287);var r=/^[0-9]+$/;var o=n.isValid;var s=n.parse;var c={linklocal:["169.254.0.0/16","fe80::/10"],loopback:["127.0.0.1/8","::1/128"],uniquelocal:["10.0.0.0/8","172.16.0.0/12","192.168.0.0/16","fc00::/7"]};function alladdrs(e,a){var t=i(e);if(!a){return t}if(typeof a!=="function"){a=compile(a)}for(var n=0;n<t.length-1;n++){if(a(t[n],n))continue;t.length=n+1}return t}function compile(e){if(!e){throw new TypeError("argument is required")}var a;if(typeof e==="string"){a=[e]}else if(Array.isArray(e)){a=e.slice()}else{throw new TypeError("unsupported trust argument")}for(var t=0;t<a.length;t++){e=a[t];if(!Object.prototype.hasOwnProperty.call(c,e)){continue}e=c[e];a.splice.apply(a,[t,1].concat(e));t+=e.length-1}return compileTrust(compileRangeSubnets(a))}function compileRangeSubnets(e){var a=new Array(e.length);for(var t=0;t<e.length;t++){a[t]=parseipNotation(e[t])}return a}function compileTrust(e){var a=e.length;return a===0?trustNone:a===1?trustSingle(e[0]):trustMulti(e)}function parseipNotation(e){var a=e.lastIndexOf("/");var t=a!==-1?e.substring(0,a):e;if(!o(t)){throw new TypeError("invalid IP address: "+t)}var i=s(t);if(a===-1&&i.kind()==="ipv6"&&i.isIPv4MappedAddress()){i=i.toIPv4Address()}var n=i.kind()==="ipv6"?128:32;var c=a!==-1?e.substring(a+1,e.length):null;if(c===null){c=n}else if(r.test(c)){c=parseInt(c,10)}else if(i.kind()==="ipv4"&&o(c)){c=parseNetmask(c)}else{c=null}if(c<=0||c>n){throw new TypeError("invalid range on address: "+e)}return[i,c]}function parseNetmask(e){var a=s(e);var t=a.kind();return t==="ipv4"?a.prefixLengthFromSubnetMask():null}function proxyaddr(e,a){if(!e){throw new TypeError("req argument is required")}if(!a){throw new TypeError("trust argument is required")}var t=alladdrs(e,a);var i=t[t.length-1];return i}function trustNone(){return false}function trustMulti(e){return function trust(a){if(!o(a))return false;var t=s(a);var i;var n=t.kind();for(var r=0;r<e.length;r++){var c=e[r];var p=c[0];var l=p.kind();var u=c[1];var d=t;if(n!==l){if(l==="ipv4"&&!t.isIPv4MappedAddress()){continue}if(!i){i=l==="ipv4"?t.toIPv4Address():t.toIPv4MappedAddress()}d=i}if(d.match(p,u)){return true}}return false}}function trustSingle(e){var a=e[0];var t=a.kind();var i=t==="ipv4";var n=e[1];return function trust(e){if(!o(e))return false;var r=s(e);var c=r.kind();if(c!==t){if(i&&!r.isIPv4MappedAddress()){return false}r=i?r.toIPv4Address():r.toIPv4MappedAddress()}return r.match(a,n)}}},3608:function(e){"use strict";var a=String.prototype.replace;var t=/%20/g;var i={RFC1738:"RFC1738",RFC3986:"RFC3986"};e.exports={default:i.RFC3986,formatters:{RFC1738:function(e){return a.call(e,t,"+")},RFC3986:function(e){return String(e)}},RFC1738:i.RFC1738,RFC3986:i.RFC3986}},6792:function(e,a,t){"use strict";var i=t(5973);var n=t(5547);var r=t(3608);e.exports={formats:r,parse:n,stringify:i}},5547:function(e,a,t){"use strict";var i=t(7009);var n=Object.prototype.hasOwnProperty;var r=Array.isArray;var o={allowDots:false,allowEmptyArrays:false,allowPrototypes:false,allowSparse:false,arrayLimit:20,charset:"utf-8",charsetSentinel:false,comma:false,decodeDotInKeys:false,decoder:i.decode,delimiter:"&",depth:5,duplicates:"combine",ignoreQueryPrefix:false,interpretNumericEntities:false,parameterLimit:1e3,parseArrays:true,plainObjects:false,strictDepth:false,strictNullHandling:false};var interpretNumericEntities=function(e){return e.replace(/&#(\d+);/g,(function(e,a){return String.fromCharCode(parseInt(a,10))}))};var parseArrayValue=function(e,a){if(e&&typeof e==="string"&&a.comma&&e.indexOf(",")>-1){return e.split(",")}return e};var s="utf8=%26%2310003%3B";var c="utf8=%E2%9C%93";var p=function parseQueryStringValues(e,a){var t={__proto__:null};var p=a.ignoreQueryPrefix?e.replace(/^\?/,""):e;p=p.replace(/%5B/gi,"[").replace(/%5D/gi,"]");var l=a.parameterLimit===Infinity?undefined:a.parameterLimit;var u=p.split(a.delimiter,l);var d=-1;var f;var m=a.charset;if(a.charsetSentinel){for(f=0;f<u.length;++f){if(u[f].indexOf("utf8=")===0){if(u[f]===c){m="utf-8"}else if(u[f]===s){m="iso-8859-1"}d=f;f=u.length}}}for(f=0;f<u.length;++f){if(f===d){continue}var v=u[f];var x=v.indexOf("]=");var h=x===-1?v.indexOf("="):x+1;var g,b;if(h===-1){g=a.decoder(v,o.decoder,m,"key");b=a.strictNullHandling?null:""}else{g=a.decoder(v.slice(0,h),o.decoder,m,"key");b=i.maybeMap(parseArrayValue(v.slice(h+1),a),(function(e){return a.decoder(e,o.decoder,m,"value")}))}if(b&&a.interpretNumericEntities&&m==="iso-8859-1"){b=interpretNumericEntities(b)}if(v.indexOf("[]=")>-1){b=r(b)?[b]:b}var y=n.call(t,g);if(y&&a.duplicates==="combine"){t[g]=i.combine(t[g],b)}else if(!y||a.duplicates==="last"){t[g]=b}}return t};var parseObject=function(e,a,t,i){var n=i?a:parseArrayValue(a,t);for(var r=e.length-1;r>=0;--r){var o;var s=e[r];if(s==="[]"&&t.parseArrays){o=t.allowEmptyArrays&&(n===""||t.strictNullHandling&&n===null)?[]:[].concat(n)}else{o=t.plainObjects?Object.create(null):{};var c=s.charAt(0)==="["&&s.charAt(s.length-1)==="]"?s.slice(1,-1):s;var p=t.decodeDotInKeys?c.replace(/%2E/g,"."):c;var l=parseInt(p,10);if(!t.parseArrays&&p===""){o={0:n}}else if(!isNaN(l)&&s!==p&&String(l)===p&&l>=0&&(t.parseArrays&&l<=t.arrayLimit)){o=[];o[l]=n}else if(p!=="__proto__"){o[p]=n}}n=o}return n};var l=function parseQueryStringKeys(e,a,t,i){if(!e){return}var r=t.allowDots?e.replace(/\.([^.[]+)/g,"[$1]"):e;var o=/(\[[^[\]]*])/;var s=/(\[[^[\]]*])/g;var c=t.depth>0&&o.exec(r);var p=c?r.slice(0,c.index):r;var l=[];if(p){if(!t.plainObjects&&n.call(Object.prototype,p)){if(!t.allowPrototypes){return}}l.push(p)}var u=0;while(t.depth>0&&(c=s.exec(r))!==null&&u<t.depth){u+=1;if(!t.plainObjects&&n.call(Object.prototype,c[1].slice(1,-1))){if(!t.allowPrototypes){return}}l.push(c[1])}if(c){if(t.strictDepth===true){throw new RangeError("Input depth exceeded depth option of "+t.depth+" and strictDepth is true")}l.push("["+r.slice(c.index)+"]")}return parseObject(l,a,t,i)};var u=function normalizeParseOptions(e){if(!e){return o}if(typeof e.allowEmptyArrays!=="undefined"&&typeof e.allowEmptyArrays!=="boolean"){throw new TypeError("`allowEmptyArrays` option can only be `true` or `false`, when provided")}if(typeof e.decodeDotInKeys!=="undefined"&&typeof e.decodeDotInKeys!=="boolean"){throw new TypeError("`decodeDotInKeys` option can only be `true` or `false`, when provided")}if(e.decoder!==null&&typeof e.decoder!=="undefined"&&typeof e.decoder!=="function"){throw new TypeError("Decoder has to be a function.")}if(typeof e.charset!=="undefined"&&e.charset!=="utf-8"&&e.charset!=="iso-8859-1"){throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined")}var a=typeof e.charset==="undefined"?o.charset:e.charset;var t=typeof e.duplicates==="undefined"?o.duplicates:e.duplicates;if(t!=="combine"&&t!=="first"&&t!=="last"){throw new TypeError("The duplicates option must be either combine, first, or last")}var n=typeof e.allowDots==="undefined"?e.decodeDotInKeys===true?true:o.allowDots:!!e.allowDots;return{allowDots:n,allowEmptyArrays:typeof e.allowEmptyArrays==="boolean"?!!e.allowEmptyArrays:o.allowEmptyArrays,allowPrototypes:typeof e.allowPrototypes==="boolean"?e.allowPrototypes:o.allowPrototypes,allowSparse:typeof e.allowSparse==="boolean"?e.allowSparse:o.allowSparse,arrayLimit:typeof e.arrayLimit==="number"?e.arrayLimit:o.arrayLimit,charset:a,charsetSentinel:typeof e.charsetSentinel==="boolean"?e.charsetSentinel:o.charsetSentinel,comma:typeof e.comma==="boolean"?e.comma:o.comma,decodeDotInKeys:typeof e.decodeDotInKeys==="boolean"?e.decodeDotInKeys:o.decodeDotInKeys,decoder:typeof e.decoder==="function"?e.decoder:o.decoder,delimiter:typeof e.delimiter==="string"||i.isRegExp(e.delimiter)?e.delimiter:o.delimiter,depth:typeof e.depth==="number"||e.depth===false?+e.depth:o.depth,duplicates:t,ignoreQueryPrefix:e.ignoreQueryPrefix===true,interpretNumericEntities:typeof e.interpretNumericEntities==="boolean"?e.interpretNumericEntities:o.interpretNumericEntities,parameterLimit:typeof e.parameterLimit==="number"?e.parameterLimit:o.parameterLimit,parseArrays:e.parseArrays!==false,plainObjects:typeof e.plainObjects==="boolean"?e.plainObjects:o.plainObjects,strictDepth:typeof e.strictDepth==="boolean"?!!e.strictDepth:o.strictDepth,strictNullHandling:typeof e.strictNullHandling==="boolean"?e.strictNullHandling:o.strictNullHandling}};e.exports=function(e,a){var t=u(a);if(e===""||e===null||typeof e==="undefined"){return t.plainObjects?Object.create(null):{}}var n=typeof e==="string"?p(e,t):e;var r=t.plainObjects?Object.create(null):{};var o=Object.keys(n);for(var s=0;s<o.length;++s){var c=o[s];var d=l(c,n[c],t,typeof e==="string");r=i.merge(r,d,t)}if(t.allowSparse===true){return r}return i.compact(r)}},5973:function(e,a,t){"use strict";var i=t(4706);var n=t(7009);var r=t(3608);var o=Object.prototype.hasOwnProperty;var s={brackets:function brackets(e){return e+"[]"},comma:"comma",indices:function indices(e,a){return e+"["+a+"]"},repeat:function repeat(e){return e}};var c=Array.isArray;var p=Array.prototype.push;var pushToArray=function(e,a){p.apply(e,c(a)?a:[a])};var l=Date.prototype.toISOString;var u=r["default"];var d={addQueryPrefix:false,allowDots:false,allowEmptyArrays:false,arrayFormat:"indices",charset:"utf-8",charsetSentinel:false,delimiter:"&",encode:true,encodeDotInKeys:false,encoder:n.encode,encodeValuesOnly:false,format:u,formatter:r.formatters[u],indices:false,serializeDate:function serializeDate(e){return l.call(e)},skipNulls:false,strictNullHandling:false};var f=function isNonNullishPrimitive(e){return typeof e==="string"||typeof e==="number"||typeof e==="boolean"||typeof e==="symbol"||typeof e==="bigint"};var m={};var v=function stringify(e,a,t,r,o,s,p,l,u,v,x,h,g,b,y,w,k,S){var j=e;var E=S;var C=0;var A=false;while((E=E.get(m))!==void undefined&&!A){var _=E.get(e);C+=1;if(typeof _!=="undefined"){if(_===C){throw new RangeError("Cyclic object value")}else{A=true}}if(typeof E.get(m)==="undefined"){C=0}}if(typeof v==="function"){j=v(a,j)}else if(j instanceof Date){j=g(j)}else if(t==="comma"&&c(j)){j=n.maybeMap(j,(function(e){if(e instanceof Date){return g(e)}return e}))}if(j===null){if(s){return u&&!w?u(a,d.encoder,k,"key",b):a}j=""}if(f(j)||n.isBuffer(j)){if(u){var T=w?a:u(a,d.encoder,k,"key",b);return[y(T)+"="+y(u(j,d.encoder,k,"value",b))]}return[y(a)+"="+y(String(j))]}var O=[];if(typeof j==="undefined"){return O}var I;if(t==="comma"&&c(j)){if(w&&u){j=n.maybeMap(j,u)}I=[{value:j.length>0?j.join(",")||null:void undefined}]}else if(c(v)){I=v}else{var P=Object.keys(j);I=x?P.sort(x):P}var q=l?a.replace(/\./g,"%2E"):a;var z=r&&c(j)&&j.length===1?q+"[]":q;if(o&&c(j)&&j.length===0){return z+"[]"}for(var B=0;B<I.length;++B){var D=I[B];var N=typeof D==="object"&&typeof D.value!=="undefined"?D.value:j[D];if(p&&N===null){continue}var L=h&&l?D.replace(/\./g,"%2E"):D;var M=c(j)?typeof t==="function"?t(z,L):z:z+(h?"."+L:"["+L+"]");S.set(e,C);var F=i();F.set(m,S);pushToArray(O,stringify(N,M,t,r,o,s,p,l,t==="comma"&&w&&c(j)?null:u,v,x,h,g,b,y,w,k,F))}return O};var x=function normalizeStringifyOptions(e){if(!e){return d}if(typeof e.allowEmptyArrays!=="undefined"&&typeof e.allowEmptyArrays!=="boolean"){throw new TypeError("`allowEmptyArrays` option can only be `true` or `false`, when provided")}if(typeof e.encodeDotInKeys!=="undefined"&&typeof e.encodeDotInKeys!=="boolean"){throw new TypeError("`encodeDotInKeys` option can only be `true` or `false`, when provided")}if(e.encoder!==null&&typeof e.encoder!=="undefined"&&typeof e.encoder!=="function"){throw new TypeError("Encoder has to be a function.")}var a=e.charset||d.charset;if(typeof e.charset!=="undefined"&&e.charset!=="utf-8"&&e.charset!=="iso-8859-1"){throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined")}var t=r["default"];if(typeof e.format!=="undefined"){if(!o.call(r.formatters,e.format)){throw new TypeError("Unknown format option provided.")}t=e.format}var i=r.formatters[t];var n=d.filter;if(typeof e.filter==="function"||c(e.filter)){n=e.filter}var p;if(e.arrayFormat in s){p=e.arrayFormat}else if("indices"in e){p=e.indices?"indices":"repeat"}else{p=d.arrayFormat}if("commaRoundTrip"in e&&typeof e.commaRoundTrip!=="boolean"){throw new TypeError("`commaRoundTrip` must be a boolean, or absent")}var l=typeof e.allowDots==="undefined"?e.encodeDotInKeys===true?true:d.allowDots:!!e.allowDots;return{addQueryPrefix:typeof e.addQueryPrefix==="boolean"?e.addQueryPrefix:d.addQueryPrefix,allowDots:l,allowEmptyArrays:typeof e.allowEmptyArrays==="boolean"?!!e.allowEmptyArrays:d.allowEmptyArrays,arrayFormat:p,charset:a,charsetSentinel:typeof e.charsetSentinel==="boolean"?e.charsetSentinel:d.charsetSentinel,commaRoundTrip:e.commaRoundTrip,delimiter:typeof e.delimiter==="undefined"?d.delimiter:e.delimiter,encode:typeof e.encode==="boolean"?e.encode:d.encode,encodeDotInKeys:typeof e.encodeDotInKeys==="boolean"?e.encodeDotInKeys:d.encodeDotInKeys,encoder:typeof e.encoder==="function"?e.encoder:d.encoder,encodeValuesOnly:typeof e.encodeValuesOnly==="boolean"?e.encodeValuesOnly:d.encodeValuesOnly,filter:n,format:t,formatter:i,serializeDate:typeof e.serializeDate==="function"?e.serializeDate:d.serializeDate,skipNulls:typeof e.skipNulls==="boolean"?e.skipNulls:d.skipNulls,sort:typeof e.sort==="function"?e.sort:null,strictNullHandling:typeof e.strictNullHandling==="boolean"?e.strictNullHandling:d.strictNullHandling}};e.exports=function(e,a){var t=e;var n=x(a);var r;var o;if(typeof n.filter==="function"){o=n.filter;t=o("",t)}else if(c(n.filter)){o=n.filter;r=o}var p=[];if(typeof t!=="object"||t===null){return""}var l=s[n.arrayFormat];var u=l==="comma"&&n.commaRoundTrip;if(!r){r=Object.keys(t)}if(n.sort){r.sort(n.sort)}var d=i();for(var f=0;f<r.length;++f){var m=r[f];if(n.skipNulls&&t[m]===null){continue}pushToArray(p,v(t[m],m,l,u,n.allowEmptyArrays,n.strictNullHandling,n.skipNulls,n.encodeDotInKeys,n.encode?n.encoder:null,n.filter,n.sort,n.allowDots,n.serializeDate,n.format,n.formatter,n.encodeValuesOnly,n.charset,d))}var h=p.join(n.delimiter);var g=n.addQueryPrefix===true?"?":"";if(n.charsetSentinel){if(n.charset==="iso-8859-1"){g+="utf8=%26%2310003%3B&"}else{g+="utf8=%E2%9C%93&"}}return h.length>0?g+h:""}},7009:function(e,a,t){"use strict";var i=t(3608);var n=Object.prototype.hasOwnProperty;var r=Array.isArray;var o=function(){var e=[];for(var a=0;a<256;++a){e.push("%"+((a<16?"0":"")+a.toString(16)).toUpperCase())}return e}();var s=function compactQueue(e){while(e.length>1){var a=e.pop();var t=a.obj[a.prop];if(r(t)){var i=[];for(var n=0;n<t.length;++n){if(typeof t[n]!=="undefined"){i.push(t[n])}}a.obj[a.prop]=i}}};var c=function arrayToObject(e,a){var t=a&&a.plainObjects?Object.create(null):{};for(var i=0;i<e.length;++i){if(typeof e[i]!=="undefined"){t[i]=e[i]}}return t};var p=function merge(e,a,t){if(!a){return e}if(typeof a!=="object"){if(r(e)){e.push(a)}else if(e&&typeof e==="object"){if(t&&(t.plainObjects||t.allowPrototypes)||!n.call(Object.prototype,a)){e[a]=true}}else{return[e,a]}return e}if(!e||typeof e!=="object"){return[e].concat(a)}var i=e;if(r(e)&&!r(a)){i=c(e,t)}if(r(e)&&r(a)){a.forEach((function(a,i){if(n.call(e,i)){var r=e[i];if(r&&typeof r==="object"&&a&&typeof a==="object"){e[i]=merge(r,a,t)}else{e.push(a)}}else{e[i]=a}}));return e}return Object.keys(a).reduce((function(e,i){var r=a[i];if(n.call(e,i)){e[i]=merge(e[i],r,t)}else{e[i]=r}return e}),i)};var l=function assignSingleSource(e,a){return Object.keys(a).reduce((function(e,t){e[t]=a[t];return e}),e)};var decode=function(e,a,t){var i=e.replace(/\+/g," ");if(t==="iso-8859-1"){return i.replace(/%[0-9a-f]{2}/gi,unescape)}try{return decodeURIComponent(i)}catch(e){return i}};var u=1024;var d=function encode(e,a,t,n,r){if(e.length===0){return e}var s=e;if(typeof e==="symbol"){s=Symbol.prototype.toString.call(e)}else if(typeof e!=="string"){s=String(e)}if(t==="iso-8859-1"){return escape(s).replace(/%u[0-9a-f]{4}/gi,(function(e){return"%26%23"+parseInt(e.slice(2),16)+"%3B"}))}var c="";for(var p=0;p<s.length;p+=u){var l=s.length>=u?s.slice(p,p+u):s;var d=[];for(var f=0;f<l.length;++f){var m=l.charCodeAt(f);if(m===45||m===46||m===95||m===126||m>=48&&m<=57||m>=65&&m<=90||m>=97&&m<=122||r===i.RFC1738&&(m===40||m===41)){d[d.length]=l.charAt(f);continue}if(m<128){d[d.length]=o[m];continue}if(m<2048){d[d.length]=o[192|m>>6]+o[128|m&63];continue}if(m<55296||m>=57344){d[d.length]=o[224|m>>12]+o[128|m>>6&63]+o[128|m&63];continue}f+=1;m=65536+((m&1023)<<10|l.charCodeAt(f)&1023);d[d.length]=o[240|m>>18]+o[128|m>>12&63]+o[128|m>>6&63]+o[128|m&63]}c+=d.join("")}return c};var f=function compact(e){var a=[{obj:{o:e},prop:"o"}];var t=[];for(var i=0;i<a.length;++i){var n=a[i];var r=n.obj[n.prop];var o=Object.keys(r);for(var c=0;c<o.length;++c){var p=o[c];var l=r[p];if(typeof l==="object"&&l!==null&&t.indexOf(l)===-1){a.push({obj:r,prop:p});t.push(l)}}}s(a);return e};var m=function isRegExp(e){return Object.prototype.toString.call(e)==="[object RegExp]"};var v=function isBuffer(e){if(!e||typeof e!=="object"){return false}return!!(e.constructor&&e.constructor.isBuffer&&e.constructor.isBuffer(e))};var x=function combine(e,a){return[].concat(e,a)};var h=function maybeMap(e,a){if(r(e)){var t=[];for(var i=0;i<e.length;i+=1){t.push(a(e[i]))}return t}return a(e)};e.exports={arrayToObject:c,assign:l,combine:x,compact:f,decode:decode,encode:d,isBuffer:v,isRegExp:m,maybeMap:h,merge:p}},6200:function(e){"use strict";
|
|
260
260
|
/*!
|
|
261
261
|
* range-parser
|
|
262
262
|
* Copyright(c) 2012-2014 TJ Holowaychuk
|
|
@@ -283,7 +283,7 @@ var i=t(181);var n=i.Buffer;function copyProps(e,a){for(var t in e){a[t]=e[t]}}i
|
|
|
283
283
|
* Copyright(c) 2011 TJ Holowaychuk
|
|
284
284
|
* Copyright(c) 2014-2016 Douglas Christopher Wilson
|
|
285
285
|
* MIT Licensed
|
|
286
|
-
*/var i=t(6094);var n=t(846);var r=t(8473);var o=t(6928).resolve;var s=t(7152);var c=t(7016);e.exports=serveStatic;e.exports.mime=s.mime;function serveStatic(e,a){if(!e){throw new TypeError("root path required")}if(typeof e!=="string"){throw new TypeError("root path must be a string")}var t=Object.create(a||null);var i=t.fallthrough!==false;var n=t.redirect!==false;var c=t.setHeaders;if(c&&typeof c!=="function"){throw new TypeError("option setHeaders must be function")}t.maxage=t.maxage||t.maxAge||0;t.root=o(e);var p=n?createRedirectDirectoryListener():createNotFoundDirectoryListener();return function serveStatic(e,a,n){if(e.method!=="GET"&&e.method!=="HEAD"){if(i){return n()}a.statusCode=405;a.setHeader("Allow","GET, HEAD");a.setHeader("Content-Length","0");a.end();return}var o=!i;var l=r.original(e);var u=r(e).pathname;if(u==="/"&&l.pathname.substr(-1)!=="/"){u=""}var d=s(e,u,t);d.on("directory",p);if(c){d.on("headers",c)}if(i){d.on("file",(function onFile(){o=true}))}d.on("error",(function error(e){if(o||!(e.statusCode<500)){n(e);return}n()}));d.pipe(a)}}function collapseLeadingSlashes(e){for(var a=0;a<e.length;a++){if(e.charCodeAt(a)!==47){break}}return a>1?"/"+e.substr(a):e}function createHtmlDocument(e,a){return"<!DOCTYPE html>\n"+'<html lang="en">\n'+"<head>\n"+'<meta charset="utf-8">\n'+"<title>"+e+"</title>\n"+"</head>\n"+"<body>\n"+"<pre>"+a+"</pre>\n"+"</body>\n"+"</html>\n"}function createNotFoundDirectoryListener(){return function notFound(){this.error(404)}}function createRedirectDirectoryListener(){return function redirect(e){if(this.hasTrailingSlash()){this.error(404);return}var a=r.original(this.req);a.path=null;a.pathname=collapseLeadingSlashes(a.pathname+"/");var t=i(c.format(a));var o=createHtmlDocument("Redirecting","Redirecting to "+n(t));e.statusCode=301;e.setHeader("Content-Type","text/html; charset=UTF-8");e.setHeader("Content-Length",Buffer.byteLength(o));e.setHeader("Content-Security-Policy","default-src 'none'");e.setHeader("X-Content-Type-Options","nosniff");e.setHeader("Location",t);e.end(o)}}},99:function(e){"use strict";e.exports=Object.setPrototypeOf||({__proto__:[]}instanceof Array?setProtoOf:mixinProperties);function setProtoOf(e,a){e.__proto__=a;return e}function mixinProperties(e,a){for(var t in a){if(!Object.prototype.hasOwnProperty.call(e,t)){e[t]=a[t]}}return e}},9223:function(e,a,t){"use strict";var i=t(9162);var n=t(6458);var listGetNode=function(e,a,t){var i=e;var n;for(;(n=i.next)!=null;i=n){if(n.key===a){i.next=n.next;if(!t){n.next=e.next;e.next=n}return n}}};var listGet=function(e,a){if(!e){return void undefined}var t=listGetNode(e,a);return t&&t.value};var listSet=function(e,a,t){var i=listGetNode(e,a);if(i){i.value=t}else{e.next={key:a,next:e.next,value:t}}};var listHas=function(e,a){if(!e){return false}return!!listGetNode(e,a)};var listDelete=function(e,a){if(e){return listGetNode(e,a,true)}};e.exports=function getSideChannelList(){var e;var a={assert:function(e){if(!a.has(e)){throw new n("Side channel does not contain "+i(e))}},delete:function(a){var t=e&&e.next;var i=listDelete(e,a);if(i&&t&&t===i){e=void undefined}return!!i},get:function(a){return listGet(e,a)},has:function(a){return listHas(e,a)},set:function(a,t){if(!e){e={next:void undefined}}listSet(e,a,t)}};return a}},7138:function(e,a,t){"use strict";var i=t(
|
|
286
|
+
*/var i=t(6094);var n=t(846);var r=t(8473);var o=t(6928).resolve;var s=t(7152);var c=t(7016);e.exports=serveStatic;e.exports.mime=s.mime;function serveStatic(e,a){if(!e){throw new TypeError("root path required")}if(typeof e!=="string"){throw new TypeError("root path must be a string")}var t=Object.create(a||null);var i=t.fallthrough!==false;var n=t.redirect!==false;var c=t.setHeaders;if(c&&typeof c!=="function"){throw new TypeError("option setHeaders must be function")}t.maxage=t.maxage||t.maxAge||0;t.root=o(e);var p=n?createRedirectDirectoryListener():createNotFoundDirectoryListener();return function serveStatic(e,a,n){if(e.method!=="GET"&&e.method!=="HEAD"){if(i){return n()}a.statusCode=405;a.setHeader("Allow","GET, HEAD");a.setHeader("Content-Length","0");a.end();return}var o=!i;var l=r.original(e);var u=r(e).pathname;if(u==="/"&&l.pathname.substr(-1)!=="/"){u=""}var d=s(e,u,t);d.on("directory",p);if(c){d.on("headers",c)}if(i){d.on("file",(function onFile(){o=true}))}d.on("error",(function error(e){if(o||!(e.statusCode<500)){n(e);return}n()}));d.pipe(a)}}function collapseLeadingSlashes(e){for(var a=0;a<e.length;a++){if(e.charCodeAt(a)!==47){break}}return a>1?"/"+e.substr(a):e}function createHtmlDocument(e,a){return"<!DOCTYPE html>\n"+'<html lang="en">\n'+"<head>\n"+'<meta charset="utf-8">\n'+"<title>"+e+"</title>\n"+"</head>\n"+"<body>\n"+"<pre>"+a+"</pre>\n"+"</body>\n"+"</html>\n"}function createNotFoundDirectoryListener(){return function notFound(){this.error(404)}}function createRedirectDirectoryListener(){return function redirect(e){if(this.hasTrailingSlash()){this.error(404);return}var a=r.original(this.req);a.path=null;a.pathname=collapseLeadingSlashes(a.pathname+"/");var t=i(c.format(a));var o=createHtmlDocument("Redirecting","Redirecting to "+n(t));e.statusCode=301;e.setHeader("Content-Type","text/html; charset=UTF-8");e.setHeader("Content-Length",Buffer.byteLength(o));e.setHeader("Content-Security-Policy","default-src 'none'");e.setHeader("X-Content-Type-Options","nosniff");e.setHeader("Location",t);e.end(o)}}},99:function(e){"use strict";e.exports=Object.setPrototypeOf||({__proto__:[]}instanceof Array?setProtoOf:mixinProperties);function setProtoOf(e,a){e.__proto__=a;return e}function mixinProperties(e,a){for(var t in a){if(!Object.prototype.hasOwnProperty.call(e,t)){e[t]=a[t]}}return e}},9223:function(e,a,t){"use strict";var i=t(9162);var n=t(6458);var listGetNode=function(e,a,t){var i=e;var n;for(;(n=i.next)!=null;i=n){if(n.key===a){i.next=n.next;if(!t){n.next=e.next;e.next=n}return n}}};var listGet=function(e,a){if(!e){return void undefined}var t=listGetNode(e,a);return t&&t.value};var listSet=function(e,a,t){var i=listGetNode(e,a);if(i){i.value=t}else{e.next={key:a,next:e.next,value:t}}};var listHas=function(e,a){if(!e){return false}return!!listGetNode(e,a)};var listDelete=function(e,a){if(e){return listGetNode(e,a,true)}};e.exports=function getSideChannelList(){var e;var a={assert:function(e){if(!a.has(e)){throw new n("Side channel does not contain "+i(e))}},delete:function(a){var t=e&&e.next;var i=listDelete(e,a);if(i&&t&&t===i){e=void undefined}return!!i},get:function(a){return listGet(e,a)},has:function(a){return listHas(e,a)},set:function(a,t){if(!e){e={next:void undefined}}listSet(e,a,t)}};return a}},7138:function(e,a,t){"use strict";var i=t(8402);var n=t(5296);var r=t(9162);var o=t(6458);var s=i("%Map%",true);var c=n("Map.prototype.get",true);var p=n("Map.prototype.set",true);var l=n("Map.prototype.has",true);var u=n("Map.prototype.delete",true);var d=n("Map.prototype.size",true);e.exports=!!s&&function getSideChannelMap(){var e;var a={assert:function(e){if(!a.has(e)){throw new o("Side channel does not contain "+r(e))}},delete:function(a){if(e){var t=u(e,a);if(d(e)===0){e=void undefined}return t}return false},get:function(a){if(e){return c(e,a)}},has:function(a){if(e){return l(e,a)}return false},set:function(a,t){if(!e){e=new s}p(e,a,t)}};return a}},2431:function(e,a,t){"use strict";var i=t(8402);var n=t(5296);var r=t(9162);var o=t(7138);var s=t(6458);var c=i("%WeakMap%",true);var p=n("WeakMap.prototype.get",true);var l=n("WeakMap.prototype.set",true);var u=n("WeakMap.prototype.has",true);var d=n("WeakMap.prototype.delete",true);e.exports=c?function getSideChannelWeakMap(){var e;var a;var t={assert:function(e){if(!t.has(e)){throw new s("Side channel does not contain "+r(e))}},delete:function(t){if(c&&t&&(typeof t==="object"||typeof t==="function")){if(e){return d(e,t)}}else if(o){if(a){return a["delete"](t)}}return false},get:function(t){if(c&&t&&(typeof t==="object"||typeof t==="function")){if(e){return p(e,t)}}return a&&a.get(t)},has:function(t){if(c&&t&&(typeof t==="object"||typeof t==="function")){if(e){return u(e,t)}}return!!a&&a.has(t)},set:function(t,i){if(c&&t&&(typeof t==="object"||typeof t==="function")){if(!e){e=new c}l(e,t,i)}else if(o){if(!a){a=o()}a.set(t,i)}}};return t}:o},4706:function(e,a,t){"use strict";var i=t(6458);var n=t(9162);var r=t(9223);var o=t(7138);var s=t(2431);var c=s||o||r;e.exports=function getSideChannel(){var e;var a={assert:function(e){if(!a.has(e)){throw new i("Side channel does not contain "+n(e))}},delete:function(a){return!!e&&e["delete"](a)},get:function(a){return e&&e.get(a)},has:function(a){return!!e&&e.has(a)},set:function(a,t){if(!e){e=c()}e.set(a,t)}};return a}},1443:function(e,a,t){"use strict";
|
|
287
287
|
/*!
|
|
288
288
|
* statuses
|
|
289
289
|
* Copyright(c) 2014 Jonathan Ong
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"express","description":"Fast, unopinionated, minimalist web framework","version":"4.21.2","author":"TJ Holowaychuk <tj@vision-media.ca>","contributors":["Aaron Heckmann <aaron.heckmann+github@gmail.com>","Ciaran Jessup <ciaranj@gmail.com>","Douglas Christopher Wilson <doug@somethingdoug.com>","Guillermo Rauch <rauchg@gmail.com>","Jonathan Ong <me@jongleberry.com>","Roman Shtylman <shtylman+expressjs@gmail.com>","Young Jae Sim <hanul@hanul.me>"],"license":"MIT","repository":"expressjs/express","homepage":"http://expressjs.com/","funding":{"type":"opencollective","url":"https://opencollective.com/express"},"keywords":["express","framework","sinatra","web","http","rest","restful","router","app","api"],"dependencies":{"accepts":"~1.3.8","array-flatten":"1.1.1","body-parser":"1.20.3","content-disposition":"0.5.4","content-type":"~1.0.4","cookie":"0.7.1","cookie-signature":"1.0.6","debug":"2.6.9","depd":"2.0.0","encodeurl":"~2.0.0","escape-html":"~1.0.3","etag":"~1.8.1","finalhandler":"1.3.1","fresh":"0.5.2","http-errors":"2.0.0","merge-descriptors":"1.0.3","methods":"~1.1.2","on-finished":"2.4.1","parseurl":"~1.3.3","path-to-regexp":"0.1.12","proxy-addr":"~2.0.7","qs":"6.13.0","range-parser":"~1.2.1","safe-buffer":"5.2.1","send":"0.19.0","serve-static":"1.16.2","setprototypeof":"1.2.0","statuses":"2.0.1","type-is":"~1.6.18","utils-merge":"1.0.1","vary":"~1.1.2"},"devDependencies":{"after":"0.8.2","connect-redis":"3.4.2","cookie-parser":"1.4.6","cookie-session":"2.0.0","ejs":"3.1.9","eslint":"8.47.0","express-session":"1.17.2","hbs":"4.2.0","marked":"0.7.0","method-override":"3.0.0","mocha":"10.2.0","morgan":"1.10.0","nyc":"15.1.0","pbkdf2-password":"1.2.1","supertest":"6.3.0","vhost":"~3.0.2"},"engines":{"node":">= 0.10.0"},"files":["LICENSE","History.md","Readme.md","index.js","lib/"],"scripts":{"lint":"eslint .","test":"mocha --require test/support/env --reporter spec --bail --check-leaks test/ test/acceptance/","test-ci":"nyc --exclude examples --exclude test --exclude benchmarks --reporter=lcovonly --reporter=text npm test","test-cov":"nyc --exclude examples --exclude test --exclude benchmarks --reporter=html --reporter=text npm test","test-tap":"mocha --require test/support/env --reporter tap --check-leaks test/ test/acceptance/"},"_lastModified":"2025-
|
|
1
|
+
{"name":"express","description":"Fast, unopinionated, minimalist web framework","version":"4.21.2","author":"TJ Holowaychuk <tj@vision-media.ca>","contributors":["Aaron Heckmann <aaron.heckmann+github@gmail.com>","Ciaran Jessup <ciaranj@gmail.com>","Douglas Christopher Wilson <doug@somethingdoug.com>","Guillermo Rauch <rauchg@gmail.com>","Jonathan Ong <me@jongleberry.com>","Roman Shtylman <shtylman+expressjs@gmail.com>","Young Jae Sim <hanul@hanul.me>"],"license":"MIT","repository":"expressjs/express","homepage":"http://expressjs.com/","funding":{"type":"opencollective","url":"https://opencollective.com/express"},"keywords":["express","framework","sinatra","web","http","rest","restful","router","app","api"],"dependencies":{"accepts":"~1.3.8","array-flatten":"1.1.1","body-parser":"1.20.3","content-disposition":"0.5.4","content-type":"~1.0.4","cookie":"0.7.1","cookie-signature":"1.0.6","debug":"2.6.9","depd":"2.0.0","encodeurl":"~2.0.0","escape-html":"~1.0.3","etag":"~1.8.1","finalhandler":"1.3.1","fresh":"0.5.2","http-errors":"2.0.0","merge-descriptors":"1.0.3","methods":"~1.1.2","on-finished":"2.4.1","parseurl":"~1.3.3","path-to-regexp":"0.1.12","proxy-addr":"~2.0.7","qs":"6.13.0","range-parser":"~1.2.1","safe-buffer":"5.2.1","send":"0.19.0","serve-static":"1.16.2","setprototypeof":"1.2.0","statuses":"2.0.1","type-is":"~1.6.18","utils-merge":"1.0.1","vary":"~1.1.2"},"devDependencies":{"after":"0.8.2","connect-redis":"3.4.2","cookie-parser":"1.4.6","cookie-session":"2.0.0","ejs":"3.1.9","eslint":"8.47.0","express-session":"1.17.2","hbs":"4.2.0","marked":"0.7.0","method-override":"3.0.0","mocha":"10.2.0","morgan":"1.10.0","nyc":"15.1.0","pbkdf2-password":"1.2.1","supertest":"6.3.0","vhost":"~3.0.2"},"engines":{"node":">= 0.10.0"},"files":["LICENSE","History.md","Readme.md","index.js","lib/"],"scripts":{"lint":"eslint .","test":"mocha --require test/support/env --reporter spec --bail --check-leaks test/ test/acceptance/","test-ci":"nyc --exclude examples --exclude test --exclude benchmarks --reporter=lcovonly --reporter=text npm test","test-cov":"nyc --exclude examples --exclude test --exclude benchmarks --reporter=html --reporter=text npm test","test-tap":"mocha --require test/support/env --reporter tap --check-leaks test/ test/acceptance/"},"_lastModified":"2025-05-22T02:00:20.456Z"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tachybase/plugin-adapter-red-node",
|
|
3
|
-
"
|
|
3
|
+
"displayName": "Adapter red node",
|
|
4
|
+
"version": "1.0.25",
|
|
5
|
+
"description": "Integrate and manage RedNode workflow automation engine.",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"System management"
|
|
8
|
+
],
|
|
4
9
|
"main": "dist/server/index.js",
|
|
5
10
|
"dependencies": {
|
|
6
11
|
"@node-red/editor-api": "4.0.8",
|
|
@@ -15,10 +20,12 @@
|
|
|
15
20
|
"node-red": "4.0.8"
|
|
16
21
|
},
|
|
17
22
|
"peerDependencies": {
|
|
18
|
-
"@tachybase/
|
|
19
|
-
"@tachybase/
|
|
20
|
-
"@tachybase/test": "1.0.
|
|
23
|
+
"@tachybase/server": "1.0.25",
|
|
24
|
+
"@tachybase/client": "1.0.25",
|
|
25
|
+
"@tachybase/test": "1.0.25"
|
|
21
26
|
},
|
|
27
|
+
"description.zh-CN": "集成和管理 Node-RED 流程自动化引擎",
|
|
28
|
+
"displayName.zh-CN": "Node-RED 管理",
|
|
22
29
|
"scripts": {
|
|
23
30
|
"build": "tachybase-build --no-dts @tachybase/plugin-adapter-red-node"
|
|
24
31
|
}
|