@vercel/build-utils 14.13.0 → 14.13.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -7,7 +7,7 @@ GFS4: `),console.error(m)});fs12[gracefulQueue]||(queue=global[gracefulQueue]||[
7
7
  `,finalEOL=!0,replacer=null,spaces}={}){let EOF=finalEOL?EOL:"",str=JSON.stringify(obj,replacer,spaces);if(str===void 0)throw new TypeError(`Converting ${typeof obj} value to JSON is not supported`);return str.replace(/\n/g,EOL)+EOF}function stripBom(content){return Buffer.isBuffer(content)&&(content=content.toString("utf8")),content.replace(/^\uFEFF/,"")}module2.exports={stringify:stringify2,stripBom}}});var require_jsonfile=__commonJS({"../../node_modules/.pnpm/jsonfile@6.2.1/node_modules/jsonfile/index.js"(exports2,module2){var _fs;try{_fs=require_graceful_fs()}catch{_fs=require("fs")}var universalify=require_universalify(),{stringify:stringify2,stripBom}=require_utils2();async function _readFile(file,options={}){typeof options=="string"&&(options={encoding:options});let fs12=options.fs||_fs,shouldThrow="throws"in options?options.throws:!0,data=await universalify.fromCallback(fs12.readFile)(file,options);data=stripBom(data);let obj;try{obj=JSON.parse(data,options?options.reviver:null)}catch(err){if(shouldThrow)throw err.message=`${file}: ${err.message}`,err;return null}return obj}var readFile4=universalify.fromPromise(_readFile);function readFileSync(file,options={}){typeof options=="string"&&(options={encoding:options});let fs12=options.fs||_fs,shouldThrow="throws"in options?options.throws:!0;try{let content=fs12.readFileSync(file,options);return content=stripBom(content),JSON.parse(content,options.reviver)}catch(err){if(shouldThrow)throw err.message=`${file}: ${err.message}`,err;return null}}async function _writeFile(file,obj,options={}){let fs12=options.fs||_fs,str=stringify2(obj,options);await universalify.fromCallback(fs12.writeFile)(file,str,options)}var writeFile=universalify.fromPromise(_writeFile);function writeFileSync(file,obj,options={}){let fs12=options.fs||_fs,str=stringify2(obj,options);return fs12.writeFileSync(file,str,options)}module2.exports={readFile:readFile4,readFileSync,writeFile,writeFileSync}}});var require_jsonfile2=__commonJS({"../../node_modules/.pnpm/fs-extra@10.0.0/node_modules/fs-extra/lib/json/jsonfile.js"(exports2,module2){"use strict";var jsonFile=require_jsonfile();module2.exports={readJson:jsonFile.readFile,readJsonSync:jsonFile.readFileSync,writeJson:jsonFile.writeFile,writeJsonSync:jsonFile.writeFileSync}}});var require_output=__commonJS({"../../node_modules/.pnpm/fs-extra@10.0.0/node_modules/fs-extra/lib/output/index.js"(exports2,module2){"use strict";var u=require_universalify().fromCallback,fs12=require_graceful_fs(),path9=require("path"),mkdir=require_mkdirs(),pathExists=require_path_exists().pathExists;function outputFile(file,data,encoding,callback){typeof encoding=="function"&&(callback=encoding,encoding="utf8");let dir=path9.dirname(file);pathExists(dir,(err,itDoes)=>{if(err)return callback(err);if(itDoes)return fs12.writeFile(file,data,encoding,callback);mkdir.mkdirs(dir,err2=>{if(err2)return callback(err2);fs12.writeFile(file,data,encoding,callback)})})}function outputFileSync(file,...args){let dir=path9.dirname(file);if(fs12.existsSync(dir))return fs12.writeFileSync(file,...args);mkdir.mkdirsSync(dir),fs12.writeFileSync(file,...args)}module2.exports={outputFile:u(outputFile),outputFileSync}}});var require_output_json=__commonJS({"../../node_modules/.pnpm/fs-extra@10.0.0/node_modules/fs-extra/lib/json/output-json.js"(exports2,module2){"use strict";var{stringify:stringify2}=require_utils2(),{outputFile}=require_output();async function outputJson(file,data,options={}){let str=stringify2(data,options);await outputFile(file,str,options)}module2.exports=outputJson}});var require_output_json_sync=__commonJS({"../../node_modules/.pnpm/fs-extra@10.0.0/node_modules/fs-extra/lib/json/output-json-sync.js"(exports2,module2){"use strict";var{stringify:stringify2}=require_utils2(),{outputFileSync}=require_output();function outputJsonSync(file,data,options){let str=stringify2(data,options);outputFileSync(file,str,options)}module2.exports=outputJsonSync}});var require_json=__commonJS({"../../node_modules/.pnpm/fs-extra@10.0.0/node_modules/fs-extra/lib/json/index.js"(exports2,module2){"use strict";var u=require_universalify().fromPromise,jsonFile=require_jsonfile2();jsonFile.outputJson=u(require_output_json());jsonFile.outputJsonSync=require_output_json_sync();jsonFile.outputJSON=jsonFile.outputJson;jsonFile.outputJSONSync=jsonFile.outputJsonSync;jsonFile.writeJSON=jsonFile.writeJson;jsonFile.writeJSONSync=jsonFile.writeJsonSync;jsonFile.readJSON=jsonFile.readJson;jsonFile.readJSONSync=jsonFile.readJsonSync;module2.exports=jsonFile}});var require_move_sync=__commonJS({"../../node_modules/.pnpm/fs-extra@10.0.0/node_modules/fs-extra/lib/move-sync/move-sync.js"(exports2,module2){"use strict";var fs12=require_graceful_fs(),path9=require("path"),copySync=require_copy_sync2().copySync,removeSync=require_remove().removeSync,mkdirpSync=require_mkdirs().mkdirpSync,stat2=require_stat();function moveSync(src,dest,opts){opts=opts||{};let overwrite=opts.overwrite||opts.clobber||!1,{srcStat,isChangingCase=!1}=stat2.checkPathsSync(src,dest,"move",opts);return stat2.checkParentPathsSync(src,srcStat,dest,"move"),isParentRoot(dest)||mkdirpSync(path9.dirname(dest)),doRename(src,dest,overwrite,isChangingCase)}function isParentRoot(dest){let parent=path9.dirname(dest);return path9.parse(parent).root===parent}function doRename(src,dest,overwrite,isChangingCase){if(isChangingCase)return rename2(src,dest,overwrite);if(overwrite)return removeSync(dest),rename2(src,dest,overwrite);if(fs12.existsSync(dest))throw new Error("dest already exists.");return rename2(src,dest,overwrite)}function rename2(src,dest,overwrite){try{fs12.renameSync(src,dest)}catch(err){if(err.code!=="EXDEV")throw err;return moveAcrossDevice(src,dest,overwrite)}}function moveAcrossDevice(src,dest,overwrite){return copySync(src,dest,{overwrite,errorOnExist:!0}),removeSync(src)}module2.exports=moveSync}});var require_move_sync2=__commonJS({"../../node_modules/.pnpm/fs-extra@10.0.0/node_modules/fs-extra/lib/move-sync/index.js"(exports2,module2){"use strict";module2.exports={moveSync:require_move_sync()}}});var require_move=__commonJS({"../../node_modules/.pnpm/fs-extra@10.0.0/node_modules/fs-extra/lib/move/move.js"(exports2,module2){"use strict";var fs12=require_graceful_fs(),path9=require("path"),copy=require_copy2().copy,remove2=require_remove().remove,mkdirp3=require_mkdirs().mkdirp,pathExists=require_path_exists().pathExists,stat2=require_stat();function move(src,dest,opts,cb){typeof opts=="function"&&(cb=opts,opts={});let overwrite=opts.overwrite||opts.clobber||!1;stat2.checkPaths(src,dest,"move",opts,(err,stats)=>{if(err)return cb(err);let{srcStat,isChangingCase=!1}=stats;stat2.checkParentPaths(src,srcStat,dest,"move",err2=>{if(err2)return cb(err2);if(isParentRoot(dest))return doRename(src,dest,overwrite,isChangingCase,cb);mkdirp3(path9.dirname(dest),err3=>err3?cb(err3):doRename(src,dest,overwrite,isChangingCase,cb))})})}function isParentRoot(dest){let parent=path9.dirname(dest);return path9.parse(parent).root===parent}function doRename(src,dest,overwrite,isChangingCase,cb){if(isChangingCase)return rename2(src,dest,overwrite,cb);if(overwrite)return remove2(dest,err=>err?cb(err):rename2(src,dest,overwrite,cb));pathExists(dest,(err,destExists)=>err?cb(err):destExists?cb(new Error("dest already exists.")):rename2(src,dest,overwrite,cb))}function rename2(src,dest,overwrite,cb){fs12.rename(src,dest,err=>err?err.code!=="EXDEV"?cb(err):moveAcrossDevice(src,dest,overwrite,cb):cb())}function moveAcrossDevice(src,dest,overwrite,cb){copy(src,dest,{overwrite,errorOnExist:!0},err=>err?cb(err):remove2(src,cb))}module2.exports=move}});var require_move2=__commonJS({"../../node_modules/.pnpm/fs-extra@10.0.0/node_modules/fs-extra/lib/move/index.js"(exports2,module2){"use strict";var u=require_universalify().fromCallback;module2.exports={move:u(require_move())}}});var require_lib=__commonJS({"../../node_modules/.pnpm/fs-extra@10.0.0/node_modules/fs-extra/lib/index.js"(exports2,module2){"use strict";module2.exports={...require_fs(),...require_copy_sync2(),...require_copy2(),...require_empty(),...require_ensure(),...require_json(),...require_mkdirs(),...require_move_sync2(),...require_move2(),...require_output(),...require_path_exists(),...require_remove()}}});var require_multistream=__commonJS({"../../node_modules/.pnpm/multistream@2.1.1/node_modules/multistream/index.js"(exports2,module2){module2.exports=MultiStream;var inherits=require_inherits(),stream=require_readable();inherits(MultiStream,stream.Readable);function MultiStream(streams,opts){var self2=this;if(!(self2 instanceof MultiStream))return new MultiStream(streams,opts);stream.Readable.call(self2,opts),self2.destroyed=!1,self2._drained=!1,self2._forwarding=!1,self2._current=null,self2._toStreams2=opts&&opts.objectMode?toStreams2Obj:toStreams2Buf,typeof streams=="function"?self2._queue=streams:(self2._queue=streams.map(self2._toStreams2),self2._queue.forEach(function(stream2){typeof stream2!="function"&&self2._attachErrorListener(stream2)})),self2._next()}MultiStream.obj=function(streams){return new MultiStream(streams,{objectMode:!0,highWaterMark:16})};MultiStream.prototype._read=function(){this._drained=!0,this._forward()};MultiStream.prototype._forward=function(){if(!(this._forwarding||!this._drained||!this._current)){this._forwarding=!0;for(var chunk;(chunk=this._current.read())!==null;)this._drained=this.push(chunk);this._forwarding=!1}};MultiStream.prototype.destroy=function(err){this.destroyed||(this.destroyed=!0,this._current&&this._current.destroy&&this._current.destroy(),typeof this._queue!="function"&&this._queue.forEach(function(stream2){stream2.destroy&&stream2.destroy()}),err&&this.emit("error",err),this.emit("close"))};MultiStream.prototype._next=function(){var self2=this;if(self2._current=null,typeof self2._queue=="function")self2._queue(function(err,stream3){if(err)return self2.destroy(err);stream3=self2._toStreams2(stream3),self2._attachErrorListener(stream3),self2._gotNextStream(stream3)});else{var stream2=self2._queue.shift();typeof stream2=="function"&&(stream2=self2._toStreams2(stream2()),self2._attachErrorListener(stream2)),self2._gotNextStream(stream2)}};MultiStream.prototype._gotNextStream=function(stream2){var self2=this;if(!stream2){self2.push(null),self2.destroy();return}self2._current=stream2,self2._forward(),stream2.on("readable",onReadable),stream2.once("end",onEnd),stream2.once("close",onClose);function onReadable(){self2._forward()}function onClose(){stream2._readableState.ended||self2.destroy()}function onEnd(){self2._current=null,stream2.removeListener("readable",onReadable),stream2.removeListener("end",onEnd),stream2.removeListener("close",onClose),self2._next()}};MultiStream.prototype._attachErrorListener=function(stream2){var self2=this;if(!stream2)return;stream2.once("error",onError);function onError(err){stream2.removeListener("error",onError),self2.destroy(err)}};function toStreams2Obj(s){return toStreams2(s,{objectMode:!0,highWaterMark:16})}function toStreams2Buf(s){return toStreams2(s)}function toStreams2(s,opts){if(!s||typeof s=="function"||s._readableState)return s;var wrap=new stream.Readable(opts).wrap(s);return s.destroy&&(wrap.destroy=s.destroy.bind(s)),wrap}}});var require_deque=__commonJS({"../../node_modules/.pnpm/double-ended-queue@2.1.0-0/node_modules/double-ended-queue/js/deque.js"(exports2,module2){"use strict";function Deque(capacity){if(this._capacity=getCapacity(capacity),this._length=0,this._front=0,isArray(capacity)){for(var len=capacity.length,i=0;i<len;++i)this[i]=capacity[i];this._length=len}}Deque.prototype.toArray=function(){for(var len=this._length,ret=new Array(len),front=this._front,capacity=this._capacity,j=0;j<len;++j)ret[j]=this[front+j&capacity-1];return ret};Deque.prototype.push=function(item){var argsLength=arguments.length,length=this._length;if(argsLength>1){var capacity=this._capacity;if(length+argsLength>capacity){for(var i=0;i<argsLength;++i){this._checkCapacity(length+1);var j=this._front+length&this._capacity-1;this[j]=arguments[i],length++,this._length=length}return length}else{for(var j=this._front,i=0;i<argsLength;++i)this[j+length&capacity-1]=arguments[i],j++;return this._length=length+argsLength,length+argsLength}}if(argsLength===0)return length;this._checkCapacity(length+1);var i=this._front+length&this._capacity-1;return this[i]=item,this._length=length+1,length+1};Deque.prototype.pop=function(){var length=this._length;if(length!==0){var i=this._front+length-1&this._capacity-1,ret=this[i];return this[i]=void 0,this._length=length-1,ret}};Deque.prototype.shift=function(){var length=this._length;if(length!==0){var front=this._front,ret=this[front];return this[front]=void 0,this._front=front+1&this._capacity-1,this._length=length-1,ret}};Deque.prototype.unshift=function(item){var length=this._length,argsLength=arguments.length;if(argsLength>1){var capacity=this._capacity;if(length+argsLength>capacity){for(var i=argsLength-1;i>=0;i--){this._checkCapacity(length+1);var capacity=this._capacity,j=(this._front-1&capacity-1^capacity)-capacity;this[j]=arguments[i],length++,this._length=length,this._front=j}return length}else{for(var front=this._front,i=argsLength-1;i>=0;i--){var j=(front-1&capacity-1^capacity)-capacity;this[j]=arguments[i],front=j}return this._front=front,this._length=length+argsLength,length+argsLength}}if(argsLength===0)return length;this._checkCapacity(length+1);var capacity=this._capacity,i=(this._front-1&capacity-1^capacity)-capacity;return this[i]=item,this._length=length+1,this._front=i,length+1};Deque.prototype.peekBack=function(){var length=this._length;if(length!==0){var index=this._front+length-1&this._capacity-1;return this[index]}};Deque.prototype.peekFront=function(){if(this._length!==0)return this[this._front]};Deque.prototype.get=function(index){var i=index;if(i===(i|0)){var len=this._length;if(i<0&&(i=i+len),!(i<0||i>=len))return this[this._front+i&this._capacity-1]}};Deque.prototype.isEmpty=function(){return this._length===0};Deque.prototype.clear=function(){for(var len=this._length,front=this._front,capacity=this._capacity,j=0;j<len;++j)this[front+j&capacity-1]=void 0;this._length=0,this._front=0};Deque.prototype.toString=function(){return this.toArray().toString()};Deque.prototype.valueOf=Deque.prototype.toString;Deque.prototype.removeFront=Deque.prototype.shift;Deque.prototype.removeBack=Deque.prototype.pop;Deque.prototype.insertFront=Deque.prototype.unshift;Deque.prototype.insertBack=Deque.prototype.push;Deque.prototype.enqueue=Deque.prototype.push;Deque.prototype.dequeue=Deque.prototype.shift;Deque.prototype.toJSON=Deque.prototype.toArray;Object.defineProperty(Deque.prototype,"length",{get:function(){return this._length},set:function(){throw new RangeError("")}});Deque.prototype._checkCapacity=function(size){this._capacity<size&&this._resizeTo(getCapacity(this._capacity*1.5+16))};Deque.prototype._resizeTo=function(capacity){var oldCapacity=this._capacity;this._capacity=capacity;var front=this._front,length=this._length;if(front+length>oldCapacity){var moveItemsCount=front+length&oldCapacity-1;arrayMove(this,0,this,oldCapacity,moveItemsCount)}};var isArray=Array.isArray;function arrayMove(src,srcIndex,dst,dstIndex,len){for(var j=0;j<len;++j)dst[j+dstIndex]=src[j+srcIndex],src[j+srcIndex]=void 0}function pow2AtLeast(n){return n=n>>>0,n=n-1,n=n|n>>1,n=n|n>>2,n=n|n>>4,n=n|n>>8,n=n|n>>16,n+1}function getCapacity(capacity){if(typeof capacity!="number")if(isArray(capacity))capacity=capacity.length;else return 16;return pow2AtLeast(Math.min(Math.max(16,capacity),1073741824))}module2.exports=Deque}});var require_async_sema=__commonJS({"../../node_modules/.pnpm/async-sema@2.1.4/node_modules/async-sema/index.js"(exports2,module2){var EventEmitter=require("events"),util=require("util"),Deque=require_deque(),ReleaseEmitter=class extends EventEmitter{};function isFn(x){return typeof x=="function"}function defaultInit(){return"1"}var Sema5=class{constructor(nr,{initFn=defaultInit,pauseFn,resumeFn,capacity=10}={}){if(isFn(pauseFn)^isFn(resumeFn))throw new Error("pauseFn and resumeFn must be both set for pausing");this.nrTokens=nr,this.free=new Deque(nr),this.waiting=new Deque(capacity),this.releaseEmitter=new ReleaseEmitter,this.noTokens=initFn===defaultInit,this.pauseFn=pauseFn,this.resumeFn=resumeFn,this.releaseEmitter.on("release",token=>{let p=this.waiting.shift();p?p.resolve(token):(this.resumeFn&&this.paused&&(this.paused=!1,this.resumeFn()),this.free.push(token))});for(let i=0;i<nr;i++)this.free.push(initFn())}async acquire(){let token=this.free.pop();return token||new Promise((resolve3,reject)=>{this.pauseFn&&!this.paused&&(this.paused=!0,this.pauseFn()),this.waiting.push({resolve:resolve3,reject})})}async v(){return this.acquire()}release(token){this.releaseEmitter.emit("release",this.noTokens?"1":token)}p(token){return this.release(token)}drain(){let a=new Array(this.nrTokens);for(let i=0;i<this.nrTokens;i++)a[i]=this.acquire();return Promise.all(a)}nrWaiting(){return this.waiting.length}};Sema5.prototype.v=util.deprecate(Sema5.prototype.v,"`v()` is deperecated; use `acquire()` instead");Sema5.prototype.p=util.deprecate(Sema5.prototype.p,"`p()` is deprecated; use `release()` instead");module2.exports=Sema5}});var file_fs_ref_exports={};__export(file_fs_ref_exports,{default:()=>file_fs_ref_default});var import_assert2,import_fs_extra,import_multistream,import_path,import_async_sema,semaToPreventEMFILE,FileFsRef,file_fs_ref_default,init_file_fs_ref=__esm({"src/file-fs-ref.ts"(){"use strict";import_assert2=__toESM(require("assert")),import_fs_extra=__toESM(require_lib()),import_multistream=__toESM(require_multistream()),import_path=__toESM(require("path")),import_async_sema=__toESM(require_async_sema()),semaToPreventEMFILE=new import_async_sema.default(20),FileFsRef=class _FileFsRef{constructor({mode=33188,contentType,fsPath,size}){(0,import_assert2.default)(typeof mode=="number"),(0,import_assert2.default)(typeof fsPath=="string"),this.type="FileFsRef",this.mode=mode,this.contentType=contentType,this.fsPath=fsPath,this.size=size}static async fromFsPath({mode,contentType,fsPath,size}){let m=mode,s=size;if(!m||typeof s>"u"){let stat2=await import_fs_extra.default.lstat(fsPath);m=stat2.mode,s=stat2.size}return new _FileFsRef({mode:m,contentType,fsPath,size:s})}static async fromStream({mode=33188,contentType,stream,fsPath}){return(0,import_assert2.default)(typeof mode=="number"),(0,import_assert2.default)(typeof stream.pipe=="function"),(0,import_assert2.default)(typeof fsPath=="string"),await import_fs_extra.default.mkdirp(import_path.default.dirname(fsPath)),await new Promise((resolve3,reject)=>{let dest=import_fs_extra.default.createWriteStream(fsPath,{mode:mode&511});stream.pipe(dest),stream.on("error",reject),dest.on("finish",resolve3),dest.on("error",reject)}),_FileFsRef.fromFsPath({mode,contentType,fsPath})}async toStreamAsync(){await semaToPreventEMFILE.acquire();let release=()=>semaToPreventEMFILE.release(),stream=import_fs_extra.default.createReadStream(this.fsPath);return stream.on("close",release),stream.on("error",release),stream}toStream(){let flag=!1;return(0,import_multistream.default)(cb=>{if(flag)return cb(null,null);flag=!0,this.toStreamAsync().then(stream=>{cb(null,stream)}).catch(error=>{cb(error,null)})})}},file_fs_ref_default=FileFsRef}});var require_retry_operation=__commonJS({"../../node_modules/.pnpm/retry@0.12.0/node_modules/retry/lib/retry_operation.js"(exports2,module2){function RetryOperation(timeouts,options){typeof options=="boolean"&&(options={forever:options}),this._originalTimeouts=JSON.parse(JSON.stringify(timeouts)),this._timeouts=timeouts,this._options=options||{},this._maxRetryTime=options&&options.maxRetryTime||1/0,this._fn=null,this._errors=[],this._attempts=1,this._operationTimeout=null,this._operationTimeoutCb=null,this._timeout=null,this._operationStart=null,this._options.forever&&(this._cachedTimeouts=this._timeouts.slice(0))}module2.exports=RetryOperation;RetryOperation.prototype.reset=function(){this._attempts=1,this._timeouts=this._originalTimeouts};RetryOperation.prototype.stop=function(){this._timeout&&clearTimeout(this._timeout),this._timeouts=[],this._cachedTimeouts=null};RetryOperation.prototype.retry=function(err){if(this._timeout&&clearTimeout(this._timeout),!err)return!1;var currentTime=new Date().getTime();if(err&&currentTime-this._operationStart>=this._maxRetryTime)return this._errors.unshift(new Error("RetryOperation timeout occurred")),!1;this._errors.push(err);var timeout=this._timeouts.shift();if(timeout===void 0)if(this._cachedTimeouts)this._errors.splice(this._errors.length-1,this._errors.length),this._timeouts=this._cachedTimeouts.slice(0),timeout=this._timeouts.shift();else return!1;var self2=this,timer=setTimeout(function(){self2._attempts++,self2._operationTimeoutCb&&(self2._timeout=setTimeout(function(){self2._operationTimeoutCb(self2._attempts)},self2._operationTimeout),self2._options.unref&&self2._timeout.unref()),self2._fn(self2._attempts)},timeout);return this._options.unref&&timer.unref(),!0};RetryOperation.prototype.attempt=function(fn,timeoutOps){this._fn=fn,timeoutOps&&(timeoutOps.timeout&&(this._operationTimeout=timeoutOps.timeout),timeoutOps.cb&&(this._operationTimeoutCb=timeoutOps.cb));var self2=this;this._operationTimeoutCb&&(this._timeout=setTimeout(function(){self2._operationTimeoutCb()},self2._operationTimeout)),this._operationStart=new Date().getTime(),this._fn(this._attempts)};RetryOperation.prototype.try=function(fn){console.log("Using RetryOperation.try() is deprecated"),this.attempt(fn)};RetryOperation.prototype.start=function(fn){console.log("Using RetryOperation.start() is deprecated"),this.attempt(fn)};RetryOperation.prototype.start=RetryOperation.prototype.try;RetryOperation.prototype.errors=function(){return this._errors};RetryOperation.prototype.attempts=function(){return this._attempts};RetryOperation.prototype.mainError=function(){if(this._errors.length===0)return null;for(var counts={},mainError=null,mainErrorCount=0,i=0;i<this._errors.length;i++){var error=this._errors[i],message=error.message,count=(counts[message]||0)+1;counts[message]=count,count>=mainErrorCount&&(mainError=error,mainErrorCount=count)}return mainError}}});var require_retry=__commonJS({"../../node_modules/.pnpm/retry@0.12.0/node_modules/retry/lib/retry.js"(exports2){var RetryOperation=require_retry_operation();exports2.operation=function(options){var timeouts=exports2.timeouts(options);return new RetryOperation(timeouts,{forever:options&&options.forever,unref:options&&options.unref,maxRetryTime:options&&options.maxRetryTime})};exports2.timeouts=function(options){if(options instanceof Array)return[].concat(options);var opts={retries:10,factor:2,minTimeout:1*1e3,maxTimeout:1/0,randomize:!1};for(var key in options)opts[key]=options[key];if(opts.minTimeout>opts.maxTimeout)throw new Error("minTimeout is greater than maxTimeout");for(var timeouts=[],i=0;i<opts.retries;i++)timeouts.push(this.createTimeout(i,opts));return options&&options.forever&&!timeouts.length&&timeouts.push(this.createTimeout(i,opts)),timeouts.sort(function(a,b){return a-b}),timeouts};exports2.createTimeout=function(attempt,opts){var random=opts.randomize?Math.random()+1:1,timeout=Math.round(random*opts.minTimeout*Math.pow(opts.factor,attempt));return timeout=Math.min(timeout,opts.maxTimeout),timeout};exports2.wrap=function(obj,options,methods){if(options instanceof Array&&(methods=options,options=null),!methods){methods=[];for(var key in obj)typeof obj[key]=="function"&&methods.push(key)}for(var i=0;i<methods.length;i++){var method=methods[i],original=obj[method];obj[method]=function(original2){var op=exports2.operation(options),args=Array.prototype.slice.call(arguments,1),callback=args.pop();args.push(function(err){op.retry(err)||(err&&(arguments[0]=op.mainError()),callback.apply(this,arguments))}),op.attempt(function(){original2.apply(obj,args)})}.bind(obj,original),obj[method].options=options}}}});var require_retry2=__commonJS({"../../node_modules/.pnpm/retry@0.12.0/node_modules/retry/index.js"(exports2,module2){module2.exports=require_retry()}});var require_lib2=__commonJS({"../../node_modules/.pnpm/async-retry@1.2.3/node_modules/async-retry/lib/index.js"(exports2,module2){var retrier=require_retry2();function retry2(fn,opts){function run(resolve3,reject){var options=opts||{},op=retrier.operation(options);function bail(err){reject(err||new Error("Aborted"))}function onError(err,num){if(err.bail){bail(err);return}op.retry(err)?options.onRetry&&options.onRetry(err,num):reject(op.mainError())}function runAttempt(num){var val;try{val=fn(bail,num)}catch(err){onError(err,num);return}Promise.resolve(val).then(resolve3).catch(function(err){onError(err,num)})}op.attempt(runAttempt)}return new Promise(run)}module2.exports=retry2}});var file_ref_exports={};__export(file_ref_exports,{default:()=>FileRef});function getEnvAsUrlOrThrow(key){let value=process.env[key];if(value!==void 0)try{return new URL(value),value}catch(e){throw e instanceof TypeError&&"code"in e&&e.code==="ERR_INVALID_URL"?new Error(`A non-URL value was supplied to the ${key} environment variable`):e}}var import_assert3,import_stream,import_multistream2,import_async_retry,import_async_sema2,semaToDownloadFromS3,BailableError,FileRef,init_file_ref=__esm({"src/file-ref.ts"(){"use strict";import_assert3=__toESM(require("assert")),import_stream=require("stream"),import_multistream2=__toESM(require_multistream()),import_async_retry=__toESM(require_lib2()),import_async_sema2=__toESM(require_async_sema()),semaToDownloadFromS3=new import_async_sema2.default(5),BailableError=class extends Error{constructor(...args){super(...args);this.bail=!1}},FileRef=class{constructor({mode=33188,digest,contentType,mutable=!1}){(0,import_assert3.default)(typeof mode=="number"),(0,import_assert3.default)(typeof digest=="string"),this.type="FileRef",this.mode=mode,this.digest=digest,this.contentType=contentType,this.mutable=mutable}getNowFilesCloudfrontUrl(){return getEnvAsUrlOrThrow("NOW_FILES_CLOUDFRONT_URL")||"https://dmmcy0pwk6bqi.cloudfront.net"}getNowEphemeralFilesS3Url(){return getEnvAsUrlOrThrow("NOW_EPHEMERAL_FILES_S3_URL")||"https://now-ephemeral-files.s3.amazonaws.com"}getNowFilesS3Url(){return getEnvAsUrlOrThrow("NOW_FILES_S3_URL")||"https://now-files.s3.amazonaws.com"}async toStreamAsync(){let url="",[digestType,digestHash]=this.digest.split(":");if(digestType==="sha")url=this.mutable?`${this.getNowFilesS3Url()}/${digestHash}`:`${this.getNowFilesCloudfrontUrl()}/${digestHash}`;else if(digestType==="sha+ephemeral")url=`${this.getNowEphemeralFilesS3Url()}/${digestHash}`;else throw new Error("Expected digest to be sha");await semaToDownloadFromS3.acquire();try{return await(0,import_async_retry.default)(async()=>{let resp=await fetch(url);if(!resp.ok||!resp.body){let error=new BailableError(`download: ${resp.status} ${resp.statusText} for ${url}`);throw resp.status===403&&(error.bail=!0),await resp.body?.cancel().catch(()=>{}),error}return import_stream.Readable.fromWeb(resp.body)},{factor:1,retries:3})}finally{semaToDownloadFromS3.release()}}toStream(){let flag=!1;return(0,import_multistream2.default)(cb=>{if(flag)return cb(null,null);flag=!0,this.toStreamAsync().then(stream=>{cb(null,stream)}).catch(error=>{cb(error,null)})})}}}});function validateMaxConcurrency(value){value!==void 0&&(0,import_assert4.default)(Number.isInteger(value)&&value>=1&&value<=MAX_CONCURRENCY,'"maxConcurrency" must be an integer from 1 to 8192')}var import_assert4,MAX_CONCURRENCY,init_max_concurrency=__esm({"src/max-concurrency.ts"(){"use strict";import_assert4=__toESM(require("assert")),MAX_CONCURRENCY=8192}});var require_buffer_crc32=__commonJS({"../../node_modules/.pnpm/buffer-crc32@0.2.13/node_modules/buffer-crc32/index.js"(exports2,module2){var Buffer2=require("buffer").Buffer,CRC_TABLE=[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];typeof Int32Array<"u"&&(CRC_TABLE=new Int32Array(CRC_TABLE));function ensureBuffer(input){if(Buffer2.isBuffer(input))return input;var hasNewBufferAPI=typeof Buffer2.alloc=="function"&&typeof Buffer2.from=="function";if(typeof input=="number")return hasNewBufferAPI?Buffer2.alloc(input):new Buffer2(input);if(typeof input=="string")return hasNewBufferAPI?Buffer2.from(input):new Buffer2(input);throw new Error("input must be buffer, number, or string, received "+typeof input)}function bufferizeInt(num){var tmp=ensureBuffer(4);return tmp.writeInt32BE(num,0),tmp}function _crc32(buf,previous){buf=ensureBuffer(buf),Buffer2.isBuffer(previous)&&(previous=previous.readUInt32BE(0));for(var crc=~~previous^-1,n=0;n<buf.length;n++)crc=CRC_TABLE[(crc^buf[n])&255]^crc>>>8;return crc^-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};module2.exports=crc32}});var require_yazl=__commonJS({"../../node_modules/.pnpm/yazl@2.5.1/node_modules/yazl/index.js"(exports2){var fs12=require("fs"),Transform=require("stream").Transform,PassThrough=require("stream").PassThrough,zlib=require("zlib"),util=require("util"),EventEmitter=require("events").EventEmitter,crc32=require_buffer_crc32();exports2.ZipFile=ZipFile2;exports2.dateToDosDateTime=dateToDosDateTime;util.inherits(ZipFile2,EventEmitter);function ZipFile2(){this.outputStream=new PassThrough,this.entries=[],this.outputStreamCursor=0,this.ended=!1,this.allDone=!1,this.forceZip64Eocd=!1}ZipFile2.prototype.addFile=function(realPath,metadataPath,options){var self2=this;metadataPath=validateMetadataPath(metadataPath,!1),options==null&&(options={});var entry=new Entry(metadataPath,!1,options);self2.entries.push(entry),fs12.stat(realPath,function(err,stats){if(err)return self2.emit("error",err);if(!stats.isFile())return self2.emit("error",new Error("not a file: "+realPath));entry.uncompressedSize=stats.size,options.mtime==null&&entry.setLastModDate(stats.mtime),options.mode==null&&entry.setFileAttributesMode(stats.mode),entry.setFileDataPumpFunction(function(){var readStream=fs12.createReadStream(realPath);entry.state=Entry.FILE_DATA_IN_PROGRESS,readStream.on("error",function(err2){self2.emit("error",err2)}),pumpFileDataReadStream(self2,entry,readStream)}),pumpEntries(self2)})};ZipFile2.prototype.addReadStream=function(readStream,metadataPath,options){var self2=this;metadataPath=validateMetadataPath(metadataPath,!1),options==null&&(options={});var entry=new Entry(metadataPath,!1,options);self2.entries.push(entry),entry.setFileDataPumpFunction(function(){entry.state=Entry.FILE_DATA_IN_PROGRESS,pumpFileDataReadStream(self2,entry,readStream)}),pumpEntries(self2)};ZipFile2.prototype.addBuffer=function(buffer,metadataPath,options){var self2=this;if(metadataPath=validateMetadataPath(metadataPath,!1),buffer.length>1073741823)throw new Error("buffer too large: "+buffer.length+" > 1073741823");if(options==null&&(options={}),options.size!=null)throw new Error("options.size not allowed");var entry=new Entry(metadataPath,!1,options);entry.uncompressedSize=buffer.length,entry.crc32=crc32.unsigned(buffer),entry.crcAndFileSizeKnown=!0,self2.entries.push(entry),entry.compress?zlib.deflateRaw(buffer,function(err,compressedBuffer){setCompressedBuffer(compressedBuffer)}):setCompressedBuffer(buffer);function setCompressedBuffer(compressedBuffer){entry.compressedSize=compressedBuffer.length,entry.setFileDataPumpFunction(function(){writeToOutputStream(self2,compressedBuffer),writeToOutputStream(self2,entry.getDataDescriptor()),entry.state=Entry.FILE_DATA_DONE,setImmediate(function(){pumpEntries(self2)})}),pumpEntries(self2)}};ZipFile2.prototype.addEmptyDirectory=function(metadataPath,options){var self2=this;if(metadataPath=validateMetadataPath(metadataPath,!0),options==null&&(options={}),options.size!=null)throw new Error("options.size not allowed");if(options.compress!=null)throw new Error("options.compress not allowed");var entry=new Entry(metadataPath,!0,options);self2.entries.push(entry),entry.setFileDataPumpFunction(function(){writeToOutputStream(self2,entry.getDataDescriptor()),entry.state=Entry.FILE_DATA_DONE,pumpEntries(self2)}),pumpEntries(self2)};var eocdrSignatureBuffer=bufferFrom([80,75,5,6]);ZipFile2.prototype.end=function(options,finalSizeCallback){if(typeof options=="function"&&(finalSizeCallback=options,options=null),options==null&&(options={}),!this.ended){if(this.ended=!0,this.finalSizeCallback=finalSizeCallback,this.forceZip64Eocd=!!options.forceZip64Format,options.comment){if(typeof options.comment=="string"?this.comment=encodeCp437(options.comment):this.comment=options.comment,this.comment.length>65535)throw new Error("comment is too large");if(bufferIncludes(this.comment,eocdrSignatureBuffer))throw new Error("comment contains end of central directory record signature")}else this.comment=EMPTY_BUFFER;pumpEntries(this)}};function writeToOutputStream(self2,buffer){self2.outputStream.write(buffer),self2.outputStreamCursor+=buffer.length}function pumpFileDataReadStream(self2,entry,readStream){var crc32Watcher=new Crc32Watcher,uncompressedSizeCounter=new ByteCounter,compressor=entry.compress?new zlib.DeflateRaw:new PassThrough,compressedSizeCounter=new ByteCounter;readStream.pipe(crc32Watcher).pipe(uncompressedSizeCounter).pipe(compressor).pipe(compressedSizeCounter).pipe(self2.outputStream,{end:!1}),compressedSizeCounter.on("end",function(){if(entry.crc32=crc32Watcher.crc32,entry.uncompressedSize==null)entry.uncompressedSize=uncompressedSizeCounter.byteCount;else if(entry.uncompressedSize!==uncompressedSizeCounter.byteCount)return self2.emit("error",new Error("file data stream has unexpected number of bytes"));entry.compressedSize=compressedSizeCounter.byteCount,self2.outputStreamCursor+=entry.compressedSize,writeToOutputStream(self2,entry.getDataDescriptor()),entry.state=Entry.FILE_DATA_DONE,pumpEntries(self2)})}function pumpEntries(self2){if(self2.allDone)return;if(self2.ended&&self2.finalSizeCallback!=null){var finalSize=calculateFinalSize(self2);finalSize!=null&&(self2.finalSizeCallback(finalSize),self2.finalSizeCallback=null)}var entry=getFirstNotDoneEntry();function getFirstNotDoneEntry(){for(var i=0;i<self2.entries.length;i++){var entry2=self2.entries[i];if(entry2.state<Entry.FILE_DATA_DONE)return entry2}return null}if(entry!=null){if(entry.state<Entry.READY_TO_PUMP_FILE_DATA||entry.state===Entry.FILE_DATA_IN_PROGRESS)return;entry.relativeOffsetOfLocalHeader=self2.outputStreamCursor;var localFileHeader=entry.getLocalFileHeader();writeToOutputStream(self2,localFileHeader),entry.doFileDataPump()}else self2.ended&&(self2.offsetOfStartOfCentralDirectory=self2.outputStreamCursor,self2.entries.forEach(function(entry2){var centralDirectoryRecord=entry2.getCentralDirectoryRecord();writeToOutputStream(self2,centralDirectoryRecord)}),writeToOutputStream(self2,getEndOfCentralDirectoryRecord(self2)),self2.outputStream.end(),self2.allDone=!0)}function calculateFinalSize(self2){for(var pretendOutputCursor=0,centralDirectorySize=0,i=0;i<self2.entries.length;i++){var entry=self2.entries[i];if(entry.compress)return-1;if(entry.state>=Entry.READY_TO_PUMP_FILE_DATA){if(entry.uncompressedSize==null)return-1}else if(entry.uncompressedSize==null)return null;entry.relativeOffsetOfLocalHeader=pretendOutputCursor;var useZip64Format=entry.useZip64Format();pretendOutputCursor+=LOCAL_FILE_HEADER_FIXED_SIZE+entry.utf8FileName.length,pretendOutputCursor+=entry.uncompressedSize,entry.crcAndFileSizeKnown||(useZip64Format?pretendOutputCursor+=ZIP64_DATA_DESCRIPTOR_SIZE:pretendOutputCursor+=DATA_DESCRIPTOR_SIZE),centralDirectorySize+=CENTRAL_DIRECTORY_RECORD_FIXED_SIZE+entry.utf8FileName.length+entry.fileComment.length,useZip64Format&&(centralDirectorySize+=ZIP64_EXTENDED_INFORMATION_EXTRA_FIELD_SIZE)}var endOfCentralDirectorySize=0;return(self2.forceZip64Eocd||self2.entries.length>=65535||centralDirectorySize>=65535||pretendOutputCursor>=4294967295)&&(endOfCentralDirectorySize+=ZIP64_END_OF_CENTRAL_DIRECTORY_RECORD_SIZE+ZIP64_END_OF_CENTRAL_DIRECTORY_LOCATOR_SIZE),endOfCentralDirectorySize+=END_OF_CENTRAL_DIRECTORY_RECORD_SIZE+self2.comment.length,pretendOutputCursor+centralDirectorySize+endOfCentralDirectorySize}var ZIP64_END_OF_CENTRAL_DIRECTORY_RECORD_SIZE=56,ZIP64_END_OF_CENTRAL_DIRECTORY_LOCATOR_SIZE=20,END_OF_CENTRAL_DIRECTORY_RECORD_SIZE=22;function getEndOfCentralDirectoryRecord(self2,actuallyJustTellMeHowLongItWouldBe){var needZip64Format=!1,normalEntriesLength=self2.entries.length;(self2.forceZip64Eocd||self2.entries.length>=65535)&&(normalEntriesLength=65535,needZip64Format=!0);var sizeOfCentralDirectory=self2.outputStreamCursor-self2.offsetOfStartOfCentralDirectory,normalSizeOfCentralDirectory=sizeOfCentralDirectory;(self2.forceZip64Eocd||sizeOfCentralDirectory>=4294967295)&&(normalSizeOfCentralDirectory=4294967295,needZip64Format=!0);var normalOffsetOfStartOfCentralDirectory=self2.offsetOfStartOfCentralDirectory;if((self2.forceZip64Eocd||self2.offsetOfStartOfCentralDirectory>=4294967295)&&(normalOffsetOfStartOfCentralDirectory=4294967295,needZip64Format=!0),actuallyJustTellMeHowLongItWouldBe)return needZip64Format?ZIP64_END_OF_CENTRAL_DIRECTORY_RECORD_SIZE+ZIP64_END_OF_CENTRAL_DIRECTORY_LOCATOR_SIZE+END_OF_CENTRAL_DIRECTORY_RECORD_SIZE:END_OF_CENTRAL_DIRECTORY_RECORD_SIZE;var eocdrBuffer=bufferAlloc(END_OF_CENTRAL_DIRECTORY_RECORD_SIZE+self2.comment.length);if(eocdrBuffer.writeUInt32LE(101010256,0),eocdrBuffer.writeUInt16LE(0,4),eocdrBuffer.writeUInt16LE(0,6),eocdrBuffer.writeUInt16LE(normalEntriesLength,8),eocdrBuffer.writeUInt16LE(normalEntriesLength,10),eocdrBuffer.writeUInt32LE(normalSizeOfCentralDirectory,12),eocdrBuffer.writeUInt32LE(normalOffsetOfStartOfCentralDirectory,16),eocdrBuffer.writeUInt16LE(self2.comment.length,20),self2.comment.copy(eocdrBuffer,22),!needZip64Format)return eocdrBuffer;var zip64EocdrBuffer=bufferAlloc(ZIP64_END_OF_CENTRAL_DIRECTORY_RECORD_SIZE);zip64EocdrBuffer.writeUInt32LE(101075792,0),writeUInt64LE(zip64EocdrBuffer,ZIP64_END_OF_CENTRAL_DIRECTORY_RECORD_SIZE-12,4),zip64EocdrBuffer.writeUInt16LE(VERSION_MADE_BY,12),zip64EocdrBuffer.writeUInt16LE(VERSION_NEEDED_TO_EXTRACT_ZIP64,14),zip64EocdrBuffer.writeUInt32LE(0,16),zip64EocdrBuffer.writeUInt32LE(0,20),writeUInt64LE(zip64EocdrBuffer,self2.entries.length,24),writeUInt64LE(zip64EocdrBuffer,self2.entries.length,32),writeUInt64LE(zip64EocdrBuffer,sizeOfCentralDirectory,40),writeUInt64LE(zip64EocdrBuffer,self2.offsetOfStartOfCentralDirectory,48);var zip64EocdlBuffer=bufferAlloc(ZIP64_END_OF_CENTRAL_DIRECTORY_LOCATOR_SIZE);return zip64EocdlBuffer.writeUInt32LE(117853008,0),zip64EocdlBuffer.writeUInt32LE(0,4),writeUInt64LE(zip64EocdlBuffer,self2.outputStreamCursor,8),zip64EocdlBuffer.writeUInt32LE(1,16),Buffer.concat([zip64EocdrBuffer,zip64EocdlBuffer,eocdrBuffer])}function validateMetadataPath(metadataPath,isDirectory2){if(metadataPath==="")throw new Error("empty metadataPath");if(metadataPath=metadataPath.replace(/\\/g,"/"),/^[a-zA-Z]:/.test(metadataPath)||/^\//.test(metadataPath))throw new Error("absolute path: "+metadataPath);if(metadataPath.split("/").indexOf("..")!==-1)throw new Error("invalid relative path: "+metadataPath);var looksLikeDirectory=/\/$/.test(metadataPath);if(isDirectory2)looksLikeDirectory||(metadataPath+="/");else if(looksLikeDirectory)throw new Error("file path cannot end with '/': "+metadataPath);return metadataPath}var EMPTY_BUFFER=bufferAlloc(0);function Entry(metadataPath,isDirectory2,options){if(this.utf8FileName=bufferFrom(metadataPath),this.utf8FileName.length>65535)throw new Error("utf8 file name too long. "+utf8FileName.length+" > 65535");if(this.isDirectory=isDirectory2,this.state=Entry.WAITING_FOR_METADATA,this.setLastModDate(options.mtime!=null?options.mtime:new Date),options.mode!=null?this.setFileAttributesMode(options.mode):this.setFileAttributesMode(isDirectory2?16893:33204),isDirectory2?(this.crcAndFileSizeKnown=!0,this.crc32=0,this.uncompressedSize=0,this.compressedSize=0):(this.crcAndFileSizeKnown=!1,this.crc32=null,this.uncompressedSize=null,this.compressedSize=null,options.size!=null&&(this.uncompressedSize=options.size)),isDirectory2?this.compress=!1:(this.compress=!0,options.compress!=null&&(this.compress=!!options.compress)),this.forceZip64Format=!!options.forceZip64Format,options.fileComment){if(typeof options.fileComment=="string"?this.fileComment=bufferFrom(options.fileComment,"utf-8"):this.fileComment=options.fileComment,this.fileComment.length>65535)throw new Error("fileComment is too large")}else this.fileComment=EMPTY_BUFFER}Entry.WAITING_FOR_METADATA=0;Entry.READY_TO_PUMP_FILE_DATA=1;Entry.FILE_DATA_IN_PROGRESS=2;Entry.FILE_DATA_DONE=3;Entry.prototype.setLastModDate=function(date){var dosDateTime=dateToDosDateTime(date);this.lastModFileTime=dosDateTime.time,this.lastModFileDate=dosDateTime.date};Entry.prototype.setFileAttributesMode=function(mode){if((mode&65535)!==mode)throw new Error("invalid mode. expected: 0 <= "+mode+" <= 65535");this.externalFileAttributes=mode<<16>>>0};Entry.prototype.setFileDataPumpFunction=function(doFileDataPump){this.doFileDataPump=doFileDataPump,this.state=Entry.READY_TO_PUMP_FILE_DATA};Entry.prototype.useZip64Format=function(){return this.forceZip64Format||this.uncompressedSize!=null&&this.uncompressedSize>4294967294||this.compressedSize!=null&&this.compressedSize>4294967294||this.relativeOffsetOfLocalHeader!=null&&this.relativeOffsetOfLocalHeader>4294967294};var LOCAL_FILE_HEADER_FIXED_SIZE=30,VERSION_NEEDED_TO_EXTRACT_UTF8=20,VERSION_NEEDED_TO_EXTRACT_ZIP64=45,VERSION_MADE_BY=831,FILE_NAME_IS_UTF8=2048,UNKNOWN_CRC32_AND_FILE_SIZES=8;Entry.prototype.getLocalFileHeader=function(){var crc322=0,compressedSize=0,uncompressedSize=0;this.crcAndFileSizeKnown&&(crc322=this.crc32,compressedSize=this.compressedSize,uncompressedSize=this.uncompressedSize);var fixedSizeStuff=bufferAlloc(LOCAL_FILE_HEADER_FIXED_SIZE),generalPurposeBitFlag=FILE_NAME_IS_UTF8;return this.crcAndFileSizeKnown||(generalPurposeBitFlag|=UNKNOWN_CRC32_AND_FILE_SIZES),fixedSizeStuff.writeUInt32LE(67324752,0),fixedSizeStuff.writeUInt16LE(VERSION_NEEDED_TO_EXTRACT_UTF8,4),fixedSizeStuff.writeUInt16LE(generalPurposeBitFlag,6),fixedSizeStuff.writeUInt16LE(this.getCompressionMethod(),8),fixedSizeStuff.writeUInt16LE(this.lastModFileTime,10),fixedSizeStuff.writeUInt16LE(this.lastModFileDate,12),fixedSizeStuff.writeUInt32LE(crc322,14),fixedSizeStuff.writeUInt32LE(compressedSize,18),fixedSizeStuff.writeUInt32LE(uncompressedSize,22),fixedSizeStuff.writeUInt16LE(this.utf8FileName.length,26),fixedSizeStuff.writeUInt16LE(0,28),Buffer.concat([fixedSizeStuff,this.utf8FileName])};var DATA_DESCRIPTOR_SIZE=16,ZIP64_DATA_DESCRIPTOR_SIZE=24;Entry.prototype.getDataDescriptor=function(){if(this.crcAndFileSizeKnown)return EMPTY_BUFFER;if(this.useZip64Format()){var buffer=bufferAlloc(ZIP64_DATA_DESCRIPTOR_SIZE);return buffer.writeUInt32LE(134695760,0),buffer.writeUInt32LE(this.crc32,4),writeUInt64LE(buffer,this.compressedSize,8),writeUInt64LE(buffer,this.uncompressedSize,16),buffer}else{var buffer=bufferAlloc(DATA_DESCRIPTOR_SIZE);return buffer.writeUInt32LE(134695760,0),buffer.writeUInt32LE(this.crc32,4),buffer.writeUInt32LE(this.compressedSize,8),buffer.writeUInt32LE(this.uncompressedSize,12),buffer}};var CENTRAL_DIRECTORY_RECORD_FIXED_SIZE=46,ZIP64_EXTENDED_INFORMATION_EXTRA_FIELD_SIZE=28;Entry.prototype.getCentralDirectoryRecord=function(){var fixedSizeStuff=bufferAlloc(CENTRAL_DIRECTORY_RECORD_FIXED_SIZE),generalPurposeBitFlag=FILE_NAME_IS_UTF8;this.crcAndFileSizeKnown||(generalPurposeBitFlag|=UNKNOWN_CRC32_AND_FILE_SIZES);var normalCompressedSize=this.compressedSize,normalUncompressedSize=this.uncompressedSize,normalRelativeOffsetOfLocalHeader=this.relativeOffsetOfLocalHeader,versionNeededToExtract,zeiefBuffer;return this.useZip64Format()?(normalCompressedSize=4294967295,normalUncompressedSize=4294967295,normalRelativeOffsetOfLocalHeader=4294967295,versionNeededToExtract=VERSION_NEEDED_TO_EXTRACT_ZIP64,zeiefBuffer=bufferAlloc(ZIP64_EXTENDED_INFORMATION_EXTRA_FIELD_SIZE),zeiefBuffer.writeUInt16LE(1,0),zeiefBuffer.writeUInt16LE(ZIP64_EXTENDED_INFORMATION_EXTRA_FIELD_SIZE-4,2),writeUInt64LE(zeiefBuffer,this.uncompressedSize,4),writeUInt64LE(zeiefBuffer,this.compressedSize,12),writeUInt64LE(zeiefBuffer,this.relativeOffsetOfLocalHeader,20)):(versionNeededToExtract=VERSION_NEEDED_TO_EXTRACT_UTF8,zeiefBuffer=EMPTY_BUFFER),fixedSizeStuff.writeUInt32LE(33639248,0),fixedSizeStuff.writeUInt16LE(VERSION_MADE_BY,4),fixedSizeStuff.writeUInt16LE(versionNeededToExtract,6),fixedSizeStuff.writeUInt16LE(generalPurposeBitFlag,8),fixedSizeStuff.writeUInt16LE(this.getCompressionMethod(),10),fixedSizeStuff.writeUInt16LE(this.lastModFileTime,12),fixedSizeStuff.writeUInt16LE(this.lastModFileDate,14),fixedSizeStuff.writeUInt32LE(this.crc32,16),fixedSizeStuff.writeUInt32LE(normalCompressedSize,20),fixedSizeStuff.writeUInt32LE(normalUncompressedSize,24),fixedSizeStuff.writeUInt16LE(this.utf8FileName.length,28),fixedSizeStuff.writeUInt16LE(zeiefBuffer.length,30),fixedSizeStuff.writeUInt16LE(this.fileComment.length,32),fixedSizeStuff.writeUInt16LE(0,34),fixedSizeStuff.writeUInt16LE(0,36),fixedSizeStuff.writeUInt32LE(this.externalFileAttributes,38),fixedSizeStuff.writeUInt32LE(normalRelativeOffsetOfLocalHeader,42),Buffer.concat([fixedSizeStuff,this.utf8FileName,zeiefBuffer,this.fileComment])};Entry.prototype.getCompressionMethod=function(){var NO_COMPRESSION=0,DEFLATE_COMPRESSION=8;return this.compress?DEFLATE_COMPRESSION:NO_COMPRESSION};function dateToDosDateTime(jsDate){var date=0;date|=jsDate.getDate()&31,date|=(jsDate.getMonth()+1&15)<<5,date|=(jsDate.getFullYear()-1980&127)<<9;var time=0;return time|=Math.floor(jsDate.getSeconds()/2),time|=(jsDate.getMinutes()&63)<<5,time|=(jsDate.getHours()&31)<<11,{date,time}}function writeUInt64LE(buffer,n,offset){var high=Math.floor(n/4294967296),low=n%4294967296;buffer.writeUInt32LE(low,offset),buffer.writeUInt32LE(high,offset+4)}util.inherits(ByteCounter,Transform);function ByteCounter(options){Transform.call(this,options),this.byteCount=0}ByteCounter.prototype._transform=function(chunk,encoding,cb){this.byteCount+=chunk.length,cb(null,chunk)};util.inherits(Crc32Watcher,Transform);function Crc32Watcher(options){Transform.call(this,options),this.crc32=0}Crc32Watcher.prototype._transform=function(chunk,encoding,cb){this.crc32=crc32.unsigned(chunk,this.crc32),cb(null,chunk)};var cp437="\0\u263A\u263B\u2665\u2666\u2663\u2660\u2022\u25D8\u25CB\u25D9\u2642\u2640\u266A\u266B\u263C\u25BA\u25C4\u2195\u203C\xB6\xA7\u25AC\u21A8\u2191\u2193\u2192\u2190\u221F\u2194\u25B2\u25BC !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\u2302\xC7\xFC\xE9\xE2\xE4\xE0\xE5\xE7\xEA\xEB\xE8\xEF\xEE\xEC\xC4\xC5\xC9\xE6\xC6\xF4\xF6\xF2\xFB\xF9\xFF\xD6\xDC\xA2\xA3\xA5\u20A7\u0192\xE1\xED\xF3\xFA\xF1\xD1\xAA\xBA\xBF\u2310\xAC\xBD\xBC\xA1\xAB\xBB\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255D\u255C\u255B\u2510\u2514\u2534\u252C\u251C\u2500\u253C\u255E\u255F\u255A\u2554\u2569\u2566\u2560\u2550\u256C\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256B\u256A\u2518\u250C\u2588\u2584\u258C\u2590\u2580\u03B1\xDF\u0393\u03C0\u03A3\u03C3\xB5\u03C4\u03A6\u0398\u03A9\u03B4\u221E\u03C6\u03B5\u2229\u2261\xB1\u2265\u2264\u2320\u2321\xF7\u2248\xB0\u2219\xB7\u221A\u207F\xB2\u25A0\xA0";if(cp437.length!==256)throw new Error("assertion failure");var reverseCp437=null;function encodeCp437(string){if(/^[\x20-\x7e]*$/.test(string))return bufferFrom(string,"utf-8");if(reverseCp437==null){reverseCp437={};for(var i=0;i<cp437.length;i++)reverseCp437[cp437[i]]=i}for(var result=bufferAlloc(string.length),i=0;i<string.length;i++){var b=reverseCp437[string[i]];if(b==null)throw new Error("character not encodable in CP437: "+JSON.stringify(string[i]));result[i]=b}return result}function bufferAlloc(size){bufferAlloc=modern;try{return bufferAlloc(size)}catch{return bufferAlloc=legacy,bufferAlloc(size)}function modern(size2){return Buffer.allocUnsafe(size2)}function legacy(size2){return new Buffer(size2)}}function bufferFrom(something,encoding){bufferFrom=modern;try{return bufferFrom(something,encoding)}catch{return bufferFrom=legacy,bufferFrom(something,encoding)}function modern(something2,encoding2){return Buffer.from(something2,encoding2)}function legacy(something2,encoding2){return new Buffer(something2,encoding2)}}function bufferIncludes(buffer,content){bufferIncludes=modern;try{return bufferIncludes(buffer,content)}catch{return bufferIncludes=legacy,bufferIncludes(buffer,content)}function modern(buffer2,content2){return buffer2.includes(content2)}function legacy(buffer2,content2){for(var i=0;i<=buffer2.length-content2.length;i++)for(var j=0;;j++){if(j===content2.length)return!0;if(buffer2[i+j]!==content2[j])break}return!1}}}});var require_concat_map=__commonJS({"../../node_modules/.pnpm/concat-map@0.0.1/node_modules/concat-map/index.js"(exports2,module2){module2.exports=function(xs,fn){for(var res=[],i=0;i<xs.length;i++){var x=fn(xs[i],i);isArray(x)?res.push.apply(res,x):res.push(x)}return res};var isArray=Array.isArray||function(xs){return Object.prototype.toString.call(xs)==="[object Array]"}}});var require_balanced_match=__commonJS({"../../node_modules/.pnpm/balanced-match@1.0.2/node_modules/balanced-match/index.js"(exports2,module2){"use strict";module2.exports=balanced;function balanced(a,b,str){a instanceof RegExp&&(a=maybeMatch(a,str)),b instanceof RegExp&&(b=maybeMatch(b,str));var r=range(a,b,str);return r&&{start:r[0],end:r[1],pre:str.slice(0,r[0]),body:str.slice(r[0]+a.length,r[1]),post:str.slice(r[1]+b.length)}}function maybeMatch(reg,str){var m=str.match(reg);return m?m[0]:null}balanced.range=range;function range(a,b,str){var begs,beg,left,right,result,ai=str.indexOf(a),bi=str.indexOf(b,ai+1),i=ai;if(ai>=0&&bi>0){if(a===b)return[ai,bi];for(begs=[],left=str.length;i>=0&&!result;)i==ai?(begs.push(i),ai=str.indexOf(a,i+1)):begs.length==1?result=[begs.pop(),bi]:(beg=begs.pop(),beg<left&&(left=beg,right=bi),bi=str.indexOf(b,i+1)),i=ai<bi&&ai>=0?ai:bi;begs.length&&(result=[left,right])}return result}}});var require_brace_expansion=__commonJS({"../../node_modules/.pnpm/brace-expansion@1.1.15/node_modules/brace-expansion/index.js"(exports2,module2){var concatMap=require_concat_map(),balanced=require_balanced_match();module2.exports=expandTop;var escSlash="\0SLASH"+Math.random()+"\0",escOpen="\0OPEN"+Math.random()+"\0",escClose="\0CLOSE"+Math.random()+"\0",escComma="\0COMMA"+Math.random()+"\0",escPeriod="\0PERIOD"+Math.random()+"\0";function numeric(str){return parseInt(str,10)==str?parseInt(str,10):str.charCodeAt(0)}function escapeBraces(str){return str.split("\\\\").join(escSlash).split("\\{").join(escOpen).split("\\}").join(escClose).split("\\,").join(escComma).split("\\.").join(escPeriod)}function unescapeBraces(str){return str.split(escSlash).join("\\").split(escOpen).join("{").split(escClose).join("}").split(escComma).join(",").split(escPeriod).join(".")}function parseCommaParts(str){if(!str)return[""];var parts=[],m=balanced("{","}",str);if(!m)return str.split(",");var pre=m.pre,body=m.body,post=m.post,p=pre.split(",");p[p.length-1]+="{"+body+"}";var postParts=parseCommaParts(post);return post.length&&(p[p.length-1]+=postParts.shift(),p.push.apply(p,postParts)),parts.push.apply(parts,p),parts}function expandTop(str,options){if(!str)return[];options=options||{};var max=options.max==null?1/0:options.max;return str.substr(0,2)==="{}"&&(str="\\{\\}"+str.substr(2)),expand(escapeBraces(str),max,!0).map(unescapeBraces)}function embrace(str){return"{"+str+"}"}function isPadded(el){return/^-?0\d/.test(el)}function lte(i,y){return i<=y}function gte2(i,y){return i>=y}function expand(str,max,isTop){var expansions=[],m=balanced("{","}",str);if(!m||/\$$/.test(m.pre))return[str];var isNumericSequence=/^-?\d+\.\.-?\d+(?:\.\.-?\d+)?$/.test(m.body),isAlphaSequence=/^[a-zA-Z]\.\.[a-zA-Z](?:\.\.-?\d+)?$/.test(m.body),isSequence=isNumericSequence||isAlphaSequence,isOptions=m.body.indexOf(",")>=0;if(!isSequence&&!isOptions)return m.post.match(/,(?!,).*\}/)?(str=m.pre+"{"+m.body+escClose+m.post,expand(str,max,!0)):[str];var n;if(isSequence)n=m.body.split(/\.\./);else if(n=parseCommaParts(m.body),n.length===1&&(n=expand(n[0],max,!1).map(embrace),n.length===1)){var post=m.post.length?expand(m.post,max,!1):[""];return post.map(function(p){return m.pre+n[0]+p})}var pre=m.pre,post=m.post.length?expand(m.post,max,!1):[""],N;if(isSequence){var x=numeric(n[0]),y=numeric(n[1]),width=Math.max(n[0].length,n[1].length),incr=n.length==3?Math.max(Math.abs(numeric(n[2])),1):1,test=lte,reverse=y<x;reverse&&(incr*=-1,test=gte2);var pad=n.some(isPadded);N=[];for(var i=x;test(i,y)&&N.length<max;i+=incr){var c;if(isAlphaSequence)c=String.fromCharCode(i),c==="\\"&&(c="");else if(c=String(i),pad){var need=width-c.length;if(need>0){var z=new Array(need+1).join("0");i<0?c="-"+z+c.slice(1):c=z+c}}N.push(c)}}else N=concatMap(n,function(el){return expand(el,max,!1)});for(var j=0;j<N.length;j++)for(var k=0;k<post.length&&expansions.length<max;k++){var expansion=pre+N[j]+post[k];(!isTop||isSequence||expansion)&&expansions.push(expansion)}return expansions}}});var require_minimatch=__commonJS({"../../node_modules/.pnpm/minimatch@3.1.2/node_modules/minimatch/minimatch.js"(exports2,module2){module2.exports=minimatch3;minimatch3.Minimatch=Minimatch;var path9=function(){try{return require("path")}catch{}}()||{sep:"/"};minimatch3.sep=path9.sep;var GLOBSTAR=minimatch3.GLOBSTAR=Minimatch.GLOBSTAR={},expand=require_brace_expansion(),plTypes={"!":{open:"(?:(?!(?:",close:"))[^/]*?)"},"?":{open:"(?:",close:")?"},"+":{open:"(?:",close:")+"},"*":{open:"(?:",close:")*"},"@":{open:"(?:",close:")"}},qmark="[^/]",star=qmark+"*?",twoStarDot="(?:(?!(?:\\/|^)(?:\\.{1,2})($|\\/)).)*?",twoStarNoDot="(?:(?!(?:\\/|^)\\.).)*?",reSpecials=charSet("().*{}+?[]^$\\!");function charSet(s){return s.split("").reduce(function(set,c){return set[c]=!0,set},{})}var slashSplit=/\/+/;minimatch3.filter=filter;function filter(pattern,options){return options=options||{},function(p,i,list){return minimatch3(p,pattern,options)}}function ext(a,b){b=b||{};var t={};return Object.keys(a).forEach(function(k){t[k]=a[k]}),Object.keys(b).forEach(function(k){t[k]=b[k]}),t}minimatch3.defaults=function(def){if(!def||typeof def!="object"||!Object.keys(def).length)return minimatch3;var orig=minimatch3,m=function(p,pattern,options){return orig(p,pattern,ext(def,options))};return m.Minimatch=function(pattern,options){return new orig.Minimatch(pattern,ext(def,options))},m.Minimatch.defaults=function(options){return orig.defaults(ext(def,options)).Minimatch},m.filter=function(pattern,options){return orig.filter(pattern,ext(def,options))},m.defaults=function(options){return orig.defaults(ext(def,options))},m.makeRe=function(pattern,options){return orig.makeRe(pattern,ext(def,options))},m.braceExpand=function(pattern,options){return orig.braceExpand(pattern,ext(def,options))},m.match=function(list,pattern,options){return orig.match(list,pattern,ext(def,options))},m};Minimatch.defaults=function(def){return minimatch3.defaults(def).Minimatch};function minimatch3(p,pattern,options){return assertValidPattern(pattern),options||(options={}),!options.nocomment&&pattern.charAt(0)==="#"?!1:new Minimatch(pattern,options).match(p)}function Minimatch(pattern,options){if(!(this instanceof Minimatch))return new Minimatch(pattern,options);assertValidPattern(pattern),options||(options={}),pattern=pattern.trim(),!options.allowWindowsEscape&&path9.sep!=="/"&&(pattern=pattern.split(path9.sep).join("/")),this.options=options,this.set=[],this.pattern=pattern,this.regexp=null,this.negate=!1,this.comment=!1,this.empty=!1,this.partial=!!options.partial,this.make()}Minimatch.prototype.debug=function(){};Minimatch.prototype.make=make;function make(){var pattern=this.pattern,options=this.options;if(!options.nocomment&&pattern.charAt(0)==="#"){this.comment=!0;return}if(!pattern){this.empty=!0;return}this.parseNegate();var set=this.globSet=this.braceExpand();options.debug&&(this.debug=function(){console.error.apply(console,arguments)}),this.debug(this.pattern,set),set=this.globParts=set.map(function(s){return s.split(slashSplit)}),this.debug(this.pattern,set),set=set.map(function(s,si,set2){return s.map(this.parse,this)},this),this.debug(this.pattern,set),set=set.filter(function(s){return s.indexOf(!1)===-1}),this.debug(this.pattern,set),this.set=set}Minimatch.prototype.parseNegate=parseNegate;function parseNegate(){var pattern=this.pattern,negate=!1,options=this.options,negateOffset=0;if(!options.nonegate){for(var i=0,l=pattern.length;i<l&&pattern.charAt(i)==="!";i++)negate=!negate,negateOffset++;negateOffset&&(this.pattern=pattern.substr(negateOffset)),this.negate=negate}}minimatch3.braceExpand=function(pattern,options){return braceExpand(pattern,options)};Minimatch.prototype.braceExpand=braceExpand;function braceExpand(pattern,options){return options||(this instanceof Minimatch?options=this.options:options={}),pattern=typeof pattern>"u"?this.pattern:pattern,assertValidPattern(pattern),options.nobrace||!/\{(?:(?!\{).)*\}/.test(pattern)?[pattern]:expand(pattern)}var MAX_PATTERN_LENGTH=1024*64,assertValidPattern=function(pattern){if(typeof pattern!="string")throw new TypeError("invalid pattern");if(pattern.length>MAX_PATTERN_LENGTH)throw new TypeError("pattern is too long")};Minimatch.prototype.parse=parse6;var SUBPARSE={};function parse6(pattern,isSub){assertValidPattern(pattern);var options=this.options;if(pattern==="**")if(options.noglobstar)pattern="*";else return GLOBSTAR;if(pattern==="")return"";var re="",hasMagic=!!options.nocase,escaping=!1,patternListStack=[],negativeLists=[],stateChar,inClass=!1,reClassStart=-1,classStart=-1,patternStart=pattern.charAt(0)==="."?"":options.dot?"(?!(?:^|\\/)\\.{1,2}(?:$|\\/))":"(?!\\.)",self2=this;function clearStateChar(){if(stateChar){switch(stateChar){case"*":re+=star,hasMagic=!0;break;case"?":re+=qmark,hasMagic=!0;break;default:re+="\\"+stateChar;break}self2.debug("clearStateChar %j %j",stateChar,re),stateChar=!1}}for(var i=0,len=pattern.length,c;i<len&&(c=pattern.charAt(i));i++){if(this.debug("%s %s %s %j",pattern,i,re,c),escaping&&reSpecials[c]){re+="\\"+c,escaping=!1;continue}switch(c){case"/":return!1;case"\\":clearStateChar(),escaping=!0;continue;case"?":case"*":case"+":case"@":case"!":if(this.debug("%s %s %s %j <-- stateChar",pattern,i,re,c),inClass){this.debug(" in class"),c==="!"&&i===classStart+1&&(c="^"),re+=c;continue}self2.debug("call clearStateChar %j",stateChar),clearStateChar(),stateChar=c,options.noext&&clearStateChar();continue;case"(":if(inClass){re+="(";continue}if(!stateChar){re+="\\(";continue}patternListStack.push({type:stateChar,start:i-1,reStart:re.length,open:plTypes[stateChar].open,close:plTypes[stateChar].close}),re+=stateChar==="!"?"(?:(?!(?:":"(?:",this.debug("plType %j %j",stateChar,re),stateChar=!1;continue;case")":if(inClass||!patternListStack.length){re+="\\)";continue}clearStateChar(),hasMagic=!0;var pl=patternListStack.pop();re+=pl.close,pl.type==="!"&&negativeLists.push(pl),pl.reEnd=re.length;continue;case"|":if(inClass||!patternListStack.length||escaping){re+="\\|",escaping=!1;continue}clearStateChar(),re+="|";continue;case"[":if(clearStateChar(),inClass){re+="\\"+c;continue}inClass=!0,classStart=i,reClassStart=re.length,re+=c;continue;case"]":if(i===classStart+1||!inClass){re+="\\"+c,escaping=!1;continue}var cs=pattern.substring(classStart+1,i);try{RegExp("["+cs+"]")}catch{var sp=this.parse(cs,SUBPARSE);re=re.substr(0,reClassStart)+"\\["+sp[0]+"\\]",hasMagic=hasMagic||sp[1],inClass=!1;continue}hasMagic=!0,inClass=!1,re+=c;continue;default:clearStateChar(),escaping?escaping=!1:reSpecials[c]&&!(c==="^"&&inClass)&&(re+="\\"),re+=c}}for(inClass&&(cs=pattern.substr(classStart+1),sp=this.parse(cs,SUBPARSE),re=re.substr(0,reClassStart)+"\\["+sp[0],hasMagic=hasMagic||sp[1]),pl=patternListStack.pop();pl;pl=patternListStack.pop()){var tail=re.slice(pl.reStart+pl.open.length);this.debug("setting tail",re,pl),tail=tail.replace(/((?:\\{2}){0,64})(\\?)\|/g,function(_,$1,$2){return $2||($2="\\"),$1+$1+$2+"|"}),this.debug(`tail=%j
8
8
  %s`,tail,tail,pl,re);var t=pl.type==="*"?star:pl.type==="?"?qmark:"\\"+pl.type;hasMagic=!0,re=re.slice(0,pl.reStart)+t+"\\("+tail}clearStateChar(),escaping&&(re+="\\\\");var addPatternStart=!1;switch(re.charAt(0)){case"[":case".":case"(":addPatternStart=!0}for(var n=negativeLists.length-1;n>-1;n--){var nl=negativeLists[n],nlBefore=re.slice(0,nl.reStart),nlFirst=re.slice(nl.reStart,nl.reEnd-8),nlLast=re.slice(nl.reEnd-8,nl.reEnd),nlAfter=re.slice(nl.reEnd);nlLast+=nlAfter;var openParensBefore=nlBefore.split("(").length-1,cleanAfter=nlAfter;for(i=0;i<openParensBefore;i++)cleanAfter=cleanAfter.replace(/\)[+*?]?/,"");nlAfter=cleanAfter;var dollar="";nlAfter===""&&isSub!==SUBPARSE&&(dollar="$");var newRe=nlBefore+nlFirst+nlAfter+dollar+nlLast;re=newRe}if(re!==""&&hasMagic&&(re="(?=.)"+re),addPatternStart&&(re=patternStart+re),isSub===SUBPARSE)return[re,hasMagic];if(!hasMagic)return globUnescape(pattern);var flags=options.nocase?"i":"";try{var regExp=new RegExp("^"+re+"$",flags)}catch{return new RegExp("$.")}return regExp._glob=pattern,regExp._src=re,regExp}minimatch3.makeRe=function(pattern,options){return new Minimatch(pattern,options||{}).makeRe()};Minimatch.prototype.makeRe=makeRe;function makeRe(){if(this.regexp||this.regexp===!1)return this.regexp;var set=this.set;if(!set.length)return this.regexp=!1,this.regexp;var options=this.options,twoStar=options.noglobstar?star:options.dot?twoStarDot:twoStarNoDot,flags=options.nocase?"i":"",re=set.map(function(pattern){return pattern.map(function(p){return p===GLOBSTAR?twoStar:typeof p=="string"?regExpEscape(p):p._src}).join("\\/")}).join("|");re="^(?:"+re+")$",this.negate&&(re="^(?!"+re+").*$");try{this.regexp=new RegExp(re,flags)}catch{this.regexp=!1}return this.regexp}minimatch3.match=function(list,pattern,options){options=options||{};var mm=new Minimatch(pattern,options);return list=list.filter(function(f){return mm.match(f)}),mm.options.nonull&&!list.length&&list.push(pattern),list};Minimatch.prototype.match=function(f,partial){if(typeof partial>"u"&&(partial=this.partial),this.debug("match",f,this.pattern),this.comment)return!1;if(this.empty)return f==="";if(f==="/"&&partial)return!0;var options=this.options;path9.sep!=="/"&&(f=f.split(path9.sep).join("/")),f=f.split(slashSplit),this.debug(this.pattern,"split",f);var set=this.set;this.debug(this.pattern,"set",set);var filename,i;for(i=f.length-1;i>=0&&(filename=f[i],!filename);i--);for(i=0;i<set.length;i++){var pattern=set[i],file=f;options.matchBase&&pattern.length===1&&(file=[filename]);var hit=this.matchOne(file,pattern,partial);if(hit)return options.flipNegate?!0:!this.negate}return options.flipNegate?!1:this.negate};Minimatch.prototype.matchOne=function(file,pattern,partial){var options=this.options;this.debug("matchOne",{this:this,file,pattern}),this.debug("matchOne",file.length,pattern.length);for(var fi=0,pi=0,fl=file.length,pl=pattern.length;fi<fl&&pi<pl;fi++,pi++){this.debug("matchOne loop");var p=pattern[pi],f=file[fi];if(this.debug(pattern,p,f),p===!1)return!1;if(p===GLOBSTAR){this.debug("GLOBSTAR",[pattern,p,f]);var fr=fi,pr=pi+1;if(pr===pl){for(this.debug("** at the end");fi<fl;fi++)if(file[fi]==="."||file[fi]===".."||!options.dot&&file[fi].charAt(0)===".")return!1;return!0}for(;fr<fl;){var swallowee=file[fr];if(this.debug(`
9
9
  globstar while`,file,fr,pattern,pr,swallowee),this.matchOne(file.slice(fr),pattern.slice(pr),partial))return this.debug("globstar found match!",fr,fl,swallowee),!0;if(swallowee==="."||swallowee===".."||!options.dot&&swallowee.charAt(0)==="."){this.debug("dot detected!",file,fr,pattern,pr);break}this.debug("globstar swallow a segment, and continue"),fr++}return!!(partial&&(this.debug(`
10
- >>> no match, partial?`,file,fr,pattern,pr),fr===fl))}var hit;if(typeof p=="string"?(hit=f===p,this.debug("string match",p,f,hit)):(hit=f.match(p),this.debug("pattern match",p,f,hit)),!hit)return!1}if(fi===fl&&pi===pl)return!0;if(fi===fl)return partial;if(pi===pl)return fi===fl-1&&file[fi]==="";throw new Error("wtf?")};function globUnescape(s){return s.replace(/\\(.)/g,"$1")}function regExpEscape(s){return s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&")}}});var errors_exports={};__export(errors_exports,{NowBuildError:()=>NowBuildError,getPrettyError:()=>getPrettyError});function getPrettyError(obj){let docsUrl="https://vercel.com/docs/concepts/projects/project-configuration";try{let{dataPath,params,message:ajvMessage}=obj,prop=getTopLevelPropertyName(dataPath),message=dataPath&&dataPath.startsWith(".")?`\`${dataPath.slice(1)}\` `:"";if(params&&typeof params.additionalProperty=="string"){let suggestion=getSuggestion(prop,params.additionalProperty);message+=`should NOT have additional property \`${params.additionalProperty}\`. ${suggestion}`}else params&&typeof params.missingProperty=="string"?message+=`missing required property \`${params.missingProperty}\`.`:message+=`${ajvMessage}.`;return new NowBuildError({code:"INVALID_VERCEL_CONFIG",message,link:prop?`${docsUrl}#${prop.toLowerCase()}`:docsUrl,action:"View Documentation"})}catch{return new NowBuildError({code:"INVALID_VERCEL_CONFIG",message:"Failed to validate configuration.",link:docsUrl,action:"View Documentation"})}}function getTopLevelPropertyName(dataPath){if(dataPath&&dataPath.startsWith(".")){let lastIndex=dataPath.indexOf("[");return lastIndex>-1?dataPath.slice(1,lastIndex):dataPath.slice(1)}return""}function getSuggestion(topLevelProp,additionalProperty){let choices=mapTypoToSuggestion[topLevelProp],choice=choices?choices[additionalProperty]:void 0;return choice?`Did you mean \`${choice}\`?`:"Please remove it."}var NowBuildError,mapTypoToSuggestion,init_errors=__esm({"src/errors.ts"(){"use strict";NowBuildError=class extends Error{constructor({message,code,link,action}){super(message);this.hideStackTrace=!0;this.code=code,this.link=link,this.action=action}};mapTypoToSuggestion={"":{builder:"builds","build.env":'{ "build": { "env": {"name": "value"} } }',"builds.env":'{ "build": { "env": {"name": "value"} } }'},rewrites:{src:"source",dest:"destination"},redirects:{src:"source",dest:"destination",status:"statusCode"},headers:{src:"source",header:"headers"},routes:{header:"headers",method:"methods"}}}});var get_platform_env_exports={};__export(get_platform_env_exports,{getPlatformEnv:()=>getPlatformEnv});var getPlatformEnv,init_get_platform_env=__esm({"src/get-platform-env.ts"(){"use strict";init_errors();getPlatformEnv=name=>{let vName=`VERCEL_${name}`,nName=`NOW_${name}`,v=process.env[vName],n=process.env[nName];if(typeof v=="string"){if(typeof n=="string")throw new NowBuildError({code:"CONFLICTING_ENV_VAR_NAMES",message:`Both "${vName}" and "${nName}" env vars are defined. Please only define the "${vName}" env var.`,link:"https://vercel.link/combining-old-and-new-config"});return v}return n}}});var debug_exports={};__export(debug_exports,{default:()=>debug});function debug(message,...additional){getPlatformEnv("BUILDER_DEBUG")?console.log(message,...additional):process.env.VERCEL_DEBUG_PREFIX&&console.log(`${process.env.VERCEL_DEBUG_PREFIX}${message}`,...additional)}var init_debug=__esm({"src/debug.ts"(){"use strict";init_get_platform_env()}});var require_wrappy=__commonJS({"../../node_modules/.pnpm/wrappy@1.0.2/node_modules/wrappy/wrappy.js"(exports2,module2){module2.exports=wrappy;function wrappy(fn,cb){if(fn&&cb)return wrappy(fn)(cb);if(typeof fn!="function")throw new TypeError("need wrapper function");return Object.keys(fn).forEach(function(k){wrapper[k]=fn[k]}),wrapper;function wrapper(){for(var args=new Array(arguments.length),i=0;i<args.length;i++)args[i]=arguments[i];var ret=fn.apply(this,args),cb2=args[args.length-1];return typeof ret=="function"&&ret!==cb2&&Object.keys(cb2).forEach(function(k){ret[k]=cb2[k]}),ret}}}});var require_once=__commonJS({"../../node_modules/.pnpm/once@1.4.0/node_modules/once/once.js"(exports2,module2){var wrappy=require_wrappy();module2.exports=wrappy(once);module2.exports.strict=wrappy(onceStrict);once.proto=once(function(){Object.defineProperty(Function.prototype,"once",{value:function(){return once(this)},configurable:!0}),Object.defineProperty(Function.prototype,"onceStrict",{value:function(){return onceStrict(this)},configurable:!0})});function once(fn){var f=function(){return f.called?f.value:(f.called=!0,f.value=fn.apply(this,arguments))};return f.called=!1,f}function onceStrict(fn){var f=function(){if(f.called)throw new Error(f.onceError);return f.called=!0,f.value=fn.apply(this,arguments)},name=fn.name||"Function wrapped with `once`";return f.onceError=name+" shouldn't be called more than once",f.called=!1,f}}});var require_end_of_stream=__commonJS({"../../node_modules/.pnpm/end-of-stream@1.4.1/node_modules/end-of-stream/index.js"(exports2,module2){var once=require_once(),noop=function(){},isRequest=function(stream){return stream.setHeader&&typeof stream.abort=="function"},isChildProcess=function(stream){return stream.stdio&&Array.isArray(stream.stdio)&&stream.stdio.length===3},eos2=function(stream,opts,callback){if(typeof opts=="function")return eos2(stream,null,opts);opts||(opts={}),callback=once(callback||noop);var ws=stream._writableState,rs=stream._readableState,readable=opts.readable||opts.readable!==!1&&stream.readable,writable=opts.writable||opts.writable!==!1&&stream.writable,onlegacyfinish=function(){stream.writable||onfinish()},onfinish=function(){writable=!1,readable||callback.call(stream)},onend=function(){readable=!1,writable||callback.call(stream)},onexit=function(exitCode){callback.call(stream,exitCode?new Error("exited with error code: "+exitCode):null)},onerror=function(err){callback.call(stream,err)},onclose=function(){if(readable&&!(rs&&rs.ended))return callback.call(stream,new Error("premature close"));if(writable&&!(ws&&ws.ended))return callback.call(stream,new Error("premature close"))},onrequest=function(){stream.req.on("finish",onfinish)};return isRequest(stream)?(stream.on("complete",onfinish),stream.on("abort",onclose),stream.req?onrequest():stream.on("request",onrequest)):writable&&!ws&&(stream.on("end",onlegacyfinish),stream.on("close",onlegacyfinish)),isChildProcess(stream)&&stream.on("exit",onexit),stream.on("end",onend),stream.on("finish",onfinish),opts.error!==!1&&stream.on("error",onerror),stream.on("close",onclose),function(){stream.removeListener("complete",onfinish),stream.removeListener("abort",onclose),stream.removeListener("request",onrequest),stream.req&&stream.req.removeListener("finish",onfinish),stream.removeListener("end",onlegacyfinish),stream.removeListener("close",onlegacyfinish),stream.removeListener("finish",onfinish),stream.removeListener("exit",onexit),stream.removeListener("end",onend),stream.removeListener("error",onerror),stream.removeListener("close",onclose)}};module2.exports=eos2}});var stream_to_buffer_exports={};__export(stream_to_buffer_exports,{default:()=>streamToBuffer,streamToBufferChunks:()=>streamToBufferChunks});function streamToBuffer(stream){return new Promise((resolve3,reject)=>{let buffers=[];stream.on("data",chunk=>{let buffer=Buffer.isBuffer(chunk)?chunk:Buffer.from(chunk);buffers.push(Uint8Array.from(buffer))}),(0,import_end_of_stream.default)(stream,err=>{if(err){reject(err);return}try{switch(buffers.length){case 0:resolve3(Buffer.allocUnsafe(0));break;case 1:resolve3(Buffer.from(buffers[0]));break;default:resolve3(Buffer.concat(buffers))}}catch(concatErr){reject(concatErr)}})})}async function streamToBufferChunks(stream,chunkSize=100*MB){let chunks=[],currentChunk=[],currentSize=0;for await(let chunk of stream){let buffer=Buffer.isBuffer(chunk)?chunk:Buffer.from(chunk),offset=0;for(;offset<buffer.length;){let remainingSpace=chunkSize-currentSize,sliceSize=Math.min(remainingSpace,buffer.length-offset);currentChunk.push(Uint8Array.from(buffer.subarray(offset,offset+sliceSize))),currentSize+=sliceSize,offset+=sliceSize,currentSize>=chunkSize&&(chunks.push(Buffer.concat(currentChunk)),currentChunk=[],currentSize=0)}}return currentChunk.length>0&&chunks.push(Buffer.concat(currentChunk)),chunks}var import_end_of_stream,MB,init_stream_to_buffer=__esm({"src/fs/stream-to-buffer.ts"(){"use strict";import_end_of_stream=__toESM(require_end_of_stream());MB=1024*1024}});var download_exports={};__export(download_exports,{default:()=>download,downloadFile:()=>downloadFile,getSymlinkTarget:()=>getSymlinkTarget,isDirectory:()=>isDirectory,isExternalSymlink:()=>isExternalSymlink,isExternalSymlinkTarget:()=>isExternalSymlinkTarget,isSymbolicLink:()=>isSymbolicLink});function isDirectory(mode){return(mode&S_IFMT)===S_IFDIR}function isSymbolicLink(mode){return(mode&S_IFMT)===S_IFLNK}function isExternalSymlinkTarget(target){return target.startsWith("../")||target.startsWith("..\\")||import_path2.default.isAbsolute(target)}function getSymlinkTarget(file){if(!isSymbolicLink(file.mode))return null;if(file.type==="FileFsRef")try{return(0,import_fs_extra2.readlinkSync)(file.fsPath)}catch{return null}if(file.type==="FileBlob"){let{data}=file;return typeof data=="string"?data:data.toString("utf8")}return null}function isExternalSymlink(file){let target=getSymlinkTarget(file);return target!==null&&isExternalSymlinkTarget(target)}async function prepareSymlinkTarget(file,fsPath){let mkdirPromise=(0,import_fs_extra2.mkdirp)(import_path2.default.dirname(fsPath));if(file.type==="FileFsRef"){let[target]=await Promise.all([(0,import_fs_extra2.readlink)(file.fsPath),mkdirPromise]);return target}if(file.type==="FileRef"||file.type==="FileBlob"){let targetPathBufferPromise=streamToBuffer(await file.toStreamAsync()),[targetPathBuffer]=await Promise.all([targetPathBufferPromise,mkdirPromise]);return targetPathBuffer.toString("utf8")}throw new Error(`file.type "${file.type}" not supported for symlink`)}async function downloadFile(file,fsPath){let{mode}=file;if(isDirectory(mode))return await(0,import_fs_extra2.mkdirp)(fsPath),await(0,import_fs_extra2.chmod)(fsPath,mode),file_fs_ref_default.fromFsPath({mode,fsPath});if(isSymbolicLink(mode)){let target=await prepareSymlinkTarget(file,fsPath);try{await(0,import_fs_extra2.symlink)(target,fsPath)}catch(err){if(err.code==="EEXIST")await(0,import_fs_extra2.readlink)(fsPath)!==target&&(await(0,import_fs_extra2.remove)(fsPath),await(0,import_fs_extra2.symlink)(target,fsPath));else throw err}return file_fs_ref_default.fromFsPath({mode,fsPath})}let stream=file.toStream();return file_fs_ref_default.fromStream({mode,stream,fsPath})}async function removeFile(basePath,fileMatched){let file=import_path2.default.join(basePath,fileMatched);await(0,import_fs_extra2.remove)(file)}async function download(files,basePath,meta){let{isDev=!1,skipDownload=!1,filesChanged=null,filesRemoved=null}=meta||{};if(isDev||skipDownload)return files;debug("Downloading deployment source files...");let start=Date.now(),files2={},filenames=Object.keys(files);await Promise.all(filenames.map(async name=>{if(Array.isArray(filesRemoved)&&filesRemoved.includes(name)){await removeFile(basePath,name);return}if(Array.isArray(filesChanged)&&!filesChanged.includes(name))return;let parts=name.split("/");for(let i=1;i<parts.length;i++){let dir=parts.slice(0,i).join("/"),parent=files[dir];if(parent&&isSymbolicLink(parent.mode)&&!isExternalSymlink(parent)){console.warn(`Warning: file "${name}" is within a symlinked directory "${dir}" and will be ignored`);return}}let file=files[name],fsPath=import_path2.default.join(basePath,name);files2[name]=await downloadFile(file,fsPath)}));let duration=Date.now()-start;return debug(`Downloaded ${filenames.length} source files: ${duration}ms`),files2}var import_path2,import_fs_extra2,S_IFDIR,S_IFLNK,S_IFMT,init_download=__esm({"src/fs/download.ts"(){"use strict";import_path2=__toESM(require("path"));init_debug();init_file_fs_ref();import_fs_extra2=__toESM(require_lib());init_stream_to_buffer();S_IFDIR=16384,S_IFLNK=40960,S_IFMT=61440}});var lambda_exports={};__export(lambda_exports,{Lambda:()=>Lambda,createLambda:()=>createLambda,createZip:()=>createZip,getLambdaOptionsFromFunction:()=>getLambdaOptionsFromFunction,sanitizeConsumerName:()=>sanitizeConsumerName});function sanitizeConsumerName(functionPath){let result="";for(let char of functionPath)char==="_"?result+="__":char==="/"?result+="_S":char==="."?result+="_D":/[A-Za-z0-9-]/.test(char)?result+=char:result+="_"+char.charCodeAt(0).toString(16).toUpperCase().padStart(2,"0");return result}function getDefaultLambdaArchitecture(architecture){if(architecture)return architecture;switch(process.arch){case"arm":case"arm64":return"arm64";default:return"x86_64"}}async function createLambda(opts){let lambda=new Lambda(opts);return lambda.zipBuffer=await lambda.createZip(),lambda}async function createZip(files){let names=Object.keys(files).sort(),symlinkTargets=new Map;for(let name of names){let file=files[name];if(file.mode&&isSymbolicLink(file.mode)&&file.type==="FileFsRef"){let symlinkTarget=await(0,import_fs_extra3.readlink)(file.fsPath);symlinkTargets.set(name,symlinkTarget)}}let zipFile=new import_yazl.ZipFile;return await new Promise((resolve3,reject)=>{for(let name of names){let file=files[name],opts={mode:file.mode,mtime},symlinkTarget=symlinkTargets.get(name);if(typeof symlinkTarget=="string")zipFile.addBuffer(Buffer.from(symlinkTarget,"utf8"),name,opts);else if(file.mode&&isDirectory(file.mode))zipFile.addEmptyDirectory(name,opts);else{let stream=file.toStream();stream.on("error",reject),zipFile.addReadStream(stream,name,opts)}}zipFile.end(),streamToBuffer(zipFile.outputStream).then(resolve3).catch(reject)})}async function getLambdaOptionsFromFunction({sourceFile,config,isScheduleEntrypoint=!1}){if(config?.functions){let serviceName=typeof config.serviceName=="string"&&config.serviceName!==""?config.serviceName:void 0;for(let[pattern,fn]of Object.entries(config.functions))if(sourceFile===pattern||(0,import_minimatch.default)(sourceFile,pattern)){let consumer=sanitizeConsumerName(serviceName?`${serviceName}~${pattern}`:pattern),experimentalTriggers=fn.experimentalTriggers?.map(trigger=>trigger.type==="queue/v2beta"?{...trigger,consumer}:trigger);if(experimentalTriggers&&experimentalTriggers.length>1&&experimentalTriggers.some(t=>t.type==="queue/v2beta"))throw new Error(`functions["${pattern}"].experimentalTriggers can only have one item for queue/v2beta`);if(isScheduleEntrypoint&&experimentalTriggers!==void 0&&!(experimentalTriggers.length===1&&experimentalTriggers[0]?.type==="schedule/v1beta"))throw new Error(`functions["${pattern}"].experimentalTriggers conflicts with the schedule entrypoint trigger`);return{architecture:fn.architecture,memory:fn.memory,maxDuration:fn.maxDuration,affinity:fn.affinity,maxConcurrency:fn.maxConcurrency,regions:fn.regions,functionFailoverRegions:fn.functionFailoverRegions,experimentalTriggers:isScheduleEntrypoint?[{type:"schedule/v1beta"}]:experimentalTriggers,supportsCancellation:fn.supportsCancellation}}}return isScheduleEntrypoint?{experimentalTriggers:[{type:"schedule/v1beta"}]}:{}}var import_assert5,import_async_sema3,import_yazl,import_minimatch,import_fs_extra3,Lambda,sema,mtime,init_lambda=__esm({"src/lambda.ts"(){"use strict";import_assert5=__toESM(require("assert"));init_max_concurrency();import_async_sema3=__toESM(require_async_sema()),import_yazl=__toESM(require_yazl()),import_minimatch=__toESM(require_minimatch()),import_fs_extra3=__toESM(require_lib());init_download();init_stream_to_buffer();Lambda=class{constructor(opts){let{handler,runtime,runtimeLanguage,maxDuration,affinity,maxConcurrency,architecture,memory,environment={},allowQuery,regions,functionFailoverRegions,supportsMultiPayloads,supportsWrapper,supportsResponseStreaming,experimentalResponseStreaming,operationType,framework,experimentalTriggers,supportsCancellation,shouldDisableAutomaticFetchInstrumentation}=opts;if("files"in opts&&(0,import_assert5.default)(typeof opts.files=="object",'"files" must be an object'),"zipBuffer"in opts&&(0,import_assert5.default)(Buffer.isBuffer(opts.zipBuffer),'"zipBuffer" must be a Buffer'),(0,import_assert5.default)(typeof handler=="string",'"handler" is not a string'),(0,import_assert5.default)(typeof runtime=="string",'"runtime" is not a string'),(0,import_assert5.default)(typeof environment=="object",'"environment" is not an object'),architecture!==void 0&&(0,import_assert5.default)(architecture==="x86_64"||architecture==="arm64",'"architecture" must be either "x86_64" or "arm64"'),runtimeLanguage!==void 0&&(0,import_assert5.default)(runtimeLanguage==="rust"||runtimeLanguage==="go",'"runtimeLanguage" is invalid. Valid options: "rust", "go"'),"experimentalAllowBundling"in opts&&opts.experimentalAllowBundling!==void 0&&(0,import_assert5.default)(typeof opts.experimentalAllowBundling=="boolean",'"experimentalAllowBundling" is not a boolean'),memory!==void 0&&(0,import_assert5.default)(typeof memory=="number",'"memory" is not a number'),maxDuration!==void 0&&(0,import_assert5.default)(typeof maxDuration=="number"||maxDuration==="max",'"maxDuration" is not a number or "max"'),affinity!==void 0&&(0,import_assert5.default)(typeof affinity=="object"&&affinity!==null&&affinity.mode==="strict"&&Object.keys(affinity).length===1,'"affinity" must be an object with only `mode: "strict"`'),validateMaxConcurrency(maxConcurrency),allowQuery!==void 0&&((0,import_assert5.default)(Array.isArray(allowQuery),'"allowQuery" is not an Array'),(0,import_assert5.default)(allowQuery.every(q=>typeof q=="string"),'"allowQuery" is not a string Array')),supportsMultiPayloads!==void 0&&(0,import_assert5.default)(typeof supportsMultiPayloads=="boolean",'"supportsMultiPayloads" is not a boolean'),supportsWrapper!==void 0&&(0,import_assert5.default)(typeof supportsWrapper=="boolean",'"supportsWrapper" is not a boolean'),regions!==void 0&&((0,import_assert5.default)(Array.isArray(regions),'"regions" is not an Array'),(0,import_assert5.default)(regions.every(r=>typeof r=="string"),'"regions" is not a string Array')),functionFailoverRegions!==void 0&&((0,import_assert5.default)(Array.isArray(functionFailoverRegions),'"functionFailoverRegions" is not an Array'),(0,import_assert5.default)(functionFailoverRegions.every(r=>typeof r=="string"),'"functionFailoverRegions" is not a string Array')),framework!==void 0&&((0,import_assert5.default)(typeof framework=="object",'"framework" is not an object'),(0,import_assert5.default)(typeof framework.slug=="string",'"framework.slug" is not a string'),framework.version!==void 0&&(0,import_assert5.default)(typeof framework.version=="string",'"framework.version" is not a string')),experimentalTriggers!==void 0){(0,import_assert5.default)(Array.isArray(experimentalTriggers),'"experimentalTriggers" is not an Array');for(let i=0;i<experimentalTriggers.length;i++){let trigger=experimentalTriggers[i],prefix=`"experimentalTriggers[${i}]"`;(0,import_assert5.default)(typeof trigger=="object"&&trigger!==null,`${prefix} is not an object`),(0,import_assert5.default)(trigger.type==="queue/v1beta"||trigger.type==="queue/v2beta"||trigger.type==="schedule/v1beta",`${prefix}.type must be "queue/v1beta", "queue/v2beta", or "schedule/v1beta"`),(trigger.type==="queue/v1beta"||trigger.type==="queue/v2beta")&&((0,import_assert5.default)(typeof trigger.topic=="string",`${prefix}.topic is required and must be a string`),(0,import_assert5.default)(trigger.topic.length>0,`${prefix}.topic cannot be empty`),(0,import_assert5.default)(typeof trigger.consumer=="string",`${prefix}.consumer is required and must be a string`),(0,import_assert5.default)(trigger.consumer.length>0,`${prefix}.consumer cannot be empty`),trigger.maxDeliveries!==void 0&&((0,import_assert5.default)(typeof trigger.maxDeliveries=="number",`${prefix}.maxDeliveries must be a number`),(0,import_assert5.default)(Number.isInteger(trigger.maxDeliveries)&&trigger.maxDeliveries>=1,`${prefix}.maxDeliveries must be at least 1`)),trigger.retryAfterSeconds!==void 0&&((0,import_assert5.default)(typeof trigger.retryAfterSeconds=="number",`${prefix}.retryAfterSeconds must be a number`),(0,import_assert5.default)(trigger.retryAfterSeconds>0,`${prefix}.retryAfterSeconds must be a positive number`)),trigger.initialDelaySeconds!==void 0&&((0,import_assert5.default)(typeof trigger.initialDelaySeconds=="number",`${prefix}.initialDelaySeconds must be a number`),(0,import_assert5.default)(trigger.initialDelaySeconds>=0,`${prefix}.initialDelaySeconds must be a non-negative number`)),trigger.maxConcurrency!==void 0&&((0,import_assert5.default)(typeof trigger.maxConcurrency=="number",`${prefix}.maxConcurrency must be a number`),(0,import_assert5.default)(Number.isInteger(trigger.maxConcurrency)&&trigger.maxConcurrency>=1,`${prefix}.maxConcurrency must be at least 1`)))}}supportsCancellation!==void 0&&(0,import_assert5.default)(typeof supportsCancellation=="boolean",'"supportsCancellation" is not a boolean'),this.type="Lambda",this.operationType=operationType,this.files="files"in opts?opts.files:void 0,this.handler=handler,this.runtime=runtime,this.runtimeLanguage=runtimeLanguage,this.architecture=getDefaultLambdaArchitecture(architecture),this.memory=memory,this.maxDuration=maxDuration,this.affinity=affinity,this.maxConcurrency=maxConcurrency,this.environment=environment,this.allowQuery=allowQuery,this.regions=regions,this.functionFailoverRegions=functionFailoverRegions,this.zipBuffer="zipBuffer"in opts?opts.zipBuffer:void 0,this.supportsMultiPayloads=supportsMultiPayloads,this.supportsWrapper=supportsWrapper,this.supportsResponseStreaming=supportsResponseStreaming??experimentalResponseStreaming,this.framework=framework,this.experimentalAllowBundling="experimentalAllowBundling"in opts?opts.experimentalAllowBundling:void 0,this.experimentalTriggers=experimentalTriggers,this.supportsCancellation=supportsCancellation,this.shouldDisableAutomaticFetchInstrumentation=shouldDisableAutomaticFetchInstrumentation}async createZip(){let{zipBuffer}=this;if(!zipBuffer){if(!this.files)throw new Error("`files` is not defined");await sema.acquire();try{zipBuffer=await createZip(this.files)}finally{sema.release()}}return zipBuffer}get experimentalResponseStreaming(){return this.supportsResponseStreaming}set experimentalResponseStreaming(v){this.supportsResponseStreaming=v}},sema=new import_async_sema3.default(10),mtime=new Date(154e10)}});var nodejs_lambda_exports={};__export(nodejs_lambda_exports,{NodejsLambda:()=>NodejsLambda});var NodejsLambda,init_nodejs_lambda=__esm({"src/nodejs-lambda.ts"(){"use strict";init_lambda();NodejsLambda=class extends Lambda{constructor({shouldAddHelpers,shouldAddSourcemapSupport,awsLambdaHandler,useWebApi,...opts}){super(opts);this.launcherType="Nodejs",this.shouldAddHelpers=shouldAddHelpers,this.shouldAddSourcemapSupport=shouldAddSourcemapSupport,this.awsLambdaHandler=awsLambdaHandler,this.useWebApi=useWebApi}}}});var prerender_exports={};__export(prerender_exports,{Prerender:()=>Prerender});var Prerender,init_prerender=__esm({"src/prerender.ts"(){"use strict";Prerender=class{constructor({expiration,staleExpiration,lambda,fallback,group,bypassToken,allowQuery,allowHeader,initialHeaders,initialStatus,passQuery,sourcePath,experimentalBypassFor,experimentalStreamingLambdaPath,chain,exposeErrBody,partialFallback,initialMetadata,onMiss}){if(this.type="Prerender",this.expiration=expiration,this.staleExpiration=staleExpiration,this.sourcePath=sourcePath,this.initialMetadata=initialMetadata,this.onMiss=onMiss,this.lambda=lambda,this.lambda&&(this.lambda.operationType=this.lambda.operationType||"ISR"),typeof group<"u"&&(group<=0||!Number.isInteger(group)))throw new Error("The `group` argument for `Prerender` needs to be a natural number.");if(this.group=group,passQuery===!0)this.passQuery=!0;else if(typeof passQuery!="boolean"&&typeof passQuery<"u")throw new Error("The `passQuery` argument for `Prerender` must be a boolean.");if(bypassToken==null)this.bypassToken=null;else if(typeof bypassToken=="string"){if(bypassToken.length<32)throw new Error("The `bypassToken` argument for `Prerender` must be 32 characters or more.");this.bypassToken=bypassToken}else throw new Error("The `bypassToken` argument for `Prerender` must be a `string`.");if(experimentalBypassFor!==void 0){if(!Array.isArray(experimentalBypassFor)||experimentalBypassFor.some(field=>typeof field!="object"||typeof field.type!="string"||field.type==="host"&&"key"in field||field.type!=="host"&&typeof field.key!="string"||field.value!==void 0&&typeof field.value!="string"&&(typeof field.value!="object"||field.value===null||Array.isArray(field.value))))throw new Error("The `experimentalBypassFor` argument for `Prerender` must be Array of objects with fields `type`, `key` and optionally `value`.");this.experimentalBypassFor=experimentalBypassFor}if(typeof fallback>"u")throw new Error("The `fallback` argument for `Prerender` needs to be a `FileBlob`, `FileFsRef`, `FileRef`, or null.");if(this.fallback=fallback,initialHeaders!==void 0){if(!initialHeaders||typeof initialHeaders!="object"||Object.entries(initialHeaders).some(([key,value])=>typeof key!="string"||typeof value!="string"))throw new Error("The `initialHeaders` argument for `Prerender` must be an object with string key/values");this.initialHeaders=initialHeaders}if(initialStatus!==void 0){if(initialStatus<=0||!Number.isInteger(initialStatus))throw new Error("The `initialStatus` argument for `Prerender` must be a natural number.");this.initialStatus=initialStatus}if(allowQuery!==void 0){if(!Array.isArray(allowQuery))throw new Error("The `allowQuery` argument for `Prerender` must be Array.");if(!allowQuery.every(q=>typeof q=="string"))throw new Error("The `allowQuery` argument for `Prerender` must be Array of strings.");this.allowQuery=allowQuery}if(allowHeader!==void 0){if(!Array.isArray(allowHeader))throw new Error("The `allowHeader` argument for `Prerender` must be Array.");if(!allowHeader.every(q=>typeof q=="string"))throw new Error("The `allowHeader` argument for `Prerender` must be Array of strings.");this.allowHeader=allowHeader}if(experimentalStreamingLambdaPath!==void 0){if(typeof experimentalStreamingLambdaPath!="string")throw new Error("The `experimentalStreamingLambdaPath` argument for `Prerender` must be a string.");this.experimentalStreamingLambdaPath=experimentalStreamingLambdaPath}if(chain!==void 0){if(typeof chain!="object")throw new Error("The `chain` argument for `Prerender` must be an object.");if(!chain.headers||typeof chain.headers!="object"||Object.entries(chain.headers).some(([key,value])=>typeof key!="string"||typeof value!="string"))throw new Error("The `chain.headers` argument for `Prerender` must be an object with string key/values");if(!chain.outputPath||typeof chain.outputPath!="string")throw new Error("The `chain.outputPath` argument for `Prerender` must be a string.");this.chain=chain}if(exposeErrBody===!0)this.exposeErrBody=!0;else if(typeof exposeErrBody!="boolean"&&typeof exposeErrBody<"u")throw new Error("The `exposeErrBody` argument for `Prerender` must be a boolean.");if(partialFallback===!0)this.partialFallback=!0;else if(typeof partialFallback!="boolean"&&typeof partialFallback<"u")throw new Error("The `partialFallback` argument for `Prerender` must be a boolean.")}}}});var get_writable_directory_exports={};__export(get_writable_directory_exports,{default:()=>getWritableDirectory});async function getWritableDirectory(){let name=Math.floor(Math.random()*2147483647).toString(16),directory=(0,import_path3.join)((0,import_os.tmpdir)(),name);return await(0,import_fs_extra4.mkdirp)(directory),directory}var import_path3,import_os,import_fs_extra4,init_get_writable_directory=__esm({"src/fs/get-writable-directory.ts"(){"use strict";import_path3=require("path"),import_os=require("os"),import_fs_extra4=__toESM(require_lib())}});var require_old=__commonJS({"../../node_modules/.pnpm/fs.realpath@1.0.0/node_modules/fs.realpath/old.js"(exports2){var pathModule=require("path"),isWindows=process.platform==="win32",fs12=require("fs"),DEBUG=process.env.NODE_DEBUG&&/fs/.test(process.env.NODE_DEBUG);function rethrow(){var callback;if(DEBUG){var backtrace=new Error;callback=debugCallback}else callback=missingCallback;return callback;function debugCallback(err){err&&(backtrace.message=err.message,err=backtrace,missingCallback(err))}function missingCallback(err){if(err){if(process.throwDeprecation)throw err;if(!process.noDeprecation){var msg="fs: missing callback "+(err.stack||err.message);process.traceDeprecation?console.trace(msg):console.error(msg)}}}}function maybeCallback(cb){return typeof cb=="function"?cb:rethrow()}var normalize=pathModule.normalize;isWindows?nextPartRe=/(.*?)(?:[\/\\]+|$)/g:nextPartRe=/(.*?)(?:[\/]+|$)/g;var nextPartRe;isWindows?splitRootRe=/^(?:[a-zA-Z]:|[\\\/]{2}[^\\\/]+[\\\/][^\\\/]+)?[\\\/]*/:splitRootRe=/^[\/]*/;var splitRootRe;exports2.realpathSync=function(p,cache){if(p=pathModule.resolve(p),cache&&Object.prototype.hasOwnProperty.call(cache,p))return cache[p];var original=p,seenLinks={},knownHard={},pos,current,base,previous;start();function start(){var m=splitRootRe.exec(p);pos=m[0].length,current=m[0],base=m[0],previous="",isWindows&&!knownHard[base]&&(fs12.lstatSync(base),knownHard[base]=!0)}for(;pos<p.length;){nextPartRe.lastIndex=pos;var result=nextPartRe.exec(p);if(previous=current,current+=result[0],base=previous+result[1],pos=nextPartRe.lastIndex,!(knownHard[base]||cache&&cache[base]===base)){var resolvedLink;if(cache&&Object.prototype.hasOwnProperty.call(cache,base))resolvedLink=cache[base];else{var stat2=fs12.lstatSync(base);if(!stat2.isSymbolicLink()){knownHard[base]=!0,cache&&(cache[base]=base);continue}var linkTarget=null;if(!isWindows){var id=stat2.dev.toString(32)+":"+stat2.ino.toString(32);seenLinks.hasOwnProperty(id)&&(linkTarget=seenLinks[id])}linkTarget===null&&(fs12.statSync(base),linkTarget=fs12.readlinkSync(base)),resolvedLink=pathModule.resolve(previous,linkTarget),cache&&(cache[base]=resolvedLink),isWindows||(seenLinks[id]=linkTarget)}p=pathModule.resolve(resolvedLink,p.slice(pos)),start()}}return cache&&(cache[original]=p),p};exports2.realpath=function(p,cache,cb){if(typeof cb!="function"&&(cb=maybeCallback(cache),cache=null),p=pathModule.resolve(p),cache&&Object.prototype.hasOwnProperty.call(cache,p))return process.nextTick(cb.bind(null,null,cache[p]));var original=p,seenLinks={},knownHard={},pos,current,base,previous;start();function start(){var m=splitRootRe.exec(p);pos=m[0].length,current=m[0],base=m[0],previous="",isWindows&&!knownHard[base]?fs12.lstat(base,function(err){if(err)return cb(err);knownHard[base]=!0,LOOP()}):process.nextTick(LOOP)}function LOOP(){if(pos>=p.length)return cache&&(cache[original]=p),cb(null,p);nextPartRe.lastIndex=pos;var result=nextPartRe.exec(p);return previous=current,current+=result[0],base=previous+result[1],pos=nextPartRe.lastIndex,knownHard[base]||cache&&cache[base]===base?process.nextTick(LOOP):cache&&Object.prototype.hasOwnProperty.call(cache,base)?gotResolvedLink(cache[base]):fs12.lstat(base,gotStat)}function gotStat(err,stat2){if(err)return cb(err);if(!stat2.isSymbolicLink())return knownHard[base]=!0,cache&&(cache[base]=base),process.nextTick(LOOP);if(!isWindows){var id=stat2.dev.toString(32)+":"+stat2.ino.toString(32);if(seenLinks.hasOwnProperty(id))return gotTarget(null,seenLinks[id],base)}fs12.stat(base,function(err2){if(err2)return cb(err2);fs12.readlink(base,function(err3,target){isWindows||(seenLinks[id]=target),gotTarget(err3,target)})})}function gotTarget(err,target,base2){if(err)return cb(err);var resolvedLink=pathModule.resolve(previous,target);cache&&(cache[base2]=resolvedLink),gotResolvedLink(resolvedLink)}function gotResolvedLink(resolvedLink){p=pathModule.resolve(resolvedLink,p.slice(pos)),start()}}}});var require_fs2=__commonJS({"../../node_modules/.pnpm/fs.realpath@1.0.0/node_modules/fs.realpath/index.js"(exports2,module2){module2.exports=realpath;realpath.realpath=realpath;realpath.sync=realpathSync2;realpath.realpathSync=realpathSync2;realpath.monkeypatch=monkeypatch;realpath.unmonkeypatch=unmonkeypatch;var fs12=require("fs"),origRealpath=fs12.realpath,origRealpathSync=fs12.realpathSync,version=process.version,ok=/^v[0-5]\./.test(version),old=require_old();function newError(er){return er&&er.syscall==="realpath"&&(er.code==="ELOOP"||er.code==="ENOMEM"||er.code==="ENAMETOOLONG")}function realpath(p,cache,cb){if(ok)return origRealpath(p,cache,cb);typeof cache=="function"&&(cb=cache,cache=null),origRealpath(p,cache,function(er,result){newError(er)?old.realpath(p,cache,cb):cb(er,result)})}function realpathSync2(p,cache){if(ok)return origRealpathSync(p,cache);try{return origRealpathSync(p,cache)}catch(er){if(newError(er))return old.realpathSync(p,cache);throw er}}function monkeypatch(){fs12.realpath=realpath,fs12.realpathSync=realpathSync2}function unmonkeypatch(){fs12.realpath=origRealpath,fs12.realpathSync=origRealpathSync}}});var require_path=__commonJS({"../../node_modules/.pnpm/minimatch@5.0.1/node_modules/minimatch/lib/path.js"(exports2,module2){var isWindows=typeof process=="object"&&process&&process.platform==="win32";module2.exports=isWindows?{sep:"\\"}:{sep:"/"}}});var require_brace_expansion2=__commonJS({"../../node_modules/.pnpm/brace-expansion@2.1.1/node_modules/brace-expansion/index.js"(exports2,module2){var balanced=require_balanced_match();module2.exports=expandTop;var escSlash="\0SLASH"+Math.random()+"\0",escOpen="\0OPEN"+Math.random()+"\0",escClose="\0CLOSE"+Math.random()+"\0",escComma="\0COMMA"+Math.random()+"\0",escPeriod="\0PERIOD"+Math.random()+"\0";function numeric(str){return parseInt(str,10)==str?parseInt(str,10):str.charCodeAt(0)}function escapeBraces(str){return str.split("\\\\").join(escSlash).split("\\{").join(escOpen).split("\\}").join(escClose).split("\\,").join(escComma).split("\\.").join(escPeriod)}function unescapeBraces(str){return str.split(escSlash).join("\\").split(escOpen).join("{").split(escClose).join("}").split(escComma).join(",").split(escPeriod).join(".")}function parseCommaParts(str){if(!str)return[""];var parts=[],m=balanced("{","}",str);if(!m)return str.split(",");var pre=m.pre,body=m.body,post=m.post,p=pre.split(",");p[p.length-1]+="{"+body+"}";var postParts=parseCommaParts(post);return post.length&&(p[p.length-1]+=postParts.shift(),p.push.apply(p,postParts)),parts.push.apply(parts,p),parts}function expandTop(str,options){if(!str)return[];options=options||{};var max=options.max==null?1/0:options.max;return str.substr(0,2)==="{}"&&(str="\\{\\}"+str.substr(2)),expand(escapeBraces(str),max,!0).map(unescapeBraces)}function embrace(str){return"{"+str+"}"}function isPadded(el){return/^-?0\d/.test(el)}function lte(i,y){return i<=y}function gte2(i,y){return i>=y}function expand(str,max,isTop){var expansions=[],m=balanced("{","}",str);if(!m)return[str];var pre=m.pre,post=m.post.length?expand(m.post,max,!1):[""];if(/\$$/.test(m.pre))for(var k=0;k<post.length&&k<max;k++){var expansion=pre+"{"+m.body+"}"+post[k];expansions.push(expansion)}else{var isNumericSequence=/^-?\d+\.\.-?\d+(?:\.\.-?\d+)?$/.test(m.body),isAlphaSequence=/^[a-zA-Z]\.\.[a-zA-Z](?:\.\.-?\d+)?$/.test(m.body),isSequence=isNumericSequence||isAlphaSequence,isOptions=m.body.indexOf(",")>=0;if(!isSequence&&!isOptions)return m.post.match(/,(?!,).*\}/)?(str=m.pre+"{"+m.body+escClose+m.post,expand(str,max,!0)):[str];var n;if(isSequence)n=m.body.split(/\.\./);else if(n=parseCommaParts(m.body),n.length===1&&(n=expand(n[0],max,!1).map(embrace),n.length===1))return post.map(function(p){return m.pre+n[0]+p});var N;if(isSequence){var x=numeric(n[0]),y=numeric(n[1]),width=Math.max(n[0].length,n[1].length),incr=n.length==3?Math.max(Math.abs(numeric(n[2])),1):1,test=lte,reverse=y<x;reverse&&(incr*=-1,test=gte2);var pad=n.some(isPadded);N=[];for(var i=x;test(i,y)&&N.length<max;i+=incr){var c;if(isAlphaSequence)c=String.fromCharCode(i),c==="\\"&&(c="");else if(c=String(i),pad){var need=width-c.length;if(need>0){var z=new Array(need+1).join("0");i<0?c="-"+z+c.slice(1):c=z+c}}N.push(c)}}else{N=[];for(var j=0;j<n.length;j++)N.push.apply(N,expand(n[j],max,!1))}for(var j=0;j<N.length;j++)for(var k=0;k<post.length&&expansions.length<max;k++){var expansion=pre+N[j]+post[k];(!isTop||isSequence||expansion)&&expansions.push(expansion)}}return expansions}}});var require_minimatch2=__commonJS({"../../node_modules/.pnpm/minimatch@5.0.1/node_modules/minimatch/minimatch.js"(exports2,module2){var minimatch3=module2.exports=(p,pattern,options={})=>(assertValidPattern(pattern),!options.nocomment&&pattern.charAt(0)==="#"?!1:new Minimatch(pattern,options).match(p));module2.exports=minimatch3;var path9=require_path();minimatch3.sep=path9.sep;var GLOBSTAR=Symbol("globstar **");minimatch3.GLOBSTAR=GLOBSTAR;var expand=require_brace_expansion2(),plTypes={"!":{open:"(?:(?!(?:",close:"))[^/]*?)"},"?":{open:"(?:",close:")?"},"+":{open:"(?:",close:")+"},"*":{open:"(?:",close:")*"},"@":{open:"(?:",close:")"}},qmark="[^/]",star=qmark+"*?",twoStarDot="(?:(?!(?:\\/|^)(?:\\.{1,2})($|\\/)).)*?",twoStarNoDot="(?:(?!(?:\\/|^)\\.).)*?",charSet=s=>s.split("").reduce((set,c)=>(set[c]=!0,set),{}),reSpecials=charSet("().*{}+?[]^$\\!"),addPatternStartSet=charSet("[.("),slashSplit=/\/+/;minimatch3.filter=(pattern,options={})=>(p,i,list)=>minimatch3(p,pattern,options);var ext=(a,b={})=>{let t={};return Object.keys(a).forEach(k=>t[k]=a[k]),Object.keys(b).forEach(k=>t[k]=b[k]),t};minimatch3.defaults=def=>{if(!def||typeof def!="object"||!Object.keys(def).length)return minimatch3;let orig=minimatch3,m=(p,pattern,options)=>orig(p,pattern,ext(def,options));return m.Minimatch=class extends orig.Minimatch{constructor(pattern,options){super(pattern,ext(def,options))}},m.Minimatch.defaults=options=>orig.defaults(ext(def,options)).Minimatch,m.filter=(pattern,options)=>orig.filter(pattern,ext(def,options)),m.defaults=options=>orig.defaults(ext(def,options)),m.makeRe=(pattern,options)=>orig.makeRe(pattern,ext(def,options)),m.braceExpand=(pattern,options)=>orig.braceExpand(pattern,ext(def,options)),m.match=(list,pattern,options)=>orig.match(list,pattern,ext(def,options)),m};minimatch3.braceExpand=(pattern,options)=>braceExpand(pattern,options);var braceExpand=(pattern,options={})=>(assertValidPattern(pattern),options.nobrace||!/\{(?:(?!\{).)*\}/.test(pattern)?[pattern]:expand(pattern)),MAX_PATTERN_LENGTH=1024*64,assertValidPattern=pattern=>{if(typeof pattern!="string")throw new TypeError("invalid pattern");if(pattern.length>MAX_PATTERN_LENGTH)throw new TypeError("pattern is too long")},SUBPARSE=Symbol("subparse");minimatch3.makeRe=(pattern,options)=>new Minimatch(pattern,options||{}).makeRe();minimatch3.match=(list,pattern,options={})=>{let mm=new Minimatch(pattern,options);return list=list.filter(f=>mm.match(f)),mm.options.nonull&&!list.length&&list.push(pattern),list};var globUnescape=s=>s.replace(/\\(.)/g,"$1"),regExpEscape=s=>s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"),Minimatch=class{constructor(pattern,options){assertValidPattern(pattern),options||(options={}),this.options=options,this.set=[],this.pattern=pattern,this.regexp=null,this.negate=!1,this.comment=!1,this.empty=!1,this.partial=!!options.partial,this.make()}debug(){}make(){let pattern=this.pattern,options=this.options;if(!options.nocomment&&pattern.charAt(0)==="#"){this.comment=!0;return}if(!pattern){this.empty=!0;return}this.parseNegate();let set=this.globSet=this.braceExpand();options.debug&&(this.debug=(...args)=>console.error(...args)),this.debug(this.pattern,set),set=this.globParts=set.map(s=>s.split(slashSplit)),this.debug(this.pattern,set),set=set.map((s,si,set2)=>s.map(this.parse,this)),this.debug(this.pattern,set),set=set.filter(s=>s.indexOf(!1)===-1),this.debug(this.pattern,set),this.set=set}parseNegate(){if(this.options.nonegate)return;let pattern=this.pattern,negate=!1,negateOffset=0;for(let i=0;i<pattern.length&&pattern.charAt(i)==="!";i++)negate=!negate,negateOffset++;negateOffset&&(this.pattern=pattern.substr(negateOffset)),this.negate=negate}matchOne(file,pattern,partial){var options=this.options;this.debug("matchOne",{this:this,file,pattern}),this.debug("matchOne",file.length,pattern.length);for(var fi=0,pi=0,fl=file.length,pl=pattern.length;fi<fl&&pi<pl;fi++,pi++){this.debug("matchOne loop");var p=pattern[pi],f=file[fi];if(this.debug(pattern,p,f),p===!1)return!1;if(p===GLOBSTAR){this.debug("GLOBSTAR",[pattern,p,f]);var fr=fi,pr=pi+1;if(pr===pl){for(this.debug("** at the end");fi<fl;fi++)if(file[fi]==="."||file[fi]===".."||!options.dot&&file[fi].charAt(0)===".")return!1;return!0}for(;fr<fl;){var swallowee=file[fr];if(this.debug(`
10
+ >>> no match, partial?`,file,fr,pattern,pr),fr===fl))}var hit;if(typeof p=="string"?(hit=f===p,this.debug("string match",p,f,hit)):(hit=f.match(p),this.debug("pattern match",p,f,hit)),!hit)return!1}if(fi===fl&&pi===pl)return!0;if(fi===fl)return partial;if(pi===pl)return fi===fl-1&&file[fi]==="";throw new Error("wtf?")};function globUnescape(s){return s.replace(/\\(.)/g,"$1")}function regExpEscape(s){return s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&")}}});var errors_exports={};__export(errors_exports,{NowBuildError:()=>NowBuildError,getPrettyError:()=>getPrettyError});function getPrettyError(obj){let docsUrl="https://vercel.com/docs/concepts/projects/project-configuration";try{let{dataPath,params,message:ajvMessage}=obj,prop=getTopLevelPropertyName(dataPath),message=dataPath&&dataPath.startsWith(".")?`\`${dataPath.slice(1)}\` `:"";if(params&&typeof params.additionalProperty=="string"){let suggestion=getSuggestion(prop,params.additionalProperty);message+=`should NOT have additional property \`${params.additionalProperty}\`. ${suggestion}`}else params&&typeof params.missingProperty=="string"?message+=`missing required property \`${params.missingProperty}\`.`:message+=`${ajvMessage}.`;return new NowBuildError({code:"INVALID_VERCEL_CONFIG",message,link:prop?`${docsUrl}#${prop.toLowerCase()}`:docsUrl,action:"View Documentation"})}catch{return new NowBuildError({code:"INVALID_VERCEL_CONFIG",message:"Failed to validate configuration.",link:docsUrl,action:"View Documentation"})}}function getTopLevelPropertyName(dataPath){if(dataPath&&dataPath.startsWith(".")){let lastIndex=dataPath.indexOf("[");return lastIndex>-1?dataPath.slice(1,lastIndex):dataPath.slice(1)}return""}function getSuggestion(topLevelProp,additionalProperty){let choices=mapTypoToSuggestion[topLevelProp],choice=choices?choices[additionalProperty]:void 0;return choice?`Did you mean \`${choice}\`?`:"Please remove it."}var NowBuildError,mapTypoToSuggestion,init_errors=__esm({"src/errors.ts"(){"use strict";NowBuildError=class extends Error{constructor({message,code,link,action}){super(message);this.hideStackTrace=!0;this.code=code,this.link=link,this.action=action}};mapTypoToSuggestion={"":{builder:"builds","build.env":'{ "build": { "env": {"name": "value"} } }',"builds.env":'{ "build": { "env": {"name": "value"} } }'},rewrites:{src:"source",dest:"destination"},redirects:{src:"source",dest:"destination",status:"statusCode"},headers:{src:"source",header:"headers"},routes:{header:"headers",method:"methods"}}}});var get_platform_env_exports={};__export(get_platform_env_exports,{getPlatformEnv:()=>getPlatformEnv});var getPlatformEnv,init_get_platform_env=__esm({"src/get-platform-env.ts"(){"use strict";init_errors();getPlatformEnv=name=>{let vName=`VERCEL_${name}`,nName=`NOW_${name}`,v=process.env[vName],n=process.env[nName];if(typeof v=="string"){if(typeof n=="string")throw new NowBuildError({code:"CONFLICTING_ENV_VAR_NAMES",message:`Both "${vName}" and "${nName}" env vars are defined. Please only define the "${vName}" env var.`,link:"https://vercel.link/combining-old-and-new-config"});return v}return n}}});var debug_exports={};__export(debug_exports,{default:()=>debug});function debug(message,...additional){getPlatformEnv("BUILDER_DEBUG")?console.log(message,...additional):process.env.VERCEL_DEBUG_PREFIX&&console.log(`${process.env.VERCEL_DEBUG_PREFIX}${message}`,...additional)}var init_debug=__esm({"src/debug.ts"(){"use strict";init_get_platform_env()}});var require_wrappy=__commonJS({"../../node_modules/.pnpm/wrappy@1.0.2/node_modules/wrappy/wrappy.js"(exports2,module2){module2.exports=wrappy;function wrappy(fn,cb){if(fn&&cb)return wrappy(fn)(cb);if(typeof fn!="function")throw new TypeError("need wrapper function");return Object.keys(fn).forEach(function(k){wrapper[k]=fn[k]}),wrapper;function wrapper(){for(var args=new Array(arguments.length),i=0;i<args.length;i++)args[i]=arguments[i];var ret=fn.apply(this,args),cb2=args[args.length-1];return typeof ret=="function"&&ret!==cb2&&Object.keys(cb2).forEach(function(k){ret[k]=cb2[k]}),ret}}}});var require_once=__commonJS({"../../node_modules/.pnpm/once@1.4.0/node_modules/once/once.js"(exports2,module2){var wrappy=require_wrappy();module2.exports=wrappy(once);module2.exports.strict=wrappy(onceStrict);once.proto=once(function(){Object.defineProperty(Function.prototype,"once",{value:function(){return once(this)},configurable:!0}),Object.defineProperty(Function.prototype,"onceStrict",{value:function(){return onceStrict(this)},configurable:!0})});function once(fn){var f=function(){return f.called?f.value:(f.called=!0,f.value=fn.apply(this,arguments))};return f.called=!1,f}function onceStrict(fn){var f=function(){if(f.called)throw new Error(f.onceError);return f.called=!0,f.value=fn.apply(this,arguments)},name=fn.name||"Function wrapped with `once`";return f.onceError=name+" shouldn't be called more than once",f.called=!1,f}}});var require_end_of_stream=__commonJS({"../../node_modules/.pnpm/end-of-stream@1.4.1/node_modules/end-of-stream/index.js"(exports2,module2){var once=require_once(),noop=function(){},isRequest=function(stream){return stream.setHeader&&typeof stream.abort=="function"},isChildProcess=function(stream){return stream.stdio&&Array.isArray(stream.stdio)&&stream.stdio.length===3},eos2=function(stream,opts,callback){if(typeof opts=="function")return eos2(stream,null,opts);opts||(opts={}),callback=once(callback||noop);var ws=stream._writableState,rs=stream._readableState,readable=opts.readable||opts.readable!==!1&&stream.readable,writable=opts.writable||opts.writable!==!1&&stream.writable,onlegacyfinish=function(){stream.writable||onfinish()},onfinish=function(){writable=!1,readable||callback.call(stream)},onend=function(){readable=!1,writable||callback.call(stream)},onexit=function(exitCode){callback.call(stream,exitCode?new Error("exited with error code: "+exitCode):null)},onerror=function(err){callback.call(stream,err)},onclose=function(){if(readable&&!(rs&&rs.ended))return callback.call(stream,new Error("premature close"));if(writable&&!(ws&&ws.ended))return callback.call(stream,new Error("premature close"))},onrequest=function(){stream.req.on("finish",onfinish)};return isRequest(stream)?(stream.on("complete",onfinish),stream.on("abort",onclose),stream.req?onrequest():stream.on("request",onrequest)):writable&&!ws&&(stream.on("end",onlegacyfinish),stream.on("close",onlegacyfinish)),isChildProcess(stream)&&stream.on("exit",onexit),stream.on("end",onend),stream.on("finish",onfinish),opts.error!==!1&&stream.on("error",onerror),stream.on("close",onclose),function(){stream.removeListener("complete",onfinish),stream.removeListener("abort",onclose),stream.removeListener("request",onrequest),stream.req&&stream.req.removeListener("finish",onfinish),stream.removeListener("end",onlegacyfinish),stream.removeListener("close",onlegacyfinish),stream.removeListener("finish",onfinish),stream.removeListener("exit",onexit),stream.removeListener("end",onend),stream.removeListener("error",onerror),stream.removeListener("close",onclose)}};module2.exports=eos2}});var stream_to_buffer_exports={};__export(stream_to_buffer_exports,{default:()=>streamToBuffer,streamToBufferChunks:()=>streamToBufferChunks});function streamToBuffer(stream){return new Promise((resolve3,reject)=>{let buffers=[];stream.on("data",chunk=>{let buffer=Buffer.isBuffer(chunk)?chunk:Buffer.from(chunk);buffers.push(Uint8Array.from(buffer))}),(0,import_end_of_stream.default)(stream,err=>{if(err){reject(err);return}try{switch(buffers.length){case 0:resolve3(Buffer.allocUnsafe(0));break;case 1:resolve3(Buffer.from(buffers[0]));break;default:resolve3(Buffer.concat(buffers))}}catch(concatErr){reject(concatErr)}})})}async function streamToBufferChunks(stream,chunkSize=100*MB){let chunks=[],currentChunk=[],currentSize=0;for await(let chunk of stream){let buffer=Buffer.isBuffer(chunk)?chunk:Buffer.from(chunk),offset=0;for(;offset<buffer.length;){let remainingSpace=chunkSize-currentSize,sliceSize=Math.min(remainingSpace,buffer.length-offset);currentChunk.push(Uint8Array.from(buffer.subarray(offset,offset+sliceSize))),currentSize+=sliceSize,offset+=sliceSize,currentSize>=chunkSize&&(chunks.push(Buffer.concat(currentChunk)),currentChunk=[],currentSize=0)}}return currentChunk.length>0&&chunks.push(Buffer.concat(currentChunk)),chunks}var import_end_of_stream,MB,init_stream_to_buffer=__esm({"src/fs/stream-to-buffer.ts"(){"use strict";import_end_of_stream=__toESM(require_end_of_stream());MB=1024*1024}});var download_exports={};__export(download_exports,{default:()=>download,downloadFile:()=>downloadFile,getSymlinkTarget:()=>getSymlinkTarget,isDirectory:()=>isDirectory,isExternalSymlink:()=>isExternalSymlink,isExternalSymlinkTarget:()=>isExternalSymlinkTarget,isSymbolicLink:()=>isSymbolicLink});function isDirectory(mode){return(mode&S_IFMT)===S_IFDIR}function isSymbolicLink(mode){return(mode&S_IFMT)===S_IFLNK}function isExternalSymlinkTarget(target){return target.startsWith("../")||target.startsWith("..\\")||import_path2.default.isAbsolute(target)}function getSymlinkTarget(file){if(!isSymbolicLink(file.mode))return null;if(file.type==="FileFsRef")try{return(0,import_fs_extra2.readlinkSync)(file.fsPath)}catch{return null}if(file.type==="FileBlob"){let{data}=file;return typeof data=="string"?data:data.toString("utf8")}return null}function isExternalSymlink(file){let target=getSymlinkTarget(file);return target!==null&&isExternalSymlinkTarget(target)}async function prepareSymlinkTarget(file,fsPath){let mkdirPromise=(0,import_fs_extra2.mkdirp)(import_path2.default.dirname(fsPath));if(file.type==="FileFsRef"){let[target]=await Promise.all([(0,import_fs_extra2.readlink)(file.fsPath),mkdirPromise]);return target}if(file.type==="FileRef"||file.type==="FileBlob"){let targetPathBufferPromise=streamToBuffer(await file.toStreamAsync()),[targetPathBuffer]=await Promise.all([targetPathBufferPromise,mkdirPromise]);return targetPathBuffer.toString("utf8")}throw new Error(`file.type "${file.type}" not supported for symlink`)}async function downloadFile(file,fsPath){let{mode}=file;if(isDirectory(mode))return await(0,import_fs_extra2.mkdirp)(fsPath),await(0,import_fs_extra2.chmod)(fsPath,mode),file_fs_ref_default.fromFsPath({mode,fsPath});if(isSymbolicLink(mode)){let target=await prepareSymlinkTarget(file,fsPath);try{await(0,import_fs_extra2.symlink)(target,fsPath)}catch(err){if(err.code==="EEXIST")await(0,import_fs_extra2.readlink)(fsPath)!==target&&(await(0,import_fs_extra2.remove)(fsPath),await(0,import_fs_extra2.symlink)(target,fsPath));else throw err}return file_fs_ref_default.fromFsPath({mode,fsPath})}let stream=file.toStream();return file_fs_ref_default.fromStream({mode,stream,fsPath})}async function removeFile(basePath,fileMatched){let file=import_path2.default.join(basePath,fileMatched);await(0,import_fs_extra2.remove)(file)}async function download(files,basePath,meta){let{isDev=!1,skipDownload=!1,filesChanged=null,filesRemoved=null}=meta||{};if(isDev||skipDownload)return files;debug("Downloading deployment source files...");let start=Date.now(),files2={},filenames=Object.keys(files);await Promise.all(filenames.map(async name=>{if(Array.isArray(filesRemoved)&&filesRemoved.includes(name)){await removeFile(basePath,name);return}if(Array.isArray(filesChanged)&&!filesChanged.includes(name))return;let parts=name.split("/");for(let i=1;i<parts.length;i++){let dir=parts.slice(0,i).join("/"),parent=files[dir];if(parent&&isSymbolicLink(parent.mode)&&!isExternalSymlink(parent)){console.warn(`Warning: file "${name}" is within a symlinked directory "${dir}" and will be ignored`);return}}let file=files[name],fsPath=import_path2.default.join(basePath,name);files2[name]=await downloadFile(file,fsPath)}));let duration=Date.now()-start;return debug(`Downloaded ${filenames.length} source files: ${duration}ms`),files2}var import_path2,import_fs_extra2,S_IFDIR,S_IFLNK,S_IFMT,init_download=__esm({"src/fs/download.ts"(){"use strict";import_path2=__toESM(require("path"));init_debug();init_file_fs_ref();import_fs_extra2=__toESM(require_lib());init_stream_to_buffer();S_IFDIR=16384,S_IFLNK=40960,S_IFMT=61440}});var lambda_exports={};__export(lambda_exports,{Lambda:()=>Lambda,createLambda:()=>createLambda,createZip:()=>createZip,findMatchingFunction:()=>findMatchingFunction,getLambdaOptionsFromFunction:()=>getLambdaOptionsFromFunction,sanitizeConsumerName:()=>sanitizeConsumerName});function sanitizeConsumerName(functionPath){let result="";for(let char of functionPath)char==="_"?result+="__":char==="/"?result+="_S":char==="."?result+="_D":/[A-Za-z0-9-]/.test(char)?result+=char:result+="_"+char.charCodeAt(0).toString(16).toUpperCase().padStart(2,"0");return result}function getDefaultLambdaArchitecture(architecture){if(architecture)return architecture;switch(process.arch){case"arm":case"arm64":return"arm64";default:return"x86_64"}}async function createLambda(opts){let lambda=new Lambda(opts);return lambda.zipBuffer=await lambda.createZip(),lambda}async function createZip(files){let names=Object.keys(files).sort(),symlinkTargets=new Map;for(let name of names){let file=files[name];if(file.mode&&isSymbolicLink(file.mode)&&file.type==="FileFsRef"){let symlinkTarget=await(0,import_fs_extra3.readlink)(file.fsPath);symlinkTargets.set(name,symlinkTarget)}}let zipFile=new import_yazl.ZipFile;return await new Promise((resolve3,reject)=>{for(let name of names){let file=files[name],opts={mode:file.mode,mtime},symlinkTarget=symlinkTargets.get(name);if(typeof symlinkTarget=="string")zipFile.addBuffer(Buffer.from(symlinkTarget,"utf8"),name,opts);else if(file.mode&&isDirectory(file.mode))zipFile.addEmptyDirectory(name,opts);else{let stream=file.toStream();stream.on("error",reject),zipFile.addReadStream(stream,name,opts)}}zipFile.end(),streamToBuffer(zipFile.outputStream).then(resolve3).catch(reject)})}function findMatchingFunction(functions,candidates){if(functions){for(let sourceFile of candidates)for(let[pattern,functionConfig]of Object.entries(functions))if(sourceFile===pattern||(0,import_minimatch.default)(sourceFile,pattern))return{sourceFile,pattern,functionConfig}}}async function getLambdaOptionsFromFunction({sourceFile,config,isScheduleEntrypoint=!1}){let match=findMatchingFunction(config?.functions,[sourceFile]);if(match){let{pattern,functionConfig:fn}=match,serviceName=typeof config?.serviceName=="string"&&config.serviceName!==""?config.serviceName:void 0,consumer=sanitizeConsumerName(serviceName?`${serviceName}~${pattern}`:pattern),experimentalTriggers=fn.experimentalTriggers?.map(trigger=>trigger.type==="queue/v2beta"?{...trigger,consumer}:trigger);if(experimentalTriggers&&experimentalTriggers.length>1&&experimentalTriggers.some(t=>t.type==="queue/v2beta"))throw new Error(`functions["${pattern}"].experimentalTriggers can only have one item for queue/v2beta`);if(isScheduleEntrypoint&&experimentalTriggers!==void 0&&!(experimentalTriggers.length===1&&experimentalTriggers[0]?.type==="schedule/v1beta"))throw new Error(`functions["${pattern}"].experimentalTriggers conflicts with the schedule entrypoint trigger`);return{architecture:fn.architecture,memory:fn.memory,maxDuration:fn.maxDuration,affinity:fn.affinity,maxConcurrency:fn.maxConcurrency,regions:fn.regions,functionFailoverRegions:fn.functionFailoverRegions,experimentalTriggers:isScheduleEntrypoint?[{type:"schedule/v1beta"}]:experimentalTriggers,supportsCancellation:fn.supportsCancellation}}return isScheduleEntrypoint?{experimentalTriggers:[{type:"schedule/v1beta"}]}:{}}var import_assert5,import_async_sema3,import_yazl,import_minimatch,import_fs_extra3,Lambda,sema,mtime,init_lambda=__esm({"src/lambda.ts"(){"use strict";import_assert5=__toESM(require("assert"));init_max_concurrency();import_async_sema3=__toESM(require_async_sema()),import_yazl=__toESM(require_yazl()),import_minimatch=__toESM(require_minimatch()),import_fs_extra3=__toESM(require_lib());init_download();init_stream_to_buffer();Lambda=class{constructor(opts){let{handler,runtime,runtimeLanguage,maxDuration,affinity,maxConcurrency,architecture,memory,environment={},allowQuery,regions,functionFailoverRegions,supportsMultiPayloads,supportsWrapper,supportsResponseStreaming,experimentalResponseStreaming,operationType,framework,experimentalTriggers,supportsCancellation,shouldDisableAutomaticFetchInstrumentation}=opts;if("files"in opts&&(0,import_assert5.default)(typeof opts.files=="object",'"files" must be an object'),"zipBuffer"in opts&&(0,import_assert5.default)(Buffer.isBuffer(opts.zipBuffer),'"zipBuffer" must be a Buffer'),(0,import_assert5.default)(typeof handler=="string",'"handler" is not a string'),(0,import_assert5.default)(typeof runtime=="string",'"runtime" is not a string'),(0,import_assert5.default)(typeof environment=="object",'"environment" is not an object'),architecture!==void 0&&(0,import_assert5.default)(architecture==="x86_64"||architecture==="arm64",'"architecture" must be either "x86_64" or "arm64"'),runtimeLanguage!==void 0&&(0,import_assert5.default)(runtimeLanguage==="rust"||runtimeLanguage==="go",'"runtimeLanguage" is invalid. Valid options: "rust", "go"'),"experimentalAllowBundling"in opts&&opts.experimentalAllowBundling!==void 0&&(0,import_assert5.default)(typeof opts.experimentalAllowBundling=="boolean",'"experimentalAllowBundling" is not a boolean'),memory!==void 0&&(0,import_assert5.default)(typeof memory=="number",'"memory" is not a number'),maxDuration!==void 0&&(0,import_assert5.default)(typeof maxDuration=="number"||maxDuration==="max",'"maxDuration" is not a number or "max"'),affinity!==void 0&&(0,import_assert5.default)(typeof affinity=="object"&&affinity!==null&&affinity.mode==="strict"&&Object.keys(affinity).length===1,'"affinity" must be an object with only `mode: "strict"`'),validateMaxConcurrency(maxConcurrency),allowQuery!==void 0&&((0,import_assert5.default)(Array.isArray(allowQuery),'"allowQuery" is not an Array'),(0,import_assert5.default)(allowQuery.every(q=>typeof q=="string"),'"allowQuery" is not a string Array')),supportsMultiPayloads!==void 0&&(0,import_assert5.default)(typeof supportsMultiPayloads=="boolean",'"supportsMultiPayloads" is not a boolean'),supportsWrapper!==void 0&&(0,import_assert5.default)(typeof supportsWrapper=="boolean",'"supportsWrapper" is not a boolean'),regions!==void 0&&((0,import_assert5.default)(Array.isArray(regions),'"regions" is not an Array'),(0,import_assert5.default)(regions.every(r=>typeof r=="string"),'"regions" is not a string Array')),functionFailoverRegions!==void 0&&((0,import_assert5.default)(Array.isArray(functionFailoverRegions),'"functionFailoverRegions" is not an Array'),(0,import_assert5.default)(functionFailoverRegions.every(r=>typeof r=="string"),'"functionFailoverRegions" is not a string Array')),framework!==void 0&&((0,import_assert5.default)(typeof framework=="object",'"framework" is not an object'),(0,import_assert5.default)(typeof framework.slug=="string",'"framework.slug" is not a string'),framework.version!==void 0&&(0,import_assert5.default)(typeof framework.version=="string",'"framework.version" is not a string')),experimentalTriggers!==void 0){(0,import_assert5.default)(Array.isArray(experimentalTriggers),'"experimentalTriggers" is not an Array');for(let i=0;i<experimentalTriggers.length;i++){let trigger=experimentalTriggers[i],prefix=`"experimentalTriggers[${i}]"`;(0,import_assert5.default)(typeof trigger=="object"&&trigger!==null,`${prefix} is not an object`),(0,import_assert5.default)(trigger.type==="queue/v1beta"||trigger.type==="queue/v2beta"||trigger.type==="schedule/v1beta",`${prefix}.type must be "queue/v1beta", "queue/v2beta", or "schedule/v1beta"`),(trigger.type==="queue/v1beta"||trigger.type==="queue/v2beta")&&((0,import_assert5.default)(typeof trigger.topic=="string",`${prefix}.topic is required and must be a string`),(0,import_assert5.default)(trigger.topic.length>0,`${prefix}.topic cannot be empty`),(0,import_assert5.default)(typeof trigger.consumer=="string",`${prefix}.consumer is required and must be a string`),(0,import_assert5.default)(trigger.consumer.length>0,`${prefix}.consumer cannot be empty`),trigger.maxDeliveries!==void 0&&((0,import_assert5.default)(typeof trigger.maxDeliveries=="number",`${prefix}.maxDeliveries must be a number`),(0,import_assert5.default)(Number.isInteger(trigger.maxDeliveries)&&trigger.maxDeliveries>=1,`${prefix}.maxDeliveries must be at least 1`)),trigger.retryAfterSeconds!==void 0&&((0,import_assert5.default)(typeof trigger.retryAfterSeconds=="number",`${prefix}.retryAfterSeconds must be a number`),(0,import_assert5.default)(trigger.retryAfterSeconds>0,`${prefix}.retryAfterSeconds must be a positive number`)),trigger.initialDelaySeconds!==void 0&&((0,import_assert5.default)(typeof trigger.initialDelaySeconds=="number",`${prefix}.initialDelaySeconds must be a number`),(0,import_assert5.default)(trigger.initialDelaySeconds>=0,`${prefix}.initialDelaySeconds must be a non-negative number`)),trigger.maxConcurrency!==void 0&&((0,import_assert5.default)(typeof trigger.maxConcurrency=="number",`${prefix}.maxConcurrency must be a number`),(0,import_assert5.default)(Number.isInteger(trigger.maxConcurrency)&&trigger.maxConcurrency>=1,`${prefix}.maxConcurrency must be at least 1`)))}}supportsCancellation!==void 0&&(0,import_assert5.default)(typeof supportsCancellation=="boolean",'"supportsCancellation" is not a boolean'),this.type="Lambda",this.operationType=operationType,this.files="files"in opts?opts.files:void 0,this.handler=handler,this.runtime=runtime,this.runtimeLanguage=runtimeLanguage,this.architecture=getDefaultLambdaArchitecture(architecture),this.memory=memory,this.maxDuration=maxDuration,this.affinity=affinity,this.maxConcurrency=maxConcurrency,this.environment=environment,this.allowQuery=allowQuery,this.regions=regions,this.functionFailoverRegions=functionFailoverRegions,this.zipBuffer="zipBuffer"in opts?opts.zipBuffer:void 0,this.supportsMultiPayloads=supportsMultiPayloads,this.supportsWrapper=supportsWrapper,this.supportsResponseStreaming=supportsResponseStreaming??experimentalResponseStreaming,this.framework=framework,this.experimentalAllowBundling="experimentalAllowBundling"in opts?opts.experimentalAllowBundling:void 0,this.experimentalTriggers=experimentalTriggers,this.supportsCancellation=supportsCancellation,this.shouldDisableAutomaticFetchInstrumentation=shouldDisableAutomaticFetchInstrumentation}async createZip(){let{zipBuffer}=this;if(!zipBuffer){if(!this.files)throw new Error("`files` is not defined");await sema.acquire();try{zipBuffer=await createZip(this.files)}finally{sema.release()}}return zipBuffer}get experimentalResponseStreaming(){return this.supportsResponseStreaming}set experimentalResponseStreaming(v){this.supportsResponseStreaming=v}},sema=new import_async_sema3.default(10),mtime=new Date(154e10)}});var nodejs_lambda_exports={};__export(nodejs_lambda_exports,{NodejsLambda:()=>NodejsLambda});var NodejsLambda,init_nodejs_lambda=__esm({"src/nodejs-lambda.ts"(){"use strict";init_lambda();NodejsLambda=class extends Lambda{constructor({shouldAddHelpers,shouldAddSourcemapSupport,awsLambdaHandler,useWebApi,...opts}){super(opts);this.launcherType="Nodejs",this.shouldAddHelpers=shouldAddHelpers,this.shouldAddSourcemapSupport=shouldAddSourcemapSupport,this.awsLambdaHandler=awsLambdaHandler,this.useWebApi=useWebApi}}}});var prerender_exports={};__export(prerender_exports,{Prerender:()=>Prerender});var Prerender,init_prerender=__esm({"src/prerender.ts"(){"use strict";Prerender=class{constructor({expiration,staleExpiration,lambda,fallback,group,bypassToken,allowQuery,allowHeader,initialHeaders,initialStatus,passQuery,sourcePath,experimentalBypassFor,experimentalStreamingLambdaPath,chain,exposeErrBody,partialFallback,initialMetadata,onMiss}){if(this.type="Prerender",this.expiration=expiration,this.staleExpiration=staleExpiration,this.sourcePath=sourcePath,this.initialMetadata=initialMetadata,this.onMiss=onMiss,this.lambda=lambda,this.lambda&&(this.lambda.operationType=this.lambda.operationType||"ISR"),typeof group<"u"&&(group<=0||!Number.isInteger(group)))throw new Error("The `group` argument for `Prerender` needs to be a natural number.");if(this.group=group,passQuery===!0)this.passQuery=!0;else if(typeof passQuery!="boolean"&&typeof passQuery<"u")throw new Error("The `passQuery` argument for `Prerender` must be a boolean.");if(bypassToken==null)this.bypassToken=null;else if(typeof bypassToken=="string"){if(bypassToken.length<32)throw new Error("The `bypassToken` argument for `Prerender` must be 32 characters or more.");this.bypassToken=bypassToken}else throw new Error("The `bypassToken` argument for `Prerender` must be a `string`.");if(experimentalBypassFor!==void 0){if(!Array.isArray(experimentalBypassFor)||experimentalBypassFor.some(field=>typeof field!="object"||typeof field.type!="string"||field.type==="host"&&"key"in field||field.type!=="host"&&typeof field.key!="string"||field.value!==void 0&&typeof field.value!="string"&&(typeof field.value!="object"||field.value===null||Array.isArray(field.value))))throw new Error("The `experimentalBypassFor` argument for `Prerender` must be Array of objects with fields `type`, `key` and optionally `value`.");this.experimentalBypassFor=experimentalBypassFor}if(typeof fallback>"u")throw new Error("The `fallback` argument for `Prerender` needs to be a `FileBlob`, `FileFsRef`, `FileRef`, or null.");if(this.fallback=fallback,initialHeaders!==void 0){if(!initialHeaders||typeof initialHeaders!="object"||Object.entries(initialHeaders).some(([key,value])=>typeof key!="string"||typeof value!="string"))throw new Error("The `initialHeaders` argument for `Prerender` must be an object with string key/values");this.initialHeaders=initialHeaders}if(initialStatus!==void 0){if(initialStatus<=0||!Number.isInteger(initialStatus))throw new Error("The `initialStatus` argument for `Prerender` must be a natural number.");this.initialStatus=initialStatus}if(allowQuery!==void 0){if(!Array.isArray(allowQuery))throw new Error("The `allowQuery` argument for `Prerender` must be Array.");if(!allowQuery.every(q=>typeof q=="string"))throw new Error("The `allowQuery` argument for `Prerender` must be Array of strings.");this.allowQuery=allowQuery}if(allowHeader!==void 0){if(!Array.isArray(allowHeader))throw new Error("The `allowHeader` argument for `Prerender` must be Array.");if(!allowHeader.every(q=>typeof q=="string"))throw new Error("The `allowHeader` argument for `Prerender` must be Array of strings.");this.allowHeader=allowHeader}if(experimentalStreamingLambdaPath!==void 0){if(typeof experimentalStreamingLambdaPath!="string")throw new Error("The `experimentalStreamingLambdaPath` argument for `Prerender` must be a string.");this.experimentalStreamingLambdaPath=experimentalStreamingLambdaPath}if(chain!==void 0){if(typeof chain!="object")throw new Error("The `chain` argument for `Prerender` must be an object.");if(!chain.headers||typeof chain.headers!="object"||Object.entries(chain.headers).some(([key,value])=>typeof key!="string"||typeof value!="string"))throw new Error("The `chain.headers` argument for `Prerender` must be an object with string key/values");if(!chain.outputPath||typeof chain.outputPath!="string")throw new Error("The `chain.outputPath` argument for `Prerender` must be a string.");this.chain=chain}if(exposeErrBody===!0)this.exposeErrBody=!0;else if(typeof exposeErrBody!="boolean"&&typeof exposeErrBody<"u")throw new Error("The `exposeErrBody` argument for `Prerender` must be a boolean.");if(partialFallback===!0)this.partialFallback=!0;else if(typeof partialFallback!="boolean"&&typeof partialFallback<"u")throw new Error("The `partialFallback` argument for `Prerender` must be a boolean.")}}}});var get_writable_directory_exports={};__export(get_writable_directory_exports,{default:()=>getWritableDirectory});async function getWritableDirectory(){let name=Math.floor(Math.random()*2147483647).toString(16),directory=(0,import_path3.join)((0,import_os.tmpdir)(),name);return await(0,import_fs_extra4.mkdirp)(directory),directory}var import_path3,import_os,import_fs_extra4,init_get_writable_directory=__esm({"src/fs/get-writable-directory.ts"(){"use strict";import_path3=require("path"),import_os=require("os"),import_fs_extra4=__toESM(require_lib())}});var require_old=__commonJS({"../../node_modules/.pnpm/fs.realpath@1.0.0/node_modules/fs.realpath/old.js"(exports2){var pathModule=require("path"),isWindows=process.platform==="win32",fs12=require("fs"),DEBUG=process.env.NODE_DEBUG&&/fs/.test(process.env.NODE_DEBUG);function rethrow(){var callback;if(DEBUG){var backtrace=new Error;callback=debugCallback}else callback=missingCallback;return callback;function debugCallback(err){err&&(backtrace.message=err.message,err=backtrace,missingCallback(err))}function missingCallback(err){if(err){if(process.throwDeprecation)throw err;if(!process.noDeprecation){var msg="fs: missing callback "+(err.stack||err.message);process.traceDeprecation?console.trace(msg):console.error(msg)}}}}function maybeCallback(cb){return typeof cb=="function"?cb:rethrow()}var normalize=pathModule.normalize;isWindows?nextPartRe=/(.*?)(?:[\/\\]+|$)/g:nextPartRe=/(.*?)(?:[\/]+|$)/g;var nextPartRe;isWindows?splitRootRe=/^(?:[a-zA-Z]:|[\\\/]{2}[^\\\/]+[\\\/][^\\\/]+)?[\\\/]*/:splitRootRe=/^[\/]*/;var splitRootRe;exports2.realpathSync=function(p,cache){if(p=pathModule.resolve(p),cache&&Object.prototype.hasOwnProperty.call(cache,p))return cache[p];var original=p,seenLinks={},knownHard={},pos,current,base,previous;start();function start(){var m=splitRootRe.exec(p);pos=m[0].length,current=m[0],base=m[0],previous="",isWindows&&!knownHard[base]&&(fs12.lstatSync(base),knownHard[base]=!0)}for(;pos<p.length;){nextPartRe.lastIndex=pos;var result=nextPartRe.exec(p);if(previous=current,current+=result[0],base=previous+result[1],pos=nextPartRe.lastIndex,!(knownHard[base]||cache&&cache[base]===base)){var resolvedLink;if(cache&&Object.prototype.hasOwnProperty.call(cache,base))resolvedLink=cache[base];else{var stat2=fs12.lstatSync(base);if(!stat2.isSymbolicLink()){knownHard[base]=!0,cache&&(cache[base]=base);continue}var linkTarget=null;if(!isWindows){var id=stat2.dev.toString(32)+":"+stat2.ino.toString(32);seenLinks.hasOwnProperty(id)&&(linkTarget=seenLinks[id])}linkTarget===null&&(fs12.statSync(base),linkTarget=fs12.readlinkSync(base)),resolvedLink=pathModule.resolve(previous,linkTarget),cache&&(cache[base]=resolvedLink),isWindows||(seenLinks[id]=linkTarget)}p=pathModule.resolve(resolvedLink,p.slice(pos)),start()}}return cache&&(cache[original]=p),p};exports2.realpath=function(p,cache,cb){if(typeof cb!="function"&&(cb=maybeCallback(cache),cache=null),p=pathModule.resolve(p),cache&&Object.prototype.hasOwnProperty.call(cache,p))return process.nextTick(cb.bind(null,null,cache[p]));var original=p,seenLinks={},knownHard={},pos,current,base,previous;start();function start(){var m=splitRootRe.exec(p);pos=m[0].length,current=m[0],base=m[0],previous="",isWindows&&!knownHard[base]?fs12.lstat(base,function(err){if(err)return cb(err);knownHard[base]=!0,LOOP()}):process.nextTick(LOOP)}function LOOP(){if(pos>=p.length)return cache&&(cache[original]=p),cb(null,p);nextPartRe.lastIndex=pos;var result=nextPartRe.exec(p);return previous=current,current+=result[0],base=previous+result[1],pos=nextPartRe.lastIndex,knownHard[base]||cache&&cache[base]===base?process.nextTick(LOOP):cache&&Object.prototype.hasOwnProperty.call(cache,base)?gotResolvedLink(cache[base]):fs12.lstat(base,gotStat)}function gotStat(err,stat2){if(err)return cb(err);if(!stat2.isSymbolicLink())return knownHard[base]=!0,cache&&(cache[base]=base),process.nextTick(LOOP);if(!isWindows){var id=stat2.dev.toString(32)+":"+stat2.ino.toString(32);if(seenLinks.hasOwnProperty(id))return gotTarget(null,seenLinks[id],base)}fs12.stat(base,function(err2){if(err2)return cb(err2);fs12.readlink(base,function(err3,target){isWindows||(seenLinks[id]=target),gotTarget(err3,target)})})}function gotTarget(err,target,base2){if(err)return cb(err);var resolvedLink=pathModule.resolve(previous,target);cache&&(cache[base2]=resolvedLink),gotResolvedLink(resolvedLink)}function gotResolvedLink(resolvedLink){p=pathModule.resolve(resolvedLink,p.slice(pos)),start()}}}});var require_fs2=__commonJS({"../../node_modules/.pnpm/fs.realpath@1.0.0/node_modules/fs.realpath/index.js"(exports2,module2){module2.exports=realpath;realpath.realpath=realpath;realpath.sync=realpathSync2;realpath.realpathSync=realpathSync2;realpath.monkeypatch=monkeypatch;realpath.unmonkeypatch=unmonkeypatch;var fs12=require("fs"),origRealpath=fs12.realpath,origRealpathSync=fs12.realpathSync,version=process.version,ok=/^v[0-5]\./.test(version),old=require_old();function newError(er){return er&&er.syscall==="realpath"&&(er.code==="ELOOP"||er.code==="ENOMEM"||er.code==="ENAMETOOLONG")}function realpath(p,cache,cb){if(ok)return origRealpath(p,cache,cb);typeof cache=="function"&&(cb=cache,cache=null),origRealpath(p,cache,function(er,result){newError(er)?old.realpath(p,cache,cb):cb(er,result)})}function realpathSync2(p,cache){if(ok)return origRealpathSync(p,cache);try{return origRealpathSync(p,cache)}catch(er){if(newError(er))return old.realpathSync(p,cache);throw er}}function monkeypatch(){fs12.realpath=realpath,fs12.realpathSync=realpathSync2}function unmonkeypatch(){fs12.realpath=origRealpath,fs12.realpathSync=origRealpathSync}}});var require_path=__commonJS({"../../node_modules/.pnpm/minimatch@5.0.1/node_modules/minimatch/lib/path.js"(exports2,module2){var isWindows=typeof process=="object"&&process&&process.platform==="win32";module2.exports=isWindows?{sep:"\\"}:{sep:"/"}}});var require_brace_expansion2=__commonJS({"../../node_modules/.pnpm/brace-expansion@2.1.1/node_modules/brace-expansion/index.js"(exports2,module2){var balanced=require_balanced_match();module2.exports=expandTop;var escSlash="\0SLASH"+Math.random()+"\0",escOpen="\0OPEN"+Math.random()+"\0",escClose="\0CLOSE"+Math.random()+"\0",escComma="\0COMMA"+Math.random()+"\0",escPeriod="\0PERIOD"+Math.random()+"\0";function numeric(str){return parseInt(str,10)==str?parseInt(str,10):str.charCodeAt(0)}function escapeBraces(str){return str.split("\\\\").join(escSlash).split("\\{").join(escOpen).split("\\}").join(escClose).split("\\,").join(escComma).split("\\.").join(escPeriod)}function unescapeBraces(str){return str.split(escSlash).join("\\").split(escOpen).join("{").split(escClose).join("}").split(escComma).join(",").split(escPeriod).join(".")}function parseCommaParts(str){if(!str)return[""];var parts=[],m=balanced("{","}",str);if(!m)return str.split(",");var pre=m.pre,body=m.body,post=m.post,p=pre.split(",");p[p.length-1]+="{"+body+"}";var postParts=parseCommaParts(post);return post.length&&(p[p.length-1]+=postParts.shift(),p.push.apply(p,postParts)),parts.push.apply(parts,p),parts}function expandTop(str,options){if(!str)return[];options=options||{};var max=options.max==null?1/0:options.max;return str.substr(0,2)==="{}"&&(str="\\{\\}"+str.substr(2)),expand(escapeBraces(str),max,!0).map(unescapeBraces)}function embrace(str){return"{"+str+"}"}function isPadded(el){return/^-?0\d/.test(el)}function lte(i,y){return i<=y}function gte2(i,y){return i>=y}function expand(str,max,isTop){var expansions=[],m=balanced("{","}",str);if(!m)return[str];var pre=m.pre,post=m.post.length?expand(m.post,max,!1):[""];if(/\$$/.test(m.pre))for(var k=0;k<post.length&&k<max;k++){var expansion=pre+"{"+m.body+"}"+post[k];expansions.push(expansion)}else{var isNumericSequence=/^-?\d+\.\.-?\d+(?:\.\.-?\d+)?$/.test(m.body),isAlphaSequence=/^[a-zA-Z]\.\.[a-zA-Z](?:\.\.-?\d+)?$/.test(m.body),isSequence=isNumericSequence||isAlphaSequence,isOptions=m.body.indexOf(",")>=0;if(!isSequence&&!isOptions)return m.post.match(/,(?!,).*\}/)?(str=m.pre+"{"+m.body+escClose+m.post,expand(str,max,!0)):[str];var n;if(isSequence)n=m.body.split(/\.\./);else if(n=parseCommaParts(m.body),n.length===1&&(n=expand(n[0],max,!1).map(embrace),n.length===1))return post.map(function(p){return m.pre+n[0]+p});var N;if(isSequence){var x=numeric(n[0]),y=numeric(n[1]),width=Math.max(n[0].length,n[1].length),incr=n.length==3?Math.max(Math.abs(numeric(n[2])),1):1,test=lte,reverse=y<x;reverse&&(incr*=-1,test=gte2);var pad=n.some(isPadded);N=[];for(var i=x;test(i,y)&&N.length<max;i+=incr){var c;if(isAlphaSequence)c=String.fromCharCode(i),c==="\\"&&(c="");else if(c=String(i),pad){var need=width-c.length;if(need>0){var z=new Array(need+1).join("0");i<0?c="-"+z+c.slice(1):c=z+c}}N.push(c)}}else{N=[];for(var j=0;j<n.length;j++)N.push.apply(N,expand(n[j],max,!1))}for(var j=0;j<N.length;j++)for(var k=0;k<post.length&&expansions.length<max;k++){var expansion=pre+N[j]+post[k];(!isTop||isSequence||expansion)&&expansions.push(expansion)}}return expansions}}});var require_minimatch2=__commonJS({"../../node_modules/.pnpm/minimatch@5.0.1/node_modules/minimatch/minimatch.js"(exports2,module2){var minimatch3=module2.exports=(p,pattern,options={})=>(assertValidPattern(pattern),!options.nocomment&&pattern.charAt(0)==="#"?!1:new Minimatch(pattern,options).match(p));module2.exports=minimatch3;var path9=require_path();minimatch3.sep=path9.sep;var GLOBSTAR=Symbol("globstar **");minimatch3.GLOBSTAR=GLOBSTAR;var expand=require_brace_expansion2(),plTypes={"!":{open:"(?:(?!(?:",close:"))[^/]*?)"},"?":{open:"(?:",close:")?"},"+":{open:"(?:",close:")+"},"*":{open:"(?:",close:")*"},"@":{open:"(?:",close:")"}},qmark="[^/]",star=qmark+"*?",twoStarDot="(?:(?!(?:\\/|^)(?:\\.{1,2})($|\\/)).)*?",twoStarNoDot="(?:(?!(?:\\/|^)\\.).)*?",charSet=s=>s.split("").reduce((set,c)=>(set[c]=!0,set),{}),reSpecials=charSet("().*{}+?[]^$\\!"),addPatternStartSet=charSet("[.("),slashSplit=/\/+/;minimatch3.filter=(pattern,options={})=>(p,i,list)=>minimatch3(p,pattern,options);var ext=(a,b={})=>{let t={};return Object.keys(a).forEach(k=>t[k]=a[k]),Object.keys(b).forEach(k=>t[k]=b[k]),t};minimatch3.defaults=def=>{if(!def||typeof def!="object"||!Object.keys(def).length)return minimatch3;let orig=minimatch3,m=(p,pattern,options)=>orig(p,pattern,ext(def,options));return m.Minimatch=class extends orig.Minimatch{constructor(pattern,options){super(pattern,ext(def,options))}},m.Minimatch.defaults=options=>orig.defaults(ext(def,options)).Minimatch,m.filter=(pattern,options)=>orig.filter(pattern,ext(def,options)),m.defaults=options=>orig.defaults(ext(def,options)),m.makeRe=(pattern,options)=>orig.makeRe(pattern,ext(def,options)),m.braceExpand=(pattern,options)=>orig.braceExpand(pattern,ext(def,options)),m.match=(list,pattern,options)=>orig.match(list,pattern,ext(def,options)),m};minimatch3.braceExpand=(pattern,options)=>braceExpand(pattern,options);var braceExpand=(pattern,options={})=>(assertValidPattern(pattern),options.nobrace||!/\{(?:(?!\{).)*\}/.test(pattern)?[pattern]:expand(pattern)),MAX_PATTERN_LENGTH=1024*64,assertValidPattern=pattern=>{if(typeof pattern!="string")throw new TypeError("invalid pattern");if(pattern.length>MAX_PATTERN_LENGTH)throw new TypeError("pattern is too long")},SUBPARSE=Symbol("subparse");minimatch3.makeRe=(pattern,options)=>new Minimatch(pattern,options||{}).makeRe();minimatch3.match=(list,pattern,options={})=>{let mm=new Minimatch(pattern,options);return list=list.filter(f=>mm.match(f)),mm.options.nonull&&!list.length&&list.push(pattern),list};var globUnescape=s=>s.replace(/\\(.)/g,"$1"),regExpEscape=s=>s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"),Minimatch=class{constructor(pattern,options){assertValidPattern(pattern),options||(options={}),this.options=options,this.set=[],this.pattern=pattern,this.regexp=null,this.negate=!1,this.comment=!1,this.empty=!1,this.partial=!!options.partial,this.make()}debug(){}make(){let pattern=this.pattern,options=this.options;if(!options.nocomment&&pattern.charAt(0)==="#"){this.comment=!0;return}if(!pattern){this.empty=!0;return}this.parseNegate();let set=this.globSet=this.braceExpand();options.debug&&(this.debug=(...args)=>console.error(...args)),this.debug(this.pattern,set),set=this.globParts=set.map(s=>s.split(slashSplit)),this.debug(this.pattern,set),set=set.map((s,si,set2)=>s.map(this.parse,this)),this.debug(this.pattern,set),set=set.filter(s=>s.indexOf(!1)===-1),this.debug(this.pattern,set),this.set=set}parseNegate(){if(this.options.nonegate)return;let pattern=this.pattern,negate=!1,negateOffset=0;for(let i=0;i<pattern.length&&pattern.charAt(i)==="!";i++)negate=!negate,negateOffset++;negateOffset&&(this.pattern=pattern.substr(negateOffset)),this.negate=negate}matchOne(file,pattern,partial){var options=this.options;this.debug("matchOne",{this:this,file,pattern}),this.debug("matchOne",file.length,pattern.length);for(var fi=0,pi=0,fl=file.length,pl=pattern.length;fi<fl&&pi<pl;fi++,pi++){this.debug("matchOne loop");var p=pattern[pi],f=file[fi];if(this.debug(pattern,p,f),p===!1)return!1;if(p===GLOBSTAR){this.debug("GLOBSTAR",[pattern,p,f]);var fr=fi,pr=pi+1;if(pr===pl){for(this.debug("** at the end");fi<fl;fi++)if(file[fi]==="."||file[fi]===".."||!options.dot&&file[fi].charAt(0)===".")return!1;return!0}for(;fr<fl;){var swallowee=file[fr];if(this.debug(`
11
11
  globstar while`,file,fr,pattern,pr,swallowee),this.matchOne(file.slice(fr),pattern.slice(pr),partial))return this.debug("globstar found match!",fr,fl,swallowee),!0;if(swallowee==="."||swallowee===".."||!options.dot&&swallowee.charAt(0)==="."){this.debug("dot detected!",file,fr,pattern,pr);break}this.debug("globstar swallow a segment, and continue"),fr++}return!!(partial&&(this.debug(`
12
12
  >>> no match, partial?`,file,fr,pattern,pr),fr===fl))}var hit;if(typeof p=="string"?(hit=f===p,this.debug("string match",p,f,hit)):(hit=f.match(p),this.debug("pattern match",p,f,hit)),!hit)return!1}if(fi===fl&&pi===pl)return!0;if(fi===fl)return partial;if(pi===pl)return fi===fl-1&&file[fi]==="";throw new Error("wtf?")}braceExpand(){return braceExpand(this.pattern,this.options)}parse(pattern,isSub){assertValidPattern(pattern);let options=this.options;if(pattern==="**")if(options.noglobstar)pattern="*";else return GLOBSTAR;if(pattern==="")return"";let re="",hasMagic=!!options.nocase,escaping=!1,patternListStack=[],negativeLists=[],stateChar,inClass=!1,reClassStart=-1,classStart=-1,cs,pl,sp,patternStart=pattern.charAt(0)==="."?"":options.dot?"(?!(?:^|\\/)\\.{1,2}(?:$|\\/))":"(?!\\.)",clearStateChar=()=>{if(stateChar){switch(stateChar){case"*":re+=star,hasMagic=!0;break;case"?":re+=qmark,hasMagic=!0;break;default:re+="\\"+stateChar;break}this.debug("clearStateChar %j %j",stateChar,re),stateChar=!1}};for(let i=0,c;i<pattern.length&&(c=pattern.charAt(i));i++){if(this.debug("%s %s %s %j",pattern,i,re,c),escaping){if(c==="/")return!1;reSpecials[c]&&(re+="\\"),re+=c,escaping=!1;continue}switch(c){case"/":return!1;case"\\":clearStateChar(),escaping=!0;continue;case"?":case"*":case"+":case"@":case"!":if(this.debug("%s %s %s %j <-- stateChar",pattern,i,re,c),inClass){this.debug(" in class"),c==="!"&&i===classStart+1&&(c="^"),re+=c;continue}this.debug("call clearStateChar %j",stateChar),clearStateChar(),stateChar=c,options.noext&&clearStateChar();continue;case"(":if(inClass){re+="(";continue}if(!stateChar){re+="\\(";continue}patternListStack.push({type:stateChar,start:i-1,reStart:re.length,open:plTypes[stateChar].open,close:plTypes[stateChar].close}),re+=stateChar==="!"?"(?:(?!(?:":"(?:",this.debug("plType %j %j",stateChar,re),stateChar=!1;continue;case")":if(inClass||!patternListStack.length){re+="\\)";continue}clearStateChar(),hasMagic=!0,pl=patternListStack.pop(),re+=pl.close,pl.type==="!"&&negativeLists.push(pl),pl.reEnd=re.length;continue;case"|":if(inClass||!patternListStack.length){re+="\\|";continue}clearStateChar(),re+="|";continue;case"[":if(clearStateChar(),inClass){re+="\\"+c;continue}inClass=!0,classStart=i,reClassStart=re.length,re+=c;continue;case"]":if(i===classStart+1||!inClass){re+="\\"+c;continue}cs=pattern.substring(classStart+1,i);try{RegExp("["+cs+"]")}catch{sp=this.parse(cs,SUBPARSE),re=re.substr(0,reClassStart)+"\\["+sp[0]+"\\]",hasMagic=hasMagic||sp[1],inClass=!1;continue}hasMagic=!0,inClass=!1,re+=c;continue;default:clearStateChar(),reSpecials[c]&&!(c==="^"&&inClass)&&(re+="\\"),re+=c;break}}for(inClass&&(cs=pattern.substr(classStart+1),sp=this.parse(cs,SUBPARSE),re=re.substr(0,reClassStart)+"\\["+sp[0],hasMagic=hasMagic||sp[1]),pl=patternListStack.pop();pl;pl=patternListStack.pop()){let tail;tail=re.slice(pl.reStart+pl.open.length),this.debug("setting tail",re,pl),tail=tail.replace(/((?:\\{2}){0,64})(\\?)\|/g,(_,$1,$2)=>($2||($2="\\"),$1+$1+$2+"|")),this.debug(`tail=%j
13
13
  %s`,tail,tail,pl,re);let t=pl.type==="*"?star:pl.type==="?"?qmark:"\\"+pl.type;hasMagic=!0,re=re.slice(0,pl.reStart)+t+"\\("+tail}clearStateChar(),escaping&&(re+="\\\\");let addPatternStart=addPatternStartSet[re.charAt(0)];for(let n=negativeLists.length-1;n>-1;n--){let nl=negativeLists[n],nlBefore=re.slice(0,nl.reStart),nlFirst=re.slice(nl.reStart,nl.reEnd-8),nlAfter=re.slice(nl.reEnd),nlLast=re.slice(nl.reEnd-8,nl.reEnd)+nlAfter,openParensBefore=nlBefore.split("(").length-1,cleanAfter=nlAfter;for(let i=0;i<openParensBefore;i++)cleanAfter=cleanAfter.replace(/\)[+*?]?/,"");nlAfter=cleanAfter;let dollar=nlAfter===""&&isSub!==SUBPARSE?"$":"";re=nlBefore+nlFirst+nlAfter+dollar+nlLast}if(re!==""&&hasMagic&&(re="(?=.)"+re),addPatternStart&&(re=patternStart+re),isSub===SUBPARSE)return[re,hasMagic];if(!hasMagic)return globUnescape(pattern);let flags=options.nocase?"i":"";try{return Object.assign(new RegExp("^"+re+"$",flags),{_glob:pattern,_src:re})}catch{return new RegExp("$.")}}makeRe(){if(this.regexp||this.regexp===!1)return this.regexp;let set=this.set;if(!set.length)return this.regexp=!1,this.regexp;let options=this.options,twoStar=options.noglobstar?star:options.dot?twoStarDot:twoStarNoDot,flags=options.nocase?"i":"",re=set.map(pattern=>(pattern=pattern.map(p=>typeof p=="string"?regExpEscape(p):p===GLOBSTAR?GLOBSTAR:p._src).reduce((set2,p)=>(set2[set2.length-1]===GLOBSTAR&&p===GLOBSTAR||set2.push(p),set2),[]),pattern.forEach((p,i)=>{p!==GLOBSTAR||pattern[i-1]===GLOBSTAR||(i===0?pattern.length>1?pattern[i+1]="(?:\\/|"+twoStar+"\\/)?"+pattern[i+1]:pattern[i]=twoStar:i===pattern.length-1?pattern[i-1]+="(?:\\/|"+twoStar+")?":(pattern[i-1]+="(?:\\/|\\/"+twoStar+"\\/)"+pattern[i+1],pattern[i+1]=GLOBSTAR))}),pattern.filter(p=>p!==GLOBSTAR).join("/"))).join("|");re="^(?:"+re+")$",this.negate&&(re="^(?!"+re+").*$");try{this.regexp=new RegExp(re,flags)}catch{this.regexp=!1}return this.regexp}match(f,partial=this.partial){if(this.debug("match",f,this.pattern),this.comment)return!1;if(this.empty)return f==="";if(f==="/"&&partial)return!0;let options=this.options;path9.sep!=="/"&&(f=f.split(path9.sep).join("/")),f=f.split(slashSplit),this.debug(this.pattern,"split",f);let set=this.set;this.debug(this.pattern,"set",set);let filename;for(let i=f.length-1;i>=0&&(filename=f[i],!filename);i--);for(let i=0;i<set.length;i++){let pattern=set[i],file=f;if(options.matchBase&&pattern.length===1&&(file=[filename]),this.matchOne(file,pattern,partial))return options.flipNegate?!0:!this.negate}return options.flipNegate?!1:this.negate}static defaults(def){return minimatch3.defaults(def).Minimatch}};minimatch3.Minimatch=Minimatch}});var require_common=__commonJS({"../../node_modules/.pnpm/glob@8.0.3/node_modules/glob/common.js"(exports2){exports2.setopts=setopts;exports2.ownProp=ownProp;exports2.makeAbs=makeAbs;exports2.finish=finish;exports2.mark=mark;exports2.isIgnored=isIgnored;exports2.childrenIgnored=childrenIgnored;function ownProp(obj,field){return Object.prototype.hasOwnProperty.call(obj,field)}var fs12=require("fs"),path9=require("path"),minimatch3=require_minimatch2(),isAbsolute=require("path").isAbsolute,Minimatch=minimatch3.Minimatch;function alphasort(a,b){return a.localeCompare(b,"en")}function setupIgnores(self2,options){self2.ignore=options.ignore||[],Array.isArray(self2.ignore)||(self2.ignore=[self2.ignore]),self2.ignore.length&&(self2.ignore=self2.ignore.map(ignoreMap))}function ignoreMap(pattern){var gmatcher=null;if(pattern.slice(-3)==="/**"){var gpattern=pattern.replace(/(\/\*\*)+$/,"");gmatcher=new Minimatch(gpattern,{dot:!0})}return{matcher:new Minimatch(pattern,{dot:!0}),gmatcher}}function setopts(self2,pattern,options){if(options||(options={}),options.matchBase&&pattern.indexOf("/")===-1){if(options.noglobstar)throw new Error("base matching requires globstar");pattern="**/"+pattern}self2.silent=!!options.silent,self2.pattern=pattern,self2.strict=options.strict!==!1,self2.realpath=!!options.realpath,self2.realpathCache=options.realpathCache||Object.create(null),self2.follow=!!options.follow,self2.dot=!!options.dot,self2.mark=!!options.mark,self2.nodir=!!options.nodir,self2.nodir&&(self2.mark=!0),self2.sync=!!options.sync,self2.nounique=!!options.nounique,self2.nonull=!!options.nonull,self2.nosort=!!options.nosort,self2.nocase=!!options.nocase,self2.stat=!!options.stat,self2.noprocess=!!options.noprocess,self2.absolute=!!options.absolute,self2.fs=options.fs||fs12,self2.maxLength=options.maxLength||1/0,self2.cache=options.cache||Object.create(null),self2.statCache=options.statCache||Object.create(null),self2.symlinks=options.symlinks||Object.create(null),setupIgnores(self2,options),self2.changedCwd=!1;var cwd=process.cwd();ownProp(options,"cwd")?(self2.cwd=path9.resolve(options.cwd),self2.changedCwd=self2.cwd!==cwd):self2.cwd=path9.resolve(cwd),self2.root=options.root||path9.resolve(self2.cwd,"/"),self2.root=path9.resolve(self2.root),self2.cwdAbs=isAbsolute(self2.cwd)?self2.cwd:makeAbs(self2,self2.cwd),self2.nomount=!!options.nomount,process.platform==="win32"&&(self2.root=self2.root.replace(/\\/g,"/"),self2.cwd=self2.cwd.replace(/\\/g,"/"),self2.cwdAbs=self2.cwdAbs.replace(/\\/g,"/")),options.nonegate=!0,options.nocomment=!0,options.allowWindowsEscape=!0,self2.minimatch=new Minimatch(pattern,options),self2.options=self2.minimatch.options}function finish(self2){for(var nou=self2.nounique,all=nou?[]:Object.create(null),i=0,l=self2.matches.length;i<l;i++){var matches=self2.matches[i];if(!matches||Object.keys(matches).length===0){if(self2.nonull){var literal=self2.minimatch.globSet[i];nou?all.push(literal):all[literal]=!0}}else{var m=Object.keys(matches);nou?all.push.apply(all,m):m.forEach(function(m2){all[m2]=!0})}}if(nou||(all=Object.keys(all)),self2.nosort||(all=all.sort(alphasort)),self2.mark){for(var i=0;i<all.length;i++)all[i]=self2._mark(all[i]);self2.nodir&&(all=all.filter(function(e){var notDir=!/\/$/.test(e),c=self2.cache[e]||self2.cache[makeAbs(self2,e)];return notDir&&c&&(notDir=c!=="DIR"&&!Array.isArray(c)),notDir}))}self2.ignore.length&&(all=all.filter(function(m2){return!isIgnored(self2,m2)})),self2.found=all}function mark(self2,p){var abs=makeAbs(self2,p),c=self2.cache[abs],m=p;if(c){var isDir=c==="DIR"||Array.isArray(c),slash=p.slice(-1)==="/";if(isDir&&!slash?m+="/":!isDir&&slash&&(m=m.slice(0,-1)),m!==p){var mabs=makeAbs(self2,m);self2.statCache[mabs]=self2.statCache[abs],self2.cache[mabs]=self2.cache[abs]}}return m}function makeAbs(self2,f){var abs=f;return f.charAt(0)==="/"?abs=path9.join(self2.root,f):isAbsolute(f)||f===""?abs=f:self2.changedCwd?abs=path9.resolve(self2.cwd,f):abs=path9.resolve(f),process.platform==="win32"&&(abs=abs.replace(/\\/g,"/")),abs}function isIgnored(self2,path10){return self2.ignore.length?self2.ignore.some(function(item){return item.matcher.match(path10)||!!(item.gmatcher&&item.gmatcher.match(path10))}):!1}function childrenIgnored(self2,path10){return self2.ignore.length?self2.ignore.some(function(item){return!!(item.gmatcher&&item.gmatcher.match(path10))}):!1}}});var require_sync=__commonJS({"../../node_modules/.pnpm/glob@8.0.3/node_modules/glob/sync.js"(exports2,module2){module2.exports=globSync;globSync.GlobSync=GlobSync;var rp=require_fs2(),minimatch3=require_minimatch2(),Minimatch=minimatch3.Minimatch,Glob=require_glob().Glob,util=require("util"),path9=require("path"),assert9=require("assert"),isAbsolute=require("path").isAbsolute,common=require_common(),setopts=common.setopts,ownProp=common.ownProp,childrenIgnored=common.childrenIgnored,isIgnored=common.isIgnored;function globSync(pattern,options){if(typeof options=="function"||arguments.length===3)throw new TypeError(`callback provided to sync glob
@@ -116,7 +116,7 @@ ${entrypointsForMessage}`)};function pluralize(word,count){return count===1?word
116
116
  `,A2.e()-1)}`),{idx:A2.e()});let w=new Set,o=new Set,J=new Set;for(;A2.rre();){let Q3=B2(g2.slice(A2.res(),A2.ree()));Q3&&o.add(Q3)}for(;A2.ru();)J.add(B2(g2.slice(A2.us(),A2.ue())));for(;A2.re();){let Q3=B2(g2.slice(A2.es(),A2.ee()));Q3===void 0||J.has(Q3)||w.add(Q3)}return{exports:[...w],reexports:[...o]}}function B2(A3){if(A3[0]!=='"'&&A3[0]!=="'")return A3;try{let Q3=(0,eval)(A3);for(let A4=0;A4<Q3.length;A4++){let B3=64512&Q3.charCodeAt(A4);if(!(B3<55296)&&(B3!==55296||(64512&Q3.charCodeAt(++A4))!=56320))return}return Q3}catch{}}function E2(A3,Q3){let B3=A3.length,E3=0;for(;E3<B3;){let B4=A3.charCodeAt(E3);Q3[E3++]=(255&B4)<<8|B4>>>8}}function C2(A3,Q3){let B3=A3.length,E3=0;for(;E3<B3;)Q3[E3]=A3.charCodeAt(E3++)}function init2(){return g||(g=(async()=>{let Q3=await WebAssembly.compile((B3="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EBENACACLwEAQS5HDQELQQAgAkESajYCvKABAkAgAi8BEiIDQdMARw0AIAIvARRB9ABHDQEgAi8BFkHhAEcNASACLwEYQfIARw0BQQAgAkEaajYCvKABIAIvARohAwsgA0H//wNxQShHDQBBACgCsKABQQAoAoxANgIAQQBBATsBhkBBAEEAKAK8oAEiAkECajYCvKABIAIvAQJB8gBHDQBBAhAQGgtBAEEAKAK8oAE2AoxADAELAkAgAkEEakHtAEHwAEHvAEHyAEH0ABATRQ0AIAAQEUUNABAkQQAoArygASEAC0EAIAA2AoxAC0EAKALAoAEhA0EAKAK8oAEhAgwACwsgAgv3AQEEf0EAIQECQEEAKAK8oAEiAkECakHlAEHxAEH1AEHpAEHyAEHlABAmRQ0AQQAhAUEAIAJBDmo2ArygAQJAECdBKEcNAEEAQQAoArygAUECajYCvKABECchA0EAKAK8oAEhBAJAIANBJ0YNACADQSJHDQELIAMQHEEAQQAoArygAUECaiIDNgK8oAEQJ0EpRw0AAkAgAEF/aiIBQQFLDQACQAJAIAEOAgEAAQsgBCADQQAoAqAfEQAAQQEPCyAEIANBACgCoB8RAABBAQ8LQQAoArSgASAENgIAQQAoArSgASADNgIEQQEPC0EAIAI2ArygAQsgAQsdAAJAQQAoApgfIABHDQBBAQ8LIABBfmovAQAQJQv+AgEEf0EAKAKYHyEBAkADQCAAQX5qIQIgAC8BACIDQSBHDQEgACABSyEEIAIhACAEDQALCwJAIANBPUcNAAJAA0AgAkF+aiEAIAIvAQBBIEcNASACIAFLIQQgACECIAQNAAsLIABBAmohAiAAQQRqIQNBACEEAkADQCACECghACACIAFNDQEgAEUNASAAQdwARg0CIAAQKUUNASACQX5BfCAAQYCABEkbaiECIAAQKiEEDAALCyAEQQFxRQ0AIAIvAQBBIEcNAEEAKAK0oAEiBEEAKAKwH0YNACAEIAM2AgwgBCACQQJqNgIIIAJBfmohAEEgIQICQANAIABBAmogAU0NASACQf//A3FBIEcNASAALwEAIQIgAEF+aiEADAALCyACQf//A3FBjn9qIgJBAksNAAJAAkACQCACDgMAAwEACyAAQfYAQeEAECsNAQwCCyAAQewAQeUAECsNACAAQeMAQe8AQe4AQfMAECxFDQELQQAgBEEQajYCtKABCws/AQF/QQAhBgJAIAAvAQAgAUcNACAALwECIAJHDQAgAC8BBCADRw0AIAAvAQYgBEcNACAALwEIIAVGIQYLIAYLpCYBCH9BAEEAKAK8oAEiAUEMajYCvKABIAFBCmohAQJAECdBLkcNAEEAQQAoArygAUECajYCvKABAkACQBAnIgJB5ABHDQBBACgCvKABIgBBAmpB5QBB5gBB6QBB7gBB5QBB0ABB8gBB7wBB8ABB5QBB8gBB9ABB+QAQL0UNAkEAIABBHGo2ArygASAAQRpqIQEQJ0EoRw0CQQBBACgCvKABQQJqNgK8oAEQJxAwRQ0CECdBLEcNAkEAQQAoArygAUECajYCvKABAkAQJyIAQSdGDQAgAEEiRw0DC0EAKAK8oAEhAiAAEBxBAEEAKAK8oAFBAmoiADYCvKABECdBLEcNAUEAQQAoArygAUECajYCvKABECdB+wBHDQFBAEEAKAK8oAFBAmo2ArygAQJAECciA0HlAEcNAEEAKAK8oAEiA0ECakHuAEH1AEHtAEHlAEHyAEHhAEHiAEHsAEHlABAxRQ0CQQAgA0EUajYCvKABECdBOkcNAkEAQQAoArygAUECajYCvKABECdB9ABHDQJBACgCvKABIgMvAQJB8gBHDQIgAy8BBEH1AEcNAiADLwEGQeUARw0CQQAgA0EIajYCvKABECdBLEcNAkEAQQAoArygAUECajYCvKABECchAwsCQCADQecARg0AIANB9gBHDQJBACgCvKABIgMvAQJB4QBHDQIgAy8BBEHsAEcNAiADLwEGQfUARw0CIAMvAQhB5QBHDQJBACADQQpqNgK8oAEQJ0E6Rw0CIAIgAEEAKAKcHxEAAEEAIAE2ArygAQ8LQQAoArygASIDLwECQeUARw0BIAMvAQRB9ABHDQFBACADQQZqNgK8oAECQBAnIgNBOkcNAEEAQQAoArygAUECajYCvKABECdB5gBHDQJBACgCvKABIgNBAmpB9QBB7gBB4wBB9ABB6QBB7wBB7gAQI0UNAkEAIANBEGoiAzYCvKABAkAQJyIEQShGDQAgA0EAKAK8oAFGDQMgBBAtRQ0DCxAnIQMLIANBKEcNAUEAQQAoArygAUECajYCvKABECdBKUcNAUEAQQAoArygAUECajYCvKABECdB+wBHDQFBAEEAKAK8oAFBAmo2ArygARAnQfIARw0BQQAoArygASIDQQJqQeUAQfQAQfUAQfIAQe4AEBNFDQFBACADQQxqNgK8oAEQJxAtRQ0BAkACQAJAECciA0HbAEYNACADQS5HDQJBAEEAKAK8oAFBAmo2ArygARAnEC0NAQwEC0EAQQAoArygAUECajYCvKABAkAQJyIDQSdGDQAgA0EiRw0ECyADEBxBAEEAKAK8oAFBAmo2ArygARAnQd0ARw0DQQBBACgCvKABQQJqNgK8oAELECchAwsCQCADQTtHDQBBAEEAKAK8oAFBAmo2ArygARAnIQMLIANB/QBHDQFBAEEAKAK8oAFBAmo2ArygAQJAECciA0EsRw0AQQBBACgCvKABQQJqNgK8oAEQJyEDCyADQf0ARw0BQQBBACgCvKABQQJqNgK8oAEQJ0EpRw0BIAIgAEEAKAKcHxEAAA8LIAJB6wBHDQEgAEUNAUEAKAK8oAEiAC8BAkHlAEcNASAALwEEQfkARw0BIAAvAQZB8wBHDQEgAEEGaiEBQQAgAEEIajYCvKABECdBKEcNAUEAQQAoArygAUECajYCvKABECchAEEAKAK8oAEhAiAAEC1FDQFBACgCvKABIQAQJ0EpRw0BQQBBACgCvKABIgFBAmo2ArygARAnQS5HDQFBAEEAKAK8oAFBAmo2ArygARAnQeYARw0BQQAoArygASIDQQJqQe8AQfIAQcUAQeEAQeMAQegAECZFDQFBACADQQ5qNgK8oAEQJyEDQQAoArygASIEQX5qIQEgA0EoRw0BQQAgBEECajYCvKABECdB5gBHDQFBACgCvKABIgNBAmpB9QBB7gBB4wBB9ABB6QBB7wBB7gAQI0UNAUEAIANBEGo2ArygARAnQShHDQFBAEEAKAK8oAFBAmo2ArygARAnIQNBACgCvKABIQQgAxAtRQ0BQQAoArygASEDECdBKUcNAUEAQQAoArygAUECajYCvKABECdB+wBHDQFBAEEAKAK8oAFBAmo2ArygARAnQekARw0BQQAoArygASIFLwECQeYARw0BQQAgBUEEajYCvKABECdBKEcNAUEAQQAoArygAUECajYCvKABECcaQQAoArygASIFIAQgAyAEayIDEEENASAAIAJrIgZBAXUhB0EAIAUgA0EBdSIIQQF0ajYCvKAB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ASADLwEGQQpGGyEBDAALC0EAIAE2ArygARAdDwtBACABNgK8oAELOAEBf0EAQQE6APAfQQAoArygASEAQQBBACgCwKABQQJqNgK8oAFBACAAQQAoApgfa0EBdTYC7B8LzgEBBX9BACgCvKABIQBBACgCwKABIQEDQCAAIgJBAmohAAJAAkAgAiABTw0AIAAvAQAiA0Gkf2oiBEEETQ0BIANBJEcNAiACLwEEQfsARw0CQQBBAC8BhEAiAEEBajsBhEBBACgCoGAgAEEBdGpBAC8BiEA7AQBBACACQQRqNgK8oAFBAEEALwGGQEEBaiIAOwGIQEEAIAA7AYZADwtBACAANgK8oAEQHQ8LAkACQCAEDgUBAgICAAELQQAgADYCvKABDwsgAkEEaiEADAALC7YCAQJ/QQBBACgCvKABIgFBDmo2ArygAQJAAkACQBAnIgJB2wBGDQAgAkE9Rg0BIAJBLkcNAkEAQQAoArygAUECajYCvKABECchAkEAKAK8oAEhACACEC1FDQJBACgCvKABIQIQJ0E9Rw0CIAAgAkEAKAKcHxEAAA8LQQBBACgCvKABQQJqNgK8oAECQBAnIgJBJ0YNACACQSJHDQILQQAoArygASEAIAIQHEEAQQAoArygAUECaiICNgK8oAEQJ0HdAEcNAUEAQQAoArygAUECajYCvKABECdBPUcNASAAIAJBACgCnB8RAAAMAQsgAEUNAEEAKAKoHxEBAEEAQQAoArygAUECajYCvKABAkAQJyICQfIARg0AIAJB+wBHDQEQLg8LQQEQEBoLQQAgAUEMajYCvKABCzYBAn9BAEEAKAK8oAFBDGoiADYCvKABECchAQJAAkBBACgCvKABIABHDQAgARA/RQ0BCxAdCwtsAQF/QQBBACgCvKABIgBBDGo2ArygAQJAECdBLkcNAEEAQQAoArygAUECajYCvKABECdB5QBHDQBBACgCvKABQQJqQfgAQfAAQe8AQfIAQfQAQfMAECZFDQBBARAfDwtBACAAQQpqNgK8oAEL6QEBAX9BACEXAkAgAC8BACABRw0AIAAvAQIgAkcNACAALwEEIANHDQAgAC8BBiAERw0AIAAvAQggBUcNACAALwEKIAZHDQAgAC8BDCAHRw0AIAAvAQ4gCEcNACAALwEQIAlHDQAgAC8BEiAKRw0AIAAvARQgC0cN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ACAALwEUIAtHDQAgAC8BFiAMRw0AIAAvARggDUYhDgsgDguoAQECf0EAIQFBACgCvKABIQICQAJAIABB7QBHDQAgAkECakHvAEHkAEH1AEHsAEHlABATRQ0BQQAgAkEMajYCvKABAkAQJ0EuRg0AQQAhAQwCC0EAQQAoArygAUECajYCvKABECchAAsgAEHlAEcNAEEAKAK8oAEiAEEOaiACIABBAmpB+ABB8ABB7wBB8gBB9ABB8wAQJiIBGyECC0EAIAI2ArygASABC2cBAX9BACEKAkAgAC8BACABRw0AIAAvAQIgAkcNACAALwEEIANHDQAgAC8BBiAERw0AIAAvAQggBUcNACAALwEKIAZHDQAgAC8BDCAHRw0AIAAvAQ4gCEcNACAALwEQIAlGIQoLIAoLcQEBf0EAIQsCQCAALwEAIAFHDQAgAC8BAiACRw0AIAAvAQQgA0cNACAALwEGIARHDQAgAC8BCCAFRw0AIAAvAQogBkcNACAALwEMIAdHDQAgAC8BDiAIRw0AIAAvARAgCUcNACAALwESIApGIQsLIAsLgwQBAn9BACECAkAQJ0HPAEcNAEEAIQJBACgCvKABIgNBAmpB4gBB6gBB5QBB4wBB9AAQE0UNAEEAIQJBACADQQxqNgK8oAEQJ0EuRw0AQQBBACgCvKABQQJqNgK8oAECQBAnIgNB8ABHDQBBACECQQAoArygASIDQQJqQfIAQe8AQfQAQe8AQfQAQfkAQfAAQeUAED1FDQFBACECQQAgA0ESajYCvKABECdBLkcNAUEAQQAoArygAUECajYCvKABECchAwtBACECIANB6ABHDQBBACECQQAoArygASIDQQJqQeEAQfMAQc8AQfcAQe4AQdAAQfIAQe8AQfAAQeUAQfIAQfQAQfkAEC9FDQBBACECQQAgA0EcajYCvKABECdBLkcNAEEAIQJBAEEAKAK8oAFBAmo2ArygARAnQeMARw0AQQAhAkEAKAK8oAEiAy8BAkHhAEcNACADLwEEQewARw0AIAMvAQZB7ABHDQBBACECQQAgA0EIajYCvKABECdBKEcNAEEAIQJBAEEAKAK8oAFBAmo2ArygARAnEC1FDQAQJ0EsRw0AQQAhAkEAQQAoArygAUECajYCvKABECcaQQAoArygASIDIAAgAUEBdCIBEEENAEEAIQJBACADIAFqNgK8oAEQJ0EpRw0AQQBBACgCvKABQQJqNgK8oAFBASECCyACC0kBA39BACEGAkAgAEF4aiIHQQAoApgfIghJDQAgByABIAIgAyAEIAUQE0UNAAJAIAcgCEcNAEEBDwsgAEF2ai8BABAlIQYLIAYLWQEDf0EAIQQCQCAAQXxqIgVBACgCmB8iBkkNACAFLwEAIAFHDQAgAEF+ai8BACACRw0AIAAvAQAgA0cNAAJAIAUgBkcNAEEBDwsgAEF6ai8BABAlIQQLIAQLSwEDf0EAIQcCQCAAQXZqIghBACgCmB8iCUkNACAIIAEgAiADIAQgBSAGECZFDQACQCAIIAlHDQBBAQ8LIABBdGovAQAQJSEHCyAHCz0BAn9BACECAkBBACgCmB8iAyAASw0AIAAvAQAgAUcNAAJAIAMgAEcNAEEBDwsgAEF+ai8BABAlIQILIAILTQEDf0EAIQgCQCAAQXRqIglBACgCmB8iCkkNACAJIAEgAiADIAQgBSAGIAcQI0UNAAJAIAkgCkcNAEEBDwsgAEFyai8BABAlIQgLIAgL+RIBA38CQCAAEDwNACAAQfS/f2pBAkkNACAAQbcBRg0AIABBgHpqQfAASQ0AIABB/XZqQQVJDQAgAEGHB0YNACAAQe90akEtSQ0AAkAgAEHBdGoiAUEISw0AQQEgAXRB7QJxDQELIABB8HNqQQtJDQAgAEG1c2pBH0kNAAJAIABBqnJqIgFBEksNAEEBIAF0Qf/8GXENAQsgAEHwDEYNACAAQZZyakEESQ0AIABBwHBqQQpJDQAgAEHacGpBC0kNACAAQdBxakEbSQ0AIABBkQ5GDQAgAEGQcmpBCkkNACAAQcJtakESSQ0AIABBxm1qQQNJDQAgAEGdbmpBIUkNACAAQa1uakEPSQ0AIABBp29qQQNJDQAgAEHXb2pBBUkNACAAQdtvakEDSQ0AIABB5W9qQQlJDQAgAEHqb2pBBEkNACAAQf0PRg0AIABBlXBqQQlJDQACQCAAQa9taiIBQRJLDQBBASABdEH/gBhxDQELIABBmm1qQQpJDQACQAJAIABBxGxqIgFBJ00NACAAQf9sakEDSQ0CDAELIAEOKAEAAQEBAQEBAQAAAQEAAAEBAQAAAAAAAAAAAAEAAAAAAAAAAAAAAQEBCyAAQf4TRg0AIABBmmxqQQpJDQACQCAAQcRraiIBQRVLDQBBASABdEH9sI4BcQ0BCyAAQf9rakEDSQ0AIABB9RRGDQAgAEGaa2pBDEkNAAJAAkAgAEHEamoiAUEnTQ0AIABB/2pqQQNJDQIMAQsgAQ4oAQABAQEBAQEBAQABAQEAAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAABAQELIABBmmpqQQpJDQAgAEGGampBBkkNAAJAAkAgAEHEaWoiAUEnTQ0AIABB/2lqQQNJDQIMAQsgAQ4oAQABAQEBAQEBAAABAQAAAQEBAAAAAAAAAAABAQAAAAAAAAAAAAABAQELIABBmmlqQQpJDQACQCAAQcJoaiIBQRlLDQBBASABdEGf7oMQcQ0BCyAAQYIXRg0AIABBmmhqQQpJDQACQAJAIABBwmdqIgFBJU0NACAAQYBoakEFSQ0CDAELIAEOJgEBAQEBAQEAAQEBAAEBAQEAAAAAAAAAAQEAAAAAAAAAAAAAAAEBAQsgAEGaZ2pBCkkNAAJAAkAgAEHEZmoiAUEnTQ0AIABB/2ZqQQNJDQIMAQsgAQ4oAQABAQEBAQEBAAEBAQABAQEBAAAAAAAAAAEBAAAAAAAAAAAAAAABAQELIABBmmZqQQpJDQAgAEF8cSICQYAaRg0AAkAgAEHFZWoiAUEoSw0AIAEOKQEBAAEBAQEBAQEAAQEBAAEBAQEAAAAAAAAAAAABAAAAAAAAAAAAAAEBAQsgAEGaZWpBCkkNAAJAIABBtmRqIgFBDEsNAEEBIAF0QeEvcQ0BCyAAQf5kakECSQ0AIABBeHFB2BtGDQAgAEGaZGpBCkkNAAJAIABBz2NqIgFBHUsNAEEBIAF0QfmHgP4DcQ0BCyAAQY5kakECSQ0AIABBsR1GDQAgAEGwY2pBCkkNAAJAIABBzGJqIgFBCEsNACABQQZHDQELIABBuGJqQQZJDQAgAEHgYWpBCkkNACAAQQFyIgFBmR5GDQAgAEGwYmpBCkkNAAJAIABBy2FqIgNBCksNAEEBIAN0QZUMcQ0BCyAAQfNgakELSQ0AIAFBhx9GDQAgAEGPYWpBFEkNACAAQe5RakEDSQ0AIABBl1lqQQlJDQAgAEGjWWpBA0kNACAAQfFeakEPSQ0AIABB/l5qQQxJDQAgAEGPX2pBBEkNACAAQZlfakEHSQ0AIABBnl9qQQNJDQAgAEGiX2pBA0kNACAAQapfakEESQ0AIABBwF9qQQpJDQAgAEHVX2pBFEkNACAAQcYfRg0AIABB52BqQSRJDQAgAEHOUWpBA0kNACAAQa5RakECSQ0AIABBjlFqQQJJDQAgAEH1T2pBA0kNACAAQaBQakEKSQ0AIABB3S9GDQAgAEHMUGpBIEkNACAAQbBGakEDSQ0AIABBsEdqQQpJDQAgAEHAR2pBCkkNACAAQdxHakEUSQ0AIABBmkhqQQ5JDQAgAEHQSGpBCkkNACAAQd9IakENSQ0AIABBgElqQQNJDQAgAEGVSWpBCUkNACAAQbBJakEKSQ0AIABBzElqQRFJDQAgAEGASmpBBUkNACAAQdBKakEOSQ0AIABB8EpqQQpJDQAgAEGBS2pBC0kNACAAQaBLakEdSQ0AIABBq0tqQQpJDQAgAEHpS2pBBUkNACAAQbBMakELSQ0AIABBuk1qQQpJDQAgAEHQTWpBDEkNACAAQeBNakEMSQ0AIABBqTFGDQAgAEHwT2pBCkkNACAAQcBEakE6SQ0AIABBiUZqQQNJDQAgAEGORmpBA0kNACAAQe05Rg0AIABBrEZqQRVJDQAgAEGFRGpBBUkNAAJAIABBwb9/aiIBQRVLDQBBASABdEGDgIABcQ0BCyAAQZu+f2pBDEkNACAAQeHBAEYNACAAQbC+f2pBDUkNACAAQZGmf2pBA0kNACAAQf/aAEYNACAAQWBxQeDbAEYNACAAQdaff2pBBkkNACAAQeeef2pBAkkNACAAQYyzfWpBCkkNACAAQe/MAkYNACAAQeCzfWpBCkkNAAJAIABB9a99aiIBQRxLDQBBASABdEGBgID4AXENAQsgAEHisn1qQQJJDQAgAEGQsn1qQQJJDQACQAJAIABB/q99aiIBQQRNDQAgAEGAr31qQQJJDQIMAQsgAQ4FAQAAAAEBCyAAQc2sfWpBDkkNACACQYDTAkYNACAAQbmtfWpBDUkNACAAQdqtfWpBCEkNACAAQYGufWpBC0kNACAAQaCufWpBEkkNACAAQcyufWpBEkkNACAAQbCufWpBCkkNACAAQderfWpBDkkNACAAQeXTAkYNACAAQV9xQbCsfWpBCkkNAAJAIABBvat9aiIBQQpLDQBBASABdEGBDHENAQsgAEGwq31qQQpJDQACQCAAQZ2ofWoiAUEKSw0AIAFBCEcNAQsCQCAAQdCqfWoiAUERSw0AQQEgAXRBnYMLcQ0BCwJAIABBlap9aiIBQQtLDQBBASABdEGfGHENAQsgAEGFq31qQQNJDQAgAEFwcSIBQYD8A0YNACAAQZ72A0YNACAAQZCofWpBCkkNACAAQb/+A0YgAEHwgXxqQQpJIABBs4N8akEDSSAAQc2DfGpBAkkgAUGg/ANGcnJycg8LQQELXAEEf0GAgAQhAUGQCCECQX4hAwJAA0BBACEEIANBAmoiA0HnA0sNASACKAIAIAFqIgEgAEsNASACQQRqIQQgAkEIaiECIAQoAgAgAWoiASAASQ0AC0EBIQQLIAQLXAEEf0GAgAQhAUGwFyECQX4hAwJAA0BBACEEIANBAmoiA0H5AUsNASACKAIAIAFqIgEgAEsNASACQQRqIQQgAkEIaiECIAQoAgAgAWoiASAASQ0AC0EBIQQLIAQL7R8BBn9BASEBAkACQAJAIABB1n5qIgJBEEsNAEEBIAJ0QYGQBHENAQsgAEG6empBDEkNACAAQYh+akHKA0kNACAAQcB+akEXSQ0AIABBqH5qQR9JDQACQCAAQZB5aiICQRxLDQBBASACdEHf+YK6AXENAQsCQCAAQaB6aiICQQ5LDQBBASACdEGfoAFxDQELIABB9nZqQaYBSQ0AIABBiXhqQYsBSQ0AIABB8nhqQRRJDQAgAEHdeGpB0wBJDQAgAEGRdGpBBEkNACAAQbB0akEbSQ0AIABBoHVqQSlJDQAgAEHZCkYNACAAQc91akEmSQ0AAkACQAJAIABBj3NqQeMASQ0AIABBAXIiAkHvDEYNACAAQeBzakErSQ0AAkAgAEGrcmoiAUE8Tw0AQoGAjLCAnIGACCABrYhCAYNQRQ0BCyAAQe5xakEeSQ0AIABBtnBqQSFJDQAgAEGxD0YNACAAQbNxakHZAEkNAAJAIABBjHBqIgFBBksNAEEBIAF0QcMAcQ0BCyAAQYBwakEWSQ0AAkACQCAAQdxvaiIDQQRNDQAgAEGaEEYNAgwBC0EBIQEgAw4FBAAAAAQECyAAQfxtakE2SQ0AIABBym5qQQhJDQAgAEHgbmpBFUkNACAAQcBvakEZSQ0AIABBoG9qQQtJDQAgAEG9EkYNACAAQdASRg0AIABBqG1qQQpJDQAgAEGPbWpBEEkNAAJAIABB+2xqIgNBDE8NAEEBIQFB/xkgA0H//wNxdkEBcQ0ECyAAQe1sakEWSQ0AAkAgAEGEbGoiAUEUSw0AQQEgAXRBgfzhAHENAQsgAEHWbGpBB0kNAAJAIABBzmxqIgFBHEsNAEEBIAF0QfGRgIABcQ0BCwJAIABBpGxqIgFBFUsNAEEBIAF0QbuAwAFxDQELIABB7WtqQRZJDQACQCAAQdZraiIBQTVPDQBC/7aDgICA4AsgAa2IQgGDUEUNAQsgAEHtampBFkkNACAAQfFqakEDSQ0AIABBjmtqQQNJDQAgAEH7ampBCUkNAAJAAkACQCAAQdZqaiIDQSZNDQAgAEGHamoiAUEXSw0BQQEgAXRBgeC/BnFFDQEMAwtBASEBIAMOJwUFBQUFBQUBBQUBBQUFBQUBAQEFAQEBAQEBAQEBAQEBAQEBAQEBBQULIABBoGpqQQJJDQELIABB7WlqQRZJDQACQAJAAkAgAEGPaWoiA0EzTQ0AIABB1mlqIgFBE0sNAUEBIAF0Qf/2I3FFDQEMAwtBASEBIAMONAUBAQEBAQEBAQEBAQEBAQEBAQUBBQUFBQUFAQEBBQUFAQUFBQUBAQEFBQEFAQUFAQEBBQUFCyAAQaRpaiIBQQVLDQAgAUECRw0BCyAAQdhoakEDSQ0AIABB7mdqQRdJDQAgAEHyZ2pBA0kNACAAQftnakEISQ0AIABB0BdGDQAgAEHSaGpBDEkNACAAQb0YRg0AIABB1mdqQRBJDQACQCAAQahnaiIBQSlPDQBCh4aAgIAgIAGtiEIBg1BFDQELIABB1mZqQQpJDQAgAEHuZmpBF0kNACAAQftmakEISQ0AIABB8mZqQQNJDQACQCAAQftlaiIBQQtLDQAgAUEIRw0BCwJAIABBy2ZqIgFBCEsNAEEBIAF0QZ8CcQ0BCwJAIABBomZqIgFBFEsNAEEBIAF0QY2A4ABxDQELIABB7mVqQSlJDQAgAEG9GkYNACAAQc4aRg0AIABBzWRqQQlJDQAgAEHmZGpBGEkNACAAQftkakESSQ0AIABBhmVqQQZJDQAgAEGsZWpBA0kNACAAQaFlakEDSQ0AAkAgAEHDZGoiA0EKTw0AQQEhAUH5ByADQf//A3F2QQFxDQQLIAJBsxxGDQAgAEH/Y2pBMEkNACAAQcBjakEHSQ0AAkAgAEH/YmoiAUEMSw0AQQEgAXRByyVxDQELIABBfHEiA0GUHUYNACAAQediakEHSQ0AAkAgAEHfYmoiAUEmTw0AQtfsm4D5BSABrYhCAYNQRQ0BCyAAQYBgakErSQ0AIABB+GBqQQVJDQAgAEG3YWpBJEkNACAAQXhxIgRBwB5GDQAgAEGAHkYNACADQdwdRg0AAkAgAEHBX2oiAUEoTw0AQoGA+MPHGCABrYhCAYNQRQ0BCyAAQZJfakEDSQ0AIABB4F5qQSZJDQAgAEGOIUYNACAAQYtfakENSQ0AIABBxyFGDQAgAEHNIUYNACAAQbZbakEESQ0AIABBsF5qQStJDQAgAEGEXmpBzQJJDQACQCAAQbBbaiIFQQlPDQBBASEBQf8CIAVB//8DcXZBAXENBAsgAEHOWmpBBEkNACAAQfBaakEhSQ0AIABB9lpqQQRJDQAgAEGmW2pBBEkNACAAQaBbakEpSQ0AAkAgAEHIWmoiBUEJTw0AQQEhAUH/AiAFQf//A3F2QQFxDQQLIABBgFFqQTRJDQAgAEGSUWpBA0kNACAAQaBRakENSQ0AIABBwFFqQRJJDQAgAEHgUWpBEkkNACAAQfJRakEESQ0AIABBgFJqQQ1JDQAgAEGSUmpBC0kNACAAQeBSakHLAEkNACAAQf9SakEaSQ0AIABBkVNqQRFJDQAgAEH/V2pB7ARJDQAgAEGIWGpBBkkNACAAQeBYakHWAEkNACAAQXBxIgVBgCdGDQAgAEHoWWpBwwBJDQAgAEHuWWpBBEkNACAAQahaakE5SQ0AIABBvlpqQQRJDQAgAEG4WmpBD0kNACAAQdcvRg0AIABB3C9GDQAgAEHgT2pB2QBJDQAgAEGATGpBF0kNACAAQdBMakEaSQ0AIABBgE1qQSxJDQAgAEGQTWpBBUkNACAAQbBNakEeSQ0AIABBgE5qQR9JDQAgAEHQTmpBxgBJDQAgAEGqMUYNBCAAQYBPakEpSQ0EIABBu0lqQQdJDQQgAEH7SWpBL0kNBCAAQac1Rg0EIABB4EtqQTVJDQQgAEGXRmpBBEkNBCAAQcNGakEDSQ0EIABB8EZqQStJDQQgAEGAR2pBCUkNBCAAQaZHakEkSQ0EIABBs0dqQQNJDQQgAEGASGpBJEkNBCAAQcZIakEsSQ0EIAJBrzdGDQQgAEH9SGpBHkkNBCAAQZJGaiIGQQlJDQEMAgtBASEBDAILQQEhAUGPAyAGQf//A3F2QQFxDQELIARB0D5GDQEgAEG4QWpBBkkNASAAQeBBakEmSQ0BIABB6EFqQQZJDQEgAEGARmpBwAFJDQEgAEGARGpBlgJJDQECQCAAQadBaiIBQQRLDQBBASABdEEVcQ0CCyAAQaFBakEfSQ0BIABBgEFqQTVJDQECQCAAQcpAaiIEQQlPDQBBASEBQf8CIARB//8DcXZBAXENAQsgAEGOQGpBA0kNASAAQaBAakENSQ0BIABBqkBqQQZJDQEgA0HQP0YNASAAQb5AakEDSQ0BIABBukBqQQdJDQEgAEGKQGpBB0kNASAAQfHAAEYNASAAQf/AAEYNASAAQfC+f2pBDUkNASAAQYLCAEYNASAAQYfCAEYNASAAQZXCAEYNASAAQfa9f2pBCkkNAQJAIABB6L1/aiIEQRFPDQBBASEBQb+gBSAEdkEBcQ0BCyAAQda9f2pBEEkNASADQbzCAEYNAQJAIABBu71/aiIEQQpPDQBBASEBQZ8EIARB//8DcXZBAXENAQsgAEGgp39qQYUBSQ0BIABB0Kd/akEvSQ0BIABBoL1/akEpSQ0BIABBgKh/akEvSQ0BAkAgAEGVpn9qIgRBCU8NAEEBIQFBjwMgBEH//wNxdkEBcQ0BCyAAQYCmf2pBJkkNASAAQafaAEYNASAAQa3aAEYNASAAQYC2fWpBjQJJDQEgAEGwtn1qQS5JDQEgAEGAwH1qQY0JSQ0BIABBgOR+akHwowFJDQEgAEGAmH9qQbYzSQ0BIAVB8OMARg0BIABB4Jx/akEbSQ0BIABBz51/akHeAEkNASAAQfudf2pBK0kNASADQfzhAEYNASAAQd+ef2pB2gBJDQEgAEHlnn9qQQVJDQEgAEG/n39qQdYASQ0BIABByJ9/akEFSQ0BIABBz59/akEFSQ0BIABB359/akEJSQ0BIABB+59/akEDSQ0BIABBqKR/akEHSQ0BIABBsKR/akEHSQ0BIABBuKR/akEHSQ0BIABBwKR/akEHSQ0BIABByKR/akEHSQ0BIABB0KR/akEHSQ0BIABB2KR/akEHSQ0BIABB4KR/akEHSQ0BIABBgKV/akEXSQ0BIABB79oARg0BIABB0KV/akE4SQ0BIABB/q59akEySQ0BIABBwK99akE0SQ0BIABB9K99akEXSQ0BIABB+a99akEESQ0BIABB/a99akEDSQ0BIABBibB9akELSQ0BIABB9bB9akEvSQ0BIABB3rF9akHnAEkNASAAQemxfWpBCUkNASAAQeCyfWpB0ABJDQEgAEGBs31qQR9JDQEgAEHAs31qQS9JDQEgAkGrzAJGDQEgBUGQzAJGDQECQCAAQY6ufWoiAkENTw0AQQEhAUG/NCACQf//A3F2QQFxDQELIABBoK19akEdSQ0BIABB9q19akEcSQ0BIABB0K19akEXSQ0BIABBvKt9akEISQ0BIABBwKt9akEDSQ0BIABBgKx9akEpSQ0BIABBhqx9akEFSQ0BIABBmqx9akEKSQ0BIABBoKx9akEFSQ0BIABBz9MCRg0BIABB/Kx9akEvSQ0BIABBgqt9akEySQ0BIABB+tQCRg0BIABBoKt9akEXSQ0BAkAgAEHPqn1qIgJBEk8NAEEBIQFBsb4KIAJ2QQFxDQELIABBgIp8akEHSQ0BIABBkIt8akHqAEkNASAAQYCOfGpB7gJJDQEgAEG10HxqQTFJDQEgAEHQ0HxqQRdJDQEgAEGAqH1qQaTXAEkNASAAQZCpfWpB8wBJDQEgAEGkqX1qQQpJDQEgAEHQqX1qQStJDQEgAEHYqX1qQQdJDQEgAEHgqX1qQQdJDQEgAEHvqX1qQQZJDQEgAEF3cUH/qX1qQQZJDQEgAEGOqn1qQQNJDQEgAEGlqn1qQQNJDQEgAEGgqn1qQQtJDQECQCAAQe2JfGoiAkELTw0AQQEhAUGfCCACQf//A3F2QQFxDQELIABB4Yl8akEKSQ0BIABB1ol8akENSQ0BAkAgAEHIiXxqIgJBDU8NAEEBIQFB3zYgAkH//wNxdkEBcQ0BCyAAQa6AfGpBBkkNASAAQbaAfGpBBkkNASAAQb6AfGpBBkkNASAAQZqBfGpB2QBJDQEgAEG/gXxqQRpJDQEgAEHfgXxqQRpJDQEgAEGKg3xqQYcBSQ0BIABBkIN8akEFSQ0BIABBkIR8akEMSQ0BIABB7oR8akE2SQ0BIABBsIV8akHAAEkNASAAQbqJfGpB7ABJDQFBASEBIABBrYh8akHrAkkNACAAQaaAfGpBA0kPCyABDwtBAQtdAQF/QQAhCQJAIAAvAQAgAUcNACAALwECIAJHDQAgAC8BBCADRw0AIAAvAQYgBEcNACAALwEIIAVHDQAgAC8BCiAGRw0AIAAvAQwgB0cNACAALwEOIAhGIQkLIAkLNQACQCAAQYD4A3FBgLADRw0AIABBCnRBgPg/cUEAKAK8oAEvAQJB/wdxckGAgARqIQALIAALaAECf0EBIQECQAJAIABBX2oiAkEFSw0AQQEgAnRBMXENAQsgAEH4/wNxQShGDQAgAEFGakH//wNxQQZJDQACQCAAQaV/aiICQQNLDQAgAkEBRw0BCyAAQYV/akH//wNxQQRJIQELIAELjQEBBX9BACgCvKABIQBBACgCwKABIQEDfyAAQQJqIQICQAJAIAAgAU8NACACLwEAIgNBpH9qIgRBAU0NASACIQAgA0F2aiIDQQNLDQIgAiEAIAMOBAACAgAAC0EAIAI2ArygARAdQQAPCwJAAkAgBA4CAQABC0EAIAI2ArygAUHdAA8LIABBBGohAAwACwtJAQN/QQAhAwJAIAJFDQACQANAIAAtAAAiBCABLQAAIgVHDQEgAUEBaiEBIABBAWohACACQX9qIgINAAwCCwsgBCAFayEDCyADCwvCFwIAQYAIC5gXAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAgAAABkAAAACAAAAEgAAAAIAAAABAAAAAgAAAA4AAAADAAAADQAAACMAAAB6AAAARgAAADQAAAAMAQAAHAAAAAQAAAAwAAAAMAAAAB8AAAAOAAAAHQAAAAYAAAAlAAAACwAAAB0AAAADAAAAIwAAAAUAAAAHAAAAAgAAAAQAAAArAAAAnQAAABMAAAAjAAAABQAAACMAAAAFAAAAJwAAAAkAAAAzAAAAnQAAADYBAAAKAAAAFQAAAAsAAAAHAAAAmQAAAAUAAAADAAAAAAAAAAIAAAArAAAAAgAAAAEAAAAEAAAAAAAAAAMAAAAWAAAACwAAABYAAAAKAAAAHgAAAEIAAAASAAAAAgAAAAEAAAALAAAAFQAAAAsAAAAZAAAARwAAADcAAAAHAAAAAQAAAEEAAAAAAAAAEAAAAAMAAAACAAAAAgAAAAIAAAAcAAAAKwAAABwAAAAEAAAAHAAAACQAAAAHAAAAAgAAABsAAAAcAAAANQAAAAsAAAAVAAAACwAAABIAAAAOAAAAEQAAAG8AAABIAAAAOAAAADIAAAAOAAAAMgAAAA4AAAAjAAAAXQEAACkAAAAHAAAAAQAAAE8AAAAcAAAACwAAAAAAAAAJAAAAFQAAAGsAAAAUAAAAHAAAABYAAAANAAAANAAAAEwAAAAsAAAAIQAAABgAAAAbAAAAIwAAAB4AAAAAAAAAAwAAAAAAAAAJAAAAIgAAAAQAAAAAAAAADQAAAC8AAAAPAAAAAwAAABYAAAAAAAAAAgAAAAAAAAAkAAAAEQAAAAIAAAAYAAAAVQAAAAYAAAACAAAAAAAAAAIAAAADAAAAAgAAAA4AAAACAAAACQAAAAgAAAAuAAAAJwAAAAcAAAADAAAAAQAAAAMAAAAVAAAAAgAAAAYAAAACAAAAAQAAAAIAAAAEAAAABAAAAAAAAAATAAAAAAAAAA0AAAAEAAAAnwAAADQAAAATAAAAAwAAABUAAAACAAAAHwAAAC8AAAAVAAAAAQAAAAIAAAAAAAAAuQAAAC4AAAAqAAAAAwAAACUAAAAvAAAAFQAAAAAAAAA8AAAAKgAAAA4AAAAAAAAASAAAABoAAADmAAAAKwAAAHUAAAA/AAAAIAAAAAcAAAADAAAAAAAAAAMAAAAHAAAAAgAAAAEAAAACAAAAFwAAABAAAAAAAAAAAgAAAAAAAABfAAAABwAAAAMAAAAmAAAAEQAAAAAAAAACAAAAAAAAAB0AAAAAAAAACwAAACcAAAAIAAAAAAAAABYAAAAAAAAADAAAAC0AAAAUAAAAAAAAACMAAAA4AAAACAEAAAgAAAACAAAAJAAAABIAAAAAAAAAMgAAAB0AAABxAAAABgAAAAIAAAABAAAAAgAAACUAAAAWAAAAAAAAABoAAAAFAAAAAgAAAAEAAAACAAAAHwAAAA8AAAAAAAAASAEAABIAAAC+AAAAAAAAAFAAAACZAwAAZwAAAG4AAAASAAAAwwAAAL0KAAAuBAAA0g8AAEYCAAC6IQAAOAIAAAgAAAAeAAAAcgAAAB0AAAATAAAALwAAABEAAAADAAAAIAAAABQAAAAGAAAAEgAAALECAAA/AAAAgQAAAEoAAAAGAAAAAAAAAEMAAAAMAAAAQQAAAAEAAAACAAAAAAAAAB0AAAD3FwAACQAAANUEAAArAAAACAAAAPgiAAAeAQAAMgAAAAIAAAASAAAAAwAAAAkAAACLAQAABQkAAGoAAAAGAAAADAAAAAQAAAAIAAAACAAAAAkAAABnFwAAVAAAAAIAAABGAAAAAgAAAAEAAAADAAAAAAAAAAMAAAABAAAAAwAAAAMAAAACAAAACwAAAAIAAAAAAAAAAgAAAAYAAAACAAAAQAAAAAIAAAADAAAAAwAAAAcAAAACAAAABgAAAAIAAAAbAAAAAgAAAAMAAAACAAAABAAAAAIAAAAAAAAABAAAAAYAAAACAAAAUwEAAAMAAAAYAAAAAgAAABgAAAACAAAAHgAAAAIAAAAYAAAAAgAAAB4AAAACAAAAGAAAAAIAAAAeAAAAAgAAABgAAAACAAAAHgAAAAIAAAAYAAAAAgAAAAcAAAA1CQAALAAAAAsAAAAGAAAAEQAAAAAAAAByAQAAKwAAABUFAADEAAAAPAAAAEMAAAAIAAAAAAAAALUEAAADAAAAAgAAABoAAAACAAAAAQAAAAIAAAAAAAAAAwAAAAAAAAACAAAACQAAAAIAAAADAAAAAgAAAAAAAAACAAAAAAAAAAcAAAAAAAAABQAAAAAAAAACAAAAAAAAAAIAAAAAAAAAAgAAAAIAAAACAAAAAQAAAAIAAAAAAAAAAwAAAAAAAAACAAAAAAAAAAIAAAAAAAAAAgAAAAAAAAACAAAAAAAAAAIAAAABAAAAAgAAAAAAAAADAAAAAwAAAAIAAAAGAAAAAgAAAAMAAAACAAAAAwAAAAIAAAAAAAAAAgAAAAkAAAACAAAAEAAAAAYAAAACAAAAAgAAAAQAAAACAAAAEAAAAEURAADdpgAAIwAAADQQAAAMAAAA3QAAAAMAAACBFgAADwAAADAdAAAgDAAAHQIAAOMFAABKEwAA/QEAAAAAAADjAAAAAAAAAJYAAAAEAAAAJgEAAAkAAABYBQAAAgAAAAIAAAABAAAABgAAAAMAAAApAAAAAgAAAAUAAAAAAAAApgAAAAEAAAA+AgAAAwAAAAkAAAAJAAAAcgEAAAEAAACaAAAACgAAALAAAAACAAAANgAAAA4AAAAgAAAACQAAABAAAAADAAAALgAAAAoAAAA2AAAACQAAAAcAAAACAAAAJQAAAA0AAAACAAAACQAAAAYAAAABAAAALQAAAAAAAAANAAAAAgAAADEAAAANAAAACQAAAAMAAAACAAAACwAAAFMAAAALAAAABwAAAAAAAAChAAAACwAAAAYAAAAJAAAABwAAAAMAAAA4AAAAAQAAAAIAAAAGAAAAAwAAAAEAAAADAAAAAgAAAAoAAAAAAAAACwAAAAEAAAADAAAABgAAAAQAAAAEAAAAwQAAABEAAAAKAAAACQAAAAUAAAAAAAAAUgAAABMAAAANAAAACQAAANYAAAAGAAAAAwAAAAgAAAAcAAAAAQAAAFMAAAAQAAAAEAAAAAkAAABSAAAADAAAAAkAAAAJAAAAVAAAAA4AAAAFAAAACQAAAPMAAAAOAAAApgAAAAkAAABHAAAABQAAAAIAAAABAAAAAwAAAAMAAAACAAAAAAAAAAIAAAABAAAADQAAAAkAAAB4AAAABgAAAAMAAAAGAAAABAAAAAAAAAAdAAAACQAAACkAAAAGAAAAAgAAAAMAAAAJAAAAAAAAAAoAAAAKAAAALwAAAA8AAACWAQAABwAAAAIAAAAHAAAAEQAAAAkAAAA5AAAAFQAAAAIAAAANAAAAewAAAAUAAAAEAAAAAAAAAAIAAAABAAAAAgAAAAYAAAACAAAAAAAAAAkAAAAJAAAAMQAAAAQAAAACAAAAAQAAAAIAAAAEAAAACQAAAAkAAABKAQAAAwAAAGpLAAAJAAAAhwAAAAQAAAA8AAAABgAAABoAAAAJAAAA9gMAAAAAAAACAAAANgAAAAgAAAADAAAAUgAAAAAAAAAMAAAAAQAAAKxMAAABAAAAxxQAAAQAAAAEAAAABQAAAAkAAAAHAAAAAwAAAAYAAAAfAAAAAwAAAJUAAAACAAAAigUAADEAAAABAgAANgAAAAUAAAAxAAAACQAAAAAAAAAPAAAAAAAAABcAAAAEAAAAAgAAAA4AAABRBQAABgAAAAIAAAAQAAAAAwAAAAYAAAACAAAAAQAAAAIAAAAEAAAABgEAAAYAAAAKAAAACQAAAKMBAAANAAAA1wUAAAYAAABuAAAABgAAAAYAAAAJAAAAlxIAAAkAAAAHBQwA7wAAAABBmB8LHFCMAAABAAAAAgAAAAMAAAAEAAAAAAQAAPAfAAA=",typeof window<"u"&&typeof atob=="function"?Uint8Array.from(atob(B3),A3=>A3.charCodeAt(0)):Buffer.from(B3,"base64")));var B3;let{exports:E3}=await WebAssembly.instantiate(Q3);A2=E3})())}var A2,Q2,g,init_lexer2=__esm({"../../node_modules/.pnpm/cjs-module-lexer@1.2.3/node_modules/cjs-module-lexer/dist/lexer.mjs"(){Q2=new Uint8Array(new Uint16Array([1]).buffer)[0]===1}});function stripCommentsAndLiterals(content){return content.replace(COMMENT_OR_LITERAL," ")}var BLOCK_COMMENT,LINE_COMMENT,DOUBLE_QUOTED,SINGLE_QUOTED,TEMPLATE_LITERAL,COMMENT_OR_LITERAL,init_strip_comments_and_literals=__esm({"src/strip-comments-and-literals.ts"(){"use strict";BLOCK_COMMENT=/\/\*[\s\S]*?(?:\*\/|$)/,LINE_COMMENT=/\/\/[^\n]*/,DOUBLE_QUOTED=/"(?:\\[\s\S]|[^"\\])*"?/,SINGLE_QUOTED=/'(?:\\[\s\S]|[^'\\])*'?/,TEMPLATE_LITERAL=/`(?:\\[\s\S]|[^`\\])*`?/,COMMENT_OR_LITERAL=new RegExp([BLOCK_COMMENT,LINE_COMMENT,DOUBLE_QUOTED,SINGLE_QUOTED,TEMPLATE_LITERAL].map(pattern=>pattern.source).join("|"),"g")}});var node_entrypoint_exports={};__export(node_entrypoint_exports,{isNodeEntrypoint:()=>isNodeEntrypoint});async function getHandlerExportNames(content){let names=new Set,esmUnparsed=!1;await init;try{let[,exports2]=parse4(content);for(let{n}of exports2)n&&names.add(n)}catch{esmUnparsed=!0}await init2();try{for(let name of parse5(content).exports)names.add(name)}catch{}return{names,esmUnparsed}}async function isNodeEntrypoint(file){try{let fsPath=file.fsPath;if(!fsPath)return!0;let content=await import_fs6.default.promises.readFile(fsPath,"utf-8");if(!content.trim())return!1;let{names,esmUnparsed}=await getHandlerExportNames(content);for(let name of names)if(HANDLER_EXPORTS.has(name))return!0;if(esmUnparsed)return!0;let code=stripCommentsAndLiterals(content);return EXTRA_HANDLER_PATTERNS.some(pattern=>pattern.test(code))}catch(err){return debug(`Failed to check Node.js entrypoint: ${err}`),!0}}var import_fs6,HANDLER_EXPORTS,EXTRA_HANDLER_PATTERNS,init_node_entrypoint=__esm({"src/node-entrypoint.ts"(){"use strict";import_fs6=__toESM(require("fs"));init_lexer();init_lexer2();init_debug();init_strip_comments_and_literals();HANDLER_EXPORTS=new Set(["GET","HEAD","OPTIONS","POST","PUT","DELETE","PATCH","fetch","default"]),EXTRA_HANDLER_PATTERNS=[/\bmodule\.exports\s*=(?!=)/,/\.listen\s*\(/,/\bexport\s*=(?!=)/,/\bexport\s*\*\s*from\b/]}});var service_path_utils_exports={};__export(service_path_utils_exports,{INTERNAL_SERVICE_PREFIX:()=>INTERNAL_SERVICE_PREFIX,getInternalServiceCronPath:()=>getInternalServiceCronPath,getInternalServiceCronPathPrefix:()=>getInternalServiceCronPathPrefix,getInternalServiceFunctionPath:()=>getInternalServiceFunctionPath,getInternalServiceWorkerPath:()=>getInternalServiceWorkerPath,getInternalServiceWorkerPathPrefix:()=>getInternalServiceWorkerPathPrefix});function normalizeInternalServiceEntrypoint(entrypoint){return entrypoint.replace(/\\/g,"/").replace(/^\/+/,"").replace(/\.[^/.]+$/,"")||"index"}function getInternalServiceFunctionPath(serviceName){return`${INTERNAL_SERVICE_PREFIX}/${serviceName}/index`}function getInternalServiceCronPathPrefix(serviceName){return`${INTERNAL_SERVICE_PREFIX}/${serviceName}/crons`}function getInternalServiceCronPath(serviceName,entrypoint,handler="cron"){let normalizedEntrypoint=normalizeInternalServiceEntrypoint(entrypoint);return`${getInternalServiceCronPathPrefix(serviceName)}/${normalizedEntrypoint}/${handler}`}function getInternalServiceWorkerPathPrefix(serviceName){return`${INTERNAL_SERVICE_PREFIX}/${serviceName}/workers`}function getInternalServiceWorkerPath(serviceName,entrypoint,handler="worker"){let normalizedEntrypoint=normalizeInternalServiceEntrypoint(entrypoint);return`${getInternalServiceWorkerPathPrefix(serviceName)}/${normalizedEntrypoint}/${handler}`}var INTERNAL_SERVICE_PREFIX,init_service_path_utils=__esm({"src/service-path-utils.ts"(){"use strict";INTERNAL_SERVICE_PREFIX="/_svc"}});var schedule_path_utils_exports={};__export(schedule_path_utils_exports,{SCHEDULE_FUNCTION_PREFIX:()=>SCHEDULE_FUNCTION_PREFIX,getScheduleFunctionPath:()=>getScheduleFunctionPath});function getScheduleFunctionPath(entrypointSegments){if(entrypointSegments.length===0||entrypointSegments.some(segment=>!segment||segment==="."||segment===".."||segment.includes("/")||segment.includes("\\")))throw new Error("Schedule function paths require safe, non-empty segments");return[SCHEDULE_FUNCTION_PREFIX,...entrypointSegments].join("/")}var SCHEDULE_FUNCTION_PREFIX,init_schedule_path_utils=__esm({"src/schedule-path-utils.ts"(){"use strict";SCHEDULE_FUNCTION_PREFIX="_vercel/schedules"}});var get_encrypted_env_file_exports={};__export(get_encrypted_env_file_exports,{getEncryptedEnv:()=>getEncryptedEnv});function getEncryptedEnv(envFilename,envContent){if(!(!envFilename||!envContent))return[envFilename,new FileBlob({data:Buffer.from(envContent,"base64")})]}var init_get_encrypted_env_file=__esm({"src/process-serverless/get-encrypted-env-file.ts"(){"use strict";init_file_blob()}});var get_lambda_preload_scripts_exports={};__export(get_lambda_preload_scripts_exports,{getLambdaPreloadScripts:()=>getLambdaPreloadScripts});function getLambdaPreloadScripts(lambda,buffer,options){let scripts=[];lambda.shouldAddSourcemapSupport&&scripts.push("/opt/rust/source-map-support.js");let BYTECODE_MIN_SIZE_BYTES=(Number.parseInt(options.bytecodeCachingThreshold||"",10)||400)*1024;return options.vercelEnv==="production"&&options.useBytecodeCaching==="1"&&["nodejs20.x","nodejs22.x","nodejs24.x"].includes(lambda.runtime)&&buffer.byteLength>=BYTECODE_MIN_SIZE_BYTES&&scripts.push(["nodejs22.x","nodejs24.x"].includes(lambda.runtime)&&options.useNativeBytecodeCaching==="1"?"/opt/rust/bytecode-native.js":"/opt/rust/bytecode.js"),lambda.framework?.slug==="nextjs"&&scripts.push("/opt/rust/next-data.js"),scripts}var init_get_lambda_preload_scripts=__esm({"src/process-serverless/get-lambda-preload-scripts.ts"(){"use strict"}});var get_lambda_environment_exports={};__export(get_lambda_environment_exports,{getLambdaEnvironment:()=>getLambdaEnvironment});function getLambdaEnvironment(lambda,buffer,options){let environment={};if("launcherType"in lambda&&lambda.launcherType==="Nodejs"){lambda.awsLambdaHandler&&(environment.AWS_LAMBDA_HANDLER=lambda.awsLambdaHandler),lambda.shouldAddHelpers&&(environment.VERCEL_SHOULD_ADD_HELPERS="1"),lambda.useWebApi===!0&&(environment.VERCEL_USE_WEB_API="1"),lambda.shouldAddSourcemapSupport&&(environment.VERCEL_SOURCE_MAP="1"),lambda.shouldDisableAutomaticFetchInstrumentation&&(environment.VERCEL_TRACING_DISABLE_AUTOMATIC_FETCH_INSTRUMENTATION="1");let scripts=getLambdaPreloadScripts(lambda,buffer,options);scripts.length>0&&(environment.VERCEL_NODE_PRELOAD_SCRIPTS=scripts.join(","))}return environment}var init_get_lambda_environment=__esm({"src/process-serverless/get-lambda-environment.ts"(){"use strict";init_get_lambda_preload_scripts()}});var get_lambda_supports_streaming_exports={};__export(get_lambda_supports_streaming_exports,{getLambdaSupportsStreaming:()=>getLambdaSupportsStreaming});function getLambdaSupportsStreaming(lambda,forceStreamingRuntime){if(lambda.awsLambdaHandler)return!1;if(forceStreamingRuntime)return!0;if(typeof lambda.supportsResponseStreaming=="boolean")return lambda.supportsResponseStreaming;if("launcherType"in lambda&&lambda.launcherType==="Nodejs")return!0}var init_get_lambda_supports_streaming=__esm({"src/process-serverless/get-lambda-supports-streaming.ts"(){"use strict"}});var stream_to_digest_async_exports={};__export(stream_to_digest_async_exports,{md5:()=>md5,sha256:()=>sha256,streamToDigestAsync:()=>streamToDigestAsync});async function streamToDigestAsync(stream){return await new Promise((resolve3,reject)=>{stream.once("error",reject);let count=0,sha2562=(0,import_crypto.createHash)("sha256"),md52=(0,import_crypto.createHash)("md5");stream.on("end",()=>{let res={sha256:sha2562.digest("hex"),md5:md52.digest("hex"),size:count};resolve3(res)}),stream.on("readable",()=>{let chunk;for(;(chunk=stream.read())!==null;){let buffer=Buffer.isBuffer(chunk)?Uint8Array.from(chunk):Uint8Array.from(Buffer.from(chunk));md52.update(buffer),sha2562.update(buffer),count+=chunk.length}})})}function sha256(value){return(0,import_crypto.createHash)("sha256").update(value).digest("hex")}function md5(value){return(0,import_crypto.createHash)("md5").update(Uint8Array.from(value)).digest("hex")}var import_crypto,init_stream_to_digest_async=__esm({"src/fs/stream-to-digest-async.ts"(){"use strict";import_crypto=require("crypto")}});var get_lambda_by_output_path_exports={};__export(get_lambda_by_output_path_exports,{getLambdaByOutputPath:()=>getLambdaByOutputPath});function getLambdaByOutputPath(params){let output=params.buildOutputMap[params.outputPath];return output?.type==="Lambda"?output:output?.type==="Prerender"?output.lambda:void 0}var init_get_lambda_by_output_path=__esm({"src/collect-build-result/get-lambda-by-output-path.ts"(){"use strict"}});var get_prerender_chain_exports={};__export(get_prerender_chain_exports,{getPrerenderChain:()=>getPrerenderChain});function getPrerenderChain(prerender){if(prerender.chain)return{outputPath:prerender.chain.outputPath,headers:prerender.chain.headers};if(prerender.experimentalStreamingLambdaPath)return{outputPath:prerender.experimentalStreamingLambdaPath,headers:{"x-matched-path":prerender.experimentalStreamingLambdaPath}}}var init_get_prerender_chain=__esm({"src/collect-build-result/get-prerender-chain.ts"(){"use strict"}});var is_route_middleware_exports={};__export(is_route_middleware_exports,{isRouteMiddleware:()=>isRouteMiddleware});function isRouteMiddleware(route){return"middlewarePath"in route&&typeof route.middlewarePath=="string"}var init_is_route_middleware=__esm({"src/collect-build-result/is-route-middleware.ts"(){"use strict"}});var get_build_result_metadata_exports={};__export(get_build_result_metadata_exports,{getBuildResultMetadata:()=>getBuildResultMetadata});function getBuildResultMetadata(params){return{middleware:getMiddlewareMetadata(params),ppr:new Map(Object.entries(params.buildOutputMap).flatMap(([_outputPath,output])=>{if(output.type==="Prerender"){let chain=getPrerenderChain(output);if(chain&&getLambdaByOutputPath({buildOutputMap:params.buildOutputMap,outputPath:chain.outputPath}))return[[chain.outputPath,!0]]}return[]}))}}function getMiddlewareMetadata(params){let deduped=new Map(params.routes.filter(isRouteMiddleware).map(route=>toMiddlewareTuple({buildOutputMap:params.buildOutputMap,middlewarePath:route.middlewarePath})));return new Map(Array.from(deduped,([outputPath,metadata],index)=>[outputPath,{...metadata,index}]))}function toMiddlewareTuple(params){let keys=[params.middlewarePath,params.middlewarePath.replace(/^\//,"")],[outputPath,output]=Object.entries(params.buildOutputMap).find(entry=>keys.includes(entry[0])&&(entry[1].type==="EdgeFunction"||entry[1].type==="Lambda"))??[];if(!outputPath||!output)throw new NowBuildError({message:`Mapping ${params.middlewarePath} not found. Maybe you provided a wrong middlewarePath?`,code:"middleware_path_not_found"});return[outputPath,output.type==="EdgeFunction"?{edgeFunction:output,match:new Set(keys),middlewarePath:params.middlewarePath,outputPath,type:"middleware"}:{match:new Set(keys),middlewarePath:params.middlewarePath,outputPath,type:"middleware-lambda"}]}var init_get_build_result_metadata=__esm({"src/collect-build-result/get-build-result-metadata.ts"(){"use strict";init_errors();init_get_lambda_by_output_path();init_get_prerender_chain();init_is_route_middleware()}});var validate_build_result_exports={};__export(validate_build_result_exports,{SUPPORTED_AL2023_RUNTIMES:()=>SUPPORTED_AL2023_RUNTIMES,validateBuildResult:()=>validateBuildResult});function isSupportedAl2023Runtime(runtime){return SUPPORTED_AL2023_RUNTIMES.some(supported=>supported===runtime)}async function validateBuildResult({allowInvalidRuntime=!1,buildConfig,buildResponse,vercelBaseUrl}){if(!("output"in buildResponse))throw new NowBuildError({code:"NOW_SANDBOX_WORKER_BUILDER_ERROR",message:'The result of "builder.build" must include an `output` property for "@vercel/vc-build".'});if(!buildResponse.output||typeof buildResponse.output!="object")throw new NowBuildError({code:"NOW_SANDBOX_WORKER_BUILDER_ERROR",message:'The result of "builder.build" must be an object'});let buildOutputMap=getAndVerifyOutputLambdasOrEdgeFuncs(buildResponse),invalidRuntimes=[];for(let[name,entry]of Object.entries(buildOutputMap)){let lambda;entry.type==="Prerender"?lambda=entry.lambda:entry.type==="Lambda"&&(lambda=entry),lambda&&(isSupportedAl2023Runtime(lambda.runtime)||invalidRuntimes.push({name,lambda}))}if(invalidRuntimes.length>0&&!allowInvalidRuntime)throw new NowBuildError({code:"NOW_SANDBOX_WORKER_INVALID_RUNTIME",message:`The following Serverless Functions contain an invalid "runtime":
117
117
  ${invalidRuntimes.map(({name,lambda})=>` - ${name} (${lambda.runtime})`).join(`
118
118
  `)}`,link:getVercelUrl("/docs/functions/runtimes#official-runtimes",vercelBaseUrl)});let customFunctionConfiguration=getCustomFunctionConfigMaybe(buildConfig);if(customFunctionConfiguration?.runtime)throw new NowBuildError({code:"NOW_SANDBOX_WORKER_FUNCTION_RUNTIME_VERSION",message:`The Community Runtime ${customFunctionConfiguration.runtime} is not using version 3 of the Runtime API. If you are the Runtime author, see the docs by clicking "View Details" above.`,link:DEVELOPING_A_RUNTIME_URL});return{buildOutputMap,customFunctionConfiguration}}function getCustomFunctionConfigMaybe(buildConfig){let functions=buildConfig?.functions??buildConfig?.vercelConfig?.functions;if(functions){for(let[funcPath,config]of Object.entries(functions))if(funcPath===DEFAULT_ENTRYPOINT||(0,import_minimatch2.default)(DEFAULT_ENTRYPOINT,funcPath))return config}}function getVercelUrl(path9,vercelBaseUrl="https://vercel.com"){let url=new URL(path9,vercelBaseUrl);return url.pathname==="/"?url.href.slice(0,-1):url.href}function getAndVerifyOutputLambdasOrEdgeFuncs(buildResponse){return buildResponse.output}var import_minimatch2,SUPPORTED_AL2023_RUNTIMES,DEFAULT_ENTRYPOINT,DEVELOPING_A_RUNTIME_URL,init_validate_build_result=__esm({"src/collect-build-result/validate-build-result.ts"(){"use strict";import_minimatch2=__toESM(require_minimatch());init_errors();SUPPORTED_AL2023_RUNTIMES=["nodejs20.x","nodejs22.x","nodejs24.x","provided.al2023","python3.12","python3.13","python3.14","ruby3.3","bun1.4.x","bun1.x","executable"],DEFAULT_ENTRYPOINT=".",DEVELOPING_A_RUNTIME_URL="https://github.com/vercel/vercel/blob/master/DEVELOPING_A_RUNTIME.md"}});var stream_with_extended_payload_exports={};__export(stream_with_extended_payload_exports,{streamWithExtendedPayload:()=>streamWithExtendedPayload});function streamWithExtendedPayload(stream,data){return data?new MultipartContentStream(stream,data):stream}var import_stream2,MultipartContentStream,init_stream_with_extended_payload=__esm({"src/collect-build-result/stream-with-extended-payload.ts"(){"use strict";import_stream2=require("stream");MultipartContentStream=class extends import_stream2.Readable{constructor(stream,data){super(),stream.on("error",err=>{this.emit("error",err)}),stream.on("end",()=>{this.push(data.suffix),this.push(null)}),this.push(data.prefix),stream.on("data",chunk=>{this.push(chunk)})}_read(){}}}});var collect_uncompressed_size_exports={};__export(collect_uncompressed_size_exports,{collectUncompressedSize:()=>collectUncompressedSize});var import_promises3,fileSizeCache,getFileSize,collectUncompressedSize,init_collect_uncompressed_size=__esm({"src/collect-uncompressed-size.ts"(){"use strict";import_promises3=require("fs/promises"),fileSizeCache=new Map,getFileSize=path9=>{if(!path9)return Promise.resolve(0);let cached=fileSizeCache.get(path9);if(cached)return cached;let promise=(0,import_promises3.lstat)(path9).then(stats=>stats.size);return fileSizeCache.set(path9,promise),promise},collectUncompressedSize=async(files,ignoreFn)=>{let size=0;return await Promise.all(Object.keys(files).map(async fileKey=>{if(ignoreFn?.(fileKey))return;let file=files[fileKey];if(file.type==="FileBlob")size+=file.data.length;else if(file.type==="FileFsRef"){let fsRef=file,curSize=fsRef.size??await getFileSize(fsRef.fsPath);size+=curSize}})),size}}});var finalize_lambda_exports={};__export(finalize_lambda_exports,{finalizeLambda:()=>finalizeLambda});async function finalizeLambda(params){let{lambda,encryptedEnvFilename,encryptedEnvContent,bytecodeCachingOptions,forceStreamingRuntime,enableUncompressedLambdaSizeCheck,trace=defaultTrace,createZip:createZipOverride,validateZip}=params,encryptedEnv=getEncryptedEnv(encryptedEnvFilename,encryptedEnvContent);if(encryptedEnv){let[envFilename,envFile]=encryptedEnv;lambda.zipBuffer=void 0,lambda.files={...lambda.files,[envFilename]:envFile}}let uncompressedBytes=0;enableUncompressedLambdaSizeCheck&&lambda.files&&(uncompressedBytes=await trace("collectUncompressedSize",()=>collectUncompressedSize(lambda.files??{})));let zipTags={fileCount:String(Object.keys(lambda.files??{}).length),uncompressedBytes:String(uncompressedBytes)},zipResult;if(createZipOverride)zipResult=await trace("createZip",()=>createZipOverride(lambda),zipTags);else{let buffer=lambda.zipBuffer||await trace("createZip",()=>lambda.createZip(),zipTags);zipResult={buffer,digest:"",size:buffer.byteLength}}validateZip&&validateZip({buffer:zipResult.buffer,zipPath:zipResult.zipPath,size:zipResult.size}),!createZipOverride&&zipResult.buffer&&(zipResult.digest=sha256(zipResult.buffer)),lambda.environment={...lambda.environment,...getLambdaEnvironment(lambda,zipResult.buffer??{byteLength:zipResult.size},bytecodeCachingOptions)};let streamingResult=getLambdaSupportsStreaming(lambda,forceStreamingRuntime);return lambda.supportsResponseStreaming=streamingResult,{buffer:zipResult.buffer,zipPath:zipResult.zipPath??null,digest:zipResult.digest,size:zipResult.size,uncompressedBytes}}var defaultTrace,init_finalize_lambda=__esm({"src/finalize-lambda.ts"(){"use strict";init_get_encrypted_env_file();init_get_lambda_environment();init_get_lambda_supports_streaming();init_stream_to_digest_async();init_collect_uncompressed_size();defaultTrace=(_name,fn)=>fn()}});var require_bytes=__commonJS({"../../node_modules/.pnpm/bytes@3.1.2/node_modules/bytes/index.js"(exports2,module2){"use strict";module2.exports=bytes2;module2.exports.format=format;module2.exports.parse=parse6;var formatThousandsRegExp=/\B(?=(\d{3})+(?!\d))/g,formatDecimalsRegExp=/(?:\.0*|(\.[^0]+)0+)$/,map={b:1,kb:1024,mb:1<<20,gb:1<<30,tb:Math.pow(1024,4),pb:Math.pow(1024,5)},parseRegExp=/^((-|\+)?(\d+(?:\.\d+)?)) *(kb|mb|gb|tb|pb)$/i;function bytes2(value,options){return typeof value=="string"?parse6(value):typeof value=="number"?format(value,options):null}function format(value,options){if(!Number.isFinite(value))return null;var mag=Math.abs(value),thousandsSeparator=options&&options.thousandsSeparator||"",unitSeparator=options&&options.unitSeparator||"",decimalPlaces=options&&options.decimalPlaces!==void 0?options.decimalPlaces:2,fixedDecimals=!!(options&&options.fixedDecimals),unit=options&&options.unit||"";(!unit||!map[unit.toLowerCase()])&&(mag>=map.pb?unit="PB":mag>=map.tb?unit="TB":mag>=map.gb?unit="GB":mag>=map.mb?unit="MB":mag>=map.kb?unit="KB":unit="B");var val=value/map[unit.toLowerCase()],str=val.toFixed(decimalPlaces);return fixedDecimals||(str=str.replace(formatDecimalsRegExp,"$1")),thousandsSeparator&&(str=str.split(".").map(function(s,i){return i===0?s.replace(formatThousandsRegExp,thousandsSeparator):s}).join(".")),str+unitSeparator+unit}function parse6(val){if(typeof val=="number"&&!isNaN(val))return val;if(typeof val!="string")return null;var results=parseRegExp.exec(val),floatValue,unit="b";return results?(floatValue=parseFloat(results[1]),unit=results[4].toLowerCase()):(floatValue=parseInt(val,10),unit="b"),isNaN(floatValue)?null:Math.floor(map[unit]*floatValue)}}});var validate_lambda_size_exports={};__export(validate_lambda_size_exports,{ENV_WRAPPER_SUPPORTED_FAMILIES:()=>ENV_WRAPPER_SUPPORTED_FAMILIES,FunctionSizeError:()=>FunctionSizeError,MAX_LAMBDA_SIZE:()=>MAX_LAMBDA_SIZE,MAX_LAMBDA_UNCOMPRESSED_SIZE:()=>MAX_LAMBDA_UNCOMPRESSED_SIZE,validateEnvWrapperSupport:()=>validateEnvWrapperSupport,validateLambdaSize:()=>validateLambdaSize,validateUncompressedLambdaSize:()=>validateUncompressedLambdaSize});function validateLambdaSize(outputPath,runtime,size){if(!runtime.startsWith("python")&&size>MAX_LAMBDA_SIZE)throw new FunctionSizeError(outputPath,size)}function validateUncompressedLambdaSize(outputPath,uncompressedBytes){if(uncompressedBytes>=MAX_LAMBDA_UNCOMPRESSED_SIZE)throw new NowBuildError({code:"NOW_SANDBOX_WORKER_MAX_UNCOMPRESSED_LAMBDA_SIZE",message:`The Vercel Function "${outputPath}" is ${(0,import_bytes.default)(uncompressedBytes).toLowerCase()} uncompressed which exceeds the maximum uncompressed size limit of ${(0,import_bytes.default)(MAX_LAMBDA_UNCOMPRESSED_SIZE).toLowerCase()}.`,link:"https://vercel.link/serverless-function-size",action:"Learn More"})}function validateEnvWrapperSupport(encryptedEnvFilename,encryptedEnvContent,lambda){if(!(!encryptedEnvFilename||!encryptedEnvContent)){if(!lambda.supportsWrapper&&!ENV_WRAPPER_SUPPORTED_FAMILIES.some(family=>lambda.runtime.startsWith(family)))throw new Error(`Serverless Function runtime ${lambda.runtime} does not support more than 4KB for environment variables`);if(typeof lambda.createZip!="function")throw new Error(`Serverless Function with runtime ${lambda.runtime} has no createZip function`)}}var import_bytes,MAX_LAMBDA_SIZE,MAX_LAMBDA_UNCOMPRESSED_SIZE,FunctionSizeError,ENV_WRAPPER_SUPPORTED_FAMILIES,init_validate_lambda_size=__esm({"src/validate-lambda-size.ts"(){"use strict";init_errors();import_bytes=__toESM(require_bytes()),MAX_LAMBDA_SIZE=(0,import_bytes.default)("300mb"),MAX_LAMBDA_UNCOMPRESSED_SIZE=250*1024*1024,FunctionSizeError=class extends NowBuildError{constructor(outputPath,size){super({code:"NOW_SANDBOX_WORKER_MAX_LAMBDA_SIZE",message:`The Vercel Function "${outputPath}" is ${(0,import_bytes.default)(size).toLowerCase()} which exceeds the maximum size limit of ${(0,import_bytes.default)(MAX_LAMBDA_SIZE).toLowerCase()}.`,link:"https://vercel.link/serverless-function-size",action:"Learn More"});this.size=size,this.maxSize=MAX_LAMBDA_SIZE}};ENV_WRAPPER_SUPPORTED_FAMILIES=["nodejs","python","ruby","java","dotnetcore","bun","executable"]}});var validate_framework_version_exports={};__export(validate_framework_version_exports,{validateFrameworkVersion:()=>validateFrameworkVersion});function validateFrameworkVersion(framework){if(!framework)return;let{slug,version}=framework;if(typeof slug=="string"){if(typeof version!="string")throw new NowBuildError({message:`Invalid config.json: "version" type "${typeof version}" should be "string"`,code:"VC_BUILD_INVALID_CONFIG_JSON_FRAMEWORK_VERSION_TYPE"});if(slug.length>MAX_SLUG_LENGTH){let trimmedFrameworkSlug=slug.slice(0,MAX_SLUG_LENGTH);throw new NowBuildError({message:`Invalid config.json: "framework.slug" length ${slug.length} > ${MAX_SLUG_LENGTH}. "${trimmedFrameworkSlug}..."`,code:"VC_BUILD_INVALID_CONFIG_JSON_FRAMEWORK_SLUG_LENGTH"})}if(version.length>MAX_FRAMEWORK_VERSION_LENGTH){let trimmedFrameworkVersion=version.slice(0,MAX_FRAMEWORK_VERSION_LENGTH);throw new NowBuildError({message:`Invalid config.json: "framework.version" length ${version.length} > ${MAX_FRAMEWORK_VERSION_LENGTH}. "${trimmedFrameworkVersion}..."`,code:"VC_BUILD_INVALID_CONFIG_JSON_FRAMEWORK_VERSION_LENGTH"})}return framework}}var MAX_SLUG_LENGTH,MAX_FRAMEWORK_VERSION_LENGTH,init_validate_framework_version=__esm({"src/deserialize/validate-framework-version.ts"(){"use strict";init_errors();MAX_SLUG_LENGTH=50,MAX_FRAMEWORK_VERSION_LENGTH=50}});var hydrate_files_map_exports={};__export(hydrate_files_map_exports,{hydrateFilesMap:()=>hydrateFilesMap});async function hydrateFilesMap(files,filesMap,repoRootPath,fileFsRefsCache){for(let[funcPath,projectPath]of Object.entries(filesMap))files[funcPath]=await fileFsRefCached((0,import_path15.join)(repoRootPath,projectPath),fileFsRefsCache)}async function fileFsRefCached(fsPath,cache){let file=cache.get(fsPath);return file||(file=await file_fs_ref_default.fromFsPath({fsPath}),cache.set(fsPath,file)),file}var import_path15,init_hydrate_files_map=__esm({"src/deserialize/hydrate-files-map.ts"(){"use strict";init_file_fs_ref();import_path15=require("path")}});var create_functions_iterator_exports={};__export(create_functions_iterator_exports,{createFunctionsIterator:()=>createFunctionsIterator});async function*createFunctionsIterator(dir,root=dir){let paths;try{paths=await(0,import_fs_extra10.readdir)(dir)}catch(err){if(err.code!=="ENOENT"&&err.code!=="ENOTDIR")throw err;paths=[]}for(let path9 of paths){let abs=(0,import_path16.join)(dir,path9);(await(0,import_fs_extra10.stat)(abs)).isDirectory()&&(path9.endsWith(SUFFIX)?yield(0,import_path16.relative)(root,abs.substring(0,abs.length-SUFFIX.length)):yield*createFunctionsIterator(abs,root))}}var import_path16,import_fs_extra10,SUFFIX,init_create_functions_iterator=__esm({"src/deserialize/create-functions-iterator.ts"(){"use strict";import_path16=require("path"),import_fs_extra10=__toESM(require_lib()),SUFFIX=".func"}});var maybe_read_json_exports={};__export(maybe_read_json_exports,{maybeReadJSON:()=>maybeReadJSON});async function maybeReadJSON(path9){try{return await(0,import_fs_extra11.readJSON)(path9)}catch(err){if(err.code!=="ENOENT")throw err}}var import_fs_extra11,init_maybe_read_json=__esm({"src/deserialize/maybe-read-json.ts"(){"use strict";import_fs_extra11=__toESM(require_lib())}});var deserialize_edge_function_exports={};__export(deserialize_edge_function_exports,{deserializeEdgeFunction:()=>deserializeEdgeFunction});async function deserializeEdgeFunction(files,config,repoRootPath,fileFsRefsCache){return config.filePathMap&&await hydrateFilesMap(files,config.filePathMap,repoRootPath,fileFsRefsCache),new EdgeFunction({deploymentTarget:"v8-worker",...config,files})}var init_deserialize_edge_function=__esm({"src/deserialize/deserialize-edge-function.ts"(){"use strict";init_edge_function();init_hydrate_files_map()}});var deserialize_build_output_exports={};__export(deserialize_build_output_exports,{deserializeBuildOutput:()=>deserializeBuildOutput,validateDeploymentId:()=>validateDeploymentId});function validateDeploymentId(deploymentId){if(deploymentId&&deploymentId.length>MAX_DEPLOYMENT_ID_LENGTH)throw new NowBuildError({message:`The configured deploymentId "${deploymentId}" exceeds the maximum length of ${MAX_DEPLOYMENT_ID_LENGTH} characters. Please use a shorter deploymentId.`,code:"VC_BUILD_INVALID_DEPLOYMENT_ID_LENGTH"});if(deploymentId&&!VALID_DEPLOYMENT_ID_PATTERN.test(deploymentId))throw new NowBuildError({message:`The configured deploymentId "${deploymentId}" contains invalid characters. Only alphanumeric characters (a-z, A-Z, 0-9), hyphens (-), and underscores (_) are allowed.`,code:"VC_BUILD_INVALID_DEPLOYMENT_ID_CHARACTERS"})}function applyOutputOverrides(output,overrides,warn){for(let[name,override]of Object.entries(overrides||{})){let entry=output[name];entry?(override.contentType&&(entry.contentType=override.contentType),override.mode&&(entry.mode=override.mode),override.path&&(output[override.path]=entry,delete output[name])):warn?.(`Warning: Override path "${name}" was not detected as an output path`)}}async function deserializePrerenderFallback(prerenderConfigPath,fallbackConfig){return typeof fallbackConfig=="string"?file_fs_ref_default.fromFsPath({fsPath:(0,import_path17.join)((0,import_path17.dirname)(prerenderConfigPath),fallbackConfig)}):fallbackConfig?file_fs_ref_default.fromFsPath({mode:fallbackConfig.mode,contentType:fallbackConfig.contentType,fsPath:(0,import_path17.join)((0,import_path17.dirname)(prerenderConfigPath),fallbackConfig.fsPath)}):null}function applyFunctionSymlinks(output,prerenders,functionSymlinks){for(let[path9,target]of functionSymlinks.entries()){let targetOutput=prerenders.get(target)||output[target],targetFunction;if(targetOutput?.type==="Prerender"?targetFunction=targetOutput.lambda:(targetOutput?.type==="Lambda"||targetOutput?.type==="EdgeFunction")&&(targetFunction=targetOutput),!targetFunction)throw new Error(`Could not find target "${target}" Lambda or EdgeFunction for path "${path9}"`);let srcOutput=prerenders.get(path9);if(srcOutput)if(srcOutput.type==="Prerender")if(targetFunction.type==="Lambda")srcOutput.lambda=targetFunction;else throw new Error(`Unexpected function type "${targetFunction.type}" at path "${path9}"`);else throw new Error(`Unexpected output type "${srcOutput.type}" at path "${path9}"`);else output[path9]=targetFunction}}function appendSortedPrerenders(output,prerenders){let sortedPrerenders=Array.from(prerenders.entries()).sort((a,b)=>(a[1].group??0)-(b[1].group??0)).reduce((o,[path9,prerender])=>(o[path9]=prerender,o),{});Object.assign(output,sortedPrerenders)}function getBundleableLambdas(output){let bundleableLambdas={};for(let[outputName,curOutput]of Object.entries(output))curOutput.type==="Lambda"&&curOutput.experimentalAllowBundling?bundleableLambdas[outputName]=curOutput:curOutput.type==="Prerender"&&curOutput.lambda&&curOutput.lambda.experimentalAllowBundling&&(bundleableLambdas[outputName]=curOutput.lambda);return bundleableLambdas}function applyGroupedLambdas(output,groupedLambdas){for(let outputName of Object.keys(groupedLambdas)){let groupedLambda=groupedLambdas[outputName],origOutput=output[outputName];origOutput.type==="Lambda"?output[outputName]=groupedLambda:origOutput.type==="Prerender"&&origOutput.lambda&&(origOutput.lambda=groupedLambda)}}async function deserializeBuildOutput(options){let{outputDir,repoRootPath,maxBundleSizeMb,debugGroupLambdas,useOnlyStreamingLambda,forceNodejsStreaming,deserializeLambda:deserializeLambda2,groupLambdas,inspectSerializedLambda,warn,includeDeploymentId,getMeta}=options,hasServerActions=!1,configPath=(0,import_path17.join)(outputDir,"config.json"),config=await maybeReadJSON(configPath);if(!config)throw new Error(`Config file was not found at "${configPath}"`);if(config.version!==3)throw new Error(`Expected \`version: 3\` in "${configPath}" file (received \`${config.version}\`)`);validateDeploymentId(config.deploymentId);let flags=await maybeReadJSON((0,import_path17.join)(outputDir,"flags.json")),staticDir=(0,import_path17.join)(outputDir,"static"),output=await glob("**",{cwd:staticDir,follow:!0});applyOutputOverrides(output,config.overrides,warn);let fileFsRefsCache=new Map,prerenders=new Map,functionsDir=(0,import_path17.join)(outputDir,"functions"),functionSymlinks=new Map;for await(let path9 of createFunctionsIterator(functionsDir)){let lambda,fnDir=(0,import_path17.join)(functionsDir,`${path9}.func`);try{let link=await fs11.readlink(fnDir),target=(0,import_path17.join)((0,import_path17.dirname)(path9),link).slice(0,-5);functionSymlinks.set(path9,target)}catch(err){if(err.code!=="EINVAL")throw err;let funcConfigPath=(0,import_path17.join)(fnDir,".vc-config.json"),funcConfig=await maybeReadJSON(funcConfigPath);if(!funcConfig)throw new Error(`Could not load function config: "${funcConfigPath}"`);let files=await glob("**",{cwd:fnDir,includeDirectories:!0});if(delete files[".vc-config.json"],funcConfig.type==="EdgeFunction"||funcConfig.runtime==="edge"){output[path9]=await deserializeEdgeFunction(files,funcConfig,repoRootPath,fileFsRefsCache);continue}lambda=await deserializeLambda2(files,funcConfig,repoRootPath,fileFsRefsCache,{useOnlyStreamingLambda,forceNodejsStreaming}),inspectSerializedLambda&&(hasServerActions=await inspectSerializedLambda(path9,funcConfig,repoRootPath,hasServerActions))}let prerenderConfigPath=(0,import_path17.join)(functionsDir,`${path9}.prerender-config.json`),prerenderConfig=await maybeReadJSON(prerenderConfigPath);if(prerenderConfig){let fallback=await deserializePrerenderFallback(prerenderConfigPath,prerenderConfig.fallback),prerender=new Prerender({...prerenderConfig,lambda,fallback});prerenders.set(path9,prerender)}else lambda&&(output[path9]=lambda)}applyFunctionSymlinks(output,prerenders,functionSymlinks),appendSortedPrerenders(output,prerenders);let groupedLambdas=await groupLambdas(getBundleableLambdas(output),{force:void 0,maxBundleSizeMb,debug:debugGroupLambdas});applyGroupedLambdas(output,groupedLambdas);let framework=validateFrameworkVersion(config?.framework),meta=getMeta?.(hasServerActions);return{wildcard:config.wildcard,images:config.images,crons:config.crons,flags:flags||config.flags,routes:config.routes,afterCacheBypass:config.afterCacheBypass,output,framework,...includeDeploymentId?{deploymentId:config.deploymentId}:{},...meta!==void 0?{meta}:{}}}var fs11,import_path17,MAX_DEPLOYMENT_ID_LENGTH,VALID_DEPLOYMENT_ID_PATTERN,init_deserialize_build_output=__esm({"src/deserialize/deserialize-build-output.ts"(){"use strict";fs11=__toESM(require_lib()),import_path17=require("path");init_errors();init_file_fs_ref();init_glob();init_prerender();init_create_functions_iterator();init_deserialize_edge_function();init_maybe_read_json();init_validate_framework_version();MAX_DEPLOYMENT_ID_LENGTH=32,VALID_DEPLOYMENT_ID_PATTERN=/^[a-zA-Z0-9_-]+$/}});var deserialize_lambda_exports={};__export(deserialize_lambda_exports,{deserializeLambda:()=>deserializeLambda});async function deserializeLambda(files,config,repoRootPath,fileFsRefsCache,options){let LambdaCtor=options?.LambdaClass??Lambda,NodejsLambdaCtor=options?.NodejsLambdaClass??NodejsLambda;config.filePathMap&&await hydrateFilesMap(files,config.filePathMap,repoRootPath,fileFsRefsCache);let supportsResponseStreaming=config.supportsResponseStreaming??config.experimentalResponseStreaming;if("launcherType"in config&&config.launcherType==="Nodejs"){let overrideResponseStreaming=(options?.useOnlyStreamingLambda||options?.forceNodejsStreaming)&&(config.awsLambdaHandler===void 0||config.awsLambdaHandler==="");return new NodejsLambdaCtor({...config,supportsResponseStreaming:overrideResponseStreaming||supportsResponseStreaming,files})}return new LambdaCtor({...config,supportsResponseStreaming,files})}var init_deserialize_lambda=__esm({"src/deserialize/deserialize-lambda.ts"(){"use strict";init_lambda();init_nodejs_lambda();init_hydrate_files_map()}});var validate_regular_file_exports={};__export(validate_regular_file_exports,{validateRegularFile:()=>validateRegularFile});async function validateRegularFile(file){if("fsPath"in file&&typeof file.fsPath=="string"){let stat2=await(0,import_fs_extra12.lstat)(file.fsPath);if(!stat2.isFile()&&!stat2.isDirectory()&&!stat2.isSymbolicLink())throw new NowBuildError({message:`Output file path is actually not a (regular) file: \`${file.fsPath}\``,code:"OUTPUT_FILE_IS_NOT_REGULAR_FILE"});return stat2}return null}var import_fs_extra12,init_validate_regular_file=__esm({"src/collect-build-result/validate-regular-file.ts"(){"use strict";init_errors();import_fs_extra12=__toESM(require_lib())}});var validate_prerender_exports={};__export(validate_prerender_exports,{validatePrerender:()=>validatePrerender});function validatePrerender(prerender){if(typeof prerender.lambda>"u")throw new Error('Prerender "buildResult" is missing "lambda" property')}var init_validate_prerender=__esm({"src/collect-build-result/validate-prerender.ts"(){"use strict"}});var require_db=__commonJS({"../../node_modules/.pnpm/mime-db@1.45.0/node_modules/mime-db/db.json"(exports2,module2){module2.exports={"application/1d-interleaved-parityfec":{source:"iana"},"application/3gpdash-qoe-report+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/3gpp-ims+xml":{source:"iana",compressible:!0},"application/a2l":{source:"iana"},"application/activemessage":{source:"iana"},"application/activity+json":{source:"iana",compressible:!0},"application/alto-costmap+json":{source:"iana",compressible:!0},"application/alto-costmapfilter+json":{source:"iana",compressible:!0},"application/alto-directory+json":{source:"iana",compressible:!0},"application/alto-endpointcost+json":{source:"iana",compressible:!0},"application/alto-endpointcostparams+json":{source:"iana",compressible:!0},"application/alto-endpointprop+json":{source:"iana",compressible:!0},"application/alto-endpointpropparams+json":{source:"iana",compressible:!0},"application/alto-error+json":{source:"iana",compressible:!0},"application/alto-networkmap+json":{source:"iana",compressible:!0},"application/alto-networkmapfilter+json":{source:"iana",compressible:!0},"application/alto-updatestreamcontrol+json":{source:"iana",compressible:!0},"application/alto-updatestreamparams+json":{source:"iana",compressible:!0},"application/aml":{source:"iana"},"application/andrew-inset":{source:"iana",extensions:["ez"]},"application/applefile":{source:"iana"},"application/applixware":{source:"apache",extensions:["aw"]},"application/atf":{source:"iana"},"application/atfx":{source:"iana"},"application/atom+xml":{source:"iana",compressible:!0,extensions:["atom"]},"application/atomcat+xml":{source:"iana",compressible:!0,extensions:["atomcat"]},"application/atomdeleted+xml":{source:"iana",compressible:!0,extensions:["atomdeleted"]},"application/atomicmail":{source:"iana"},"application/atomsvc+xml":{source:"iana",compressible:!0,extensions:["atomsvc"]},"application/atsc-dwd+xml":{source:"iana",compressible:!0,extensions:["dwd"]},"application/atsc-dynamic-event-message":{source:"iana"},"application/atsc-held+xml":{source:"iana",compressible:!0,extensions:["held"]},"application/atsc-rdt+json":{source:"iana",compressible:!0},"application/atsc-rsat+xml":{source:"iana",compressible:!0,extensions:["rsat"]},"application/atxml":{source:"iana"},"application/auth-policy+xml":{source:"iana",compressible:!0},"application/bacnet-xdd+zip":{source:"iana",compressible:!1},"application/batch-smtp":{source:"iana"},"application/bdoc":{compressible:!1,extensions:["bdoc"]},"application/beep+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/calendar+json":{source:"iana",compressible:!0},"application/calendar+xml":{source:"iana",compressible:!0,extensions:["xcs"]},"application/call-completion":{source:"iana"},"application/cals-1840":{source:"iana"},"application/captive+json":{source:"iana",compressible:!0},"application/cbor":{source:"iana"},"application/cbor-seq":{source:"iana"},"application/cccex":{source:"iana"},"application/ccmp+xml":{source:"iana",compressible:!0},"application/ccxml+xml":{source:"iana",compressible:!0,extensions:["ccxml"]},"application/cdfx+xml":{source:"iana",compressible:!0,extensions:["cdfx"]},"application/cdmi-capability":{source:"iana",extensions:["cdmia"]},"application/cdmi-container":{source:"iana",extensions:["cdmic"]},"application/cdmi-domain":{source:"iana",extensions:["cdmid"]},"application/cdmi-object":{source:"iana",extensions:["cdmio"]},"application/cdmi-queue":{source:"iana",extensions:["cdmiq"]},"application/cdni":{source:"iana"},"application/cea":{source:"iana"},"application/cea-2018+xml":{source:"iana",compressible:!0},"application/cellml+xml":{source:"iana",compressible:!0},"application/cfw":{source:"iana"},"application/clue+xml":{source:"iana",compressible:!0},"application/clue_info+xml":{source:"iana",compressible:!0},"application/cms":{source:"iana"},"application/cnrp+xml":{source:"iana",compressible:!0},"application/coap-group+json":{source:"iana",compressible:!0},"application/coap-payload":{source:"iana"},"application/commonground":{source:"iana"},"application/conference-info+xml":{source:"iana",compressible:!0},"application/cose":{source:"iana"},"application/cose-key":{source:"iana"},"application/cose-key-set":{source:"iana"},"application/cpl+xml":{source:"iana",compressible:!0},"application/csrattrs":{source:"iana"},"application/csta+xml":{source:"iana",compressible:!0},"application/cstadata+xml":{source:"iana",compressible:!0},"application/csvm+json":{source:"iana",compressible:!0},"application/cu-seeme":{source:"apache",extensions:["cu"]},"application/cwt":{source:"iana"},"application/cybercash":{source:"iana"},"application/dart":{compressible:!0},"application/dash+xml":{source:"iana",compressible:!0,extensions:["mpd"]},"application/dashdelta":{source:"iana"},"application/davmount+xml":{source:"iana",compressible:!0,extensions:["davmount"]},"application/dca-rft":{source:"iana"},"application/dcd":{source:"iana"},"application/dec-dx":{source:"iana"},"application/dialog-info+xml":{source:"iana",compressible:!0},"application/dicom":{source:"iana"},"application/dicom+json":{source:"iana",compressible:!0},"application/dicom+xml":{source:"iana",compressible:!0},"application/dii":{source:"iana"},"application/dit":{source:"iana"},"application/dns":{source:"iana"},"application/dns+json":{source:"iana",compressible:!0},"application/dns-message":{source:"iana"},"application/docbook+xml":{source:"apache",compressible:!0,extensions:["dbk"]},"application/dots+cbor":{source:"iana"},"application/dskpp+xml":{source:"iana",compressible:!0},"application/dssc+der":{source:"iana",extensions:["dssc"]},"application/dssc+xml":{source:"iana",compressible:!0,extensions:["xdssc"]},"application/dvcs":{source:"iana"},"application/ecmascript":{source:"iana",compressible:!0,extensions:["ecma","es"]},"application/edi-consent":{source:"iana"},"application/edi-x12":{source:"iana",compressible:!1},"application/edifact":{source:"iana",compressible:!1},"application/efi":{source:"iana"},"application/emergencycalldata.cap+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/emergencycalldata.comment+xml":{source:"iana",compressible:!0},"application/emergencycalldata.control+xml":{source:"iana",compressible:!0},"application/emergencycalldata.deviceinfo+xml":{source:"iana",compressible:!0},"application/emergencycalldata.ecall.msd":{source:"iana"},"application/emergencycalldata.providerinfo+xml":{source:"iana",compressible:!0},"application/emergencycalldata.serviceinfo+xml":{source:"iana",compressible:!0},"application/emergencycalldata.subscriberinfo+xml":{source:"iana",compressible:!0},"application/emergencycalldata.veds+xml":{source:"iana",compressible:!0},"application/emma+xml":{source:"iana",compressible:!0,extensions:["emma"]},"application/emotionml+xml":{source:"iana",compressible:!0,extensions:["emotionml"]},"application/encaprtp":{source:"iana"},"application/epp+xml":{source:"iana",compressible:!0},"application/epub+zip":{source:"iana",compressible:!1,extensions:["epub"]},"application/eshop":{source:"iana"},"application/exi":{source:"iana",extensions:["exi"]},"application/expect-ct-report+json":{source:"iana",compressible:!0},"application/fastinfoset":{source:"iana"},"application/fastsoap":{source:"iana"},"application/fdt+xml":{source:"iana",compressible:!0,extensions:["fdt"]},"application/fhir+json":{source:"iana",charset:"UTF-8",compressible:!0},"application/fhir+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/fido.trusted-apps+json":{compressible:!0},"application/fits":{source:"iana"},"application/flexfec":{source:"iana"},"application/font-sfnt":{source:"iana"},"application/font-tdpfr":{source:"iana",extensions:["pfr"]},"application/font-woff":{source:"iana",compressible:!1},"application/framework-attributes+xml":{source:"iana",compressible:!0},"application/geo+json":{source:"iana",compressible:!0,extensions:["geojson"]},"application/geo+json-seq":{source:"iana"},"application/geopackage+sqlite3":{source:"iana"},"application/geoxacml+xml":{source:"iana",compressible:!0},"application/gltf-buffer":{source:"iana"},"application/gml+xml":{source:"iana",compressible:!0,extensions:["gml"]},"application/gpx+xml":{source:"apache",compressible:!0,extensions:["gpx"]},"application/gxf":{source:"apache",extensions:["gxf"]},"application/gzip":{source:"iana",compressible:!1,extensions:["gz"]},"application/h224":{source:"iana"},"application/held+xml":{source:"iana",compressible:!0},"application/hjson":{extensions:["hjson"]},"application/http":{source:"iana"},"application/hyperstudio":{source:"iana",extensions:["stk"]},"application/ibe-key-request+xml":{source:"iana",compressible:!0},"application/ibe-pkg-reply+xml":{source:"iana",compressible:!0},"application/ibe-pp-data":{source:"iana"},"application/iges":{source:"iana"},"application/im-iscomposing+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/index":{source:"iana"},"application/index.cmd":{source:"iana"},"application/index.obj":{source:"iana"},"application/index.response":{source:"iana"},"application/index.vnd":{source:"iana"},"application/inkml+xml":{source:"iana",compressible:!0,extensions:["ink","inkml"]},"application/iotp":{source:"iana"},"application/ipfix":{source:"iana",extensions:["ipfix"]},"application/ipp":{source:"iana"},"application/isup":{source:"iana"},"application/its+xml":{source:"iana",compressible:!0,extensions:["its"]},"application/java-archive":{source:"apache",compressible:!1,extensions:["jar","war","ear"]},"application/java-serialized-object":{source:"apache",compressible:!1,extensions:["ser"]},"application/java-vm":{source:"apache",compressible:!1,extensions:["class"]},"application/javascript":{source:"iana",charset:"UTF-8",compressible:!0,extensions:["js","mjs"]},"application/jf2feed+json":{source:"iana",compressible:!0},"application/jose":{source:"iana"},"application/jose+json":{source:"iana",compressible:!0},"application/jrd+json":{source:"iana",compressible:!0},"application/json":{source:"iana",charset:"UTF-8",compressible:!0,extensions:["json","map"]},"application/json-patch+json":{source:"iana",compressible:!0},"application/json-seq":{source:"iana"},"application/json5":{extensions:["json5"]},"application/jsonml+json":{source:"apache",compressible:!0,extensions:["jsonml"]},"application/jwk+json":{source:"iana",compressible:!0},"application/jwk-set+json":{source:"iana",compressible:!0},"application/jwt":{source:"iana"},"application/kpml-request+xml":{source:"iana",compressible:!0},"application/kpml-response+xml":{source:"iana",compressible:!0},"application/ld+json":{source:"iana",compressible:!0,extensions:["jsonld"]},"application/lgr+xml":{source:"iana",compressible:!0,extensions:["lgr"]},"application/link-format":{source:"iana"},"application/load-control+xml":{source:"iana",compressible:!0},"application/lost+xml":{source:"iana",compressible:!0,extensions:["lostxml"]},"application/lostsync+xml":{source:"iana",compressible:!0},"application/lpf+zip":{source:"iana",compressible:!1},"application/lxf":{source:"iana"},"application/mac-binhex40":{source:"iana",extensions:["hqx"]},"application/mac-compactpro":{source:"apache",extensions:["cpt"]},"application/macwriteii":{source:"iana"},"application/mads+xml":{source:"iana",compressible:!0,extensions:["mads"]},"application/manifest+json":{charset:"UTF-8",compressible:!0,extensions:["webmanifest"]},"application/marc":{source:"iana",extensions:["mrc"]},"application/marcxml+xml":{source:"iana",compressible:!0,extensions:["mrcx"]},"application/mathematica":{source:"iana",extensions:["ma","nb","mb"]},"application/mathml+xml":{source:"iana",compressible:!0,extensions:["mathml"]},"application/mathml-content+xml":{source:"iana",compressible:!0},"application/mathml-presentation+xml":{source:"iana",compressible:!0},"application/mbms-associated-procedure-description+xml":{source:"iana",compressible:!0},"application/mbms-deregister+xml":{source:"iana",compressible:!0},"application/mbms-envelope+xml":{source:"iana",compressible:!0},"application/mbms-msk+xml":{source:"iana",compressible:!0},"application/mbms-msk-response+xml":{source:"iana",compressible:!0},"application/mbms-protection-description+xml":{source:"iana",compressible:!0},"application/mbms-reception-report+xml":{source:"iana",compressible:!0},"application/mbms-register+xml":{source:"iana",compressible:!0},"application/mbms-register-response+xml":{source:"iana",compressible:!0},"application/mbms-schedule+xml":{source:"iana",compressible:!0},"application/mbms-user-service-description+xml":{source:"iana",compressible:!0},"application/mbox":{source:"iana",extensions:["mbox"]},"application/media-policy-dataset+xml":{source:"iana",compressible:!0},"application/media_control+xml":{source:"iana",compressible:!0},"application/mediaservercontrol+xml":{source:"iana",compressible:!0,extensions:["mscml"]},"application/merge-patch+json":{source:"iana",compressible:!0},"application/metalink+xml":{source:"apache",compressible:!0,extensions:["metalink"]},"application/metalink4+xml":{source:"iana",compressible:!0,extensions:["meta4"]},"application/mets+xml":{source:"iana",compressible:!0,extensions:["mets"]},"application/mf4":{source:"iana"},"application/mikey":{source:"iana"},"application/mipc":{source:"iana"},"application/mmt-aei+xml":{source:"iana",compressible:!0,extensions:["maei"]},"application/mmt-usd+xml":{source:"iana",compressible:!0,extensions:["musd"]},"application/mods+xml":{source:"iana",compressible:!0,extensions:["mods"]},"application/moss-keys":{source:"iana"},"application/moss-signature":{source:"iana"},"application/mosskey-data":{source:"iana"},"application/mosskey-request":{source:"iana"},"application/mp21":{source:"iana",extensions:["m21","mp21"]},"application/mp4":{source:"iana",extensions:["mp4s","m4p"]},"application/mpeg4-generic":{source:"iana"},"application/mpeg4-iod":{source:"iana"},"application/mpeg4-iod-xmt":{source:"iana"},"application/mrb-consumer+xml":{source:"iana",compressible:!0,extensions:["xdf"]},"application/mrb-publish+xml":{source:"iana",compressible:!0,extensions:["xdf"]},"application/msc-ivr+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/msc-mixer+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/msword":{source:"iana",compressible:!1,extensions:["doc","dot"]},"application/mud+json":{source:"iana",compressible:!0},"application/multipart-core":{source:"iana"},"application/mxf":{source:"iana",extensions:["mxf"]},"application/n-quads":{source:"iana",extensions:["nq"]},"application/n-triples":{source:"iana",extensions:["nt"]},"application/nasdata":{source:"iana"},"application/news-checkgroups":{source:"iana",charset:"US-ASCII"},"application/news-groupinfo":{source:"iana",charset:"US-ASCII"},"application/news-transmission":{source:"iana"},"application/nlsml+xml":{source:"iana",compressible:!0},"application/node":{source:"iana",extensions:["cjs"]},"application/nss":{source:"iana"},"application/ocsp-request":{source:"iana"},"application/ocsp-response":{source:"iana"},"application/octet-stream":{source:"iana",compressible:!1,extensions:["bin","dms","lrf","mar","so","dist","distz","pkg","bpk","dump","elc","deploy","exe","dll","deb","dmg","iso","img","msi","msp","msm","buffer"]},"application/oda":{source:"iana",extensions:["oda"]},"application/odm+xml":{source:"iana",compressible:!0},"application/odx":{source:"iana"},"application/oebps-package+xml":{source:"iana",compressible:!0,extensions:["opf"]},"application/ogg":{source:"iana",compressible:!1,extensions:["ogx"]},"application/omdoc+xml":{source:"apache",compressible:!0,extensions:["omdoc"]},"application/onenote":{source:"apache",extensions:["onetoc","onetoc2","onetmp","onepkg"]},"application/opc-nodeset+xml":{source:"iana",compressible:!0},"application/oscore":{source:"iana"},"application/oxps":{source:"iana",extensions:["oxps"]},"application/p2p-overlay+xml":{source:"iana",compressible:!0,extensions:["relo"]},"application/parityfec":{source:"iana"},"application/passport":{source:"iana"},"application/patch-ops-error+xml":{source:"iana",compressible:!0,extensions:["xer"]},"application/pdf":{source:"iana",compressible:!1,extensions:["pdf"]},"application/pdx":{source:"iana"},"application/pem-certificate-chain":{source:"iana"},"application/pgp-encrypted":{source:"iana",compressible:!1,extensions:["pgp"]},"application/pgp-keys":{source:"iana"},"application/pgp-signature":{source:"iana",extensions:["asc","sig"]},"application/pics-rules":{source:"apache",extensions:["prf"]},"application/pidf+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/pidf-diff+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/pkcs10":{source:"iana",extensions:["p10"]},"application/pkcs12":{source:"iana"},"application/pkcs7-mime":{source:"iana",extensions:["p7m","p7c"]},"application/pkcs7-signature":{source:"iana",extensions:["p7s"]},"application/pkcs8":{source:"iana",extensions:["p8"]},"application/pkcs8-encrypted":{source:"iana"},"application/pkix-attr-cert":{source:"iana",extensions:["ac"]},"application/pkix-cert":{source:"iana",extensions:["cer"]},"application/pkix-crl":{source:"iana",extensions:["crl"]},"application/pkix-pkipath":{source:"iana",extensions:["pkipath"]},"application/pkixcmp":{source:"iana",extensions:["pki"]},"application/pls+xml":{source:"iana",compressible:!0,extensions:["pls"]},"application/poc-settings+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/postscript":{source:"iana",compressible:!0,extensions:["ai","eps","ps"]},"application/ppsp-tracker+json":{source:"iana",compressible:!0},"application/problem+json":{source:"iana",compressible:!0},"application/problem+xml":{source:"iana",compressible:!0},"application/provenance+xml":{source:"iana",compressible:!0,extensions:["provx"]},"application/prs.alvestrand.titrax-sheet":{source:"iana"},"application/prs.cww":{source:"iana",extensions:["cww"]},"application/prs.hpub+zip":{source:"iana",compressible:!1},"application/prs.nprend":{source:"iana"},"application/prs.plucker":{source:"iana"},"application/prs.rdf-xml-crypt":{source:"iana"},"application/prs.xsf+xml":{source:"iana",compressible:!0},"application/pskc+xml":{source:"iana",compressible:!0,extensions:["pskcxml"]},"application/pvd+json":{source:"iana",compressible:!0},"application/qsig":{source:"iana"},"application/raml+yaml":{compressible:!0,extensions:["raml"]},"application/raptorfec":{source:"iana"},"application/rdap+json":{source:"iana",compressible:!0},"application/rdf+xml":{source:"iana",compressible:!0,extensions:["rdf","owl"]},"application/reginfo+xml":{source:"iana",compressible:!0,extensions:["rif"]},"application/relax-ng-compact-syntax":{source:"iana",extensions:["rnc"]},"application/remote-printing":{source:"iana"},"application/reputon+json":{source:"iana",compressible:!0},"application/resource-lists+xml":{source:"iana",compressible:!0,extensions:["rl"]},"application/resource-lists-diff+xml":{source:"iana",compressible:!0,extensions:["rld"]},"application/rfc+xml":{source:"iana",compressible:!0},"application/riscos":{source:"iana"},"application/rlmi+xml":{source:"iana",compressible:!0},"application/rls-services+xml":{source:"iana",compressible:!0,extensions:["rs"]},"application/route-apd+xml":{source:"iana",compressible:!0,extensions:["rapd"]},"application/route-s-tsid+xml":{source:"iana",compressible:!0,extensions:["sls"]},"application/route-usd+xml":{source:"iana",compressible:!0,extensions:["rusd"]},"application/rpki-ghostbusters":{source:"iana",extensions:["gbr"]},"application/rpki-manifest":{source:"iana",extensions:["mft"]},"application/rpki-publication":{source:"iana"},"application/rpki-roa":{source:"iana",extensions:["roa"]},"application/rpki-updown":{source:"iana"},"application/rsd+xml":{source:"apache",compressible:!0,extensions:["rsd"]},"application/rss+xml":{source:"apache",compressible:!0,extensions:["rss"]},"application/rtf":{source:"iana",compressible:!0,extensions:["rtf"]},"application/rtploopback":{source:"iana"},"application/rtx":{source:"iana"},"application/samlassertion+xml":{source:"iana",compressible:!0},"application/samlmetadata+xml":{source:"iana",compressible:!0},"application/sarif+json":{source:"iana",compressible:!0},"application/sbe":{source:"iana"},"application/sbml+xml":{source:"iana",compressible:!0,extensions:["sbml"]},"application/scaip+xml":{source:"iana",compressible:!0},"application/scim+json":{source:"iana",compressible:!0},"application/scvp-cv-request":{source:"iana",extensions:["scq"]},"application/scvp-cv-response":{source:"iana",extensions:["scs"]},"application/scvp-vp-request":{source:"iana",extensions:["spq"]},"application/scvp-vp-response":{source:"iana",extensions:["spp"]},"application/sdp":{source:"iana",extensions:["sdp"]},"application/secevent+jwt":{source:"iana"},"application/senml+cbor":{source:"iana"},"application/senml+json":{source:"iana",compressible:!0},"application/senml+xml":{source:"iana",compressible:!0,extensions:["senmlx"]},"application/senml-etch+cbor":{source:"iana"},"application/senml-etch+json":{source:"iana",compressible:!0},"application/senml-exi":{source:"iana"},"application/sensml+cbor":{source:"iana"},"application/sensml+json":{source:"iana",compressible:!0},"application/sensml+xml":{source:"iana",compressible:!0,extensions:["sensmlx"]},"application/sensml-exi":{source:"iana"},"application/sep+xml":{source:"iana",compressible:!0},"application/sep-exi":{source:"iana"},"application/session-info":{source:"iana"},"application/set-payment":{source:"iana"},"application/set-payment-initiation":{source:"iana",extensions:["setpay"]},"application/set-registration":{source:"iana"},"application/set-registration-initiation":{source:"iana",extensions:["setreg"]},"application/sgml":{source:"iana"},"application/sgml-open-catalog":{source:"iana"},"application/shf+xml":{source:"iana",compressible:!0,extensions:["shf"]},"application/sieve":{source:"iana",extensions:["siv","sieve"]},"application/simple-filter+xml":{source:"iana",compressible:!0},"application/simple-message-summary":{source:"iana"},"application/simplesymbolcontainer":{source:"iana"},"application/sipc":{source:"iana"},"application/slate":{source:"iana"},"application/smil":{source:"iana"},"application/smil+xml":{source:"iana",compressible:!0,extensions:["smi","smil"]},"application/smpte336m":{source:"iana"},"application/soap+fastinfoset":{source:"iana"},"application/soap+xml":{source:"iana",compressible:!0},"application/sparql-query":{source:"iana",extensions:["rq"]},"application/sparql-results+xml":{source:"iana",compressible:!0,extensions:["srx"]},"application/spirits-event+xml":{source:"iana",compressible:!0},"application/sql":{source:"iana"},"application/srgs":{source:"iana",extensions:["gram"]},"application/srgs+xml":{source:"iana",compressible:!0,extensions:["grxml"]},"application/sru+xml":{source:"iana",compressible:!0,extensions:["sru"]},"application/ssdl+xml":{source:"apache",compressible:!0,extensions:["ssdl"]},"application/ssml+xml":{source:"iana",compressible:!0,extensions:["ssml"]},"application/stix+json":{source:"iana",compressible:!0},"application/swid+xml":{source:"iana",compressible:!0,extensions:["swidtag"]},"application/tamp-apex-update":{source:"iana"},"application/tamp-apex-update-confirm":{source:"iana"},"application/tamp-community-update":{source:"iana"},"application/tamp-community-update-confirm":{source:"iana"},"application/tamp-error":{source:"iana"},"application/tamp-sequence-adjust":{source:"iana"},"application/tamp-sequence-adjust-confirm":{source:"iana"},"application/tamp-status-query":{source:"iana"},"application/tamp-status-response":{source:"iana"},"application/tamp-update":{source:"iana"},"application/tamp-update-confirm":{source:"iana"},"application/tar":{compressible:!0},"application/taxii+json":{source:"iana",compressible:!0},"application/td+json":{source:"iana",compressible:!0},"application/tei+xml":{source:"iana",compressible:!0,extensions:["tei","teicorpus"]},"application/tetra_isi":{source:"iana"},"application/thraud+xml":{source:"iana",compressible:!0,extensions:["tfi"]},"application/timestamp-query":{source:"iana"},"application/timestamp-reply":{source:"iana"},"application/timestamped-data":{source:"iana",extensions:["tsd"]},"application/tlsrpt+gzip":{source:"iana"},"application/tlsrpt+json":{source:"iana",compressible:!0},"application/tnauthlist":{source:"iana"},"application/toml":{compressible:!0,extensions:["toml"]},"application/trickle-ice-sdpfrag":{source:"iana"},"application/trig":{source:"iana"},"application/ttml+xml":{source:"iana",compressible:!0,extensions:["ttml"]},"application/tve-trigger":{source:"iana"},"application/tzif":{source:"iana"},"application/tzif-leap":{source:"iana"},"application/ubjson":{compressible:!1,extensions:["ubj"]},"application/ulpfec":{source:"iana"},"application/urc-grpsheet+xml":{source:"iana",compressible:!0},"application/urc-ressheet+xml":{source:"iana",compressible:!0,extensions:["rsheet"]},"application/urc-targetdesc+xml":{source:"iana",compressible:!0,extensions:["td"]},"application/urc-uisocketdesc+xml":{source:"iana",compressible:!0},"application/vcard+json":{source:"iana",compressible:!0},"application/vcard+xml":{source:"iana",compressible:!0},"application/vemmi":{source:"iana"},"application/vividence.scriptfile":{source:"apache"},"application/vnd.1000minds.decision-model+xml":{source:"iana",compressible:!0,extensions:["1km"]},"application/vnd.3gpp-prose+xml":{source:"iana",compressible:!0},"application/vnd.3gpp-prose-pc3ch+xml":{source:"iana",compressible:!0},"application/vnd.3gpp-v2x-local-service-information":{source:"iana"},"application/vnd.3gpp.access-transfer-events+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.bsf+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.gmop+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mc-signalling-ear":{source:"iana"},"application/vnd.3gpp.mcdata-affiliation-command+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcdata-info+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcdata-payload":{source:"iana"},"application/vnd.3gpp.mcdata-service-config+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcdata-signalling":{source:"iana"},"application/vnd.3gpp.mcdata-ue-config+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcdata-user-profile+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcptt-affiliation-command+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcptt-floor-request+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcptt-info+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcptt-location-info+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcptt-mbms-usage-info+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcptt-service-config+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcptt-signed+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcptt-ue-config+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcptt-ue-init-config+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcptt-user-profile+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcvideo-affiliation-command+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcvideo-affiliation-info+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcvideo-info+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcvideo-location-info+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcvideo-mbms-usage-info+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcvideo-service-config+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcvideo-transmission-request+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcvideo-ue-config+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcvideo-user-profile+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mid-call+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.pic-bw-large":{source:"iana",extensions:["plb"]},"application/vnd.3gpp.pic-bw-small":{source:"iana",extensions:["psb"]},"application/vnd.3gpp.pic-bw-var":{source:"iana",extensions:["pvb"]},"application/vnd.3gpp.sms":{source:"iana"},"application/vnd.3gpp.sms+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.srvcc-ext+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.srvcc-info+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.state-and-event-info+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.ussd+xml":{source:"iana",compressible:!0},"application/vnd.3gpp2.bcmcsinfo+xml":{source:"iana",compressible:!0},"application/vnd.3gpp2.sms":{source:"iana"},"application/vnd.3gpp2.tcap":{source:"iana",extensions:["tcap"]},"application/vnd.3lightssoftware.imagescal":{source:"iana"},"application/vnd.3m.post-it-notes":{source:"iana",extensions:["pwn"]},"application/vnd.accpac.simply.aso":{source:"iana",extensions:["aso"]},"application/vnd.accpac.simply.imp":{source:"iana",extensions:["imp"]},"application/vnd.acucobol":{source:"iana",extensions:["acu"]},"application/vnd.acucorp":{source:"iana",extensions:["atc","acutc"]},"application/vnd.adobe.air-application-installer-package+zip":{source:"apache",compressible:!1,extensions:["air"]},"application/vnd.adobe.flash.movie":{source:"iana"},"application/vnd.adobe.formscentral.fcdt":{source:"iana",extensions:["fcdt"]},"application/vnd.adobe.fxp":{source:"iana",extensions:["fxp","fxpl"]},"application/vnd.adobe.partial-upload":{source:"iana"},"application/vnd.adobe.xdp+xml":{source:"iana",compressible:!0,extensions:["xdp"]},"application/vnd.adobe.xfdf":{source:"iana",extensions:["xfdf"]},"application/vnd.aether.imp":{source:"iana"},"application/vnd.afpc.afplinedata":{source:"iana"},"application/vnd.afpc.afplinedata-pagedef":{source:"iana"},"application/vnd.afpc.foca-charset":{source:"iana"},"application/vnd.afpc.foca-codedfont":{source:"iana"},"application/vnd.afpc.foca-codepage":{source:"iana"},"application/vnd.afpc.modca":{source:"iana"},"application/vnd.afpc.modca-formdef":{source:"iana"},"application/vnd.afpc.modca-mediummap":{source:"iana"},"application/vnd.afpc.modca-objectcontainer":{source:"iana"},"application/vnd.afpc.modca-overlay":{source:"iana"},"application/vnd.afpc.modca-pagesegment":{source:"iana"},"application/vnd.ah-barcode":{source:"iana"},"application/vnd.ahead.space":{source:"iana",extensions:["ahead"]},"application/vnd.airzip.filesecure.azf":{source:"iana",extensions:["azf"]},"application/vnd.airzip.filesecure.azs":{source:"iana",extensions:["azs"]},"application/vnd.amadeus+json":{source:"iana",compressible:!0},"application/vnd.amazon.ebook":{source:"apache",extensions:["azw"]},"application/vnd.amazon.mobi8-ebook":{source:"iana"},"application/vnd.americandynamics.acc":{source:"iana",extensions:["acc"]},"application/vnd.amiga.ami":{source:"iana",extensions:["ami"]},"application/vnd.amundsen.maze+xml":{source:"iana",compressible:!0},"application/vnd.android.ota":{source:"iana"},"application/vnd.android.package-archive":{source:"apache",compressible:!1,extensions:["apk"]},"application/vnd.anki":{source:"iana"},"application/vnd.anser-web-certificate-issue-initiation":{source:"iana",extensions:["cii"]},"application/vnd.anser-web-funds-transfer-initiation":{source:"apache",extensions:["fti"]},"application/vnd.antix.game-component":{source:"iana",extensions:["atx"]},"application/vnd.apache.thrift.binary":{source:"iana"},"application/vnd.apache.thrift.compact":{source:"iana"},"application/vnd.apache.thrift.json":{source:"iana"},"application/vnd.api+json":{source:"iana",compressible:!0},"application/vnd.aplextor.warrp+json":{source:"iana",compressible:!0},"application/vnd.apothekende.reservation+json":{source:"iana",compressible:!0},"application/vnd.apple.installer+xml":{source:"iana",compressible:!0,extensions:["mpkg"]},"application/vnd.apple.keynote":{source:"iana",extensions:["key"]},"application/vnd.apple.mpegurl":{source:"iana",extensions:["m3u8"]},"application/vnd.apple.numbers":{source:"iana",extensions:["numbers"]},"application/vnd.apple.pages":{source:"iana",extensions:["pages"]},"application/vnd.apple.pkpass":{compressible:!1,extensions:["pkpass"]},"application/vnd.arastra.swi":{source:"iana"},"application/vnd.aristanetworks.swi":{source:"iana",extensions:["swi"]},"application/vnd.artisan+json":{source:"iana",compressible:!0},"application/vnd.artsquare":{source:"iana"},"application/vnd.astraea-software.iota":{source:"iana",extensions:["iota"]},"application/vnd.audiograph":{source:"iana",extensions:["aep"]},"application/vnd.autopackage":{source:"iana"},"application/vnd.avalon+json":{source:"iana",compressible:!0},"application/vnd.avistar+xml":{source:"iana",compressible:!0},"application/vnd.balsamiq.bmml+xml":{source:"iana",compressible:!0,extensions:["bmml"]},"application/vnd.balsamiq.bmpr":{source:"iana"},"application/vnd.banana-accounting":{source:"iana"},"application/vnd.bbf.usp.error":{source:"iana"},"application/vnd.bbf.usp.msg":{source:"iana"},"application/vnd.bbf.usp.msg+json":{source:"iana",compressible:!0},"application/vnd.bekitzur-stech+json":{source:"iana",compressible:!0},"application/vnd.bint.med-content":{source:"iana"},"application/vnd.biopax.rdf+xml":{source:"iana",compressible:!0},"application/vnd.blink-idb-value-wrapper":{source:"iana"},"application/vnd.blueice.multipass":{source:"iana",extensions:["mpm"]},"application/vnd.bluetooth.ep.oob":{source:"iana"},"application/vnd.bluetooth.le.oob":{source:"iana"},"application/vnd.bmi":{source:"iana",extensions:["bmi"]},"application/vnd.bpf":{source:"iana"},"application/vnd.bpf3":{source:"iana"},"application/vnd.businessobjects":{source:"iana",extensions:["rep"]},"application/vnd.byu.uapi+json":{source:"iana",compressible:!0},"application/vnd.cab-jscript":{source:"iana"},"application/vnd.canon-cpdl":{source:"iana"},"application/vnd.canon-lips":{source:"iana"},"application/vnd.capasystems-pg+json":{source:"iana",compressible:!0},"application/vnd.cendio.thinlinc.clientconf":{source:"iana"},"application/vnd.century-systems.tcp_stream":{source:"iana"},"application/vnd.chemdraw+xml":{source:"iana",compressible:!0,extensions:["cdxml"]},"application/vnd.chess-pgn":{source:"iana"},"application/vnd.chipnuts.karaoke-mmd":{source:"iana",extensions:["mmd"]},"application/vnd.ciedi":{source:"iana"},"application/vnd.cinderella":{source:"iana",extensions:["cdy"]},"application/vnd.cirpack.isdn-ext":{source:"iana"},"application/vnd.citationstyles.style+xml":{source:"iana",compressible:!0,extensions:["csl"]},"application/vnd.claymore":{source:"iana",extensions:["cla"]},"application/vnd.cloanto.rp9":{source:"iana",extensions:["rp9"]},"application/vnd.clonk.c4group":{source:"iana",extensions:["c4g","c4d","c4f","c4p","c4u"]},"application/vnd.cluetrust.cartomobile-config":{source:"iana",extensions:["c11amc"]},"application/vnd.cluetrust.cartomobile-config-pkg":{source:"iana",extensions:["c11amz"]},"application/vnd.coffeescript":{source:"iana"},"application/vnd.collabio.xodocuments.document":{source:"iana"},"application/vnd.collabio.xodocuments.document-template":{source:"iana"},"application/vnd.collabio.xodocuments.presentation":{source:"iana"},"application/vnd.collabio.xodocuments.presentation-template":{source:"iana"},"application/vnd.collabio.xodocuments.spreadsheet":{source:"iana"},"application/vnd.collabio.xodocuments.spreadsheet-template":{source:"iana"},"application/vnd.collection+json":{source:"iana",compressible:!0},"application/vnd.collection.doc+json":{source:"iana",compressible:!0},"application/vnd.collection.next+json":{source:"iana",compressible:!0},"application/vnd.comicbook+zip":{source:"iana",compressible:!1},"application/vnd.comicbook-rar":{source:"iana"},"application/vnd.commerce-battelle":{source:"iana"},"application/vnd.commonspace":{source:"iana",extensions:["csp"]},"application/vnd.contact.cmsg":{source:"iana",extensions:["cdbcmsg"]},"application/vnd.coreos.ignition+json":{source:"iana",compressible:!0},"application/vnd.cosmocaller":{source:"iana",extensions:["cmc"]},"application/vnd.crick.clicker":{source:"iana",extensions:["clkx"]},"application/vnd.crick.clicker.keyboard":{source:"iana",extensions:["clkk"]},"application/vnd.crick.clicker.palette":{source:"iana",extensions:["clkp"]},"application/vnd.crick.clicker.template":{source:"iana",extensions:["clkt"]},"application/vnd.crick.clicker.wordbank":{source:"iana",extensions:["clkw"]},"application/vnd.criticaltools.wbs+xml":{source:"iana",compressible:!0,extensions:["wbs"]},"application/vnd.cryptii.pipe+json":{source:"iana",compressible:!0},"application/vnd.crypto-shade-file":{source:"iana"},"application/vnd.ctc-posml":{source:"iana",extensions:["pml"]},"application/vnd.ctct.ws+xml":{source:"iana",compressible:!0},"application/vnd.cups-pdf":{source:"iana"},"application/vnd.cups-postscript":{source:"iana"},"application/vnd.cups-ppd":{source:"iana",extensions:["ppd"]},"application/vnd.cups-raster":{source:"iana"},"application/vnd.cups-raw":{source:"iana"},"application/vnd.curl":{source:"iana"},"application/vnd.curl.car":{source:"apache",extensions:["car"]},"application/vnd.curl.pcurl":{source:"apache",extensions:["pcurl"]},"application/vnd.cyan.dean.root+xml":{source:"iana",compressible:!0},"application/vnd.cybank":{source:"iana"},"application/vnd.d2l.coursepackage1p0+zip":{source:"iana",compressible:!1},"application/vnd.d3m-dataset":{source:"iana"},"application/vnd.d3m-problem":{source:"iana"},"application/vnd.dart":{source:"iana",compressible:!0,extensions:["dart"]},"application/vnd.data-vision.rdz":{source:"iana",extensions:["rdz"]},"application/vnd.datapackage+json":{source:"iana",compressible:!0},"application/vnd.dataresource+json":{source:"iana",compressible:!0},"application/vnd.dbf":{source:"iana",extensions:["dbf"]},"application/vnd.debian.binary-package":{source:"iana"},"application/vnd.dece.data":{source:"iana",extensions:["uvf","uvvf","uvd","uvvd"]},"application/vnd.dece.ttml+xml":{source:"iana",compressible:!0,extensions:["uvt","uvvt"]},"application/vnd.dece.unspecified":{source:"iana",extensions:["uvx","uvvx"]},"application/vnd.dece.zip":{source:"iana",extensions:["uvz","uvvz"]},"application/vnd.denovo.fcselayout-link":{source:"iana",extensions:["fe_launch"]},"application/vnd.desmume.movie":{source:"iana"},"application/vnd.dir-bi.plate-dl-nosuffix":{source:"iana"},"application/vnd.dm.delegation+xml":{source:"iana",compressible:!0},"application/vnd.dna":{source:"iana",extensions:["dna"]},"application/vnd.document+json":{source:"iana",compressible:!0},"application/vnd.dolby.mlp":{source:"apache",extensions:["mlp"]},"application/vnd.dolby.mobile.1":{source:"iana"},"application/vnd.dolby.mobile.2":{source:"iana"},"application/vnd.doremir.scorecloud-binary-document":{source:"iana"},"application/vnd.dpgraph":{source:"iana",extensions:["dpg"]},"application/vnd.dreamfactory":{source:"iana",extensions:["dfac"]},"application/vnd.drive+json":{source:"iana",compressible:!0},"application/vnd.ds-keypoint":{source:"apache",extensions:["kpxx"]},"application/vnd.dtg.local":{source:"iana"},"application/vnd.dtg.local.flash":{source:"iana"},"application/vnd.dtg.local.html":{source:"iana"},"application/vnd.dvb.ait":{source:"iana",extensions:["ait"]},"application/vnd.dvb.dvbisl+xml":{source:"iana",compressible:!0},"application/vnd.dvb.dvbj":{source:"iana"},"application/vnd.dvb.esgcontainer":{source:"iana"},"application/vnd.dvb.ipdcdftnotifaccess":{source:"iana"},"application/vnd.dvb.ipdcesgaccess":{source:"iana"},"application/vnd.dvb.ipdcesgaccess2":{source:"iana"},"application/vnd.dvb.ipdcesgpdd":{source:"iana"},"application/vnd.dvb.ipdcroaming":{source:"iana"},"application/vnd.dvb.iptv.alfec-base":{source:"iana"},"application/vnd.dvb.iptv.alfec-enhancement":{source:"iana"},"application/vnd.dvb.notif-aggregate-root+xml":{source:"iana",compressible:!0},"application/vnd.dvb.notif-container+xml":{source:"iana",compressible:!0},"application/vnd.dvb.notif-generic+xml":{source:"iana",compressible:!0},"application/vnd.dvb.notif-ia-msglist+xml":{source:"iana",compressible:!0},"application/vnd.dvb.notif-ia-registration-request+xml":{source:"iana",compressible:!0},"application/vnd.dvb.notif-ia-registration-response+xml":{source:"iana",compressible:!0},"application/vnd.dvb.notif-init+xml":{source:"iana",compressible:!0},"application/vnd.dvb.pfr":{source:"iana"},"application/vnd.dvb.service":{source:"iana",extensions:["svc"]},"application/vnd.dxr":{source:"iana"},"application/vnd.dynageo":{source:"iana",extensions:["geo"]},"application/vnd.dzr":{source:"iana"},"application/vnd.easykaraoke.cdgdownload":{source:"iana"},"application/vnd.ecdis-update":{source:"iana"},"application/vnd.ecip.rlp":{source:"iana"},"application/vnd.ecowin.chart":{source:"iana",extensions:["mag"]},"application/vnd.ecowin.filerequest":{source:"iana"},"application/vnd.ecowin.fileupdate":{source:"iana"},"application/vnd.ecowin.series":{source:"iana"},"application/vnd.ecowin.seriesrequest":{source:"iana"},"application/vnd.ecowin.seriesupdate":{source:"iana"},"application/vnd.efi.img":{source:"iana"},"application/vnd.efi.iso":{source:"iana"},"application/vnd.emclient.accessrequest+xml":{source:"iana",compressible:!0},"application/vnd.enliven":{source:"iana",extensions:["nml"]},"application/vnd.enphase.envoy":{source:"iana"},"application/vnd.eprints.data+xml":{source:"iana",compressible:!0},"application/vnd.epson.esf":{source:"iana",extensions:["esf"]},"application/vnd.epson.msf":{source:"iana",extensions:["msf"]},"application/vnd.epson.quickanime":{source:"iana",extensions:["qam"]},"application/vnd.epson.salt":{source:"iana",extensions:["slt"]},"application/vnd.epson.ssf":{source:"iana",extensions:["ssf"]},"application/vnd.ericsson.quickcall":{source:"iana"},"application/vnd.espass-espass+zip":{source:"iana",compressible:!1},"application/vnd.eszigno3+xml":{source:"iana",compressible:!0,extensions:["es3","et3"]},"application/vnd.etsi.aoc+xml":{source:"iana",compressible:!0},"application/vnd.etsi.asic-e+zip":{source:"iana",compressible:!1},"application/vnd.etsi.asic-s+zip":{source:"iana",compressible:!1},"application/vnd.etsi.cug+xml":{source:"iana",compressible:!0},"application/vnd.etsi.iptvcommand+xml":{source:"iana",compressible:!0},"application/vnd.etsi.iptvdiscovery+xml":{source:"iana",compressible:!0},"application/vnd.etsi.iptvprofile+xml":{source:"iana",compressible:!0},"application/vnd.etsi.iptvsad-bc+xml":{source:"iana",compressible:!0},"application/vnd.etsi.iptvsad-cod+xml":{source:"iana",compressible:!0},"application/vnd.etsi.iptvsad-npvr+xml":{source:"iana",compressible:!0},"application/vnd.etsi.iptvservice+xml":{source:"iana",compressible:!0},"application/vnd.etsi.iptvsync+xml":{source:"iana",compressible:!0},"application/vnd.etsi.iptvueprofile+xml":{source:"iana",compressible:!0},"application/vnd.etsi.mcid+xml":{source:"iana",compressible:!0},"application/vnd.etsi.mheg5":{source:"iana"},"application/vnd.etsi.overload-control-policy-dataset+xml":{source:"iana",compressible:!0},"application/vnd.etsi.pstn+xml":{source:"iana",compressible:!0},"application/vnd.etsi.sci+xml":{source:"iana",compressible:!0},"application/vnd.etsi.simservs+xml":{source:"iana",compressible:!0},"application/vnd.etsi.timestamp-token":{source:"iana"},"application/vnd.etsi.tsl+xml":{source:"iana",compressible:!0},"application/vnd.etsi.tsl.der":{source:"iana"},"application/vnd.eudora.data":{source:"iana"},"application/vnd.evolv.ecig.profile":{source:"iana"},"application/vnd.evolv.ecig.settings":{source:"iana"},"application/vnd.evolv.ecig.theme":{source:"iana"},"application/vnd.exstream-empower+zip":{source:"iana",compressible:!1},"application/vnd.exstream-package":{source:"iana"},"application/vnd.ezpix-album":{source:"iana",extensions:["ez2"]},"application/vnd.ezpix-package":{source:"iana",extensions:["ez3"]},"application/vnd.f-secure.mobile":{source:"iana"},"application/vnd.fastcopy-disk-image":{source:"iana"},"application/vnd.fdf":{source:"iana",extensions:["fdf"]},"application/vnd.fdsn.mseed":{source:"iana",extensions:["mseed"]},"application/vnd.fdsn.seed":{source:"iana",extensions:["seed","dataless"]},"application/vnd.ffsns":{source:"iana"},"application/vnd.ficlab.flb+zip":{source:"iana",compressible:!1},"application/vnd.filmit.zfc":{source:"iana"},"application/vnd.fints":{source:"iana"},"application/vnd.firemonkeys.cloudcell":{source:"iana"},"application/vnd.flographit":{source:"iana",extensions:["gph"]},"application/vnd.fluxtime.clip":{source:"iana",extensions:["ftc"]},"application/vnd.font-fontforge-sfd":{source:"iana"},"application/vnd.framemaker":{source:"iana",extensions:["fm","frame","maker","book"]},"application/vnd.frogans.fnc":{source:"iana",extensions:["fnc"]},"application/vnd.frogans.ltf":{source:"iana",extensions:["ltf"]},"application/vnd.fsc.weblaunch":{source:"iana",extensions:["fsc"]},"application/vnd.fujitsu.oasys":{source:"iana",extensions:["oas"]},"application/vnd.fujitsu.oasys2":{source:"iana",extensions:["oa2"]},"application/vnd.fujitsu.oasys3":{source:"iana",extensions:["oa3"]},"application/vnd.fujitsu.oasysgp":{source:"iana",extensions:["fg5"]},"application/vnd.fujitsu.oasysprs":{source:"iana",extensions:["bh2"]},"application/vnd.fujixerox.art-ex":{source:"iana"},"application/vnd.fujixerox.art4":{source:"iana"},"application/vnd.fujixerox.ddd":{source:"iana",extensions:["ddd"]},"application/vnd.fujixerox.docuworks":{source:"iana",extensions:["xdw"]},"application/vnd.fujixerox.docuworks.binder":{source:"iana",extensions:["xbd"]},"application/vnd.fujixerox.docuworks.container":{source:"iana"},"application/vnd.fujixerox.hbpl":{source:"iana"},"application/vnd.fut-misnet":{source:"iana"},"application/vnd.futoin+cbor":{source:"iana"},"application/vnd.futoin+json":{source:"iana",compressible:!0},"application/vnd.fuzzysheet":{source:"iana",extensions:["fzs"]},"application/vnd.genomatix.tuxedo":{source:"iana",extensions:["txd"]},"application/vnd.gentics.grd+json":{source:"iana",compressible:!0},"application/vnd.geo+json":{source:"iana",compressible:!0},"application/vnd.geocube+xml":{source:"iana",compressible:!0},"application/vnd.geogebra.file":{source:"iana",extensions:["ggb"]},"application/vnd.geogebra.tool":{source:"iana",extensions:["ggt"]},"application/vnd.geometry-explorer":{source:"iana",extensions:["gex","gre"]},"application/vnd.geonext":{source:"iana",extensions:["gxt"]},"application/vnd.geoplan":{source:"iana",extensions:["g2w"]},"application/vnd.geospace":{source:"iana",extensions:["g3w"]},"application/vnd.gerber":{source:"iana"},"application/vnd.globalplatform.card-content-mgt":{source:"iana"},"application/vnd.globalplatform.card-content-mgt-response":{source:"iana"},"application/vnd.gmx":{source:"iana",extensions:["gmx"]},"application/vnd.google-apps.document":{compressible:!1,extensions:["gdoc"]},"application/vnd.google-apps.presentation":{compressible:!1,extensions:["gslides"]},"application/vnd.google-apps.spreadsheet":{compressible:!1,extensions:["gsheet"]},"application/vnd.google-earth.kml+xml":{source:"iana",compressible:!0,extensions:["kml"]},"application/vnd.google-earth.kmz":{source:"iana",compressible:!1,extensions:["kmz"]},"application/vnd.gov.sk.e-form+xml":{source:"iana",compressible:!0},"application/vnd.gov.sk.e-form+zip":{source:"iana",compressible:!1},"application/vnd.gov.sk.xmldatacontainer+xml":{source:"iana",compressible:!0},"application/vnd.grafeq":{source:"iana",extensions:["gqf","gqs"]},"application/vnd.gridmp":{source:"iana"},"application/vnd.groove-account":{source:"iana",extensions:["gac"]},"application/vnd.groove-help":{source:"iana",extensions:["ghf"]},"application/vnd.groove-identity-message":{source:"iana",extensions:["gim"]},"application/vnd.groove-injector":{source:"iana",extensions:["grv"]},"application/vnd.groove-tool-message":{source:"iana",extensions:["gtm"]},"application/vnd.groove-tool-template":{source:"iana",extensions:["tpl"]},"application/vnd.groove-vcard":{source:"iana",extensions:["vcg"]},"application/vnd.hal+json":{source:"iana",compressible:!0},"application/vnd.hal+xml":{source:"iana",compressible:!0,extensions:["hal"]},"application/vnd.handheld-entertainment+xml":{source:"iana",compressible:!0,extensions:["zmm"]},"application/vnd.hbci":{source:"iana",extensions:["hbci"]},"application/vnd.hc+json":{source:"iana",compressible:!0},"application/vnd.hcl-bireports":{source:"iana"},"application/vnd.hdt":{source:"iana"},"application/vnd.heroku+json":{source:"iana",compressible:!0},"application/vnd.hhe.lesson-player":{source:"iana",extensions:["les"]},"application/vnd.hp-hpgl":{source:"iana",extensions:["hpgl"]},"application/vnd.hp-hpid":{source:"iana",extensions:["hpid"]},"application/vnd.hp-hps":{source:"iana",extensions:["hps"]},"application/vnd.hp-jlyt":{source:"iana",extensions:["jlt"]},"application/vnd.hp-pcl":{source:"iana",extensions:["pcl"]},"application/vnd.hp-pclxl":{source:"iana",extensions:["pclxl"]},"application/vnd.httphone":{source:"iana"},"application/vnd.hydrostatix.sof-data":{source:"iana",extensions:["sfd-hdstx"]},"application/vnd.hyper+json":{source:"iana",compressible:!0},"application/vnd.hyper-item+json":{source:"iana",compressible:!0},"application/vnd.hyperdrive+json":{source:"iana",compressible:!0},"application/vnd.hzn-3d-crossword":{source:"iana"},"application/vnd.ibm.afplinedata":{source:"iana"},"application/vnd.ibm.electronic-media":{source:"iana"},"application/vnd.ibm.minipay":{source:"iana",extensions:["mpy"]},"application/vnd.ibm.modcap":{source:"iana",extensions:["afp","listafp","list3820"]},"application/vnd.ibm.rights-management":{source:"iana",extensions:["irm"]},"application/vnd.ibm.secure-container":{source:"iana",extensions:["sc"]},"application/vnd.iccprofile":{source:"iana",extensions:["icc","icm"]},"application/vnd.ieee.1905":{source:"iana"},"application/vnd.igloader":{source:"iana",extensions:["igl"]},"application/vnd.imagemeter.folder+zip":{source:"iana",compressible:!1},"application/vnd.imagemeter.image+zip":{source:"iana",compressible:!1},"application/vnd.immervision-ivp":{source:"iana",extensions:["ivp"]},"application/vnd.immervision-ivu":{source:"iana",extensions:["ivu"]},"application/vnd.ims.imsccv1p1":{source:"iana"},"application/vnd.ims.imsccv1p2":{source:"iana"},"application/vnd.ims.imsccv1p3":{source:"iana"},"application/vnd.ims.lis.v2.result+json":{source:"iana",compressible:!0},"application/vnd.ims.lti.v2.toolconsumerprofile+json":{source:"iana",compressible:!0},"application/vnd.ims.lti.v2.toolproxy+json":{source:"iana",compressible:!0},"application/vnd.ims.lti.v2.toolproxy.id+json":{source:"iana",compressible:!0},"application/vnd.ims.lti.v2.toolsettings+json":{source:"iana",compressible:!0},"application/vnd.ims.lti.v2.toolsettings.simple+json":{source:"iana",compressible:!0},"application/vnd.informedcontrol.rms+xml":{source:"iana",compressible:!0},"application/vnd.informix-visionary":{source:"iana"},"application/vnd.infotech.project":{source:"iana"},"application/vnd.infotech.project+xml":{source:"iana",compressible:!0},"application/vnd.innopath.wamp.notification":{source:"iana"},"application/vnd.insors.igm":{source:"iana",extensions:["igm"]},"application/vnd.intercon.formnet":{source:"iana",extensions:["xpw","xpx"]},"application/vnd.intergeo":{source:"iana",extensions:["i2g"]},"application/vnd.intertrust.digibox":{source:"iana"},"application/vnd.intertrust.nncp":{source:"iana"},"application/vnd.intu.qbo":{source:"iana",extensions:["qbo"]},"application/vnd.intu.qfx":{source:"iana",extensions:["qfx"]},"application/vnd.iptc.g2.catalogitem+xml":{source:"iana",compressible:!0},"application/vnd.iptc.g2.conceptitem+xml":{source:"iana",compressible:!0},"application/vnd.iptc.g2.knowledgeitem+xml":{source:"iana",compressible:!0},"application/vnd.iptc.g2.newsitem+xml":{source:"iana",compressible:!0},"application/vnd.iptc.g2.newsmessage+xml":{source:"iana",compressible:!0},"application/vnd.iptc.g2.packageitem+xml":{source:"iana",compressible:!0},"application/vnd.iptc.g2.planningitem+xml":{source:"iana",compressible:!0},"application/vnd.ipunplugged.rcprofile":{source:"iana",extensions:["rcprofile"]},"application/vnd.irepository.package+xml":{source:"iana",compressible:!0,extensions:["irp"]},"application/vnd.is-xpr":{source:"iana",extensions:["xpr"]},"application/vnd.isac.fcs":{source:"iana",extensions:["fcs"]},"application/vnd.iso11783-10+zip":{source:"iana",compressible:!1},"application/vnd.jam":{source:"iana",extensions:["jam"]},"application/vnd.japannet-directory-service":{source:"iana"},"application/vnd.japannet-jpnstore-wakeup":{source:"iana"},"application/vnd.japannet-payment-wakeup":{source:"iana"},"application/vnd.japannet-registration":{source:"iana"},"application/vnd.japannet-registration-wakeup":{source:"iana"},"application/vnd.japannet-setstore-wakeup":{source:"iana"},"application/vnd.japannet-verification":{source:"iana"},"application/vnd.japannet-verification-wakeup":{source:"iana"},"application/vnd.jcp.javame.midlet-rms":{source:"iana",extensions:["rms"]},"application/vnd.jisp":{source:"iana",extensions:["jisp"]},"application/vnd.joost.joda-archive":{source:"iana",extensions:["joda"]},"application/vnd.jsk.isdn-ngn":{source:"iana"},"application/vnd.kahootz":{source:"iana",extensions:["ktz","ktr"]},"application/vnd.kde.karbon":{source:"iana",extensions:["karbon"]},"application/vnd.kde.kchart":{source:"iana",extensions:["chrt"]},"application/vnd.kde.kformula":{source:"iana",extensions:["kfo"]},"application/vnd.kde.kivio":{source:"iana",extensions:["flw"]},"application/vnd.kde.kontour":{source:"iana",extensions:["kon"]},"application/vnd.kde.kpresenter":{source:"iana",extensions:["kpr","kpt"]},"application/vnd.kde.kspread":{source:"iana",extensions:["ksp"]},"application/vnd.kde.kword":{source:"iana",extensions:["kwd","kwt"]},"application/vnd.kenameaapp":{source:"iana",extensions:["htke"]},"application/vnd.kidspiration":{source:"iana",extensions:["kia"]},"application/vnd.kinar":{source:"iana",extensions:["kne","knp"]},"application/vnd.koan":{source:"iana",extensions:["skp","skd","skt","skm"]},"application/vnd.kodak-descriptor":{source:"iana",extensions:["sse"]},"application/vnd.las":{source:"iana"},"application/vnd.las.las+json":{source:"iana",compressible:!0},"application/vnd.las.las+xml":{source:"iana",compressible:!0,extensions:["lasxml"]},"application/vnd.laszip":{source:"iana"},"application/vnd.leap+json":{source:"iana",compressible:!0},"application/vnd.liberty-request+xml":{source:"iana",compressible:!0},"application/vnd.llamagraphics.life-balance.desktop":{source:"iana",extensions:["lbd"]},"application/vnd.llamagraphics.life-balance.exchange+xml":{source:"iana",compressible:!0,extensions:["lbe"]},"application/vnd.logipipe.circuit+zip":{source:"iana",compressible:!1},"application/vnd.loom":{source:"iana"},"application/vnd.lotus-1-2-3":{source:"iana",extensions:["123"]},"application/vnd.lotus-approach":{source:"iana",extensions:["apr"]},"application/vnd.lotus-freelance":{source:"iana",extensions:["pre"]},"application/vnd.lotus-notes":{source:"iana",extensions:["nsf"]},"application/vnd.lotus-organizer":{source:"iana",extensions:["org"]},"application/vnd.lotus-screencam":{source:"iana",extensions:["scm"]},"application/vnd.lotus-wordpro":{source:"iana",extensions:["lwp"]},"application/vnd.macports.portpkg":{source:"iana",extensions:["portpkg"]},"application/vnd.mapbox-vector-tile":{source:"iana"},"application/vnd.marlin.drm.actiontoken+xml":{source:"iana",compressible:!0},"application/vnd.marlin.drm.conftoken+xml":{source:"iana",compressible:!0},"application/vnd.marlin.drm.license+xml":{source:"iana",compressible:!0},"application/vnd.marlin.drm.mdcf":{source:"iana"},"application/vnd.mason+json":{source:"iana",compressible:!0},"application/vnd.maxmind.maxmind-db":{source:"iana"},"application/vnd.mcd":{source:"iana",extensions:["mcd"]},"application/vnd.medcalcdata":{source:"iana",extensions:["mc1"]},"application/vnd.mediastation.cdkey":{source:"iana",extensions:["cdkey"]},"application/vnd.meridian-slingshot":{source:"iana"},"application/vnd.mfer":{source:"iana",extensions:["mwf"]},"application/vnd.mfmp":{source:"iana",extensions:["mfm"]},"application/vnd.micro+json":{source:"iana",compressible:!0},"application/vnd.micrografx.flo":{source:"iana",extensions:["flo"]},"application/vnd.micrografx.igx":{source:"iana",extensions:["igx"]},"application/vnd.microsoft.portable-executable":{source:"iana"},"application/vnd.microsoft.windows.thumbnail-cache":{source:"iana"},"application/vnd.miele+json":{source:"iana",compressible:!0},"application/vnd.mif":{source:"iana",extensions:["mif"]},"application/vnd.minisoft-hp3000-save":{source:"iana"},"application/vnd.mitsubishi.misty-guard.trustweb":{source:"iana"},"application/vnd.mobius.daf":{source:"iana",extensions:["daf"]},"application/vnd.mobius.dis":{source:"iana",extensions:["dis"]},"application/vnd.mobius.mbk":{source:"iana",extensions:["mbk"]},"application/vnd.mobius.mqy":{source:"iana",extensions:["mqy"]},"application/vnd.mobius.msl":{source:"iana",extensions:["msl"]},"application/vnd.mobius.plc":{source:"iana",extensions:["plc"]},"application/vnd.mobius.txf":{source:"iana",extensions:["txf"]},"application/vnd.mophun.application":{source:"iana",extensions:["mpn"]},"application/vnd.mophun.certificate":{source:"iana",extensions:["mpc"]},"application/vnd.motorola.flexsuite":{source:"iana"},"application/vnd.motorola.flexsuite.adsi":{source:"iana"},"application/vnd.motorola.flexsuite.fis":{source:"iana"},"application/vnd.motorola.flexsuite.gotap":{source:"iana"},"application/vnd.motorola.flexsuite.kmr":{source:"iana"},"application/vnd.motorola.flexsuite.ttc":{source:"iana"},"application/vnd.motorola.flexsuite.wem":{source:"iana"},"application/vnd.motorola.iprm":{source:"iana"},"application/vnd.mozilla.xul+xml":{source:"iana",compressible:!0,extensions:["xul"]},"application/vnd.ms-3mfdocument":{source:"iana"},"application/vnd.ms-artgalry":{source:"iana",extensions:["cil"]},"application/vnd.ms-asf":{source:"iana"},"application/vnd.ms-cab-compressed":{source:"iana",extensions:["cab"]},"application/vnd.ms-color.iccprofile":{source:"apache"},"application/vnd.ms-excel":{source:"iana",compressible:!1,extensions:["xls","xlm","xla","xlc","xlt","xlw"]},"application/vnd.ms-excel.addin.macroenabled.12":{source:"iana",extensions:["xlam"]},"application/vnd.ms-excel.sheet.binary.macroenabled.12":{source:"iana",extensions:["xlsb"]},"application/vnd.ms-excel.sheet.macroenabled.12":{source:"iana",extensions:["xlsm"]},"application/vnd.ms-excel.template.macroenabled.12":{source:"iana",extensions:["xltm"]},"application/vnd.ms-fontobject":{source:"iana",compressible:!0,extensions:["eot"]},"application/vnd.ms-htmlhelp":{source:"iana",extensions:["chm"]},"application/vnd.ms-ims":{source:"iana",extensions:["ims"]},"application/vnd.ms-lrm":{source:"iana",extensions:["lrm"]},"application/vnd.ms-office.activex+xml":{source:"iana",compressible:!0},"application/vnd.ms-officetheme":{source:"iana",extensions:["thmx"]},"application/vnd.ms-opentype":{source:"apache",compressible:!0},"application/vnd.ms-outlook":{compressible:!1,extensions:["msg"]},"application/vnd.ms-package.obfuscated-opentype":{source:"apache"},"application/vnd.ms-pki.seccat":{source:"apache",extensions:["cat"]},"application/vnd.ms-pki.stl":{source:"apache",extensions:["stl"]},"application/vnd.ms-playready.initiator+xml":{source:"iana",compressible:!0},"application/vnd.ms-powerpoint":{source:"iana",compressible:!1,extensions:["ppt","pps","pot"]},"application/vnd.ms-powerpoint.addin.macroenabled.12":{source:"iana",extensions:["ppam"]},"application/vnd.ms-powerpoint.presentation.macroenabled.12":{source:"iana",extensions:["pptm"]},"application/vnd.ms-powerpoint.slide.macroenabled.12":{source:"iana",extensions:["sldm"]},"application/vnd.ms-powerpoint.slideshow.macroenabled.12":{source:"iana",extensions:["ppsm"]},"application/vnd.ms-powerpoint.template.macroenabled.12":{source:"iana",extensions:["potm"]},"application/vnd.ms-printdevicecapabilities+xml":{source:"iana",compressible:!0},"application/vnd.ms-printing.printticket+xml":{source:"apache",compressible:!0},"application/vnd.ms-printschematicket+xml":{source:"iana",compressible:!0},"application/vnd.ms-project":{source:"iana",extensions:["mpp","mpt"]},"application/vnd.ms-tnef":{source:"iana"},"application/vnd.ms-windows.devicepairing":{source:"iana"},"application/vnd.ms-windows.nwprinting.oob":{source:"iana"},"application/vnd.ms-windows.printerpairing":{source:"iana"},"application/vnd.ms-windows.wsd.oob":{source:"iana"},"application/vnd.ms-wmdrm.lic-chlg-req":{source:"iana"},"application/vnd.ms-wmdrm.lic-resp":{source:"iana"},"application/vnd.ms-wmdrm.meter-chlg-req":{source:"iana"},"application/vnd.ms-wmdrm.meter-resp":{source:"iana"},"application/vnd.ms-word.document.macroenabled.12":{source:"iana",extensions:["docm"]},"application/vnd.ms-word.template.macroenabled.12":{source:"iana",extensions:["dotm"]},"application/vnd.ms-works":{source:"iana",extensions:["wps","wks","wcm","wdb"]},"application/vnd.ms-wpl":{source:"iana",extensions:["wpl"]},"application/vnd.ms-xpsdocument":{source:"iana",compressible:!1,extensions:["xps"]},"application/vnd.msa-disk-image":{source:"iana"},"application/vnd.mseq":{source:"iana",extensions:["mseq"]},"application/vnd.msign":{source:"iana"},"application/vnd.multiad.creator":{source:"iana"},"application/vnd.multiad.creator.cif":{source:"iana"},"application/vnd.music-niff":{source:"iana"},"application/vnd.musician":{source:"iana",extensions:["mus"]},"application/vnd.muvee.style":{source:"iana",extensions:["msty"]},"application/vnd.mynfc":{source:"iana",extensions:["taglet"]},"application/vnd.ncd.control":{source:"iana"},"application/vnd.ncd.reference":{source:"iana"},"application/vnd.nearst.inv+json":{source:"iana",compressible:!0},"application/vnd.nervana":{source:"iana"},"application/vnd.netfpx":{source:"iana"},"application/vnd.neurolanguage.nlu":{source:"iana",extensions:["nlu"]},"application/vnd.nimn":{source:"iana"},"application/vnd.nintendo.nitro.rom":{source:"iana"},"application/vnd.nintendo.snes.rom":{source:"iana"},"application/vnd.nitf":{source:"iana",extensions:["ntf","nitf"]},"application/vnd.noblenet-directory":{source:"iana",extensions:["nnd"]},"application/vnd.noblenet-sealer":{source:"iana",extensions:["nns"]},"application/vnd.noblenet-web":{source:"iana",extensions:["nnw"]},"application/vnd.nokia.catalogs":{source:"iana"},"application/vnd.nokia.conml+wbxml":{source:"iana"},"application/vnd.nokia.conml+xml":{source:"iana",compressible:!0},"application/vnd.nokia.iptv.config+xml":{source:"iana",compressible:!0},"application/vnd.nokia.isds-radio-presets":{source:"iana"},"application/vnd.nokia.landmark+wbxml":{source:"iana"},"application/vnd.nokia.landmark+xml":{source:"iana",compressible:!0},"application/vnd.nokia.landmarkcollection+xml":{source:"iana",compressible:!0},"application/vnd.nokia.n-gage.ac+xml":{source:"iana",compressible:!0,extensions:["ac"]},"application/vnd.nokia.n-gage.data":{source:"iana",extensions:["ngdat"]},"application/vnd.nokia.n-gage.symbian.install":{source:"iana",extensions:["n-gage"]},"application/vnd.nokia.ncd":{source:"iana"},"application/vnd.nokia.pcd+wbxml":{source:"iana"},"application/vnd.nokia.pcd+xml":{source:"iana",compressible:!0},"application/vnd.nokia.radio-preset":{source:"iana",extensions:["rpst"]},"application/vnd.nokia.radio-presets":{source:"iana",extensions:["rpss"]},"application/vnd.novadigm.edm":{source:"iana",extensions:["edm"]},"application/vnd.novadigm.edx":{source:"iana",extensions:["edx"]},"application/vnd.novadigm.ext":{source:"iana",extensions:["ext"]},"application/vnd.ntt-local.content-share":{source:"iana"},"application/vnd.ntt-local.file-transfer":{source:"iana"},"application/vnd.ntt-local.ogw_remote-access":{source:"iana"},"application/vnd.ntt-local.sip-ta_remote":{source:"iana"},"application/vnd.ntt-local.sip-ta_tcp_stream":{source:"iana"},"application/vnd.oasis.opendocument.chart":{source:"iana",extensions:["odc"]},"application/vnd.oasis.opendocument.chart-template":{source:"iana",extensions:["otc"]},"application/vnd.oasis.opendocument.database":{source:"iana",extensions:["odb"]},"application/vnd.oasis.opendocument.formula":{source:"iana",extensions:["odf"]},"application/vnd.oasis.opendocument.formula-template":{source:"iana",extensions:["odft"]},"application/vnd.oasis.opendocument.graphics":{source:"iana",compressible:!1,extensions:["odg"]},"application/vnd.oasis.opendocument.graphics-template":{source:"iana",extensions:["otg"]},"application/vnd.oasis.opendocument.image":{source:"iana",extensions:["odi"]},"application/vnd.oasis.opendocument.image-template":{source:"iana",extensions:["oti"]},"application/vnd.oasis.opendocument.presentation":{source:"iana",compressible:!1,extensions:["odp"]},"application/vnd.oasis.opendocument.presentation-template":{source:"iana",extensions:["otp"]},"application/vnd.oasis.opendocument.spreadsheet":{source:"iana",compressible:!1,extensions:["ods"]},"application/vnd.oasis.opendocument.spreadsheet-template":{source:"iana",extensions:["ots"]},"application/vnd.oasis.opendocument.text":{source:"iana",compressible:!1,extensions:["odt"]},"application/vnd.oasis.opendocument.text-master":{source:"iana",extensions:["odm"]},"application/vnd.oasis.opendocument.text-template":{source:"iana",extensions:["ott"]},"application/vnd.oasis.opendocument.text-web":{source:"iana",extensions:["oth"]},"application/vnd.obn":{source:"iana"},"application/vnd.ocf+cbor":{source:"iana"},"application/vnd.oci.image.manifest.v1+json":{source:"iana",compressible:!0},"application/vnd.oftn.l10n+json":{source:"iana",compressible:!0},"application/vnd.oipf.contentaccessdownload+xml":{source:"iana",compressible:!0},"application/vnd.oipf.contentaccessstreaming+xml":{source:"iana",compressible:!0},"application/vnd.oipf.cspg-hexbinary":{source:"iana"},"application/vnd.oipf.dae.svg+xml":{source:"iana",compressible:!0},"application/vnd.oipf.dae.xhtml+xml":{source:"iana",compressible:!0},"application/vnd.oipf.mippvcontrolmessage+xml":{source:"iana",compressible:!0},"application/vnd.oipf.pae.gem":{source:"iana"},"application/vnd.oipf.spdiscovery+xml":{source:"iana",compressible:!0},"application/vnd.oipf.spdlist+xml":{source:"iana",compressible:!0},"application/vnd.oipf.ueprofile+xml":{source:"iana",compressible:!0},"application/vnd.oipf.userprofile+xml":{source:"iana",compressible:!0},"application/vnd.olpc-sugar":{source:"iana",extensions:["xo"]},"application/vnd.oma-scws-config":{source:"iana"},"application/vnd.oma-scws-http-request":{source:"iana"},"application/vnd.oma-scws-http-response":{source:"iana"},"application/vnd.oma.bcast.associated-procedure-parameter+xml":{source:"iana",compressible:!0},"application/vnd.oma.bcast.drm-trigger+xml":{source:"iana",compressible:!0},"application/vnd.oma.bcast.imd+xml":{source:"iana",compressible:!0},"application/vnd.oma.bcast.ltkm":{source:"iana"},"application/vnd.oma.bcast.notification+xml":{source:"iana",compressible:!0},"application/vnd.oma.bcast.provisioningtrigger":{source:"iana"},"application/vnd.oma.bcast.sgboot":{source:"iana"},"application/vnd.oma.bcast.sgdd+xml":{source:"iana",compressible:!0},"application/vnd.oma.bcast.sgdu":{source:"iana"},"application/vnd.oma.bcast.simple-symbol-container":{source:"iana"},"application/vnd.oma.bcast.smartcard-trigger+xml":{source:"iana",compressible:!0},"application/vnd.oma.bcast.sprov+xml":{source:"iana",compressible:!0},"application/vnd.oma.bcast.stkm":{source:"iana"},"application/vnd.oma.cab-address-book+xml":{source:"iana",compressible:!0},"application/vnd.oma.cab-feature-handler+xml":{source:"iana",compressible:!0},"application/vnd.oma.cab-pcc+xml":{source:"iana",compressible:!0},"application/vnd.oma.cab-subs-invite+xml":{source:"iana",compressible:!0},"application/vnd.oma.cab-user-prefs+xml":{source:"iana",compressible:!0},"application/vnd.oma.dcd":{source:"iana"},"application/vnd.oma.dcdc":{source:"iana"},"application/vnd.oma.dd2+xml":{source:"iana",compressible:!0,extensions:["dd2"]},"application/vnd.oma.drm.risd+xml":{source:"iana",compressible:!0},"application/vnd.oma.group-usage-list+xml":{source:"iana",compressible:!0},"application/vnd.oma.lwm2m+cbor":{source:"iana"},"application/vnd.oma.lwm2m+json":{source:"iana",compressible:!0},"application/vnd.oma.lwm2m+tlv":{source:"iana"},"application/vnd.oma.pal+xml":{source:"iana",compressible:!0},"application/vnd.oma.poc.detailed-progress-report+xml":{source:"iana",compressible:!0},"application/vnd.oma.poc.final-report+xml":{source:"iana",compressible:!0},"application/vnd.oma.poc.groups+xml":{source:"iana",compressible:!0},"application/vnd.oma.poc.invocation-descriptor+xml":{source:"iana",compressible:!0},"application/vnd.oma.poc.optimized-progress-report+xml":{source:"iana",compressible:!0},"application/vnd.oma.push":{source:"iana"},"application/vnd.oma.scidm.messages+xml":{source:"iana",compressible:!0},"application/vnd.oma.xcap-directory+xml":{source:"iana",compressible:!0},"application/vnd.omads-email+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/vnd.omads-file+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/vnd.omads-folder+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/vnd.omaloc-supl-init":{source:"iana"},"application/vnd.onepager":{source:"iana"},"application/vnd.onepagertamp":{source:"iana"},"application/vnd.onepagertamx":{source:"iana"},"application/vnd.onepagertat":{source:"iana"},"application/vnd.onepagertatp":{source:"iana"},"application/vnd.onepagertatx":{source:"iana"},"application/vnd.openblox.game+xml":{source:"iana",compressible:!0,extensions:["obgx"]},"application/vnd.openblox.game-binary":{source:"iana"},"application/vnd.openeye.oeb":{source:"iana"},"application/vnd.openofficeorg.extension":{source:"apache",extensions:["oxt"]},"application/vnd.openstreetmap.data+xml":{source:"iana",compressible:!0,extensions:["osm"]},"application/vnd.openxmlformats-officedocument.custom-properties+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.customxmlproperties+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.drawing+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.drawingml.chart+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.drawingml.diagramcolors+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.drawingml.diagramdata+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.drawingml.diagramlayout+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.drawingml.diagramstyle+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.extended-properties+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.commentauthors+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.comments+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.handoutmaster+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.notesmaster+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.notesslide+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.presentation":{source:"iana",compressible:!1,extensions:["pptx"]},"application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.presprops+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.slide":{source:"iana",extensions:["sldx"]},"application/vnd.openxmlformats-officedocument.presentationml.slide+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.slidelayout+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.slidemaster+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.slideshow":{source:"iana",extensions:["ppsx"]},"application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.slideupdateinfo+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.tablestyles+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.tags+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.template":{source:"iana",extensions:["potx"]},"application/vnd.openxmlformats-officedocument.presentationml.template.main+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.viewprops+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.calcchain+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.externallink+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcachedefinition+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcacherecords+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.pivottable+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.querytable+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.revisionheaders+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.revisionlog+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.sharedstrings+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet":{source:"iana",compressible:!1,extensions:["xlsx"]},"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.sheetmetadata+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.tablesinglecells+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.template":{source:"iana",extensions:["xltx"]},"application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.usernames+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.volatiledependencies+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.theme+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.themeoverride+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.vmldrawing":{source:"iana"},"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.document":{source:"iana",compressible:!1,extensions:["docx"]},"application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.fonttable+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.template":{source:"iana",extensions:["dotx"]},"application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.websettings+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-package.core-properties+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-package.relationships+xml":{source:"iana",compressible:!0},"application/vnd.oracle.resource+json":{source:"iana",compressible:!0},"application/vnd.orange.indata":{source:"iana"},"application/vnd.osa.netdeploy":{source:"iana"},"application/vnd.osgeo.mapguide.package":{source:"iana",extensions:["mgp"]},"application/vnd.osgi.bundle":{source:"iana"},"application/vnd.osgi.dp":{source:"iana",extensions:["dp"]},"application/vnd.osgi.subsystem":{source:"iana",extensions:["esa"]},"application/vnd.otps.ct-kip+xml":{source:"iana",compressible:!0},"application/vnd.oxli.countgraph":{source:"iana"},"application/vnd.pagerduty+json":{source:"iana",compressible:!0},"application/vnd.palm":{source:"iana",extensions:["pdb","pqa","oprc"]},"application/vnd.panoply":{source:"iana"},"application/vnd.paos.xml":{source:"iana"},"application/vnd.patentdive":{source:"iana"},"application/vnd.patientecommsdoc":{source:"iana"},"application/vnd.pawaafile":{source:"iana",extensions:["paw"]},"application/vnd.pcos":{source:"iana"},"application/vnd.pg.format":{source:"iana",extensions:["str"]},"application/vnd.pg.osasli":{source:"iana",extensions:["ei6"]},"application/vnd.piaccess.application-licence":{source:"iana"},"application/vnd.picsel":{source:"iana",extensions:["efif"]},"application/vnd.pmi.widget":{source:"iana",extensions:["wg"]},"application/vnd.poc.group-advertisement+xml":{source:"iana",compressible:!0},"application/vnd.pocketlearn":{source:"iana",extensions:["plf"]},"application/vnd.powerbuilder6":{source:"iana",extensions:["pbd"]},"application/vnd.powerbuilder6-s":{source:"iana"},"application/vnd.powerbuilder7":{source:"iana"},"application/vnd.powerbuilder7-s":{source:"iana"},"application/vnd.powerbuilder75":{source:"iana"},"application/vnd.powerbuilder75-s":{source:"iana"},"application/vnd.preminet":{source:"iana"},"application/vnd.previewsystems.box":{source:"iana",extensions:["box"]},"application/vnd.proteus.magazine":{source:"iana",extensions:["mgz"]},"application/vnd.psfs":{source:"iana"},"application/vnd.publishare-delta-tree":{source:"iana",extensions:["qps"]},"application/vnd.pvi.ptid1":{source:"iana",extensions:["ptid"]},"application/vnd.pwg-multiplexed":{source:"iana"},"application/vnd.pwg-xhtml-print+xml":{source:"iana",compressible:!0},"application/vnd.qualcomm.brew-app-res":{source:"iana"},"application/vnd.quarantainenet":{source:"iana"},"application/vnd.quark.quarkxpress":{source:"iana",extensions:["qxd","qxt","qwd","qwt","qxl","qxb"]},"application/vnd.quobject-quoxdocument":{source:"iana"},"application/vnd.radisys.moml+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-audit+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-audit-conf+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-audit-conn+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-audit-dialog+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-audit-stream+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-conf+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-dialog+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-dialog-base+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-dialog-fax-detect+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-dialog-fax-sendrecv+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-dialog-group+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-dialog-speech+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-dialog-transform+xml":{source:"iana",compressible:!0},"application/vnd.rainstor.data":{source:"iana"},"application/vnd.rapid":{source:"iana"},"application/vnd.rar":{source:"iana",extensions:["rar"]},"application/vnd.realvnc.bed":{source:"iana",extensions:["bed"]},"application/vnd.recordare.musicxml":{source:"iana",extensions:["mxl"]},"application/vnd.recordare.musicxml+xml":{source:"iana",compressible:!0,extensions:["musicxml"]},"application/vnd.renlearn.rlprint":{source:"iana"},"application/vnd.restful+json":{source:"iana",compressible:!0},"application/vnd.rig.cryptonote":{source:"iana",extensions:["cryptonote"]},"application/vnd.rim.cod":{source:"apache",extensions:["cod"]},"application/vnd.rn-realmedia":{source:"apache",extensions:["rm"]},"application/vnd.rn-realmedia-vbr":{source:"apache",extensions:["rmvb"]},"application/vnd.route66.link66+xml":{source:"iana",compressible:!0,extensions:["link66"]},"application/vnd.rs-274x":{source:"iana"},"application/vnd.ruckus.download":{source:"iana"},"application/vnd.s3sms":{source:"iana"},"application/vnd.sailingtracker.track":{source:"iana",extensions:["st"]},"application/vnd.sar":{source:"iana"},"application/vnd.sbm.cid":{source:"iana"},"application/vnd.sbm.mid2":{source:"iana"},"application/vnd.scribus":{source:"iana"},"application/vnd.sealed.3df":{source:"iana"},"application/vnd.sealed.csf":{source:"iana"},"application/vnd.sealed.doc":{source:"iana"},"application/vnd.sealed.eml":{source:"iana"},"application/vnd.sealed.mht":{source:"iana"},"application/vnd.sealed.net":{source:"iana"},"application/vnd.sealed.ppt":{source:"iana"},"application/vnd.sealed.tiff":{source:"iana"},"application/vnd.sealed.xls":{source:"iana"},"application/vnd.sealedmedia.softseal.html":{source:"iana"},"application/vnd.sealedmedia.softseal.pdf":{source:"iana"},"application/vnd.seemail":{source:"iana",extensions:["see"]},"application/vnd.sema":{source:"iana",extensions:["sema"]},"application/vnd.semd":{source:"iana",extensions:["semd"]},"application/vnd.semf":{source:"iana",extensions:["semf"]},"application/vnd.shade-save-file":{source:"iana"},"application/vnd.shana.informed.formdata":{source:"iana",extensions:["ifm"]},"application/vnd.shana.informed.formtemplate":{source:"iana",extensions:["itp"]},"application/vnd.shana.informed.interchange":{source:"iana",extensions:["iif"]},"application/vnd.shana.informed.package":{source:"iana",extensions:["ipk"]},"application/vnd.shootproof+json":{source:"iana",compressible:!0},"application/vnd.shopkick+json":{source:"iana",compressible:!0},"application/vnd.shp":{source:"iana"},"application/vnd.shx":{source:"iana"},"application/vnd.sigrok.session":{source:"iana"},"application/vnd.simtech-mindmapper":{source:"iana",extensions:["twd","twds"]},"application/vnd.siren+json":{source:"iana",compressible:!0},"application/vnd.smaf":{source:"iana",extensions:["mmf"]},"application/vnd.smart.notebook":{source:"iana"},"application/vnd.smart.teacher":{source:"iana",extensions:["teacher"]},"application/vnd.snesdev-page-table":{source:"iana"},"application/vnd.software602.filler.form+xml":{source:"iana",compressible:!0,extensions:["fo"]},"application/vnd.software602.filler.form-xml-zip":{source:"iana"},"application/vnd.solent.sdkm+xml":{source:"iana",compressible:!0,extensions:["sdkm","sdkd"]},"application/vnd.spotfire.dxp":{source:"iana",extensions:["dxp"]},"application/vnd.spotfire.sfs":{source:"iana",extensions:["sfs"]},"application/vnd.sqlite3":{source:"iana"},"application/vnd.sss-cod":{source:"iana"},"application/vnd.sss-dtf":{source:"iana"},"application/vnd.sss-ntf":{source:"iana"},"application/vnd.stardivision.calc":{source:"apache",extensions:["sdc"]},"application/vnd.stardivision.draw":{source:"apache",extensions:["sda"]},"application/vnd.stardivision.impress":{source:"apache",extensions:["sdd"]},"application/vnd.stardivision.math":{source:"apache",extensions:["smf"]},"application/vnd.stardivision.writer":{source:"apache",extensions:["sdw","vor"]},"application/vnd.stardivision.writer-global":{source:"apache",extensions:["sgl"]},"application/vnd.stepmania.package":{source:"iana",extensions:["smzip"]},"application/vnd.stepmania.stepchart":{source:"iana",extensions:["sm"]},"application/vnd.street-stream":{source:"iana"},"application/vnd.sun.wadl+xml":{source:"iana",compressible:!0,extensions:["wadl"]},"application/vnd.sun.xml.calc":{source:"apache",extensions:["sxc"]},"application/vnd.sun.xml.calc.template":{source:"apache",extensions:["stc"]},"application/vnd.sun.xml.draw":{source:"apache",extensions:["sxd"]},"application/vnd.sun.xml.draw.template":{source:"apache",extensions:["std"]},"application/vnd.sun.xml.impress":{source:"apache",extensions:["sxi"]},"application/vnd.sun.xml.impress.template":{source:"apache",extensions:["sti"]},"application/vnd.sun.xml.math":{source:"apache",extensions:["sxm"]},"application/vnd.sun.xml.writer":{source:"apache",extensions:["sxw"]},"application/vnd.sun.xml.writer.global":{source:"apache",extensions:["sxg"]},"application/vnd.sun.xml.writer.template":{source:"apache",extensions:["stw"]},"application/vnd.sus-calendar":{source:"iana",extensions:["sus","susp"]},"application/vnd.svd":{source:"iana",extensions:["svd"]},"application/vnd.swiftview-ics":{source:"iana"},"application/vnd.sycle+xml":{source:"iana",compressible:!0},"application/vnd.symbian.install":{source:"apache",extensions:["sis","sisx"]},"application/vnd.syncml+xml":{source:"iana",charset:"UTF-8",compressible:!0,extensions:["xsm"]},"application/vnd.syncml.dm+wbxml":{source:"iana",charset:"UTF-8",extensions:["bdm"]},"application/vnd.syncml.dm+xml":{source:"iana",charset:"UTF-8",compressible:!0,extensions:["xdm"]},"application/vnd.syncml.dm.notification":{source:"iana"},"application/vnd.syncml.dmddf+wbxml":{source:"iana"},"application/vnd.syncml.dmddf+xml":{source:"iana",charset:"UTF-8",compressible:!0,extensions:["ddf"]},"application/vnd.syncml.dmtnds+wbxml":{source:"iana"},"application/vnd.syncml.dmtnds+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/vnd.syncml.ds.notification":{source:"iana"},"application/vnd.tableschema+json":{source:"iana",compressible:!0},"application/vnd.tao.intent-module-archive":{source:"iana",extensions:["tao"]},"application/vnd.tcpdump.pcap":{source:"iana",extensions:["pcap","cap","dmp"]},"application/vnd.think-cell.ppttc+json":{source:"iana",compressible:!0},"application/vnd.tmd.mediaflex.api+xml":{source:"iana",compressible:!0},"application/vnd.tml":{source:"iana"},"application/vnd.tmobile-livetv":{source:"iana",extensions:["tmo"]},"application/vnd.tri.onesource":{source:"iana"},"application/vnd.trid.tpt":{source:"iana",extensions:["tpt"]},"application/vnd.triscape.mxs":{source:"iana",extensions:["mxs"]},"application/vnd.trueapp":{source:"iana",extensions:["tra"]},"application/vnd.truedoc":{source:"iana"},"application/vnd.ubisoft.webplayer":{source:"iana"},"application/vnd.ufdl":{source:"iana",extensions:["ufd","ufdl"]},"application/vnd.uiq.theme":{source:"iana",extensions:["utz"]},"application/vnd.umajin":{source:"iana",extensions:["umj"]},"application/vnd.unity":{source:"iana",extensions:["unityweb"]},"application/vnd.uoml+xml":{source:"iana",compressible:!0,extensions:["uoml"]},"application/vnd.uplanet.alert":{source:"iana"},"application/vnd.uplanet.alert-wbxml":{source:"iana"},"application/vnd.uplanet.bearer-choice":{source:"iana"},"application/vnd.uplanet.bearer-choice-wbxml":{source:"iana"},"application/vnd.uplanet.cacheop":{source:"iana"},"application/vnd.uplanet.cacheop-wbxml":{source:"iana"},"application/vnd.uplanet.channel":{source:"iana"},"application/vnd.uplanet.channel-wbxml":{source:"iana"},"application/vnd.uplanet.list":{source:"iana"},"application/vnd.uplanet.list-wbxml":{source:"iana"},"application/vnd.uplanet.listcmd":{source:"iana"},"application/vnd.uplanet.listcmd-wbxml":{source:"iana"},"application/vnd.uplanet.signal":{source:"iana"},"application/vnd.uri-map":{source:"iana"},"application/vnd.valve.source.material":{source:"iana"},"application/vnd.vcx":{source:"iana",extensions:["vcx"]},"application/vnd.vd-study":{source:"iana"},"application/vnd.vectorworks":{source:"iana"},"application/vnd.vel+json":{source:"iana",compressible:!0},"application/vnd.verimatrix.vcas":{source:"iana"},"application/vnd.veryant.thin":{source:"iana"},"application/vnd.ves.encrypted":{source:"iana"},"application/vnd.vidsoft.vidconference":{source:"iana"},"application/vnd.visio":{source:"iana",extensions:["vsd","vst","vss","vsw"]},"application/vnd.visionary":{source:"iana",extensions:["vis"]},"application/vnd.vividence.scriptfile":{source:"iana"},"application/vnd.vsf":{source:"iana",extensions:["vsf"]},"application/vnd.wap.sic":{source:"iana"},"application/vnd.wap.slc":{source:"iana"},"application/vnd.wap.wbxml":{source:"iana",charset:"UTF-8",extensions:["wbxml"]},"application/vnd.wap.wmlc":{source:"iana",extensions:["wmlc"]},"application/vnd.wap.wmlscriptc":{source:"iana",extensions:["wmlsc"]},"application/vnd.webturbo":{source:"iana",extensions:["wtb"]},"application/vnd.wfa.p2p":{source:"iana"},"application/vnd.wfa.wsc":{source:"iana"},"application/vnd.windows.devicepairing":{source:"iana"},"application/vnd.wmc":{source:"iana"},"application/vnd.wmf.bootstrap":{source:"iana"},"application/vnd.wolfram.mathematica":{source:"iana"},"application/vnd.wolfram.mathematica.package":{source:"iana"},"application/vnd.wolfram.player":{source:"iana",extensions:["nbp"]},"application/vnd.wordperfect":{source:"iana",extensions:["wpd"]},"application/vnd.wqd":{source:"iana",extensions:["wqd"]},"application/vnd.wrq-hp3000-labelled":{source:"iana"},"application/vnd.wt.stf":{source:"iana",extensions:["stf"]},"application/vnd.wv.csp+wbxml":{source:"iana"},"application/vnd.wv.csp+xml":{source:"iana",compressible:!0},"application/vnd.wv.ssp+xml":{source:"iana",compressible:!0},"application/vnd.xacml+json":{source:"iana",compressible:!0},"application/vnd.xara":{source:"iana",extensions:["xar"]},"application/vnd.xfdl":{source:"iana",extensions:["xfdl"]},"application/vnd.xfdl.webform":{source:"iana"},"application/vnd.xmi+xml":{source:"iana",compressible:!0},"application/vnd.xmpie.cpkg":{source:"iana"},"application/vnd.xmpie.dpkg":{source:"iana"},"application/vnd.xmpie.plan":{source:"iana"},"application/vnd.xmpie.ppkg":{source:"iana"},"application/vnd.xmpie.xlim":{source:"iana"},"application/vnd.yamaha.hv-dic":{source:"iana",extensions:["hvd"]},"application/vnd.yamaha.hv-script":{source:"iana",extensions:["hvs"]},"application/vnd.yamaha.hv-voice":{source:"iana",extensions:["hvp"]},"application/vnd.yamaha.openscoreformat":{source:"iana",extensions:["osf"]},"application/vnd.yamaha.openscoreformat.osfpvg+xml":{source:"iana",compressible:!0,extensions:["osfpvg"]},"application/vnd.yamaha.remote-setup":{source:"iana"},"application/vnd.yamaha.smaf-audio":{source:"iana",extensions:["saf"]},"application/vnd.yamaha.smaf-phrase":{source:"iana",extensions:["spf"]},"application/vnd.yamaha.through-ngn":{source:"iana"},"application/vnd.yamaha.tunnel-udpencap":{source:"iana"},"application/vnd.yaoweme":{source:"iana"},"application/vnd.yellowriver-custom-menu":{source:"iana",extensions:["cmp"]},"application/vnd.youtube.yt":{source:"iana"},"application/vnd.zul":{source:"iana",extensions:["zir","zirz"]},"application/vnd.zzazz.deck+xml":{source:"iana",compressible:!0,extensions:["zaz"]},"application/voicexml+xml":{source:"iana",compressible:!0,extensions:["vxml"]},"application/voucher-cms+json":{source:"iana",compressible:!0},"application/vq-rtcpxr":{source:"iana"},"application/wasm":{compressible:!0,extensions:["wasm"]},"application/watcherinfo+xml":{source:"iana",compressible:!0},"application/webpush-options+json":{source:"iana",compressible:!0},"application/whoispp-query":{source:"iana"},"application/whoispp-response":{source:"iana"},"application/widget":{source:"iana",extensions:["wgt"]},"application/winhlp":{source:"apache",extensions:["hlp"]},"application/wita":{source:"iana"},"application/wordperfect5.1":{source:"iana"},"application/wsdl+xml":{source:"iana",compressible:!0,extensions:["wsdl"]},"application/wspolicy+xml":{source:"iana",compressible:!0,extensions:["wspolicy"]},"application/x-7z-compressed":{source:"apache",compressible:!1,extensions:["7z"]},"application/x-abiword":{source:"apache",extensions:["abw"]},"application/x-ace-compressed":{source:"apache",extensions:["ace"]},"application/x-amf":{source:"apache"},"application/x-apple-diskimage":{source:"apache",extensions:["dmg"]},"application/x-arj":{compressible:!1,extensions:["arj"]},"application/x-authorware-bin":{source:"apache",extensions:["aab","x32","u32","vox"]},"application/x-authorware-map":{source:"apache",extensions:["aam"]},"application/x-authorware-seg":{source:"apache",extensions:["aas"]},"application/x-bcpio":{source:"apache",extensions:["bcpio"]},"application/x-bdoc":{compressible:!1,extensions:["bdoc"]},"application/x-bittorrent":{source:"apache",extensions:["torrent"]},"application/x-blorb":{source:"apache",extensions:["blb","blorb"]},"application/x-bzip":{source:"apache",compressible:!1,extensions:["bz"]},"application/x-bzip2":{source:"apache",compressible:!1,extensions:["bz2","boz"]},"application/x-cbr":{source:"apache",extensions:["cbr","cba","cbt","cbz","cb7"]},"application/x-cdlink":{source:"apache",extensions:["vcd"]},"application/x-cfs-compressed":{source:"apache",extensions:["cfs"]},"application/x-chat":{source:"apache",extensions:["chat"]},"application/x-chess-pgn":{source:"apache",extensions:["pgn"]},"application/x-chrome-extension":{extensions:["crx"]},"application/x-cocoa":{source:"nginx",extensions:["cco"]},"application/x-compress":{source:"apache"},"application/x-conference":{source:"apache",extensions:["nsc"]},"application/x-cpio":{source:"apache",extensions:["cpio"]},"application/x-csh":{source:"apache",extensions:["csh"]},"application/x-deb":{compressible:!1},"application/x-debian-package":{source:"apache",extensions:["deb","udeb"]},"application/x-dgc-compressed":{source:"apache",extensions:["dgc"]},"application/x-director":{source:"apache",extensions:["dir","dcr","dxr","cst","cct","cxt","w3d","fgd","swa"]},"application/x-doom":{source:"apache",extensions:["wad"]},"application/x-dtbncx+xml":{source:"apache",compressible:!0,extensions:["ncx"]},"application/x-dtbook+xml":{source:"apache",compressible:!0,extensions:["dtb"]},"application/x-dtbresource+xml":{source:"apache",compressible:!0,extensions:["res"]},"application/x-dvi":{source:"apache",compressible:!1,extensions:["dvi"]},"application/x-envoy":{source:"apache",extensions:["evy"]},"application/x-eva":{source:"apache",extensions:["eva"]},"application/x-font-bdf":{source:"apache",extensions:["bdf"]},"application/x-font-dos":{source:"apache"},"application/x-font-framemaker":{source:"apache"},"application/x-font-ghostscript":{source:"apache",extensions:["gsf"]},"application/x-font-libgrx":{source:"apache"},"application/x-font-linux-psf":{source:"apache",extensions:["psf"]},"application/x-font-pcf":{source:"apache",extensions:["pcf"]},"application/x-font-snf":{source:"apache",extensions:["snf"]},"application/x-font-speedo":{source:"apache"},"application/x-font-sunos-news":{source:"apache"},"application/x-font-type1":{source:"apache",extensions:["pfa","pfb","pfm","afm"]},"application/x-font-vfont":{source:"apache"},"application/x-freearc":{source:"apache",extensions:["arc"]},"application/x-futuresplash":{source:"apache",extensions:["spl"]},"application/x-gca-compressed":{source:"apache",extensions:["gca"]},"application/x-glulx":{source:"apache",extensions:["ulx"]},"application/x-gnumeric":{source:"apache",extensions:["gnumeric"]},"application/x-gramps-xml":{source:"apache",extensions:["gramps"]},"application/x-gtar":{source:"apache",extensions:["gtar"]},"application/x-gzip":{source:"apache"},"application/x-hdf":{source:"apache",extensions:["hdf"]},"application/x-httpd-php":{compressible:!0,extensions:["php"]},"application/x-install-instructions":{source:"apache",extensions:["install"]},"application/x-iso9660-image":{source:"apache",extensions:["iso"]},"application/x-java-archive-diff":{source:"nginx",extensions:["jardiff"]},"application/x-java-jnlp-file":{source:"apache",compressible:!1,extensions:["jnlp"]},"application/x-javascript":{compressible:!0},"application/x-keepass2":{extensions:["kdbx"]},"application/x-latex":{source:"apache",compressible:!1,extensions:["latex"]},"application/x-lua-bytecode":{extensions:["luac"]},"application/x-lzh-compressed":{source:"apache",extensions:["lzh","lha"]},"application/x-makeself":{source:"nginx",extensions:["run"]},"application/x-mie":{source:"apache",extensions:["mie"]},"application/x-mobipocket-ebook":{source:"apache",extensions:["prc","mobi"]},"application/x-mpegurl":{compressible:!1},"application/x-ms-application":{source:"apache",extensions:["application"]},"application/x-ms-shortcut":{source:"apache",extensions:["lnk"]},"application/x-ms-wmd":{source:"apache",extensions:["wmd"]},"application/x-ms-wmz":{source:"apache",extensions:["wmz"]},"application/x-ms-xbap":{source:"apache",extensions:["xbap"]},"application/x-msaccess":{source:"apache",extensions:["mdb"]},"application/x-msbinder":{source:"apache",extensions:["obd"]},"application/x-mscardfile":{source:"apache",extensions:["crd"]},"application/x-msclip":{source:"apache",extensions:["clp"]},"application/x-msdos-program":{extensions:["exe"]},"application/x-msdownload":{source:"apache",extensions:["exe","dll","com","bat","msi"]},"application/x-msmediaview":{source:"apache",extensions:["mvb","m13","m14"]},"application/x-msmetafile":{source:"apache",extensions:["wmf","wmz","emf","emz"]},"application/x-msmoney":{source:"apache",extensions:["mny"]},"application/x-mspublisher":{source:"apache",extensions:["pub"]},"application/x-msschedule":{source:"apache",extensions:["scd"]},"application/x-msterminal":{source:"apache",extensions:["trm"]},"application/x-mswrite":{source:"apache",extensions:["wri"]},"application/x-netcdf":{source:"apache",extensions:["nc","cdf"]},"application/x-ns-proxy-autoconfig":{compressible:!0,extensions:["pac"]},"application/x-nzb":{source:"apache",extensions:["nzb"]},"application/x-perl":{source:"nginx",extensions:["pl","pm"]},"application/x-pilot":{source:"nginx",extensions:["prc","pdb"]},"application/x-pkcs12":{source:"apache",compressible:!1,extensions:["p12","pfx"]},"application/x-pkcs7-certificates":{source:"apache",extensions:["p7b","spc"]},"application/x-pkcs7-certreqresp":{source:"apache",extensions:["p7r"]},"application/x-pki-message":{source:"iana"},"application/x-rar-compressed":{source:"apache",compressible:!1,extensions:["rar"]},"application/x-redhat-package-manager":{source:"nginx",extensions:["rpm"]},"application/x-research-info-systems":{source:"apache",extensions:["ris"]},"application/x-sea":{source:"nginx",extensions:["sea"]},"application/x-sh":{source:"apache",compressible:!0,extensions:["sh"]},"application/x-shar":{source:"apache",extensions:["shar"]},"application/x-shockwave-flash":{source:"apache",compressible:!1,extensions:["swf"]},"application/x-silverlight-app":{source:"apache",extensions:["xap"]},"application/x-sql":{source:"apache",extensions:["sql"]},"application/x-stuffit":{source:"apache",compressible:!1,extensions:["sit"]},"application/x-stuffitx":{source:"apache",extensions:["sitx"]},"application/x-subrip":{source:"apache",extensions:["srt"]},"application/x-sv4cpio":{source:"apache",extensions:["sv4cpio"]},"application/x-sv4crc":{source:"apache",extensions:["sv4crc"]},"application/x-t3vm-image":{source:"apache",extensions:["t3"]},"application/x-tads":{source:"apache",extensions:["gam"]},"application/x-tar":{source:"apache",compressible:!0,extensions:["tar"]},"application/x-tcl":{source:"apache",extensions:["tcl","tk"]},"application/x-tex":{source:"apache",extensions:["tex"]},"application/x-tex-tfm":{source:"apache",extensions:["tfm"]},"application/x-texinfo":{source:"apache",extensions:["texinfo","texi"]},"application/x-tgif":{source:"apache",extensions:["obj"]},"application/x-ustar":{source:"apache",extensions:["ustar"]},"application/x-virtualbox-hdd":{compressible:!0,extensions:["hdd"]},"application/x-virtualbox-ova":{compressible:!0,extensions:["ova"]},"application/x-virtualbox-ovf":{compressible:!0,extensions:["ovf"]},"application/x-virtualbox-vbox":{compressible:!0,extensions:["vbox"]},"application/x-virtualbox-vbox-extpack":{compressible:!1,extensions:["vbox-extpack"]},"application/x-virtualbox-vdi":{compressible:!0,extensions:["vdi"]},"application/x-virtualbox-vhd":{compressible:!0,extensions:["vhd"]},"application/x-virtualbox-vmdk":{compressible:!0,extensions:["vmdk"]},"application/x-wais-source":{source:"apache",extensions:["src"]},"application/x-web-app-manifest+json":{compressible:!0,extensions:["webapp"]},"application/x-www-form-urlencoded":{source:"iana",compressible:!0},"application/x-x509-ca-cert":{source:"iana",extensions:["der","crt","pem"]},"application/x-x509-ca-ra-cert":{source:"iana"},"application/x-x509-next-ca-cert":{source:"iana"},"application/x-xfig":{source:"apache",extensions:["fig"]},"application/x-xliff+xml":{source:"apache",compressible:!0,extensions:["xlf"]},"application/x-xpinstall":{source:"apache",compressible:!1,extensions:["xpi"]},"application/x-xz":{source:"apache",extensions:["xz"]},"application/x-zmachine":{source:"apache",extensions:["z1","z2","z3","z4","z5","z6","z7","z8"]},"application/x400-bp":{source:"iana"},"application/xacml+xml":{source:"iana",compressible:!0},"application/xaml+xml":{source:"apache",compressible:!0,extensions:["xaml"]},"application/xcap-att+xml":{source:"iana",compressible:!0,extensions:["xav"]},"application/xcap-caps+xml":{source:"iana",compressible:!0,extensions:["xca"]},"application/xcap-diff+xml":{source:"iana",compressible:!0,extensions:["xdf"]},"application/xcap-el+xml":{source:"iana",compressible:!0,extensions:["xel"]},"application/xcap-error+xml":{source:"iana",compressible:!0,extensions:["xer"]},"application/xcap-ns+xml":{source:"iana",compressible:!0,extensions:["xns"]},"application/xcon-conference-info+xml":{source:"iana",compressible:!0},"application/xcon-conference-info-diff+xml":{source:"iana",compressible:!0},"application/xenc+xml":{source:"iana",compressible:!0,extensions:["xenc"]},"application/xhtml+xml":{source:"iana",compressible:!0,extensions:["xhtml","xht"]},"application/xhtml-voice+xml":{source:"apache",compressible:!0},"application/xliff+xml":{source:"iana",compressible:!0,extensions:["xlf"]},"application/xml":{source:"iana",compressible:!0,extensions:["xml","xsl","xsd","rng"]},"application/xml-dtd":{source:"iana",compressible:!0,extensions:["dtd"]},"application/xml-external-parsed-entity":{source:"iana"},"application/xml-patch+xml":{source:"iana",compressible:!0},"application/xmpp+xml":{source:"iana",compressible:!0},"application/xop+xml":{source:"iana",compressible:!0,extensions:["xop"]},"application/xproc+xml":{source:"apache",compressible:!0,extensions:["xpl"]},"application/xslt+xml":{source:"iana",compressible:!0,extensions:["xsl","xslt"]},"application/xspf+xml":{source:"apache",compressible:!0,extensions:["xspf"]},"application/xv+xml":{source:"iana",compressible:!0,extensions:["mxml","xhvml","xvml","xvm"]},"application/yang":{source:"iana",extensions:["yang"]},"application/yang-data+json":{source:"iana",compressible:!0},"application/yang-data+xml":{source:"iana",compressible:!0},"application/yang-patch+json":{source:"iana",compressible:!0},"application/yang-patch+xml":{source:"iana",compressible:!0},"application/yin+xml":{source:"iana",compressible:!0,extensions:["yin"]},"application/zip":{source:"iana",compressible:!1,extensions:["zip"]},"application/zlib":{source:"iana"},"application/zstd":{source:"iana"},"audio/1d-interleaved-parityfec":{source:"iana"},"audio/32kadpcm":{source:"iana"},"audio/3gpp":{source:"iana",compressible:!1,extensions:["3gpp"]},"audio/3gpp2":{source:"iana"},"audio/aac":{source:"iana"},"audio/ac3":{source:"iana"},"audio/adpcm":{source:"apache",extensions:["adp"]},"audio/amr":{source:"iana"},"audio/amr-wb":{source:"iana"},"audio/amr-wb+":{source:"iana"},"audio/aptx":{source:"iana"},"audio/asc":{source:"iana"},"audio/atrac-advanced-lossless":{source:"iana"},"audio/atrac-x":{source:"iana"},"audio/atrac3":{source:"iana"},"audio/basic":{source:"iana",compressible:!1,extensions:["au","snd"]},"audio/bv16":{source:"iana"},"audio/bv32":{source:"iana"},"audio/clearmode":{source:"iana"},"audio/cn":{source:"iana"},"audio/dat12":{source:"iana"},"audio/dls":{source:"iana"},"audio/dsr-es201108":{source:"iana"},"audio/dsr-es202050":{source:"iana"},"audio/dsr-es202211":{source:"iana"},"audio/dsr-es202212":{source:"iana"},"audio/dv":{source:"iana"},"audio/dvi4":{source:"iana"},"audio/eac3":{source:"iana"},"audio/encaprtp":{source:"iana"},"audio/evrc":{source:"iana"},"audio/evrc-qcp":{source:"iana"},"audio/evrc0":{source:"iana"},"audio/evrc1":{source:"iana"},"audio/evrcb":{source:"iana"},"audio/evrcb0":{source:"iana"},"audio/evrcb1":{source:"iana"},"audio/evrcnw":{source:"iana"},"audio/evrcnw0":{source:"iana"},"audio/evrcnw1":{source:"iana"},"audio/evrcwb":{source:"iana"},"audio/evrcwb0":{source:"iana"},"audio/evrcwb1":{source:"iana"},"audio/evs":{source:"iana"},"audio/flexfec":{source:"iana"},"audio/fwdred":{source:"iana"},"audio/g711-0":{source:"iana"},"audio/g719":{source:"iana"},"audio/g722":{source:"iana"},"audio/g7221":{source:"iana"},"audio/g723":{source:"iana"},"audio/g726-16":{source:"iana"},"audio/g726-24":{source:"iana"},"audio/g726-32":{source:"iana"},"audio/g726-40":{source:"iana"},"audio/g728":{source:"iana"},"audio/g729":{source:"iana"},"audio/g7291":{source:"iana"},"audio/g729d":{source:"iana"},"audio/g729e":{source:"iana"},"audio/gsm":{source:"iana"},"audio/gsm-efr":{source:"iana"},"audio/gsm-hr-08":{source:"iana"},"audio/ilbc":{source:"iana"},"audio/ip-mr_v2.5":{source:"iana"},"audio/isac":{source:"apache"},"audio/l16":{source:"iana"},"audio/l20":{source:"iana"},"audio/l24":{source:"iana",compressible:!1},"audio/l8":{source:"iana"},"audio/lpc":{source:"iana"},"audio/melp":{source:"iana"},"audio/melp1200":{source:"iana"},"audio/melp2400":{source:"iana"},"audio/melp600":{source:"iana"},"audio/mhas":{source:"iana"},"audio/midi":{source:"apache",extensions:["mid","midi","kar","rmi"]},"audio/mobile-xmf":{source:"iana",extensions:["mxmf"]},"audio/mp3":{compressible:!1,extensions:["mp3"]},"audio/mp4":{source:"iana",compressible:!1,extensions:["m4a","mp4a"]},"audio/mp4a-latm":{source:"iana"},"audio/mpa":{source:"iana"},"audio/mpa-robust":{source:"iana"},"audio/mpeg":{source:"iana",compressible:!1,extensions:["mpga","mp2","mp2a","mp3","m2a","m3a"]},"audio/mpeg4-generic":{source:"iana"},"audio/musepack":{source:"apache"},"audio/ogg":{source:"iana",compressible:!1,extensions:["oga","ogg","spx"]},"audio/opus":{source:"iana"},"audio/parityfec":{source:"iana"},"audio/pcma":{source:"iana"},"audio/pcma-wb":{source:"iana"},"audio/pcmu":{source:"iana"},"audio/pcmu-wb":{source:"iana"},"audio/prs.sid":{source:"iana"},"audio/qcelp":{source:"iana"},"audio/raptorfec":{source:"iana"},"audio/red":{source:"iana"},"audio/rtp-enc-aescm128":{source:"iana"},"audio/rtp-midi":{source:"iana"},"audio/rtploopback":{source:"iana"},"audio/rtx":{source:"iana"},"audio/s3m":{source:"apache",extensions:["s3m"]},"audio/silk":{source:"apache",extensions:["sil"]},"audio/smv":{source:"iana"},"audio/smv-qcp":{source:"iana"},"audio/smv0":{source:"iana"},"audio/sofa":{source:"iana"},"audio/sp-midi":{source:"iana"},"audio/speex":{source:"iana"},"audio/t140c":{source:"iana"},"audio/t38":{source:"iana"},"audio/telephone-event":{source:"iana"},"audio/tetra_acelp":{source:"iana"},"audio/tetra_acelp_bb":{source:"iana"},"audio/tone":{source:"iana"},"audio/tsvcis":{source:"iana"},"audio/uemclip":{source:"iana"},"audio/ulpfec":{source:"iana"},"audio/usac":{source:"iana"},"audio/vdvi":{source:"iana"},"audio/vmr-wb":{source:"iana"},"audio/vnd.3gpp.iufp":{source:"iana"},"audio/vnd.4sb":{source:"iana"},"audio/vnd.audiokoz":{source:"iana"},"audio/vnd.celp":{source:"iana"},"audio/vnd.cisco.nse":{source:"iana"},"audio/vnd.cmles.radio-events":{source:"iana"},"audio/vnd.cns.anp1":{source:"iana"},"audio/vnd.cns.inf1":{source:"iana"},"audio/vnd.dece.audio":{source:"iana",extensions:["uva","uvva"]},"audio/vnd.digital-winds":{source:"iana",extensions:["eol"]},"audio/vnd.dlna.adts":{source:"iana"},"audio/vnd.dolby.heaac.1":{source:"iana"},"audio/vnd.dolby.heaac.2":{source:"iana"},"audio/vnd.dolby.mlp":{source:"iana"},"audio/vnd.dolby.mps":{source:"iana"},"audio/vnd.dolby.pl2":{source:"iana"},"audio/vnd.dolby.pl2x":{source:"iana"},"audio/vnd.dolby.pl2z":{source:"iana"},"audio/vnd.dolby.pulse.1":{source:"iana"},"audio/vnd.dra":{source:"iana",extensions:["dra"]},"audio/vnd.dts":{source:"iana",extensions:["dts"]},"audio/vnd.dts.hd":{source:"iana",extensions:["dtshd"]},"audio/vnd.dts.uhd":{source:"iana"},"audio/vnd.dvb.file":{source:"iana"},"audio/vnd.everad.plj":{source:"iana"},"audio/vnd.hns.audio":{source:"iana"},"audio/vnd.lucent.voice":{source:"iana",extensions:["lvp"]},"audio/vnd.ms-playready.media.pya":{source:"iana",extensions:["pya"]},"audio/vnd.nokia.mobile-xmf":{source:"iana"},"audio/vnd.nortel.vbk":{source:"iana"},"audio/vnd.nuera.ecelp4800":{source:"iana",extensions:["ecelp4800"]},"audio/vnd.nuera.ecelp7470":{source:"iana",extensions:["ecelp7470"]},"audio/vnd.nuera.ecelp9600":{source:"iana",extensions:["ecelp9600"]},"audio/vnd.octel.sbc":{source:"iana"},"audio/vnd.presonus.multitrack":{source:"iana"},"audio/vnd.qcelp":{source:"iana"},"audio/vnd.rhetorex.32kadpcm":{source:"iana"},"audio/vnd.rip":{source:"iana",extensions:["rip"]},"audio/vnd.rn-realaudio":{compressible:!1},"audio/vnd.sealedmedia.softseal.mpeg":{source:"iana"},"audio/vnd.vmx.cvsd":{source:"iana"},"audio/vnd.wave":{compressible:!1},"audio/vorbis":{source:"iana",compressible:!1},"audio/vorbis-config":{source:"iana"},"audio/wav":{compressible:!1,extensions:["wav"]},"audio/wave":{compressible:!1,extensions:["wav"]},"audio/webm":{source:"apache",compressible:!1,extensions:["weba"]},"audio/x-aac":{source:"apache",compressible:!1,extensions:["aac"]},"audio/x-aiff":{source:"apache",extensions:["aif","aiff","aifc"]},"audio/x-caf":{source:"apache",compressible:!1,extensions:["caf"]},"audio/x-flac":{source:"apache",extensions:["flac"]},"audio/x-m4a":{source:"nginx",extensions:["m4a"]},"audio/x-matroska":{source:"apache",extensions:["mka"]},"audio/x-mpegurl":{source:"apache",extensions:["m3u"]},"audio/x-ms-wax":{source:"apache",extensions:["wax"]},"audio/x-ms-wma":{source:"apache",extensions:["wma"]},"audio/x-pn-realaudio":{source:"apache",extensions:["ram","ra"]},"audio/x-pn-realaudio-plugin":{source:"apache",extensions:["rmp"]},"audio/x-realaudio":{source:"nginx",extensions:["ra"]},"audio/x-tta":{source:"apache"},"audio/x-wav":{source:"apache",extensions:["wav"]},"audio/xm":{source:"apache",extensions:["xm"]},"chemical/x-cdx":{source:"apache",extensions:["cdx"]},"chemical/x-cif":{source:"apache",extensions:["cif"]},"chemical/x-cmdf":{source:"apache",extensions:["cmdf"]},"chemical/x-cml":{source:"apache",extensions:["cml"]},"chemical/x-csml":{source:"apache",extensions:["csml"]},"chemical/x-pdb":{source:"apache"},"chemical/x-xyz":{source:"apache",extensions:["xyz"]},"font/collection":{source:"iana",extensions:["ttc"]},"font/otf":{source:"iana",compressible:!0,extensions:["otf"]},"font/sfnt":{source:"iana"},"font/ttf":{source:"iana",compressible:!0,extensions:["ttf"]},"font/woff":{source:"iana",extensions:["woff"]},"font/woff2":{source:"iana",extensions:["woff2"]},"image/aces":{source:"iana",extensions:["exr"]},"image/apng":{compressible:!1,extensions:["apng"]},"image/avci":{source:"iana"},"image/avcs":{source:"iana"},"image/avif":{compressible:!1,extensions:["avif"]},"image/bmp":{source:"iana",compressible:!0,extensions:["bmp"]},"image/cgm":{source:"iana",extensions:["cgm"]},"image/dicom-rle":{source:"iana",extensions:["drle"]},"image/emf":{source:"iana",extensions:["emf"]},"image/fits":{source:"iana",extensions:["fits"]},"image/g3fax":{source:"iana",extensions:["g3"]},"image/gif":{source:"iana",compressible:!1,extensions:["gif"]},"image/heic":{source:"iana",extensions:["heic"]},"image/heic-sequence":{source:"iana",extensions:["heics"]},"image/heif":{source:"iana",extensions:["heif"]},"image/heif-sequence":{source:"iana",extensions:["heifs"]},"image/hej2k":{source:"iana",extensions:["hej2"]},"image/hsj2":{source:"iana",extensions:["hsj2"]},"image/ief":{source:"iana",extensions:["ief"]},"image/jls":{source:"iana",extensions:["jls"]},"image/jp2":{source:"iana",compressible:!1,extensions:["jp2","jpg2"]},"image/jpeg":{source:"iana",compressible:!1,extensions:["jpeg","jpg","jpe"]},"image/jph":{source:"iana",extensions:["jph"]},"image/jphc":{source:"iana",extensions:["jhc"]},"image/jpm":{source:"iana",compressible:!1,extensions:["jpm"]},"image/jpx":{source:"iana",compressible:!1,extensions:["jpx","jpf"]},"image/jxr":{source:"iana",extensions:["jxr"]},"image/jxra":{source:"iana",extensions:["jxra"]},"image/jxrs":{source:"iana",extensions:["jxrs"]},"image/jxs":{source:"iana",extensions:["jxs"]},"image/jxsc":{source:"iana",extensions:["jxsc"]},"image/jxsi":{source:"iana",extensions:["jxsi"]},"image/jxss":{source:"iana",extensions:["jxss"]},"image/ktx":{source:"iana",extensions:["ktx"]},"image/ktx2":{source:"iana",extensions:["ktx2"]},"image/naplps":{source:"iana"},"image/pjpeg":{compressible:!1},"image/png":{source:"iana",compressible:!1,extensions:["png"]},"image/prs.btif":{source:"iana",extensions:["btif"]},"image/prs.pti":{source:"iana",extensions:["pti"]},"image/pwg-raster":{source:"iana"},"image/sgi":{source:"apache",extensions:["sgi"]},"image/svg+xml":{source:"iana",compressible:!0,extensions:["svg","svgz"]},"image/t38":{source:"iana",extensions:["t38"]},"image/tiff":{source:"iana",compressible:!1,extensions:["tif","tiff"]},"image/tiff-fx":{source:"iana",extensions:["tfx"]},"image/vnd.adobe.photoshop":{source:"iana",compressible:!0,extensions:["psd"]},"image/vnd.airzip.accelerator.azv":{source:"iana",extensions:["azv"]},"image/vnd.cns.inf2":{source:"iana"},"image/vnd.dece.graphic":{source:"iana",extensions:["uvi","uvvi","uvg","uvvg"]},"image/vnd.djvu":{source:"iana",extensions:["djvu","djv"]},"image/vnd.dvb.subtitle":{source:"iana",extensions:["sub"]},"image/vnd.dwg":{source:"iana",extensions:["dwg"]},"image/vnd.dxf":{source:"iana",extensions:["dxf"]},"image/vnd.fastbidsheet":{source:"iana",extensions:["fbs"]},"image/vnd.fpx":{source:"iana",extensions:["fpx"]},"image/vnd.fst":{source:"iana",extensions:["fst"]},"image/vnd.fujixerox.edmics-mmr":{source:"iana",extensions:["mmr"]},"image/vnd.fujixerox.edmics-rlc":{source:"iana",extensions:["rlc"]},"image/vnd.globalgraphics.pgb":{source:"iana"},"image/vnd.microsoft.icon":{source:"iana",extensions:["ico"]},"image/vnd.mix":{source:"iana"},"image/vnd.mozilla.apng":{source:"iana"},"image/vnd.ms-dds":{extensions:["dds"]},"image/vnd.ms-modi":{source:"iana",extensions:["mdi"]},"image/vnd.ms-photo":{source:"apache",extensions:["wdp"]},"image/vnd.net-fpx":{source:"iana",extensions:["npx"]},"image/vnd.pco.b16":{source:"iana",extensions:["b16"]},"image/vnd.radiance":{source:"iana"},"image/vnd.sealed.png":{source:"iana"},"image/vnd.sealedmedia.softseal.gif":{source:"iana"},"image/vnd.sealedmedia.softseal.jpg":{source:"iana"},"image/vnd.svf":{source:"iana"},"image/vnd.tencent.tap":{source:"iana",extensions:["tap"]},"image/vnd.valve.source.texture":{source:"iana",extensions:["vtf"]},"image/vnd.wap.wbmp":{source:"iana",extensions:["wbmp"]},"image/vnd.xiff":{source:"iana",extensions:["xif"]},"image/vnd.zbrush.pcx":{source:"iana",extensions:["pcx"]},"image/webp":{source:"apache",extensions:["webp"]},"image/wmf":{source:"iana",extensions:["wmf"]},"image/x-3ds":{source:"apache",extensions:["3ds"]},"image/x-cmu-raster":{source:"apache",extensions:["ras"]},"image/x-cmx":{source:"apache",extensions:["cmx"]},"image/x-freehand":{source:"apache",extensions:["fh","fhc","fh4","fh5","fh7"]},"image/x-icon":{source:"apache",compressible:!0,extensions:["ico"]},"image/x-jng":{source:"nginx",extensions:["jng"]},"image/x-mrsid-image":{source:"apache",extensions:["sid"]},"image/x-ms-bmp":{source:"nginx",compressible:!0,extensions:["bmp"]},"image/x-pcx":{source:"apache",extensions:["pcx"]},"image/x-pict":{source:"apache",extensions:["pic","pct"]},"image/x-portable-anymap":{source:"apache",extensions:["pnm"]},"image/x-portable-bitmap":{source:"apache",extensions:["pbm"]},"image/x-portable-graymap":{source:"apache",extensions:["pgm"]},"image/x-portable-pixmap":{source:"apache",extensions:["ppm"]},"image/x-rgb":{source:"apache",extensions:["rgb"]},"image/x-tga":{source:"apache",extensions:["tga"]},"image/x-xbitmap":{source:"apache",extensions:["xbm"]},"image/x-xcf":{compressible:!1},"image/x-xpixmap":{source:"apache",extensions:["xpm"]},"image/x-xwindowdump":{source:"apache",extensions:["xwd"]},"message/cpim":{source:"iana"},"message/delivery-status":{source:"iana"},"message/disposition-notification":{source:"iana",extensions:["disposition-notification"]},"message/external-body":{source:"iana"},"message/feedback-report":{source:"iana"},"message/global":{source:"iana",extensions:["u8msg"]},"message/global-delivery-status":{source:"iana",extensions:["u8dsn"]},"message/global-disposition-notification":{source:"iana",extensions:["u8mdn"]},"message/global-headers":{source:"iana",extensions:["u8hdr"]},"message/http":{source:"iana",compressible:!1},"message/imdn+xml":{source:"iana",compressible:!0},"message/news":{source:"iana"},"message/partial":{source:"iana",compressible:!1},"message/rfc822":{source:"iana",compressible:!0,extensions:["eml","mime"]},"message/s-http":{source:"iana"},"message/sip":{source:"iana"},"message/sipfrag":{source:"iana"},"message/tracking-status":{source:"iana"},"message/vnd.si.simp":{source:"iana"},"message/vnd.wfa.wsc":{source:"iana",extensions:["wsc"]},"model/3mf":{source:"iana",extensions:["3mf"]},"model/e57":{source:"iana"},"model/gltf+json":{source:"iana",compressible:!0,extensions:["gltf"]},"model/gltf-binary":{source:"iana",compressible:!0,extensions:["glb"]},"model/iges":{source:"iana",compressible:!1,extensions:["igs","iges"]},"model/mesh":{source:"iana",compressible:!1,extensions:["msh","mesh","silo"]},"model/mtl":{source:"iana",extensions:["mtl"]},"model/obj":{source:"iana",extensions:["obj"]},"model/stl":{source:"iana",extensions:["stl"]},"model/vnd.collada+xml":{source:"iana",compressible:!0,extensions:["dae"]},"model/vnd.dwf":{source:"iana",extensions:["dwf"]},"model/vnd.flatland.3dml":{source:"iana"},"model/vnd.gdl":{source:"iana",extensions:["gdl"]},"model/vnd.gs-gdl":{source:"apache"},"model/vnd.gs.gdl":{source:"iana"},"model/vnd.gtw":{source:"iana",extensions:["gtw"]},"model/vnd.moml+xml":{source:"iana",compressible:!0},"model/vnd.mts":{source:"iana",extensions:["mts"]},"model/vnd.opengex":{source:"iana",extensions:["ogex"]},"model/vnd.parasolid.transmit.binary":{source:"iana",extensions:["x_b"]},"model/vnd.parasolid.transmit.text":{source:"iana",extensions:["x_t"]},"model/vnd.rosette.annotated-data-model":{source:"iana"},"model/vnd.usdz+zip":{source:"iana",compressible:!1,extensions:["usdz"]},"model/vnd.valve.source.compiled-map":{source:"iana",extensions:["bsp"]},"model/vnd.vtu":{source:"iana",extensions:["vtu"]},"model/vrml":{source:"iana",compressible:!1,extensions:["wrl","vrml"]},"model/x3d+binary":{source:"apache",compressible:!1,extensions:["x3db","x3dbz"]},"model/x3d+fastinfoset":{source:"iana",extensions:["x3db"]},"model/x3d+vrml":{source:"apache",compressible:!1,extensions:["x3dv","x3dvz"]},"model/x3d+xml":{source:"iana",compressible:!0,extensions:["x3d","x3dz"]},"model/x3d-vrml":{source:"iana",extensions:["x3dv"]},"multipart/alternative":{source:"iana",compressible:!1},"multipart/appledouble":{source:"iana"},"multipart/byteranges":{source:"iana"},"multipart/digest":{source:"iana"},"multipart/encrypted":{source:"iana",compressible:!1},"multipart/form-data":{source:"iana",compressible:!1},"multipart/header-set":{source:"iana"},"multipart/mixed":{source:"iana"},"multipart/multilingual":{source:"iana"},"multipart/parallel":{source:"iana"},"multipart/related":{source:"iana",compressible:!1},"multipart/report":{source:"iana"},"multipart/signed":{source:"iana",compressible:!1},"multipart/vnd.bint.med-plus":{source:"iana"},"multipart/voice-message":{source:"iana"},"multipart/x-mixed-replace":{source:"iana"},"text/1d-interleaved-parityfec":{source:"iana"},"text/cache-manifest":{source:"iana",compressible:!0,extensions:["appcache","manifest"]},"text/calendar":{source:"iana",extensions:["ics","ifb"]},"text/calender":{compressible:!0},"text/cmd":{compressible:!0},"text/coffeescript":{extensions:["coffee","litcoffee"]},"text/css":{source:"iana",charset:"UTF-8",compressible:!0,extensions:["css"]},"text/csv":{source:"iana",compressible:!0,extensions:["csv"]},"text/csv-schema":{source:"iana"},"text/directory":{source:"iana"},"text/dns":{source:"iana"},"text/ecmascript":{source:"iana"},"text/encaprtp":{source:"iana"},"text/enriched":{source:"iana"},"text/flexfec":{source:"iana"},"text/fwdred":{source:"iana"},"text/gff3":{source:"iana"},"text/grammar-ref-list":{source:"iana"},"text/html":{source:"iana",compressible:!0,extensions:["html","htm","shtml"]},"text/jade":{extensions:["jade"]},"text/javascript":{source:"iana",compressible:!0},"text/jcr-cnd":{source:"iana"},"text/jsx":{compressible:!0,extensions:["jsx"]},"text/less":{compressible:!0,extensions:["less"]},"text/markdown":{source:"iana",compressible:!0,extensions:["markdown","md"]},"text/mathml":{source:"nginx",extensions:["mml"]},"text/mdx":{compressible:!0,extensions:["mdx"]},"text/mizar":{source:"iana"},"text/n3":{source:"iana",charset:"UTF-8",compressible:!0,extensions:["n3"]},"text/parameters":{source:"iana",charset:"UTF-8"},"text/parityfec":{source:"iana"},"text/plain":{source:"iana",compressible:!0,extensions:["txt","text","conf","def","list","log","in","ini"]},"text/provenance-notation":{source:"iana",charset:"UTF-8"},"text/prs.fallenstein.rst":{source:"iana"},"text/prs.lines.tag":{source:"iana",extensions:["dsc"]},"text/prs.prop.logic":{source:"iana"},"text/raptorfec":{source:"iana"},"text/red":{source:"iana"},"text/rfc822-headers":{source:"iana"},"text/richtext":{source:"iana",compressible:!0,extensions:["rtx"]},"text/rtf":{source:"iana",compressible:!0,extensions:["rtf"]},"text/rtp-enc-aescm128":{source:"iana"},"text/rtploopback":{source:"iana"},"text/rtx":{source:"iana"},"text/sgml":{source:"iana",extensions:["sgml","sgm"]},"text/shaclc":{source:"iana"},"text/shex":{extensions:["shex"]},"text/slim":{extensions:["slim","slm"]},"text/spdx":{source:"iana",extensions:["spdx"]},"text/strings":{source:"iana"},"text/stylus":{extensions:["stylus","styl"]},"text/t140":{source:"iana"},"text/tab-separated-values":{source:"iana",compressible:!0,extensions:["tsv"]},"text/troff":{source:"iana",extensions:["t","tr","roff","man","me","ms"]},"text/turtle":{source:"iana",charset:"UTF-8",extensions:["ttl"]},"text/ulpfec":{source:"iana"},"text/uri-list":{source:"iana",compressible:!0,extensions:["uri","uris","urls"]},"text/vcard":{source:"iana",compressible:!0,extensions:["vcard"]},"text/vnd.a":{source:"iana"},"text/vnd.abc":{source:"iana"},"text/vnd.ascii-art":{source:"iana"},"text/vnd.curl":{source:"iana",extensions:["curl"]},"text/vnd.curl.dcurl":{source:"apache",extensions:["dcurl"]},"text/vnd.curl.mcurl":{source:"apache",extensions:["mcurl"]},"text/vnd.curl.scurl":{source:"apache",extensions:["scurl"]},"text/vnd.debian.copyright":{source:"iana",charset:"UTF-8"},"text/vnd.dmclientscript":{source:"iana"},"text/vnd.dvb.subtitle":{source:"iana",extensions:["sub"]},"text/vnd.esmertec.theme-descriptor":{source:"iana",charset:"UTF-8"},"text/vnd.ficlab.flt":{source:"iana"},"text/vnd.fly":{source:"iana",extensions:["fly"]},"text/vnd.fmi.flexstor":{source:"iana",extensions:["flx"]},"text/vnd.gml":{source:"iana"},"text/vnd.graphviz":{source:"iana",extensions:["gv"]},"text/vnd.hans":{source:"iana"},"text/vnd.hgl":{source:"iana"},"text/vnd.in3d.3dml":{source:"iana",extensions:["3dml"]},"text/vnd.in3d.spot":{source:"iana",extensions:["spot"]},"text/vnd.iptc.newsml":{source:"iana"},"text/vnd.iptc.nitf":{source:"iana"},"text/vnd.latex-z":{source:"iana"},"text/vnd.motorola.reflex":{source:"iana"},"text/vnd.ms-mediapackage":{source:"iana"},"text/vnd.net2phone.commcenter.command":{source:"iana"},"text/vnd.radisys.msml-basic-layout":{source:"iana"},"text/vnd.senx.warpscript":{source:"iana"},"text/vnd.si.uricatalogue":{source:"iana"},"text/vnd.sosi":{source:"iana"},"text/vnd.sun.j2me.app-descriptor":{source:"iana",charset:"UTF-8",extensions:["jad"]},"text/vnd.trolltech.linguist":{source:"iana",charset:"UTF-8"},"text/vnd.wap.si":{source:"iana"},"text/vnd.wap.sl":{source:"iana"},"text/vnd.wap.wml":{source:"iana",extensions:["wml"]},"text/vnd.wap.wmlscript":{source:"iana",extensions:["wmls"]},"text/vtt":{source:"iana",charset:"UTF-8",compressible:!0,extensions:["vtt"]},"text/x-asm":{source:"apache",extensions:["s","asm"]},"text/x-c":{source:"apache",extensions:["c","cc","cxx","cpp","h","hh","dic"]},"text/x-component":{source:"nginx",extensions:["htc"]},"text/x-fortran":{source:"apache",extensions:["f","for","f77","f90"]},"text/x-gwt-rpc":{compressible:!0},"text/x-handlebars-template":{extensions:["hbs"]},"text/x-java-source":{source:"apache",extensions:["java"]},"text/x-jquery-tmpl":{compressible:!0},"text/x-lua":{extensions:["lua"]},"text/x-markdown":{compressible:!0,extensions:["mkd"]},"text/x-nfo":{source:"apache",extensions:["nfo"]},"text/x-opml":{source:"apache",extensions:["opml"]},"text/x-org":{compressible:!0,extensions:["org"]},"text/x-pascal":{source:"apache",extensions:["p","pas"]},"text/x-processing":{compressible:!0,extensions:["pde"]},"text/x-sass":{extensions:["sass"]},"text/x-scss":{extensions:["scss"]},"text/x-setext":{source:"apache",extensions:["etx"]},"text/x-sfv":{source:"apache",extensions:["sfv"]},"text/x-suse-ymp":{compressible:!0,extensions:["ymp"]},"text/x-uuencode":{source:"apache",extensions:["uu"]},"text/x-vcalendar":{source:"apache",extensions:["vcs"]},"text/x-vcard":{source:"apache",extensions:["vcf"]},"text/xml":{source:"iana",compressible:!0,extensions:["xml"]},"text/xml-external-parsed-entity":{source:"iana"},"text/yaml":{extensions:["yaml","yml"]},"video/1d-interleaved-parityfec":{source:"iana"},"video/3gpp":{source:"iana",extensions:["3gp","3gpp"]},"video/3gpp-tt":{source:"iana"},"video/3gpp2":{source:"iana",extensions:["3g2"]},"video/bmpeg":{source:"iana"},"video/bt656":{source:"iana"},"video/celb":{source:"iana"},"video/dv":{source:"iana"},"video/encaprtp":{source:"iana"},"video/flexfec":{source:"iana"},"video/h261":{source:"iana",extensions:["h261"]},"video/h263":{source:"iana",extensions:["h263"]},"video/h263-1998":{source:"iana"},"video/h263-2000":{source:"iana"},"video/h264":{source:"iana",extensions:["h264"]},"video/h264-rcdo":{source:"iana"},"video/h264-svc":{source:"iana"},"video/h265":{source:"iana"},"video/iso.segment":{source:"iana"},"video/jpeg":{source:"iana",extensions:["jpgv"]},"video/jpeg2000":{source:"iana"},"video/jpm":{source:"apache",extensions:["jpm","jpgm"]},"video/mj2":{source:"iana",extensions:["mj2","mjp2"]},"video/mp1s":{source:"iana"},"video/mp2p":{source:"iana"},"video/mp2t":{source:"iana",extensions:["ts"]},"video/mp4":{source:"iana",compressible:!1,extensions:["mp4","mp4v","mpg4"]},"video/mp4v-es":{source:"iana"},"video/mpeg":{source:"iana",compressible:!1,extensions:["mpeg","mpg","mpe","m1v","m2v"]},"video/mpeg4-generic":{source:"iana"},"video/mpv":{source:"iana"},"video/nv":{source:"iana"},"video/ogg":{source:"iana",compressible:!1,extensions:["ogv"]},"video/parityfec":{source:"iana"},"video/pointer":{source:"iana"},"video/quicktime":{source:"iana",compressible:!1,extensions:["qt","mov"]},"video/raptorfec":{source:"iana"},"video/raw":{source:"iana"},"video/rtp-enc-aescm128":{source:"iana"},"video/rtploopback":{source:"iana"},"video/rtx":{source:"iana"},"video/smpte291":{source:"iana"},"video/smpte292m":{source:"iana"},"video/ulpfec":{source:"iana"},"video/vc1":{source:"iana"},"video/vc2":{source:"iana"},"video/vnd.cctv":{source:"iana"},"video/vnd.dece.hd":{source:"iana",extensions:["uvh","uvvh"]},"video/vnd.dece.mobile":{source:"iana",extensions:["uvm","uvvm"]},"video/vnd.dece.mp4":{source:"iana"},"video/vnd.dece.pd":{source:"iana",extensions:["uvp","uvvp"]},"video/vnd.dece.sd":{source:"iana",extensions:["uvs","uvvs"]},"video/vnd.dece.video":{source:"iana",extensions:["uvv","uvvv"]},"video/vnd.directv.mpeg":{source:"iana"},"video/vnd.directv.mpeg-tts":{source:"iana"},"video/vnd.dlna.mpeg-tts":{source:"iana"},"video/vnd.dvb.file":{source:"iana",extensions:["dvb"]},"video/vnd.fvt":{source:"iana",extensions:["fvt"]},"video/vnd.hns.video":{source:"iana"},"video/vnd.iptvforum.1dparityfec-1010":{source:"iana"},"video/vnd.iptvforum.1dparityfec-2005":{source:"iana"},"video/vnd.iptvforum.2dparityfec-1010":{source:"iana"},"video/vnd.iptvforum.2dparityfec-2005":{source:"iana"},"video/vnd.iptvforum.ttsavc":{source:"iana"},"video/vnd.iptvforum.ttsmpeg2":{source:"iana"},"video/vnd.motorola.video":{source:"iana"},"video/vnd.motorola.videop":{source:"iana"},"video/vnd.mpegurl":{source:"iana",extensions:["mxu","m4u"]},"video/vnd.ms-playready.media.pyv":{source:"iana",extensions:["pyv"]},"video/vnd.nokia.interleaved-multimedia":{source:"iana"},"video/vnd.nokia.mp4vr":{source:"iana"},"video/vnd.nokia.videovoip":{source:"iana"},"video/vnd.objectvideo":{source:"iana"},"video/vnd.radgamettools.bink":{source:"iana"},"video/vnd.radgamettools.smacker":{source:"iana"},"video/vnd.sealed.mpeg1":{source:"iana"},"video/vnd.sealed.mpeg4":{source:"iana"},"video/vnd.sealed.swf":{source:"iana"},"video/vnd.sealedmedia.softseal.mov":{source:"iana"},"video/vnd.uvvu.mp4":{source:"iana",extensions:["uvu","uvvu"]},"video/vnd.vivo":{source:"iana",extensions:["viv"]},"video/vnd.youtube.yt":{source:"iana"},"video/vp8":{source:"iana"},"video/webm":{source:"apache",compressible:!1,extensions:["webm"]},"video/x-f4v":{source:"apache",extensions:["f4v"]},"video/x-fli":{source:"apache",extensions:["fli"]},"video/x-flv":{source:"apache",compressible:!1,extensions:["flv"]},"video/x-m4v":{source:"apache",extensions:["m4v"]},"video/x-matroska":{source:"apache",compressible:!1,extensions:["mkv","mk3d","mks"]},"video/x-mng":{source:"apache",extensions:["mng"]},"video/x-ms-asf":{source:"apache",extensions:["asf","asx"]},"video/x-ms-vob":{source:"apache",extensions:["vob"]},"video/x-ms-wm":{source:"apache",extensions:["wm"]},"video/x-ms-wmv":{source:"apache",compressible:!1,extensions:["wmv"]},"video/x-ms-wmx":{source:"apache",extensions:["wmx"]},"video/x-ms-wvx":{source:"apache",extensions:["wvx"]},"video/x-msvideo":{source:"apache",extensions:["avi"]},"video/x-sgi-movie":{source:"apache",extensions:["movie"]},"video/x-smv":{source:"apache",extensions:["smv"]},"x-conference/x-cooltalk":{source:"apache",extensions:["ice"]},"x-shader/x-fragment":{compressible:!0},"x-shader/x-vertex":{compressible:!0}}}});var require_mime_db=__commonJS({"../../node_modules/.pnpm/mime-db@1.45.0/node_modules/mime-db/index.js"(exports2,module2){module2.exports=require_db()}});var require_mime_types=__commonJS({"../../node_modules/.pnpm/mime-types@2.1.28/node_modules/mime-types/index.js"(exports2){"use strict";var db=require_mime_db(),extname2=require("path").extname,EXTRACT_TYPE_REGEXP=/^\s*([^;\s]*)(?:;|\s|$)/,TEXT_TYPE_REGEXP=/^text\//i;exports2.charset=charset;exports2.charsets={lookup:charset};exports2.contentType=contentType;exports2.extension=extension;exports2.extensions=Object.create(null);exports2.lookup=lookup;exports2.types=Object.create(null);populateMaps(exports2.extensions,exports2.types);function charset(type){if(!type||typeof type!="string")return!1;var match=EXTRACT_TYPE_REGEXP.exec(type),mime=match&&db[match[1].toLowerCase()];return mime&&mime.charset?mime.charset:match&&TEXT_TYPE_REGEXP.test(match[1])?"UTF-8":!1}function contentType(str){if(!str||typeof str!="string")return!1;var mime=str.indexOf("/")===-1?exports2.lookup(str):str;if(!mime)return!1;if(mime.indexOf("charset")===-1){var charset2=exports2.charset(mime);charset2&&(mime+="; charset="+charset2.toLowerCase())}return mime}function extension(type){if(!type||typeof type!="string")return!1;var match=EXTRACT_TYPE_REGEXP.exec(type),exts=match&&exports2.extensions[match[1].toLowerCase()];return!exts||!exts.length?!1:exts[0]}function lookup(path9){if(!path9||typeof path9!="string")return!1;var extension2=extname2("x."+path9).toLowerCase().substr(1);return extension2&&exports2.types[extension2]||!1}function populateMaps(extensions,types){var preference=["nginx","apache",void 0,"iana"];Object.keys(db).forEach(function(type){var mime=db[type],exts=mime.extensions;if(!(!exts||!exts.length)){extensions[type]=exts;for(var i=0;i<exts.length;i++){var extension2=exts[i];if(types[extension2]){var from=preference.indexOf(db[types[extension2]].source),to=preference.indexOf(mime.source);if(types[extension2]!=="application/octet-stream"&&(from>to||from===to&&types[extension2].substr(0,12)==="application/"))continue}types[extension2]=type}}})}}});var get_content_type_exports={};__export(get_content_type_exports,{getContentType:()=>getContentType});function getContentType(path9){return path9.endsWith(".html")?"text/html; charset=utf-8":import_mime_types.default.contentType((0,import_path18.extname)(path9))||"application/octet-stream"}var import_path18,import_mime_types,init_get_content_type=__esm({"src/collect-build-result/get-content-type.ts"(){"use strict";import_path18=require("path"),import_mime_types=__toESM(require_mime_types())}});var file_to_build_output_file_exports={};__export(file_to_build_output_file_exports,{fileToBuildOutputFile:()=>fileToBuildOutputFile});async function fileToBuildOutputFile(params){await validateRegularFile(params.buildResult);let digest=await streamToDigestAsync(streamWithExtendedPayload(params.buildResult.toStreamAsync?await params.buildResult.toStreamAsync():params.buildResult.toStream(),params.extendedBody)),contentType=params.buildResult.contentType?params.buildResult.contentType:"fsPath"in params.buildResult?getContentType(params.buildResult.fsPath):void 0;return{digest,output:{type:"file",path:params.outputPath,prerenderPath:params.buildResult.prerenderPath,digest:digest.sha256,mode:params.buildResult.mode,contentType,size:digest.size,lambda:null}}}var init_file_to_build_output_file=__esm({"src/collect-build-result/file-to-build-output-file.ts"(){"use strict";init_stream_to_digest_async();init_stream_with_extended_payload();init_validate_regular_file();init_get_content_type()}});var prerender_to_build_output_file_exports={};__export(prerender_to_build_output_file_exports,{prerenderToBuildOutputFile:()=>prerenderToBuildOutputFile});async function prerenderToBuildOutputFile(params){let extended=getExtendedPayload(params.buildResult);if(!extended.fallback)return null;let filePath=params.outputPath+".fallback",{output,digest}=await fileToBuildOutputFile({outputPath:filePath,buildResult:extended.fallback,extendedBody:extended.extendedBody});return{file:extended.fallback,output,digest,extended}}function getExtendedPayload({initialHeaders,fallback}){return!initialHeaders||!Object.entries(initialHeaders).length?{initialHeaders:void 0,fallback,extendedBody:void 0}:{initialHeaders:{...fallback?{}:{"x-vercel-empty-fallback":"true"},"content-type":`${MULTIPART_HEADER}; boundary=${boundary}`},fallback:fallback??new FileBlob({data:""}),extendedBody:{suffix:`${CRLF}${CRLF}--${boundary}--${CRLF}`,prefix:[`--${boundary}`,...Object.entries(initialHeaders).map(([key,value])=>`${key}: ${value}`)].join(CRLF)+CRLF+CRLF}}}var import_crypto2,CRLF,MULTIPART_HEADER,boundary,init_prerender_to_build_output_file=__esm({"src/collect-build-result/prerender-to-build-output-file.ts"(){"use strict";init_file_blob();import_crypto2=require("crypto");init_file_to_build_output_file();CRLF=`\r
119
- `,MULTIPART_HEADER="multipart/x-nextjs-extended-payload",boundary=(0,import_crypto2.randomBytes)(8).toString("hex")}});var __create2=Object.create,__defProp2=Object.defineProperty,__getOwnPropDesc2=Object.getOwnPropertyDescriptor,__getOwnPropNames2=Object.getOwnPropertyNames,__getProtoOf2=Object.getPrototypeOf,__hasOwnProp2=Object.prototype.hasOwnProperty,__export2=(target,all)=>{for(var name in all)__defProp2(target,name,{get:all[name],enumerable:!0})},__copyProps2=(to,from,except,desc)=>{if(from&&typeof from=="object"||typeof from=="function")for(let key of __getOwnPropNames2(from))!__hasOwnProp2.call(to,key)&&key!==except&&__defProp2(to,key,{get:()=>from[key],enumerable:!(desc=__getOwnPropDesc2(from,key))||desc.enumerable});return to},__reExport=(target,mod,secondTarget)=>(__copyProps2(target,mod,"default"),secondTarget&&__copyProps2(secondTarget,mod,"default")),__toESM2=(mod,isNodeMode,target)=>(target=mod!=null?__create2(__getProtoOf2(mod)):{},__copyProps2(isNodeMode||!mod||!mod.__esModule?__defProp2(target,"default",{value:mod,enumerable:!0}):target,mod)),__toCommonJS2=mod=>__copyProps2(__defProp2({},"__esModule",{value:!0}),mod),stdin_exports={};__export2(stdin_exports,{BACKEND_BUILDERS:()=>load_import_framework_helpers().BACKEND_BUILDERS,BACKEND_FRAMEWORKS:()=>load_import_framework_helpers().BACKEND_FRAMEWORKS,ContainerImage:()=>load_import_container_image().ContainerImage,DEFAULT_MAX_DURATION_LIMIT:()=>load_import_max_duration().DEFAULT_MAX_DURATION_LIMIT,ENV_WRAPPER_SUPPORTED_FAMILIES:()=>load_import_validate_lambda_size().ENV_WRAPPER_SUPPORTED_FAMILIES,EdgeFunction:()=>load_import_edge_function().EdgeFunction,FileBlob:()=>load_import_file_blob().default,FileFsRef:()=>load_import_file_fs_ref().default,FileRef:()=>load_import_file_ref().default,FunctionSizeError:()=>load_import_validate_lambda_size().FunctionSizeError,Lambda:()=>load_import_lambda().Lambda,MAX_LAMBDA_SIZE:()=>load_import_validate_lambda_size().MAX_LAMBDA_SIZE,MAX_LAMBDA_UNCOMPRESSED_SIZE:()=>load_import_validate_lambda_size().MAX_LAMBDA_UNCOMPRESSED_SIZE,NODE_VERSIONS:()=>load_import_node_version2().NODE_VERSIONS,NodejsLambda:()=>load_import_nodejs_lambda().NodejsLambda,PYTHON_FRAMEWORKS:()=>load_import_framework_helpers().PYTHON_FRAMEWORKS,Prerender:()=>load_import_prerender().Prerender,SKIP_MAX_DURATION_LIMIT_ENV:()=>load_import_max_duration().SKIP_MAX_DURATION_LIMIT_ENV,SUPPORTED_AL2023_RUNTIMES:()=>load_import_validate_build_result().SUPPORTED_AL2023_RUNTIMES,UNIFIED_BACKEND_BUILDER:()=>load_import_framework_helpers().UNIFIED_BACKEND_BUILDER,buildsSchema:()=>load_import_schemas().buildsSchema,cloneEnv:()=>load_import_clone_env().cloneEnv,collectUncompressedSize:()=>load_import_collect_uncompressed_size().collectUncompressedSize,createFunctionsIterator:()=>load_import_create_functions_iterator().createFunctionsIterator,createLambda:()=>load_import_lambda().createLambda,debug:()=>load_import_debug().default,defaultCachePathGlob:()=>load_import_default_cache_path_glob().defaultCachePathGlob,deserializeBuildOutput:()=>load_import_deserialize_build_output().deserializeBuildOutput,deserializeEdgeFunction:()=>load_import_deserialize_edge_function().deserializeEdgeFunction,deserializeLambda:()=>load_import_deserialize_lambda().deserializeLambda,detectPackageManager:()=>load_import_run_user_scripts().detectPackageManager,download:()=>load_import_download().default,downloadFile:()=>load_import_download().downloadFile,execCommand:()=>load_import_run_user_scripts().execCommand,fileToBuildOutputFile:()=>load_import_file_to_build_output_file().fileToBuildOutputFile,finalizeLambda:()=>load_import_finalize_lambda().finalizeLambda,findPackageJson:()=>load_import_find_package_json().findPackageJson,functionsSchema:()=>load_import_schemas().functionsSchema,generateNodeBuilderFunctions:()=>load_import_generate_node_builder_functions().generateNodeBuilderFunctions,generateProjectManifest:()=>load_import_node_diagnostics().generateProjectManifest,generateRubyProjectManifest:()=>load_import_ruby_diagnostics().generateRubyProjectManifest,getBuildResultMetadata:()=>load_import_get_build_result_metadata().getBuildResultMetadata,getContentType:()=>load_import_get_content_type().getContentType,getDiscontinuedNodeVersions:()=>load_import_node_version().getDiscontinuedNodeVersions,getEncryptedEnv:()=>load_import_get_encrypted_env_file().getEncryptedEnv,getEnvForPackageManager:()=>load_import_run_user_scripts().getEnvForPackageManager,getExperimentalServiceUrlEnvVars:()=>load_import_get_service_url_env_vars().getExperimentalServiceUrlEnvVars,getFunctionsSchema:()=>load_import_schemas().getFunctionsSchema,getIgnoreFilter:()=>load_import_get_ignore_filter().default,getInstalledPackageVersion:()=>load_import_get_installed_package_version().getInstalledPackageVersion,getLambdaByOutputPath:()=>load_import_get_lambda_by_output_path().getLambdaByOutputPath,getLambdaEnvironment:()=>load_import_get_lambda_environment().getLambdaEnvironment,getLambdaOptionsFromFunction:()=>load_import_lambda().getLambdaOptionsFromFunction,getLambdaPreloadScripts:()=>load_import_get_lambda_preload_scripts().getLambdaPreloadScripts,getLambdaSupportsStreaming:()=>load_import_get_lambda_supports_streaming().getLambdaSupportsStreaming,getLatestNodeVersion:()=>load_import_node_version().getLatestNodeVersion,getMaxDurationLimit:()=>load_import_max_duration().getMaxDurationLimit,getMaxDurationSchema:()=>load_import_max_duration().getMaxDurationSchema,getNodeBinPath:()=>load_import_run_user_scripts().getNodeBinPath,getNodeBinPaths:()=>load_import_run_user_scripts().getNodeBinPaths,getNodeExecPath:()=>load_import_get_node_exec_path().getNodeExecPath,getNodeVersion:()=>load_import_run_user_scripts().getNodeVersion,getOrCreateBunBinary:()=>load_import_bun_helpers().getOrCreateBunBinary,getPackageJson:()=>load_import_read_config_file().getPackageJson,getPathForPackageManager:()=>load_import_run_user_scripts().getPathForPackageManager,getPlatformEnv:()=>load_import_get_platform_env().getPlatformEnv,getPrefixedEnvVars:()=>load_import_get_prefixed_env_vars().getPrefixedEnvVars,getPrerenderChain:()=>load_import_get_prerender_chain().getPrerenderChain,getProvidedRuntime:()=>load_import_provided_runtime().getProvidedRuntime,getRegExpFromMatchers:()=>load_import_middleware_matcher().getRegExpFromMatchers,getScriptName:()=>load_import_run_user_scripts().getScriptName,getServiceUrlEnvVars:()=>load_import_get_service_url_env_vars().getServiceUrlEnvVars,getSpawnOptions:()=>load_import_run_user_scripts().getSpawnOptions,getSupportedBunVersion:()=>load_import_node_version().getSupportedBunVersion,getSupportedNodeVersion:()=>load_import_node_version().getSupportedNodeVersion,getSymlinkTarget:()=>load_import_download().getSymlinkTarget,getWriteableDirectory:()=>load_import_get_writable_directory().default,glob:()=>load_import_glob().default,hardLinkDir:()=>load_import_hard_link_dir().hardLinkDir,hydrateFilesMap:()=>load_import_hydrate_files_map().hydrateFilesMap,installDependencies:()=>load_import_run_user_scripts().installDependencies,isBackendBuilder:()=>load_import_framework_helpers().isBackendBuilder,isBackendFramework:()=>load_import_framework_helpers().isBackendFramework,isBunVersion:()=>load_import_node_version().isBunVersion,isDirectory:()=>load_import_download().isDirectory,isExperimentalBackendsEnabled:()=>load_import_framework_helpers().isExperimentalBackendsEnabled,isExperimentalBackendsWithoutIntrospectionEnabled:()=>load_import_framework_helpers().isExperimentalBackendsWithoutIntrospectionEnabled,isExternalSymlink:()=>load_import_download().isExternalSymlink,isExternalSymlinkTarget:()=>load_import_download().isExternalSymlinkTarget,isNodeBackendFramework:()=>load_import_framework_helpers().isNodeBackendFramework,isNodeEntrypoint:()=>load_import_node_entrypoint().isNodeEntrypoint,isPackageInstalled:()=>load_import_is_package_installed().isPackageInstalled,isPythonFramework:()=>load_import_framework_helpers().isPythonFramework,isRouteMiddleware:()=>load_import_is_route_middleware().isRouteMiddleware,isSymbolicLink:()=>load_import_download().isSymbolicLink,maybeReadJSON:()=>load_import_maybe_read_json().maybeReadJSON,md5:()=>load_import_stream_to_digest_async().md5,normalizePath:()=>load_import_normalize_path().normalizePath,packageManifestSchema:()=>load_import_schemas().packageManifestSchema,parseGemfileLock:()=>load_import_ruby_diagnostics().parseGemfileLock,prerenderToBuildOutputFile:()=>load_import_prerender_to_build_output_file().prerenderToBuildOutputFile,readConfigFile:()=>load_import_read_config_file().readConfigFile,rename:()=>load_import_rename().default,resetCustomInstallCommandSet:()=>load_import_run_user_scripts().resetCustomInstallCommandSet,resolveMiddlewareMatcher:()=>load_import_middleware_matcher().resolveMiddlewareMatcher,runBundleInstall:()=>load_import_run_user_scripts().runBundleInstall,runCustomInstallCommand:()=>load_import_run_user_scripts().runCustomInstallCommand,runNpmInstall:()=>load_import_run_user_scripts().runNpmInstall,runPackageJsonScript:()=>load_import_run_user_scripts().runPackageJsonScript,runPipInstall:()=>load_import_run_user_scripts().runPipInstall,runShellScript:()=>load_import_run_user_scripts().runShellScript,sanitizeConsumerName:()=>load_import_lambda().sanitizeConsumerName,scanParentDirs:()=>load_import_run_user_scripts().scanParentDirs,sha256:()=>load_import_stream_to_digest_async().sha256,shouldServe:()=>load_import_should_serve().shouldServe,shouldUseExperimentalBackends:()=>load_import_framework_helpers().shouldUseExperimentalBackends,spawnAsync:()=>load_import_run_user_scripts().spawnAsync,spawnCommand:()=>load_import_run_user_scripts().spawnCommand,streamToBuffer:()=>load_import_stream_to_buffer().default,streamToBufferChunks:()=>load_import_stream_to_buffer().streamToBufferChunks,streamToDigestAsync:()=>load_import_stream_to_digest_async().streamToDigestAsync,streamWithExtendedPayload:()=>load_import_stream_with_extended_payload().streamWithExtendedPayload,traverseUpDirectories:()=>load_import_find_package_json().traverseUpDirectories,validateBuildResult:()=>load_import_validate_build_result().validateBuildResult,validateDeploymentId:()=>load_import_deserialize_build_output().validateDeploymentId,validateEnvWrapperSupport:()=>load_import_validate_lambda_size().validateEnvWrapperSupport,validateFrameworkVersion:()=>load_import_validate_framework_version().validateFrameworkVersion,validateLambdaSize:()=>load_import_validate_lambda_size().validateLambdaSize,validateNpmrc:()=>load_import_validate_npmrc().validateNpmrc,validatePrerender:()=>load_import_validate_prerender().validatePrerender,validateRegularFile:()=>load_import_validate_regular_file().validateRegularFile,validateUncompressedLambdaSize:()=>load_import_validate_lambda_size().validateUncompressedLambdaSize,walkParentDirs:()=>load_import_find_package_json().walkParentDirs});module.exports=__toCommonJS2(stdin_exports);var import_file_blob4,load_import_file_blob=()=>import_file_blob4??=__toESM2((init_file_blob(),__toCommonJS(file_blob_exports))),import_file_fs_ref5,load_import_file_fs_ref=()=>import_file_fs_ref5??=__toESM2((init_file_fs_ref(),__toCommonJS(file_fs_ref_exports))),import_file_ref,load_import_file_ref=()=>import_file_ref??=__toESM2((init_file_ref(),__toCommonJS(file_ref_exports))),import_lambda3,load_import_lambda=()=>import_lambda3??=(init_lambda(),__toCommonJS(lambda_exports)),import_nodejs_lambda2,load_import_nodejs_lambda=()=>import_nodejs_lambda2??=(init_nodejs_lambda(),__toCommonJS(nodejs_lambda_exports)),import_prerender2,load_import_prerender=()=>import_prerender2??=(init_prerender(),__toCommonJS(prerender_exports)),import_download2,load_import_download=()=>import_download2??=__toESM2((init_download(),__toCommonJS(download_exports))),import_get_writable_directory,load_import_get_writable_directory=()=>import_get_writable_directory??=__toESM2((init_get_writable_directory(),__toCommonJS(get_writable_directory_exports))),import_glob4,load_import_glob=()=>import_glob4??=__toESM2((init_glob(),__toCommonJS(glob_exports))),import_rename,load_import_rename=()=>import_rename??=__toESM2((init_rename(),__toCommonJS(rename_exports))),import_run_user_scripts,load_import_run_user_scripts=()=>import_run_user_scripts??=(init_run_user_scripts(),__toCommonJS(run_user_scripts_exports)),import_node_version2,load_import_node_version=()=>import_node_version2??=(init_node_version(),__toCommonJS(node_version_exports)),import_find_package_json3,load_import_find_package_json=()=>import_find_package_json3??=(init_find_package_json(),__toCommonJS(find_package_json_exports)),import_stream_to_buffer3,load_import_stream_to_buffer=()=>import_stream_to_buffer3??=__toESM2((init_stream_to_buffer(),__toCommonJS(stream_to_buffer_exports))),import_bun_helpers,load_import_bun_helpers=()=>import_bun_helpers??=(init_bun_helpers(),__toCommonJS(bun_helpers_exports)),import_debug9,load_import_debug=()=>import_debug9??=__toESM2((init_debug(),__toCommonJS(debug_exports))),import_get_ignore_filter,load_import_get_ignore_filter=()=>import_get_ignore_filter??=__toESM2((init_get_ignore_filter(),__toCommonJS(get_ignore_filter_exports))),import_get_platform_env2,load_import_get_platform_env=()=>import_get_platform_env2??=(init_get_platform_env(),__toCommonJS(get_platform_env_exports)),import_get_prefixed_env_vars,load_import_get_prefixed_env_vars=()=>import_get_prefixed_env_vars??=(init_get_prefixed_env_vars(),__toCommonJS(get_prefixed_env_vars_exports)),import_get_service_url_env_vars,load_import_get_service_url_env_vars=()=>import_get_service_url_env_vars??=(init_get_service_url_env_vars(),__toCommonJS(get_service_url_env_vars_exports)),import_clone_env2,load_import_clone_env=()=>import_clone_env2??=(init_clone_env(),__toCommonJS(clone_env_exports)),import_hard_link_dir,load_import_hard_link_dir=()=>import_hard_link_dir??=(init_hard_link_dir(),__toCommonJS(hard_link_dir_exports)),import_get_node_exec_path,load_import_get_node_exec_path=()=>import_get_node_exec_path??=(init_get_node_exec_path(),__toCommonJS(get_node_exec_path_exports)),import_validate_npmrc,load_import_validate_npmrc=()=>import_validate_npmrc??=(init_validate_npmrc(),__toCommonJS(validate_npmrc_exports)),import_edge_function2,load_import_edge_function=()=>import_edge_function2??=(init_edge_function(),__toCommonJS(edge_function_exports)),import_container_image,load_import_container_image=()=>import_container_image??=(init_container_image(),__toCommonJS(container_image_exports)),import_read_config_file2,load_import_read_config_file=()=>import_read_config_file2??=(init_read_config_file(),__toCommonJS(read_config_file_exports)),import_normalize_path2,load_import_normalize_path=()=>import_normalize_path2??=(init_normalize_path(),__toCommonJS(normalize_path_exports)),import_provided_runtime,load_import_provided_runtime=()=>import_provided_runtime??=(init_provided_runtime(),__toCommonJS(provided_runtime_exports)),import_should_serve,load_import_should_serve=()=>import_should_serve??=(init_should_serve(),__toCommonJS(should_serve_exports)),import_schemas,load_import_schemas=()=>import_schemas??=(init_schemas(),__toCommonJS(schemas_exports)),import_max_duration2,load_import_max_duration=()=>import_max_duration2??=(init_max_duration(),__toCommonJS(max_duration_exports));__reExport(stdin_exports,(init_package_manifest(),__toCommonJS(package_manifest_exports)),module.exports);__reExport(stdin_exports,(init_deploy_manifest(),__toCommonJS(deploy_manifest_exports)),module.exports);var import_node_diagnostics,load_import_node_diagnostics=()=>import_node_diagnostics??=(init_node_diagnostics(),__toCommonJS(node_diagnostics_exports)),import_ruby_diagnostics,load_import_ruby_diagnostics=()=>import_ruby_diagnostics??=(init_ruby_diagnostics(),__toCommonJS(ruby_diagnostics_exports));__reExport(stdin_exports,(init_types(),__toCommonJS(types_exports)),module.exports);__reExport(stdin_exports,(init_errors(),__toCommonJS(errors_exports)),module.exports);__reExport(stdin_exports,(init_trace2(),__toCommonJS(trace_exports)),module.exports);var import_node_version22,load_import_node_version2=()=>import_node_version22??=(init_node_version(),__toCommonJS(node_version_exports)),import_get_installed_package_version,load_import_get_installed_package_version=()=>import_get_installed_package_version??=(init_get_installed_package_version(),__toCommonJS(get_installed_package_version_exports)),import_is_package_installed,load_import_is_package_installed=()=>import_is_package_installed??=(init_is_package_installed(),__toCommonJS(is_package_installed_exports)),import_default_cache_path_glob,load_import_default_cache_path_glob=()=>import_default_cache_path_glob??=(init_default_cache_path_glob(),__toCommonJS(default_cache_path_glob_exports)),import_generate_node_builder_functions,load_import_generate_node_builder_functions=()=>import_generate_node_builder_functions??=(init_generate_node_builder_functions(),__toCommonJS(generate_node_builder_functions_exports)),import_middleware_matcher,load_import_middleware_matcher=()=>import_middleware_matcher??=(init_middleware_matcher(),__toCommonJS(middleware_matcher_exports)),import_framework_helpers,load_import_framework_helpers=()=>import_framework_helpers??=(init_framework_helpers(),__toCommonJS(framework_helpers_exports)),import_node_entrypoint,load_import_node_entrypoint=()=>import_node_entrypoint??=(init_node_entrypoint(),__toCommonJS(node_entrypoint_exports));__reExport(stdin_exports,(init_service_path_utils(),__toCommonJS(service_path_utils_exports)),module.exports);__reExport(stdin_exports,(init_schedule_path_utils(),__toCommonJS(schedule_path_utils_exports)),module.exports);var import_get_encrypted_env_file2,load_import_get_encrypted_env_file=()=>import_get_encrypted_env_file2??=(init_get_encrypted_env_file(),__toCommonJS(get_encrypted_env_file_exports)),import_get_lambda_environment2,load_import_get_lambda_environment=()=>import_get_lambda_environment2??=(init_get_lambda_environment(),__toCommonJS(get_lambda_environment_exports)),import_get_lambda_preload_scripts2,load_import_get_lambda_preload_scripts=()=>import_get_lambda_preload_scripts2??=(init_get_lambda_preload_scripts(),__toCommonJS(get_lambda_preload_scripts_exports)),import_get_lambda_supports_streaming2,load_import_get_lambda_supports_streaming=()=>import_get_lambda_supports_streaming2??=(init_get_lambda_supports_streaming(),__toCommonJS(get_lambda_supports_streaming_exports)),import_stream_to_digest_async3,load_import_stream_to_digest_async=()=>import_stream_to_digest_async3??=(init_stream_to_digest_async(),__toCommonJS(stream_to_digest_async_exports)),import_get_build_result_metadata,load_import_get_build_result_metadata=()=>import_get_build_result_metadata??=(init_get_build_result_metadata(),__toCommonJS(get_build_result_metadata_exports)),import_validate_build_result,load_import_validate_build_result=()=>import_validate_build_result??=(init_validate_build_result(),__toCommonJS(validate_build_result_exports)),import_get_lambda_by_output_path2,load_import_get_lambda_by_output_path=()=>import_get_lambda_by_output_path2??=(init_get_lambda_by_output_path(),__toCommonJS(get_lambda_by_output_path_exports)),import_is_route_middleware2,load_import_is_route_middleware=()=>import_is_route_middleware2??=(init_is_route_middleware(),__toCommonJS(is_route_middleware_exports)),import_get_prerender_chain2,load_import_get_prerender_chain=()=>import_get_prerender_chain2??=(init_get_prerender_chain(),__toCommonJS(get_prerender_chain_exports)),import_stream_with_extended_payload2,load_import_stream_with_extended_payload=()=>import_stream_with_extended_payload2??=(init_stream_with_extended_payload(),__toCommonJS(stream_with_extended_payload_exports)),import_collect_uncompressed_size2,load_import_collect_uncompressed_size=()=>import_collect_uncompressed_size2??=(init_collect_uncompressed_size(),__toCommonJS(collect_uncompressed_size_exports)),import_finalize_lambda,load_import_finalize_lambda=()=>import_finalize_lambda??=(init_finalize_lambda(),__toCommonJS(finalize_lambda_exports)),import_validate_lambda_size,load_import_validate_lambda_size=()=>import_validate_lambda_size??=(init_validate_lambda_size(),__toCommonJS(validate_lambda_size_exports)),import_validate_framework_version2,load_import_validate_framework_version=()=>import_validate_framework_version2??=(init_validate_framework_version(),__toCommonJS(validate_framework_version_exports)),import_hydrate_files_map3,load_import_hydrate_files_map=()=>import_hydrate_files_map3??=(init_hydrate_files_map(),__toCommonJS(hydrate_files_map_exports)),import_create_functions_iterator2,load_import_create_functions_iterator=()=>import_create_functions_iterator2??=(init_create_functions_iterator(),__toCommonJS(create_functions_iterator_exports)),import_maybe_read_json2,load_import_maybe_read_json=()=>import_maybe_read_json2??=(init_maybe_read_json(),__toCommonJS(maybe_read_json_exports)),import_deserialize_build_output,load_import_deserialize_build_output=()=>import_deserialize_build_output??=(init_deserialize_build_output(),__toCommonJS(deserialize_build_output_exports)),import_deserialize_lambda,load_import_deserialize_lambda=()=>import_deserialize_lambda??=(init_deserialize_lambda(),__toCommonJS(deserialize_lambda_exports)),import_deserialize_edge_function2,load_import_deserialize_edge_function=()=>import_deserialize_edge_function2??=(init_deserialize_edge_function(),__toCommonJS(deserialize_edge_function_exports)),import_validate_regular_file2,load_import_validate_regular_file=()=>import_validate_regular_file2??=(init_validate_regular_file(),__toCommonJS(validate_regular_file_exports)),import_validate_prerender,load_import_validate_prerender=()=>import_validate_prerender??=(init_validate_prerender(),__toCommonJS(validate_prerender_exports)),import_get_content_type2,load_import_get_content_type=()=>import_get_content_type2??=(init_get_content_type(),__toCommonJS(get_content_type_exports)),import_file_to_build_output_file2,load_import_file_to_build_output_file=()=>import_file_to_build_output_file2??=(init_file_to_build_output_file(),__toCommonJS(file_to_build_output_file_exports)),import_prerender_to_build_output_file,load_import_prerender_to_build_output_file=()=>import_prerender_to_build_output_file??=(init_prerender_to_build_output_file(),__toCommonJS(prerender_to_build_output_file_exports));
119
+ `,MULTIPART_HEADER="multipart/x-nextjs-extended-payload",boundary=(0,import_crypto2.randomBytes)(8).toString("hex")}});var __create2=Object.create,__defProp2=Object.defineProperty,__getOwnPropDesc2=Object.getOwnPropertyDescriptor,__getOwnPropNames2=Object.getOwnPropertyNames,__getProtoOf2=Object.getPrototypeOf,__hasOwnProp2=Object.prototype.hasOwnProperty,__export2=(target,all)=>{for(var name in all)__defProp2(target,name,{get:all[name],enumerable:!0})},__copyProps2=(to,from,except,desc)=>{if(from&&typeof from=="object"||typeof from=="function")for(let key of __getOwnPropNames2(from))!__hasOwnProp2.call(to,key)&&key!==except&&__defProp2(to,key,{get:()=>from[key],enumerable:!(desc=__getOwnPropDesc2(from,key))||desc.enumerable});return to},__reExport=(target,mod,secondTarget)=>(__copyProps2(target,mod,"default"),secondTarget&&__copyProps2(secondTarget,mod,"default")),__toESM2=(mod,isNodeMode,target)=>(target=mod!=null?__create2(__getProtoOf2(mod)):{},__copyProps2(isNodeMode||!mod||!mod.__esModule?__defProp2(target,"default",{value:mod,enumerable:!0}):target,mod)),__toCommonJS2=mod=>__copyProps2(__defProp2({},"__esModule",{value:!0}),mod),stdin_exports={};__export2(stdin_exports,{BACKEND_BUILDERS:()=>load_import_framework_helpers().BACKEND_BUILDERS,BACKEND_FRAMEWORKS:()=>load_import_framework_helpers().BACKEND_FRAMEWORKS,ContainerImage:()=>load_import_container_image().ContainerImage,DEFAULT_MAX_DURATION_LIMIT:()=>load_import_max_duration().DEFAULT_MAX_DURATION_LIMIT,ENV_WRAPPER_SUPPORTED_FAMILIES:()=>load_import_validate_lambda_size().ENV_WRAPPER_SUPPORTED_FAMILIES,EdgeFunction:()=>load_import_edge_function().EdgeFunction,FileBlob:()=>load_import_file_blob().default,FileFsRef:()=>load_import_file_fs_ref().default,FileRef:()=>load_import_file_ref().default,FunctionSizeError:()=>load_import_validate_lambda_size().FunctionSizeError,Lambda:()=>load_import_lambda().Lambda,MAX_LAMBDA_SIZE:()=>load_import_validate_lambda_size().MAX_LAMBDA_SIZE,MAX_LAMBDA_UNCOMPRESSED_SIZE:()=>load_import_validate_lambda_size().MAX_LAMBDA_UNCOMPRESSED_SIZE,NODE_VERSIONS:()=>load_import_node_version2().NODE_VERSIONS,NodejsLambda:()=>load_import_nodejs_lambda().NodejsLambda,PYTHON_FRAMEWORKS:()=>load_import_framework_helpers().PYTHON_FRAMEWORKS,Prerender:()=>load_import_prerender().Prerender,SKIP_MAX_DURATION_LIMIT_ENV:()=>load_import_max_duration().SKIP_MAX_DURATION_LIMIT_ENV,SUPPORTED_AL2023_RUNTIMES:()=>load_import_validate_build_result().SUPPORTED_AL2023_RUNTIMES,UNIFIED_BACKEND_BUILDER:()=>load_import_framework_helpers().UNIFIED_BACKEND_BUILDER,buildsSchema:()=>load_import_schemas().buildsSchema,cloneEnv:()=>load_import_clone_env().cloneEnv,collectUncompressedSize:()=>load_import_collect_uncompressed_size().collectUncompressedSize,createFunctionsIterator:()=>load_import_create_functions_iterator().createFunctionsIterator,createLambda:()=>load_import_lambda().createLambda,debug:()=>load_import_debug().default,defaultCachePathGlob:()=>load_import_default_cache_path_glob().defaultCachePathGlob,deserializeBuildOutput:()=>load_import_deserialize_build_output().deserializeBuildOutput,deserializeEdgeFunction:()=>load_import_deserialize_edge_function().deserializeEdgeFunction,deserializeLambda:()=>load_import_deserialize_lambda().deserializeLambda,detectPackageManager:()=>load_import_run_user_scripts().detectPackageManager,download:()=>load_import_download().default,downloadFile:()=>load_import_download().downloadFile,execCommand:()=>load_import_run_user_scripts().execCommand,fileToBuildOutputFile:()=>load_import_file_to_build_output_file().fileToBuildOutputFile,finalizeLambda:()=>load_import_finalize_lambda().finalizeLambda,findMatchingFunction:()=>load_import_lambda().findMatchingFunction,findPackageJson:()=>load_import_find_package_json().findPackageJson,functionsSchema:()=>load_import_schemas().functionsSchema,generateNodeBuilderFunctions:()=>load_import_generate_node_builder_functions().generateNodeBuilderFunctions,generateProjectManifest:()=>load_import_node_diagnostics().generateProjectManifest,generateRubyProjectManifest:()=>load_import_ruby_diagnostics().generateRubyProjectManifest,getBuildResultMetadata:()=>load_import_get_build_result_metadata().getBuildResultMetadata,getContentType:()=>load_import_get_content_type().getContentType,getDiscontinuedNodeVersions:()=>load_import_node_version().getDiscontinuedNodeVersions,getEncryptedEnv:()=>load_import_get_encrypted_env_file().getEncryptedEnv,getEnvForPackageManager:()=>load_import_run_user_scripts().getEnvForPackageManager,getExperimentalServiceUrlEnvVars:()=>load_import_get_service_url_env_vars().getExperimentalServiceUrlEnvVars,getFunctionsSchema:()=>load_import_schemas().getFunctionsSchema,getIgnoreFilter:()=>load_import_get_ignore_filter().default,getInstalledPackageVersion:()=>load_import_get_installed_package_version().getInstalledPackageVersion,getLambdaByOutputPath:()=>load_import_get_lambda_by_output_path().getLambdaByOutputPath,getLambdaEnvironment:()=>load_import_get_lambda_environment().getLambdaEnvironment,getLambdaOptionsFromFunction:()=>load_import_lambda().getLambdaOptionsFromFunction,getLambdaPreloadScripts:()=>load_import_get_lambda_preload_scripts().getLambdaPreloadScripts,getLambdaSupportsStreaming:()=>load_import_get_lambda_supports_streaming().getLambdaSupportsStreaming,getLatestNodeVersion:()=>load_import_node_version().getLatestNodeVersion,getMaxDurationLimit:()=>load_import_max_duration().getMaxDurationLimit,getMaxDurationSchema:()=>load_import_max_duration().getMaxDurationSchema,getNodeBinPath:()=>load_import_run_user_scripts().getNodeBinPath,getNodeBinPaths:()=>load_import_run_user_scripts().getNodeBinPaths,getNodeExecPath:()=>load_import_get_node_exec_path().getNodeExecPath,getNodeVersion:()=>load_import_run_user_scripts().getNodeVersion,getOrCreateBunBinary:()=>load_import_bun_helpers().getOrCreateBunBinary,getPackageJson:()=>load_import_read_config_file().getPackageJson,getPathForPackageManager:()=>load_import_run_user_scripts().getPathForPackageManager,getPlatformEnv:()=>load_import_get_platform_env().getPlatformEnv,getPrefixedEnvVars:()=>load_import_get_prefixed_env_vars().getPrefixedEnvVars,getPrerenderChain:()=>load_import_get_prerender_chain().getPrerenderChain,getProvidedRuntime:()=>load_import_provided_runtime().getProvidedRuntime,getRegExpFromMatchers:()=>load_import_middleware_matcher().getRegExpFromMatchers,getScriptName:()=>load_import_run_user_scripts().getScriptName,getServiceUrlEnvVars:()=>load_import_get_service_url_env_vars().getServiceUrlEnvVars,getSpawnOptions:()=>load_import_run_user_scripts().getSpawnOptions,getSupportedBunVersion:()=>load_import_node_version().getSupportedBunVersion,getSupportedNodeVersion:()=>load_import_node_version().getSupportedNodeVersion,getSymlinkTarget:()=>load_import_download().getSymlinkTarget,getWriteableDirectory:()=>load_import_get_writable_directory().default,glob:()=>load_import_glob().default,hardLinkDir:()=>load_import_hard_link_dir().hardLinkDir,hydrateFilesMap:()=>load_import_hydrate_files_map().hydrateFilesMap,installDependencies:()=>load_import_run_user_scripts().installDependencies,isBackendBuilder:()=>load_import_framework_helpers().isBackendBuilder,isBackendFramework:()=>load_import_framework_helpers().isBackendFramework,isBunVersion:()=>load_import_node_version().isBunVersion,isDirectory:()=>load_import_download().isDirectory,isExperimentalBackendsEnabled:()=>load_import_framework_helpers().isExperimentalBackendsEnabled,isExperimentalBackendsWithoutIntrospectionEnabled:()=>load_import_framework_helpers().isExperimentalBackendsWithoutIntrospectionEnabled,isExternalSymlink:()=>load_import_download().isExternalSymlink,isExternalSymlinkTarget:()=>load_import_download().isExternalSymlinkTarget,isNodeBackendFramework:()=>load_import_framework_helpers().isNodeBackendFramework,isNodeEntrypoint:()=>load_import_node_entrypoint().isNodeEntrypoint,isPackageInstalled:()=>load_import_is_package_installed().isPackageInstalled,isPythonFramework:()=>load_import_framework_helpers().isPythonFramework,isRouteMiddleware:()=>load_import_is_route_middleware().isRouteMiddleware,isSymbolicLink:()=>load_import_download().isSymbolicLink,maybeReadJSON:()=>load_import_maybe_read_json().maybeReadJSON,md5:()=>load_import_stream_to_digest_async().md5,normalizePath:()=>load_import_normalize_path().normalizePath,packageManifestSchema:()=>load_import_schemas().packageManifestSchema,parseGemfileLock:()=>load_import_ruby_diagnostics().parseGemfileLock,prerenderToBuildOutputFile:()=>load_import_prerender_to_build_output_file().prerenderToBuildOutputFile,readConfigFile:()=>load_import_read_config_file().readConfigFile,rename:()=>load_import_rename().default,resetCustomInstallCommandSet:()=>load_import_run_user_scripts().resetCustomInstallCommandSet,resolveMiddlewareMatcher:()=>load_import_middleware_matcher().resolveMiddlewareMatcher,runBundleInstall:()=>load_import_run_user_scripts().runBundleInstall,runCustomInstallCommand:()=>load_import_run_user_scripts().runCustomInstallCommand,runNpmInstall:()=>load_import_run_user_scripts().runNpmInstall,runPackageJsonScript:()=>load_import_run_user_scripts().runPackageJsonScript,runPipInstall:()=>load_import_run_user_scripts().runPipInstall,runShellScript:()=>load_import_run_user_scripts().runShellScript,sanitizeConsumerName:()=>load_import_lambda().sanitizeConsumerName,scanParentDirs:()=>load_import_run_user_scripts().scanParentDirs,sha256:()=>load_import_stream_to_digest_async().sha256,shouldServe:()=>load_import_should_serve().shouldServe,shouldUseExperimentalBackends:()=>load_import_framework_helpers().shouldUseExperimentalBackends,spawnAsync:()=>load_import_run_user_scripts().spawnAsync,spawnCommand:()=>load_import_run_user_scripts().spawnCommand,streamToBuffer:()=>load_import_stream_to_buffer().default,streamToBufferChunks:()=>load_import_stream_to_buffer().streamToBufferChunks,streamToDigestAsync:()=>load_import_stream_to_digest_async().streamToDigestAsync,streamWithExtendedPayload:()=>load_import_stream_with_extended_payload().streamWithExtendedPayload,traverseUpDirectories:()=>load_import_find_package_json().traverseUpDirectories,validateBuildResult:()=>load_import_validate_build_result().validateBuildResult,validateDeploymentId:()=>load_import_deserialize_build_output().validateDeploymentId,validateEnvWrapperSupport:()=>load_import_validate_lambda_size().validateEnvWrapperSupport,validateFrameworkVersion:()=>load_import_validate_framework_version().validateFrameworkVersion,validateLambdaSize:()=>load_import_validate_lambda_size().validateLambdaSize,validateNpmrc:()=>load_import_validate_npmrc().validateNpmrc,validatePrerender:()=>load_import_validate_prerender().validatePrerender,validateRegularFile:()=>load_import_validate_regular_file().validateRegularFile,validateUncompressedLambdaSize:()=>load_import_validate_lambda_size().validateUncompressedLambdaSize,walkParentDirs:()=>load_import_find_package_json().walkParentDirs});module.exports=__toCommonJS2(stdin_exports);var import_file_blob4,load_import_file_blob=()=>import_file_blob4??=__toESM2((init_file_blob(),__toCommonJS(file_blob_exports))),import_file_fs_ref5,load_import_file_fs_ref=()=>import_file_fs_ref5??=__toESM2((init_file_fs_ref(),__toCommonJS(file_fs_ref_exports))),import_file_ref,load_import_file_ref=()=>import_file_ref??=__toESM2((init_file_ref(),__toCommonJS(file_ref_exports))),import_lambda3,load_import_lambda=()=>import_lambda3??=(init_lambda(),__toCommonJS(lambda_exports)),import_nodejs_lambda2,load_import_nodejs_lambda=()=>import_nodejs_lambda2??=(init_nodejs_lambda(),__toCommonJS(nodejs_lambda_exports)),import_prerender2,load_import_prerender=()=>import_prerender2??=(init_prerender(),__toCommonJS(prerender_exports)),import_download2,load_import_download=()=>import_download2??=__toESM2((init_download(),__toCommonJS(download_exports))),import_get_writable_directory,load_import_get_writable_directory=()=>import_get_writable_directory??=__toESM2((init_get_writable_directory(),__toCommonJS(get_writable_directory_exports))),import_glob4,load_import_glob=()=>import_glob4??=__toESM2((init_glob(),__toCommonJS(glob_exports))),import_rename,load_import_rename=()=>import_rename??=__toESM2((init_rename(),__toCommonJS(rename_exports))),import_run_user_scripts,load_import_run_user_scripts=()=>import_run_user_scripts??=(init_run_user_scripts(),__toCommonJS(run_user_scripts_exports)),import_node_version2,load_import_node_version=()=>import_node_version2??=(init_node_version(),__toCommonJS(node_version_exports)),import_find_package_json3,load_import_find_package_json=()=>import_find_package_json3??=(init_find_package_json(),__toCommonJS(find_package_json_exports)),import_stream_to_buffer3,load_import_stream_to_buffer=()=>import_stream_to_buffer3??=__toESM2((init_stream_to_buffer(),__toCommonJS(stream_to_buffer_exports))),import_bun_helpers,load_import_bun_helpers=()=>import_bun_helpers??=(init_bun_helpers(),__toCommonJS(bun_helpers_exports)),import_debug9,load_import_debug=()=>import_debug9??=__toESM2((init_debug(),__toCommonJS(debug_exports))),import_get_ignore_filter,load_import_get_ignore_filter=()=>import_get_ignore_filter??=__toESM2((init_get_ignore_filter(),__toCommonJS(get_ignore_filter_exports))),import_get_platform_env2,load_import_get_platform_env=()=>import_get_platform_env2??=(init_get_platform_env(),__toCommonJS(get_platform_env_exports)),import_get_prefixed_env_vars,load_import_get_prefixed_env_vars=()=>import_get_prefixed_env_vars??=(init_get_prefixed_env_vars(),__toCommonJS(get_prefixed_env_vars_exports)),import_get_service_url_env_vars,load_import_get_service_url_env_vars=()=>import_get_service_url_env_vars??=(init_get_service_url_env_vars(),__toCommonJS(get_service_url_env_vars_exports)),import_clone_env2,load_import_clone_env=()=>import_clone_env2??=(init_clone_env(),__toCommonJS(clone_env_exports)),import_hard_link_dir,load_import_hard_link_dir=()=>import_hard_link_dir??=(init_hard_link_dir(),__toCommonJS(hard_link_dir_exports)),import_get_node_exec_path,load_import_get_node_exec_path=()=>import_get_node_exec_path??=(init_get_node_exec_path(),__toCommonJS(get_node_exec_path_exports)),import_validate_npmrc,load_import_validate_npmrc=()=>import_validate_npmrc??=(init_validate_npmrc(),__toCommonJS(validate_npmrc_exports)),import_edge_function2,load_import_edge_function=()=>import_edge_function2??=(init_edge_function(),__toCommonJS(edge_function_exports)),import_container_image,load_import_container_image=()=>import_container_image??=(init_container_image(),__toCommonJS(container_image_exports)),import_read_config_file2,load_import_read_config_file=()=>import_read_config_file2??=(init_read_config_file(),__toCommonJS(read_config_file_exports)),import_normalize_path2,load_import_normalize_path=()=>import_normalize_path2??=(init_normalize_path(),__toCommonJS(normalize_path_exports)),import_provided_runtime,load_import_provided_runtime=()=>import_provided_runtime??=(init_provided_runtime(),__toCommonJS(provided_runtime_exports)),import_should_serve,load_import_should_serve=()=>import_should_serve??=(init_should_serve(),__toCommonJS(should_serve_exports)),import_schemas,load_import_schemas=()=>import_schemas??=(init_schemas(),__toCommonJS(schemas_exports)),import_max_duration2,load_import_max_duration=()=>import_max_duration2??=(init_max_duration(),__toCommonJS(max_duration_exports));__reExport(stdin_exports,(init_package_manifest(),__toCommonJS(package_manifest_exports)),module.exports);__reExport(stdin_exports,(init_deploy_manifest(),__toCommonJS(deploy_manifest_exports)),module.exports);var import_node_diagnostics,load_import_node_diagnostics=()=>import_node_diagnostics??=(init_node_diagnostics(),__toCommonJS(node_diagnostics_exports)),import_ruby_diagnostics,load_import_ruby_diagnostics=()=>import_ruby_diagnostics??=(init_ruby_diagnostics(),__toCommonJS(ruby_diagnostics_exports));__reExport(stdin_exports,(init_types(),__toCommonJS(types_exports)),module.exports);__reExport(stdin_exports,(init_errors(),__toCommonJS(errors_exports)),module.exports);__reExport(stdin_exports,(init_trace2(),__toCommonJS(trace_exports)),module.exports);var import_node_version22,load_import_node_version2=()=>import_node_version22??=(init_node_version(),__toCommonJS(node_version_exports)),import_get_installed_package_version,load_import_get_installed_package_version=()=>import_get_installed_package_version??=(init_get_installed_package_version(),__toCommonJS(get_installed_package_version_exports)),import_is_package_installed,load_import_is_package_installed=()=>import_is_package_installed??=(init_is_package_installed(),__toCommonJS(is_package_installed_exports)),import_default_cache_path_glob,load_import_default_cache_path_glob=()=>import_default_cache_path_glob??=(init_default_cache_path_glob(),__toCommonJS(default_cache_path_glob_exports)),import_generate_node_builder_functions,load_import_generate_node_builder_functions=()=>import_generate_node_builder_functions??=(init_generate_node_builder_functions(),__toCommonJS(generate_node_builder_functions_exports)),import_middleware_matcher,load_import_middleware_matcher=()=>import_middleware_matcher??=(init_middleware_matcher(),__toCommonJS(middleware_matcher_exports)),import_framework_helpers,load_import_framework_helpers=()=>import_framework_helpers??=(init_framework_helpers(),__toCommonJS(framework_helpers_exports)),import_node_entrypoint,load_import_node_entrypoint=()=>import_node_entrypoint??=(init_node_entrypoint(),__toCommonJS(node_entrypoint_exports));__reExport(stdin_exports,(init_service_path_utils(),__toCommonJS(service_path_utils_exports)),module.exports);__reExport(stdin_exports,(init_schedule_path_utils(),__toCommonJS(schedule_path_utils_exports)),module.exports);var import_get_encrypted_env_file2,load_import_get_encrypted_env_file=()=>import_get_encrypted_env_file2??=(init_get_encrypted_env_file(),__toCommonJS(get_encrypted_env_file_exports)),import_get_lambda_environment2,load_import_get_lambda_environment=()=>import_get_lambda_environment2??=(init_get_lambda_environment(),__toCommonJS(get_lambda_environment_exports)),import_get_lambda_preload_scripts2,load_import_get_lambda_preload_scripts=()=>import_get_lambda_preload_scripts2??=(init_get_lambda_preload_scripts(),__toCommonJS(get_lambda_preload_scripts_exports)),import_get_lambda_supports_streaming2,load_import_get_lambda_supports_streaming=()=>import_get_lambda_supports_streaming2??=(init_get_lambda_supports_streaming(),__toCommonJS(get_lambda_supports_streaming_exports)),import_stream_to_digest_async3,load_import_stream_to_digest_async=()=>import_stream_to_digest_async3??=(init_stream_to_digest_async(),__toCommonJS(stream_to_digest_async_exports)),import_get_build_result_metadata,load_import_get_build_result_metadata=()=>import_get_build_result_metadata??=(init_get_build_result_metadata(),__toCommonJS(get_build_result_metadata_exports)),import_validate_build_result,load_import_validate_build_result=()=>import_validate_build_result??=(init_validate_build_result(),__toCommonJS(validate_build_result_exports)),import_get_lambda_by_output_path2,load_import_get_lambda_by_output_path=()=>import_get_lambda_by_output_path2??=(init_get_lambda_by_output_path(),__toCommonJS(get_lambda_by_output_path_exports)),import_is_route_middleware2,load_import_is_route_middleware=()=>import_is_route_middleware2??=(init_is_route_middleware(),__toCommonJS(is_route_middleware_exports)),import_get_prerender_chain2,load_import_get_prerender_chain=()=>import_get_prerender_chain2??=(init_get_prerender_chain(),__toCommonJS(get_prerender_chain_exports)),import_stream_with_extended_payload2,load_import_stream_with_extended_payload=()=>import_stream_with_extended_payload2??=(init_stream_with_extended_payload(),__toCommonJS(stream_with_extended_payload_exports)),import_collect_uncompressed_size2,load_import_collect_uncompressed_size=()=>import_collect_uncompressed_size2??=(init_collect_uncompressed_size(),__toCommonJS(collect_uncompressed_size_exports)),import_finalize_lambda,load_import_finalize_lambda=()=>import_finalize_lambda??=(init_finalize_lambda(),__toCommonJS(finalize_lambda_exports)),import_validate_lambda_size,load_import_validate_lambda_size=()=>import_validate_lambda_size??=(init_validate_lambda_size(),__toCommonJS(validate_lambda_size_exports)),import_validate_framework_version2,load_import_validate_framework_version=()=>import_validate_framework_version2??=(init_validate_framework_version(),__toCommonJS(validate_framework_version_exports)),import_hydrate_files_map3,load_import_hydrate_files_map=()=>import_hydrate_files_map3??=(init_hydrate_files_map(),__toCommonJS(hydrate_files_map_exports)),import_create_functions_iterator2,load_import_create_functions_iterator=()=>import_create_functions_iterator2??=(init_create_functions_iterator(),__toCommonJS(create_functions_iterator_exports)),import_maybe_read_json2,load_import_maybe_read_json=()=>import_maybe_read_json2??=(init_maybe_read_json(),__toCommonJS(maybe_read_json_exports)),import_deserialize_build_output,load_import_deserialize_build_output=()=>import_deserialize_build_output??=(init_deserialize_build_output(),__toCommonJS(deserialize_build_output_exports)),import_deserialize_lambda,load_import_deserialize_lambda=()=>import_deserialize_lambda??=(init_deserialize_lambda(),__toCommonJS(deserialize_lambda_exports)),import_deserialize_edge_function2,load_import_deserialize_edge_function=()=>import_deserialize_edge_function2??=(init_deserialize_edge_function(),__toCommonJS(deserialize_edge_function_exports)),import_validate_regular_file2,load_import_validate_regular_file=()=>import_validate_regular_file2??=(init_validate_regular_file(),__toCommonJS(validate_regular_file_exports)),import_validate_prerender,load_import_validate_prerender=()=>import_validate_prerender??=(init_validate_prerender(),__toCommonJS(validate_prerender_exports)),import_get_content_type2,load_import_get_content_type=()=>import_get_content_type2??=(init_get_content_type(),__toCommonJS(get_content_type_exports)),import_file_to_build_output_file2,load_import_file_to_build_output_file=()=>import_file_to_build_output_file2??=(init_file_to_build_output_file(),__toCommonJS(file_to_build_output_file_exports)),import_prerender_to_build_output_file,load_import_prerender_to_build_output_file=()=>import_prerender_to_build_output_file??=(init_prerender_to_build_output_file(),__toCommonJS(prerender_to_build_output_file_exports));
120
120
  /*! Bundled license information:
121
121
 
122
122
  smol-toml/dist/error.js:
@@ -405,4 +405,4 @@ mime-types/index.js:
405
405
  */
406
406
 
407
407
  // Named exports for Node's CommonJS lexer.
408
- 0 && (module.exports = {"BACKEND_BUILDERS": null,"BACKEND_FRAMEWORKS": null,"ContainerImage": null,"DEFAULT_MAX_DURATION_LIMIT": null,"ENV_WRAPPER_SUPPORTED_FAMILIES": null,"EdgeFunction": null,"FileBlob": null,"FileFsRef": null,"FileRef": null,"FunctionSizeError": null,"Lambda": null,"MAX_LAMBDA_SIZE": null,"MAX_LAMBDA_UNCOMPRESSED_SIZE": null,"NODE_VERSIONS": null,"NodejsLambda": null,"PYTHON_FRAMEWORKS": null,"Prerender": null,"SKIP_MAX_DURATION_LIMIT_ENV": null,"SUPPORTED_AL2023_RUNTIMES": null,"UNIFIED_BACKEND_BUILDER": null,"buildsSchema": null,"cloneEnv": null,"collectUncompressedSize": null,"createFunctionsIterator": null,"createLambda": null,"debug": null,"defaultCachePathGlob": null,"deserializeBuildOutput": null,"deserializeEdgeFunction": null,"deserializeLambda": null,"detectPackageManager": null,"download": null,"downloadFile": null,"execCommand": null,"fileToBuildOutputFile": null,"finalizeLambda": null,"findPackageJson": null,"functionsSchema": null,"generateNodeBuilderFunctions": null,"generateProjectManifest": null,"generateRubyProjectManifest": null,"getBuildResultMetadata": null,"getContentType": null,"getDiscontinuedNodeVersions": null,"getEncryptedEnv": null,"getEnvForPackageManager": null,"getExperimentalServiceUrlEnvVars": null,"getFunctionsSchema": null,"getIgnoreFilter": null,"getInstalledPackageVersion": null,"getLambdaByOutputPath": null,"getLambdaEnvironment": null,"getLambdaOptionsFromFunction": null,"getLambdaPreloadScripts": null,"getLambdaSupportsStreaming": null,"getLatestNodeVersion": null,"getMaxDurationLimit": null,"getMaxDurationSchema": null,"getNodeBinPath": null,"getNodeBinPaths": null,"getNodeExecPath": null,"getNodeVersion": null,"getOrCreateBunBinary": null,"getPackageJson": null,"getPathForPackageManager": null,"getPlatformEnv": null,"getPrefixedEnvVars": null,"getPrerenderChain": null,"getProvidedRuntime": null,"getRegExpFromMatchers": null,"getScriptName": null,"getServiceUrlEnvVars": null,"getSpawnOptions": null,"getSupportedBunVersion": null,"getSupportedNodeVersion": null,"getSymlinkTarget": null,"getWriteableDirectory": null,"glob": null,"hardLinkDir": null,"hydrateFilesMap": null,"installDependencies": null,"isBackendBuilder": null,"isBackendFramework": null,"isBunVersion": null,"isDirectory": null,"isExperimentalBackendsEnabled": null,"isExperimentalBackendsWithoutIntrospectionEnabled": null,"isExternalSymlink": null,"isExternalSymlinkTarget": null,"isNodeBackendFramework": null,"isNodeEntrypoint": null,"isPackageInstalled": null,"isPythonFramework": null,"isRouteMiddleware": null,"isSymbolicLink": null,"maybeReadJSON": null,"md5": null,"normalizePath": null,"packageManifestSchema": null,"parseGemfileLock": null,"prerenderToBuildOutputFile": null,"readConfigFile": null,"rename": null,"resetCustomInstallCommandSet": null,"resolveMiddlewareMatcher": null,"runBundleInstall": null,"runCustomInstallCommand": null,"runNpmInstall": null,"runPackageJsonScript": null,"runPipInstall": null,"runShellScript": null,"sanitizeConsumerName": null,"scanParentDirs": null,"sha256": null,"shouldServe": null,"shouldUseExperimentalBackends": null,"spawnAsync": null,"spawnCommand": null,"streamToBuffer": null,"streamToBufferChunks": null,"streamToDigestAsync": null,"streamWithExtendedPayload": null,"traverseUpDirectories": null,"validateBuildResult": null,"validateDeploymentId": null,"validateEnvWrapperSupport": null,"validateFrameworkVersion": null,"validateLambdaSize": null,"validateNpmrc": null,"validatePrerender": null,"validateRegularFile": null,"validateUncompressedLambdaSize": null,"walkParentDirs": null,"MANIFEST_FILENAME": null,"MANIFEST_VERSION": null,"createDiagnostics": null,"manifestPath": null,"writeProjectManifest": null,"BunVersion": null,"JOB_TRIGGERS": null,"NodeVersion": null,"Version": null,"getReportedServiceType": null,"getServiceQueueTopicConfigs": null,"getServiceQueueTopics": null,"isExperimentalService": null,"isExperimentalServiceV2": null,"isQueueBackedService": null,"isQueueTriggeredService": null,"isScheduleTriggeredService": null,"isWorkflowTriggeredService": null,"NowBuildError": null,"getPrettyError": null,"BUILDER_COMPILE_STEP": null,"BUILDER_INSTALLER_STEP": null,"BUILDER_PRE_DEPLOY_STEP": null,"Span": null,"INTERNAL_SERVICE_PREFIX": null,"getInternalServiceCronPath": null,"getInternalServiceCronPathPrefix": null,"getInternalServiceFunctionPath": null,"getInternalServiceWorkerPath": null,"getInternalServiceWorkerPathPrefix": null,"SCHEDULE_FUNCTION_PREFIX": null,"getScheduleFunctionPath": null});
408
+ 0 && (module.exports = {"BACKEND_BUILDERS": null,"BACKEND_FRAMEWORKS": null,"ContainerImage": null,"DEFAULT_MAX_DURATION_LIMIT": null,"ENV_WRAPPER_SUPPORTED_FAMILIES": null,"EdgeFunction": null,"FileBlob": null,"FileFsRef": null,"FileRef": null,"FunctionSizeError": null,"Lambda": null,"MAX_LAMBDA_SIZE": null,"MAX_LAMBDA_UNCOMPRESSED_SIZE": null,"NODE_VERSIONS": null,"NodejsLambda": null,"PYTHON_FRAMEWORKS": null,"Prerender": null,"SKIP_MAX_DURATION_LIMIT_ENV": null,"SUPPORTED_AL2023_RUNTIMES": null,"UNIFIED_BACKEND_BUILDER": null,"buildsSchema": null,"cloneEnv": null,"collectUncompressedSize": null,"createFunctionsIterator": null,"createLambda": null,"debug": null,"defaultCachePathGlob": null,"deserializeBuildOutput": null,"deserializeEdgeFunction": null,"deserializeLambda": null,"detectPackageManager": null,"download": null,"downloadFile": null,"execCommand": null,"fileToBuildOutputFile": null,"finalizeLambda": null,"findMatchingFunction": null,"findPackageJson": null,"functionsSchema": null,"generateNodeBuilderFunctions": null,"generateProjectManifest": null,"generateRubyProjectManifest": null,"getBuildResultMetadata": null,"getContentType": null,"getDiscontinuedNodeVersions": null,"getEncryptedEnv": null,"getEnvForPackageManager": null,"getExperimentalServiceUrlEnvVars": null,"getFunctionsSchema": null,"getIgnoreFilter": null,"getInstalledPackageVersion": null,"getLambdaByOutputPath": null,"getLambdaEnvironment": null,"getLambdaOptionsFromFunction": null,"getLambdaPreloadScripts": null,"getLambdaSupportsStreaming": null,"getLatestNodeVersion": null,"getMaxDurationLimit": null,"getMaxDurationSchema": null,"getNodeBinPath": null,"getNodeBinPaths": null,"getNodeExecPath": null,"getNodeVersion": null,"getOrCreateBunBinary": null,"getPackageJson": null,"getPathForPackageManager": null,"getPlatformEnv": null,"getPrefixedEnvVars": null,"getPrerenderChain": null,"getProvidedRuntime": null,"getRegExpFromMatchers": null,"getScriptName": null,"getServiceUrlEnvVars": null,"getSpawnOptions": null,"getSupportedBunVersion": null,"getSupportedNodeVersion": null,"getSymlinkTarget": null,"getWriteableDirectory": null,"glob": null,"hardLinkDir": null,"hydrateFilesMap": null,"installDependencies": null,"isBackendBuilder": null,"isBackendFramework": null,"isBunVersion": null,"isDirectory": null,"isExperimentalBackendsEnabled": null,"isExperimentalBackendsWithoutIntrospectionEnabled": null,"isExternalSymlink": null,"isExternalSymlinkTarget": null,"isNodeBackendFramework": null,"isNodeEntrypoint": null,"isPackageInstalled": null,"isPythonFramework": null,"isRouteMiddleware": null,"isSymbolicLink": null,"maybeReadJSON": null,"md5": null,"normalizePath": null,"packageManifestSchema": null,"parseGemfileLock": null,"prerenderToBuildOutputFile": null,"readConfigFile": null,"rename": null,"resetCustomInstallCommandSet": null,"resolveMiddlewareMatcher": null,"runBundleInstall": null,"runCustomInstallCommand": null,"runNpmInstall": null,"runPackageJsonScript": null,"runPipInstall": null,"runShellScript": null,"sanitizeConsumerName": null,"scanParentDirs": null,"sha256": null,"shouldServe": null,"shouldUseExperimentalBackends": null,"spawnAsync": null,"spawnCommand": null,"streamToBuffer": null,"streamToBufferChunks": null,"streamToDigestAsync": null,"streamWithExtendedPayload": null,"traverseUpDirectories": null,"validateBuildResult": null,"validateDeploymentId": null,"validateEnvWrapperSupport": null,"validateFrameworkVersion": null,"validateLambdaSize": null,"validateNpmrc": null,"validatePrerender": null,"validateRegularFile": null,"validateUncompressedLambdaSize": null,"walkParentDirs": null,"MANIFEST_FILENAME": null,"MANIFEST_VERSION": null,"createDiagnostics": null,"manifestPath": null,"writeProjectManifest": null,"BunVersion": null,"JOB_TRIGGERS": null,"NodeVersion": null,"Version": null,"getReportedServiceType": null,"getServiceQueueTopicConfigs": null,"getServiceQueueTopics": null,"isExperimentalService": null,"isExperimentalServiceV2": null,"isQueueBackedService": null,"isQueueTriggeredService": null,"isScheduleTriggeredService": null,"isWorkflowTriggeredService": null,"NowBuildError": null,"getPrettyError": null,"BUILDER_COMPILE_STEP": null,"BUILDER_INSTALLER_STEP": null,"BUILDER_PRE_DEPLOY_STEP": null,"Span": null,"INTERNAL_SERVICE_PREFIX": null,"getInternalServiceCronPath": null,"getInternalServiceCronPathPrefix": null,"getInternalServiceFunctionPath": null,"getInternalServiceWorkerPath": null,"getInternalServiceWorkerPathPrefix": null,"SCHEDULE_FUNCTION_PREFIX": null,"getScheduleFunctionPath": null});