@tachybase/module-backup 0.23.22 → 0.23.35

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.
@@ -1,16 +0,0 @@
1
- (function(){var e={6738:function(e,t,r){var i=r(8151),n=r(9023),o=r(3476).Buffer;function BufferList(e){if(!(this instanceof BufferList))return new BufferList(e);this._bufs=[];this.length=0;if(typeof e=="function"){this._callback=e;var t=function piper(e){if(this._callback){this._callback(e);this._callback=null}}.bind(this);this.on("pipe",(function onPipe(e){e.on("error",t)}));this.on("unpipe",(function onUnpipe(e){e.removeListener("error",t)}))}else{this.append(e)}i.call(this)}n.inherits(BufferList,i);BufferList.prototype._offset=function _offset(e){var t=0,r=0,i;if(e===0)return[0,0];for(;r<this._bufs.length;r++){i=t+this._bufs[r].length;if(e<i||r==this._bufs.length-1)return[r,e-t];t=i}};BufferList.prototype.append=function append(e){var t=0;if(o.isBuffer(e)){this._appendBuffer(e)}else if(Array.isArray(e)){for(;t<e.length;t++)this.append(e[t])}else if(e instanceof BufferList){for(;t<e._bufs.length;t++)this.append(e._bufs[t])}else if(e!=null){if(typeof e=="number")e=e.toString();this._appendBuffer(o.from(e))}return this};BufferList.prototype._appendBuffer=function appendBuffer(e){this._bufs.push(e);this.length+=e.length};BufferList.prototype._write=function _write(e,t,r){this._appendBuffer(e);if(typeof r=="function")r()};BufferList.prototype._read=function _read(e){if(!this.length)return this.push(null);e=Math.min(e,this.length);this.push(this.slice(0,e));this.consume(e)};BufferList.prototype.end=function end(e){i.prototype.end.call(this,e);if(this._callback){this._callback(null,this.slice());this._callback=null}};BufferList.prototype.get=function get(e){return this.slice(e,e+1)[0]};BufferList.prototype.slice=function slice(e,t){if(typeof e=="number"&&e<0)e+=this.length;if(typeof t=="number"&&t<0)t+=this.length;return this.copy(null,0,e,t)};BufferList.prototype.copy=function copy(e,t,r,i){if(typeof r!="number"||r<0)r=0;if(typeof i!="number"||i>this.length)i=this.length;if(r>=this.length)return e||o.alloc(0);if(i<=0)return e||o.alloc(0);var copy=!!e,n=this._offset(r),a=i-r,s=a,u=copy&&t||0,l=n[1],c,d;if(r===0&&i==this.length){if(!copy){return this._bufs.length===1?this._bufs[0]:o.concat(this._bufs,this.length)}for(d=0;d<this._bufs.length;d++){this._bufs[d].copy(e,u);u+=this._bufs[d].length}return e}if(s<=this._bufs[n[0]].length-l){return copy?this._bufs[n[0]].copy(e,t,l,l+s):this._bufs[n[0]].slice(l,l+s)}if(!copy)e=o.allocUnsafe(a);for(d=n[0];d<this._bufs.length;d++){c=this._bufs[d].length-l;if(s>c){this._bufs[d].copy(e,u,l);u+=c}else{this._bufs[d].copy(e,u,l,l+s);u+=c;break}s-=c;if(l)l=0}if(e.length>u)return e.slice(0,u);return e};BufferList.prototype.shallowSlice=function shallowSlice(e,t){e=e||0;t=t||this.length;if(e<0)e+=this.length;if(t<0)t+=this.length;var r=this._offset(e),i=this._offset(t),n=this._bufs.slice(r[0],i[0]+1);if(i[1]==0)n.pop();else n[n.length-1]=n[n.length-1].slice(0,i[1]);if(r[1]!=0)n[0]=n[0].slice(r[1]);return new BufferList(n)};BufferList.prototype.toString=function toString(e,t,r){return this.slice(t,r).toString(e)};BufferList.prototype.consume=function consume(e){e=Math.trunc(e);if(Number.isNaN(e)||e<=0)return this;while(this._bufs.length){if(e>=this._bufs[0].length){e-=this._bufs[0].length;this.length-=this._bufs[0].length;this._bufs.shift()}else{this._bufs[0]=this._bufs[0].slice(e);this.length-=e;break}}return this};BufferList.prototype.duplicate=function duplicate(){var e=0,t=new BufferList;for(;e<this._bufs.length;e++)t.append(this._bufs[e]);return t};BufferList.prototype.destroy=function destroy(){this._bufs.length=0;this.length=0;this.push(null)};(function(){var e={readDoubleBE:8,readDoubleLE:8,readFloatBE:4,readFloatLE:4,readInt32BE:4,readInt32LE:4,readUInt32BE:4,readUInt32LE:4,readInt16BE:2,readInt16LE:2,readUInt16BE:2,readUInt16LE:2,readInt8:1,readUInt8:1};for(var t in e){(function(t){BufferList.prototype[t]=function(r){return this.slice(r,r+e[t])[t](0)}})(t)}})();e.exports=BufferList},8684:function(e){function allocUnsafe(e){if(typeof e!=="number"){throw new TypeError('"size" argument must be a number')}if(e<0){throw new RangeError('"size" argument must not be negative')}if(Buffer.allocUnsafe){return Buffer.allocUnsafe(e)}else{return new Buffer(e)}}e.exports=allocUnsafe},9623:function(e,t,r){var i=r(5119);var n=r(8684);e.exports=function alloc(e,t,r){if(typeof e!=="number"){throw new TypeError('"size" argument must be a number')}if(e<0){throw new RangeError('"size" argument must not be negative')}if(Buffer.alloc){return Buffer.alloc(e,t,r)}var o=n(e);if(e===0){return o}if(t===undefined){return i(o,0)}if(typeof r!=="string"){r=undefined}return i(o,t,r)}},7064:function(e,t,r){var i=r(181).Buffer;var n=[0,1996959894,3993919788,2567524794,124634137,1886057615,3915621685,2657392035,249268274,2044508324,3772115230,2547177864,162941995,2125561021,3887607047,2428444049,498536548,1789927666,4089016648,2227061214,450548861,1843258603,4107580753,2211677639,325883990,1684777152,4251122042,2321926636,335633487,1661365465,4195302755,2366115317,997073096,1281953886,3579855332,2724688242,1006888145,1258607687,3524101629,2768942443,901097722,1119000684,3686517206,2898065728,853044451,1172266101,3705015759,2882616665,651767980,1373503546,3369554304,3218104598,565507253,1454621731,3485111705,3099436303,671266974,1594198024,3322730930,2970347812,795835527,1483230225,3244367275,3060149565,1994146192,31158534,2563907772,4023717930,1907459465,112637215,2680153253,3904427059,2013776290,251722036,2517215374,3775830040,2137656763,141376813,2439277719,3865271297,1802195444,476864866,2238001368,4066508878,1812370925,453092731,2181625025,4111451223,1706088902,314042704,2344532202,4240017532,1658658271,366619977,2362670323,4224994405,1303535960,984961486,2747007092,3569037538,1256170817,1037604311,2765210733,3554079995,1131014506,879679996,2909243462,3663771856,1141124467,855842277,2852801631,3708648649,1342533948,654459306,3188396048,3373015174,1466479909,544179635,3110523913,3462522015,1591671054,702138776,2966460450,3352799412,1504918807,783551873,3082640443,3233442989,3988292384,2596254646,62317068,1957810842,3939845945,2647816111,81470997,1943803523,3814918930,2489596804,225274430,2053790376,3826175755,2466906013,167816743,2097651377,4027552580,2265490386,503444072,1762050814,4150417245,2154129355,426522225,1852507879,4275313526,2312317920,282753626,1742555852,4189708143,2394877945,397917763,1622183637,3604390888,2714866558,953729732,1340076626,3518719985,2797360999,1068828381,1219638859,3624741850,2936675148,906185462,1090812512,3747672003,2825379669,829329135,1181335161,3412177804,3160834842,628085408,1382605366,3423369109,3138078467,570562233,1426400815,3317316542,2998733608,733239954,1555261956,3268935591,3050360625,752459403,1541320221,2607071920,3965973030,1969922972,40735498,2617837225,3943577151,1913087877,83908371,2512341634,3803740692,2075208622,213261112,2463272603,3855990285,2094854071,198958881,2262029012,4057260610,1759359992,534414190,2176718541,4139329115,1873836001,414664567,2282248934,4279200368,1711684554,285281116,2405801727,4167216745,1634467795,376229701,2685067896,3608007406,1308918612,956543938,2808555105,3495958263,1231636301,1047427035,2932959818,3654703836,1088359270,936918e3,2847714899,3736837829,1202900863,817233897,3183342108,3401237130,1404277552,615818150,3134207493,3453421203,1423857449,601450431,3009837614,3294710456,1567103746,711928724,3020668471,3272380065,1510334235,755167117];if(typeof Int32Array!=="undefined"){n=new Int32Array(n)}function ensureBuffer(e){if(i.isBuffer(e)){return e}var t=typeof i.alloc==="function"&&typeof i.from==="function";if(typeof e==="number"){return t?i.alloc(e):new i(e)}else if(typeof e==="string"){return t?i.from(e):new i(e)}else{throw new Error("input must be buffer, number, or string, received "+typeof e)}}function bufferizeInt(e){var t=ensureBuffer(4);t.writeInt32BE(e,0);return t}function _crc32(e,t){e=ensureBuffer(e);if(i.isBuffer(t)){t=t.readUInt32BE(0)}var r=~~t^-1;for(var o=0;o<e.length;o++){r=n[(r^e[o])&255]^r>>>8}return r^-1}function crc32(){return bufferizeInt(_crc32.apply(null,arguments))}crc32.signed=function(){return _crc32.apply(null,arguments)};crc32.unsigned=function(){return _crc32.apply(null,arguments)>>>0};e.exports=crc32},5119:function(e){var t=function(){try{if(!Buffer.isEncoding("latin1")){return false}var e=Buffer.alloc?Buffer.alloc(4):new Buffer(4);e.fill("ab","ucs2");return e.toString("hex")==="61006200"}catch(e){return false}}();function isSingleByte(e){return e.length===1&&e.charCodeAt(0)<256}function fillWithNumber(e,t,r,i){if(r<0||i>e.length){throw new RangeError("Out of range index")}r=r>>>0;i=i===undefined?e.length:i>>>0;if(i>r){e.fill(t,r,i)}return e}function fillWithBuffer(e,t,r,i){if(r<0||i>e.length){throw new RangeError("Out of range index")}if(i<=r){return e}r=r>>>0;i=i===undefined?e.length:i>>>0;var n=r;var o=t.length;while(n<=i-o){t.copy(e,n);n+=o}if(n!==i){t.copy(e,n,0,i-n)}return e}function fill(e,r,i,n,o){if(t){return e.fill(r,i,n,o)}if(typeof r==="number"){return fillWithNumber(e,r,i,n)}if(typeof r==="string"){if(typeof i==="string"){o=i;i=0;n=e.length}else if(typeof n==="string"){o=n;n=e.length}if(o!==undefined&&typeof o!=="string"){throw new TypeError("encoding must be a string")}if(o==="latin1"){o="binary"}if(typeof o==="string"&&!Buffer.isEncoding(o)){throw new TypeError("Unknown encoding: "+o)}if(r===""){return fillWithNumber(e,0,i,n)}if(isSingleByte(r)){return fillWithNumber(e,r.charCodeAt(0),i,n)}r=new Buffer(r,o)}if(Buffer.isBuffer(r)){return fillWithBuffer(e,r,i,n)}return fillWithNumber(e,0,i,n)}e.exports=fill},9810:function(e,t,r){function isArray(e){if(Array.isArray){return Array.isArray(e)}return objectToString(e)==="[object Array]"}t.isArray=isArray;function isBoolean(e){return typeof e==="boolean"}t.isBoolean=isBoolean;function isNull(e){return e===null}t.isNull=isNull;function isNullOrUndefined(e){return e==null}t.isNullOrUndefined=isNullOrUndefined;function isNumber(e){return typeof e==="number"}t.isNumber=isNumber;function isString(e){return typeof e==="string"}t.isString=isString;function isSymbol(e){return typeof e==="symbol"}t.isSymbol=isSymbol;function isUndefined(e){return e===void 0}t.isUndefined=isUndefined;function isRegExp(e){return objectToString(e)==="[object RegExp]"}t.isRegExp=isRegExp;function isObject(e){return typeof e==="object"&&e!==null}t.isObject=isObject;function isDate(e){return objectToString(e)==="[object Date]"}t.isDate=isDate;function isError(e){return objectToString(e)==="[object Error]"||e instanceof Error}t.isError=isError;function isFunction(e){return typeof e==="function"}t.isFunction=isFunction;function isPrimitive(e){return e===null||typeof e==="boolean"||typeof e==="number"||typeof e==="string"||typeof e==="symbol"||typeof e==="undefined"}t.isPrimitive=isPrimitive;t.isBuffer=r(181).Buffer.isBuffer;function objectToString(e){return Object.prototype.toString.call(e)}},3298:function(e,t,r){"use strict";const i=r(7539);const n=r(6156);const o=r(3189);e.exports=()=>e=>{if(!Buffer.isBuffer(e)&&!n(e)){return Promise.reject(new TypeError(`Expected a Buffer or Stream, got ${typeof e}`))}if(Buffer.isBuffer(e)&&(!i(e)||i(e).ext!=="tar")){return Promise.resolve([])}const t=o.extract();const r=[];t.on("entry",((e,t,i)=>{const n=[];t.on("data",(e=>n.push(e)));t.on("end",(()=>{const t={data:Buffer.concat(n),mode:e.mode,mtime:e.mtime,path:e.name,type:e.type};if(e.type==="symlink"||e.type==="link"){t.linkname=e.linkname}r.push(t);i()}))}));const a=new Promise(((i,n)=>{if(!Buffer.isBuffer(e)){e.on("error",n)}t.on("finish",(()=>i(r)));t.on("error",n)}));t.then=a.then.bind(a);t.catch=a.catch.bind(a);if(Buffer.isBuffer(e)){t.end(e)}else{e.pipe(t)}return t}},7704:function(e,t,r){"use strict";const i=r(3298);const n=r(3772);const o=r(6156);const a=r(3329);const s=r(7088);e.exports=()=>e=>{if(!Buffer.isBuffer(e)&&!o(e)){return Promise.reject(new TypeError(`Expected a Buffer or Stream, got ${typeof e}`))}if(Buffer.isBuffer(e)&&(!n(e)||n(e).ext!=="bz2")){return Promise.resolve([])}if(Buffer.isBuffer(e)){return i()(a.decode(e))}return i()(e.pipe(s()))}},9482:function(e,t,r){"use strict";const i=r(3106);const n=r(3298);const o=r(7539);const a=r(6156);e.exports=()=>e=>{if(!Buffer.isBuffer(e)&&!a(e)){return Promise.reject(new TypeError(`Expected a Buffer or Stream, got ${typeof e}`))}if(Buffer.isBuffer(e)&&(!o(e)||o(e).ext!=="gz")){return Promise.resolve([])}const t=i.createGunzip();const r=n()(t);if(Buffer.isBuffer(e)){t.end(e)}else{e.pipe(t)}return r}},5553:function(e,t,r){"use strict";const i=r(634);const n=r(6094);const o=r(9389);const a=r(2067);const getType=(e,t)=>{const r=61440;const i=16384;const n=40960;const o=e.versionMadeBy>>8;if((t&r)===n){return"symlink"}if((t&r)===i||o===0&&e.externalFileAttributes===16){return"directory"}return"file"};const extractEntry=(e,t)=>{const r={mode:e.externalFileAttributes>>16&65535,mtime:e.getLastModDate(),path:e.fileName};r.type=getType(e,r.mode);if(r.mode===0&&r.type==="directory"){r.mode=493}if(r.mode===0){r.mode=420}return o(t.openReadStream.bind(t))(e).then(n.buffer).then((e=>{r.data=e;if(r.type==="symlink"){r.linkname=e.toString()}return r})).catch((e=>{t.close();throw e}))};const extractFile=e=>new Promise(((t,r)=>{const i=[];e.readEntry();e.on("entry",(t=>{extractEntry(t,e).catch(r).then((t=>{i.push(t);e.readEntry()}))}));e.on("error",r);e.on("end",(()=>t(i)))}));e.exports=()=>e=>{if(!Buffer.isBuffer(e)){return Promise.reject(new TypeError(`Expected a Buffer, got ${typeof e}`))}if(!i(e)||i(e).ext!=="zip"){return Promise.resolve([])}return o(a.fromBuffer)(e,{lazyEntries:true}).then(extractFile)}},9915:function(e,t,r){"use strict";const i=r(6928);const n=r(7551);const o=r(3298);const a=r(7704);const s=r(9482);const u=r(5553);const l=r(1528);const c=r(9389);const d=r(1091);const p=c(n);const runPlugins=(e,t)=>{if(t.plugins.length===0){return Promise.resolve([])}return Promise.all(t.plugins.map((r=>r(e,t)))).then((e=>e.reduce(((e,t)=>e.concat(t)))))};const safeMakeDir=(e,t)=>p.realpath(e).catch((r=>{const n=i.dirname(e);return safeMakeDir(n,t)})).then((r=>{if(r.indexOf(t)!==0){throw new Error("Refusing to create a directory outside the output path.")}return l(e).then(p.realpath)}));const preventWritingThroughSymlink=(e,t)=>p.readlink(e).catch((e=>null)).then((e=>{if(e){throw new Error("Refusing to write into a symlink")}return t}));const extractFile=(e,t,r)=>runPlugins(e,r).then((e=>{if(r.strip>0){e=e.map((e=>{e.path=d(e.path,r.strip);return e})).filter((e=>e.path!=="."))}if(typeof r.filter==="function"){e=e.filter(r.filter)}if(typeof r.map==="function"){e=e.map(r.map)}if(!t){return e}return Promise.all(e.map((e=>{const r=i.join(t,e.path);const n=e.mode&~process.umask();const o=new Date;if(e.type==="directory"){return l(t).then((e=>p.realpath(e))).then((e=>safeMakeDir(r,e))).then((()=>p.utimes(r,o,e.mtime))).then((()=>e))}return l(t).then((e=>p.realpath(e))).then((e=>safeMakeDir(i.dirname(r),e).then((()=>e)))).then((t=>{if(e.type==="file"){return preventWritingThroughSymlink(r,t)}return t})).then((e=>p.realpath(i.dirname(r)).then((t=>{if(t.indexOf(e)!==0){throw new Error("Refusing to write outside output directory: "+t)}})))).then((()=>{if(e.type==="link"){return p.link(e.linkname,r)}if(e.type==="symlink"&&process.platform==="win32"){return p.link(e.linkname,r)}if(e.type==="symlink"){return p.symlink(e.linkname,r)}return p.writeFile(r,e.data,{mode:n})})).then((()=>e.type==="file"&&p.utimes(r,o,e.mtime))).then((()=>e))})))}));e.exports=(e,t,r)=>{if(typeof e!=="string"&&!Buffer.isBuffer(e)){return Promise.reject(new TypeError("Input file required"))}if(typeof t==="object"){r=t;t=null}r=Object.assign({plugins:[o(),a(),s(),u()]},r);const i=typeof e==="string"?p.readFile(e):Promise.resolve(e);return i.then((e=>extractFile(e,t,r)))}},5859:function(e,t,r){var i=r(8068);var noop=function(){};var isRequest=function(e){return e.setHeader&&typeof e.abort==="function"};var isChildProcess=function(e){return e.stdio&&Array.isArray(e.stdio)&&e.stdio.length===3};var eos=function(e,t,r){if(typeof t==="function")return eos(e,null,t);if(!t)t={};r=i(r||noop);var n=e._writableState;var o=e._readableState;var a=t.readable||t.readable!==false&&e.readable;var s=t.writable||t.writable!==false&&e.writable;var u=false;var onlegacyfinish=function(){if(!e.writable)onfinish()};var onfinish=function(){s=false;if(!a)r.call(e)};var onend=function(){a=false;if(!s)r.call(e)};var onexit=function(t){r.call(e,t?new Error("exited with error code: "+t):null)};var onerror=function(t){r.call(e,t)};var onclose=function(){process.nextTick(onclosenexttick)};var onclosenexttick=function(){if(u)return;if(a&&!(o&&(o.ended&&!o.destroyed)))return r.call(e,new Error("premature close"));if(s&&!(n&&(n.ended&&!n.destroyed)))return r.call(e,new Error("premature close"))};var onrequest=function(){e.req.on("finish",onfinish)};if(isRequest(e)){e.on("complete",onfinish);e.on("abort",onclose);if(e.req)onrequest();else e.on("request",onrequest)}else if(s&&!n){e.on("end",onlegacyfinish);e.on("close",onlegacyfinish)}if(isChildProcess(e))e.on("exit",onexit);e.on("end",onend);e.on("finish",onfinish);if(t.error!==false)e.on("error",onerror);e.on("close",onclose);return function(){u=true;e.removeListener("complete",onfinish);e.removeListener("abort",onclose);e.removeListener("request",onrequest);if(e.req)e.req.removeListener("finish",onfinish);e.removeListener("end",onlegacyfinish);e.removeListener("close",onlegacyfinish);e.removeListener("finish",onfinish);e.removeListener("exit",onexit);e.removeListener("end",onend);e.removeListener("error",onerror);e.removeListener("close",onclose)}};e.exports=eos},6668:function(e,t,r){var i=r(9896);var n=r(9023);var o=r(2203);var a=o.Readable;var s=o.Writable;var u=o.PassThrough;var l=r(3295);var c=r(4434).EventEmitter;t.createFromBuffer=createFromBuffer;t.createFromFd=createFromFd;t.BufferSlicer=BufferSlicer;t.FdSlicer=FdSlicer;n.inherits(FdSlicer,c);function FdSlicer(e,t){t=t||{};c.call(this);this.fd=e;this.pend=new l;this.pend.max=1;this.refCount=0;this.autoClose=!!t.autoClose}FdSlicer.prototype.read=function(e,t,r,n,o){var a=this;a.pend.go((function(s){i.read(a.fd,e,t,r,n,(function(e,t,r){s();o(e,t,r)}))}))};FdSlicer.prototype.write=function(e,t,r,n,o){var a=this;a.pend.go((function(s){i.write(a.fd,e,t,r,n,(function(e,t,r){s();o(e,t,r)}))}))};FdSlicer.prototype.createReadStream=function(e){return new ReadStream(this,e)};FdSlicer.prototype.createWriteStream=function(e){return new WriteStream(this,e)};FdSlicer.prototype.ref=function(){this.refCount+=1};FdSlicer.prototype.unref=function(){var e=this;e.refCount-=1;if(e.refCount>0)return;if(e.refCount<0)throw new Error("invalid unref");if(e.autoClose){i.close(e.fd,onCloseDone)}function onCloseDone(t){if(t){e.emit("error",t)}else{e.emit("close")}}};n.inherits(ReadStream,a);function ReadStream(e,t){t=t||{};a.call(this,t);this.context=e;this.context.ref();this.start=t.start||0;this.endOffset=t.end;this.pos=this.start;this.destroyed=false}ReadStream.prototype._read=function(e){var t=this;if(t.destroyed)return;var r=Math.min(t._readableState.highWaterMark,e);if(t.endOffset!=null){r=Math.min(r,t.endOffset-t.pos)}if(r<=0){t.destroyed=true;t.push(null);t.context.unref();return}t.context.pend.go((function(e){if(t.destroyed)return e();var n=new Buffer(r);i.read(t.context.fd,n,0,r,t.pos,(function(r,i){if(r){t.destroy(r)}else if(i===0){t.destroyed=true;t.push(null);t.context.unref()}else{t.pos+=i;t.push(n.slice(0,i))}e()}))}))};ReadStream.prototype.destroy=function(e){if(this.destroyed)return;e=e||new Error("stream destroyed");this.destroyed=true;this.emit("error",e);this.context.unref()};n.inherits(WriteStream,s);function WriteStream(e,t){t=t||{};s.call(this,t);this.context=e;this.context.ref();this.start=t.start||0;this.endOffset=t.end==null?Infinity:+t.end;this.bytesWritten=0;this.pos=this.start;this.destroyed=false;this.on("finish",this.destroy.bind(this))}WriteStream.prototype._write=function(e,t,r){var n=this;if(n.destroyed)return;if(n.pos+e.length>n.endOffset){var o=new Error("maximum file length exceeded");o.code="ETOOBIG";n.destroy();r(o);return}n.context.pend.go((function(t){if(n.destroyed)return t();i.write(n.context.fd,e,0,e.length,n.pos,(function(e,i){if(e){n.destroy();t();r(e)}else{n.bytesWritten+=i;n.pos+=i;n.emit("progress");t();r()}}))}))};WriteStream.prototype.destroy=function(){if(this.destroyed)return;this.destroyed=true;this.context.unref()};n.inherits(BufferSlicer,c);function BufferSlicer(e,t){c.call(this);t=t||{};this.refCount=0;this.buffer=e;this.maxChunkSize=t.maxChunkSize||Number.MAX_SAFE_INTEGER}BufferSlicer.prototype.read=function(e,t,r,i,n){var o=i+r;var a=o-this.buffer.length;var s=a>0?a:r;this.buffer.copy(e,t,i,o);setImmediate((function(){n(null,s)}))};BufferSlicer.prototype.write=function(e,t,r,i,n){e.copy(this.buffer,i,t,t+r);setImmediate((function(){n(null,r,e)}))};BufferSlicer.prototype.createReadStream=function(e){e=e||{};var t=new u(e);t.destroyed=false;t.start=e.start||0;t.endOffset=e.end;t.pos=t.endOffset||this.buffer.length;var r=this.buffer.slice(t.start,t.pos);var i=0;while(true){var n=i+this.maxChunkSize;if(n>=r.length){if(i<r.length){t.write(r.slice(i,r.length))}break}t.write(r.slice(i,n));i=n}t.end();t.destroy=function(){t.destroyed=true};return t};BufferSlicer.prototype.createWriteStream=function(e){var t=this;e=e||{};var r=new s(e);r.start=e.start||0;r.endOffset=e.end==null?this.buffer.length:+e.end;r.bytesWritten=0;r.pos=r.start;r.destroyed=false;r._write=function(e,i,n){if(r.destroyed)return;var o=r.pos+e.length;if(o>r.endOffset){var a=new Error("maximum file length exceeded");a.code="ETOOBIG";r.destroyed=true;n(a);return}e.copy(t.buffer,r.pos,0,e.length);r.bytesWritten+=e.length;r.pos=o;r.emit("progress");n()};r.destroy=function(){r.destroyed=true};return r};BufferSlicer.prototype.ref=function(){this.refCount+=1};BufferSlicer.prototype.unref=function(){this.refCount-=1;if(this.refCount<0){throw new Error("invalid unref")}};function createFromBuffer(e,t){return new BufferSlicer(e,t)}function createFromFd(e,t){return new FdSlicer(e,t)}},634:function(e){"use strict";e.exports=function(e){if(!(e&&e.length>1)){return null}if(e[0]===255&&e[1]===216&&e[2]===255){return{ext:"jpg",mime:"image/jpeg"}}if(e[0]===137&&e[1]===80&&e[2]===78&&e[3]===71){return{ext:"png",mime:"image/png"}}if(e[0]===71&&e[1]===73&&e[2]===70){return{ext:"gif",mime:"image/gif"}}if(e[8]===87&&e[9]===69&&e[10]===66&&e[11]===80){return{ext:"webp",mime:"image/webp"}}if(e[0]===70&&e[1]===76&&e[2]===73&&e[3]===70){return{ext:"flif",mime:"image/flif"}}if((e[0]===73&&e[1]===73&&e[2]===42&&e[3]===0||e[0]===77&&e[1]===77&&e[2]===0&&e[3]===42)&&e[8]===67&&e[9]===82){return{ext:"cr2",mime:"image/x-canon-cr2"}}if(e[0]===73&&e[1]===73&&e[2]===42&&e[3]===0||e[0]===77&&e[1]===77&&e[2]===0&&e[3]===42){return{ext:"tif",mime:"image/tiff"}}if(e[0]===66&&e[1]===77){return{ext:"bmp",mime:"image/bmp"}}if(e[0]===73&&e[1]===73&&e[2]===188){return{ext:"jxr",mime:"image/vnd.ms-photo"}}if(e[0]===56&&e[1]===66&&e[2]===80&&e[3]===83){return{ext:"psd",mime:"image/vnd.adobe.photoshop"}}if(e[0]===80&&e[1]===75&&e[2]===3&&e[3]===4&&e[30]===109&&e[31]===105&&e[32]===109&&e[33]===101&&e[34]===116&&e[35]===121&&e[36]===112&&e[37]===101&&e[38]===97&&e[39]===112&&e[40]===112&&e[41]===108&&e[42]===105&&e[43]===99&&e[44]===97&&e[45]===116&&e[46]===105&&e[47]===111&&e[48]===110&&e[49]===47&&e[50]===101&&e[51]===112&&e[52]===117&&e[53]===98&&e[54]===43&&e[55]===122&&e[56]===105&&e[57]===112){return{ext:"epub",mime:"application/epub+zip"}}if(e[0]===80&&e[1]===75&&e[2]===3&&e[3]===4&&e[30]===77&&e[31]===69&&e[32]===84&&e[33]===65&&e[34]===45&&e[35]===73&&e[36]===78&&e[37]===70&&e[38]===47&&e[39]===109&&e[40]===111&&e[41]===122&&e[42]===105&&e[43]===108&&e[44]===108&&e[45]===97&&e[46]===46&&e[47]===114&&e[48]===115&&e[49]===97){return{ext:"xpi",mime:"application/x-xpinstall"}}if(e[0]===80&&e[1]===75&&(e[2]===3||e[2]===5||e[2]===7)&&(e[3]===4||e[3]===6||e[3]===8)){return{ext:"zip",mime:"application/zip"}}if(e[257]===117&&e[258]===115&&e[259]===116&&e[260]===97&&e[261]===114){return{ext:"tar",mime:"application/x-tar"}}if(e[0]===82&&e[1]===97&&e[2]===114&&e[3]===33&&e[4]===26&&e[5]===7&&(e[6]===0||e[6]===1)){return{ext:"rar",mime:"application/x-rar-compressed"}}if(e[0]===31&&e[1]===139&&e[2]===8){return{ext:"gz",mime:"application/gzip"}}if(e[0]===66&&e[1]===90&&e[2]===104){return{ext:"bz2",mime:"application/x-bzip2"}}if(e[0]===55&&e[1]===122&&e[2]===188&&e[3]===175&&e[4]===39&&e[5]===28){return{ext:"7z",mime:"application/x-7z-compressed"}}if(e[0]===120&&e[1]===1){return{ext:"dmg",mime:"application/x-apple-diskimage"}}if(e[0]===0&&e[1]===0&&e[2]===0&&(e[3]===24||e[3]===32)&&e[4]===102&&e[5]===116&&e[6]===121&&e[7]===112||e[0]===51&&e[1]===103&&e[2]===112&&e[3]===53||e[0]===0&&e[1]===0&&e[2]===0&&e[3]===28&&e[4]===102&&e[5]===116&&e[6]===121&&e[7]===112&&e[8]===109&&e[9]===112&&e[10]===52&&e[11]===50&&e[16]===109&&e[17]===112&&e[18]===52&&e[19]===49&&e[20]===109&&e[21]===112&&e[22]===52&&e[23]===50&&e[24]===105&&e[25]===115&&e[26]===111&&e[27]===109||e[0]===0&&e[1]===0&&e[2]===0&&e[3]===28&&e[4]===102&&e[5]===116&&e[6]===121&&e[7]===112&&e[8]===105&&e[9]===115&&e[10]===111&&e[11]===109||e[0]===0&&e[1]===0&&e[2]===0&&e[3]===28&&e[4]===102&&e[5]===116&&e[6]===121&&e[7]===112&&e[8]===109&&e[9]===112&&e[10]===52&&e[11]===50&&e[12]===0&&e[13]===0&&e[14]===0&&e[15]===0){return{ext:"mp4",mime:"video/mp4"}}if(e[0]===0&&e[1]===0&&e[2]===0&&e[3]===28&&e[4]===102&&e[5]===116&&e[6]===121&&e[7]===112&&e[8]===77&&e[9]===52&&e[10]===86){return{ext:"m4v",mime:"video/x-m4v"}}if(e[0]===77&&e[1]===84&&e[2]===104&&e[3]===100){return{ext:"mid",mime:"audio/midi"}}if(e[31]===109&&e[32]===97&&e[33]===116&&e[34]===114&&e[35]===111&&e[36]===115&&e[37]===107&&e[38]===97){return{ext:"mkv",mime:"video/x-matroska"}}if(e[0]===26&&e[1]===69&&e[2]===223&&e[3]===163){return{ext:"webm",mime:"video/webm"}}if(e[0]===0&&e[1]===0&&e[2]===0&&e[3]===20&&e[4]===102&&e[5]===116&&e[6]===121&&e[7]===112){return{ext:"mov",mime:"video/quicktime"}}if(e[0]===82&&e[1]===73&&e[2]===70&&e[3]===70&&e[8]===65&&e[9]===86&&e[10]===73){return{ext:"avi",mime:"video/x-msvideo"}}if(e[0]===48&&e[1]===38&&e[2]===178&&e[3]===117&&e[4]===142&&e[5]===102&&e[6]===207&&e[7]===17&&e[8]===166&&e[9]===217){return{ext:"wmv",mime:"video/x-ms-wmv"}}if(e[0]===0&&e[1]===0&&e[2]===1&&e[3].toString(16)[0]==="b"){return{ext:"mpg",mime:"video/mpeg"}}if(e[0]===73&&e[1]===68&&e[2]===51||e[0]===255&&e[1]===251){return{ext:"mp3",mime:"audio/mpeg"}}if(e[4]===102&&e[5]===116&&e[6]===121&&e[7]===112&&e[8]===77&&e[9]===52&&e[10]===65||e[0]===77&&e[1]===52&&e[2]===65&&e[3]===32){return{ext:"m4a",mime:"audio/m4a"}}if(e[28]===79&&e[29]===112&&e[30]===117&&e[31]===115&&e[32]===72&&e[33]===101&&e[34]===97&&e[35]===100){return{ext:"opus",mime:"audio/opus"}}if(e[0]===79&&e[1]===103&&e[2]===103&&e[3]===83){return{ext:"ogg",mime:"audio/ogg"}}if(e[0]===102&&e[1]===76&&e[2]===97&&e[3]===67){return{ext:"flac",mime:"audio/x-flac"}}if(e[0]===82&&e[1]===73&&e[2]===70&&e[3]===70&&e[8]===87&&e[9]===65&&e[10]===86&&e[11]===69){return{ext:"wav",mime:"audio/x-wav"}}if(e[0]===35&&e[1]===33&&e[2]===65&&e[3]===77&&e[4]===82&&e[5]===10){return{ext:"amr",mime:"audio/amr"}}if(e[0]===37&&e[1]===80&&e[2]===68&&e[3]===70){return{ext:"pdf",mime:"application/pdf"}}if(e[0]===77&&e[1]===90){return{ext:"exe",mime:"application/x-msdownload"}}if((e[0]===67||e[0]===70)&&e[1]===87&&e[2]===83){return{ext:"swf",mime:"application/x-shockwave-flash"}}if(e[0]===123&&e[1]===92&&e[2]===114&&e[3]===116&&e[4]===102){return{ext:"rtf",mime:"application/rtf"}}if(e[0]===119&&e[1]===79&&e[2]===70&&e[3]===70&&(e[4]===0&&e[5]===1&&e[6]===0&&e[7]===0||e[4]===79&&e[5]===84&&e[6]===84&&e[7]===79)){return{ext:"woff",mime:"application/font-woff"}}if(e[0]===119&&e[1]===79&&e[2]===70&&e[3]===50&&(e[4]===0&&e[5]===1&&e[6]===0&&e[7]===0||e[4]===79&&e[5]===84&&e[6]===84&&e[7]===79)){return{ext:"woff2",mime:"application/font-woff"}}if(e[34]===76&&e[35]===80&&(e[8]===0&&e[9]===0&&e[10]===1||e[8]===1&&e[9]===0&&e[10]===2||e[8]===2&&e[9]===0&&e[10]===2)){return{ext:"eot",mime:"application/octet-stream"}}if(e[0]===0&&e[1]===1&&e[2]===0&&e[3]===0&&e[4]===0){return{ext:"ttf",mime:"application/font-sfnt"}}if(e[0]===79&&e[1]===84&&e[2]===84&&e[3]===79&&e[4]===0){return{ext:"otf",mime:"application/font-sfnt"}}if(e[0]===0&&e[1]===0&&e[2]===1&&e[3]===0){return{ext:"ico",mime:"image/x-icon"}}if(e[0]===70&&e[1]===76&&e[2]===86&&e[3]===1){return{ext:"flv",mime:"video/x-flv"}}if(e[0]===37&&e[1]===33){return{ext:"ps",mime:"application/postscript"}}if(e[0]===253&&e[1]===55&&e[2]===122&&e[3]===88&&e[4]===90&&e[5]===0){return{ext:"xz",mime:"application/x-xz"}}if(e[0]===83&&e[1]===81&&e[2]===76&&e[3]===105){return{ext:"sqlite",mime:"application/x-sqlite3"}}if(e[0]===78&&e[1]===69&&e[2]===83&&e[3]===26){return{ext:"nes",mime:"application/x-nintendo-nes-rom"}}if(e[0]===67&&e[1]===114&&e[2]===50&&e[3]===52){return{ext:"crx",mime:"application/x-google-chrome-extension"}}if(e[0]===77&&e[1]===83&&e[2]===67&&e[3]===70||e[0]===73&&e[1]===83&&e[2]===99&&e[3]===40){return{ext:"cab",mime:"application/vnd.ms-cab-compressed"}}if(e[0]===33&&e[1]===60&&e[2]===97&&e[3]===114&&e[4]===99&&e[5]===104&&e[6]===62&&e[7]===10&&e[8]===100&&e[9]===101&&e[10]===98&&e[11]===105&&e[12]===97&&e[13]===110&&e[14]===45&&e[15]===98&&e[16]===105&&e[17]===110&&e[18]===97&&e[19]===114&&e[20]===121){return{ext:"deb",mime:"application/x-deb"}}if(e[0]===33&&e[1]===60&&e[2]===97&&e[3]===114&&e[4]===99&&e[5]===104&&e[6]===62){return{ext:"ar",mime:"application/x-unix-archive"}}if(e[0]===237&&e[1]===171&&e[2]===238&&e[3]===219){return{ext:"rpm",mime:"application/x-rpm"}}if(e[0]===31&&e[1]===160||e[0]===31&&e[1]===157){return{ext:"Z",mime:"application/x-compress"}}if(e[0]===76&&e[1]===90&&e[2]===73&&e[3]===80){return{ext:"lz",mime:"application/x-lzip"}}if(e[0]===208&&e[1]===207&&e[2]===17&&e[3]===224&&e[4]===161&&e[5]===177&&e[6]===26&&e[7]===225){return{ext:"msi",mime:"application/x-msi"}}return null}},7539:function(e){"use strict";e.exports=e=>{const t=new Uint8Array(e);if(!(t&&t.length>1)){return null}const check=(e,r)=>{r=Object.assign({offset:0},r);for(let i=0;i<e.length;i++){if(e[i]!==t[i+r.offset]){return false}}return true};if(check([255,216,255])){return{ext:"jpg",mime:"image/jpeg"}}if(check([137,80,78,71,13,10,26,10])){return{ext:"png",mime:"image/png"}}if(check([71,73,70])){return{ext:"gif",mime:"image/gif"}}if(check([87,69,66,80],{offset:8})){return{ext:"webp",mime:"image/webp"}}if(check([70,76,73,70])){return{ext:"flif",mime:"image/flif"}}if((check([73,73,42,0])||check([77,77,0,42]))&&check([67,82],{offset:8})){return{ext:"cr2",mime:"image/x-canon-cr2"}}if(check([73,73,42,0])||check([77,77,0,42])){return{ext:"tif",mime:"image/tiff"}}if(check([66,77])){return{ext:"bmp",mime:"image/bmp"}}if(check([73,73,188])){return{ext:"jxr",mime:"image/vnd.ms-photo"}}if(check([56,66,80,83])){return{ext:"psd",mime:"image/vnd.adobe.photoshop"}}if(check([80,75,3,4])&&check([109,105,109,101,116,121,112,101,97,112,112,108,105,99,97,116,105,111,110,47,101,112,117,98,43,122,105,112],{offset:30})){return{ext:"epub",mime:"application/epub+zip"}}if(check([80,75,3,4])&&check([77,69,84,65,45,73,78,70,47,109,111,122,105,108,108,97,46,114,115,97],{offset:30})){return{ext:"xpi",mime:"application/x-xpinstall"}}if(check([80,75])&&(t[2]===3||t[2]===5||t[2]===7)&&(t[3]===4||t[3]===6||t[3]===8)){return{ext:"zip",mime:"application/zip"}}if(check([117,115,116,97,114],{offset:257})){return{ext:"tar",mime:"application/x-tar"}}if(check([82,97,114,33,26,7])&&(t[6]===0||t[6]===1)){return{ext:"rar",mime:"application/x-rar-compressed"}}if(check([31,139,8])){return{ext:"gz",mime:"application/gzip"}}if(check([66,90,104])){return{ext:"bz2",mime:"application/x-bzip2"}}if(check([55,122,188,175,39,28])){return{ext:"7z",mime:"application/x-7z-compressed"}}if(check([120,1])){return{ext:"dmg",mime:"application/x-apple-diskimage"}}if(check([0,0,0])&&(t[3]===24||t[3]===32)&&check([102,116,121,112],{offset:4})||check([51,103,112,53])||check([0,0,0,28,102,116,121,112,109,112,52,50])&&check([109,112,52,49,109,112,52,50,105,115,111,109],{offset:16})||check([0,0,0,28,102,116,121,112,105,115,111,109])||check([0,0,0,28,102,116,121,112,109,112,52,50,0,0,0,0])){return{ext:"mp4",mime:"video/mp4"}}if(check([0,0,0,28,102,116,121,112,77,52,86])){return{ext:"m4v",mime:"video/x-m4v"}}if(check([77,84,104,100])){return{ext:"mid",mime:"audio/midi"}}if(check([26,69,223,163])){const e=t.subarray(4,4+4096);const r=e.findIndex(((e,t,r)=>r[t]===66&&r[t+1]===130));if(r>=0){const t=r+3;const findDocType=r=>Array.from(r).every(((r,i)=>e[t+i]===r.charCodeAt(0)));if(findDocType("matroska")){return{ext:"mkv",mime:"video/x-matroska"}}if(findDocType("webm")){return{ext:"webm",mime:"video/webm"}}}}if(check([0,0,0,20,102,116,121,112,113,116,32,32])||check([102,114,101,101],{offset:4})||check([102,116,121,112,113,116,32,32],{offset:4})||check([109,100,97,116],{offset:4})||check([119,105,100,101],{offset:4})){return{ext:"mov",mime:"video/quicktime"}}if(check([82,73,70,70])&&check([65,86,73],{offset:8})){return{ext:"avi",mime:"video/x-msvideo"}}if(check([48,38,178,117,142,102,207,17,166,217])){return{ext:"wmv",mime:"video/x-ms-wmv"}}if(check([0,0,1,186])){return{ext:"mpg",mime:"video/mpeg"}}if(check([73,68,51])||check([255,251])){return{ext:"mp3",mime:"audio/mpeg"}}if(check([102,116,121,112,77,52,65],{offset:4})||check([77,52,65,32])){return{ext:"m4a",mime:"audio/m4a"}}if(check([79,112,117,115,72,101,97,100],{offset:28})){return{ext:"opus",mime:"audio/opus"}}if(check([79,103,103,83])){return{ext:"ogg",mime:"audio/ogg"}}if(check([102,76,97,67])){return{ext:"flac",mime:"audio/x-flac"}}if(check([82,73,70,70])&&check([87,65,86,69],{offset:8})){return{ext:"wav",mime:"audio/x-wav"}}if(check([35,33,65,77,82,10])){return{ext:"amr",mime:"audio/amr"}}if(check([37,80,68,70])){return{ext:"pdf",mime:"application/pdf"}}if(check([77,90])){return{ext:"exe",mime:"application/x-msdownload"}}if((t[0]===67||t[0]===70)&&check([87,83],{offset:1})){return{ext:"swf",mime:"application/x-shockwave-flash"}}if(check([123,92,114,116,102])){return{ext:"rtf",mime:"application/rtf"}}if(check([0,97,115,109])){return{ext:"wasm",mime:"application/wasm"}}if(check([119,79,70,70])&&(check([0,1,0,0],{offset:4})||check([79,84,84,79],{offset:4}))){return{ext:"woff",mime:"font/woff"}}if(check([119,79,70,50])&&(check([0,1,0,0],{offset:4})||check([79,84,84,79],{offset:4}))){return{ext:"woff2",mime:"font/woff2"}}if(check([76,80],{offset:34})&&(check([0,0,1],{offset:8})||check([1,0,2],{offset:8})||check([2,0,2],{offset:8}))){return{ext:"eot",mime:"application/octet-stream"}}if(check([0,1,0,0,0])){return{ext:"ttf",mime:"font/ttf"}}if(check([79,84,84,79,0])){return{ext:"otf",mime:"font/otf"}}if(check([0,0,1,0])){return{ext:"ico",mime:"image/x-icon"}}if(check([70,76,86,1])){return{ext:"flv",mime:"video/x-flv"}}if(check([37,33])){return{ext:"ps",mime:"application/postscript"}}if(check([253,55,122,88,90,0])){return{ext:"xz",mime:"application/x-xz"}}if(check([83,81,76,105])){return{ext:"sqlite",mime:"application/x-sqlite3"}}if(check([78,69,83,26])){return{ext:"nes",mime:"application/x-nintendo-nes-rom"}}if(check([67,114,50,52])){return{ext:"crx",mime:"application/x-google-chrome-extension"}}if(check([77,83,67,70])||check([73,83,99,40])){return{ext:"cab",mime:"application/vnd.ms-cab-compressed"}}if(check([33,60,97,114,99,104,62,10,100,101,98,105,97,110,45,98,105,110,97,114,121])){return{ext:"deb",mime:"application/x-deb"}}if(check([33,60,97,114,99,104,62])){return{ext:"ar",mime:"application/x-unix-archive"}}if(check([237,171,238,219])){return{ext:"rpm",mime:"application/x-rpm"}}if(check([31,160])||check([31,157])){return{ext:"Z",mime:"application/x-compress"}}if(check([76,90,73,80])){return{ext:"lz",mime:"application/x-lzip"}}if(check([208,207,17,224,161,177,26,225])){return{ext:"msi",mime:"application/x-msi"}}if(check([6,14,43,52,2,5,1,1,13,1,2,1,1,2])){return{ext:"mxf",mime:"application/mxf"}}if(check([71],{offset:4})&&(check([71],{offset:192})||check([71],{offset:196}))){return{ext:"mts",mime:"video/mp2t"}}if(check([66,76,69,78,68,69,82])){return{ext:"blend",mime:"application/x-blender"}}if(check([66,80,71,251])){return{ext:"bpg",mime:"image/bpg"}}return null}},3772:function(e){"use strict";const toBytes=e=>Array.from(e).map((e=>e.charCodeAt(0)));const t=toBytes("META-INF/mozilla.rsa");const r=toBytes("[Content_Types].xml");const i=toBytes("_rels/.rels");e.exports=e=>{const n=new Uint8Array(e);if(!(n&&n.length>1)){return null}const check=(e,t)=>{t=Object.assign({offset:0},t);for(let r=0;r<e.length;r++){if(t.mask){if(e[r]!==(t.mask[r]&n[r+t.offset])){return false}}else if(e[r]!==n[r+t.offset]){return false}}return true};if(check([255,216,255])){return{ext:"jpg",mime:"image/jpeg"}}if(check([137,80,78,71,13,10,26,10])){return{ext:"png",mime:"image/png"}}if(check([71,73,70])){return{ext:"gif",mime:"image/gif"}}if(check([87,69,66,80],{offset:8})){return{ext:"webp",mime:"image/webp"}}if(check([70,76,73,70])){return{ext:"flif",mime:"image/flif"}}if((check([73,73,42,0])||check([77,77,0,42]))&&check([67,82],{offset:8})){return{ext:"cr2",mime:"image/x-canon-cr2"}}if(check([73,73,42,0])||check([77,77,0,42])){return{ext:"tif",mime:"image/tiff"}}if(check([66,77])){return{ext:"bmp",mime:"image/bmp"}}if(check([73,73,188])){return{ext:"jxr",mime:"image/vnd.ms-photo"}}if(check([56,66,80,83])){return{ext:"psd",mime:"image/vnd.adobe.photoshop"}}if(check([80,75,3,4])){if(check([109,105,109,101,116,121,112,101,97,112,112,108,105,99,97,116,105,111,110,47,101,112,117,98,43,122,105,112],{offset:30})){return{ext:"epub",mime:"application/epub+zip"}}if(check(t,{offset:30})){return{ext:"xpi",mime:"application/x-xpinstall"}}if(check(r,{offset:30})||check(i,{offset:30})){const e=n.subarray(4,4+2e3);const nextZipHeaderIndex=e=>e.findIndex(((e,t,r)=>r[t]===80&&r[t+1]===75&&r[t+2]===3&&r[t+3]===4));const t=nextZipHeaderIndex(e);if(t!==-1){const e=n.subarray(t+8,t+8+1e3);const r=nextZipHeaderIndex(e);if(r!==-1){const e=8+t+r+30;if(check(toBytes("word/"),{offset:e})){return{ext:"docx",mime:"application/vnd.openxmlformats-officedocument.wordprocessingml.document"}}if(check(toBytes("ppt/"),{offset:e})){return{ext:"pptx",mime:"application/vnd.openxmlformats-officedocument.presentationml.presentation"}}if(check(toBytes("xl/"),{offset:e})){return{ext:"xlsx",mime:"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"}}}}}}if(check([80,75])&&(n[2]===3||n[2]===5||n[2]===7)&&(n[3]===4||n[3]===6||n[3]===8)){return{ext:"zip",mime:"application/zip"}}if(check([117,115,116,97,114],{offset:257})){return{ext:"tar",mime:"application/x-tar"}}if(check([82,97,114,33,26,7])&&(n[6]===0||n[6]===1)){return{ext:"rar",mime:"application/x-rar-compressed"}}if(check([31,139,8])){return{ext:"gz",mime:"application/gzip"}}if(check([66,90,104])){return{ext:"bz2",mime:"application/x-bzip2"}}if(check([55,122,188,175,39,28])){return{ext:"7z",mime:"application/x-7z-compressed"}}if(check([120,1])){return{ext:"dmg",mime:"application/x-apple-diskimage"}}if(check([51,103,112,53])||check([0,0,0])&&check([102,116,121,112],{offset:4})&&(check([109,112,52,49],{offset:8})||check([109,112,52,50],{offset:8})||check([105,115,111,109],{offset:8})||check([105,115,111,50],{offset:8})||check([109,109,112,52],{offset:8})||check([77,52,86],{offset:8})||check([100,97,115,104],{offset:8}))){return{ext:"mp4",mime:"video/mp4"}}if(check([77,84,104,100])){return{ext:"mid",mime:"audio/midi"}}if(check([26,69,223,163])){const e=n.subarray(4,4+4096);const t=e.findIndex(((e,t,r)=>r[t]===66&&r[t+1]===130));if(t!==-1){const r=t+3;const findDocType=t=>Array.from(t).every(((t,i)=>e[r+i]===t.charCodeAt(0)));if(findDocType("matroska")){return{ext:"mkv",mime:"video/x-matroska"}}if(findDocType("webm")){return{ext:"webm",mime:"video/webm"}}}}if(check([0,0,0,20,102,116,121,112,113,116,32,32])||check([102,114,101,101],{offset:4})||check([102,116,121,112,113,116,32,32],{offset:4})||check([109,100,97,116],{offset:4})||check([119,105,100,101],{offset:4})){return{ext:"mov",mime:"video/quicktime"}}if(check([82,73,70,70])&&check([65,86,73],{offset:8})){return{ext:"avi",mime:"video/x-msvideo"}}if(check([48,38,178,117,142,102,207,17,166,217])){return{ext:"wmv",mime:"video/x-ms-wmv"}}if(check([0,0,1,186])){return{ext:"mpg",mime:"video/mpeg"}}for(let e=0;e<2&&e<n.length-16;e++){if(check([73,68,51],{offset:e})||check([255,226],{offset:e,mask:[255,226]})){return{ext:"mp3",mime:"audio/mpeg"}}}if(check([102,116,121,112,77,52,65],{offset:4})||check([77,52,65,32])){return{ext:"m4a",mime:"audio/m4a"}}if(check([79,112,117,115,72,101,97,100],{offset:28})){return{ext:"opus",mime:"audio/opus"}}if(check([79,103,103,83])){return{ext:"ogg",mime:"audio/ogg"}}if(check([102,76,97,67])){return{ext:"flac",mime:"audio/x-flac"}}if(check([82,73,70,70])&&check([87,65,86,69],{offset:8})){return{ext:"wav",mime:"audio/x-wav"}}if(check([35,33,65,77,82,10])){return{ext:"amr",mime:"audio/amr"}}if(check([37,80,68,70])){return{ext:"pdf",mime:"application/pdf"}}if(check([77,90])){return{ext:"exe",mime:"application/x-msdownload"}}if((n[0]===67||n[0]===70)&&check([87,83],{offset:1})){return{ext:"swf",mime:"application/x-shockwave-flash"}}if(check([123,92,114,116,102])){return{ext:"rtf",mime:"application/rtf"}}if(check([0,97,115,109])){return{ext:"wasm",mime:"application/wasm"}}if(check([119,79,70,70])&&(check([0,1,0,0],{offset:4})||check([79,84,84,79],{offset:4}))){return{ext:"woff",mime:"font/woff"}}if(check([119,79,70,50])&&(check([0,1,0,0],{offset:4})||check([79,84,84,79],{offset:4}))){return{ext:"woff2",mime:"font/woff2"}}if(check([76,80],{offset:34})&&(check([0,0,1],{offset:8})||check([1,0,2],{offset:8})||check([2,0,2],{offset:8}))){return{ext:"eot",mime:"application/octet-stream"}}if(check([0,1,0,0,0])){return{ext:"ttf",mime:"font/ttf"}}if(check([79,84,84,79,0])){return{ext:"otf",mime:"font/otf"}}if(check([0,0,1,0])){return{ext:"ico",mime:"image/x-icon"}}if(check([70,76,86,1])){return{ext:"flv",mime:"video/x-flv"}}if(check([37,33])){return{ext:"ps",mime:"application/postscript"}}if(check([253,55,122,88,90,0])){return{ext:"xz",mime:"application/x-xz"}}if(check([83,81,76,105])){return{ext:"sqlite",mime:"application/x-sqlite3"}}if(check([78,69,83,26])){return{ext:"nes",mime:"application/x-nintendo-nes-rom"}}if(check([67,114,50,52])){return{ext:"crx",mime:"application/x-google-chrome-extension"}}if(check([77,83,67,70])||check([73,83,99,40])){return{ext:"cab",mime:"application/vnd.ms-cab-compressed"}}if(check([33,60,97,114,99,104,62,10,100,101,98,105,97,110,45,98,105,110,97,114,121])){return{ext:"deb",mime:"application/x-deb"}}if(check([33,60,97,114,99,104,62])){return{ext:"ar",mime:"application/x-unix-archive"}}if(check([237,171,238,219])){return{ext:"rpm",mime:"application/x-rpm"}}if(check([31,160])||check([31,157])){return{ext:"Z",mime:"application/x-compress"}}if(check([76,90,73,80])){return{ext:"lz",mime:"application/x-lzip"}}if(check([208,207,17,224,161,177,26,225])){return{ext:"msi",mime:"application/x-msi"}}if(check([6,14,43,52,2,5,1,1,13,1,2,1,1,2])){return{ext:"mxf",mime:"application/mxf"}}if(check([71],{offset:4})&&(check([71],{offset:192})||check([71],{offset:196}))){return{ext:"mts",mime:"video/mp2t"}}if(check([66,76,69,78,68,69,82])){return{ext:"blend",mime:"application/x-blender"}}if(check([66,80,71,251])){return{ext:"bpg",mime:"image/bpg"}}return null}},9033:function(e,t,r){e.exports=r(9896).constants||r(9140)},5319:function(e,t,r){var i=r(2203).PassThrough;var n=r(1160);e.exports=function(e){e=n({},e);var t=e.array;var r=e.encoding;var o=r==="buffer";var a=false;if(t){a=!(r||o)}else{r=r||"utf8"}if(o){r=null}var s=0;var u=[];var l=new i({objectMode:a});if(r){l.setEncoding(r)}l.on("data",(function(e){u.push(e);if(a){s=u.length}else{s+=e.length}}));l.getBufferedValue=function(){if(t){return u}return o?Buffer.concat(u,s):u.join("")};l.getBufferedLength=function(){return s};return l}},6094:function(e,t,r){"use strict";var i=r(8043);var n=r(1160);var o=r(5319);function getStream(e,t){if(!e){return i.reject(new Error("Expected a stream"))}t=n({maxBuffer:Infinity},t);var r=t.maxBuffer;var a;var s;var u=new i((function(i,n){a=o(t);e.once("error",error);e.pipe(a);a.on("data",(function(){if(a.getBufferedLength()>r){n(new Error("maxBuffer exceeded"))}}));a.once("error",error);a.on("end",i);s=function(){if(e.unpipe){e.unpipe(a)}};function error(e){if(e){e.bufferedData=a.getBufferedValue()}n(e)}}));u.then(s,s);return u.then((function(){return a.getBufferedValue()}))}e.exports=getStream;e.exports.buffer=function(e,t){return getStream(e,n({},t,{encoding:"buffer"}))};e.exports.array=function(e,t){return getStream(e,n({},t,{array:true}))}},1403:function(e){"use strict";e.exports=clone;var t=Object.getPrototypeOf||function(e){return e.__proto__};function clone(e){if(e===null||typeof e!=="object")return e;if(e instanceof Object)var r={__proto__:t(e)};else var r=Object.create(null);Object.getOwnPropertyNames(e).forEach((function(t){Object.defineProperty(r,t,Object.getOwnPropertyDescriptor(e,t))}));return r}},7551:function(e,t,r){var i=r(9896);var n=r(4538);var o=r(2611);var a=r(1403);var s=r(9023);var u;var l;if(typeof Symbol==="function"&&typeof Symbol.for==="function"){u=Symbol.for("graceful-fs.queue");l=Symbol.for("graceful-fs.previous")}else{u="___graceful-fs.queue";l="___graceful-fs.previous"}function noop(){}function publishQueue(e,t){Object.defineProperty(e,u,{get:function(){return t}})}var c=noop;if(s.debuglog)c=s.debuglog("gfs4");else if(/\bgfs4\b/i.test(process.env.NODE_DEBUG||""))c=function(){var e=s.format.apply(s,arguments);e="GFS4: "+e.split(/\n/).join("\nGFS4: ");console.error(e)};if(!i[u]){var d=global[u]||[];publishQueue(i,d);i.close=function(e){function close(t,r){return e.call(i,t,(function(e){if(!e){resetQueue()}if(typeof r==="function")r.apply(this,arguments)}))}Object.defineProperty(close,l,{value:e});return close}(i.close);i.closeSync=function(e){function closeSync(t){e.apply(i,arguments);resetQueue()}Object.defineProperty(closeSync,l,{value:e});return closeSync}(i.closeSync);if(/\bgfs4\b/i.test(process.env.NODE_DEBUG||"")){process.on("exit",(function(){c(i[u]);r(2613).equal(i[u].length,0)}))}}if(!global[u]){publishQueue(global,i[u])}e.exports=patch(a(i));if(process.env.TEST_GRACEFUL_FS_GLOBAL_PATCH&&!i.__patched){e.exports=patch(i);i.__patched=true}function patch(e){n(e);e.gracefulify=patch;e.createReadStream=createReadStream;e.createWriteStream=createWriteStream;var t=e.readFile;e.readFile=readFile;function readFile(e,r,i){if(typeof r==="function")i=r,r=null;return go$readFile(e,r,i);function go$readFile(e,r,i,n){return t(e,r,(function(t){if(t&&(t.code==="EMFILE"||t.code==="ENFILE"))enqueue([go$readFile,[e,r,i],t,n||Date.now(),Date.now()]);else{if(typeof i==="function")i.apply(this,arguments)}}))}}var r=e.writeFile;e.writeFile=writeFile;function writeFile(e,t,i,n){if(typeof i==="function")n=i,i=null;return go$writeFile(e,t,i,n);function go$writeFile(e,t,i,n,o){return r(e,t,i,(function(r){if(r&&(r.code==="EMFILE"||r.code==="ENFILE"))enqueue([go$writeFile,[e,t,i,n],r,o||Date.now(),Date.now()]);else{if(typeof n==="function")n.apply(this,arguments)}}))}}var i=e.appendFile;if(i)e.appendFile=appendFile;function appendFile(e,t,r,n){if(typeof r==="function")n=r,r=null;return go$appendFile(e,t,r,n);function go$appendFile(e,t,r,n,o){return i(e,t,r,(function(i){if(i&&(i.code==="EMFILE"||i.code==="ENFILE"))enqueue([go$appendFile,[e,t,r,n],i,o||Date.now(),Date.now()]);else{if(typeof n==="function")n.apply(this,arguments)}}))}}var a=e.copyFile;if(a)e.copyFile=copyFile;function copyFile(e,t,r,i){if(typeof r==="function"){i=r;r=0}return go$copyFile(e,t,r,i);function go$copyFile(e,t,r,i,n){return a(e,t,r,(function(o){if(o&&(o.code==="EMFILE"||o.code==="ENFILE"))enqueue([go$copyFile,[e,t,r,i],o,n||Date.now(),Date.now()]);else{if(typeof i==="function")i.apply(this,arguments)}}))}}var s=e.readdir;e.readdir=readdir;var u=/^v[0-5]\./;function readdir(e,t,r){if(typeof t==="function")r=t,t=null;var i=u.test(process.version)?function go$readdir(e,t,r,i){return s(e,fs$readdirCallback(e,t,r,i))}:function go$readdir(e,t,r,i){return s(e,t,fs$readdirCallback(e,t,r,i))};return i(e,t,r);function fs$readdirCallback(e,t,r,n){return function(o,a){if(o&&(o.code==="EMFILE"||o.code==="ENFILE"))enqueue([i,[e,t,r],o,n||Date.now(),Date.now()]);else{if(a&&a.sort)a.sort();if(typeof r==="function")r.call(this,o,a)}}}}if(process.version.substr(0,4)==="v0.8"){var l=o(e);ReadStream=l.ReadStream;WriteStream=l.WriteStream}var c=e.ReadStream;if(c){ReadStream.prototype=Object.create(c.prototype);ReadStream.prototype.open=ReadStream$open}var d=e.WriteStream;if(d){WriteStream.prototype=Object.create(d.prototype);WriteStream.prototype.open=WriteStream$open}Object.defineProperty(e,"ReadStream",{get:function(){return ReadStream},set:function(e){ReadStream=e},enumerable:true,configurable:true});Object.defineProperty(e,"WriteStream",{get:function(){return WriteStream},set:function(e){WriteStream=e},enumerable:true,configurable:true});var p=ReadStream;Object.defineProperty(e,"FileReadStream",{get:function(){return p},set:function(e){p=e},enumerable:true,configurable:true});var h=WriteStream;Object.defineProperty(e,"FileWriteStream",{get:function(){return h},set:function(e){h=e},enumerable:true,configurable:true});function ReadStream(e,t){if(this instanceof ReadStream)return c.apply(this,arguments),this;else return ReadStream.apply(Object.create(ReadStream.prototype),arguments)}function ReadStream$open(){var e=this;open(e.path,e.flags,e.mode,(function(t,r){if(t){if(e.autoClose)e.destroy();e.emit("error",t)}else{e.fd=r;e.emit("open",r);e.read()}}))}function WriteStream(e,t){if(this instanceof WriteStream)return d.apply(this,arguments),this;else return WriteStream.apply(Object.create(WriteStream.prototype),arguments)}function WriteStream$open(){var e=this;open(e.path,e.flags,e.mode,(function(t,r){if(t){e.destroy();e.emit("error",t)}else{e.fd=r;e.emit("open",r)}}))}function createReadStream(t,r){return new e.ReadStream(t,r)}function createWriteStream(t,r){return new e.WriteStream(t,r)}var m=e.open;e.open=open;function open(e,t,r,i){if(typeof r==="function")i=r,r=null;return go$open(e,t,r,i);function go$open(e,t,r,i,n){return m(e,t,r,(function(o,a){if(o&&(o.code==="EMFILE"||o.code==="ENFILE"))enqueue([go$open,[e,t,r,i],o,n||Date.now(),Date.now()]);else{if(typeof i==="function")i.apply(this,arguments)}}))}}return e}function enqueue(e){c("ENQUEUE",e[0].name,e[1]);i[u].push(e);retry()}var p;function resetQueue(){var e=Date.now();for(var t=0;t<i[u].length;++t){if(i[u][t].length>2){i[u][t][3]=e;i[u][t][4]=e}}retry()}function retry(){clearTimeout(p);p=undefined;if(i[u].length===0)return;var e=i[u].shift();var t=e[0];var r=e[1];var n=e[2];var o=e[3];var a=e[4];if(o===undefined){c("RETRY",t.name,r);t.apply(null,r)}else if(Date.now()-o>=6e4){c("TIMEOUT",t.name,r);var s=r.pop();if(typeof s==="function")s.call(null,n)}else{var l=Date.now()-a;var d=Math.max(a-o,1);var h=Math.min(d*1.2,100);if(l>=h){c("RETRY",t.name,r);t.apply(null,r.concat([o]))}else{i[u].push(e)}}if(p===undefined){p=setTimeout(retry,0)}}},2611:function(e,t,r){var i=r(2203).Stream;e.exports=legacy;function legacy(e){return{ReadStream:ReadStream,WriteStream:WriteStream};function ReadStream(t,r){if(!(this instanceof ReadStream))return new ReadStream(t,r);i.call(this);var n=this;this.path=t;this.fd=null;this.readable=true;this.paused=false;this.flags="r";this.mode=438;this.bufferSize=64*1024;r=r||{};var o=Object.keys(r);for(var a=0,s=o.length;a<s;a++){var u=o[a];this[u]=r[u]}if(this.encoding)this.setEncoding(this.encoding);if(this.start!==undefined){if("number"!==typeof this.start){throw TypeError("start must be a Number")}if(this.end===undefined){this.end=Infinity}else if("number"!==typeof this.end){throw TypeError("end must be a Number")}if(this.start>this.end){throw new Error("start must be <= end")}this.pos=this.start}if(this.fd!==null){process.nextTick((function(){n._read()}));return}e.open(this.path,this.flags,this.mode,(function(e,t){if(e){n.emit("error",e);n.readable=false;return}n.fd=t;n.emit("open",t);n._read()}))}function WriteStream(t,r){if(!(this instanceof WriteStream))return new WriteStream(t,r);i.call(this);this.path=t;this.fd=null;this.writable=true;this.flags="w";this.encoding="binary";this.mode=438;this.bytesWritten=0;r=r||{};var n=Object.keys(r);for(var o=0,a=n.length;o<a;o++){var s=n[o];this[s]=r[s]}if(this.start!==undefined){if("number"!==typeof this.start){throw TypeError("start must be a Number")}if(this.start<0){throw new Error("start must be >= zero")}this.pos=this.start}this.busy=false;this._queue=[];if(this.fd===null){this._open=e.open;this._queue.push([this._open,this.path,this.flags,this.mode,undefined]);this.flush()}}}},4538:function(e,t,r){var i=r(9140);var n=process.cwd;var o=null;var a=process.env.GRACEFUL_FS_PLATFORM||process.platform;process.cwd=function(){if(!o)o=n.call(process);return o};try{process.cwd()}catch(e){}if(typeof process.chdir==="function"){var s=process.chdir;process.chdir=function(e){o=null;s.call(process,e)};if(Object.setPrototypeOf)Object.setPrototypeOf(process.chdir,s)}e.exports=patch;function patch(e){if(i.hasOwnProperty("O_SYMLINK")&&process.version.match(/^v0\.6\.[0-2]|^v0\.5\./)){patchLchmod(e)}if(!e.lutimes){patchLutimes(e)}e.chown=chownFix(e.chown);e.fchown=chownFix(e.fchown);e.lchown=chownFix(e.lchown);e.chmod=chmodFix(e.chmod);e.fchmod=chmodFix(e.fchmod);e.lchmod=chmodFix(e.lchmod);e.chownSync=chownFixSync(e.chownSync);e.fchownSync=chownFixSync(e.fchownSync);e.lchownSync=chownFixSync(e.lchownSync);e.chmodSync=chmodFixSync(e.chmodSync);e.fchmodSync=chmodFixSync(e.fchmodSync);e.lchmodSync=chmodFixSync(e.lchmodSync);e.stat=statFix(e.stat);e.fstat=statFix(e.fstat);e.lstat=statFix(e.lstat);e.statSync=statFixSync(e.statSync);e.fstatSync=statFixSync(e.fstatSync);e.lstatSync=statFixSync(e.lstatSync);if(e.chmod&&!e.lchmod){e.lchmod=function(e,t,r){if(r)process.nextTick(r)};e.lchmodSync=function(){}}if(e.chown&&!e.lchown){e.lchown=function(e,t,r,i){if(i)process.nextTick(i)};e.lchownSync=function(){}}if(a==="win32"){e.rename=typeof e.rename!=="function"?e.rename:function(t){function rename(r,i,n){var o=Date.now();var a=0;t(r,i,(function CB(s){if(s&&(s.code==="EACCES"||s.code==="EPERM"||s.code==="EBUSY")&&Date.now()-o<6e4){setTimeout((function(){e.stat(i,(function(e,o){if(e&&e.code==="ENOENT")t(r,i,CB);else n(s)}))}),a);if(a<100)a+=10;return}if(n)n(s)}))}if(Object.setPrototypeOf)Object.setPrototypeOf(rename,t);return rename}(e.rename)}e.read=typeof e.read!=="function"?e.read:function(t){function read(r,i,n,o,a,s){var u;if(s&&typeof s==="function"){var l=0;u=function(c,d,p){if(c&&c.code==="EAGAIN"&&l<10){l++;return t.call(e,r,i,n,o,a,u)}s.apply(this,arguments)}}return t.call(e,r,i,n,o,a,u)}if(Object.setPrototypeOf)Object.setPrototypeOf(read,t);return read}(e.read);e.readSync=typeof e.readSync!=="function"?e.readSync:function(t){return function(r,i,n,o,a){var s=0;while(true){try{return t.call(e,r,i,n,o,a)}catch(e){if(e.code==="EAGAIN"&&s<10){s++;continue}throw e}}}}(e.readSync);function patchLchmod(e){e.lchmod=function(t,r,n){e.open(t,i.O_WRONLY|i.O_SYMLINK,r,(function(t,i){if(t){if(n)n(t);return}e.fchmod(i,r,(function(t){e.close(i,(function(e){if(n)n(t||e)}))}))}))};e.lchmodSync=function(t,r){var n=e.openSync(t,i.O_WRONLY|i.O_SYMLINK,r);var o=true;var a;try{a=e.fchmodSync(n,r);o=false}finally{if(o){try{e.closeSync(n)}catch(e){}}else{e.closeSync(n)}}return a}}function patchLutimes(e){if(i.hasOwnProperty("O_SYMLINK")&&e.futimes){e.lutimes=function(t,r,n,o){e.open(t,i.O_SYMLINK,(function(t,i){if(t){if(o)o(t);return}e.futimes(i,r,n,(function(t){e.close(i,(function(e){if(o)o(t||e)}))}))}))};e.lutimesSync=function(t,r,n){var o=e.openSync(t,i.O_SYMLINK);var a;var s=true;try{a=e.futimesSync(o,r,n);s=false}finally{if(s){try{e.closeSync(o)}catch(e){}}else{e.closeSync(o)}}return a}}else if(e.futimes){e.lutimes=function(e,t,r,i){if(i)process.nextTick(i)};e.lutimesSync=function(){}}}function chmodFix(t){if(!t)return t;return function(r,i,n){return t.call(e,r,i,(function(e){if(chownErOk(e))e=null;if(n)n.apply(this,arguments)}))}}function chmodFixSync(t){if(!t)return t;return function(r,i){try{return t.call(e,r,i)}catch(e){if(!chownErOk(e))throw e}}}function chownFix(t){if(!t)return t;return function(r,i,n,o){return t.call(e,r,i,n,(function(e){if(chownErOk(e))e=null;if(o)o.apply(this,arguments)}))}}function chownFixSync(t){if(!t)return t;return function(r,i,n){try{return t.call(e,r,i,n)}catch(e){if(!chownErOk(e))throw e}}}function statFix(t){if(!t)return t;return function(r,i,n){if(typeof i==="function"){n=i;i=null}function callback(e,t){if(t){if(t.uid<0)t.uid+=4294967296;if(t.gid<0)t.gid+=4294967296}if(n)n.apply(this,arguments)}return i?t.call(e,r,i,callback):t.call(e,r,callback)}}function statFixSync(t){if(!t)return t;return function(r,i){var n=i?t.call(e,r,i):t.call(e,r);if(n){if(n.uid<0)n.uid+=4294967296;if(n.gid<0)n.gid+=4294967296}return n}}function chownErOk(e){if(!e)return true;if(e.code==="ENOSYS")return true;var t=!process.getuid||process.getuid()!==0;if(t){if(e.code==="EINVAL"||e.code==="EPERM")return true}return false}}},4070:function(e,t,r){try{var i=r(9023);if(typeof i.inherits!=="function")throw"";e.exports=i.inherits}catch(t){e.exports=r(6005)}},6005:function(e){if(typeof Object.create==="function"){e.exports=function inherits(e,t){if(t){e.super_=t;e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:false,writable:true,configurable:true}})}}}else{e.exports=function inherits(e,t){if(t){e.super_=t;var TempCtor=function(){};TempCtor.prototype=t.prototype;e.prototype=new TempCtor;e.prototype.constructor=e}}}},375:function(e){"use strict";
2
- /*!
3
- * is-natural-number.js | MIT (c) Shinnosuke Watanabe
4
- * https://github.com/shinnn/is-natural-number.js
5
- */e.exports=function isNaturalNumber(e,t){if(t){if(typeof t!=="object"){throw new TypeError(String(t)+" is not an object. Expected an object that has boolean `includeZero` property.")}if("includeZero"in t){if(typeof t.includeZero!=="boolean"){throw new TypeError(String(t.includeZero)+" is neither true nor false. `includeZero` option must be a Boolean value.")}if(t.includeZero&&e===0){return true}}}return Number.isSafeInteger(e)&&e>=1}},6156:function(e){"use strict";var t=e.exports=function(e){return e!==null&&typeof e==="object"&&typeof e.pipe==="function"};t.writable=function(e){return t(e)&&e.writable!==false&&typeof e._write==="function"&&typeof e._writableState==="object"};t.readable=function(e){return t(e)&&e.readable!==false&&typeof e._read==="function"&&typeof e._readableState==="object"};t.duplex=function(e){return t.writable(e)&&t.readable(e)};t.transform=function(e){return t.duplex(e)&&typeof e._transform==="function"&&typeof e._transformState==="object"}},4057:function(e){var t={}.toString;e.exports=Array.isArray||function(e){return t.call(e)=="[object Array]"}},1528:function(e,t,r){"use strict";const i=r(9896);const n=r(6928);const o=r(4499);const a={mode:511&~process.umask(),fs:i};const checkPath=e=>{if(process.platform==="win32"){const t=/[<>:"|?*]/.test(e.replace(n.parse(e).root,""));if(t){const t=new Error(`Path contains invalid characters: ${e}`);t.code="EINVAL";throw t}}};e.exports=(e,t)=>Promise.resolve().then((()=>{checkPath(e);t=Object.assign({},a,t);const r=o(t.fs.mkdir);const i=o(t.fs.stat);const make=e=>r(e,t.mode).then((()=>e)).catch((t=>{if(t.code==="ENOENT"){if(t.message.includes("null bytes")||n.dirname(e)===e){throw t}return make(n.dirname(e)).then((()=>make(e)))}return i(e).then((t=>t.isDirectory()?e:Promise.reject())).catch((()=>{throw t}))}));return make(n.resolve(e))}));e.exports.sync=(e,t)=>{checkPath(e);t=Object.assign({},a,t);const make=e=>{try{t.fs.mkdirSync(e,t.mode)}catch(r){if(r.code==="ENOENT"){if(r.message.includes("null bytes")||n.dirname(e)===e){throw r}make(n.dirname(e));return make(e)}try{if(!t.fs.statSync(e).isDirectory()){throw new Error("The path is not a directory")}}catch(e){throw r}}return e};return make(n.resolve(e))}},1160:function(e){"use strict";
6
- /*
7
- object-assign
8
- (c) Sindre Sorhus
9
- @license MIT
10
- */var t=Object.getOwnPropertySymbols;var r=Object.prototype.hasOwnProperty;var i=Object.prototype.propertyIsEnumerable;function toObject(e){if(e===null||e===undefined){throw new TypeError("Object.assign cannot be called with null or undefined")}return Object(e)}function shouldUseNative(){try{if(!Object.assign){return false}var e=new String("abc");e[5]="de";if(Object.getOwnPropertyNames(e)[0]==="5"){return false}var t={};for(var r=0;r<10;r++){t["_"+String.fromCharCode(r)]=r}var i=Object.getOwnPropertyNames(t).map((function(e){return t[e]}));if(i.join("")!=="0123456789"){return false}var n={};"abcdefghijklmnopqrst".split("").forEach((function(e){n[e]=e}));if(Object.keys(Object.assign({},n)).join("")!=="abcdefghijklmnopqrst"){return false}return true}catch(e){return false}}e.exports=shouldUseNative()?Object.assign:function(e,n){var o;var a=toObject(e);var s;for(var u=1;u<arguments.length;u++){o=Object(arguments[u]);for(var l in o){if(r.call(o,l)){a[l]=o[l]}}if(t){s=t(o);for(var c=0;c<s.length;c++){if(i.call(o,s[c])){a[s[c]]=o[s[c]]}}}}return a}},8068:function(e,t,r){var i=r(8092);e.exports=i(once);e.exports.strict=i(onceStrict);once.proto=once((function(){Object.defineProperty(Function.prototype,"once",{value:function(){return once(this)},configurable:true});Object.defineProperty(Function.prototype,"onceStrict",{value:function(){return onceStrict(this)},configurable:true})}));function once(e){var f=function(){if(f.called)return f.value;f.called=true;return f.value=e.apply(this,arguments)};f.called=false;return f}function onceStrict(e){var f=function(){if(f.called)throw new Error(f.onceError);f.called=true;return f.value=e.apply(this,arguments)};var t=e.name||"Function wrapped with `once`";f.onceError=t+" shouldn't be called more than once";f.called=false;return f}},3295:function(e){e.exports=Pend;function Pend(){this.pending=0;this.max=Infinity;this.listeners=[];this.waiting=[];this.error=null}Pend.prototype.go=function(e){if(this.pending<this.max){pendGo(this,e)}else{this.waiting.push(e)}};Pend.prototype.wait=function(e){if(this.pending===0){e(this.error)}else{this.listeners.push(e)}};Pend.prototype.hold=function(){return pendHold(this)};function pendHold(e){e.pending+=1;var t=false;return onCb;function onCb(r){if(t)throw new Error("callback called twice");t=true;e.error=e.error||r;e.pending-=1;if(e.waiting.length>0&&e.pending<e.max){pendGo(e,e.waiting.shift())}else if(e.pending===0){var i=e.listeners;e.listeners=[];i.forEach(cbListener)}}function cbListener(t){t(e.error)}}function pendGo(e,t){t(pendHold(e))}},9389:function(e){"use strict";var processFn=function(e,t,r){return function(){var i=this;var n=new Array(arguments.length);for(var o=0;o<arguments.length;o++){n[o]=arguments[o]}return new t((function(t,o){n.push((function(e,i){if(e){o(e)}else if(r.multiArgs){var n=new Array(arguments.length-1);for(var a=1;a<arguments.length;a++){n[a-1]=arguments[a]}t(n)}else{t(i)}}));e.apply(i,n)}))}};var t=e.exports=function(e,t,r){if(typeof t!=="function"){r=t;t=Promise}r=r||{};r.exclude=r.exclude||[/.+Sync$/];var filter=function(e){var match=function(t){return typeof t==="string"?e===t:t.test(e)};return r.include?r.include.some(match):!r.exclude.some(match)};var i=typeof e==="function"?function(){if(r.excludeMain){return e.apply(this,arguments)}return processFn(e,t,r).apply(this,arguments)}:{};return Object.keys(e).reduce((function(i,n){var o=e[n];i[n]=typeof o==="function"&&filter(n)?processFn(o,t,r):o;return i}),i)};t.all=t},4499:function(e){"use strict";const processFn=(e,t)=>function(){const r=t.promiseModule;const i=new Array(arguments.length);for(let e=0;e<arguments.length;e++){i[e]=arguments[e]}return new r(((r,n)=>{if(t.errorFirst){i.push((function(e,i){if(t.multiArgs){const t=new Array(arguments.length-1);for(let e=1;e<arguments.length;e++){t[e-1]=arguments[e]}if(e){t.unshift(e);n(t)}else{r(t)}}else if(e){n(e)}else{r(i)}}))}else{i.push((function(e){if(t.multiArgs){const e=new Array(arguments.length-1);for(let t=0;t<arguments.length;t++){e[t]=arguments[t]}r(e)}else{r(e)}}))}e.apply(this,i)}))};e.exports=(e,t)=>{t=Object.assign({exclude:[/.+(Sync|Stream)$/],errorFirst:true,promiseModule:Promise},t);const filter=e=>{const match=t=>typeof t==="string"?e===t:t.test(e);return t.include?t.include.some(match):!t.exclude.some(match)};let r;if(typeof e==="function"){r=function(){if(t.excludeMain){return e.apply(this,arguments)}return processFn(e,t).apply(this,arguments)}}else{r=Object.create(Object.getPrototypeOf(e))}for(const i in e){const n=e[i];r[i]=typeof n==="function"&&filter(i)?processFn(n,t):n}return r}},8043:function(e,t,r){"use strict";e.exports=typeof Promise==="function"?Promise:r(2500)},2500:function(e){"use strict";var t="pending";var r="settled";var i="fulfilled";var n="rejected";var NOOP=function(){};var o=typeof global!=="undefined"&&typeof global.process!=="undefined"&&typeof global.process.emit==="function";var a=typeof setImmediate==="undefined"?setTimeout:setImmediate;var s=[];var u;function asyncFlush(){for(var e=0;e<s.length;e++){s[e][0](s[e][1])}s=[];u=false}function asyncCall(e,t){s.push([e,t]);if(!u){u=true;a(asyncFlush,0)}}function invokeResolver(e,t){function resolvePromise(e){resolve(t,e)}function rejectPromise(e){reject(t,e)}try{e(resolvePromise,rejectPromise)}catch(e){rejectPromise(e)}}function invokeCallback(e){var t=e.owner;var r=t._state;var o=t._data;var a=e[r];var s=e.then;if(typeof a==="function"){r=i;try{o=a(o)}catch(e){reject(s,e)}}if(!handleThenable(s,o)){if(r===i){resolve(s,o)}if(r===n){reject(s,o)}}}function handleThenable(e,t){var r;try{if(e===t){throw new TypeError("A promises callback cannot return that same promise.")}if(t&&(typeof t==="function"||typeof t==="object")){var i=t.then;if(typeof i==="function"){i.call(t,(function(i){if(!r){r=true;if(t===i){fulfill(e,i)}else{resolve(e,i)}}}),(function(t){if(!r){r=true;reject(e,t)}}));return true}}}catch(t){if(!r){reject(e,t)}return true}return false}function resolve(e,t){if(e===t||!handleThenable(e,t)){fulfill(e,t)}}function fulfill(e,i){if(e._state===t){e._state=r;e._data=i;asyncCall(publishFulfillment,e)}}function reject(e,i){if(e._state===t){e._state=r;e._data=i;asyncCall(publishRejection,e)}}function publish(e){e._then=e._then.forEach(invokeCallback)}function publishFulfillment(e){e._state=i;publish(e)}function publishRejection(e){e._state=n;publish(e);if(!e._handled&&o){global.process.emit("unhandledRejection",e._data,e)}}function notifyRejectionHandled(e){global.process.emit("rejectionHandled",e)}function Promise(e){if(typeof e!=="function"){throw new TypeError("Promise resolver "+e+" is not a function")}if(this instanceof Promise===false){throw new TypeError("Failed to construct 'Promise': Please use the 'new' operator, this object constructor cannot be called as a function.")}this._then=[];invokeResolver(e,this)}Promise.prototype={constructor:Promise,_state:t,_then:null,_data:undefined,_handled:false,then:function(e,t){var r={owner:this,then:new this.constructor(NOOP),fulfilled:e,rejected:t};if((t||e)&&!this._handled){this._handled=true;if(this._state===n&&o){asyncCall(notifyRejectionHandled,this)}}if(this._state===i||this._state===n){asyncCall(invokeCallback,r)}else{this._then.push(r)}return r.then},catch:function(e){return this.then(null,e)}};Promise.all=function(e){if(!Array.isArray(e)){throw new TypeError("You must pass an array to Promise.all().")}return new Promise((function(t,r){var i=[];var n=0;function resolver(e){n++;return function(r){i[e]=r;if(! --n){t(i)}}}for(var o=0,a;o<e.length;o++){a=e[o];if(a&&typeof a.then==="function"){a.then(resolver(o),r)}else{i[o]=a}}if(!n){t(i)}}))};Promise.race=function(e){if(!Array.isArray(e)){throw new TypeError("You must pass an array to Promise.race().")}return new Promise((function(t,r){for(var i=0,n;i<e.length;i++){n=e[i];if(n&&typeof n.then==="function"){n.then(t,r)}else{t(n)}}}))};Promise.resolve=function(e){if(e&&typeof e==="object"&&e.constructor===Promise){return e}return new Promise((function(t){t(e)}))};Promise.reject=function(e){return new Promise((function(t,r){r(e)}))};e.exports=Promise},1847:function(e){"use strict";if(typeof process==="undefined"||!process.version||process.version.indexOf("v0.")===0||process.version.indexOf("v1.")===0&&process.version.indexOf("v1.8.")!==0){e.exports={nextTick:nextTick}}else{e.exports=process}function nextTick(e,t,r,i){if(typeof e!=="function"){throw new TypeError('"callback" argument must be a function')}var n=arguments.length;var o,a;switch(n){case 0:case 1:return process.nextTick(e);case 2:return process.nextTick((function afterTickOne(){e.call(null,t)}));case 3:return process.nextTick((function afterTickTwo(){e.call(null,t,r)}));case 4:return process.nextTick((function afterTickThree(){e.call(null,t,r,i)}));default:o=new Array(n-1);a=0;while(a<o.length){o[a++]=arguments[a]}return process.nextTick((function afterTick(){e.apply(null,o)}))}}},8151:function(e,t,r){e.exports=r(1397).Duplex},7561:function(e,t,r){"use strict";var i=r(1847);var n=Object.keys||function(e){var t=[];for(var r in e){t.push(r)}return t};e.exports=Duplex;var o=Object.create(r(9810));o.inherits=r(4070);var a=r(6319);var s=r(227);o.inherits(Duplex,a);{var u=n(s.prototype);for(var l=0;l<u.length;l++){var c=u[l];if(!Duplex.prototype[c])Duplex.prototype[c]=s.prototype[c]}}function Duplex(e){if(!(this instanceof Duplex))return new Duplex(e);a.call(this,e);s.call(this,e);if(e&&e.readable===false)this.readable=false;if(e&&e.writable===false)this.writable=false;this.allowHalfOpen=true;if(e&&e.allowHalfOpen===false)this.allowHalfOpen=false;this.once("end",onend)}Object.defineProperty(Duplex.prototype,"writableHighWaterMark",{enumerable:false,get:function(){return this._writableState.highWaterMark}});function onend(){if(this.allowHalfOpen||this._writableState.ended)return;i.nextTick(onEndNT,this)}function onEndNT(e){e.end()}Object.defineProperty(Duplex.prototype,"destroyed",{get:function(){if(this._readableState===undefined||this._writableState===undefined){return false}return this._readableState.destroyed&&this._writableState.destroyed},set:function(e){if(this._readableState===undefined||this._writableState===undefined){return}this._readableState.destroyed=e;this._writableState.destroyed=e}});Duplex.prototype._destroy=function(e,t){this.push(null);this.end();i.nextTick(t,e)}},7741:function(e,t,r){"use strict";e.exports=PassThrough;var i=r(5167);var n=Object.create(r(9810));n.inherits=r(4070);n.inherits(PassThrough,i);function PassThrough(e){if(!(this instanceof PassThrough))return new PassThrough(e);i.call(this,e)}PassThrough.prototype._transform=function(e,t,r){r(null,e)}},6319:function(e,t,r){"use strict";var i=r(1847);e.exports=Readable;var n=r(4057);var o;Readable.ReadableState=ReadableState;var a=r(4434).EventEmitter;var EElistenerCount=function(e,t){return e.listeners(t).length};var s=r(8705);var u=r(6912).Buffer;var l=(typeof global!=="undefined"?global:typeof window!=="undefined"?window:typeof self!=="undefined"?self:{}).Uint8Array||function(){};function _uint8ArrayToBuffer(e){return u.from(e)}function _isUint8Array(e){return u.isBuffer(e)||e instanceof l}var c=Object.create(r(9810));c.inherits=r(4070);var d=r(9023);var p=void 0;if(d&&d.debuglog){p=d.debuglog("stream")}else{p=function(){}}var h=r(6271);var m=r(3383);var y;c.inherits(Readable,s);var v=["error","close","destroy","pause","resume"];function prependListener(e,t,r){if(typeof e.prependListener==="function")return e.prependListener(t,r);if(!e._events||!e._events[t])e.on(t,r);else if(n(e._events[t]))e._events[t].unshift(r);else e._events[t]=[r,e._events[t]]}function ReadableState(e,t){o=o||r(7561);e=e||{};var i=t instanceof o;this.objectMode=!!e.objectMode;if(i)this.objectMode=this.objectMode||!!e.readableObjectMode;var n=e.highWaterMark;var a=e.readableHighWaterMark;var s=this.objectMode?16:16*1024;if(n||n===0)this.highWaterMark=n;else if(i&&(a||a===0))this.highWaterMark=a;else this.highWaterMark=s;this.highWaterMark=Math.floor(this.highWaterMark);this.buffer=new h;this.length=0;this.pipes=null;this.pipesCount=0;this.flowing=null;this.ended=false;this.endEmitted=false;this.reading=false;this.sync=true;this.needReadable=false;this.emittedReadable=false;this.readableListening=false;this.resumeScheduled=false;this.destroyed=false;this.defaultEncoding=e.defaultEncoding||"utf8";this.awaitDrain=0;this.readingMore=false;this.decoder=null;this.encoding=null;if(e.encoding){if(!y)y=r(8927).I;this.decoder=new y(e.encoding);this.encoding=e.encoding}}function Readable(e){o=o||r(7561);if(!(this instanceof Readable))return new Readable(e);this._readableState=new ReadableState(e,this);this.readable=true;if(e){if(typeof e.read==="function")this._read=e.read;if(typeof e.destroy==="function")this._destroy=e.destroy}s.call(this)}Object.defineProperty(Readable.prototype,"destroyed",{get:function(){if(this._readableState===undefined){return false}return this._readableState.destroyed},set:function(e){if(!this._readableState){return}this._readableState.destroyed=e}});Readable.prototype.destroy=m.destroy;Readable.prototype._undestroy=m.undestroy;Readable.prototype._destroy=function(e,t){this.push(null);t(e)};Readable.prototype.push=function(e,t){var r=this._readableState;var i;if(!r.objectMode){if(typeof e==="string"){t=t||r.defaultEncoding;if(t!==r.encoding){e=u.from(e,t);t=""}i=true}}else{i=true}return readableAddChunk(this,e,t,false,i)};Readable.prototype.unshift=function(e){return readableAddChunk(this,e,null,true,false)};function readableAddChunk(e,t,r,i,n){var o=e._readableState;if(t===null){o.reading=false;onEofChunk(e,o)}else{var a;if(!n)a=chunkInvalid(o,t);if(a){e.emit("error",a)}else if(o.objectMode||t&&t.length>0){if(typeof t!=="string"&&!o.objectMode&&Object.getPrototypeOf(t)!==u.prototype){t=_uint8ArrayToBuffer(t)}if(i){if(o.endEmitted)e.emit("error",new Error("stream.unshift() after end event"));else addChunk(e,o,t,true)}else if(o.ended){e.emit("error",new Error("stream.push() after EOF"))}else{o.reading=false;if(o.decoder&&!r){t=o.decoder.write(t);if(o.objectMode||t.length!==0)addChunk(e,o,t,false);else maybeReadMore(e,o)}else{addChunk(e,o,t,false)}}}else if(!i){o.reading=false}}return needMoreData(o)}function addChunk(e,t,r,i){if(t.flowing&&t.length===0&&!t.sync){e.emit("data",r);e.read(0)}else{t.length+=t.objectMode?1:r.length;if(i)t.buffer.unshift(r);else t.buffer.push(r);if(t.needReadable)emitReadable(e)}maybeReadMore(e,t)}function chunkInvalid(e,t){var r;if(!_isUint8Array(t)&&typeof t!=="string"&&t!==undefined&&!e.objectMode){r=new TypeError("Invalid non-string/buffer chunk")}return r}function needMoreData(e){return!e.ended&&(e.needReadable||e.length<e.highWaterMark||e.length===0)}Readable.prototype.isPaused=function(){return this._readableState.flowing===false};Readable.prototype.setEncoding=function(e){if(!y)y=r(8927).I;this._readableState.decoder=new y(e);this._readableState.encoding=e;return this};var g=8388608;function computeNewHighWaterMark(e){if(e>=g){e=g}else{e--;e|=e>>>1;e|=e>>>2;e|=e>>>4;e|=e>>>8;e|=e>>>16;e++}return e}function howMuchToRead(e,t){if(e<=0||t.length===0&&t.ended)return 0;if(t.objectMode)return 1;if(e!==e){if(t.flowing&&t.length)return t.buffer.head.data.length;else return t.length}if(e>t.highWaterMark)t.highWaterMark=computeNewHighWaterMark(e);if(e<=t.length)return e;if(!t.ended){t.needReadable=true;return 0}return t.length}Readable.prototype.read=function(e){p("read",e);e=parseInt(e,10);var t=this._readableState;var r=e;if(e!==0)t.emittedReadable=false;if(e===0&&t.needReadable&&(t.length>=t.highWaterMark||t.ended)){p("read: emitReadable",t.length,t.ended);if(t.length===0&&t.ended)endReadable(this);else emitReadable(this);return null}e=howMuchToRead(e,t);if(e===0&&t.ended){if(t.length===0)endReadable(this);return null}var i=t.needReadable;p("need readable",i);if(t.length===0||t.length-e<t.highWaterMark){i=true;p("length less than watermark",i)}if(t.ended||t.reading){i=false;p("reading or ended",i)}else if(i){p("do read");t.reading=true;t.sync=true;if(t.length===0)t.needReadable=true;this._read(t.highWaterMark);t.sync=false;if(!t.reading)e=howMuchToRead(r,t)}var n;if(e>0)n=fromList(e,t);else n=null;if(n===null){t.needReadable=true;e=0}else{t.length-=e}if(t.length===0){if(!t.ended)t.needReadable=true;if(r!==e&&t.ended)endReadable(this)}if(n!==null)this.emit("data",n);return n};function onEofChunk(e,t){if(t.ended)return;if(t.decoder){var r=t.decoder.end();if(r&&r.length){t.buffer.push(r);t.length+=t.objectMode?1:r.length}}t.ended=true;emitReadable(e)}function emitReadable(e){var t=e._readableState;t.needReadable=false;if(!t.emittedReadable){p("emitReadable",t.flowing);t.emittedReadable=true;if(t.sync)i.nextTick(emitReadable_,e);else emitReadable_(e)}}function emitReadable_(e){p("emit readable");e.emit("readable");flow(e)}function maybeReadMore(e,t){if(!t.readingMore){t.readingMore=true;i.nextTick(maybeReadMore_,e,t)}}function maybeReadMore_(e,t){var r=t.length;while(!t.reading&&!t.flowing&&!t.ended&&t.length<t.highWaterMark){p("maybeReadMore read 0");e.read(0);if(r===t.length)break;else r=t.length}t.readingMore=false}Readable.prototype._read=function(e){this.emit("error",new Error("_read() is not implemented"))};Readable.prototype.pipe=function(e,t){var r=this;var n=this._readableState;switch(n.pipesCount){case 0:n.pipes=e;break;case 1:n.pipes=[n.pipes,e];break;default:n.pipes.push(e);break}n.pipesCount+=1;p("pipe count=%d opts=%j",n.pipesCount,t);var o=(!t||t.end!==false)&&e!==process.stdout&&e!==process.stderr;var a=o?onend:unpipe;if(n.endEmitted)i.nextTick(a);else r.once("end",a);e.on("unpipe",onunpipe);function onunpipe(e,t){p("onunpipe");if(e===r){if(t&&t.hasUnpiped===false){t.hasUnpiped=true;cleanup()}}}function onend(){p("onend");e.end()}var s=pipeOnDrain(r);e.on("drain",s);var u=false;function cleanup(){p("cleanup");e.removeListener("close",onclose);e.removeListener("finish",onfinish);e.removeListener("drain",s);e.removeListener("error",onerror);e.removeListener("unpipe",onunpipe);r.removeListener("end",onend);r.removeListener("end",unpipe);r.removeListener("data",ondata);u=true;if(n.awaitDrain&&(!e._writableState||e._writableState.needDrain))s()}var l=false;r.on("data",ondata);function ondata(t){p("ondata");l=false;var i=e.write(t);if(false===i&&!l){if((n.pipesCount===1&&n.pipes===e||n.pipesCount>1&&indexOf(n.pipes,e)!==-1)&&!u){p("false write response, pause",n.awaitDrain);n.awaitDrain++;l=true}r.pause()}}function onerror(t){p("onerror",t);unpipe();e.removeListener("error",onerror);if(EElistenerCount(e,"error")===0)e.emit("error",t)}prependListener(e,"error",onerror);function onclose(){e.removeListener("finish",onfinish);unpipe()}e.once("close",onclose);function onfinish(){p("onfinish");e.removeListener("close",onclose);unpipe()}e.once("finish",onfinish);function unpipe(){p("unpipe");r.unpipe(e)}e.emit("pipe",r);if(!n.flowing){p("pipe resume");r.resume()}return e};function pipeOnDrain(e){return function(){var t=e._readableState;p("pipeOnDrain",t.awaitDrain);if(t.awaitDrain)t.awaitDrain--;if(t.awaitDrain===0&&EElistenerCount(e,"data")){t.flowing=true;flow(e)}}}Readable.prototype.unpipe=function(e){var t=this._readableState;var r={hasUnpiped:false};if(t.pipesCount===0)return this;if(t.pipesCount===1){if(e&&e!==t.pipes)return this;if(!e)e=t.pipes;t.pipes=null;t.pipesCount=0;t.flowing=false;if(e)e.emit("unpipe",this,r);return this}if(!e){var i=t.pipes;var n=t.pipesCount;t.pipes=null;t.pipesCount=0;t.flowing=false;for(var o=0;o<n;o++){i[o].emit("unpipe",this,{hasUnpiped:false})}return this}var a=indexOf(t.pipes,e);if(a===-1)return this;t.pipes.splice(a,1);t.pipesCount-=1;if(t.pipesCount===1)t.pipes=t.pipes[0];e.emit("unpipe",this,r);return this};Readable.prototype.on=function(e,t){var r=s.prototype.on.call(this,e,t);if(e==="data"){if(this._readableState.flowing!==false)this.resume()}else if(e==="readable"){var n=this._readableState;if(!n.endEmitted&&!n.readableListening){n.readableListening=n.needReadable=true;n.emittedReadable=false;if(!n.reading){i.nextTick(nReadingNextTick,this)}else if(n.length){emitReadable(this)}}}return r};Readable.prototype.addListener=Readable.prototype.on;function nReadingNextTick(e){p("readable nexttick read 0");e.read(0)}Readable.prototype.resume=function(){var e=this._readableState;if(!e.flowing){p("resume");e.flowing=true;resume(this,e)}return this};function resume(e,t){if(!t.resumeScheduled){t.resumeScheduled=true;i.nextTick(resume_,e,t)}}function resume_(e,t){if(!t.reading){p("resume read 0");e.read(0)}t.resumeScheduled=false;t.awaitDrain=0;e.emit("resume");flow(e);if(t.flowing&&!t.reading)e.read(0)}Readable.prototype.pause=function(){p("call pause flowing=%j",this._readableState.flowing);if(false!==this._readableState.flowing){p("pause");this._readableState.flowing=false;this.emit("pause")}return this};function flow(e){var t=e._readableState;p("flow",t.flowing);while(t.flowing&&e.read()!==null){}}Readable.prototype.wrap=function(e){var t=this;var r=this._readableState;var i=false;e.on("end",(function(){p("wrapped end");if(r.decoder&&!r.ended){var e=r.decoder.end();if(e&&e.length)t.push(e)}t.push(null)}));e.on("data",(function(n){p("wrapped data");if(r.decoder)n=r.decoder.write(n);if(r.objectMode&&(n===null||n===undefined))return;else if(!r.objectMode&&(!n||!n.length))return;var o=t.push(n);if(!o){i=true;e.pause()}}));for(var n in e){if(this[n]===undefined&&typeof e[n]==="function"){this[n]=function(t){return function(){return e[t].apply(e,arguments)}}(n)}}for(var o=0;o<v.length;o++){e.on(v[o],this.emit.bind(this,v[o]))}this._read=function(t){p("wrapped _read",t);if(i){i=false;e.resume()}};return this};Object.defineProperty(Readable.prototype,"readableHighWaterMark",{enumerable:false,get:function(){return this._readableState.highWaterMark}});Readable._fromList=fromList;function fromList(e,t){if(t.length===0)return null;var r;if(t.objectMode)r=t.buffer.shift();else if(!e||e>=t.length){if(t.decoder)r=t.buffer.join("");else if(t.buffer.length===1)r=t.buffer.head.data;else r=t.buffer.concat(t.length);t.buffer.clear()}else{r=fromListPartial(e,t.buffer,t.decoder)}return r}function fromListPartial(e,t,r){var i;if(e<t.head.data.length){i=t.head.data.slice(0,e);t.head.data=t.head.data.slice(e)}else if(e===t.head.data.length){i=t.shift()}else{i=r?copyFromBufferString(e,t):copyFromBuffer(e,t)}return i}function copyFromBufferString(e,t){var r=t.head;var i=1;var n=r.data;e-=n.length;while(r=r.next){var o=r.data;var a=e>o.length?o.length:e;if(a===o.length)n+=o;else n+=o.slice(0,e);e-=a;if(e===0){if(a===o.length){++i;if(r.next)t.head=r.next;else t.head=t.tail=null}else{t.head=r;r.data=o.slice(a)}break}++i}t.length-=i;return n}function copyFromBuffer(e,t){var r=u.allocUnsafe(e);var i=t.head;var n=1;i.data.copy(r);e-=i.data.length;while(i=i.next){var o=i.data;var a=e>o.length?o.length:e;o.copy(r,r.length-e,0,a);e-=a;if(e===0){if(a===o.length){++n;if(i.next)t.head=i.next;else t.head=t.tail=null}else{t.head=i;i.data=o.slice(a)}break}++n}t.length-=n;return r}function endReadable(e){var t=e._readableState;if(t.length>0)throw new Error('"endReadable()" called on non-empty stream');if(!t.endEmitted){t.ended=true;i.nextTick(endReadableNT,t,e)}}function endReadableNT(e,t){if(!e.endEmitted&&e.length===0){e.endEmitted=true;t.readable=false;t.emit("end")}}function indexOf(e,t){for(var r=0,i=e.length;r<i;r++){if(e[r]===t)return r}return-1}},5167:function(e,t,r){"use strict";e.exports=Transform;var i=r(7561);var n=Object.create(r(9810));n.inherits=r(4070);n.inherits(Transform,i);function afterTransform(e,t){var r=this._transformState;r.transforming=false;var i=r.writecb;if(!i){return this.emit("error",new Error("write callback called multiple times"))}r.writechunk=null;r.writecb=null;if(t!=null)this.push(t);i(e);var n=this._readableState;n.reading=false;if(n.needReadable||n.length<n.highWaterMark){this._read(n.highWaterMark)}}function Transform(e){if(!(this instanceof Transform))return new Transform(e);i.call(this,e);this._transformState={afterTransform:afterTransform.bind(this),needTransform:false,transforming:false,writecb:null,writechunk:null,writeencoding:null};this._readableState.needReadable=true;this._readableState.sync=false;if(e){if(typeof e.transform==="function")this._transform=e.transform;if(typeof e.flush==="function")this._flush=e.flush}this.on("prefinish",prefinish)}function prefinish(){var e=this;if(typeof this._flush==="function"){this._flush((function(t,r){done(e,t,r)}))}else{done(this,null,null)}}Transform.prototype.push=function(e,t){this._transformState.needTransform=false;return i.prototype.push.call(this,e,t)};Transform.prototype._transform=function(e,t,r){throw new Error("_transform() is not implemented")};Transform.prototype._write=function(e,t,r){var i=this._transformState;i.writecb=r;i.writechunk=e;i.writeencoding=t;if(!i.transforming){var n=this._readableState;if(i.needTransform||n.needReadable||n.length<n.highWaterMark)this._read(n.highWaterMark)}};Transform.prototype._read=function(e){var t=this._transformState;if(t.writechunk!==null&&t.writecb&&!t.transforming){t.transforming=true;this._transform(t.writechunk,t.writeencoding,t.afterTransform)}else{t.needTransform=true}};Transform.prototype._destroy=function(e,t){var r=this;i.prototype._destroy.call(this,e,(function(e){t(e);r.emit("close")}))};function done(e,t,r){if(t)return e.emit("error",t);if(r!=null)e.push(r);if(e._writableState.length)throw new Error("Calling transform done when ws.length != 0");if(e._transformState.transforming)throw new Error("Calling transform done when still transforming");return e.push(null)}},227:function(e,t,r){"use strict";var i=r(1847);e.exports=Writable;function WriteReq(e,t,r){this.chunk=e;this.encoding=t;this.callback=r;this.next=null}function CorkedRequest(e){var t=this;this.next=null;this.entry=null;this.finish=function(){onCorkedFinish(t,e)}}var n=!process.browser&&["v0.10","v0.9."].indexOf(process.version.slice(0,5))>-1?setImmediate:i.nextTick;var o;Writable.WritableState=WritableState;var a=Object.create(r(9810));a.inherits=r(4070);var s={deprecate:r(9987)};var u=r(8705);var l=r(6912).Buffer;var c=(typeof global!=="undefined"?global:typeof window!=="undefined"?window:typeof self!=="undefined"?self:{}).Uint8Array||function(){};function _uint8ArrayToBuffer(e){return l.from(e)}function _isUint8Array(e){return l.isBuffer(e)||e instanceof c}var d=r(3383);a.inherits(Writable,u);function nop(){}function WritableState(e,t){o=o||r(7561);e=e||{};var i=t instanceof o;this.objectMode=!!e.objectMode;if(i)this.objectMode=this.objectMode||!!e.writableObjectMode;var n=e.highWaterMark;var a=e.writableHighWaterMark;var s=this.objectMode?16:16*1024;if(n||n===0)this.highWaterMark=n;else if(i&&(a||a===0))this.highWaterMark=a;else this.highWaterMark=s;this.highWaterMark=Math.floor(this.highWaterMark);this.finalCalled=false;this.needDrain=false;this.ending=false;this.ended=false;this.finished=false;this.destroyed=false;var u=e.decodeStrings===false;this.decodeStrings=!u;this.defaultEncoding=e.defaultEncoding||"utf8";this.length=0;this.writing=false;this.corked=0;this.sync=true;this.bufferProcessing=false;this.onwrite=function(e){onwrite(t,e)};this.writecb=null;this.writelen=0;this.bufferedRequest=null;this.lastBufferedRequest=null;this.pendingcb=0;this.prefinished=false;this.errorEmitted=false;this.bufferedRequestCount=0;this.corkedRequestsFree=new CorkedRequest(this)}WritableState.prototype.getBuffer=function getBuffer(){var e=this.bufferedRequest;var t=[];while(e){t.push(e);e=e.next}return t};(function(){try{Object.defineProperty(WritableState.prototype,"buffer",{get:s.deprecate((function(){return this.getBuffer()}),"_writableState.buffer is deprecated. Use _writableState.getBuffer "+"instead.","DEP0003")})}catch(e){}})();var p;if(typeof Symbol==="function"&&Symbol.hasInstance&&typeof Function.prototype[Symbol.hasInstance]==="function"){p=Function.prototype[Symbol.hasInstance];Object.defineProperty(Writable,Symbol.hasInstance,{value:function(e){if(p.call(this,e))return true;if(this!==Writable)return false;return e&&e._writableState instanceof WritableState}})}else{p=function(e){return e instanceof this}}function Writable(e){o=o||r(7561);if(!p.call(Writable,this)&&!(this instanceof o)){return new Writable(e)}this._writableState=new WritableState(e,this);this.writable=true;if(e){if(typeof e.write==="function")this._write=e.write;if(typeof e.writev==="function")this._writev=e.writev;if(typeof e.destroy==="function")this._destroy=e.destroy;if(typeof e.final==="function")this._final=e.final}u.call(this)}Writable.prototype.pipe=function(){this.emit("error",new Error("Cannot pipe, not readable"))};function writeAfterEnd(e,t){var r=new Error("write after end");e.emit("error",r);i.nextTick(t,r)}function validChunk(e,t,r,n){var o=true;var a=false;if(r===null){a=new TypeError("May not write null values to stream")}else if(typeof r!=="string"&&r!==undefined&&!t.objectMode){a=new TypeError("Invalid non-string/buffer chunk")}if(a){e.emit("error",a);i.nextTick(n,a);o=false}return o}Writable.prototype.write=function(e,t,r){var i=this._writableState;var n=false;var o=!i.objectMode&&_isUint8Array(e);if(o&&!l.isBuffer(e)){e=_uint8ArrayToBuffer(e)}if(typeof t==="function"){r=t;t=null}if(o)t="buffer";else if(!t)t=i.defaultEncoding;if(typeof r!=="function")r=nop;if(i.ended)writeAfterEnd(this,r);else if(o||validChunk(this,i,e,r)){i.pendingcb++;n=writeOrBuffer(this,i,o,e,t,r)}return n};Writable.prototype.cork=function(){var e=this._writableState;e.corked++};Writable.prototype.uncork=function(){var e=this._writableState;if(e.corked){e.corked--;if(!e.writing&&!e.corked&&!e.bufferProcessing&&e.bufferedRequest)clearBuffer(this,e)}};Writable.prototype.setDefaultEncoding=function setDefaultEncoding(e){if(typeof e==="string")e=e.toLowerCase();if(!(["hex","utf8","utf-8","ascii","binary","base64","ucs2","ucs-2","utf16le","utf-16le","raw"].indexOf((e+"").toLowerCase())>-1))throw new TypeError("Unknown encoding: "+e);this._writableState.defaultEncoding=e;return this};function decodeChunk(e,t,r){if(!e.objectMode&&e.decodeStrings!==false&&typeof t==="string"){t=l.from(t,r)}return t}Object.defineProperty(Writable.prototype,"writableHighWaterMark",{enumerable:false,get:function(){return this._writableState.highWaterMark}});function writeOrBuffer(e,t,r,i,n,o){if(!r){var a=decodeChunk(t,i,n);if(i!==a){r=true;n="buffer";i=a}}var s=t.objectMode?1:i.length;t.length+=s;var u=t.length<t.highWaterMark;if(!u)t.needDrain=true;if(t.writing||t.corked){var l=t.lastBufferedRequest;t.lastBufferedRequest={chunk:i,encoding:n,isBuf:r,callback:o,next:null};if(l){l.next=t.lastBufferedRequest}else{t.bufferedRequest=t.lastBufferedRequest}t.bufferedRequestCount+=1}else{doWrite(e,t,false,s,i,n,o)}return u}function doWrite(e,t,r,i,n,o,a){t.writelen=i;t.writecb=a;t.writing=true;t.sync=true;if(r)e._writev(n,t.onwrite);else e._write(n,o,t.onwrite);t.sync=false}function onwriteError(e,t,r,n,o){--t.pendingcb;if(r){i.nextTick(o,n);i.nextTick(finishMaybe,e,t);e._writableState.errorEmitted=true;e.emit("error",n)}else{o(n);e._writableState.errorEmitted=true;e.emit("error",n);finishMaybe(e,t)}}function onwriteStateUpdate(e){e.writing=false;e.writecb=null;e.length-=e.writelen;e.writelen=0}function onwrite(e,t){var r=e._writableState;var i=r.sync;var o=r.writecb;onwriteStateUpdate(r);if(t)onwriteError(e,r,i,t,o);else{var a=needFinish(r);if(!a&&!r.corked&&!r.bufferProcessing&&r.bufferedRequest){clearBuffer(e,r)}if(i){n(afterWrite,e,r,a,o)}else{afterWrite(e,r,a,o)}}}function afterWrite(e,t,r,i){if(!r)onwriteDrain(e,t);t.pendingcb--;i();finishMaybe(e,t)}function onwriteDrain(e,t){if(t.length===0&&t.needDrain){t.needDrain=false;e.emit("drain")}}function clearBuffer(e,t){t.bufferProcessing=true;var r=t.bufferedRequest;if(e._writev&&r&&r.next){var i=t.bufferedRequestCount;var n=new Array(i);var o=t.corkedRequestsFree;o.entry=r;var a=0;var s=true;while(r){n[a]=r;if(!r.isBuf)s=false;r=r.next;a+=1}n.allBuffers=s;doWrite(e,t,true,t.length,n,"",o.finish);t.pendingcb++;t.lastBufferedRequest=null;if(o.next){t.corkedRequestsFree=o.next;o.next=null}else{t.corkedRequestsFree=new CorkedRequest(t)}t.bufferedRequestCount=0}else{while(r){var u=r.chunk;var l=r.encoding;var c=r.callback;var d=t.objectMode?1:u.length;doWrite(e,t,false,d,u,l,c);r=r.next;t.bufferedRequestCount--;if(t.writing){break}}if(r===null)t.lastBufferedRequest=null}t.bufferedRequest=r;t.bufferProcessing=false}Writable.prototype._write=function(e,t,r){r(new Error("_write() is not implemented"))};Writable.prototype._writev=null;Writable.prototype.end=function(e,t,r){var i=this._writableState;if(typeof e==="function"){r=e;e=null;t=null}else if(typeof t==="function"){r=t;t=null}if(e!==null&&e!==undefined)this.write(e,t);if(i.corked){i.corked=1;this.uncork()}if(!i.ending)endWritable(this,i,r)};function needFinish(e){return e.ending&&e.length===0&&e.bufferedRequest===null&&!e.finished&&!e.writing}function callFinal(e,t){e._final((function(r){t.pendingcb--;if(r){e.emit("error",r)}t.prefinished=true;e.emit("prefinish");finishMaybe(e,t)}))}function prefinish(e,t){if(!t.prefinished&&!t.finalCalled){if(typeof e._final==="function"){t.pendingcb++;t.finalCalled=true;i.nextTick(callFinal,e,t)}else{t.prefinished=true;e.emit("prefinish")}}}function finishMaybe(e,t){var r=needFinish(t);if(r){prefinish(e,t);if(t.pendingcb===0){t.finished=true;e.emit("finish")}}return r}function endWritable(e,t,r){t.ending=true;finishMaybe(e,t);if(r){if(t.finished)i.nextTick(r);else e.once("finish",r)}t.ended=true;e.writable=false}function onCorkedFinish(e,t,r){var i=e.entry;e.entry=null;while(i){var n=i.callback;t.pendingcb--;n(r);i=i.next}t.corkedRequestsFree.next=e}Object.defineProperty(Writable.prototype,"destroyed",{get:function(){if(this._writableState===undefined){return false}return this._writableState.destroyed},set:function(e){if(!this._writableState){return}this._writableState.destroyed=e}});Writable.prototype.destroy=d.destroy;Writable.prototype._undestroy=d.undestroy;Writable.prototype._destroy=function(e,t){this.end();t(e)}},6271:function(e,t,r){"use strict";function _classCallCheck(e,t){if(!(e instanceof t)){throw new TypeError("Cannot call a class as a function")}}var i=r(6912).Buffer;var n=r(9023);function copyBuffer(e,t,r){e.copy(t,r)}e.exports=function(){function BufferList(){_classCallCheck(this,BufferList);this.head=null;this.tail=null;this.length=0}BufferList.prototype.push=function push(e){var t={data:e,next:null};if(this.length>0)this.tail.next=t;else this.head=t;this.tail=t;++this.length};BufferList.prototype.unshift=function unshift(e){var t={data:e,next:this.head};if(this.length===0)this.tail=t;this.head=t;++this.length};BufferList.prototype.shift=function shift(){if(this.length===0)return;var e=this.head.data;if(this.length===1)this.head=this.tail=null;else this.head=this.head.next;--this.length;return e};BufferList.prototype.clear=function clear(){this.head=this.tail=null;this.length=0};BufferList.prototype.join=function join(e){if(this.length===0)return"";var t=this.head;var r=""+t.data;while(t=t.next){r+=e+t.data}return r};BufferList.prototype.concat=function concat(e){if(this.length===0)return i.alloc(0);var t=i.allocUnsafe(e>>>0);var r=this.head;var n=0;while(r){copyBuffer(r.data,t,n);n+=r.data.length;r=r.next}return t};return BufferList}();if(n&&n.inspect&&n.inspect.custom){e.exports.prototype[n.inspect.custom]=function(){var e=n.inspect({length:this.length});return this.constructor.name+" "+e}}},3383:function(e,t,r){"use strict";var i=r(1847);function destroy(e,t){var r=this;var n=this._readableState&&this._readableState.destroyed;var o=this._writableState&&this._writableState.destroyed;if(n||o){if(t){t(e)}else if(e){if(!this._writableState){i.nextTick(emitErrorNT,this,e)}else if(!this._writableState.errorEmitted){this._writableState.errorEmitted=true;i.nextTick(emitErrorNT,this,e)}}return this}if(this._readableState){this._readableState.destroyed=true}if(this._writableState){this._writableState.destroyed=true}this._destroy(e||null,(function(e){if(!t&&e){if(!r._writableState){i.nextTick(emitErrorNT,r,e)}else if(!r._writableState.errorEmitted){r._writableState.errorEmitted=true;i.nextTick(emitErrorNT,r,e)}}else if(t){t(e)}}));return this}function undestroy(){if(this._readableState){this._readableState.destroyed=false;this._readableState.reading=false;this._readableState.ended=false;this._readableState.endEmitted=false}if(this._writableState){this._writableState.destroyed=false;this._writableState.ended=false;this._writableState.ending=false;this._writableState.finalCalled=false;this._writableState.prefinished=false;this._writableState.finished=false;this._writableState.errorEmitted=false}}function emitErrorNT(e,t){e.emit("error",t)}e.exports={destroy:destroy,undestroy:undestroy}},8705:function(e,t,r){e.exports=r(2203)},1397:function(e,t,r){var i=r(2203);if(process.env.READABLE_STREAM==="disable"&&i){e.exports=i;t=e.exports=i.Readable;t.Readable=i.Readable;t.Writable=i.Writable;t.Duplex=i.Duplex;t.Transform=i.Transform;t.PassThrough=i.PassThrough;t.Stream=i}else{t=e.exports=r(6319);t.Stream=i||t;t.Readable=t;t.Writable=r(227);t.Duplex=r(7561);t.Transform=r(5167);t.PassThrough=r(7741)}},6912:function(e,t,r){var i=r(181);var n=i.Buffer;function copyProps(e,t){for(var r in e){t[r]=e[r]}}if(n.from&&n.alloc&&n.allocUnsafe&&n.allocUnsafeSlow){e.exports=i}else{copyProps(i,t);t.Buffer=SafeBuffer}function SafeBuffer(e,t,r){return n(e,t,r)}copyProps(n,SafeBuffer);SafeBuffer.from=function(e,t,r){if(typeof e==="number"){throw new TypeError("Argument must not be a number")}return n(e,t,r)};SafeBuffer.alloc=function(e,t,r){if(typeof e!=="number"){throw new TypeError("Argument must be a number")}var i=n(e);if(t!==undefined){if(typeof r==="string"){i.fill(t,r)}else{i.fill(t)}}else{i.fill(0)}return i};SafeBuffer.allocUnsafe=function(e){if(typeof e!=="number"){throw new TypeError("Argument must be a number")}return n(e)};SafeBuffer.allocUnsafeSlow=function(e){if(typeof e!=="number"){throw new TypeError("Argument must be a number")}return i.SlowBuffer(e)}},3476:function(e,t,r){
11
- /*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
12
- var i=r(181);var n=i.Buffer;function copyProps(e,t){for(var r in e){t[r]=e[r]}}if(n.from&&n.alloc&&n.allocUnsafe&&n.allocUnsafeSlow){e.exports=i}else{copyProps(i,t);t.Buffer=SafeBuffer}function SafeBuffer(e,t,r){return n(e,t,r)}SafeBuffer.prototype=Object.create(n.prototype);copyProps(n,SafeBuffer);SafeBuffer.from=function(e,t,r){if(typeof e==="number"){throw new TypeError("Argument must not be a number")}return n(e,t,r)};SafeBuffer.alloc=function(e,t,r){if(typeof e!=="number"){throw new TypeError("Argument must be a number")}var i=n(e);if(t!==undefined){if(typeof r==="string"){i.fill(t,r)}else{i.fill(t)}}else{i.fill(0)}return i};SafeBuffer.allocUnsafe=function(e){if(typeof e!=="number"){throw new TypeError("Argument must be a number")}return n(e)};SafeBuffer.allocUnsafeSlow=function(e){if(typeof e!=="number"){throw new TypeError("Argument must be a number")}return i.SlowBuffer(e)}},2001:function(e){var t=[0,1,3,7,15,31,63,127,255];var BitReader=function(e){this.stream=e;this.bitOffset=0;this.curByte=0;this.hasByte=false};BitReader.prototype._ensureByte=function(){if(!this.hasByte){this.curByte=this.stream.readByte();this.hasByte=true}};BitReader.prototype.read=function(e){var r=0;while(e>0){this._ensureByte();var i=8-this.bitOffset;if(e>=i){r<<=i;r|=t[i]&this.curByte;this.hasByte=false;this.bitOffset=0;e-=i}else{r<<=e;var n=i-e;r|=(this.curByte&t[e]<<n)>>n;this.bitOffset+=e;e=0}}return r};BitReader.prototype.seek=function(e){var t=e%8;var r=(e-t)/8;this.bitOffset=t;this.stream.seek(r);this.hasByte=false};BitReader.prototype.pi=function(){var e=new Buffer(6),t;for(t=0;t<e.length;t++){e[t]=this.read(8)}return e.toString("hex")};e.exports=BitReader},3954:function(e){e.exports=function(){var e=new Uint32Array([0,79764919,159529838,222504665,319059676,398814059,445009330,507990021,638119352,583659535,797628118,726387553,890018660,835552979,1015980042,944750013,1276238704,1221641927,1167319070,1095957929,1595256236,1540665371,1452775106,1381403509,1780037320,1859660671,1671105958,1733955601,2031960084,2111593891,1889500026,1952343757,2552477408,2632100695,2443283854,2506133561,2334638140,2414271883,2191915858,2254759653,3190512472,3135915759,3081330742,3009969537,2905550212,2850959411,2762807018,2691435357,3560074640,3505614887,3719321342,3648080713,3342211916,3287746299,3467911202,3396681109,4063920168,4143685023,4223187782,4286162673,3779000052,3858754371,3904687514,3967668269,881225847,809987520,1023691545,969234094,662832811,591600412,771767749,717299826,311336399,374308984,453813921,533576470,25881363,88864420,134795389,214552010,2023205639,2086057648,1897238633,1976864222,1804852699,1867694188,1645340341,1724971778,1587496639,1516133128,1461550545,1406951526,1302016099,1230646740,1142491917,1087903418,2896545431,2825181984,2770861561,2716262478,3215044683,3143675388,3055782693,3001194130,2326604591,2389456536,2200899649,2280525302,2578013683,2640855108,2418763421,2498394922,3769900519,3832873040,3912640137,3992402750,4088425275,4151408268,4197601365,4277358050,3334271071,3263032808,3476998961,3422541446,3585640067,3514407732,3694837229,3640369242,1762451694,1842216281,1619975040,1682949687,2047383090,2127137669,1938468188,2001449195,1325665622,1271206113,1183200824,1111960463,1543535498,1489069629,1434599652,1363369299,622672798,568075817,748617968,677256519,907627842,853037301,1067152940,995781531,51762726,131386257,177728840,240578815,269590778,349224269,429104020,491947555,4046411278,4126034873,4172115296,4234965207,3794477266,3874110821,3953728444,4016571915,3609705398,3555108353,3735388376,3664026991,3290680682,3236090077,3449943556,3378572211,3174993278,3120533705,3032266256,2961025959,2923101090,2868635157,2813903052,2742672763,2604032198,2683796849,2461293480,2524268063,2284983834,2364738477,2175806836,2238787779,1569362073,1498123566,1409854455,1355396672,1317987909,1246755826,1192025387,1137557660,2072149281,2135122070,1912620623,1992383480,1753615357,1816598090,1627664531,1707420964,295390185,358241886,404320391,483945776,43990325,106832002,186451547,266083308,932423249,861060070,1041341759,986742920,613929101,542559546,756411363,701822548,3316196985,3244833742,3425377559,3370778784,3601682597,3530312978,3744426955,3689838204,3819031489,3881883254,3928223919,4007849240,4037393693,4100235434,4180117107,4259748804,2310601993,2373574846,2151335527,2231098320,2596047829,2659030626,2470359227,2550115596,2947551409,2876312838,2788305887,2733848168,3165939309,3094707162,3040238851,2985771188]);var CRC32=function(){var t=4294967295;this.getCRC=function(){return~t>>>0};this.updateCRC=function(r){t=t<<8^e[(t>>>24^r)&255]};this.updateCRCRun=function(r,i){while(i-- >0){t=t<<8^e[(t>>>24^r)&255]}}};return CRC32}()},3329:function(e,t,r){var i=r(2001);var n=r(4725);var o=r(3954);var a=r(8453);var s=20;var u=258;var l=0;var c=1;var d=2;var p=6;var h=50;var m="314159265359";var y="177245385090";var mtf=function(e,t){var r=e[t],i;for(i=t;i>0;i--){e[i]=e[i-1]}e[0]=r;return r};var v={OK:0,LAST_BLOCK:-1,NOT_BZIP_DATA:-2,UNEXPECTED_INPUT_EOF:-3,UNEXPECTED_OUTPUT_EOF:-4,DATA_ERROR:-5,OUT_OF_MEMORY:-6,OBSOLETE_INPUT:-7,END_OF_BLOCK:-8};var g={};g[v.LAST_BLOCK]="Bad file checksum";g[v.NOT_BZIP_DATA]="Not bzip data";g[v.UNEXPECTED_INPUT_EOF]="Unexpected input EOF";g[v.UNEXPECTED_OUTPUT_EOF]="Unexpected output EOF";g[v.DATA_ERROR]="Data error";g[v.OUT_OF_MEMORY]="Out of memory";g[v.OBSOLETE_INPUT]="Obsolete (pre 0.9.5) bzip format not supported.";var _throw=function(e,t){var r=g[e]||"unknown error";if(t){r+=": "+t}var i=new TypeError(r);i.errorCode=e;throw i};var Bunzip=function(e,t){this.writePos=this.writeCurrent=this.writeCount=0;this._start_bunzip(e,t)};Bunzip.prototype._init_block=function(){var e=this._get_next_block();if(!e){this.writeCount=-1;return false}this.blockCRC=new o;return true};Bunzip.prototype._start_bunzip=function(e,t){var r=new Buffer(4);if(e.read(r,0,4)!==4||String.fromCharCode(r[0],r[1],r[2])!=="BZh")_throw(v.NOT_BZIP_DATA,"bad magic");var n=r[3]-48;if(n<1||n>9)_throw(v.NOT_BZIP_DATA,"level out of range");this.reader=new i(e);this.dbufSize=1e5*n;this.nextoutput=0;this.outputStream=t;this.streamCRC=0};Bunzip.prototype._get_next_block=function(){var e,t,r;var i=this.reader;var n=i.pi();if(n===y){return false}if(n!==m)_throw(v.NOT_BZIP_DATA);this.targetBlockCRC=i.read(32)>>>0;this.streamCRC=(this.targetBlockCRC^(this.streamCRC<<1|this.streamCRC>>>31))>>>0;if(i.read(1))_throw(v.OBSOLETE_INPUT);var o=i.read(24);if(o>this.dbufSize)_throw(v.DATA_ERROR,"initial position out of bounds");var a=i.read(16);var g=new Buffer(256),b=0;for(e=0;e<16;e++){if(a&1<<15-e){var w=e*16;r=i.read(16);for(t=0;t<16;t++)if(r&1<<15-t)g[b++]=w+t}}var x=i.read(3);if(x<d||x>p)_throw(v.DATA_ERROR);var _=i.read(15);if(_===0)_throw(v.DATA_ERROR);var E=new Buffer(256);for(e=0;e<x;e++)E[e]=e;var S=new Buffer(_);for(e=0;e<_;e++){for(t=0;i.read(1);t++)if(t>=x)_throw(v.DATA_ERROR);S[e]=mtf(E,t)}var k=b+2;var B=[],R;for(t=0;t<x;t++){var C=new Buffer(k),T=new Uint16Array(s+1);a=i.read(5);for(e=0;e<k;e++){for(;;){if(a<1||a>s)_throw(v.DATA_ERROR);if(!i.read(1))break;if(!i.read(1))a++;else a--}C[e]=a}var O,A;O=A=C[0];for(e=1;e<k;e++){if(C[e]>A)A=C[e];else if(C[e]<O)O=C[e]}R={};B.push(R);R.permute=new Uint16Array(u);R.limit=new Uint32Array(s+2);R.base=new Uint32Array(s+1);R.minLen=O;R.maxLen=A;var L=0;for(e=O;e<=A;e++){T[e]=R.limit[e]=0;for(a=0;a<k;a++)if(C[a]===e)R.permute[L++]=a}for(e=0;e<k;e++)T[C[e]]++;L=a=0;for(e=O;e<A;e++){L+=T[e];R.limit[e]=L-1;L<<=1;a+=T[e];R.base[e+1]=L-a}R.limit[A+1]=Number.MAX_VALUE;R.limit[A]=L+T[A]-1;R.base[O]=0}var F=new Uint32Array(256);for(e=0;e<256;e++)E[e]=e;var z=0,j=0,P=0,N;var I=this.dbuf=new Uint32Array(this.dbufSize);k=0;for(;;){if(!k--){k=h-1;if(P>=_){_throw(v.DATA_ERROR)}R=B[S[P++]]}e=R.minLen;t=i.read(e);for(;;e++){if(e>R.maxLen){_throw(v.DATA_ERROR)}if(t<=R.limit[e])break;t=t<<1|i.read(1)}t-=R.base[e];if(t<0||t>=u){_throw(v.DATA_ERROR)}var M=R.permute[t];if(M===l||M===c){if(!z){z=1;a=0}if(M===l)a+=z;else a+=2*z;z<<=1;continue}if(z){z=0;if(j+a>this.dbufSize){_throw(v.DATA_ERROR)}N=g[E[0]];F[N]+=a;while(a--)I[j++]=N}if(M>b)break;if(j>=this.dbufSize){_throw(v.DATA_ERROR)}e=M-1;N=mtf(E,e);N=g[N];F[N]++;I[j++]=N}if(o<0||o>=j){_throw(v.DATA_ERROR)}t=0;for(e=0;e<256;e++){r=t+F[e];F[e]=t;t=r}for(e=0;e<j;e++){N=I[e]&255;I[F[N]]|=e<<8;F[N]++}var U=0,D=0,W=0;if(j){U=I[o];D=U&255;U>>=8;W=-1}this.writePos=U;this.writeCurrent=D;this.writeCount=j;this.writeRun=W;return true};Bunzip.prototype._read_bunzip=function(e,t){var r,i,n;if(this.writeCount<0){return 0}var o=0;var a=this.dbuf,s=this.writePos,u=this.writeCurrent;var l=this.writeCount,c=this.outputsize;var d=this.writeRun;while(l){l--;i=u;s=a[s];u=s&255;s>>=8;if(d++===3){r=u;n=i;u=-1}else{r=1;n=u}this.blockCRC.updateCRCRun(n,r);while(r--){this.outputStream.writeByte(n);this.nextoutput++}if(u!=i)d=0}this.writeCount=l;if(this.blockCRC.getCRC()!==this.targetBlockCRC){_throw(v.DATA_ERROR,"Bad block CRC "+"(got "+this.blockCRC.getCRC().toString(16)+" expected "+this.targetBlockCRC.toString(16)+")")}return this.nextoutput};var coerceInputStream=function(e){if("readByte"in e){return e}var t=new n;t.pos=0;t.readByte=function(){return e[this.pos++]};t.seek=function(e){this.pos=e};t.eof=function(){return this.pos>=e.length};return t};var coerceOutputStream=function(e){var t=new n;var r=true;if(e){if(typeof e==="number"){t.buffer=new Buffer(e);r=false}else if("writeByte"in e){return e}else{t.buffer=e;r=false}}else{t.buffer=new Buffer(16384)}t.pos=0;t.writeByte=function(e){if(r&&this.pos>=this.buffer.length){var t=new Buffer(this.buffer.length*2);this.buffer.copy(t);this.buffer=t}this.buffer[this.pos++]=e};t.getBuffer=function(){if(this.pos!==this.buffer.length){if(!r)throw new TypeError("outputsize does not match decoded input");var e=new Buffer(this.pos);this.buffer.copy(e,0,0,this.pos);this.buffer=e}return this.buffer};t._coerced=true;return t};Bunzip.Err=v;Bunzip.decode=function(e,t,r){var i=coerceInputStream(e);var n=coerceOutputStream(t);var o=new Bunzip(i,n);while(true){if("eof"in i&&i.eof())break;if(o._init_block()){o._read_bunzip()}else{var a=o.reader.read(32)>>>0;if(a!==o.streamCRC){_throw(v.DATA_ERROR,"Bad stream CRC "+"(got "+o.streamCRC.toString(16)+" expected "+a.toString(16)+")")}if(r&&"eof"in i&&!i.eof()){o._start_bunzip(i,n)}else break}}if("getBuffer"in n)return n.getBuffer()};Bunzip.decodeBlock=function(e,t,r){var i=coerceInputStream(e);var n=coerceOutputStream(r);var a=new Bunzip(i,n);a.reader.seek(t);var s=a._get_next_block();if(s){a.blockCRC=new o;a.writeCopies=0;a._read_bunzip()}if("getBuffer"in n)return n.getBuffer()};Bunzip.table=function(e,t,r){var i=new n;i.delegate=coerceInputStream(e);i.pos=0;i.readByte=function(){this.pos++;return this.delegate.readByte()};if(i.delegate.eof){i.eof=i.delegate.eof.bind(i.delegate)}var o=new n;o.pos=0;o.writeByte=function(){this.pos++};var a=new Bunzip(i,o);var s=a.dbufSize;while(true){if("eof"in i&&i.eof())break;var u=i.pos*8+a.reader.bitOffset;if(a.reader.hasByte){u-=8}if(a._init_block()){var l=o.pos;a._read_bunzip();t(u,o.pos-l)}else{var c=a.reader.read(32);if(r&&"eof"in i&&!i.eof()){a._start_bunzip(i,o);console.assert(a.dbufSize===s,"shouldn't change block size within multistream file")}else break}}};Bunzip.Stream=n;Bunzip.version=a.version;Bunzip.license=a.license;e.exports=Bunzip},4725:function(e){var Stream=function(){};Stream.prototype.readByte=function(){throw new Error("abstract method readByte() not implemented")};Stream.prototype.read=function(e,t,r){var i=0;while(i<r){var n=this.readByte();if(n<0){return i===0?-1:i}e[t++]=n;i++}return i};Stream.prototype.seek=function(e){throw new Error("abstract method seek() not implemented")};Stream.prototype.writeByte=function(e){throw new Error("abstract method readByte() not implemented")};Stream.prototype.write=function(e,t,r){var i;for(i=0;i<r;i++){this.writeByte(e[t++])}return r};Stream.prototype.flush=function(){};e.exports=Stream},8927:function(e,t,r){"use strict";var i=r(6912).Buffer;var n=i.isEncoding||function(e){e=""+e;switch(e&&e.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return true;default:return false}};function _normalizeEncoding(e){if(!e)return"utf8";var t;while(true){switch(e){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return e;default:if(t)return;e=(""+e).toLowerCase();t=true}}}function normalizeEncoding(e){var t=_normalizeEncoding(e);if(typeof t!=="string"&&(i.isEncoding===n||!n(e)))throw new Error("Unknown encoding: "+e);return t||e}t.I=StringDecoder;function StringDecoder(e){this.encoding=normalizeEncoding(e);var t;switch(this.encoding){case"utf16le":this.text=utf16Text;this.end=utf16End;t=4;break;case"utf8":this.fillLast=utf8FillLast;t=4;break;case"base64":this.text=base64Text;this.end=base64End;t=3;break;default:this.write=simpleWrite;this.end=simpleEnd;return}this.lastNeed=0;this.lastTotal=0;this.lastChar=i.allocUnsafe(t)}StringDecoder.prototype.write=function(e){if(e.length===0)return"";var t;var r;if(this.lastNeed){t=this.fillLast(e);if(t===undefined)return"";r=this.lastNeed;this.lastNeed=0}else{r=0}if(r<e.length)return t?t+this.text(e,r):this.text(e,r);return t||""};StringDecoder.prototype.end=utf8End;StringDecoder.prototype.text=utf8Text;StringDecoder.prototype.fillLast=function(e){if(this.lastNeed<=e.length){e.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed);return this.lastChar.toString(this.encoding,0,this.lastTotal)}e.copy(this.lastChar,this.lastTotal-this.lastNeed,0,e.length);this.lastNeed-=e.length};function utf8CheckByte(e){if(e<=127)return 0;else if(e>>5===6)return 2;else if(e>>4===14)return 3;else if(e>>3===30)return 4;return e>>6===2?-1:-2}function utf8CheckIncomplete(e,t,r){var i=t.length-1;if(i<r)return 0;var n=utf8CheckByte(t[i]);if(n>=0){if(n>0)e.lastNeed=n-1;return n}if(--i<r||n===-2)return 0;n=utf8CheckByte(t[i]);if(n>=0){if(n>0)e.lastNeed=n-2;return n}if(--i<r||n===-2)return 0;n=utf8CheckByte(t[i]);if(n>=0){if(n>0){if(n===2)n=0;else e.lastNeed=n-3}return n}return 0}function utf8CheckExtraBytes(e,t,r){if((t[0]&192)!==128){e.lastNeed=0;return"�"}if(e.lastNeed>1&&t.length>1){if((t[1]&192)!==128){e.lastNeed=1;return"�"}if(e.lastNeed>2&&t.length>2){if((t[2]&192)!==128){e.lastNeed=2;return"�"}}}}function utf8FillLast(e){var t=this.lastTotal-this.lastNeed;var r=utf8CheckExtraBytes(this,e,t);if(r!==undefined)return r;if(this.lastNeed<=e.length){e.copy(this.lastChar,t,0,this.lastNeed);return this.lastChar.toString(this.encoding,0,this.lastTotal)}e.copy(this.lastChar,t,0,e.length);this.lastNeed-=e.length}function utf8Text(e,t){var r=utf8CheckIncomplete(this,e,t);if(!this.lastNeed)return e.toString("utf8",t);this.lastTotal=r;var i=e.length-(r-this.lastNeed);e.copy(this.lastChar,0,i);return e.toString("utf8",t,i)}function utf8End(e){var t=e&&e.length?this.write(e):"";if(this.lastNeed)return t+"�";return t}function utf16Text(e,t){if((e.length-t)%2===0){var r=e.toString("utf16le",t);if(r){var i=r.charCodeAt(r.length-1);if(i>=55296&&i<=56319){this.lastNeed=2;this.lastTotal=4;this.lastChar[0]=e[e.length-2];this.lastChar[1]=e[e.length-1];return r.slice(0,-1)}}return r}this.lastNeed=1;this.lastTotal=2;this.lastChar[0]=e[e.length-1];return e.toString("utf16le",t,e.length-1)}function utf16End(e){var t=e&&e.length?this.write(e):"";if(this.lastNeed){var r=this.lastTotal-this.lastNeed;return t+this.lastChar.toString("utf16le",0,r)}return t}function base64Text(e,t){var r=(e.length-t)%3;if(r===0)return e.toString("base64",t);this.lastNeed=3-r;this.lastTotal=3;if(r===1){this.lastChar[0]=e[e.length-1]}else{this.lastChar[0]=e[e.length-2];this.lastChar[1]=e[e.length-1]}return e.toString("base64",t,e.length-r)}function base64End(e){var t=e&&e.length?this.write(e):"";if(this.lastNeed)return t+this.lastChar.toString("base64",0,3-this.lastNeed);return t}function simpleWrite(e){return e.toString(this.encoding)}function simpleEnd(e){return e&&e.length?this.write(e):""}},1091:function(e,t,r){"use strict";
13
- /*!
14
- * strip-dirs | MIT (c) Shinnosuke Watanabe
15
- * https://github.com/shinnn/node-strip-dirs
16
- */const i=r(6928);const n=r(9023);const o=r(375);e.exports=function stripDirs(e,t,r){if(typeof e!=="string"){throw new TypeError(n.inspect(e)+" is not a string. First argument to strip-dirs must be a path string.")}if(i.posix.isAbsolute(e)||i.win32.isAbsolute(e)){throw new Error(`${e} is an absolute path. strip-dirs requires a relative path.`)}if(!o(t,{includeZero:true})){throw new Error("The Second argument of strip-dirs must be a natural number or 0, but received "+n.inspect(t)+".")}if(r){if(typeof r!=="object"){throw new TypeError(n.inspect(r)+" is not an object. Expected an object with a boolean `disallowOverflow` property.")}if(Array.isArray(r)){throw new TypeError(n.inspect(r)+" is an array. Expected an object with a boolean `disallowOverflow` property.")}if("disallowOverflow"in r&&typeof r.disallowOverflow!=="boolean"){throw new TypeError(n.inspect(r.disallowOverflow)+" is neither true nor false. `disallowOverflow` option must be a Boolean value.")}}else{r={disallowOverflow:false}}const a=i.normalize(e).split(i.sep);if(a.length>1&&a[0]==="."){a.shift()}if(t>a.length-1){if(r.disallowOverflow){throw new RangeError("Cannot strip more directories than there are.")}t=a.length-1}return i.join.apply(null,a.slice(t))}},7624:function(e,t,r){var i=r(9023);var n=r(6738);var o=r(2138);var a=r(5243);var s=r(1397).Writable;var u=r(1397).PassThrough;var noop=function(){};var overflow=function(e){e&=511;return e&&512-e};var emptyStream=function(e,t){var r=new Source(e,t);r.end();return r};var mixinPax=function(e,t){if(t.path)e.name=t.path;if(t.linkpath)e.linkname=t.linkpath;if(t.size)e.size=parseInt(t.size,10);e.pax=t;return e};var Source=function(e,t){this._parent=e;this.offset=t;u.call(this)};i.inherits(Source,u);Source.prototype.destroy=function(e){this._parent.destroy(e)};var Extract=function(e){if(!(this instanceof Extract))return new Extract(e);s.call(this,e);e=e||{};this._offset=0;this._buffer=n();this._missing=0;this._partial=false;this._onparse=noop;this._header=null;this._stream=null;this._overflow=null;this._cb=null;this._locked=false;this._destroyed=false;this._pax=null;this._paxGlobal=null;this._gnuLongPath=null;this._gnuLongLinkPath=null;var t=this;var r=t._buffer;var oncontinue=function(){t._continue()};var onunlock=function(e){t._locked=false;if(e)return t.destroy(e);if(!t._stream)oncontinue()};var onstreamend=function(){t._stream=null;var e=overflow(t._header.size);if(e)t._parse(e,ondrain);else t._parse(512,onheader);if(!t._locked)oncontinue()};var ondrain=function(){t._buffer.consume(overflow(t._header.size));t._parse(512,onheader);oncontinue()};var onpaxglobalheader=function(){var e=t._header.size;t._paxGlobal=a.decodePax(r.slice(0,e));r.consume(e);onstreamend()};var onpaxheader=function(){var e=t._header.size;t._pax=a.decodePax(r.slice(0,e));if(t._paxGlobal)t._pax=o(t._paxGlobal,t._pax);r.consume(e);onstreamend()};var ongnulongpath=function(){var i=t._header.size;this._gnuLongPath=a.decodeLongPath(r.slice(0,i),e.filenameEncoding);r.consume(i);onstreamend()};var ongnulonglinkpath=function(){var i=t._header.size;this._gnuLongLinkPath=a.decodeLongPath(r.slice(0,i),e.filenameEncoding);r.consume(i);onstreamend()};var onheader=function(){var i=t._offset;var n;try{n=t._header=a.decode(r.slice(0,512),e.filenameEncoding)}catch(e){t.emit("error",e)}r.consume(512);if(!n){t._parse(512,onheader);oncontinue();return}if(n.type==="gnu-long-path"){t._parse(n.size,ongnulongpath);oncontinue();return}if(n.type==="gnu-long-link-path"){t._parse(n.size,ongnulonglinkpath);oncontinue();return}if(n.type==="pax-global-header"){t._parse(n.size,onpaxglobalheader);oncontinue();return}if(n.type==="pax-header"){t._parse(n.size,onpaxheader);oncontinue();return}if(t._gnuLongPath){n.name=t._gnuLongPath;t._gnuLongPath=null}if(t._gnuLongLinkPath){n.linkname=t._gnuLongLinkPath;t._gnuLongLinkPath=null}if(t._pax){t._header=n=mixinPax(n,t._pax);t._pax=null}t._locked=true;if(!n.size||n.type==="directory"){t._parse(512,onheader);t.emit("entry",n,emptyStream(t,i),onunlock);return}t._stream=new Source(t,i);t.emit("entry",n,t._stream,onunlock);t._parse(n.size,onstreamend);oncontinue()};this._onheader=onheader;this._parse(512,onheader)};i.inherits(Extract,s);Extract.prototype.destroy=function(e){if(this._destroyed)return;this._destroyed=true;if(e)this.emit("error",e);this.emit("close");if(this._stream)this._stream.emit("close")};Extract.prototype._parse=function(e,t){if(this._destroyed)return;this._offset+=e;this._missing=e;if(t===this._onheader)this._partial=false;this._onparse=t};Extract.prototype._continue=function(){if(this._destroyed)return;var e=this._cb;this._cb=noop;if(this._overflow)this._write(this._overflow,undefined,e);else e()};Extract.prototype._write=function(e,t,r){if(this._destroyed)return;var i=this._stream;var n=this._buffer;var o=this._missing;if(e.length)this._partial=true;if(e.length<o){this._missing-=e.length;this._overflow=null;if(i)return i.write(e,r);n.append(e);return r()}this._cb=r;this._missing=0;var a=null;if(e.length>o){a=e.slice(o);e=e.slice(0,o)}if(i)i.end(e);else n.append(e);this._overflow=a;this._onparse()};Extract.prototype._final=function(e){if(this._partial)return this.destroy(new Error("Unexpected end of data"));e()};e.exports=Extract},5243:function(e,t,r){var i=r(447);var n=r(9623);var o="0000000000000000000";var a="7777777777777777777";var s="0".charCodeAt(0);var u="ustar\x0000";var l=parseInt("7777",8);var clamp=function(e,t,r){if(typeof e!=="number")return r;e=~~e;if(e>=t)return t;if(e>=0)return e;e+=t;if(e>=0)return e;return 0};var toType=function(e){switch(e){case 0:return"file";case 1:return"link";case 2:return"symlink";case 3:return"character-device";case 4:return"block-device";case 5:return"directory";case 6:return"fifo";case 7:return"contiguous-file";case 72:return"pax-header";case 55:return"pax-global-header";case 27:return"gnu-long-link-path";case 28:case 30:return"gnu-long-path"}return null};var toTypeflag=function(e){switch(e){case"file":return 0;case"link":return 1;case"symlink":return 2;case"character-device":return 3;case"block-device":return 4;case"directory":return 5;case"fifo":return 6;case"contiguous-file":return 7;case"pax-header":return 72}return 0};var indexOf=function(e,t,r,i){for(;r<i;r++){if(e[r]===t)return r}return i};var cksum=function(e){var t=8*32;for(var r=0;r<148;r++)t+=e[r];for(var i=156;i<512;i++)t+=e[i];return t};var encodeOct=function(e,t){e=e.toString(8);if(e.length>t)return a.slice(0,t)+" ";else return o.slice(0,t-e.length)+e+" "};function parse256(e){var t;if(e[0]===128)t=true;else if(e[0]===255)t=false;else return null;var r=false;var i=[];for(var n=e.length-1;n>0;n--){var o=e[n];if(t)i.push(o);else if(r&&o===0)i.push(0);else if(r){r=false;i.push(256-o)}else i.push(255-o)}var a=0;var s=i.length;for(n=0;n<s;n++){a+=i[n]*Math.pow(256,n)}return t?a:-1*a}var decodeOct=function(e,t,r){e=e.slice(t,t+r);t=0;if(e[t]&128){return parse256(e)}else{while(t<e.length&&e[t]===32)t++;var i=clamp(indexOf(e,32,t,e.length),e.length,e.length);while(t<i&&e[t]===0)t++;if(i===t)return 0;return parseInt(e.slice(t,i).toString(),8)}};var decodeStr=function(e,t,r,i){return e.slice(t,indexOf(e,0,t,t+r)).toString(i)};var addLength=function(e){var t=Buffer.byteLength(e);var r=Math.floor(Math.log(t)/Math.log(10))+1;if(t+r>=Math.pow(10,r))r++;return t+r+e};t.decodeLongPath=function(e,t){return decodeStr(e,0,e.length,t)};t.encodePax=function(e){var t="";if(e.name)t+=addLength(" path="+e.name+"\n");if(e.linkname)t+=addLength(" linkpath="+e.linkname+"\n");var r=e.pax;if(r){for(var n in r){t+=addLength(" "+n+"="+r[n]+"\n")}}return i(t)};t.decodePax=function(e){var t={};while(e.length){var r=0;while(r<e.length&&e[r]!==32)r++;var i=parseInt(e.slice(0,r).toString(),10);if(!i)return t;var n=e.slice(r+1,i-1).toString();var o=n.indexOf("=");if(o===-1)return t;t[n.slice(0,o)]=n.slice(o+1);e=e.slice(i)}return t};t.encode=function(e){var t=n(512);var r=e.name;var i="";if(e.typeflag===5&&r[r.length-1]!=="/")r+="/";if(Buffer.byteLength(r)!==r.length)return null;while(Buffer.byteLength(r)>100){var o=r.indexOf("/");if(o===-1)return null;i+=i?"/"+r.slice(0,o):r.slice(0,o);r=r.slice(o+1)}if(Buffer.byteLength(r)>100||Buffer.byteLength(i)>155)return null;if(e.linkname&&Buffer.byteLength(e.linkname)>100)return null;t.write(r);t.write(encodeOct(e.mode&l,6),100);t.write(encodeOct(e.uid,6),108);t.write(encodeOct(e.gid,6),116);t.write(encodeOct(e.size,11),124);t.write(encodeOct(e.mtime.getTime()/1e3|0,11),136);t[156]=s+toTypeflag(e.type);if(e.linkname)t.write(e.linkname,157);t.write(u,257);if(e.uname)t.write(e.uname,265);if(e.gname)t.write(e.gname,297);t.write(encodeOct(e.devmajor||0,6),329);t.write(encodeOct(e.devminor||0,6),337);if(i)t.write(i,345);t.write(encodeOct(cksum(t),6),148);return t};t.decode=function(e,t){var r=e[156]===0?0:e[156]-s;var i=decodeStr(e,0,100,t);var n=decodeOct(e,100,8);var o=decodeOct(e,108,8);var a=decodeOct(e,116,8);var u=decodeOct(e,124,12);var l=decodeOct(e,136,12);var c=toType(r);var d=e[157]===0?null:decodeStr(e,157,100,t);var p=decodeStr(e,265,32);var h=decodeStr(e,297,32);var m=decodeOct(e,329,8);var y=decodeOct(e,337,8);if(e[345])i=decodeStr(e,345,155,t)+"/"+i;if(r===0&&i&&i[i.length-1]==="/")r=5;var v=cksum(e);if(v===8*32)return null;if(v!==decodeOct(e,148,8))throw new Error("Invalid tar header. Maybe the tar is corrupted or it needs to be gunzipped?");return{name:i,mode:n,uid:o,gid:a,size:u,mtime:new Date(1e3*l),type:c,linkname:d,uname:p,gname:h,devmajor:m,devminor:y}}},3189:function(e,t,r){t.extract=r(7624);t.pack=r(8580)},8580:function(e,t,r){var i=r(9033);var n=r(5859);var o=r(9023);var a=r(9623);var s=r(447);var u=r(1397).Readable;var l=r(1397).Writable;var c=r(3193).StringDecoder;var d=r(5243);var p=parseInt("755",8);var h=parseInt("644",8);var m=a(1024);var noop=function(){};var overflow=function(e,t){t&=511;if(t)e.push(m.slice(0,512-t))};function modeToType(e){switch(e&i.S_IFMT){case i.S_IFBLK:return"block-device";case i.S_IFCHR:return"character-device";case i.S_IFDIR:return"directory";case i.S_IFIFO:return"fifo";case i.S_IFLNK:return"symlink"}return"file"}var Sink=function(e){l.call(this);this.written=0;this._to=e;this._destroyed=false};o.inherits(Sink,l);Sink.prototype._write=function(e,t,r){this.written+=e.length;if(this._to.push(e))return r();this._to._drain=r};Sink.prototype.destroy=function(){if(this._destroyed)return;this._destroyed=true;this.emit("close")};var LinkSink=function(){l.call(this);this.linkname="";this._decoder=new c("utf-8");this._destroyed=false};o.inherits(LinkSink,l);LinkSink.prototype._write=function(e,t,r){this.linkname+=this._decoder.write(e);r()};LinkSink.prototype.destroy=function(){if(this._destroyed)return;this._destroyed=true;this.emit("close")};var Void=function(){l.call(this);this._destroyed=false};o.inherits(Void,l);Void.prototype._write=function(e,t,r){r(new Error("No body allowed for this entry"))};Void.prototype.destroy=function(){if(this._destroyed)return;this._destroyed=true;this.emit("close")};var Pack=function(e){if(!(this instanceof Pack))return new Pack(e);u.call(this,e);this._drain=noop;this._finalized=false;this._finalizing=false;this._destroyed=false;this._stream=null};o.inherits(Pack,u);Pack.prototype.entry=function(e,t,r){if(this._stream)throw new Error("already piping an entry");if(this._finalized||this._destroyed)return;if(typeof t==="function"){r=t;t=null}if(!r)r=noop;var i=this;if(!e.size||e.type==="symlink")e.size=0;if(!e.type)e.type=modeToType(e.mode);if(!e.mode)e.mode=e.type==="directory"?p:h;if(!e.uid)e.uid=0;if(!e.gid)e.gid=0;if(!e.mtime)e.mtime=new Date;if(typeof t==="string")t=s(t);if(Buffer.isBuffer(t)){e.size=t.length;this._encode(e);this.push(t);overflow(i,e.size);process.nextTick(r);return new Void}if(e.type==="symlink"&&!e.linkname){var o=new LinkSink;n(o,(function(t){if(t){i.destroy();return r(t)}e.linkname=o.linkname;i._encode(e);r()}));return o}this._encode(e);if(e.type!=="file"&&e.type!=="contiguous-file"){process.nextTick(r);return new Void}var a=new Sink(this);this._stream=a;n(a,(function(t){i._stream=null;if(t){i.destroy();return r(t)}if(a.written!==e.size){i.destroy();return r(new Error("size mismatch"))}overflow(i,e.size);if(i._finalizing)i.finalize();r()}));return a};Pack.prototype.finalize=function(){if(this._stream){this._finalizing=true;return}if(this._finalized)return;this._finalized=true;this.push(m);this.push(null)};Pack.prototype.destroy=function(e){if(this._destroyed)return;this._destroyed=true;if(e)this.emit("error",e);this.emit("close");if(this._stream&&this._stream.destroy)this._stream.destroy()};Pack.prototype._encode=function(e){if(!e.pax){var t=d.encode(e);if(t){this.push(t);return}}this._encodePax(e)};Pack.prototype._encodePax=function(e){var t=d.encodePax({name:e.name,linkname:e.linkname,pax:e.pax});var r={name:"PaxHeader",mode:e.mode,uid:e.uid,gid:e.gid,size:t.length,mtime:e.mtime,type:"pax-header",linkname:e.linkname&&"PaxHeader",uname:e.uname,gname:e.gname,devmajor:e.devmajor,devminor:e.devminor};this.push(d.encode(r));this.push(t);overflow(this,t.length);r.size=e.size;r.type=e.type;this.push(d.encode(r))};Pack.prototype._read=function(e){var t=this._drain;this._drain=noop;t()};e.exports=Pack},6997:function(e,t,r){var i=r(2203);t=e.exports=through;through.through=through;function through(e,t,r){e=e||function(e){this.queue(e)};t=t||function(){this.queue(null)};var n=false,o=false,a=[],s=false;var u=new i;u.readable=u.writable=true;u.paused=false;u.autoDestroy=!(r&&r.autoDestroy===false);u.write=function(t){e.call(this,t);return!u.paused};function drain(){while(a.length&&!u.paused){var e=a.shift();if(null===e)return u.emit("end");else u.emit("data",e)}}u.queue=u.push=function(e){if(s)return u;if(e===null)s=true;a.push(e);drain();return u};u.on("end",(function(){u.readable=false;if(!u.writable&&u.autoDestroy)process.nextTick((function(){u.destroy()}))}));function _end(){u.writable=false;t.call(u);if(!u.readable&&u.autoDestroy)u.destroy()}u.end=function(e){if(n)return;n=true;if(arguments.length)u.write(e);_end();return u};u.destroy=function(){if(o)return;o=true;n=true;a.length=0;u.writable=u.readable=false;u.emit("close");return u};u.pause=function(){if(u.paused)return;u.paused=true;return u};u.resume=function(){if(u.paused){u.paused=false;u.emit("resume")}drain();if(!u.paused)u.emit("drain");return u};return u}},447:function(e){e.exports=toBuffer;var t=Buffer.from&&Buffer.from!==Uint8Array.from?Buffer.from:bufferFrom;function bufferFrom(e,t){return new Buffer(e,t)}function toBuffer(e,r){if(Buffer.isBuffer(e))return e;if(typeof e==="string")return t(e,r);if(Array.isArray(e))return t(e);throw new Error("Input should be a buffer or a string")}},7088:function(e,t,r){var i=r(6997);var n=r(5633);var o=r(7600);e.exports=unbzip2Stream;function unbzip2Stream(){var e=[];var t=0;var r=0;var a=false;var s=false;var u=null;var l=null;function decompressBlock(e){if(!r){r=n.header(u);l=0;return true}else{var t=1e5*r;var i=new Int32Array(t);var o=[];var f=function(e){o.push(e)};l=n.decompress(u,f,i,t,l);if(l===null){r=0;return false}else{e(Buffer.from(o));return true}}}var c=0;function decompressAndQueue(e){if(a)return;try{return decompressBlock((function(t){e.queue(t);if(t!==null){c+=t.length}else{}}))}catch(t){e.emit("error",t);a=true;return false}}return i((function write(i){e.push(i);t+=i.length;if(u===null){u=o((function(){return e.shift()}))}while(!a&&t-u.bytesRead+1>=(25e3+1e5*r||4)){decompressAndQueue(this)}}),(function end(e){while(!a&&u&&t>u.bytesRead){decompressAndQueue(this)}if(!a){if(l!==null)this.emit("error",new Error("input stream ended prematurely"));this.queue(null)}}))}},7600:function(e){var t=[0,1,3,7,15,31,63,127,255];e.exports=function bitIterator(e){var r=0,i=0;var n=e();var f=function(o){if(o===null&&r!=0){r=0;i++;return}var a=0;while(o>0){if(i>=n.length){i=0;n=e()}var s=8-r;if(r===0&&o>0)f.bytesRead++;if(o>=s){a<<=s;a|=t[s]&n[i++];r=0;o-=s}else{a<<=o;a|=(n[i]&t[o]<<8-o-r)>>8-o-r;r+=o;o=0}}return a};f.bytesRead=0;return f}},5633:function(e){function Bzip2Error(e){this.name="Bzip2Error";this.message=e;this.stack=(new Error).stack}Bzip2Error.prototype=new Error;var t={Error:function(e){throw new Bzip2Error(e)}};var r={};r.Bzip2Error=Bzip2Error;r.crcTable=[0,79764919,159529838,222504665,319059676,398814059,445009330,507990021,638119352,583659535,797628118,726387553,890018660,835552979,1015980042,944750013,1276238704,1221641927,1167319070,1095957929,1595256236,1540665371,1452775106,1381403509,1780037320,1859660671,1671105958,1733955601,2031960084,2111593891,1889500026,1952343757,2552477408,2632100695,2443283854,2506133561,2334638140,2414271883,2191915858,2254759653,3190512472,3135915759,3081330742,3009969537,2905550212,2850959411,2762807018,2691435357,3560074640,3505614887,3719321342,3648080713,3342211916,3287746299,3467911202,3396681109,4063920168,4143685023,4223187782,4286162673,3779000052,3858754371,3904687514,3967668269,881225847,809987520,1023691545,969234094,662832811,591600412,771767749,717299826,311336399,374308984,453813921,533576470,25881363,88864420,134795389,214552010,2023205639,2086057648,1897238633,1976864222,1804852699,1867694188,1645340341,1724971778,1587496639,1516133128,1461550545,1406951526,1302016099,1230646740,1142491917,1087903418,2896545431,2825181984,2770861561,2716262478,3215044683,3143675388,3055782693,3001194130,2326604591,2389456536,2200899649,2280525302,2578013683,2640855108,2418763421,2498394922,3769900519,3832873040,3912640137,3992402750,4088425275,4151408268,4197601365,4277358050,3334271071,3263032808,3476998961,3422541446,3585640067,3514407732,3694837229,3640369242,1762451694,1842216281,1619975040,1682949687,2047383090,2127137669,1938468188,2001449195,1325665622,1271206113,1183200824,1111960463,1543535498,1489069629,1434599652,1363369299,622672798,568075817,748617968,677256519,907627842,853037301,1067152940,995781531,51762726,131386257,177728840,240578815,269590778,349224269,429104020,491947555,4046411278,4126034873,4172115296,4234965207,3794477266,3874110821,3953728444,4016571915,3609705398,3555108353,3735388376,3664026991,3290680682,3236090077,3449943556,3378572211,3174993278,3120533705,3032266256,2961025959,2923101090,2868635157,2813903052,2742672763,2604032198,2683796849,2461293480,2524268063,2284983834,2364738477,2175806836,2238787779,1569362073,1498123566,1409854455,1355396672,1317987909,1246755826,1192025387,1137557660,2072149281,2135122070,1912620623,1992383480,1753615357,1816598090,1627664531,1707420964,295390185,358241886,404320391,483945776,43990325,106832002,186451547,266083308,932423249,861060070,1041341759,986742920,613929101,542559546,756411363,701822548,3316196985,3244833742,3425377559,3370778784,3601682597,3530312978,3744426955,3689838204,3819031489,3881883254,3928223919,4007849240,4037393693,4100235434,4180117107,4259748804,2310601993,2373574846,2151335527,2231098320,2596047829,2659030626,2470359227,2550115596,2947551409,2876312838,2788305887,2733848168,3165939309,3094707162,3040238851,2985771188];r.array=function(e){var t=0,r=0;var i=[0,1,3,7,15,31,63,127,255];return function(n){var o=0;while(n>0){var a=8-t;if(n>=a){o<<=a;o|=i[a]&e[r++];t=0;n-=a}else{o<<=n;o|=(e[r]&i[n]<<8-n-t)>>8-n-t;t+=n;n=0}}return o}};r.simple=function(e,t){var i=r.array(e);var n=r.header(i);var o=false;var a=1e5*n;var s=new Int32Array(a);do{o=r.decompress(i,t,s,a)}while(!o)};r.header=function(e){this.byteCount=new Int32Array(256);this.symToByte=new Uint8Array(256);this.mtfSymbol=new Int32Array(256);this.selectors=new Uint8Array(32768);if(e(8*3)!=4348520)t.Error("No magic number found");var r=e(8)-48;if(r<1||r>9)t.Error("Not a BZIP archive");return r};r.decompress=function(e,r,i,n,o){var a=20;var s=258;var u=0;var l=1;var c=50;var d=0^-1;for(var p="",h=0;h<6;h++)p+=e(8).toString(16);if(p=="177245385090"){var m=e(32)|0;if(m!==o)t.Error("Error in bzip2: crc32 do not match");e(null);return null}if(p!="314159265359")t.Error("eek not valid bzip data");var y=e(32)|0;if(e(1))t.Error("unsupported obsolete version");var v=e(24);if(v>n)t.Error("Initial position larger than buffer size");var g=e(16);var b=0;for(h=0;h<16;h++){if(g&1<<15-h){var w=e(16);for(E=0;E<16;E++){if(w&1<<15-E){this.symToByte[b++]=16*h+E}}}}var x=e(3);if(x<2||x>6)t.Error("another error");var _=e(15);if(_==0)t.Error("meh");for(var h=0;h<x;h++)this.mtfSymbol[h]=h;for(var h=0;h<_;h++){for(var E=0;e(1);E++)if(E>=x)t.Error("whoops another error");var S=this.mtfSymbol[E];for(var w=E-1;w>=0;w--){this.mtfSymbol[w+1]=this.mtfSymbol[w]}this.mtfSymbol[0]=S;this.selectors[h]=S}var k=b+2;var B=[];var R=new Uint8Array(s),C=new Uint16Array(a+1);var T;for(var E=0;E<x;E++){g=e(5);for(var h=0;h<k;h++){while(true){if(g<1||g>a)t.Error("I gave up a while ago on writing error messages");if(!e(1))break;if(!e(1))g++;else g--}R[h]=g}var O,A;O=A=R[0];for(var h=1;h<k;h++){if(R[h]>A)A=R[h];else if(R[h]<O)O=R[h]}T=B[E]={};T.permute=new Int32Array(s);T.limit=new Int32Array(a+1);T.base=new Int32Array(a+1);T.minLen=O;T.maxLen=A;var L=T.base;var F=T.limit;var z=0;for(var h=O;h<=A;h++)for(var g=0;g<k;g++)if(R[g]==h)T.permute[z++]=g;for(h=O;h<=A;h++)C[h]=F[h]=0;for(h=0;h<k;h++)C[R[h]]++;z=g=0;for(h=O;h<A;h++){z+=C[h];F[h]=z-1;z<<=1;L[h+1]=z-(g+=C[h])}F[A]=z+C[A]-1;L[O]=0}for(var h=0;h<256;h++){this.mtfSymbol[h]=h;this.byteCount[h]=0}var j,P,k,N;j=P=k=N=0;while(true){if(!k--){k=c-1;if(N>=_)t.Error("meow i'm a kitty, that's an error");T=B[this.selectors[N++]];L=T.base;F=T.limit}h=T.minLen;E=e(h);while(true){if(h>T.maxLen)t.Error("rawr i'm a dinosaur");if(E<=F[h])break;h++;E=E<<1|e(1)}E-=L[h];if(E<0||E>=s)t.Error("moo i'm a cow");var I=T.permute[E];if(I==u||I==l){if(!j){j=1;g=0}if(I==u)g+=j;else g+=2*j;j<<=1;continue}if(j){j=0;if(P+g>n)t.Error("Boom.");S=this.symToByte[this.mtfSymbol[0]];this.byteCount[S]+=g;while(g--)i[P++]=S}if(I>b)break;if(P>=n)t.Error("I can't think of anything. Error");h=I-1;S=this.mtfSymbol[h];for(var w=h-1;w>=0;w--){this.mtfSymbol[w+1]=this.mtfSymbol[w]}this.mtfSymbol[0]=S;S=this.symToByte[S];this.byteCount[S]++;i[P++]=S}if(v<0||v>=P)t.Error("I'm a monkey and I'm throwing something at someone, namely you");var E=0;for(var h=0;h<256;h++){w=E+this.byteCount[h];this.byteCount[h]=E;E=w}for(var h=0;h<P;h++){S=i[h]&255;i[this.byteCount[S]]|=h<<8;this.byteCount[S]++}var M=0,U=0,D=0;if(P){M=i[v];U=M&255;M>>=8;D=-1}P=P;var W,q,$;while(P){P--;q=U;M=i[M];U=M&255;M>>=8;if(D++==3){W=U;$=q;U=-1}else{W=1;$=U}while(W--){d=(d<<8^this.crcTable[(d>>24^$)&255])&4294967295;r($)}if(U!=q)D=0}d=(d^-1)>>>0;if((d|0)!=(y|0))t.Error("Error in bzip2: crc32 do not match");o=(d^(o<<1|o>>>31))&4294967295;return o};e.exports=r},9987:function(e,t,r){e.exports=r(9023).deprecate},8092:function(e){e.exports=wrappy;function wrappy(e,t){if(e&&t)return wrappy(e)(t);if(typeof e!=="function")throw new TypeError("need wrapper function");Object.keys(e).forEach((function(t){wrapper[t]=e[t]}));return wrapper;function wrapper(){var t=new Array(arguments.length);for(var r=0;r<t.length;r++){t[r]=arguments[r]}var i=e.apply(this,t);var n=t[t.length-1];if(typeof i==="function"&&i!==n){Object.keys(n).forEach((function(e){i[e]=n[e]}))}return i}}},2138:function(e){e.exports=extend;var t=Object.prototype.hasOwnProperty;function extend(){var e={};for(var r=0;r<arguments.length;r++){var i=arguments[r];for(var n in i){if(t.call(i,n)){e[n]=i[n]}}}return e}},2067:function(e,t,r){var i=r(9896);var n=r(3106);var o=r(6668);var a=r(7064);var s=r(9023);var u=r(4434).EventEmitter;var l=r(2203).Transform;var c=r(2203).PassThrough;var d=r(2203).Writable;t.open=open;t.fromFd=fromFd;t.fromBuffer=fromBuffer;t.fromRandomAccessReader=fromRandomAccessReader;t.dosDateTimeToDate=dosDateTimeToDate;t.validateFileName=validateFileName;t.ZipFile=ZipFile;t.Entry=Entry;t.RandomAccessReader=RandomAccessReader;function open(e,t,r){if(typeof t==="function"){r=t;t=null}if(t==null)t={};if(t.autoClose==null)t.autoClose=true;if(t.lazyEntries==null)t.lazyEntries=false;if(t.decodeStrings==null)t.decodeStrings=true;if(t.validateEntrySizes==null)t.validateEntrySizes=true;if(t.strictFileNames==null)t.strictFileNames=false;if(r==null)r=defaultCallback;i.open(e,"r",(function(e,n){if(e)return r(e);fromFd(n,t,(function(e,t){if(e)i.close(n,defaultCallback);r(e,t)}))}))}function fromFd(e,t,r){if(typeof t==="function"){r=t;t=null}if(t==null)t={};if(t.autoClose==null)t.autoClose=false;if(t.lazyEntries==null)t.lazyEntries=false;if(t.decodeStrings==null)t.decodeStrings=true;if(t.validateEntrySizes==null)t.validateEntrySizes=true;if(t.strictFileNames==null)t.strictFileNames=false;if(r==null)r=defaultCallback;i.fstat(e,(function(i,n){if(i)return r(i);var a=o.createFromFd(e,{autoClose:true});fromRandomAccessReader(a,n.size,t,r)}))}function fromBuffer(e,t,r){if(typeof t==="function"){r=t;t=null}if(t==null)t={};t.autoClose=false;if(t.lazyEntries==null)t.lazyEntries=false;if(t.decodeStrings==null)t.decodeStrings=true;if(t.validateEntrySizes==null)t.validateEntrySizes=true;if(t.strictFileNames==null)t.strictFileNames=false;var i=o.createFromBuffer(e,{maxChunkSize:65536});fromRandomAccessReader(i,e.length,t,r)}function fromRandomAccessReader(e,t,r,i){if(typeof r==="function"){i=r;r=null}if(r==null)r={};if(r.autoClose==null)r.autoClose=true;if(r.lazyEntries==null)r.lazyEntries=false;if(r.decodeStrings==null)r.decodeStrings=true;var n=!!r.decodeStrings;if(r.validateEntrySizes==null)r.validateEntrySizes=true;if(r.strictFileNames==null)r.strictFileNames=false;if(i==null)i=defaultCallback;if(typeof t!=="number")throw new Error("expected totalSize parameter to be a number");if(t>Number.MAX_SAFE_INTEGER){throw new Error("zip file too large. only file sizes up to 2^52 are supported due to JavaScript's Number type being an IEEE 754 double.")}e.ref();var o=22;var a=65535;var s=Math.min(o+a,t);var u=h(s);var l=t-u.length;readAndAssertNoEof(e,u,0,s,l,(function(a){if(a)return i(a);for(var c=s-o;c>=0;c-=1){if(u.readUInt32LE(c)!==101010256)continue;var d=u.slice(c);var p=d.readUInt16LE(4);if(p!==0){return i(new Error("multi-disk zip files are not supported: found disk number: "+p))}var m=d.readUInt16LE(10);var y=d.readUInt32LE(16);var v=d.readUInt16LE(20);var g=d.length-o;if(v!==g){return i(new Error("invalid comment length. expected: "+g+". found: "+v))}var b=n?decodeBuffer(d,22,d.length,false):d.slice(22);if(!(m===65535||y===4294967295)){return i(null,new ZipFile(e,y,t,m,b,r.autoClose,r.lazyEntries,n,r.validateEntrySizes,r.strictFileNames))}var w=h(20);var x=l+c-w.length;readAndAssertNoEof(e,w,0,w.length,x,(function(o){if(o)return i(o);if(w.readUInt32LE(0)!==117853008){return i(new Error("invalid zip64 end of central directory locator signature"))}var a=readUInt64LE(w,8);var s=h(56);readAndAssertNoEof(e,s,0,s.length,a,(function(o){if(o)return i(o);if(s.readUInt32LE(0)!==101075792){return i(new Error("invalid zip64 end of central directory record signature"))}m=readUInt64LE(s,32);y=readUInt64LE(s,48);return i(null,new ZipFile(e,y,t,m,b,r.autoClose,r.lazyEntries,n,r.validateEntrySizes,r.strictFileNames))}))}));return}i(new Error("end of central directory record signature not found"))}))}s.inherits(ZipFile,u);function ZipFile(e,t,r,i,n,o,a,s,l,c){var d=this;u.call(d);d.reader=e;d.reader.on("error",(function(e){emitError(d,e)}));d.reader.once("close",(function(){d.emit("close")}));d.readEntryCursor=t;d.fileSize=r;d.entryCount=i;d.comment=n;d.entriesRead=0;d.autoClose=!!o;d.lazyEntries=!!a;d.decodeStrings=!!s;d.validateEntrySizes=!!l;d.strictFileNames=!!c;d.isOpen=true;d.emittedError=false;if(!d.lazyEntries)d._readEntry()}ZipFile.prototype.close=function(){if(!this.isOpen)return;this.isOpen=false;this.reader.unref()};function emitErrorAndAutoClose(e,t){if(e.autoClose)e.close();emitError(e,t)}function emitError(e,t){if(e.emittedError)return;e.emittedError=true;e.emit("error",t)}ZipFile.prototype.readEntry=function(){if(!this.lazyEntries)throw new Error("readEntry() called without lazyEntries:true");this._readEntry()};ZipFile.prototype._readEntry=function(){var e=this;if(e.entryCount===e.entriesRead){setImmediate((function(){if(e.autoClose)e.close();if(e.emittedError)return;e.emit("end")}));return}if(e.emittedError)return;var t=h(46);readAndAssertNoEof(e.reader,t,0,t.length,e.readEntryCursor,(function(r){if(r)return emitErrorAndAutoClose(e,r);if(e.emittedError)return;var i=new Entry;var n=t.readUInt32LE(0);if(n!==33639248)return emitErrorAndAutoClose(e,new Error("invalid central directory file header signature: 0x"+n.toString(16)));i.versionMadeBy=t.readUInt16LE(4);i.versionNeededToExtract=t.readUInt16LE(6);i.generalPurposeBitFlag=t.readUInt16LE(8);i.compressionMethod=t.readUInt16LE(10);i.lastModFileTime=t.readUInt16LE(12);i.lastModFileDate=t.readUInt16LE(14);i.crc32=t.readUInt32LE(16);i.compressedSize=t.readUInt32LE(20);i.uncompressedSize=t.readUInt32LE(24);i.fileNameLength=t.readUInt16LE(28);i.extraFieldLength=t.readUInt16LE(30);i.fileCommentLength=t.readUInt16LE(32);i.internalFileAttributes=t.readUInt16LE(36);i.externalFileAttributes=t.readUInt32LE(38);i.relativeOffsetOfLocalHeader=t.readUInt32LE(42);if(i.generalPurposeBitFlag&64)return emitErrorAndAutoClose(e,new Error("strong encryption is not supported"));e.readEntryCursor+=46;t=h(i.fileNameLength+i.extraFieldLength+i.fileCommentLength);readAndAssertNoEof(e.reader,t,0,t.length,e.readEntryCursor,(function(r){if(r)return emitErrorAndAutoClose(e,r);if(e.emittedError)return;var n=(i.generalPurposeBitFlag&2048)!==0;i.fileName=e.decodeStrings?decodeBuffer(t,0,i.fileNameLength,n):t.slice(0,i.fileNameLength);var o=i.fileNameLength+i.extraFieldLength;var s=t.slice(i.fileNameLength,o);i.extraFields=[];var u=0;while(u<s.length-3){var l=s.readUInt16LE(u+0);var c=s.readUInt16LE(u+2);var d=u+4;var p=d+c;if(p>s.length)return emitErrorAndAutoClose(e,new Error("extra field length exceeds extra field buffer size"));var m=h(c);s.copy(m,0,d,p);i.extraFields.push({id:l,data:m});u=p}i.fileComment=e.decodeStrings?decodeBuffer(t,o,o+i.fileCommentLength,n):t.slice(o,o+i.fileCommentLength);i.comment=i.fileComment;e.readEntryCursor+=t.length;e.entriesRead+=1;if(i.uncompressedSize===4294967295||i.compressedSize===4294967295||i.relativeOffsetOfLocalHeader===4294967295){var y=null;for(var u=0;u<i.extraFields.length;u++){var v=i.extraFields[u];if(v.id===1){y=v.data;break}}if(y==null){return emitErrorAndAutoClose(e,new Error("expected zip64 extended information extra field"))}var g=0;if(i.uncompressedSize===4294967295){if(g+8>y.length){return emitErrorAndAutoClose(e,new Error("zip64 extended information extra field does not include uncompressed size"))}i.uncompressedSize=readUInt64LE(y,g);g+=8}if(i.compressedSize===4294967295){if(g+8>y.length){return emitErrorAndAutoClose(e,new Error("zip64 extended information extra field does not include compressed size"))}i.compressedSize=readUInt64LE(y,g);g+=8}if(i.relativeOffsetOfLocalHeader===4294967295){if(g+8>y.length){return emitErrorAndAutoClose(e,new Error("zip64 extended information extra field does not include relative header offset"))}i.relativeOffsetOfLocalHeader=readUInt64LE(y,g);g+=8}}if(e.decodeStrings){for(var u=0;u<i.extraFields.length;u++){var v=i.extraFields[u];if(v.id===28789){if(v.data.length<6){continue}if(v.data.readUInt8(0)!==1){continue}var b=v.data.readUInt32LE(1);if(a.unsigned(t.slice(0,i.fileNameLength))!==b){continue}i.fileName=decodeBuffer(v.data,5,v.data.length,true);break}}}if(e.validateEntrySizes&&i.compressionMethod===0){var w=i.uncompressedSize;if(i.isEncrypted()){w+=12}if(i.compressedSize!==w){var x="compressed/uncompressed size mismatch for stored file: "+i.compressedSize+" != "+i.uncompressedSize;return emitErrorAndAutoClose(e,new Error(x))}}if(e.decodeStrings){if(!e.strictFileNames){i.fileName=i.fileName.replace(/\\/g,"/")}var _=validateFileName(i.fileName,e.validateFileNameOptions);if(_!=null)return emitErrorAndAutoClose(e,new Error(_))}e.emit("entry",i);if(!e.lazyEntries)e._readEntry()}))}))};ZipFile.prototype.openReadStream=function(e,t,r){var i=this;var o=0;var a=e.compressedSize;if(r==null){r=t;t={}}else{if(t.decrypt!=null){if(!e.isEncrypted()){throw new Error("options.decrypt can only be specified for encrypted entries")}if(t.decrypt!==false)throw new Error("invalid options.decrypt value: "+t.decrypt);if(e.isCompressed()){if(t.decompress!==false)throw new Error("entry is encrypted and compressed, and options.decompress !== false")}}if(t.decompress!=null){if(!e.isCompressed()){throw new Error("options.decompress can only be specified for compressed entries")}if(!(t.decompress===false||t.decompress===true)){throw new Error("invalid options.decompress value: "+t.decompress)}}if(t.start!=null||t.end!=null){if(e.isCompressed()&&t.decompress!==false){throw new Error("start/end range not allowed for compressed entry without options.decompress === false")}if(e.isEncrypted()&&t.decrypt!==false){throw new Error("start/end range not allowed for encrypted entry without options.decrypt === false")}}if(t.start!=null){o=t.start;if(o<0)throw new Error("options.start < 0");if(o>e.compressedSize)throw new Error("options.start > entry.compressedSize")}if(t.end!=null){a=t.end;if(a<0)throw new Error("options.end < 0");if(a>e.compressedSize)throw new Error("options.end > entry.compressedSize");if(a<o)throw new Error("options.end < options.start")}}if(!i.isOpen)return r(new Error("closed"));if(e.isEncrypted()){if(t.decrypt!==false)return r(new Error("entry is encrypted, and options.decrypt !== false"))}i.reader.ref();var s=h(30);readAndAssertNoEof(i.reader,s,0,s.length,e.relativeOffsetOfLocalHeader,(function(u){try{if(u)return r(u);var l=s.readUInt32LE(0);if(l!==67324752){return r(new Error("invalid local file header signature: 0x"+l.toString(16)))}var c=s.readUInt16LE(26);var d=s.readUInt16LE(28);var p=e.relativeOffsetOfLocalHeader+s.length+c+d;var h;if(e.compressionMethod===0){h=false}else if(e.compressionMethod===8){h=t.decompress!=null?t.decompress:true}else{return r(new Error("unsupported compression method: "+e.compressionMethod))}var m=p;var y=m+e.compressedSize;if(e.compressedSize!==0){if(y>i.fileSize){return r(new Error("file data overflows file bounds: "+m+" + "+e.compressedSize+" > "+i.fileSize))}}var v=i.reader.createReadStream({start:m+o,end:m+a});var g=v;if(h){var b=false;var w=n.createInflateRaw();v.on("error",(function(e){setImmediate((function(){if(!b)w.emit("error",e)}))}));v.pipe(w);if(i.validateEntrySizes){g=new AssertByteCountStream(e.uncompressedSize);w.on("error",(function(e){setImmediate((function(){if(!b)g.emit("error",e)}))}));w.pipe(g)}else{g=w}g.destroy=function(){b=true;if(w!==g)w.unpipe(g);v.unpipe(w);v.destroy()}}r(null,g)}finally{i.reader.unref()}}))};function Entry(){}Entry.prototype.getLastModDate=function(){return dosDateTimeToDate(this.lastModFileDate,this.lastModFileTime)};Entry.prototype.isEncrypted=function(){return(this.generalPurposeBitFlag&1)!==0};Entry.prototype.isCompressed=function(){return this.compressionMethod===8};function dosDateTimeToDate(e,t){var r=e&31;var i=(e>>5&15)-1;var n=(e>>9&127)+1980;var o=0;var a=(t&31)*2;var s=t>>5&63;var u=t>>11&31;return new Date(n,i,r,u,s,a,o)}function validateFileName(e){if(e.indexOf("\\")!==-1){return"invalid characters in fileName: "+e}if(/^[a-zA-Z]:/.test(e)||/^\//.test(e)){return"absolute path: "+e}if(e.split("/").indexOf("..")!==-1){return"invalid relative path: "+e}return null}function readAndAssertNoEof(e,t,r,i,n,o){if(i===0){return setImmediate((function(){o(null,h(0))}))}e.read(t,r,i,n,(function(e,t){if(e)return o(e);if(t<i){return o(new Error("unexpected EOF"))}o()}))}s.inherits(AssertByteCountStream,l);function AssertByteCountStream(e){l.call(this);this.actualByteCount=0;this.expectedByteCount=e}AssertByteCountStream.prototype._transform=function(e,t,r){this.actualByteCount+=e.length;if(this.actualByteCount>this.expectedByteCount){var i="too many bytes in the stream. expected "+this.expectedByteCount+". got at least "+this.actualByteCount;return r(new Error(i))}r(null,e)};AssertByteCountStream.prototype._flush=function(e){if(this.actualByteCount<this.expectedByteCount){var t="not enough bytes in the stream. expected "+this.expectedByteCount+". got only "+this.actualByteCount;return e(new Error(t))}e()};s.inherits(RandomAccessReader,u);function RandomAccessReader(){u.call(this);this.refCount=0}RandomAccessReader.prototype.ref=function(){this.refCount+=1};RandomAccessReader.prototype.unref=function(){var e=this;e.refCount-=1;if(e.refCount>0)return;if(e.refCount<0)throw new Error("invalid unref");e.close(onCloseDone);function onCloseDone(t){if(t)return e.emit("error",t);e.emit("close")}};RandomAccessReader.prototype.createReadStream=function(e){var t=e.start;var r=e.end;if(t===r){var i=new c;setImmediate((function(){i.end()}));return i}var n=this._readStreamForRange(t,r);var o=false;var a=new RefUnrefFilter(this);n.on("error",(function(e){setImmediate((function(){if(!o)a.emit("error",e)}))}));a.destroy=function(){n.unpipe(a);a.unref();n.destroy()};var s=new AssertByteCountStream(r-t);a.on("error",(function(e){setImmediate((function(){if(!o)s.emit("error",e)}))}));s.destroy=function(){o=true;a.unpipe(s);a.destroy()};return n.pipe(a).pipe(s)};RandomAccessReader.prototype._readStreamForRange=function(e,t){throw new Error("not implemented")};RandomAccessReader.prototype.read=function(e,t,r,i,n){var o=this.createReadStream({start:i,end:i+r});var a=new d;var s=0;a._write=function(r,i,n){r.copy(e,t+s,0,r.length);s+=r.length;n()};a.on("finish",n);o.on("error",(function(e){n(e)}));o.pipe(a)};RandomAccessReader.prototype.close=function(e){setImmediate(e)};s.inherits(RefUnrefFilter,c);function RefUnrefFilter(e){c.call(this);this.context=e;this.context.ref();this.unreffedYet=false}RefUnrefFilter.prototype._flush=function(e){this.unref();e()};RefUnrefFilter.prototype.unref=function(e){if(this.unreffedYet)return;this.unreffedYet=true;this.context.unref()};var p="\0☺☻♥♦♣♠•◘○◙♂♀♪♫☼►◄↕‼¶§▬↨↑↓→←∟↔▲▼ !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~⌂ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜ¢£¥₧ƒáíóúñѪº¿⌐¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ ";function decodeBuffer(e,t,r,i){if(i){return e.toString("utf8",t,r)}else{var n="";for(var o=t;o<r;o++){n+=p[e[o]]}return n}}function readUInt64LE(e,t){var r=e.readUInt32LE(t);var i=e.readUInt32LE(t+4);return i*4294967296+r}var h;if(typeof Buffer.allocUnsafe==="function"){h=function(e){return Buffer.allocUnsafe(e)}}else{h=function(e){return new Buffer(e)}}function defaultCallback(e){if(e)throw e}},2613:function(e){"use strict";e.exports=require("assert")},181:function(e){"use strict";e.exports=require("buffer")},9140:function(e){"use strict";e.exports=require("constants")},4434:function(e){"use strict";e.exports=require("events")},9896:function(e){"use strict";e.exports=require("fs")},6928:function(e){"use strict";e.exports=require("path")},2203:function(e){"use strict";e.exports=require("stream")},3193:function(e){"use strict";e.exports=require("string_decoder")},9023:function(e){"use strict";e.exports=require("util")},3106:function(e){"use strict";e.exports=require("zlib")},8453:function(e){"use strict";e.exports=JSON.parse('{"name":"seek-bzip","version":"1.0.6","contributors":["C. Scott Ananian (http://cscott.net)","Eli Skeggs","Kevin Kwok","Rob Landley (http://landley.net)"],"description":"a pure-JavaScript Node.JS module for random-access decoding bzip2 data","main":"./lib/index.js","repository":{"type":"git","url":"https://github.com/cscott/seek-bzip.git"},"license":"MIT","bin":{"seek-bunzip":"./bin/seek-bunzip","seek-table":"./bin/seek-bzip-table"},"directories":{"test":"test"},"dependencies":{"commander":"^2.8.1"},"devDependencies":{"fibers":"~1.0.6","mocha":"~2.2.5"},"scripts":{"test":"mocha"}}')}};var t={};function __nccwpck_require__(r){var i=t[r];if(i!==undefined){return i.exports}var n=t[r]={exports:{}};var o=true;try{e[r](n,n.exports,__nccwpck_require__);o=false}finally{if(o)delete t[r]}return n.exports}if(typeof __nccwpck_require__!=="undefined")__nccwpck_require__.ab=__dirname+"/";var r=__nccwpck_require__(9915);module.exports=r})();
@@ -1,9 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) Kevin Mårtensson <kevinmartensson@gmail.com> (github.com/kevva)
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
-
7
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
-
9
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -1 +0,0 @@
1
- {"name":"decompress","version":"4.2.1","description":"Extracting archives made easy","license":"MIT","repository":"kevva/decompress","author":{"name":"Kevin Mårtensson","email":"kevinmartensson@gmail.com","url":"github.com/kevva"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["bz2","bzip2","decompress","extract","tar","tar.bz","tar.gz","zip","unzip"],"dependencies":{"decompress-tar":"^4.0.0","decompress-tarbz2":"^4.0.0","decompress-targz":"^4.0.0","decompress-unzip":"^4.0.1","graceful-fs":"^4.1.10","make-dir":"^1.0.0","pify":"^2.3.0","strip-dirs":"^2.0.0"},"devDependencies":{"ava":"*","esm":"^3.2.25","is-jpg":"^1.0.0","path-exists":"^3.0.0","pify":"^2.3.0","rimraf":"^3.0.2","xo":"*"},"ava":{"require":["esm"]},"xo":{"rules":{"promise/prefer-await-to-then":"off"}},"_lastModified":"2024-12-30T04:21:49.778Z"}